diff --git a/CHANGELOG.md b/CHANGELOG.md index 589626453..6857e20fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- [#407](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/407): GCI115 - Python - Detect a for loop and suggest a list comprehension - [#481](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/481) Add rule GCI114 for Python: Avoid range(len()) pattern, prefer direct iteration or enumerate() - Add search words in rules file - -### Added -- [#407](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/407): GCI115 - Python - Detect a for loop and suggest a list comprehension +- [#487](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/487) Add complete analysis for FetchType issue for Java (sonarqube built-in rule S6904) ### Changed diff --git a/RULES.md b/RULES.md index 81b5d17e4..d3b1b8e16 100644 --- a/RULES.md +++ b/RULES.md @@ -20,7 +20,6 @@ Some are applicable for different technologies. | Rule key | Name | Description | Reference/Validation | Java | Php | JS | Python | Rust | C# | HTML | Mobile Android | Mobile iOS | Source reference | |----------|-------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------|-----|----|--------|------|----|------|----------------|------------|--------------------------------------------------------------------------------------------------------------------------| -| CRJVM205 | Force usage of FetchType LAZY for collections on JPA entities | | | 🚧 | ❓ | ❓ | ❓ | ❓ | ❓ | 🚫 | 🚫 | 🚫 | | | CRJVM206 | Avoid N+1 selects problem | | | 🚧 | ❓ | ❓ | ❓ | ❓ | ❓ | 🚫 | 🚫 | 🚫 | | | CRJVM207 | Customer data must have end-of-life information | | | 🚧 | ❓ | ❓ | ❓ | ❓ | ❓ | ❓ | 🚫 | 🚫 | | | CRJVM??? | Persistence Java : Avoid Joints on non indexed columns | | | 🚧 | ❓ | ❓ | ❓ | ❓ | ❓ | 🚫 | 🚫 | 🚫 | | @@ -180,18 +179,19 @@ will be completely deleted in next releases and moved to bottom deleted rules ar This table lists rules proposed by the community but refused or/and deleted in creedengo plugins with the justification. -| Rule key | Language | Name | Description | Invalidation | -|----------|------------|-------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| CRDOM203 | HTML | HTML page must contain a doctype tag | The difference in performance is negligible, this rule is more related to the user experience. | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/103) | -| CRPYT | Python | Use numpy array instead of standard list | The use of numpy library to perform array manipulation is more energy efficient than the use of the standard list functions. | [Github discussion with measures](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/132) | -| GCI4 | Java | Avoid using global variables | Global variables do not exist in Java. | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/233) | -| GCI8 | JavaScript | Avoid using high accuracy geolocation | The rule has been merged with the rule GCI523 | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/318) | -| GCI34 | Python | Using try...catch...finally calls | Implementation is too simple (only detection of presence of "try" statement) AND replaced by `GCI35` rule | Github discussion with measures : [general/java](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/128) / [python](https://github.com/green-code-initiative/creedengo-python/pull/6) | -| GCI34 | PHP | Using try...catch...finally calls | Implementation is too simple (only detection of presence of "try" statement) AND replaced by `GCI35` rule | Github discussion with measures : [general/java](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/128) / [php](https://github.com/green-code-initiative/creedengo-php/pull/10) | -| GCI63 | Java | Unnecessarily assigning values to variables | There are already 3 native SonarQube rules for Java. | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/258) | -| GCI66 | Java | Use single quote (') instead of quotation mark (") | Finally, not applicable for Java | Discussed with core team | -| GCI66 | JS | Use single quote (') instead of quotation mark (") | No difference in performance | Discussed with core team | -| GCI66 | Python | Use single quote (') instead of quotation mark (") | Finally, not applicable for Python | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-python/issues/4) | -| GCI66 | PHP | Use single quote (') instead of quotation mark (") | Finally, not applicable for PHP | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-php/issues/58) | -| GCI69 | Python | Calling a loop invariant function in a loop condition | Finally, not applicable for Python | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-python/issues/21) | -| GCI75 | Java | Don't concatenate strings in loops | Optimizations on Java concatenation Strings are useless since JDK8 | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/246) | +| Rule key | Language | Name | Description | Invalidation | +|----------|------------|---------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| CRDOM203 | HTML | HTML page must contain a doctype tag | The difference in performance is negligible, this rule is more related to the user experience. | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/103) | +| CRJVM205 | Java | Force usage of FetchType LAZY for collections on JPA entities | The rule already exists inside SonarQube : built-in rule "java:S6904" | [Github discussion with analysis](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/487) | +| CRPYT | Python | Use numpy array instead of standard list | The use of numpy library to perform array manipulation is more energy efficient than the use of the standard list functions. | [Github discussion with measures](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/132) | +| GCI4 | Java | Avoid using global variables | Global variables do not exist in Java. | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/233) | +| GCI8 | JavaScript | Avoid using high accuracy geolocation | The rule has been merged with the rule GCI523 | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/318) | +| GCI34 | Python | Using try...catch...finally calls | Implementation is too simple (only detection of presence of "try" statement) AND replaced by `GCI35` rule | Github discussion with measures : [general/java](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/128) / [python](https://github.com/green-code-initiative/creedengo-python/pull/6) | +| GCI34 | PHP | Using try...catch...finally calls | Implementation is too simple (only detection of presence of "try" statement) AND replaced by `GCI35` rule | Github discussion with measures : [general/java](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/128) / [php](https://github.com/green-code-initiative/creedengo-php/pull/10) | +| GCI63 | Java | Unnecessarily assigning values to variables | There are already 3 native SonarQube rules for Java. | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/258) | +| GCI66 | Java | Use single quote (') instead of quotation mark (") | Finally, not applicable for Java | Discussed with core team | +| GCI66 | JS | Use single quote (') instead of quotation mark (") | No difference in performance | Discussed with core team | +| GCI66 | Python | Use single quote (') instead of quotation mark (") | Finally, not applicable for Python | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-python/issues/4) | +| GCI66 | PHP | Use single quote (') instead of quotation mark (") | Finally, not applicable for PHP | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-php/issues/58) | +| GCI69 | Python | Calling a loop invariant function in a loop condition | Finally, not applicable for Python | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-python/issues/21) | +| GCI75 | Java | Don't concatenate strings in loops | Optimizations on Java concatenation Strings are useless since JDK8 | [Github discussion with sources](https://github.com/green-code-initiative/creedengo-rules-specifications/issues/246) | diff --git a/src/main/rules/S6904/java/S6904.asciidoc b/src/main/rules/S6904/java/S6904.asciidoc new file mode 100644 index 000000000..79dd1e12c --- /dev/null +++ b/src/main/rules/S6904/java/S6904.asciidoc @@ -0,0 +1,106 @@ +:!sectids: + +== Why is this rule isn't a "GCIxxx" rule ? + +Because the rule already exists as built-in rule inside SonarQube with number S6904. +Some works were done by different people. +To not loose this work, we created this documentation to keep it. + +== Why is this an issue? + +When a JPA collection association is mapped with `FetchType.EAGER`, the persistence provider loads +the whole associated collection every time the owning entity is read, even when the application +never accesses it. + +On a collection, this is not a marginal cost: a single entity read can pull an arbitrary number of +additional rows from the database. This means more CPU cycles spent by the database engine, more +data transferred over the network, and more heap allocated by the application β€” all for objects +that may never be used. Less data loaded into memory means less energy consumed, both on the +database server and on the application server. + +`FetchType.LAZY` defers the load until the collection is actually accessed, which lets the +application pay the cost only when it needs the data. + +Note that `LAZY` is already the default for `@OneToMany` and `@ManyToMany`: this rule only reports +associations where `EAGER` has been set explicitly. + +== Examples + +=== Noncompliant + +[source,java,data-diff-id="1",data-diff-type="noncompliant"] +---- +@Entity +@Table(name = "purchase_order") +public class Order { + + @OneToMany(mappedBy = "order", fetch = FetchType.EAGER) // Noncompliant + private Set items = new HashSet<>(); + +} +---- + +[source,java,data-diff-id="2",data-diff-type="noncompliant"] +---- +@Entity +@Table(name = "purchase_order") +public class Order { + + @ManyToMany(fetch = FetchType.EAGER) // Noncompliant + private Set tags = new HashSet<>(); + +} +---- + +=== Compliant + +[source,java,data-diff-id="3",data-diff-type="compliant"] +---- +@Entity +@Table(name = "purchase_order") +public class Order { + + @OneToMany(mappedBy = "order", fetch = FetchType.LAZY) + private Set items = new HashSet<>(); + +} +---- + +[source,java,data-diff-id="4",data-diff-type="compliant"] +---- +@Entity +@Table(name = "purchase_order") +public class Order { + + @ManyToMany // Default fetch type for @ManyToMany is already LAZY + private Set tags = new HashSet<>(); + +} +---- + +== Exceptions to this rule + +This rule only applies to collection associations (`@OneToMany`, `@ManyToMany`). + +Single-valued associations (`@ManyToOne`, `@OneToOne`) default to `FetchType.EAGER` in JPA, but +their cost profile is different: they load one additional row, not an arbitrary number. Their real +impact appears when they are traversed in a loop, which is the N+1 selects problem β€” a separate +concern. + +No issue is raised when the `fetch` attribute is omitted on a collection association, since +`FetchType.LAZY` is already the JPA default in that case. + +== Resources + +=== Documentation + +- [Jakarta Persistence Specification](https://jakarta.ee/specifications/persistence/) - Default fetch types for association mappings +- [Hibernate User Guide](https://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#fetching) - Fetching strategies + +=== Articles & blog posts + +- [Eager fetching is a code smell](https://vladmihalcea.com/eager-fetching-is-a-code-smell/) - Vlad Mihalcea + +=== Local measeures + +check complete analysis proving that this rule is relevant, here : diff --git a/src/main/rules/S6904/java/analysis/README.md b/src/main/rules/S6904/java/analysis/README.md new file mode 100644 index 000000000..4dc54fc84 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/README.md @@ -0,0 +1,474 @@ +# Measurement campaign β€” FetchType LAZY on JPA collections (S6904) + +Measurement harness for the rule "force FetchType.LAZY on JPA collections", superseding +the four historical PRs (#122, #125, #155, #325). The rule turned out to already exist as +a SonarQube built-in (`java:S6904`), so no new rule specification is added; this harness +produces the impact evidence kept as supporting documentation instead β€” see +[PR #487](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/487) +and `s6904-analysis-summary.md` at the root of this directory. + +**Status: both campaigns executed and analysed.** + +- **campaign1** β€” run on 2026-08-04, sizes 10 / 100 / 1000, 30 phases Γ— 30 iterations. + Archived under `level2-energytracer/campaign1/`; interpretation alongside it + (`campaign1-interpretation.md`). +- **campaign2** β€” run on 2026-08-05, sizes 10 / 30 / 50 / 100 / 500 / 1000, same protocol, + to locate the relevance threshold campaign1 left open. Archived under + `level2-energytracer/campaign2/`; interpretation alongside it + (`campaign2-interpretation.md`). Confirms campaign1 and discloses one genuine anomaly + around N=50–100 that campaign1's three points could not reveal β€” see that document, + Β§4–§5. + +--- + +## 1. Summary + +Two levels, numbered in their execution order β€” simplest and lightest first. + +| | Level 1 β€” JPA | Level 2 β€” energy | +|---|---|---| +| **Question** | How much useless work actually happens? | How much energy does that useless work cost? | +| **Measures** | SQL statements, hydrated rows, time, allocations | Joules (CPU / DRAM / GPU / ANE) | +| **Tool** | Hibernate Statistics + JDK | EnergyTracer, `mac` profiler | +| **Stack** | Real Hibernate 6 + H2 | Plain Java, simulated row source | +| **Duration** | a few minutes | ~45 min per size | +| **Machine** | any | Apple Silicon Mac, prepared and left undisturbed | +| **Role in review** | The functional proof | The energy proof | + +Both are needed, and they answer each other. Level 1 establishes *that* waste happens +and quantifies it in units any reviewer can check. Level 2 establishes *what that waste +costs* in energy. Neither is sufficient alone: level 1 measures no energy, and level 2 +runs neither SQL nor an ORM. + +### Why this split rather than a single measurement + +EnergyTracer's Java runner compiles with a bare `javac ` and runs with +`java -cp `. **No third-party library is reachable**: not Hibernate, not +H2, not even a JDBC driver. A JPA benchmark therefore cannot be measured directly by +EnergyTracer, and modifying the tool to make that possible is out of scope here β€” hence +two separate benches, each measuring what it can measure correctly. + +--- + +## 2. Layout + +``` +./ +β”œβ”€β”€ README.md this file: protocol and how-to +β”œβ”€β”€ s6904-analysis-summary.md PR #487 description, kept in sync with the analysis +β”œβ”€β”€ level1-jpa/ +β”‚ β”œβ”€β”€ pom.xml Hibernate 6.4 + H2 2.2, Java 17 +β”‚ β”œβ”€β”€ run.sh build + run +β”‚ β”œβ”€β”€ results/ generated: jpa-.txt +β”‚ └── src/main/java/org/greencodeinitiative/bench/ +β”‚ β”œβ”€β”€ FetchTypeBenchmark.java driver and instrumentation +β”‚ β”œβ”€β”€ eager/{Order,OrderItem}.java FetchType.EAGER mapping +β”‚ └── lazy/{Order,OrderItem}.java FetchType.LAZY mapping +β”‚ +└── level2-energytracer/ + β”œβ”€β”€ 1-generate.sh generates the variants + checks they compile + β”œβ”€β”€ 2-calibrate.sh (optional) tunes PARENT_READS for the machine + β”œβ”€β”€ 3-run_campaign.sh the campaign β€” writes to ./out-tmp and ./results + β”œβ”€β”€ 4-aggregate_report.sh consolidates the campaign into a single report + β”œβ”€β”€ 4-aggregate_report.py (the actual work: stats, plots, markdown) + β”‚ + β”œβ”€β”€ generate/ + β”‚ β”œβ”€β”€ template/Eager.java.tpl noncompliant variant (source of truth) + β”‚ β”œβ”€β”€ template/Lazy.java.tpl compliant variant (source of truth) + β”‚ └── variants/ generated: FetchType{Eager,Lazy}N.java + β”‚ (currently: N=10,30,50,100,500,1000) + β”‚ + β”œβ”€β”€ campaign1/ archived β€” sizes 10, 100, 1000 (2026-08-04) + β”‚ β”œβ”€β”€ campaign1-interpretation.md write-up: results, stats, caveats + β”‚ β”œβ”€β”€ out-tmp/ raw per-phase measurements, kept for traceability + β”‚ β”œβ”€β”€ results/n/ ET-analyzer's own per-size reports + β”‚ └── consolidated-report/ REPORT.md, data/, plots/, reports-source/ + β”‚ + └── campaign2/ archived β€” sizes 10,30,50,100,500,1000 (2026-08-05) + β”œβ”€β”€ campaign2-interpretation.md write-up: results, stats, caveats + β”œβ”€β”€ out-tmp/ raw per-phase measurements, kept for traceability + β”œβ”€β”€ results/n/ ET-analyzer's own per-size reports + └── consolidated-report/ REPORT.md, data/, plots/, reports-source/ +``` + +Between a run and its archiving, `3-run_campaign.sh` and `4-aggregate_report.sh` write +`out-tmp/`, `results/n/` and `consolidated-report/` directly under +`level2-energytracer/` β€” see Β§ 5, "Archiving a campaign", for the `mv` step that moves +them under `campaign/`. Nothing is currently sitting unarchived at that top level: both +campaigns above are the full history. + +Level 2's scripts are **prefixed by their launch order**. `2-calibrate.sh` is optional: +it only checks or tunes the bench's sizing on a new machine. `1-generate.sh` does not +need to be run by hand: `3-run_campaign.sh` triggers it automatically whenever a variant +is missing. + +The two JPA mappings are **identical except for one attribute** (`fetch = EAGER` vs +`LAZY`) and point at the same tables. Same at level 2: the two variants differ only in +the body of `loadOrder`. That is the condition for the comparison to mean anything. + +--- + +## 3. The scenario measured + +The one the rule targets, and only that one: + +> A parent entity owns a collection of children. The application loads the parent and +> **never accesses the collection**. + +- Under `EAGER`, the provider hydrates the whole collection anyway. +- Under `LAZY`, it only allocates the collection wrapper. + +Several sizes are swept, because the effect grows with collection size. A single figure +would say nothing; a sweep documents from which size the rule becomes relevant, which is +exactly what a demanding reviewer will ask for. + +| Campaign | Sizes | Purpose | +|---|---|---| +| campaign1 | 10, 100, 1000 | Establish that the effect exists, and its order of magnitude | +| campaign2 | 10, 30, 50, 100, 500, 1000 | Locate the relevance threshold between 10 and 100 | + +`1-generate.sh` maintains an **important invariant**: `PARENT_READS Γ— N β‰ˆ 5,000,000` +hydrated child rows per run, regardless of size. That is what makes the sizes comparable +at equal nominal work, and it is the basis of the "energy per hydrated row" figure, the +only quantity that is genuinely transposable. The `PARENT_READS` values for 10, 100 and +1000 are **identical to campaign1's**, so the two campaigns stay comparable on those +points. + +*Note: N=30 is the only inexact value (166,667 Γ— 30 = 5,000,010, 10 rows off out of five +million β€” negligible). No integer divides 5,000,000 exactly by 30.* + +### Conservative choices, to own in review + +Three decisions consistently **underestimate** the gap. Worth stating before anyone +objects: + +1. Level 2 allocates an empty `HashSet` on the LAZY side (modelling the Hibernate + wrapper) rather than `Collections.emptySet()`: the compliant variant is not free. +2. Both level-2 variants allocate the same child-row buffer, even though LAZY never reads + it: identical starting memory footprint. +3. The owning-side `@ManyToOne` is `LAZY` in both level-1 mappings, so no difference + sneaks in there. + +--- + +## 4. Preparing the machine + +This section applies **only to level 2**. Level 1 runs on any machine, no special care +needed. + +Taken from EnergyTracer's `EXPERIMENT_GUIDE.md`, itself based on LuΓ­s Cruz's guide. +**This step is not optional**: without it, background noise dwarfs the effect being +measured and the result is worthless. + +- [ ] Close **all** non-essential applications, including menu-bar utilities +- [ ] Disconnect unnecessary peripherals (external drives, printers…) +- [ ] Wired network, or no network at all +- [ ] Fix brightness, volume, power mode; disable sleep and screen saver +- [ ] Turn on "Do Not Disturb" +- [ ] **Plug in the power adapter** (a campaign runs for several hours) +- [ ] Stable ambient temperature, out of direct sunlight +- [ ] **Do not touch the machine** once the campaign has started + +Software prerequisites: + +- For level 1: Maven and a JDK 17+. +- For level 2: a **JDK** (not just a JRE β€” `javac` is required), + [`uv`](https://github.com/astral-sh/uv), and a clone of + `https://github.com/green-code-initiative/EnergyTracer` initialised with `./init.sh`. + +--- + +## 5. Running it + +The levels are numbered in execution order: increasing complexity and duration. + +### Level 1 β€” JPA (a few minutes) + +Fast, no requirement on the machine, and it tells you immediately whether the effect +exists. No point tying up a Mac for hours on an energy campaign if level 1 shows no gap. + +```bash +cd level1-jpa +./run.sh +``` + +Expected output: one table per size with, per parent read, the number of JDBC +statements, hydrated entities, loaded collections, time and allocated bytes β€” then the +EAGER/LAZY ratios, plus a reusable CSV block. + +### Level 2 β€” energy (budget ~45 min per size) + +Scripts are numbered in launch order. + +```bash +cd level2-energytracer + +./2-calibrate.sh # OPTIONAL: checks the bench's sizing +./3-run_campaign.sh ~/src/EnergyTracer mac # the campaign β€” calls 1-generate.sh if needed +./4-aggregate_report.sh ~/src/EnergyTracer # the consolidated report +``` + +`1-generate.sh` does not need to be run by hand: `3-run_campaign.sh` triggers it +automatically as soon as a variant is missing for one of the requested sizes. + +Sizes: default **10, 30, 50, 100, 500, 1000**. To restrict: + +```bash +./3-run_campaign.sh ~/src/EnergyTracer mac 10 100 1000 +``` + +**Duration.** About 45 minutes per size at default settings, half of it cooldown. Six +sizes therefore add up to **close to 5 hours** β€” best started at the end of the day. + +`2-calibrate.sh` is not decorative, even though it is optional. EnergyTracer launches +**one JVM per iteration**, and JVM startup costs 100 to 400 ms. If a run only lasts 20 ms, +95% of what is measured is JVM startup and the EAGER/LAZY gap disappears into the noise. +Aim for 300 to 500 ms per run. Rerun it on any new machine, or after changing +`PARENT_READS`. + +### Archiving a campaign + +`3-run_campaign.sh` always writes to `out-tmp/` and `results/`. Once the consolidated +report has been built, move the three directories into `campaign/` so the next +campaign starts clean: + +```bash +mkdir -p campaign2 && mv out-tmp results consolidated-report campaign2/ +``` + +An archived campaign stays analysable in place: + +```bash +./4-aggregate_report.sh ~/src/EnergyTracer -- \ + --out-tmp campaign1/out-tmp --output campaign1/consolidated-report +``` + +**Do not merge two campaigns** into one report: they run under different thermal and +system conditions. Comparing them size by size is legitimate and informative; +statistically pooling them is not. + +Campaign parameters, overridable via environment variable: + +| Variable | Default | Role | +|---|---|---| +| `WARMUP_PHASES` / `WARMUP_N` | 5 / 5 | Reach thermal steady state | +| `MEASURE_PHASES` / `MEASURE_N` | 30 / 30 | 900 samples per variant | +| `COOLDOWN` | 60 | Seconds between measurement phases | + +These values deliberately depart from EnergyTracer's own defaults (500 / 1000). Its +examples measure a few-millisecond arithmetic loop, entirely dominated by JVM startup, +hence the need for tens of thousands of samples. Here each run does ~400 ms of real work: +900 samples are ample, and the campaign fits in a few hours instead of several days. + +For a first exploratory pass: `MEASURE_PHASES=10 MEASURE_N=10 ./3-run_campaign.sh ...` +(~25 min). Do not publish those figures β€” they only serve to check the pipeline works. + +--- + +## 6. Interpreting and publishing + +`ET-analyzer` produces a Markdown report per size, under +`level2-energytracer/results/n/`, directly pastable into a PR: comparison table, +Welch's t-test (Ξ± = 0.05), Cohen's d, and a verdict. + +Raw measurements land in `level2-energytracer/out-tmp/`, outside the EnergyTracer clone, +which stays untouched. Once a campaign is archived under `campaign/`, this directory +is kept: it lets the report be regenerated, and it is the only record of the individual +measurements. + +Two pitfalls in the tool, both handled by `3-run_campaign.sh` β€” worth knowing if you +adapt the script: + +- **`-o` is not an output path**, it is a tag: `src/main.py` computes + `Path("output") / / `. A relative value therefore lands inside + the EnergyTracer clone. An **absolute** value overrides the whole prefix (`pathlib` + behaviour) and writes exactly where requested. +- **`ET-analyzer -p D` infers the profiler from the path component right after `D`** + (`profiler = parts[parts.index(first_folder) + 1]`). Pointing it one level too deep + does not error out: it produces a report labelled `raw` instead of `mac`. And pointing + it at the common root would merge every size into one meaningless report. Hence one + analysis per size, `-p out-tmp/fetchtype-n`. + +### Consolidating the campaign + +`ET-analyzer` produces one report per size, with no cross-size view and no plots. +`4-aggregate_report.sh` fills both gaps: + +```bash +cd level2-energytracer +./4-aggregate_report.sh ~/git_creedengo2/EnergyTracer +``` + +Passing the EnergyTracer clone avoids any installation: its virtual environment already +has pandas, numpy, scipy and matplotlib. Output under `consolidated-report/`: + +| | | +|---|---| +| `REPORT.md` | the consolidated document, ready to use for the PR | +| `data/` | every phase concatenated, with `size`, `phase`, `variant` columns added | +| `plots/n/` | box, violin, and **per-phase drift**, redrawn on the full sample | +| `plots/scaling_overhead.png` | the gap as a function of collection size | +| `reports-source/` | `ET-analyzer`'s own reports, unmodified, for traceability | + +Three additions over the tool's native output: + +- **Plots finally cover the whole campaign.** `ET`'s own plots are generated per phase, + so they only ever show one slice β€” pasting them into a PR would be misleading. +- **A per-phase drift plot.** If the curves climb across phases, the machine heated up or + was disturbed and the campaign should be rerun. Check this before anything else. +- **Mann-Whitney U and Cliff's delta**, alongside Welch's test. EnergyTracer's own guide + recommends them, because energy data is rarely normal. The report flags metrics where + Shapiro-Wilk rejects normality, and only concludes when both tests agree. + +The `--data-type` option defaults to `raw`, and that is the right choice: `raw` is +filtered once, globally, on the full aggregate, whereas `cleaned` has already been +filtered per phase on small samples β€” a weaker, doubly-filtered pipeline. + +The script also picks up data produced by the earlier version of `3-run_campaign.sh` +(without the `phase-` level), reported as a single phase. + +Then transcribe the figures into that campaign's `campaign-interpretation.md` β€” see +`campaign1-interpretation.md` and `campaign2-interpretation.md` for the structure to +follow (results, phase-level statistics, quality control, what not to claim, sources). + +### What to look at, in order + +1. **The direction of the gap.** A positive `Ξ” mean` means the smelly variant consumes + more. A negative or null gap on a given size is useful information, not a failure: it + documents the threshold below which the rule is not worth applying. +2. **The dominant component.** If the gap is carried by `dram_mj`, that is memory + allocation; by `cpu_mj`, that is hydration. This says *where* the energy goes. +3. **The variance.** Wide box plots signal a poorly controlled environment β€” redo the + machine preparation before interpreting anything. +4. **The trend with N.** This is the strongest argument: if the gap grows with collection + size, a causal mechanism is established, not just a correlation. + +### The trap to avoid + +With 900 samples per variant, a 0.4% gap comes out "statistically significant" with a +flattering Cohen's d. **Significant does not mean relevant.** Report the relative gap +next to the p-value, and do not defend the rule on a gain of a few tenths of a percent β€” +that would hand a careful reviewer an easy stick to beat it with. + +--- + +## 7. Limitations to state in the PR + +Hiding them would be both dishonest and counterproductive: a project reviewer will find +them anyway. Stating them upfront strengthens the measurement's credibility. + +**Level 1 β€” JPA** + +- In-memory H2: **no network latency, no disk I/O**. This is the least favourable setup + for the demonstration β€” on a remote RDBMS the gap would be markedly wider. Worth + saying, since it turns an apparent weakness into an argument. +- One session per read, so no first-level cache between reads. This is deliberate: + without it, the second read would be free and the measurement pointless. +- The second-level cache is disabled. +- Time and allocations are measured on a single thread, with no contention. + +**Level 2 β€” energy** + +- The row source is **simulated**: no database engine, no network, no JDBC driver. What + is measured is the client-side share (deserialisation, allocation, collection insert). + The database-server cost and the network transfer β€” likely the largest share of the + real saving β€” **are not measured**. The figure is therefore a **lower bound**. +- **The relative gap does not transpose to production.** Both variants do almost nothing + but hydration: the LAZY variant does almost nothing at all. An 80% gap means "hydrating + the collection is 80% of this synthetic program", not "a real application would consume + 80% less". In production this cost is diluted by SQL, network and business logic. + Publishing the **absolute energy per operation** is far more defensible than the + percentage. +- Each iteration launches a JVM. Absolute values include that startup; only the + **relative Java-vs-Java comparison** is valid, as EnergyTracer itself documents. +- Runs are short, so the JIT never reaches steady state: this is mostly interpreted or + C1-compiled code, not the hot C2 code of a long-running production service. +- The `mac` profiler reads Apple Silicon hardware counters. On another machine, only the + `carbon` profiler is available β€” an **estimate** (TDP Γ— CPU utilisation), never to be + presented as a hardware measurement. +- `ET-analyzer` applies a Welch t-test, which assumes near-normality. EnergyTracer's own + guide recommends complementing it with Mann-Whitney U, Cliff's delta and 95% confidence + intervals on the medians. For evidence meant to settle a core-team decision, do both. + +--- + +## 8. Harness validation status + +**Proven by campaign1** + +- Both levels run end to end: the Maven project builds, the variants compile, the + campaign and the aggregation produce their reports. +- The contract of EnergyTracer's Java runner, read from its source (`java_runner.py`, + `main.py`, `parser.py`, `analyzer.py`): classpath-free compilation, class-name detection + by regex, one JVM per iteration, checked exit code, no argument passed through, `-o` + read as a tag rather than a path, profiler inferred from the path component right after + the one passed to `-p`. +- The bench's sizing: `PARENT_READS` does place EAGER runs in the targeted window + (0.49 s at N=10 up to 0.67 s at N=1000). + +**Fixed along the way, worth knowing if you are rereading old reports** + +- An early version of `3-run_campaign.sh` reused the same output directory on every + phase. Since EnergyTracer writes its CSVs in overwrite mode, **only the last phase was + ever analysed**. Every phase now writes under its own `phase-/`. Any report predating + this fix covers a much smaller sample than it claims. + +**Unresolved, and worth a dedicated run** + +- **How much of the super-linearity is attributable to the simulated persistence + context.** `CONTEXT_SIZE` retains 1,024 parents, so the live set grows mechanically + with N, and no `-Xmx` is fixed. This is the most likely angle of attack in review on the + dossier's strongest argument. A sensitivity study on those two parameters would resolve + the ambiguity. +- **Repeating level 1**: its headline ratios (x12.65 in time, x32 in allocation) come from + a single run, with only 100 reads at N=1000, even though these are the figures put + forward. +- **The bimodality observed** over 2 to 8 phases depending on size (+23% to +48%), not + contiguous. It does not affect the relative gap, but its cause remains unknown. + +**Confirmed by campaign2, with one new open item** + +- Six sizes instead of three reproduce the relative gap within 0.6 points at the three + shared sizes (10, 100, 1000), across two independent measurement sessions run on + different days β€” see `campaign2-interpretation.md` Β§ 3. +- The intermediate sizes (30, 50, 500) do **not** fill in a smooth curve: energy per + hydrated row dips at N=100 instead of climbing monotonically, and the phase-level + correlation between EAGER and LAZY collapses at N=100 (+0.10, versus +0.73 to +0.97 + everywhere else). Three independent signals converge on this anomaly; none identifies a + mechanism. **Worth a dedicated re-run around N=50–150** β€” see `campaign2-interpretation.md` + Β§ 4–§ 5 before assuming it is settled. + +--- + +## 9. Where this landed in the specification + +This harness's output already feeds +[PR #487](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/487), +which supersedes the four historical PRs. Three things to know if you are picking this up +after a gap: + +1. **No new rule specification is added.** The rule already exists as the SonarQube + built-in `java:S6904`; adding a custom one under the same identifier is not viable. +2. **`src/main/rules/S6904/java/S6904.asciidoc` already exists** and documents why this + isn't a `GCIxxx` rule, with the usual "why is this an issue," compliant/noncompliant + examples and exceptions sections, plus a "Local measures" section pointing at this + harness's results. Keep it in sync if the analysis changes; do not assume it needs to be + created. +3. **`RULES.md`'s row for this rule already points to PR #487** (its legacy key, + `CRJVM205`, is kept β€” no `GCI116` row was ever added, despite that being the original + plan in the PR's first commit). + +`s6904-analysis-summary.md`, at the root of this directory, is the PR description kept in +sync with both campaigns β€” paste-ready, and the place to update if the analysis changes +again. + +Reminder: the project's `starter-pack.md` **does not require** an energy measurement. The +Definition of Done is purely software-based (unit tests, integration tests, CHANGELOG); +the only evidentiary requirement is "give references proving the benefit of the rule". An +EnergyTracer measurement answers that well beyond the project's norm β€” an asset to +highlight, not a box to tick. + +--- + +*Internal working document. Content intended for public publication on GitHub: review and +validate before releasing.* diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/pom.xml b/src/main/rules/S6904/java/analysis/level1-jpa/pom.xml new file mode 100644 index 000000000..a3cbfb701 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/pom.xml @@ -0,0 +1,83 @@ + + + + + 4.0.0 + org.greencodeinitiative.bench + fetchtype-jpa-benchmark + 1.0.0 + jar + + + 17 + UTF-8 + 6.4.4.Final + 2.2.224 + + + + + org.hibernate.orm + hibernate-core + ${hibernate.version} + + + com.h2database + h2 + ${h2.version} + + + + org.slf4j + slf4j-nop + 2.0.13 + + + + + fetchtype-benchmark + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.2 + + + package + shade + + + + org.greencodeinitiative.bench.FetchTypeBenchmark + + + + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + + + + + diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/results/level1-20260802-120143.txt b/src/main/rules/S6904/java/analysis/level1-jpa/results/level1-20260802-120143.txt new file mode 100644 index 000000000..6538cd77b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/results/level1-20260802-120143.txt @@ -0,0 +1,26 @@ +GCI205 - JPA/Hibernate benchmark +java=21.0.11 vm=OpenJDK 64-Bit Server VM os=Mac OS X aarch64 +parent rows=200 + +fetch N reads stmt/read ent/read coll/read us/read KiB/read +---------------------------------------------------------------------------------------- +EAGER 10 2000 1,00 11,00 0,00 121,1 33,6 +LAZY 10 2000 1,00 1,00 0,00 67,0 24,4 +EAGER 100 200 1,00 101,00 0,00 253,9 105,1 +LAZY 100 200 1,00 1,00 0,00 68,1 24,1 +EAGER 1000 100 1,00 1001,00 0,00 968,5 764,1 +LAZY 1000 100 1,00 1,00 0,00 76,6 23,8 + +Overhead of EAGER over LAZY, per parent read: + N=10 time x1,81 allocation x1,38 rows hydrated +10 + N=100 time x3,73 allocation x4,37 rows hydrated +100 + N=1000 time x12,65 allocation x32,09 rows hydrated +1000 + +--- CSV --- +strategy,child_count,reads,statements,entity_loads,collection_fetches,elapsed_ns,allocated_bytes +EAGER,10,2000,2000,22000,0,242198333,68858584 +LAZY,10,2000,2000,2000,0,133940000,49931872 +EAGER,100,200,200,20200,0,50782833,21523744 +LAZY,100,200,200,200,0,13616042,4925568 +EAGER,1000,100,100,100100,0,96853000,78239448 +LAZY,1000,100,100,100,0,7658000,2438376 diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/run.sh b/src/main/rules/S6904/java/analysis/level1-jpa/run.sh new file mode 100644 index 000000000..5e7b76d1f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/run.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +# Builds and runs the level 1 JPA/Hibernate benchmark. +# +# Usage: +# ./run.sh # sizes 10,100,1000 with 200 parent rows +# ./run.sh 10,100,1000 200 +# +# Output goes to stdout and to results/jpa-.txt (table + CSV). +set -euo pipefail +cd "$(dirname "$0")" + +command -v mvn >/dev/null || { echo "maven not found"; exit 1; } + +mvn -q clean package + +mkdir -p results +stamp="$(date +%Y%m%d-%H%M%S)" +out="results/jpa-${stamp}.txt" + +java -jar target/fetchtype-benchmark.jar "$@" | tee "$out" + +echo +echo "Saved to $out" diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/FetchTypeBenchmark.java b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/FetchTypeBenchmark.java new file mode 100644 index 000000000..c61d21de4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/FetchTypeBenchmark.java @@ -0,0 +1,260 @@ +package org.greencodeinitiative.bench; + +import com.sun.management.ThreadMXBean; +import java.lang.management.ManagementFactory; +import java.util.ArrayList; +import java.util.List; +import java.util.Locale; +import java.util.function.ToLongFunction; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.cfg.Configuration; +import org.hibernate.stat.Statistics; + +/** + * FetchType LAZY - level 1 benchmark: measures the cost of {@code FetchType.EAGER} versus + * {@code FetchType.LAZY} on a JPA collection association, on a real Hibernate + H2 stack, + * for the case the rule targets: the application loads the parent and never touches + * the collection. + * + *

What is measured, per parent read: + *

    + *
  • JDBC statements prepared
  • + *
  • entities hydrated and collections fetched (Hibernate statistics)
  • + *
  • wall time
  • + *
  • bytes allocated on the heap
  • + *
+ * + *

These are functional proxies, not energy. Energy is measured separately at level 2 + * with EnergyTracer. Both are needed: this one shows how much useless work is done, + * the other shows what that work costs in joules. + * + *

A fresh session is opened for every read, so the first-level cache never turns the + * second read into a no-op. That mirrors one session per request in a real application. + * + *

Usage: {@code java -jar fetchtype-benchmark.jar [size,size,...] [parentRows]} + */ +public final class FetchTypeBenchmark { + + private static final int DEFAULT_PARENT_ROWS = 200; + private static final double WARMUP_RATIO = 0.25; + + private FetchTypeBenchmark() { + } + + public static void main(String[] args) { + int[] sizes = args.length > 0 ? parseSizes(args[0]) : new int[] {10, 100, 1000}; + int parentRows = args.length > 1 ? Integer.parseInt(args[1]) : DEFAULT_PARENT_ROWS; + + System.out.println("FetchType LAZY on JPA collections - benchmark"); + System.out.println("java=" + System.getProperty("java.version") + + " vm=" + System.getProperty("java.vm.name") + + " os=" + System.getProperty("os.name") + " " + System.getProperty("os.arch")); + System.out.println("parent rows=" + parentRows); + System.out.println(); + + List results = new ArrayList<>(); + for (int size : sizes) { + int reads = Math.max(100, 20_000 / size); + results.add(run("EAGER", size, parentRows, reads, + org.greencodeinitiative.bench.eager.Order.class, + o -> o.getId() + o.getReference().length())); + results.add(run("LAZY", size, parentRows, reads, + org.greencodeinitiative.bench.lazy.Order.class, + o -> o.getId() + o.getReference().length())); + } + + printTable(results); + printCsv(results); + } + + private static Result run(String strategy, + int childCount, + int parentRows, + int reads, + Class orderType, + ToLongFunction probe) { + + String dbName = "fetchtype_" + strategy.toLowerCase() + "_" + childCount; + Class itemType = "EAGER".equals(strategy) + ? org.greencodeinitiative.bench.eager.OrderItem.class + : org.greencodeinitiative.bench.lazy.OrderItem.class; + + try (SessionFactory sf = sessionFactory(dbName, orderType, itemType)) { + seed(sf, strategy, childCount, parentRows); + + int warmup = Math.max(10, (int) (reads * WARMUP_RATIO)); + readLoop(sf, orderType, probe, warmup, parentRows); + + System.gc(); + sleepQuietly(200); + + Statistics stats = sf.getStatistics(); + stats.clear(); + ThreadMXBean threads = (ThreadMXBean) ManagementFactory.getThreadMXBean(); + long allocBefore = threads.getCurrentThreadAllocatedBytes(); + long start = System.nanoTime(); + + readLoop(sf, orderType, probe, reads, parentRows); + + long elapsedNanos = System.nanoTime() - start; + long allocated = threads.getCurrentThreadAllocatedBytes() - allocBefore; + + return new Result( + strategy, + childCount, + reads, + stats.getPrepareStatementCount(), + stats.getEntityLoadCount(), + stats.getCollectionFetchCount(), + elapsedNanos, + allocated); + } + } + + private static void readLoop(SessionFactory sf, + Class orderType, + ToLongFunction probe, + int iterations, + int parentRows) { + long sink = 0; + for (int i = 0; i < iterations; i++) { + long id = (i % parentRows) + 1L; + try (Session session = sf.openSession()) { + T order = session.get(orderType, id); + // Only the parent is used. The collection is deliberately never accessed. + sink += probe.applyAsLong(order); + } + } + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static SessionFactory sessionFactory(String dbName, Class... entities) { + Configuration cfg = new Configuration(); + cfg.setProperty("hibernate.connection.driver_class", "org.h2.Driver"); + cfg.setProperty("hibernate.connection.url", + "jdbc:h2:mem:" + dbName + ";DB_CLOSE_DELAY=-1"); + cfg.setProperty("hibernate.connection.username", "sa"); + cfg.setProperty("hibernate.connection.password", ""); + cfg.setProperty("hibernate.dialect", "org.hibernate.dialect.H2Dialect"); + cfg.setProperty("hibernate.hbm2ddl.auto", "create-drop"); + cfg.setProperty("hibernate.generate_statistics", "true"); + cfg.setProperty("hibernate.show_sql", "false"); + cfg.setProperty("hibernate.format_sql", "false"); + cfg.setProperty("hibernate.cache.use_second_level_cache", "false"); + cfg.setProperty("hibernate.cache.use_query_cache", "false"); + // Seeding only: keeps the fixture build from dominating the run. Not measured. + cfg.setProperty("hibernate.jdbc.batch_size", "100"); + cfg.setProperty("hibernate.order_inserts", "true"); + for (Class entity : entities) { + cfg.addAnnotatedClass(entity); + } + return cfg.buildSessionFactory(); + } + + private static void seed(SessionFactory sf, String strategy, int childCount, int parentRows) { + try (Session session = sf.openSession()) { + session.beginTransaction(); + long itemId = 1L; + for (int p = 1; p <= parentRows; p++) { + if ("EAGER".equals(strategy)) { + var order = new org.greencodeinitiative.bench.eager.Order((long) p, "ORD-" + p); + for (int c = 0; c < childCount; c++) { + order.getItems().add(new org.greencodeinitiative.bench.eager.OrderItem( + itemId, "ITEM-" + itemId, 1 + (int) (itemId % 7), order)); + itemId++; + } + session.persist(order); + } else { + var order = new org.greencodeinitiative.bench.lazy.Order((long) p, "ORD-" + p); + for (int c = 0; c < childCount; c++) { + order.getItems().add(new org.greencodeinitiative.bench.lazy.OrderItem( + itemId, "ITEM-" + itemId, 1 + (int) (itemId % 7), order)); + itemId++; + } + session.persist(order); + } + if (p % 20 == 0) { + session.flush(); + session.clear(); + } + } + session.getTransaction().commit(); + } + } + + private static void printTable(List results) { + // Locale.ROOT throughout: printf's %f is locale-sensitive by default (a JVM + // running under a French locale prints "1,81" instead of "1.81"), which silently + // breaks anything downstream that parses this output as plain numbers. + System.out.printf(Locale.ROOT, "%-7s %6s %7s %11s %11s %11s %12s %12s%n", + "fetch", "N", "reads", "stmt/read", "ent/read", "coll/read", "us/read", "KiB/read"); + System.out.println("-".repeat(88)); + for (Result r : results) { + System.out.printf(Locale.ROOT, "%-7s %6d %7d %11.2f %11.2f %11.2f %12.1f %12.1f%n", + r.strategy, r.childCount, r.reads, + r.statements / (double) r.reads, + r.entityLoads / (double) r.reads, + r.collectionFetches / (double) r.reads, + r.elapsedNanos / 1_000.0 / r.reads, + r.allocatedBytes / 1024.0 / r.reads); + } + System.out.println(); + + System.out.println("Overhead of EAGER over LAZY, per parent read:"); + for (int i = 0; i + 1 < results.size(); i += 2) { + Result eager = results.get(i); + Result lazy = results.get(i + 1); + System.out.printf(Locale.ROOT, " N=%-5d time x%.2f allocation x%.2f rows hydrated +%d%n", + eager.childCount, + ratio(eager.elapsedNanos, lazy.elapsedNanos), + ratio(eager.allocatedBytes, lazy.allocatedBytes), + (eager.entityLoads - lazy.entityLoads) / eager.reads); + } + System.out.println(); + } + + private static void printCsv(List results) { + System.out.println("--- CSV ---"); + System.out.println("strategy,child_count,reads,statements,entity_loads," + + "collection_fetches,elapsed_ns,allocated_bytes"); + for (Result r : results) { + System.out.printf("%s,%d,%d,%d,%d,%d,%d,%d%n", + r.strategy, r.childCount, r.reads, r.statements, r.entityLoads, + r.collectionFetches, r.elapsedNanos, r.allocatedBytes); + } + } + + private static double ratio(long a, long b) { + return b == 0 ? Double.NaN : a / (double) b; + } + + private static int[] parseSizes(String arg) { + String[] parts = arg.split(","); + int[] sizes = new int[parts.length]; + for (int i = 0; i < parts.length; i++) { + sizes[i] = Integer.parseInt(parts[i].trim()); + } + return sizes; + } + + private static void sleepQuietly(long millis) { + try { + Thread.sleep(millis); + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); + } + } + + private record Result(String strategy, + int childCount, + int reads, + long statements, + long entityLoads, + long collectionFetches, + long elapsedNanos, + long allocatedBytes) { + } +} diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/eager/Order.java b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/eager/Order.java new file mode 100644 index 000000000..7a13399ca --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/eager/Order.java @@ -0,0 +1,52 @@ +package org.greencodeinitiative.bench.eager; + +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.HashSet; +import java.util.Set; + +/** + * NONCOMPLIANT mapping: the collection is fetched eagerly. + * + *

Strictly identical to {@code org.greencodeinitiative.bench.lazy.Order} except for the + * {@code fetch} attribute below. Both are mapped onto the same tables and are loaded through + * two separate SessionFactories. + */ +@Entity +@Table(name = "ORDERS") +public class Order { + + @Id + private Long id; + + private String reference; + + // The one line under test. + @OneToMany(mappedBy = "order", fetch = FetchType.EAGER, cascade = CascadeType.ALL) + private Set items = new HashSet<>(); + + protected Order() { + // required by JPA + } + + public Order(Long id, String reference) { + this.id = id; + this.reference = reference; + } + + public Long getId() { + return id; + } + + public String getReference() { + return reference; + } + + public Set getItems() { + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/eager/OrderItem.java b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/eager/OrderItem.java new file mode 100644 index 000000000..bc946b450 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/eager/OrderItem.java @@ -0,0 +1,41 @@ +package org.greencodeinitiative.bench.eager; + +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.Table; + +@Entity +@Table(name = "ORDER_ITEMS") +public class OrderItem { + + @Id + private Long id; + + private String label; + + private int quantity; + + // Kept LAZY on both sides: the rule under test targets collection associations only, + // so the owning side must not introduce a difference between the two variants. + @ManyToOne(fetch = FetchType.LAZY) + @JoinColumn(name = "ORDER_ID") + private Order order; + + protected OrderItem() { + // required by JPA + } + + public OrderItem(Long id, String label, int quantity, Order order) { + this.id = id; + this.label = label; + this.quantity = quantity; + this.order = order; + } + + public Long getId() { + return id; + } +} diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/lazy/Order.java b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/lazy/Order.java new file mode 100644 index 000000000..59bb9e651 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/lazy/Order.java @@ -0,0 +1,51 @@ +package org.greencodeinitiative.bench.lazy; + +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.HashSet; +import java.util.Set; + +/** + * COMPLIANT mapping: the collection is fetched lazily. + * + *

Strictly identical to {@code org.greencodeinitiative.bench.eager.Order} except for the + * {@code fetch} attribute below. + */ +@Entity +@Table(name = "ORDERS") +public class Order { + + @Id + private Long id; + + private String reference; + + // The one line under test. + @OneToMany(mappedBy = "order", fetch = FetchType.LAZY, cascade = CascadeType.ALL) + private Set items = new HashSet<>(); + + protected Order() { + // required by JPA + } + + public Order(Long id, String reference) { + this.id = id; + this.reference = reference; + } + + public Long getId() { + return id; + } + + public String getReference() { + return reference; + } + + public Set getItems() { + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/lazy/OrderItem.java b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/lazy/OrderItem.java new file mode 100644 index 000000000..2751fddbd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level1-jpa/src/main/java/org/greencodeinitiative/bench/lazy/OrderItem.java @@ -0,0 +1,41 @@ +package org.greencodeinitiative.bench.lazy; + +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.Table; + +@Entity +@Table(name = "ORDER_ITEMS") +public class OrderItem { + + @Id + private Long id; + + private String label; + + private int quantity; + + // Kept LAZY on both sides: the rule under test targets collection associations only, + // so the owning side must not introduce a difference between the two variants. + @ManyToOne(fetch = FetchType.LAZY) + @JoinColumn(name = "ORDER_ID") + private Order order; + + protected OrderItem() { + // required by JPA + } + + public OrderItem(Long id, String label, int quantity, Order order) { + this.id = id; + this.label = label; + this.quantity = quantity; + this.order = order; + } + + public Long getId() { + return id; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/1-generate.sh b/src/main/rules/S6904/java/analysis/level2-energytracer/1-generate.sh new file mode 100755 index 000000000..f8e958ffd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/1-generate.sh @@ -0,0 +1,61 @@ +#!/usr/bin/env bash +# Generates the Java variants (one pair per collection size: EAGER + LAZY) from the two +# templates. Regenerate after editing a template so the compliant and noncompliant +# variants never drift apart. +# +# Usage: ./1-generate.sh +# +# Output: generate/variants/FetchType{Eager,Lazy}N.java +set -euo pipefail + +cd "$(dirname "$0")" +mkdir -p generate/variants + +# size:parent_reads +# +# parent_reads is calibrated on two constraints: +# +# 1. One JVM run of the EAGER variant should last ~300-500 ms, so that JVM startup +# (~100-400 ms, paid once per iteration) does not drown the signal. +# Re-run ./2-calibrate.sh on the target machine and adjust if needed. +# +# 2. parent_reads x size is kept at ~5,000,000 hydrated child rows for every size. +# This is what makes the sizes comparable at equal nominal work, and it is the +# basis of the "energy per hydrated row" figure. Do not break it casually. +# N=30 is the only inexact one (166,667 x 30 = 5,000,010, off by 10 rows). +# +# The values for 10, 100 and 1000 are identical to those of campaign1: keeping them +# unchanged is what allows a later campaign to be compared with the first one. +CONFIGS=( + "10:500000" + "30:166667" + "50:100000" + "100:50000" + "500:10000" + "1000:5000" +) + +for cfg in "${CONFIGS[@]}"; do + n="${cfg%%:*}" + reads="${cfg##*:}" + + for variant in Eager Lazy; do + class="FetchType${variant}N${n}" + out="generate/variants/${class}.java" + sed -e "s/__CLASS__/${class}/g" \ + -e "s/__CHILD_COUNT__/${n}/g" \ + -e "s/__PARENT_READS__/${reads}/g" \ + "generate/template/${variant}.java.tpl" > "$out" + printf 'generated %-46s (CHILD_COUNT=%-4s PARENT_READS=%-7s rows=%s)\n' \ + "$out" "$n" "$reads" "$((n * reads))" + done +done + +echo +echo "Sanity check: compiling every variant." +tmp="$(mktemp -d)" +trap 'rm -rf "$tmp"' EXIT +for f in generate/variants/*.java; do + javac -d "$tmp" "$f" +done +echo "All variants compile." diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/2-calibrate.sh b/src/main/rules/S6904/java/analysis/level2-energytracer/2-calibrate.sh new file mode 100755 index 000000000..bb741c18c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/2-calibrate.sh @@ -0,0 +1,47 @@ +#!/usr/bin/env bash +# Times one JVM run of each variant, so PARENT_READS can be tuned for the target machine. +# +# Why this matters: EnergyTracer launches one JVM per iteration, and JVM startup costs +# ~100-400 ms. If a run only lasts 20 ms, 95% of what you measure is JVM startup and the +# EAGER/LAZY difference disappears into the noise. Aim for a run of roughly 300-500 ms. +# +# Usage: ./2-calibrate.sh +set -euo pipefail +cd "$(dirname "$0")" + +command -v javac >/dev/null || { echo "javac not found: install a JDK (not just a JRE)"; exit 1; } + +[ -d generate/variants ] || ./1-generate.sh + +build="$(mktemp -d)" +trap 'rm -rf "$build"' EXIT +javac -d "$build" generate/variants/*.java + +echo +printf '%-26s %10s %10s\n' "variant" "run 1" "run 2" +printf '%-26s %10s %10s\n' "--------------------------" "----------" "----------" + +for f in generate/variants/*.java; do + cls="$(basename "$f" .java)" + times=() + for _ in 1 2; do + start=$(python3 -c 'import time;print(int(time.time()*1000))') + java -cp "$build" "$cls" + end=$(python3 -c 'import time;print(int(time.time()*1000))') + times+=("$((end - start)) ms") + done + printf '%-26s %10s %10s\n' "$cls" "${times[0]}" "${times[1]}" +done + +cat <<'EOF' + +Reading the table +----------------- +These timings include JVM startup (~100-400 ms), so subtract roughly that much to get +the actual workload duration. + + workload well under 300 ms -> raise PARENT_READS in 1-generate.sh, then re-run ./1-generate.sh + workload well over 800 ms -> lower it, otherwise the campaign takes too long + +The EAGER and LAZY variants of the same size MUST keep the same PARENT_READS value. +EOF diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/3-run_campaign.sh b/src/main/rules/S6904/java/analysis/level2-energytracer/3-run_campaign.sh new file mode 100755 index 000000000..c8fed3ecc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/3-run_campaign.sh @@ -0,0 +1,195 @@ +#!/usr/bin/env bash +# Runs the full EnergyTracer campaign for FetchType LAZY, one campaign per collection size. +# +# Reimplements the protocol of EnergyTracer's own run_experiment.sh (warm-up phases, +# measurement phases, cooldown, shuffled order) because that script does not expose +# -f1/-f2 and therefore cannot point at our variants. +# +# Usage: +# ./3-run_campaign.sh [profiler] [sizes...] +# +# profiler : mac (Apple Silicon hardware counters) | carbon (CodeCarbon estimate) +# default: mac +# sizes : any of 10 30 50 100 500 1000 default: 10 30 50 100 500 1000 +# +# Example: +# ./3-run_campaign.sh ~/git_creedengo2/EnergyTracer mac 10 30 50 100 500 1000 +# +# Before running, go through the checklist in ../README.md section "Preparing the machine". +# +# Campaign archiving convention +# ----------------------------- +# This script always writes to ./out-tmp and ./results. Once a campaign is finished and +# its report has been built, move both directories plus consolidated-report into +# ./campaign/ so the next campaign starts clean. Past campaigns stay analysable in place: +# +# ./4-aggregate_report.sh -- \ +# --out-tmp campaign1/out-tmp --output campaign1/consolidated-report +# +# +# Where the output goes, and why it is built this way +# --------------------------------------------------- +# Two constraints from EnergyTracer's source dictate the layout below. +# +# 1. `ET -o X` is NOT an output path. src/main.py does: +# output_directory = Path("output") / args.profiler / args.output_dir +# so a bare `-o mytag` lands in /output//mytag/{raw,cleaned}. +# Because pathlib drops the left-hand parts when the right-hand one is absolute, +# passing an ABSOLUTE value to -o overrides the whole prefix and writes exactly +# there. That is what we do, so nothing is ever written inside the ET checkout. +# +# 2. `ET-analyzer -p D` infers the profiler from the path component that immediately +# follows D (src/analyzer.py: profiler = parts[parts.index(first_folder) + 1]). +# So D must be the parent of a directory named after the profiler. Pointing the +# analyzer one level too deep does not crash - it silently labels the report +# "raw" instead of "mac", which is worse. Nothing below that point matters to the +# analyzer, which walks the whole subtree with rglob("*.csv") - hence point 3. +# +# 3. `save_history` (src/utilities/save_csv.py) opens its CSV with mode "w": every +# call OVERWRITES the previous one at the same path. Upstream's own +# run_experiment.sh gives every phase a distinct tag (`-o "measure-$i"`) for +# exactly this reason. A first version of this script reused the same -o value +# across all measurement phases, so every phase silently erased the previous +# one and only the LAST phase's samples ever reached the analyzer. Fixed below: +# each phase gets its own "phase-$i" subdirectory. The analyzer does not care +# how deep the tree goes past , so this does not break point 2. +# +# Hence the layout, all absolute: +# +# out-tmp/fetchtype-n//phase-/{raw,cleaned}/*.csv <- one shard per phase, written by ET +# out-tmp/fetchtype-n/results///*.md <- written by ET-analyzer (merges all phases) +# ^ analyzer is pointed here, one level above +# +# Analysing per size rather than globally is deliberate: pointing the analyzer at the +# common root would merge all three collection sizes into a single meaningless report. +set -euo pipefail + +HERE="$(cd "$(dirname "$0")" && pwd)" + +ET_DIR="${1:-}" +if [ -z "$ET_DIR" ] || [ ! -d "$ET_DIR" ]; then + echo "usage: $0 [mac|carbon] [sizes...]" >&2 + exit 1 +fi +ET_DIR="$(cd "$ET_DIR" && pwd)" +shift + +PROFILER="${1:-mac}" +case "$PROFILER" in + mac|carbon) shift || true ;; + *) PROFILER="mac" ;; +esac + +SIZES=("$@") +[ ${#SIZES[@]} -eq 0 ] && SIZES=(10 30 50 100 500 1000) + +# Phase parameters. Deliberately different from EnergyTracer's defaults (500/1000): +# our workload is ~400 ms per JVM run instead of a few ms, so far fewer iterations +# per phase are needed to reach the same number of samples, and the campaign stays +# within a few hours instead of tens of hours. +WARMUP_PHASES="${WARMUP_PHASES:-5}" +WARMUP_N="${WARMUP_N:-5}" +MEASURE_PHASES="${MEASURE_PHASES:-30}" +MEASURE_N="${MEASURE_N:-30}" +COOLDOWN="${COOLDOWN:-60}" + +# Scratch area for raw measurements. Absolute, and outside the ET checkout. +OUT_ROOT="${OUT_ROOT:-$HERE/out-tmp}" + +command -v uv >/dev/null || { echo "uv not found in PATH" >&2; exit 1; } + +# Regenerate if any requested size is missing, not merely if the directory is absent: +# after adding a size to 1-generate.sh, the directory still exists but is incomplete, +# and the campaign would fail several minutes in on the first missing variant. +need_generate=0 +for n in "${SIZES[@]}"; do + [ -f "$HERE/generate/variants/FetchTypeEagerN${n}.java" ] && + [ -f "$HERE/generate/variants/FetchTypeLazyN${n}.java" ] || need_generate=1 +done +if [ "$need_generate" = 1 ]; then + echo "Some variants are missing for the requested sizes - regenerating." + "$HERE/1-generate.sh" + echo +fi + +mkdir -p "$OUT_ROOT" +OUT_ROOT="$(cd "$OUT_ROOT" && pwd)" + +echo "EnergyTracer : $ET_DIR" +echo "Profiler : $PROFILER" +echo "Sizes : ${SIZES[*]}" +echo "Scratch dir : $OUT_ROOT" +echo "Warm-up : $WARMUP_PHASES phases x $WARMUP_N iterations" +echo "Measurement : $MEASURE_PHASES phases x $MEASURE_N iterations (= $((MEASURE_PHASES * MEASURE_N)) samples per variant)" +echo "Cooldown : ${COOLDOWN}s between measurement phases" +echo +echo "Do not touch this machine until the campaign is over." +echo + +cd "$ET_DIR" + +for n in "${SIZES[@]}"; do + f1="$HERE/generate/variants/FetchTypeEagerN${n}.java" + f2="$HERE/generate/variants/FetchTypeLazyN${n}.java" + [ -f "$f1" ] && [ -f "$f2" ] || { + echo "no variant for size $n - add it to CONFIGS in 1-generate.sh" >&2; exit 1; } + + size_dir="$OUT_ROOT/fetchtype-n${n}" # analyzer input: parent of + data_dir="$size_dir/$PROFILER" # ET output: gets /raw and /cleaned appended + warm_dir="$OUT_ROOT/warmup-n${n}/$PROFILER" + + # Start each size from a clean slate, otherwise CSVs from a previous campaign + # would be silently merged into this one's report. + rm -rf "$size_dir" "$OUT_ROOT/warmup-n${n}" + mkdir -p "$data_dir" "$warm_dir" + [ -d "$data_dir" ] || { echo "could not create $data_dir" >&2; exit 1; } + + echo "=== size N=${n} : warm-up ===" + for i in $(seq 1 "$WARMUP_PHASES"); do + echo " warm-up $i/$WARMUP_PHASES" + uv run ET -p "$PROFILER" -n "$WARMUP_N" -f1 "$f1" -f2 "$f2" -o "$warm_dir" --shuffle + done + rm -rf "$OUT_ROOT/warmup-n${n}" # warm-up data is discarded, as upstream does + + echo "=== size N=${n} : measurement ===" + for i in $(seq 1 "$MEASURE_PHASES"); do + echo " phase $i/$MEASURE_PHASES" + # Each phase writes to its own subdirectory (see point 3 above): reusing + # $data_dir directly here would make every phase overwrite the last one. + uv run ET -p "$PROFILER" -n "$MEASURE_N" -f1 "$f1" -f2 "$f2" -o "$data_dir/phase-$i" --shuffle + if [ "$i" -lt "$MEASURE_PHASES" ]; then + sleep "$COOLDOWN" + fi + done + + # Fail loudly here rather than let the analyzer report an opaque "does not exist". + csv_count="$(find "$data_dir" -name '*.csv' -type f 2>/dev/null | wc -l | tr -d ' ')" + if [ "$csv_count" -eq 0 ]; then + echo "ERROR: no CSV produced under $data_dir" >&2 + echo "Contents of $size_dir:" >&2 + find "$size_dir" -maxdepth 3 2>/dev/null | sed 's|^| |' >&2 + echo "Check the ET output above: a failed javac or a non-zero exit code aborts a phase." >&2 + exit 1 + fi + echo " $csv_count CSV files collected" + + echo "=== size N=${n} : analysis ===" + uv run ET-analyzer -p "$size_dir" -v + + res="$HERE/results/n${n}" + rm -rf "$res" + mkdir -p "$res" + if [ -d "$size_dir/results" ]; then + cp -R "$size_dir/results/." "$res"/ + echo " reports copied to $res" + else + echo " WARNING: analyzer produced no results/ directory under $size_dir" >&2 + fi + echo +done + +echo "Campaign finished." +echo " reports : $HERE/results//" +echo " raw data : $OUT_ROOT/ (scratch - safe to delete once the reports are saved)" +echo +echo "Fill in ../results-template.md with the numbers, then attach it to the PR." diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/4-aggregate_report.py b/src/main/rules/S6904/java/analysis/level2-energytracer/4-aggregate_report.py new file mode 100644 index 000000000..1ddc8f055 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/4-aggregate_report.py @@ -0,0 +1,712 @@ +#!/usr/bin/env python3 +""" +Builds a single consolidated report directory from a full EnergyTracer campaign. + +Why this exists +--------------- +EnergyTracer splits its output in a way that is fine for one run but awkward for a +campaign made of many phases: + +* `ET` writes CSVs and plots once per phase, under + `//phase-/{raw,cleaned}/{csv,plots}/`. The plots therefore only + ever show ONE phase - a small slice of the campaign - which makes them misleading + to paste into a pull request. +* `ET-analyzer` merges the CSVs and writes a Markdown report, but never re-plots, and + produces one report per (size, data type) with no cross-size view. + +This script closes both gaps: it concatenates every phase, recomputes the statistics on +the whole sample, redraws the plots from the complete data, and assembles everything - +including EnergyTracer's own reports, kept verbatim - into one directory. + +Statistics +---------- +The mean/Welch/Cohen's d pipeline mirrors `src/analysis/statistical_analysis.py` of +EnergyTracer so the numbers stay comparable with its reports (same 3-sigma z-score +outlier removal, same pooled-std Cohen's d, same alpha, same delta convention). + +It adds Mann-Whitney U and Cliff's delta, which EnergyTracer's own EXPERIMENT_GUIDE +recommends for energy data - energy samples are rarely normally distributed, and a +Welch t-test alone is easy to attack in review. + +Usage +----- + ./4-aggregate_report.sh ~/git_creedengo2/EnergyTracer # recommended wrapper + python3 4-aggregate_report.py --help # direct, needs the deps + +Requires pandas, numpy, scipy and matplotlib - all already present in the EnergyTracer +virtualenv, which is what the wrapper script uses. +""" + +from __future__ import annotations + +import argparse +from dataclasses import dataclass +from pathlib import Path +import platform +import re +import shutil +import sys + +import matplotlib + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 +import numpy as np # noqa: E402 +import pandas as pd # noqa: E402 +from scipy import stats # noqa: E402 + +# ── Constants kept aligned with EnergyTracer ────────────────────────────────── + +METRICS = ("cpu_mj", "gpu_mj", "ane_mj", "dram_mj", "time_s") +ENERGY_METRICS = ("cpu_mj", "gpu_mj", "dram_mj", "ane_mj") +ALPHA = 0.05 +ZSCORE_THRESHOLD = 3 +MIN_SAMPLE_SIZE = 25 + +FIGURE_SIZE = (10, 6) +FIGURE_DPI = 150 + +LABEL_WITH = "EAGER (with smell)" +LABEL_WITHOUT = "LAZY (without smell)" + + +# ── Statistics (mirrors src/analysis/statistical_analysis.py) ───────────────── + + +def remove_outliers_zscore(values: list[float]) -> list[float]: + """Drop points more than 3 standard deviations from the mean.""" + if len(values) < 2: + return list(values) + arr = np.asarray(values, dtype=float) + std = np.std(arr, ddof=1) + if std == 0: + return list(values) + mean = np.mean(arr) + return [x for x in values if abs(mean - x) <= ZSCORE_THRESHOLD * std] + + +def cohens_d(a: list[float], b: list[float]) -> float: + """Effect size using the pooled standard deviation, as EnergyTracer defines it.""" + x, y = np.asarray(a, dtype=float), np.asarray(b, dtype=float) + if np.ptp(x) == 0 and np.ptp(y) == 0: + return 0.0 + pooled = np.sqrt((np.std(x, ddof=1) ** 2 + np.std(y, ddof=1) ** 2) / 2) + return 0.0 if pooled == 0 else float((np.mean(x) - np.mean(y)) / pooled) + + +def effect_label(d: float) -> str: + a = abs(d) + if a < 0.2: + return "negligible" + if a < 0.5: + return "small" + if a < 0.8: + return "medium" + return "large" + + +def cliffs_delta(a: list[float], b: list[float]) -> tuple[float, str]: + """ + Non-parametric effect size, derived from the Mann-Whitney U statistic + (delta = 2U / (n1 n2) - 1) to stay O(n log n) instead of comparing every pair. + + Thresholds are Romano et al.'s conventional ones. + """ + n1, n2 = len(a), len(b) + if n1 == 0 or n2 == 0: + return float("nan"), "n/a" + u = stats.mannwhitneyu(a, b, alternative="two-sided").statistic + delta = float(2 * u / (n1 * n2) - 1) + m = abs(delta) + if m < 0.147: + label = "negligible" + elif m < 0.33: + label = "small" + elif m < 0.474: + label = "medium" + else: + label = "large" + return delta, label + + +@dataclass +class MetricStats: + metric: str + unit: str + n_with: int + n_without: int + mean_with: float + mean_without: float + median_with: float + median_without: float + std_with: float + std_without: float + delta_pct: float + welch_p: float + welch_sig: bool + d: float + d_label: str + mw_p: float + mw_sig: bool + cliff: float + cliff_label: str + normal_with: bool + normal_without: bool + + +def shapiro_normal(values: list[float]) -> bool: + """Shapiro-Wilk normality check, subsampled above 5000 points as scipy advises.""" + arr = np.asarray(values, dtype=float) + if len(arr) < 3 or np.ptp(arr) == 0: + return False + if len(arr) > 5000: + arr = np.random.default_rng(seed=42).choice(arr, size=5000, replace=False) + return bool(stats.shapiro(arr).pvalue > ALPHA) + + +def analyse_metric( + df_with: pd.DataFrame, df_without: pd.DataFrame, metric: str, unit: str +) -> MetricStats | None: + if metric not in df_with.columns or metric not in df_without.columns: + return None + + a = remove_outliers_zscore(df_with[metric].dropna().tolist()) + b = remove_outliers_zscore(df_without[metric].dropna().tolist()) + if len(a) < 2 or len(b) < 2: + return None + + arr_a, arr_b = np.asarray(a), np.asarray(b) + mean_a, mean_b = float(np.mean(arr_a)), float(np.mean(arr_b)) + + if np.ptp(arr_a) == 0 or np.ptp(arr_b) == 0: + welch_p, welch_sig = 1.0, False + else: + welch_p = float(stats.ttest_ind(a, b, equal_var=False).pvalue) + welch_sig = welch_p < ALPHA + + mw_p = float(stats.mannwhitneyu(a, b, alternative="two-sided").pvalue) + cliff, cliff_label = cliffs_delta(a, b) + d = cohens_d(a, b) + + # Same convention as EnergyTracer: positive means the smell costs more. + delta = (mean_a - mean_b) / mean_a * 100 if mean_a != 0 else float("nan") + + return MetricStats( + metric=metric, + unit=unit, + n_with=len(a), + n_without=len(b), + mean_with=mean_a, + mean_without=mean_b, + median_with=float(np.median(arr_a)), + median_without=float(np.median(arr_b)), + std_with=float(np.std(arr_a, ddof=1)), + std_without=float(np.std(arr_b, ddof=1)), + delta_pct=delta, + welch_p=welch_p, + welch_sig=welch_sig, + d=d, + d_label=effect_label(d), + mw_p=mw_p, + mw_sig=mw_p < ALPHA, + cliff=cliff, + cliff_label=cliff_label, + normal_with=shapiro_normal(a), + normal_without=shapiro_normal(b), + ) + + +# ── Discovery ───────────────────────────────────────────────────────────────── + + +@dataclass +class Shard: + size: int + profiler: str + phase: str + variant: str # "with" | "without" + path: Path + + +# Size directories are matched on the "-n" suffix only, not on a fixed +# prefix: campaigns archived under an older naming scheme stay readable, and a +# future rename of the harness will not silently make past data invisible. +SIZE_RE = re.compile(r"-n(\d+)$") +PHASE_RE = re.compile(r"^phase-(\d+)$") + +# Filled by discover(): size -> directory that holds it, so the ET-analyzer +# reports can be located later whatever the prefix happens to be. +SIZE_DIRS: dict[int, Path] = {} + + +def discover(out_tmp: Path, data_type: str) -> list[Shard]: + """ + Walk out-tmp and index every per-phase CSV. + + Tolerates the older layout that had no `phase-` level, so data collected + before that fix can still be salvaged (it is reported as phase "single"). + """ + shards: list[Shard] = [] + SIZE_DIRS.clear() + for size_dir in sorted(out_tmp.glob("*-n*")): + m = SIZE_RE.search(size_dir.name) + if not m or not size_dir.is_dir(): + continue + if size_dir.name.startswith("warmup"): + continue # warm-up shards are not measurements + size = int(m.group(1)) + SIZE_DIRS[size] = size_dir + + for csv_path in size_dir.rglob(f"{data_type}/csv/history_*_smell.csv"): + stem = csv_path.stem + variant = "without" if "without_smell" in stem else "with" + + rel = csv_path.relative_to(size_dir).parts + profiler = rel[0] if rel else "unknown" + phase = next( + (p for p in rel if PHASE_RE.match(p)), + "single", + ) + shards.append(Shard(size, profiler, phase, variant, csv_path)) + return shards + + +def load(shards: list[Shard]) -> pd.DataFrame: + frames = [] + for s in shards: + try: + df = pd.read_csv(s.path) + except Exception as exc: # noqa: BLE001 + print(f" skipped {s.path}: {exc}", file=sys.stderr) + continue + if df.empty: + continue + df["size"] = s.size + df["profiler"] = s.profiler + df["phase"] = s.phase + df["variant"] = s.variant + frames.append(df) + if not frames: + return pd.DataFrame() + return pd.concat(frames, ignore_index=True) + + +# ── Plots ───────────────────────────────────────────────────────────────────── + + +def unit_for(metric: str, profiler: str) -> str: + if metric == "time_s": + return "s" + if metric == "ane_mj" and profiler == "carbon": + return "mg CO2eq" + return "mJ" + + +def display_name(metric: str, profiler: str) -> str: + if metric == "ane_mj" and profiler == "carbon": + return "co2_eq" + return metric + + +def plot_distributions( + df_with: pd.DataFrame, df_without: pd.DataFrame, metric: str, + profiler: str, out_dir: Path, size: int, +) -> list[Path]: + a = remove_outliers_zscore(df_with[metric].dropna().tolist()) + b = remove_outliers_zscore(df_without[metric].dropna().tolist()) + if len(a) < 2 or len(b) < 2: + return [] + + unit = unit_for(metric, profiler) + name = display_name(metric, profiler) + written = [] + + fig, ax = plt.subplots(figsize=FIGURE_SIZE) + ax.boxplot([a, b], tick_labels=[LABEL_WITH, LABEL_WITHOUT], showmeans=True) + ax.set_ylabel(f"{name} ({unit})") + ax.set_title(f"{name} - distribution, N={size} (all phases, {len(a)}+{len(b)} samples)") + ax.grid(True, alpha=0.3) + p = out_dir / f"{name}_box.png" + fig.savefig(p, dpi=FIGURE_DPI, bbox_inches="tight") + plt.close(fig) + written.append(p) + + fig, ax = plt.subplots(figsize=FIGURE_SIZE) + parts = ax.violinplot([a, b], positions=[1, 2], showmeans=True, showmedians=True) + for body in parts["bodies"]: + body.set_facecolor("lightblue") + body.set_alpha(0.7) + body.set_edgecolor("black") + ax.set_xticks([1, 2]) + ax.set_xticklabels([LABEL_WITH, LABEL_WITHOUT]) + ax.set_ylabel(f"{name} ({unit})") + ax.set_title(f"{name} - density, N={size} (all phases)") + ax.grid(True, alpha=0.3) + p = out_dir / f"{name}_violin.png" + fig.savefig(p, dpi=FIGURE_DPI, bbox_inches="tight") + plt.close(fig) + written.append(p) + + return written + + +def plot_phase_drift( + df: pd.DataFrame, metric: str, profiler: str, out_dir: Path, size: int +) -> Path | None: + """ + Mean per phase. Flat lines mean the campaign was thermally stable; a trend means + the environment drifted and the campaign should be rerun before publishing. + """ + if "phase" not in df.columns or df["phase"].nunique() < 2: + return None + + def phase_key(p: str) -> int: + m = PHASE_RE.match(p) + return int(m.group(1)) if m else 0 + + phases = sorted(df["phase"].unique(), key=phase_key) + unit = unit_for(metric, profiler) + name = display_name(metric, profiler) + + fig, ax = plt.subplots(figsize=FIGURE_SIZE) + for variant, label in (("with", LABEL_WITH), ("without", LABEL_WITHOUT)): + means = [] + for ph in phases: + vals = df[(df["variant"] == variant) & (df["phase"] == ph)][metric].dropna() + means.append(np.mean(remove_outliers_zscore(vals.tolist())) if len(vals) else np.nan) + ax.plot(range(1, len(phases) + 1), means, marker="o", label=label) + + # Phases are integers: let matplotlib interpolate ticks and you get "1.25". + ax.set_xticks(range(1, len(phases) + 1)) + ax.set_xlabel("Measurement phase") + ax.set_ylabel(f"mean {name} ({unit})") + ax.set_title(f"{name} - stability across phases, N={size}") + ax.legend(fontsize="small") + ax.grid(True, alpha=0.3) + p = out_dir / f"{name}_per_phase.png" + fig.savefig(p, dpi=FIGURE_DPI, bbox_inches="tight") + plt.close(fig) + return p + + +def plot_scaling( + per_size: dict[int, list[MetricStats]], out_dir: Path +) -> Path | None: + """ + Overhead versus collection size. This is the strongest argument available: + an effect that grows with N establishes the causal mechanism, not just a correlation. + """ + sizes = sorted(per_size) + if len(sizes) < 2: + return None + + metrics = [m for m in ("cpu_mj", "dram_mj", "time_s") if any( + any(s.metric == m for s in per_size[sz]) for sz in sizes + )] + if not metrics: + return None + + fig, ax = plt.subplots(figsize=FIGURE_SIZE) + for metric in metrics: + ys = [] + for sz in sizes: + st = next((s for s in per_size[sz] if s.metric == metric), None) + ys.append(st.delta_pct if st else np.nan) + ax.plot(range(len(sizes)), ys, marker="o", label=metric) + + ax.axhline(0, color="black", linewidth=0.8) + ax.set_xticks(range(len(sizes))) + ax.set_xticklabels([str(s) for s in sizes]) + ax.set_xlabel("Collection size (children per parent)") + ax.set_ylabel("Overhead of EAGER over LAZY (%)") + ax.set_title("Does the effect grow with collection size?") + ax.legend(fontsize="small") + ax.grid(True, alpha=0.3) + p = out_dir / "scaling_overhead.png" + fig.savefig(p, dpi=FIGURE_DPI, bbox_inches="tight") + plt.close(fig) + return p + + +# ── Markdown assembly ───────────────────────────────────────────────────────── + + +def fmt_p(p: float) -> str: + if np.isnan(p): + return "n/a" + return f"{p:.2e}" if p < 0.001 else f"{p:.4f}" + + +def stats_table(rows: list[MetricStats]) -> list[str]: + out = [ + "| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict |", + "|---|---:|---:|---:|---:|---:|---:|---:|:---:|", + ] + for s in rows: + both = s.welch_sig and s.mw_sig + if both and abs(s.cliff) >= 0.147: + verdict = "significant" + elif both: + verdict = "significant but negligible" + elif s.welch_sig or s.mw_sig: + verdict = "borderline" + else: + verdict = "not significant" + out.append( + f"| `{s.metric}` | {s.mean_with:.4f} {s.unit} | {s.mean_without:.4f} {s.unit} " + f"| {s.delta_pct:+.2f}% | {fmt_p(s.welch_p)} | {s.d:+.3f} ({s.d_label}) " + f"| {fmt_p(s.mw_p)} | {s.cliff:+.3f} ({s.cliff_label}) | {verdict} |" + ) + return out + + +def build_markdown( + per_size: dict[int, list[MetricStats]], + sample_counts: dict[int, tuple[int, int, int]], + profiler: str, + data_type: str, + source_reports: dict[int, list[Path]], + scaling_plot: Path | None, + plots_by_size: dict[int, list[Path]], +) -> str: + L: list[str] = [] + L.append("# FetchType LAZY on JPA collections - consolidated energy report") + L.append("") + L.append( + "Aggregated across every measurement phase of the campaign. " + "Regenerated by `4-aggregate_report.py`; EnergyTracer's own per-size reports are " + "reproduced verbatim at the end." + ) + L.append("") + L.append("| | |") + L.append("|---|---|") + L.append(f"| Profiler | `{profiler}` |") + L.append(f"| Data type | `{data_type}` |") + L.append(f"| Collection sizes | {', '.join(str(s) for s in sorted(per_size))} |") + L.append(f"| Significance level | Ξ± = {ALPHA} |") + L.append(f"| Host | `{platform.node()}` - {platform.system()} {platform.release()} - {platform.machine()} |") + L.append("") + + L.append("## Sample sizes") + L.append("") + L.append("| Collection size | Phases | Samples EAGER | Samples LAZY |") + L.append("|---:|---:|---:|---:|") + for sz in sorted(sample_counts): + ph, nw, nwo = sample_counts[sz] + L.append(f"| {sz} | {ph} | {nw} | {nwo} |") + L.append("") + thin = [sz for sz, (_, nw, nwo) in sample_counts.items() + if min(nw, nwo) < MIN_SAMPLE_SIZE] + if thin: + L.append( + f"> ⚠ Sizes {', '.join(map(str, sorted(thin)))} have fewer than " + f"{MIN_SAMPLE_SIZE} samples per variant, below the minimum EnergyTracer's " + "own methodology considers acceptable. Treat these rows as exploratory." + ) + L.append("") + + if scaling_plot is not None: + L.append("## Effect versus collection size") + L.append("") + L.append( + "An overhead that grows with the number of children is the core argument " + "for the rule: it shows the cost is caused by hydrating the collection, " + "not by incidental noise." + ) + L.append("") + L.append(f"![scaling](plots/{scaling_plot.name})") + L.append("") + L.append("| Collection size | Ξ” cpu_mj | Ξ” dram_mj | Ξ” time_s |") + L.append("|---:|---:|---:|---:|") + for sz in sorted(per_size): + def d(m: str) -> str: + st = next((s for s in per_size[sz] if s.metric == m), None) + return f"{st.delta_pct:+.2f}%" if st else "n/a" + L.append(f"| {sz} | {d('cpu_mj')} | {d('dram_mj')} | {d('time_s')} |") + L.append("") + + for sz in sorted(per_size): + L.append(f"## Collection size N = {sz}") + L.append("") + L.extend(stats_table(per_size[sz])) + L.append("") + L.append( + "> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: " + "positive means the smell costs more." + ) + L.append("") + non_normal = [s.metric for s in per_size[sz] + if not (s.normal_with and s.normal_without)] + if non_normal: + L.append( + f"> Shapiro-Wilk rejects normality for {', '.join(f'`{m}`' for m in non_normal)}. " + "For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight " + "than the Welch t-test and Cohen's d." + ) + L.append("") + for p in plots_by_size.get(sz, []): + L.append(f"![{p.stem}](plots/n{sz}/{p.name})") + L.append("") + + if any(source_reports.values()): + L.append("## EnergyTracer reports, verbatim") + L.append("") + L.append( + "Unmodified output of `ET-analyzer`, kept so every number above can be " + "traced back to the tool itself." + ) + L.append("") + for sz in sorted(source_reports): + for rep in source_reports[sz]: + L.append(f"

N = {sz} - {rep.name}") + L.append("") + try: + L.append(rep.read_text(encoding="utf-8")) + except Exception as exc: # noqa: BLE001 + L.append(f"*(unreadable: {exc})*") + L.append("") + L.append("
") + L.append("") + + L.append("## How to read this, and what not to claim") + L.append("") + L.append( + "- A result is worth quoting only when Welch **and** Mann-Whitney agree and " + "Cliff's Ξ΄ is at least small. Large sample sizes make tiny differences " + "\"significant\" without making them relevant." + ) + L.append( + "- Check the per-phase plots before trusting anything: a visible trend means " + "the machine drifted during the campaign and the run should be repeated." + ) + L.append( + "- These figures measure the client side only - no database engine, no network. " + "They are a lower bound on the real saving." + ) + L.append("") + return "\n".join(L) + + +# ── Main ────────────────────────────────────────────────────────────────────── + + +def main() -> int: + here = Path(__file__).resolve().parent + ap = argparse.ArgumentParser( + description="Aggregate a full EnergyTracer campaign into one report directory." + ) + ap.add_argument("--out-tmp", type=Path, default=here / "out-tmp", + help="campaign scratch directory (default: ./out-tmp)") + ap.add_argument("--output", type=Path, default=here / "consolidated-report", + help="report directory to create (default: ./consolidated-report)") + ap.add_argument("--data-type", choices=["raw", "cleaned"], default="raw", + help="which EnergyTracer data set to aggregate. 'raw' is " + "recommended: it is filtered once, globally, whereas " + "'cleaned' was already filtered per phase on small samples " + "(default: raw)") + args = ap.parse_args() + + out_tmp: Path = args.out_tmp.resolve() + output: Path = args.output.resolve() + + if not out_tmp.is_dir(): + print(f"error: {out_tmp} does not exist - run a campaign first", file=sys.stderr) + return 1 + + print(f"Scanning {out_tmp} for '{args.data_type}' data…") + shards = discover(out_tmp, args.data_type) + if not shards: + print(f"error: no '{args.data_type}' CSV found under {out_tmp}", file=sys.stderr) + print("Expected .../-n//phase-/" + f"{args.data_type}/csv/history_*_smell.csv", file=sys.stderr) + return 1 + + df = load(shards) + if df.empty: + print("error: every CSV was empty or unreadable", file=sys.stderr) + return 1 + + profilers = sorted(df["profiler"].unique()) + if len(profilers) > 1: + print(f"warning: several profilers present ({', '.join(profilers)}); " + "reporting them together is not meaningful", file=sys.stderr) + profiler = profilers[0] + + if output.exists(): + shutil.rmtree(output) + (output / "data").mkdir(parents=True) + (output / "plots").mkdir(parents=True) + (output / "reports-source").mkdir(parents=True) + + per_size: dict[int, list[MetricStats]] = {} + sample_counts: dict[int, tuple[int, int, int]] = {} + plots_by_size: dict[int, list[Path]] = {} + source_reports: dict[int, list[Path]] = {} + + for size in sorted(df["size"].unique()): + sub = df[df["size"] == size] + d_with = sub[sub["variant"] == "with"] + d_without = sub[sub["variant"] == "without"] + n_phases = sub["phase"].nunique() + sample_counts[int(size)] = (n_phases, len(d_with), len(d_without)) + print(f" N={size}: {n_phases} phases, " + f"{len(d_with)} + {len(d_without)} samples") + + size_data = output / "data" / f"n{size}" + size_data.mkdir(parents=True, exist_ok=True) + d_with.to_csv(size_data / "with_smell.csv", index=False) + d_without.to_csv(size_data / "without_smell.csv", index=False) + + rows = [] + for metric in METRICS: + st = analyse_metric(d_with, d_without, metric, unit_for(metric, profiler)) + if st: + rows.append(st) + per_size[int(size)] = rows + + size_plots = output / "plots" / f"n{size}" + size_plots.mkdir(parents=True, exist_ok=True) + written: list[Path] = [] + for metric in METRICS: + written += plot_distributions( + d_with, d_without, metric, profiler, size_plots, int(size) + ) + drift = plot_phase_drift(sub, metric, profiler, size_plots, int(size)) + if drift: + written.append(drift) + plots_by_size[int(size)] = written + + # EnergyTracer's own reports, copied so nothing is lost. + found: list[Path] = [] + results_dir = SIZE_DIRS[int(size)] / "results" + if results_dir.is_dir(): + dest = output / "reports-source" / f"n{size}" + dest.mkdir(parents=True, exist_ok=True) + for md in sorted(results_dir.rglob("*_report.md")): + target = dest / f"{md.parent.parent.name}_{md.name}" + shutil.copy2(md, target) + found.append(target) + source_reports[int(size)] = found + + df.to_csv(output / "data" / "all_measurements.csv", index=False) + scaling = plot_scaling(per_size, output / "plots") + + (output / "REPORT.md").write_text( + build_markdown(per_size, sample_counts, profiler, args.data_type, + source_reports, scaling, plots_by_size), + encoding="utf-8", + ) + + n_plots = sum(len(v) for v in plots_by_size.values()) + (1 if scaling else 0) + print() + print(f"Report written to {output}") + print(f" REPORT.md consolidated document") + print(f" data/ {len(df)} measurements, per size + combined") + print(f" plots/ {n_plots} figures regenerated from the full sample") + print(f" reports-source/ {sum(len(v) for v in source_reports.values())} " + "EnergyTracer reports, unmodified") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/4-aggregate_report.sh b/src/main/rules/S6904/java/analysis/level2-energytracer/4-aggregate_report.sh new file mode 100755 index 000000000..66676b683 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/4-aggregate_report.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash +# Builds the consolidated campaign report from out-tmp/. +# +# Usage: +# ./4-aggregate_report.sh [path-to-EnergyTracer-checkout] [-- extra args] +# +# Examples: +# ./4-aggregate_report.sh ~/git_creedengo2/EnergyTracer +# ./4-aggregate_report.sh ~/git_creedengo2/EnergyTracer -- --data-type cleaned +# ./4-aggregate_report.sh # uses the system python3 +# +# Output: consolidated-report/ - REPORT.md, aggregated CSVs, regenerated plots, and +# EnergyTracer's own reports kept verbatim. See ../README.md section 6. +# +# To rebuild the report of an archived campaign, point it at that campaign: +# ./4-aggregate_report.sh ~/git_creedengo2/EnergyTracer -- \ +# --out-tmp campaign1/out-tmp --output campaign1/consolidated-report +# +# Passing the EnergyTracer checkout is the easy path: its virtualenv already has +# pandas, numpy, scipy and matplotlib, so nothing needs installing. Without it, +# the script falls back to python3 and those four packages must be importable. +set -euo pipefail + +HERE="$(cd "$(dirname "$0")" && pwd)" +PY="$HERE/4-aggregate_report.py" + +ET_DIR="" +if [ $# -gt 0 ] && [ "${1:-}" != "--" ]; then + ET_DIR="$1" + shift +fi +[ "${1:-}" = "--" ] && shift + +if [ -n "$ET_DIR" ]; then + if [ ! -d "$ET_DIR" ]; then + echo "not a directory: $ET_DIR" >&2 + exit 1 + fi + ET_DIR="$(cd "$ET_DIR" && pwd)" + command -v uv >/dev/null || { echo "uv not found in PATH" >&2; exit 1; } + exec uv run --project "$ET_DIR" python "$PY" "$@" +fi + +command -v python3 >/dev/null || { echo "python3 not found" >&2; exit 1; } +if ! python3 -c "import pandas, numpy, scipy, matplotlib" 2>/dev/null; then + cat >&2 <<'EOF' +Missing Python dependencies (pandas, numpy, scipy, matplotlib). + +Easiest fix - reuse the EnergyTracer virtualenv, which already has them: + + ./4-aggregate_report.sh ~/git_creedengo2/EnergyTracer +EOF + exit 1 +fi +exec python3 "$PY" "$@" diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/campaign1-interpretation.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/campaign1-interpretation.md new file mode 100644 index 000000000..cd9ea558a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/campaign1-interpretation.md @@ -0,0 +1,306 @@ +# Interpretation of the measurements β€” rule "FetchType.LAZY on JPA collections" (S6904) + +*Analysis of the campaign run on 2026-08-04. Internal working document.* + +*Context note: SonarQube already ships a built-in rule under the identifier S6904, so the +four historical PRs this harness was built to support (#122, #125, #155, #325) are being +closed as duplicates rather than merged. This document is kept regardless, as independent +evidence that the underlying code smell has a real, measurable cost β€” useful to justify why +the built-in rule matters and to inform its configuration (severity, default scope), even +though no new rule will be shipped from this work.* + +--- + +## Summary + +**The rule's impact is measured, robust, and grows faster than collection size.** Over 30 +paired phases and 900 runs per variant per size, measured with the hardware counters of a +MacBook Pro M1 Pro, hydrating a collection that is never used costs +**0.31 to 0.92 Β΅J per child row**. All 30 phases point the same way at all three sizes β€” +p β‰ˆ 2Β·10⁻⁹ by a sign test, with no distributional assumption at all. + +**The percentage (81% to 91%) should not be the main argument**, for three reasons +developed in Β§ 5: it depends on a bench-calibration parameter, the absolute yearly saving +is modest, and at small sizes the JPA bench β€” more realistic β€” shows a much smaller gap +(x1.81 in time at N=10 versus x5.3 in energy). + +**The recommended case** rests on three pillars that are harder to contest: + +1. **Super-linearity.** Multiplying collection size by 10 multiplies energy per read by 12 + to 13, then by 21 to 23 β€” the cost grows as N^1.10 to N^1.37. +2. **Latency and memory**: x12.65 in time and x32 in allocation at N=1000, measured on a + real Hibernate stack. +3. **Zero fix cost**: one annotation attribute. + +**Two reservations not to hide.** First, the 900 runs are not independent (inter-variant +correlation per phase of 0.70 to 0.95): the valid statistical unit is the phase, n=30, and +the tool's astronomical p-values are indefensible. Second, part of the super-linearity may +come from the simulated persistence context, which retains 1,024 parents, so its memory +footprint grows with N. + +**Conclusion**: the rule is clearly relevant for collections on the order of a hundred +elements and above; the gain is marginal at ten. + +--- + +## 1. What was measured + +| | Level 1 β€” JPA | Level 2 β€” energy | +|---|---|---| +| Stack | Hibernate 6.4.4 + H2, JDK 21.0.11 | Plain Java, simulated row source | +| Tool | Hibernate Statistics + JDK | EnergyTracer, `mac` profiler (hardware counters) | +| Machine | MacBook Pro M1 Pro (arm64) | MacBookPro18,1 β€” Apple M1 Pro | +| Volume | **A single run**, 100 to 2,000 reads depending on N | 30 phases Γ— 30 iterations = 900 runs per variant | +| Protocol | β€” | 60 s cooldown, randomised variant order, machine prepared | + +Scenario identical at both levels, and strictly the one the rule targets: a parent entity +owns a collection of children, the application loads the parent and **never accesses** +the collection. Sizes: **10, 100 and 1000 children per parent**. + +**Property of the energy bench only**: the number of child rows hydrated per run is held +constant at 5,000,000 there (500,000 Γ— 10, 50,000 Γ— 100, 5,000 Γ— 1000), which makes the +three sizes comparable at equal nominal work. The JPA bench, by contrast, performs +20,000, 20,000 and 100,000 hydrations β€” its ratios should be read per read, not in +absolute terms. + +**Scope of the energy totals**: `ane_mj` is **excluded from every calculation** in this +document (see Β§ 4). Totals therefore equal CPU + GPU + DRAM. + +--- + +## 2. Results + +### Level 1 β€” functional cost (real Hibernate) + +| N | Statements / read | Hydrated entities / read | Time | Allocation | +|---:|---:|---:|---:|---:| +| 10 | 1.00 β†’ 1.00 | 11 β†’ 1 | x1.81 | x1.38 | +| 100 | 1.00 β†’ 1.00 | 101 β†’ 1 | x3.73 | x4.37 | +| 1000 | 1.00 β†’ 1.00 | 1001 β†’ 1 | x12.65 | x32.09 | + +**The statement count is identical β€” 1.00 per read in every case.** An important and +counter-intuitive result: Hibernate resolves the eager collection with a join, with no +extra round trip. **The overhead is therefore not an N+1 problem** but a payload and +hydration problem. This confirms the scope decision from the fusion proposal: N+1 on +single-valued associations belongs to a separate rule. + +LAZY allocation is flat (β‰ˆ 24 KiB per read regardless of N), EAGER allocation grows from +33.6 to 764.1 KiB. + +*Caveat: this level rests on a single run, and only 100 reads at N=1000. The ratios are +orders of magnitude, not repeated measurements.* + +### Level 2 β€” energy cost + +Means over 900 runs, outliers removed at 3Οƒ, CPU + GPU + DRAM: + +| N | EAGER | LAZY | Gap | Relative gap | Ratio | +|---:|---:|---:|---:|---:|---:| +| 10 | 2,047.7 mJ | 388.4 mJ | 1,659.3 mJ | +81.0% | x5.27 | +| 100 | 2,510.6 mJ | 343.5 mJ | 2,167.1 mJ | +86.3% | x7.31 | +| 1000 | 5,041.9 mJ | 468.0 mJ | 4,573.9 mJ | +90.7% | x10.77 | + +### The correct statistic: at the phase level + +The 900 runs within one phase share the same thermal state and the same system context. +They are not independent: the correlation between a phase's EAGER and LAZY means is +**+0.695 at N=10, +0.851 at N=100, +0.945 at N=1000**. Treating the 900 runs as 900 +independent observations β€” which is what the tool does β€” artificially inflates +significance. **The valid unit is the phase: n = 30 pairs.** + +| N | Mean gap per phase | 95% CI | Relative gap | Phases pointing the same way | +|---:|---:|---:|---:|:---:| +| 10 | 1,674.9 mJ | [1,564.7, 1,785.1] | 80.83% Β± 0.76 | **30 / 30** | +| 100 | 2,166.3 mJ | [2,028.9, 2,303.7] | 86.29% Β± 0.52 | **30 / 30** | +| 1000 | 4,637.2 mJ | [4,545.2, 4,729.2] | 90.61% Β± 0.20 | **30 / 30** | + +All 30 phases point the same way at all three sizes. **Sign test: p = 2 Γ— 0.5³⁰ β‰ˆ +1.9 Γ— 10⁻⁹**, with no assumption of normality, equal variance, or within-phase +independence. This is the figure to cite, and it is more than enough. + +Beyond that, on `cpu_mj`, `dram_mj` and `time_s`, the distributions are **strictly +disjoint** at all three sizes: at N=1000 for instance, the LAZY maximum is 542.9 mJ +against an EAGER minimum of 4,265.2 mJ. No statistical test is needed to settle it. + +*Nuance: this disjointness does not hold for `gpu_mj`, where the distributions overlap at +N=10 and N=100. The GPU accounts for under 0.15% of the gap anyway and is not an +argument.* + +Breakdown of the gap by component: + +| N | CPU | DRAM | GPU | +|---:|---:|---:|---:| +| 10 | 76.1% | 23.8% | 0.1% | +| 100 | 79.9% | 20.0% | 0.1% | +| 1000 | 86.9% | 13.0% | 0.0% | + +The gap is carried by the CPU (object creation, decoding, collection insert) and by DRAM +(memory pressure). The CPU share grows with size. + +--- + +## 3. The figure to publish: energy per hydrated row + +| N | Β΅J / hydrated row | Range depending on treatment | Β΅J / parent read | +|---:|---:|---:|---:| +| 10 | 0.33 | 0.31 – 0.34 | 3.1 – 3.3 | +| 100 | 0.43 | 0.39 – 0.44 | 39 – 44 | +| 1000 | 0.92 | 0.92 – 0.93 | β‰ˆ 915 | + +The range reflects including or excluding the high-regime phases (Β§ 4). **Publish two +significant figures**: the third decimal is not supported by the data. + +### Super-linearity, the central argument + +| Step | Rows | Energy / read | Exponent | +|---|---:|---:|---:| +| N=10 β†’ 100 | x10 | x12.4 to x13.1 | 1.10 – 1.12 | +| N=100 β†’ 1000 | x10 | x20.9 to x23.5 | 1.32 – 1.37 | + +Multiplying the collection by 10 multiplies the energy cost per read by 12-13, then by +21-23. The cost grows as **N^1.10 to N^1.37**, not linearly β€” and the conclusion holds +under both data treatments, which is the important point. Each individual row also gets +more expensive as the collection grows: 0.33 Β΅J at N=10 versus 0.92 Β΅J at N=1000. + +**Honest reservation about the mechanism.** Two explanations overlap and this +measurement does not separate them: + +- degrading cache locality and rising garbage-collector pressure as collections grow β€” + the effect the rule targets; +- the **bench's simulated persistence context**, which retains 1,024 parents + (`CONTEXT_SIZE`): under EAGER, the live set therefore holds 1,024 Γ— N child objects, + growing mechanically with N. No `-Xmx` was fixed. + +This second factor is defensible β€” a real persistence context does retain hydrated +collections β€” but it means part of the super-linearity reflects live-set size rather than +a per-row cost. **A sensitivity study on `CONTEXT_SIZE` and `-Xmx` would resolve the +ambiguity**; in its absence, present the super-linearity as observed on this bench, not +as a general law. + +--- + +## 4. Quality control: two regimes, not a drift + +The per-phase stability plot initially suggested thermal drift. Examining the affected +phases shows something else: a **binary factor**. + +| N | High-regime phases | Gap over the low regime | +|---:|---|---:| +| 10 | 22, 28, 29, 30 (4/30) | +48% | +| 100 | 1, 2, 7, 8, 26, 27, 28, 29 (8/30) | +41% | +| 1000 | 29, 30 (2/30) | +23% | + +At N=100, the high phases are **1, 2, 7, 8** then **26 to 29**: non-contiguous, and +including the first ones. Gradual heating does not produce this pattern. The plausible +hypothesis is a scheduling shift (performance cores versus efficiency cores) or +intermittent system activity. The bimodality is visible on the violin plots. + +**Why the conclusion holds.** The factor affects both variants together, since they are +measured within the same phase and in randomised order. The relative gap is therefore +insensitive to it: + +| N | EAGER drift | LAZY drift | Ξ”% phases 1-5 β†’ 26-30 | +|---:|---:|---:|---:| +| 10 | +25.2% | +25.1% | 81.19 β†’ 81.10 (βˆ’0.09 pt) | +| 100 | +0.8% | βˆ’1.8% | 86.16 β†’ 86.01 (βˆ’0.16 pt) | +| 1000 | +8.4% | +15.3% | 90.67 β†’ 90.05 (βˆ’0.62 pt) | + +The relative gap never moves by more than 0.7 points. And energy per row, recomputed +excluding the high phases, varies from βˆ’1.4% to βˆ’10% β€” hence the range in Β§ 3. + +This is the strength of the paired, randomised design: it absorbs perturbations that hit +both variants at once. Worth keeping in mind when reading the plots. + +### Anomaly excluded: `ane_mj` + +The ANE (Apple Neural Engine) counter reports 11.4 mJ at N=10, 23.9 mJ at N=100 and +0.0012 mJ at N=1000 β€” with no neural workload in the benchmark, and no plausible +mechanism for such variation across sizes. A measurement artefact, or crosstalk with +system activity. + +Its Cliff's Ξ΄ is negligible everywhere (+0.050, +0.121, +0.036) and it accounts for under +1% of the total. **It is excluded from every figure in this document.** This lowers +totals by roughly 0.6% at N=10 and N=100, without changing any conclusion. + +### Average power + +At N=10, the LAZY variant shows a *higher* average power draw (5.17 W versus 4.18 W): it +works in short bursts. **The saving comes from duration, not from a lower instantaneous +draw.** At N=1000, EAGER reaches 7.18 W against 3.54 W β€” sustained memory pressure. EAGER +power grows from 4.18 to 7.18 W with size, consistent with the super-linear reading. + +--- + +## 5. What not to claim + +### "EAGER consumes 91% more energy" + +Wrong out of context. At level 2, the LAZY variant does almost nothing: the gap measures +the share of hydration **within this synthetic program**, a share that depends on the +`PARENT_READS` parameter chosen to calibrate the bench. In production this cost is +diluted by SQL, network, serialisation and business logic. + +Correct wording: "hydrating an unused collection costs 0.33 to 0.92 Β΅J per row, and that +cost grows faster than the number of rows". + +### The tool's p-values + +`ET-analyzer` reports p-values below 10⁻²⁷⁰, computed on 900 samples treated as +independent. They are not (Β§ 2). **Do not cite them**: a statistically literate reviewer +will have no trouble dismantling the reasoning, and that would be a shame since the +result does not need it. Cite the sign test over 30 phases (p β‰ˆ 2Β·10⁻⁹) and the +disjointness of the distributions instead. + +### The two levels do not contradict each other + +At N=10, level 1 reports x1.81 in time while level 2 reports x5.27 in energy. This is not +an inconsistency: at level 1, a full LAZY read costs β‰ˆ 67 Β΅s (session open, query, parent +hydration, close), which dwarfs the cost of hydrating 10 rows. Level 2 has a much leaner +baseline. + +**Level 1 is the realistic figure at small sizes.** The two converge at N=1000: x12.65 in +time versus x10.77 in energy. + +### The absolute saving is modest + +A service handling 1,000 requests per second, each loading a parent with 100 unused +children, wastes: + +> 1,000 Γ— 100 Γ— 0.43 Β΅J β‰ˆ **43 mW**, roughly **0.38 kWh per year** + +That is little β€” a few hours of laptop use. And it is a lower bound: the database-server +cost and the network transfer are not measured. + +**Defending the rule on energy savings alone would be fragile.** It is defended by the +combination: latency divided by 12, allocation by 32, super-linear growth, free fix. The +energy figure confirms the mechanism; it is not the knockout argument. + +### The relevance threshold is not resolved + +No size between 10 and 100 was tested. Saying "from about a hundred" is an +interpolation, not a measurement. Honest wording: the gain is marginal at ten, clear at a +hundred, and the crossover point was not sought. + +--- + +## Sources + +- Consolidated report: `level2-energytracer/campaign1/consolidated-report/REPORT.md` +- Consolidated data: `level2-energytracer/campaign1/consolidated-report/data/` β€” 5,400 measurements (3 sizes Γ— 2 variants Γ— 900) +- Plots: `level2-energytracer/campaign1/consolidated-report/plots/` +- Raw EnergyTracer reports: `level2-energytracer/campaign1/consolidated-report/reports-source/` +- Level 1: `level1-jpa/results/level1-20260802-120143.txt` β€” file predates both the + harness rename and the S6904 assignment; its header still reads the original rule + identifier used before this repository location was settled. + +Every figure in this document was recomputed from the raw data, independently of the +tool's own report. + +See also `level2-energytracer/campaign2/campaign2-interpretation.md` for the follow-up +campaign, which adds three intermediate sizes (30, 50, 500) and refines this document's +conclusions on the scaling law and the relevance threshold. + +--- + +*Internal analysis, kept as evidence that the code smell targeted by S6904 has a real, +measurable cost.* diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/REPORT.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/REPORT.md new file mode 100644 index 000000000..ab7923fbd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/REPORT.md @@ -0,0 +1,425 @@ +# FetchType LAZY on JPA collections - consolidated energy report + +Aggregated across every measurement phase of the campaign. Regenerated by `aggregate_report.py`; EnergyTracer's own per-size reports are reproduced verbatim at the end. + +| | | +|---|---| +| Profiler | `mac` | +| Data type | `raw` | +| Collection sizes | 10, 100, 1000 | +| Significance level | Ξ± = 0.05 | +| Host | `M-NGY9VPYVMH` - Darwin 25.5.0 - arm64 | + +## Sample sizes + +| Collection size | Phases | Samples EAGER | Samples LAZY | +|---:|---:|---:|---:| +| 10 | 30 | 900 | 900 | +| 100 | 30 | 900 | 900 | +| 1000 | 30 | 900 | 900 | + +## Effect versus collection size + +An overhead that grows with the number of children is the core argument for the rule: it shows the cost is caused by hydrating the collection, not by incidental noise. + +![scaling](plots/scaling_overhead.png) + +| Collection size | Ξ” cpu_mj | Ξ” dram_mj | Ξ” time_s | +|---:|---:|---:|---:| +| 10 | +79.74% | +85.45% | +84.95% | +| 100 | +86.12% | +87.13% | +84.73% | +| 1000 | +91.17% | +87.83% | +81.06% | + +## Collection size N = 10 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 1583.1190 mJ | 320.7996 mJ | +79.74% | 0.00e+00 | +6.500 (large) | 7.58e-289 | +1.000 (large) | significant | +| `gpu_mj` | 2.0598 mJ | 0.2778 mJ | +86.51% | 1.12e-33 | +0.605 (medium) | 1.33e-149 | +0.705 (large) | significant | +| `ane_mj` | 11.3956 mJ | 1.6459 mJ | +85.56% | 9.85e-23 | +0.475 (small) | 0.0062 | +0.050 (negligible) | significant but negligible | +| `dram_mj` | 462.4862 mJ | 67.2775 mJ | +85.45% | 0.00e+00 | +28.600 (large) | 4.69e-287 | +1.000 (large) | significant | +| `time_s` | 0.4878 s | 0.0734 s | +84.95% | 0.00e+00 | +52.041 (large) | 6.69e-294 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n10/cpu_mj_box.png) +![cpu_mj_violin](plots/n10/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n10/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n10/gpu_mj_box.png) +![gpu_mj_violin](plots/n10/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n10/gpu_mj_per_phase.png) +![ane_mj_box](plots/n10/ane_mj_box.png) +![ane_mj_violin](plots/n10/ane_mj_violin.png) +![ane_mj_per_phase](plots/n10/ane_mj_per_phase.png) +![dram_mj_box](plots/n10/dram_mj_box.png) +![dram_mj_violin](plots/n10/dram_mj_violin.png) +![dram_mj_per_phase](plots/n10/dram_mj_per_phase.png) +![time_s_box](plots/n10/time_s_box.png) +![time_s_violin](plots/n10/time_s_violin.png) +![time_s_per_phase](plots/n10/time_s_per_phase.png) + +## Collection size N = 100 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 2011.7589 mJ | 279.2056 mJ | +86.12% | 0.00e+00 | +6.230 (large) | 2.25e-295 | +1.000 (large) | significant | +| `gpu_mj` | 1.9044 mJ | 0.3575 mJ | +81.23% | 4.98e-169 | +1.546 (large) | 4.75e-179 | +0.776 (large) | significant | +| `ane_mj` | 23.8978 mJ | 3.2133 mJ | +86.55% | 2.91e-48 | +0.729 (medium) | 1.09e-08 | +0.121 (negligible) | significant but negligible | +| `dram_mj` | 496.8967 mJ | 63.9467 mJ | +87.13% | 0.00e+00 | +20.514 (large) | 2.25e-295 | +1.000 (large) | significant | +| `time_s` | 0.5221 s | 0.0797 s | +84.73% | 0.00e+00 | +74.836 (large) | 2.91e-292 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n100/cpu_mj_box.png) +![cpu_mj_violin](plots/n100/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n100/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n100/gpu_mj_box.png) +![gpu_mj_violin](plots/n100/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n100/gpu_mj_per_phase.png) +![ane_mj_box](plots/n100/ane_mj_box.png) +![ane_mj_violin](plots/n100/ane_mj_violin.png) +![ane_mj_per_phase](plots/n100/ane_mj_per_phase.png) +![dram_mj_box](plots/n100/dram_mj_box.png) +![dram_mj_violin](plots/n100/dram_mj_violin.png) +![dram_mj_per_phase](plots/n100/dram_mj_per_phase.png) +![time_s_box](plots/n100/time_s_box.png) +![time_s_violin](plots/n100/time_s_violin.png) +![time_s_per_phase](plots/n100/time_s_per_phase.png) + +## Collection size N = 1000 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 4360.2893 mJ | 385.0175 mJ | +91.17% | 0.00e+00 | +89.445 (large) | 3.84e-276 | +1.000 (large) | significant | +| `gpu_mj` | 2.3046 mJ | 0.3733 mJ | +83.80% | 0.00e+00 | +3.683 (large) | 2.87e-296 | +1.000 (large) | significant | +| `ane_mj` | 0.0012 mJ | 0.0000 mJ | +100.00% | 1.0000 | +0.272 (small) | 3.30e-08 | +0.036 (negligible) | borderline | +| `dram_mj` | 679.3202 mJ | 82.6486 mJ | +87.83% | 0.00e+00 | +117.690 (large) | 2.82e-277 | +1.000 (large) | significant | +| `time_s` | 0.6704 s | 0.1270 s | +81.06% | 0.00e+00 | +134.006 (large) | 2.29e-288 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n1000/cpu_mj_box.png) +![cpu_mj_violin](plots/n1000/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n1000/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n1000/gpu_mj_box.png) +![gpu_mj_violin](plots/n1000/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n1000/gpu_mj_per_phase.png) +![ane_mj_box](plots/n1000/ane_mj_box.png) +![ane_mj_violin](plots/n1000/ane_mj_violin.png) +![ane_mj_per_phase](plots/n1000/ane_mj_per_phase.png) +![dram_mj_box](plots/n1000/dram_mj_box.png) +![dram_mj_violin](plots/n1000/dram_mj_violin.png) +![dram_mj_per_phase](plots/n1000/dram_mj_per_phase.png) +![time_s_box](plots/n1000/time_s_box.png) +![time_s_violin](plots/n1000/time_s_violin.png) +![time_s_per_phase](plots/n1000/time_s_per_phase.png) + +## EnergyTracer reports, verbatim + +Unmodified output of `ET-analyzer`, kept so every number above can be traced back to the tool itself. + +
N = 10 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 880 samples (with smell) vs 882 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 481.32 ms | 73.56 ms | +| **Average Power** | 4.194 W | 5.170 W | +| **Total Energy** | 1776.26 J | 335.44 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.68% | 0.00e+00 | +6.469 | large | βœ… | +| `gpu_mj` | +86.23% | 6.17e-33 | +0.604 | medium | βœ… | +| `ane_mj` | +85.06% | 3.92e-22 | +0.473 | small | βœ… | +| `dram_mj` | +85.42% | 0.00e+00 | +28.839 | large | βœ… | +| `time_s` | +84.91% | 0.00e+00 | +53.990 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.469, large) +- **`gpu_mj`**: 86.2% lower energy (Cohen’s d = +0.604, medium) +- **`ane_mj`**: 85.1% lower energy (Cohen’s d = +0.473, small) +- **`dram_mj`**: 85.4% lower energy (Cohen’s d = +28.839, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +53.990, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 10 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 482.89 ms | 73.43 ms | +| **Average Power** | 4.177 W | 5.169 W | +| **Total Energy** | 1815.47 J | 341.56 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.74% | 0.00e+00 | +6.500 | large | βœ… | +| `gpu_mj` | +86.51% | 1.12e-33 | +0.605 | medium | βœ… | +| `ane_mj` | +85.56% | 9.85e-23 | +0.475 | small | βœ… | +| `dram_mj` | +85.45% | 0.00e+00 | +28.600 | large | βœ… | +| `time_s` | +84.95% | 0.00e+00 | +52.041 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.500, large) +- **`gpu_mj`**: 86.5% lower energy (Cohen’s d = +0.605, medium) +- **`ane_mj`**: 85.6% lower energy (Cohen’s d = +0.475, small) +- **`dram_mj`**: 85.5% lower energy (Cohen’s d = +28.600, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +52.041, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 100 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 521.44 ms | 78.82 ms | +| **Average Power** | 4.860 W | 4.414 W | +| **Total Energy** | 2258.08 J | 304.41 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.07% | 0.00e+00 | +6.228 | large | βœ… | +| `gpu_mj` | +80.99% | 2.11e-166 | +1.541 | large | βœ… | +| `ane_mj` | +86.38% | 1.05e-47 | +0.729 | medium | βœ… | +| `dram_mj` | +87.09% | 0.00e+00 | +20.546 | large | βœ… | +| `time_s` | +84.69% | 0.00e+00 | +75.359 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.228, large) +- **`gpu_mj`**: 81.0% lower energy (Cohen’s d = +1.541, large) +- **`ane_mj`**: 86.4% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.546, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +75.359, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 100 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 520.34 ms | 78.33 ms | +| **Average Power** | 4.871 W | 4.426 W | +| **Total Energy** | 2281.01 J | 312.04 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.12% | 0.00e+00 | +6.230 | large | βœ… | +| `gpu_mj` | +81.23% | 4.98e-169 | +1.546 | large | βœ… | +| `ane_mj` | +86.55% | 2.91e-48 | +0.729 | medium | βœ… | +| `dram_mj` | +87.13% | 0.00e+00 | +20.514 | large | βœ… | +| `time_s` | +84.73% | 0.00e+00 | +74.836 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.230, large) +- **`gpu_mj`**: 81.2% lower energy (Cohen’s d = +1.546, large) +- **`ane_mj`**: 86.6% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.514, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +74.836, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 1000 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 892 samples (with smell) vs 874 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 650.62 ms | 125.11 ms | +| **Average Power** | 7.226 W | 3.505 W | +| **Total Energy** | 4193.45 J | 383.30 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.15% | 0.00e+00 | +95.218 | large | βœ… | +| `gpu_mj` | +83.82% | 0.00e+00 | +3.677 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.273 | small | βœ… | +| `dram_mj` | +87.81% | 0.00e+00 | +129.181 | large | βœ… | +| `time_s` | +81.05% | 0.00e+00 | +145.073 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.1% lower energy (Cohen’s d = +95.218, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.677, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.273, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +129.181, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +145.073, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 1000 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 655.51 ms | 123.73 ms | +| **Average Power** | 7.179 W | 3.544 W | +| **Total Energy** | 4235.28 J | 394.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.17% | 0.00e+00 | +89.445 | large | βœ… | +| `gpu_mj` | +83.80% | 0.00e+00 | +3.683 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.272 | small | βœ… | +| `dram_mj` | +87.83% | 0.00e+00 | +117.690 | large | βœ… | +| `time_s` | +81.06% | 0.00e+00 | +134.006 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.2% lower energy (Cohen’s d = +89.445, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.683, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.272, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +117.690, large) +- **`time_s`**: 81.1% lower time (Cohen’s d = +134.006, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +## How to read this, and what not to claim + +- A result is worth quoting only when Welch **and** Mann-Whitney agree and Cliff's Ξ΄ is at least small. Large sample sizes make tiny differences "significant" without making them relevant. +- Check the per-phase plots before trusting anything: a visible trend means the machine drifted during the campaign and the run should be repeated. +- These figures measure the client side only - no database engine, no network. They are a lower bound on the real saving. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/all_measurements.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/all_measurements.csv new file mode 100644 index 000000000..4ce71130f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/all_measurements.csv @@ -0,0 +1,5401 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,297.4059709817293,0.9431835074740536,0.0,64.00173800716793,0.0684758749994216,10,mac,phase-19,without +1,294.011382014694,0.9324180197543812,0.0,63.2712227690473,0.0676942920035799,10,mac,phase-19,without +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.0683419589986442,10,mac,phase-19,without +3,295.5819955572358,0.937399011847616,0.0,63.609218661088235,0.0680559160027769,10,mac,phase-19,without +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.0683780000035767,10,mac,phase-19,without +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.0666158339954563,10,mac,phase-19,without +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.0695982499964884,10,mac,phase-19,without +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.0631072079995647,10,mac,phase-19,without +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908,10,mac,phase-19,without +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.0682349579947185,10,mac,phase-19,without +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217,10,mac,phase-19,without +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.0678802910042577,10,mac,phase-19,without +12,298.78404079959876,0.9475538727362968,0.0,64.29829850710586,0.068793167003605,10,mac,phase-19,without +13,298.6888503744389,0.9472519889550676,0.0,64.27781353623672,0.0687712500002817,10,mac,phase-19,without +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.0684182080003665,10,mac,phase-19,without +15,300.98587226643184,0.9545366885785584,0.0,64.77213243925932,0.0693001250037923,10,mac,phase-19,without +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.0688503339988528,10,mac,phase-19,without +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.0703221669973572,10,mac,phase-19,without +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.0622112919954815,10,mac,phase-19,without +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.0704370409948751,10,mac,phase-19,without +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.0679169579962035,10,mac,phase-19,without +21,294.30110968856326,0.9333368525631184,0.0,63.33357213821159,0.067760999998427,10,mac,phase-19,without +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.0683039159994223,10,mac,phase-19,without +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.0686080419982317,10,mac,phase-19,without +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.0654641670043929,10,mac,phase-19,without +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.0682025420028367,10,mac,phase-19,without +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.0679551669963984,10,mac,phase-19,without +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.0682538749970262,10,mac,phase-19,without +28,297.22988805085987,0.9426250838627336,0.0,63.963844976399784,0.0684353329997975,10,mac,phase-19,without +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.0624182920000748,10,mac,phase-19,without +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.4793388750040321,10,mac,phase-19,with +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867,10,mac,phase-19,with +2,1441.9302878449869,0.8980466361832127,0.0,453.4470292994718,0.4827684999982011,10,mac,phase-19,with +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275,10,mac,phase-19,with +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.4821773330040741,10,mac,phase-19,with +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047,10,mac,phase-19,with +6,1443.403897575609,0.8989644130499505,0.0,453.9104386337028,0.4832618750006077,10,mac,phase-19,with +7,1444.6679358767042,0.8997516670204607,0.0,454.3079435737015,0.4836850840001716,10,mac,phase-19,with +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.4824928329981048,10,mac,phase-19,with +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.4815640420056297,10,mac,phase-19,with +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736,10,mac,phase-19,with +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.4813424999956623,10,mac,phase-19,with +12,1446.278188474604,0.9007545462450248,0.0,454.8143232947564,0.4842242080048891,10,mac,phase-19,with +13,1461.7319885114002,0.9103793063712816,0.0,459.6741142133216,0.4893982499997946,10,mac,phase-19,with +14,1485.9730603675405,0.925476855275964,0.0,467.29725807323024,0.4975143330011633,10,mac,phase-19,with +15,1485.196744674062,0.9249933591575864,0.0,467.0531283479768,0.4972544169941102,10,mac,phase-19,with +16,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.482734375000291,10,mac,phase-19,with +17,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.4800897910026833,10,mac,phase-19,with +18,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867,10,mac,phase-19,with +19,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679,10,mac,phase-19,with +20,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.4850834579992806,10,mac,phase-19,with +21,1445.4697617578422,0.9002510511040261,0.0,454.5600955444884,0.4839535409992095,10,mac,phase-19,with +22,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.4804581249991315,10,mac,phase-19,with +23,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503,10,mac,phase-19,with +24,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.4839730419989791,10,mac,phase-19,with +25,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.4804693330006557,10,mac,phase-19,with +26,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.4802924999967217,10,mac,phase-19,with +27,1455.9690940043993,0.9067901259023524,0.0,457.8618439417322,0.4874687919946154,10,mac,phase-19,with +28,1436.5572954868485,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864,10,mac,phase-19,with +29,1432.2019249021291,0.8919877277255372,0.0,450.3877293363795,0.4795113750005839,10,mac,phase-19,with +0,310.5645000365186,0.0,0.0,62.906193325953055,0.0660357079977984,10,mac,phase-26,without +1,288.3742824692979,0.0,0.0,58.41146802391626,0.0613173750025453,10,mac,phase-26,without +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334,10,mac,phase-26,without +3,321.1442400366122,0.0,0.0,65.04916578322343,0.0682852910031215,10,mac,phase-26,without +4,320.22265380094257,0.0,0.0,64.86249447371847,0.0680893329990794,10,mac,phase-26,without +5,319.2936180922495,0.0,0.0,64.67431424097813,0.0678917910045129,10,mac,phase-26,without +6,321.08878720952856,0.0,0.0,65.03793357136217,0.0682735000009415,10,mac,phase-26,without +7,320.00827793597637,0.0,0.0,64.81907170774105,0.0680437499977415,10,mac,phase-26,without +8,320.43507321341815,0.0,0.0,64.90552095171516,0.0681344999975408,10,mac,phase-26,without +9,317.3079830296693,0.0,0.0,64.2721152030753,0.0674695830020937,10,mac,phase-26,without +10,320.68334814658476,0.0,0.0,64.95581012173277,0.0681872909990488,10,mac,phase-26,without +11,325.38888014404125,0.0,0.0,65.90893614063914,0.0691878340003313,10,mac,phase-26,without +12,295.5038000069898,0.0,0.0,59.85558288087539,0.0628333330023451,10,mac,phase-26,without +13,298.2466145543028,0.0,0.0,60.41115192418272,0.0634165410010609,10,mac,phase-26,without +14,342.3866146636323,0.0,0.0,69.35190136579169,0.0728020829992601,10,mac,phase-26,without +15,299.69944448734907,0.0,0.0,60.70542896044151,0.0637254579996806,10,mac,phase-26,without +16,292.9898605966174,0.0,0.0,59.34637349429057,0.0622987910028314,10,mac,phase-26,without +17,323.37110492136594,0.0,0.0,65.50022697320047,0.0687587919965153,10,mac,phase-26,without +18,316.76831626965384,0.0,0.0,64.16280334826533,0.0673548330014455,10,mac,phase-26,without +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589,10,mac,phase-26,without +20,319.69611777139016,0.0,0.0,64.75584230560457,0.0679773750016465,10,mac,phase-26,without +21,322.2084863736894,0.0,0.0,65.26473351816657,0.068511582998326,10,mac,phase-26,without +22,322.89276972182176,0.0,0.0,65.40333809332657,0.0686570830002892,10,mac,phase-26,without +23,295.41542632084173,0.0,0.0,59.83768240549876,0.0628145419977954,10,mac,phase-26,without +24,322.6825089599613,0.0,0.0,65.36074885942217,0.068612374998338,10,mac,phase-26,without +25,322.5780652279843,0.0,0.0,65.33959332620877,0.0685901670003659,10,mac,phase-26,without +26,321.6707807541225,0.0,0.0,65.15581890090364,0.0683972499973606,10,mac,phase-26,without +27,318.3269632325836,0.0,0.0,64.4785140852151,0.0676862500040442,10,mac,phase-26,without +28,328.9750938995778,0.0,0.0,66.63533937020159,0.0699503750001895,10,mac,phase-26,without +29,307.251251832783,0.0,0.0,62.235080458846376,0.0653312079957686,10,mac,phase-26,without +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.4850850830043782,10,mac,phase-26,with +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073,10,mac,phase-26,with +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.4835799590000533,10,mac,phase-26,with +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713,10,mac,phase-26,with +4,1424.9465914698055,2.933752351272618,0.0,449.7211609933968,0.4767452079977374,10,mac,phase-26,with +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784,10,mac,phase-26,with +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895,10,mac,phase-26,with +7,1442.0672958435391,2.969001326225478,0.0,455.1245516145416,0.4824732919951202,10,mac,phase-26,with +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.479428958002245,10,mac,phase-26,with +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.4815057919986429,10,mac,phase-26,with +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.4818122079959721,10,mac,phase-26,with +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.4855657499938388,10,mac,phase-26,with +12,1443.4372101016247,2.97182177521617,0.0,455.5569042615079,0.4829316250034026,10,mac,phase-26,with +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.4798023340044892,10,mac,phase-26,with +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.481620083002781,10,mac,phase-26,with +15,1430.940346220044,2.946092597704819,0.0,451.6128237133354,0.4787505420026718,10,mac,phase-26,with +16,1433.879062454506,2.952142975813154,0.0,452.5402990900995,0.4797337499985588,10,mac,phase-26,with +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338,10,mac,phase-26,with +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.4819761249964358,10,mac,phase-26,with +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.4826666669978294,10,mac,phase-26,with +20,1445.466802782904,2.97600040361984,0.0,456.19745513017386,0.483610667004541,10,mac,phase-26,with +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073,10,mac,phase-26,with +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602,10,mac,phase-26,with +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814,10,mac,phase-26,with +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204,10,mac,phase-26,with +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738,10,mac,phase-26,with +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832,10,mac,phase-26,with +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.4825754170014988,10,mac,phase-26,with +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.4834982090033008,10,mac,phase-26,with +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.4834735410040593,10,mac,phase-26,with +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.090134540994768,10,mac,phase-21,without +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.088257416995475,10,mac,phase-21,without +2,455.5753429091931,1.3050782533395655,13.497256672696034,88.47056791059792,0.0903868749956018,10,mac,phase-21,without +3,419.6566096594096,1.202182522959485,12.433098197975724,81.49532050377981,0.0832605410032556,10,mac,phase-21,without +4,435.18530530497446,1.2466672899803264,12.893164341112325,84.51091944708739,0.0863414589985041,10,mac,phase-21,without +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.0862921669977367,10,mac,phase-21,without +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.0870674999969196,10,mac,phase-21,without +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.0829531249983119,10,mac,phase-21,without +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.085397875001945,10,mac,phase-21,without +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.0889262089986004,10,mac,phase-21,without +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.087149708000652,10,mac,phase-21,without +11,445.6432605229153,1.276626000744122,13.20300048138,86.5418046820226,0.088416334001522,10,mac,phase-21,without +12,443.8860921648639,1.2715922730693427,13.15094113990136,86.20057093227965,0.0880677089953678,10,mac,phase-21,without +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.0856246249968535,10,mac,phase-21,without +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.0846896250004647,10,mac,phase-21,without +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.0914325000048847,10,mac,phase-21,without +16,448.61450172342313,1.2851376604214158,13.291028961726749,87.11880561172545,0.0890058329969178,10,mac,phase-21,without +17,446.24997941202497,1.278364057116996,13.220975643341562,86.6596266087732,0.0885367079972638,10,mac,phase-21,without +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.0873248749994672,10,mac,phase-21,without +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951,10,mac,phase-21,without +20,443.4385504379859,1.2703102085671665,13.137681893865697,86.11366045444791,0.0879789160026121,10,mac,phase-21,without +21,442.1656725615023,1.2666638188720003,13.099970547807796,85.8664736161651,0.0877263750007841,10,mac,phase-21,without +22,441.68348391262026,1.2652825019735825,13.085684823042577,85.77283487063022,0.0876307080034166,10,mac,phase-21,without +23,435.0414455972906,1.2462551777381865,12.888902232923874,84.4829825750939,0.0863129170029424,10,mac,phase-21,without +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.0910823329977574,10,mac,phase-21,without +25,446.02715863284936,1.2777257465547136,13.214374168315857,86.616355871709,0.0884924999991199,10,mac,phase-21,without +26,450.1188192756612,1.2894470510723803,13.33559713345909,87.410936935854,0.0893042919997242,10,mac,phase-21,without +27,448.4937466626544,1.2847917356336875,13.287451371158928,87.09535555243103,0.0889818750001723,10,mac,phase-21,without +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.0864285839998046,10,mac,phase-21,without +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.0874653330029104,10,mac,phase-21,without +0,1533.8317063038091,1.9223856119804856,3.480180849275017,458.8204142525148,0.482414374993823,10,mac,phase-21,with +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305,10,mac,phase-21,with +2,1532.7859211727923,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907,10,mac,phase-21,with +3,1538.3956003927374,1.9281056426038587,3.490536077127675,460.1856277683658,0.4838497919990914,10,mac,phase-21,with +4,1522.9541430561326,1.9087525184704217,3.4555002489550732,455.5665709170007,0.4789932089988724,10,mac,phase-21,with +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.6217034126296,0.4843082919978769,10,mac,phase-21,with +6,1558.8705879131594,1.9537674027910896,3.536992711949386,466.31038201443187,0.4902894999977434,10,mac,phase-21,with +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.1310771797192,0.4806381669986876,10,mac,phase-21,with +8,1530.6126061866742,1.9183510417448648,3.4728768859174273,457.85747363576144,0.4814019170007668,10,mac,phase-21,with +9,1529.805810596203,1.9173398667713937,3.4710463105344194,457.6161340640759,0.4811481670039939,10,mac,phase-21,with +10,1543.3268559157984,1.934286095535932,3.501724828125394,461.66073138799834,0.4854007499961881,10,mac,phase-21,with +11,1528.3825913511537,1.9155561142331377,3.467817103353094,457.19040154016074,0.4807005420007044,10,mac,phase-21,with +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202,10,mac,phase-21,with +13,1532.1754590843225,1.9203098002655896,3.476422914273912,458.32497525994063,0.4818934590002754,10,mac,phase-21,with +14,1548.060719170639,1.9402191523196637,3.5124657067855973,463.0767883717431,0.4868896249972749,10,mac,phase-21,with +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935,10,mac,phase-21,with +16,1531.8200143511997,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334,10,mac,phase-21,with +17,1544.5072416097676,1.9357654993488456,3.504403059166014,462.0138242670011,0.4857719999999972,10,mac,phase-21,with +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605,10,mac,phase-21,with +19,1532.2398437391903,1.920390494994772,3.476568999559501,458.3442348657349,0.4819137089943979,10,mac,phase-21,with +20,1550.311531046087,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921,10,mac,phase-21,with +21,1542.165283280946,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617,10,mac,phase-21,with +22,1531.4933249285327,1.9194548662587223,3.4748751889166525,458.12092609688784,0.4816789169999538,10,mac,phase-21,with +23,1524.2148076912772,1.910332537677336,3.458360628553798,455.94367791495455,0.4793897080016904,10,mac,phase-21,with +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068,10,mac,phase-21,with +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.4818482909977319,10,mac,phase-21,with +26,1538.7289158546507,1.9285233943334643,3.4912923518105825,460.2853335820371,0.4839546249932027,10,mac,phase-21,with +27,1566.0945228565863,1.9628213221618085,3.5533834280515495,468.4713028049295,0.4925615419997484,10,mac,phase-21,with +28,1626.4442900112474,2.0384590362524007,3.6903137725258977,486.52393860072385,0.5115425000039977,10,mac,phase-21,with +29,1622.90856352767,2.0340276311041094,3.68229140113675,485.466284437486,0.5104304580017924,10,mac,phase-21,with +0,478.8738629620707,0.3431147812004327,14.220201487529048,87.79926012273296,0.0864906249989871,10,mac,phase-28,without +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.0864957080048043,10,mac,phase-28,without +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.0880929580016527,10,mac,phase-28,without +3,399.3710335699146,0.2861507286146987,11.859357974809182,73.22279199996125,0.0721314170004916,10,mac,phase-28,without +4,491.1808267997274,0.3519327634103611,14.585657861340524,90.05568379267353,0.0887134170043282,10,mac,phase-28,without +5,483.7304803199704,0.3465945643563198,14.364419167211922,88.68969796806718,0.0873677909985417,10,mac,phase-28,without +6,483.518014469227,0.3464423318384717,14.358109975083329,88.65074335822227,0.087329417001456,10,mac,phase-28,without +7,485.3377441423682,0.3477461744511833,14.412147007810152,88.98438219567502,0.0876580830008606,10,mac,phase-28,without +8,499.413915114863,0.3578317997001645,14.83014014312904,91.56518163438656,0.0902004160016076,10,mac,phase-28,without +9,473.2155736942138,0.3390605973447913,14.052178089956351,86.76183952056161,0.0854686669990769,10,mac,phase-28,without +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.0707355000049574,10,mac,phase-28,without +11,394.0454011504646,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108,10,mac,phase-28,without +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425,10,mac,phase-28,without +13,394.9993326892937,0.2830183897940962,11.729539932577543,72.42126129953374,0.0713418329978594,10,mac,phase-28,without +14,378.78252964338554,0.2713989942512912,11.24798053952574,69.44798708452487,0.0684128749999217,10,mac,phase-28,without +15,384.479575923064,0.2754809476401223,11.417154829973958,70.49251360168908,0.0694418330022017,10,mac,phase-28,without +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.0705237079964717,10,mac,phase-28,without +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.0727939999997033,10,mac,phase-28,without +18,393.9042149535417,0.2822337341439276,11.697020315076117,72.22047663705172,0.0711440410013892,10,mac,phase-28,without +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.0700297920047887,10,mac,phase-28,without +20,398.0775187183235,0.2852239207439624,11.820946937499777,72.98563216370505,0.0718977919968892,10,mac,phase-28,without +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.0706645410027704,10,mac,phase-28,without +22,389.6303367203219,0.2791714855889576,11.57010712496458,71.43688125681884,0.0703721249956288,10,mac,phase-28,without +23,388.1340397821256,0.2780993836509139,11.525674455754546,71.16254228311722,0.0701018750041839,10,mac,phase-28,without +24,386.7157163168241,0.2770831499762293,11.483557215681506,70.90249937725069,0.0698457079997751,10,mac,phase-28,without +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.0711431250019813,10,mac,phase-28,without +26,388.7795265014115,0.2785618771206674,11.54484224066766,71.28088922321079,0.0702184580004541,10,mac,phase-28,without +27,378.82221127416574,0.2714274262771667,11.249158889042578,69.455262524035,0.0684200420000706,10,mac,phase-28,without +28,392.96851579515817,0.281563302456526,11.6692346462538,72.0489206174866,0.0709750419991905,10,mac,phase-28,without +29,375.2639478299834,0.2688779181967877,11.143495943044648,68.80287173413357,0.067777374999423,10,mac,phase-28,without +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345,10,mac,phase-28,with +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269,10,mac,phase-28,with +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.6473879249105,0.4944300420029321,10,mac,phase-28,with +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.4967914580047363,10,mac,phase-28,with +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.4987448340034461,10,mac,phase-28,with +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246,10,mac,phase-28,with +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705,10,mac,phase-28,with +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.498717749993375,10,mac,phase-28,with +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657,10,mac,phase-28,with +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015,10,mac,phase-28,with +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.4956257500016363,10,mac,phase-28,with +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514,10,mac,phase-28,with +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.4924703750002663,10,mac,phase-28,with +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.4987167500003124,10,mac,phase-28,with +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936,10,mac,phase-28,with +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026,10,mac,phase-28,with +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889,10,mac,phase-28,with +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749,10,mac,phase-28,with +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826,10,mac,phase-28,with +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.495682166001643,10,mac,phase-28,with +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.4990872080015833,10,mac,phase-28,with +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322,10,mac,phase-28,with +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656,10,mac,phase-28,with +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.6036226210395,0.494387499995355,10,mac,phase-28,with +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963,10,mac,phase-28,with +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746,10,mac,phase-28,with +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637,10,mac,phase-28,with +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.4997166250032023,10,mac,phase-28,with +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594,10,mac,phase-28,with +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264,10,mac,phase-28,with +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.0854961669974727,10,mac,phase-17,without +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.0852910419998806,10,mac,phase-17,without +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.085036708995176,10,mac,phase-17,without +3,352.4283146868622,1.2669926655795811,0.0,78.06309649216129,0.0861206249974202,10,mac,phase-17,without +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.0690652920020511,10,mac,phase-17,without +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.0691986660021939,10,mac,phase-17,without +6,276.21979273513165,0.9930202452498064,0.0,61.18286027184291,0.0674980420008068,10,mac,phase-17,without +7,276.9739641940552,0.9957315191946784,0.0,61.349909731026955,0.0676823339963448,10,mac,phase-17,without +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.068089874999714,10,mac,phase-17,without +9,280.05765275444236,1.0068174922170603,0.0,62.032948714018886,0.0684358750004321,10,mac,phase-17,without +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.0593904580018715,10,mac,phase-17,without +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.0687335420007002,10,mac,phase-17,without +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.0677226659972802,10,mac,phase-17,without +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.0684477079994394,10,mac,phase-17,without +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.0683194170051137,10,mac,phase-17,without +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.0684337920029065,10,mac,phase-17,without +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.0687179589949664,10,mac,phase-17,without +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.0684492919972399,10,mac,phase-17,without +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.0675360410023131,10,mac,phase-17,without +19,280.94925472663203,1.0100228338774897,0.0,62.23043911954855,0.0686537500005215,10,mac,phase-17,without +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814,10,mac,phase-17,without +21,267.5825543832899,0.9619690578548056,0.0,59.269706467828335,0.065387415997975,10,mac,phase-17,without +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.0728027500008465,10,mac,phase-17,without +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.067395750003925,10,mac,phase-17,without +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965,10,mac,phase-17,without +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.0677298329974291,10,mac,phase-17,without +26,278.3068472864164,1.000523282602216,0.0,61.645144186136534,0.0680080420061131,10,mac,phase-17,without +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.0680346250010188,10,mac,phase-17,without +28,277.9544010343528,0.999256225451112,0.0,61.56707711650399,0.067921916997875,10,mac,phase-17,without +29,276.82374129899574,0.9951914623992656,0.0,61.31663526395476,0.0676456250002957,10,mac,phase-17,without +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.4804191670045838,10,mac,phase-17,with +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.4837152499967487,10,mac,phase-17,with +2,1437.3842689682,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448,10,mac,phase-17,with +3,1435.7789167975,0.7680104908680055,0.0,454.194725947244,0.4835930420013028,10,mac,phase-17,with +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.4805542079993756,10,mac,phase-17,with +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554,10,mac,phase-17,with +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761,10,mac,phase-17,with +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.4821173750024172,10,mac,phase-17,with +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863,10,mac,phase-17,with +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.4824882920001982,10,mac,phase-17,with +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.4820442080017528,10,mac,phase-17,with +11,1430.9528339766905,0.7654289776609116,0.0,452.6680414845096,0.4819675409962656,10,mac,phase-17,with +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251,10,mac,phase-17,with +13,1439.437319842241,0.7699674021203672,0.0,455.3520262452711,0.4848252499941736,10,mac,phase-17,with +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234,10,mac,phase-17,with +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461,10,mac,phase-17,with +16,1429.0497166778464,0.7644109838501899,0.0,452.0660087969688,0.4813265409975429,10,mac,phase-17,with +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.4826296669998555,10,mac,phase-17,with +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621,10,mac,phase-17,with +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332,10,mac,phase-17,with +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.4819131670010392,10,mac,phase-17,with +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717,10,mac,phase-17,with +22,1436.4061141941868,0.7683459841496418,0.0,454.3931337566707,0.4838042920018779,10,mac,phase-17,with +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.4801694580019102,10,mac,phase-17,with +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861,10,mac,phase-17,with +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.4797095419999095,10,mac,phase-17,with +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817,10,mac,phase-17,with +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837,10,mac,phase-17,with +28,1433.8801282741756,0.7669948125565385,0.0,453.5940626258276,0.4829535000026226,10,mac,phase-17,with +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747,10,mac,phase-17,with +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.0874951669975416,10,mac,phase-10,without +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.0867375840025488,10,mac,phase-10,without +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.0861871669985703,10,mac,phase-10,without +3,293.9572294015164,0.9146992271339104,0.0,69.27999701810545,0.0847011669975472,10,mac,phase-10,without +4,300.39880553788765,0.9347433156071184,0.0,70.79815112653915,0.0865572499969857,10,mac,phase-10,without +5,298.60714878159104,0.9291682628907408,0.0,70.37589250413203,0.0860410000022966,10,mac,phase-10,without +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496,10,mac,phase-10,without +7,300.03454654918687,0.9336098601853228,0.0,70.71230237329574,0.0864522920019226,10,mac,phase-10,without +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.0858868340001208,10,mac,phase-10,without +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.0709844160010106,10,mac,phase-10,without +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.0850011670045205,10,mac,phase-10,without +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.0865207090027979,10,mac,phase-10,without +12,298.57230126240773,0.92905982875245,0.0,70.36767962217631,0.0860309589988901,10,mac,phase-10,without +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825,10,mac,phase-10,without +14,300.45317822288536,0.9349125057068,0.0,70.81096571001504,0.0865729170036502,10,mac,phase-10,without +15,226.2276855823378,0.7039469298977896,0.0,53.317461912628886,0.065185499996005,10,mac,phase-10,without +16,300.4835452655799,0.9350069980604652,0.0,70.81812263087598,0.0865816669975174,10,mac,phase-10,without +17,298.95347907171913,0.9302459300376188,0.0,70.45751581210853,0.0861407920019701,10,mac,phase-10,without +18,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.0860762919983244,10,mac,phase-10,without +19,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.085864542001218,10,mac,phase-10,without +20,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.0855547909959568,10,mac,phase-10,without +21,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623,10,mac,phase-10,without +22,296.81231300431466,0.9235833180957124,0.0,69.95288464836042,0.0855238340009236,10,mac,phase-10,without +23,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.0852534170044236,10,mac,phase-10,without +24,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.0801159580005332,10,mac,phase-10,without +25,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.0712743749973014,10,mac,phase-10,without +26,296.6898313446286,0.9232021950334184,0.0,69.92401810530892,0.0854885419976199,10,mac,phase-10,without +27,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.0830227920014294,10,mac,phase-10,without +28,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.0866290830017533,10,mac,phase-10,without +29,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.0702899169991724,10,mac,phase-10,without +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.4949604580033337,10,mac,phase-10,with +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918,10,mac,phase-10,with +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945,10,mac,phase-10,with +3,1644.218898611452,1.5241569026019444,0.0,485.0282943234642,0.5176102080004057,10,mac,phase-10,with +4,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.4960029169960762,10,mac,phase-10,with +5,1570.4229559700957,1.455749590500236,0.0,463.25922195873414,0.4943787920055911,10,mac,phase-10,with +6,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.4950067500030854,10,mac,phase-10,with +7,1574.566642586953,1.4595907022674324,0.0,464.48156848064974,0.4956832500029122,10,mac,phase-10,with +8,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233,10,mac,phase-10,with +9,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.4953499580005882,10,mac,phase-10,with +10,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374,10,mac,phase-10,with +11,1602.5001032995297,1.4854844424467897,0.0,472.7216627986351,0.5044768750012736,10,mac,phase-10,with +12,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.4955200000040349,10,mac,phase-10,with +13,1593.1679060882757,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409,10,mac,phase-10,with +14,1568.685115034934,1.4541386479066511,0.0,462.7465760906574,0.4938317090054624,10,mac,phase-10,with +15,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915,10,mac,phase-10,with +16,1579.992203831771,1.4646200852946931,0.0,466.0820553249158,0.4973912500063306,10,mac,phase-10,with +17,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326,10,mac,phase-10,with +18,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526,10,mac,phase-10,with +19,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758,10,mac,phase-10,with +20,1574.658629351438,1.459675972095042,0.0,464.5087036653359,0.4957122080013505,10,mac,phase-10,with +21,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.498898249999911,10,mac,phase-10,with +22,1565.789148638521,1.451454146970356,0.0,461.89229467906654,0.492920040996978,10,mac,phase-10,with +23,1568.7101272229097,1.4541618336874398,0.0,462.75395443844394,0.4938395829958608,10,mac,phase-10,with +24,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.4961264590019709,10,mac,phase-10,with +25,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402,10,mac,phase-10,with +26,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641,10,mac,phase-10,with +27,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868,10,mac,phase-10,with +28,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838,10,mac,phase-10,with +29,1584.888340812466,1.4691587029821032,0.0,467.526367253532,0.4989325839997036,10,mac,phase-10,with +0,309.7762415538039,0.0,0.0,63.37230984127286,0.068120000003546,10,mac,phase-11,without +1,311.42073409796063,0.0,0.0,63.70873102876365,0.0684816249995492,10,mac,phase-11,without +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803,10,mac,phase-11,without +3,313.74090904811897,0.0,0.0,64.18337958505668,0.0689918330026557,10,mac,phase-11,without +4,310.57698038804125,0.0,0.0,63.53612056236206,0.0682960830017691,10,mac,phase-11,without +5,311.4457454166953,0.0,0.0,63.7138477059899,0.0684871250050491,10,mac,phase-11,without +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942,10,mac,phase-11,without +7,310.3448710223421,0.0,0.0,63.48863691233658,0.0682450419990345,10,mac,phase-11,without +8,310.4030381748929,0.0,0.0,63.50053642662969,0.0682578329942771,10,mac,phase-11,without +9,309.88272598227024,0.0,0.0,63.39409383658571,0.068143415999657,10,mac,phase-11,without +10,314.95073715611716,0.0,0.0,64.43087952672482,0.0692578750022221,10,mac,phase-11,without +11,311.97913169496366,0.0,0.0,63.82296492015055,0.068604416999733,10,mac,phase-11,without +12,314.11153092259957,0.0,0.0,64.25919935788926,0.0690733329975046,10,mac,phase-11,without +13,311.2255687180135,0.0,0.0,63.66880517497234,0.0684387080036685,10,mac,phase-11,without +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324,10,mac,phase-11,without +15,313.3998459687748,0.0,0.0,64.11360678701638,0.0689168330063694,10,mac,phase-11,without +16,314.72354819575156,0.0,0.0,64.38440246600322,0.0692079159998684,10,mac,phase-11,without +17,310.5500773260057,0.0,0.0,63.53061688275627,0.0682901670006685,10,mac,phase-11,without +18,309.80466346329615,0.0,0.0,63.3781242382892,0.0681262500002048,10,mac,phase-11,without +19,313.26815920758014,0.0,0.0,64.08666703789113,0.0688878750006551,10,mac,phase-11,without +20,312.11271473244335,0.0,0.0,63.85029259898814,0.0686337919978541,10,mac,phase-11,without +21,323.48735546048795,0.0,0.0,66.17725367558705,0.0711350830024457,10,mac,phase-11,without +22,317.51420374814444,0.0,0.0,64.95529934124274,0.0698215829979744,10,mac,phase-11,without +23,315.9167051463369,0.0,0.0,64.62849191451126,0.0694702920009149,10,mac,phase-11,without +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978,10,mac,phase-11,without +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328,10,mac,phase-11,without +26,314.22105311215415,0.0,0.0,64.2816048015609,0.0690974169992841,10,mac,phase-11,without +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759,10,mac,phase-11,without +28,312.78100741484513,0.0,0.0,63.987008219015664,0.0687807499998598,10,mac,phase-11,without +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293,10,mac,phase-11,without +0,1511.643938755003,1.2805555723592537,0.0,470.4830392068025,0.5022656669971184,10,mac,phase-11,with +1,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959,10,mac,phase-11,with +2,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304,10,mac,phase-11,with +3,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075,10,mac,phase-11,with +4,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075,10,mac,phase-11,with +5,1450.011697038547,1.2283451883239749,0.0,451.3006618939489,0.4817874590007704,10,mac,phase-11,with +6,1448.3522481877958,1.226939423104802,0.0,450.784176153694,0.4812360830037505,10,mac,phase-11,with +7,1450.3252002552106,1.228610765607592,0.0,451.3982364235029,0.4818916250005713,10,mac,phase-11,with +8,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.4825925410041236,10,mac,phase-11,with +9,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156,10,mac,phase-11,with +10,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383,10,mac,phase-11,with +11,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.4837174170024809,10,mac,phase-11,with +12,1451.4555736764398,1.229568336333271,0.0,451.7500530841753,0.4822672079972108,10,mac,phase-11,with +13,1470.749938151556,1.245913128456798,0.0,457.75521806058686,0.488678040994273,10,mac,phase-11,with +14,1452.0386934092628,1.2300623132573831,0.0,451.9315428762396,0.4824609580027754,10,mac,phase-11,with +15,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524,10,mac,phase-11,with +16,1453.7180781688437,1.231484966738723,0.0,452.4542334553027,0.4830189579952275,10,mac,phase-11,with +17,1455.6323420932597,1.2331065928852851,0.0,453.0500276670965,0.4836550000036368,10,mac,phase-11,with +18,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.4817882499992265,10,mac,phase-11,with +19,1474.4356339985911,1.2490353837934811,0.0,458.9023515483401,0.4899026670027524,10,mac,phase-11,with +20,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922,10,mac,phase-11,with +21,1456.8314348645265,1.2341223776813306,0.0,453.42323249189207,0.4840534160030074,10,mac,phase-11,with +22,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.4828239169946755,10,mac,phase-11,with +23,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974,10,mac,phase-11,with +24,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.4845845000018016,10,mac,phase-11,with +25,1454.071838478107,1.2317846469237803,0.0,452.5643375751858,0.483136499999091,10,mac,phase-11,with +26,1445.4984738230935,1.2245219115656858,0.0,449.8959693465928,0.4802878749978845,10,mac,phase-11,with +27,1453.5452760949363,1.231338581301661,0.0,452.4004506544535,0.4829615419948823,10,mac,phase-11,with +28,1445.4045486582245,1.224442344949385,0.0,449.8667361416741,0.4802566669968655,10,mac,phase-11,with +29,1451.5710690043643,1.2296661756338918,0.0,451.7859997720845,0.4823055829983786,10,mac,phase-11,with +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.0716147079947404,10,mac,phase-29,without +1,398.6592292206605,1.0601916085650025,10.248518882795024,69.07556095804284,0.0674460419977549,10,mac,phase-29,without +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.0773315420010476,10,mac,phase-29,without +3,514.3190563490106,1.36777655626399,13.221840043885235,89.11590331966148,0.0870136250014184,10,mac,phase-29,without +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.0868142500039539,10,mac,phase-29,without +5,517.1547567068353,1.375317798265706,13.29473871656849,89.60724424085022,0.0874933750019408,10,mac,phase-29,without +6,490.26978754538726,1.303820096438466,12.603594265571838,84.94889397564467,0.0829449170050793,10,mac,phase-29,without +7,519.4725243133612,1.3814816534756962,13.354322650265065,90.00884311491652,0.0878855000046314,10,mac,phase-29,without +8,518.1034381164648,1.3778407150727667,13.31912691237008,89.77162197435642,0.0876538750017061,10,mac,phase-29,without +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281692,0.0889240420001442,10,mac,phase-29,without +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.0830192919966066,10,mac,phase-29,without +11,500.35038752648165,1.330628374601622,12.862740954482344,86.69555640673644,0.0846503749999101,10,mac,phase-29,without +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.085572250005498,10,mac,phase-29,without +13,488.42094043081113,1.298903285155243,12.556065089834012,84.62854480973004,0.0826321249987813,10,mac,phase-29,without +14,503.4395128973858,1.338843573337746,12.94215454226488,87.23080820131315,0.0851729999994859,10,mac,phase-29,without +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788,10,mac,phase-29,without +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.0865403749994584,10,mac,phase-29,without +17,493.5559371722591,1.312559260123976,12.6880728478651,85.51828410192365,0.083500875000027,10,mac,phase-29,without +18,507.3150213055262,1.3491500737071616,13.041784045835897,87.9023163407666,0.0858286670045345,10,mac,phase-29,without +19,517.1131388371582,1.375207119989715,13.293668826567243,89.60003312548373,0.0874863339995499,10,mac,phase-29,without +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.421331250411,0.0892646670035901,10,mac,phase-29,without +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.0859598329989239,10,mac,phase-29,without +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.0867411250001168,10,mac,phase-29,without +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.0798599589979858,10,mac,phase-29,without +24,510.89991397744865,1.3586837125891915,13.133942555028854,88.52346958177273,0.0864351670024916,10,mac,phase-29,without +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.0874901249990216,10,mac,phase-29,without +26,423.54044139290176,1.1263605328553132,10.88815181760136,73.38672087141926,0.0716554999962681,10,mac,phase-29,without +27,420.70326336992974,1.1188153611610816,10.815215157890457,72.89512391564892,0.071175500001118,10,mac,phase-29,without +28,459.11156121555587,1.2209581239281746,11.802595197972352,79.55011776670491,0.0776734999963082,10,mac,phase-29,without +29,402.5174899448091,1.070452240562397,10.347704992103171,69.74408059664233,0.0680987910018302,10,mac,phase-29,without +0,2392.998209324197,3.976975794792876,87.4243026890121,536.7188203059603,0.5162095000050613,10,mac,phase-29,with +1,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201,10,mac,phase-29,with +2,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.4963012079970212,10,mac,phase-29,with +3,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.4911223749950295,10,mac,phase-29,with +4,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304,10,mac,phase-29,with +5,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217,10,mac,phase-29,with +6,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269,10,mac,phase-29,with +7,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.4948305409998283,10,mac,phase-29,with +8,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823,10,mac,phase-29,with +9,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474,10,mac,phase-29,with +10,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459,10,mac,phase-29,with +11,2305.401423920151,3.8313967910576663,84.2240964155981,517.0719843236086,0.4973134169995319,10,mac,phase-29,with +12,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.4950779169957968,10,mac,phase-29,with +13,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218,10,mac,phase-29,with +14,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.4946130000025732,10,mac,phase-29,with +15,2299.0294440458956,3.82080705905282,83.99130648074375,515.642830926085,0.4959388749994105,10,mac,phase-29,with +16,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636,10,mac,phase-29,with +17,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.4990050830019754,10,mac,phase-29,with +18,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.4981591250034398,10,mac,phase-29,with +19,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401,10,mac,phase-29,with +20,2313.5898284762848,3.8450052787660263,84.52324647583058,518.9085384908586,0.4990797920036129,10,mac,phase-29,with +21,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719,10,mac,phase-29,with +22,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981,10,mac,phase-29,with +23,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781,10,mac,phase-29,with +24,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469,10,mac,phase-29,with +25,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.4902136250020703,10,mac,phase-29,with +26,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838,10,mac,phase-29,with +27,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756,10,mac,phase-29,with +28,2287.752886269415,3.802066302310544,83.57933575861786,513.1136435813881,0.4935063340017223,10,mac,phase-29,with +29,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755,10,mac,phase-29,with +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526,10,mac,phase-16,without +1,297.817315883756,0.0,0.0,62.733064436627,0.0677234579998184,10,mac,phase-16,without +2,299.81856627760055,0.0,0.0,63.15461336348616,0.0681785409979056,10,mac,phase-16,without +3,293.4782177778501,0.0,0.0,61.81906479135154,0.0667367499991087,10,mac,phase-16,without +4,300.9928969475883,0.0,0.0,63.40197762896428,0.0684455830050865,10,mac,phase-16,without +5,302.9091294778741,0.0,0.0,63.805618157525416,0.0688813329979893,10,mac,phase-16,without +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736,10,mac,phase-16,without +7,298.40897111216174,0.0,0.0,62.85769233295232,0.0678580000021611,10,mac,phase-16,without +8,301.1378313788484,0.0,0.0,63.432507019064865,0.0684785409976029,10,mac,phase-16,without +9,300.16524277859793,0.0,0.0,63.227638262025714,0.0682573750018491,10,mac,phase-16,without +10,302.53570709857513,0.0,0.0,63.7269594330885,0.0687964169992483,10,mac,phase-16,without +11,300.62625114769776,0.0,0.0,63.32474634198656,0.0683622079959604,10,mac,phase-16,without +12,301.35917766867016,0.0,0.0,63.47913201473039,0.0685288749955361,10,mac,phase-16,without +13,299.7551711903755,0.0,0.0,63.14125964669488,0.0681641249975655,10,mac,phase-16,without +14,304.2527658133512,0.0,0.0,64.0886454373958,0.0691868750000139,10,mac,phase-16,without +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185,10,mac,phase-16,without +16,297.4405953485831,0.0,0.0,62.6537109795002,0.0676377920026425,10,mac,phase-16,without +17,306.33775437514066,0.0,0.0,64.52783320392388,0.0696610000013606,10,mac,phase-16,without +18,322.565634223188,0.0,0.0,67.94611876988051,0.0733512090009753,10,mac,phase-16,without +19,303.6565283499523,0.0,0.0,63.963052326397744,0.0690512910005054,10,mac,phase-16,without +20,304.6771294210259,0.0,0.0,64.17803456329608,0.0692833749999408,10,mac,phase-16,without +21,300.6194745682893,0.0,0.0,63.32331890452737,0.0683606670063454,10,mac,phase-16,without +22,297.64673049065647,0.0,0.0,62.697131856865795,0.067684666995774,10,mac,phase-16,without +23,301.97648382691904,0.0,0.0,63.60916309397653,0.0686692500021308,10,mac,phase-16,without +24,297.5443027834249,0.0,0.0,62.67555620086746,0.0676613750038086,10,mac,phase-16,without +25,292.8490031072213,0.0,0.0,61.686525270068515,0.0665936670047813,10,mac,phase-16,without +26,305.28948829746935,0.0,0.0,64.30702353339768,0.0694226249979692,10,mac,phase-16,without +27,299.9959370811122,0.0,0.0,63.19197524089363,0.0682188749997294,10,mac,phase-16,without +28,300.89853428238985,0.0,0.0,63.38210081576173,0.0684241249982733,10,mac,phase-16,without +29,298.13540828185586,0.0,0.0,62.80006830054803,0.0677957919979235,10,mac,phase-16,without +0,1449.4460304052652,1.1053478844400375,0.0,457.0446025207368,0.484376374995918,10,mac,phase-16,with +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133,10,mac,phase-16,with +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.4932186669975635,10,mac,phase-16,with +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786,10,mac,phase-16,with +4,1382.9401472485877,1.0546304822684676,0.0,436.07372516828,0.4621514159953221,10,mac,phase-16,with +5,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017,10,mac,phase-16,with +6,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.481087624997599,10,mac,phase-16,with +7,1442.221389474941,1.099838371563632,0.0,454.7665024238108,0.4819620419948478,10,mac,phase-16,with +8,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643,10,mac,phase-16,with +9,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937,10,mac,phase-16,with +10,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358,10,mac,phase-16,with +11,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781,10,mac,phase-16,with +12,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.4888670830041519,10,mac,phase-16,with +13,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.4850446670025121,10,mac,phase-16,with +14,1382.517722651383,1.0543083411710683,0.0,435.9405247054312,0.4620102499975473,10,mac,phase-16,with +15,1448.268022775928,1.1044495355442336,0.0,456.6731488636687,0.4839827079995302,10,mac,phase-16,with +16,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958,10,mac,phase-16,with +17,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285,10,mac,phase-16,with +18,1444.9364893090867,1.101908907337135,0.0,455.6226375944004,0.4828693749950616,10,mac,phase-16,with +19,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807,10,mac,phase-16,with +20,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.4813432079972699,10,mac,phase-16,with +21,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893,10,mac,phase-16,with +22,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.4814878750039497,10,mac,phase-16,with +23,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644,10,mac,phase-16,with +24,1434.6330467519774,1.0940514996144306,0.0,452.3737185526942,0.4794261670031119,10,mac,phase-16,with +25,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179,10,mac,phase-16,with +26,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259,10,mac,phase-16,with +27,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956,10,mac,phase-16,with +28,1433.8784631668889,1.093476053994577,0.0,452.1357805077576,0.4791740000000573,10,mac,phase-16,with +29,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892,10,mac,phase-16,with +0,289.28287234917417,0.0,0.0,62.42629931011725,0.0676834159967256,10,mac,phase-20,without +1,294.6927660431574,0.0,0.0,63.5937367053353,0.0689491669982089,10,mac,phase-20,without +2,277.7601904303348,0.0,0.0,59.93974217495268,0.0649874579976312,10,mac,phase-20,without +3,262.90320869288206,0.0,0.0,56.733654025815085,0.0615113749954616,10,mac,phase-20,without +4,293.7341289609959,0.0,0.0,63.38686595306845,0.0687248750036815,10,mac,phase-20,without +5,292.09271527384254,0.0,0.0,63.03265423879081,0.0683408339973539,10,mac,phase-20,without +6,293.5832888779959,0.0,0.0,63.35431515566778,0.0686895830003777,10,mac,phase-20,without +7,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502,10,mac,phase-20,without +8,291.9546931410586,0.0,0.0,63.002869513194646,0.0683085410055355,10,mac,phase-20,without +9,294.338014940254,0.0,0.0,63.517182575633115,0.0688661660024081,10,mac,phase-20,without +10,291.76485654961874,0.0,0.0,62.96190339660087,0.0682641250023152,10,mac,phase-20,without +11,291.4241799062767,0.0,0.0,62.88838648931725,0.0681844170030672,10,mac,phase-20,without +12,289.7307595134493,0.0,0.0,62.52295189776321,0.0677882080053677,10,mac,phase-20,without +13,295.45675398335953,0.0,0.0,63.75860280831983,0.0691279169986955,10,mac,phase-20,without +14,268.6430896357433,0.0,0.0,57.97230159189356,0.0628543330021784,10,mac,phase-20,without +15,296.1544940115595,0.0,0.0,63.90917282820156,0.0692911669975728,10,mac,phase-20,without +16,296.023421474765,0.0,0.0,63.88088780272865,0.0692605000003823,10,mac,phase-20,without +17,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743,10,mac,phase-20,without +18,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523,10,mac,phase-20,without +19,288.2072371897795,0.0,0.0,62.19418075479606,0.0674317500015604,10,mac,phase-20,without +20,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575,10,mac,phase-20,without +21,291.5402932180753,0.0,0.0,62.91344336287967,0.0682115839954349,10,mac,phase-20,without +22,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078,10,mac,phase-20,without +23,290.7937520213083,0.0,0.0,62.75234221016276,0.0680369160036207,10,mac,phase-20,without +24,292.5845867335617,0.0,0.0,63.13879849377964,0.0684559169967542,10,mac,phase-20,without +25,273.97462270495254,0.0,0.0,59.12282902014209,0.0641017499947338,10,mac,phase-20,without +26,299.1048380666353,0.0,0.0,64.54584744206421,0.0699814580002566,10,mac,phase-20,without +27,294.26660397366516,0.0,0.0,63.501772322208495,0.0688494580026599,10,mac,phase-20,without +28,292.6253698145022,0.0,0.0,63.14759934948502,0.0684654590004356,10,mac,phase-20,without +29,290.1271784005321,0.0,0.0,62.60849779924106,0.0678809579985681,10,mac,phase-20,without +0,1498.5408128623817,0.8690099505837388,0.0334234596378361,458.5364427714736,0.4839190410057199,10,mac,phase-20,with +1,1491.5130351462874,0.8649345135229948,0.0332667120585767,456.3860227316141,0.4816495829945779,10,mac,phase-20,with +2,1490.9282803951478,0.8645954118495337,0.0332536696865205,456.2070944293751,0.4814607499938574,10,mac,phase-20,with +3,1498.858609293904,0.8691942420350508,0.0334305477705788,458.6336848645716,0.4840216660013539,10,mac,phase-20,with +4,1501.085510016672,0.8704856308784092,0.0334802165722465,459.31509115464985,0.4847407920024125,10,mac,phase-20,with +5,1479.0403956377672,0.8577015788241764,0.0329885222624683,452.56953691880295,0.4776218330007395,10,mac,phase-20,with +6,1495.4335579034869,0.8672080407157502,0.0333541554121442,457.5856580992068,0.482915624997986,10,mac,phase-20,with +7,1489.2027842934413,0.8635947895980701,0.0332151842153103,455.6791122498432,0.4809035409998614,10,mac,phase-20,with +8,1492.1808861224167,0.8653218030374225,0.0332816078091316,456.5903775334769,0.4818652499961899,10,mac,phase-20,with +9,1495.2063392563043,0.8670762756922921,0.0333490875266266,457.5161317777906,0.4828422499995213,10,mac,phase-20,with +10,1487.4661958807744,0.8625877348700822,0.033176451341157,455.14773594933297,0.4803427500010002,10,mac,phase-20,with +11,1490.5684218110532,0.8643867283837936,0.0332456433993766,456.0969817960486,0.4813445420004427,10,mac,phase-20,with +12,1490.2245606219176,0.8641873218728641,0.033237973918187,455.99176418360855,0.4812334999951417,10,mac,phase-20,with +13,1487.687995347552,0.862716357288644,0.0331813983572555,455.2156040631887,0.4804143750006915,10,mac,phase-20,with +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.1105941707556,0.4876910419989144,10,mac,phase-20,with +15,1484.8391828501335,0.861064319261815,0.0331178584331467,454.34389984434006,0.4794944169989321,10,mac,phase-20,with +16,1492.7811242622347,0.8656698835913483,0.0332949955227441,456.7740435765272,0.4820590829986031,10,mac,phase-20,with +17,1492.3149443588663,0.865399543957411,0.0332845978445158,456.6313978289124,0.4819085409981198,10,mac,phase-20,with +18,1495.187245138547,0.8670652029352565,0.033348661651356,457.5102891949532,0.4828360839965171,10,mac,phase-20,with +19,1506.9395171583026,0.8738803935790314,0.0336107843684242,461.10635075041273,0.4866312079975614,10,mac,phase-20,with +20,1500.7598418289483,0.8702967745634584,0.0334729528678253,459.2154403936957,0.4846356250054668,10,mac,phase-20,with +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446,10,mac,phase-20,with +22,1492.8802179047152,0.8657273484001917,0.0332972057076996,456.8043651039319,0.4820910829948843,10,mac,phase-20,with +23,1490.5962918881432,0.8644028903555643,0.0332462650136755,456.1055097226149,0.4813535419962136,10,mac,phase-20,with +24,1503.3667264430414,0.8718085176205883,0.033531096831561,460.01311743218656,0.4854774580016965,10,mac,phase-20,with +25,1474.89227025517,0.8552960639374243,0.0328960024591317,451.30025773682786,0.4762822920019971,10,mac,phase-20,with +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.4817185420033638,10,mac,phase-20,with +27,1500.2008916666362,0.8699726370766709,0.0334604860414104,459.0444080021095,0.4844551249989308,10,mac,phase-20,with +28,1492.6384201170483,0.8655871288734974,0.0332918126489806,456.7303777313658,0.4820130000007339,10,mac,phase-20,with +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809,10,mac,phase-20,with +0,254.6307029336884,0.0803251428812897,0.0,57.08440154096989,0.0676555829995777,10,mac,phase-18,without +1,263.7963996346027,0.0832165298531869,0.0,59.139213882331546,0.0700909160004812,10,mac,phase-18,without +2,253.7492302434404,0.0800470757865742,0.0,56.886788525658766,0.0674213749953196,10,mac,phase-18,without +3,315.84115707071624,0.0996344344071659,0.0,70.8068713853593,0.0839192499988712,10,mac,phase-18,without +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.0885723329993197,10,mac,phase-18,without +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049,10,mac,phase-18,without +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.0868600829999195,10,mac,phase-18,without +7,326.48454970016655,0.1029919715142481,0.0,73.192961089459,0.0867472079989966,10,mac,phase-18,without +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.0890692090033553,10,mac,phase-18,without +9,330.8312320406672,0.1043631646815984,0.0,74.16742236705599,0.0879021250002551,10,mac,phase-18,without +10,325.4089376060097,0.1026526617053658,0.0,72.95182491861333,0.0864614169986452,10,mac,phase-18,without +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.0857947909971699,10,mac,phase-18,without +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.0863410839956486,10,mac,phase-18,without +13,323.1647140635819,0.1019447047519185,0.0,72.44870351036347,0.0858651249945978,10,mac,phase-18,without +14,321.04641790612,0.1012764725255899,0.0,71.97381314151923,0.0853022919982322,10,mac,phase-18,without +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.0856695000038598,10,mac,phase-18,without +16,321.7960054059207,0.1015129354592809,0.0,72.14185946639569,0.0855014580010902,10,mac,phase-18,without +17,303.00058629844494,0.0955837811667018,0.0,67.92820714913613,0.0805074999952921,10,mac,phase-18,without +18,319.4832536685931,0.1007833607787359,0.0,71.62337506008836,0.0848869580004247,10,mac,phase-18,without +19,324.52934299437413,0.1023751870644713,0.0,72.7546329404843,0.0862277080013882,10,mac,phase-18,without +20,335.0232930833541,0.1056855814143072,0.0,75.10721985843438,0.0890159589980612,10,mac,phase-18,without +21,328.476451821486,0.1036203318048851,0.0,73.63951580267174,0.0872764579980867,10,mac,phase-18,without +22,329.2296486453677,0.1038579333266144,0.0,73.80837128411399,0.087476583001262,10,mac,phase-18,without +23,327.0558388796751,0.1031721889210331,0.0,73.32103559321422,0.086898999994446,10,mac,phase-18,without +24,324.61872924541194,0.1024033846200037,0.0,72.77467200328267,0.0862514580003335,10,mac,phase-18,without +25,318.41955724016697,0.1004478098549422,0.0,71.38491020357897,0.084604333002062,10,mac,phase-18,without +26,300.9517592509948,0.0949374634861182,0.0,67.46889071746803,0.0799631249974481,10,mac,phase-18,without +27,324.7123495870697,0.1024329178508106,0.0,72.79566028597608,0.0862763330005691,10,mac,phase-18,without +28,323.6961727674179,0.1021123573398794,0.0,72.56784861620767,0.0860063340005581,10,mac,phase-18,without +29,321.83113513979686,0.1015240173942576,0.0,72.14973502818579,0.0855107919996953,10,mac,phase-18,without +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691,10,mac,phase-18,with +1,1494.6927432930363,2.473550026918434,0.0,455.734879283864,0.4958449999976437,10,mac,phase-18,with +2,1493.1747248593665,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275,10,mac,phase-18,with +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.4984720829961588,10,mac,phase-18,with +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588,10,mac,phase-18,with +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215,10,mac,phase-18,with +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248,10,mac,phase-18,with +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.4923728750000009,10,mac,phase-18,with +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.4965036249996046,10,mac,phase-18,with +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.494061249999504,10,mac,phase-18,with +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.495179375000589,10,mac,phase-18,with +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688,10,mac,phase-18,with +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212,10,mac,phase-18,with +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.4918156250059837,10,mac,phase-18,with +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422,10,mac,phase-18,with +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985,10,mac,phase-18,with +16,1492.1949067183675,2.469416385570248,0.0,454.9732837954698,0.4950163749963394,10,mac,phase-18,with +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.493825708006625,10,mac,phase-18,with +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.4948959169996669,10,mac,phase-18,with +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.4921009589961613,10,mac,phase-18,with +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491,10,mac,phase-18,with +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438,10,mac,phase-18,with +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575,10,mac,phase-18,with +23,1499.6939449160884,2.4818264586231,0.0,457.2597559036128,0.4975040839999565,10,mac,phase-18,with +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.4907058749959105,10,mac,phase-18,with +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.4958353749971138,10,mac,phase-18,with +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.4948671250022016,10,mac,phase-18,with +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389,10,mac,phase-18,with +28,1498.364826079165,2.4796269149713344,0.0,456.8545048475564,0.4970631660034996,10,mac,phase-18,with +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.4953921250053099,10,mac,phase-18,with +0,305.721962186582,0.0,0.0,63.66560385029554,0.0687287079999805,10,mac,phase-27,without +1,307.5698377636455,0.0,0.0,64.05041792649908,0.0691441250019124,10,mac,phase-27,without +2,304.5750584918347,0.0,0.0,63.426764887723195,0.0684708750050049,10,mac,phase-27,without +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397,10,mac,phase-27,without +4,302.7877946617043,0.0,0.0,63.05457301059663,0.0680690840017632,10,mac,phase-27,without +5,302.41839922506983,0.0,0.0,62.97764761287684,0.0679860409945831,10,mac,phase-27,without +6,304.01921499319684,0.0,0.0,63.311012287766246,0.068345917003171,10,mac,phase-27,without +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322,10,mac,phase-27,without +8,306.7875031062147,0.0,0.0,63.88749927969296,0.0689682500014896,10,mac,phase-27,without +9,304.17471662540027,0.0,0.0,63.34339499669278,0.0683808749963645,10,mac,phase-27,without +10,304.8949627430861,0.0,0.0,63.49338390712414,0.0685427920034271,10,mac,phase-27,without +11,310.9972086145361,0.0,0.0,64.76415675402785,0.0699146249971818,10,mac,phase-27,without +12,303.45410134996797,0.0,0.0,63.19332921036192,0.0682188749997294,10,mac,phase-27,without +13,303.2832176918836,0.0,0.0,63.15774324459655,0.0681804590058163,10,mac,phase-27,without +14,305.3787091124342,0.0,0.0,63.594122514500135,0.0686515420020441,10,mac,phase-27,without +15,299.556141985043,0.0,0.0,62.381591856012456,0.0673425829954794,10,mac,phase-27,without +16,310.09439777626403,0.0,0.0,64.57614933457363,0.0697116660012397,10,mac,phase-27,without +17,309.0629659837681,0.0,0.0,64.36135701991627,0.069479792000493,10,mac,phase-27,without +18,303.34771274786874,0.0,0.0,63.171174130147875,0.068194958003005,10,mac,phase-27,without +19,302.234170867233,0.0,0.0,62.93928265680976,0.0679446250069304,10,mac,phase-27,without +20,304.56560596920565,0.0,0.0,63.42479643064285,0.068468750003376,10,mac,phase-27,without +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217,10,mac,phase-27,without +22,305.56497926280053,0.0,0.0,63.63291266721779,0.0686934170007589,10,mac,phase-27,without +23,307.9737025847265,0.0,0.0,64.13452146137145,0.0692349169985391,10,mac,phase-27,without +24,306.6599897546909,0.0,0.0,63.86094503914815,0.0689395839945063,10,mac,phase-27,without +25,302.4908700108722,0.0,0.0,62.992739418210725,0.0680023329987307,10,mac,phase-27,without +26,300.3927852296424,0.0,0.0,62.555820089384135,0.0675306669945712,10,mac,phase-27,without +27,307.767415320001,0.0,0.0,64.09156280972131,0.0691885419946629,10,mac,phase-27,without +28,302.781304689866,0.0,0.0,63.05322149507873,0.0680676250049145,10,mac,phase-27,without +29,302.1294503364202,0.0,0.0,62.91747494701346,0.0679210830057854,10,mac,phase-27,without +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.4865007500047795,10,mac,phase-27,with +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.4838650000019697,10,mac,phase-27,with +2,1480.717294074354,2.098418389982776,0.0,450.6936386485229,0.4811567920041852,10,mac,phase-27,with +3,1488.925131299569,2.1100502366859266,0.0,453.19190083487734,0.483823916001711,10,mac,phase-27,with +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666,10,mac,phase-27,with +5,1479.727777126183,2.097016082756709,0.0,450.39245421874654,0.48083525000402,10,mac,phase-27,with +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296,10,mac,phase-27,with +7,1480.7792238858788,2.0985061546465045,0.0,450.7124885479659,0.4811769160005497,10,mac,phase-27,with +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014,10,mac,phase-27,with +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.4740181250017485,10,mac,phase-27,with +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322,10,mac,phase-27,with +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.4793756250001024,10,mac,phase-27,with +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.4862565000003087,10,mac,phase-27,with +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238,10,mac,phase-27,with +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.4834997500001918,10,mac,phase-27,with +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.4806878329982282,10,mac,phase-27,with +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534,10,mac,phase-27,with +17,1477.318804252413,2.093602174511349,0.0,449.6592225922709,0.4800524579986813,10,mac,phase-27,with +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.4824538749962812,10,mac,phase-27,with +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.4760040000037406,10,mac,phase-27,with +20,1479.903703499236,2.0972653991778625,0.0,450.44600184564536,0.4808924170065438,10,mac,phase-27,with +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.4817604169948026,10,mac,phase-27,with +22,1503.04044703954,2.130053945866405,0.0,457.48825303997336,0.488410665995616,10,mac,phase-27,with +23,1480.9454071466057,2.0987416634852356,0.0,450.7630706129957,0.4812309169938089,10,mac,phase-27,with +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.4807852919984725,10,mac,phase-27,with +25,1473.9158306771965,2.088779604828779,0.0,448.6234417926699,0.478946667004493,10,mac,phase-27,with +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397,10,mac,phase-27,with +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.480225541999971,10,mac,phase-27,with +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355,10,mac,phase-27,with +29,1510.0737441282995,2.1400212772485183,0.0,459.6290143245985,0.4906961249944288,10,mac,phase-27,with +0,315.8166415430196,0.0,0.0,71.55382505573768,0.0880411670004832,10,mac,phase-5,without +1,286.0633453360258,0.0,0.0,64.81269152577208,0.0797467500015045,10,mac,phase-5,without +2,313.0570777710135,0.0,0.0,70.92859725771052,0.0872718750033527,10,mac,phase-5,without +3,308.9532305134665,0.0,0.0,69.99879834880156,0.0861278330048662,10,mac,phase-5,without +4,308.43414159245566,0.0,0.0,69.88118960703004,0.0859831250054412,10,mac,phase-5,without +5,308.23565035456966,0.0,0.0,69.83621791952999,0.0859277909985394,10,mac,phase-5,without +6,309.07130861685545,0.0,0.0,70.02555102374461,0.0861607499973615,10,mac,phase-5,without +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234,10,mac,phase-5,without +8,309.104489721779,0.0,0.0,70.03306878773974,0.086169999995036,10,mac,phase-5,without +9,311.85239528042814,0.0,0.0,70.65565521210488,0.0869360419965232,10,mac,phase-5,without +10,309.7618344994348,0.0,0.0,70.18200183000086,0.086353250000684,10,mac,phase-5,without +11,307.98514910300486,0.0,0.0,69.7794624469775,0.0858579580017249,10,mac,phase-5,without +12,311.25931787985377,0.0,0.0,70.52128307655853,0.0867707080033142,10,mac,phase-5,without +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218,10,mac,phase-5,without +14,307.8869545283353,0.0,0.0,69.75721473582777,0.0858305840010871,10,mac,phase-5,without +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165,10,mac,phase-5,without +16,306.82904378030355,0.0,0.0,69.5175264147203,0.0855356669999309,10,mac,phase-5,without +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673,10,mac,phase-5,without +18,310.8970159762155,0.0,0.0,70.43919719627168,0.0866697079982259,10,mac,phase-5,without +19,309.5836716636141,0.0,0.0,70.1416359001896,0.0863035830043372,10,mac,phase-5,without +20,311.40639092002573,0.0,0.0,70.5546050653412,0.0868117080026422,10,mac,phase-5,without +21,317.1811027296167,0.0,0.0,71.8629677803392,0.088421542001015,10,mac,phase-5,without +22,311.9760012189771,0.0,0.0,70.68366031550781,0.0869705000004614,10,mac,phase-5,without +23,259.64086611242755,0.0,0.0,58.82621327476237,0.0723808749971794,10,mac,phase-5,without +24,309.0541226205383,0.0,0.0,70.02165723344947,0.0861559590048273,10,mac,phase-5,without +25,309.0817723407111,0.0,0.0,70.02792176476237,0.0861636670015286,10,mac,phase-5,without +26,311.56422898167176,0.0,0.0,70.59036605942617,0.0868557089997921,10,mac,phase-5,without +27,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687,10,mac,phase-5,without +28,310.2794311568168,0.0,0.0,70.29927247315251,0.0864975419972324,10,mac,phase-5,without +29,254.3169403535346,0.0,0.0,57.619984082721295,0.0708967079990543,10,mac,phase-5,without +0,1535.669135852832,2.361356949030495,0.0,471.3131580006953,0.511045416998968,10,mac,phase-5,with +1,1501.502028693519,2.3088191112663026,0.0,460.8269101501379,0.4996751660000882,10,mac,phase-5,with +2,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831,10,mac,phase-5,with +3,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203,10,mac,phase-5,with +4,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406,10,mac,phase-5,with +5,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604,10,mac,phase-5,with +6,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825,10,mac,phase-5,with +7,1507.9842242384736,2.3187866082600825,0.0,462.8163647675051,0.5018323340045754,10,mac,phase-5,with +8,1525.2583386023323,2.3453485473126583,0.0,468.117973820144,0.5075808749970747,10,mac,phase-5,with +9,1487.4017761634502,2.28713753382386,0.0,456.4993929829304,0.4949828339958912,10,mac,phase-5,with +10,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076,10,mac,phase-5,with +11,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088,10,mac,phase-5,with +12,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453,10,mac,phase-5,with +13,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.4975445419986499,10,mac,phase-5,with +14,1486.045287815104,2.285051698331785,0.0,456.08307231051214,0.4945314169963239,10,mac,phase-5,with +15,1484.8389210893304,2.283196700803686,0.0,455.7128255575126,0.4941299580023042,10,mac,phase-5,with +16,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077,10,mac,phase-5,with +17,1499.9656215906025,2.306456619565252,0.0,460.35537050221234,0.4991638749997946,10,mac,phase-5,with +18,1488.350338699801,2.288596112813635,0.0,456.7905168937592,0.4952984999981709,10,mac,phase-5,with +19,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.495122624997748,10,mac,phase-5,with +20,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.496049250003125,10,mac,phase-5,with +21,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.4955626670052879,10,mac,phase-5,with +22,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.4955531250016065,10,mac,phase-5,with +23,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009,10,mac,phase-5,with +24,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.4958858329991926,10,mac,phase-5,with +25,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721,10,mac,phase-5,with +26,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.4946299160001217,10,mac,phase-5,with +27,1504.0738956441755,2.3127738016056005,0.0,461.6162434161208,0.5005310409978847,10,mac,phase-5,with +28,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622,10,mac,phase-5,with +29,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531,10,mac,phase-5,with +0,295.56381491985087,0.0,0.0,64.40996834269353,0.0689168749959208,10,mac,phase-2,without +1,292.9117899350054,0.0,0.0,63.832032760950376,0.068298499994853,10,mac,phase-2,without +2,298.182066414368,0.0,0.0,64.98054392523157,0.069527375002508,10,mac,phase-2,without +3,266.1084859341793,0.0,0.0,57.99099311054205,0.0620487499982118,10,mac,phase-2,without +4,292.7641857549563,0.0,0.0,63.7998665075584,0.0682640829982119,10,mac,phase-2,without +5,293.3478092458931,0.0,0.0,63.92705112447601,0.0684001670015277,10,mac,phase-2,without +6,294.64942974187426,0.0,0.0,64.21070335356598,0.0687036669987719,10,mac,phase-2,without +7,296.68959874211004,0.0,0.0,64.65530182633425,0.0691793750011129,10,mac,phase-2,without +8,294.8887006250224,0.0,0.0,64.2628458325534,0.0687594580012955,10,mac,phase-2,without +9,295.15227983001137,0.0,0.0,64.32028563875475,0.0688209169966285,10,mac,phase-2,without +10,290.6847022677367,0.0,0.0,63.34670052843714,0.0677792080023209,10,mac,phase-2,without +11,294.45357766054786,0.0,0.0,64.16802280296643,0.0686579999965033,10,mac,phase-2,without +12,292.47201807649003,0.0,0.0,63.73619663333556,0.0681959580033435,10,mac,phase-2,without +13,294.7008941303778,0.0,0.0,64.22191859530722,0.0687156669955584,10,mac,phase-2,without +14,272.00670099030486,0.0,0.0,59.276346140467126,0.0634240419967682,10,mac,phase-2,without +15,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245,10,mac,phase-2,without +16,301.81066704160895,0.0,0.0,65.77129718977528,0.0703734590060776,10,mac,phase-2,without +17,295.9329991160775,0.0,0.0,64.49042183933697,0.0690029580000555,10,mac,phase-2,without +18,295.25288419120227,0.0,0.0,64.34220958002342,0.0688443750041187,10,mac,phase-2,without +19,301.8601629004876,0.0,0.0,65.78208344486653,0.0703849999990779,10,mac,phase-2,without +20,286.4547915575912,0.0,0.0,62.42490834285863,0.0667929159972118,10,mac,phase-2,without +21,290.8757295246105,0.0,0.0,63.38832964183578,0.0678237499960232,10,mac,phase-2,without +22,288.97083044730425,0.0,0.0,62.97320951186117,0.0673795830007293,10,mac,phase-2,without +23,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602,10,mac,phase-2,without +24,295.5164591211883,0.0,0.0,64.399648454606,0.0689058330026455,10,mac,phase-2,without +25,268.26248562413593,0.0,0.0,58.4603978374972,0.0625510000027134,10,mac,phase-2,without +26,293.4117794845162,0.0,0.0,63.94099167076958,0.0684150829983991,10,mac,phase-2,without +27,293.46628031085334,0.0,0.0,63.952868620253305,0.0684277910040691,10,mac,phase-2,without +28,292.03207031876735,0.0,0.0,63.64032217334782,0.0680933749972609,10,mac,phase-2,without +29,296.7944917425345,0.0,0.0,64.67816035804776,0.0692038329943898,10,mac,phase-2,without +0,1491.8732837180632,0.1671341986195764,0.0,457.51315530122855,0.4853813329973491,10,mac,phase-2,with +1,1490.1256809068748,0.1669384151046217,0.0,456.9772175073916,0.4848127500008559,10,mac,phase-2,with +2,1488.2943221687606,0.1667332484336851,0.0,456.4155942623698,0.4842169169933186,10,mac,phase-2,with +3,1478.1767640016478,0.1655997808699836,0.0,453.3128401534932,0.48092516700126,10,mac,phase-2,with +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.4807152499997755,10,mac,phase-2,with +5,1475.4721125595993,0.165296779431292,0.0,452.48340401521887,0.4800452080016839,10,mac,phase-2,with +6,1484.248678964546,0.166280016016283,0.0,455.1749158429732,0.4829006660002051,10,mac,phase-2,with +7,1479.026359174096,0.1656949608090896,0.0,453.57338571880194,0.481201582995709,10,mac,phase-2,with +8,1478.2323440915482,0.1656060074938437,0.0,453.3298849136479,0.4809432499969261,10,mac,phase-2,with +9,1480.85157375242,0.1658994391513096,0.0,454.133124732795,0.4817954169993754,10,mac,phase-2,with +10,1481.4601486859867,0.1659676176520789,0.0,454.3197565608008,0.4819934170009219,10,mac,phase-2,with +11,1482.2434061160802,0.1660553657901548,0.0,454.5599583139699,0.4822482499948819,10,mac,phase-2,with +12,1491.9479478691496,0.1671425632261376,0.0,457.5360525752291,0.4854056249969289,10,mac,phase-2,with +13,1501.6120194051157,0.1682252267936093,0.0,460.49973582482613,0.4885498330040718,10,mac,phase-2,with +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161,10,mac,phase-2,with +15,1473.289209598557,0.1650522293471529,0.0,451.81397261489656,0.4793349999963538,10,mac,phase-2,with +16,1479.9291063236064,0.1657960953511691,0.0,453.85023141429053,0.4814952919987263,10,mac,phase-2,with +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442,10,mac,phase-2,with +18,1492.6903539863913,0.1672257348016391,0.0,457.76372644600696,0.4856471670063911,10,mac,phase-2,with +19,1482.245585323591,0.1660556099262386,0.0,454.5606266120856,0.4822489590005716,10,mac,phase-2,with +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339,10,mac,phase-2,with +21,1481.4204468550586,0.1659631698656828,0.0,454.3075811903203,0.4819805000006454,10,mac,phase-2,with +22,1521.4543559992917,0.1704481589029252,0.0,466.5847901808677,0.4950055420049466,10,mac,phase-2,with +23,1507.892303639942,0.1689288054984138,0.0,462.4257121713581,0.4905931249959394,10,mac,phase-2,with +24,1545.2417949075991,0.1731130598583494,0.0,473.87969005624586,0.5027447909960756,10,mac,phase-2,with +25,1517.9368635996732,0.1700540950908195,0.0,465.5060799016094,0.4938611250036047,10,mac,phase-2,with +26,1487.6624369941349,0.1666624584923186,0.0,456.22181387687306,0.4840113329992164,10,mac,phase-2,with +27,1484.790276829119,0.1663406910924154,0.0,455.3410077963781,0.4830768749961862,10,mac,phase-2,with +28,1484.8006502773037,0.1663418532272751,0.0,455.34418902434305,0.4830802500000573,10,mac,phase-2,with +29,1470.9937325949477,0.1647950676205941,0.0,451.1100181046144,0.4785881659990991,10,mac,phase-2,with +0,307.4320612663604,0.0,0.0,63.35199239749272,0.0671285829957923,10,mac,phase-3,without +1,319.09229461987655,0.0,0.0,65.75479648930452,0.0696746250032447,10,mac,phase-3,without +2,315.8303683771894,0.0,0.0,65.08261699808075,0.0689623750004102,10,mac,phase-3,without +3,320.11071629586803,0.0,0.0,65.96466088018519,0.0698970000012195,10,mac,phase-3,without +4,312.61748207640557,0.0,0.0,64.42054308274855,0.0682608329952927,10,mac,phase-3,without +5,307.04469238953703,0.0,0.0,63.27216796396276,0.0670440000030794,10,mac,phase-3,without +6,315.62218214509465,0.0,0.0,65.03971642180838,0.0689169170000241,10,mac,phase-3,without +7,310.95312800205056,0.0,0.0,64.07757252128222,0.0678974169932189,10,mac,phase-3,without +8,313.5021384751786,0.0,0.0,64.60284269463226,0.0684540000002016,10,mac,phase-3,without +9,312.90657876781614,0.0,0.0,64.48011673723646,0.0683239580030203,10,mac,phase-3,without +10,312.5113876374554,0.0,0.0,64.39868038546805,0.0682376670010853,10,mac,phase-3,without +11,300.6441130311362,0.0,0.0,61.95321166128344,0.0656464170024264,10,mac,phase-3,without +12,314.46636338728104,0.0,0.0,64.80153885224628,0.068664540995087,10,mac,phase-3,without +13,314.6789461985706,0.0,0.0,64.84534542397851,0.0687109589998726,10,mac,phase-3,without +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814,10,mac,phase-3,without +15,319.99393270665615,0.0,0.0,65.9405954882237,0.0698715000035008,10,mac,phase-3,without +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653,10,mac,phase-3,without +17,315.12031493923246,0.0,0.0,64.93629751592275,0.0688073330020415,10,mac,phase-3,without +18,320.1736878576916,0.0,0.0,65.9776373208644,0.0699107500040554,10,mac,phase-3,without +19,315.997721590775,0.0,0.0,65.1171031849511,0.0689989170059561,10,mac,phase-3,without +20,315.1537104407051,0.0,0.0,64.94317926907071,0.0688146249958663,10,mac,phase-3,without +21,396.2162204473379,0.0,0.0,81.64759030709996,0.0865148329976364,10,mac,phase-3,without +22,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792,10,mac,phase-3,without +23,316.5843095668302,0.0,0.0,65.23798035321532,0.0691270000024815,10,mac,phase-3,without +24,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724,10,mac,phase-3,without +25,324.2240911390176,0.0,0.0,66.8122969098102,0.0707951660006074,10,mac,phase-3,without +26,319.4119244478356,0.0,0.0,65.82066205435802,0.069744417000038,10,mac,phase-3,without +27,316.58221200981916,0.0,0.0,65.237548113275,0.0691265419955016,10,mac,phase-3,without +28,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193,10,mac,phase-3,without +29,318.88009651176566,0.0,0.0,65.71106919269002,0.0696282909993897,10,mac,phase-3,without +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.4891792919952422,10,mac,phase-3,with +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176,10,mac,phase-3,with +2,1470.6334323813912,0.0996521649118915,0.0,454.2145676684016,0.4823543749953387,10,mac,phase-3,with +3,1485.0875958430825,0.1006315991129864,0.0,458.67882875699206,0.4870952089986531,10,mac,phase-3,with +4,1472.876125743892,0.099804132930492,0.0,454.9072378971828,0.4830899579974357,10,mac,phase-3,with +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356,10,mac,phase-3,with +6,1476.1830010833758,0.1000282113985979,0.0,455.9285875548095,0.4841745829980937,10,mac,phase-3,with +7,1463.426296356512,0.0991637993600961,0.0,451.9885974833182,0.4799905000036233,10,mac,phase-3,with +8,1471.8095321193011,0.0997318590643937,0.0,454.57781361550656,0.4827401250004186,10,mac,phase-3,with +9,1476.4591795005704,0.1000469256319136,0.0,456.01388703026225,0.484265167004196,10,mac,phase-3,with +10,1480.2938895968366,0.1003067709165972,0.0,457.1982618378502,0.4855229169988888,10,mac,phase-3,with +11,1473.468242797507,0.0998442556048273,0.0,455.090117046803,0.4832841669995105,10,mac,phase-3,with +12,1470.8582862106548,0.0996674013198103,0.0,454.2840152156956,0.4824281250039348,10,mac,phase-3,with +13,1481.467574625828,0.1003863014450677,0.0,457.56076198661873,0.4859078750014305,10,mac,phase-3,with +14,1498.777378307361,0.1015592377955431,0.0,462.9070058720858,0.4915853329948731,10,mac,phase-3,with +15,1481.2213787556393,0.1003696188707997,0.0,457.48472281310535,0.4858271249977406,10,mac,phase-3,with +16,1531.283872192057,0.1037619229909012,0.0,472.9468449925279,0.5022471670017694,10,mac,phase-3,with +17,1470.3611931394696,0.099633717602566,0.0,454.1304848324962,0.4822650830028578,10,mac,phase-3,with +18,1478.7457002780488,0.1002018634570539,0.0,456.7200936372517,0.4850151249993359,10,mac,phase-3,with +19,1464.457703027839,0.0992336889093469,0.0,452.30715404880334,0.480328792000364,10,mac,phase-3,with +20,1474.8152039772676,0.0999355275660516,0.0,455.5061346460632,0.4837259580017417,10,mac,phase-3,with +21,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.4817905829986557,10,mac,phase-3,with +22,1467.7080463118232,0.0994539366868174,0.0,453.311043418514,0.4813948750015697,10,mac,phase-3,with +23,1476.5658867326172,0.1000541562622332,0.0,456.04684424325905,0.4843001660046866,10,mac,phase-3,with +24,1477.537206367709,0.1001199742304141,0.0,456.3468425422278,0.4846187500006635,10,mac,phase-3,with +25,1452.3435435551507,0.0984128166301233,0.0,448.56561820010234,0.4763554579985793,10,mac,phase-3,with +26,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921,10,mac,phase-3,with +27,1471.1452606296632,0.0996868471052106,0.0,454.3726491055499,0.4825222500003292,10,mac,phase-3,with +28,1466.003983774469,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276,10,mac,phase-3,with +29,1458.1899954967043,0.0988089803376801,0.0,450.37133237914605,0.4782730410006479,10,mac,phase-3,with +0,303.23390333758607,0.0,0.0,75.59622229023033,0.0861223750034696,10,mac,phase-4,without +1,299.87754304590914,0.0,0.0,74.75948155674698,0.0851691249990835,10,mac,phase-4,without +2,303.496507488735,0.0,0.0,75.66168951393483,0.0861969580000732,10,mac,phase-4,without +3,250.8244775680612,0.0,0.0,62.5305506850156,0.0712374159993487,10,mac,phase-4,without +4,280.98976423022,0.0,0.0,70.05075766339677,0.0798047499993117,10,mac,phase-4,without +5,302.6632146728885,0.0,0.0,75.453949586947,0.085960291995434,10,mac,phase-4,without +6,302.2430473239825,0.0,0.0,75.3492018527478,0.0858409590000519,10,mac,phase-4,without +7,288.1644636376654,0.0,0.0,71.83941046673124,0.0818424580065766,10,mac,phase-4,without +8,299.15970621388135,0.0,0.0,74.58052481040428,0.0849652499964577,10,mac,phase-4,without +9,303.53919918635705,0.0,0.0,75.67233255558638,0.0862090829978114,10,mac,phase-4,without +10,304.1503789285395,0.0,0.0,75.82469968584712,0.0863826659988262,10,mac,phase-4,without +11,302.7150010544735,0.0,0.0,75.46685993361608,0.0859750000017811,10,mac,phase-4,without +12,304.3796818047821,0.0,0.0,75.8818649005986,0.086447790999955,10,mac,phase-4,without +13,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672,10,mac,phase-4,without +14,299.5502411494769,0.0,0.0,74.6778851829696,0.0850761670008068,10,mac,phase-4,without +15,299.0150508701026,0.0,0.0,74.54446222834005,0.084924165996199,10,mac,phase-4,without +16,301.69890677153836,0.0,0.0,75.21354759474123,0.0856864160014083,10,mac,phase-4,without +17,293.7211350318159,0.0,0.0,73.22468883198815,0.0834206250001443,10,mac,phase-4,without +18,301.99774870612936,0.0,0.0,75.28804889907536,0.0857712910001282,10,mac,phase-4,without +19,290.7437186585,0.0,0.0,72.4824188300841,0.0825750000003608,10,mac,phase-4,without +20,300.40744832723414,0.0,0.0,74.89158696118525,0.0853196249954635,10,mac,phase-4,without +21,302.49420835289175,0.0,0.0,75.41181630569348,0.0859122920010122,10,mac,phase-4,without +22,302.62287146478,0.0,0.0,75.4438920238101,0.0859488339992822,10,mac,phase-4,without +23,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865,10,mac,phase-4,without +24,300.38544230519113,0.0,0.0,74.88610085915057,0.0853133749988046,10,mac,phase-4,without +25,302.0932584124877,0.0,0.0,75.31185947207949,0.0857984169997507,10,mac,phase-4,without +26,298.48529699349257,0.0,0.0,74.4123945691023,0.0847737090007285,10,mac,phase-4,without +27,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006,10,mac,phase-4,without +28,298.8282953574442,0.0,0.0,74.49790407275962,0.0848711250000633,10,mac,phase-4,without +29,301.1461152201156,0.0,0.0,75.07573664239862,0.0855294160064659,10,mac,phase-4,without +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908,10,mac,phase-4,with +1,1573.4160634871228,22.800282743848378,0.0,461.1160630781749,0.4818563750013709,10,mac,phase-4,with +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289,10,mac,phase-4,with +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567,10,mac,phase-4,with +4,1576.0847815073448,22.83895498499088,0.0,461.8981758171432,0.482673666003393,10,mac,phase-4,with +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.4821627080018515,10,mac,phase-4,with +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886,10,mac,phase-4,with +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355,10,mac,phase-4,with +8,1576.0729479760837,22.83878350596198,0.0,461.8947078016104,0.4826700420017005,10,mac,phase-4,with +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.4872023339994484,10,mac,phase-4,with +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.4906837089947657,10,mac,phase-4,with +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.4933289170003263,10,mac,phase-4,with +12,1613.171083804858,23.376370483618174,0.0,472.76694098765734,0.4940312920007272,10,mac,phase-4,with +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545,10,mac,phase-4,with +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044,10,mac,phase-4,with +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329,10,mac,phase-4,with +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758,10,mac,phase-4,with +17,1588.96402650174,23.025587392155135,0.0,465.6726553620341,0.4866179160017054,10,mac,phase-4,with +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.4825434170052176,10,mac,phase-4,with +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111,10,mac,phase-4,with +20,1697.495566956316,24.59831177600658,0.0,497.47965022854686,0.5198555419992772,10,mac,phase-4,with +21,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.4996486660020309,10,mac,phase-4,with +22,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483,10,mac,phase-4,with +23,1630.1989199727825,23.623119889674296,0.0,477.7572350101371,0.4992460419962299,10,mac,phase-4,with +24,1632.2295419060226,23.652545516689397,0.0,478.3523429495976,0.4998679170021205,10,mac,phase-4,with +25,1613.240197605974,23.37737200778176,0.0,472.7871959504829,0.4940524580015335,10,mac,phase-4,with +26,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.4955697920013335,10,mac,phase-4,with +27,1610.8625013861165,23.34291694700681,0.0,472.090372048948,0.4933242920014891,10,mac,phase-4,with +28,1614.9038790021225,23.401480320330567,0.0,473.2747657887544,0.4945619580030325,10,mac,phase-4,with +29,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.4993293750012526,10,mac,phase-4,with +0,376.1194842106595,0.1028491890102979,1.4741717091476034,69.90316546399914,0.070418499999505,10,mac,phase-22,without +1,375.3772813659091,0.1026462349920451,1.471262701552647,69.76522438292668,0.0702795420002075,10,mac,phase-22,without +2,372.25223442040107,0.1017916965874763,1.459014317753828,69.18442311395476,0.0696944589944905,10,mac,phase-22,without +3,385.4868428198003,0.1054106761880777,1.510886358695781,71.64412291583018,0.0721722919988678,10,mac,phase-22,without +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.0704831249968265,10,mac,phase-22,without +5,358.7098339166928,0.0980885517956502,1.4059359090709862,66.66751903711025,0.0671589999983552,10,mac,phase-22,without +6,348.4707482819762,0.0952886924479016,1.3658045917532566,64.76454796709048,0.0652419999969424,10,mac,phase-22,without +7,377.0809007160486,0.1031120866054275,1.4779399080111284,70.0818481961556,0.0705985000022337,10,mac,phase-22,without +8,372.1874670252756,0.1017739860610543,1.4587604668751115,69.17238585949659,0.069682332999946,10,mac,phase-22,without +9,344.4984530925867,0.0942024755517054,1.3502354829077776,64.02628254997578,0.0644982919984613,10,mac,phase-22,without +10,365.7985019329385,0.1000269351744431,1.4337194041670178,67.98497360689649,0.0684861670015379,10,mac,phase-22,without +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.0660061249946011,10,mac,phase-22,without +12,327.2959987393395,0.089498495690276,1.282811771560623,60.82914423749095,0.0612775839981623,10,mac,phase-22,without +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.0656358750056824,10,mac,phase-22,without +14,348.36548389342033,0.0952599080922669,1.36539201598916,64.74498420004412,0.0652222920034546,10,mac,phase-22,without +15,370.7199715553666,0.101372702093346,1.4530087300046275,68.89964652277756,0.0694075829960638,10,mac,phase-22,without +16,393.78017104004334,0.1076784717090629,1.5433914278299028,73.1854679382598,0.0737250000020139,10,mac,phase-22,without +17,402.0710529521565,0.1099455982915385,1.5758869088453855,74.72635830548236,0.0752772499981802,10,mac,phase-22,without +18,373.83523342380454,0.1022245647863835,1.4652187619381638,69.478629199812,0.0699908340029651,10,mac,phase-22,without +19,367.5913620968913,0.1005171895260845,1.4407463832072125,68.3181831478955,0.0688218330033123,10,mac,phase-22,without +20,365.9671931593512,0.1000730634835524,1.4343805765975846,68.01632548098779,0.0685177500054123,10,mac,phase-22,without +21,333.9660446668918,0.0913224076201508,1.3089545092221626,62.06879637916255,0.0625263750043814,10,mac,phase-22,without +22,366.693153401072,0.1002715759915428,1.437225922545447,68.15124781558525,0.068653667003673,10,mac,phase-22,without +23,363.69117314929224,0.0994506899505857,1.4254598892917296,67.5933189364148,0.0680916250057634,10,mac,phase-22,without +24,364.9750647376018,0.0998017677707415,1.430492004713962,67.83193482818066,0.068332000002556,10,mac,phase-22,without +25,369.7136034968617,0.1010975125777582,1.4490643469478677,68.71260938201632,0.0692191669950261,10,mac,phase-22,without +26,376.5937403004009,0.102978873475636,1.4760305198174497,69.99130767227395,0.0705072920027305,10,mac,phase-22,without +27,364.0695065079672,0.0995541445195425,1.4269427381134436,67.6636335584491,0.0681624579956405,10,mac,phase-22,without +28,367.74291871241866,0.1005586324070053,1.4413403978337438,68.34635049262799,0.0688502080010948,10,mac,phase-22,without +29,358.35531160656274,0.0979916083146192,1.4045463858428764,66.6016297845029,0.0670926250022603,10,mac,phase-22,without +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455,10,mac,phase-22,with +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247,10,mac,phase-22,with +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637,10,mac,phase-22,with +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687,10,mac,phase-22,with +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102,10,mac,phase-22,with +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535,10,mac,phase-22,with +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377,10,mac,phase-22,with +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012,10,mac,phase-22,with +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362,10,mac,phase-22,with +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754,10,mac,phase-22,with +10,2530.966135457355,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819,10,mac,phase-22,with +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904,10,mac,phase-22,with +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.4971295420036767,10,mac,phase-22,with +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964,10,mac,phase-22,with +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.495697750004183,10,mac,phase-22,with +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316,10,mac,phase-22,with +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772,10,mac,phase-22,with +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.4958168329976615,10,mac,phase-22,with +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591,10,mac,phase-22,with +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655,10,mac,phase-22,with +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278,10,mac,phase-22,with +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505,10,mac,phase-22,with +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175,10,mac,phase-22,with +23,2797.642040985372,82.6511430553775,94.43706884190712,620.4635152953034,0.5694319999965956,10,mac,phase-22,with +24,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116,10,mac,phase-22,with +25,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507,10,mac,phase-22,with +26,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086,10,mac,phase-22,with +27,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.4958617500014952,10,mac,phase-22,with +28,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456,10,mac,phase-22,with +29,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.4988807499976246,10,mac,phase-22,with +0,318.0434962832716,0.1047574098429748,0.0,66.0670064743028,0.0704760419976082,10,mac,phase-25,without +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633,10,mac,phase-25,without +2,311.3660715806597,0.1025579945917851,0.0,64.67990858921917,0.0689963750046445,10,mac,phase-25,without +3,307.96812656956257,0.1014387768674448,0.0,63.97405527773522,0.0682434159971308,10,mac,phase-25,without +4,307.9854286365557,0.1014444758354926,0.0,63.97764942691737,0.0682472500047879,10,mac,phase-25,without +5,303.54277752976253,0.0999811520190258,0.0,63.05477987333232,0.0672627919993829,10,mac,phase-25,without +6,295.5978232288647,0.097364236900153,0.0,61.40437873836319,0.0655022499995539,10,mac,phase-25,without +7,309.92668146656416,0.1020838871760751,0.0,64.3809048457114,0.0686774170026183,10,mac,phase-25,without +8,281.20051954266887,0.0926220420101017,0.0,58.41363449437083,0.0623119160009082,10,mac,phase-25,without +9,299.98387491674634,0.0988089179567675,0.0,62.31549092473475,0.0664741660002619,10,mac,phase-25,without +10,305.7382448097462,0.1007042967094025,0.0,63.51084312472989,0.0677492910035653,10,mac,phase-25,without +11,294.734003229727,0.0970797112087374,0.0,61.224937868977115,0.0653108339975006,10,mac,phase-25,without +12,298.89347681440523,0.0984497617965761,0.0,62.08898310637403,0.0662325419980334,10,mac,phase-25,without +13,308.355851863169,0.1015664861209384,0.0,64.05459724693849,0.0683293330002925,10,mac,phase-25,without +14,310.24746403189397,0.1021895467825737,0.0,64.44754083754319,0.0687485000016749,10,mac,phase-25,without +15,311.1235091390795,0.1024780991894201,0.0,64.62952122212762,0.0689426249955431,10,mac,phase-25,without +16,308.5540400267205,0.1016317654896971,0.0,64.09576676883565,0.0683732500037876,10,mac,phase-25,without +17,305.98663773748234,0.100786112561753,0.0,63.562441655612275,0.0678043330044602,10,mac,phase-25,without +18,292.8154993760287,0.0964477929433559,0.0,60.82640808294316,0.064885708001384,10,mac,phase-25,without +19,275.3126478356244,0.0906826903279395,0.0,57.190550033487185,0.0610072080016834,10,mac,phase-25,without +20,306.57198705890426,0.1009789153685455,0.0,63.68403595909606,0.0679340420028893,10,mac,phase-25,without +21,299.9385619885642,0.0987939927498564,0.0,62.3060780942428,0.0664641249968553,10,mac,phase-25,without +22,306.6251973620329,0.1009964418188514,0.0,63.69508930708896,0.0679458330050692,10,mac,phase-25,without +23,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.067884750002122,10,mac,phase-25,without +24,304.5282532805252,0.1003057487748765,0.0,63.25949222735547,0.0674811659991974,10,mac,phase-25,without +25,312.89270739925354,0.1030608390643127,0.0,64.99703583655992,0.069334665997303,10,mac,phase-25,without +26,306.72541736758814,0.1010294523608656,0.0,63.715907955585934,0.0679680410030414,10,mac,phase-25,without +27,306.35518366378886,0.1009075045005892,0.0,63.63899950503827,0.0678860000043641,10,mac,phase-25,without +28,303.16651925294775,0.0998572197802858,0.0,62.97661994143359,0.0671794160007266,10,mac,phase-25,without +29,307.1612805694235,0.1011730173153568,0.0,63.80644958688507,0.0680646250038989,10,mac,phase-25,without +0,1445.0937116123694,0.0994855344525118,0.0,451.26638427659367,0.4804801249993033,10,mac,phase-25,with +1,1451.89089555387,0.0999534774459373,0.0,453.38897369477166,0.4827401250004186,10,mac,phase-25,with +2,1450.1180395946535,0.0998314275600422,0.0,452.8353554123517,0.482150666997768,10,mac,phase-25,with +3,1449.4058631584062,0.0997823987304132,0.0,452.6129606411546,0.4819138750026468,10,mac,phase-25,with +4,1446.5463840973528,0.0995855417374316,0.0,451.7200173209899,0.4809631249954691,10,mac,phase-25,with +5,1445.161635344861,0.0994902105705896,0.0,451.2875951481944,0.4805027090042131,10,mac,phase-25,with +6,1451.1624299232567,0.0999033272086139,0.0,453.1614922182729,0.4824979170007282,10,mac,phase-25,with +7,1461.9935620683018,0.1006489819447163,0.0,456.5437821012335,0.4860991669993382,10,mac,phase-25,with +8,1443.721239879732,0.099391048480602,0.0,450.837795908011,0.4800237910021678,10,mac,phase-25,with +9,1457.922268440679,0.1003686992065088,0.0,455.2724196007243,0.4847454999980982,10,mac,phase-25,with +10,1463.2726687745692,0.1007370403268629,0.0,456.9432149226504,0.4865244579996215,10,mac,phase-25,with +11,1434.2653374502413,0.0987400695860367,0.0,447.8849556422627,0.4768797920041834,10,mac,phase-25,with +12,1440.3483418552953,0.099158845849092,0.0,449.7845247714817,0.4789023339981213,10,mac,phase-25,with +13,1458.1363075618142,0.100383434442147,0.0,455.3392586295791,0.4848166660012794,10,mac,phase-25,with +14,1443.7793888920285,0.0993950516712046,0.0,450.8559543805843,0.4800431250041583,10,mac,phase-25,with +15,1447.6267393486346,0.0996599173427703,0.0,452.0573850668063,0.4813223329983884,10,mac,phase-25,with +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.4835391250016982,10,mac,phase-25,with +17,1450.7958782332366,0.099878092450139,0.0,453.0470273538308,0.4823760419967584,10,mac,phase-25,with +18,1447.8402822026578,0.0996746184135661,0.0,452.12406912393624,0.4813933339974028,10,mac,phase-25,with +19,1442.8031718956472,0.0993278453240687,0.0,450.5511063899757,0.4797185419956804,10,mac,phase-25,with +20,1471.4015954886795,0.1012966653616825,0.0,459.4816740805919,0.4892272500001127,10,mac,phase-25,with +21,1448.4089689054954,0.0997137688853405,0.0,452.30165566390485,0.4815824170000269,10,mac,phase-25,with +22,1437.411540338623,0.0989566656955703,0.0,448.867435595107,0.4779258749986184,10,mac,phase-25,with +23,1446.9099281828417,0.0996105694414146,0.0,451.8335429862568,0.4810839999991003,10,mac,phase-25,with +24,1445.926441829572,0.0995428626451732,0.0,451.526424958506,0.4807569999975385,10,mac,phase-25,with +25,1558.660068355674,0.1073038576558051,0.0,486.7302983267323,0.5182398750039283,10,mac,phase-25,with +26,1444.6335482723644,0.0994538551258024,0.0,451.12268685063987,0.4803271249984391,10,mac,phase-25,with +27,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.4812947079990408,10,mac,phase-25,with +28,1448.532656600787,0.0997222839984937,0.0,452.3402802171675,0.4816235420003067,10,mac,phase-25,with +29,1441.3934810706207,0.0992307970537637,0.0,450.1108954358723,0.479249832998903,10,mac,phase-25,with +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.0687121249939082,10,mac,phase-13,without +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.0684735419999924,10,mac,phase-13,without +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.0682607499984442,10,mac,phase-13,without +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.0693537920014932,10,mac,phase-13,without +4,282.3759053861895,0.9401410231953468,0.0,57.6822008425016,0.061543249998067,10,mac,phase-13,without +5,321.98321971372366,1.072009430901668,0.0,65.77296572822493,0.0701755830014008,10,mac,phase-13,without +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.069085625000298,10,mac,phase-13,without +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.0674245410045841,10,mac,phase-13,without +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.067374958001892,10,mac,phase-13,without +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.0674674160036374,10,mac,phase-13,without +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.0676157499983673,10,mac,phase-13,without +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.0686493749963119,10,mac,phase-13,without +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.0677805829982389,10,mac,phase-13,without +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.0658772080059861,10,mac,phase-13,without +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.0679051670012995,10,mac,phase-13,without +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.0631127919987193,10,mac,phase-13,without +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.068294083001092,10,mac,phase-13,without +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.0672580419995938,10,mac,phase-13,without +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.0678333329997258,10,mac,phase-13,without +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.0681575409980723,10,mac,phase-13,without +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.0683888749990728,10,mac,phase-13,without +21,316.3211247316838,1.053158078260359,0.0,64.61634402745813,0.0689415410015499,10,mac,phase-13,without +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.0673742090002633,10,mac,phase-13,without +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.0688007909993757,10,mac,phase-13,without +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264,10,mac,phase-13,without +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.0688696249999338,10,mac,phase-13,without +26,283.9395447763309,0.9453469968925204,0.0,58.00161251901851,0.061884041999292,10,mac,phase-13,without +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.0701700000063283,10,mac,phase-13,without +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.0685499159953906,10,mac,phase-13,without +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.0680872920056572,10,mac,phase-13,without +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778,10,mac,phase-13,with +1,1488.7041689159475,1.9934442540384945,0.0,459.4224524140717,0.4818315829979838,10,mac,phase-13,with +2,1487.819878516848,1.9922601479872095,0.0,459.1495554394523,0.4815453749979497,10,mac,phase-13,with +3,1491.727934254883,1.9974932167312307,0.0,460.3556033493242,0.4828102499959641,10,mac,phase-13,with +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.4815899169989279,10,mac,phase-13,with +5,1501.2124715705363,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793,10,mac,phase-13,with +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881,10,mac,phase-13,with +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226,10,mac,phase-13,with +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.4821794169984059,10,mac,phase-13,with +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622,10,mac,phase-13,with +10,1497.9545334031648,2.005830923142963,0.0,462.2771667536816,0.4848255410033744,10,mac,phase-13,with +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.4850677080030436,10,mac,phase-13,with +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.4837472500003059,10,mac,phase-13,with +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.487756000002264,10,mac,phase-13,with +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639,10,mac,phase-13,with +15,1529.9467312348206,2.048669966838271,0.0,472.15013835732685,0.4951800839990028,10,mac,phase-13,with +16,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.4869370829983381,10,mac,phase-13,with +17,1491.0045635252643,1.996524589616048,0.0,460.1323670868452,0.4825761249958304,10,mac,phase-13,with +18,1493.856851787251,2.0003439365121194,0.0,461.0125992348264,0.4834992920004879,10,mac,phase-13,with +19,1491.1042056393792,1.9966580150500528,0.0,460.1631172018688,0.4826083750012913,10,mac,phase-13,with +20,1484.7932830352129,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615,10,mac,phase-13,with +21,1505.3592048868377,2.0157461233085665,0.0,464.562289885181,0.4872221249970607,10,mac,phase-13,with +22,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039,10,mac,phase-13,with +23,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.478613375002169,10,mac,phase-13,with +24,1486.3696611665118,1.9903182393766896,0.0,458.7020102350144,0.481075999996392,10,mac,phase-13,with +25,1490.7165777906416,1.996138963297592,0.0,460.0434930746517,0.4824829159988439,10,mac,phase-13,with +26,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.4882316250004805,10,mac,phase-13,with +27,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877,10,mac,phase-13,with +28,1483.4506884174402,1.986409598844992,0.0,457.80119888047585,0.4801312499985215,10,mac,phase-13,with +29,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782,10,mac,phase-13,with +0,311.59367925352166,0.0,0.0,72.32524053893655,0.0842451249991427,10,mac,phase-14,without +1,314.6147113063084,0.0,0.0,73.02646423004957,0.0850619169941637,10,mac,phase-14,without +2,317.0589047950213,0.0,0.0,73.59379564196513,0.085722749994602,10,mac,phase-14,without +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667,10,mac,phase-14,without +4,310.3879176166453,0.0,0.0,72.04536643934435,0.0839191249979194,10,mac,phase-14,without +5,319.6777081144411,0.0,0.0,74.20165643187254,0.086430791998282,10,mac,phase-14,without +6,254.6704492989941,0.0,0.0,59.112564631718605,0.0688548749967594,10,mac,phase-14,without +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371,10,mac,phase-14,without +8,273.9504631496793,0.0,0.0,63.58772485539658,0.0740675839988398,10,mac,phase-14,without +9,303.15396548952185,0.0,0.0,70.36626521721826,0.0819632919956347,10,mac,phase-14,without +10,319.6621404622535,0.0,0.0,74.19804296258846,0.0864265829950454,10,mac,phase-14,without +11,321.3189864206904,0.0,0.0,74.58262002707511,0.0868745420011691,10,mac,phase-14,without +12,327.9853465847884,0.0,0.0,76.12997523512246,0.0886769159988034,10,mac,phase-14,without +13,316.0251306481012,0.0,0.0,73.35384223848772,0.0854432499982067,10,mac,phase-14,without +14,248.80099032368904,0.0,0.0,57.750181308541606,0.0672679580020485,10,mac,phase-14,without +15,293.83489274284335,0.0,0.0,68.20317840615691,0.0794437079966883,10,mac,phase-14,without +16,319.29011864863867,0.0,0.0,74.1116915089265,0.0863260000041918,10,mac,phase-14,without +17,317.9883472997439,0.0,0.0,73.8095322155767,0.0859740419982699,10,mac,phase-14,without +18,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388,10,mac,phase-14,without +19,317.9663070322047,0.0,0.0,73.80441636195883,0.0859680830035358,10,mac,phase-14,without +20,309.99647784933063,0.0,0.0,71.95450780769507,0.0838132920034695,10,mac,phase-14,without +21,318.1546314596068,0.0,0.0,73.84812908919976,0.0860190000021248,10,mac,phase-14,without +22,317.56423360371525,0.0,0.0,73.7110895091822,0.0858593750017462,10,mac,phase-14,without +23,314.6444522037832,0.0,0.0,73.03336750732035,0.0850699579968932,10,mac,phase-14,without +24,291.90250070508733,0.0,0.0,67.75464325203872,0.0789212500021676,10,mac,phase-14,without +25,315.9423732511658,0.0,0.0,73.33463309196694,0.0854208750024554,10,mac,phase-14,without +26,312.00345697187805,0.0,0.0,72.42035566488721,0.0843559159984579,10,mac,phase-14,without +27,315.7848733838278,0.0,0.0,73.2980751752038,0.0853782919948571,10,mac,phase-14,without +28,316.48175922730144,0.0,0.0,73.4598321029379,0.0855667079958948,10,mac,phase-14,without +29,318.58722249833687,0.0,0.0,73.94853950511737,0.0861359590053325,10,mac,phase-14,without +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.4942865000048186,10,mac,phase-14,with +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005,10,mac,phase-14,with +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.4824957500022719,10,mac,phase-14,with +3,1508.1492778731936,1.951623100383721,0.0,443.18107904547,0.4817460420017596,10,mac,phase-14,with +4,1509.5093876893875,1.953383152770635,0.0,443.5807576083317,0.4821805000028689,10,mac,phase-14,with +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872,10,mac,phase-14,with +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.484043999997084,10,mac,phase-14,with +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509,10,mac,phase-14,with +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.4944804589977138,10,mac,phase-14,with +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042,10,mac,phase-14,with +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149,10,mac,phase-14,with +11,1548.4815781326529,2.003815181123219,0.0,455.0330307133976,0.494629332999466,10,mac,phase-14,with +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555,10,mac,phase-14,with +13,1548.2143040147903,2.003469314603102,0.0,454.95449019112107,0.4945439579969388,10,mac,phase-14,with +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453,10,mac,phase-14,with +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676,10,mac,phase-14,with +16,1553.068674945917,2.0097511214414663,0.0,456.380983827333,0.4960945830025594,10,mac,phase-14,with +17,1547.303042521918,2.002290095141161,0.0,454.686709104972,0.4942528749961639,10,mac,phase-14,with +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793,10,mac,phase-14,with +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576,10,mac,phase-14,with +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.4960286249988712,10,mac,phase-14,with +21,1560.5320011886452,2.0194090512728877,0.0,458.5741387265515,0.4984785830019973,10,mac,phase-14,with +22,1572.43476681286,2.034811845075521,0.0,462.0718564858995,0.5022806669949205,10,mac,phase-14,with +23,1545.401732006987,1.9998297010831043,0.0,454.127994620955,0.4936455420029233,10,mac,phase-14,with +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539,10,mac,phase-14,with +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872,10,mac,phase-14,with +26,1565.7153470029502,2.0261165686101243,0.0,460.0973041218824,0.500134292000439,10,mac,phase-14,with +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341,10,mac,phase-14,with +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.4930831250021583,10,mac,phase-14,with +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.4954994579966296,10,mac,phase-14,with +0,291.29299505714096,0.0,0.0,62.99496139075435,0.0682530839985702,10,mac,phase-15,without +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809,10,mac,phase-15,without +2,289.0799426382046,0.0,0.0,62.51636714354541,0.067734541997197,10,mac,phase-15,without +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137,10,mac,phase-15,without +4,297.886977244811,0.0,0.0,64.42097458150106,0.0697981249977601,10,mac,phase-15,without +5,290.82548775033143,0.0,0.0,62.893858359641,0.0681435420046909,10,mac,phase-15,without +6,268.5173277099082,0.0,0.0,58.06950039603958,0.0629164999991189,10,mac,phase-15,without +7,292.0704497581507,0.0,0.0,63.16309357966455,0.068435250002949,10,mac,phase-15,without +8,293.8949497924379,0.0,0.0,63.55765957049728,0.0688627499985159,10,mac,phase-15,without +9,293.04956393422503,0.0,0.0,63.37483660392384,0.068664666992845,10,mac,phase-15,without +10,290.9037299843468,0.0,0.0,62.91077900859089,0.0681618750022607,10,mac,phase-15,without +11,291.32144445247934,0.0,0.0,63.001113850962255,0.0682597499981056,10,mac,phase-15,without +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997,10,mac,phase-15,without +13,292.62811511187584,0.0,0.0,63.28369417090083,0.0685659169976133,10,mac,phase-15,without +14,291.9456155250125,0.0,0.0,63.136096954856455,0.0684059999985038,10,mac,phase-15,without +15,288.2672740442093,0.0,0.0,62.34061960559938,0.0675441249986761,10,mac,phase-15,without +16,293.5677518423963,0.0,0.0,63.48689981114927,0.0687860839971108,10,mac,phase-15,without +17,269.05080725191584,0.0,0.0,58.184870568758406,0.0630414999977801,10,mac,phase-15,without +18,292.5950351222772,0.0,0.0,63.27654029935935,0.0685581660000025,10,mac,phase-15,without +19,288.8240474431492,0.0,0.0,62.46102730288279,0.0676745829987339,10,mac,phase-15,without +20,289.09861444034067,0.0,0.0,62.52040510351909,0.0677389170014066,10,mac,phase-15,without +21,292.22515879396974,0.0,0.0,63.19655092297043,0.068471499995212,10,mac,phase-15,without +22,289.8157859281682,0.0,0.0,62.67550045751957,0.0679069580000941,10,mac,phase-15,without +23,289.92461574616726,0.0,0.0,62.69903597090075,0.0679324579978128,10,mac,phase-15,without +24,289.408032574084,0.0,0.0,62.58731980356169,0.0678114170004846,10,mac,phase-15,without +25,291.7665414108356,0.0,0.0,63.09737042486749,0.0683640410061343,10,mac,phase-15,without +26,292.56711921054875,0.0,0.0,63.27050321020389,0.0685516250014188,10,mac,phase-15,without +27,293.90632783646987,0.0,0.0,63.560120183888806,0.0688654159966972,10,mac,phase-15,without +28,265.84672909821063,0.0,0.0,57.491957306130764,0.0622907500001019,10,mac,phase-15,without +29,296.77573933170015,0.0,0.0,64.18065850586514,0.0695377499941969,10,mac,phase-15,without +0,1473.756556484359,1.730836715732926,0.0,462.06552715105465,0.4929395419967477,10,mac,phase-15,with +1,1446.159224005418,1.6984253408008363,0.0,453.4129610784978,0.4837088339991169,10,mac,phase-15,with +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742,10,mac,phase-15,with +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.4820898329999181,10,mac,phase-15,with +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.4803014579956652,10,mac,phase-15,with +5,1452.578920577144,1.7059648808159893,0.0,455.4257225943078,0.4858560829961789,10,mac,phase-15,with +6,1491.0040656140802,1.7510928577160183,0.0,467.4731227020312,0.4987084589956794,10,mac,phase-15,with +7,1471.581150604885,1.7282818349072917,0.0,461.38347416201515,0.4922119160037255,10,mac,phase-15,with +8,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.4822434169982443,10,mac,phase-15,with +9,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321,10,mac,phase-15,with +10,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.4814543749962467,10,mac,phase-15,with +11,1442.9805152629783,1.694692142277764,0.0,452.4163434727796,0.4826456250011688,10,mac,phase-15,with +12,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.4814219580002827,10,mac,phase-15,with +13,1428.712272923545,1.677934966473248,0.0,447.942834677123,0.477873208001256,10,mac,phase-15,with +14,1442.6170148012343,1.694265233272607,0.0,452.30237550993223,0.48252404199593,10,mac,phase-15,with +15,1464.2447277915137,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759,10,mac,phase-15,with +16,1449.9154471216857,1.702836794547057,0.0,454.59064623055264,0.4849652090051677,10,mac,phase-15,with +17,1444.6339619987823,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075,10,mac,phase-15,with +18,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.4831488749987329,10,mac,phase-15,with +19,1438.8095895874126,1.6897936458021423,0.0,451.1086370116896,0.481250541000918,10,mac,phase-15,with +20,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.4836824999947566,10,mac,phase-15,with +21,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994,10,mac,phase-15,with +22,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702,10,mac,phase-15,with +23,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.4835075840019271,10,mac,phase-15,with +24,1448.596476504854,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375,10,mac,phase-15,with +25,1447.9104558714089,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382,10,mac,phase-15,with +26,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544,10,mac,phase-15,with +27,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.4828053749952232,10,mac,phase-15,with +28,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.4813471250017755,10,mac,phase-15,with +29,1439.678106400043,1.690813665547546,0.0,451.3809422829379,0.4815410410010372,10,mac,phase-15,with +0,298.5621379017781,0.0,0.0,65.17760957180526,0.0699610410010791,10,mac,phase-12,without +1,293.7520815286884,0.0,0.0,64.12755018213558,0.0688339170010294,10,mac,phase-12,without +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092,10,mac,phase-12,without +3,291.0702814766676,0.0,0.0,63.54209980330101,0.068205499999749,10,mac,phase-12,without +4,297.6933418060511,0.0,0.0,64.98794703414137,0.0697574589939904,10,mac,phase-12,without +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567,10,mac,phase-12,without +6,293.15729192518216,0.0,0.0,63.99770463364393,0.0686945419947733,10,mac,phase-12,without +7,291.59732372815654,0.0,0.0,63.65715576564372,0.0683290000015404,10,mac,phase-12,without +8,289.71177993007666,0.0,0.0,63.2455321138121,0.0678871669952059,10,mac,phase-12,without +9,288.3285607864271,0.0,0.0,62.943568449127,0.0675630420009838,10,mac,phase-12,without +10,287.9739957844177,0.0,0.0,62.86616513392031,0.0674799580010585,10,mac,phase-12,without +11,292.9851689308829,0.0,0.0,63.96012932218745,0.0686542090043076,10,mac,phase-12,without +12,294.059699195972,0.0,0.0,64.19470465911147,0.0689059999931487,10,mac,phase-12,without +13,288.9098350378217,0.0,0.0,63.070463528582806,0.0676992500011692,10,mac,phase-12,without +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247,10,mac,phase-12,without +15,293.23659577732656,0.0,0.0,64.01501706163273,0.0687131249942467,10,mac,phase-12,without +16,280.4243482266323,0.0,0.0,61.21803927179926,0.0657108750019688,10,mac,phase-12,without +17,295.6641182362926,0.0,0.0,64.54495736876346,0.0692819579999195,10,mac,phase-12,without +18,294.7314796376094,0.0,0.0,64.34135769305185,0.0690634159982437,10,mac,phase-12,without +19,292.6675907282371,0.0,0.0,63.890800410470675,0.0685797919941251,10,mac,phase-12,without +20,291.79132220494307,0.0,0.0,63.69950660445531,0.0683744589987327,10,mac,phase-12,without +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606,10,mac,phase-12,without +22,290.6044059821546,0.0,0.0,63.440396850261365,0.0680963329941732,10,mac,phase-12,without +23,290.49878844398484,0.0,0.0,63.41734001286348,0.0680715839989716,10,mac,phase-12,without +24,291.0869974835,0.0,0.0,63.54574899128773,0.0682094170042546,10,mac,phase-12,without +25,290.73012372139635,0.0,0.0,63.46784166219275,0.0681257920005009,10,mac,phase-12,without +26,287.31287997933134,0.0,0.0,62.7218402435357,0.0673250410036416,10,mac,phase-12,without +27,271.03076122136986,0.0,0.0,59.1673721958916,0.0635097080012201,10,mac,phase-12,without +28,292.54952051034445,0.0,0.0,63.865025090740104,0.0685521250052261,10,mac,phase-12,without +29,291.9493964926538,0.0,0.0,63.734015012923166,0.0684115000040037,10,mac,phase-12,without +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427,10,mac,phase-12,with +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.4848300000012386,10,mac,phase-12,with +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943,10,mac,phase-12,with +3,1463.6997649458424,0.9049459287293112,0.0,456.293847174846,0.4853247499995632,10,mac,phase-12,with +4,1469.782118043518,0.908706399834558,0.0,458.1899602721361,0.4873414999965462,10,mac,phase-12,with +5,1441.0904332217217,0.8909675001027336,0.0,449.2456128295784,0.4778280839964282,10,mac,phase-12,with +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285,10,mac,phase-12,with +7,1447.019725460083,0.8946333399148689,0.0,451.0940107259638,0.4797940829957952,10,mac,phase-12,with +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928,10,mac,phase-12,with +9,1485.7182300106604,0.9185590485742904,0.0,463.1578847144588,0.4926254999954835,10,mac,phase-12,with +10,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.4854045410029357,10,mac,phase-12,with +11,1476.406582468932,0.9128020362863496,0.0,460.25507118527264,0.4895380000016303,10,mac,phase-12,with +12,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.480668666998099,10,mac,phase-12,with +13,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029,10,mac,phase-12,with +14,1453.0520656111892,0.8983628900529438,0.0,452.9745327844733,0.4817942500012577,10,mac,phase-12,with +15,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347,10,mac,phase-12,with +16,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518,10,mac,phase-12,with +17,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.4827774170043994,10,mac,phase-12,with +18,1452.131203241068,0.8977935583684558,0.0,452.6874630973391,0.4814889160043094,10,mac,phase-12,with +19,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651,10,mac,phase-12,with +20,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.4821297079979558,10,mac,phase-12,with +21,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213,10,mac,phase-12,with +22,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.4835610840018489,10,mac,phase-12,with +23,1452.891467970985,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396,10,mac,phase-12,with +24,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403,10,mac,phase-12,with +25,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.486632667001686,10,mac,phase-12,with +26,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.4821981659988523,10,mac,phase-12,with +27,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354,10,mac,phase-12,with +28,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348,10,mac,phase-12,with +29,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541,10,mac,phase-12,with +0,370.44916321321614,0.0,0.0,65.64209549207466,0.0671277500005089,10,mac,phase-24,without +1,371.36386610958994,0.0,0.0,65.80417715086381,0.0672934999965946,10,mac,phase-24,without +2,368.962830282296,0.0,0.0,65.3787232999547,0.0668584169980022,10,mac,phase-24,without +3,368.9108618969243,0.0,0.0,65.36951471196507,0.0668489999952726,10,mac,phase-24,without +4,376.83391647843223,0.0,0.0,66.77344798290869,0.0682847079951898,10,mac,phase-24,without +5,379.53434024077234,0.0,0.0,67.25195216669212,0.068774041996221,10,mac,phase-24,without +6,377.5320155936468,0.0,0.0,66.8971483265304,0.0684112080052727,10,mac,phase-24,without +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257,10,mac,phase-24,without +8,381.6909531277366,0.0,0.0,67.63409525978926,0.0691648339998209,10,mac,phase-24,without +9,336.48949708535804,0.0,0.0,59.62457981594719,0.0609740420040907,10,mac,phase-24,without +10,375.5701640445277,0.0,0.0,66.54951615586617,0.0680557079977006,10,mac,phase-24,without +11,374.0240484961872,0.0,0.0,66.27555072539892,0.067775542003801,10,mac,phase-24,without +12,371.35052776493495,0.0,0.0,65.80181365006399,0.0672910830035107,10,mac,phase-24,without +13,370.73061027987507,0.0,0.0,65.69196677553322,0.0671787500032223,10,mac,phase-24,without +14,394.8672224542054,0.0,0.0,69.96887696601637,0.0715524580009514,10,mac,phase-24,without +15,365.1862909781526,0.0,0.0,64.70953578855121,0.0661740840005222,10,mac,phase-24,without +16,371.5834610794553,0.0,0.0,65.84308849258868,0.0673332920050597,10,mac,phase-24,without +17,386.614659576844,0.0,0.0,68.50655615591829,0.0700570409971987,10,mac,phase-24,without +18,386.60155849554985,0.0,0.0,68.50423469722772,0.0700546669977484,10,mac,phase-24,without +19,362.7040769916651,0.0,0.0,64.26969749570833,0.0657242910019704,10,mac,phase-24,without +20,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238,10,mac,phase-24,without +21,379.3593519471741,0.0,0.0,67.2209449478372,0.0687423330018646,10,mac,phase-24,without +22,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073,10,mac,phase-24,without +23,376.3324220394227,0.0,0.0,66.6845851938321,0.0681938340057968,10,mac,phase-24,without +24,375.2703236266904,0.0,0.0,66.49638564486882,0.0680013750024954,10,mac,phase-24,without +25,387.82208398640864,0.0,0.0,68.72050688455441,0.0702758339975844,10,mac,phase-24,without +26,379.18068825981504,0.0,0.0,67.18928646405266,0.0687099580027279,10,mac,phase-24,without +27,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301,10,mac,phase-24,without +28,382.47504806500143,0.0,0.0,67.7730337157446,0.0693069170010858,10,mac,phase-24,without +29,362.6224518506248,0.0,0.0,64.25523385039665,0.0657095000060508,10,mac,phase-24,without +0,1445.9512284681282,0.0993735381060291,0.0,451.0233649505643,0.479501458001323,10,mac,phase-24,with +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221,10,mac,phase-24,with +2,1445.2778876531952,0.0993272625070921,0.0,450.8133354321888,0.4792781669966643,10,mac,phase-24,with +3,1473.4560079931225,0.1012638143493852,0.0,459.6026987270767,0.488622500000929,10,mac,phase-24,with +4,1438.408509378345,0.0988551619200731,0.0,448.6706282345721,0.4770001669967314,10,mac,phase-24,with +5,1462.0207397229187,0.1004779212674964,0.0,456.035791992744,0.4848303749968181,10,mac,phase-24,with +6,1459.873808732507,0.1003303726334995,0.0,455.36611792590986,0.4841184169999906,10,mac,phase-24,with +7,1445.935900531451,0.0993724846878574,0.0,451.01858383662216,0.4794963750027818,10,mac,phase-24,with +8,1451.6571155923002,0.0997656773292609,0.0,452.8031541717392,0.4813936249993276,10,mac,phase-24,with +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256,10,mac,phase-24,with +10,1453.1768162644023,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993,10,mac,phase-24,with +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.4802655410021543,10,mac,phase-24,with +12,1459.790501679045,0.1003246473251428,0.0,455.3401326597149,0.4840907909965608,10,mac,phase-24,with +13,1455.5734090741,0.1000348260611724,0.0,454.02473054964133,0.4826923330037971,10,mac,phase-24,with +14,1458.6344227252057,0.1002451953673512,0.0,454.9795267072848,0.4837074160022894,10,mac,phase-24,with +15,1454.1420362947786,0.0999364544324277,0.0,453.578254517312,0.4822176660018158,10,mac,phase-24,with +16,1452.8549083992968,0.099847996087187,0.0,453.17677157437976,0.4817908330005593,10,mac,phase-24,with +17,1456.5114923274932,0.1000992961830495,0.0,454.3173389428009,0.483003417000873,10,mac,phase-24,with +18,1445.2579097656906,0.0993258895193134,0.0,450.807103898324,0.47927154199715,10,mac,phase-24,with +19,1460.9679426822058,0.1004055673977507,0.0,455.707401895925,0.4844812500014086,10,mac,phase-24,with +20,1450.2062685342962,0.0996659673234419,0.0,452.3506036919953,0.4809125000028871,10,mac,phase-24,with +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235,10,mac,phase-24,with +22,1455.721926964596,0.1000450330086545,0.0,454.0710564819467,0.4827415840045432,10,mac,phase-24,with +23,1450.0845164884097,0.0996575998686252,0.0,452.3126266037338,0.4808721250010421,10,mac,phase-24,with +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355,10,mac,phase-24,with +25,1455.2424545927595,0.1000120810908613,0.0,453.921498711056,0.4825825829975656,10,mac,phase-24,with +26,1450.4460031843537,0.0996824431767859,0.0,452.4253820983725,0.4809919999970589,10,mac,phase-24,with +27,1449.8539520475165,0.0996417542413302,0.0,452.24070858331766,0.4807956660006311,10,mac,phase-24,with +28,1454.8514398281357,0.0999852084551545,0.0,453.79953277512817,0.4824529160032398,10,mac,phase-24,with +29,1481.6993373073888,0.1018303402346322,0.0,462.1739708782508,0.4913561249995837,10,mac,phase-24,with +0,289.20382575590736,0.0996796274434423,0.0,62.69848566192523,0.0674275420024059,10,mac,phase-23,without +1,293.9195168609384,0.1013049805357094,0.0,63.720832756961265,0.0685270000030868,10,mac,phase-23,without +2,293.63447150195356,0.1012067342033387,0.0,63.65903581390008,0.0684605420028674,10,mac,phase-23,without +3,291.00346139953365,0.1002999062728172,0.0,63.08864104560202,0.067847124999389,10,mac,phase-23,without +4,290.50771376254335,0.1001290373722001,0.0,62.981164507113895,0.0677315420034574,10,mac,phase-23,without +5,268.94209243479787,0.0926960336976555,0.0,58.30580519582532,0.0627035419965977,10,mac,phase-23,without +6,293.7504532056515,0.1012467095148155,0.0,63.684180284818986,0.0684875830047531,10,mac,phase-23,without +7,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.0687160410016076,10,mac,phase-23,without +8,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.0670849999951315,10,mac,phase-23,without +9,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.0684643329950631,10,mac,phase-23,without +10,290.6228033105725,0.1001687051851697,0.0,63.00611556147178,0.0677583750002668,10,mac,phase-23,without +11,292.06412282992403,0.1006654835121521,0.0,63.31858912914369,0.0680944170017028,10,mac,phase-23,without +12,290.22624120801856,0.1000320224751902,0.0,62.920142136894654,0.0676659169985214,10,mac,phase-23,without +13,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.0667457500021555,10,mac,phase-23,without +14,290.24715059938825,0.1000392292966641,0.0,62.92467522760175,0.0676707919992622,10,mac,phase-23,without +15,290.5952801459097,0.1001592188002905,0.0,63.00014862538278,0.0677519580058287,10,mac,phase-23,without +16,287.0188825965561,0.0989265450125997,0.0,62.224796812925256,0.0669181249977555,10,mac,phase-23,without +17,294.8216615026295,0.1016159219333511,0.0,63.91641489607788,0.0687373339969781,10,mac,phase-23,without +18,292.6999826596284,0.1008846447586035,0.0,63.45644155316163,0.068242666995502,10,mac,phase-23,without +19,294.47674453414845,0.1014970397061632,0.0,63.84163797517671,0.0686569169993163,10,mac,phase-23,without +20,291.70115300347874,0.1005403790223387,0.0,63.23989840505106,0.0680097910008044,10,mac,phase-23,without +21,291.2361453845984,0.10038010525664,0.0,63.1390862064266,0.0679013750050216,10,mac,phase-23,without +22,290.8948054959841,0.1002624559384136,0.0,63.06508478526217,0.0678217919994494,10,mac,phase-23,without +23,292.993606263265,0.1009858477469893,0.0,63.52009823285628,0.0683111250036745,10,mac,phase-23,without +24,289.21990989831363,0.0996851711506136,0.0,62.701972653735965,0.0674312920018564,10,mac,phase-23,without +25,276.5893870013989,0.095331819968313,0.0,59.9637147600689,0.0644864999994752,10,mac,phase-23,without +26,294.1384413389605,0.1013804370423806,0.0,63.76829489965745,0.0685780419953516,10,mac,phase-23,without +27,282.89311931638207,0.0975045218232015,0.0,61.33034422679377,0.0659562079963507,10,mac,phase-23,without +28,293.29813271570947,0.1010908086106535,0.0,63.586118616101075,0.0683821249986067,10,mac,phase-23,without +29,294.9056550815358,0.1016448719260808,0.0,63.93462444150483,0.068756917004066,10,mac,phase-23,without +0,1478.185480632039,0.1001910585367731,0.0,453.1975547813372,0.4826704579973011,10,mac,phase-23,with +1,1472.4376515691376,0.0998014720568313,0.0,451.43532527040054,0.4807936249999329,10,mac,phase-23,with +2,1467.3052593754642,0.0994535997407738,0.0,449.86178282743384,0.4791177500010235,10,mac,phase-23,with +3,1469.146722041262,0.0995784136400846,0.0,450.4263576986495,0.4797190410026815,10,mac,phase-23,with +4,1470.385895182594,0.0996624044993963,0.0,450.8062763522695,0.480123666995496,10,mac,phase-23,with +5,1466.8412883523577,0.0994221518957337,0.0,449.7195337417024,0.4789662499970291,10,mac,phase-23,with +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107,10,mac,phase-23,with +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546,10,mac,phase-23,with +8,1478.2217224431022,0.1001935149980638,0.0,453.2086661745757,0.4826822920003906,10,mac,phase-23,with +9,1476.0122465403242,0.1000437572495192,0.0,452.5312619586588,0.4819608339967089,10,mac,phase-23,with +10,1472.6817615590717,0.0998180177735978,0.0,451.51016706257434,0.4808733339959872,10,mac,phase-23,with +11,1475.1950634268462,0.0999883687734244,0.0,452.2807214184565,0.4816939999946044,10,mac,phase-23,with +12,1475.1436376964589,0.0999848831497113,0.0,452.2649547805279,0.4816772080012015,10,mac,phase-23,with +13,1471.505244398319,0.0997382737216727,0.0,451.14945813436634,0.4804891669991775,10,mac,phase-23,with +14,1487.7908044971591,0.1008421050923268,0.0,456.1424553676251,0.4858068749963422,10,mac,phase-23,with +15,1468.6795629390188,0.0995467497078027,0.0,450.2831311782943,0.4795664999983273,10,mac,phase-23,with +16,1475.7644370380624,0.1000269607806915,0.0,452.455285931328,0.4818799170025158,10,mac,phase-23,with +17,1467.6844997653377,0.0994793045637471,0.0,449.97805431001626,0.4792415829942911,10,mac,phase-23,with +18,1482.7513106263857,0.1005005294023893,0.0,454.5973946634747,0.4841613339958712,10,mac,phase-23,with +19,1477.909345926593,0.1001723421924443,0.0,453.1128945171565,0.4825802920022397,10,mac,phase-23,with +20,1479.7538741610845,0.1002973638752683,0.0,453.678409262464,0.4831825840010424,10,mac,phase-23,with +21,1471.3194508052536,0.0997256806763462,0.0,451.0924955926728,0.4804284999991068,10,mac,phase-23,with +22,1489.160260118828,0.1009349264670134,0.0,456.562317385791,0.4862540419999277,10,mac,phase-23,with +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504,10,mac,phase-23,with +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.4825493750031455,10,mac,phase-23,with +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.4815804590034531,10,mac,phase-23,with +26,1470.1209876523235,0.0996444491303172,0.0,450.7250582328016,0.4800371669989545,10,mac,phase-23,with +27,1479.45489308524,0.100277099009415,0.0,453.5867445192541,0.483084958003019,10,mac,phase-23,with +28,1481.6974196226456,0.1004290969220744,0.0,454.2742817441834,0.4838172079980722,10,mac,phase-23,with +29,1478.0856947176749,0.10018429507135,0.0,453.1669613727401,0.4826378750003641,10,mac,phase-23,with +0,305.2603840466375,0.0,0.0,70.23005972174292,0.0822855000005802,10,mac,phase-8,without +1,311.8426015201836,0.0,0.0,71.74440468894973,0.0840597919959691,10,mac,phase-8,without +2,309.3793097001562,0.0,0.0,71.17768479775621,0.0833957909999298,10,mac,phase-8,without +3,307.9774835661487,0.0,0.0,70.85517215525161,0.0830179169934126,10,mac,phase-8,without +4,309.9985372950614,0.0,0.0,71.32014806270742,0.0835627089982153,10,mac,phase-8,without +5,317.29333507952543,0.0,0.0,72.99843358823003,0.0855290830004378,10,mac,phase-8,without +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142,10,mac,phase-8,without +7,307.5211780361769,0.0,0.0,70.7501917310103,0.0828949160058982,10,mac,phase-8,without +8,307.52566313089267,0.0,0.0,70.75122359916683,0.0828961250008433,10,mac,phase-8,without +9,309.28022911738526,0.0,0.0,71.1548897165438,0.0833690829967963,10,mac,phase-8,without +10,309.2709546995603,0.0,0.0,71.15275598759708,0.0833665829995879,10,mac,phase-8,without +11,307.9507398632547,0.0,0.0,70.84901933638095,0.0830107080037123,10,mac,phase-8,without +12,305.0501624157072,0.0,0.0,70.18169485533174,0.0822288329945877,10,mac,phase-8,without +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517,10,mac,phase-8,without +14,263.23315694845485,0.0,0.0,60.56102035961698,0.0709567080048145,10,mac,phase-8,without +15,281.69931878209627,0.0,0.0,64.80945781231267,0.0759344170000986,10,mac,phase-8,without +16,310.20798354982014,0.0,0.0,71.36833454136281,0.0836191669950494,10,mac,phase-8,without +17,307.4975319241093,0.0,0.0,70.74475156271633,0.0828885419978178,10,mac,phase-8,without +18,312.2465028928711,0.0,0.0,71.83732869418587,0.0841686670028138,10,mac,phase-8,without +19,264.4872154298051,0.0,0.0,60.84953667762806,0.0712947499996516,10,mac,phase-8,without +20,307.0058314139288,0.0,0.0,70.63162795415167,0.0827559999961522,10,mac,phase-8,without +21,313.308421210062,0.0,0.0,72.0816400779537,0.0844549160028691,10,mac,phase-8,without +22,309.2122178896617,0.0,0.0,71.1392426400334,0.0833507499992265,10,mac,phase-8,without +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184,10,mac,phase-8,without +24,287.64237234819007,0.0,0.0,66.17675284530496,0.077536416996736,10,mac,phase-8,without +25,306.2275548020647,0.0,0.0,70.45257290545298,0.0825462089997017,10,mac,phase-8,without +26,307.19379440968873,0.0,0.0,70.67487186363874,0.0828066670001135,10,mac,phase-8,without +27,303.97726690862385,0.0,0.0,69.9348579925237,0.0819396250008139,10,mac,phase-8,without +28,311.54442867805176,0.0,0.0,71.67580523220816,0.0839794170024106,10,mac,phase-8,without +29,307.42689047443804,0.0,0.0,70.72849936135475,0.0828695000018342,10,mac,phase-8,without +0,1515.8144076794304,0.1016097605362267,0.0,463.7808170075175,0.5029127919988241,10,mac,phase-8,with +1,1494.2954542299487,0.1001672780687725,0.0,457.1968461985674,0.495773292001104,10,mac,phase-8,with +2,1490.567926608189,0.0999174102834286,0.0,456.0563663369963,0.4945365829989896,10,mac,phase-8,with +3,1487.0834114226138,0.0996838323785101,0.0,454.9902389196463,0.4933805000036955,10,mac,phase-8,with +4,1489.19388742284,0.0998253041575841,0.0,455.63596327659974,0.4940807080056402,10,mac,phase-8,with +5,1491.6388015866264,0.0999891943683219,0.0,456.38401282847735,0.4948918749942095,10,mac,phase-8,with +6,1489.4443053961663,0.0998420904542275,0.0,455.7125815299125,0.4941637910014833,10,mac,phase-8,with +7,1483.7489697588535,0.0994603143691415,0.0,453.9700282188851,0.4922742079943418,10,mac,phase-8,with +8,1490.2046075822443,0.0998930558776139,0.0,455.94520471072246,0.4944160419981926,10,mac,phase-8,with +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724,10,mac,phase-8,with +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.4923946249982691,10,mac,phase-8,with +11,1498.6863274365105,0.1004616119745616,0.0,458.5402842558907,0.4972300840017851,10,mac,phase-8,with +12,1494.202268227495,0.1001610315208134,0.0,457.1683348714995,0.4957423750020098,10,mac,phase-8,with +13,1500.9979926125363,0.1006165700906647,0.0,459.24756475049065,0.4979970420026802,10,mac,phase-8,with +14,1506.206429303655,0.1009657078230094,0.0,460.8411457401562,0.4997250829983386,10,mac,phase-8,with +15,1499.448257241606,0.1005126865023197,0.0,458.7734054254215,0.4974828750055167,10,mac,phase-8,with +16,1490.7811750729018,0.0999317049921505,0.0,456.1216121525058,0.4946073339961003,10,mac,phase-8,with +17,1491.8823143613793,0.1000055177879996,0.0,456.4585183570265,0.4949726670020027,10,mac,phase-8,with +18,1482.553013888322,0.0993801457225044,0.0,453.60411179275127,0.4918774170000688,10,mac,phase-8,with +19,1497.833219014053,0.1004044254601188,0.0,458.2792659418024,0.4969470420037396,10,mac,phase-8,with +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598,10,mac,phase-8,with +21,1482.0456464125618,0.09934613530048,0.0,453.4488768898246,0.4917090839953744,10,mac,phase-8,with +22,1496.2841105630728,0.1003005838961705,0.0,457.80529843008793,0.4964330830043764,10,mac,phase-8,with +23,1488.0433927335248,0.0997481829155064,0.0,455.2839562206765,0.4936989999987418,10,mac,phase-8,with +24,1474.3194514814572,0.0988282243921073,0.0,451.0849588670419,0.4891457080011605,10,mac,phase-8,with +25,1494.2725955009112,0.1001657457769748,0.0,457.189852308039,0.4957657079939963,10,mac,phase-8,with +26,1490.5446941438947,0.0999158529389928,0.0,456.0492580978762,0.4945288749950123,10,mac,phase-8,with +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964,10,mac,phase-8,with +28,1488.174128032597,0.0997569465097598,0.0,455.3239561860471,0.4937423750016023,10,mac,phase-8,with +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141,10,mac,phase-8,with +0,315.89567899052815,0.0,0.0,70.69041793477467,0.0832259160015382,10,mac,phase-1,without +1,265.85174216063353,0.0,0.0,59.491699354921,0.0700413340018712,10,mac,phase-1,without +2,312.32888500652234,0.0,0.0,69.8922488739558,0.0822862080021877,10,mac,phase-1,without +3,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424,10,mac,phase-1,without +4,315.90675086282243,0.0,0.0,70.69289557322259,0.0832288329984294,10,mac,phase-1,without +5,299.2312370810115,0.0,0.0,66.96128695394593,0.078835500004061,10,mac,phase-1,without +6,317.14049354538116,0.0,0.0,70.96897971002608,0.0835538750034174,10,mac,phase-1,without +7,317.43117509131514,0.0,0.0,71.03402776650366,0.0836304580006981,10,mac,phase-1,without +8,312.8783039921803,0.0,0.0,70.01519660733908,0.0824309579984401,10,mac,phase-1,without +9,268.2657658886426,0.0,0.0,60.03190410473824,0.0706773330020951,10,mac,phase-1,without +10,312.72885063157213,0.0,0.0,69.98175227357386,0.0823915829969337,10,mac,phase-1,without +11,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071,10,mac,phase-1,without +12,297.0645600830759,0.0,0.0,66.47643289388668,0.0782646670049871,10,mac,phase-1,without +13,320.132881830413,0.0,0.0,71.63860956747773,0.0843422500038286,10,mac,phase-1,without +14,305.29682664515053,0.0,0.0,68.31863081721116,0.0804335410066414,10,mac,phase-1,without +15,306.0025007629592,0.0,0.0,68.47654496935486,0.080619458000001,10,mac,phase-1,without +16,317.616212578826,0.0,0.0,71.07543503540818,0.0836792080008308,10,mac,phase-1,without +17,313.46473429199887,0.0,0.0,70.14642664858644,0.0825854590002563,10,mac,phase-1,without +18,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633,10,mac,phase-1,without +19,317.8055239782236,0.0,0.0,71.1177987106126,0.083729084006336,10,mac,phase-1,without +20,312.42836494049845,0.0,0.0,69.91451026775316,0.0823124169983202,10,mac,phase-1,without +21,310.49337764575245,0.0,0.0,69.48150320351859,0.0818026249980903,10,mac,phase-1,without +22,319.06867904096777,0.0,0.0,71.40046468308539,0.0840618750007706,10,mac,phase-1,without +23,315.95309183579826,0.0,0.0,70.70326565095722,0.0832410419970983,10,mac,phase-1,without +24,314.0385061273956,0.0,0.0,70.27482400740125,0.0827366250014165,10,mac,phase-1,without +25,314.3986175247909,0.0,0.0,70.35540891842726,0.0828314999962458,10,mac,phase-1,without +26,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661,10,mac,phase-1,without +27,312.9080390484739,0.0,0.0,70.02185065073537,0.0824387920001754,10,mac,phase-1,without +28,316.7443235347586,0.0,0.0,70.88032568438815,0.0834495000017341,10,mac,phase-1,without +29,312.2983604376832,0.0,0.0,69.88541815523429,0.0822781659953761,10,mac,phase-1,without +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.4962522920031915,10,mac,phase-1,with +1,1548.7716415444704,0.5093526556274295,0.0,468.3667452712757,0.4990278339973883,10,mac,phase-1,with +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157,10,mac,phase-1,with +3,1537.9614894800372,0.5057974642008454,0.0,465.0976282481506,0.4955447079992154,10,mac,phase-1,with +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305,10,mac,phase-1,with +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575,10,mac,phase-1,with +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797,10,mac,phase-1,with +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397,10,mac,phase-1,with +8,1543.794275756641,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953,10,mac,phase-1,with +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.4938442089987802,10,mac,phase-1,with +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.4946216250027646,10,mac,phase-1,with +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.4986832079957821,10,mac,phase-1,with +12,1536.410091706245,0.5052872478753273,0.0,464.6284673296259,0.4950448340023285,10,mac,phase-1,with +13,1501.0461152669352,0.4936569114010968,0.0,453.9339852636886,0.4836502500038477,10,mac,phase-1,with +14,1503.158875751745,0.4943517460266646,0.0,454.5729088630523,0.4843309999996563,10,mac,phase-1,with +15,1497.0097852395263,0.492329462367746,0.0,452.7133516292214,0.4823497089964803,10,mac,phase-1,with +16,1521.5805489456525,0.5004101783421352,0.0,460.14383932487135,0.4902666249981848,10,mac,phase-1,with +17,1499.5455354643086,0.4931634078483803,0.0,453.48019229684735,0.4831667500038747,10,mac,phase-1,with +18,1505.117621218829,0.4949959289252891,0.0,455.1652565111009,0.4849621250032214,10,mac,phase-1,with +19,1493.7772756646511,0.4912663699839896,0.0,451.73580274594457,0.4813081660031457,10,mac,phase-1,with +20,1496.3047548280974,0.492097595317287,0.0,452.50014214742265,0.4821225420018891,10,mac,phase-1,with +21,1502.9231341998309,0.4942742164656317,0.0,454.5016178473639,0.4842550419998588,10,mac,phase-1,with +22,1510.012481501061,0.4966057273079569,0.0,456.64551978391,0.4865392920037266,10,mac,phase-1,with +23,1504.4246171495324,0.4947680170410652,0.0,454.9556839364942,0.4847388330017566,10,mac,phase-1,with +24,1509.3322796742225,0.4963820257643792,0.0,456.43981875787216,0.4863201249972917,10,mac,phase-1,with +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552,10,mac,phase-1,with +26,1505.193401276411,0.4950208511104179,0.0,455.1881732910663,0.4849865420037531,10,mac,phase-1,with +27,1520.90862436748,0.5001891989807543,0.0,459.9406414361029,0.4900501249940134,10,mac,phase-1,with +28,1511.0160978228655,0.4969357918733388,0.0,456.9490251539309,0.4868626660027075,10,mac,phase-1,with +29,1510.3806433826635,0.4967268066375784,0.0,456.7568562634747,0.4866579169975011,10,mac,phase-1,with +0,411.18397650340427,1.167188903294335,11.571844269803837,72.9993288374657,0.0697049590016831,10,mac,phase-30,without +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.0697707910003373,10,mac,phase-30,without +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.0708791670040227,10,mac,phase-30,without +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.067930666002212,10,mac,phase-30,without +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.0708610420042532,10,mac,phase-30,without +5,413.635956981174,1.1741491074080366,11.64084972201682,73.43463988903406,0.0701206250014365,10,mac,phase-30,without +6,420.48804217203855,1.1935994708857542,11.83368618278162,74.6511211933976,0.0712822080022306,10,mac,phase-30,without +7,410.6007148882734,1.1655332539407597,11.555429689069816,72.89577979646637,0.0696060830014175,10,mac,phase-30,without +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.0684407080043456,10,mac,phase-30,without +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.0699344580061733,10,mac,phase-30,without +10,429.4455521502114,1.2190263037516138,12.085775068623144,76.24138796892237,0.0728007079960662,10,mac,phase-30,without +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.0671137079989421,10,mac,phase-30,without +12,445.29103640889906,1.264005375045537,12.53171043259432,79.05450759927656,0.0754868750009336,10,mac,phase-30,without +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.0677466670022113,10,mac,phase-30,without +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.0702987499971641,10,mac,phase-30,without +15,410.0169695614531,1.163876231520751,11.539001495362871,72.79214487996926,0.0695071250011096,10,mac,phase-30,without +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.0676083329963148,10,mac,phase-30,without +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717,10,mac,phase-30,without +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.0705336250030086,10,mac,phase-30,without +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.0665746669983491,10,mac,phase-30,without +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.0700137500025448,10,mac,phase-30,without +21,403.1911817621741,1.144500515951021,11.34690511528584,71.58033226905101,0.0683500000013737,10,mac,phase-30,without +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.0718155840004328,10,mac,phase-30,without +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.0667553750026854,10,mac,phase-30,without +24,401.4849191657379,1.1396571103650306,11.29888620847616,71.27741184540147,0.0680607500034966,10,mac,phase-30,without +25,426.8551889258219,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923,10,mac,phase-30,without +26,413.6236695024976,1.1741142281092791,11.640503918683429,73.43245843803464,0.070118541996635,10,mac,phase-30,without +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523,10,mac,phase-30,without +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.0703375419980147,10,mac,phase-30,without +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.0663894170065759,10,mac,phase-30,without +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.4925840419964515,10,mac,phase-30,with +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336,10,mac,phase-30,with +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091,10,mac,phase-30,with +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.4959620000008726,10,mac,phase-30,with +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922,10,mac,phase-30,with +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767,10,mac,phase-30,with +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257,10,mac,phase-30,with +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117,10,mac,phase-30,with +8,2281.0575381943677,2.99700990419698,84.21597830793513,509.79138470390626,0.4952505420005764,10,mac,phase-30,with +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.495590375001484,10,mac,phase-30,with +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.4952706249969196,10,mac,phase-30,with +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.4955860830013989,10,mac,phase-30,with +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566,10,mac,phase-30,with +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922,10,mac,phase-30,with +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516,10,mac,phase-30,with +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.4973028749955119,10,mac,phase-30,with +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166,10,mac,phase-30,with +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952,10,mac,phase-30,with +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721,10,mac,phase-30,with +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778,10,mac,phase-30,with +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292,10,mac,phase-30,with +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.4962343750012223,10,mac,phase-30,with +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198,10,mac,phase-30,with +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.4910860830059391,10,mac,phase-30,with +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296,10,mac,phase-30,with +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179,10,mac,phase-30,with +26,2277.258468092052,2.992018425230434,84.07571774897518,508.9423341316967,0.4944257090028259,10,mac,phase-30,with +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.4949400409968802,10,mac,phase-30,with +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396,10,mac,phase-30,with +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236,10,mac,phase-30,with +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206,10,mac,phase-6,without +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733,10,mac,phase-6,without +2,291.12877419678506,0.0,0.0,64.01819623510673,0.0687049580010352,10,mac,phase-6,without +3,289.13703351517285,0.0,0.0,63.58021944577464,0.0682349170019733,10,mac,phase-6,without +4,287.799607294358,0.0,0.0,63.286124111191775,0.0679192909956327,10,mac,phase-6,without +5,291.371363998525,0.0,0.0,64.07154088156179,0.0687622080004075,10,mac,phase-6,without +6,289.56394921064606,0.0,0.0,63.67409670969008,0.068335667005158,10,mac,phase-6,without +7,292.13638840929866,0.0,0.0,64.23976706596653,0.0689427499964949,10,mac,phase-6,without +8,283.5650571496894,0.0,0.0,62.35496138817781,0.0669199580006534,10,mac,phase-6,without +9,287.130631504071,0.0,0.0,63.13901868151625,0.0677614160013035,10,mac,phase-6,without +10,289.67976939419503,0.0,0.0,63.699565161782736,0.0683629999984987,10,mac,phase-6,without +11,292.1418630957887,0.0,0.0,64.2409709303218,0.0689440419955644,10,mac,phase-6,without +12,293.0022242707416,0.0,0.0,64.43016133475076,0.0691470829988247,10,mac,phase-6,without +13,293.2524074633523,0.0,0.0,64.4851757412225,0.0692061250010738,10,mac,phase-6,without +14,292.1868810008963,0.0,0.0,64.2508702097428,0.0689546659996267,10,mac,phase-6,without +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097,10,mac,phase-6,without +16,289.3466056584585,0.0,0.0,63.62630362495372,0.0682843749964376,10,mac,phase-6,without +17,290.05283648513034,0.0,0.0,63.78160130644845,0.0684510419960133,10,mac,phase-6,without +18,292.61538991766724,0.0,0.0,64.34509781743297,0.069055791995197,10,mac,phase-6,without +19,263.23624764234796,0.0,0.0,57.884727486160926,0.0621224589995108,10,mac,phase-6,without +20,291.45399282192466,0.0,0.0,64.08971066998504,0.068781707996095,10,mac,phase-6,without +21,292.67577253005464,0.0,0.0,64.35837574208907,0.0690700419945642,10,mac,phase-6,without +22,292.25150521505736,0.0,0.0,64.26508084775038,0.0689699169961386,10,mac,phase-6,without +23,288.79928071261065,0.0,0.0,63.50594878924803,0.0681552090027253,10,mac,phase-6,without +24,290.00304733298486,0.0,0.0,63.77065284654021,0.0684392920011305,10,mac,phase-6,without +25,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247,10,mac,phase-6,without +26,293.6300636211133,0.0,0.0,64.56822100558581,0.0692952499957755,10,mac,phase-6,without +27,289.9055876714127,0.0,0.0,63.749221808825894,0.0684162920006201,10,mac,phase-6,without +28,284.5073479632638,0.0,0.0,62.5621678327499,0.0671423339954344,10,mac,phase-6,without +29,296.6712669039547,0.0,0.0,65.23697093966203,0.0700129590040887,10,mac,phase-6,without +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394,10,mac,phase-6,with +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.4822331670002313,10,mac,phase-6,with +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149,10,mac,phase-6,with +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802,10,mac,phase-6,with +4,1458.91194965116,0.3992552485989172,0.0,454.9180845077496,0.4819204169980366,10,mac,phase-6,with +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.4810576669988222,10,mac,phase-6,with +6,1468.611380787982,0.4019096574484203,0.0,457.94256219102095,0.4851244170058635,10,mac,phase-6,with +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.4791258749974076,10,mac,phase-6,with +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833,10,mac,phase-6,with +9,1466.35176146208,0.4012912754577062,0.0,457.2379674444348,0.4843780000010156,10,mac,phase-6,with +10,1460.154775553515,0.3995953683468763,0.0,455.3056226172367,0.4823309580024215,10,mac,phase-6,with +11,1457.9792906101436,0.3990000111136337,0.0,454.6272626630594,0.4816123329947004,10,mac,phase-6,with +12,1457.422775179489,0.3988477115134636,0.0,454.4537299602991,0.4814285000029485,10,mac,phase-6,with +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474,10,mac,phase-6,with +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208,10,mac,phase-6,with +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636,10,mac,phase-6,with +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052,10,mac,phase-6,with +17,1457.9613811923634,0.398995109906916,0.0,454.6216781464386,0.4816064170008758,10,mac,phase-6,with +18,1469.355588079086,0.4021133220130226,0.0,458.1746209903382,0.4853702499967767,10,mac,phase-6,with +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.4835539170017,10,mac,phase-6,with +20,1460.7395477092175,0.3997554008645718,0.0,455.4879663351075,0.4825241250000545,10,mac,phase-6,with +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.4834142079998855,10,mac,phase-6,with +22,1459.13710420092,0.3993168658443987,0.0,454.98829222420534,0.4819947919968399,10,mac,phase-6,with +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122,10,mac,phase-6,with +24,1458.813181355714,0.399228219030504,0.0,454.8872865670067,0.4818877910001902,10,mac,phase-6,with +25,1457.0466346307994,0.3987447744662271,0.0,454.33644177306024,0.4813042500027222,10,mac,phase-6,with +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921,10,mac,phase-6,with +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982,10,mac,phase-6,with +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989,10,mac,phase-6,with +29,1471.0342193441872,0.4025727070658452,0.0,458.69805197594184,0.4859247499989578,10,mac,phase-6,with +0,302.5242036763287,0.0,0.0,63.689306037121824,0.0675712500014924,10,mac,phase-7,without +1,302.7327655579679,0.0,0.0,63.733213801677465,0.0676178339999751,10,mac,phase-7,without +2,316.69315087742956,0.0,0.0,66.67224228998516,0.0707360000014887,10,mac,phase-7,without +3,307.5654342587211,0.0,0.0,64.75061773867812,0.0686972499970579,10,mac,phase-7,without +4,306.4536190758211,0.0,0.0,64.51655138438339,0.0684489170016604,10,mac,phase-7,without +5,300.7051879657525,0.0,0.0,63.30635536121105,0.0671649579962831,10,mac,phase-7,without +6,307.374413716436,0.0,0.0,64.71040288767074,0.0686545839998871,10,mac,phase-7,without +7,310.5906561688394,0.0,0.0,65.38750656186093,0.0693729580016224,10,mac,phase-7,without +8,308.0642609293506,0.0,0.0,64.85563387986328,0.0688086670052143,10,mac,phase-7,without +9,304.84745437059416,0.0,0.0,64.17841144644088,0.068090167005721,10,mac,phase-7,without +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945,10,mac,phase-7,without +11,305.72011556246974,0.0,0.0,64.3621295920989,0.0682850830053212,10,mac,phase-7,without +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476,10,mac,phase-7,without +13,308.66251527816155,0.0,0.0,64.98158216382348,0.068942291996791,10,mac,phase-7,without +14,307.0794838197012,0.0,0.0,64.64831238309499,0.0685887090003234,10,mac,phase-7,without +15,309.8218998360231,0.0,0.0,65.22566312337328,0.0692012500003329,10,mac,phase-7,without +16,306.41127454986776,0.0,0.0,64.50763674734058,0.0684394590061856,10,mac,phase-7,without +17,309.1954754486052,0.0,0.0,65.0937843049695,0.0690613330007181,10,mac,phase-7,without +18,306.76198031973763,0.0,0.0,64.58146954099739,0.0685177920022397,10,mac,phase-7,without +19,296.2609044530781,0.0,0.0,62.37071672696381,0.0661722910008393,10,mac,phase-7,without +20,307.906254599804,0.0,0.0,64.82236938943242,0.0687733750019106,10,mac,phase-7,without +21,308.04205891249177,0.0,0.0,64.8509597710509,0.0688037080035428,10,mac,phase-7,without +22,307.9202455579482,0.0,0.0,64.82531485430489,0.068776499996602,10,mac,phase-7,without +23,308.26330444060716,0.0,0.0,64.89753777696993,0.068853124997986,10,mac,phase-7,without +24,304.56744666191145,0.0,0.0,64.11946245513926,0.0680276249986491,10,mac,phase-7,without +25,312.2052199573735,0.0,0.0,65.72741472786811,0.0697335840013693,10,mac,phase-7,without +26,307.5005161295389,0.0,0.0,64.73695076411346,0.0686827500030631,10,mac,phase-7,without +27,318.98524529080635,0.0,0.0,67.15478848227502,0.0712479579960927,10,mac,phase-7,without +28,329.1152803585185,0.0,0.0,69.28742744389862,0.0735105840067262,10,mac,phase-7,without +29,277.68144008298685,0.0,0.0,58.4592505437867,0.0620224159938516,10,mac,phase-7,without +0,1471.069231866696,0.1008456582331723,0.0,459.85620154326585,0.4853926670039072,10,mac,phase-7,with +1,1468.578895878081,0.1006749391626123,0.0,459.0777225815124,0.484570958004042,10,mac,phase-7,with +2,1461.668066437173,0.1002011836596023,0.0,456.9173974877869,0.4822906670015072,10,mac,phase-7,with +3,1442.4901829574026,0.0988864893942737,0.0,450.92239163788827,0.475962749995233,10,mac,phase-7,with +4,1460.192632019516,0.1001000387564221,0.0,456.4561767292852,0.4818038340017665,10,mac,phase-7,with +5,1457.0270850402062,0.0998830321996393,0.0,455.4666268303555,0.4807593329969677,10,mac,phase-7,with +6,1451.4069459189002,0.0994977569068301,0.0,453.70977149514545,0.4789049169994541,10,mac,phase-7,with +7,1454.602166278216,0.0997167976517217,0.0,454.7085972918513,0.4799592090057558,10,mac,phase-7,with +8,1454.5623855826552,0.0997140705805942,0.0,454.6961618475098,0.4799460830035968,10,mac,phase-7,with +9,1468.8514054091331,0.1006936204064576,0.0,459.16290905344687,0.4846608750012819,10,mac,phase-7,with +10,1454.7620315206584,0.0997277568338278,0.0,454.7585711622551,0.4800119579958846,10,mac,phase-7,with +11,1461.4857195792638,0.100188683303729,0.0,456.86039586500453,0.4822304999979678,10,mac,phase-7,with +12,1456.5270230567808,0.09984875163773,0.0,455.310307468049,0.480594332999317,10,mac,phase-7,with +13,1456.90813089835,0.0998748775808932,0.0,455.4294417688732,0.4807200829964131,10,mac,phase-7,with +14,1448.7476526265218,0.0993154553694887,0.0,452.8784764848686,0.4780274590011686,10,mac,phase-7,with +15,1454.4989959096524,0.0997097250520761,0.0,454.6763462374673,0.4799251670046942,10,mac,phase-7,with +16,1457.879845299315,0.0999414911543792,0.0,455.73319966396946,0.4810407089971704,10,mac,phase-7,with +17,1455.9537216856306,0.0998094503234973,0.0,455.131093475148,0.4804051669998443,10,mac,phase-7,with +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.4814032080030301,10,mac,phase-7,with +19,1468.4137238864755,0.1006636161889179,0.0,459.02608982146575,0.4845164580037817,10,mac,phase-7,with +20,1463.4019935002775,0.1003200489123173,0.0,457.4594230401672,0.4828627919996506,10,mac,phase-7,with +21,1455.2831840044878,0.0997634832049143,0.0,454.9214834144096,0.4801839169958839,10,mac,phase-7,with +22,1465.0343928246136,0.100431954171972,0.0,457.9697110241926,0.483401416997367,10,mac,phase-7,with +23,1452.4517724066477,0.0995693825058256,0.0,454.036384226565,0.47924966699793,10,mac,phase-7,with +24,1458.159298145276,0.0999606483806916,0.0,455.8205566159539,0.4811329170042882,10,mac,phase-7,with +25,1464.0746768847828,0.1003661631244995,0.0,457.6697038477178,0.4830847499979427,10,mac,phase-7,with +26,1460.330527893312,0.1001094918806255,0.0,456.49928297565265,0.48184933399898,10,mac,phase-7,with +27,1466.457926870734,0.1005295411684155,0.0,458.41470772797504,0.4838711249976768,10,mac,phase-7,with +28,1458.690297278725,0.0999970497654626,0.0,455.9865469305096,0.4813081249958486,10,mac,phase-7,with +29,1453.5116250142864,0.0996420381847918,0.0,454.3676941226507,0.4795993750012712,10,mac,phase-7,with +0,353.3303920568681,0.0,0.0,69.15518081324026,0.075606708000123,10,mac,phase-9,without +1,314.38863582784177,0.0,0.0,61.53335078178913,0.0672738329958519,10,mac,phase-9,without +2,317.2772995012459,0.0,0.0,62.098731125891405,0.067891958002292,10,mac,phase-9,without +3,321.3954204399756,0.0,0.0,62.904745566004465,0.0687731660000281,10,mac,phase-9,without +4,319.5576625612702,0.0,0.0,62.54505253860031,0.0683799170001293,10,mac,phase-9,without +5,331.31404809256026,0.0,0.0,64.84605744902893,0.0708955840018461,10,mac,phase-9,without +6,331.38667532066586,0.0,0.0,64.86027232893883,0.0709111249962006,10,mac,phase-9,without +7,318.43373701362606,0.0,0.0,62.32507351552368,0.0681394160055788,10,mac,phase-9,without +8,336.7251033504346,0.0,0.0,65.90512995782265,0.0720534580032108,10,mac,phase-9,without +9,304.5621182908196,0.0,0.0,59.610067044204875,0.0651711249956861,10,mac,phase-9,without +10,322.1328293892706,0.0,0.0,63.0490740765663,0.0689309590015909,10,mac,phase-9,without +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169,10,mac,phase-9,without +12,320.85566267461155,0.0,0.0,62.799102103969375,0.0686576669977512,10,mac,phase-9,without +13,374.90570573356854,0.0,0.0,73.37798403639027,0.0802234590009902,10,mac,phase-9,without +14,386.9158076380404,0.0,0.0,75.72864728942714,0.0827934170010848,10,mac,phase-9,without +15,335.4308044090277,0.0,0.0,65.65180480003387,0.0717764999935752,10,mac,phase-9,without +16,388.6902847933515,0.0,0.0,76.07595477070589,0.0831731250000302,10,mac,phase-9,without +17,387.62594807984937,0.0,0.0,75.86763870301657,0.0829453750047832,10,mac,phase-9,without +18,390.1639250154146,0.0,0.0,76.36438129245846,0.0834884590003639,10,mac,phase-9,without +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579,10,mac,phase-9,without +20,388.70488876434206,0.0,0.0,76.07881311597464,0.0831762500019976,10,mac,phase-9,without +21,391.1120095675774,0.0,0.0,76.54994404082375,0.083691333005845,10,mac,phase-9,without +22,385.3631097374103,0.0,0.0,75.42474729531305,0.0824611659991205,10,mac,phase-9,without +23,381.9621437858659,0.0,0.0,74.7590971825402,0.0817334169987589,10,mac,phase-9,without +24,385.6555815460515,0.0,0.0,75.48199100053641,0.0825237500030198,10,mac,phase-9,without +25,356.2938326643222,0.0,0.0,69.73519678595287,0.0762408340015099,10,mac,phase-9,without +26,391.34392044465426,0.0,0.0,76.5953345280203,0.0837409579980885,10,mac,phase-9,without +27,326.9782229625547,0.0,0.0,63.99743310880556,0.0699677910015452,10,mac,phase-9,without +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193,10,mac,phase-9,without +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412,10,mac,phase-9,without +0,1507.0006290040246,0.1012179708729699,0.0,462.9372594493401,0.4960314169948105,10,mac,phase-9,with +1,1496.950668211312,0.1005429634315572,0.0,459.850000414799,0.4927234579954529,10,mac,phase-9,with +2,1468.6940451139656,0.0986451022106724,0.0,451.169815810879,0.4834227500032284,10,mac,phase-9,with +3,1468.9915282259046,0.0986650827178998,0.0,451.2611999907679,0.4835206669959007,10,mac,phase-9,with +4,1479.172504714708,0.0993488898523289,0.0,454.3887058879351,0.4868717499994091,10,mac,phase-9,with +5,1500.238416336118,0.1007637856313158,0.0,460.85996754909496,0.4938056250030058,10,mac,phase-9,with +6,1509.7154372095292,0.10140031145902,0.0,463.7712245097378,0.4969250000067404,10,mac,phase-9,with +7,1461.69840489276,0.0981752387650176,0.0,449.0208170316026,0.4811201249976875,10,mac,phase-9,with +8,1471.3692332004143,0.0988247817042323,0.0,451.99160992125746,0.4843032919961842,10,mac,phase-9,with +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694,10,mac,phase-9,with +10,1480.732072591294,0.0994536385119303,0.0,454.8677913407322,0.4873850840012892,10,mac,phase-9,with +11,1466.0959491930096,0.0984706006264055,0.0,450.3717037316366,0.4825675830070395,10,mac,phase-9,with +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.4856114580034045,10,mac,phase-9,with +13,1514.13083342455,0.1016968723475048,0.0,465.12759516003786,0.4983783339994261,10,mac,phase-9,with +14,1512.595950245761,0.1015937816401129,0.0,464.6560926279964,0.497873125001206,10,mac,phase-9,with +15,1561.482643030755,0.1048772652373676,0.0,479.67365210730736,0.5139642499998445,10,mac,phase-9,with +16,1502.2335709419558,0.1008977905526769,0.0,461.4728613910934,0.4944623330011382,10,mac,phase-9,with +17,1495.3046447168208,0.1004324079646814,0.0,459.34435656113146,0.4921816670030239,10,mac,phase-9,with +18,1495.762512977266,0.1004631607695293,0.0,459.4850096395707,0.4923323749972041,10,mac,phase-9,with +19,1505.742214321196,0.1011334492223075,0.0,462.5506855930939,0.4956172079982934,10,mac,phase-9,with +20,1500.2357579650031,0.1007636070813372,0.0,460.8591509210095,0.4938047499963431,10,mac,phase-9,with +21,1501.366192061746,0.1008395328926977,0.0,461.2064102735686,0.4941768339995178,10,mac,phase-9,with +22,1472.4900455897166,0.0989000612718656,0.0,452.3359135704227,0.4846722090005642,10,mac,phase-9,with +23,1462.9344104531915,0.0982582553029054,0.0,449.40050700372194,0.4815269579994492,10,mac,phase-9,with +24,1472.7381563218598,0.0989167256742394,0.0,452.4121309920798,0.4847538750036619,10,mac,phase-9,with +25,1482.564812614605,0.0995767348283664,0.0,455.4307928600052,0.4879883330067969,10,mac,phase-9,with +26,1501.7557027604369,0.1008656944494987,0.0,461.32606451385743,0.4943050420042709,10,mac,phase-9,with +27,1471.3960688887162,0.0988265841281097,0.0,451.99985360726447,0.4843121250014519,10,mac,phase-9,with +28,1465.3707267413292,0.0984218909287598,0.0,450.14892181117136,0.48232887499762,10,mac,phase-9,with +29,1493.8271059364454,0.100333168804221,0.0,458.8904697209055,0.4916953329957323,10,mac,phase-9,with +0,246.0739988250765,0.0,0.0,60.74658181579221,0.0778715830019791,100,mac,phase-19,without +1,245.0826823466955,0.0,0.0,60.50186239055085,0.0775578749962733,100,mac,phase-19,without +2,244.5910373393436,0.0,0.0,60.38049339664647,0.0774022910045459,100,mac,phase-19,without +3,244.5508800746296,0.0,0.0,60.37058005115652,0.077389582998876,100,mac,phase-19,without +4,244.58959003848383,0.0,0.0,60.38013611151879,0.077401832997566,100,mac,phase-19,without +5,244.22606079392185,0.0,0.0,60.29039416762119,0.077286792002269,100,mac,phase-19,without +6,242.8457992005612,0.0,0.0,59.94965855878557,0.0768499999976484,100,mac,phase-19,without +7,244.85397754171655,0.0,0.0,60.44540362118208,0.0774854999981471,100,mac,phase-19,without +8,241.9405926628893,0.0,0.0,59.72619649752176,0.0765635419957107,100,mac,phase-19,without +9,245.51138657380295,0.0,0.0,60.607693630466905,0.0776935410031001,100,mac,phase-19,without +10,244.7109876747656,0.0,0.0,60.41010470421792,0.0774402500028372,100,mac,phase-19,without +11,248.3810623596752,0.0,0.0,61.31611059342773,0.0786016670026583,100,mac,phase-19,without +12,241.60984521505156,0.0,0.0,59.644547168472904,0.0764588749952963,100,mac,phase-19,without +13,245.731929101319,0.0,0.0,60.66213743499555,0.0777633329998934,100,mac,phase-19,without +14,245.77880451553304,0.0,0.0,60.67370924346901,0.0777781670039985,100,mac,phase-19,without +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489,100,mac,phase-19,without +16,259.02748853123154,0.0,0.0,63.94432000020854,0.0819707919945358,100,mac,phase-19,without +17,245.3989443932433,0.0,0.0,60.579935809024875,0.0776579580051475,100,mac,phase-19,without +18,223.20115090919603,0.0,0.0,55.100120450851726,0.0706333340058336,100,mac,phase-19,without +19,247.6429406685668,0.0,0.0,61.133895609670745,0.0783680839958833,100,mac,phase-19,without +20,246.88414631211123,0.0,0.0,60.94657730836352,0.0781279590009944,100,mac,phase-19,without +21,245.0546373862557,0.0,0.0,60.4949391256305,0.0775490000014542,100,mac,phase-19,without +22,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792,100,mac,phase-19,without +23,244.31098572658755,0.0,0.0,60.3113589968799,0.0773136670031817,100,mac,phase-19,without +24,243.40301102024273,0.0,0.0,60.087213577010274,0.0770263329977751,100,mac,phase-19,without +25,245.98617616377825,0.0,0.0,60.72490164435878,0.0778437909975764,100,mac,phase-19,without +26,246.44029623831136,0.0,0.0,60.83700711829563,0.077987500000745,100,mac,phase-19,without +27,250.5241978502783,0.0,0.0,61.84517159151716,0.0792798749971552,100,mac,phase-19,without +28,224.68990150640013,0.0,0.0,55.46763798780473,0.0711044580020825,100,mac,phase-19,without +29,245.67623416012847,0.0,0.0,60.648388411051904,0.0777457080039312,100,mac,phase-19,without +0,1832.0288573050368,0.3348434297708107,0.0,485.7573635685151,0.520800792000955,100,mac,phase-19,with +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087,100,mac,phase-19,with +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004,100,mac,phase-19,with +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638,100,mac,phase-19,with +4,1832.5450819984576,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844,100,mac,phase-19,with +5,1811.56117568914,0.331102512325981,0.0,480.33041463130064,0.5149823329993524,100,mac,phase-19,with +6,1861.757947821728,0.3402770726923634,0.0,493.6399493548115,0.5292520420043729,100,mac,phase-19,with +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311,100,mac,phase-19,with +8,1813.0148750103676,0.3313682077404579,0.0,480.7158589690824,0.5153955839996343,100,mac,phase-19,with +9,1828.3792277749956,0.3341763799782493,0.0,484.78967443444634,0.5197632919953321,100,mac,phase-19,with +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375,100,mac,phase-19,with +11,1817.2384760499765,0.3321401634072298,0.0,481.83573505486834,0.5165962500032037,100,mac,phase-19,with +12,1824.018140381943,0.333379295666833,0.0,483.63334422387464,0.5185235419994569,100,mac,phase-19,with +13,1833.410144455411,0.3350958902738674,0.0,486.1236080202995,0.521193458000198,100,mac,phase-19,with +14,1821.170110213187,0.3328587557277406,0.0,482.8781969342333,0.5177139169973088,100,mac,phase-19,with +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314,100,mac,phase-19,with +16,1818.3656082621744,0.3323461715245324,0.0,482.1345910306392,0.5169166659979965,100,mac,phase-19,with +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685,100,mac,phase-19,with +18,1805.5999711042289,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965,100,mac,phase-19,with +19,1838.1848588994617,0.3359685739951129,0.0,487.38961029471034,0.52255079200404,100,mac,phase-19,with +20,1814.558121289498,0.3316502698242645,0.0,481.1250464340605,0.5158342909999192,100,mac,phase-19,with +21,1810.8972069332913,0.33098115748237,0.0,480.1543651596742,0.5147935829954804,100,mac,phase-19,with +22,1833.8570420407632,0.335177570603104,0.0,486.24210167392306,0.5213205000036396,100,mac,phase-19,with +23,1835.274389296927,0.3354366218808924,0.0,486.6179073626107,0.5217234170049778,100,mac,phase-19,with +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233,100,mac,phase-19,with +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785,100,mac,phase-19,with +26,1843.4762342226047,0.3369356888166623,0.0,488.792603766332,0.524055000001681,100,mac,phase-19,with +27,1812.032257571416,0.3311886128655741,0.0,480.45532068408846,0.5151162500042119,100,mac,phase-19,with +28,1851.1542315714744,0.3383390111255961,0.0,490.82840343990233,0.5262376660029986,100,mac,phase-19,with +29,1816.7635844920449,0.3320533665659065,0.0,481.7098188771606,0.5164612500011572,100,mac,phase-19,with +0,362.1477510943677,0.2358390787664502,14.28510991385356,76.17602244156343,0.0828109170033712,100,mac,phase-26,without +1,336.858148535045,0.2193698985715243,13.287548142046615,70.85647723860235,0.0770280419965274,100,mac,phase-26,without +2,362.74505428268986,0.2362280565614316,14.308670854578146,76.30166226934243,0.0829474999991362,100,mac,phase-26,without +3,360.94585457223286,0.2350563756633761,14.237700468753069,75.9232093392705,0.0825360840026405,100,mac,phase-26,without +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.0815027909993659,100,mac,phase-26,without +5,349.6413415549495,0.2276946126043954,13.791787963466238,73.54535987121973,0.0799511250006617,100,mac,phase-26,without +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.082421457998862,100,mac,phase-26,without +7,359.44475760769,0.2340788262400065,14.178488903680394,75.60746087552211,0.0821928340010345,100,mac,phase-26,without +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.0812284160056151,100,mac,phase-26,without +9,347.2399143905892,0.2261307471145338,13.697062396651766,73.04023131799444,0.0794019999957527,100,mac,phase-26,without +10,368.19860405248215,0.2397795356188831,14.523789014629491,77.44879000489925,0.084194542003388,100,mac,phase-26,without +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.0862538340006722,100,mac,phase-26,without +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242,100,mac,phase-26,without +13,356.8769656271249,0.2324066200939505,14.07720098854786,75.06733829034602,0.0816056670009857,100,mac,phase-26,without +14,360.27602202196147,0.23462016505291,14.211278568919123,75.78231331208995,0.0823829159999149,100,mac,phase-26,without +15,355.8179236856387,0.2317169472322514,14.035426518067805,74.84457395601721,0.0813635000013164,100,mac,phase-26,without +16,367.0209393602304,0.2390126128497174,14.47733540689717,77.20107395045873,0.0839252500009024,100,mac,phase-26,without +17,364.3840903443813,0.2372954351484481,14.373323500420288,76.64642555294876,0.0833222919973195,100,mac,phase-26,without +18,350.5090521147184,0.2282596859989792,13.826015266223887,73.72787857767031,0.0801495409978088,100,mac,phase-26,without +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033,100,mac,phase-26,without +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.083118957998522,100,mac,phase-26,without +21,365.90504594881264,0.2382859169822019,14.4333184000648,76.96635118525121,0.0836700829968322,100,mac,phase-26,without +22,351.0808508987014,0.2286320547298269,13.84857017220666,73.8481536777341,0.0802802920006797,100,mac,phase-26,without +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.0797767499971087,100,mac,phase-26,without +24,340.5454724450315,0.2217711700730505,13.43299658728192,71.63208793359534,0.0778712080063996,100,mac,phase-26,without +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.0810339579984429,100,mac,phase-26,without +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.0822699170021223,100,mac,phase-26,without +27,360.8257711959278,0.2349781745624239,14.232963716352534,75.89795038366293,0.0825086250042659,100,mac,phase-26,without +28,370.2476265409491,0.2411139069482411,14.604613792293463,77.87979194428189,0.0846630840023863,100,mac,phase-26,without +29,362.5628409920885,0.2361093950083374,14.301483354790728,76.26333458769301,0.0829058339950279,100,mac,phase-26,without +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021,100,mac,phase-26,with +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396,100,mac,phase-26,with +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647,100,mac,phase-26,with +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121,100,mac,phase-26,with +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826,100,mac,phase-26,with +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744,100,mac,phase-26,with +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462,100,mac,phase-26,with +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933,100,mac,phase-26,with +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716,100,mac,phase-26,with +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596,100,mac,phase-26,with +10,2615.36164408698,2.86359540889274,88.30529098120404,541.2528299017616,0.5338564999983646,100,mac,phase-26,with +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096,100,mac,phase-26,with +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936,100,mac,phase-26,with +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303,100,mac,phase-26,with +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195,100,mac,phase-26,with +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093,100,mac,phase-26,with +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978,100,mac,phase-26,with +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057,100,mac,phase-26,with +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888,100,mac,phase-26,with +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631,100,mac,phase-26,with +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072,100,mac,phase-26,with +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873,100,mac,phase-26,with +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502,100,mac,phase-26,with +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321,100,mac,phase-26,with +24,2646.093256085373,2.89724387323626,89.34291571886699,547.6127809239,0.5401295409974409,100,mac,phase-26,with +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246,100,mac,phase-26,with +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397,100,mac,phase-26,with +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437,100,mac,phase-26,with +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415,100,mac,phase-26,with +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615,100,mac,phase-26,with +0,260.20760817827636,0.0668398685276846,0.0,63.29735549571737,0.0778534579949337,100,mac,phase-21,without +1,264.69906999108105,0.0679935961960136,0.0,64.3899355976249,0.0791972920051193,100,mac,phase-21,without +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.0786077919983654,100,mac,phase-21,without +3,261.1013891414675,0.0670694552122957,0.0,63.51477408604411,0.078120874997694,100,mac,phase-21,without +4,257.7910068686657,0.0662191129896392,0.0,62.7095000011884,0.0771304169975337,100,mac,phase-21,without +5,259.7389946089577,0.0667194951474332,0.0,63.183361904619304,0.07771325000067,100,mac,phase-21,without +6,258.06479595470574,0.0662894415501427,0.0,62.77610114798519,0.0772123339993413,100,mac,phase-21,without +7,256.0824062134452,0.0657802225053802,0.0,62.29387071259507,0.0766192080045584,100,mac,phase-21,without +8,245.48280118105225,0.0630574881019913,0.0,59.71544123258579,0.0734478329977719,100,mac,phase-21,without +9,255.98353170352672,0.0657548244807415,0.0,62.26981878326222,0.0765896250013611,100,mac,phase-21,without +10,265.5946591131205,0.0682236473447522,0.0,64.60779403548037,0.0794652500044321,100,mac,phase-21,without +11,260.294366973363,0.0668621543728135,0.0,63.318460191054406,0.0778794160069082,100,mac,phase-21,without +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.0770466250032768,100,mac,phase-21,without +13,260.85629013818584,0.067006496310862,0.0,63.45515200638633,0.0780475419960566,100,mac,phase-21,without +14,307.82568802659245,0.0790715869577684,0.0,74.8807928490067,0.0921006670032511,100,mac,phase-21,without +15,263.58442150290836,0.0677072749814817,0.0,64.1187894074632,0.078863791997719,100,mac,phase-21,without +16,262.31742217161724,0.067381819206683,0.0,63.81058278872888,0.0784847090035327,100,mac,phase-21,without +17,268.16277907116,0.0688833236761263,0.0,65.2325075212917,0.0802336249980726,100,mac,phase-21,without +18,206.91894566594263,0.0531515401145498,0.0,50.334508488478725,0.0619096250011352,100,mac,phase-21,without +19,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.0772270000015851,100,mac,phase-21,without +20,252.13699183642044,0.0647667587558233,0.0,61.33412054176475,0.07543875000556,100,mac,phase-21,without +21,259.3735737404644,0.0666256290111647,0.0,63.09447067357302,0.0776039170013973,100,mac,phase-21,without +22,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.0781142080013523,100,mac,phase-21,without +23,260.63695006654126,0.066950154139877,0.0,63.40179597046354,0.0779819160015904,100,mac,phase-21,without +24,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589,100,mac,phase-21,without +25,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505,100,mac,phase-21,without +26,257.15221136999554,0.0660550247546867,0.0,62.55410844268836,0.076939291000599,100,mac,phase-21,without +27,263.19769031243703,0.067607934834944,0.0,64.02471428869198,0.0787480830040294,100,mac,phase-21,without +28,259.31383057100317,0.0666102827051125,0.0,63.079937721741594,0.0775860419962555,100,mac,phase-21,without +29,261.2983025863787,0.0671200366263495,0.0,63.56267468515301,0.078179791002185,100,mac,phase-21,without +0,1761.0627122628562,0.1002730818552339,0.0,479.40560434987367,0.5189407500001835,100,mac,phase-21,with +1,1773.2261221061888,0.1009656537792014,0.0,482.7167907183622,0.5225250000003143,100,mac,phase-21,with +2,1774.1111385027095,0.1010160456936708,0.0,482.9577144614402,0.5227857920035603,100,mac,phase-21,with +3,1747.8332966738471,0.0995198126712257,0.0,475.8042243811302,0.51504237500194,100,mac,phase-21,with +4,1746.9785407537054,0.0994711437568538,0.0,475.5715383015183,0.5147904999976163,100,mac,phase-21,with +5,1750.5248233346765,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402,100,mac,phase-21,with +6,1746.6482342427255,0.099452336447164,0.0,475.4816205538911,0.514693167002406,100,mac,phase-21,with +7,1772.610473858339,0.1009305994073606,0.0,482.5491957665912,0.5223435839943704,100,mac,phase-21,with +8,1748.7226941545937,0.0995704540400808,0.0,476.04634076562667,0.5153044580001733,100,mac,phase-21,with +9,1772.4744459499425,0.1009228541195305,0.0,482.5121655454757,0.5223035000017262,100,mac,phase-21,with +10,1770.3282934230103,0.1008006544235695,0.0,481.92792879908586,0.5216710829990916,100,mac,phase-21,with +11,1758.21465709453,0.1001109165518446,0.0,478.6302920343692,0.5181014999980107,100,mac,phase-21,with +12,1757.855223569782,0.1000904507802411,0.0,478.532445180333,0.5179955840067123,100,mac,phase-21,with +13,1756.2394557664416,0.0999984506396015,0.0,478.09259250793485,0.5175194580006064,100,mac,phase-21,with +14,1747.016436775467,0.0994733015169754,0.0,475.5818545526595,0.5148016669991193,100,mac,phase-21,with +15,1754.1526907543482,0.0998796324070574,0.0,477.5245225381418,0.5169045410002582,100,mac,phase-21,with +16,1753.2227129170683,0.0998266804348467,0.0,477.2713591590023,0.5166304999947897,100,mac,phase-21,with +17,1756.2227695819904,0.0999975005455885,0.0,478.088050108459,0.5175145410030382,100,mac,phase-21,with +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174,100,mac,phase-21,with +19,1748.2398194280586,0.0995429596546495,0.0,475.9148901088795,0.5151621670011082,100,mac,phase-21,with +20,1763.74038297599,0.1004255456447003,0.0,480.1345337273122,0.5197297920021811,100,mac,phase-21,with +21,1760.1897159033686,0.1002233743491896,0.0,479.16795276347585,0.5186834999985876,100,mac,phase-21,with +22,1751.7277020054344,0.0997415560662067,0.0,476.8643795525346,0.5161899579979945,100,mac,phase-21,with +23,1748.352370623307,0.099549368202815,0.0,475.9455293776589,0.5151953329987009,100,mac,phase-21,with +24,1759.1921483115996,0.1001665738865547,0.0,478.89638975161847,0.5183895419977489,100,mac,phase-21,with +25,1747.339389421523,0.099491690105234,0.0,475.66977039312377,0.5148968329958734,100,mac,phase-21,with +26,1751.9406486544974,0.0997536810272451,0.0,476.922348991259,0.5162527080028667,100,mac,phase-21,with +27,1754.9035218939098,0.0999223839523559,0.0,477.7289176762137,0.5171257919937489,100,mac,phase-21,with +28,1752.4458666562616,0.099782447615563,0.0,477.0598820500069,0.516401583001425,100,mac,phase-21,with +29,1750.364901254197,0.0996639596067907,0.0,476.4933908800666,0.5157883749998291,100,mac,phase-21,with +0,390.8727972970198,1.8664702076173023,14.049430290064786,79.44375920058373,0.0834474579969537,100,mac,phase-28,without +1,386.2283609945746,1.8442923992621632,13.882491878082469,78.49979103041318,0.0824559169996064,100,mac,phase-28,without +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.0830597499953,100,mac,phase-28,without +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.0818107090017292,100,mac,phase-28,without +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.0824191249994328,100,mac,phase-28,without +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.0820837080027558,100,mac,phase-28,without +6,363.3642991549768,1.735113427116142,13.060671978656051,73.85273696143435,0.0775746670042281,100,mac,phase-28,without +7,388.22708634477254,1.8538365817817757,13.954333542866456,78.90602614456611,0.082882624999911,100,mac,phase-28,without +8,375.0914257577759,1.7911120347870877,13.482188770942804,76.2362413352104,0.0800782919977791,100,mac,phase-28,without +9,386.50588680771034,1.8456176223670837,13.892467193817684,78.55619734475168,0.0825151660028495,100,mac,phase-28,without +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.0819437079990166,100,mac,phase-28,without +11,382.40578027890945,1.826039061932629,13.745094029820152,77.72286261789608,0.0816398340029991,100,mac,phase-28,without +12,399.92533106121743,1.909697274558687,14.374812212132664,81.2836603589434,0.0853800839977338,100,mac,phase-28,without +13,392.779794759326,1.875576377128228,14.1179749114743,79.8313508883124,0.0838545830047223,100,mac,phase-28,without +14,385.4919894836888,1.840776126202716,13.856023931780443,78.35012566255561,0.0822987089995876,100,mac,phase-28,without +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.0750168340018717,100,mac,phase-28,without +16,363.50267089671735,1.7357741708039116,13.065645576596715,73.88086061549012,0.0776042079960461,100,mac,phase-28,without +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.0824202080038958,100,mac,phase-28,without +18,383.1556137558722,1.8296196176916977,13.772045849533868,77.8752640912048,0.0817999159989995,100,mac,phase-28,without +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.0846969580015866,100,mac,phase-28,without +20,377.543333802351,1.8028202256580403,13.57031951677143,76.73458451391768,0.0806017499999143,100,mac,phase-28,without +21,384.0859896272982,1.8340622876802744,13.805487038175158,78.06436028108223,0.0819985420021112,100,mac,phase-28,without +22,377.9580697399782,1.804800645572044,13.585226677578657,76.81887838698462,0.0806902920012362,100,mac,phase-28,without +23,377.9699719544116,1.804857480247668,13.585654487682444,76.82129747745074,0.0806928330057417,100,mac,phase-28,without +24,393.94456555862206,1.8811383144403728,14.159841130514804,80.06808716554386,0.0841032499956782,100,mac,phase-28,without +25,367.0360156994838,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779,100,mac,phase-28,without +26,423.4076839939201,2.021828669878938,15.218855805997825,86.05638029430169,0.0903933329973369,100,mac,phase-28,without +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.0836692079974454,100,mac,phase-28,without +28,397.13519183039904,1.896373984256985,14.27452417240712,80.71657267537456,0.0847844169984455,100,mac,phase-28,without +29,368.653767842532,1.7603713519134625,13.250795267130425,74.92780608780754,0.0787039160059066,100,mac,phase-28,without +0,2670.570409785425,2.9727932568403896,91.95617793350104,548.196437429938,0.53703412500181,100,mac,phase-28,with +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161,100,mac,phase-28,with +2,2649.982550200963,2.949875512406015,91.24727287251416,543.9703023551407,0.5328940420004074,100,mac,phase-28,with +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248,100,mac,phase-28,with +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252,100,mac,phase-28,with +5,2691.5962946236164,2.99619859692693,92.68016558808806,552.5124873344356,0.5412622919975547,100,mac,phase-28,with +6,2666.77366683587,2.9685668444615825,91.82544407643525,547.417067992174,0.5362706249943585,100,mac,phase-28,with +7,2661.481141542177,2.9626753751907864,91.6432057067442,546.3306545801257,0.5352063330064993,100,mac,phase-28,with +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573,100,mac,phase-28,with +9,2645.7442612379073,2.9451575851782787,91.10133519096404,543.1002953701787,0.5320417499970063,100,mac,phase-28,with +10,2647.4012424367324,2.9470020834609416,91.15839028952776,543.4404291433817,0.5323749580056756,100,mac,phase-28,with +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555,100,mac,phase-28,with +12,2627.9855146860323,2.925389118559347,90.48984543139191,539.4549012786067,0.5284705829981249,100,mac,phase-28,with +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745,100,mac,phase-28,with +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839,100,mac,phase-28,with +15,2687.243218261744,2.991352892051421,92.53027541368049,551.618917576943,0.5403869170040707,100,mac,phase-28,with +16,2700.8745297979617,3.006526830498532,92.9996445433984,554.4170600240664,0.5431280839984538,100,mac,phase-28,with +17,2651.924020997127,2.95203669537653,91.31412384687177,544.3688342080854,0.5332844589938759,100,mac,phase-28,with +18,2727.5859912015253,3.0362611719148456,93.91940456496148,559.9002062187241,0.548499583004741,100,mac,phase-28,with +19,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431,100,mac,phase-28,with +20,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277,100,mac,phase-28,with +21,2647.5437980205056,2.9471607717608688,91.16329892873787,543.4696919790941,0.5324036249949131,100,mac,phase-28,with +22,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085,100,mac,phase-28,with +23,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703,100,mac,phase-28,with +24,2656.7905403646746,2.9574539485248152,91.4816934863912,545.3678000358345,0.5342630839950289,100,mac,phase-28,with +25,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377,100,mac,phase-28,with +26,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278,100,mac,phase-28,with +27,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112,100,mac,phase-28,with +28,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322,100,mac,phase-28,with +29,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103,100,mac,phase-28,with +0,229.97339319686975,0.0,0.0,56.76642090692848,0.0792393329975311,100,mac,phase-17,without +1,226.07553485511937,0.0,0.0,55.804277138088366,0.0778962920012418,100,mac,phase-17,without +2,231.8659096318397,0.0,0.0,57.233567923491464,0.0798914159968262,100,mac,phase-17,without +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506,100,mac,phase-17,without +4,238.15693061363416,0.0,0.0,58.78643775779073,0.0820590419971267,100,mac,phase-17,without +5,232.81398613818936,0.0,0.0,57.467590256524325,0.0802180840037181,100,mac,phase-17,without +6,232.3516788377947,0.0,0.0,57.35347474760509,0.0800587920020916,100,mac,phase-17,without +7,235.3009818299224,0.0,0.0,58.08147798617912,0.0810750000018742,100,mac,phase-17,without +8,232.87529353460332,0.0,0.0,57.48272331788053,0.080239208000421,100,mac,phase-17,without +9,234.6029875368596,0.0,0.0,57.90918571671333,0.0808344999968539,100,mac,phase-17,without +10,233.90293845796447,0.0,0.0,57.73638624580215,0.080593291997502,100,mac,phase-17,without +11,236.10309480251144,0.0,0.0,58.27947081475786,0.0813513750035781,100,mac,phase-17,without +12,228.53955331278615,0.0,0.0,56.41249318841474,0.0787452909935382,100,mac,phase-17,without +13,214.85514476600093,0.0,0.0,53.03464636609046,0.0740302089980105,100,mac,phase-17,without +14,236.0381566565893,0.0,0.0,58.26344154253167,0.0813290000005508,100,mac,phase-17,without +15,233.2262264846764,0.0,0.0,57.56934728457961,0.0803601250008796,100,mac,phase-17,without +16,223.59820949155468,0.0,0.0,55.1927764233464,0.0770427079987712,100,mac,phase-17,without +17,232.78762196853413,0.0,0.0,57.46108254912954,0.0802089999997406,100,mac,phase-17,without +18,234.0781596831433,0.0,0.0,57.77963769190232,0.0806536659947596,100,mac,phase-17,without +19,234.60528613661103,0.0,0.0,57.90975310096232,0.0808352919993922,100,mac,phase-17,without +20,232.4469688391939,0.0,0.0,57.37699604392746,0.0800916250009322,100,mac,phase-17,without +21,236.41351504810697,0.0,0.0,58.35609466273675,0.0814583329993183,100,mac,phase-17,without +22,216.02874452302436,0.0,0.0,53.32433665094193,0.0744345830025849,100,mac,phase-17,without +23,232.45519093886716,0.0,0.0,57.37902557945026,0.0800944579968927,100,mac,phase-17,without +24,233.9956889809203,0.0,0.0,57.75928069960073,0.0806252499969559,100,mac,phase-17,without +25,232.5895425232549,0.0,0.0,57.41218880099883,0.0801407500039204,100,mac,phase-17,without +26,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317,100,mac,phase-17,without +27,229.88862389489532,0.0,0.0,56.74549653037789,0.0792101249971892,100,mac,phase-17,without +28,233.92301053494205,0.0,0.0,57.74134081882622,0.0806002080062171,100,mac,phase-17,without +29,234.3584718660642,0.0,0.0,57.84882969337619,0.0807502499956172,100,mac,phase-17,without +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297,100,mac,phase-17,with +1,1756.560303683826,1.7731543519587607,0.0,478.8520422563347,0.5189257919992087,100,mac,phase-17,with +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679,100,mac,phase-17,with +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372,100,mac,phase-17,with +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144,100,mac,phase-17,with +5,1746.06400151769,1.7625588922832085,0.0,475.99066840093514,0.5158249579981202,100,mac,phase-17,with +6,1754.1136576433803,1.770684592699588,0.0,478.1850674586642,0.5182029999996303,100,mac,phase-17,with +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129,100,mac,phase-17,with +8,1745.2030860378886,1.7616898438215771,0.0,475.7559761248724,0.5155706250006915,100,mac,phase-17,with +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393,100,mac,phase-17,with +10,1747.4051663255143,1.763912726939895,0.0,476.35628039039096,0.5162211670030956,100,mac,phase-17,with +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424,100,mac,phase-17,with +12,1746.5747123718454,1.763074427771366,0.0,476.1298921639917,0.5159758329973556,100,mac,phase-17,with +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304,100,mac,phase-17,with +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058,100,mac,phase-17,with +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449,100,mac,phase-17,with +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621,100,mac,phase-17,with +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053,100,mac,phase-17,with +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674,100,mac,phase-17,with +19,1748.336743535644,1.7648531046661042,0.0,476.6102356053953,0.5164963749994058,100,mac,phase-17,with +20,1753.3933581542744,1.769957488613754,0.0,477.988708198654,0.517990207998082,100,mac,phase-17,with +21,1757.4467487928955,1.7740491712254969,0.0,479.09369410850064,0.5191876669996418,100,mac,phase-17,with +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899,100,mac,phase-17,with +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545,100,mac,phase-17,with +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244,100,mac,phase-17,with +25,1770.162052819831,1.786884595448938,0.0,482.5599851822763,0.522944042000745,100,mac,phase-17,with +26,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401,100,mac,phase-17,with +27,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632,100,mac,phase-17,with +28,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313,100,mac,phase-17,with +29,1747.8861163258769,1.764398220426472,0.0,476.48739111253,0.5163632500043605,100,mac,phase-17,with +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467,100,mac,phase-10,without +1,228.78073899886232,0.0,0.0,56.00141900241923,0.0778383330034557,100,mac,phase-10,without +2,235.23590932049515,0.0,0.0,57.58152884687401,0.0800345829993602,100,mac,phase-10,without +3,236.26866601830895,0.0,0.0,57.83432915172009,0.0803859589941566,100,mac,phase-10,without +4,236.1306451621364,0.0,0.0,57.80054412317523,0.0803390000000945,100,mac,phase-10,without +5,236.65994415723756,0.0,0.0,57.930107017901115,0.0805190840037539,100,mac,phase-10,without +6,230.7082285871409,0.0,0.0,56.4732338611715,0.0784941249949042,100,mac,phase-10,without +7,217.65362425882617,0.0,0.0,53.27770101124752,0.0740525420042104,100,mac,phase-10,without +8,236.48396084260233,0.0,0.0,57.88702946083294,0.0804592089989455,100,mac,phase-10,without +9,233.11602697824952,0.0,0.0,57.062619694803665,0.0793133330007549,100,mac,phase-10,without +10,234.8972924876633,0.0,0.0,57.4986415233184,0.0799193750062841,100,mac,phase-10,without +11,235.4089534558389,0.0,0.0,57.62388694560078,0.0800934580038301,100,mac,phase-10,without +12,236.8091074367793,0.0,0.0,57.966619511714825,0.0805698339972877,100,mac,phase-10,without +13,235.2139889440503,0.0,0.0,57.576163132123064,0.0800271250045625,100,mac,phase-10,without +14,235.677400358321,0.0,0.0,57.68959792953932,0.0801847920010914,100,mac,phase-10,without +15,235.25183085336997,0.0,0.0,57.58542615237964,0.0800400000007357,100,mac,phase-10,without +16,224.63833749671065,0.0,0.0,54.98743345794819,0.0764289589933469,100,mac,phase-10,without +17,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743,100,mac,phase-10,without +18,236.4523617407738,0.0,0.0,57.87929456781116,0.080448458000319,100,mac,phase-10,without +19,230.33752474602355,0.0,0.0,56.382492213849865,0.0783680000022286,100,mac,phase-10,without +20,235.6896449605586,0.0,0.0,57.69259518841446,0.0801889579961425,100,mac,phase-10,without +21,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569,100,mac,phase-10,without +22,234.47784821362225,0.0,0.0,57.395969092756594,0.0797766670002602,100,mac,phase-10,without +23,236.01075312636675,0.0,0.0,57.77119670450892,0.0802982089953729,100,mac,phase-10,without +24,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387,100,mac,phase-10,without +25,249.0360862322947,0.0,0.0,60.95956448452025,0.0847298330045305,100,mac,phase-10,without +26,237.69685978979257,0.0,0.0,58.183925355331866,0.0808718749976833,100,mac,phase-10,without +27,236.12660378259105,0.0,0.0,57.799554865992754,0.0803376249969005,100,mac,phase-10,without +28,234.46707023916116,0.0,0.0,57.39333083803974,0.0797729999976581,100,mac,phase-10,without +29,241.69022142718063,0.0,0.0,59.161428615711976,0.0822305410038097,100,mac,phase-10,without +0,1795.147924035491,2.682538176309839,0.0,479.4457429436733,0.5142721660013194,100,mac,phase-10,with +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979,100,mac,phase-10,with +2,1817.3031298206895,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046,100,mac,phase-10,with +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751,100,mac,phase-10,with +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264,100,mac,phase-10,with +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576,100,mac,phase-10,with +6,1809.3933002198744,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581,100,mac,phase-10,with +7,1805.3675530191017,2.697809644766114,0.0,482.1751879910992,0.5171998750010971,100,mac,phase-10,with +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467,100,mac,phase-10,with +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286,100,mac,phase-10,with +10,1799.7155993091633,2.689363777216903,0.0,480.6656716391247,0.5155807090050075,100,mac,phase-10,with +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075,100,mac,phase-10,with +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091,100,mac,phase-10,with +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005,100,mac,phase-10,with +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217,100,mac,phase-10,with +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733,100,mac,phase-10,with +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314,100,mac,phase-10,with +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529,100,mac,phase-10,with +18,1826.6656523216352,2.729635971553408,0.0,487.8634562985023,0.5233013329998357,100,mac,phase-10,with +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408,100,mac,phase-10,with +20,1807.306323455378,2.700706801953429,0.0,482.6929922454295,0.5177552919994923,100,mac,phase-10,with +21,1833.0039600605849,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359,100,mac,phase-10,with +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235,100,mac,phase-10,with +23,1838.0546515121375,2.7466548615899486,0.0,490.9052152004653,0.5265640419966076,100,mac,phase-10,with +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132,100,mac,phase-10,with +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729,100,mac,phase-10,with +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903,100,mac,phase-10,with +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051,100,mac,phase-10,with +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895,100,mac,phase-10,with +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387,100,mac,phase-10,with +0,228.1520204661302,0.0,0.0,57.746086091398226,0.0799198750028153,100,mac,phase-11,without +1,227.8495358539531,0.0,0.0,57.66952616253846,0.0798139170001377,100,mac,phase-11,without +2,229.0306925870703,0.0,0.0,57.968481123615135,0.0802276670001447,100,mac,phase-11,without +3,230.2044726270147,0.0,0.0,58.265569017469915,0.0806388330020126,100,mac,phase-11,without +4,229.10003753664316,0.0,0.0,57.98603257645722,0.0802519579956424,100,mac,phase-11,without +5,230.7167820382236,0.0,0.0,58.39523634763275,0.0808182909968309,100,mac,phase-11,without +6,211.05486597292324,0.0,0.0,53.418735611373734,0.0739308750053169,100,mac,phase-11,without +7,230.54216782071205,0.0,0.0,58.3510408694748,0.0807571249970351,100,mac,phase-11,without +8,228.80932881388665,0.0,0.0,57.91245316700242,0.0801501249952707,100,mac,phase-11,without +9,230.55620182047025,0.0,0.0,58.35459292462026,0.0807620409977971,100,mac,phase-11,without +10,230.03128580010983,0.0,0.0,58.22173481694031,0.0805781670060241,100,mac,phase-11,without +11,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297,100,mac,phase-11,without +12,230.31081241713733,0.0,0.0,58.29248399574981,0.0806760830018902,100,mac,phase-11,without +13,232.7656686097756,0.0,0.0,58.91381681039013,0.0815359999978682,100,mac,phase-11,without +14,229.0882616679938,0.0,0.0,57.98305206230952,0.0802478330006124,100,mac,phase-11,without +15,211.45488911631423,0.0,0.0,53.51998288864797,0.074070999995456,100,mac,phase-11,without +16,231.4391589588723,0.0,0.0,58.578072509964315,0.0810713340033544,100,mac,phase-11,without +17,231.1610539996254,0.0,0.0,58.50768315778455,0.0809739160031313,100,mac,phase-11,without +18,223.1157480108247,0.0,0.0,56.47138765923167,0.0781557080044876,100,mac,phase-11,without +19,229.29047568345513,0.0,0.0,58.03423314728023,0.0803186669945716,100,mac,phase-11,without +20,226.68384051120097,0.0,0.0,57.37448453423561,0.0794055830047,100,mac,phase-11,without +21,229.939339682268,0.0,0.0,58.19846292819781,0.0805459589973907,100,mac,phase-11,without +22,229.9903656561629,0.0,0.0,58.211377783281776,0.0805638329984503,100,mac,phase-11,without +23,229.92208836236088,0.0,0.0,58.1940965579044,0.0805399159944499,100,mac,phase-11,without +24,234.3581505243959,0.0,0.0,59.31687963469814,0.0820938340038992,100,mac,phase-11,without +25,232.28523543551043,0.0,0.0,58.79221746892648,0.0813677080004708,100,mac,phase-11,without +26,224.9047315536089,0.0,0.0,56.92418574301216,0.0787823749997187,100,mac,phase-11,without +27,229.36006045625183,0.0,0.0,58.051845300231406,0.080343041998276,100,mac,phase-11,without +28,227.33044351249188,0.0,0.0,57.53814204865611,0.0796320829977048,100,mac,phase-11,without +29,226.7574704574646,0.0,0.0,57.393120534947585,0.0794313750011497,100,mac,phase-11,without +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037,100,mac,phase-11,with +1,1782.8336566198657,1.7941300308884225,0.0,479.7304354814431,0.5178688749947469,100,mac,phase-11,with +2,1795.0281902994725,1.80640183146052,0.0,483.0117786010824,0.5214110840024659,100,mac,phase-11,with +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378,100,mac,phase-11,with +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384,100,mac,phase-11,with +5,1796.9891979642368,1.8083752644440696,0.0,483.5394526538505,0.5219807079993188,100,mac,phase-11,with +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032,100,mac,phase-11,with +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437,100,mac,phase-11,with +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653,100,mac,phase-11,with +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079,100,mac,phase-11,with +10,1803.0189770789996,1.8144432493899736,0.0,485.1619644063301,0.5237322089960799,100,mac,phase-11,with +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943,100,mac,phase-11,with +12,1800.0309108242288,1.8114362501771968,0.0,484.35792622793593,0.5228642500005662,100,mac,phase-11,with +13,1791.4015151729552,1.8027521770283184,0.0,482.03590155762765,0.5203576249987236,100,mac,phase-11,with +14,1809.3940181194137,1.820858683906976,0.0,486.8773803135709,0.5255840000027092,100,mac,phase-11,with +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398,100,mac,phase-11,with +16,1782.9656266294744,1.794262837085196,0.0,479.765946382836,0.5179072090031696,100,mac,phase-11,with +17,1797.0181746335738,1.8084044247151136,0.0,483.5472497863245,0.5219891250017099,100,mac,phase-11,with +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482,100,mac,phase-11,with +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603,100,mac,phase-11,with +20,1817.2879807960328,1.8288026642375284,0.0,489.0015123875124,0.5278770000004442,100,mac,phase-11,with +21,1799.0441654896515,1.8104432526358776,0.0,484.0924097186932,0.5225776250008494,100,mac,phase-11,with +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759,100,mac,phase-11,with +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128,100,mac,phase-11,with +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152,100,mac,phase-11,with +25,1779.0384404444324,1.7903107674990562,0.0,478.7092068873866,0.5167664590044296,100,mac,phase-11,with +26,1782.7894773086882,1.7940855716486983,0.0,479.71854757473255,0.517856042002677,100,mac,phase-11,with +27,1783.1825092184056,1.7944810938835989,0.0,479.8243058256533,0.5179702080058632,100,mac,phase-11,with +28,1780.5486074656133,1.79183050322667,0.0,479.11556733499793,0.5172051249974174,100,mac,phase-11,with +29,1787.7603534401137,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268,100,mac,phase-11,with +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328,100,mac,phase-29,without +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.0816092919994844,100,mac,phase-29,without +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.083558999998786,100,mac,phase-29,without +3,360.8727014356981,1.3071714929106786,13.5385618908606,73.38834238769952,0.0766691250028088,100,mac,phase-29,without +4,405.9071867253503,1.4702977009456415,15.228083331222717,82.54671378166245,0.0862369159949594,100,mac,phase-29,without +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.0799180419999174,100,mac,phase-29,without +6,399.0524005201552,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465,100,mac,phase-29,without +7,389.3215008612753,1.410220184232304,14.60585190812029,79.17379034332791,0.0827132080012233,100,mac,phase-29,without +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.0822733329987386,100,mac,phase-29,without +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927,100,mac,phase-29,without +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093,100,mac,phase-29,without +11,387.03474113975176,1.4019369666122965,14.520061439913068,78.70874683980463,0.0822273750018212,100,mac,phase-29,without +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.0788562090019695,100,mac,phase-29,without +13,424.3344458168445,1.537045858068777,15.919403529998048,86.29414603157562,0.0901518749960814,100,mac,phase-29,without +14,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.082806749996962,100,mac,phase-29,without +15,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.0829413329993258,100,mac,phase-29,without +16,393.57240572328834,1.4256180284931532,14.765329580821945,80.03826931397275,0.0836163329950068,100,mac,phase-29,without +17,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.0819364579947432,100,mac,phase-29,without +18,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.0825907089965767,100,mac,phase-29,without +19,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.0801123339988407,100,mac,phase-29,without +20,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.0808422499976586,100,mac,phase-29,without +21,367.5496145188862,1.3313569478045033,13.789054102260929,74.74618292673854,0.0780876670032739,100,mac,phase-29,without +22,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166,100,mac,phase-29,without +23,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.0810130409954581,100,mac,phase-29,without +24,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.0816602499980945,100,mac,phase-29,without +25,379.5121562547591,1.374688276213875,14.237842860786564,77.17892750743613,0.0806291659973794,100,mac,phase-29,without +26,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.0827884579994133,100,mac,phase-29,without +27,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.0803707919985754,100,mac,phase-29,without +28,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335,100,mac,phase-29,without +29,390.5568650001384,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184,100,mac,phase-29,without +0,2672.382616871309,3.0753543154939074,90.65609677847256,547.1456460435247,0.5367295840042061,100,mac,phase-29,with +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645,100,mac,phase-29,with +2,2668.042158872389,3.070359354759644,90.50885402291472,546.2569773772376,0.5358578330051387,100,mac,phase-29,with +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605,100,mac,phase-29,with +4,2673.3815259950325,3.0765038512920504,90.68998309460912,547.3501634559595,0.5369302079998306,100,mac,phase-29,with +5,2660.8570324091256,3.062090774678085,90.26511066224964,544.7858891296837,0.5344147499999963,100,mac,phase-29,with +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095,100,mac,phase-29,with +7,2691.981040632199,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829,100,mac,phase-29,with +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093,100,mac,phase-29,with +9,2663.405459659043,3.065023482251948,90.35156178116613,545.3076560597814,0.5349265840050066,100,mac,phase-29,with +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977,100,mac,phase-29,with +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532,100,mac,phase-29,with +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001,100,mac,phase-29,with +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807,100,mac,phase-29,with +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968,100,mac,phase-29,with +15,2656.6049568069725,3.0571975236255113,90.1208661312216,543.915315942417,0.5335607499946491,100,mac,phase-29,with +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822,100,mac,phase-29,with +17,2683.2200521488594,3.087825940305148,91.02373858812568,549.3645107708115,0.5389062079993892,100,mac,phase-29,with +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233,100,mac,phase-29,with +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017,100,mac,phase-29,with +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186,100,mac,phase-29,with +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897,100,mac,phase-29,with +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739,100,mac,phase-29,with +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244,100,mac,phase-29,with +24,2660.4190835585628,3.0615867870084155,90.25025398224808,544.6962231494972,0.5343267909993301,100,mac,phase-29,with +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568,100,mac,phase-29,with +26,2652.9553415843593,3.05299757865734,89.99705905781202,543.1680909506885,0.5328277499938849,100,mac,phase-29,with +27,2692.647814864721,3.0986753263813163,91.3435596211536,551.2947580674934,0.5407997090005665,100,mac,phase-29,with +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348,100,mac,phase-29,with +29,2675.12895480308,3.0785147769326833,90.749261685233,547.707933356893,0.5372811670022202,100,mac,phase-29,with +0,242.1989277900244,0.0,0.0,58.23108794513989,0.0794612079989747,100,mac,phase-16,without +1,242.4689300777569,0.0,0.0,58.29600370304932,0.0795497910003177,100,mac,phase-16,without +2,245.1891581817424,0.0,0.0,58.950019158028326,0.0804422499932115,100,mac,phase-16,without +3,244.62667452650356,0.0,0.0,58.81478307133387,0.0802577089998521,100,mac,phase-16,without +4,230.49772748177529,0.0,0.0,55.41780701763689,0.0756222499985597,100,mac,phase-16,without +5,248.5687694470221,0.0,0.0,59.76256792777146,0.0815510410029674,100,mac,phase-16,without +6,245.56152502051543,0.0,0.0,59.03954608671583,0.0805644170031882,100,mac,phase-16,without +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579,100,mac,phase-16,without +8,245.84270436380183,0.0,0.0,59.107149107161334,0.0806566669998574,100,mac,phase-16,without +9,247.49612431036985,0.0,0.0,59.50467540175467,0.0811991250011487,100,mac,phase-16,without +10,245.79812410417784,0.0,0.0,59.09643082264013,0.0806420410008286,100,mac,phase-16,without +11,243.7852944737544,0.0,0.0,58.61249284530364,0.0799816670041764,100,mac,phase-16,without +12,241.62857108664963,0.0,0.0,58.0939589674959,0.0792740839970065,100,mac,phase-16,without +13,248.07080308887888,0.0,0.0,59.642843521642384,0.0813876669999444,100,mac,phase-16,without +14,245.79787110638867,0.0,0.0,59.09636999521763,0.0806419579967041,100,mac,phase-16,without +15,246.7866989049236,0.0,0.0,59.33411059557655,0.0809663750042091,100,mac,phase-16,without +16,243.67810491245837,0.0,0.0,58.58672161325243,0.0799464999945485,100,mac,phase-16,without +17,244.35603522014415,0.0,0.0,58.749714157140794,0.0801689170039026,100,mac,phase-16,without +18,240.2579794931515,0.0,0.0,57.764432159321714,0.0788244170034886,100,mac,phase-16,without +19,243.21099669998037,0.0,0.0,58.47441632912548,0.0797932500063325,100,mac,phase-16,without +20,261.55407699968373,0.0,0.0,62.884582517155906,0.0858112920031999,100,mac,phase-16,without +21,239.347894129501,0.0,0.0,57.54562334240464,0.0785258340038126,100,mac,phase-16,without +22,245.55783996400805,0.0,0.0,59.03866010075577,0.0805632080009672,100,mac,phase-16,without +23,224.7037046013891,0.0,0.0,54.02476924087008,0.0737213330066879,100,mac,phase-16,without +24,245.09403272066805,0.0,0.0,58.92714845773173,0.0804110410026623,100,mac,phase-16,without +25,245.82682726665857,0.0,0.0,59.10333182915559,0.0806514580035582,100,mac,phase-16,without +26,246.27298345658295,0.0,0.0,59.210599687728774,0.0807978340017143,100,mac,phase-16,without +27,229.8491343612716,0.0,0.0,55.26186791672805,0.0754094580042874,100,mac,phase-16,without +28,244.80002731204428,0.0,0.0,58.85646170877651,0.0803145829995628,100,mac,phase-16,without +29,244.9462070527816,0.0,0.0,58.89160722084109,0.0803625420012394,100,mac,phase-16,without +0,1750.3108252154525,2.609757505147961,0.0,479.15816963107625,0.5184650419978425,100,mac,phase-16,with +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429,100,mac,phase-16,with +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149,100,mac,phase-16,with +3,1752.016519404531,2.612300738125388,0.0,479.625113726842,0.5189702910065535,100,mac,phase-16,with +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639,100,mac,phase-16,with +5,1742.483268674349,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369,100,mac,phase-16,with +6,1745.190778674311,2.602123386855969,0.0,477.7565259380042,0.5169484170037322,100,mac,phase-16,with +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536,100,mac,phase-16,with +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203,100,mac,phase-16,with +9,1735.1488806738737,2.587150664128651,0.0,475.007495653672,0.5139738750003744,100,mac,phase-16,with +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756,100,mac,phase-16,with +11,1734.3902782445691,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704,100,mac,phase-16,with +12,1740.4614946593651,2.59507190532813,0.0,476.4618558487712,0.5155475409992505,100,mac,phase-16,with +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972,100,mac,phase-16,with +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954,100,mac,phase-16,with +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097,100,mac,phase-16,with +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292,100,mac,phase-16,with +17,1746.9815770882103,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611,100,mac,phase-16,with +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266,100,mac,phase-16,with +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417,100,mac,phase-16,with +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639,100,mac,phase-16,with +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297,100,mac,phase-16,with +22,1745.2933230781057,2.6022762831436204,0.0,477.7845980884589,0.5169787920021918,100,mac,phase-16,with +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218,100,mac,phase-16,with +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297,100,mac,phase-16,with +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044,100,mac,phase-16,with +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646,100,mac,phase-16,with +27,1744.947146636668,2.601760125354311,0.0,477.6898301948601,0.5168762499961304,100,mac,phase-16,with +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994,100,mac,phase-16,with +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613,100,mac,phase-16,with +0,224.52516714856455,0.0,0.0,57.735973906146626,0.0753427089948672,100,mac,phase-20,without +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632,100,mac,phase-20,without +2,231.69330601434635,0.0,0.0,59.57923933499082,0.0777480830001877,100,mac,phase-20,without +3,234.760649370358,0.0,0.0,60.36799748719698,0.078777374998026,100,mac,phase-20,without +4,228.2324736502117,0.0,0.0,58.6892966634995,0.0765867500012973,100,mac,phase-20,without +5,223.36952695819903,0.0,0.0,57.43880449425753,0.0749549169995589,100,mac,phase-20,without +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515,100,mac,phase-20,without +7,228.01604737457023,0.0,0.0,58.63364329527478,0.0765141249939915,100,mac,phase-20,without +8,210.18081054030137,0.0,0.0,54.047365589524595,0.070529249998799,100,mac,phase-20,without +9,226.91454579476897,0.0,0.0,58.35039546485715,0.076144500002556,100,mac,phase-20,without +10,223.1887361622084,0.0,0.0,57.392314682837515,0.0748942499994882,100,mac,phase-20,without +11,228.57679477020545,0.0,0.0,58.777837807691775,0.0767022919972078,100,mac,phase-20,without +12,233.5521132500369,0.0,0.0,60.05722604543105,0.0783718329985276,100,mac,phase-20,without +13,231.26827613662832,0.0,0.0,59.46994417560664,0.0776054579982883,100,mac,phase-20,without +14,232.72316419059683,0.0,0.0,59.844064278876445,0.0780936669980292,100,mac,phase-20,without +15,226.37205419514888,0.0,0.0,58.21089537567897,0.075962458999129,100,mac,phase-20,without +16,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212,100,mac,phase-20,without +17,235.0194191984909,0.0,0.0,60.43453937305556,0.0788642090046778,100,mac,phase-20,without +18,235.69725578504784,0.0,0.0,60.60884302004133,0.0790916670011938,100,mac,phase-20,without +19,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004,100,mac,phase-20,without +20,224.62400355737097,0.0,0.0,57.76138939249184,0.0753758749997359,100,mac,phase-20,without +21,231.10611067541615,0.0,0.0,59.42824381321107,0.0775510410021524,100,mac,phase-20,without +22,232.56050106737092,0.0,0.0,59.802235944185355,0.0780390830041142,100,mac,phase-20,without +23,232.27069102387352,0.0,0.0,59.727712159962834,0.0779418329984764,100,mac,phase-20,without +24,231.9585306176708,0.0,0.0,59.64744104694712,0.0778370830012136,100,mac,phase-20,without +25,230.3707829163002,0.0,0.0,59.23915648348338,0.0773042910004733,100,mac,phase-20,without +26,230.7023166464104,0.0,0.0,59.32440938868658,0.0774155420003808,100,mac,phase-20,without +27,239.12095968349055,0.0,0.0,61.489238217841425,0.0802405409995117,100,mac,phase-20,without +28,235.103850013608,0.0,0.0,60.45625050415228,0.0788925410015508,100,mac,phase-20,without +29,229.96015861058865,0.0,0.0,59.13356567377203,0.0771664999992935,100,mac,phase-20,without +0,1845.824206071892,0.1677320580549854,0.0,486.1545970665696,0.5214718330025789,100,mac,phase-20,with +1,1830.4651068256328,0.166336359960892,0.0,482.1093057106495,0.5171326670024428,100,mac,phase-20,with +2,1849.9641160769513,0.1681082561907703,0.0,487.24496974332874,0.5226414170028875,100,mac,phase-20,with +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669,100,mac,phase-20,with +4,1822.3392648347449,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443,100,mac,phase-20,with +5,1836.1359089329785,0.1668516719310995,0.0,483.602885925099,0.5187347499959287,100,mac,phase-20,with +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701,100,mac,phase-20,with +7,1845.3007813203665,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832,100,mac,phase-20,with +8,1825.8569338770212,0.1659176102608928,0.0,480.8956015801718,0.5158307919991785,100,mac,phase-20,with +9,1807.0185105123555,0.1642057421907525,0.0,475.9339231656772,0.5105086669937009,100,mac,phase-20,with +10,1823.162968089531,0.1656728066526299,0.0,480.1860628019826,0.5150697079952806,100,mac,phase-20,with +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444,100,mac,phase-20,with +12,1857.7274384163825,0.1688137177558822,0.0,489.2896795436492,0.5248346669977764,100,mac,phase-20,with +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564,100,mac,phase-20,with +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571,100,mac,phase-20,with +15,1830.059520329347,0.1662995038737752,0.0,482.00248202775015,0.5170180829954916,100,mac,phase-20,with +16,1826.6731154100848,0.1659917775666616,0.0,481.11056809921206,0.5160613749976619,100,mac,phase-20,with +17,1843.7639886261209,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808,100,mac,phase-20,with +18,1825.188089979146,0.1658568316866715,0.0,480.71944096064885,0.5156418339975062,100,mac,phase-20,with +19,1824.456265218254,0.1657903299727617,0.0,480.52669239305266,0.5154350829980103,100,mac,phase-20,with +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028,100,mac,phase-20,with +21,1827.3999209682072,0.1660578231801435,0.0,481.301994705328,0.5162667080003303,100,mac,phase-20,with +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859,100,mac,phase-20,with +23,1827.510683488826,0.1660678882911533,0.0,481.3311674230788,0.5162980000022799,100,mac,phase-20,with +24,1835.150709439822,0.1667621457790216,0.0,483.3434033259165,0.5184564169976511,100,mac,phase-20,with +25,1813.572750949637,0.1648013331651888,0.0,477.6601840459834,0.5123603339961846,100,mac,phase-20,with +26,1842.1702642888456,0.1674000203813719,0.0,485.1922190733685,0.5204395420005312,100,mac,phase-20,with +27,1831.9371559299911,0.166470126667938,0.0,482.4970151343517,0.5175485420040786,100,mac,phase-20,with +28,1845.660352440013,0.1677171684968116,0.0,486.1114411711588,0.5214255419996334,100,mac,phase-20,with +29,1853.0747226186224,0.1683909203986171,0.0,488.06424368335195,0.5235202080002637,100,mac,phase-20,with +0,245.20605579923495,0.0,0.0,58.064741436243395,0.0789422499947249,100,mac,phase-18,without +1,250.55095440543516,0.0,0.0,59.3304122801399,0.0806630000006407,100,mac,phase-18,without +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149,100,mac,phase-18,without +3,249.81764644337736,0.0,0.0,59.156765111960304,0.0804269170039333,100,mac,phase-18,without +4,249.02622560509047,0.0,0.0,58.969356827150214,0.0801721250027185,100,mac,phase-18,without +5,248.4707444057284,0.0,0.0,58.83781899824741,0.0799932919981074,100,mac,phase-18,without +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263,100,mac,phase-18,without +7,246.38859307336747,0.0,0.0,58.34476600919865,0.079322958998091,100,mac,phase-18,without +8,246.47595340441205,0.0,0.0,58.36545291685823,0.0793510840012459,100,mac,phase-18,without +9,251.11329706391197,0.0,0.0,59.46357490108985,0.0808440420005354,100,mac,phase-18,without +10,250.43486224262665,0.0,0.0,59.302921680879294,0.0806256249998114,100,mac,phase-18,without +11,251.25358918047456,0.0,0.0,59.49679604421048,0.0808892079949146,100,mac,phase-18,without +12,249.02648340531616,0.0,0.0,58.96941787418838,0.080172207999567,100,mac,phase-18,without +13,253.20619256589657,0.0,0.0,59.95917210720173,0.0815178340053535,100,mac,phase-18,without +14,249.5875338986397,0.0,0.0,59.10227451070708,0.0803528339965851,100,mac,phase-18,without +15,246.30614979515929,0.0,0.0,58.32524345859641,0.0792964170032064,100,mac,phase-18,without +16,248.74706084391897,0.0,0.0,58.90325067156323,0.0800822500023059,100,mac,phase-18,without +17,249.45383612969297,0.0,0.0,59.07061490768795,0.0803097910029464,100,mac,phase-18,without +18,248.40447792783144,0.0,0.0,58.82212711049024,0.0799719580027158,100,mac,phase-18,without +19,228.9579399496601,0.0,0.0,54.21719108698062,0.0737112909991992,100,mac,phase-18,without +20,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705,100,mac,phase-18,without +21,248.96720883475896,0.0,0.0,58.955381668590064,0.0801531249962863,100,mac,phase-18,without +22,250.81174011459103,0.0,0.0,59.39216628015041,0.0807469580031465,100,mac,phase-18,without +23,237.7471648094788,0.0,0.0,56.298477649202496,0.0765409160012495,100,mac,phase-18,without +24,249.37748086472203,0.0,0.0,59.05253399731491,0.0802852089982479,100,mac,phase-18,without +25,250.11596367984183,0.0,0.0,59.227406569589995,0.0805229580000741,100,mac,phase-18,without +26,248.8819172109695,0.0,0.0,58.93518463036493,0.0801256659979117,100,mac,phase-18,without +27,249.33903922826215,0.0,0.0,59.04343102604385,0.0802728330017998,100,mac,phase-18,without +28,262.4534401956857,0.0,0.0,62.148918363143466,0.0844949160018586,100,mac,phase-18,without +29,261.2161602290057,0.0,0.0,61.85593073233089,0.0840965829993365,100,mac,phase-18,without +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213,100,mac,phase-18,with +1,1779.2162506886075,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688,100,mac,phase-18,with +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013,100,mac,phase-18,with +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128,100,mac,phase-18,with +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836,100,mac,phase-18,with +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122,100,mac,phase-18,with +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858,100,mac,phase-18,with +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367,100,mac,phase-18,with +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509,100,mac,phase-18,with +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752,100,mac,phase-18,with +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764,100,mac,phase-18,with +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953,100,mac,phase-18,with +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438,100,mac,phase-18,with +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806,100,mac,phase-18,with +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779,100,mac,phase-18,with +15,1790.0668889243043,1.66955817952611,0.0,480.09815010452814,0.5182433750014752,100,mac,phase-18,with +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756,100,mac,phase-18,with +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821,100,mac,phase-18,with +18,1792.1862688524077,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506,100,mac,phase-18,with +19,1790.008024062706,1.6695032774932437,0.0,480.0823624759571,0.5182263329988928,100,mac,phase-18,with +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355,100,mac,phase-18,with +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276,100,mac,phase-18,with +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134,100,mac,phase-18,with +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887,100,mac,phase-18,with +24,1787.3388646459289,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427,100,mac,phase-18,with +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853,100,mac,phase-18,with +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772,100,mac,phase-18,with +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742,100,mac,phase-18,with +28,1804.8606743706223,1.6833560357128678,0.0,484.0658616295923,0.522526332999405,100,mac,phase-18,with +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485,100,mac,phase-18,with +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.0830702079983893,100,mac,phase-27,without +1,374.8739455288989,0.3746015080684854,13.247271512603714,76.14627018555758,0.0836669999989681,100,mac,phase-27,without +2,360.3381183231657,0.3600762446906633,12.733605380424368,73.19368028439303,0.0804227919943514,100,mac,phase-27,without +3,348.5626801398173,0.3483093642385529,12.317485698981551,70.8017944034004,0.0777946669986704,100,mac,phase-27,without +4,364.61442878503067,0.3643494473687624,12.884721366040782,74.06230584695935,0.0813772089968551,100,mac,phase-27,without +5,369.74521098479994,0.3694765008023982,13.06603261928481,75.10449598128749,0.0825223330029985,100,mac,phase-27,without +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.082606374999159,100,mac,phase-27,without +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.0820752500003436,100,mac,phase-27,without +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.0797756669999216,100,mac,phase-27,without +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.0821104580027167,100,mac,phase-27,without +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.0825127500065718,100,mac,phase-27,without +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.0837727909965906,100,mac,phase-27,without +12,367.93805840787127,0.3676706615630981,13.002171577095016,74.73741811409886,0.0821189999987836,100,mac,phase-27,without +13,378.27841319804594,0.3780035015605473,13.367578373368447,76.83780268085307,0.0844268330038175,100,mac,phase-27,without +14,382.7117309698025,0.3824335974443884,13.524242673260645,77.73832035324112,0.0854162920004455,100,mac,phase-27,without +15,372.41599349838015,0.3721453423403144,13.160412560943849,75.64699867935846,0.0831184170019696,100,mac,phase-27,without +16,356.7682378530547,0.3565089586104289,12.607453172677896,72.46854831390174,0.0796260409988462,100,mac,phase-27,without +17,368.93348814627194,0.3686653678787238,13.037348009529412,74.93961477971149,0.0823411669989582,100,mac,phase-27,without +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.0823945420052041,100,mac,phase-27,without +19,368.3876096681557,0.3681198861146177,13.018057790780574,74.82873321384412,0.0822193340063677,100,mac,phase-27,without +20,370.1432358855347,0.3698742364408505,13.080097997771896,75.18534478924924,0.0826111669957754,100,mac,phase-27,without +21,368.5427485912714,0.368274912291423,13.02354008012396,74.860245807602,0.0822539590008091,100,mac,phase-27,without +22,380.3863269498703,0.3801098833983078,13.44206769472198,77.2659726616924,0.0848972919993684,100,mac,phase-27,without +23,370.1045866985358,0.3698356153419234,13.078732215273476,75.17749417314008,0.0826025409987778,100,mac,phase-27,without +24,361.6613717978691,0.3613985364985974,12.78036642708676,73.46246614644215,0.0807181249983841,100,mac,phase-27,without +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.0820459999958984,100,mac,phase-27,without +26,371.72020035590015,0.3714500548614554,13.135824667373289,75.50566569729222,0.0829631250016973,100,mac,phase-27,without +27,331.3958353192039,0.3311549953226056,11.710844834590327,67.3147790492133,0.0739632500044535,100,mac,phase-27,without +28,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.0810689170029945,100,mac,phase-27,without +29,360.0086099352188,0.3597469757710216,12.721961234084311,73.12674889309132,0.0803492499981075,100,mac,phase-27,without +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224,100,mac,phase-27,with +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637,100,mac,phase-27,with +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822,100,mac,phase-27,with +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785,100,mac,phase-27,with +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257,100,mac,phase-27,with +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757,100,mac,phase-27,with +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788,100,mac,phase-27,with +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315,100,mac,phase-27,with +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518,100,mac,phase-27,with +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946,100,mac,phase-27,with +10,2618.9124733008675,4.199020794266546,93.62136762896692,547.6194959050658,0.5388713749998715,100,mac,phase-27,with +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708,100,mac,phase-27,with +12,2598.369879714636,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963,100,mac,phase-27,with +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235,100,mac,phase-27,with +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425,100,mac,phase-27,with +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375,100,mac,phase-27,with +16,2588.202161551629,4.149781562735098,92.52352972274171,541.1979122856604,0.5325523749997956,100,mac,phase-27,with +17,2609.8641773866566,4.184513252268183,93.2979074725714,545.7274803078074,0.5370095840044087,100,mac,phase-27,with +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034,100,mac,phase-27,with +19,2571.5775359527493,4.123126548755723,91.9292295310576,537.7216719825263,0.529131666997273,100,mac,phase-27,with +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198,100,mac,phase-27,with +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871,100,mac,phase-27,with +22,2590.805700040584,4.153955933725058,92.61660149833388,541.7423170526872,0.5330880830006208,100,mac,phase-27,with +23,2581.167113924082,4.138501952752755,92.2720395385754,539.7268706702032,0.5311048330040649,100,mac,phase-27,with +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174,100,mac,phase-27,with +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983,100,mac,phase-27,with +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351,100,mac,phase-27,with +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567,100,mac,phase-27,with +28,2612.5537766415023,4.188825608375719,93.39405576434504,546.2898805419278,0.5375629999980447,100,mac,phase-27,with +29,2596.2320891691634,4.162656308793328,92.81058506085604,542.8769851675906,0.5342046250007115,100,mac,phase-27,with +0,245.4849858868351,0.03325453615373,0.0,59.824910540560325,0.077182166998682,100,mac,phase-5,without +1,243.26148489011845,0.0329533303833809,0.0,59.2830413597024,0.0764830830012215,100,mac,phase-5,without +2,227.93765961629927,0.0308774938521131,0.0,55.54861143995156,0.0716651670009014,100,mac,phase-5,without +3,250.7231538165253,0.0339641227061128,0.0,61.101456748297075,0.078829083002347,100,mac,phase-5,without +4,252.5889686193737,0.0342168746436431,0.0,61.55615748391402,0.0794157080017612,100,mac,phase-5,without +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.0827996669977437,100,mac,phase-5,without +6,226.94041043538476,0.0307424018471125,0.0,55.30558092295546,0.0713516250034445,100,mac,phase-5,without +7,242.6599554225411,0.0328718444083637,0.0,59.13644809064636,0.07629395800177,100,mac,phase-5,without +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.076669291993312,100,mac,phase-5,without +9,247.36392063917748,0.0335090653805442,0.0,60.28280861959906,0.0777729170004022,100,mac,phase-5,without +10,248.7334295032324,0.0336945854108957,0.0,60.61655915420145,0.0782035000011092,100,mac,phase-5,without +11,247.311043310453,0.0335019023720472,0.0,60.26992236731305,0.0777562920047785,100,mac,phase-5,without +12,226.72783872430568,0.0307136058960045,0.0,55.25377700691221,0.0712847909962874,100,mac,phase-5,without +13,246.69360768372263,0.0334182616748472,0.0,60.119452753050254,0.0775621659995522,100,mac,phase-5,without +14,247.48014585109556,0.0335248097874689,0.0,60.311132807656584,0.0778094590059481,100,mac,phase-5,without +15,246.05219040943203,0.0333313723123045,0.0,59.963138789835845,0.0773604999994859,100,mac,phase-5,without +16,249.95252500188107,0.0338597297482905,0.0,60.913653817174755,0.078586792005808,100,mac,phase-5,without +17,250.6415207454208,0.0339530643112192,0.0,61.081562695883505,0.0788034170036553,100,mac,phase-5,without +18,246.5275553318546,0.0333957674521612,0.0,60.07898564643816,0.0775099579986999,100,mac,phase-5,without +19,244.4563283517981,0.0331151894272281,0.0,59.57422577958342,0.0768587499987916,100,mac,phase-5,without +20,247.40791776784516,0.0335150254359042,0.0,60.29353075919174,0.0777867500000866,100,mac,phase-5,without +21,250.543583961273,0.0339397973396468,0.0,61.05769541402468,0.0787726250055129,100,mac,phase-5,without +22,245.99334947150876,0.0333234014456121,0.0,59.948799200656225,0.0773420000041369,100,mac,phase-5,without +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.078443917002005,100,mac,phase-5,without +24,244.25754136307833,0.0330882608186234,0.0,59.5257812127036,0.0767962500030989,100,mac,phase-5,without +25,245.0430139869781,0.0331946645877781,0.0,59.717201593412845,0.0770432079953025,100,mac,phase-5,without +26,249.4024129823822,0.0337852090195586,0.0,60.779591026186075,0.0784138330054702,100,mac,phase-5,without +27,246.43412861712733,0.033383111435536,0.0,60.05621747252941,0.0774805839973851,100,mac,phase-5,without +28,257.6022464065648,0.0348959965329944,0.0,62.77789776285696,0.0809919169987551,100,mac,phase-5,without +29,247.07528191230236,0.0334699650382419,0.0,60.21246710379734,0.0776821670006029,100,mac,phase-5,without +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881,100,mac,phase-5,with +1,1809.1855259194288,0.265466227826992,0.0,478.8678917214152,0.515494541003136,100,mac,phase-5,with +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585,100,mac,phase-5,with +3,1862.4952107043605,0.2732884885756843,0.0,492.97827232946247,0.5306841669953428,100,mac,phase-5,with +4,1810.0879382553949,0.2655986410015069,0.0,479.1067485365934,0.5157516670005862,100,mac,phase-5,with +5,1839.304281081116,0.2698856266144958,0.0,486.83993470922366,0.5240763330002665,100,mac,phase-5,with +6,1809.758034772763,0.2655502334546707,0.0,479.0194273730442,0.5156576669978676,100,mac,phase-5,with +7,1808.8649860767891,0.2654191942300088,0.0,478.78304899165727,0.5154032089994871,100,mac,phase-5,with +8,1813.8231895913325,0.2661467235878039,0.0,480.09542101194984,0.5168159589957213,100,mac,phase-5,with +9,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819,100,mac,phase-5,with +10,1809.8633196014089,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656,100,mac,phase-5,with +11,1813.954652607598,0.2661660134784905,0.0,480.13021756351213,0.5168534169933992,100,mac,phase-5,with +12,1807.167211573315,0.2651700756146534,0.0,478.33367014938295,0.5149194590048864,100,mac,phase-5,with +13,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542,100,mac,phase-5,with +14,1823.9124415236115,0.2676271442598061,0.0,482.76591485165784,0.5196907080025994,100,mac,phase-5,with +15,1819.837052677855,0.2670291524627728,0.0,481.6872123987844,0.5185295000046608,100,mac,phase-5,with +16,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613,100,mac,phase-5,with +17,1808.2260893946043,0.2653254473534387,0.0,478.6139413446843,0.5152211669992539,100,mac,phase-5,with +18,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068,100,mac,phase-5,with +19,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739,100,mac,phase-5,with +20,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421,100,mac,phase-5,with +21,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996,100,mac,phase-5,with +22,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448,100,mac,phase-5,with +23,1802.588046066788,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584,100,mac,phase-5,with +24,1837.076846539877,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271,100,mac,phase-5,with +25,1807.5499030880776,0.2652262288788654,0.0,478.4349636188634,0.5150284999981523,100,mac,phase-5,with +26,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453,100,mac,phase-5,with +27,1809.485601206097,0.2655102586095041,0.0,478.94731774921934,0.5155800420034211,100,mac,phase-5,with +28,1807.857580198864,0.2652713750956679,0.0,478.5164017506981,0.5151161670000874,100,mac,phase-5,with +29,1807.3931392937277,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981,100,mac,phase-5,with +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.0812097079979139,100,mac,phase-2,without +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.0806707500014454,100,mac,phase-2,without +2,387.06785099851174,1.270425839345776,15.004759237678492,78.69773037244646,0.0837934169976506,100,mac,phase-2,without +3,384.2510321293888,1.2611805365729962,14.895564715740525,78.12502134662994,0.0831836249999469,100,mac,phase-2,without +4,371.5677530253622,1.219551748597392,14.403894976677307,75.54628669689791,0.0804379170003812,100,mac,phase-2,without +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.0769082499973592,100,mac,phase-2,without +6,310.8037935940057,1.020113577838926,12.048368473394882,63.191900551535625,0.0672835830046096,100,mac,phase-2,without +7,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.0817295420056325,100,mac,phase-2,without +8,383.3779823279192,1.2583150311481424,14.861720773290225,77.94751490247413,0.0829946249941713,100,mac,phase-2,without +9,392.08615035475583,1.2868967943871166,15.199294571545131,79.71803926311544,0.0848797910002758,100,mac,phase-2,without +10,367.5730098278583,1.2064402877344769,14.249037992972063,74.73408485101137,0.0795731249963864,100,mac,phase-2,without +11,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.0822060409991536,100,mac,phase-2,without +12,382.579806971804,1.2556952770297831,14.83077935302744,77.78523175546657,0.0828218339956947,100,mac,phase-2,without +13,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.0843364579995977,100,mac,phase-2,without +14,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.0827404169976944,100,mac,phase-2,without +15,380.74632391965866,1.2496774580881194,14.759704032013737,77.41245226859378,0.0824249169963877,100,mac,phase-2,without +16,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.0817379159998381,100,mac,phase-2,without +17,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.0794940830019186,100,mac,phase-2,without +18,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.0817125419998774,100,mac,phase-2,without +19,384.8167037344661,1.2630371718420337,14.917493083647802,78.24003237464706,0.0833060830045724,100,mac,phase-2,without +20,378.67475235924377,1.242878190126144,14.679399164462836,76.99126518294923,0.0819764580010087,100,mac,phase-2,without +21,383.49654619559766,1.2587041789441245,14.866316924286007,77.971621030809,0.0830202919969451,100,mac,phase-2,without +22,382.5284125446302,1.2555265913378268,14.828787038233251,77.77478236071079,0.0828107080014888,100,mac,phase-2,without +23,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.0843647500005317,100,mac,phase-2,without +24,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.0826560839996091,100,mac,phase-2,without +25,373.2033724819483,1.2249201438687207,14.46730007758462,75.87883702019211,0.0807919999933801,100,mac,phase-2,without +26,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.0832666250062175,100,mac,phase-2,without +27,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.0812299999961396,100,mac,phase-2,without +28,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.0742695840017404,100,mac,phase-2,without +29,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.0825761250016512,100,mac,phase-2,without +0,2707.064349798109,3.6012385418086788,92.0649964253126,546.2211903089626,0.5340038330032257,100,mac,phase-2,with +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182,100,mac,phase-2,with +2,2725.020067211528,3.625125237224638,92.67565537015948,549.8442269534888,0.5375458330017864,100,mac,phase-2,with +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456,100,mac,phase-2,with +4,2738.164742265457,3.642611748185226,93.12269478462412,552.4965096946497,0.5401387919991976,100,mac,phase-2,with +5,2721.689276555712,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198,100,mac,phase-2,with +6,2720.5877475209177,3.619228871849861,92.52491588127285,548.9498902756719,0.5366714999981923,100,mac,phase-2,with +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976,100,mac,phase-2,with +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933,100,mac,phase-2,with +9,2684.9247119572583,3.571785929387366,91.31204584294925,541.7539380490226,0.5296365000031074,100,mac,phase-2,with +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256,100,mac,phase-2,with +11,2721.140522061294,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162,100,mac,phase-2,with +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359,100,mac,phase-2,with +13,2693.7475289550293,3.5835230233438016,91.6121024764096,543.5341726425446,0.5313769159984076,100,mac,phase-2,with +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352,100,mac,phase-2,with +15,2781.6217251628236,3.7004230675697793,94.60063045889038,561.2650950913014,0.5487112499977229,100,mac,phase-2,with +16,2691.344864372215,3.580326731279553,91.530389861693,543.0493720841699,0.5309029589989223,100,mac,phase-2,with +17,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008,100,mac,phase-2,with +18,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486,100,mac,phase-2,with +19,2696.253071379015,3.586856174972084,91.69731388053631,544.0397315020158,0.5318711669970071,100,mac,phase-2,with +20,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715,100,mac,phase-2,with +21,2711.4054258427636,3.607013524721848,92.21263279404648,547.097116189524,0.5348601670048083,100,mac,phase-2,with +22,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715,100,mac,phase-2,with +23,2722.2352935902622,3.6214206211537783,92.580947546348,549.2823258807412,0.5369964999990771,100,mac,phase-2,with +24,2705.6396482764453,3.599343245145054,92.01654351708792,545.9337194326031,0.5337227920026635,100,mac,phase-2,with +25,2704.6099320015473,3.5979734018546403,91.98152372704315,545.7259471831561,0.5335196670057485,100,mac,phase-2,with +26,2732.7517068573975,3.635410725519794,92.93860197370508,551.4042879142569,0.5390709999992396,100,mac,phase-2,with +27,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095,100,mac,phase-2,with +28,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125,100,mac,phase-2,with +29,2711.9605221173633,3.607751975619275,92.23151115448908,547.2091214131422,0.5349696670018602,100,mac,phase-2,with +0,247.6358913639864,0.0,0.0,60.23755530694149,0.0770938330024364,100,mac,phase-3,without +1,224.91484920266885,0.0,0.0,54.710650356753966,0.070020334002038,100,mac,phase-3,without +2,250.59815225213995,0.0,0.0,60.95812676005715,0.0780160419963067,100,mac,phase-3,without +3,250.60497804678556,0.0,0.0,60.9597871380428,0.0780181669979356,100,mac,phase-3,without +4,252.79538510278,0.0,0.0,61.4926047577078,0.0787000829950557,100,mac,phase-3,without +5,249.1592469382651,0.0,0.0,60.608112317689475,0.0775680829974589,100,mac,phase-3,without +6,251.2633310797192,0.0,0.0,61.11993184491222,0.0782231250050244,100,mac,phase-3,without +7,246.2273696215814,0.0,0.0,59.894931683637864,0.0766553329958696,100,mac,phase-3,without +8,248.6098367504889,0.0,0.0,60.47446801277843,0.0773970410009496,100,mac,phase-3,without +9,247.39203882310005,0.0,0.0,60.17823805354388,0.0770179169994662,100,mac,phase-3,without +10,255.71776095388975,0.0,0.0,62.20347415547271,0.0796098750070086,100,mac,phase-3,without +11,249.22121548631523,0.0,0.0,60.62318619821583,0.0775873750026221,100,mac,phase-3,without +12,249.92976133402135,0.0,0.0,60.79554033256047,0.0778079590018023,100,mac,phase-3,without +13,247.14791645978391,0.0,0.0,60.11885516570433,0.0769419169955654,100,mac,phase-3,without +14,238.7495165766193,0.0,0.0,58.07594016390296,0.0743273330008378,100,mac,phase-3,without +15,250.1377439451952,0.0,0.0,60.84613220748805,0.0778727080032695,100,mac,phase-3,without +16,250.0574405131458,0.0,0.0,60.826598357193696,0.0778477079948061,100,mac,phase-3,without +17,252.51927631291608,0.0,0.0,61.42544115549913,0.0786141249991487,100,mac,phase-3,without +18,247.5537152778006,0.0,0.0,60.21756593258521,0.0770682500005932,100,mac,phase-3,without +19,246.7884238216119,0.0,0.0,60.03140840039478,0.0768299999981536,100,mac,phase-3,without +20,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801,100,mac,phase-3,without +21,242.33265448766724,0.0,0.0,58.94754026556956,0.0754428329964866,100,mac,phase-3,without +22,255.49612352817607,0.0,0.0,62.14956074003047,0.0795408749982016,100,mac,phase-3,without +23,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822,100,mac,phase-3,without +24,240.24168874114216,0.0,0.0,58.43891179452095,0.0747918749984819,100,mac,phase-3,without +25,253.03723326850667,0.0,0.0,61.55143444583822,0.0787753749973489,100,mac,phase-3,without +26,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577,100,mac,phase-3,without +27,252.68015295270183,0.0,0.0,61.46457447915958,0.0786642090024543,100,mac,phase-3,without +28,247.46926179214807,0.0,0.0,60.197022579661535,0.0770419580003363,100,mac,phase-3,without +29,247.49469226985136,0.0,0.0,60.20320855617205,0.0770498749989201,100,mac,phase-3,without +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286,100,mac,phase-3,with +1,1747.7432374054538,0.4984532476676833,0.0,475.82347022357055,0.5151742909947643,100,mac,phase-3,with +2,1751.518133922168,0.4995298414075961,0.0,476.8511866076913,0.516286999998556,100,mac,phase-3,with +3,1754.769163024236,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799,100,mac,phase-3,with +4,1751.2478613919254,0.4994527601650134,0.0,476.77760485352184,0.5162073329993291,100,mac,phase-3,with +5,1736.266881541672,0.4951802114863595,0.0,472.6990298848788,0.5117914579968783,100,mac,phase-3,with +6,1748.792095154288,0.4987523800230881,0.0,476.1090219700399,0.5154834580025636,100,mac,phase-3,with +7,1799.850348084657,0.5133141025053685,0.0,490.0096422516248,0.5305336660021567,100,mac,phase-3,with +8,1753.1379269695713,0.4999918034897532,0.0,477.2921756113184,0.5167644589964766,100,mac,phase-3,with +9,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888,100,mac,phase-3,with +10,1761.7996142862123,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684,100,mac,phase-3,with +11,1740.7653737649098,0.4964631734285321,0.0,473.9237453548768,0.5131174580019433,100,mac,phase-3,with +12,1742.9166639927869,0.497076717556646,0.0,474.5094345795743,0.5137515839960543,100,mac,phase-3,with +13,1749.7232016130597,0.499017929921017,0.0,476.36251590260287,0.5157579160004389,100,mac,phase-3,with +14,1753.2353196533288,0.5000195797090965,0.0,477.3186907903035,0.5167931669930113,100,mac,phase-3,with +15,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666,100,mac,phase-3,with +16,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121,100,mac,phase-3,with +17,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543,100,mac,phase-3,with +18,1757.0913484891291,0.5011193122414096,0.0,478.3684954656496,0.517929790999915,100,mac,phase-3,with +19,1744.1792476012558,0.4974368041452388,0.0,474.85317323704504,0.5141237499992712,100,mac,phase-3,with +20,1749.1235756856784,0.4988469176782046,0.0,476.1992676156142,0.5155811670047115,100,mac,phase-3,with +21,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054,100,mac,phase-3,with +22,1746.9655037563955,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537,100,mac,phase-3,with +23,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729,100,mac,phase-3,with +24,1748.172110645285,0.498575561549183,0.0,475.9402310548502,0.5153007080007228,100,mac,phase-3,with +25,1751.4983453162597,0.4995241977325581,0.0,476.8457991555,0.5162811670015799,100,mac,phase-3,with +26,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782,100,mac,phase-3,with +27,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758,100,mac,phase-3,with +28,1772.4144105029477,0.5054894221417285,0.0,482.5402023764941,0.5224464999992051,100,mac,phase-3,with +29,1751.7315782126657,0.4995907153377694,0.0,476.9092968614347,0.5163499159971252,100,mac,phase-3,with +0,258.05412357567263,0.0,0.0,60.88917522572051,0.0776646669983165,100,mac,phase-4,without +1,257.9959768285465,0.0,0.0,60.87545520673569,0.0776471669960301,100,mac,phase-4,without +2,256.0814273269359,0.0,0.0,60.42370757152421,0.077070958999684,100,mac,phase-4,without +3,258.3119063629601,0.0,0.0,60.9500003777771,0.0777422500032116,100,mac,phase-4,without +4,254.87501871078396,0.0,0.0,60.13904935872431,0.0767078749995562,100,mac,phase-4,without +5,218.53039916041607,0.0,0.0,51.56335261088469,0.0657694999972591,100,mac,phase-4,without +6,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612,100,mac,phase-4,without +7,256.1942552713655,0.0,0.0,60.45032989549073,0.0771049160030088,100,mac,phase-4,without +8,269.4083809346708,0.0,0.0,63.568269658742544,0.0810818750032922,100,mac,phase-4,without +9,256.7634055100046,0.0,0.0,60.584623772023555,0.0772762089982279,100,mac,phase-4,without +10,265.09209197392056,0.0,0.0,62.54981945452058,0.0797828330032643,100,mac,phase-4,without +11,247.3756110807905,0.0,0.0,58.36952621007416,0.0744508329953532,100,mac,phase-4,without +12,258.04927578522654,0.0,0.0,60.88803136505345,0.0776632079941919,100,mac,phase-4,without +13,256.90531014005614,0.0,0.0,60.61810688697954,0.0773189169995021,100,mac,phase-4,without +14,259.4555995489818,0.0,0.0,61.21986056773728,0.0780864589978591,100,mac,phase-4,without +15,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601,100,mac,phase-4,without +16,255.6555672710305,0.0,0.0,60.32322373810831,0.0769427910054219,100,mac,phase-4,without +17,257.38764897090465,0.0,0.0,60.73191717291009,0.077464082998631,100,mac,phase-4,without +18,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146,100,mac,phase-4,without +19,236.34739083788008,0.0,0.0,55.7673618830953,0.071131750002678,100,mac,phase-4,without +20,255.39654180892845,0.0,0.0,60.26210537064603,0.0768648340017534,100,mac,phase-4,without +21,256.04875219815136,0.0,0.0,60.41599770967616,0.0770611250045476,100,mac,phase-4,without +22,255.4578716622009,0.0,0.0,60.27657645962043,0.0768832920002751,100,mac,phase-4,without +23,258.9686854110115,0.0,0.0,61.10497071495777,0.0779399160019238,100,mac,phase-4,without +24,258.4434309763645,0.0,0.0,60.98103427532196,0.0777818340066005,100,mac,phase-4,without +25,257.6428035065198,0.0,0.0,60.792122175695674,0.0775408749977941,100,mac,phase-4,without +26,258.0723949714545,0.0,0.0,60.893486453938706,0.0776701660070102,100,mac,phase-4,without +27,257.6979033528984,0.0,0.0,60.80512326304344,0.0775574579965905,100,mac,phase-4,without +28,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646,100,mac,phase-4,without +29,236.55450287180864,0.0,0.0,55.81623101469642,0.0711940830005914,100,mac,phase-4,without +0,1776.691736185956,0.1001837341608155,0.0,477.44228243239314,0.5172290420014178,100,mac,phase-4,with +1,1770.7935195244447,0.0998511467130299,0.0,475.8572815187299,0.5155119580012979,100,mac,phase-4,with +2,1771.6266559565545,0.0998981254416041,0.0,476.0811664795379,0.5157544999965467,100,mac,phase-4,with +3,1771.6970738633242,0.0999020961522841,0.0,476.1000895630688,0.5157749999998487,100,mac,phase-4,with +4,1767.255164562743,0.0996516266693274,0.0,474.9064354971249,0.5144818750050035,100,mac,phase-4,with +5,1778.5290421222858,0.1002873357962306,0.0,477.93601329290306,0.5177639169996837,100,mac,phase-4,with +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503,100,mac,phase-4,with +7,1775.7415239627014,0.100130153786217,0.0,477.1869362271816,0.5169524169978104,100,mac,phase-4,with +8,1770.133281321143,0.0998139173348012,0.0,475.6798587118843,0.5153197499967064,100,mac,phase-4,with +9,1767.617129727283,0.0996720370877929,0.0,475.0037047480587,0.5145872500070254,100,mac,phase-4,with +10,1762.247909439489,0.0993692785805023,0.0,473.560858621814,0.5130241669976385,100,mac,phase-4,with +11,1773.6424386464917,0.1000117909880923,0.0,476.6228585855853,0.5163413330010371,100,mac,phase-4,with +12,1769.1378436654545,0.0997577867976686,0.0,475.41235928208937,0.5150299590022769,100,mac,phase-4,with +13,1777.9878823036338,0.1002568209858636,0.0,477.7905898782973,0.5176063749968307,100,mac,phase-4,with +14,1755.9015670313545,0.0990114223087807,0.0,471.85543491621286,0.5111766249974607,100,mac,phase-4,with +15,1776.3105898766091,0.1001622421598373,0.0,477.3398587197316,0.5171180830002413,100,mac,phase-4,with +16,1787.7577916465848,0.1008077246572515,0.0,480.4160131415751,0.5204505829970003,100,mac,phase-4,with +17,1773.7231650386664,0.1000163429715617,0.0,476.6445518214728,0.5163648340021609,100,mac,phase-4,with +18,1769.8345789266932,0.0997970741646162,0.0,475.599589777173,0.5152327920004609,100,mac,phase-4,with +19,1774.2379885508392,0.1000453727356073,0.0,476.7828980003261,0.5165147090010578,100,mac,phase-4,with +20,1766.4500819098491,0.0996062298315799,0.0,474.6900893006994,0.5142475000029663,100,mac,phase-4,with +21,1771.0441351066002,0.0998652783737721,0.0,475.9246283032735,0.515584917004162,100,mac,phase-4,with +22,1766.2073393898709,0.0995925421154749,0.0,474.62485820831506,0.5141768329995102,100,mac,phase-4,with +23,1761.5407248569811,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116,100,mac,phase-4,with +24,1766.0573458461463,0.0995840843098779,0.0,474.5845511261085,0.5141331670020008,100,mac,phase-4,with +25,1775.480603344183,0.1001154410471693,0.0,477.1168202171266,0.5168764580012066,100,mac,phase-4,with +26,1790.8488796480174,0.1009820243020892,0.0,481.24666714898984,0.5213504580024164,100,mac,phase-4,with +27,1777.4756350505515,0.1002279364913943,0.0,477.6529360058218,0.5174572499963688,100,mac,phase-4,with +28,1768.5382885241104,0.0997239792036601,0.0,475.25124355824306,0.5148554170009447,100,mac,phase-4,with +29,1803.8391230015989,0.1017145155161324,0.0,484.7374761113821,0.5251321670002653,100,mac,phase-4,with +0,248.82851645392185,0.0,0.0,60.371399972863664,0.0773350419985945,100,mac,phase-22,without +1,240.3368936219519,0.0,0.0,58.3111411017608,0.0746958750023623,100,mac,phase-22,without +2,248.97893642549755,0.0,0.0,60.407895244375624,0.0773817920053261,100,mac,phase-22,without +3,251.12462953695908,0.0,0.0,60.92848869924618,0.0780486660005408,100,mac,phase-22,without +4,249.99473921307967,0.0,0.0,60.654351869430606,0.0776974999971571,100,mac,phase-22,without +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547,100,mac,phase-22,without +6,251.56958945104645,0.0,0.0,61.036445991794814,0.078186958002334,100,mac,phase-22,without +7,253.98636346091425,0.0,0.0,61.622809775468184,0.0789380830028676,100,mac,phase-22,without +8,258.675926589324,0.0,0.0,62.76060336664463,0.0803955829978804,100,mac,phase-22,without +9,253.03209606091505,0.0,0.0,61.39128302078818,0.0786414999965927,100,mac,phase-22,without +10,245.9887712196412,0.0,0.0,59.682413847788496,0.0764524590049404,100,mac,phase-22,without +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585,100,mac,phase-22,without +12,253.69195862142328,0.0,0.0,61.551380533465895,0.0788465829973574,100,mac,phase-22,without +13,249.9323994112021,0.0,0.0,60.639226830037956,0.0776781250024214,100,mac,phase-22,without +14,249.64268574376183,0.0,0.0,60.56893577198762,0.0775880829969537,100,mac,phase-22,without +15,248.90372320903617,0.0,0.0,60.389646824785515,0.0773584159978781,100,mac,phase-22,without +16,249.89043626314705,0.0,0.0,60.62904562560264,0.0776650830011931,100,mac,phase-22,without +17,251.38565561954871,0.0,0.0,60.99181950336761,0.0781297920038923,100,mac,phase-22,without +18,248.0580477823997,0.0,0.0,60.18446692757648,0.0770955830012098,100,mac,phase-22,without +19,242.71331647279524,0.0,0.0,58.88771478582841,0.075434459002281,100,mac,phase-22,without +20,251.9422866197867,0.0,0.0,61.12687071546968,0.0783027909928932,100,mac,phase-22,without +21,252.17301315190568,0.0,0.0,61.182850166512566,0.0783745000007911,100,mac,phase-22,without +22,251.8146597287694,0.0,0.0,61.09590555844225,0.078263124996738,100,mac,phase-22,without +23,248.1852757086486,0.0,0.0,60.2153352867692,0.0771351250004954,100,mac,phase-22,without +24,252.43765573938865,0.0,0.0,61.24705841613956,0.0784567500013508,100,mac,phase-22,without +25,247.58493442148287,0.0,0.0,60.069678975007925,0.0769485410055494,100,mac,phase-22,without +26,252.21926527656947,0.0,0.0,61.19407197323097,0.0783888750011101,100,mac,phase-22,without +27,249.8356029545924,0.0,0.0,60.61574183048396,0.0776480409986106,100,mac,phase-22,without +28,229.06746313872625,0.0,0.0,55.5769235576266,0.0711933749989839,100,mac,phase-22,without +29,254.86381530062064,0.0,0.0,61.83569934587096,0.0792107919987756,100,mac,phase-22,without +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073,100,mac,phase-22,with +1,1764.845139373689,0.1664885418827298,0.0,479.25391666362606,0.5172321659993031,100,mac,phase-22,with +2,1769.8090308676667,0.1669568158623888,0.0,480.6018901414725,0.5186869589961134,100,mac,phase-22,with +3,1761.667486286026,0.1661887746015269,0.0,478.39100656795546,0.5163008750023437,100,mac,phase-22,with +4,1770.120524418555,0.1669862009375641,0.0,480.6864780188722,0.5187782499997411,100,mac,phase-22,with +5,1758.7666359534974,0.1659151198024128,0.0,477.6032638632257,0.5154507080005715,100,mac,phase-22,with +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002,100,mac,phase-22,with +7,1766.3960797342909,0.1666348514899712,0.0,479.6750834990312,0.5176867080008378,100,mac,phase-22,with +8,1777.8972580842958,0.1677198273729572,0.0,482.7982950757946,0.5210574169977917,100,mac,phase-22,with +9,1769.0387471033746,0.1668841503248344,0.0,480.3927151250683,0.5184612080047373,100,mac,phase-22,with +10,1764.9314380729104,0.1664966829622382,0.0,479.27735157509903,0.5172574579992215,100,mac,phase-22,with +11,1772.566856441291,0.1672169782688663,0.0,481.3507936447587,0.5194952090023435,100,mac,phase-22,with +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439,100,mac,phase-22,with +13,1762.1909595977615,0.1662381570127317,0.0,478.5331587768496,0.5164542919956148,100,mac,phase-22,with +14,1773.2691781297697,0.1672832325317695,0.0,481.5415131659517,0.5197010420015431,100,mac,phase-22,with +15,1763.9601307223377,0.1664050536510261,0.0,479.0135874398439,0.5169727920001606,100,mac,phase-22,with +16,1762.9672077460498,0.1663113852067893,0.0,478.7439534562638,0.5166817909994279,100,mac,phase-22,with +17,1765.03607677191,0.1665065541651173,0.0,479.3057668197068,0.5172881249964121,100,mac,phase-22,with +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674,100,mac,phase-22,with +19,1759.353089729241,0.1659704435426248,0.0,477.7625187818,0.5156225829996401,100,mac,phase-22,with +20,1767.829302824657,0.1667700561134161,0.0,480.06428352807984,0.518106750001607,100,mac,phase-22,with +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435,100,mac,phase-22,with +22,1767.7985939618377,0.166767159160205,0.0,480.05594435856625,0.5180977499985602,100,mac,phase-22,with +23,1772.0661315525292,0.1671697418543195,0.0,481.2148189018443,0.519348459005414,100,mac,phase-22,with +24,1759.33233396092,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604,100,mac,phase-22,with +25,1759.9227696447715,0.1660241849029066,0.0,477.91721866150704,0.5157895419979468,100,mac,phase-22,with +26,1767.522357592919,0.1667411001087618,0.0,479.98093077308187,0.51801679199707,100,mac,phase-22,with +27,1756.276093432469,0.1656801718267677,0.0,476.92694262053374,0.5147207920017536,100,mac,phase-22,with +28,1787.0935630557296,0.1685873705761791,0.0,485.2956049405893,0.5237526249984512,100,mac,phase-22,with +29,1761.5507619170933,0.1661777632841301,0.0,478.3593093896971,0.516266665996227,100,mac,phase-22,with +0,244.30085516419717,0.0,0.0,58.77237786122283,0.0794237919981242,100,mac,phase-25,without +1,225.99531436860696,0.0,0.0,54.36854489113619,0.0734725419970345,100,mac,phase-25,without +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879,100,mac,phase-25,without +3,248.47192239445707,0.0,0.0,59.77582723178127,0.0807798329988145,100,mac,phase-25,without +4,243.27721517189647,0.0,0.0,58.52611692864887,0.0790909999996074,100,mac,phase-25,without +5,245.8384283162675,0.0,0.0,59.14227763182338,0.0799236669990932,100,mac,phase-25,without +6,252.4730483757677,0.0,0.0,60.73839319531787,0.0820806249976158,100,mac,phase-25,without +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987,100,mac,phase-25,without +8,246.1321782239548,0.0,0.0,59.21294615469732,0.0800191669986816,100,mac,phase-25,without +9,245.90750722117627,0.0,0.0,59.15889620443872,0.079946124998969,100,mac,phase-25,without +10,250.79449374512456,0.0,0.0,60.3345769788476,0.0815349160038749,100,mac,phase-25,without +11,249.24756673150785,0.0,0.0,59.96242691450618,0.0810320000018691,100,mac,phase-25,without +12,248.5006329833621,0.0,0.0,59.782734246407195,0.0807891669974196,100,mac,phase-25,without +13,201.25431595629993,0.0,0.0,48.41650961735576,0.0654290829988895,100,mac,phase-25,without +14,241.8498643799761,0.0,0.0,58.18273376682212,0.0786269590025767,100,mac,phase-25,without +15,246.26623584150497,0.0,0.0,59.24519690121452,0.0800627499993424,100,mac,phase-25,without +16,253.02671313402087,0.0,0.0,60.87159041379928,0.0822606250003445,100,mac,phase-25,without +17,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806,100,mac,phase-25,without +18,252.45626002588983,0.0,0.0,60.73435435868744,0.0820751669962192,100,mac,phase-25,without +19,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663,100,mac,phase-25,without +20,225.67067614143417,0.0,0.0,54.29044544877944,0.0733670000045094,100,mac,phase-25,without +21,246.5857465567506,0.0,0.0,59.322062798693686,0.0801666250044945,100,mac,phase-25,without +22,246.7726084003519,0.0,0.0,59.367016856969904,0.0802273750014137,100,mac,phase-25,without +23,246.30570906024255,0.0,0.0,59.25469312227967,0.0800755829986883,100,mac,phase-25,without +24,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335,100,mac,phase-25,without +25,246.2417577120216,0.0,0.0,59.23930810531011,0.0800547920007375,100,mac,phase-25,without +26,245.9956844736978,0.0,0.0,59.18010933854943,0.0799747919954825,100,mac,phase-25,without +27,246.54319742169463,0.0,0.0,59.31182659284212,0.0801527920048101,100,mac,phase-25,without +28,245.51635537810407,0.0,0.0,59.06479533071602,0.0798189589986577,100,mac,phase-25,without +29,232.80692876152213,0.0,0.0,56.00724064877602,0.0756870420009363,100,mac,phase-25,without +0,1747.0589457116464,3.0201243148830725,0.0331881792844293,476.8145717793967,0.5152042500048992,100,mac,phase-25,with +1,1747.3293781548232,3.020591808895897,0.0331933165812735,476.8883793231577,0.5152840000009746,100,mac,phase-25,with +2,1750.1044899098858,3.025389118401999,0.0332460342681538,477.6457743305661,0.5161023750042659,100,mac,phase-25,with +3,1751.6777760699365,3.028108843341962,0.0332759213554061,478.07516211312054,0.5165663340012543,100,mac,phase-25,with +4,1766.1522672194958,3.0531307596165367,0.0335508874683135,482.0256002572614,0.5208348329979344,100,mac,phase-25,with +5,1766.7483783587693,3.0541612513183263,0.0335622115529486,482.1882933812131,0.5210106250015087,100,mac,phase-25,with +6,1754.7747482092896,3.0334625498574375,0.0333347532951366,478.9204005912286,0.517479624999396,100,mac,phase-25,with +7,1753.3064440845665,3.030924306371375,0.0333068605095755,478.51966494107194,0.5170466249983292,100,mac,phase-25,with +8,1749.3128298275074,3.0240205830873874,0.0332309954185427,477.42971117820326,0.5158689160016365,100,mac,phase-25,with +9,1757.5330439768445,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158,100,mac,phase-25,with +10,1749.9246243251405,3.0250781864627907,0.033242617433657,477.59668466935074,0.5160493329967721,100,mac,phase-25,with +11,1748.560030649437,3.022719226251378,0.0332166947939711,477.224254104984,0.5156469170033233,100,mac,phase-25,with +12,1753.7423269355932,3.0316778129431237,0.0333151408015727,478.6386278961962,0.5171751659945585,100,mac,phase-25,with +13,1756.9680215412786,3.0372540407715727,0.0333764180304568,479.51899784357346,0.5181264169950737,100,mac,phase-25,with +14,1753.7127980950845,3.031626766715158,0.0333145798540127,478.63056876260094,0.5171664579975186,100,mac,phase-25,with +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442,100,mac,phase-25,with +16,1746.7611037466984,3.0196094382885876,0.0331825212998745,476.73328351529824,0.5151164169947151,100,mac,phase-25,with +17,1749.0789930550138,3.023616351665171,0.0332265533150018,477.365891476632,0.5157999579969328,100,mac,phase-25,with +18,1745.504313415313,3.0174368367013065,0.0331586465571572,476.3902750866777,0.5147457919956651,100,mac,phase-25,with +19,1750.3038537106063,3.025733756723185,0.0332498215024525,477.7001855257362,0.5161611669973354,100,mac,phase-25,with +20,1748.1413808301063,3.0219955102589178,0.0332087418709771,477.1099944603282,0.5155234579942771,100,mac,phase-25,with +21,1757.5372861178564,3.0382381230737434,0.0333872321216894,479.6743638923129,0.5182942920000642,100,mac,phase-25,with +22,1749.8696629689396,3.024983175284921,0.0332415733547793,477.5816843881149,0.5160331250008312,100,mac,phase-25,with +23,1781.692526770394,3.07999505967033,0.0338460995568168,486.2669123327872,0.5254176250018645,100,mac,phase-25,with +24,1759.469025002054,3.0415775018557194,0.033423928591821,480.2015820786936,0.5188639580010204,100,mac,phase-25,with +25,1751.8266953376512,3.028366278674916,0.0332787503151089,478.1158057771706,0.5166102500006673,100,mac,phase-25,with +26,1755.287352510616,3.034348684076406,0.0333444910338066,479.06030268270024,0.5176307910005562,100,mac,phase-25,with +27,1765.1312939975094,3.0513658128411953,0.0335314924488043,481.746952011972,0.5205337500010501,100,mac,phase-25,with +28,1767.6126601371138,3.0556553270735236,0.0335786299678409,482.4241767479705,0.5212654999995721,100,mac,phase-25,with +29,1751.5500471769017,3.027888039609773,0.0332734949407667,478.0403018139957,0.516528667001694,100,mac,phase-25,with +0,245.52679852308864,0.8392357072842789,0.0,59.08219379281323,0.0801600000049802,100,mac,phase-13,without +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229,100,mac,phase-13,without +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.0804796250013168,100,mac,phase-13,without +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.0806689580058446,100,mac,phase-13,without +4,247.65389493149505,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214,100,mac,phase-13,without +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083,100,mac,phase-13,without +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.0797389169965754,100,mac,phase-13,without +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.080351333002909,100,mac,phase-13,without +8,252.1240294551156,0.861785717306247,0.0,60.66971449835979,0.0823138749983627,100,mac,phase-13,without +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204,100,mac,phase-13,without +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.0808115420004469,100,mac,phase-13,without +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.0807958750010584,100,mac,phase-13,without +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.0805811250029364,100,mac,phase-13,without +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.0759737499975017,100,mac,phase-13,without +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.0750240000052144,100,mac,phase-13,without +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702,100,mac,phase-13,without +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.0801142499985871,100,mac,phase-13,without +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.0833885419997386,100,mac,phase-13,without +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879,100,mac,phase-13,without +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.0807840420020511,100,mac,phase-13,without +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.0801257920029456,100,mac,phase-13,without +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.0801382080026087,100,mac,phase-13,without +22,198.5005478535641,0.6784951731390624,0.0,47.76606018898999,0.064806791000592,100,mac,phase-13,without +23,242.797444696174,0.8299064967739063,0.0,58.42541737288301,0.0792689160007285,100,mac,phase-13,without +24,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.0803952499991282,100,mac,phase-13,without +25,248.27937873327463,0.8486443079480266,0.0,59.74455927954107,0.0810586669977055,100,mac,phase-13,without +26,247.81495449698696,0.8470568584119051,0.0,59.63280283219813,0.0809070409959531,100,mac,phase-13,without +27,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.0825096659973496,100,mac,phase-13,without +28,248.93357471888788,0.8508804167312274,0.0,59.9019813378784,0.0812722499977098,100,mac,phase-13,without +29,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.0796597500011557,100,mac,phase-13,without +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839,100,mac,phase-13,with +1,1753.2505788590777,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426,100,mac,phase-13,with +2,1752.8381169148636,0.8314540247964403,0.0,476.3898980473684,0.5165165830039768,100,mac,phase-13,with +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984,100,mac,phase-13,with +4,1765.114376950317,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311,100,mac,phase-13,with +5,1756.9934111913135,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252,100,mac,phase-13,with +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978,100,mac,phase-13,with +7,1763.462414839216,0.8364936318112554,0.0,479.2773912825768,0.5196472919997177,100,mac,phase-13,with +8,1753.3060095523142,0.8316759684048242,0.0,476.517062857228,0.5166544590028934,100,mac,phase-13,with +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468,100,mac,phase-13,with +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776,100,mac,phase-13,with +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499,100,mac,phase-13,with +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328,100,mac,phase-13,with +13,1773.3545454320447,0.841185937230592,0.0,481.9658945956399,0.5225622500001919,100,mac,phase-13,with +14,1776.3548905408898,0.8426091428263935,0.0,482.7813344738104,0.523446375002095,100,mac,phase-13,with +15,1744.0009641467575,0.827262145257835,0.0,473.9881187469291,0.5139124999986961,100,mac,phase-13,with +16,1748.8014619995813,0.8295392484439423,0.0,475.2928077884412,0.5153270839946344,100,mac,phase-13,with +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871,100,mac,phase-13,with +18,1750.578277165131,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152,100,mac,phase-13,with +19,1747.6397256783089,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122,100,mac,phase-13,with +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235,100,mac,phase-13,with +21,1752.5626705211123,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282,100,mac,phase-13,with +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452,100,mac,phase-13,with +23,1783.0733219996505,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041,100,mac,phase-13,with +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799,100,mac,phase-13,with +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868,100,mac,phase-13,with +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653,100,mac,phase-13,with +27,1752.178208974687,0.8311409992480111,0.0,476.2105469291404,0.5163221250040806,100,mac,phase-13,with +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269,100,mac,phase-13,with +29,1752.354532351862,0.831224637765569,0.0,476.2584684541605,0.5163740829957533,100,mac,phase-13,with +0,227.2823037447636,0.0,0.0,57.07730787818506,0.0794794169996748,100,mac,phase-14,without +1,228.76466537890357,0.0,0.0,57.449572722321946,0.0799977910064626,100,mac,phase-14,without +2,229.7965197297261,0.0,0.0,57.708701864789106,0.0803586250040098,100,mac,phase-14,without +3,229.99490705767593,0.0,0.0,57.75852278973555,0.0804280000011203,100,mac,phase-14,without +4,229.18670205564752,0.0,0.0,57.55555861272128,0.0801453749954816,100,mac,phase-14,without +5,231.26160626838956,0.0,0.0,58.07662842157634,0.0808709580014692,100,mac,phase-14,without +6,227.8381457495341,0.0,0.0,57.21689624346994,0.0796737920027226,100,mac,phase-14,without +7,220.54535576053524,0.0,0.0,55.385461007929194,0.0771235419961158,100,mac,phase-14,without +8,228.6866229862869,0.0,0.0,57.42997396959223,0.0799704999953974,100,mac,phase-14,without +9,229.87968653815292,0.0,0.0,57.72958750987283,0.0803877079961239,100,mac,phase-14,without +10,227.81550598444144,0.0,0.0,57.21121072893056,0.0796658749968628,100,mac,phase-14,without +11,227.62605500780717,0.0,0.0,57.16363398607371,0.0795996249944437,100,mac,phase-14,without +12,229.86336373993495,0.0,0.0,57.72548837252703,0.0803820000000996,100,mac,phase-14,without +13,231.66171813641745,0.0,0.0,58.17710834412581,0.081010875001084,100,mac,phase-14,without +14,230.9662314522403,0.0,0.0,58.002451070137006,0.0807676669937791,100,mac,phase-14,without +15,231.48180120147975,0.0,0.0,58.131925881088705,0.0809479590025148,100,mac,phase-14,without +16,229.71871471960463,0.0,0.0,57.68916272582404,0.0803314170043449,100,mac,phase-14,without +17,231.9388627509407,0.0,0.0,58.246707552816034,0.0811077910038875,100,mac,phase-14,without +18,221.67276777003045,0.0,0.0,55.668587504410795,0.0775177920004352,100,mac,phase-14,without +19,231.92921431455932,0.0,0.0,58.24428454510795,0.0811044169968226,100,mac,phase-14,without +20,229.2441321614661,0.0,0.0,57.569981010669885,0.0801654579991009,100,mac,phase-14,without +21,228.92075580272544,0.0,0.0,57.48877164379768,0.0800523750003776,100,mac,phase-14,without +22,229.27058667095508,0.0,0.0,57.57662452034042,0.0801747090008575,100,mac,phase-14,without +23,230.96611135654717,0.0,0.0,58.002420910556886,0.0807676249969517,100,mac,phase-14,without +24,215.5182335244439,0.0,0.0,54.12300194761942,0.0753655839944258,100,mac,phase-14,without +25,231.36241133068287,0.0,0.0,58.1019435538211,0.0809062089974759,100,mac,phase-14,without +26,229.37019641490616,0.0,0.0,57.601639472800365,0.0802095420003752,100,mac,phase-14,without +27,230.27086205486523,0.0,0.0,57.82782325033272,0.0805245000010472,100,mac,phase-14,without +28,228.54089874330737,0.0,0.0,57.39337830268453,0.0799195409999811,100,mac,phase-14,without +29,229.6250615930292,0.0,0.0,57.66564365614186,0.0802986670023528,100,mac,phase-14,without +0,1756.762206346076,1.7661260064937123,0.0,477.9203619836382,0.5165056249970803,100,mac,phase-14,with +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214,100,mac,phase-14,with +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192,100,mac,phase-14,with +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793,100,mac,phase-14,with +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873,100,mac,phase-14,with +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208,100,mac,phase-14,with +6,1765.817171014456,1.7752292354514725,0.0,480.3837300914154,0.5191678749979474,100,mac,phase-14,with +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429,100,mac,phase-14,with +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212,100,mac,phase-14,with +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823,100,mac,phase-14,with +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864,100,mac,phase-14,with +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192,100,mac,phase-14,with +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042,100,mac,phase-14,with +13,1755.3462952571251,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376,100,mac,phase-14,with +14,1758.3116163303305,1.7676836750603675,0.0,478.34187297576966,0.5169611669989536,100,mac,phase-14,with +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556,100,mac,phase-14,with +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374,100,mac,phase-14,with +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569,100,mac,phase-14,with +18,1756.8116672700412,1.7661757310516548,0.0,477.9338176366573,0.5165201670024544,100,mac,phase-14,with +19,1752.963015612889,1.7623065655168555,0.0,476.88680684231593,0.5153886249972857,100,mac,phase-14,with +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859,100,mac,phase-14,with +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751,100,mac,phase-14,with +22,1757.216415420918,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844,100,mac,phase-14,with +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327,100,mac,phase-14,with +24,1755.7857633216242,1.765144358884768,0.0,477.6547244363272,0.5162185410008533,100,mac,phase-14,with +25,1762.728840517084,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231,100,mac,phase-14,with +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085,100,mac,phase-14,with +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424,100,mac,phase-14,with +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666,100,mac,phase-14,with +29,1755.9440640749146,1.7653035034042843,0.0,477.6977895438538,0.5162650830025086,100,mac,phase-14,with +0,252.0569260482816,0.0,0.0,59.22685631305648,0.080362166998384,100,mac,phase-15,without +1,252.5636013837425,0.0,0.0,59.34591190800159,0.080523707998509,100,mac,phase-15,without +2,255.97155373331972,0.0,0.0,60.14669253837193,0.0816102499957196,100,mac,phase-15,without +3,234.60118746361675,0.0,0.0,55.1252093668655,0.0747968330033472,100,mac,phase-15,without +4,253.97385574356483,0.0,0.0,59.6772851959471,0.0809733330024755,100,mac,phase-15,without +5,252.33189155253675,0.0,0.0,59.2914660925491,0.080449833003513,100,mac,phase-15,without +6,255.14612719979553,0.0,0.0,59.952738658728656,0.081347082996217,100,mac,phase-15,without +7,244.04078157036597,0.0,0.0,57.34326975734617,0.077806415996747,100,mac,phase-15,without +8,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253,100,mac,phase-15,without +9,252.32235341535025,0.0,0.0,59.289224877084415,0.0804467920024762,100,mac,phase-15,without +10,251.56057298405543,0.0,0.0,59.110226184789994,0.0802039170011994,100,mac,phase-15,without +11,251.38231558091536,0.0,0.0,59.06834030699232,0.0801470840015099,100,mac,phase-15,without +12,236.56595209719924,0.0,0.0,55.58687822265356,0.0754232500039506,100,mac,phase-15,without +13,257.3785429826992,0.0,0.0,60.477298609839494,0.0820588339993264,100,mac,phase-15,without +14,255.38228149183257,0.0,0.0,60.00822880748779,0.0814223749985103,100,mac,phase-15,without +15,252.88574631214084,0.0,0.0,59.42160763152467,0.0806264160055434,100,mac,phase-15,without +16,251.8723956183979,0.0,0.0,59.18349643627208,0.0803033339980174,100,mac,phase-15,without +17,252.58816970012697,0.0,0.0,59.35168482671154,0.0805315410034381,100,mac,phase-15,without +18,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807,100,mac,phase-15,without +19,256.3833495792202,0.0,0.0,60.24345390802693,0.0817415409983368,100,mac,phase-15,without +20,253.93595723964492,0.0,0.0,59.668380028049775,0.0809612499942886,100,mac,phase-15,without +21,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426,100,mac,phase-15,without +22,253.27297696815177,0.0,0.0,59.51259681711514,0.0807498750000377,100,mac,phase-15,without +23,250.3815046876699,0.0,0.0,58.83317564042237,0.0798280000017257,100,mac,phase-15,without +24,252.92717650013057,0.0,0.0,59.43134265380538,0.0806396250045509,100,mac,phase-15,without +25,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173,100,mac,phase-15,without +26,252.25818664902565,0.0,0.0,59.27414734714401,0.0804263340032775,100,mac,phase-15,without +27,244.1120086467984,0.0,0.0,57.360006277495025,0.0778291250026086,100,mac,phase-15,without +28,253.4064073264722,0.0,0.0,59.54394949916176,0.0807924159962567,100,mac,phase-15,without +29,252.61770622229048,0.0,0.0,59.35862514524034,0.0805409579988918,100,mac,phase-15,without +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646,100,mac,phase-15,with +1,1779.6926984637155,2.298914111764198,0.0,482.0722939582054,0.5188747089996468,100,mac,phase-15,with +2,1815.206967652506,2.3447895905351,0.0,491.69218239786034,0.5292289999997593,100,mac,phase-15,with +3,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378,100,mac,phase-15,with +4,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604,100,mac,phase-15,with +5,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856,100,mac,phase-15,with +6,1776.1563189074311,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351,100,mac,phase-15,with +7,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192,100,mac,phase-15,with +8,1773.7140800868076,2.2911912446830485,0.0,480.4528423089714,0.5171316249980009,100,mac,phase-15,with +9,1782.3990367731817,2.302410018296943,0.0,482.8053703585286,0.5196637499975623,100,mac,phase-15,with +10,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193,100,mac,phase-15,with +11,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539,100,mac,phase-15,with +12,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419,100,mac,phase-15,with +13,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821,100,mac,phase-15,with +14,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162,100,mac,phase-15,with +15,1772.853313724588,2.29007935163615,0.0,480.2196831713544,0.5168806660003611,100,mac,phase-15,with +16,1770.9595755799237,2.2876331195711908,0.0,479.706718943124,0.5163285410017124,100,mac,phase-15,with +17,1786.4787687097223,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075,100,mac,phase-15,with +18,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552,100,mac,phase-15,with +19,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846,100,mac,phase-15,with +20,1791.298932109912,2.31390643843762,0.0,485.2161196775931,0.5222585410010652,100,mac,phase-15,with +21,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781,100,mac,phase-15,with +22,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464,100,mac,phase-15,with +23,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138,100,mac,phase-15,with +24,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602,100,mac,phase-15,with +25,1774.9085456819907,2.292734192976961,0.0,480.7763918577341,0.5174798750012997,100,mac,phase-15,with +26,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214,100,mac,phase-15,with +27,1779.5730804224474,2.298759595423635,0.0,482.0398925533996,0.5188398340033018,100,mac,phase-15,with +28,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901,100,mac,phase-15,with +29,1792.9830205511932,2.3160818559613663,0.0,485.6722952739856,0.5227495420040214,100,mac,phase-15,with +0,242.90782385251904,0.8766974823241211,0.0,55.38849450826323,0.0747689999989233,100,mac,phase-12,without +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.0778219589992659,100,mac,phase-12,without +2,258.8651385625255,0.9342902655002208,0.0,59.02712427392467,0.0796807910010102,100,mac,phase-12,without +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.081725957999879,100,mac,phase-12,without +4,241.39105099810257,0.8712231796786377,0.0,55.04263588755393,0.07430212500185,100,mac,phase-12,without +5,268.08165313176636,0.9675543036464884,0.0,61.12869868395136,0.0825177090009674,100,mac,phase-12,without +6,261.2141409213791,0.9427682322504016,0.0,59.562750101820015,0.0804038329952163,100,mac,phase-12,without +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.0795712500039371,100,mac,phase-12,without +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.0776966249977704,100,mac,phase-12,without +9,262.6748723911695,0.9480402715845252,0.0,59.89583001546517,0.0808534579991828,100,mac,phase-12,without +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.0748128330014878,100,mac,phase-12,without +11,259.4128304085643,0.9362669826552976,0.0,59.15201043990077,0.0798493749971385,100,mac,phase-12,without +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.0795320000033825,100,mac,phase-12,without +13,262.3333479240832,0.9468076491201768,0.0,59.81795468905688,0.0807483339958707,100,mac,phase-12,without +14,263.7812174805347,0.9520332675244872,0.0,60.148101794672066,0.0811939999985043,100,mac,phase-12,without +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.0804758339945692,100,mac,phase-12,without +16,260.33751362128316,0.939604328615098,0.0,59.36285919000386,0.0801339999961783,100,mac,phase-12,without +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235,100,mac,phase-12,without +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179,100,mac,phase-12,without +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.0806621669980813,100,mac,phase-12,without +20,259.3887374833051,0.9361800270085772,0.0,59.14651670636333,0.0798419589991681,100,mac,phase-12,without +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.0798660830041626,100,mac,phase-12,without +22,263.0187002361503,0.9492812073488284,0.0,59.97423056428847,0.0809592910009087,100,mac,phase-12,without +23,262.90255644081475,0.9488620237616412,0.0,59.94774714408369,0.080923540997901,100,mac,phase-12,without +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067,100,mac,phase-12,without +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.0796380419997149,100,mac,phase-12,without +26,258.61634070403085,0.9333923098366672,0.0,58.970392717895145,0.0796042090005357,100,mac,phase-12,without +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639,100,mac,phase-12,without +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.0794995839969487,100,mac,phase-12,without +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.0802607500008889,100,mac,phase-12,without +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364,100,mac,phase-12,with +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786,100,mac,phase-12,with +2,1778.486234577878,1.5993880891754215,0.0,479.54986207109727,0.5181025829951977,100,mac,phase-12,with +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965,100,mac,phase-12,with +4,1767.9182652955085,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635,100,mac,phase-12,with +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698,100,mac,phase-12,with +6,1776.3588275952677,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941,100,mac,phase-12,with +7,1769.0324619649873,1.5908863358186305,0.0,477.00075302295267,0.5153485419941717,100,mac,phase-12,with +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501,100,mac,phase-12,with +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905,100,mac,phase-12,with +10,1781.685358726182,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195,100,mac,phase-12,with +11,1782.0121818251405,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831,100,mac,phase-12,with +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797,100,mac,phase-12,with +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205,100,mac,phase-12,with +14,1808.8365189834235,1.6266820217555849,0.0,487.7334928563829,0.5269441249984084,100,mac,phase-12,with +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777,100,mac,phase-12,with +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378,100,mac,phase-12,with +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959,100,mac,phase-12,with +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474,100,mac,phase-12,with +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329,100,mac,phase-12,with +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545,100,mac,phase-12,with +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641,100,mac,phase-12,with +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807,100,mac,phase-12,with +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364,100,mac,phase-12,with +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073,100,mac,phase-12,with +25,1771.4579433126603,1.5930675649462802,0.0,477.6547582230597,0.516055125001003,100,mac,phase-12,with +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122,100,mac,phase-12,with +27,1771.2442582749284,1.5928753985423243,0.0,477.597140329607,0.5159928749999381,100,mac,phase-12,with +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222,100,mac,phase-12,with +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618,100,mac,phase-12,with +0,241.774082389606,0.0,0.0,58.314702618296096,0.0794790410000132,100,mac,phase-24,without +1,236.29470921743456,0.0,0.0,56.99310514220705,0.0776777919963933,100,mac,phase-24,without +2,245.02596783164793,0.0,0.0,59.09904116536938,0.0805480420021922,100,mac,phase-24,without +3,239.61731779511788,0.0,0.0,57.79450175680519,0.0787700420041801,100,mac,phase-24,without +4,234.89514347109304,0.0,0.0,56.65553686571519,0.0772177090038894,100,mac,phase-24,without +5,244.3573637645225,0.0,0.0,58.937777199610736,0.0803282499982742,100,mac,phase-24,without +6,246.66217572690388,0.0,0.0,59.49368634772521,0.0810859170014737,100,mac,phase-24,without +7,247.69936496973415,0.0,0.0,59.74385121923148,0.0814268749963957,100,mac,phase-24,without +8,247.93347313702415,0.0,0.0,59.80031694136804,0.081503834000614,100,mac,phase-24,without +9,244.9906017154224,0.0,0.0,59.0905110345544,0.080536416004179,100,mac,phase-24,without +10,244.5686539902464,0.0,0.0,58.988739348065465,0.0803977079995093,100,mac,phase-24,without +11,244.99022144221857,0.0,0.0,59.090419314554566,0.0805362909959512,100,mac,phase-24,without +12,243.10761578902108,0.0,0.0,58.63634422210183,0.0799174170024343,100,mac,phase-24,without +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349,100,mac,phase-24,without +14,226.95226404933985,0.0,0.0,54.73975397106182,0.0746066249994328,100,mac,phase-24,without +15,247.18260772680364,0.0,0.0,59.61921195000334,0.0812570000052801,100,mac,phase-24,without +16,245.5469078363539,0.0,0.0,59.22468929587267,0.0807192920037778,100,mac,phase-24,without +17,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146,100,mac,phase-24,without +18,242.99404630361005,0.0,0.0,58.6089518287452,0.0798800830016261,100,mac,phase-24,without +19,243.03942360273416,0.0,0.0,58.61989660693602,0.0798950000025797,100,mac,phase-24,without +20,243.40129207930585,0.0,0.0,58.70717747835799,0.0800139579951064,100,mac,phase-24,without +21,242.2193560611542,0.0,0.0,58.42210040669198,0.0796254170054453,100,mac,phase-24,without +22,244.86537532136504,0.0,0.0,59.06030705298102,0.080495249996602,100,mac,phase-24,without +23,229.17519487543,0.0,0.0,55.27591379755472,0.0753373749976162,100,mac,phase-24,without +24,245.74083136710107,0.0,0.0,59.27146268413018,0.0807830410049064,100,mac,phase-24,without +25,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226,100,mac,phase-24,without +26,245.22724384220348,0.0,0.0,59.14758793507991,0.0806142080036806,100,mac,phase-24,without +27,246.6794116137417,0.0,0.0,59.497843557651834,0.0810915830006706,100,mac,phase-24,without +28,245.331815099925,0.0,0.0,59.17281000080416,0.0806485839930246,100,mac,phase-24,without +29,247.67071860704505,0.0,0.0,59.73694185944898,0.0814174580009421,100,mac,phase-24,without +0,1751.7597276163842,2.1636114978065435,0.0,477.192837423917,0.5169033329948434,100,mac,phase-24,with +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173,100,mac,phase-24,with +2,1755.551400507329,2.168294621258601,0.0,478.2257183132816,0.5180221670016181,100,mac,phase-24,with +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047,100,mac,phase-24,with +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944,100,mac,phase-24,with +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581,100,mac,phase-24,with +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837,100,mac,phase-24,with +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318,100,mac,phase-24,with +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886,100,mac,phase-24,with +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515,100,mac,phase-24,with +10,1760.364557240052,2.174239387018135,0.0,479.5368592660305,0.5194424170040293,100,mac,phase-24,with +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399,100,mac,phase-24,with +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216,100,mac,phase-24,with +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349,100,mac,phase-24,with +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101,100,mac,phase-24,with +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313,100,mac,phase-24,with +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864,100,mac,phase-24,with +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862,100,mac,phase-24,with +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351,100,mac,phase-24,with +19,1740.735333244333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869,100,mac,phase-24,with +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783,100,mac,phase-24,with +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092,100,mac,phase-24,with +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061,100,mac,phase-24,with +23,1780.1372456652791,2.1986607818846435,0.0,484.9230918322808,0.5252768749996903,100,mac,phase-24,with +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918,100,mac,phase-24,with +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964,100,mac,phase-24,with +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957,100,mac,phase-24,with +27,1746.5222472011149,2.1571426467036403,0.0,475.7661074329752,0.5153578749959706,100,mac,phase-24,with +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571,100,mac,phase-24,with +29,1754.4581827370755,2.166944379841335,0.0,477.9279173754673,0.5176995840010932,100,mac,phase-24,with +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.0798695409976062,100,mac,phase-23,without +1,222.282954626191,0.5425670898579795,0.0,63.921185273893215,0.0796238750044722,100,mac,phase-23,without +2,181.99531463538943,0.4442296009406912,0.0,52.33579986082519,0.0651924580015474,100,mac,phase-23,without +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.0797642079996876,100,mac,phase-23,without +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.0648530830003437,100,mac,phase-23,without +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477,100,mac,phase-23,without +6,228.03587230478863,0.5566092992946786,0.0,65.57553307315432,0.0816846250017988,100,mac,phase-23,without +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.0808889159961836,100,mac,phase-23,without +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.0801839999985531,100,mac,phase-23,without +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.078770958003588,100,mac,phase-23,without +10,225.93084181352305,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981,100,mac,phase-23,without +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.0814994160027708,100,mac,phase-23,without +12,190.86070386116344,0.4658689949319016,0.0,54.885190965414665,0.0683681250011432,100,mac,phase-23,without +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.0778178749969811,100,mac,phase-23,without +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.0821365419978974,100,mac,phase-23,without +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.0831774999969638,100,mac,phase-23,without +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.0827088329970138,100,mac,phase-23,without +17,208.47225322116213,0.5088567584345681,0.0,59.94968685307256,0.0746767500022542,100,mac,phase-23,without +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.0824930000017047,100,mac,phase-23,without +19,229.14404490940265,0.5593142209840491,0.0,65.89420665968329,0.082081583001127,100,mac,phase-23,without +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.0812505829962901,100,mac,phase-23,without +21,226.7383300922263,0.5534421482037561,0.0,65.20240308525501,0.0812198330022511,100,mac,phase-23,without +22,190.32796262279587,0.4645686349297839,0.0,54.73199230266517,0.0681772920070216,100,mac,phase-23,without +23,216.75046098615985,0.5290629101111453,0.0,62.3302240974693,0.0776420830006827,100,mac,phase-23,without +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832,100,mac,phase-23,without +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.0806313339999178,100,mac,phase-23,without +26,190.4228763228689,0.4648003083395731,0.0,54.75928632625596,0.0682112909998977,100,mac,phase-23,without +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.0820812920064781,100,mac,phase-23,without +28,229.7988069023712,0.5609124195938885,0.0,66.08249443340499,0.0823161249936674,100,mac,phase-23,without +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156,100,mac,phase-23,without +0,1786.9876176050948,0.9744578121988632,0.0,485.98563233904,0.5244097500035423,100,mac,phase-23,with +1,1782.494248517345,0.9720075441793689,0.0,484.7636245333176,0.5230911249964265,100,mac,phase-23,with +2,1789.6608931992605,0.9759155695225464,0.0,486.71265110360656,0.5251942500035511,100,mac,phase-23,with +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507,100,mac,phase-23,with +4,1774.29452682005,0.9675361741558348,0.0,482.53364437295994,0.5206848329980858,100,mac,phase-23,with +5,1774.592693303347,0.9676987665857556,0.0,482.61473314240624,0.5207723329949658,100,mac,phase-23,with +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435,100,mac,phase-23,with +7,1782.7985214602406,0.9721734665077184,0.0,484.84637400348737,0.5231804169961833,100,mac,phase-23,with +8,1756.4093657710655,0.9577832610774696,0.0,477.6696312056359,0.515436249996128,100,mac,phase-23,with +9,1768.703196283028,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765,100,mac,phase-23,with +10,1768.6684113239016,0.9644682109849976,0.0,481.0035770853799,0.5190337919993908,100,mac,phase-23,with +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654,100,mac,phase-23,with +12,1777.5417030532524,0.9693068838221228,0.0,483.4167400248056,0.5216377499964437,100,mac,phase-23,with +13,1800.5370152626765,0.9818464008314552,0.0,489.6704998353564,0.5283859589981148,100,mac,phase-23,with +14,1773.0453523522408,0.9668549899064512,0.0,482.193921345414,0.5203182500044932,100,mac,phase-23,with +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211,100,mac,phase-23,with +16,1769.166632213147,0.9647398945898208,0.0,481.1390722569855,0.5191800000029616,100,mac,phase-23,with +17,1763.204154234821,0.96148851042308,0.0,479.517528491345,0.5174302500017802,100,mac,phase-23,with +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578,100,mac,phase-23,with +19,1767.0888376996136,0.9636068575861454,0.0,480.5739993540834,0.5185702500020852,100,mac,phase-23,with +20,1767.2573750274971,0.9636987622609094,0.0,480.619834433777,0.5186197090006317,100,mac,phase-23,with +21,1785.681222404281,0.9737454250526344,0.0,485.6303476736638,0.5240263750019949,100,mac,phase-23,with +22,1765.3002646808288,0.9626315352427376,0.0,480.0875825591626,0.5180453749999288,100,mac,phase-23,with +23,1766.7130081954772,0.9634019149257976,0.0,480.4717895024762,0.5184599589993013,100,mac,phase-23,with +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092,100,mac,phase-23,with +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044,100,mac,phase-23,with +26,1761.720706069687,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842,100,mac,phase-23,with +27,1768.10288660893,0.9641598260968948,0.0,480.84977809791,0.5188678330014227,100,mac,phase-23,with +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913,100,mac,phase-23,with +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169,100,mac,phase-23,with +0,261.69304748056817,0.0,0.0,60.19573731393214,0.0799580409948248,100,mac,phase-8,without +1,250.04241406090983,0.0,0.0,57.51580952974925,0.0763982909993501,100,mac,phase-8,without +2,265.34640271204813,0.0,0.0,61.03609747613698,0.0810742920002667,100,mac,phase-8,without +3,260.32975890934574,0.0,0.0,59.88214793314248,0.0795414999956847,100,mac,phase-8,without +4,256.60290463269945,0.0,0.0,59.02488121091149,0.0784027919944492,100,mac,phase-8,without +5,254.2476553292837,0.0,0.0,58.48311684329771,0.0776831659968593,100,mac,phase-8,without +6,267.4662730703839,0.0,0.0,61.52371898713432,0.0817220000026281,100,mac,phase-8,without +7,261.4647674093651,0.0,0.0,60.143227370192946,0.0798882919989409,100,mac,phase-8,without +8,246.01554802208992,0.0,0.0,56.589532838011,0.0751679170061834,100,mac,phase-8,without +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688,100,mac,phase-8,without +10,263.23716595979414,0.0,0.0,60.550921952010754,0.0804298330040182,100,mac,phase-8,without +11,260.4273987454803,0.0,0.0,59.904607459614105,0.0795713330007856,100,mac,phase-8,without +12,263.1834383636676,0.0,0.0,60.538563303991346,0.080413417003001,100,mac,phase-8,without +13,264.8376041165323,0.0,0.0,60.91906147958976,0.0809188330022152,100,mac,phase-8,without +14,262.7376459678526,0.0,0.0,60.43602025894914,0.0802772090028156,100,mac,phase-8,without +15,265.9190191847479,0.0,0.0,61.16781312966357,0.0812492499971995,100,mac,phase-8,without +16,262.16475454640056,0.0,0.0,60.30424136055219,0.0801021669976762,100,mac,phase-8,without +17,270.0616666527359,0.0,0.0,62.120722353534894,0.0825150000018766,100,mac,phase-8,without +18,267.46191030093564,0.0,0.0,61.522715444525154,0.0817206669962615,100,mac,phase-8,without +19,262.00329030822877,0.0,0.0,60.26710067622695,0.0800528330000815,100,mac,phase-8,without +20,253.51275965468895,0.0,0.0,58.314073044056784,0.0774586249972344,100,mac,phase-8,without +21,264.0262048684438,0.0,0.0,60.732420006058504,0.0806709169992245,100,mac,phase-8,without +22,263.8846528399279,0.0,0.0,60.69985961208996,0.0806276670045917,100,mac,phase-8,without +23,264.5367741043955,0.0,0.0,60.849863292778615,0.0808269170011044,100,mac,phase-8,without +24,263.01842955838407,0.0,0.0,60.50060728340553,0.0803629999936674,100,mac,phase-8,without +25,262.9862473617866,0.0,0.0,60.493204598958165,0.0803531670026131,100,mac,phase-8,without +26,263.65418646654734,0.0,0.0,60.64684676591282,0.0805572500030393,100,mac,phase-8,without +27,248.40133983118992,0.0,0.0,57.13832272146015,0.0758968750014901,100,mac,phase-8,without +28,269.71869832726696,0.0,0.0,62.04183133435922,0.0824102090045926,100,mac,phase-8,without +29,263.8835596650258,0.0,0.0,60.69960815539335,0.0806273329944815,100,mac,phase-8,without +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069,100,mac,phase-8,with +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925,100,mac,phase-8,with +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788,100,mac,phase-8,with +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137,100,mac,phase-8,with +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639,100,mac,phase-8,with +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815,100,mac,phase-8,with +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394,100,mac,phase-8,with +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472,100,mac,phase-8,with +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863,100,mac,phase-8,with +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402,100,mac,phase-8,with +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608,100,mac,phase-8,with +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669,100,mac,phase-8,with +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245,100,mac,phase-8,with +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812,100,mac,phase-8,with +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655,100,mac,phase-8,with +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166,100,mac,phase-8,with +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059,100,mac,phase-8,with +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509,100,mac,phase-8,with +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761,100,mac,phase-8,with +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521,100,mac,phase-8,with +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396,100,mac,phase-8,with +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608,100,mac,phase-8,with +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393,100,mac,phase-8,with +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749,100,mac,phase-8,with +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709,100,mac,phase-8,with +25,2647.220924751434,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588,100,mac,phase-8,with +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705,100,mac,phase-8,with +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554,100,mac,phase-8,with +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974,100,mac,phase-8,with +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549,100,mac,phase-8,with +0,365.5962922637533,0.31946547733638,13.09808457079158,71.3685876369473,0.0776209169998765,100,mac,phase-1,without +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.0843391249945852,100,mac,phase-1,without +2,381.68376621972993,0.3335230393391558,13.67444461290539,74.50904698836742,0.0810364999997546,100,mac,phase-1,without +3,374.9568692135735,0.3276449398930212,13.433442535613873,73.19587957210095,0.0796082910019322,100,mac,phase-1,without +4,383.4586629821924,0.3350739802360996,13.738033189680085,74.85552718474466,0.0814133340027183,100,mac,phase-1,without +5,378.5011661164349,0.3307420186267344,13.560422763696112,73.88776696121248,0.080360792002466,100,mac,phase-1,without +6,388.4279301626621,0.3394162269858983,13.916065306421832,75.82558510864969,0.0824683749960968,100,mac,phase-1,without +7,388.868712974047,0.3398013919731275,13.931857070898229,75.91163096679668,0.0825619590032147,100,mac,phase-1,without +8,387.4873009382955,0.3385942860348615,13.882365727429324,75.64196350018807,0.0822686669998802,100,mac,phase-1,without +9,361.1088179961347,0.3155442310347209,12.93731347242356,70.49258121315667,0.0766681669992976,100,mac,phase-1,without +10,384.98725849243414,0.3364096980884604,13.792797621626878,75.15392655296206,0.081737874999817,100,mac,phase-1,without +11,387.3220545051752,0.3384498903400692,13.876445503942838,75.60970550197146,0.0822335830016527,100,mac,phase-1,without +12,381.00905545019447,0.3329334633434065,13.650271997079669,74.37733571091702,0.080893250000372,100,mac,phase-1,without +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574,100,mac,phase-1,without +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.0836733749965787,100,mac,phase-1,without +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.0806210000009741,100,mac,phase-1,without +16,376.5386550083152,0.3290271364980035,13.490112596418143,73.504662293654,0.0799441249982919,100,mac,phase-1,without +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.0815830829960759,100,mac,phase-1,without +18,371.9656137717135,0.3250311200381977,13.326275921566106,72.61195221653337,0.0789732080011162,100,mac,phase-1,without +19,373.64807162243585,0.3265012859336209,13.38655272327846,72.94038727757092,0.0793304160033585,100,mac,phase-1,without +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.0774970830025267,100,mac,phase-1,without +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.0814905410006758,100,mac,phase-1,without +22,389.6713762032651,0.340502775431025,13.960613792672026,76.068320031291,0.0827323749981587,100,mac,phase-1,without +23,385.0612435284915,0.3364743477180107,13.795448256438442,75.1683692802036,0.0817535829992266,100,mac,phase-1,without +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.0754203329997835,100,mac,phase-1,without +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.0827776250007445,100,mac,phase-1,without +26,389.3864198446626,0.3402537747681428,13.950404765493856,76.0126932832031,0.0826718750031432,100,mac,phase-1,without +27,385.34934147980306,0.3367260935685102,13.80576983630892,75.22460930320518,0.0818147499958286,100,mac,phase-1,without +28,388.2126444619807,0.3392281059611854,13.908352344408604,75.78355887172884,0.082422667001083,100,mac,phase-1,without +29,382.30646891442245,0.3340671696211311,13.696753954466375,74.63060569336069,0.0811687079985858,100,mac,phase-1,without +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292,100,mac,phase-1,with +1,2715.9020526639206,4.5839715944040265,91.47719784715092,550.9866445126663,0.5387826250007492,100,mac,phase-1,with +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223,100,mac,phase-1,with +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655,100,mac,phase-1,with +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857,100,mac,phase-1,with +5,2719.8013326503037,4.59055290269483,91.60853366113064,551.7777080908264,0.5395561670011375,100,mac,phase-1,with +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514,100,mac,phase-1,with +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546,100,mac,phase-1,with +8,2686.408260218842,4.5341911884255115,90.48378592196204,545.0031129205282,0.532931624999037,100,mac,phase-1,with +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732,100,mac,phase-1,with +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318,100,mac,phase-1,with +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728,100,mac,phase-1,with +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426,100,mac,phase-1,with +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253,100,mac,phase-1,with +14,2678.044504222127,4.520074618988164,90.2020773230432,543.3063220338199,0.5312724169998546,100,mac,phase-1,with +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908,100,mac,phase-1,with +16,2692.3906558823523,4.544288434664978,90.68528538000552,546.2167870696205,0.534118417002901,100,mac,phase-1,with +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387,100,mac,phase-1,with +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994,100,mac,phase-1,with +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183,100,mac,phase-1,with +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407,100,mac,phase-1,with +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541,100,mac,phase-1,with +22,2669.225814940643,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802,100,mac,phase-1,with +23,2704.503515961487,4.5647328415151005,91.09327155788225,548.6741747077011,0.5365213749973918,100,mac,phase-1,with +24,2722.9180265552013,4.595813341418859,91.71351035743224,552.4100050895154,0.5401744590053568,100,mac,phase-1,with +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108,100,mac,phase-1,with +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303,100,mac,phase-1,with +27,2689.5938418367864,4.5395678976606595,90.59108289890465,545.6493854636676,0.5335635829978855,100,mac,phase-1,with +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969,100,mac,phase-1,with +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076,100,mac,phase-1,with +0,243.54047775399584,0.0,0.0,58.53663370586776,0.0799515000035171,100,mac,phase-30,without +1,243.291711687412,0.0,0.0,58.47684106584192,0.0798698330036131,100,mac,phase-30,without +2,245.5951988714672,0.0,0.0,59.03050009937392,0.080626040995412,100,mac,phase-30,without +3,244.14360606550724,0.0,0.0,58.681599755758846,0.0801494999977876,100,mac,phase-30,without +4,243.31671713606323,0.0,0.0,58.48285129790621,0.0798780420009279,100,mac,phase-30,without +5,241.55492443854592,0.0,0.0,58.05939227067864,0.0792996659947675,100,mac,phase-30,without +6,244.21963070926464,0.0,0.0,58.69987280328379,0.0801744580021477,100,mac,phase-30,without +7,245.1422220915524,0.0,0.0,58.92162400580759,0.080477333998715,100,mac,phase-30,without +8,246.35114409687137,0.0,0.0,59.21219674860971,0.0808742090011946,100,mac,phase-30,without +9,223.61325483398392,0.0,0.0,53.74698822433849,0.0734096250016591,100,mac,phase-30,without +10,244.82669458259335,0.0,0.0,58.845784792604114,0.0803737499954877,100,mac,phase-30,without +11,245.46624823405313,0.0,0.0,58.999505924204115,0.0805837080042692,100,mac,phase-30,without +12,244.69279401281028,0.0,0.0,58.81360086704609,0.0803297919992473,100,mac,phase-30,without +13,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065,100,mac,phase-30,without +14,244.25085325559544,0.0,0.0,58.70737735765924,0.0801847080001607,100,mac,phase-30,without +15,242.3843538378488,0.0,0.0,58.25875134798534,0.0795719579982687,100,mac,phase-30,without +16,247.02788453109272,0.0,0.0,59.37485597995104,0.081096374997287,100,mac,phase-30,without +17,244.8240292446239,0.0,0.0,58.845144160238355,0.080372874996101,100,mac,phase-30,without +18,242.5058171758989,0.0,0.0,58.28794589910761,0.0796118329963064,100,mac,phase-30,without +19,249.33936777338295,0.0,0.0,59.93043692123454,0.081855208001798,100,mac,phase-30,without +20,234.16127478349617,0.0,0.0,56.2822775766509,0.076872416997503,100,mac,phase-30,without +21,244.35937066953136,0.0,0.0,58.73346026662311,0.0802203330022166,100,mac,phase-30,without +22,245.70321065155915,0.0,0.0,59.056461475755675,0.0806615000037709,100,mac,phase-30,without +23,244.62806434791267,0.0,0.0,58.79804264559987,0.0803085420047864,100,mac,phase-30,without +24,243.1429613426851,0.0,0.0,58.44108789444635,0.0798209999993559,100,mac,phase-30,without +25,247.57986270663923,0.0,0.0,59.507527741842864,0.0812775829981546,100,mac,phase-30,without +26,242.2868816000614,0.0,0.0,58.235323223295474,0.0795399589987937,100,mac,phase-30,without +27,246.40584599254623,0.0,0.0,59.22534472655436,0.080892166995909,100,mac,phase-30,without +28,225.71531849657757,0.0,0.0,54.25223372512112,0.0740997079992666,100,mac,phase-30,without +29,243.29945488439853,0.0,0.0,58.47870219664816,0.0798723750049248,100,mac,phase-30,without +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145,100,mac,phase-30,with +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091,100,mac,phase-30,with +2,1779.3928443092848,1.2935973032110897,0.0,478.6310021881031,0.5164371669961838,100,mac,phase-30,with +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093,100,mac,phase-30,with +4,1773.9815157607254,1.289663332115503,0.0,477.17543288273623,0.5148666250024689,100,mac,phase-30,with +5,1777.9932479026747,1.292579813372932,0.0,478.2545309479849,0.5160309589991812,100,mac,phase-30,with +6,1778.2917123371087,1.2927967934449398,0.0,478.3348135746278,0.5161175829998683,100,mac,phase-30,with +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995,100,mac,phase-30,with +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622,100,mac,phase-30,with +9,1754.4484513303544,1.275463028033475,0.0,471.9213203723859,0.5091975000032107,100,mac,phase-30,with +10,1775.5038586790918,1.290770057198758,0.0,477.5849211635405,0.5153084579942515,100,mac,phase-30,with +11,1786.1638599055125,1.2985197505184911,0.0,480.45230769184184,0.5184023340043495,100,mac,phase-30,with +12,1780.7071642069795,1.2945527980477989,0.0,478.9845352776855,0.5168186250011786,100,mac,phase-30,with +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725,100,mac,phase-30,with +14,1780.113098568184,1.2941209194377807,0.0,478.8247401919788,0.5166462080014753,100,mac,phase-30,with +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305,100,mac,phase-30,with +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493,100,mac,phase-30,with +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456,100,mac,phase-30,with +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645,100,mac,phase-30,with +19,1790.2618712334158,1.301498955711576,0.0,481.5546136132831,0.5195917090022704,100,mac,phase-30,with +20,1815.5910112672468,1.3199129373937035,0.0,488.3677868356704,0.5269430419939454,100,mac,phase-30,with +21,1782.178110375644,1.2956221583091028,0.0,479.380198574368,0.5172455409992835,100,mac,phase-30,with +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016,100,mac,phase-30,with +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714,100,mac,phase-30,with +24,1840.8703326220395,1.3382907014923673,0.0,495.16755955217593,0.5342799159989227,100,mac,phase-30,with +25,1787.1828714348917,1.299260559705491,0.0,480.72640709103166,0.5186980840007891,100,mac,phase-30,with +26,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483,100,mac,phase-30,with +27,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777,100,mac,phase-30,with +28,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738,100,mac,phase-30,with +29,1783.093470454418,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704,100,mac,phase-30,with +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.0776710830032243,100,mac,phase-6,without +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.0761652920045889,100,mac,phase-6,without +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.0773927499976707,100,mac,phase-6,without +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.0778755829960573,100,mac,phase-6,without +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986,100,mac,phase-6,without +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.0779352500030654,100,mac,phase-6,without +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.0773458750045392,100,mac,phase-6,without +7,342.3226982986895,22.968494031768262,0.0,74.03884179294928,0.0776502919979975,100,mac,phase-6,without +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.0789362499999697,100,mac,phase-6,without +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.0777301670023007,100,mac,phase-6,without +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.0775382089996128,100,mac,phase-6,without +11,335.4773722078628,22.5091998270776,0.0,72.55830889817277,0.0760975419980241,100,mac,phase-6,without +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.0786656250056694,100,mac,phase-6,without +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.0751801669975975,100,mac,phase-6,without +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.0794126249966211,100,mac,phase-6,without +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.0779685840025194,100,mac,phase-6,without +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.0783674590056762,100,mac,phase-6,without +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854,100,mac,phase-6,without +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.077208333001181,100,mac,phase-6,without +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402,100,mac,phase-6,without +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902,100,mac,phase-6,without +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.0720434999966528,100,mac,phase-6,without +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.0812008749999222,100,mac,phase-6,without +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.0808140000008279,100,mac,phase-6,without +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.0795359170006122,100,mac,phase-6,without +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.0832596659965929,100,mac,phase-6,without +26,404.5004296622107,27.140372960129103,0.0,87.48687558780871,0.0917542910028714,100,mac,phase-6,without +27,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141,100,mac,phase-6,without +28,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.0817928329997812,100,mac,phase-6,without +29,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364,100,mac,phase-6,without +0,1851.2929834808735,1.525707090391358,0.0,489.00607477143456,0.5257506659982027,100,mac,phase-6,with +1,1815.007070744064,1.4958027614505225,0.0,479.4214050755753,0.5154457909957273,100,mac,phase-6,with +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323,100,mac,phase-6,with +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766,100,mac,phase-6,with +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256,100,mac,phase-6,with +5,1815.024824844166,1.4958173931466672,0.0,479.426094696764,0.5154508330015233,100,mac,phase-6,with +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143,100,mac,phase-6,with +7,1811.0336499636064,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081,100,mac,phase-6,with +8,1817.0066970315177,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951,100,mac,phase-6,with +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976,100,mac,phase-6,with +10,1810.1798942357495,1.4918245378570545,0.0,478.1463402113843,0.5140749159982079,100,mac,phase-6,with +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977,100,mac,phase-6,with +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256,100,mac,phase-6,with +13,1812.1079196707988,1.4934134825043668,0.0,478.6556146257886,0.5146224579948466,100,mac,phase-6,with +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482,100,mac,phase-6,with +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739,100,mac,phase-6,with +16,1814.2052567911392,1.495141962082693,0.0,479.20961153597057,0.5152180829973076,100,mac,phase-6,with +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969,100,mac,phase-6,with +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826,100,mac,phase-6,with +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299,100,mac,phase-6,with +20,1817.835656233042,1.4981338851434334,0.0,480.1685561205276,0.5162490840011742,100,mac,phase-6,with +21,1813.5350490943129,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173,100,mac,phase-6,with +22,1814.531999481375,1.495411240713182,0.0,479.2959183290272,0.5153108750018873,100,mac,phase-6,with +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478,100,mac,phase-6,with +24,1821.465316194058,1.5011251987753895,0.0,481.1273053763877,0.5172798749990761,100,mac,phase-6,with +25,1816.57387709804,1.4970940144206697,0.0,479.83526599976256,0.5158907500008354,100,mac,phase-6,with +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959,100,mac,phase-6,with +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901,100,mac,phase-6,with +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062,100,mac,phase-6,with +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325,100,mac,phase-6,with +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.0838514580027549,100,mac,phase-7,without +1,398.7176187759755,1.608272748003935,12.832676301781396,78.77185896994273,0.0833907080013887,100,mac,phase-7,without +2,393.4009922947646,1.5868275319452692,12.661561348646623,77.72149015840266,0.082278750000114,100,mac,phase-7,without +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.0802324579999549,100,mac,phase-7,without +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.0815308750024996,100,mac,phase-7,without +5,397.77390581907474,1.6044661747324025,12.80230301921896,78.58541618324745,0.0831933329973253,100,mac,phase-7,without +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.0835334169969428,100,mac,phase-7,without +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.0827721669993479,100,mac,phase-7,without +8,402.1872645561368,1.6222679578734929,12.944346413865578,79.45733268667878,0.0841163750010309,100,mac,phase-7,without +9,411.01636787259105,1.6578811477213755,13.228509991193476,81.20163704776988,0.0859629580008913,100,mac,phase-7,without +10,398.47576527691933,1.60729720447833,12.824892277400007,78.72407766101153,0.083340124998358,100,mac,phase-7,without +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.0853469160065287,100,mac,phase-7,without +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.0847861250003916,100,mac,phase-7,without +13,397.95758979573526,1.6052070848903608,12.808214864854335,78.62170534535913,0.0832317500025965,100,mac,phase-7,without +14,397.9368723030194,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143,100,mac,phase-7,without +15,378.44542169605904,1.5265025412950282,12.180218194083244,74.7668223871794,0.0791508329930366,100,mac,phase-7,without +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.081899249998969,100,mac,phase-7,without +17,394.47718603434674,1.591168481483079,12.696198508500403,77.93410624930665,0.0825038330003735,100,mac,phase-7,without +18,390.30130111050465,1.574324575907918,12.561798178598597,77.10910579082322,0.0816304580002906,100,mac,phase-7,without +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.0853198749973671,100,mac,phase-7,without +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.0832003749965224,100,mac,phase-7,without +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.082188499996846,100,mac,phase-7,without +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.0817053749997285,100,mac,phase-7,without +23,408.1975839921713,1.6465112631616992,13.137787787311058,80.64474957694073,0.0853734170013922,100,mac,phase-7,without +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.0866518750044633,100,mac,phase-7,without +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.0798403750013676,100,mac,phase-7,without +26,374.92099637623625,1.5122863719377595,12.06678500942004,74.07052625886818,0.0784137090013246,100,mac,phase-7,without +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.0841622919979272,100,mac,phase-7,without +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.0840398750005988,100,mac,phase-7,without +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.0819778340010088,100,mac,phase-7,without +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044,100,mac,phase-7,with +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938,100,mac,phase-7,with +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633,100,mac,phase-7,with +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316,100,mac,phase-7,with +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086,100,mac,phase-7,with +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983,100,mac,phase-7,with +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794,100,mac,phase-7,with +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901,100,mac,phase-7,with +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509,100,mac,phase-7,with +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675,100,mac,phase-7,with +10,2646.795163355197,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344,100,mac,phase-7,with +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734,100,mac,phase-7,with +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329,100,mac,phase-7,with +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119,100,mac,phase-7,with +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925,100,mac,phase-7,with +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591,100,mac,phase-7,with +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422,100,mac,phase-7,with +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537,100,mac,phase-7,with +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056,100,mac,phase-7,with +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665,100,mac,phase-7,with +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854,100,mac,phase-7,with +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703,100,mac,phase-7,with +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205,100,mac,phase-7,with +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758,100,mac,phase-7,with +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439,100,mac,phase-7,with +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776,100,mac,phase-7,with +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591,100,mac,phase-7,with +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822,100,mac,phase-7,with +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663,100,mac,phase-7,with +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273,100,mac,phase-7,with +0,259.2976060090398,0.9378436735173552,0.0,59.34286692773609,0.0769311670010211,100,mac,phase-9,without +1,255.2444208838569,0.9231838620144488,0.0,58.41525471712115,0.0757286250009201,100,mac,phase-9,without +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.0805979579963604,100,mac,phase-9,without +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538,100,mac,phase-9,without +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.0820534579979721,100,mac,phase-9,without +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388,100,mac,phase-9,without +6,274.5216566791403,0.9929069647911036,0.0,62.827044151437065,0.0814480000044568,100,mac,phase-9,without +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.083064166996337,100,mac,phase-9,without +8,281.3432946979796,1.0175798885309817,0.0,64.38824467083968,0.0834719160047825,100,mac,phase-9,without +9,271.4910013468641,0.9819455025017532,0.0,62.13344817554198,0.0805488330006483,100,mac,phase-9,without +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.0789655840053455,100,mac,phase-9,without +11,269.5141946577938,0.9747956653873808,0.0,61.68103606847738,0.0799623330021859,100,mac,phase-9,without +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.0766440829975181,100,mac,phase-9,without +13,269.12490022342575,0.9733876411174044,0.0,61.59194211898058,0.0798468329958268,100,mac,phase-9,without +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.0748828750001848,100,mac,phase-9,without +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.0800642079993849,100,mac,phase-9,without +16,269.730891764629,0.975579428931684,0.0,61.730629382401375,0.0800266250007553,100,mac,phase-9,without +17,218.2457214537565,0.7893646697629007,0.0,49.947729966031815,0.0647514579977723,100,mac,phase-9,without +18,268.35867106427986,0.9706162959421448,0.0,61.41658286392536,0.0796194999929866,100,mac,phase-9,without +19,268.1440805449837,0.9698401516343884,0.0,61.367471663762174,0.0795558329991763,100,mac,phase-9,without +20,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.0736840000026859,100,mac,phase-9,without +21,267.1683200118613,0.9663109603821372,0.0,61.14415904486973,0.0792663340034778,100,mac,phase-9,without +22,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673,100,mac,phase-9,without +23,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.0803771249993587,100,mac,phase-9,without +24,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.0804226670006755,100,mac,phase-9,without +25,270.16990124801515,0.9771672656762832,0.0,61.831101121240685,0.0801568749957368,100,mac,phase-9,without +26,266.0163051495714,0.9621442815337454,0.0,60.8805088487732,0.0789245420019142,100,mac,phase-9,without +27,271.33244897442904,0.9813720404413124,0.0,62.097161869303726,0.0805017919992678,100,mac,phase-9,without +28,271.5900102009636,0.982303603869786,0.0,62.15610734831233,0.0805782079987693,100,mac,phase-9,without +29,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.082180834004248,100,mac,phase-9,without +0,1754.9343348502491,0.9659333379641896,0.0,478.1370022922739,0.5167249579972122,100,mac,phase-9,with +1,1749.9576772420037,0.9631941360465022,0.0,476.7810973430186,0.5152596249972703,100,mac,phase-9,with +2,1765.8187969550952,0.9719242543216248,0.0,481.1025058892042,0.5199297919971286,100,mac,phase-9,with +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453,100,mac,phase-9,with +4,1751.8730274703044,0.9642483638900476,0.0,477.3029401255735,0.5158235830022022,100,mac,phase-9,with +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217,100,mac,phase-9,with +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765,100,mac,phase-9,with +7,1753.9604561917197,0.9653973054501948,0.0,477.8716661978465,0.5164382080038195,100,mac,phase-9,with +8,1755.9675055029504,0.966502005382356,0.0,478.4184926642661,0.517029165996064,100,mac,phase-9,with +9,1753.8309770174317,0.9653260388229864,0.0,477.8363892173782,0.5164000840013614,100,mac,phase-9,with +10,1754.0766355703215,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781,100,mac,phase-9,with +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869,100,mac,phase-9,with +12,1756.321002261384,0.96669657351921,0.0,478.51480389200896,0.5171332500030985,100,mac,phase-9,with +13,1761.6994107051369,0.9696569030984088,0.0,479.9801670337124,0.5187168749980628,100,mac,phase-9,with +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397,100,mac,phase-9,with +15,1774.358559978593,0.976624624950258,0.0,483.42918935037767,0.5224442500039004,100,mac,phase-9,with +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615,100,mac,phase-9,with +17,1751.65354389843,0.9641275579459168,0.0,477.2431411832288,0.5157589579976047,100,mac,phase-9,with +18,1750.447303023146,0.9634636309533716,0.0,476.914497321919,0.5154037909960607,100,mac,phase-9,with +19,1744.4536070151348,0.9601646409702193,0.0,475.2814972802585,0.5136389999970561,100,mac,phase-9,with +20,1753.692293957126,0.9652497062852384,0.0,477.798604611193,0.5163592499957304,100,mac,phase-9,with +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802,100,mac,phase-9,with +22,1758.8267386074654,0.968075755762536,0.0,479.19749910245525,0.5178710420004791,100,mac,phase-9,with +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659,100,mac,phase-9,with +24,1766.5958315849296,0.9723519419215564,0.0,481.3142112511703,0.5201585830000113,100,mac,phase-9,with +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069,100,mac,phase-9,with +26,1752.9806340260625,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014,100,mac,phase-9,with +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911,100,mac,phase-9,with +28,1751.2059468821633,0.9638811960898636,0.0,477.1211920644825,0.5156271669984562,100,mac,phase-9,with +29,1757.8863946286374,0.967558181070272,0.0,478.9412996297846,0.5175941659981618,100,mac,phase-9,with +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.1265818329993635,1000,mac,phase-19,without +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.1273689170047873,1000,mac,phase-19,without +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.1272704590010107,1000,mac,phase-19,without +3,390.0256092913664,1.0581449340672937,0.0,81.74169615669842,0.1245831669948529,1000,mac,phase-19,without +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.1276017079944722,1000,mac,phase-19,without +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.1207954999990761,1000,mac,phase-19,without +6,402.8359437074606,1.092899550541648,0.0,84.42649027934232,0.1286750829967786,1000,mac,phase-19,without +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859,1000,mac,phase-19,without +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.1266689580006641,1000,mac,phase-19,without +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494,1000,mac,phase-19,without +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.127547208998294,1000,mac,phase-19,without +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.1202903329976834,1000,mac,phase-19,without +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.1262500839948188,1000,mac,phase-19,without +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602,1000,mac,phase-19,without +14,399.0628659124927,1.0826631377023963,0.0,83.63572738751013,0.1274698750057723,1000,mac,phase-19,without +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.1271318750004866,1000,mac,phase-19,without +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.1265424590019392,1000,mac,phase-19,without +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.1203042499982984,1000,mac,phase-19,without +18,402.568664946258,1.0921744195235483,0.0,84.37047390819413,0.1285897080015274,1000,mac,phase-19,without +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.1271081250015413,1000,mac,phase-19,without +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.1269394580012885,1000,mac,phase-19,without +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.1268292910026502,1000,mac,phase-19,without +22,350.76980647561356,0.9516433918795788,0.0,73.51445202269747,0.112043959001312,1000,mac,phase-19,without +23,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.1216482500021811,1000,mac,phase-19,without +24,405.61921819575144,1.100450613163548,0.0,85.00980986688407,0.129564125003526,1000,mac,phase-19,without +25,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.1270289169988245,1000,mac,phase-19,without +26,395.58876147911013,1.0732378437754575,0.0,82.90762343165412,0.1263601659957203,1000,mac,phase-19,without +27,397.43884404649145,1.0782571436615285,0.0,83.29536434785305,0.1269511249993229,1000,mac,phase-19,without +28,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.1271508339996216,1000,mac,phase-19,without +29,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985,1000,mac,phase-19,without +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006,1000,mac,phase-19,with +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721,1000,mac,phase-19,with +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177,1000,mac,phase-19,with +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329,1000,mac,phase-19,with +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873,1000,mac,phase-19,with +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295,1000,mac,phase-19,with +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759,1000,mac,phase-19,with +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249,1000,mac,phase-19,with +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635,1000,mac,phase-19,with +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924,1000,mac,phase-19,with +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713,1000,mac,phase-19,with +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727,1000,mac,phase-19,with +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946,1000,mac,phase-19,with +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714,1000,mac,phase-19,with +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466,1000,mac,phase-19,with +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588,1000,mac,phase-19,with +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919,1000,mac,phase-19,with +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543,1000,mac,phase-19,with +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764,1000,mac,phase-19,with +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398,1000,mac,phase-19,with +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131,1000,mac,phase-19,with +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727,1000,mac,phase-19,with +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806,1000,mac,phase-19,with +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098,1000,mac,phase-19,with +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595,1000,mac,phase-19,with +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957,1000,mac,phase-19,with +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162,1000,mac,phase-19,with +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392,1000,mac,phase-19,with +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415,1000,mac,phase-19,with +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499,1000,mac,phase-19,with +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837,1000,mac,phase-26,without +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799,1000,mac,phase-26,without +2,392.782657800016,0.0,0.0,82.10768031039964,0.1270926669967593,1000,mac,phase-26,without +3,394.0904615657848,0.0,0.0,82.3810649198677,0.1275158330026897,1000,mac,phase-26,without +4,386.1846502784042,0.0,0.0,80.72842620762319,0.1249577499984297,1000,mac,phase-26,without +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858,1000,mac,phase-26,without +6,390.5682958318153,0.0,0.0,81.64478786602623,0.1263761659938609,1000,mac,phase-26,without +7,391.0349677496118,0.0,0.0,81.742341431275,0.1265271670054062,1000,mac,phase-26,without +8,394.99521491133027,0.0,0.0,82.57019546568124,0.1278085840021958,1000,mac,phase-26,without +9,389.8935329590793,0.0,0.0,81.50373475907328,0.1261578330013435,1000,mac,phase-26,without +10,386.8460219423448,0.0,0.0,80.86668000287307,0.1251717499981168,1000,mac,phase-26,without +11,395.2454142765718,0.0,0.0,82.62249739166286,0.1278895409996039,1000,mac,phase-26,without +12,405.8558215300987,0.0,0.0,84.84050755437045,0.1313227499995264,1000,mac,phase-26,without +13,394.8692730303716,0.0,0.0,82.54386844870608,0.1277678329934133,1000,mac,phase-26,without +14,390.91198968003886,0.0,0.0,81.71663397240133,0.126487374996941,1000,mac,phase-26,without +15,344.4968582488303,0.0,0.0,72.01396839529932,0.1114688329980708,1000,mac,phase-26,without +16,384.1205680557549,0.0,0.0,80.29694839182318,0.1242898750060703,1000,mac,phase-26,without +17,397.6399258501084,0.0,0.0,83.12304849002524,0.1286643330022343,1000,mac,phase-26,without +18,394.5017605534564,0.0,0.0,82.46704327232571,0.1276489169977139,1000,mac,phase-26,without +19,344.61906365958396,0.0,0.0,72.03951433679929,0.1115083749973564,1000,mac,phase-26,without +20,389.40123755570465,0.0,0.0,81.40082483472742,0.125998540999717,1000,mac,phase-26,without +21,390.4691426421824,0.0,0.0,81.62406078392506,0.1263440830007312,1000,mac,phase-26,without +22,383.5958221737522,0.0,0.0,80.1872549869132,0.1241200830045272,1000,mac,phase-26,without +23,405.63909868024984,0.0,0.0,84.7952035927062,0.1312526249967049,1000,mac,phase-26,without +24,392.9889501493175,0.0,0.0,82.15080386977927,0.1271594170029857,1000,mac,phase-26,without +25,393.90245582749657,0.0,0.0,82.34176401197539,0.1274549999943701,1000,mac,phase-26,without +26,388.23392583418934,0.0,0.0,81.15680882294728,0.1256208339982549,1000,mac,phase-26,without +27,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692,1000,mac,phase-26,without +28,375.36074051247016,0.0,0.0,78.46578526581658,0.1214554580001276,1000,mac,phase-26,without +29,394.00032031549273,0.0,0.0,82.36222170259528,0.127486666002369,1000,mac,phase-26,without +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854,1000,mac,phase-26,with +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071,1000,mac,phase-26,with +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433,1000,mac,phase-26,with +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542,1000,mac,phase-26,with +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617,1000,mac,phase-26,with +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172,1000,mac,phase-26,with +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277,1000,mac,phase-26,with +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914,1000,mac,phase-26,with +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907,1000,mac,phase-26,with +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628,1000,mac,phase-26,with +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385,1000,mac,phase-26,with +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806,1000,mac,phase-26,with +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976,1000,mac,phase-26,with +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619,1000,mac,phase-26,with +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589,1000,mac,phase-26,with +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459,1000,mac,phase-26,with +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566,1000,mac,phase-26,with +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083,1000,mac,phase-26,with +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654,1000,mac,phase-26,with +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998,1000,mac,phase-26,with +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395,1000,mac,phase-26,with +21,4364.406018298075,2.093846030238117,0.0,678.904648566254,0.6681513339935918,1000,mac,phase-26,with +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177,1000,mac,phase-26,with +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178,1000,mac,phase-26,with +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715,1000,mac,phase-26,with +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321,1000,mac,phase-26,with +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689,1000,mac,phase-26,with +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114,1000,mac,phase-26,with +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263,1000,mac,phase-26,with +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523,1000,mac,phase-26,with +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.1263446250013657,1000,mac,phase-21,without +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.1269560419968911,1000,mac,phase-21,without +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.1267198330024257,1000,mac,phase-21,without +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.1260341660017729,1000,mac,phase-21,without +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786,1000,mac,phase-21,without +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.1269434159985394,1000,mac,phase-21,without +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936,1000,mac,phase-21,without +7,373.7075999076504,0.701202608833154,0.0,80.83864361833646,0.1267825000031734,1000,mac,phase-21,without +8,370.2519987370816,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832,1000,mac,phase-21,without +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.1285800419937004,1000,mac,phase-21,without +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545,1000,mac,phase-21,without +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.1268734170007519,1000,mac,phase-21,without +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.1245892920051119,1000,mac,phase-21,without +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285,1000,mac,phase-21,without +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.1260856660010176,1000,mac,phase-21,without +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992,1000,mac,phase-21,without +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.1266507079999428,1000,mac,phase-21,without +17,373.544619672528,0.7008968024591752,0.0,80.8033885120792,0.1267272080003749,1000,mac,phase-21,without +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.1260830000028363,1000,mac,phase-21,without +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762,1000,mac,phase-21,without +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.1277539160000742,1000,mac,phase-21,without +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999,1000,mac,phase-21,without +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.1266689580006641,1000,mac,phase-21,without +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.1274090419974527,1000,mac,phase-21,without +24,373.3273559434392,0.7004891417809348,0.0,80.75639105960205,0.1266535000031581,1000,mac,phase-21,without +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481,1000,mac,phase-21,without +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.1265395829977933,1000,mac,phase-21,without +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.1265127079968806,1000,mac,phase-21,without +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.1282391249987995,1000,mac,phase-21,without +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.1254270000063115,1000,mac,phase-21,without +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707,1000,mac,phase-21,with +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797,1000,mac,phase-21,with +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437,1000,mac,phase-21,with +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597,1000,mac,phase-21,with +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613,1000,mac,phase-21,with +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439,1000,mac,phase-21,with +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201,1000,mac,phase-21,with +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153,1000,mac,phase-21,with +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435,1000,mac,phase-21,with +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157,1000,mac,phase-21,with +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486,1000,mac,phase-21,with +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289,1000,mac,phase-21,with +12,4818.831734850124,2.8785491743233154,0.0,724.0955343752076,0.7059918749946519,1000,mac,phase-21,with +13,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356,1000,mac,phase-21,with +14,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292,1000,mac,phase-21,with +15,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317,1000,mac,phase-21,with +16,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879,1000,mac,phase-21,with +17,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976,1000,mac,phase-21,with +18,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954,1000,mac,phase-21,with +19,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227,1000,mac,phase-21,with +20,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144,1000,mac,phase-21,with +21,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737,1000,mac,phase-21,with +22,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129,1000,mac,phase-21,with +23,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405,1000,mac,phase-21,with +24,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877,1000,mac,phase-21,with +25,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048,1000,mac,phase-21,with +26,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602,1000,mac,phase-21,with +27,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938,1000,mac,phase-21,with +28,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162,1000,mac,phase-21,with +29,4545.066951538386,2.715014642652162,0.0,682.9586223656848,0.6658834579939139,1000,mac,phase-21,with +0,366.2560098974747,0.0,0.0,80.782447497649,0.1274277500051539,1000,mac,phase-28,without +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433,1000,mac,phase-28,without +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269,1000,mac,phase-28,without +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301,1000,mac,phase-28,without +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036,1000,mac,phase-28,without +5,365.55697252599737,0.0,0.0,80.62826586449009,0.1271845410010428,1000,mac,phase-28,without +6,378.0393748010996,0.0,0.0,83.38141933961053,0.1315274170046905,1000,mac,phase-28,without +7,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953,1000,mac,phase-28,without +8,367.84473766973,0.0,0.0,81.13286172808361,0.1279804999940097,1000,mac,phase-28,without +9,366.06882597778775,0.0,0.0,80.7411616900284,0.1273626249967492,1000,mac,phase-28,without +10,365.15554103083457,0.0,0.0,80.53972501381307,0.1270448750001378,1000,mac,phase-28,without +11,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692,1000,mac,phase-28,without +12,365.718411986348,0.0,0.0,80.66387340232536,0.1272407090000342,1000,mac,phase-28,without +13,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072,1000,mac,phase-28,without +14,366.3053517052931,0.0,0.0,80.7933304644586,0.1274449170014122,1000,mac,phase-28,without +15,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047,1000,mac,phase-28,without +16,364.87015348468304,0.0,0.0,80.4767791403244,0.1269455829969956,1000,mac,phase-28,without +17,365.9639167863109,0.0,0.0,80.71802262603086,0.1273261250025825,1000,mac,phase-28,without +18,367.16306638263006,0.0,0.0,80.98251040695109,0.1277433329960331,1000,mac,phase-28,without +19,365.2581738498211,0.0,0.0,80.56236199474246,0.1270805829990422,1000,mac,phase-28,without +20,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815,1000,mac,phase-28,without +21,366.7016354671544,0.0,0.0,80.88073591671505,0.1275827920035226,1000,mac,phase-28,without +22,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122,1000,mac,phase-28,without +23,364.065011256822,0.0,0.0,80.29919472397987,0.1266654580031172,1000,mac,phase-28,without +24,365.0026092698173,0.0,0.0,80.50599395788157,0.126991666998947,1000,mac,phase-28,without +25,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237,1000,mac,phase-28,without +26,363.3076529841561,0.0,0.0,80.13214967012348,0.1264019579975865,1000,mac,phase-28,without +27,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376,1000,mac,phase-28,without +28,366.2285868981014,0.0,0.0,80.77639900438956,0.1274182089982787,1000,mac,phase-28,without +29,366.2516985482337,0.0,0.0,80.78149657443056,0.1274262500010081,1000,mac,phase-28,without +0,4389.025421830659,1.6062307124723365,0.0334631398431736,684.0535046741562,0.6730389170043054,1000,mac,phase-28,with +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023,1000,mac,phase-28,with +2,4354.233157511607,1.5934979533436806,0.0331978740279933,678.63094088024,0.667703667000751,1000,mac,phase-28,with +3,4357.945080142954,1.5948563879754634,0.0332261747494888,679.2094642290505,0.6682728750020033,1000,mac,phase-28,with +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661,1000,mac,phase-28,with +5,4408.816460337069,1.6134735444966395,0.0336140321770133,687.1380457625065,0.6760737910008174,1000,mac,phase-28,with +6,4345.096674030936,1.5901543180351092,0.0331282149590647,677.2069701932021,0.6663026250025723,1000,mac,phase-28,with +7,4424.448338877007,1.6191942685734702,0.0337332139286139,689.5743591287267,0.678470874998311,1000,mac,phase-28,with +8,4389.556078381045,1.6064249143206022,0.0334671857150125,684.1362103862865,0.6731202909941203,1000,mac,phase-28,with +9,4359.39441815639,1.5953867952996852,0.0332372249020767,679.4353514482535,0.6684951249990263,1000,mac,phase-28,with +10,4364.926572416989,1.5974113714243328,0.0332794035713402,680.2975678053377,0.6693434580010944,1000,mac,phase-28,with +11,4336.208818024484,1.586901671738146,0.0330604514945447,675.8217494514829,0.6649397090004641,1000,mac,phase-28,with +12,4360.874458026974,1.595928438436221,0.0332485091340879,679.6660237190256,0.668722082999011,1000,mac,phase-28,with +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759,1000,mac,phase-28,with +14,4406.642727210601,1.6126780337458744,0.0335974590363723,686.7992576215242,0.6757404580057482,1000,mac,phase-28,with +15,4401.9515346063135,1.6109612203499777,0.0335616920906245,686.0681097165467,0.6750210829995922,1000,mac,phase-28,with +16,4349.9085088683905,1.5919152822940132,0.0331649017144586,677.9569208469628,0.6670404999968014,1000,mac,phase-28,with +17,4371.0961810783265,1.5996692336974665,0.0333264423686972,681.2591349009085,0.6702895420021378,1000,mac,phase-28,with +18,4354.880661070511,1.5937349171346793,0.0332028107736391,678.7318578347315,0.6678029589966172,1000,mac,phase-28,with +19,4358.4390615102575,1.5950371679817958,0.0332299409996207,679.2864539142473,0.6683486250040005,1000,mac,phase-28,with +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141,1000,mac,phase-28,with +21,4353.926660820881,1.5933857862107526,0.033195537212724,678.5831717025042,0.6676566669993917,1000,mac,phase-28,with +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694,1000,mac,phase-28,with +23,4390.797833401572,1.606879353486394,0.0334766531976332,684.3297446660181,0.6733107089967234,1000,mac,phase-28,with +24,4370.716046913472,1.599530117809139,0.0333235441210237,681.199888921967,0.6702312499983236,1000,mac,phase-28,with +25,4326.591936832465,1.5833822275690632,0.0329871297410221,674.3229061659748,0.6634649999978137,1000,mac,phase-28,with +26,4357.462510925597,1.5946797844192484,0.0332224955087343,679.1342531895475,0.6681988750060555,1000,mac,phase-28,with +27,4363.351975051161,1.5968351235319895,0.0332673984069164,680.0521582341861,0.6691019999998389,1000,mac,phase-28,with +28,4369.617223686835,1.599127986710644,0.033315166389805,681.0286313403956,0.67006274999585,1000,mac,phase-28,with +29,4413.620958856811,1.6152318239183203,0.0336506629982983,687.8868530112147,0.6768105410010321,1000,mac,phase-28,with +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.1279306249998626,1000,mac,phase-17,without +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.1298666250004316,1000,mac,phase-17,without +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.1268119170053978,1000,mac,phase-17,without +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.1270387500044307,1000,mac,phase-17,without +4,411.469987685372,0.7956876725847174,0.0,84.27658598793131,0.126604999997653,1000,mac,phase-17,without +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.1283349580044159,1000,mac,phase-17,without +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466,1000,mac,phase-17,without +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.1262690420044236,1000,mac,phase-17,without +8,428.2287649279869,0.8280952669625078,0.0,87.70909035911228,0.1317615000007208,1000,mac,phase-17,without +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.1220044580040848,1000,mac,phase-17,without +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.1273247919962159,1000,mac,phase-17,without +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.127753875000053,1000,mac,phase-17,without +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.1249797920027049,1000,mac,phase-17,without +13,412.5154149354085,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701,1000,mac,phase-17,without +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551,1000,mac,phase-17,without +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.1267970419939956,1000,mac,phase-17,without +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.1263662080018548,1000,mac,phase-17,without +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802,1000,mac,phase-17,without +18,412.5823102935587,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206,1000,mac,phase-17,without +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921,1000,mac,phase-17,without +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597,1000,mac,phase-17,without +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937,1000,mac,phase-17,without +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952,1000,mac,phase-17,without +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472,1000,mac,phase-17,without +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135,1000,mac,phase-17,without +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.1276210409996565,1000,mac,phase-17,without +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.1273774169967509,1000,mac,phase-17,without +27,403.1514038574026,0.7796014577856469,0.0,82.57278773712977,0.1240454589933506,1000,mac,phase-17,without +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.1270551250054268,1000,mac,phase-17,without +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.1296990409973659,1000,mac,phase-17,without +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424,1000,mac,phase-17,with +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305,1000,mac,phase-17,with +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748,1000,mac,phase-17,with +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677,1000,mac,phase-17,with +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616,1000,mac,phase-17,with +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506,1000,mac,phase-17,with +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521,1000,mac,phase-17,with +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271,1000,mac,phase-17,with +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755,1000,mac,phase-17,with +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792,1000,mac,phase-17,with +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214,1000,mac,phase-17,with +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096,1000,mac,phase-17,with +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535,1000,mac,phase-17,with +13,4363.96912667838,2.588947138539631,0.0,676.9432934681511,0.6655433749983786,1000,mac,phase-17,with +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162,1000,mac,phase-17,with +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428,1000,mac,phase-17,with +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266,1000,mac,phase-17,with +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628,1000,mac,phase-17,with +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434,1000,mac,phase-17,with +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379,1000,mac,phase-17,with +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164,1000,mac,phase-17,with +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172,1000,mac,phase-17,with +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261,1000,mac,phase-17,with +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249,1000,mac,phase-17,with +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646,1000,mac,phase-17,with +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692,1000,mac,phase-17,with +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895,1000,mac,phase-17,with +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225,1000,mac,phase-17,with +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484,1000,mac,phase-17,with +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813,1000,mac,phase-17,with +0,392.6923196485306,0.0,0.0,80.61026913897126,0.1246850840034312,1000,mac,phase-10,without +1,400.5184957667552,0.0,0.0,82.21679448121304,0.1271699999997508,1000,mac,phase-10,without +2,398.0520646223312,0.0,0.0,81.71049560950932,0.12638687499566,1000,mac,phase-10,without +3,399.9544786756752,0.0,0.0,82.10101536551342,0.1269909170005121,1000,mac,phase-10,without +4,403.1854443963641,0.0,0.0,82.7642547600517,0.128016791997652,1000,mac,phase-10,without +5,381.7259833976352,0.0,0.0,78.3591446009504,0.121203125003376,1000,mac,phase-10,without +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361,1000,mac,phase-10,without +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702,1000,mac,phase-10,without +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854,1000,mac,phase-10,without +9,402.8376890448656,0.0,0.0,82.69286896747012,0.127906375004386,1000,mac,phase-10,without +10,414.9605369904961,0.0,0.0,85.18139748389932,0.1317555419955169,1000,mac,phase-10,without +11,400.0866242774884,0.0,0.0,82.12814167278938,0.1270328750033513,1000,mac,phase-10,without +12,394.6405270092331,0.0,0.0,81.01018915733403,0.1253036659982171,1000,mac,phase-10,without +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246,1000,mac,phase-10,without +14,404.0993175654207,0.0,0.0,82.95185089685027,0.1283069589990191,1000,mac,phase-10,without +15,388.2460478319902,0.0,0.0,79.69755669245045,0.1232733330034534,1000,mac,phase-10,without +16,399.35397808432066,0.0,0.0,81.97774706647837,0.1268002500000875,1000,mac,phase-10,without +17,378.67151729069445,0.0,0.0,77.73213632338405,0.1202332910033874,1000,mac,phase-10,without +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858,1000,mac,phase-10,without +19,402.932305515202,0.0,0.0,82.71229144852506,0.1279364170040935,1000,mac,phase-10,without +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364,1000,mac,phase-10,without +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568,1000,mac,phase-10,without +22,404.07320215275104,0.0,0.0,82.94649003202395,0.1282986670048558,1000,mac,phase-10,without +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844,1000,mac,phase-10,without +24,403.0031686498588,0.0,0.0,82.72683794223248,0.1279589170007966,1000,mac,phase-10,without +25,400.56206556674624,0.0,0.0,82.22573831109683,0.1271838339962414,1000,mac,phase-10,without +26,401.1814598637611,0.0,0.0,82.35288503255603,0.127380500001891,1000,mac,phase-10,without +27,401.3059963273414,0.0,0.0,82.37844936713687,0.1274200420011766,1000,mac,phase-10,without +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624,1000,mac,phase-10,without +29,402.8306027222338,0.0,0.0,82.69141431621779,0.1279041250018053,1000,mac,phase-10,without +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011,1000,mac,phase-10,with +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471,1000,mac,phase-10,with +2,4382.027550348223,1.966185465922483,0.0,684.3325176731897,0.6720537090004655,1000,mac,phase-10,with +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344,1000,mac,phase-10,with +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364,1000,mac,phase-10,with +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557,1000,mac,phase-10,with +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387,1000,mac,phase-10,with +7,4368.331000730204,1.9600399188023856,0.0,682.1935547899488,0.6699531249978463,1000,mac,phase-10,with +8,4367.809372487584,1.9598058678162904,0.0,682.1120931458903,0.6698731249998673,1000,mac,phase-10,with +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433,1000,mac,phase-10,with +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591,1000,mac,phase-10,with +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015,1000,mac,phase-10,with +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553,1000,mac,phase-10,with +13,4356.402555742098,1.9546877080056264,0.0,680.330713286365,0.668123707997438,1000,mac,phase-10,with +14,4365.2036763306705,1.958636709965622,0.0,681.7051667651533,0.6694734999982757,1000,mac,phase-10,with +15,4360.810862240808,1.9566656846539945,0.0,681.0191497350809,0.6687997920016642,1000,mac,phase-10,with +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262,1000,mac,phase-10,with +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621,1000,mac,phase-10,with +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128,1000,mac,phase-10,with +19,4438.056671531104,1.9913253452300512,0.0,693.0824739711713,0.6806466670022928,1000,mac,phase-10,with +20,4475.827721362907,2.00827295415278,0.0,698.9811036191074,0.6864394590011216,1000,mac,phase-10,with +21,4374.899715425766,1.962987255672319,0.0,683.2193778852723,0.6709605420037406,1000,mac,phase-10,with +22,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819,1000,mac,phase-10,with +23,4370.521024384246,1.96102256727484,0.0,682.5355664235396,0.6702890000015032,1000,mac,phase-10,with +24,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454,1000,mac,phase-10,with +25,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797,1000,mac,phase-10,with +26,4382.123445150023,1.9662284932570664,0.0,684.3474933734551,0.6720684159954544,1000,mac,phase-10,with +27,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432,1000,mac,phase-10,with +28,4361.726697985227,1.9570766138207232,0.0,681.162173979806,0.6689402499978314,1000,mac,phase-10,with +29,4360.017283100929,1.9563096111804792,0.0,680.8952180608669,0.6686780840027495,1000,mac,phase-10,with +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531,1000,mac,phase-11,without +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089,1000,mac,phase-11,without +2,386.8253353097512,0.0,0.0,87.22500746639305,0.1195789579942356,1000,mac,phase-11,without +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987,1000,mac,phase-11,without +4,410.1044494159173,0.0,0.0,92.47420061992683,0.1267752089988789,1000,mac,phase-11,without +5,408.0670027544839,0.0,0.0,92.01477802261016,0.1261453749975771,1000,mac,phase-11,without +6,408.1467946849229,0.0,0.0,92.03277025603695,0.1261700410032062,1000,mac,phase-11,without +7,408.5973928664444,0.0,0.0,92.1343753634586,0.1263093340021441,1000,mac,phase-11,without +8,386.5837986845974,0.0,0.0,87.17054352101684,0.1195042920007836,1000,mac,phase-11,without +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258,1000,mac,phase-11,without +10,407.3952218840771,0.0,0.0,91.86329856641038,0.1259377079986734,1000,mac,phase-11,without +11,409.46030100316216,0.0,0.0,92.32895198964506,0.1265760839960421,1000,mac,phase-11,without +12,415.01542067501595,0.0,0.0,93.58157251530466,0.1282933330003288,1000,mac,phase-11,without +13,409.88663100545983,0.0,0.0,92.42508488022676,0.1267078749951906,1000,mac,phase-11,without +14,386.8309963950141,0.0,0.0,87.22628398103481,0.119580708000285,1000,mac,phase-11,without +15,408.6011647578864,0.0,0.0,92.13522588494506,0.1263105000034556,1000,mac,phase-11,without +16,406.44537592628774,0.0,0.0,91.64911838430376,0.1256440829965868,1000,mac,phase-11,without +17,396.8252034977494,0.0,0.0,89.4798716072401,0.1226702079948154,1000,mac,phase-11,without +18,405.77534837085153,0.0,0.0,91.49803428202073,0.1254369579983176,1000,mac,phase-11,without +19,415.27138496028545,0.0,0.0,93.6392897449062,0.1283724590030033,1000,mac,phase-11,without +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354,1000,mac,phase-11,without +21,361.9479179930077,0.0,0.0,81.61541390277617,0.1118886249969364,1000,mac,phase-11,without +22,407.4975254542064,0.0,0.0,91.88636693565569,0.1259693330066511,1000,mac,phase-11,without +23,409.9073893301796,0.0,0.0,92.42976566212856,0.1267142919969046,1000,mac,phase-11,without +24,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338,1000,mac,phase-11,without +25,414.45147178217695,0.0,0.0,93.45440802555076,0.1281190000008791,1000,mac,phase-11,without +26,386.3541211550232,0.0,0.0,87.11875367582502,0.1194332919985754,1000,mac,phase-11,without +27,409.1427411144483,0.0,0.0,92.25734560522376,0.1264779170014662,1000,mac,phase-11,without +28,409.6813478367339,0.0,0.0,92.37879570449192,0.1266444159991806,1000,mac,phase-11,without +29,405.9621635490298,0.0,0.0,91.54015912190069,0.1254947080014972,1000,mac,phase-11,without +0,4595.378147494374,2.7001478144444446,0.0,709.7629052500422,0.6829660829971544,1000,mac,phase-11,with +1,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479,1000,mac,phase-11,with +2,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886,1000,mac,phase-11,with +3,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246,1000,mac,phase-11,with +4,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568,1000,mac,phase-11,with +5,4606.5699898098865,2.7067239062475346,0.0,711.4915017359026,0.684629416995449,1000,mac,phase-11,with +6,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654,1000,mac,phase-11,with +7,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804,1000,mac,phase-11,with +8,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281,1000,mac,phase-11,with +9,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404,1000,mac,phase-11,with +10,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845,1000,mac,phase-11,with +11,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495,1000,mac,phase-11,with +12,4503.148936965444,2.645955864784455,0.0,695.5179682039748,0.6692589580052299,1000,mac,phase-11,with +13,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871,1000,mac,phase-11,with +14,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482,1000,mac,phase-11,with +15,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759,1000,mac,phase-11,with +16,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602,1000,mac,phase-11,with +17,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186,1000,mac,phase-11,with +18,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621,1000,mac,phase-11,with +19,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419,1000,mac,phase-11,with +20,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636,1000,mac,phase-11,with +21,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363,1000,mac,phase-11,with +22,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023,1000,mac,phase-11,with +23,4462.746741007515,2.622216381848967,0.0,689.2777896895653,0.6632543750019977,1000,mac,phase-11,with +24,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533,1000,mac,phase-11,with +25,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954,1000,mac,phase-11,with +26,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133,1000,mac,phase-11,with +27,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709,1000,mac,phase-11,with +28,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768,1000,mac,phase-11,with +29,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695,1000,mac,phase-11,with +0,580.8490462076469,0.4375130425111193,22.313165168067087,110.42156095992172,0.1313430000009248,1000,mac,phase-29,without +1,577.9638128096457,0.4353397975853406,22.202329676852372,109.87306737519252,0.1306905840028775,1000,mac,phase-29,without +2,571.3580595604811,0.4303641447526656,21.948571382385943,108.61728914873044,0.129196875001071,1000,mac,phase-29,without +3,509.83055091581105,0.3840197671884549,19.585008126611203,96.92068124194776,0.1152841250004712,1000,mac,phase-29,without +4,561.9166389561877,0.423252581634535,21.585881663361288,106.82244002637763,0.1270619579954655,1000,mac,phase-29,without +5,588.3427741262249,0.44315754468051,22.601034778706012,111.84614646898105,0.133037499996135,1000,mac,phase-29,without +6,579.4248575746424,0.4364403006240425,22.25845533182617,110.15081741134487,0.1310209590010345,1000,mac,phase-29,without +7,589.9617378100206,0.4443769970178033,22.66322684790797,112.15391747810868,0.1334035840045544,1000,mac,phase-29,without +8,568.8925810737016,0.4285070719020871,21.853860667006444,108.148592531596,0.1286393750051502,1000,mac,phase-29,without +9,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355672,0.1280307499982882,1000,mac,phase-29,without +10,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.1297934160029399,1000,mac,phase-29,without +11,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034755,0.1305069580048439,1000,mac,phase-29,without +12,550.8068744156343,0.4148843714817339,21.15910294556843,104.71043252550533,0.1245497909985715,1000,mac,phase-29,without +13,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.1323175419965991,1000,mac,phase-29,without +14,576.6522047657539,0.4343518547977751,22.151944594686533,109.6237258147308,0.1303939999997965,1000,mac,phase-29,without +15,578.589761320147,0.4358112809063045,22.226375326221532,109.99206251181424,0.1308321250035078,1000,mac,phase-29,without +16,570.777621784413,0.4299269414912433,21.92627401605341,108.50694577175148,0.1290656249984749,1000,mac,phase-29,without +17,559.7279309023393,0.4216039806321577,21.50180301224005,106.40635849646996,0.1265670420034439,1000,mac,phase-29,without +18,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.1261816249971161,1000,mac,phase-29,without +19,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.1294468749983934,1000,mac,phase-29,without +20,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198,1000,mac,phase-29,without +21,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.1363984580020769,1000,mac,phase-29,without +22,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.1297899169949232,1000,mac,phase-29,without +23,590.8758797423774,0.4450655563271861,22.69834337268649,112.32769925457674,0.1336102920031407,1000,mac,phase-29,without +24,580.168923511577,0.4370007535575931,22.287038431437253,110.29226710942024,0.1311892090016044,1000,mac,phase-29,without +25,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.1283416670048609,1000,mac,phase-29,without +26,596.6714126054211,0.4494309266974027,22.92097726156754,113.42945157647527,0.1349207919993205,1000,mac,phase-29,without +27,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.1315066250026575,1000,mac,phase-29,without +28,602.7321027138048,0.4539960215122233,23.15379709712339,114.58161127550808,0.1362912499971571,1000,mac,phase-29,without +29,575.0345324443498,0.4331333751536327,22.08980213283527,109.31620029838992,0.130028207997384,1000,mac,phase-29,without +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536,1000,mac,phase-29,with +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493,1000,mac,phase-29,with +2,5399.907734117013,5.218201322461614,113.57066190351168,759.8964129645852,0.6863256669967086,1000,mac,phase-29,with +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003,1000,mac,phase-29,with +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715,1000,mac,phase-29,with +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272,1000,mac,phase-29,with +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599,1000,mac,phase-29,with +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276,1000,mac,phase-29,with +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962,1000,mac,phase-29,with +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584,1000,mac,phase-29,with +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608,1000,mac,phase-29,with +11,5399.536300795058,5.2178423878376785,113.56284993147356,759.8441433957505,0.6862784580007428,1000,mac,phase-29,with +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153,1000,mac,phase-29,with +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151,1000,mac,phase-29,with +14,5409.343253817727,5.227319337769412,113.7691094086502,761.224216684217,0.687524916997063,1000,mac,phase-29,with +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099,1000,mac,phase-29,with +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416,1000,mac,phase-29,with +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084,1000,mac,phase-29,with +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481,1000,mac,phase-29,with +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695,1000,mac,phase-29,with +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285,1000,mac,phase-29,with +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882,1000,mac,phase-29,with +22,5438.732295420172,5.25571944075392,114.38721865640856,765.3599590697888,0.6912602500015055,1000,mac,phase-29,with +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235,1000,mac,phase-29,with +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406,1000,mac,phase-29,with +25,5438.364150832097,5.255363684198263,114.37947585290104,765.3081523046171,0.6912134590020287,1000,mac,phase-29,with +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145,1000,mac,phase-29,with +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306,1000,mac,phase-29,with +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348,1000,mac,phase-29,with +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703,1000,mac,phase-29,with +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871,1000,mac,phase-16,without +1,396.406509388618,1.2991178784215116,0.0,90.1306917272438,0.1337517080028192,1000,mac,phase-16,without +2,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.1283866669982671,1000,mac,phase-16,without +3,378.1783407682509,1.2393798590279257,0.0,85.98616481418068,0.1276013329988927,1000,mac,phase-16,without +4,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.1280753750033909,1000,mac,phase-16,without +5,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.1272267079984885,1000,mac,phase-16,without +6,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.1250958329983404,1000,mac,phase-16,without +7,376.4828302874184,1.2338232702067742,0.0,85.60065769245378,0.1270292500048526,1000,mac,phase-16,without +8,372.3979185608552,1.2204360484279575,0.0,84.67187395444776,0.1256509580052807,1000,mac,phase-16,without +9,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935,1000,mac,phase-16,without +10,375.9752882211583,1.232159934825762,0.0,85.48525818101977,0.1268579999959911,1000,mac,phase-16,without +11,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.1262761250036419,1000,mac,phase-16,without +12,380.0242615418349,1.2454293779493255,0.0,86.40587062691674,0.1282241660010186,1000,mac,phase-16,without +13,380.4472152044884,1.2468154971271983,0.0,86.50203732771672,0.1283668749965727,1000,mac,phase-16,without +14,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619,1000,mac,phase-16,without +15,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671,1000,mac,phase-16,without +16,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.1262934999977005,1000,mac,phase-16,without +17,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.1261303330029477,1000,mac,phase-16,without +18,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.1253175000019837,1000,mac,phase-16,without +19,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.1270073749983566,1000,mac,phase-16,without +20,374.82881226544566,1.2284026619859605,0.0,85.22458468426919,0.1264711670010001,1000,mac,phase-16,without +21,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837,1000,mac,phase-16,without +22,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595,1000,mac,phase-16,without +23,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.1281118750048335,1000,mac,phase-16,without +24,352.75184196457076,1.1560512092727298,0.0,80.20495822170533,0.1190221659999224,1000,mac,phase-16,without +25,378.32986245382807,1.2398764314253,0.0,86.02061620185799,0.1276524580025579,1000,mac,phase-16,without +26,377.6759852809123,1.2377335212926268,0.0,85.87194457184252,0.1274318329960806,1000,mac,phase-16,without +27,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.1273741659970255,1000,mac,phase-16,without +28,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.1267671660025371,1000,mac,phase-16,without +29,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.1263089579952065,1000,mac,phase-16,without +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463,1000,mac,phase-16,with +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947,1000,mac,phase-16,with +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871,1000,mac,phase-16,with +3,4335.694701631531,2.062035021448992,0.0,673.6867966850125,0.6660807919979561,1000,mac,phase-16,with +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711,1000,mac,phase-16,with +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248,1000,mac,phase-16,with +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867,1000,mac,phase-16,with +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616,1000,mac,phase-16,with +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431,1000,mac,phase-16,with +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603,1000,mac,phase-16,with +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623,1000,mac,phase-16,with +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934,1000,mac,phase-16,with +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854,1000,mac,phase-16,with +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233,1000,mac,phase-16,with +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968,1000,mac,phase-16,with +15,4422.4905613437695,2.103314704351033,0.0,687.1732685699118,0.6794149999986985,1000,mac,phase-16,with +16,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684,1000,mac,phase-16,with +17,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233,1000,mac,phase-16,with +18,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367,1000,mac,phase-16,with +19,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686,1000,mac,phase-16,with +20,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466,1000,mac,phase-16,with +21,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982,1000,mac,phase-16,with +22,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603,1000,mac,phase-16,with +23,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318,1000,mac,phase-16,with +24,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496,1000,mac,phase-16,with +25,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769,1000,mac,phase-16,with +26,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032,1000,mac,phase-16,with +27,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459,1000,mac,phase-16,with +28,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574,1000,mac,phase-16,with +29,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194,1000,mac,phase-16,with +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298,1000,mac,phase-20,without +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315,1000,mac,phase-20,without +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.1230740000028163,1000,mac,phase-20,without +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065,1000,mac,phase-20,without +4,414.8404317742507,0.7109809081252971,0.0,85.55470261107743,0.1281313330036937,1000,mac,phase-20,without +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828,1000,mac,phase-20,without +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.1286632920018746,1000,mac,phase-20,without +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.126794959003746,1000,mac,phase-20,without +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.1242163330025505,1000,mac,phase-20,without +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521,1000,mac,phase-20,without +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514,1000,mac,phase-20,without +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.1251826670049922,1000,mac,phase-20,without +12,411.592562504149,0.7054144954368015,0.0,84.88487761756177,0.1271281669978634,1000,mac,phase-20,without +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.1268025829995167,1000,mac,phase-20,without +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.1264638749998994,1000,mac,phase-20,without +15,399.1943694562683,0.6841656540097638,0.0,82.32793369917492,0.1232987499970477,1000,mac,phase-20,without +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.1309235410008113,1000,mac,phase-20,without +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.1250162500000442,1000,mac,phase-20,without +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.1251117080028052,1000,mac,phase-20,without +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.1266198330049519,1000,mac,phase-20,without +20,359.6831412166489,0.6164487036276526,0.0,74.17932733652752,0.1110949579961015,1000,mac,phase-20,without +21,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764,1000,mac,phase-20,without +22,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.1272145830007502,1000,mac,phase-20,without +23,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064,1000,mac,phase-20,without +24,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.1268779590027406,1000,mac,phase-20,without +25,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714,1000,mac,phase-20,without +26,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.1281818329953239,1000,mac,phase-20,without +27,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.1278080830015824,1000,mac,phase-20,without +28,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.1285623750009108,1000,mac,phase-20,without +29,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.1284708340026554,1000,mac,phase-20,without +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088,1000,mac,phase-20,with +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537,1000,mac,phase-20,with +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334,1000,mac,phase-20,with +3,4348.094503970354,1.7675587619781763,0.0,678.475763277057,0.6687571250004112,1000,mac,phase-20,with +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395,1000,mac,phase-20,with +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458,1000,mac,phase-20,with +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595,1000,mac,phase-20,with +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057,1000,mac,phase-20,with +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031,1000,mac,phase-20,with +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331,1000,mac,phase-20,with +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702,1000,mac,phase-20,with +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254,1000,mac,phase-20,with +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906,1000,mac,phase-20,with +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986,1000,mac,phase-20,with +14,4346.65978133577,1.766975527974994,0.0,678.2518894551563,0.6685364579971065,1000,mac,phase-20,with +15,4367.501700837171,1.7754480479254011,0.0,681.5040582451767,0.6717420419954578,1000,mac,phase-20,with +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579,1000,mac,phase-20,with +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937,1000,mac,phase-20,with +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709,1000,mac,phase-20,with +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252,1000,mac,phase-20,with +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354,1000,mac,phase-20,with +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782,1000,mac,phase-20,with +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695,1000,mac,phase-20,with +23,4317.882204189577,1.755277056705152,0.0,673.7614422945209,0.6641103330039186,1000,mac,phase-20,with +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662,1000,mac,phase-20,with +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897,1000,mac,phase-20,with +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202,1000,mac,phase-20,with +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887,1000,mac,phase-20,with +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396,1000,mac,phase-20,with +29,4419.641433587555,1.7966435489399235,0.0,689.6399313138453,0.679761375002272,1000,mac,phase-20,with +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395,1000,mac,phase-18,without +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.1276939169983961,1000,mac,phase-18,without +2,379.7503451515355,0.911076889913938,0.0,81.4232790874938,0.1268921250011772,1000,mac,phase-18,without +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.1268949169971165,1000,mac,phase-18,without +4,380.9400699708801,0.913931214609362,0.0,81.67837114268114,0.1272896669979673,1000,mac,phase-18,without +5,312.09731859928553,0.7487673362520624,0.0,66.91761416208246,0.1042861250025453,1000,mac,phase-18,without +6,377.40880702846295,0.905459195820908,0.0,80.92122368577226,0.1261097089955001,1000,mac,phase-18,without +7,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.1234518330020364,1000,mac,phase-18,without +8,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277,1000,mac,phase-18,without +9,377.5661692958721,0.9058367310279496,0.0,80.95496414705343,0.1261622909951256,1000,mac,phase-18,without +10,380.5384223868755,0.9129676030252032,0.0,81.59225281851168,0.1271554579943767,1000,mac,phase-18,without +11,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.1257233749929582,1000,mac,phase-18,without +12,394.5627248223053,0.9466139657190548,0.0,84.59924071407701,0.1318416249996516,1000,mac,phase-18,without +13,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.126691417004622,1000,mac,phase-18,without +14,378.82859285824617,0.9088654706924336,0.0,81.22564373262378,0.1265841249987715,1000,mac,phase-18,without +15,379.1090329887456,0.9095382877817784,0.0,81.28577364509003,0.1266778329954831,1000,mac,phase-18,without +16,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.1235821249938453,1000,mac,phase-18,without +17,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205,1000,mac,phase-18,without +18,381.92828421094526,0.916302085809092,0.0,81.89025677990145,0.127619875005621,1000,mac,phase-18,without +19,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.1268732919998001,1000,mac,phase-18,without +20,383.9252904409535,0.92109319725482,0.0,82.31844018429187,0.1282871669973246,1000,mac,phase-18,without +21,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.1269927079993067,1000,mac,phase-18,without +22,379.801843560333,0.9112004421653628,0.0,81.43432099796371,0.1269093329974566,1000,mac,phase-18,without +23,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.1208661670025321,1000,mac,phase-18,without +24,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.127685334002308,1000,mac,phase-18,without +25,378.08752496595537,0.9070875399041048,0.0,81.06674939957796,0.1263364999977057,1000,mac,phase-18,without +26,375.8814036432744,0.901794730617417,0.0,80.59372907332693,0.1255993329978082,1000,mac,phase-18,without +27,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.1263170419988455,1000,mac,phase-18,without +28,378.28604288554345,0.9075638135693684,0.0,81.10931415344024,0.1264028340010554,1000,mac,phase-18,without +29,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943,1000,mac,phase-18,without +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299,1000,mac,phase-18,with +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385,1000,mac,phase-18,with +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045,1000,mac,phase-18,with +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057,1000,mac,phase-18,with +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268,1000,mac,phase-18,with +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344,1000,mac,phase-18,with +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375,1000,mac,phase-18,with +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743,1000,mac,phase-18,with +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125,1000,mac,phase-18,with +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514,1000,mac,phase-18,with +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048,1000,mac,phase-18,with +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856,1000,mac,phase-18,with +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496,1000,mac,phase-18,with +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685,1000,mac,phase-18,with +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462,1000,mac,phase-18,with +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559,1000,mac,phase-18,with +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298,1000,mac,phase-18,with +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533,1000,mac,phase-18,with +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415,1000,mac,phase-18,with +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282,1000,mac,phase-18,with +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979,1000,mac,phase-18,with +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028,1000,mac,phase-18,with +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217,1000,mac,phase-18,with +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957,1000,mac,phase-18,with +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171,1000,mac,phase-18,with +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815,1000,mac,phase-18,with +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784,1000,mac,phase-18,with +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544,1000,mac,phase-18,with +28,4332.967360737383,2.240071707660648,0.0,676.2341844648398,0.6700551249959972,1000,mac,phase-18,with +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539,1000,mac,phase-18,with +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546,1000,mac,phase-27,without +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422,1000,mac,phase-27,without +2,386.7646891747356,0.0,0.0,80.34820506063755,0.1234175829958985,1000,mac,phase-27,without +3,400.02309949515256,0.0,0.0,83.10256578957589,0.1276483750043553,1000,mac,phase-27,without +4,400.4175651822858,0.0,0.0,83.18451383397155,0.1277742499951273,1000,mac,phase-27,without +5,396.0818362122956,0.0,0.0,82.2837903446803,0.126390707999235,1000,mac,phase-27,without +6,397.7300808589709,0.0,0.0,82.6262039686948,0.1269166670026607,1000,mac,phase-27,without +7,395.98168657862607,0.0,0.0,82.26298481737118,0.1263587499997811,1000,mac,phase-27,without +8,396.5324500295691,0.0,0.0,82.37740284966543,0.1265344999992521,1000,mac,phase-27,without +9,398.14478456222105,0.0,0.0,82.71235634795994,0.1270489999951678,1000,mac,phase-27,without +10,399.33118701966725,0.0,0.0,82.95882483539796,0.127427583996905,1000,mac,phase-27,without +11,397.223970778421,0.0,0.0,82.52106242482209,0.1267551660057506,1000,mac,phase-27,without +12,402.9354331958688,0.0,0.0,83.70758685778524,0.128577707997465,1000,mac,phase-27,without +13,397.41304479758514,0.0,0.0,82.56034149679698,0.1268154999997932,1000,mac,phase-27,without +14,398.0741427062589,0.0,0.0,82.69768089674226,0.1270264580016373,1000,mac,phase-27,without +15,396.5969559370069,0.0,0.0,82.39080359183116,0.1265550839962088,1000,mac,phase-27,without +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509,1000,mac,phase-27,without +17,396.8564054927456,0.0,0.0,82.44470278865771,0.1266378750005969,1000,mac,phase-27,without +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872,1000,mac,phase-27,without +19,397.34449316119225,0.0,0.0,82.54610027702614,0.1267936250005732,1000,mac,phase-27,without +20,397.6506894306738,0.0,0.0,82.60971084266905,0.1268913329986389,1000,mac,phase-27,without +21,397.0926148741081,0.0,0.0,82.49377396899592,0.1267132500070147,1000,mac,phase-27,without +22,396.0943744971357,0.0,0.0,82.2863951033608,0.1263947089973953,1000,mac,phase-27,without +23,397.0390803449771,0.0,0.0,82.48265246942572,0.1266961670044111,1000,mac,phase-27,without +24,396.6367801479797,0.0,0.0,82.39907684934194,0.1265677920018788,1000,mac,phase-27,without +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732,1000,mac,phase-27,without +26,394.427458763678,0.0,0.0,81.94010266529867,0.1258627920033177,1000,mac,phase-27,without +27,406.09638297638475,0.0,0.0,84.36425652867271,0.1295863750056014,1000,mac,phase-27,without +28,407.3996475439181,0.0,0.0,84.63500246709813,0.1300022499999613,1000,mac,phase-27,without +29,408.0202694203579,0.0,0.0,84.76393319730442,0.1302002919983351,1000,mac,phase-27,without +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029,1000,mac,phase-27,with +1,4354.354070461016,2.273796674817034,0.0,681.0021041077019,0.6721263750005164,1000,mac,phase-27,with +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739,1000,mac,phase-27,with +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867,1000,mac,phase-27,with +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185,1000,mac,phase-27,with +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036,1000,mac,phase-27,with +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834,1000,mac,phase-27,with +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246,1000,mac,phase-27,with +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938,1000,mac,phase-27,with +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276,1000,mac,phase-27,with +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405,1000,mac,phase-27,with +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806,1000,mac,phase-27,with +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341,1000,mac,phase-27,with +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212,1000,mac,phase-27,with +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047,1000,mac,phase-27,with +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004,1000,mac,phase-27,with +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738,1000,mac,phase-27,with +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917,1000,mac,phase-27,with +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045,1000,mac,phase-27,with +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948,1000,mac,phase-27,with +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894,1000,mac,phase-27,with +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339,1000,mac,phase-27,with +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831,1000,mac,phase-27,with +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966,1000,mac,phase-27,with +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685,1000,mac,phase-27,with +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241,1000,mac,phase-27,with +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349,1000,mac,phase-27,with +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466,1000,mac,phase-27,with +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023,1000,mac,phase-27,with +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449,1000,mac,phase-27,with +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.1260774999973364,1000,mac,phase-5,without +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.1270055420027347,1000,mac,phase-5,without +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.1273317499944823,1000,mac,phase-5,without +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.1277807910009869,1000,mac,phase-5,without +4,382.865699575474,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585,1000,mac,phase-5,without +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.126890708997962,1000,mac,phase-5,without +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899,1000,mac,phase-5,without +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.1271131670000613,1000,mac,phase-5,without +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.1269129170032101,1000,mac,phase-5,without +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.1268732919998001,1000,mac,phase-5,without +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.1278685830038739,1000,mac,phase-5,without +11,379.158248535522,0.8729402693636388,0.0,81.98923606869253,0.127998458003276,1000,mac,phase-5,without +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.1279381250060396,1000,mac,phase-5,without +13,380.905955104168,0.8769640337118894,0.0,82.3671603970936,0.1285884590033674,1000,mac,phase-5,without +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.128263375001552,1000,mac,phase-5,without +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538,1000,mac,phase-5,without +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952,1000,mac,phase-5,without +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.1270275829956517,1000,mac,phase-5,without +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.1267205830008606,1000,mac,phase-5,without +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.1267619579957681,1000,mac,phase-5,without +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377,1000,mac,phase-5,without +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698,1000,mac,phase-5,without +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.1286793750041397,1000,mac,phase-5,without +23,377.2149146660136,0.868466110096197,0.0,81.5690092636505,0.127342415995372,1000,mac,phase-5,without +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235,1000,mac,phase-5,without +25,377.792424091372,0.8697957164947907,0.0,81.69388998770303,0.1275373750031576,1000,mac,phase-5,without +26,372.2949335054875,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435,1000,mac,phase-5,without +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024,1000,mac,phase-5,without +28,347.61244727258975,0.800312018868975,0.0,75.16776731069372,0.1173490420042071,1000,mac,phase-5,without +29,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907,1000,mac,phase-5,without +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649,1000,mac,phase-5,with +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086,1000,mac,phase-5,with +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261,1000,mac,phase-5,with +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379,1000,mac,phase-5,with +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596,1000,mac,phase-5,with +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012,1000,mac,phase-5,with +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358,1000,mac,phase-5,with +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984,1000,mac,phase-5,with +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149,1000,mac,phase-5,with +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144,1000,mac,phase-5,with +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066,1000,mac,phase-5,with +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439,1000,mac,phase-5,with +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846,1000,mac,phase-5,with +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843,1000,mac,phase-5,with +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685,1000,mac,phase-5,with +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386,1000,mac,phase-5,with +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428,1000,mac,phase-5,with +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229,1000,mac,phase-5,with +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533,1000,mac,phase-5,with +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505,1000,mac,phase-5,with +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795,1000,mac,phase-5,with +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432,1000,mac,phase-5,with +22,4392.603872271309,2.607442063569521,0.0,685.7572627187839,0.6731581249987357,1000,mac,phase-5,with +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675,1000,mac,phase-5,with +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446,1000,mac,phase-5,with +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581,1000,mac,phase-5,with +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689,1000,mac,phase-5,with +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216,1000,mac,phase-5,with +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154,1000,mac,phase-5,with +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794,1000,mac,phase-5,with +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808,1000,mac,phase-2,without +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.1277220839983783,1000,mac,phase-2,without +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.1272478329992736,1000,mac,phase-2,without +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.1273376659955829,1000,mac,phase-2,without +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101,1000,mac,phase-2,without +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.1282137920061359,1000,mac,phase-2,without +6,394.616409505073,0.6568873121251435,0.0,85.2570585105581,0.131947958994715,1000,mac,phase-2,without +7,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888,1000,mac,phase-2,without +8,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.1262204169979668,1000,mac,phase-2,without +9,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019,1000,mac,phase-2,without +10,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021,1000,mac,phase-2,without +11,378.5886374541328,0.630207123850405,0.0,81.79425091658413,0.1265887500048848,1000,mac,phase-2,without +12,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.1284940410041599,1000,mac,phase-2,without +13,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.1273608750052517,1000,mac,phase-2,without +14,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241,1000,mac,phase-2,without +15,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344,1000,mac,phase-2,without +16,376.1731498918869,0.6261862491629446,0.0,81.2723837071485,0.1257810829993104,1000,mac,phase-2,without +17,377.5617067268463,0.6284976719651376,0.0,81.5723820561068,0.1262453749950509,1000,mac,phase-2,without +18,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.1282457499983138,1000,mac,phase-2,without +19,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.1276990840051439,1000,mac,phase-2,without +20,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.1275388750000274,1000,mac,phase-2,without +21,370.9409249040661,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327,1000,mac,phase-2,without +22,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.1235482500051148,1000,mac,phase-2,without +23,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773,1000,mac,phase-2,without +24,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.1300859159964602,1000,mac,phase-2,without +25,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122,1000,mac,phase-2,without +26,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.1262704169930657,1000,mac,phase-2,without +27,380.6645552301474,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738,1000,mac,phase-2,without +28,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.1272568749991478,1000,mac,phase-2,without +29,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.1275444999992032,1000,mac,phase-2,without +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449,1000,mac,phase-2,with +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021,1000,mac,phase-2,with +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229,1000,mac,phase-2,with +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491,1000,mac,phase-2,with +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962,1000,mac,phase-2,with +5,4345.360137259517,1.6675467938398043,0.0,679.7254241049811,0.6724117499979911,1000,mac,phase-2,with +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415,1000,mac,phase-2,with +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838,1000,mac,phase-2,with +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865,1000,mac,phase-2,with +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737,1000,mac,phase-2,with +10,4329.558075685815,1.6614826987404503,0.0,677.2535776605824,0.6699664999978268,1000,mac,phase-2,with +11,4307.3984058292945,1.6529788497487543,0.0,673.7872387345873,0.6665374580043135,1000,mac,phase-2,with +12,4349.584627244564,1.6691679562999129,0.0,680.3862423469704,0.6730654580023838,1000,mac,phase-2,with +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554,1000,mac,phase-2,with +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981,1000,mac,phase-2,with +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243,1000,mac,phase-2,with +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875,1000,mac,phase-2,with +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369,1000,mac,phase-2,with +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125,1000,mac,phase-2,with +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987,1000,mac,phase-2,with +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684,1000,mac,phase-2,with +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822,1000,mac,phase-2,with +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829,1000,mac,phase-2,with +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659,1000,mac,phase-2,with +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864,1000,mac,phase-2,with +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879,1000,mac,phase-2,with +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664,1000,mac,phase-2,with +27,4334.978371818408,1.6635627558938415,0.0,678.1014505574477,0.6708052499961923,1000,mac,phase-2,with +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682,1000,mac,phase-2,with +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487,1000,mac,phase-2,with +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.1257333750036195,1000,mac,phase-3,without +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832,1000,mac,phase-3,without +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.1277571250029723,1000,mac,phase-3,without +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.1318783749957219,1000,mac,phase-3,without +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.1273030829979688,1000,mac,phase-3,without +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225,1000,mac,phase-3,without +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.1280105410041869,1000,mac,phase-3,without +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.1272239169993554,1000,mac,phase-3,without +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.1272712909994879,1000,mac,phase-3,without +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.1268018749979091,1000,mac,phase-3,without +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.1302960419998271,1000,mac,phase-3,without +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.1214435000001685,1000,mac,phase-3,without +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.1277919170024688,1000,mac,phase-3,without +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.1277310000004945,1000,mac,phase-3,without +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639,1000,mac,phase-3,without +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.1275388750000274,1000,mac,phase-3,without +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.127049499998975,1000,mac,phase-3,without +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.1213214579984196,1000,mac,phase-3,without +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.1275617919964133,1000,mac,phase-3,without +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.1269967919943155,1000,mac,phase-3,without +20,339.5262861430443,0.7393221107548216,0.0,72.86758723599522,0.1121294580007088,1000,mac,phase-3,without +21,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.1260682499996619,1000,mac,phase-3,without +22,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.1243212089975713,1000,mac,phase-3,without +23,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.1276745420036604,1000,mac,phase-3,without +24,386.3097856350467,0.8411936800693467,0.0,82.90804910763481,0.1275798329952522,1000,mac,phase-3,without +25,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.1271656670069205,1000,mac,phase-3,without +26,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733,1000,mac,phase-3,without +27,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888,1000,mac,phase-3,without +28,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.1284481249967939,1000,mac,phase-3,without +29,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.1226739999983692,1000,mac,phase-3,without +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824,1000,mac,phase-3,with +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309,1000,mac,phase-3,with +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063,1000,mac,phase-3,with +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915,1000,mac,phase-3,with +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849,1000,mac,phase-3,with +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294,1000,mac,phase-3,with +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797,1000,mac,phase-3,with +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292,1000,mac,phase-3,with +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422,1000,mac,phase-3,with +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556,1000,mac,phase-3,with +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638,1000,mac,phase-3,with +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283,1000,mac,phase-3,with +12,4356.767493437678,2.397615735537004,0.0,680.5232662699196,0.6708844999957364,1000,mac,phase-3,with +13,4341.809499462903,2.389384054186092,0.0,678.1868407131525,0.6685811670031399,1000,mac,phase-3,with +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968,1000,mac,phase-3,with +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453,1000,mac,phase-3,with +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709,1000,mac,phase-3,with +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409,1000,mac,phase-3,with +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754,1000,mac,phase-3,with +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893,1000,mac,phase-3,with +20,4375.239322141577,2.407781149971288,0.0,683.4085497335172,0.6737289170050644,1000,mac,phase-3,with +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018,1000,mac,phase-3,with +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538,1000,mac,phase-3,with +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116,1000,mac,phase-3,with +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911,1000,mac,phase-3,with +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852,1000,mac,phase-3,with +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635,1000,mac,phase-3,with +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468,1000,mac,phase-3,with +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446,1000,mac,phase-3,with +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469,1000,mac,phase-3,with +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.1290693749979254,1000,mac,phase-4,without +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051,1000,mac,phase-4,without +2,379.3227523689651,0.739289559896991,0.0,82.73322256665416,0.1275123750019702,1000,mac,phase-4,without +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.1282127079975907,1000,mac,phase-4,without +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.1270318749957368,1000,mac,phase-4,without +5,377.3349727742443,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827,1000,mac,phase-4,without +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.1275647080037742,1000,mac,phase-4,without +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.1269037500023841,1000,mac,phase-4,without +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.127749125000264,1000,mac,phase-4,without +9,380.193747573396,0.7409871054761438,0.0,82.92319334919391,0.1278051670014974,1000,mac,phase-4,without +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.1276764170033857,1000,mac,phase-4,without +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.127789959005895,1000,mac,phase-4,without +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.127124749997165,1000,mac,phase-4,without +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.1266850829997565,1000,mac,phase-4,without +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841,1000,mac,phase-4,without +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.1375446250021923,1000,mac,phase-4,without +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.1272327080005197,1000,mac,phase-4,without +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.1276012079979409,1000,mac,phase-4,without +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.1282910420050029,1000,mac,phase-4,without +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.1266605839991825,1000,mac,phase-4,without +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.1268799999961629,1000,mac,phase-4,without +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.1255359169954317,1000,mac,phase-4,without +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.1272838750010123,1000,mac,phase-4,without +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.1268487090055714,1000,mac,phase-4,without +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.1266794170005596,1000,mac,phase-4,without +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.1264934169957996,1000,mac,phase-4,without +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865,1000,mac,phase-4,without +27,330.59219602187005,0.6443150524876986,0.0,72.10471178294154,0.1111312089997227,1000,mac,phase-4,without +28,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.1270743339991895,1000,mac,phase-4,without +29,323.76578983555265,0.6310105755122394,0.0,70.61581985959697,0.1088364579991321,1000,mac,phase-4,without +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043,1000,mac,phase-4,with +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336,1000,mac,phase-4,with +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125,1000,mac,phase-4,with +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834,1000,mac,phase-4,with +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116,1000,mac,phase-4,with +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327,1000,mac,phase-4,with +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987,1000,mac,phase-4,with +7,4337.0403644270955,2.031509830681979,0.0,678.790710966559,0.6709766249987297,1000,mac,phase-4,with +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983,1000,mac,phase-4,with +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326,1000,mac,phase-4,with +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708,1000,mac,phase-4,with +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113,1000,mac,phase-4,with +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485,1000,mac,phase-4,with +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637,1000,mac,phase-4,with +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956,1000,mac,phase-4,with +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545,1000,mac,phase-4,with +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394,1000,mac,phase-4,with +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118,1000,mac,phase-4,with +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574,1000,mac,phase-4,with +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509,1000,mac,phase-4,with +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263,1000,mac,phase-4,with +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787,1000,mac,phase-4,with +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361,1000,mac,phase-4,with +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064,1000,mac,phase-4,with +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606,1000,mac,phase-4,with +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084,1000,mac,phase-4,with +26,4347.693469734016,2.03649984376459,0.0,680.4580297640961,0.6726247499973397,1000,mac,phase-4,with +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489,1000,mac,phase-4,with +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278,1000,mac,phase-4,with +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626,1000,mac,phase-4,with +0,356.33566462805965,0.0,0.0,78.6689939309365,0.1220669589965837,1000,mac,phase-22,without +1,365.621944433946,0.0,0.0,80.71914597073523,0.1252480830007698,1000,mac,phase-22,without +2,369.7227878911292,0.0,0.0,81.62449803360438,0.126652874998399,1000,mac,phase-22,without +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455,1000,mac,phase-22,without +4,381.5487589223497,0.0,0.0,84.2353431878597,0.1307040000028791,1000,mac,phase-22,without +5,374.4612274067481,0.0,0.0,82.67061355472525,0.128276082999946,1000,mac,phase-22,without +6,376.2095751151944,0.0,0.0,83.05660005262041,0.1288750000021536,1000,mac,phase-22,without +7,417.9745566255801,0.0,0.0,92.27714518215636,0.1431820840007276,1000,mac,phase-22,without +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442,1000,mac,phase-22,without +9,368.9749927454226,0.0,0.0,81.45940568496007,0.1263967090053483,1000,mac,phase-22,without +10,368.7472965391703,0.0,0.0,81.40913670195931,0.1263187090007704,1000,mac,phase-22,without +11,354.0226975037879,0.0,0.0,78.15835518571936,0.1212746249948395,1000,mac,phase-22,without +12,368.9847223569777,0.0,0.0,81.46155371230721,0.1264000419978401,1000,mac,phase-22,without +13,368.6611806740536,0.0,0.0,81.3901247165121,0.1262892090016976,1000,mac,phase-22,without +14,368.6304066460952,0.0,0.0,81.3833306679253,0.1262786669976776,1000,mac,phase-22,without +15,360.7548186281763,0.0,0.0,79.64462009953212,0.1235807920020306,1000,mac,phase-22,without +16,371.2739682072804,0.0,0.0,81.96695546066114,0.127184249999118,1000,mac,phase-22,without +17,300.1849544333428,0.0,0.0,66.27248042410939,0.1028318750031758,1000,mac,phase-22,without +18,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106,1000,mac,phase-22,without +19,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356,1000,mac,phase-22,without +20,369.8492877304773,0.0,0.0,81.65242567622282,0.1266962090012384,1000,mac,phase-22,without +21,368.8047051618492,0.0,0.0,81.42181092752081,0.1263383749974309,1000,mac,phase-22,without +22,366.89142369116024,0.0,0.0,80.99941164687931,0.1256829580015619,1000,mac,phase-22,without +23,351.5059977726157,0.0,0.0,77.60273795306252,0.1204125000003841,1000,mac,phase-22,without +24,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249,1000,mac,phase-22,without +25,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876,1000,mac,phase-22,without +26,371.2468431633174,0.0,0.0,81.96096700614838,0.1271749579973402,1000,mac,phase-22,without +27,392.0700979045949,0.0,0.0,86.55816190824662,0.1343082080056774,1000,mac,phase-22,without +28,371.75271404089193,0.0,0.0,82.07264921185542,0.1273482499964302,1000,mac,phase-22,without +29,351.3996928408619,0.0,0.0,77.57926878379007,0.1203760839998722,1000,mac,phase-22,without +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826,1000,mac,phase-22,with +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989,1000,mac,phase-22,with +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705,1000,mac,phase-22,with +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731,1000,mac,phase-22,with +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786,1000,mac,phase-22,with +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694,1000,mac,phase-22,with +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159,1000,mac,phase-22,with +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917,1000,mac,phase-22,with +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899,1000,mac,phase-22,with +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922,1000,mac,phase-22,with +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615,1000,mac,phase-22,with +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488,1000,mac,phase-22,with +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839,1000,mac,phase-22,with +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955,1000,mac,phase-22,with +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446,1000,mac,phase-22,with +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393,1000,mac,phase-22,with +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975,1000,mac,phase-22,with +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217,1000,mac,phase-22,with +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491,1000,mac,phase-22,with +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536,1000,mac,phase-22,with +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475,1000,mac,phase-22,with +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606,1000,mac,phase-22,with +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018,1000,mac,phase-22,with +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269,1000,mac,phase-22,with +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302,1000,mac,phase-22,with +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841,1000,mac,phase-22,with +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071,1000,mac,phase-22,with +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335,1000,mac,phase-22,with +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998,1000,mac,phase-22,with +29,4298.143686713266,2.320919342687324,0.0,669.4526064028538,0.6634929580031894,1000,mac,phase-22,with +0,382.11192345358336,0.0,0.0,83.48578836048895,0.1285898329952033,1000,mac,phase-25,without +1,383.063317719908,0.0,0.0,83.69365389802014,0.1289099999994505,1000,mac,phase-25,without +2,378.283444669349,0.0,0.0,82.64932252442081,0.1273014580001472,1000,mac,phase-25,without +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752,1000,mac,phase-25,without +4,379.91545010812285,0.0,0.0,83.0058915093224,0.1278506669987109,1000,mac,phase-25,without +5,377.47332413675264,0.0,0.0,82.47232320254791,0.1270288329978939,1000,mac,phase-25,without +6,378.7013227559976,0.0,0.0,82.74062268900902,0.1274420840054517,1000,mac,phase-25,without +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177,1000,mac,phase-25,without +8,377.4120387598971,0.0,0.0,82.45893325659827,0.1270082089977222,1000,mac,phase-25,without +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708,1000,mac,phase-25,without +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298,1000,mac,phase-25,without +11,373.0895357637535,0.0,0.0,81.51453045685822,0.1255535829986911,1000,mac,phase-25,without +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769,1000,mac,phase-25,without +13,383.83679006238367,0.0,0.0,83.86264613386297,0.1291702920061652,1000,mac,phase-25,without +14,382.0622747139288,0.0,0.0,83.47494084719048,0.1285731250027311,1000,mac,phase-25,without +15,379.26022195757537,0.0,0.0,82.8627338757944,0.1276301670004613,1000,mac,phase-25,without +16,378.4614914107541,0.0,0.0,82.68822309689409,0.127361375001783,1000,mac,phase-25,without +17,376.1883756534947,0.0,0.0,82.19158101539543,0.126596416994289,1000,mac,phase-25,without +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035,1000,mac,phase-25,without +19,376.2270029142905,0.0,0.0,82.2000204990174,0.1266094159946078,1000,mac,phase-25,without +20,376.0207293733377,0.0,0.0,82.15495278946071,0.1265399999974761,1000,mac,phase-25,without +21,377.7483179042934,0.0,0.0,82.53240526245817,0.1271213750005699,1000,mac,phase-25,without +22,378.4316510205191,0.0,0.0,82.68170341417591,0.1273513329942943,1000,mac,phase-25,without +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608,1000,mac,phase-25,without +24,363.8453956857787,0.0,0.0,79.4948229451185,0.122442708001472,1000,mac,phase-25,without +25,374.7420925115319,0.0,0.0,81.87558959799095,0.1261097080059698,1000,mac,phase-25,without +26,384.3096389423701,0.0,0.0,83.96595660155066,0.1293294170027366,1000,mac,phase-25,without +27,378.8730519301984,0.0,0.0,82.7781429667409,0.1274998749941005,1000,mac,phase-25,without +28,376.8858236829585,0.0,0.0,82.34396306632436,0.1268311249950784,1000,mac,phase-25,without +29,376.7586678245342,0.0,0.0,82.31618139704467,0.1267883339969557,1000,mac,phase-25,without +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242,1000,mac,phase-25,with +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093,1000,mac,phase-25,with +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832,1000,mac,phase-25,with +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005,1000,mac,phase-25,with +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286,1000,mac,phase-25,with +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888,1000,mac,phase-25,with +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056,1000,mac,phase-25,with +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718,1000,mac,phase-25,with +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019,1000,mac,phase-25,with +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522,1000,mac,phase-25,with +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947,1000,mac,phase-25,with +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863,1000,mac,phase-25,with +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808,1000,mac,phase-25,with +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149,1000,mac,phase-25,with +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736,1000,mac,phase-25,with +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961,1000,mac,phase-25,with +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928,1000,mac,phase-25,with +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731,1000,mac,phase-25,with +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366,1000,mac,phase-25,with +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125,1000,mac,phase-25,with +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944,1000,mac,phase-25,with +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427,1000,mac,phase-25,with +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008,1000,mac,phase-25,with +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724,1000,mac,phase-25,with +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941,1000,mac,phase-25,with +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141,1000,mac,phase-25,with +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581,1000,mac,phase-25,with +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955,1000,mac,phase-25,with +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355,1000,mac,phase-25,with +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641,1000,mac,phase-25,with +0,381.15527652293935,0.0,0.0,81.51934415933158,0.1286932079965481,1000,mac,phase-13,without +1,385.36513808692746,0.0,0.0,82.41972564382412,0.130114624997077,1000,mac,phase-13,without +2,378.5353754336696,0.0,0.0,80.95901446769543,0.127808625002217,1000,mac,phase-13,without +3,375.9680451234962,0.0,0.0,80.40992831825284,0.1269417919975239,1000,mac,phase-13,without +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456,1000,mac,phase-13,without +5,376.0794774873806,0.0,0.0,80.43376084473613,0.1269794160034507,1000,mac,phase-13,without +6,376.188694437082,0.0,0.0,80.45711955090954,0.127016291997279,1000,mac,phase-13,without +7,378.75676516528466,0.0,0.0,81.00636405679074,0.1278833749965997,1000,mac,phase-13,without +8,378.5499353289353,0.0,0.0,80.96212845610434,0.127813541002979,1000,mac,phase-13,without +9,376.9519574623808,0.0,0.0,80.62036194863003,0.1272740000058547,1000,mac,phase-13,without +10,375.52600605674576,0.0,0.0,80.31538749189194,0.1267925419961102,1000,mac,phase-13,without +11,378.15886475244446,0.0,0.0,80.87848848342348,0.1276814999946509,1000,mac,phase-13,without +12,375.0297909482362,0.0,0.0,80.20925979879881,0.1266250000044237,1000,mac,phase-13,without +13,371.8400015295662,0.0,0.0,79.5270456004583,0.1255480000036186,1000,mac,phase-13,without +14,380.5503420202996,0.0,0.0,81.38996417444876,0.1284889580056187,1000,mac,phase-13,without +15,378.3637191494406,0.0,0.0,80.92230158826523,0.1277506670012371,1000,mac,phase-13,without +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861,1000,mac,phase-13,without +17,374.23394884006944,0.0,0.0,80.03904957029572,0.1263562919994001,1000,mac,phase-13,without +18,377.2002516134433,0.0,0.0,80.67346570345106,0.1273578340042149,1000,mac,phase-13,without +19,364.2633868236725,0.0,0.0,77.90660191302786,0.122989832998428,1000,mac,phase-13,without +20,380.7449517375222,0.0,0.0,81.43158620487097,0.1285546660001273,1000,mac,phase-13,without +21,374.3580929740989,0.0,0.0,80.06560081859438,0.126398208005412,1000,mac,phase-13,without +22,378.7710821980925,0.0,0.0,81.00942610314478,0.1278882089973194,1000,mac,phase-13,without +23,384.0539539971067,0.0,0.0,82.13929697430812,0.1296719170059077,1000,mac,phase-13,without +24,381.7317073342197,0.0,0.0,81.64262793521807,0.1288878340055816,1000,mac,phase-13,without +25,358.74814021678975,0.0,0.0,76.72703202651994,0.1211276659960276,1000,mac,phase-13,without +26,377.330689419243,0.0,0.0,80.70136300682668,0.1274018750045797,1000,mac,phase-13,without +27,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793,1000,mac,phase-13,without +28,368.4089550234593,0.0,0.0,78.7932326948375,0.124389541997516,1000,mac,phase-13,without +29,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174,1000,mac,phase-13,without +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252,1000,mac,phase-13,with +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143,1000,mac,phase-13,with +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413,1000,mac,phase-13,with +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653,1000,mac,phase-13,with +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525,1000,mac,phase-13,with +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557,1000,mac,phase-13,with +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427,1000,mac,phase-13,with +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632,1000,mac,phase-13,with +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706,1000,mac,phase-13,with +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636,1000,mac,phase-13,with +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242,1000,mac,phase-13,with +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164,1000,mac,phase-13,with +12,4419.158622070723,2.6776616900106394,0.0,689.3792545965366,0.6806454170000507,1000,mac,phase-13,with +13,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739,1000,mac,phase-13,with +14,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554,1000,mac,phase-13,with +15,4337.461148529906,2.628159462600572,0.0,676.6346241751016,0.6680622499989113,1000,mac,phase-13,with +16,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586,1000,mac,phase-13,with +17,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295,1000,mac,phase-13,with +18,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005,1000,mac,phase-13,with +19,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879,1000,mac,phase-13,with +20,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957,1000,mac,phase-13,with +21,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418,1000,mac,phase-13,with +22,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706,1000,mac,phase-13,with +23,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824,1000,mac,phase-13,with +24,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733,1000,mac,phase-13,with +25,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746,1000,mac,phase-13,with +26,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593,1000,mac,phase-13,with +27,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348,1000,mac,phase-13,with +28,4358.332696369016,2.640805974943643,0.0,679.8905408149211,0.671276916997158,1000,mac,phase-13,with +29,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551,1000,mac,phase-13,with +0,371.9505742570301,0.0,0.0,79.28333129496517,0.1256908330033184,1000,mac,phase-14,without +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039,1000,mac,phase-14,without +2,380.42500161272574,0.0,0.0,81.08970256598367,0.1285545409991755,1000,mac,phase-14,without +3,379.724029315134,0.0,0.0,80.94028642646145,0.1283176659999299,1000,mac,phase-14,without +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309,1000,mac,phase-14,without +5,376.13581758750024,0.0,0.0,80.17543916220671,0.1271051250005257,1000,mac,phase-14,without +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614,1000,mac,phase-14,without +7,376.2810664428482,0.0,0.0,80.20639976266224,0.1271542079994105,1000,mac,phase-14,without +8,380.54867753629713,0.0,0.0,81.11606477618137,0.1285963339978479,1000,mac,phase-14,without +9,379.31836647407073,0.0,0.0,80.85381713820637,0.1281805830003577,1000,mac,phase-14,without +10,381.0452130124147,0.0,0.0,81.22190407144627,0.1287641249946318,1000,mac,phase-14,without +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587,1000,mac,phase-14,without +12,376.2243494820515,0.0,0.0,80.19431022737417,0.1271350420065573,1000,mac,phase-14,without +13,329.24711978815566,0.0,0.0,70.18085273351087,0.1112603329966077,1000,mac,phase-14,without +14,372.8399531157799,0.0,0.0,79.47290733970135,0.1259913750036503,1000,mac,phase-14,without +15,374.9296776697505,0.0,0.0,79.91834373796102,0.1266975420003291,1000,mac,phase-14,without +16,374.12192675589216,0.0,0.0,79.74616714316706,0.1264245839993236,1000,mac,phase-14,without +17,375.5840417938985,0.0,0.0,80.05782508637942,0.1269186670033377,1000,mac,phase-14,without +18,375.37479914772064,0.0,0.0,80.01322385388747,0.1268479589998605,1000,mac,phase-14,without +19,375.09391603623067,0.0,0.0,79.95335205821166,0.1267530420009279,1000,mac,phase-14,without +20,378.31259142851826,0.0,0.0,80.63943059960772,0.1278407079953467,1000,mac,phase-14,without +21,378.55623535736214,0.0,0.0,80.69136465661818,0.1279230410000309,1000,mac,phase-14,without +22,376.64345322012633,0.0,0.0,80.28364451749893,0.1272766670008422,1000,mac,phase-14,without +23,376.4232347180749,0.0,0.0,80.23670372035055,0.1272022499979357,1000,mac,phase-14,without +24,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102,1000,mac,phase-14,without +25,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959,1000,mac,phase-14,without +26,369.4433498371993,0.0,0.0,78.74890248085369,0.1248435829984373,1000,mac,phase-14,without +27,376.9355548460999,0.0,0.0,80.34590760186201,0.1273753749992465,1000,mac,phase-14,without +28,378.0333122323057,0.0,0.0,80.57990068738393,0.1277463329970487,1000,mac,phase-14,without +29,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645,1000,mac,phase-14,without +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178,1000,mac,phase-14,with +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928,1000,mac,phase-14,with +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591,1000,mac,phase-14,with +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788,1000,mac,phase-14,with +4,4332.3764799353785,2.127886286805196,0.0,674.240718908165,0.6668309590022545,1000,mac,phase-14,with +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093,1000,mac,phase-14,with +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905,1000,mac,phase-14,with +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291,1000,mac,phase-14,with +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341,1000,mac,phase-14,with +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862,1000,mac,phase-14,with +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245,1000,mac,phase-14,with +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937,1000,mac,phase-14,with +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288,1000,mac,phase-14,with +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575,1000,mac,phase-14,with +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733,1000,mac,phase-14,with +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325,1000,mac,phase-14,with +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989,1000,mac,phase-14,with +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246,1000,mac,phase-14,with +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973,1000,mac,phase-14,with +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821,1000,mac,phase-14,with +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617,1000,mac,phase-14,with +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726,1000,mac,phase-14,with +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684,1000,mac,phase-14,with +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297,1000,mac,phase-14,with +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134,1000,mac,phase-14,with +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271,1000,mac,phase-14,with +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358,1000,mac,phase-14,with +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624,1000,mac,phase-14,with +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369,1000,mac,phase-14,with +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649,1000,mac,phase-14,with +0,403.1280711860908,0.0,0.0,84.25633205896268,0.1253158330000587,1000,mac,phase-15,without +1,387.8453998928396,0.0,0.0,81.06215651211087,0.1205650830015656,1000,mac,phase-15,without +2,419.1526392551472,0.0,0.0,87.60556875278897,0.1302972080011386,1000,mac,phase-15,without +3,406.2162918923644,0.0,0.0,84.90178983751325,0.1262758330049109,1000,mac,phase-15,without +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548,1000,mac,phase-15,without +5,414.97228218567807,0.0,0.0,86.73184752485783,0.1289977080014068,1000,mac,phase-15,without +6,409.33346783722465,0.0,0.0,85.55329944517618,0.1272448339950642,1000,mac,phase-15,without +7,387.6850922721412,0.0,0.0,81.02865119931684,0.1205152499969699,1000,mac,phase-15,without +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134,1000,mac,phase-15,without +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388,1000,mac,phase-15,without +10,443.8168553412664,0.0,0.0,92.7605468579152,0.137964292000106,1000,mac,phase-15,without +11,409.103591653989,0.0,0.0,85.50525386013376,0.1271733750036219,1000,mac,phase-15,without +12,410.61660425324544,0.0,0.0,85.8214831209671,0.1276437080014147,1000,mac,phase-15,without +13,402.2978448831,0.0,0.0,84.08280947874876,0.1250577500031795,1000,mac,phase-15,without +14,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471,1000,mac,phase-15,without +15,406.7088823894727,0.0,0.0,85.00474438585651,0.1264289590035332,1000,mac,phase-15,without +16,409.91545590084,0.0,0.0,85.6749386537732,0.1274257499972009,1000,mac,phase-15,without +17,408.4102153116807,0.0,0.0,85.36033379250497,0.1269578329956857,1000,mac,phase-15,without +18,407.3196873856032,0.0,0.0,85.13240651671686,0.1266188329973374,1000,mac,phase-15,without +19,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295,1000,mac,phase-15,without +20,408.7449076956601,0.0,0.0,85.43028663046836,0.1270618750058929,1000,mac,phase-15,without +21,406.67349330879034,0.0,0.0,84.9973478428064,0.1264179580030031,1000,mac,phase-15,without +22,408.2432069034229,0.0,0.0,85.32542797247262,0.1269059169935644,1000,mac,phase-15,without +23,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104,1000,mac,phase-15,without +24,403.50310985493286,0.0,0.0,84.3347175271935,0.125432417000411,1000,mac,phase-15,without +25,408.1030049222433,0.0,0.0,85.29612486627406,0.1268623340001795,1000,mac,phase-15,without +26,395.15070496407816,0.0,0.0,82.58901175705402,0.1228360000022803,1000,mac,phase-15,without +27,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865,1000,mac,phase-15,without +28,405.9890985754069,0.0,0.0,84.85430498859458,0.1262052080055582,1000,mac,phase-15,without +29,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786,1000,mac,phase-15,without +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367,1000,mac,phase-15,with +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543,1000,mac,phase-15,with +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124,1000,mac,phase-15,with +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614,1000,mac,phase-15,with +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087,1000,mac,phase-15,with +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917,1000,mac,phase-15,with +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481,1000,mac,phase-15,with +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222,1000,mac,phase-15,with +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404,1000,mac,phase-15,with +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312,1000,mac,phase-15,with +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824,1000,mac,phase-15,with +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533,1000,mac,phase-15,with +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766,1000,mac,phase-15,with +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874,1000,mac,phase-15,with +14,4319.8312777558685,3.283845150135942,0.0,677.979989007148,0.6700942090028548,1000,mac,phase-15,with +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462,1000,mac,phase-15,with +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344,1000,mac,phase-15,with +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974,1000,mac,phase-15,with +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448,1000,mac,phase-15,with +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309,1000,mac,phase-15,with +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348,1000,mac,phase-15,with +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761,1000,mac,phase-15,with +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644,1000,mac,phase-15,with +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413,1000,mac,phase-15,with +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967,1000,mac,phase-15,with +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905,1000,mac,phase-15,with +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321,1000,mac,phase-15,with +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346,1000,mac,phase-15,with +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033,1000,mac,phase-15,with +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482,1000,mac,phase-15,with +0,373.7002810104703,0.0,0.0,80.05956189892107,0.1265379169999505,1000,mac,phase-12,without +1,377.3721755823788,0.0,0.0,80.84620907502472,0.127781249997497,1000,mac,phase-12,without +2,375.5968928291588,0.0,0.0,80.46588193401963,0.127180124996812,1000,mac,phase-12,without +3,376.8571996022623,0.0,0.0,80.73588335826284,0.127606874993944,1000,mac,phase-12,without +4,358.4247515000995,0.0,0.0,76.78701364964624,0.1213655000028666,1000,mac,phase-12,without +5,376.5106839164296,0.0,0.0,80.66164767954228,0.127489541999239,1000,mac,phase-12,without +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804,1000,mac,phase-12,without +7,374.2099647272519,0.0,0.0,80.1687538293157,0.1267105000006267,1000,mac,phase-12,without +8,375.82244863222303,0.0,0.0,80.51420381038605,0.1272565000035683,1000,mac,phase-12,without +9,375.6955792262256,0.0,0.0,80.48702398318585,0.1272135410035844,1000,mac,phase-12,without +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104,1000,mac,phase-12,without +11,367.9267647010967,0.0,0.0,78.82267445239606,0.1245829580002464,1000,mac,phase-12,without +12,374.54122384829685,0.0,0.0,80.23972102268834,0.1268226669999421,1000,mac,phase-12,without +13,375.0623514767027,0.0,0.0,80.35136463588229,0.1269991250010207,1000,mac,phase-12,without +14,374.88404796498406,0.0,0.0,80.31316583925673,0.126938749999681,1000,mac,phase-12,without +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875,1000,mac,phase-12,without +16,375.49242102266754,0.0,0.0,80.44350044948914,0.1271447500039357,1000,mac,phase-12,without +17,373.65007545091566,0.0,0.0,80.04880612669643,0.1265209169941954,1000,mac,phase-12,without +18,378.19699950514024,0.0,0.0,81.02291496810425,0.128060542003368,1000,mac,phase-12,without +19,372.4382495153243,0.0,0.0,79.7891909793948,0.1261105829980806,1000,mac,phase-12,without +20,363.61881019547434,0.0,0.0,77.8997611769015,0.1231242499998188,1000,mac,phase-12,without +21,384.24356897781905,0.0,0.0,82.31829987299409,0.1301079589975415,1000,mac,phase-12,without +22,368.9578241234784,0.0,0.0,79.04356314272411,0.1249320830029319,1000,mac,phase-12,without +23,378.87735844050263,0.0,0.0,81.16867145014876,0.1282909170040511,1000,mac,phase-12,without +24,329.8612412749815,0.0,0.0,70.66771904078234,0.1116936659964267,1000,mac,phase-12,without +25,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101,1000,mac,phase-12,without +26,377.9771021827879,0.0,0.0,80.97580533456942,0.1279860830036341,1000,mac,phase-12,without +27,376.3770485675717,0.0,0.0,80.63301835270623,0.1274442919966532,1000,mac,phase-12,without +28,376.4166725657793,0.0,0.0,80.64150718747139,0.1274577090007369,1000,mac,phase-12,without +29,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799,1000,mac,phase-12,without +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207,1000,mac,phase-12,with +1,4376.520182243895,1.7528193218882475,0.0,681.9815484700583,0.6767852090051747,1000,mac,phase-12,with +2,4337.145668188113,1.73704962218323,0.0,675.845922230983,0.6706963329997961,1000,mac,phase-12,with +3,4341.215338897163,1.7386795466792917,0.0,676.4800882387582,0.6713256669972907,1000,mac,phase-12,with +4,4308.598732289321,1.725616424404978,0.0,671.3975288184906,0.6662818339973455,1000,mac,phase-12,with +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304,1000,mac,phase-12,with +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381,1000,mac,phase-12,with +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761,1000,mac,phase-12,with +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709,1000,mac,phase-12,with +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578,1000,mac,phase-12,with +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612,1000,mac,phase-12,with +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773,1000,mac,phase-12,with +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248,1000,mac,phase-12,with +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235,1000,mac,phase-12,with +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453,1000,mac,phase-12,with +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269,1000,mac,phase-12,with +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693,1000,mac,phase-12,with +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906,1000,mac,phase-12,with +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411,1000,mac,phase-12,with +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086,1000,mac,phase-12,with +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324,1000,mac,phase-12,with +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115,1000,mac,phase-12,with +22,4321.644617054854,1.730841369780742,0.0,673.4304344885379,0.6682992499991087,1000,mac,phase-12,with +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593,1000,mac,phase-12,with +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319,1000,mac,phase-12,with +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376,1000,mac,phase-12,with +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013,1000,mac,phase-12,with +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729,1000,mac,phase-12,with +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226,1000,mac,phase-12,with +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141,1000,mac,phase-12,with +0,376.57177593891714,0.0,0.0,79.74107126114866,0.1257639160030521,1000,mac,phase-24,without +1,380.690278713343,0.0,0.0,80.61318607221193,0.1271393749993876,1000,mac,phase-24,without +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998,1000,mac,phase-24,without +3,321.82332515261595,0.0,0.0,68.14779636766306,0.1074795410022488,1000,mac,phase-24,without +4,377.175622428229,0.0,0.0,79.86893895865455,0.1259655829999246,1000,mac,phase-24,without +5,380.9577662999694,0.0,0.0,80.66982798769662,0.1272287079991656,1000,mac,phase-24,without +6,381.55025850883186,0.0,0.0,80.79529135608311,0.1274265829997602,1000,mac,phase-24,without +7,386.5080296823765,0.0,0.0,81.84512570296262,0.1290823329982231,1000,mac,phase-24,without +8,378.1668532813673,0.0,0.0,80.07883735026734,0.1262966249996679,1000,mac,phase-24,without +9,364.021648680628,0.0,0.0,77.0835152360204,0.1215725420042872,1000,mac,phase-24,without +10,381.3288079055205,0.0,0.0,80.7483980160407,0.1273526250006398,1000,mac,phase-24,without +11,372.39002208305175,0.0,0.0,78.85556269804478,0.1243673330027377,1000,mac,phase-24,without +12,382.33663003234,0.0,0.0,80.96180969787187,0.1276892079986282,1000,mac,phase-24,without +13,380.7838498071915,0.0,0.0,80.63300024772721,0.1271706249972339,1000,mac,phase-24,without +14,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207,1000,mac,phase-24,without +15,359.0034919453096,0.0,0.0,76.02089392609103,0.1198966250012745,1000,mac,phase-24,without +16,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113,1000,mac,phase-24,without +17,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118,1000,mac,phase-24,without +18,382.58927200969583,0.0,0.0,81.01530797683783,0.1277735830008168,1000,mac,phase-24,without +19,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988,1000,mac,phase-24,without +20,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475,1000,mac,phase-24,without +21,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802,1000,mac,phase-24,without +22,380.5168592731632,0.0,0.0,80.57646358576704,0.1270814579984289,1000,mac,phase-24,without +23,379.91950137360783,0.0,0.0,80.44996988156394,0.1268819580000126,1000,mac,phase-24,without +24,380.7278329052986,0.0,0.0,80.62113837158283,0.1271519169968087,1000,mac,phase-24,without +25,381.2378568006439,0.0,0.0,80.7291386370892,0.1273222500021802,1000,mac,phase-24,without +26,381.37821343052354,0.0,0.0,80.75885989805546,0.1273691249953117,1000,mac,phase-24,without +27,358.5115594791486,0.0,0.0,75.91672461668911,0.1197323340020375,1000,mac,phase-24,without +28,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729,1000,mac,phase-24,without +29,378.77381981874754,0.0,0.0,80.2073657345035,0.1264993340009823,1000,mac,phase-24,without +0,4335.519852132827,1.998426580480376,0.0,678.132752976341,0.6699371249997057,1000,mac,phase-24,with +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514,1000,mac,phase-24,with +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133,1000,mac,phase-24,with +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932,1000,mac,phase-24,with +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202,1000,mac,phase-24,with +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873,1000,mac,phase-24,with +6,4442.778222222504,2.0478665519432595,0.0,694.9093832927462,0.6865109999998822,1000,mac,phase-24,with +7,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265,1000,mac,phase-24,with +8,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114,1000,mac,phase-24,with +9,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809,1000,mac,phase-24,with +10,4319.72068635306,1.9911440690583215,0.0,675.6615541004571,0.667495791996771,1000,mac,phase-24,with +11,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105,1000,mac,phase-24,with +12,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653,1000,mac,phase-24,with +13,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835,1000,mac,phase-24,with +14,4331.440896987593,1.9965464155495631,0.0,677.4947503431518,0.6693068329987,1000,mac,phase-24,with +15,4331.623180642343,1.9966304378844304,0.0,677.5232619221168,0.6693349999986822,1000,mac,phase-24,with +16,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171,1000,mac,phase-24,with +17,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132,1000,mac,phase-24,with +18,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548,1000,mac,phase-24,with +19,4331.732931351392,1.9966810266815465,0.0,677.5404283872713,0.6693519589971402,1000,mac,phase-24,with +20,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524,1000,mac,phase-24,with +21,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489,1000,mac,phase-24,with +22,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182,1000,mac,phase-24,with +23,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922,1000,mac,phase-24,with +24,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994,1000,mac,phase-24,with +25,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739,1000,mac,phase-24,with +26,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682,1000,mac,phase-24,with +27,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981,1000,mac,phase-24,with +28,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206,1000,mac,phase-24,with +29,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657,1000,mac,phase-24,with +0,375.7903775249154,0.0,0.0,80.41439874522317,0.1264599169953726,1000,mac,phase-23,without +1,383.4508304762699,0.0,0.0,82.0536390106512,0.1290377909972448,1000,mac,phase-23,without +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519,1000,mac,phase-23,without +3,378.9841223881726,0.0,0.0,81.09781984454986,0.127534667000873,1000,mac,phase-23,without +4,377.41585176705246,0.0,0.0,80.76222972141316,0.1270069169986527,1000,mac,phase-23,without +5,378.5934796234818,0.0,0.0,81.01422722237132,0.1274032090004766,1000,mac,phase-23,without +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686,1000,mac,phase-23,without +7,381.4723549525934,0.0,0.0,81.63027021468451,0.1283719999992172,1000,mac,phase-23,without +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033,1000,mac,phase-23,without +9,376.8108781888688,0.0,0.0,80.63277300975706,0.1268033329979516,1000,mac,phase-23,without +10,377.2519165934144,0.0,0.0,80.72714966292916,0.126951749996806,1000,mac,phase-23,without +11,367.1828436771961,0.0,0.0,78.57249511905164,0.1235633340038475,1000,mac,phase-23,without +12,377.61655773184407,0.0,0.0,80.80517826519866,0.1270744580033351,1000,mac,phase-23,without +13,377.07560168009087,0.0,0.0,80.68942049637064,0.1268924169999081,1000,mac,phase-23,without +14,378.470650841746,0.0,0.0,80.98794341303869,0.1273618750055902,1000,mac,phase-23,without +15,378.9410339449637,0.0,0.0,81.08859946143005,0.1275201669996022,1000,mac,phase-23,without +16,378.1692783957104,0.0,0.0,80.92345351256293,0.1272604580008192,1000,mac,phase-23,without +17,360.8712520229351,0.0,0.0,77.22189415011354,0.1214393749978626,1000,mac,phase-23,without +18,376.8633777379917,0.0,0.0,80.64400725078504,0.1268209999980172,1000,mac,phase-23,without +19,378.58864776937514,0.0,0.0,81.01319326656494,0.1274015829985728,1000,mac,phase-23,without +20,377.4466793231688,0.0,0.0,80.76882642941354,0.1270172910008113,1000,mac,phase-23,without +21,377.031895147184,0.0,0.0,80.68006784985506,0.126877709000837,1000,mac,phase-23,without +22,374.3029586664954,0.0,0.0,80.09610987904745,0.1259593750000931,1000,mac,phase-23,without +23,347.9967234803297,0.0,0.0,74.46690750383311,0.1171068749972619,1000,mac,phase-23,without +24,376.47582842715946,0.0,0.0,80.56107658869635,0.1266905829979805,1000,mac,phase-23,without +25,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271,1000,mac,phase-23,without +26,378.17670742869615,0.0,0.0,80.92504323187597,0.1272629579980275,1000,mac,phase-23,without +27,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385,1000,mac,phase-23,without +28,376.6962243120295,0.0,0.0,80.60823852691433,0.1267647499989834,1000,mac,phase-23,without +29,356.6068604960436,0.0,0.0,76.30936817510647,0.1200043339995318,1000,mac,phase-23,without +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915,1000,mac,phase-23,with +1,4331.503324019295,2.405462702116385,0.0,676.3359297450568,0.6692004170035943,1000,mac,phase-23,with +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156,1000,mac,phase-23,with +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433,1000,mac,phase-23,with +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722,1000,mac,phase-23,with +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264,1000,mac,phase-23,with +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261,1000,mac,phase-23,with +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994,1000,mac,phase-23,with +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461,1000,mac,phase-23,with +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413,1000,mac,phase-23,with +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163,1000,mac,phase-23,with +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986,1000,mac,phase-23,with +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575,1000,mac,phase-23,with +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499,1000,mac,phase-23,with +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617,1000,mac,phase-23,with +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059,1000,mac,phase-23,with +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107,1000,mac,phase-23,with +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997,1000,mac,phase-23,with +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968,1000,mac,phase-23,with +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292,1000,mac,phase-23,with +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103,1000,mac,phase-23,with +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821,1000,mac,phase-23,with +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829,1000,mac,phase-23,with +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914,1000,mac,phase-23,with +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086,1000,mac,phase-23,with +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554,1000,mac,phase-23,with +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729,1000,mac,phase-23,with +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415,1000,mac,phase-23,with +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671,1000,mac,phase-23,with +29,4302.407659547652,2.389304677882228,0.0,671.7928319312199,0.6647052500047721,1000,mac,phase-23,with +0,391.0022498249037,0.0,0.0,82.00330714172952,0.1264092919955146,1000,mac,phase-8,without +1,388.85277091672145,0.0,0.0,81.5525056970287,0.1257143750044633,1000,mac,phase-8,without +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597,1000,mac,phase-8,without +3,392.66726186303595,0.0,0.0,82.35250332568698,0.1269475829976727,1000,mac,phase-8,without +4,399.7876812973492,0.0,0.0,83.84583985280774,0.1292495829984545,1000,mac,phase-8,without +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936,1000,mac,phase-8,without +6,394.38228386701905,0.0,0.0,82.71218789581523,0.1275020419998327,1000,mac,phase-8,without +7,392.0421898742136,0.0,0.0,82.22140952684555,0.1267454999979236,1000,mac,phase-8,without +8,396.18906710609906,0.0,0.0,83.09111717552949,0.1280861670020385,1000,mac,phase-8,without +9,394.03494844532105,0.0,0.0,82.63934265444013,0.1273897499995655,1000,mac,phase-8,without +10,392.7300279752369,0.0,0.0,82.36566700640546,0.1269678750031744,1000,mac,phase-8,without +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105,1000,mac,phase-8,without +12,394.3054687072889,0.0,0.0,82.6960777656579,0.1274772079996182,1000,mac,phase-8,without +13,373.9605683304472,0.0,0.0,78.42922478689076,0.1208997920039109,1000,mac,phase-8,without +14,394.4120553877859,0.0,0.0,82.71843175544166,0.1275116670003626,1000,mac,phase-8,without +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296,1000,mac,phase-8,without +16,390.35114282852976,0.0,0.0,81.86675312693883,0.1261987919933744,1000,mac,phase-8,without +17,396.3350882853156,0.0,0.0,83.12174160189497,0.1281333750011981,1000,mac,phase-8,without +18,343.90009686569954,0.0,0.0,72.12476470909637,0.1111813749957946,1000,mac,phase-8,without +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461,1000,mac,phase-8,without +20,395.20003402797175,0.0,0.0,82.88369130185403,0.1277664169974741,1000,mac,phase-8,without +21,392.31580638784453,0.0,0.0,82.27879400229646,0.126833959002397,1000,mac,phase-8,without +22,345.98874293694035,0.0,0.0,72.56280793101395,0.1118566250006551,1000,mac,phase-8,without +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976,1000,mac,phase-8,without +24,392.7198453431928,0.0,0.0,82.36353144451702,0.1269645830034278,1000,mac,phase-8,without +25,410.9331853581329,0.0,0.0,86.18334096221345,0.132852874994569,1000,mac,phase-8,without +26,396.49541525584135,0.0,0.0,83.1553663235251,0.1281852079991949,1000,mac,phase-8,without +27,395.588223713584,0.0,0.0,82.96510474137456,0.1278919169999426,1000,mac,phase-8,without +28,392.22867867129474,0.0,0.0,82.2605210616574,0.1268057909983326,1000,mac,phase-8,without +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405,1000,mac,phase-8,without +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002,1000,mac,phase-8,with +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979,1000,mac,phase-8,with +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341,1000,mac,phase-8,with +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482,1000,mac,phase-8,with +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519,1000,mac,phase-8,with +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996,1000,mac,phase-8,with +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411,1000,mac,phase-8,with +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611,1000,mac,phase-8,with +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564,1000,mac,phase-8,with +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847,1000,mac,phase-8,with +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614,1000,mac,phase-8,with +11,4321.626234797135,1.665251055725281,0.0,678.0902298913345,0.670513832999859,1000,mac,phase-8,with +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626,1000,mac,phase-8,with +13,4312.391545143513,1.66169265528538,0.0,676.6412492322067,0.6690810420041089,1000,mac,phase-8,with +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434,1000,mac,phase-8,with +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791,1000,mac,phase-8,with +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744,1000,mac,phase-8,with +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336,1000,mac,phase-8,with +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872,1000,mac,phase-8,with +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327,1000,mac,phase-8,with +20,4303.975665866741,1.658449766824167,0.0,675.3207450508007,0.6677752920004423,1000,mac,phase-8,with +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242,1000,mac,phase-8,with +22,4338.901909588244,1.671907886770183,0.0,680.8008914928187,0.6731942080004956,1000,mac,phase-8,with +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412,1000,mac,phase-8,with +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607,1000,mac,phase-8,with +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747,1000,mac,phase-8,with +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422,1000,mac,phase-8,with +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349,1000,mac,phase-8,with +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419,1000,mac,phase-8,with +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734,1000,mac,phase-8,with +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.1269404159975238,1000,mac,phase-1,without +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.1279510000022128,1000,mac,phase-1,without +2,415.0127574793532,1.4175777337453508,0.0,92.1425526934478,0.127556833998824,1000,mac,phase-1,without +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.1269669169996632,1000,mac,phase-1,without +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.1270766669986187,1000,mac,phase-1,without +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.1233426670005428,1000,mac,phase-1,without +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818,1000,mac,phase-1,without +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338908,0.1287382910013548,1000,mac,phase-1,without +8,416.11991185189385,1.421359490710763,0.0,92.3883668961996,0.1278971249994356,1000,mac,phase-1,without +9,411.9964417244347,1.4072747684146274,0.0,91.4728599469508,0.1266297499969368,1000,mac,phase-1,without +10,413.4103800010833,1.412104420953603,0.0,91.78678736198415,0.127064332998998,1000,mac,phase-1,without +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.1217907500031287,1000,mac,phase-1,without +12,368.7876480349551,1.259684549241063,0.0,81.87949570066912,0.1133492500011925,1000,mac,phase-1,without +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.126919041002111,1000,mac,phase-1,without +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.1270633339954656,1000,mac,phase-1,without +15,415.7098276987633,1.419958747832471,0.0,92.2973186091106,0.1277710830036085,1000,mac,phase-1,without +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.1279709580048802,1000,mac,phase-1,without +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.1204881249941536,1000,mac,phase-1,without +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976,1000,mac,phase-1,without +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.1281227910003508,1000,mac,phase-1,without +20,411.35644206336633,1.405088692799397,0.0,91.3307650319608,0.1264330419944599,1000,mac,phase-1,without +21,434.2858446220848,1.4834096839726385,0.0,96.42162945822147,0.1334805410006083,1000,mac,phase-1,without +22,425.7506982570446,1.454255800812937,0.0,94.52662705284092,0.1308572089983499,1000,mac,phase-1,without +23,343.1229552610153,1.1720205043073066,0.0,76.18133277997494,0.1054610419960226,1000,mac,phase-1,without +24,425.9506550579292,1.4549388022473182,0.0,94.57102214607568,0.1309186670041526,1000,mac,phase-1,without +25,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.1300685829992289,1000,mac,phase-1,without +26,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162,1000,mac,phase-1,without +27,414.45965044482983,1.4156884611811038,0.0,92.01974997677176,0.1273868330026744,1000,mac,phase-1,without +28,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.1280377500006579,1000,mac,phase-1,without +29,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.1202185420042951,1000,mac,phase-1,without +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348,1000,mac,phase-1,with +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363,1000,mac,phase-1,with +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453,1000,mac,phase-1,with +3,4330.179511549561,1.8300141626022992,0.0,677.2383321019491,0.6701198750015465,1000,mac,phase-1,with +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198,1000,mac,phase-1,with +5,4325.011416888251,1.8278300299586896,0.0,676.430044177803,0.6693200829977286,1000,mac,phase-1,with +6,4325.735138314875,1.828135888054634,0.0,676.5432339175277,0.6694320829992648,1000,mac,phase-1,with +7,4347.06876561683,1.8371518745739288,0.0,679.8798046377772,0.6727335830000811,1000,mac,phase-1,with +8,4327.957460643241,1.8290750826824616,0.0,676.8908042348878,0.6697760000024573,1000,mac,phase-1,with +9,4348.485786304246,1.8377507337943737,0.0,680.1014261027397,0.6729528750001919,1000,mac,phase-1,with +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608,1000,mac,phase-1,with +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531,1000,mac,phase-1,with +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221,1000,mac,phase-1,with +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238,1000,mac,phase-1,with +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096,1000,mac,phase-1,with +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013,1000,mac,phase-1,with +16,4330.573681242119,1.8301807460240551,0.0,677.2999800831567,0.6701808750003693,1000,mac,phase-1,with +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381,1000,mac,phase-1,with +18,4327.686065067118,1.8289603858790968,0.0,676.8483580760569,0.6697339999955148,1000,mac,phase-1,with +19,4330.916964261218,1.8303258237939384,0.0,677.3536694091241,0.6702339999974356,1000,mac,phase-1,with +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324,1000,mac,phase-1,with +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929,1000,mac,phase-1,with +22,4315.7473562602345,1.8239148661399016,0.0,674.9811488256646,0.6678864169953158,1000,mac,phase-1,with +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024,1000,mac,phase-1,with +24,4344.278884181038,1.8359728189422015,0.0,679.4434683045378,0.6723018330012565,1000,mac,phase-1,with +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992,1000,mac,phase-1,with +26,4314.834620808611,1.8235291272118217,0.0,674.8383973685347,0.6677451659998042,1000,mac,phase-1,with +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372,1000,mac,phase-1,with +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875,1000,mac,phase-1,with +29,4332.038357679215,1.8307997454480665,0.0,677.5290548881808,0.6704075419984292,1000,mac,phase-1,with +0,596.4459331278491,0.4886326329094673,23.45436637965443,115.49181302124482,0.1359050419996492,1000,mac,phase-30,without +1,554.2467896523963,0.454061387742615,21.79494661164552,107.3206522885938,0.1262896249972982,1000,mac,phase-30,without +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.128024291996553,1000,mac,phase-30,without +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.1317127079964848,1000,mac,phase-30,without +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885487,0.1296312500053318,1000,mac,phase-30,without +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371764,0.1249224590064841,1000,mac,phase-30,without +6,574.285027647265,0.4704775227960507,22.58292109421043,111.20072306658084,0.1308554999995976,1000,mac,phase-30,without +7,568.8810812926358,0.4660503913685354,22.3704187856897,110.15433893132028,0.1296241670061135,1000,mac,phase-30,without +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196,1000,mac,phase-30,without +9,573.1562154950751,0.4695527542238312,22.538532202743895,110.98214740904696,0.130598290998023,1000,mac,phase-30,without +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.1330455419956706,1000,mac,phase-30,without +11,542.9270608157159,0.444787808029728,21.349814785426947,105.12877548359786,0.1237103329985984,1000,mac,phase-30,without +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095,1000,mac,phase-30,without +13,560.8248965977349,0.4594504390173964,22.053621072835032,108.5943930506118,0.1277885000017704,1000,mac,phase-30,without +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.135394859954,0.130778625003586,1000,mac,phase-30,without +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902384,0.1249148339993553,1000,mac,phase-30,without +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.1294760829987353,1000,mac,phase-30,without +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373,1000,mac,phase-30,without +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913752,0.1291372500054421,1000,mac,phase-30,without +19,582.8598113728299,0.4775023324489214,22.92011195754823,112.86108700524863,0.1328093339980114,1000,mac,phase-30,without +20,575.8457576853292,0.4717561359701918,22.644294526569208,111.50293242324037,0.1312111249935696,1000,mac,phase-30,without +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062836,0.1310481670006993,1000,mac,phase-30,without +22,561.1286338518851,0.4596992728612786,22.065565097341377,108.65320670699792,0.127857708997908,1000,mac,phase-30,without +23,581.2049042884294,0.4761465656292358,22.85503515020332,112.54064183336725,0.13243225000042,1000,mac,phase-30,without +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.1302706669957842,1000,mac,phase-30,without +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.1308044999968842,1000,mac,phase-30,without +26,558.5815399432987,0.457612590508876,21.965404344426048,108.16000442813365,0.1272773329983465,1000,mac,phase-30,without +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.1308387090030009,1000,mac,phase-30,without +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.1301158330024918,1000,mac,phase-30,without +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332224,0.131808792000811,1000,mac,phase-30,without +0,5519.84217345951,4.72710642584526,111.62724174174592,771.4300036520476,0.698210457994719,1000,mac,phase-30,with +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258,1000,mac,phase-30,with +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211,1000,mac,phase-30,with +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729,1000,mac,phase-30,with +4,5448.99591016236,4.666434795034992,110.1945245170406,761.5288268726033,0.6892490419995738,1000,mac,phase-30,with +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845,1000,mac,phase-30,with +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203,1000,mac,phase-30,with +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498,1000,mac,phase-30,with +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937,1000,mac,phase-30,with +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837,1000,mac,phase-30,with +10,5462.674746967845,4.6781491367370425,110.4711503289476,763.4405237645086,0.6909792919977917,1000,mac,phase-30,with +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947,1000,mac,phase-30,with +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783,1000,mac,phase-30,with +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562,1000,mac,phase-30,with +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421,1000,mac,phase-30,with +15,5535.119945995178,4.74019007107577,111.93620267840356,773.5651610990581,0.7001429590018233,1000,mac,phase-30,with +16,5419.449013845381,4.641131295577101,109.59700045127067,757.3994765003574,0.6855116249935236,1000,mac,phase-30,with +17,5435.615181475974,4.654975748459343,109.92392731718992,759.6587923217901,0.6875565000009374,1000,mac,phase-30,with +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156,1000,mac,phase-30,with +19,5449.549965300805,4.6669092791819855,110.2057291212546,761.6062592962202,0.689319124998292,1000,mac,phase-30,with +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152,1000,mac,phase-30,with +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409,1000,mac,phase-30,with +22,5449.408975070284,4.666788537355728,110.20287788927168,761.5865550926165,0.6893012910004472,1000,mac,phase-30,with +23,5401.537331059038,4.6257920108410016,109.23477419885964,754.8962147977454,0.6832459579964052,1000,mac,phase-30,with +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586,1000,mac,phase-30,with +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554,1000,mac,phase-30,with +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894,1000,mac,phase-30,with +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058,1000,mac,phase-30,with +28,5425.496549978012,4.646310310848687,109.71929919761256,758.244654799714,0.6862765839978238,1000,mac,phase-30,with +29,5472.8253332894155,4.686841939958393,110.67642466787464,764.8591271587816,0.6922632499990868,1000,mac,phase-30,with +0,390.2923708501913,0.4469127826171484,0.0,83.81333569389291,0.1297804999994696,1000,mac,phase-6,without +1,365.9657287665602,0.4190570310900451,0.0,78.58931090750231,0.121691375003138,1000,mac,phase-6,without +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035,1000,mac,phase-6,without +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715,1000,mac,phase-6,without +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.1247413749952102,1000,mac,phase-6,without +5,383.3887996646965,0.4390076980217611,0.0,82.33082829054258,0.1274849160035955,1000,mac,phase-6,without +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.1267657089993008,1000,mac,phase-6,without +7,372.53711365314894,0.4265817385264631,0.0,80.00048296365516,0.1238765000016428,1000,mac,phase-6,without +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.1270593330045812,1000,mac,phase-6,without +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.1271557080035563,1000,mac,phase-6,without +10,381.75469649055145,0.4371365325796854,0.0,81.97991280225177,0.1269415420028963,1000,mac,phase-6,without +11,381.439053481218,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572,1000,mac,phase-6,without +12,381.4226364679471,0.4367563000161465,0.0,81.90860457225888,0.1268311249950784,1000,mac,phase-6,without +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.1209846669953549,1000,mac,phase-6,without +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.1269026670051971,1000,mac,phase-6,without +15,384.03863484277593,0.4397518059505053,0.0,82.47037714671785,0.1277009999976144,1000,mac,phase-6,without +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.1271295830010785,1000,mac,phase-6,without +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.1265630839989171,1000,mac,phase-6,without +18,383.1444573623307,0.4387279085449043,0.0,82.27835700249821,0.1274036670001805,1000,mac,phase-6,without +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.1213963339978363,1000,mac,phase-6,without +20,337.2567860558492,0.3861832307518752,0.0,72.42420896715937,0.1121450420032488,1000,mac,phase-6,without +21,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588,1000,mac,phase-6,without +22,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.1273649170034332,1000,mac,phase-6,without +23,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.1270068339945282,1000,mac,phase-6,without +24,381.2948250919911,0.436609946815457,0.0,81.88115771816032,0.1267886249988805,1000,mac,phase-6,without +25,375.600202278002,0.4300891948924535,0.0,80.65826593444629,0.1248950420049368,1000,mac,phase-6,without +26,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.1272384590047295,1000,mac,phase-6,without +27,380.0551779472132,0.4351904618438977,0.0,81.61494969041713,0.1263764160030405,1000,mac,phase-6,without +28,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.1245102920001954,1000,mac,phase-6,without +29,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.1261221669992664,1000,mac,phase-6,without +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535,1000,mac,phase-6,with +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561,1000,mac,phase-6,with +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272,1000,mac,phase-6,with +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199,1000,mac,phase-6,with +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286,1000,mac,phase-6,with +5,4391.016889062863,1.7124603228688555,0.0,684.5811973068672,0.6757975419968716,1000,mac,phase-6,with +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228,1000,mac,phase-6,with +7,4344.730354172825,1.6944089565259697,0.0,677.3648981500287,0.6686738330026856,1000,mac,phase-6,with +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567,1000,mac,phase-6,with +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164,1000,mac,phase-6,with +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068,1000,mac,phase-6,with +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551,1000,mac,phase-6,with +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753,1000,mac,phase-6,with +13,4363.309510738167,1.7016546741477263,0.0,680.261480323997,0.6715332500025397,1000,mac,phase-6,with +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706,1000,mac,phase-6,with +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957,1000,mac,phase-6,with +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198,1000,mac,phase-6,with +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859,1000,mac,phase-6,with +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221,1000,mac,phase-6,with +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357,1000,mac,phase-6,with +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156,1000,mac,phase-6,with +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466,1000,mac,phase-6,with +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512,1000,mac,phase-6,with +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975,1000,mac,phase-6,with +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294,1000,mac,phase-6,with +25,4368.247362930842,1.703580395722884,0.0,681.0313158431011,0.6722932079937891,1000,mac,phase-6,with +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028,1000,mac,phase-6,with +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131,1000,mac,phase-6,with +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972,1000,mac,phase-6,with +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512,1000,mac,phase-6,with +0,384.9922799870706,0.0,0.0,81.6414086697934,0.1287048750018584,1000,mac,phase-7,without +1,382.1713775858955,0.0,0.0,81.0432085039104,0.127761832998658,1000,mac,phase-7,without +2,387.3060348462912,0.0,0.0,82.13206319935875,0.1294783750054193,1000,mac,phase-7,without +3,382.6248077427939,0.0,0.0,81.13936283911889,0.1279134170035831,1000,mac,phase-7,without +4,382.57595115897095,0.0,0.0,81.1290023188346,0.1278970839994144,1000,mac,phase-7,without +5,380.9924394855085,0.0,0.0,80.79320305638996,0.1273677080025663,1000,mac,phase-7,without +6,381.0339464626488,0.0,0.0,80.80200502011628,0.1273815839958842,1000,mac,phase-7,without +7,373.8850362618945,0.0,0.0,79.28600812983309,0.1249916669985395,1000,mac,phase-7,without +8,375.0913924440434,0.0,0.0,79.54182785191026,0.125394957998651,1000,mac,phase-7,without +9,379.9175739652012,0.0,0.0,80.5652672255431,0.1270083749986952,1000,mac,phase-7,without +10,380.5149594438619,0.0,0.0,80.6919487060091,0.1272080839989939,1000,mac,phase-7,without +11,383.2371466215314,0.0,0.0,81.26921533549904,0.1281181250014924,1000,mac,phase-7,without +12,380.5183216338946,0.0,0.0,80.69266169155388,0.1272092079962021,1000,mac,phase-7,without +13,380.6673860889716,0.0,0.0,80.72427227890252,0.1272590410007978,1000,mac,phase-7,without +14,361.8152226748145,0.0,0.0,76.72648516053064,0.1209566670004278,1000,mac,phase-7,without +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084,1000,mac,phase-7,without +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263,1000,mac,phase-7,without +17,380.8158283426864,0.0,0.0,80.7557509223179,0.1273086660003173,1000,mac,phase-7,without +18,365.9374543718208,0.0,0.0,77.6006450336018,0.1223347499981173,1000,mac,phase-7,without +19,378.25367465054006,0.0,0.0,80.21242097122808,0.1264521250050165,1000,mac,phase-7,without +20,356.6132616527771,0.0,0.0,75.62335803886796,0.1192176250042393,1000,mac,phase-7,without +21,384.7918642445624,0.0,0.0,81.59890853566469,0.1286378750010044,1000,mac,phase-7,without +22,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591,1000,mac,phase-7,without +23,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283,1000,mac,phase-7,without +24,382.10669117039305,0.0,0.0,81.02949111174972,0.1277402080013416,1000,mac,phase-7,without +25,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084,1000,mac,phase-7,without +26,363.2618803228803,0.0,0.0,77.03326317762489,0.1214402920013526,1000,mac,phase-7,without +27,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759,1000,mac,phase-7,without +28,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602,1000,mac,phase-7,without +29,380.0084340815053,0.0,0.0,80.58453500900934,0.1270387499971548,1000,mac,phase-7,without +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145,1000,mac,phase-7,with +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862,1000,mac,phase-7,with +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175,1000,mac,phase-7,with +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131,1000,mac,phase-7,with +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066,1000,mac,phase-7,with +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478,1000,mac,phase-7,with +6,4417.676650902167,2.49145203457279,0.0,684.2191674146103,0.67062487500516,1000,mac,phase-7,with +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159,1000,mac,phase-7,with +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944,1000,mac,phase-7,with +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487,1000,mac,phase-7,with +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336,1000,mac,phase-7,with +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097,1000,mac,phase-7,with +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006,1000,mac,phase-7,with +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183,1000,mac,phase-7,with +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441,1000,mac,phase-7,with +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204,1000,mac,phase-7,with +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235,1000,mac,phase-7,with +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284,1000,mac,phase-7,with +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211,1000,mac,phase-7,with +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926,1000,mac,phase-7,with +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846,1000,mac,phase-7,with +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933,1000,mac,phase-7,with +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663,1000,mac,phase-7,with +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835,1000,mac,phase-7,with +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885,1000,mac,phase-7,with +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396,1000,mac,phase-7,with +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204,1000,mac,phase-7,with +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728,1000,mac,phase-7,with +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545,1000,mac,phase-7,with +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802,1000,mac,phase-7,with +0,371.8360981389177,0.0,0.0,79.91504063021144,0.1259272919996874,1000,mac,phase-9,without +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777,1000,mac,phase-9,without +2,378.69492235952407,0.0,0.0,81.38913961900961,0.1282501250025234,1000,mac,phase-9,without +3,377.1005429822752,0.0,0.0,81.04647548997387,0.1277101669984404,1000,mac,phase-9,without +4,376.1059449323693,0.0,0.0,80.83271640642396,0.1273733330017421,1000,mac,phase-9,without +5,377.0002693980719,0.0,0.0,81.02492468413269,0.1276762080015032,1000,mac,phase-9,without +6,376.09511706560784,0.0,0.0,80.83038928053028,0.1273696659991401,1000,mac,phase-9,without +7,373.9279005486811,0.0,0.0,80.36461095273609,0.1266357089989469,1000,mac,phase-9,without +8,375.2913456412782,0.0,0.0,80.65764266890704,0.1270974580038455,1000,mac,phase-9,without +9,375.9660567759833,0.0,0.0,80.8026516339147,0.1273259579975274,1000,mac,phase-9,without +10,380.76937419502184,0.0,0.0,81.83498095488036,0.1289526659966213,1000,mac,phase-9,without +11,374.6659725434551,0.0,0.0,80.52323743829143,0.126885666999442,1000,mac,phase-9,without +12,367.4374331842578,0.0,0.0,78.96967924563978,0.1244376249960623,1000,mac,phase-9,without +13,367.6221062246298,0.0,0.0,79.00936918859718,0.1245001670031342,1000,mac,phase-9,without +14,373.8652749683743,0.0,0.0,80.35115145856713,0.1266145000045071,1000,mac,phase-9,without +15,374.382871422958,0.0,0.0,80.46239332536042,0.126789791000192,1000,mac,phase-9,without +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078,1000,mac,phase-9,without +17,373.0515349216383,0.0,0.0,80.17626238990805,0.1263389160012593,1000,mac,phase-9,without +18,373.3190099077397,0.0,0.0,80.23374813292452,0.1264295000000856,1000,mac,phase-9,without +19,372.9278900370712,0.0,0.0,80.14968862253218,0.1262970419993507,1000,mac,phase-9,without +20,374.2486437648836,0.0,0.0,80.43354510755047,0.1267443329998059,1000,mac,phase-9,without +21,375.006771060872,0.0,0.0,80.59648187986771,0.1270010829975945,1000,mac,phase-9,without +22,375.173975427608,0.0,0.0,80.63241745424612,0.1270577090035658,1000,mac,phase-9,without +23,379.6903796752694,0.0,0.0,81.6030833760348,0.1285872500011464,1000,mac,phase-9,without +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745,1000,mac,phase-9,without +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546,1000,mac,phase-9,without +26,377.5824609660864,0.0,0.0,81.15004933729386,0.1278733750004903,1000,mac,phase-9,without +27,377.7160744515755,0.0,0.0,81.17876555708816,0.1279186250030761,1000,mac,phase-9,without +28,375.568662234418,0.0,0.0,80.71724357080743,0.1271913749951636,1000,mac,phase-9,without +29,375.75431854819095,0.0,0.0,80.757144838954,0.1272542500009876,1000,mac,phase-9,without +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944,1000,mac,phase-9,with +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237,1000,mac,phase-9,with +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636,1000,mac,phase-9,with +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309,1000,mac,phase-9,with +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115,1000,mac,phase-9,with +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606,1000,mac,phase-9,with +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372,1000,mac,phase-9,with +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534,1000,mac,phase-9,with +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623,1000,mac,phase-9,with +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886,1000,mac,phase-9,with +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754,1000,mac,phase-9,with +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207,1000,mac,phase-9,with +12,4327.235400242506,2.364463924465652,0.0,680.0997502174303,0.6709446249951725,1000,mac,phase-9,with +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574,1000,mac,phase-9,with +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149,1000,mac,phase-9,with +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999,1000,mac,phase-9,with +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457,1000,mac,phase-9,with +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501,1000,mac,phase-9,with +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202,1000,mac,phase-9,with +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666,1000,mac,phase-9,with +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456,1000,mac,phase-9,with +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212,1000,mac,phase-9,with +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304,1000,mac,phase-9,with +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887,1000,mac,phase-9,with +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787,1000,mac,phase-9,with +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945,1000,mac,phase-9,with +26,4338.812194020074,2.370789651798745,0.0,681.9192432258304,0.6727396249989397,1000,mac,phase-9,with +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578,1000,mac,phase-9,with +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274,1000,mac,phase-9,with +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904,1000,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n10/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n10/with_smell.csv new file mode 100644 index 000000000..6f834725f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n10/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.4793388750040321,10,mac,phase-19,with +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867,10,mac,phase-19,with +2,1441.9302878449869,0.8980466361832127,0.0,453.4470292994718,0.4827684999982011,10,mac,phase-19,with +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275,10,mac,phase-19,with +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.4821773330040741,10,mac,phase-19,with +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047,10,mac,phase-19,with +6,1443.403897575609,0.8989644130499505,0.0,453.9104386337028,0.4832618750006077,10,mac,phase-19,with +7,1444.6679358767042,0.8997516670204607,0.0,454.3079435737015,0.4836850840001716,10,mac,phase-19,with +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.4824928329981048,10,mac,phase-19,with +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.4815640420056297,10,mac,phase-19,with +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736,10,mac,phase-19,with +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.4813424999956623,10,mac,phase-19,with +12,1446.278188474604,0.9007545462450248,0.0,454.8143232947564,0.4842242080048891,10,mac,phase-19,with +13,1461.7319885114002,0.9103793063712816,0.0,459.6741142133216,0.4893982499997946,10,mac,phase-19,with +14,1485.9730603675405,0.925476855275964,0.0,467.29725807323024,0.4975143330011633,10,mac,phase-19,with +15,1485.196744674062,0.9249933591575864,0.0,467.0531283479768,0.4972544169941102,10,mac,phase-19,with +16,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.482734375000291,10,mac,phase-19,with +17,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.4800897910026833,10,mac,phase-19,with +18,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867,10,mac,phase-19,with +19,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679,10,mac,phase-19,with +20,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.4850834579992806,10,mac,phase-19,with +21,1445.4697617578422,0.9002510511040261,0.0,454.5600955444884,0.4839535409992095,10,mac,phase-19,with +22,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.4804581249991315,10,mac,phase-19,with +23,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503,10,mac,phase-19,with +24,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.4839730419989791,10,mac,phase-19,with +25,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.4804693330006557,10,mac,phase-19,with +26,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.4802924999967217,10,mac,phase-19,with +27,1455.9690940043993,0.9067901259023524,0.0,457.8618439417322,0.4874687919946154,10,mac,phase-19,with +28,1436.5572954868485,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864,10,mac,phase-19,with +29,1432.2019249021291,0.8919877277255372,0.0,450.3877293363795,0.4795113750005839,10,mac,phase-19,with +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.4850850830043782,10,mac,phase-26,with +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073,10,mac,phase-26,with +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.4835799590000533,10,mac,phase-26,with +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713,10,mac,phase-26,with +4,1424.9465914698055,2.933752351272618,0.0,449.7211609933968,0.4767452079977374,10,mac,phase-26,with +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784,10,mac,phase-26,with +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895,10,mac,phase-26,with +7,1442.0672958435391,2.969001326225478,0.0,455.1245516145416,0.4824732919951202,10,mac,phase-26,with +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.479428958002245,10,mac,phase-26,with +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.4815057919986429,10,mac,phase-26,with +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.4818122079959721,10,mac,phase-26,with +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.4855657499938388,10,mac,phase-26,with +12,1443.4372101016247,2.97182177521617,0.0,455.5569042615079,0.4829316250034026,10,mac,phase-26,with +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.4798023340044892,10,mac,phase-26,with +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.481620083002781,10,mac,phase-26,with +15,1430.940346220044,2.946092597704819,0.0,451.6128237133354,0.4787505420026718,10,mac,phase-26,with +16,1433.879062454506,2.952142975813154,0.0,452.5402990900995,0.4797337499985588,10,mac,phase-26,with +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338,10,mac,phase-26,with +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.4819761249964358,10,mac,phase-26,with +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.4826666669978294,10,mac,phase-26,with +20,1445.466802782904,2.97600040361984,0.0,456.19745513017386,0.483610667004541,10,mac,phase-26,with +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073,10,mac,phase-26,with +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602,10,mac,phase-26,with +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814,10,mac,phase-26,with +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204,10,mac,phase-26,with +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738,10,mac,phase-26,with +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832,10,mac,phase-26,with +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.4825754170014988,10,mac,phase-26,with +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.4834982090033008,10,mac,phase-26,with +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.4834735410040593,10,mac,phase-26,with +0,1533.8317063038091,1.9223856119804856,3.480180849275017,458.8204142525148,0.482414374993823,10,mac,phase-21,with +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305,10,mac,phase-21,with +2,1532.7859211727923,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907,10,mac,phase-21,with +3,1538.3956003927374,1.9281056426038587,3.490536077127675,460.1856277683658,0.4838497919990914,10,mac,phase-21,with +4,1522.9541430561326,1.9087525184704217,3.4555002489550732,455.5665709170007,0.4789932089988724,10,mac,phase-21,with +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.6217034126296,0.4843082919978769,10,mac,phase-21,with +6,1558.8705879131594,1.9537674027910896,3.536992711949386,466.31038201443187,0.4902894999977434,10,mac,phase-21,with +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.1310771797192,0.4806381669986876,10,mac,phase-21,with +8,1530.6126061866742,1.9183510417448648,3.4728768859174273,457.85747363576144,0.4814019170007668,10,mac,phase-21,with +9,1529.805810596203,1.9173398667713937,3.4710463105344194,457.6161340640759,0.4811481670039939,10,mac,phase-21,with +10,1543.3268559157984,1.934286095535932,3.501724828125394,461.66073138799834,0.4854007499961881,10,mac,phase-21,with +11,1528.3825913511537,1.9155561142331377,3.467817103353094,457.19040154016074,0.4807005420007044,10,mac,phase-21,with +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202,10,mac,phase-21,with +13,1532.1754590843225,1.9203098002655896,3.476422914273912,458.32497525994063,0.4818934590002754,10,mac,phase-21,with +14,1548.060719170639,1.9402191523196637,3.5124657067855973,463.0767883717431,0.4868896249972749,10,mac,phase-21,with +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935,10,mac,phase-21,with +16,1531.8200143511997,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334,10,mac,phase-21,with +17,1544.5072416097676,1.9357654993488456,3.504403059166014,462.0138242670011,0.4857719999999972,10,mac,phase-21,with +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605,10,mac,phase-21,with +19,1532.2398437391903,1.920390494994772,3.476568999559501,458.3442348657349,0.4819137089943979,10,mac,phase-21,with +20,1550.311531046087,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921,10,mac,phase-21,with +21,1542.165283280946,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617,10,mac,phase-21,with +22,1531.4933249285327,1.9194548662587223,3.4748751889166525,458.12092609688784,0.4816789169999538,10,mac,phase-21,with +23,1524.2148076912772,1.910332537677336,3.458360628553798,455.94367791495455,0.4793897080016904,10,mac,phase-21,with +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068,10,mac,phase-21,with +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.4818482909977319,10,mac,phase-21,with +26,1538.7289158546507,1.9285233943334643,3.4912923518105825,460.2853335820371,0.4839546249932027,10,mac,phase-21,with +27,1566.0945228565863,1.9628213221618085,3.5533834280515495,468.4713028049295,0.4925615419997484,10,mac,phase-21,with +28,1626.4442900112474,2.0384590362524007,3.6903137725258977,486.52393860072385,0.5115425000039977,10,mac,phase-21,with +29,1622.90856352767,2.0340276311041094,3.68229140113675,485.466284437486,0.5104304580017924,10,mac,phase-21,with +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345,10,mac,phase-28,with +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269,10,mac,phase-28,with +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.6473879249105,0.4944300420029321,10,mac,phase-28,with +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.4967914580047363,10,mac,phase-28,with +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.4987448340034461,10,mac,phase-28,with +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246,10,mac,phase-28,with +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705,10,mac,phase-28,with +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.498717749993375,10,mac,phase-28,with +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657,10,mac,phase-28,with +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015,10,mac,phase-28,with +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.4956257500016363,10,mac,phase-28,with +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514,10,mac,phase-28,with +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.4924703750002663,10,mac,phase-28,with +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.4987167500003124,10,mac,phase-28,with +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936,10,mac,phase-28,with +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026,10,mac,phase-28,with +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889,10,mac,phase-28,with +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749,10,mac,phase-28,with +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826,10,mac,phase-28,with +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.495682166001643,10,mac,phase-28,with +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.4990872080015833,10,mac,phase-28,with +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322,10,mac,phase-28,with +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656,10,mac,phase-28,with +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.6036226210395,0.494387499995355,10,mac,phase-28,with +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963,10,mac,phase-28,with +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746,10,mac,phase-28,with +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637,10,mac,phase-28,with +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.4997166250032023,10,mac,phase-28,with +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594,10,mac,phase-28,with +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264,10,mac,phase-28,with +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.4804191670045838,10,mac,phase-17,with +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.4837152499967487,10,mac,phase-17,with +2,1437.3842689682,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448,10,mac,phase-17,with +3,1435.7789167975,0.7680104908680055,0.0,454.194725947244,0.4835930420013028,10,mac,phase-17,with +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.4805542079993756,10,mac,phase-17,with +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554,10,mac,phase-17,with +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761,10,mac,phase-17,with +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.4821173750024172,10,mac,phase-17,with +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863,10,mac,phase-17,with +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.4824882920001982,10,mac,phase-17,with +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.4820442080017528,10,mac,phase-17,with +11,1430.9528339766905,0.7654289776609116,0.0,452.6680414845096,0.4819675409962656,10,mac,phase-17,with +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251,10,mac,phase-17,with +13,1439.437319842241,0.7699674021203672,0.0,455.3520262452711,0.4848252499941736,10,mac,phase-17,with +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234,10,mac,phase-17,with +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461,10,mac,phase-17,with +16,1429.0497166778464,0.7644109838501899,0.0,452.0660087969688,0.4813265409975429,10,mac,phase-17,with +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.4826296669998555,10,mac,phase-17,with +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621,10,mac,phase-17,with +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332,10,mac,phase-17,with +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.4819131670010392,10,mac,phase-17,with +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717,10,mac,phase-17,with +22,1436.4061141941868,0.7683459841496418,0.0,454.3931337566707,0.4838042920018779,10,mac,phase-17,with +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.4801694580019102,10,mac,phase-17,with +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861,10,mac,phase-17,with +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.4797095419999095,10,mac,phase-17,with +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817,10,mac,phase-17,with +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837,10,mac,phase-17,with +28,1433.8801282741756,0.7669948125565385,0.0,453.5940626258276,0.4829535000026226,10,mac,phase-17,with +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747,10,mac,phase-17,with +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.4949604580033337,10,mac,phase-10,with +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918,10,mac,phase-10,with +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945,10,mac,phase-10,with +3,1644.218898611452,1.5241569026019444,0.0,485.0282943234642,0.5176102080004057,10,mac,phase-10,with +4,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.4960029169960762,10,mac,phase-10,with +5,1570.4229559700957,1.455749590500236,0.0,463.25922195873414,0.4943787920055911,10,mac,phase-10,with +6,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.4950067500030854,10,mac,phase-10,with +7,1574.566642586953,1.4595907022674324,0.0,464.48156848064974,0.4956832500029122,10,mac,phase-10,with +8,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233,10,mac,phase-10,with +9,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.4953499580005882,10,mac,phase-10,with +10,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374,10,mac,phase-10,with +11,1602.5001032995297,1.4854844424467897,0.0,472.7216627986351,0.5044768750012736,10,mac,phase-10,with +12,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.4955200000040349,10,mac,phase-10,with +13,1593.1679060882757,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409,10,mac,phase-10,with +14,1568.685115034934,1.4541386479066511,0.0,462.7465760906574,0.4938317090054624,10,mac,phase-10,with +15,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915,10,mac,phase-10,with +16,1579.992203831771,1.4646200852946931,0.0,466.0820553249158,0.4973912500063306,10,mac,phase-10,with +17,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326,10,mac,phase-10,with +18,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526,10,mac,phase-10,with +19,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758,10,mac,phase-10,with +20,1574.658629351438,1.459675972095042,0.0,464.5087036653359,0.4957122080013505,10,mac,phase-10,with +21,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.498898249999911,10,mac,phase-10,with +22,1565.789148638521,1.451454146970356,0.0,461.89229467906654,0.492920040996978,10,mac,phase-10,with +23,1568.7101272229097,1.4541618336874398,0.0,462.75395443844394,0.4938395829958608,10,mac,phase-10,with +24,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.4961264590019709,10,mac,phase-10,with +25,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402,10,mac,phase-10,with +26,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641,10,mac,phase-10,with +27,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868,10,mac,phase-10,with +28,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838,10,mac,phase-10,with +29,1584.888340812466,1.4691587029821032,0.0,467.526367253532,0.4989325839997036,10,mac,phase-10,with +0,1511.643938755003,1.2805555723592537,0.0,470.4830392068025,0.5022656669971184,10,mac,phase-11,with +1,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959,10,mac,phase-11,with +2,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304,10,mac,phase-11,with +3,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075,10,mac,phase-11,with +4,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075,10,mac,phase-11,with +5,1450.011697038547,1.2283451883239749,0.0,451.3006618939489,0.4817874590007704,10,mac,phase-11,with +6,1448.3522481877958,1.226939423104802,0.0,450.784176153694,0.4812360830037505,10,mac,phase-11,with +7,1450.3252002552106,1.228610765607592,0.0,451.3982364235029,0.4818916250005713,10,mac,phase-11,with +8,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.4825925410041236,10,mac,phase-11,with +9,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156,10,mac,phase-11,with +10,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383,10,mac,phase-11,with +11,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.4837174170024809,10,mac,phase-11,with +12,1451.4555736764398,1.229568336333271,0.0,451.7500530841753,0.4822672079972108,10,mac,phase-11,with +13,1470.749938151556,1.245913128456798,0.0,457.75521806058686,0.488678040994273,10,mac,phase-11,with +14,1452.0386934092628,1.2300623132573831,0.0,451.9315428762396,0.4824609580027754,10,mac,phase-11,with +15,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524,10,mac,phase-11,with +16,1453.7180781688437,1.231484966738723,0.0,452.4542334553027,0.4830189579952275,10,mac,phase-11,with +17,1455.6323420932597,1.2331065928852851,0.0,453.0500276670965,0.4836550000036368,10,mac,phase-11,with +18,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.4817882499992265,10,mac,phase-11,with +19,1474.4356339985911,1.2490353837934811,0.0,458.9023515483401,0.4899026670027524,10,mac,phase-11,with +20,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922,10,mac,phase-11,with +21,1456.8314348645265,1.2341223776813306,0.0,453.42323249189207,0.4840534160030074,10,mac,phase-11,with +22,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.4828239169946755,10,mac,phase-11,with +23,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974,10,mac,phase-11,with +24,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.4845845000018016,10,mac,phase-11,with +25,1454.071838478107,1.2317846469237803,0.0,452.5643375751858,0.483136499999091,10,mac,phase-11,with +26,1445.4984738230935,1.2245219115656858,0.0,449.8959693465928,0.4802878749978845,10,mac,phase-11,with +27,1453.5452760949363,1.231338581301661,0.0,452.4004506544535,0.4829615419948823,10,mac,phase-11,with +28,1445.4045486582245,1.224442344949385,0.0,449.8667361416741,0.4802566669968655,10,mac,phase-11,with +29,1451.5710690043643,1.2296661756338918,0.0,451.7859997720845,0.4823055829983786,10,mac,phase-11,with +0,2392.998209324197,3.976975794792876,87.4243026890121,536.7188203059603,0.5162095000050613,10,mac,phase-29,with +1,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201,10,mac,phase-29,with +2,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.4963012079970212,10,mac,phase-29,with +3,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.4911223749950295,10,mac,phase-29,with +4,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304,10,mac,phase-29,with +5,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217,10,mac,phase-29,with +6,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269,10,mac,phase-29,with +7,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.4948305409998283,10,mac,phase-29,with +8,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823,10,mac,phase-29,with +9,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474,10,mac,phase-29,with +10,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459,10,mac,phase-29,with +11,2305.401423920151,3.8313967910576663,84.2240964155981,517.0719843236086,0.4973134169995319,10,mac,phase-29,with +12,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.4950779169957968,10,mac,phase-29,with +13,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218,10,mac,phase-29,with +14,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.4946130000025732,10,mac,phase-29,with +15,2299.0294440458956,3.82080705905282,83.99130648074375,515.642830926085,0.4959388749994105,10,mac,phase-29,with +16,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636,10,mac,phase-29,with +17,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.4990050830019754,10,mac,phase-29,with +18,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.4981591250034398,10,mac,phase-29,with +19,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401,10,mac,phase-29,with +20,2313.5898284762848,3.8450052787660263,84.52324647583058,518.9085384908586,0.4990797920036129,10,mac,phase-29,with +21,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719,10,mac,phase-29,with +22,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981,10,mac,phase-29,with +23,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781,10,mac,phase-29,with +24,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469,10,mac,phase-29,with +25,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.4902136250020703,10,mac,phase-29,with +26,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838,10,mac,phase-29,with +27,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756,10,mac,phase-29,with +28,2287.752886269415,3.802066302310544,83.57933575861786,513.1136435813881,0.4935063340017223,10,mac,phase-29,with +29,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755,10,mac,phase-29,with +0,1449.4460304052652,1.1053478844400375,0.0,457.0446025207368,0.484376374995918,10,mac,phase-16,with +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133,10,mac,phase-16,with +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.4932186669975635,10,mac,phase-16,with +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786,10,mac,phase-16,with +4,1382.9401472485877,1.0546304822684676,0.0,436.07372516828,0.4621514159953221,10,mac,phase-16,with +5,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017,10,mac,phase-16,with +6,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.481087624997599,10,mac,phase-16,with +7,1442.221389474941,1.099838371563632,0.0,454.7665024238108,0.4819620419948478,10,mac,phase-16,with +8,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643,10,mac,phase-16,with +9,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937,10,mac,phase-16,with +10,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358,10,mac,phase-16,with +11,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781,10,mac,phase-16,with +12,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.4888670830041519,10,mac,phase-16,with +13,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.4850446670025121,10,mac,phase-16,with +14,1382.517722651383,1.0543083411710683,0.0,435.9405247054312,0.4620102499975473,10,mac,phase-16,with +15,1448.268022775928,1.1044495355442336,0.0,456.6731488636687,0.4839827079995302,10,mac,phase-16,with +16,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958,10,mac,phase-16,with +17,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285,10,mac,phase-16,with +18,1444.9364893090867,1.101908907337135,0.0,455.6226375944004,0.4828693749950616,10,mac,phase-16,with +19,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807,10,mac,phase-16,with +20,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.4813432079972699,10,mac,phase-16,with +21,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893,10,mac,phase-16,with +22,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.4814878750039497,10,mac,phase-16,with +23,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644,10,mac,phase-16,with +24,1434.6330467519774,1.0940514996144306,0.0,452.3737185526942,0.4794261670031119,10,mac,phase-16,with +25,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179,10,mac,phase-16,with +26,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259,10,mac,phase-16,with +27,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956,10,mac,phase-16,with +28,1433.8784631668889,1.093476053994577,0.0,452.1357805077576,0.4791740000000573,10,mac,phase-16,with +29,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892,10,mac,phase-16,with +0,1498.5408128623817,0.8690099505837388,0.0334234596378361,458.5364427714736,0.4839190410057199,10,mac,phase-20,with +1,1491.5130351462874,0.8649345135229948,0.0332667120585767,456.3860227316141,0.4816495829945779,10,mac,phase-20,with +2,1490.9282803951478,0.8645954118495337,0.0332536696865205,456.2070944293751,0.4814607499938574,10,mac,phase-20,with +3,1498.858609293904,0.8691942420350508,0.0334305477705788,458.6336848645716,0.4840216660013539,10,mac,phase-20,with +4,1501.085510016672,0.8704856308784092,0.0334802165722465,459.31509115464985,0.4847407920024125,10,mac,phase-20,with +5,1479.0403956377672,0.8577015788241764,0.0329885222624683,452.56953691880295,0.4776218330007395,10,mac,phase-20,with +6,1495.4335579034869,0.8672080407157502,0.0333541554121442,457.5856580992068,0.482915624997986,10,mac,phase-20,with +7,1489.2027842934413,0.8635947895980701,0.0332151842153103,455.6791122498432,0.4809035409998614,10,mac,phase-20,with +8,1492.1808861224167,0.8653218030374225,0.0332816078091316,456.5903775334769,0.4818652499961899,10,mac,phase-20,with +9,1495.2063392563043,0.8670762756922921,0.0333490875266266,457.5161317777906,0.4828422499995213,10,mac,phase-20,with +10,1487.4661958807744,0.8625877348700822,0.033176451341157,455.14773594933297,0.4803427500010002,10,mac,phase-20,with +11,1490.5684218110532,0.8643867283837936,0.0332456433993766,456.0969817960486,0.4813445420004427,10,mac,phase-20,with +12,1490.2245606219176,0.8641873218728641,0.033237973918187,455.99176418360855,0.4812334999951417,10,mac,phase-20,with +13,1487.687995347552,0.862716357288644,0.0331813983572555,455.2156040631887,0.4804143750006915,10,mac,phase-20,with +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.1105941707556,0.4876910419989144,10,mac,phase-20,with +15,1484.8391828501335,0.861064319261815,0.0331178584331467,454.34389984434006,0.4794944169989321,10,mac,phase-20,with +16,1492.7811242622347,0.8656698835913483,0.0332949955227441,456.7740435765272,0.4820590829986031,10,mac,phase-20,with +17,1492.3149443588663,0.865399543957411,0.0332845978445158,456.6313978289124,0.4819085409981198,10,mac,phase-20,with +18,1495.187245138547,0.8670652029352565,0.033348661651356,457.5102891949532,0.4828360839965171,10,mac,phase-20,with +19,1506.9395171583026,0.8738803935790314,0.0336107843684242,461.10635075041273,0.4866312079975614,10,mac,phase-20,with +20,1500.7598418289483,0.8702967745634584,0.0334729528678253,459.2154403936957,0.4846356250054668,10,mac,phase-20,with +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446,10,mac,phase-20,with +22,1492.8802179047152,0.8657273484001917,0.0332972057076996,456.8043651039319,0.4820910829948843,10,mac,phase-20,with +23,1490.5962918881432,0.8644028903555643,0.0332462650136755,456.1055097226149,0.4813535419962136,10,mac,phase-20,with +24,1503.3667264430414,0.8718085176205883,0.033531096831561,460.01311743218656,0.4854774580016965,10,mac,phase-20,with +25,1474.89227025517,0.8552960639374243,0.0328960024591317,451.30025773682786,0.4762822920019971,10,mac,phase-20,with +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.4817185420033638,10,mac,phase-20,with +27,1500.2008916666362,0.8699726370766709,0.0334604860414104,459.0444080021095,0.4844551249989308,10,mac,phase-20,with +28,1492.6384201170483,0.8655871288734974,0.0332918126489806,456.7303777313658,0.4820130000007339,10,mac,phase-20,with +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809,10,mac,phase-20,with +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691,10,mac,phase-18,with +1,1494.6927432930363,2.473550026918434,0.0,455.734879283864,0.4958449999976437,10,mac,phase-18,with +2,1493.1747248593665,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275,10,mac,phase-18,with +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.4984720829961588,10,mac,phase-18,with +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588,10,mac,phase-18,with +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215,10,mac,phase-18,with +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248,10,mac,phase-18,with +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.4923728750000009,10,mac,phase-18,with +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.4965036249996046,10,mac,phase-18,with +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.494061249999504,10,mac,phase-18,with +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.495179375000589,10,mac,phase-18,with +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688,10,mac,phase-18,with +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212,10,mac,phase-18,with +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.4918156250059837,10,mac,phase-18,with +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422,10,mac,phase-18,with +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985,10,mac,phase-18,with +16,1492.1949067183675,2.469416385570248,0.0,454.9732837954698,0.4950163749963394,10,mac,phase-18,with +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.493825708006625,10,mac,phase-18,with +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.4948959169996669,10,mac,phase-18,with +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.4921009589961613,10,mac,phase-18,with +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491,10,mac,phase-18,with +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438,10,mac,phase-18,with +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575,10,mac,phase-18,with +23,1499.6939449160884,2.4818264586231,0.0,457.2597559036128,0.4975040839999565,10,mac,phase-18,with +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.4907058749959105,10,mac,phase-18,with +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.4958353749971138,10,mac,phase-18,with +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.4948671250022016,10,mac,phase-18,with +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389,10,mac,phase-18,with +28,1498.364826079165,2.4796269149713344,0.0,456.8545048475564,0.4970631660034996,10,mac,phase-18,with +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.4953921250053099,10,mac,phase-18,with +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.4865007500047795,10,mac,phase-27,with +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.4838650000019697,10,mac,phase-27,with +2,1480.717294074354,2.098418389982776,0.0,450.6936386485229,0.4811567920041852,10,mac,phase-27,with +3,1488.925131299569,2.1100502366859266,0.0,453.19190083487734,0.483823916001711,10,mac,phase-27,with +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666,10,mac,phase-27,with +5,1479.727777126183,2.097016082756709,0.0,450.39245421874654,0.48083525000402,10,mac,phase-27,with +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296,10,mac,phase-27,with +7,1480.7792238858788,2.0985061546465045,0.0,450.7124885479659,0.4811769160005497,10,mac,phase-27,with +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014,10,mac,phase-27,with +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.4740181250017485,10,mac,phase-27,with +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322,10,mac,phase-27,with +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.4793756250001024,10,mac,phase-27,with +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.4862565000003087,10,mac,phase-27,with +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238,10,mac,phase-27,with +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.4834997500001918,10,mac,phase-27,with +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.4806878329982282,10,mac,phase-27,with +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534,10,mac,phase-27,with +17,1477.318804252413,2.093602174511349,0.0,449.6592225922709,0.4800524579986813,10,mac,phase-27,with +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.4824538749962812,10,mac,phase-27,with +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.4760040000037406,10,mac,phase-27,with +20,1479.903703499236,2.0972653991778625,0.0,450.44600184564536,0.4808924170065438,10,mac,phase-27,with +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.4817604169948026,10,mac,phase-27,with +22,1503.04044703954,2.130053945866405,0.0,457.48825303997336,0.488410665995616,10,mac,phase-27,with +23,1480.9454071466057,2.0987416634852356,0.0,450.7630706129957,0.4812309169938089,10,mac,phase-27,with +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.4807852919984725,10,mac,phase-27,with +25,1473.9158306771965,2.088779604828779,0.0,448.6234417926699,0.478946667004493,10,mac,phase-27,with +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397,10,mac,phase-27,with +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.480225541999971,10,mac,phase-27,with +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355,10,mac,phase-27,with +29,1510.0737441282995,2.1400212772485183,0.0,459.6290143245985,0.4906961249944288,10,mac,phase-27,with +0,1535.669135852832,2.361356949030495,0.0,471.3131580006953,0.511045416998968,10,mac,phase-5,with +1,1501.502028693519,2.3088191112663026,0.0,460.8269101501379,0.4996751660000882,10,mac,phase-5,with +2,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831,10,mac,phase-5,with +3,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203,10,mac,phase-5,with +4,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406,10,mac,phase-5,with +5,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604,10,mac,phase-5,with +6,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825,10,mac,phase-5,with +7,1507.9842242384736,2.3187866082600825,0.0,462.8163647675051,0.5018323340045754,10,mac,phase-5,with +8,1525.2583386023323,2.3453485473126583,0.0,468.117973820144,0.5075808749970747,10,mac,phase-5,with +9,1487.4017761634502,2.28713753382386,0.0,456.4993929829304,0.4949828339958912,10,mac,phase-5,with +10,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076,10,mac,phase-5,with +11,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088,10,mac,phase-5,with +12,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453,10,mac,phase-5,with +13,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.4975445419986499,10,mac,phase-5,with +14,1486.045287815104,2.285051698331785,0.0,456.08307231051214,0.4945314169963239,10,mac,phase-5,with +15,1484.8389210893304,2.283196700803686,0.0,455.7128255575126,0.4941299580023042,10,mac,phase-5,with +16,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077,10,mac,phase-5,with +17,1499.9656215906025,2.306456619565252,0.0,460.35537050221234,0.4991638749997946,10,mac,phase-5,with +18,1488.350338699801,2.288596112813635,0.0,456.7905168937592,0.4952984999981709,10,mac,phase-5,with +19,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.495122624997748,10,mac,phase-5,with +20,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.496049250003125,10,mac,phase-5,with +21,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.4955626670052879,10,mac,phase-5,with +22,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.4955531250016065,10,mac,phase-5,with +23,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009,10,mac,phase-5,with +24,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.4958858329991926,10,mac,phase-5,with +25,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721,10,mac,phase-5,with +26,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.4946299160001217,10,mac,phase-5,with +27,1504.0738956441755,2.3127738016056005,0.0,461.6162434161208,0.5005310409978847,10,mac,phase-5,with +28,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622,10,mac,phase-5,with +29,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531,10,mac,phase-5,with +0,1491.8732837180632,0.1671341986195764,0.0,457.51315530122855,0.4853813329973491,10,mac,phase-2,with +1,1490.1256809068748,0.1669384151046217,0.0,456.9772175073916,0.4848127500008559,10,mac,phase-2,with +2,1488.2943221687606,0.1667332484336851,0.0,456.4155942623698,0.4842169169933186,10,mac,phase-2,with +3,1478.1767640016478,0.1655997808699836,0.0,453.3128401534932,0.48092516700126,10,mac,phase-2,with +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.4807152499997755,10,mac,phase-2,with +5,1475.4721125595993,0.165296779431292,0.0,452.48340401521887,0.4800452080016839,10,mac,phase-2,with +6,1484.248678964546,0.166280016016283,0.0,455.1749158429732,0.4829006660002051,10,mac,phase-2,with +7,1479.026359174096,0.1656949608090896,0.0,453.57338571880194,0.481201582995709,10,mac,phase-2,with +8,1478.2323440915482,0.1656060074938437,0.0,453.3298849136479,0.4809432499969261,10,mac,phase-2,with +9,1480.85157375242,0.1658994391513096,0.0,454.133124732795,0.4817954169993754,10,mac,phase-2,with +10,1481.4601486859867,0.1659676176520789,0.0,454.3197565608008,0.4819934170009219,10,mac,phase-2,with +11,1482.2434061160802,0.1660553657901548,0.0,454.5599583139699,0.4822482499948819,10,mac,phase-2,with +12,1491.9479478691496,0.1671425632261376,0.0,457.5360525752291,0.4854056249969289,10,mac,phase-2,with +13,1501.6120194051157,0.1682252267936093,0.0,460.49973582482613,0.4885498330040718,10,mac,phase-2,with +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161,10,mac,phase-2,with +15,1473.289209598557,0.1650522293471529,0.0,451.81397261489656,0.4793349999963538,10,mac,phase-2,with +16,1479.9291063236064,0.1657960953511691,0.0,453.85023141429053,0.4814952919987263,10,mac,phase-2,with +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442,10,mac,phase-2,with +18,1492.6903539863913,0.1672257348016391,0.0,457.76372644600696,0.4856471670063911,10,mac,phase-2,with +19,1482.245585323591,0.1660556099262386,0.0,454.5606266120856,0.4822489590005716,10,mac,phase-2,with +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339,10,mac,phase-2,with +21,1481.4204468550586,0.1659631698656828,0.0,454.3075811903203,0.4819805000006454,10,mac,phase-2,with +22,1521.4543559992917,0.1704481589029252,0.0,466.5847901808677,0.4950055420049466,10,mac,phase-2,with +23,1507.892303639942,0.1689288054984138,0.0,462.4257121713581,0.4905931249959394,10,mac,phase-2,with +24,1545.2417949075991,0.1731130598583494,0.0,473.87969005624586,0.5027447909960756,10,mac,phase-2,with +25,1517.9368635996732,0.1700540950908195,0.0,465.5060799016094,0.4938611250036047,10,mac,phase-2,with +26,1487.6624369941349,0.1666624584923186,0.0,456.22181387687306,0.4840113329992164,10,mac,phase-2,with +27,1484.790276829119,0.1663406910924154,0.0,455.3410077963781,0.4830768749961862,10,mac,phase-2,with +28,1484.8006502773037,0.1663418532272751,0.0,455.34418902434305,0.4830802500000573,10,mac,phase-2,with +29,1470.9937325949477,0.1647950676205941,0.0,451.1100181046144,0.4785881659990991,10,mac,phase-2,with +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.4891792919952422,10,mac,phase-3,with +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176,10,mac,phase-3,with +2,1470.6334323813912,0.0996521649118915,0.0,454.2145676684016,0.4823543749953387,10,mac,phase-3,with +3,1485.0875958430825,0.1006315991129864,0.0,458.67882875699206,0.4870952089986531,10,mac,phase-3,with +4,1472.876125743892,0.099804132930492,0.0,454.9072378971828,0.4830899579974357,10,mac,phase-3,with +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356,10,mac,phase-3,with +6,1476.1830010833758,0.1000282113985979,0.0,455.9285875548095,0.4841745829980937,10,mac,phase-3,with +7,1463.426296356512,0.0991637993600961,0.0,451.9885974833182,0.4799905000036233,10,mac,phase-3,with +8,1471.8095321193011,0.0997318590643937,0.0,454.57781361550656,0.4827401250004186,10,mac,phase-3,with +9,1476.4591795005704,0.1000469256319136,0.0,456.01388703026225,0.484265167004196,10,mac,phase-3,with +10,1480.2938895968366,0.1003067709165972,0.0,457.1982618378502,0.4855229169988888,10,mac,phase-3,with +11,1473.468242797507,0.0998442556048273,0.0,455.090117046803,0.4832841669995105,10,mac,phase-3,with +12,1470.8582862106548,0.0996674013198103,0.0,454.2840152156956,0.4824281250039348,10,mac,phase-3,with +13,1481.467574625828,0.1003863014450677,0.0,457.56076198661873,0.4859078750014305,10,mac,phase-3,with +14,1498.777378307361,0.1015592377955431,0.0,462.9070058720858,0.4915853329948731,10,mac,phase-3,with +15,1481.2213787556393,0.1003696188707997,0.0,457.48472281310535,0.4858271249977406,10,mac,phase-3,with +16,1531.283872192057,0.1037619229909012,0.0,472.9468449925279,0.5022471670017694,10,mac,phase-3,with +17,1470.3611931394696,0.099633717602566,0.0,454.1304848324962,0.4822650830028578,10,mac,phase-3,with +18,1478.7457002780488,0.1002018634570539,0.0,456.7200936372517,0.4850151249993359,10,mac,phase-3,with +19,1464.457703027839,0.0992336889093469,0.0,452.30715404880334,0.480328792000364,10,mac,phase-3,with +20,1474.8152039772676,0.0999355275660516,0.0,455.5061346460632,0.4837259580017417,10,mac,phase-3,with +21,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.4817905829986557,10,mac,phase-3,with +22,1467.7080463118232,0.0994539366868174,0.0,453.311043418514,0.4813948750015697,10,mac,phase-3,with +23,1476.5658867326172,0.1000541562622332,0.0,456.04684424325905,0.4843001660046866,10,mac,phase-3,with +24,1477.537206367709,0.1001199742304141,0.0,456.3468425422278,0.4846187500006635,10,mac,phase-3,with +25,1452.3435435551507,0.0984128166301233,0.0,448.56561820010234,0.4763554579985793,10,mac,phase-3,with +26,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921,10,mac,phase-3,with +27,1471.1452606296632,0.0996868471052106,0.0,454.3726491055499,0.4825222500003292,10,mac,phase-3,with +28,1466.003983774469,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276,10,mac,phase-3,with +29,1458.1899954967043,0.0988089803376801,0.0,450.37133237914605,0.4782730410006479,10,mac,phase-3,with +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908,10,mac,phase-4,with +1,1573.4160634871228,22.800282743848378,0.0,461.1160630781749,0.4818563750013709,10,mac,phase-4,with +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289,10,mac,phase-4,with +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567,10,mac,phase-4,with +4,1576.0847815073448,22.83895498499088,0.0,461.8981758171432,0.482673666003393,10,mac,phase-4,with +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.4821627080018515,10,mac,phase-4,with +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886,10,mac,phase-4,with +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355,10,mac,phase-4,with +8,1576.0729479760837,22.83878350596198,0.0,461.8947078016104,0.4826700420017005,10,mac,phase-4,with +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.4872023339994484,10,mac,phase-4,with +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.4906837089947657,10,mac,phase-4,with +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.4933289170003263,10,mac,phase-4,with +12,1613.171083804858,23.376370483618174,0.0,472.76694098765734,0.4940312920007272,10,mac,phase-4,with +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545,10,mac,phase-4,with +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044,10,mac,phase-4,with +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329,10,mac,phase-4,with +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758,10,mac,phase-4,with +17,1588.96402650174,23.025587392155135,0.0,465.6726553620341,0.4866179160017054,10,mac,phase-4,with +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.4825434170052176,10,mac,phase-4,with +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111,10,mac,phase-4,with +20,1697.495566956316,24.59831177600658,0.0,497.47965022854686,0.5198555419992772,10,mac,phase-4,with +21,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.4996486660020309,10,mac,phase-4,with +22,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483,10,mac,phase-4,with +23,1630.1989199727825,23.623119889674296,0.0,477.7572350101371,0.4992460419962299,10,mac,phase-4,with +24,1632.2295419060226,23.652545516689397,0.0,478.3523429495976,0.4998679170021205,10,mac,phase-4,with +25,1613.240197605974,23.37737200778176,0.0,472.7871959504829,0.4940524580015335,10,mac,phase-4,with +26,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.4955697920013335,10,mac,phase-4,with +27,1610.8625013861165,23.34291694700681,0.0,472.090372048948,0.4933242920014891,10,mac,phase-4,with +28,1614.9038790021225,23.401480320330567,0.0,473.2747657887544,0.4945619580030325,10,mac,phase-4,with +29,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.4993293750012526,10,mac,phase-4,with +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455,10,mac,phase-22,with +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247,10,mac,phase-22,with +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637,10,mac,phase-22,with +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687,10,mac,phase-22,with +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102,10,mac,phase-22,with +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535,10,mac,phase-22,with +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377,10,mac,phase-22,with +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012,10,mac,phase-22,with +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362,10,mac,phase-22,with +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754,10,mac,phase-22,with +10,2530.966135457355,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819,10,mac,phase-22,with +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904,10,mac,phase-22,with +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.4971295420036767,10,mac,phase-22,with +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964,10,mac,phase-22,with +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.495697750004183,10,mac,phase-22,with +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316,10,mac,phase-22,with +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772,10,mac,phase-22,with +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.4958168329976615,10,mac,phase-22,with +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591,10,mac,phase-22,with +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655,10,mac,phase-22,with +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278,10,mac,phase-22,with +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505,10,mac,phase-22,with +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175,10,mac,phase-22,with +23,2797.642040985372,82.6511430553775,94.43706884190712,620.4635152953034,0.5694319999965956,10,mac,phase-22,with +24,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116,10,mac,phase-22,with +25,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507,10,mac,phase-22,with +26,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086,10,mac,phase-22,with +27,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.4958617500014952,10,mac,phase-22,with +28,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456,10,mac,phase-22,with +29,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.4988807499976246,10,mac,phase-22,with +0,1445.0937116123694,0.0994855344525118,0.0,451.26638427659367,0.4804801249993033,10,mac,phase-25,with +1,1451.89089555387,0.0999534774459373,0.0,453.38897369477166,0.4827401250004186,10,mac,phase-25,with +2,1450.1180395946535,0.0998314275600422,0.0,452.8353554123517,0.482150666997768,10,mac,phase-25,with +3,1449.4058631584062,0.0997823987304132,0.0,452.6129606411546,0.4819138750026468,10,mac,phase-25,with +4,1446.5463840973528,0.0995855417374316,0.0,451.7200173209899,0.4809631249954691,10,mac,phase-25,with +5,1445.161635344861,0.0994902105705896,0.0,451.2875951481944,0.4805027090042131,10,mac,phase-25,with +6,1451.1624299232567,0.0999033272086139,0.0,453.1614922182729,0.4824979170007282,10,mac,phase-25,with +7,1461.9935620683018,0.1006489819447163,0.0,456.5437821012335,0.4860991669993382,10,mac,phase-25,with +8,1443.721239879732,0.099391048480602,0.0,450.837795908011,0.4800237910021678,10,mac,phase-25,with +9,1457.922268440679,0.1003686992065088,0.0,455.2724196007243,0.4847454999980982,10,mac,phase-25,with +10,1463.2726687745692,0.1007370403268629,0.0,456.9432149226504,0.4865244579996215,10,mac,phase-25,with +11,1434.2653374502413,0.0987400695860367,0.0,447.8849556422627,0.4768797920041834,10,mac,phase-25,with +12,1440.3483418552953,0.099158845849092,0.0,449.7845247714817,0.4789023339981213,10,mac,phase-25,with +13,1458.1363075618142,0.100383434442147,0.0,455.3392586295791,0.4848166660012794,10,mac,phase-25,with +14,1443.7793888920285,0.0993950516712046,0.0,450.8559543805843,0.4800431250041583,10,mac,phase-25,with +15,1447.6267393486346,0.0996599173427703,0.0,452.0573850668063,0.4813223329983884,10,mac,phase-25,with +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.4835391250016982,10,mac,phase-25,with +17,1450.7958782332366,0.099878092450139,0.0,453.0470273538308,0.4823760419967584,10,mac,phase-25,with +18,1447.8402822026578,0.0996746184135661,0.0,452.12406912393624,0.4813933339974028,10,mac,phase-25,with +19,1442.8031718956472,0.0993278453240687,0.0,450.5511063899757,0.4797185419956804,10,mac,phase-25,with +20,1471.4015954886795,0.1012966653616825,0.0,459.4816740805919,0.4892272500001127,10,mac,phase-25,with +21,1448.4089689054954,0.0997137688853405,0.0,452.30165566390485,0.4815824170000269,10,mac,phase-25,with +22,1437.411540338623,0.0989566656955703,0.0,448.867435595107,0.4779258749986184,10,mac,phase-25,with +23,1446.9099281828417,0.0996105694414146,0.0,451.8335429862568,0.4810839999991003,10,mac,phase-25,with +24,1445.926441829572,0.0995428626451732,0.0,451.526424958506,0.4807569999975385,10,mac,phase-25,with +25,1558.660068355674,0.1073038576558051,0.0,486.7302983267323,0.5182398750039283,10,mac,phase-25,with +26,1444.6335482723644,0.0994538551258024,0.0,451.12268685063987,0.4803271249984391,10,mac,phase-25,with +27,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.4812947079990408,10,mac,phase-25,with +28,1448.532656600787,0.0997222839984937,0.0,452.3402802171675,0.4816235420003067,10,mac,phase-25,with +29,1441.3934810706207,0.0992307970537637,0.0,450.1108954358723,0.479249832998903,10,mac,phase-25,with +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778,10,mac,phase-13,with +1,1488.7041689159475,1.9934442540384945,0.0,459.4224524140717,0.4818315829979838,10,mac,phase-13,with +2,1487.819878516848,1.9922601479872095,0.0,459.1495554394523,0.4815453749979497,10,mac,phase-13,with +3,1491.727934254883,1.9974932167312307,0.0,460.3556033493242,0.4828102499959641,10,mac,phase-13,with +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.4815899169989279,10,mac,phase-13,with +5,1501.2124715705363,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793,10,mac,phase-13,with +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881,10,mac,phase-13,with +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226,10,mac,phase-13,with +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.4821794169984059,10,mac,phase-13,with +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622,10,mac,phase-13,with +10,1497.9545334031648,2.005830923142963,0.0,462.2771667536816,0.4848255410033744,10,mac,phase-13,with +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.4850677080030436,10,mac,phase-13,with +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.4837472500003059,10,mac,phase-13,with +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.487756000002264,10,mac,phase-13,with +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639,10,mac,phase-13,with +15,1529.9467312348206,2.048669966838271,0.0,472.15013835732685,0.4951800839990028,10,mac,phase-13,with +16,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.4869370829983381,10,mac,phase-13,with +17,1491.0045635252643,1.996524589616048,0.0,460.1323670868452,0.4825761249958304,10,mac,phase-13,with +18,1493.856851787251,2.0003439365121194,0.0,461.0125992348264,0.4834992920004879,10,mac,phase-13,with +19,1491.1042056393792,1.9966580150500528,0.0,460.1631172018688,0.4826083750012913,10,mac,phase-13,with +20,1484.7932830352129,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615,10,mac,phase-13,with +21,1505.3592048868377,2.0157461233085665,0.0,464.562289885181,0.4872221249970607,10,mac,phase-13,with +22,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039,10,mac,phase-13,with +23,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.478613375002169,10,mac,phase-13,with +24,1486.3696611665118,1.9903182393766896,0.0,458.7020102350144,0.481075999996392,10,mac,phase-13,with +25,1490.7165777906416,1.996138963297592,0.0,460.0434930746517,0.4824829159988439,10,mac,phase-13,with +26,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.4882316250004805,10,mac,phase-13,with +27,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877,10,mac,phase-13,with +28,1483.4506884174402,1.986409598844992,0.0,457.80119888047585,0.4801312499985215,10,mac,phase-13,with +29,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782,10,mac,phase-13,with +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.4942865000048186,10,mac,phase-14,with +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005,10,mac,phase-14,with +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.4824957500022719,10,mac,phase-14,with +3,1508.1492778731936,1.951623100383721,0.0,443.18107904547,0.4817460420017596,10,mac,phase-14,with +4,1509.5093876893875,1.953383152770635,0.0,443.5807576083317,0.4821805000028689,10,mac,phase-14,with +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872,10,mac,phase-14,with +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.484043999997084,10,mac,phase-14,with +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509,10,mac,phase-14,with +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.4944804589977138,10,mac,phase-14,with +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042,10,mac,phase-14,with +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149,10,mac,phase-14,with +11,1548.4815781326529,2.003815181123219,0.0,455.0330307133976,0.494629332999466,10,mac,phase-14,with +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555,10,mac,phase-14,with +13,1548.2143040147903,2.003469314603102,0.0,454.95449019112107,0.4945439579969388,10,mac,phase-14,with +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453,10,mac,phase-14,with +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676,10,mac,phase-14,with +16,1553.068674945917,2.0097511214414663,0.0,456.380983827333,0.4960945830025594,10,mac,phase-14,with +17,1547.303042521918,2.002290095141161,0.0,454.686709104972,0.4942528749961639,10,mac,phase-14,with +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793,10,mac,phase-14,with +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576,10,mac,phase-14,with +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.4960286249988712,10,mac,phase-14,with +21,1560.5320011886452,2.0194090512728877,0.0,458.5741387265515,0.4984785830019973,10,mac,phase-14,with +22,1572.43476681286,2.034811845075521,0.0,462.0718564858995,0.5022806669949205,10,mac,phase-14,with +23,1545.401732006987,1.9998297010831043,0.0,454.127994620955,0.4936455420029233,10,mac,phase-14,with +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539,10,mac,phase-14,with +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872,10,mac,phase-14,with +26,1565.7153470029502,2.0261165686101243,0.0,460.0973041218824,0.500134292000439,10,mac,phase-14,with +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341,10,mac,phase-14,with +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.4930831250021583,10,mac,phase-14,with +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.4954994579966296,10,mac,phase-14,with +0,1473.756556484359,1.730836715732926,0.0,462.06552715105465,0.4929395419967477,10,mac,phase-15,with +1,1446.159224005418,1.6984253408008363,0.0,453.4129610784978,0.4837088339991169,10,mac,phase-15,with +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742,10,mac,phase-15,with +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.4820898329999181,10,mac,phase-15,with +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.4803014579956652,10,mac,phase-15,with +5,1452.578920577144,1.7059648808159893,0.0,455.4257225943078,0.4858560829961789,10,mac,phase-15,with +6,1491.0040656140802,1.7510928577160183,0.0,467.4731227020312,0.4987084589956794,10,mac,phase-15,with +7,1471.581150604885,1.7282818349072917,0.0,461.38347416201515,0.4922119160037255,10,mac,phase-15,with +8,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.4822434169982443,10,mac,phase-15,with +9,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321,10,mac,phase-15,with +10,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.4814543749962467,10,mac,phase-15,with +11,1442.9805152629783,1.694692142277764,0.0,452.4163434727796,0.4826456250011688,10,mac,phase-15,with +12,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.4814219580002827,10,mac,phase-15,with +13,1428.712272923545,1.677934966473248,0.0,447.942834677123,0.477873208001256,10,mac,phase-15,with +14,1442.6170148012343,1.694265233272607,0.0,452.30237550993223,0.48252404199593,10,mac,phase-15,with +15,1464.2447277915137,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759,10,mac,phase-15,with +16,1449.9154471216857,1.702836794547057,0.0,454.59064623055264,0.4849652090051677,10,mac,phase-15,with +17,1444.6339619987823,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075,10,mac,phase-15,with +18,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.4831488749987329,10,mac,phase-15,with +19,1438.8095895874126,1.6897936458021423,0.0,451.1086370116896,0.481250541000918,10,mac,phase-15,with +20,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.4836824999947566,10,mac,phase-15,with +21,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994,10,mac,phase-15,with +22,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702,10,mac,phase-15,with +23,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.4835075840019271,10,mac,phase-15,with +24,1448.596476504854,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375,10,mac,phase-15,with +25,1447.9104558714089,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382,10,mac,phase-15,with +26,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544,10,mac,phase-15,with +27,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.4828053749952232,10,mac,phase-15,with +28,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.4813471250017755,10,mac,phase-15,with +29,1439.678106400043,1.690813665547546,0.0,451.3809422829379,0.4815410410010372,10,mac,phase-15,with +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427,10,mac,phase-12,with +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.4848300000012386,10,mac,phase-12,with +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943,10,mac,phase-12,with +3,1463.6997649458424,0.9049459287293112,0.0,456.293847174846,0.4853247499995632,10,mac,phase-12,with +4,1469.782118043518,0.908706399834558,0.0,458.1899602721361,0.4873414999965462,10,mac,phase-12,with +5,1441.0904332217217,0.8909675001027336,0.0,449.2456128295784,0.4778280839964282,10,mac,phase-12,with +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285,10,mac,phase-12,with +7,1447.019725460083,0.8946333399148689,0.0,451.0940107259638,0.4797940829957952,10,mac,phase-12,with +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928,10,mac,phase-12,with +9,1485.7182300106604,0.9185590485742904,0.0,463.1578847144588,0.4926254999954835,10,mac,phase-12,with +10,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.4854045410029357,10,mac,phase-12,with +11,1476.406582468932,0.9128020362863496,0.0,460.25507118527264,0.4895380000016303,10,mac,phase-12,with +12,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.480668666998099,10,mac,phase-12,with +13,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029,10,mac,phase-12,with +14,1453.0520656111892,0.8983628900529438,0.0,452.9745327844733,0.4817942500012577,10,mac,phase-12,with +15,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347,10,mac,phase-12,with +16,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518,10,mac,phase-12,with +17,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.4827774170043994,10,mac,phase-12,with +18,1452.131203241068,0.8977935583684558,0.0,452.6874630973391,0.4814889160043094,10,mac,phase-12,with +19,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651,10,mac,phase-12,with +20,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.4821297079979558,10,mac,phase-12,with +21,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213,10,mac,phase-12,with +22,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.4835610840018489,10,mac,phase-12,with +23,1452.891467970985,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396,10,mac,phase-12,with +24,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403,10,mac,phase-12,with +25,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.486632667001686,10,mac,phase-12,with +26,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.4821981659988523,10,mac,phase-12,with +27,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354,10,mac,phase-12,with +28,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348,10,mac,phase-12,with +29,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541,10,mac,phase-12,with +0,1445.9512284681282,0.0993735381060291,0.0,451.0233649505643,0.479501458001323,10,mac,phase-24,with +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221,10,mac,phase-24,with +2,1445.2778876531952,0.0993272625070921,0.0,450.8133354321888,0.4792781669966643,10,mac,phase-24,with +3,1473.4560079931225,0.1012638143493852,0.0,459.6026987270767,0.488622500000929,10,mac,phase-24,with +4,1438.408509378345,0.0988551619200731,0.0,448.6706282345721,0.4770001669967314,10,mac,phase-24,with +5,1462.0207397229187,0.1004779212674964,0.0,456.035791992744,0.4848303749968181,10,mac,phase-24,with +6,1459.873808732507,0.1003303726334995,0.0,455.36611792590986,0.4841184169999906,10,mac,phase-24,with +7,1445.935900531451,0.0993724846878574,0.0,451.01858383662216,0.4794963750027818,10,mac,phase-24,with +8,1451.6571155923002,0.0997656773292609,0.0,452.8031541717392,0.4813936249993276,10,mac,phase-24,with +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256,10,mac,phase-24,with +10,1453.1768162644023,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993,10,mac,phase-24,with +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.4802655410021543,10,mac,phase-24,with +12,1459.790501679045,0.1003246473251428,0.0,455.3401326597149,0.4840907909965608,10,mac,phase-24,with +13,1455.5734090741,0.1000348260611724,0.0,454.02473054964133,0.4826923330037971,10,mac,phase-24,with +14,1458.6344227252057,0.1002451953673512,0.0,454.9795267072848,0.4837074160022894,10,mac,phase-24,with +15,1454.1420362947786,0.0999364544324277,0.0,453.578254517312,0.4822176660018158,10,mac,phase-24,with +16,1452.8549083992968,0.099847996087187,0.0,453.17677157437976,0.4817908330005593,10,mac,phase-24,with +17,1456.5114923274932,0.1000992961830495,0.0,454.3173389428009,0.483003417000873,10,mac,phase-24,with +18,1445.2579097656906,0.0993258895193134,0.0,450.807103898324,0.47927154199715,10,mac,phase-24,with +19,1460.9679426822058,0.1004055673977507,0.0,455.707401895925,0.4844812500014086,10,mac,phase-24,with +20,1450.2062685342962,0.0996659673234419,0.0,452.3506036919953,0.4809125000028871,10,mac,phase-24,with +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235,10,mac,phase-24,with +22,1455.721926964596,0.1000450330086545,0.0,454.0710564819467,0.4827415840045432,10,mac,phase-24,with +23,1450.0845164884097,0.0996575998686252,0.0,452.3126266037338,0.4808721250010421,10,mac,phase-24,with +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355,10,mac,phase-24,with +25,1455.2424545927595,0.1000120810908613,0.0,453.921498711056,0.4825825829975656,10,mac,phase-24,with +26,1450.4460031843537,0.0996824431767859,0.0,452.4253820983725,0.4809919999970589,10,mac,phase-24,with +27,1449.8539520475165,0.0996417542413302,0.0,452.24070858331766,0.4807956660006311,10,mac,phase-24,with +28,1454.8514398281357,0.0999852084551545,0.0,453.79953277512817,0.4824529160032398,10,mac,phase-24,with +29,1481.6993373073888,0.1018303402346322,0.0,462.1739708782508,0.4913561249995837,10,mac,phase-24,with +0,1478.185480632039,0.1001910585367731,0.0,453.1975547813372,0.4826704579973011,10,mac,phase-23,with +1,1472.4376515691376,0.0998014720568313,0.0,451.43532527040054,0.4807936249999329,10,mac,phase-23,with +2,1467.3052593754642,0.0994535997407738,0.0,449.86178282743384,0.4791177500010235,10,mac,phase-23,with +3,1469.146722041262,0.0995784136400846,0.0,450.4263576986495,0.4797190410026815,10,mac,phase-23,with +4,1470.385895182594,0.0996624044993963,0.0,450.8062763522695,0.480123666995496,10,mac,phase-23,with +5,1466.8412883523577,0.0994221518957337,0.0,449.7195337417024,0.4789662499970291,10,mac,phase-23,with +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107,10,mac,phase-23,with +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546,10,mac,phase-23,with +8,1478.2217224431022,0.1001935149980638,0.0,453.2086661745757,0.4826822920003906,10,mac,phase-23,with +9,1476.0122465403242,0.1000437572495192,0.0,452.5312619586588,0.4819608339967089,10,mac,phase-23,with +10,1472.6817615590717,0.0998180177735978,0.0,451.51016706257434,0.4808733339959872,10,mac,phase-23,with +11,1475.1950634268462,0.0999883687734244,0.0,452.2807214184565,0.4816939999946044,10,mac,phase-23,with +12,1475.1436376964589,0.0999848831497113,0.0,452.2649547805279,0.4816772080012015,10,mac,phase-23,with +13,1471.505244398319,0.0997382737216727,0.0,451.14945813436634,0.4804891669991775,10,mac,phase-23,with +14,1487.7908044971591,0.1008421050923268,0.0,456.1424553676251,0.4858068749963422,10,mac,phase-23,with +15,1468.6795629390188,0.0995467497078027,0.0,450.2831311782943,0.4795664999983273,10,mac,phase-23,with +16,1475.7644370380624,0.1000269607806915,0.0,452.455285931328,0.4818799170025158,10,mac,phase-23,with +17,1467.6844997653377,0.0994793045637471,0.0,449.97805431001626,0.4792415829942911,10,mac,phase-23,with +18,1482.7513106263857,0.1005005294023893,0.0,454.5973946634747,0.4841613339958712,10,mac,phase-23,with +19,1477.909345926593,0.1001723421924443,0.0,453.1128945171565,0.4825802920022397,10,mac,phase-23,with +20,1479.7538741610845,0.1002973638752683,0.0,453.678409262464,0.4831825840010424,10,mac,phase-23,with +21,1471.3194508052536,0.0997256806763462,0.0,451.0924955926728,0.4804284999991068,10,mac,phase-23,with +22,1489.160260118828,0.1009349264670134,0.0,456.562317385791,0.4862540419999277,10,mac,phase-23,with +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504,10,mac,phase-23,with +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.4825493750031455,10,mac,phase-23,with +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.4815804590034531,10,mac,phase-23,with +26,1470.1209876523235,0.0996444491303172,0.0,450.7250582328016,0.4800371669989545,10,mac,phase-23,with +27,1479.45489308524,0.100277099009415,0.0,453.5867445192541,0.483084958003019,10,mac,phase-23,with +28,1481.6974196226456,0.1004290969220744,0.0,454.2742817441834,0.4838172079980722,10,mac,phase-23,with +29,1478.0856947176749,0.10018429507135,0.0,453.1669613727401,0.4826378750003641,10,mac,phase-23,with +0,1515.8144076794304,0.1016097605362267,0.0,463.7808170075175,0.5029127919988241,10,mac,phase-8,with +1,1494.2954542299487,0.1001672780687725,0.0,457.1968461985674,0.495773292001104,10,mac,phase-8,with +2,1490.567926608189,0.0999174102834286,0.0,456.0563663369963,0.4945365829989896,10,mac,phase-8,with +3,1487.0834114226138,0.0996838323785101,0.0,454.9902389196463,0.4933805000036955,10,mac,phase-8,with +4,1489.19388742284,0.0998253041575841,0.0,455.63596327659974,0.4940807080056402,10,mac,phase-8,with +5,1491.6388015866264,0.0999891943683219,0.0,456.38401282847735,0.4948918749942095,10,mac,phase-8,with +6,1489.4443053961663,0.0998420904542275,0.0,455.7125815299125,0.4941637910014833,10,mac,phase-8,with +7,1483.7489697588535,0.0994603143691415,0.0,453.9700282188851,0.4922742079943418,10,mac,phase-8,with +8,1490.2046075822443,0.0998930558776139,0.0,455.94520471072246,0.4944160419981926,10,mac,phase-8,with +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724,10,mac,phase-8,with +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.4923946249982691,10,mac,phase-8,with +11,1498.6863274365105,0.1004616119745616,0.0,458.5402842558907,0.4972300840017851,10,mac,phase-8,with +12,1494.202268227495,0.1001610315208134,0.0,457.1683348714995,0.4957423750020098,10,mac,phase-8,with +13,1500.9979926125363,0.1006165700906647,0.0,459.24756475049065,0.4979970420026802,10,mac,phase-8,with +14,1506.206429303655,0.1009657078230094,0.0,460.8411457401562,0.4997250829983386,10,mac,phase-8,with +15,1499.448257241606,0.1005126865023197,0.0,458.7734054254215,0.4974828750055167,10,mac,phase-8,with +16,1490.7811750729018,0.0999317049921505,0.0,456.1216121525058,0.4946073339961003,10,mac,phase-8,with +17,1491.8823143613793,0.1000055177879996,0.0,456.4585183570265,0.4949726670020027,10,mac,phase-8,with +18,1482.553013888322,0.0993801457225044,0.0,453.60411179275127,0.4918774170000688,10,mac,phase-8,with +19,1497.833219014053,0.1004044254601188,0.0,458.2792659418024,0.4969470420037396,10,mac,phase-8,with +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598,10,mac,phase-8,with +21,1482.0456464125618,0.09934613530048,0.0,453.4488768898246,0.4917090839953744,10,mac,phase-8,with +22,1496.2841105630728,0.1003005838961705,0.0,457.80529843008793,0.4964330830043764,10,mac,phase-8,with +23,1488.0433927335248,0.0997481829155064,0.0,455.2839562206765,0.4936989999987418,10,mac,phase-8,with +24,1474.3194514814572,0.0988282243921073,0.0,451.0849588670419,0.4891457080011605,10,mac,phase-8,with +25,1494.2725955009112,0.1001657457769748,0.0,457.189852308039,0.4957657079939963,10,mac,phase-8,with +26,1490.5446941438947,0.0999158529389928,0.0,456.0492580978762,0.4945288749950123,10,mac,phase-8,with +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964,10,mac,phase-8,with +28,1488.174128032597,0.0997569465097598,0.0,455.3239561860471,0.4937423750016023,10,mac,phase-8,with +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141,10,mac,phase-8,with +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.4962522920031915,10,mac,phase-1,with +1,1548.7716415444704,0.5093526556274295,0.0,468.3667452712757,0.4990278339973883,10,mac,phase-1,with +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157,10,mac,phase-1,with +3,1537.9614894800372,0.5057974642008454,0.0,465.0976282481506,0.4955447079992154,10,mac,phase-1,with +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305,10,mac,phase-1,with +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575,10,mac,phase-1,with +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797,10,mac,phase-1,with +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397,10,mac,phase-1,with +8,1543.794275756641,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953,10,mac,phase-1,with +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.4938442089987802,10,mac,phase-1,with +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.4946216250027646,10,mac,phase-1,with +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.4986832079957821,10,mac,phase-1,with +12,1536.410091706245,0.5052872478753273,0.0,464.6284673296259,0.4950448340023285,10,mac,phase-1,with +13,1501.0461152669352,0.4936569114010968,0.0,453.9339852636886,0.4836502500038477,10,mac,phase-1,with +14,1503.158875751745,0.4943517460266646,0.0,454.5729088630523,0.4843309999996563,10,mac,phase-1,with +15,1497.0097852395263,0.492329462367746,0.0,452.7133516292214,0.4823497089964803,10,mac,phase-1,with +16,1521.5805489456525,0.5004101783421352,0.0,460.14383932487135,0.4902666249981848,10,mac,phase-1,with +17,1499.5455354643086,0.4931634078483803,0.0,453.48019229684735,0.4831667500038747,10,mac,phase-1,with +18,1505.117621218829,0.4949959289252891,0.0,455.1652565111009,0.4849621250032214,10,mac,phase-1,with +19,1493.7772756646511,0.4912663699839896,0.0,451.73580274594457,0.4813081660031457,10,mac,phase-1,with +20,1496.3047548280974,0.492097595317287,0.0,452.50014214742265,0.4821225420018891,10,mac,phase-1,with +21,1502.9231341998309,0.4942742164656317,0.0,454.5016178473639,0.4842550419998588,10,mac,phase-1,with +22,1510.012481501061,0.4966057273079569,0.0,456.64551978391,0.4865392920037266,10,mac,phase-1,with +23,1504.4246171495324,0.4947680170410652,0.0,454.9556839364942,0.4847388330017566,10,mac,phase-1,with +24,1509.3322796742225,0.4963820257643792,0.0,456.43981875787216,0.4863201249972917,10,mac,phase-1,with +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552,10,mac,phase-1,with +26,1505.193401276411,0.4950208511104179,0.0,455.1881732910663,0.4849865420037531,10,mac,phase-1,with +27,1520.90862436748,0.5001891989807543,0.0,459.9406414361029,0.4900501249940134,10,mac,phase-1,with +28,1511.0160978228655,0.4969357918733388,0.0,456.9490251539309,0.4868626660027075,10,mac,phase-1,with +29,1510.3806433826635,0.4967268066375784,0.0,456.7568562634747,0.4866579169975011,10,mac,phase-1,with +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.4925840419964515,10,mac,phase-30,with +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336,10,mac,phase-30,with +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091,10,mac,phase-30,with +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.4959620000008726,10,mac,phase-30,with +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922,10,mac,phase-30,with +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767,10,mac,phase-30,with +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257,10,mac,phase-30,with +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117,10,mac,phase-30,with +8,2281.0575381943677,2.99700990419698,84.21597830793513,509.79138470390626,0.4952505420005764,10,mac,phase-30,with +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.495590375001484,10,mac,phase-30,with +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.4952706249969196,10,mac,phase-30,with +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.4955860830013989,10,mac,phase-30,with +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566,10,mac,phase-30,with +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922,10,mac,phase-30,with +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516,10,mac,phase-30,with +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.4973028749955119,10,mac,phase-30,with +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166,10,mac,phase-30,with +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952,10,mac,phase-30,with +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721,10,mac,phase-30,with +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778,10,mac,phase-30,with +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292,10,mac,phase-30,with +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.4962343750012223,10,mac,phase-30,with +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198,10,mac,phase-30,with +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.4910860830059391,10,mac,phase-30,with +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296,10,mac,phase-30,with +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179,10,mac,phase-30,with +26,2277.258468092052,2.992018425230434,84.07571774897518,508.9423341316967,0.4944257090028259,10,mac,phase-30,with +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.4949400409968802,10,mac,phase-30,with +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396,10,mac,phase-30,with +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236,10,mac,phase-30,with +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394,10,mac,phase-6,with +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.4822331670002313,10,mac,phase-6,with +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149,10,mac,phase-6,with +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802,10,mac,phase-6,with +4,1458.91194965116,0.3992552485989172,0.0,454.9180845077496,0.4819204169980366,10,mac,phase-6,with +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.4810576669988222,10,mac,phase-6,with +6,1468.611380787982,0.4019096574484203,0.0,457.94256219102095,0.4851244170058635,10,mac,phase-6,with +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.4791258749974076,10,mac,phase-6,with +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833,10,mac,phase-6,with +9,1466.35176146208,0.4012912754577062,0.0,457.2379674444348,0.4843780000010156,10,mac,phase-6,with +10,1460.154775553515,0.3995953683468763,0.0,455.3056226172367,0.4823309580024215,10,mac,phase-6,with +11,1457.9792906101436,0.3990000111136337,0.0,454.6272626630594,0.4816123329947004,10,mac,phase-6,with +12,1457.422775179489,0.3988477115134636,0.0,454.4537299602991,0.4814285000029485,10,mac,phase-6,with +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474,10,mac,phase-6,with +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208,10,mac,phase-6,with +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636,10,mac,phase-6,with +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052,10,mac,phase-6,with +17,1457.9613811923634,0.398995109906916,0.0,454.6216781464386,0.4816064170008758,10,mac,phase-6,with +18,1469.355588079086,0.4021133220130226,0.0,458.1746209903382,0.4853702499967767,10,mac,phase-6,with +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.4835539170017,10,mac,phase-6,with +20,1460.7395477092175,0.3997554008645718,0.0,455.4879663351075,0.4825241250000545,10,mac,phase-6,with +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.4834142079998855,10,mac,phase-6,with +22,1459.13710420092,0.3993168658443987,0.0,454.98829222420534,0.4819947919968399,10,mac,phase-6,with +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122,10,mac,phase-6,with +24,1458.813181355714,0.399228219030504,0.0,454.8872865670067,0.4818877910001902,10,mac,phase-6,with +25,1457.0466346307994,0.3987447744662271,0.0,454.33644177306024,0.4813042500027222,10,mac,phase-6,with +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921,10,mac,phase-6,with +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982,10,mac,phase-6,with +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989,10,mac,phase-6,with +29,1471.0342193441872,0.4025727070658452,0.0,458.69805197594184,0.4859247499989578,10,mac,phase-6,with +0,1471.069231866696,0.1008456582331723,0.0,459.85620154326585,0.4853926670039072,10,mac,phase-7,with +1,1468.578895878081,0.1006749391626123,0.0,459.0777225815124,0.484570958004042,10,mac,phase-7,with +2,1461.668066437173,0.1002011836596023,0.0,456.9173974877869,0.4822906670015072,10,mac,phase-7,with +3,1442.4901829574026,0.0988864893942737,0.0,450.92239163788827,0.475962749995233,10,mac,phase-7,with +4,1460.192632019516,0.1001000387564221,0.0,456.4561767292852,0.4818038340017665,10,mac,phase-7,with +5,1457.0270850402062,0.0998830321996393,0.0,455.4666268303555,0.4807593329969677,10,mac,phase-7,with +6,1451.4069459189002,0.0994977569068301,0.0,453.70977149514545,0.4789049169994541,10,mac,phase-7,with +7,1454.602166278216,0.0997167976517217,0.0,454.7085972918513,0.4799592090057558,10,mac,phase-7,with +8,1454.5623855826552,0.0997140705805942,0.0,454.6961618475098,0.4799460830035968,10,mac,phase-7,with +9,1468.8514054091331,0.1006936204064576,0.0,459.16290905344687,0.4846608750012819,10,mac,phase-7,with +10,1454.7620315206584,0.0997277568338278,0.0,454.7585711622551,0.4800119579958846,10,mac,phase-7,with +11,1461.4857195792638,0.100188683303729,0.0,456.86039586500453,0.4822304999979678,10,mac,phase-7,with +12,1456.5270230567808,0.09984875163773,0.0,455.310307468049,0.480594332999317,10,mac,phase-7,with +13,1456.90813089835,0.0998748775808932,0.0,455.4294417688732,0.4807200829964131,10,mac,phase-7,with +14,1448.7476526265218,0.0993154553694887,0.0,452.8784764848686,0.4780274590011686,10,mac,phase-7,with +15,1454.4989959096524,0.0997097250520761,0.0,454.6763462374673,0.4799251670046942,10,mac,phase-7,with +16,1457.879845299315,0.0999414911543792,0.0,455.73319966396946,0.4810407089971704,10,mac,phase-7,with +17,1455.9537216856306,0.0998094503234973,0.0,455.131093475148,0.4804051669998443,10,mac,phase-7,with +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.4814032080030301,10,mac,phase-7,with +19,1468.4137238864755,0.1006636161889179,0.0,459.02608982146575,0.4845164580037817,10,mac,phase-7,with +20,1463.4019935002775,0.1003200489123173,0.0,457.4594230401672,0.4828627919996506,10,mac,phase-7,with +21,1455.2831840044878,0.0997634832049143,0.0,454.9214834144096,0.4801839169958839,10,mac,phase-7,with +22,1465.0343928246136,0.100431954171972,0.0,457.9697110241926,0.483401416997367,10,mac,phase-7,with +23,1452.4517724066477,0.0995693825058256,0.0,454.036384226565,0.47924966699793,10,mac,phase-7,with +24,1458.159298145276,0.0999606483806916,0.0,455.8205566159539,0.4811329170042882,10,mac,phase-7,with +25,1464.0746768847828,0.1003661631244995,0.0,457.6697038477178,0.4830847499979427,10,mac,phase-7,with +26,1460.330527893312,0.1001094918806255,0.0,456.49928297565265,0.48184933399898,10,mac,phase-7,with +27,1466.457926870734,0.1005295411684155,0.0,458.41470772797504,0.4838711249976768,10,mac,phase-7,with +28,1458.690297278725,0.0999970497654626,0.0,455.9865469305096,0.4813081249958486,10,mac,phase-7,with +29,1453.5116250142864,0.0996420381847918,0.0,454.3676941226507,0.4795993750012712,10,mac,phase-7,with +0,1507.0006290040246,0.1012179708729699,0.0,462.9372594493401,0.4960314169948105,10,mac,phase-9,with +1,1496.950668211312,0.1005429634315572,0.0,459.850000414799,0.4927234579954529,10,mac,phase-9,with +2,1468.6940451139656,0.0986451022106724,0.0,451.169815810879,0.4834227500032284,10,mac,phase-9,with +3,1468.9915282259046,0.0986650827178998,0.0,451.2611999907679,0.4835206669959007,10,mac,phase-9,with +4,1479.172504714708,0.0993488898523289,0.0,454.3887058879351,0.4868717499994091,10,mac,phase-9,with +5,1500.238416336118,0.1007637856313158,0.0,460.85996754909496,0.4938056250030058,10,mac,phase-9,with +6,1509.7154372095292,0.10140031145902,0.0,463.7712245097378,0.4969250000067404,10,mac,phase-9,with +7,1461.69840489276,0.0981752387650176,0.0,449.0208170316026,0.4811201249976875,10,mac,phase-9,with +8,1471.3692332004143,0.0988247817042323,0.0,451.99160992125746,0.4843032919961842,10,mac,phase-9,with +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694,10,mac,phase-9,with +10,1480.732072591294,0.0994536385119303,0.0,454.8677913407322,0.4873850840012892,10,mac,phase-9,with +11,1466.0959491930096,0.0984706006264055,0.0,450.3717037316366,0.4825675830070395,10,mac,phase-9,with +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.4856114580034045,10,mac,phase-9,with +13,1514.13083342455,0.1016968723475048,0.0,465.12759516003786,0.4983783339994261,10,mac,phase-9,with +14,1512.595950245761,0.1015937816401129,0.0,464.6560926279964,0.497873125001206,10,mac,phase-9,with +15,1561.482643030755,0.1048772652373676,0.0,479.67365210730736,0.5139642499998445,10,mac,phase-9,with +16,1502.2335709419558,0.1008977905526769,0.0,461.4728613910934,0.4944623330011382,10,mac,phase-9,with +17,1495.3046447168208,0.1004324079646814,0.0,459.34435656113146,0.4921816670030239,10,mac,phase-9,with +18,1495.762512977266,0.1004631607695293,0.0,459.4850096395707,0.4923323749972041,10,mac,phase-9,with +19,1505.742214321196,0.1011334492223075,0.0,462.5506855930939,0.4956172079982934,10,mac,phase-9,with +20,1500.2357579650031,0.1007636070813372,0.0,460.8591509210095,0.4938047499963431,10,mac,phase-9,with +21,1501.366192061746,0.1008395328926977,0.0,461.2064102735686,0.4941768339995178,10,mac,phase-9,with +22,1472.4900455897166,0.0989000612718656,0.0,452.3359135704227,0.4846722090005642,10,mac,phase-9,with +23,1462.9344104531915,0.0982582553029054,0.0,449.40050700372194,0.4815269579994492,10,mac,phase-9,with +24,1472.7381563218598,0.0989167256742394,0.0,452.4121309920798,0.4847538750036619,10,mac,phase-9,with +25,1482.564812614605,0.0995767348283664,0.0,455.4307928600052,0.4879883330067969,10,mac,phase-9,with +26,1501.7557027604369,0.1008656944494987,0.0,461.32606451385743,0.4943050420042709,10,mac,phase-9,with +27,1471.3960688887162,0.0988265841281097,0.0,451.99985360726447,0.4843121250014519,10,mac,phase-9,with +28,1465.3707267413292,0.0984218909287598,0.0,450.14892181117136,0.48232887499762,10,mac,phase-9,with +29,1493.8271059364454,0.100333168804221,0.0,458.8904697209055,0.4916953329957323,10,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n10/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n10/without_smell.csv new file mode 100644 index 000000000..42f3d4ebf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n10/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,297.4059709817293,0.9431835074740536,0.0,64.00173800716793,0.0684758749994216,10,mac,phase-19,without +1,294.011382014694,0.9324180197543812,0.0,63.2712227690473,0.0676942920035799,10,mac,phase-19,without +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.0683419589986442,10,mac,phase-19,without +3,295.5819955572358,0.937399011847616,0.0,63.609218661088235,0.0680559160027769,10,mac,phase-19,without +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.0683780000035767,10,mac,phase-19,without +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.0666158339954563,10,mac,phase-19,without +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.0695982499964884,10,mac,phase-19,without +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.0631072079995647,10,mac,phase-19,without +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908,10,mac,phase-19,without +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.0682349579947185,10,mac,phase-19,without +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217,10,mac,phase-19,without +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.0678802910042577,10,mac,phase-19,without +12,298.78404079959876,0.9475538727362968,0.0,64.29829850710586,0.068793167003605,10,mac,phase-19,without +13,298.6888503744389,0.9472519889550676,0.0,64.27781353623672,0.0687712500002817,10,mac,phase-19,without +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.0684182080003665,10,mac,phase-19,without +15,300.98587226643184,0.9545366885785584,0.0,64.77213243925932,0.0693001250037923,10,mac,phase-19,without +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.0688503339988528,10,mac,phase-19,without +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.0703221669973572,10,mac,phase-19,without +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.0622112919954815,10,mac,phase-19,without +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.0704370409948751,10,mac,phase-19,without +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.0679169579962035,10,mac,phase-19,without +21,294.30110968856326,0.9333368525631184,0.0,63.33357213821159,0.067760999998427,10,mac,phase-19,without +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.0683039159994223,10,mac,phase-19,without +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.0686080419982317,10,mac,phase-19,without +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.0654641670043929,10,mac,phase-19,without +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.0682025420028367,10,mac,phase-19,without +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.0679551669963984,10,mac,phase-19,without +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.0682538749970262,10,mac,phase-19,without +28,297.22988805085987,0.9426250838627336,0.0,63.963844976399784,0.0684353329997975,10,mac,phase-19,without +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.0624182920000748,10,mac,phase-19,without +0,310.5645000365186,0.0,0.0,62.906193325953055,0.0660357079977984,10,mac,phase-26,without +1,288.3742824692979,0.0,0.0,58.41146802391626,0.0613173750025453,10,mac,phase-26,without +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334,10,mac,phase-26,without +3,321.1442400366122,0.0,0.0,65.04916578322343,0.0682852910031215,10,mac,phase-26,without +4,320.22265380094257,0.0,0.0,64.86249447371847,0.0680893329990794,10,mac,phase-26,without +5,319.2936180922495,0.0,0.0,64.67431424097813,0.0678917910045129,10,mac,phase-26,without +6,321.08878720952856,0.0,0.0,65.03793357136217,0.0682735000009415,10,mac,phase-26,without +7,320.00827793597637,0.0,0.0,64.81907170774105,0.0680437499977415,10,mac,phase-26,without +8,320.43507321341815,0.0,0.0,64.90552095171516,0.0681344999975408,10,mac,phase-26,without +9,317.3079830296693,0.0,0.0,64.2721152030753,0.0674695830020937,10,mac,phase-26,without +10,320.68334814658476,0.0,0.0,64.95581012173277,0.0681872909990488,10,mac,phase-26,without +11,325.38888014404125,0.0,0.0,65.90893614063914,0.0691878340003313,10,mac,phase-26,without +12,295.5038000069898,0.0,0.0,59.85558288087539,0.0628333330023451,10,mac,phase-26,without +13,298.2466145543028,0.0,0.0,60.41115192418272,0.0634165410010609,10,mac,phase-26,without +14,342.3866146636323,0.0,0.0,69.35190136579169,0.0728020829992601,10,mac,phase-26,without +15,299.69944448734907,0.0,0.0,60.70542896044151,0.0637254579996806,10,mac,phase-26,without +16,292.9898605966174,0.0,0.0,59.34637349429057,0.0622987910028314,10,mac,phase-26,without +17,323.37110492136594,0.0,0.0,65.50022697320047,0.0687587919965153,10,mac,phase-26,without +18,316.76831626965384,0.0,0.0,64.16280334826533,0.0673548330014455,10,mac,phase-26,without +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589,10,mac,phase-26,without +20,319.69611777139016,0.0,0.0,64.75584230560457,0.0679773750016465,10,mac,phase-26,without +21,322.2084863736894,0.0,0.0,65.26473351816657,0.068511582998326,10,mac,phase-26,without +22,322.89276972182176,0.0,0.0,65.40333809332657,0.0686570830002892,10,mac,phase-26,without +23,295.41542632084173,0.0,0.0,59.83768240549876,0.0628145419977954,10,mac,phase-26,without +24,322.6825089599613,0.0,0.0,65.36074885942217,0.068612374998338,10,mac,phase-26,without +25,322.5780652279843,0.0,0.0,65.33959332620877,0.0685901670003659,10,mac,phase-26,without +26,321.6707807541225,0.0,0.0,65.15581890090364,0.0683972499973606,10,mac,phase-26,without +27,318.3269632325836,0.0,0.0,64.4785140852151,0.0676862500040442,10,mac,phase-26,without +28,328.9750938995778,0.0,0.0,66.63533937020159,0.0699503750001895,10,mac,phase-26,without +29,307.251251832783,0.0,0.0,62.235080458846376,0.0653312079957686,10,mac,phase-26,without +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.090134540994768,10,mac,phase-21,without +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.088257416995475,10,mac,phase-21,without +2,455.5753429091931,1.3050782533395655,13.497256672696034,88.47056791059792,0.0903868749956018,10,mac,phase-21,without +3,419.6566096594096,1.202182522959485,12.433098197975724,81.49532050377981,0.0832605410032556,10,mac,phase-21,without +4,435.18530530497446,1.2466672899803264,12.893164341112325,84.51091944708739,0.0863414589985041,10,mac,phase-21,without +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.0862921669977367,10,mac,phase-21,without +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.0870674999969196,10,mac,phase-21,without +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.0829531249983119,10,mac,phase-21,without +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.085397875001945,10,mac,phase-21,without +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.0889262089986004,10,mac,phase-21,without +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.087149708000652,10,mac,phase-21,without +11,445.6432605229153,1.276626000744122,13.20300048138,86.5418046820226,0.088416334001522,10,mac,phase-21,without +12,443.8860921648639,1.2715922730693427,13.15094113990136,86.20057093227965,0.0880677089953678,10,mac,phase-21,without +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.0856246249968535,10,mac,phase-21,without +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.0846896250004647,10,mac,phase-21,without +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.0914325000048847,10,mac,phase-21,without +16,448.61450172342313,1.2851376604214158,13.291028961726749,87.11880561172545,0.0890058329969178,10,mac,phase-21,without +17,446.24997941202497,1.278364057116996,13.220975643341562,86.6596266087732,0.0885367079972638,10,mac,phase-21,without +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.0873248749994672,10,mac,phase-21,without +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951,10,mac,phase-21,without +20,443.4385504379859,1.2703102085671665,13.137681893865697,86.11366045444791,0.0879789160026121,10,mac,phase-21,without +21,442.1656725615023,1.2666638188720003,13.099970547807796,85.8664736161651,0.0877263750007841,10,mac,phase-21,without +22,441.68348391262026,1.2652825019735825,13.085684823042577,85.77283487063022,0.0876307080034166,10,mac,phase-21,without +23,435.0414455972906,1.2462551777381865,12.888902232923874,84.4829825750939,0.0863129170029424,10,mac,phase-21,without +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.0910823329977574,10,mac,phase-21,without +25,446.02715863284936,1.2777257465547136,13.214374168315857,86.616355871709,0.0884924999991199,10,mac,phase-21,without +26,450.1188192756612,1.2894470510723803,13.33559713345909,87.410936935854,0.0893042919997242,10,mac,phase-21,without +27,448.4937466626544,1.2847917356336875,13.287451371158928,87.09535555243103,0.0889818750001723,10,mac,phase-21,without +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.0864285839998046,10,mac,phase-21,without +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.0874653330029104,10,mac,phase-21,without +0,478.8738629620707,0.3431147812004327,14.220201487529048,87.79926012273296,0.0864906249989871,10,mac,phase-28,without +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.0864957080048043,10,mac,phase-28,without +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.0880929580016527,10,mac,phase-28,without +3,399.3710335699146,0.2861507286146987,11.859357974809182,73.22279199996125,0.0721314170004916,10,mac,phase-28,without +4,491.1808267997274,0.3519327634103611,14.585657861340524,90.05568379267353,0.0887134170043282,10,mac,phase-28,without +5,483.7304803199704,0.3465945643563198,14.364419167211922,88.68969796806718,0.0873677909985417,10,mac,phase-28,without +6,483.518014469227,0.3464423318384717,14.358109975083329,88.65074335822227,0.087329417001456,10,mac,phase-28,without +7,485.3377441423682,0.3477461744511833,14.412147007810152,88.98438219567502,0.0876580830008606,10,mac,phase-28,without +8,499.413915114863,0.3578317997001645,14.83014014312904,91.56518163438656,0.0902004160016076,10,mac,phase-28,without +9,473.2155736942138,0.3390605973447913,14.052178089956351,86.76183952056161,0.0854686669990769,10,mac,phase-28,without +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.0707355000049574,10,mac,phase-28,without +11,394.0454011504646,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108,10,mac,phase-28,without +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425,10,mac,phase-28,without +13,394.9993326892937,0.2830183897940962,11.729539932577543,72.42126129953374,0.0713418329978594,10,mac,phase-28,without +14,378.78252964338554,0.2713989942512912,11.24798053952574,69.44798708452487,0.0684128749999217,10,mac,phase-28,without +15,384.479575923064,0.2754809476401223,11.417154829973958,70.49251360168908,0.0694418330022017,10,mac,phase-28,without +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.0705237079964717,10,mac,phase-28,without +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.0727939999997033,10,mac,phase-28,without +18,393.9042149535417,0.2822337341439276,11.697020315076117,72.22047663705172,0.0711440410013892,10,mac,phase-28,without +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.0700297920047887,10,mac,phase-28,without +20,398.0775187183235,0.2852239207439624,11.820946937499777,72.98563216370505,0.0718977919968892,10,mac,phase-28,without +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.0706645410027704,10,mac,phase-28,without +22,389.6303367203219,0.2791714855889576,11.57010712496458,71.43688125681884,0.0703721249956288,10,mac,phase-28,without +23,388.1340397821256,0.2780993836509139,11.525674455754546,71.16254228311722,0.0701018750041839,10,mac,phase-28,without +24,386.7157163168241,0.2770831499762293,11.483557215681506,70.90249937725069,0.0698457079997751,10,mac,phase-28,without +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.0711431250019813,10,mac,phase-28,without +26,388.7795265014115,0.2785618771206674,11.54484224066766,71.28088922321079,0.0702184580004541,10,mac,phase-28,without +27,378.82221127416574,0.2714274262771667,11.249158889042578,69.455262524035,0.0684200420000706,10,mac,phase-28,without +28,392.96851579515817,0.281563302456526,11.6692346462538,72.0489206174866,0.0709750419991905,10,mac,phase-28,without +29,375.2639478299834,0.2688779181967877,11.143495943044648,68.80287173413357,0.067777374999423,10,mac,phase-28,without +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.0854961669974727,10,mac,phase-17,without +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.0852910419998806,10,mac,phase-17,without +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.085036708995176,10,mac,phase-17,without +3,352.4283146868622,1.2669926655795811,0.0,78.06309649216129,0.0861206249974202,10,mac,phase-17,without +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.0690652920020511,10,mac,phase-17,without +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.0691986660021939,10,mac,phase-17,without +6,276.21979273513165,0.9930202452498064,0.0,61.18286027184291,0.0674980420008068,10,mac,phase-17,without +7,276.9739641940552,0.9957315191946784,0.0,61.349909731026955,0.0676823339963448,10,mac,phase-17,without +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.068089874999714,10,mac,phase-17,without +9,280.05765275444236,1.0068174922170603,0.0,62.032948714018886,0.0684358750004321,10,mac,phase-17,without +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.0593904580018715,10,mac,phase-17,without +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.0687335420007002,10,mac,phase-17,without +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.0677226659972802,10,mac,phase-17,without +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.0684477079994394,10,mac,phase-17,without +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.0683194170051137,10,mac,phase-17,without +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.0684337920029065,10,mac,phase-17,without +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.0687179589949664,10,mac,phase-17,without +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.0684492919972399,10,mac,phase-17,without +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.0675360410023131,10,mac,phase-17,without +19,280.94925472663203,1.0100228338774897,0.0,62.23043911954855,0.0686537500005215,10,mac,phase-17,without +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814,10,mac,phase-17,without +21,267.5825543832899,0.9619690578548056,0.0,59.269706467828335,0.065387415997975,10,mac,phase-17,without +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.0728027500008465,10,mac,phase-17,without +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.067395750003925,10,mac,phase-17,without +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965,10,mac,phase-17,without +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.0677298329974291,10,mac,phase-17,without +26,278.3068472864164,1.000523282602216,0.0,61.645144186136534,0.0680080420061131,10,mac,phase-17,without +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.0680346250010188,10,mac,phase-17,without +28,277.9544010343528,0.999256225451112,0.0,61.56707711650399,0.067921916997875,10,mac,phase-17,without +29,276.82374129899574,0.9951914623992656,0.0,61.31663526395476,0.0676456250002957,10,mac,phase-17,without +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.0874951669975416,10,mac,phase-10,without +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.0867375840025488,10,mac,phase-10,without +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.0861871669985703,10,mac,phase-10,without +3,293.9572294015164,0.9146992271339104,0.0,69.27999701810545,0.0847011669975472,10,mac,phase-10,without +4,300.39880553788765,0.9347433156071184,0.0,70.79815112653915,0.0865572499969857,10,mac,phase-10,without +5,298.60714878159104,0.9291682628907408,0.0,70.37589250413203,0.0860410000022966,10,mac,phase-10,without +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496,10,mac,phase-10,without +7,300.03454654918687,0.9336098601853228,0.0,70.71230237329574,0.0864522920019226,10,mac,phase-10,without +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.0858868340001208,10,mac,phase-10,without +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.0709844160010106,10,mac,phase-10,without +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.0850011670045205,10,mac,phase-10,without +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.0865207090027979,10,mac,phase-10,without +12,298.57230126240773,0.92905982875245,0.0,70.36767962217631,0.0860309589988901,10,mac,phase-10,without +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825,10,mac,phase-10,without +14,300.45317822288536,0.9349125057068,0.0,70.81096571001504,0.0865729170036502,10,mac,phase-10,without +15,226.2276855823378,0.7039469298977896,0.0,53.317461912628886,0.065185499996005,10,mac,phase-10,without +16,300.4835452655799,0.9350069980604652,0.0,70.81812263087598,0.0865816669975174,10,mac,phase-10,without +17,298.95347907171913,0.9302459300376188,0.0,70.45751581210853,0.0861407920019701,10,mac,phase-10,without +18,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.0860762919983244,10,mac,phase-10,without +19,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.085864542001218,10,mac,phase-10,without +20,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.0855547909959568,10,mac,phase-10,without +21,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623,10,mac,phase-10,without +22,296.81231300431466,0.9235833180957124,0.0,69.95288464836042,0.0855238340009236,10,mac,phase-10,without +23,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.0852534170044236,10,mac,phase-10,without +24,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.0801159580005332,10,mac,phase-10,without +25,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.0712743749973014,10,mac,phase-10,without +26,296.6898313446286,0.9232021950334184,0.0,69.92401810530892,0.0854885419976199,10,mac,phase-10,without +27,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.0830227920014294,10,mac,phase-10,without +28,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.0866290830017533,10,mac,phase-10,without +29,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.0702899169991724,10,mac,phase-10,without +0,309.7762415538039,0.0,0.0,63.37230984127286,0.068120000003546,10,mac,phase-11,without +1,311.42073409796063,0.0,0.0,63.70873102876365,0.0684816249995492,10,mac,phase-11,without +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803,10,mac,phase-11,without +3,313.74090904811897,0.0,0.0,64.18337958505668,0.0689918330026557,10,mac,phase-11,without +4,310.57698038804125,0.0,0.0,63.53612056236206,0.0682960830017691,10,mac,phase-11,without +5,311.4457454166953,0.0,0.0,63.7138477059899,0.0684871250050491,10,mac,phase-11,without +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942,10,mac,phase-11,without +7,310.3448710223421,0.0,0.0,63.48863691233658,0.0682450419990345,10,mac,phase-11,without +8,310.4030381748929,0.0,0.0,63.50053642662969,0.0682578329942771,10,mac,phase-11,without +9,309.88272598227024,0.0,0.0,63.39409383658571,0.068143415999657,10,mac,phase-11,without +10,314.95073715611716,0.0,0.0,64.43087952672482,0.0692578750022221,10,mac,phase-11,without +11,311.97913169496366,0.0,0.0,63.82296492015055,0.068604416999733,10,mac,phase-11,without +12,314.11153092259957,0.0,0.0,64.25919935788926,0.0690733329975046,10,mac,phase-11,without +13,311.2255687180135,0.0,0.0,63.66880517497234,0.0684387080036685,10,mac,phase-11,without +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324,10,mac,phase-11,without +15,313.3998459687748,0.0,0.0,64.11360678701638,0.0689168330063694,10,mac,phase-11,without +16,314.72354819575156,0.0,0.0,64.38440246600322,0.0692079159998684,10,mac,phase-11,without +17,310.5500773260057,0.0,0.0,63.53061688275627,0.0682901670006685,10,mac,phase-11,without +18,309.80466346329615,0.0,0.0,63.3781242382892,0.0681262500002048,10,mac,phase-11,without +19,313.26815920758014,0.0,0.0,64.08666703789113,0.0688878750006551,10,mac,phase-11,without +20,312.11271473244335,0.0,0.0,63.85029259898814,0.0686337919978541,10,mac,phase-11,without +21,323.48735546048795,0.0,0.0,66.17725367558705,0.0711350830024457,10,mac,phase-11,without +22,317.51420374814444,0.0,0.0,64.95529934124274,0.0698215829979744,10,mac,phase-11,without +23,315.9167051463369,0.0,0.0,64.62849191451126,0.0694702920009149,10,mac,phase-11,without +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978,10,mac,phase-11,without +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328,10,mac,phase-11,without +26,314.22105311215415,0.0,0.0,64.2816048015609,0.0690974169992841,10,mac,phase-11,without +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759,10,mac,phase-11,without +28,312.78100741484513,0.0,0.0,63.987008219015664,0.0687807499998598,10,mac,phase-11,without +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293,10,mac,phase-11,without +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.0716147079947404,10,mac,phase-29,without +1,398.6592292206605,1.0601916085650025,10.248518882795024,69.07556095804284,0.0674460419977549,10,mac,phase-29,without +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.0773315420010476,10,mac,phase-29,without +3,514.3190563490106,1.36777655626399,13.221840043885235,89.11590331966148,0.0870136250014184,10,mac,phase-29,without +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.0868142500039539,10,mac,phase-29,without +5,517.1547567068353,1.375317798265706,13.29473871656849,89.60724424085022,0.0874933750019408,10,mac,phase-29,without +6,490.26978754538726,1.303820096438466,12.603594265571838,84.94889397564467,0.0829449170050793,10,mac,phase-29,without +7,519.4725243133612,1.3814816534756962,13.354322650265065,90.00884311491652,0.0878855000046314,10,mac,phase-29,without +8,518.1034381164648,1.3778407150727667,13.31912691237008,89.77162197435642,0.0876538750017061,10,mac,phase-29,without +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281692,0.0889240420001442,10,mac,phase-29,without +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.0830192919966066,10,mac,phase-29,without +11,500.35038752648165,1.330628374601622,12.862740954482344,86.69555640673644,0.0846503749999101,10,mac,phase-29,without +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.085572250005498,10,mac,phase-29,without +13,488.42094043081113,1.298903285155243,12.556065089834012,84.62854480973004,0.0826321249987813,10,mac,phase-29,without +14,503.4395128973858,1.338843573337746,12.94215454226488,87.23080820131315,0.0851729999994859,10,mac,phase-29,without +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788,10,mac,phase-29,without +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.0865403749994584,10,mac,phase-29,without +17,493.5559371722591,1.312559260123976,12.6880728478651,85.51828410192365,0.083500875000027,10,mac,phase-29,without +18,507.3150213055262,1.3491500737071616,13.041784045835897,87.9023163407666,0.0858286670045345,10,mac,phase-29,without +19,517.1131388371582,1.375207119989715,13.293668826567243,89.60003312548373,0.0874863339995499,10,mac,phase-29,without +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.421331250411,0.0892646670035901,10,mac,phase-29,without +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.0859598329989239,10,mac,phase-29,without +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.0867411250001168,10,mac,phase-29,without +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.0798599589979858,10,mac,phase-29,without +24,510.89991397744865,1.3586837125891915,13.133942555028854,88.52346958177273,0.0864351670024916,10,mac,phase-29,without +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.0874901249990216,10,mac,phase-29,without +26,423.54044139290176,1.1263605328553132,10.88815181760136,73.38672087141926,0.0716554999962681,10,mac,phase-29,without +27,420.70326336992974,1.1188153611610816,10.815215157890457,72.89512391564892,0.071175500001118,10,mac,phase-29,without +28,459.11156121555587,1.2209581239281746,11.802595197972352,79.55011776670491,0.0776734999963082,10,mac,phase-29,without +29,402.5174899448091,1.070452240562397,10.347704992103171,69.74408059664233,0.0680987910018302,10,mac,phase-29,without +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526,10,mac,phase-16,without +1,297.817315883756,0.0,0.0,62.733064436627,0.0677234579998184,10,mac,phase-16,without +2,299.81856627760055,0.0,0.0,63.15461336348616,0.0681785409979056,10,mac,phase-16,without +3,293.4782177778501,0.0,0.0,61.81906479135154,0.0667367499991087,10,mac,phase-16,without +4,300.9928969475883,0.0,0.0,63.40197762896428,0.0684455830050865,10,mac,phase-16,without +5,302.9091294778741,0.0,0.0,63.805618157525416,0.0688813329979893,10,mac,phase-16,without +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736,10,mac,phase-16,without +7,298.40897111216174,0.0,0.0,62.85769233295232,0.0678580000021611,10,mac,phase-16,without +8,301.1378313788484,0.0,0.0,63.432507019064865,0.0684785409976029,10,mac,phase-16,without +9,300.16524277859793,0.0,0.0,63.227638262025714,0.0682573750018491,10,mac,phase-16,without +10,302.53570709857513,0.0,0.0,63.7269594330885,0.0687964169992483,10,mac,phase-16,without +11,300.62625114769776,0.0,0.0,63.32474634198656,0.0683622079959604,10,mac,phase-16,without +12,301.35917766867016,0.0,0.0,63.47913201473039,0.0685288749955361,10,mac,phase-16,without +13,299.7551711903755,0.0,0.0,63.14125964669488,0.0681641249975655,10,mac,phase-16,without +14,304.2527658133512,0.0,0.0,64.0886454373958,0.0691868750000139,10,mac,phase-16,without +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185,10,mac,phase-16,without +16,297.4405953485831,0.0,0.0,62.6537109795002,0.0676377920026425,10,mac,phase-16,without +17,306.33775437514066,0.0,0.0,64.52783320392388,0.0696610000013606,10,mac,phase-16,without +18,322.565634223188,0.0,0.0,67.94611876988051,0.0733512090009753,10,mac,phase-16,without +19,303.6565283499523,0.0,0.0,63.963052326397744,0.0690512910005054,10,mac,phase-16,without +20,304.6771294210259,0.0,0.0,64.17803456329608,0.0692833749999408,10,mac,phase-16,without +21,300.6194745682893,0.0,0.0,63.32331890452737,0.0683606670063454,10,mac,phase-16,without +22,297.64673049065647,0.0,0.0,62.697131856865795,0.067684666995774,10,mac,phase-16,without +23,301.97648382691904,0.0,0.0,63.60916309397653,0.0686692500021308,10,mac,phase-16,without +24,297.5443027834249,0.0,0.0,62.67555620086746,0.0676613750038086,10,mac,phase-16,without +25,292.8490031072213,0.0,0.0,61.686525270068515,0.0665936670047813,10,mac,phase-16,without +26,305.28948829746935,0.0,0.0,64.30702353339768,0.0694226249979692,10,mac,phase-16,without +27,299.9959370811122,0.0,0.0,63.19197524089363,0.0682188749997294,10,mac,phase-16,without +28,300.89853428238985,0.0,0.0,63.38210081576173,0.0684241249982733,10,mac,phase-16,without +29,298.13540828185586,0.0,0.0,62.80006830054803,0.0677957919979235,10,mac,phase-16,without +0,289.28287234917417,0.0,0.0,62.42629931011725,0.0676834159967256,10,mac,phase-20,without +1,294.6927660431574,0.0,0.0,63.5937367053353,0.0689491669982089,10,mac,phase-20,without +2,277.7601904303348,0.0,0.0,59.93974217495268,0.0649874579976312,10,mac,phase-20,without +3,262.90320869288206,0.0,0.0,56.733654025815085,0.0615113749954616,10,mac,phase-20,without +4,293.7341289609959,0.0,0.0,63.38686595306845,0.0687248750036815,10,mac,phase-20,without +5,292.09271527384254,0.0,0.0,63.03265423879081,0.0683408339973539,10,mac,phase-20,without +6,293.5832888779959,0.0,0.0,63.35431515566778,0.0686895830003777,10,mac,phase-20,without +7,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502,10,mac,phase-20,without +8,291.9546931410586,0.0,0.0,63.002869513194646,0.0683085410055355,10,mac,phase-20,without +9,294.338014940254,0.0,0.0,63.517182575633115,0.0688661660024081,10,mac,phase-20,without +10,291.76485654961874,0.0,0.0,62.96190339660087,0.0682641250023152,10,mac,phase-20,without +11,291.4241799062767,0.0,0.0,62.88838648931725,0.0681844170030672,10,mac,phase-20,without +12,289.7307595134493,0.0,0.0,62.52295189776321,0.0677882080053677,10,mac,phase-20,without +13,295.45675398335953,0.0,0.0,63.75860280831983,0.0691279169986955,10,mac,phase-20,without +14,268.6430896357433,0.0,0.0,57.97230159189356,0.0628543330021784,10,mac,phase-20,without +15,296.1544940115595,0.0,0.0,63.90917282820156,0.0692911669975728,10,mac,phase-20,without +16,296.023421474765,0.0,0.0,63.88088780272865,0.0692605000003823,10,mac,phase-20,without +17,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743,10,mac,phase-20,without +18,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523,10,mac,phase-20,without +19,288.2072371897795,0.0,0.0,62.19418075479606,0.0674317500015604,10,mac,phase-20,without +20,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575,10,mac,phase-20,without +21,291.5402932180753,0.0,0.0,62.91344336287967,0.0682115839954349,10,mac,phase-20,without +22,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078,10,mac,phase-20,without +23,290.7937520213083,0.0,0.0,62.75234221016276,0.0680369160036207,10,mac,phase-20,without +24,292.5845867335617,0.0,0.0,63.13879849377964,0.0684559169967542,10,mac,phase-20,without +25,273.97462270495254,0.0,0.0,59.12282902014209,0.0641017499947338,10,mac,phase-20,without +26,299.1048380666353,0.0,0.0,64.54584744206421,0.0699814580002566,10,mac,phase-20,without +27,294.26660397366516,0.0,0.0,63.501772322208495,0.0688494580026599,10,mac,phase-20,without +28,292.6253698145022,0.0,0.0,63.14759934948502,0.0684654590004356,10,mac,phase-20,without +29,290.1271784005321,0.0,0.0,62.60849779924106,0.0678809579985681,10,mac,phase-20,without +0,254.6307029336884,0.0803251428812897,0.0,57.08440154096989,0.0676555829995777,10,mac,phase-18,without +1,263.7963996346027,0.0832165298531869,0.0,59.139213882331546,0.0700909160004812,10,mac,phase-18,without +2,253.7492302434404,0.0800470757865742,0.0,56.886788525658766,0.0674213749953196,10,mac,phase-18,without +3,315.84115707071624,0.0996344344071659,0.0,70.8068713853593,0.0839192499988712,10,mac,phase-18,without +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.0885723329993197,10,mac,phase-18,without +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049,10,mac,phase-18,without +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.0868600829999195,10,mac,phase-18,without +7,326.48454970016655,0.1029919715142481,0.0,73.192961089459,0.0867472079989966,10,mac,phase-18,without +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.0890692090033553,10,mac,phase-18,without +9,330.8312320406672,0.1043631646815984,0.0,74.16742236705599,0.0879021250002551,10,mac,phase-18,without +10,325.4089376060097,0.1026526617053658,0.0,72.95182491861333,0.0864614169986452,10,mac,phase-18,without +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.0857947909971699,10,mac,phase-18,without +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.0863410839956486,10,mac,phase-18,without +13,323.1647140635819,0.1019447047519185,0.0,72.44870351036347,0.0858651249945978,10,mac,phase-18,without +14,321.04641790612,0.1012764725255899,0.0,71.97381314151923,0.0853022919982322,10,mac,phase-18,without +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.0856695000038598,10,mac,phase-18,without +16,321.7960054059207,0.1015129354592809,0.0,72.14185946639569,0.0855014580010902,10,mac,phase-18,without +17,303.00058629844494,0.0955837811667018,0.0,67.92820714913613,0.0805074999952921,10,mac,phase-18,without +18,319.4832536685931,0.1007833607787359,0.0,71.62337506008836,0.0848869580004247,10,mac,phase-18,without +19,324.52934299437413,0.1023751870644713,0.0,72.7546329404843,0.0862277080013882,10,mac,phase-18,without +20,335.0232930833541,0.1056855814143072,0.0,75.10721985843438,0.0890159589980612,10,mac,phase-18,without +21,328.476451821486,0.1036203318048851,0.0,73.63951580267174,0.0872764579980867,10,mac,phase-18,without +22,329.2296486453677,0.1038579333266144,0.0,73.80837128411399,0.087476583001262,10,mac,phase-18,without +23,327.0558388796751,0.1031721889210331,0.0,73.32103559321422,0.086898999994446,10,mac,phase-18,without +24,324.61872924541194,0.1024033846200037,0.0,72.77467200328267,0.0862514580003335,10,mac,phase-18,without +25,318.41955724016697,0.1004478098549422,0.0,71.38491020357897,0.084604333002062,10,mac,phase-18,without +26,300.9517592509948,0.0949374634861182,0.0,67.46889071746803,0.0799631249974481,10,mac,phase-18,without +27,324.7123495870697,0.1024329178508106,0.0,72.79566028597608,0.0862763330005691,10,mac,phase-18,without +28,323.6961727674179,0.1021123573398794,0.0,72.56784861620767,0.0860063340005581,10,mac,phase-18,without +29,321.83113513979686,0.1015240173942576,0.0,72.14973502818579,0.0855107919996953,10,mac,phase-18,without +0,305.721962186582,0.0,0.0,63.66560385029554,0.0687287079999805,10,mac,phase-27,without +1,307.5698377636455,0.0,0.0,64.05041792649908,0.0691441250019124,10,mac,phase-27,without +2,304.5750584918347,0.0,0.0,63.426764887723195,0.0684708750050049,10,mac,phase-27,without +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397,10,mac,phase-27,without +4,302.7877946617043,0.0,0.0,63.05457301059663,0.0680690840017632,10,mac,phase-27,without +5,302.41839922506983,0.0,0.0,62.97764761287684,0.0679860409945831,10,mac,phase-27,without +6,304.01921499319684,0.0,0.0,63.311012287766246,0.068345917003171,10,mac,phase-27,without +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322,10,mac,phase-27,without +8,306.7875031062147,0.0,0.0,63.88749927969296,0.0689682500014896,10,mac,phase-27,without +9,304.17471662540027,0.0,0.0,63.34339499669278,0.0683808749963645,10,mac,phase-27,without +10,304.8949627430861,0.0,0.0,63.49338390712414,0.0685427920034271,10,mac,phase-27,without +11,310.9972086145361,0.0,0.0,64.76415675402785,0.0699146249971818,10,mac,phase-27,without +12,303.45410134996797,0.0,0.0,63.19332921036192,0.0682188749997294,10,mac,phase-27,without +13,303.2832176918836,0.0,0.0,63.15774324459655,0.0681804590058163,10,mac,phase-27,without +14,305.3787091124342,0.0,0.0,63.594122514500135,0.0686515420020441,10,mac,phase-27,without +15,299.556141985043,0.0,0.0,62.381591856012456,0.0673425829954794,10,mac,phase-27,without +16,310.09439777626403,0.0,0.0,64.57614933457363,0.0697116660012397,10,mac,phase-27,without +17,309.0629659837681,0.0,0.0,64.36135701991627,0.069479792000493,10,mac,phase-27,without +18,303.34771274786874,0.0,0.0,63.171174130147875,0.068194958003005,10,mac,phase-27,without +19,302.234170867233,0.0,0.0,62.93928265680976,0.0679446250069304,10,mac,phase-27,without +20,304.56560596920565,0.0,0.0,63.42479643064285,0.068468750003376,10,mac,phase-27,without +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217,10,mac,phase-27,without +22,305.56497926280053,0.0,0.0,63.63291266721779,0.0686934170007589,10,mac,phase-27,without +23,307.9737025847265,0.0,0.0,64.13452146137145,0.0692349169985391,10,mac,phase-27,without +24,306.6599897546909,0.0,0.0,63.86094503914815,0.0689395839945063,10,mac,phase-27,without +25,302.4908700108722,0.0,0.0,62.992739418210725,0.0680023329987307,10,mac,phase-27,without +26,300.3927852296424,0.0,0.0,62.555820089384135,0.0675306669945712,10,mac,phase-27,without +27,307.767415320001,0.0,0.0,64.09156280972131,0.0691885419946629,10,mac,phase-27,without +28,302.781304689866,0.0,0.0,63.05322149507873,0.0680676250049145,10,mac,phase-27,without +29,302.1294503364202,0.0,0.0,62.91747494701346,0.0679210830057854,10,mac,phase-27,without +0,315.8166415430196,0.0,0.0,71.55382505573768,0.0880411670004832,10,mac,phase-5,without +1,286.0633453360258,0.0,0.0,64.81269152577208,0.0797467500015045,10,mac,phase-5,without +2,313.0570777710135,0.0,0.0,70.92859725771052,0.0872718750033527,10,mac,phase-5,without +3,308.9532305134665,0.0,0.0,69.99879834880156,0.0861278330048662,10,mac,phase-5,without +4,308.43414159245566,0.0,0.0,69.88118960703004,0.0859831250054412,10,mac,phase-5,without +5,308.23565035456966,0.0,0.0,69.83621791952999,0.0859277909985394,10,mac,phase-5,without +6,309.07130861685545,0.0,0.0,70.02555102374461,0.0861607499973615,10,mac,phase-5,without +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234,10,mac,phase-5,without +8,309.104489721779,0.0,0.0,70.03306878773974,0.086169999995036,10,mac,phase-5,without +9,311.85239528042814,0.0,0.0,70.65565521210488,0.0869360419965232,10,mac,phase-5,without +10,309.7618344994348,0.0,0.0,70.18200183000086,0.086353250000684,10,mac,phase-5,without +11,307.98514910300486,0.0,0.0,69.7794624469775,0.0858579580017249,10,mac,phase-5,without +12,311.25931787985377,0.0,0.0,70.52128307655853,0.0867707080033142,10,mac,phase-5,without +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218,10,mac,phase-5,without +14,307.8869545283353,0.0,0.0,69.75721473582777,0.0858305840010871,10,mac,phase-5,without +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165,10,mac,phase-5,without +16,306.82904378030355,0.0,0.0,69.5175264147203,0.0855356669999309,10,mac,phase-5,without +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673,10,mac,phase-5,without +18,310.8970159762155,0.0,0.0,70.43919719627168,0.0866697079982259,10,mac,phase-5,without +19,309.5836716636141,0.0,0.0,70.1416359001896,0.0863035830043372,10,mac,phase-5,without +20,311.40639092002573,0.0,0.0,70.5546050653412,0.0868117080026422,10,mac,phase-5,without +21,317.1811027296167,0.0,0.0,71.8629677803392,0.088421542001015,10,mac,phase-5,without +22,311.9760012189771,0.0,0.0,70.68366031550781,0.0869705000004614,10,mac,phase-5,without +23,259.64086611242755,0.0,0.0,58.82621327476237,0.0723808749971794,10,mac,phase-5,without +24,309.0541226205383,0.0,0.0,70.02165723344947,0.0861559590048273,10,mac,phase-5,without +25,309.0817723407111,0.0,0.0,70.02792176476237,0.0861636670015286,10,mac,phase-5,without +26,311.56422898167176,0.0,0.0,70.59036605942617,0.0868557089997921,10,mac,phase-5,without +27,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687,10,mac,phase-5,without +28,310.2794311568168,0.0,0.0,70.29927247315251,0.0864975419972324,10,mac,phase-5,without +29,254.3169403535346,0.0,0.0,57.619984082721295,0.0708967079990543,10,mac,phase-5,without +0,295.56381491985087,0.0,0.0,64.40996834269353,0.0689168749959208,10,mac,phase-2,without +1,292.9117899350054,0.0,0.0,63.832032760950376,0.068298499994853,10,mac,phase-2,without +2,298.182066414368,0.0,0.0,64.98054392523157,0.069527375002508,10,mac,phase-2,without +3,266.1084859341793,0.0,0.0,57.99099311054205,0.0620487499982118,10,mac,phase-2,without +4,292.7641857549563,0.0,0.0,63.7998665075584,0.0682640829982119,10,mac,phase-2,without +5,293.3478092458931,0.0,0.0,63.92705112447601,0.0684001670015277,10,mac,phase-2,without +6,294.64942974187426,0.0,0.0,64.21070335356598,0.0687036669987719,10,mac,phase-2,without +7,296.68959874211004,0.0,0.0,64.65530182633425,0.0691793750011129,10,mac,phase-2,without +8,294.8887006250224,0.0,0.0,64.2628458325534,0.0687594580012955,10,mac,phase-2,without +9,295.15227983001137,0.0,0.0,64.32028563875475,0.0688209169966285,10,mac,phase-2,without +10,290.6847022677367,0.0,0.0,63.34670052843714,0.0677792080023209,10,mac,phase-2,without +11,294.45357766054786,0.0,0.0,64.16802280296643,0.0686579999965033,10,mac,phase-2,without +12,292.47201807649003,0.0,0.0,63.73619663333556,0.0681959580033435,10,mac,phase-2,without +13,294.7008941303778,0.0,0.0,64.22191859530722,0.0687156669955584,10,mac,phase-2,without +14,272.00670099030486,0.0,0.0,59.276346140467126,0.0634240419967682,10,mac,phase-2,without +15,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245,10,mac,phase-2,without +16,301.81066704160895,0.0,0.0,65.77129718977528,0.0703734590060776,10,mac,phase-2,without +17,295.9329991160775,0.0,0.0,64.49042183933697,0.0690029580000555,10,mac,phase-2,without +18,295.25288419120227,0.0,0.0,64.34220958002342,0.0688443750041187,10,mac,phase-2,without +19,301.8601629004876,0.0,0.0,65.78208344486653,0.0703849999990779,10,mac,phase-2,without +20,286.4547915575912,0.0,0.0,62.42490834285863,0.0667929159972118,10,mac,phase-2,without +21,290.8757295246105,0.0,0.0,63.38832964183578,0.0678237499960232,10,mac,phase-2,without +22,288.97083044730425,0.0,0.0,62.97320951186117,0.0673795830007293,10,mac,phase-2,without +23,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602,10,mac,phase-2,without +24,295.5164591211883,0.0,0.0,64.399648454606,0.0689058330026455,10,mac,phase-2,without +25,268.26248562413593,0.0,0.0,58.4603978374972,0.0625510000027134,10,mac,phase-2,without +26,293.4117794845162,0.0,0.0,63.94099167076958,0.0684150829983991,10,mac,phase-2,without +27,293.46628031085334,0.0,0.0,63.952868620253305,0.0684277910040691,10,mac,phase-2,without +28,292.03207031876735,0.0,0.0,63.64032217334782,0.0680933749972609,10,mac,phase-2,without +29,296.7944917425345,0.0,0.0,64.67816035804776,0.0692038329943898,10,mac,phase-2,without +0,307.4320612663604,0.0,0.0,63.35199239749272,0.0671285829957923,10,mac,phase-3,without +1,319.09229461987655,0.0,0.0,65.75479648930452,0.0696746250032447,10,mac,phase-3,without +2,315.8303683771894,0.0,0.0,65.08261699808075,0.0689623750004102,10,mac,phase-3,without +3,320.11071629586803,0.0,0.0,65.96466088018519,0.0698970000012195,10,mac,phase-3,without +4,312.61748207640557,0.0,0.0,64.42054308274855,0.0682608329952927,10,mac,phase-3,without +5,307.04469238953703,0.0,0.0,63.27216796396276,0.0670440000030794,10,mac,phase-3,without +6,315.62218214509465,0.0,0.0,65.03971642180838,0.0689169170000241,10,mac,phase-3,without +7,310.95312800205056,0.0,0.0,64.07757252128222,0.0678974169932189,10,mac,phase-3,without +8,313.5021384751786,0.0,0.0,64.60284269463226,0.0684540000002016,10,mac,phase-3,without +9,312.90657876781614,0.0,0.0,64.48011673723646,0.0683239580030203,10,mac,phase-3,without +10,312.5113876374554,0.0,0.0,64.39868038546805,0.0682376670010853,10,mac,phase-3,without +11,300.6441130311362,0.0,0.0,61.95321166128344,0.0656464170024264,10,mac,phase-3,without +12,314.46636338728104,0.0,0.0,64.80153885224628,0.068664540995087,10,mac,phase-3,without +13,314.6789461985706,0.0,0.0,64.84534542397851,0.0687109589998726,10,mac,phase-3,without +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814,10,mac,phase-3,without +15,319.99393270665615,0.0,0.0,65.9405954882237,0.0698715000035008,10,mac,phase-3,without +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653,10,mac,phase-3,without +17,315.12031493923246,0.0,0.0,64.93629751592275,0.0688073330020415,10,mac,phase-3,without +18,320.1736878576916,0.0,0.0,65.9776373208644,0.0699107500040554,10,mac,phase-3,without +19,315.997721590775,0.0,0.0,65.1171031849511,0.0689989170059561,10,mac,phase-3,without +20,315.1537104407051,0.0,0.0,64.94317926907071,0.0688146249958663,10,mac,phase-3,without +21,396.2162204473379,0.0,0.0,81.64759030709996,0.0865148329976364,10,mac,phase-3,without +22,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792,10,mac,phase-3,without +23,316.5843095668302,0.0,0.0,65.23798035321532,0.0691270000024815,10,mac,phase-3,without +24,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724,10,mac,phase-3,without +25,324.2240911390176,0.0,0.0,66.8122969098102,0.0707951660006074,10,mac,phase-3,without +26,319.4119244478356,0.0,0.0,65.82066205435802,0.069744417000038,10,mac,phase-3,without +27,316.58221200981916,0.0,0.0,65.237548113275,0.0691265419955016,10,mac,phase-3,without +28,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193,10,mac,phase-3,without +29,318.88009651176566,0.0,0.0,65.71106919269002,0.0696282909993897,10,mac,phase-3,without +0,303.23390333758607,0.0,0.0,75.59622229023033,0.0861223750034696,10,mac,phase-4,without +1,299.87754304590914,0.0,0.0,74.75948155674698,0.0851691249990835,10,mac,phase-4,without +2,303.496507488735,0.0,0.0,75.66168951393483,0.0861969580000732,10,mac,phase-4,without +3,250.8244775680612,0.0,0.0,62.5305506850156,0.0712374159993487,10,mac,phase-4,without +4,280.98976423022,0.0,0.0,70.05075766339677,0.0798047499993117,10,mac,phase-4,without +5,302.6632146728885,0.0,0.0,75.453949586947,0.085960291995434,10,mac,phase-4,without +6,302.2430473239825,0.0,0.0,75.3492018527478,0.0858409590000519,10,mac,phase-4,without +7,288.1644636376654,0.0,0.0,71.83941046673124,0.0818424580065766,10,mac,phase-4,without +8,299.15970621388135,0.0,0.0,74.58052481040428,0.0849652499964577,10,mac,phase-4,without +9,303.53919918635705,0.0,0.0,75.67233255558638,0.0862090829978114,10,mac,phase-4,without +10,304.1503789285395,0.0,0.0,75.82469968584712,0.0863826659988262,10,mac,phase-4,without +11,302.7150010544735,0.0,0.0,75.46685993361608,0.0859750000017811,10,mac,phase-4,without +12,304.3796818047821,0.0,0.0,75.8818649005986,0.086447790999955,10,mac,phase-4,without +13,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672,10,mac,phase-4,without +14,299.5502411494769,0.0,0.0,74.6778851829696,0.0850761670008068,10,mac,phase-4,without +15,299.0150508701026,0.0,0.0,74.54446222834005,0.084924165996199,10,mac,phase-4,without +16,301.69890677153836,0.0,0.0,75.21354759474123,0.0856864160014083,10,mac,phase-4,without +17,293.7211350318159,0.0,0.0,73.22468883198815,0.0834206250001443,10,mac,phase-4,without +18,301.99774870612936,0.0,0.0,75.28804889907536,0.0857712910001282,10,mac,phase-4,without +19,290.7437186585,0.0,0.0,72.4824188300841,0.0825750000003608,10,mac,phase-4,without +20,300.40744832723414,0.0,0.0,74.89158696118525,0.0853196249954635,10,mac,phase-4,without +21,302.49420835289175,0.0,0.0,75.41181630569348,0.0859122920010122,10,mac,phase-4,without +22,302.62287146478,0.0,0.0,75.4438920238101,0.0859488339992822,10,mac,phase-4,without +23,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865,10,mac,phase-4,without +24,300.38544230519113,0.0,0.0,74.88610085915057,0.0853133749988046,10,mac,phase-4,without +25,302.0932584124877,0.0,0.0,75.31185947207949,0.0857984169997507,10,mac,phase-4,without +26,298.48529699349257,0.0,0.0,74.4123945691023,0.0847737090007285,10,mac,phase-4,without +27,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006,10,mac,phase-4,without +28,298.8282953574442,0.0,0.0,74.49790407275962,0.0848711250000633,10,mac,phase-4,without +29,301.1461152201156,0.0,0.0,75.07573664239862,0.0855294160064659,10,mac,phase-4,without +0,376.1194842106595,0.1028491890102979,1.4741717091476034,69.90316546399914,0.070418499999505,10,mac,phase-22,without +1,375.3772813659091,0.1026462349920451,1.471262701552647,69.76522438292668,0.0702795420002075,10,mac,phase-22,without +2,372.25223442040107,0.1017916965874763,1.459014317753828,69.18442311395476,0.0696944589944905,10,mac,phase-22,without +3,385.4868428198003,0.1054106761880777,1.510886358695781,71.64412291583018,0.0721722919988678,10,mac,phase-22,without +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.0704831249968265,10,mac,phase-22,without +5,358.7098339166928,0.0980885517956502,1.4059359090709862,66.66751903711025,0.0671589999983552,10,mac,phase-22,without +6,348.4707482819762,0.0952886924479016,1.3658045917532566,64.76454796709048,0.0652419999969424,10,mac,phase-22,without +7,377.0809007160486,0.1031120866054275,1.4779399080111284,70.0818481961556,0.0705985000022337,10,mac,phase-22,without +8,372.1874670252756,0.1017739860610543,1.4587604668751115,69.17238585949659,0.069682332999946,10,mac,phase-22,without +9,344.4984530925867,0.0942024755517054,1.3502354829077776,64.02628254997578,0.0644982919984613,10,mac,phase-22,without +10,365.7985019329385,0.1000269351744431,1.4337194041670178,67.98497360689649,0.0684861670015379,10,mac,phase-22,without +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.0660061249946011,10,mac,phase-22,without +12,327.2959987393395,0.089498495690276,1.282811771560623,60.82914423749095,0.0612775839981623,10,mac,phase-22,without +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.0656358750056824,10,mac,phase-22,without +14,348.36548389342033,0.0952599080922669,1.36539201598916,64.74498420004412,0.0652222920034546,10,mac,phase-22,without +15,370.7199715553666,0.101372702093346,1.4530087300046275,68.89964652277756,0.0694075829960638,10,mac,phase-22,without +16,393.78017104004334,0.1076784717090629,1.5433914278299028,73.1854679382598,0.0737250000020139,10,mac,phase-22,without +17,402.0710529521565,0.1099455982915385,1.5758869088453855,74.72635830548236,0.0752772499981802,10,mac,phase-22,without +18,373.83523342380454,0.1022245647863835,1.4652187619381638,69.478629199812,0.0699908340029651,10,mac,phase-22,without +19,367.5913620968913,0.1005171895260845,1.4407463832072125,68.3181831478955,0.0688218330033123,10,mac,phase-22,without +20,365.9671931593512,0.1000730634835524,1.4343805765975846,68.01632548098779,0.0685177500054123,10,mac,phase-22,without +21,333.9660446668918,0.0913224076201508,1.3089545092221626,62.06879637916255,0.0625263750043814,10,mac,phase-22,without +22,366.693153401072,0.1002715759915428,1.437225922545447,68.15124781558525,0.068653667003673,10,mac,phase-22,without +23,363.69117314929224,0.0994506899505857,1.4254598892917296,67.5933189364148,0.0680916250057634,10,mac,phase-22,without +24,364.9750647376018,0.0998017677707415,1.430492004713962,67.83193482818066,0.068332000002556,10,mac,phase-22,without +25,369.7136034968617,0.1010975125777582,1.4490643469478677,68.71260938201632,0.0692191669950261,10,mac,phase-22,without +26,376.5937403004009,0.102978873475636,1.4760305198174497,69.99130767227395,0.0705072920027305,10,mac,phase-22,without +27,364.0695065079672,0.0995541445195425,1.4269427381134436,67.6636335584491,0.0681624579956405,10,mac,phase-22,without +28,367.74291871241866,0.1005586324070053,1.4413403978337438,68.34635049262799,0.0688502080010948,10,mac,phase-22,without +29,358.35531160656274,0.0979916083146192,1.4045463858428764,66.6016297845029,0.0670926250022603,10,mac,phase-22,without +0,318.0434962832716,0.1047574098429748,0.0,66.0670064743028,0.0704760419976082,10,mac,phase-25,without +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633,10,mac,phase-25,without +2,311.3660715806597,0.1025579945917851,0.0,64.67990858921917,0.0689963750046445,10,mac,phase-25,without +3,307.96812656956257,0.1014387768674448,0.0,63.97405527773522,0.0682434159971308,10,mac,phase-25,without +4,307.9854286365557,0.1014444758354926,0.0,63.97764942691737,0.0682472500047879,10,mac,phase-25,without +5,303.54277752976253,0.0999811520190258,0.0,63.05477987333232,0.0672627919993829,10,mac,phase-25,without +6,295.5978232288647,0.097364236900153,0.0,61.40437873836319,0.0655022499995539,10,mac,phase-25,without +7,309.92668146656416,0.1020838871760751,0.0,64.3809048457114,0.0686774170026183,10,mac,phase-25,without +8,281.20051954266887,0.0926220420101017,0.0,58.41363449437083,0.0623119160009082,10,mac,phase-25,without +9,299.98387491674634,0.0988089179567675,0.0,62.31549092473475,0.0664741660002619,10,mac,phase-25,without +10,305.7382448097462,0.1007042967094025,0.0,63.51084312472989,0.0677492910035653,10,mac,phase-25,without +11,294.734003229727,0.0970797112087374,0.0,61.224937868977115,0.0653108339975006,10,mac,phase-25,without +12,298.89347681440523,0.0984497617965761,0.0,62.08898310637403,0.0662325419980334,10,mac,phase-25,without +13,308.355851863169,0.1015664861209384,0.0,64.05459724693849,0.0683293330002925,10,mac,phase-25,without +14,310.24746403189397,0.1021895467825737,0.0,64.44754083754319,0.0687485000016749,10,mac,phase-25,without +15,311.1235091390795,0.1024780991894201,0.0,64.62952122212762,0.0689426249955431,10,mac,phase-25,without +16,308.5540400267205,0.1016317654896971,0.0,64.09576676883565,0.0683732500037876,10,mac,phase-25,without +17,305.98663773748234,0.100786112561753,0.0,63.562441655612275,0.0678043330044602,10,mac,phase-25,without +18,292.8154993760287,0.0964477929433559,0.0,60.82640808294316,0.064885708001384,10,mac,phase-25,without +19,275.3126478356244,0.0906826903279395,0.0,57.190550033487185,0.0610072080016834,10,mac,phase-25,without +20,306.57198705890426,0.1009789153685455,0.0,63.68403595909606,0.0679340420028893,10,mac,phase-25,without +21,299.9385619885642,0.0987939927498564,0.0,62.3060780942428,0.0664641249968553,10,mac,phase-25,without +22,306.6251973620329,0.1009964418188514,0.0,63.69508930708896,0.0679458330050692,10,mac,phase-25,without +23,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.067884750002122,10,mac,phase-25,without +24,304.5282532805252,0.1003057487748765,0.0,63.25949222735547,0.0674811659991974,10,mac,phase-25,without +25,312.89270739925354,0.1030608390643127,0.0,64.99703583655992,0.069334665997303,10,mac,phase-25,without +26,306.72541736758814,0.1010294523608656,0.0,63.715907955585934,0.0679680410030414,10,mac,phase-25,without +27,306.35518366378886,0.1009075045005892,0.0,63.63899950503827,0.0678860000043641,10,mac,phase-25,without +28,303.16651925294775,0.0998572197802858,0.0,62.97661994143359,0.0671794160007266,10,mac,phase-25,without +29,307.1612805694235,0.1011730173153568,0.0,63.80644958688507,0.0680646250038989,10,mac,phase-25,without +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.0687121249939082,10,mac,phase-13,without +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.0684735419999924,10,mac,phase-13,without +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.0682607499984442,10,mac,phase-13,without +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.0693537920014932,10,mac,phase-13,without +4,282.3759053861895,0.9401410231953468,0.0,57.6822008425016,0.061543249998067,10,mac,phase-13,without +5,321.98321971372366,1.072009430901668,0.0,65.77296572822493,0.0701755830014008,10,mac,phase-13,without +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.069085625000298,10,mac,phase-13,without +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.0674245410045841,10,mac,phase-13,without +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.067374958001892,10,mac,phase-13,without +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.0674674160036374,10,mac,phase-13,without +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.0676157499983673,10,mac,phase-13,without +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.0686493749963119,10,mac,phase-13,without +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.0677805829982389,10,mac,phase-13,without +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.0658772080059861,10,mac,phase-13,without +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.0679051670012995,10,mac,phase-13,without +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.0631127919987193,10,mac,phase-13,without +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.068294083001092,10,mac,phase-13,without +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.0672580419995938,10,mac,phase-13,without +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.0678333329997258,10,mac,phase-13,without +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.0681575409980723,10,mac,phase-13,without +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.0683888749990728,10,mac,phase-13,without +21,316.3211247316838,1.053158078260359,0.0,64.61634402745813,0.0689415410015499,10,mac,phase-13,without +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.0673742090002633,10,mac,phase-13,without +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.0688007909993757,10,mac,phase-13,without +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264,10,mac,phase-13,without +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.0688696249999338,10,mac,phase-13,without +26,283.9395447763309,0.9453469968925204,0.0,58.00161251901851,0.061884041999292,10,mac,phase-13,without +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.0701700000063283,10,mac,phase-13,without +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.0685499159953906,10,mac,phase-13,without +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.0680872920056572,10,mac,phase-13,without +0,311.59367925352166,0.0,0.0,72.32524053893655,0.0842451249991427,10,mac,phase-14,without +1,314.6147113063084,0.0,0.0,73.02646423004957,0.0850619169941637,10,mac,phase-14,without +2,317.0589047950213,0.0,0.0,73.59379564196513,0.085722749994602,10,mac,phase-14,without +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667,10,mac,phase-14,without +4,310.3879176166453,0.0,0.0,72.04536643934435,0.0839191249979194,10,mac,phase-14,without +5,319.6777081144411,0.0,0.0,74.20165643187254,0.086430791998282,10,mac,phase-14,without +6,254.6704492989941,0.0,0.0,59.112564631718605,0.0688548749967594,10,mac,phase-14,without +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371,10,mac,phase-14,without +8,273.9504631496793,0.0,0.0,63.58772485539658,0.0740675839988398,10,mac,phase-14,without +9,303.15396548952185,0.0,0.0,70.36626521721826,0.0819632919956347,10,mac,phase-14,without +10,319.6621404622535,0.0,0.0,74.19804296258846,0.0864265829950454,10,mac,phase-14,without +11,321.3189864206904,0.0,0.0,74.58262002707511,0.0868745420011691,10,mac,phase-14,without +12,327.9853465847884,0.0,0.0,76.12997523512246,0.0886769159988034,10,mac,phase-14,without +13,316.0251306481012,0.0,0.0,73.35384223848772,0.0854432499982067,10,mac,phase-14,without +14,248.80099032368904,0.0,0.0,57.750181308541606,0.0672679580020485,10,mac,phase-14,without +15,293.83489274284335,0.0,0.0,68.20317840615691,0.0794437079966883,10,mac,phase-14,without +16,319.29011864863867,0.0,0.0,74.1116915089265,0.0863260000041918,10,mac,phase-14,without +17,317.9883472997439,0.0,0.0,73.8095322155767,0.0859740419982699,10,mac,phase-14,without +18,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388,10,mac,phase-14,without +19,317.9663070322047,0.0,0.0,73.80441636195883,0.0859680830035358,10,mac,phase-14,without +20,309.99647784933063,0.0,0.0,71.95450780769507,0.0838132920034695,10,mac,phase-14,without +21,318.1546314596068,0.0,0.0,73.84812908919976,0.0860190000021248,10,mac,phase-14,without +22,317.56423360371525,0.0,0.0,73.7110895091822,0.0858593750017462,10,mac,phase-14,without +23,314.6444522037832,0.0,0.0,73.03336750732035,0.0850699579968932,10,mac,phase-14,without +24,291.90250070508733,0.0,0.0,67.75464325203872,0.0789212500021676,10,mac,phase-14,without +25,315.9423732511658,0.0,0.0,73.33463309196694,0.0854208750024554,10,mac,phase-14,without +26,312.00345697187805,0.0,0.0,72.42035566488721,0.0843559159984579,10,mac,phase-14,without +27,315.7848733838278,0.0,0.0,73.2980751752038,0.0853782919948571,10,mac,phase-14,without +28,316.48175922730144,0.0,0.0,73.4598321029379,0.0855667079958948,10,mac,phase-14,without +29,318.58722249833687,0.0,0.0,73.94853950511737,0.0861359590053325,10,mac,phase-14,without +0,291.29299505714096,0.0,0.0,62.99496139075435,0.0682530839985702,10,mac,phase-15,without +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809,10,mac,phase-15,without +2,289.0799426382046,0.0,0.0,62.51636714354541,0.067734541997197,10,mac,phase-15,without +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137,10,mac,phase-15,without +4,297.886977244811,0.0,0.0,64.42097458150106,0.0697981249977601,10,mac,phase-15,without +5,290.82548775033143,0.0,0.0,62.893858359641,0.0681435420046909,10,mac,phase-15,without +6,268.5173277099082,0.0,0.0,58.06950039603958,0.0629164999991189,10,mac,phase-15,without +7,292.0704497581507,0.0,0.0,63.16309357966455,0.068435250002949,10,mac,phase-15,without +8,293.8949497924379,0.0,0.0,63.55765957049728,0.0688627499985159,10,mac,phase-15,without +9,293.04956393422503,0.0,0.0,63.37483660392384,0.068664666992845,10,mac,phase-15,without +10,290.9037299843468,0.0,0.0,62.91077900859089,0.0681618750022607,10,mac,phase-15,without +11,291.32144445247934,0.0,0.0,63.001113850962255,0.0682597499981056,10,mac,phase-15,without +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997,10,mac,phase-15,without +13,292.62811511187584,0.0,0.0,63.28369417090083,0.0685659169976133,10,mac,phase-15,without +14,291.9456155250125,0.0,0.0,63.136096954856455,0.0684059999985038,10,mac,phase-15,without +15,288.2672740442093,0.0,0.0,62.34061960559938,0.0675441249986761,10,mac,phase-15,without +16,293.5677518423963,0.0,0.0,63.48689981114927,0.0687860839971108,10,mac,phase-15,without +17,269.05080725191584,0.0,0.0,58.184870568758406,0.0630414999977801,10,mac,phase-15,without +18,292.5950351222772,0.0,0.0,63.27654029935935,0.0685581660000025,10,mac,phase-15,without +19,288.8240474431492,0.0,0.0,62.46102730288279,0.0676745829987339,10,mac,phase-15,without +20,289.09861444034067,0.0,0.0,62.52040510351909,0.0677389170014066,10,mac,phase-15,without +21,292.22515879396974,0.0,0.0,63.19655092297043,0.068471499995212,10,mac,phase-15,without +22,289.8157859281682,0.0,0.0,62.67550045751957,0.0679069580000941,10,mac,phase-15,without +23,289.92461574616726,0.0,0.0,62.69903597090075,0.0679324579978128,10,mac,phase-15,without +24,289.408032574084,0.0,0.0,62.58731980356169,0.0678114170004846,10,mac,phase-15,without +25,291.7665414108356,0.0,0.0,63.09737042486749,0.0683640410061343,10,mac,phase-15,without +26,292.56711921054875,0.0,0.0,63.27050321020389,0.0685516250014188,10,mac,phase-15,without +27,293.90632783646987,0.0,0.0,63.560120183888806,0.0688654159966972,10,mac,phase-15,without +28,265.84672909821063,0.0,0.0,57.491957306130764,0.0622907500001019,10,mac,phase-15,without +29,296.77573933170015,0.0,0.0,64.18065850586514,0.0695377499941969,10,mac,phase-15,without +0,298.5621379017781,0.0,0.0,65.17760957180526,0.0699610410010791,10,mac,phase-12,without +1,293.7520815286884,0.0,0.0,64.12755018213558,0.0688339170010294,10,mac,phase-12,without +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092,10,mac,phase-12,without +3,291.0702814766676,0.0,0.0,63.54209980330101,0.068205499999749,10,mac,phase-12,without +4,297.6933418060511,0.0,0.0,64.98794703414137,0.0697574589939904,10,mac,phase-12,without +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567,10,mac,phase-12,without +6,293.15729192518216,0.0,0.0,63.99770463364393,0.0686945419947733,10,mac,phase-12,without +7,291.59732372815654,0.0,0.0,63.65715576564372,0.0683290000015404,10,mac,phase-12,without +8,289.71177993007666,0.0,0.0,63.2455321138121,0.0678871669952059,10,mac,phase-12,without +9,288.3285607864271,0.0,0.0,62.943568449127,0.0675630420009838,10,mac,phase-12,without +10,287.9739957844177,0.0,0.0,62.86616513392031,0.0674799580010585,10,mac,phase-12,without +11,292.9851689308829,0.0,0.0,63.96012932218745,0.0686542090043076,10,mac,phase-12,without +12,294.059699195972,0.0,0.0,64.19470465911147,0.0689059999931487,10,mac,phase-12,without +13,288.9098350378217,0.0,0.0,63.070463528582806,0.0676992500011692,10,mac,phase-12,without +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247,10,mac,phase-12,without +15,293.23659577732656,0.0,0.0,64.01501706163273,0.0687131249942467,10,mac,phase-12,without +16,280.4243482266323,0.0,0.0,61.21803927179926,0.0657108750019688,10,mac,phase-12,without +17,295.6641182362926,0.0,0.0,64.54495736876346,0.0692819579999195,10,mac,phase-12,without +18,294.7314796376094,0.0,0.0,64.34135769305185,0.0690634159982437,10,mac,phase-12,without +19,292.6675907282371,0.0,0.0,63.890800410470675,0.0685797919941251,10,mac,phase-12,without +20,291.79132220494307,0.0,0.0,63.69950660445531,0.0683744589987327,10,mac,phase-12,without +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606,10,mac,phase-12,without +22,290.6044059821546,0.0,0.0,63.440396850261365,0.0680963329941732,10,mac,phase-12,without +23,290.49878844398484,0.0,0.0,63.41734001286348,0.0680715839989716,10,mac,phase-12,without +24,291.0869974835,0.0,0.0,63.54574899128773,0.0682094170042546,10,mac,phase-12,without +25,290.73012372139635,0.0,0.0,63.46784166219275,0.0681257920005009,10,mac,phase-12,without +26,287.31287997933134,0.0,0.0,62.7218402435357,0.0673250410036416,10,mac,phase-12,without +27,271.03076122136986,0.0,0.0,59.1673721958916,0.0635097080012201,10,mac,phase-12,without +28,292.54952051034445,0.0,0.0,63.865025090740104,0.0685521250052261,10,mac,phase-12,without +29,291.9493964926538,0.0,0.0,63.734015012923166,0.0684115000040037,10,mac,phase-12,without +0,370.44916321321614,0.0,0.0,65.64209549207466,0.0671277500005089,10,mac,phase-24,without +1,371.36386610958994,0.0,0.0,65.80417715086381,0.0672934999965946,10,mac,phase-24,without +2,368.962830282296,0.0,0.0,65.3787232999547,0.0668584169980022,10,mac,phase-24,without +3,368.9108618969243,0.0,0.0,65.36951471196507,0.0668489999952726,10,mac,phase-24,without +4,376.83391647843223,0.0,0.0,66.77344798290869,0.0682847079951898,10,mac,phase-24,without +5,379.53434024077234,0.0,0.0,67.25195216669212,0.068774041996221,10,mac,phase-24,without +6,377.5320155936468,0.0,0.0,66.8971483265304,0.0684112080052727,10,mac,phase-24,without +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257,10,mac,phase-24,without +8,381.6909531277366,0.0,0.0,67.63409525978926,0.0691648339998209,10,mac,phase-24,without +9,336.48949708535804,0.0,0.0,59.62457981594719,0.0609740420040907,10,mac,phase-24,without +10,375.5701640445277,0.0,0.0,66.54951615586617,0.0680557079977006,10,mac,phase-24,without +11,374.0240484961872,0.0,0.0,66.27555072539892,0.067775542003801,10,mac,phase-24,without +12,371.35052776493495,0.0,0.0,65.80181365006399,0.0672910830035107,10,mac,phase-24,without +13,370.73061027987507,0.0,0.0,65.69196677553322,0.0671787500032223,10,mac,phase-24,without +14,394.8672224542054,0.0,0.0,69.96887696601637,0.0715524580009514,10,mac,phase-24,without +15,365.1862909781526,0.0,0.0,64.70953578855121,0.0661740840005222,10,mac,phase-24,without +16,371.5834610794553,0.0,0.0,65.84308849258868,0.0673332920050597,10,mac,phase-24,without +17,386.614659576844,0.0,0.0,68.50655615591829,0.0700570409971987,10,mac,phase-24,without +18,386.60155849554985,0.0,0.0,68.50423469722772,0.0700546669977484,10,mac,phase-24,without +19,362.7040769916651,0.0,0.0,64.26969749570833,0.0657242910019704,10,mac,phase-24,without +20,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238,10,mac,phase-24,without +21,379.3593519471741,0.0,0.0,67.2209449478372,0.0687423330018646,10,mac,phase-24,without +22,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073,10,mac,phase-24,without +23,376.3324220394227,0.0,0.0,66.6845851938321,0.0681938340057968,10,mac,phase-24,without +24,375.2703236266904,0.0,0.0,66.49638564486882,0.0680013750024954,10,mac,phase-24,without +25,387.82208398640864,0.0,0.0,68.72050688455441,0.0702758339975844,10,mac,phase-24,without +26,379.18068825981504,0.0,0.0,67.18928646405266,0.0687099580027279,10,mac,phase-24,without +27,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301,10,mac,phase-24,without +28,382.47504806500143,0.0,0.0,67.7730337157446,0.0693069170010858,10,mac,phase-24,without +29,362.6224518506248,0.0,0.0,64.25523385039665,0.0657095000060508,10,mac,phase-24,without +0,289.20382575590736,0.0996796274434423,0.0,62.69848566192523,0.0674275420024059,10,mac,phase-23,without +1,293.9195168609384,0.1013049805357094,0.0,63.720832756961265,0.0685270000030868,10,mac,phase-23,without +2,293.63447150195356,0.1012067342033387,0.0,63.65903581390008,0.0684605420028674,10,mac,phase-23,without +3,291.00346139953365,0.1002999062728172,0.0,63.08864104560202,0.067847124999389,10,mac,phase-23,without +4,290.50771376254335,0.1001290373722001,0.0,62.981164507113895,0.0677315420034574,10,mac,phase-23,without +5,268.94209243479787,0.0926960336976555,0.0,58.30580519582532,0.0627035419965977,10,mac,phase-23,without +6,293.7504532056515,0.1012467095148155,0.0,63.684180284818986,0.0684875830047531,10,mac,phase-23,without +7,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.0687160410016076,10,mac,phase-23,without +8,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.0670849999951315,10,mac,phase-23,without +9,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.0684643329950631,10,mac,phase-23,without +10,290.6228033105725,0.1001687051851697,0.0,63.00611556147178,0.0677583750002668,10,mac,phase-23,without +11,292.06412282992403,0.1006654835121521,0.0,63.31858912914369,0.0680944170017028,10,mac,phase-23,without +12,290.22624120801856,0.1000320224751902,0.0,62.920142136894654,0.0676659169985214,10,mac,phase-23,without +13,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.0667457500021555,10,mac,phase-23,without +14,290.24715059938825,0.1000392292966641,0.0,62.92467522760175,0.0676707919992622,10,mac,phase-23,without +15,290.5952801459097,0.1001592188002905,0.0,63.00014862538278,0.0677519580058287,10,mac,phase-23,without +16,287.0188825965561,0.0989265450125997,0.0,62.224796812925256,0.0669181249977555,10,mac,phase-23,without +17,294.8216615026295,0.1016159219333511,0.0,63.91641489607788,0.0687373339969781,10,mac,phase-23,without +18,292.6999826596284,0.1008846447586035,0.0,63.45644155316163,0.068242666995502,10,mac,phase-23,without +19,294.47674453414845,0.1014970397061632,0.0,63.84163797517671,0.0686569169993163,10,mac,phase-23,without +20,291.70115300347874,0.1005403790223387,0.0,63.23989840505106,0.0680097910008044,10,mac,phase-23,without +21,291.2361453845984,0.10038010525664,0.0,63.1390862064266,0.0679013750050216,10,mac,phase-23,without +22,290.8948054959841,0.1002624559384136,0.0,63.06508478526217,0.0678217919994494,10,mac,phase-23,without +23,292.993606263265,0.1009858477469893,0.0,63.52009823285628,0.0683111250036745,10,mac,phase-23,without +24,289.21990989831363,0.0996851711506136,0.0,62.701972653735965,0.0674312920018564,10,mac,phase-23,without +25,276.5893870013989,0.095331819968313,0.0,59.9637147600689,0.0644864999994752,10,mac,phase-23,without +26,294.1384413389605,0.1013804370423806,0.0,63.76829489965745,0.0685780419953516,10,mac,phase-23,without +27,282.89311931638207,0.0975045218232015,0.0,61.33034422679377,0.0659562079963507,10,mac,phase-23,without +28,293.29813271570947,0.1010908086106535,0.0,63.586118616101075,0.0683821249986067,10,mac,phase-23,without +29,294.9056550815358,0.1016448719260808,0.0,63.93462444150483,0.068756917004066,10,mac,phase-23,without +0,305.2603840466375,0.0,0.0,70.23005972174292,0.0822855000005802,10,mac,phase-8,without +1,311.8426015201836,0.0,0.0,71.74440468894973,0.0840597919959691,10,mac,phase-8,without +2,309.3793097001562,0.0,0.0,71.17768479775621,0.0833957909999298,10,mac,phase-8,without +3,307.9774835661487,0.0,0.0,70.85517215525161,0.0830179169934126,10,mac,phase-8,without +4,309.9985372950614,0.0,0.0,71.32014806270742,0.0835627089982153,10,mac,phase-8,without +5,317.29333507952543,0.0,0.0,72.99843358823003,0.0855290830004378,10,mac,phase-8,without +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142,10,mac,phase-8,without +7,307.5211780361769,0.0,0.0,70.7501917310103,0.0828949160058982,10,mac,phase-8,without +8,307.52566313089267,0.0,0.0,70.75122359916683,0.0828961250008433,10,mac,phase-8,without +9,309.28022911738526,0.0,0.0,71.1548897165438,0.0833690829967963,10,mac,phase-8,without +10,309.2709546995603,0.0,0.0,71.15275598759708,0.0833665829995879,10,mac,phase-8,without +11,307.9507398632547,0.0,0.0,70.84901933638095,0.0830107080037123,10,mac,phase-8,without +12,305.0501624157072,0.0,0.0,70.18169485533174,0.0822288329945877,10,mac,phase-8,without +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517,10,mac,phase-8,without +14,263.23315694845485,0.0,0.0,60.56102035961698,0.0709567080048145,10,mac,phase-8,without +15,281.69931878209627,0.0,0.0,64.80945781231267,0.0759344170000986,10,mac,phase-8,without +16,310.20798354982014,0.0,0.0,71.36833454136281,0.0836191669950494,10,mac,phase-8,without +17,307.4975319241093,0.0,0.0,70.74475156271633,0.0828885419978178,10,mac,phase-8,without +18,312.2465028928711,0.0,0.0,71.83732869418587,0.0841686670028138,10,mac,phase-8,without +19,264.4872154298051,0.0,0.0,60.84953667762806,0.0712947499996516,10,mac,phase-8,without +20,307.0058314139288,0.0,0.0,70.63162795415167,0.0827559999961522,10,mac,phase-8,without +21,313.308421210062,0.0,0.0,72.0816400779537,0.0844549160028691,10,mac,phase-8,without +22,309.2122178896617,0.0,0.0,71.1392426400334,0.0833507499992265,10,mac,phase-8,without +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184,10,mac,phase-8,without +24,287.64237234819007,0.0,0.0,66.17675284530496,0.077536416996736,10,mac,phase-8,without +25,306.2275548020647,0.0,0.0,70.45257290545298,0.0825462089997017,10,mac,phase-8,without +26,307.19379440968873,0.0,0.0,70.67487186363874,0.0828066670001135,10,mac,phase-8,without +27,303.97726690862385,0.0,0.0,69.9348579925237,0.0819396250008139,10,mac,phase-8,without +28,311.54442867805176,0.0,0.0,71.67580523220816,0.0839794170024106,10,mac,phase-8,without +29,307.42689047443804,0.0,0.0,70.72849936135475,0.0828695000018342,10,mac,phase-8,without +0,315.89567899052815,0.0,0.0,70.69041793477467,0.0832259160015382,10,mac,phase-1,without +1,265.85174216063353,0.0,0.0,59.491699354921,0.0700413340018712,10,mac,phase-1,without +2,312.32888500652234,0.0,0.0,69.8922488739558,0.0822862080021877,10,mac,phase-1,without +3,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424,10,mac,phase-1,without +4,315.90675086282243,0.0,0.0,70.69289557322259,0.0832288329984294,10,mac,phase-1,without +5,299.2312370810115,0.0,0.0,66.96128695394593,0.078835500004061,10,mac,phase-1,without +6,317.14049354538116,0.0,0.0,70.96897971002608,0.0835538750034174,10,mac,phase-1,without +7,317.43117509131514,0.0,0.0,71.03402776650366,0.0836304580006981,10,mac,phase-1,without +8,312.8783039921803,0.0,0.0,70.01519660733908,0.0824309579984401,10,mac,phase-1,without +9,268.2657658886426,0.0,0.0,60.03190410473824,0.0706773330020951,10,mac,phase-1,without +10,312.72885063157213,0.0,0.0,69.98175227357386,0.0823915829969337,10,mac,phase-1,without +11,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071,10,mac,phase-1,without +12,297.0645600830759,0.0,0.0,66.47643289388668,0.0782646670049871,10,mac,phase-1,without +13,320.132881830413,0.0,0.0,71.63860956747773,0.0843422500038286,10,mac,phase-1,without +14,305.29682664515053,0.0,0.0,68.31863081721116,0.0804335410066414,10,mac,phase-1,without +15,306.0025007629592,0.0,0.0,68.47654496935486,0.080619458000001,10,mac,phase-1,without +16,317.616212578826,0.0,0.0,71.07543503540818,0.0836792080008308,10,mac,phase-1,without +17,313.46473429199887,0.0,0.0,70.14642664858644,0.0825854590002563,10,mac,phase-1,without +18,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633,10,mac,phase-1,without +19,317.8055239782236,0.0,0.0,71.1177987106126,0.083729084006336,10,mac,phase-1,without +20,312.42836494049845,0.0,0.0,69.91451026775316,0.0823124169983202,10,mac,phase-1,without +21,310.49337764575245,0.0,0.0,69.48150320351859,0.0818026249980903,10,mac,phase-1,without +22,319.06867904096777,0.0,0.0,71.40046468308539,0.0840618750007706,10,mac,phase-1,without +23,315.95309183579826,0.0,0.0,70.70326565095722,0.0832410419970983,10,mac,phase-1,without +24,314.0385061273956,0.0,0.0,70.27482400740125,0.0827366250014165,10,mac,phase-1,without +25,314.3986175247909,0.0,0.0,70.35540891842726,0.0828314999962458,10,mac,phase-1,without +26,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661,10,mac,phase-1,without +27,312.9080390484739,0.0,0.0,70.02185065073537,0.0824387920001754,10,mac,phase-1,without +28,316.7443235347586,0.0,0.0,70.88032568438815,0.0834495000017341,10,mac,phase-1,without +29,312.2983604376832,0.0,0.0,69.88541815523429,0.0822781659953761,10,mac,phase-1,without +0,411.18397650340427,1.167188903294335,11.571844269803837,72.9993288374657,0.0697049590016831,10,mac,phase-30,without +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.0697707910003373,10,mac,phase-30,without +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.0708791670040227,10,mac,phase-30,without +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.067930666002212,10,mac,phase-30,without +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.0708610420042532,10,mac,phase-30,without +5,413.635956981174,1.1741491074080366,11.64084972201682,73.43463988903406,0.0701206250014365,10,mac,phase-30,without +6,420.48804217203855,1.1935994708857542,11.83368618278162,74.6511211933976,0.0712822080022306,10,mac,phase-30,without +7,410.6007148882734,1.1655332539407597,11.555429689069816,72.89577979646637,0.0696060830014175,10,mac,phase-30,without +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.0684407080043456,10,mac,phase-30,without +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.0699344580061733,10,mac,phase-30,without +10,429.4455521502114,1.2190263037516138,12.085775068623144,76.24138796892237,0.0728007079960662,10,mac,phase-30,without +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.0671137079989421,10,mac,phase-30,without +12,445.29103640889906,1.264005375045537,12.53171043259432,79.05450759927656,0.0754868750009336,10,mac,phase-30,without +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.0677466670022113,10,mac,phase-30,without +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.0702987499971641,10,mac,phase-30,without +15,410.0169695614531,1.163876231520751,11.539001495362871,72.79214487996926,0.0695071250011096,10,mac,phase-30,without +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.0676083329963148,10,mac,phase-30,without +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717,10,mac,phase-30,without +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.0705336250030086,10,mac,phase-30,without +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.0665746669983491,10,mac,phase-30,without +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.0700137500025448,10,mac,phase-30,without +21,403.1911817621741,1.144500515951021,11.34690511528584,71.58033226905101,0.0683500000013737,10,mac,phase-30,without +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.0718155840004328,10,mac,phase-30,without +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.0667553750026854,10,mac,phase-30,without +24,401.4849191657379,1.1396571103650306,11.29888620847616,71.27741184540147,0.0680607500034966,10,mac,phase-30,without +25,426.8551889258219,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923,10,mac,phase-30,without +26,413.6236695024976,1.1741142281092791,11.640503918683429,73.43245843803464,0.070118541996635,10,mac,phase-30,without +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523,10,mac,phase-30,without +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.0703375419980147,10,mac,phase-30,without +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.0663894170065759,10,mac,phase-30,without +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206,10,mac,phase-6,without +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733,10,mac,phase-6,without +2,291.12877419678506,0.0,0.0,64.01819623510673,0.0687049580010352,10,mac,phase-6,without +3,289.13703351517285,0.0,0.0,63.58021944577464,0.0682349170019733,10,mac,phase-6,without +4,287.799607294358,0.0,0.0,63.286124111191775,0.0679192909956327,10,mac,phase-6,without +5,291.371363998525,0.0,0.0,64.07154088156179,0.0687622080004075,10,mac,phase-6,without +6,289.56394921064606,0.0,0.0,63.67409670969008,0.068335667005158,10,mac,phase-6,without +7,292.13638840929866,0.0,0.0,64.23976706596653,0.0689427499964949,10,mac,phase-6,without +8,283.5650571496894,0.0,0.0,62.35496138817781,0.0669199580006534,10,mac,phase-6,without +9,287.130631504071,0.0,0.0,63.13901868151625,0.0677614160013035,10,mac,phase-6,without +10,289.67976939419503,0.0,0.0,63.699565161782736,0.0683629999984987,10,mac,phase-6,without +11,292.1418630957887,0.0,0.0,64.2409709303218,0.0689440419955644,10,mac,phase-6,without +12,293.0022242707416,0.0,0.0,64.43016133475076,0.0691470829988247,10,mac,phase-6,without +13,293.2524074633523,0.0,0.0,64.4851757412225,0.0692061250010738,10,mac,phase-6,without +14,292.1868810008963,0.0,0.0,64.2508702097428,0.0689546659996267,10,mac,phase-6,without +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097,10,mac,phase-6,without +16,289.3466056584585,0.0,0.0,63.62630362495372,0.0682843749964376,10,mac,phase-6,without +17,290.05283648513034,0.0,0.0,63.78160130644845,0.0684510419960133,10,mac,phase-6,without +18,292.61538991766724,0.0,0.0,64.34509781743297,0.069055791995197,10,mac,phase-6,without +19,263.23624764234796,0.0,0.0,57.884727486160926,0.0621224589995108,10,mac,phase-6,without +20,291.45399282192466,0.0,0.0,64.08971066998504,0.068781707996095,10,mac,phase-6,without +21,292.67577253005464,0.0,0.0,64.35837574208907,0.0690700419945642,10,mac,phase-6,without +22,292.25150521505736,0.0,0.0,64.26508084775038,0.0689699169961386,10,mac,phase-6,without +23,288.79928071261065,0.0,0.0,63.50594878924803,0.0681552090027253,10,mac,phase-6,without +24,290.00304733298486,0.0,0.0,63.77065284654021,0.0684392920011305,10,mac,phase-6,without +25,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247,10,mac,phase-6,without +26,293.6300636211133,0.0,0.0,64.56822100558581,0.0692952499957755,10,mac,phase-6,without +27,289.9055876714127,0.0,0.0,63.749221808825894,0.0684162920006201,10,mac,phase-6,without +28,284.5073479632638,0.0,0.0,62.5621678327499,0.0671423339954344,10,mac,phase-6,without +29,296.6712669039547,0.0,0.0,65.23697093966203,0.0700129590040887,10,mac,phase-6,without +0,302.5242036763287,0.0,0.0,63.689306037121824,0.0675712500014924,10,mac,phase-7,without +1,302.7327655579679,0.0,0.0,63.733213801677465,0.0676178339999751,10,mac,phase-7,without +2,316.69315087742956,0.0,0.0,66.67224228998516,0.0707360000014887,10,mac,phase-7,without +3,307.5654342587211,0.0,0.0,64.75061773867812,0.0686972499970579,10,mac,phase-7,without +4,306.4536190758211,0.0,0.0,64.51655138438339,0.0684489170016604,10,mac,phase-7,without +5,300.7051879657525,0.0,0.0,63.30635536121105,0.0671649579962831,10,mac,phase-7,without +6,307.374413716436,0.0,0.0,64.71040288767074,0.0686545839998871,10,mac,phase-7,without +7,310.5906561688394,0.0,0.0,65.38750656186093,0.0693729580016224,10,mac,phase-7,without +8,308.0642609293506,0.0,0.0,64.85563387986328,0.0688086670052143,10,mac,phase-7,without +9,304.84745437059416,0.0,0.0,64.17841144644088,0.068090167005721,10,mac,phase-7,without +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945,10,mac,phase-7,without +11,305.72011556246974,0.0,0.0,64.3621295920989,0.0682850830053212,10,mac,phase-7,without +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476,10,mac,phase-7,without +13,308.66251527816155,0.0,0.0,64.98158216382348,0.068942291996791,10,mac,phase-7,without +14,307.0794838197012,0.0,0.0,64.64831238309499,0.0685887090003234,10,mac,phase-7,without +15,309.8218998360231,0.0,0.0,65.22566312337328,0.0692012500003329,10,mac,phase-7,without +16,306.41127454986776,0.0,0.0,64.50763674734058,0.0684394590061856,10,mac,phase-7,without +17,309.1954754486052,0.0,0.0,65.0937843049695,0.0690613330007181,10,mac,phase-7,without +18,306.76198031973763,0.0,0.0,64.58146954099739,0.0685177920022397,10,mac,phase-7,without +19,296.2609044530781,0.0,0.0,62.37071672696381,0.0661722910008393,10,mac,phase-7,without +20,307.906254599804,0.0,0.0,64.82236938943242,0.0687733750019106,10,mac,phase-7,without +21,308.04205891249177,0.0,0.0,64.8509597710509,0.0688037080035428,10,mac,phase-7,without +22,307.9202455579482,0.0,0.0,64.82531485430489,0.068776499996602,10,mac,phase-7,without +23,308.26330444060716,0.0,0.0,64.89753777696993,0.068853124997986,10,mac,phase-7,without +24,304.56744666191145,0.0,0.0,64.11946245513926,0.0680276249986491,10,mac,phase-7,without +25,312.2052199573735,0.0,0.0,65.72741472786811,0.0697335840013693,10,mac,phase-7,without +26,307.5005161295389,0.0,0.0,64.73695076411346,0.0686827500030631,10,mac,phase-7,without +27,318.98524529080635,0.0,0.0,67.15478848227502,0.0712479579960927,10,mac,phase-7,without +28,329.1152803585185,0.0,0.0,69.28742744389862,0.0735105840067262,10,mac,phase-7,without +29,277.68144008298685,0.0,0.0,58.4592505437867,0.0620224159938516,10,mac,phase-7,without +0,353.3303920568681,0.0,0.0,69.15518081324026,0.075606708000123,10,mac,phase-9,without +1,314.38863582784177,0.0,0.0,61.53335078178913,0.0672738329958519,10,mac,phase-9,without +2,317.2772995012459,0.0,0.0,62.098731125891405,0.067891958002292,10,mac,phase-9,without +3,321.3954204399756,0.0,0.0,62.904745566004465,0.0687731660000281,10,mac,phase-9,without +4,319.5576625612702,0.0,0.0,62.54505253860031,0.0683799170001293,10,mac,phase-9,without +5,331.31404809256026,0.0,0.0,64.84605744902893,0.0708955840018461,10,mac,phase-9,without +6,331.38667532066586,0.0,0.0,64.86027232893883,0.0709111249962006,10,mac,phase-9,without +7,318.43373701362606,0.0,0.0,62.32507351552368,0.0681394160055788,10,mac,phase-9,without +8,336.7251033504346,0.0,0.0,65.90512995782265,0.0720534580032108,10,mac,phase-9,without +9,304.5621182908196,0.0,0.0,59.610067044204875,0.0651711249956861,10,mac,phase-9,without +10,322.1328293892706,0.0,0.0,63.0490740765663,0.0689309590015909,10,mac,phase-9,without +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169,10,mac,phase-9,without +12,320.85566267461155,0.0,0.0,62.799102103969375,0.0686576669977512,10,mac,phase-9,without +13,374.90570573356854,0.0,0.0,73.37798403639027,0.0802234590009902,10,mac,phase-9,without +14,386.9158076380404,0.0,0.0,75.72864728942714,0.0827934170010848,10,mac,phase-9,without +15,335.4308044090277,0.0,0.0,65.65180480003387,0.0717764999935752,10,mac,phase-9,without +16,388.6902847933515,0.0,0.0,76.07595477070589,0.0831731250000302,10,mac,phase-9,without +17,387.62594807984937,0.0,0.0,75.86763870301657,0.0829453750047832,10,mac,phase-9,without +18,390.1639250154146,0.0,0.0,76.36438129245846,0.0834884590003639,10,mac,phase-9,without +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579,10,mac,phase-9,without +20,388.70488876434206,0.0,0.0,76.07881311597464,0.0831762500019976,10,mac,phase-9,without +21,391.1120095675774,0.0,0.0,76.54994404082375,0.083691333005845,10,mac,phase-9,without +22,385.3631097374103,0.0,0.0,75.42474729531305,0.0824611659991205,10,mac,phase-9,without +23,381.9621437858659,0.0,0.0,74.7590971825402,0.0817334169987589,10,mac,phase-9,without +24,385.6555815460515,0.0,0.0,75.48199100053641,0.0825237500030198,10,mac,phase-9,without +25,356.2938326643222,0.0,0.0,69.73519678595287,0.0762408340015099,10,mac,phase-9,without +26,391.34392044465426,0.0,0.0,76.5953345280203,0.0837409579980885,10,mac,phase-9,without +27,326.9782229625547,0.0,0.0,63.99743310880556,0.0699677910015452,10,mac,phase-9,without +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193,10,mac,phase-9,without +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412,10,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n100/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n100/with_smell.csv new file mode 100644 index 000000000..dec9d18bc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n100/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,1832.0288573050368,0.3348434297708107,0.0,485.7573635685151,0.520800792000955,100,mac,phase-19,with +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087,100,mac,phase-19,with +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004,100,mac,phase-19,with +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638,100,mac,phase-19,with +4,1832.5450819984576,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844,100,mac,phase-19,with +5,1811.56117568914,0.331102512325981,0.0,480.33041463130064,0.5149823329993524,100,mac,phase-19,with +6,1861.757947821728,0.3402770726923634,0.0,493.6399493548115,0.5292520420043729,100,mac,phase-19,with +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311,100,mac,phase-19,with +8,1813.0148750103676,0.3313682077404579,0.0,480.7158589690824,0.5153955839996343,100,mac,phase-19,with +9,1828.3792277749956,0.3341763799782493,0.0,484.78967443444634,0.5197632919953321,100,mac,phase-19,with +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375,100,mac,phase-19,with +11,1817.2384760499765,0.3321401634072298,0.0,481.83573505486834,0.5165962500032037,100,mac,phase-19,with +12,1824.018140381943,0.333379295666833,0.0,483.63334422387464,0.5185235419994569,100,mac,phase-19,with +13,1833.410144455411,0.3350958902738674,0.0,486.1236080202995,0.521193458000198,100,mac,phase-19,with +14,1821.170110213187,0.3328587557277406,0.0,482.8781969342333,0.5177139169973088,100,mac,phase-19,with +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314,100,mac,phase-19,with +16,1818.3656082621744,0.3323461715245324,0.0,482.1345910306392,0.5169166659979965,100,mac,phase-19,with +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685,100,mac,phase-19,with +18,1805.5999711042289,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965,100,mac,phase-19,with +19,1838.1848588994617,0.3359685739951129,0.0,487.38961029471034,0.52255079200404,100,mac,phase-19,with +20,1814.558121289498,0.3316502698242645,0.0,481.1250464340605,0.5158342909999192,100,mac,phase-19,with +21,1810.8972069332913,0.33098115748237,0.0,480.1543651596742,0.5147935829954804,100,mac,phase-19,with +22,1833.8570420407632,0.335177570603104,0.0,486.24210167392306,0.5213205000036396,100,mac,phase-19,with +23,1835.274389296927,0.3354366218808924,0.0,486.6179073626107,0.5217234170049778,100,mac,phase-19,with +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233,100,mac,phase-19,with +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785,100,mac,phase-19,with +26,1843.4762342226047,0.3369356888166623,0.0,488.792603766332,0.524055000001681,100,mac,phase-19,with +27,1812.032257571416,0.3311886128655741,0.0,480.45532068408846,0.5151162500042119,100,mac,phase-19,with +28,1851.1542315714744,0.3383390111255961,0.0,490.82840343990233,0.5262376660029986,100,mac,phase-19,with +29,1816.7635844920449,0.3320533665659065,0.0,481.7098188771606,0.5164612500011572,100,mac,phase-19,with +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021,100,mac,phase-26,with +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396,100,mac,phase-26,with +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647,100,mac,phase-26,with +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121,100,mac,phase-26,with +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826,100,mac,phase-26,with +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744,100,mac,phase-26,with +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462,100,mac,phase-26,with +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933,100,mac,phase-26,with +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716,100,mac,phase-26,with +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596,100,mac,phase-26,with +10,2615.36164408698,2.86359540889274,88.30529098120404,541.2528299017616,0.5338564999983646,100,mac,phase-26,with +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096,100,mac,phase-26,with +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936,100,mac,phase-26,with +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303,100,mac,phase-26,with +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195,100,mac,phase-26,with +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093,100,mac,phase-26,with +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978,100,mac,phase-26,with +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057,100,mac,phase-26,with +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888,100,mac,phase-26,with +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631,100,mac,phase-26,with +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072,100,mac,phase-26,with +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873,100,mac,phase-26,with +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502,100,mac,phase-26,with +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321,100,mac,phase-26,with +24,2646.093256085373,2.89724387323626,89.34291571886699,547.6127809239,0.5401295409974409,100,mac,phase-26,with +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246,100,mac,phase-26,with +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397,100,mac,phase-26,with +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437,100,mac,phase-26,with +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415,100,mac,phase-26,with +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615,100,mac,phase-26,with +0,1761.0627122628562,0.1002730818552339,0.0,479.40560434987367,0.5189407500001835,100,mac,phase-21,with +1,1773.2261221061888,0.1009656537792014,0.0,482.7167907183622,0.5225250000003143,100,mac,phase-21,with +2,1774.1111385027095,0.1010160456936708,0.0,482.9577144614402,0.5227857920035603,100,mac,phase-21,with +3,1747.8332966738471,0.0995198126712257,0.0,475.8042243811302,0.51504237500194,100,mac,phase-21,with +4,1746.9785407537054,0.0994711437568538,0.0,475.5715383015183,0.5147904999976163,100,mac,phase-21,with +5,1750.5248233346765,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402,100,mac,phase-21,with +6,1746.6482342427255,0.099452336447164,0.0,475.4816205538911,0.514693167002406,100,mac,phase-21,with +7,1772.610473858339,0.1009305994073606,0.0,482.5491957665912,0.5223435839943704,100,mac,phase-21,with +8,1748.7226941545937,0.0995704540400808,0.0,476.04634076562667,0.5153044580001733,100,mac,phase-21,with +9,1772.4744459499425,0.1009228541195305,0.0,482.5121655454757,0.5223035000017262,100,mac,phase-21,with +10,1770.3282934230103,0.1008006544235695,0.0,481.92792879908586,0.5216710829990916,100,mac,phase-21,with +11,1758.21465709453,0.1001109165518446,0.0,478.6302920343692,0.5181014999980107,100,mac,phase-21,with +12,1757.855223569782,0.1000904507802411,0.0,478.532445180333,0.5179955840067123,100,mac,phase-21,with +13,1756.2394557664416,0.0999984506396015,0.0,478.09259250793485,0.5175194580006064,100,mac,phase-21,with +14,1747.016436775467,0.0994733015169754,0.0,475.5818545526595,0.5148016669991193,100,mac,phase-21,with +15,1754.1526907543482,0.0998796324070574,0.0,477.5245225381418,0.5169045410002582,100,mac,phase-21,with +16,1753.2227129170683,0.0998266804348467,0.0,477.2713591590023,0.5166304999947897,100,mac,phase-21,with +17,1756.2227695819904,0.0999975005455885,0.0,478.088050108459,0.5175145410030382,100,mac,phase-21,with +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174,100,mac,phase-21,with +19,1748.2398194280586,0.0995429596546495,0.0,475.9148901088795,0.5151621670011082,100,mac,phase-21,with +20,1763.74038297599,0.1004255456447003,0.0,480.1345337273122,0.5197297920021811,100,mac,phase-21,with +21,1760.1897159033686,0.1002233743491896,0.0,479.16795276347585,0.5186834999985876,100,mac,phase-21,with +22,1751.7277020054344,0.0997415560662067,0.0,476.8643795525346,0.5161899579979945,100,mac,phase-21,with +23,1748.352370623307,0.099549368202815,0.0,475.9455293776589,0.5151953329987009,100,mac,phase-21,with +24,1759.1921483115996,0.1001665738865547,0.0,478.89638975161847,0.5183895419977489,100,mac,phase-21,with +25,1747.339389421523,0.099491690105234,0.0,475.66977039312377,0.5148968329958734,100,mac,phase-21,with +26,1751.9406486544974,0.0997536810272451,0.0,476.922348991259,0.5162527080028667,100,mac,phase-21,with +27,1754.9035218939098,0.0999223839523559,0.0,477.7289176762137,0.5171257919937489,100,mac,phase-21,with +28,1752.4458666562616,0.099782447615563,0.0,477.0598820500069,0.516401583001425,100,mac,phase-21,with +29,1750.364901254197,0.0996639596067907,0.0,476.4933908800666,0.5157883749998291,100,mac,phase-21,with +0,2670.570409785425,2.9727932568403896,91.95617793350104,548.196437429938,0.53703412500181,100,mac,phase-28,with +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161,100,mac,phase-28,with +2,2649.982550200963,2.949875512406015,91.24727287251416,543.9703023551407,0.5328940420004074,100,mac,phase-28,with +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248,100,mac,phase-28,with +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252,100,mac,phase-28,with +5,2691.5962946236164,2.99619859692693,92.68016558808806,552.5124873344356,0.5412622919975547,100,mac,phase-28,with +6,2666.77366683587,2.9685668444615825,91.82544407643525,547.417067992174,0.5362706249943585,100,mac,phase-28,with +7,2661.481141542177,2.9626753751907864,91.6432057067442,546.3306545801257,0.5352063330064993,100,mac,phase-28,with +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573,100,mac,phase-28,with +9,2645.7442612379073,2.9451575851782787,91.10133519096404,543.1002953701787,0.5320417499970063,100,mac,phase-28,with +10,2647.4012424367324,2.9470020834609416,91.15839028952776,543.4404291433817,0.5323749580056756,100,mac,phase-28,with +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555,100,mac,phase-28,with +12,2627.9855146860323,2.925389118559347,90.48984543139191,539.4549012786067,0.5284705829981249,100,mac,phase-28,with +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745,100,mac,phase-28,with +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839,100,mac,phase-28,with +15,2687.243218261744,2.991352892051421,92.53027541368049,551.618917576943,0.5403869170040707,100,mac,phase-28,with +16,2700.8745297979617,3.006526830498532,92.9996445433984,554.4170600240664,0.5431280839984538,100,mac,phase-28,with +17,2651.924020997127,2.95203669537653,91.31412384687177,544.3688342080854,0.5332844589938759,100,mac,phase-28,with +18,2727.5859912015253,3.0362611719148456,93.91940456496148,559.9002062187241,0.548499583004741,100,mac,phase-28,with +19,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431,100,mac,phase-28,with +20,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277,100,mac,phase-28,with +21,2647.5437980205056,2.9471607717608688,91.16329892873787,543.4696919790941,0.5324036249949131,100,mac,phase-28,with +22,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085,100,mac,phase-28,with +23,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703,100,mac,phase-28,with +24,2656.7905403646746,2.9574539485248152,91.4816934863912,545.3678000358345,0.5342630839950289,100,mac,phase-28,with +25,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377,100,mac,phase-28,with +26,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278,100,mac,phase-28,with +27,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112,100,mac,phase-28,with +28,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322,100,mac,phase-28,with +29,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103,100,mac,phase-28,with +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297,100,mac,phase-17,with +1,1756.560303683826,1.7731543519587607,0.0,478.8520422563347,0.5189257919992087,100,mac,phase-17,with +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679,100,mac,phase-17,with +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372,100,mac,phase-17,with +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144,100,mac,phase-17,with +5,1746.06400151769,1.7625588922832085,0.0,475.99066840093514,0.5158249579981202,100,mac,phase-17,with +6,1754.1136576433803,1.770684592699588,0.0,478.1850674586642,0.5182029999996303,100,mac,phase-17,with +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129,100,mac,phase-17,with +8,1745.2030860378886,1.7616898438215771,0.0,475.7559761248724,0.5155706250006915,100,mac,phase-17,with +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393,100,mac,phase-17,with +10,1747.4051663255143,1.763912726939895,0.0,476.35628039039096,0.5162211670030956,100,mac,phase-17,with +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424,100,mac,phase-17,with +12,1746.5747123718454,1.763074427771366,0.0,476.1298921639917,0.5159758329973556,100,mac,phase-17,with +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304,100,mac,phase-17,with +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058,100,mac,phase-17,with +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449,100,mac,phase-17,with +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621,100,mac,phase-17,with +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053,100,mac,phase-17,with +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674,100,mac,phase-17,with +19,1748.336743535644,1.7648531046661042,0.0,476.6102356053953,0.5164963749994058,100,mac,phase-17,with +20,1753.3933581542744,1.769957488613754,0.0,477.988708198654,0.517990207998082,100,mac,phase-17,with +21,1757.4467487928955,1.7740491712254969,0.0,479.09369410850064,0.5191876669996418,100,mac,phase-17,with +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899,100,mac,phase-17,with +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545,100,mac,phase-17,with +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244,100,mac,phase-17,with +25,1770.162052819831,1.786884595448938,0.0,482.5599851822763,0.522944042000745,100,mac,phase-17,with +26,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401,100,mac,phase-17,with +27,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632,100,mac,phase-17,with +28,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313,100,mac,phase-17,with +29,1747.8861163258769,1.764398220426472,0.0,476.48739111253,0.5163632500043605,100,mac,phase-17,with +0,1795.147924035491,2.682538176309839,0.0,479.4457429436733,0.5142721660013194,100,mac,phase-10,with +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979,100,mac,phase-10,with +2,1817.3031298206895,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046,100,mac,phase-10,with +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751,100,mac,phase-10,with +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264,100,mac,phase-10,with +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576,100,mac,phase-10,with +6,1809.3933002198744,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581,100,mac,phase-10,with +7,1805.3675530191017,2.697809644766114,0.0,482.1751879910992,0.5171998750010971,100,mac,phase-10,with +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467,100,mac,phase-10,with +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286,100,mac,phase-10,with +10,1799.7155993091633,2.689363777216903,0.0,480.6656716391247,0.5155807090050075,100,mac,phase-10,with +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075,100,mac,phase-10,with +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091,100,mac,phase-10,with +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005,100,mac,phase-10,with +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217,100,mac,phase-10,with +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733,100,mac,phase-10,with +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314,100,mac,phase-10,with +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529,100,mac,phase-10,with +18,1826.6656523216352,2.729635971553408,0.0,487.8634562985023,0.5233013329998357,100,mac,phase-10,with +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408,100,mac,phase-10,with +20,1807.306323455378,2.700706801953429,0.0,482.6929922454295,0.5177552919994923,100,mac,phase-10,with +21,1833.0039600605849,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359,100,mac,phase-10,with +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235,100,mac,phase-10,with +23,1838.0546515121375,2.7466548615899486,0.0,490.9052152004653,0.5265640419966076,100,mac,phase-10,with +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132,100,mac,phase-10,with +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729,100,mac,phase-10,with +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903,100,mac,phase-10,with +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051,100,mac,phase-10,with +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895,100,mac,phase-10,with +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387,100,mac,phase-10,with +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037,100,mac,phase-11,with +1,1782.8336566198657,1.7941300308884225,0.0,479.7304354814431,0.5178688749947469,100,mac,phase-11,with +2,1795.0281902994725,1.80640183146052,0.0,483.0117786010824,0.5214110840024659,100,mac,phase-11,with +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378,100,mac,phase-11,with +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384,100,mac,phase-11,with +5,1796.9891979642368,1.8083752644440696,0.0,483.5394526538505,0.5219807079993188,100,mac,phase-11,with +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032,100,mac,phase-11,with +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437,100,mac,phase-11,with +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653,100,mac,phase-11,with +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079,100,mac,phase-11,with +10,1803.0189770789996,1.8144432493899736,0.0,485.1619644063301,0.5237322089960799,100,mac,phase-11,with +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943,100,mac,phase-11,with +12,1800.0309108242288,1.8114362501771968,0.0,484.35792622793593,0.5228642500005662,100,mac,phase-11,with +13,1791.4015151729552,1.8027521770283184,0.0,482.03590155762765,0.5203576249987236,100,mac,phase-11,with +14,1809.3940181194137,1.820858683906976,0.0,486.8773803135709,0.5255840000027092,100,mac,phase-11,with +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398,100,mac,phase-11,with +16,1782.9656266294744,1.794262837085196,0.0,479.765946382836,0.5179072090031696,100,mac,phase-11,with +17,1797.0181746335738,1.8084044247151136,0.0,483.5472497863245,0.5219891250017099,100,mac,phase-11,with +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482,100,mac,phase-11,with +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603,100,mac,phase-11,with +20,1817.2879807960328,1.8288026642375284,0.0,489.0015123875124,0.5278770000004442,100,mac,phase-11,with +21,1799.0441654896515,1.8104432526358776,0.0,484.0924097186932,0.5225776250008494,100,mac,phase-11,with +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759,100,mac,phase-11,with +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128,100,mac,phase-11,with +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152,100,mac,phase-11,with +25,1779.0384404444324,1.7903107674990562,0.0,478.7092068873866,0.5167664590044296,100,mac,phase-11,with +26,1782.7894773086882,1.7940855716486983,0.0,479.71854757473255,0.517856042002677,100,mac,phase-11,with +27,1783.1825092184056,1.7944810938835989,0.0,479.8243058256533,0.5179702080058632,100,mac,phase-11,with +28,1780.5486074656133,1.79183050322667,0.0,479.11556733499793,0.5172051249974174,100,mac,phase-11,with +29,1787.7603534401137,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268,100,mac,phase-11,with +0,2672.382616871309,3.0753543154939074,90.65609677847256,547.1456460435247,0.5367295840042061,100,mac,phase-29,with +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645,100,mac,phase-29,with +2,2668.042158872389,3.070359354759644,90.50885402291472,546.2569773772376,0.5358578330051387,100,mac,phase-29,with +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605,100,mac,phase-29,with +4,2673.3815259950325,3.0765038512920504,90.68998309460912,547.3501634559595,0.5369302079998306,100,mac,phase-29,with +5,2660.8570324091256,3.062090774678085,90.26511066224964,544.7858891296837,0.5344147499999963,100,mac,phase-29,with +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095,100,mac,phase-29,with +7,2691.981040632199,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829,100,mac,phase-29,with +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093,100,mac,phase-29,with +9,2663.405459659043,3.065023482251948,90.35156178116613,545.3076560597814,0.5349265840050066,100,mac,phase-29,with +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977,100,mac,phase-29,with +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532,100,mac,phase-29,with +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001,100,mac,phase-29,with +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807,100,mac,phase-29,with +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968,100,mac,phase-29,with +15,2656.6049568069725,3.0571975236255113,90.1208661312216,543.915315942417,0.5335607499946491,100,mac,phase-29,with +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822,100,mac,phase-29,with +17,2683.2200521488594,3.087825940305148,91.02373858812568,549.3645107708115,0.5389062079993892,100,mac,phase-29,with +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233,100,mac,phase-29,with +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017,100,mac,phase-29,with +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186,100,mac,phase-29,with +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897,100,mac,phase-29,with +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739,100,mac,phase-29,with +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244,100,mac,phase-29,with +24,2660.4190835585628,3.0615867870084155,90.25025398224808,544.6962231494972,0.5343267909993301,100,mac,phase-29,with +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568,100,mac,phase-29,with +26,2652.9553415843593,3.05299757865734,89.99705905781202,543.1680909506885,0.5328277499938849,100,mac,phase-29,with +27,2692.647814864721,3.0986753263813163,91.3435596211536,551.2947580674934,0.5407997090005665,100,mac,phase-29,with +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348,100,mac,phase-29,with +29,2675.12895480308,3.0785147769326833,90.749261685233,547.707933356893,0.5372811670022202,100,mac,phase-29,with +0,1750.3108252154525,2.609757505147961,0.0,479.15816963107625,0.5184650419978425,100,mac,phase-16,with +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429,100,mac,phase-16,with +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149,100,mac,phase-16,with +3,1752.016519404531,2.612300738125388,0.0,479.625113726842,0.5189702910065535,100,mac,phase-16,with +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639,100,mac,phase-16,with +5,1742.483268674349,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369,100,mac,phase-16,with +6,1745.190778674311,2.602123386855969,0.0,477.7565259380042,0.5169484170037322,100,mac,phase-16,with +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536,100,mac,phase-16,with +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203,100,mac,phase-16,with +9,1735.1488806738737,2.587150664128651,0.0,475.007495653672,0.5139738750003744,100,mac,phase-16,with +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756,100,mac,phase-16,with +11,1734.3902782445691,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704,100,mac,phase-16,with +12,1740.4614946593651,2.59507190532813,0.0,476.4618558487712,0.5155475409992505,100,mac,phase-16,with +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972,100,mac,phase-16,with +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954,100,mac,phase-16,with +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097,100,mac,phase-16,with +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292,100,mac,phase-16,with +17,1746.9815770882103,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611,100,mac,phase-16,with +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266,100,mac,phase-16,with +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417,100,mac,phase-16,with +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639,100,mac,phase-16,with +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297,100,mac,phase-16,with +22,1745.2933230781057,2.6022762831436204,0.0,477.7845980884589,0.5169787920021918,100,mac,phase-16,with +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218,100,mac,phase-16,with +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297,100,mac,phase-16,with +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044,100,mac,phase-16,with +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646,100,mac,phase-16,with +27,1744.947146636668,2.601760125354311,0.0,477.6898301948601,0.5168762499961304,100,mac,phase-16,with +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994,100,mac,phase-16,with +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613,100,mac,phase-16,with +0,1845.824206071892,0.1677320580549854,0.0,486.1545970665696,0.5214718330025789,100,mac,phase-20,with +1,1830.4651068256328,0.166336359960892,0.0,482.1093057106495,0.5171326670024428,100,mac,phase-20,with +2,1849.9641160769513,0.1681082561907703,0.0,487.24496974332874,0.5226414170028875,100,mac,phase-20,with +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669,100,mac,phase-20,with +4,1822.3392648347449,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443,100,mac,phase-20,with +5,1836.1359089329785,0.1668516719310995,0.0,483.602885925099,0.5187347499959287,100,mac,phase-20,with +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701,100,mac,phase-20,with +7,1845.3007813203665,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832,100,mac,phase-20,with +8,1825.8569338770212,0.1659176102608928,0.0,480.8956015801718,0.5158307919991785,100,mac,phase-20,with +9,1807.0185105123555,0.1642057421907525,0.0,475.9339231656772,0.5105086669937009,100,mac,phase-20,with +10,1823.162968089531,0.1656728066526299,0.0,480.1860628019826,0.5150697079952806,100,mac,phase-20,with +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444,100,mac,phase-20,with +12,1857.7274384163825,0.1688137177558822,0.0,489.2896795436492,0.5248346669977764,100,mac,phase-20,with +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564,100,mac,phase-20,with +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571,100,mac,phase-20,with +15,1830.059520329347,0.1662995038737752,0.0,482.00248202775015,0.5170180829954916,100,mac,phase-20,with +16,1826.6731154100848,0.1659917775666616,0.0,481.11056809921206,0.5160613749976619,100,mac,phase-20,with +17,1843.7639886261209,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808,100,mac,phase-20,with +18,1825.188089979146,0.1658568316866715,0.0,480.71944096064885,0.5156418339975062,100,mac,phase-20,with +19,1824.456265218254,0.1657903299727617,0.0,480.52669239305266,0.5154350829980103,100,mac,phase-20,with +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028,100,mac,phase-20,with +21,1827.3999209682072,0.1660578231801435,0.0,481.301994705328,0.5162667080003303,100,mac,phase-20,with +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859,100,mac,phase-20,with +23,1827.510683488826,0.1660678882911533,0.0,481.3311674230788,0.5162980000022799,100,mac,phase-20,with +24,1835.150709439822,0.1667621457790216,0.0,483.3434033259165,0.5184564169976511,100,mac,phase-20,with +25,1813.572750949637,0.1648013331651888,0.0,477.6601840459834,0.5123603339961846,100,mac,phase-20,with +26,1842.1702642888456,0.1674000203813719,0.0,485.1922190733685,0.5204395420005312,100,mac,phase-20,with +27,1831.9371559299911,0.166470126667938,0.0,482.4970151343517,0.5175485420040786,100,mac,phase-20,with +28,1845.660352440013,0.1677171684968116,0.0,486.1114411711588,0.5214255419996334,100,mac,phase-20,with +29,1853.0747226186224,0.1683909203986171,0.0,488.06424368335195,0.5235202080002637,100,mac,phase-20,with +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213,100,mac,phase-18,with +1,1779.2162506886075,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688,100,mac,phase-18,with +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013,100,mac,phase-18,with +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128,100,mac,phase-18,with +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836,100,mac,phase-18,with +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122,100,mac,phase-18,with +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858,100,mac,phase-18,with +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367,100,mac,phase-18,with +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509,100,mac,phase-18,with +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752,100,mac,phase-18,with +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764,100,mac,phase-18,with +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953,100,mac,phase-18,with +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438,100,mac,phase-18,with +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806,100,mac,phase-18,with +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779,100,mac,phase-18,with +15,1790.0668889243043,1.66955817952611,0.0,480.09815010452814,0.5182433750014752,100,mac,phase-18,with +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756,100,mac,phase-18,with +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821,100,mac,phase-18,with +18,1792.1862688524077,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506,100,mac,phase-18,with +19,1790.008024062706,1.6695032774932437,0.0,480.0823624759571,0.5182263329988928,100,mac,phase-18,with +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355,100,mac,phase-18,with +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276,100,mac,phase-18,with +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134,100,mac,phase-18,with +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887,100,mac,phase-18,with +24,1787.3388646459289,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427,100,mac,phase-18,with +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853,100,mac,phase-18,with +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772,100,mac,phase-18,with +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742,100,mac,phase-18,with +28,1804.8606743706223,1.6833560357128678,0.0,484.0658616295923,0.522526332999405,100,mac,phase-18,with +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485,100,mac,phase-18,with +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224,100,mac,phase-27,with +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637,100,mac,phase-27,with +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822,100,mac,phase-27,with +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785,100,mac,phase-27,with +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257,100,mac,phase-27,with +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757,100,mac,phase-27,with +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788,100,mac,phase-27,with +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315,100,mac,phase-27,with +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518,100,mac,phase-27,with +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946,100,mac,phase-27,with +10,2618.9124733008675,4.199020794266546,93.62136762896692,547.6194959050658,0.5388713749998715,100,mac,phase-27,with +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708,100,mac,phase-27,with +12,2598.369879714636,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963,100,mac,phase-27,with +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235,100,mac,phase-27,with +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425,100,mac,phase-27,with +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375,100,mac,phase-27,with +16,2588.202161551629,4.149781562735098,92.52352972274171,541.1979122856604,0.5325523749997956,100,mac,phase-27,with +17,2609.8641773866566,4.184513252268183,93.2979074725714,545.7274803078074,0.5370095840044087,100,mac,phase-27,with +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034,100,mac,phase-27,with +19,2571.5775359527493,4.123126548755723,91.9292295310576,537.7216719825263,0.529131666997273,100,mac,phase-27,with +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198,100,mac,phase-27,with +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871,100,mac,phase-27,with +22,2590.805700040584,4.153955933725058,92.61660149833388,541.7423170526872,0.5330880830006208,100,mac,phase-27,with +23,2581.167113924082,4.138501952752755,92.2720395385754,539.7268706702032,0.5311048330040649,100,mac,phase-27,with +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174,100,mac,phase-27,with +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983,100,mac,phase-27,with +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351,100,mac,phase-27,with +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567,100,mac,phase-27,with +28,2612.5537766415023,4.188825608375719,93.39405576434504,546.2898805419278,0.5375629999980447,100,mac,phase-27,with +29,2596.2320891691634,4.162656308793328,92.81058506085604,542.8769851675906,0.5342046250007115,100,mac,phase-27,with +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881,100,mac,phase-5,with +1,1809.1855259194288,0.265466227826992,0.0,478.8678917214152,0.515494541003136,100,mac,phase-5,with +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585,100,mac,phase-5,with +3,1862.4952107043605,0.2732884885756843,0.0,492.97827232946247,0.5306841669953428,100,mac,phase-5,with +4,1810.0879382553949,0.2655986410015069,0.0,479.1067485365934,0.5157516670005862,100,mac,phase-5,with +5,1839.304281081116,0.2698856266144958,0.0,486.83993470922366,0.5240763330002665,100,mac,phase-5,with +6,1809.758034772763,0.2655502334546707,0.0,479.0194273730442,0.5156576669978676,100,mac,phase-5,with +7,1808.8649860767891,0.2654191942300088,0.0,478.78304899165727,0.5154032089994871,100,mac,phase-5,with +8,1813.8231895913325,0.2661467235878039,0.0,480.09542101194984,0.5168159589957213,100,mac,phase-5,with +9,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819,100,mac,phase-5,with +10,1809.8633196014089,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656,100,mac,phase-5,with +11,1813.954652607598,0.2661660134784905,0.0,480.13021756351213,0.5168534169933992,100,mac,phase-5,with +12,1807.167211573315,0.2651700756146534,0.0,478.33367014938295,0.5149194590048864,100,mac,phase-5,with +13,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542,100,mac,phase-5,with +14,1823.9124415236115,0.2676271442598061,0.0,482.76591485165784,0.5196907080025994,100,mac,phase-5,with +15,1819.837052677855,0.2670291524627728,0.0,481.6872123987844,0.5185295000046608,100,mac,phase-5,with +16,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613,100,mac,phase-5,with +17,1808.2260893946043,0.2653254473534387,0.0,478.6139413446843,0.5152211669992539,100,mac,phase-5,with +18,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068,100,mac,phase-5,with +19,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739,100,mac,phase-5,with +20,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421,100,mac,phase-5,with +21,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996,100,mac,phase-5,with +22,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448,100,mac,phase-5,with +23,1802.588046066788,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584,100,mac,phase-5,with +24,1837.076846539877,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271,100,mac,phase-5,with +25,1807.5499030880776,0.2652262288788654,0.0,478.4349636188634,0.5150284999981523,100,mac,phase-5,with +26,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453,100,mac,phase-5,with +27,1809.485601206097,0.2655102586095041,0.0,478.94731774921934,0.5155800420034211,100,mac,phase-5,with +28,1807.857580198864,0.2652713750956679,0.0,478.5164017506981,0.5151161670000874,100,mac,phase-5,with +29,1807.3931392937277,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981,100,mac,phase-5,with +0,2707.064349798109,3.6012385418086788,92.0649964253126,546.2211903089626,0.5340038330032257,100,mac,phase-2,with +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182,100,mac,phase-2,with +2,2725.020067211528,3.625125237224638,92.67565537015948,549.8442269534888,0.5375458330017864,100,mac,phase-2,with +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456,100,mac,phase-2,with +4,2738.164742265457,3.642611748185226,93.12269478462412,552.4965096946497,0.5401387919991976,100,mac,phase-2,with +5,2721.689276555712,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198,100,mac,phase-2,with +6,2720.5877475209177,3.619228871849861,92.52491588127285,548.9498902756719,0.5366714999981923,100,mac,phase-2,with +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976,100,mac,phase-2,with +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933,100,mac,phase-2,with +9,2684.9247119572583,3.571785929387366,91.31204584294925,541.7539380490226,0.5296365000031074,100,mac,phase-2,with +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256,100,mac,phase-2,with +11,2721.140522061294,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162,100,mac,phase-2,with +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359,100,mac,phase-2,with +13,2693.7475289550293,3.5835230233438016,91.6121024764096,543.5341726425446,0.5313769159984076,100,mac,phase-2,with +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352,100,mac,phase-2,with +15,2781.6217251628236,3.7004230675697793,94.60063045889038,561.2650950913014,0.5487112499977229,100,mac,phase-2,with +16,2691.344864372215,3.580326731279553,91.530389861693,543.0493720841699,0.5309029589989223,100,mac,phase-2,with +17,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008,100,mac,phase-2,with +18,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486,100,mac,phase-2,with +19,2696.253071379015,3.586856174972084,91.69731388053631,544.0397315020158,0.5318711669970071,100,mac,phase-2,with +20,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715,100,mac,phase-2,with +21,2711.4054258427636,3.607013524721848,92.21263279404648,547.097116189524,0.5348601670048083,100,mac,phase-2,with +22,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715,100,mac,phase-2,with +23,2722.2352935902622,3.6214206211537783,92.580947546348,549.2823258807412,0.5369964999990771,100,mac,phase-2,with +24,2705.6396482764453,3.599343245145054,92.01654351708792,545.9337194326031,0.5337227920026635,100,mac,phase-2,with +25,2704.6099320015473,3.5979734018546403,91.98152372704315,545.7259471831561,0.5335196670057485,100,mac,phase-2,with +26,2732.7517068573975,3.635410725519794,92.93860197370508,551.4042879142569,0.5390709999992396,100,mac,phase-2,with +27,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095,100,mac,phase-2,with +28,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125,100,mac,phase-2,with +29,2711.9605221173633,3.607751975619275,92.23151115448908,547.2091214131422,0.5349696670018602,100,mac,phase-2,with +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286,100,mac,phase-3,with +1,1747.7432374054538,0.4984532476676833,0.0,475.82347022357055,0.5151742909947643,100,mac,phase-3,with +2,1751.518133922168,0.4995298414075961,0.0,476.8511866076913,0.516286999998556,100,mac,phase-3,with +3,1754.769163024236,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799,100,mac,phase-3,with +4,1751.2478613919254,0.4994527601650134,0.0,476.77760485352184,0.5162073329993291,100,mac,phase-3,with +5,1736.266881541672,0.4951802114863595,0.0,472.6990298848788,0.5117914579968783,100,mac,phase-3,with +6,1748.792095154288,0.4987523800230881,0.0,476.1090219700399,0.5154834580025636,100,mac,phase-3,with +7,1799.850348084657,0.5133141025053685,0.0,490.0096422516248,0.5305336660021567,100,mac,phase-3,with +8,1753.1379269695713,0.4999918034897532,0.0,477.2921756113184,0.5167644589964766,100,mac,phase-3,with +9,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888,100,mac,phase-3,with +10,1761.7996142862123,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684,100,mac,phase-3,with +11,1740.7653737649098,0.4964631734285321,0.0,473.9237453548768,0.5131174580019433,100,mac,phase-3,with +12,1742.9166639927869,0.497076717556646,0.0,474.5094345795743,0.5137515839960543,100,mac,phase-3,with +13,1749.7232016130597,0.499017929921017,0.0,476.36251590260287,0.5157579160004389,100,mac,phase-3,with +14,1753.2353196533288,0.5000195797090965,0.0,477.3186907903035,0.5167931669930113,100,mac,phase-3,with +15,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666,100,mac,phase-3,with +16,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121,100,mac,phase-3,with +17,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543,100,mac,phase-3,with +18,1757.0913484891291,0.5011193122414096,0.0,478.3684954656496,0.517929790999915,100,mac,phase-3,with +19,1744.1792476012558,0.4974368041452388,0.0,474.85317323704504,0.5141237499992712,100,mac,phase-3,with +20,1749.1235756856784,0.4988469176782046,0.0,476.1992676156142,0.5155811670047115,100,mac,phase-3,with +21,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054,100,mac,phase-3,with +22,1746.9655037563955,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537,100,mac,phase-3,with +23,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729,100,mac,phase-3,with +24,1748.172110645285,0.498575561549183,0.0,475.9402310548502,0.5153007080007228,100,mac,phase-3,with +25,1751.4983453162597,0.4995241977325581,0.0,476.8457991555,0.5162811670015799,100,mac,phase-3,with +26,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782,100,mac,phase-3,with +27,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758,100,mac,phase-3,with +28,1772.4144105029477,0.5054894221417285,0.0,482.5402023764941,0.5224464999992051,100,mac,phase-3,with +29,1751.7315782126657,0.4995907153377694,0.0,476.9092968614347,0.5163499159971252,100,mac,phase-3,with +0,1776.691736185956,0.1001837341608155,0.0,477.44228243239314,0.5172290420014178,100,mac,phase-4,with +1,1770.7935195244447,0.0998511467130299,0.0,475.8572815187299,0.5155119580012979,100,mac,phase-4,with +2,1771.6266559565545,0.0998981254416041,0.0,476.0811664795379,0.5157544999965467,100,mac,phase-4,with +3,1771.6970738633242,0.0999020961522841,0.0,476.1000895630688,0.5157749999998487,100,mac,phase-4,with +4,1767.255164562743,0.0996516266693274,0.0,474.9064354971249,0.5144818750050035,100,mac,phase-4,with +5,1778.5290421222858,0.1002873357962306,0.0,477.93601329290306,0.5177639169996837,100,mac,phase-4,with +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503,100,mac,phase-4,with +7,1775.7415239627014,0.100130153786217,0.0,477.1869362271816,0.5169524169978104,100,mac,phase-4,with +8,1770.133281321143,0.0998139173348012,0.0,475.6798587118843,0.5153197499967064,100,mac,phase-4,with +9,1767.617129727283,0.0996720370877929,0.0,475.0037047480587,0.5145872500070254,100,mac,phase-4,with +10,1762.247909439489,0.0993692785805023,0.0,473.560858621814,0.5130241669976385,100,mac,phase-4,with +11,1773.6424386464917,0.1000117909880923,0.0,476.6228585855853,0.5163413330010371,100,mac,phase-4,with +12,1769.1378436654545,0.0997577867976686,0.0,475.41235928208937,0.5150299590022769,100,mac,phase-4,with +13,1777.9878823036338,0.1002568209858636,0.0,477.7905898782973,0.5176063749968307,100,mac,phase-4,with +14,1755.9015670313545,0.0990114223087807,0.0,471.85543491621286,0.5111766249974607,100,mac,phase-4,with +15,1776.3105898766091,0.1001622421598373,0.0,477.3398587197316,0.5171180830002413,100,mac,phase-4,with +16,1787.7577916465848,0.1008077246572515,0.0,480.4160131415751,0.5204505829970003,100,mac,phase-4,with +17,1773.7231650386664,0.1000163429715617,0.0,476.6445518214728,0.5163648340021609,100,mac,phase-4,with +18,1769.8345789266932,0.0997970741646162,0.0,475.599589777173,0.5152327920004609,100,mac,phase-4,with +19,1774.2379885508392,0.1000453727356073,0.0,476.7828980003261,0.5165147090010578,100,mac,phase-4,with +20,1766.4500819098491,0.0996062298315799,0.0,474.6900893006994,0.5142475000029663,100,mac,phase-4,with +21,1771.0441351066002,0.0998652783737721,0.0,475.9246283032735,0.515584917004162,100,mac,phase-4,with +22,1766.2073393898709,0.0995925421154749,0.0,474.62485820831506,0.5141768329995102,100,mac,phase-4,with +23,1761.5407248569811,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116,100,mac,phase-4,with +24,1766.0573458461463,0.0995840843098779,0.0,474.5845511261085,0.5141331670020008,100,mac,phase-4,with +25,1775.480603344183,0.1001154410471693,0.0,477.1168202171266,0.5168764580012066,100,mac,phase-4,with +26,1790.8488796480174,0.1009820243020892,0.0,481.24666714898984,0.5213504580024164,100,mac,phase-4,with +27,1777.4756350505515,0.1002279364913943,0.0,477.6529360058218,0.5174572499963688,100,mac,phase-4,with +28,1768.5382885241104,0.0997239792036601,0.0,475.25124355824306,0.5148554170009447,100,mac,phase-4,with +29,1803.8391230015989,0.1017145155161324,0.0,484.7374761113821,0.5251321670002653,100,mac,phase-4,with +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073,100,mac,phase-22,with +1,1764.845139373689,0.1664885418827298,0.0,479.25391666362606,0.5172321659993031,100,mac,phase-22,with +2,1769.8090308676667,0.1669568158623888,0.0,480.6018901414725,0.5186869589961134,100,mac,phase-22,with +3,1761.667486286026,0.1661887746015269,0.0,478.39100656795546,0.5163008750023437,100,mac,phase-22,with +4,1770.120524418555,0.1669862009375641,0.0,480.6864780188722,0.5187782499997411,100,mac,phase-22,with +5,1758.7666359534974,0.1659151198024128,0.0,477.6032638632257,0.5154507080005715,100,mac,phase-22,with +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002,100,mac,phase-22,with +7,1766.3960797342909,0.1666348514899712,0.0,479.6750834990312,0.5176867080008378,100,mac,phase-22,with +8,1777.8972580842958,0.1677198273729572,0.0,482.7982950757946,0.5210574169977917,100,mac,phase-22,with +9,1769.0387471033746,0.1668841503248344,0.0,480.3927151250683,0.5184612080047373,100,mac,phase-22,with +10,1764.9314380729104,0.1664966829622382,0.0,479.27735157509903,0.5172574579992215,100,mac,phase-22,with +11,1772.566856441291,0.1672169782688663,0.0,481.3507936447587,0.5194952090023435,100,mac,phase-22,with +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439,100,mac,phase-22,with +13,1762.1909595977615,0.1662381570127317,0.0,478.5331587768496,0.5164542919956148,100,mac,phase-22,with +14,1773.2691781297697,0.1672832325317695,0.0,481.5415131659517,0.5197010420015431,100,mac,phase-22,with +15,1763.9601307223377,0.1664050536510261,0.0,479.0135874398439,0.5169727920001606,100,mac,phase-22,with +16,1762.9672077460498,0.1663113852067893,0.0,478.7439534562638,0.5166817909994279,100,mac,phase-22,with +17,1765.03607677191,0.1665065541651173,0.0,479.3057668197068,0.5172881249964121,100,mac,phase-22,with +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674,100,mac,phase-22,with +19,1759.353089729241,0.1659704435426248,0.0,477.7625187818,0.5156225829996401,100,mac,phase-22,with +20,1767.829302824657,0.1667700561134161,0.0,480.06428352807984,0.518106750001607,100,mac,phase-22,with +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435,100,mac,phase-22,with +22,1767.7985939618377,0.166767159160205,0.0,480.05594435856625,0.5180977499985602,100,mac,phase-22,with +23,1772.0661315525292,0.1671697418543195,0.0,481.2148189018443,0.519348459005414,100,mac,phase-22,with +24,1759.33233396092,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604,100,mac,phase-22,with +25,1759.9227696447715,0.1660241849029066,0.0,477.91721866150704,0.5157895419979468,100,mac,phase-22,with +26,1767.522357592919,0.1667411001087618,0.0,479.98093077308187,0.51801679199707,100,mac,phase-22,with +27,1756.276093432469,0.1656801718267677,0.0,476.92694262053374,0.5147207920017536,100,mac,phase-22,with +28,1787.0935630557296,0.1685873705761791,0.0,485.2956049405893,0.5237526249984512,100,mac,phase-22,with +29,1761.5507619170933,0.1661777632841301,0.0,478.3593093896971,0.516266665996227,100,mac,phase-22,with +0,1747.0589457116464,3.0201243148830725,0.0331881792844293,476.8145717793967,0.5152042500048992,100,mac,phase-25,with +1,1747.3293781548232,3.020591808895897,0.0331933165812735,476.8883793231577,0.5152840000009746,100,mac,phase-25,with +2,1750.1044899098858,3.025389118401999,0.0332460342681538,477.6457743305661,0.5161023750042659,100,mac,phase-25,with +3,1751.6777760699365,3.028108843341962,0.0332759213554061,478.07516211312054,0.5165663340012543,100,mac,phase-25,with +4,1766.1522672194958,3.0531307596165367,0.0335508874683135,482.0256002572614,0.5208348329979344,100,mac,phase-25,with +5,1766.7483783587693,3.0541612513183263,0.0335622115529486,482.1882933812131,0.5210106250015087,100,mac,phase-25,with +6,1754.7747482092896,3.0334625498574375,0.0333347532951366,478.9204005912286,0.517479624999396,100,mac,phase-25,with +7,1753.3064440845665,3.030924306371375,0.0333068605095755,478.51966494107194,0.5170466249983292,100,mac,phase-25,with +8,1749.3128298275074,3.0240205830873874,0.0332309954185427,477.42971117820326,0.5158689160016365,100,mac,phase-25,with +9,1757.5330439768445,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158,100,mac,phase-25,with +10,1749.9246243251405,3.0250781864627907,0.033242617433657,477.59668466935074,0.5160493329967721,100,mac,phase-25,with +11,1748.560030649437,3.022719226251378,0.0332166947939711,477.224254104984,0.5156469170033233,100,mac,phase-25,with +12,1753.7423269355932,3.0316778129431237,0.0333151408015727,478.6386278961962,0.5171751659945585,100,mac,phase-25,with +13,1756.9680215412786,3.0372540407715727,0.0333764180304568,479.51899784357346,0.5181264169950737,100,mac,phase-25,with +14,1753.7127980950845,3.031626766715158,0.0333145798540127,478.63056876260094,0.5171664579975186,100,mac,phase-25,with +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442,100,mac,phase-25,with +16,1746.7611037466984,3.0196094382885876,0.0331825212998745,476.73328351529824,0.5151164169947151,100,mac,phase-25,with +17,1749.0789930550138,3.023616351665171,0.0332265533150018,477.365891476632,0.5157999579969328,100,mac,phase-25,with +18,1745.504313415313,3.0174368367013065,0.0331586465571572,476.3902750866777,0.5147457919956651,100,mac,phase-25,with +19,1750.3038537106063,3.025733756723185,0.0332498215024525,477.7001855257362,0.5161611669973354,100,mac,phase-25,with +20,1748.1413808301063,3.0219955102589178,0.0332087418709771,477.1099944603282,0.5155234579942771,100,mac,phase-25,with +21,1757.5372861178564,3.0382381230737434,0.0333872321216894,479.6743638923129,0.5182942920000642,100,mac,phase-25,with +22,1749.8696629689396,3.024983175284921,0.0332415733547793,477.5816843881149,0.5160331250008312,100,mac,phase-25,with +23,1781.692526770394,3.07999505967033,0.0338460995568168,486.2669123327872,0.5254176250018645,100,mac,phase-25,with +24,1759.469025002054,3.0415775018557194,0.033423928591821,480.2015820786936,0.5188639580010204,100,mac,phase-25,with +25,1751.8266953376512,3.028366278674916,0.0332787503151089,478.1158057771706,0.5166102500006673,100,mac,phase-25,with +26,1755.287352510616,3.034348684076406,0.0333444910338066,479.06030268270024,0.5176307910005562,100,mac,phase-25,with +27,1765.1312939975094,3.0513658128411953,0.0335314924488043,481.746952011972,0.5205337500010501,100,mac,phase-25,with +28,1767.6126601371138,3.0556553270735236,0.0335786299678409,482.4241767479705,0.5212654999995721,100,mac,phase-25,with +29,1751.5500471769017,3.027888039609773,0.0332734949407667,478.0403018139957,0.516528667001694,100,mac,phase-25,with +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839,100,mac,phase-13,with +1,1753.2505788590777,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426,100,mac,phase-13,with +2,1752.8381169148636,0.8314540247964403,0.0,476.3898980473684,0.5165165830039768,100,mac,phase-13,with +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984,100,mac,phase-13,with +4,1765.114376950317,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311,100,mac,phase-13,with +5,1756.9934111913135,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252,100,mac,phase-13,with +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978,100,mac,phase-13,with +7,1763.462414839216,0.8364936318112554,0.0,479.2773912825768,0.5196472919997177,100,mac,phase-13,with +8,1753.3060095523142,0.8316759684048242,0.0,476.517062857228,0.5166544590028934,100,mac,phase-13,with +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468,100,mac,phase-13,with +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776,100,mac,phase-13,with +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499,100,mac,phase-13,with +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328,100,mac,phase-13,with +13,1773.3545454320447,0.841185937230592,0.0,481.9658945956399,0.5225622500001919,100,mac,phase-13,with +14,1776.3548905408898,0.8426091428263935,0.0,482.7813344738104,0.523446375002095,100,mac,phase-13,with +15,1744.0009641467575,0.827262145257835,0.0,473.9881187469291,0.5139124999986961,100,mac,phase-13,with +16,1748.8014619995813,0.8295392484439423,0.0,475.2928077884412,0.5153270839946344,100,mac,phase-13,with +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871,100,mac,phase-13,with +18,1750.578277165131,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152,100,mac,phase-13,with +19,1747.6397256783089,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122,100,mac,phase-13,with +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235,100,mac,phase-13,with +21,1752.5626705211123,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282,100,mac,phase-13,with +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452,100,mac,phase-13,with +23,1783.0733219996505,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041,100,mac,phase-13,with +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799,100,mac,phase-13,with +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868,100,mac,phase-13,with +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653,100,mac,phase-13,with +27,1752.178208974687,0.8311409992480111,0.0,476.2105469291404,0.5163221250040806,100,mac,phase-13,with +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269,100,mac,phase-13,with +29,1752.354532351862,0.831224637765569,0.0,476.2584684541605,0.5163740829957533,100,mac,phase-13,with +0,1756.762206346076,1.7661260064937123,0.0,477.9203619836382,0.5165056249970803,100,mac,phase-14,with +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214,100,mac,phase-14,with +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192,100,mac,phase-14,with +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793,100,mac,phase-14,with +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873,100,mac,phase-14,with +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208,100,mac,phase-14,with +6,1765.817171014456,1.7752292354514725,0.0,480.3837300914154,0.5191678749979474,100,mac,phase-14,with +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429,100,mac,phase-14,with +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212,100,mac,phase-14,with +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823,100,mac,phase-14,with +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864,100,mac,phase-14,with +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192,100,mac,phase-14,with +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042,100,mac,phase-14,with +13,1755.3462952571251,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376,100,mac,phase-14,with +14,1758.3116163303305,1.7676836750603675,0.0,478.34187297576966,0.5169611669989536,100,mac,phase-14,with +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556,100,mac,phase-14,with +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374,100,mac,phase-14,with +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569,100,mac,phase-14,with +18,1756.8116672700412,1.7661757310516548,0.0,477.9338176366573,0.5165201670024544,100,mac,phase-14,with +19,1752.963015612889,1.7623065655168555,0.0,476.88680684231593,0.5153886249972857,100,mac,phase-14,with +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859,100,mac,phase-14,with +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751,100,mac,phase-14,with +22,1757.216415420918,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844,100,mac,phase-14,with +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327,100,mac,phase-14,with +24,1755.7857633216242,1.765144358884768,0.0,477.6547244363272,0.5162185410008533,100,mac,phase-14,with +25,1762.728840517084,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231,100,mac,phase-14,with +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085,100,mac,phase-14,with +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424,100,mac,phase-14,with +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666,100,mac,phase-14,with +29,1755.9440640749146,1.7653035034042843,0.0,477.6977895438538,0.5162650830025086,100,mac,phase-14,with +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646,100,mac,phase-15,with +1,1779.6926984637155,2.298914111764198,0.0,482.0722939582054,0.5188747089996468,100,mac,phase-15,with +2,1815.206967652506,2.3447895905351,0.0,491.69218239786034,0.5292289999997593,100,mac,phase-15,with +3,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378,100,mac,phase-15,with +4,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604,100,mac,phase-15,with +5,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856,100,mac,phase-15,with +6,1776.1563189074311,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351,100,mac,phase-15,with +7,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192,100,mac,phase-15,with +8,1773.7140800868076,2.2911912446830485,0.0,480.4528423089714,0.5171316249980009,100,mac,phase-15,with +9,1782.3990367731817,2.302410018296943,0.0,482.8053703585286,0.5196637499975623,100,mac,phase-15,with +10,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193,100,mac,phase-15,with +11,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539,100,mac,phase-15,with +12,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419,100,mac,phase-15,with +13,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821,100,mac,phase-15,with +14,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162,100,mac,phase-15,with +15,1772.853313724588,2.29007935163615,0.0,480.2196831713544,0.5168806660003611,100,mac,phase-15,with +16,1770.9595755799237,2.2876331195711908,0.0,479.706718943124,0.5163285410017124,100,mac,phase-15,with +17,1786.4787687097223,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075,100,mac,phase-15,with +18,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552,100,mac,phase-15,with +19,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846,100,mac,phase-15,with +20,1791.298932109912,2.31390643843762,0.0,485.2161196775931,0.5222585410010652,100,mac,phase-15,with +21,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781,100,mac,phase-15,with +22,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464,100,mac,phase-15,with +23,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138,100,mac,phase-15,with +24,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602,100,mac,phase-15,with +25,1774.9085456819907,2.292734192976961,0.0,480.7763918577341,0.5174798750012997,100,mac,phase-15,with +26,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214,100,mac,phase-15,with +27,1779.5730804224474,2.298759595423635,0.0,482.0398925533996,0.5188398340033018,100,mac,phase-15,with +28,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901,100,mac,phase-15,with +29,1792.9830205511932,2.3160818559613663,0.0,485.6722952739856,0.5227495420040214,100,mac,phase-15,with +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364,100,mac,phase-12,with +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786,100,mac,phase-12,with +2,1778.486234577878,1.5993880891754215,0.0,479.54986207109727,0.5181025829951977,100,mac,phase-12,with +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965,100,mac,phase-12,with +4,1767.9182652955085,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635,100,mac,phase-12,with +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698,100,mac,phase-12,with +6,1776.3588275952677,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941,100,mac,phase-12,with +7,1769.0324619649873,1.5908863358186305,0.0,477.00075302295267,0.5153485419941717,100,mac,phase-12,with +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501,100,mac,phase-12,with +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905,100,mac,phase-12,with +10,1781.685358726182,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195,100,mac,phase-12,with +11,1782.0121818251405,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831,100,mac,phase-12,with +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797,100,mac,phase-12,with +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205,100,mac,phase-12,with +14,1808.8365189834235,1.6266820217555849,0.0,487.7334928563829,0.5269441249984084,100,mac,phase-12,with +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777,100,mac,phase-12,with +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378,100,mac,phase-12,with +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959,100,mac,phase-12,with +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474,100,mac,phase-12,with +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329,100,mac,phase-12,with +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545,100,mac,phase-12,with +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641,100,mac,phase-12,with +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807,100,mac,phase-12,with +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364,100,mac,phase-12,with +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073,100,mac,phase-12,with +25,1771.4579433126603,1.5930675649462802,0.0,477.6547582230597,0.516055125001003,100,mac,phase-12,with +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122,100,mac,phase-12,with +27,1771.2442582749284,1.5928753985423243,0.0,477.597140329607,0.5159928749999381,100,mac,phase-12,with +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222,100,mac,phase-12,with +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618,100,mac,phase-12,with +0,1751.7597276163842,2.1636114978065435,0.0,477.192837423917,0.5169033329948434,100,mac,phase-24,with +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173,100,mac,phase-24,with +2,1755.551400507329,2.168294621258601,0.0,478.2257183132816,0.5180221670016181,100,mac,phase-24,with +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047,100,mac,phase-24,with +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944,100,mac,phase-24,with +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581,100,mac,phase-24,with +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837,100,mac,phase-24,with +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318,100,mac,phase-24,with +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886,100,mac,phase-24,with +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515,100,mac,phase-24,with +10,1760.364557240052,2.174239387018135,0.0,479.5368592660305,0.5194424170040293,100,mac,phase-24,with +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399,100,mac,phase-24,with +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216,100,mac,phase-24,with +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349,100,mac,phase-24,with +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101,100,mac,phase-24,with +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313,100,mac,phase-24,with +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864,100,mac,phase-24,with +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862,100,mac,phase-24,with +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351,100,mac,phase-24,with +19,1740.735333244333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869,100,mac,phase-24,with +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783,100,mac,phase-24,with +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092,100,mac,phase-24,with +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061,100,mac,phase-24,with +23,1780.1372456652791,2.1986607818846435,0.0,484.9230918322808,0.5252768749996903,100,mac,phase-24,with +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918,100,mac,phase-24,with +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964,100,mac,phase-24,with +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957,100,mac,phase-24,with +27,1746.5222472011149,2.1571426467036403,0.0,475.7661074329752,0.5153578749959706,100,mac,phase-24,with +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571,100,mac,phase-24,with +29,1754.4581827370755,2.166944379841335,0.0,477.9279173754673,0.5176995840010932,100,mac,phase-24,with +0,1786.9876176050948,0.9744578121988632,0.0,485.98563233904,0.5244097500035423,100,mac,phase-23,with +1,1782.494248517345,0.9720075441793689,0.0,484.7636245333176,0.5230911249964265,100,mac,phase-23,with +2,1789.6608931992605,0.9759155695225464,0.0,486.71265110360656,0.5251942500035511,100,mac,phase-23,with +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507,100,mac,phase-23,with +4,1774.29452682005,0.9675361741558348,0.0,482.53364437295994,0.5206848329980858,100,mac,phase-23,with +5,1774.592693303347,0.9676987665857556,0.0,482.61473314240624,0.5207723329949658,100,mac,phase-23,with +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435,100,mac,phase-23,with +7,1782.7985214602406,0.9721734665077184,0.0,484.84637400348737,0.5231804169961833,100,mac,phase-23,with +8,1756.4093657710655,0.9577832610774696,0.0,477.6696312056359,0.515436249996128,100,mac,phase-23,with +9,1768.703196283028,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765,100,mac,phase-23,with +10,1768.6684113239016,0.9644682109849976,0.0,481.0035770853799,0.5190337919993908,100,mac,phase-23,with +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654,100,mac,phase-23,with +12,1777.5417030532524,0.9693068838221228,0.0,483.4167400248056,0.5216377499964437,100,mac,phase-23,with +13,1800.5370152626765,0.9818464008314552,0.0,489.6704998353564,0.5283859589981148,100,mac,phase-23,with +14,1773.0453523522408,0.9668549899064512,0.0,482.193921345414,0.5203182500044932,100,mac,phase-23,with +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211,100,mac,phase-23,with +16,1769.166632213147,0.9647398945898208,0.0,481.1390722569855,0.5191800000029616,100,mac,phase-23,with +17,1763.204154234821,0.96148851042308,0.0,479.517528491345,0.5174302500017802,100,mac,phase-23,with +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578,100,mac,phase-23,with +19,1767.0888376996136,0.9636068575861454,0.0,480.5739993540834,0.5185702500020852,100,mac,phase-23,with +20,1767.2573750274971,0.9636987622609094,0.0,480.619834433777,0.5186197090006317,100,mac,phase-23,with +21,1785.681222404281,0.9737454250526344,0.0,485.6303476736638,0.5240263750019949,100,mac,phase-23,with +22,1765.3002646808288,0.9626315352427376,0.0,480.0875825591626,0.5180453749999288,100,mac,phase-23,with +23,1766.7130081954772,0.9634019149257976,0.0,480.4717895024762,0.5184599589993013,100,mac,phase-23,with +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092,100,mac,phase-23,with +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044,100,mac,phase-23,with +26,1761.720706069687,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842,100,mac,phase-23,with +27,1768.10288660893,0.9641598260968948,0.0,480.84977809791,0.5188678330014227,100,mac,phase-23,with +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913,100,mac,phase-23,with +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169,100,mac,phase-23,with +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069,100,mac,phase-8,with +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925,100,mac,phase-8,with +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788,100,mac,phase-8,with +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137,100,mac,phase-8,with +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639,100,mac,phase-8,with +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815,100,mac,phase-8,with +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394,100,mac,phase-8,with +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472,100,mac,phase-8,with +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863,100,mac,phase-8,with +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402,100,mac,phase-8,with +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608,100,mac,phase-8,with +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669,100,mac,phase-8,with +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245,100,mac,phase-8,with +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812,100,mac,phase-8,with +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655,100,mac,phase-8,with +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166,100,mac,phase-8,with +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059,100,mac,phase-8,with +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509,100,mac,phase-8,with +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761,100,mac,phase-8,with +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521,100,mac,phase-8,with +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396,100,mac,phase-8,with +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608,100,mac,phase-8,with +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393,100,mac,phase-8,with +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749,100,mac,phase-8,with +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709,100,mac,phase-8,with +25,2647.220924751434,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588,100,mac,phase-8,with +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705,100,mac,phase-8,with +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554,100,mac,phase-8,with +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974,100,mac,phase-8,with +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549,100,mac,phase-8,with +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292,100,mac,phase-1,with +1,2715.9020526639206,4.5839715944040265,91.47719784715092,550.9866445126663,0.5387826250007492,100,mac,phase-1,with +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223,100,mac,phase-1,with +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655,100,mac,phase-1,with +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857,100,mac,phase-1,with +5,2719.8013326503037,4.59055290269483,91.60853366113064,551.7777080908264,0.5395561670011375,100,mac,phase-1,with +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514,100,mac,phase-1,with +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546,100,mac,phase-1,with +8,2686.408260218842,4.5341911884255115,90.48378592196204,545.0031129205282,0.532931624999037,100,mac,phase-1,with +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732,100,mac,phase-1,with +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318,100,mac,phase-1,with +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728,100,mac,phase-1,with +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426,100,mac,phase-1,with +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253,100,mac,phase-1,with +14,2678.044504222127,4.520074618988164,90.2020773230432,543.3063220338199,0.5312724169998546,100,mac,phase-1,with +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908,100,mac,phase-1,with +16,2692.3906558823523,4.544288434664978,90.68528538000552,546.2167870696205,0.534118417002901,100,mac,phase-1,with +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387,100,mac,phase-1,with +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994,100,mac,phase-1,with +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183,100,mac,phase-1,with +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407,100,mac,phase-1,with +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541,100,mac,phase-1,with +22,2669.225814940643,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802,100,mac,phase-1,with +23,2704.503515961487,4.5647328415151005,91.09327155788225,548.6741747077011,0.5365213749973918,100,mac,phase-1,with +24,2722.9180265552013,4.595813341418859,91.71351035743224,552.4100050895154,0.5401744590053568,100,mac,phase-1,with +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108,100,mac,phase-1,with +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303,100,mac,phase-1,with +27,2689.5938418367864,4.5395678976606595,90.59108289890465,545.6493854636676,0.5335635829978855,100,mac,phase-1,with +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969,100,mac,phase-1,with +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076,100,mac,phase-1,with +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145,100,mac,phase-30,with +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091,100,mac,phase-30,with +2,1779.3928443092848,1.2935973032110897,0.0,478.6310021881031,0.5164371669961838,100,mac,phase-30,with +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093,100,mac,phase-30,with +4,1773.9815157607254,1.289663332115503,0.0,477.17543288273623,0.5148666250024689,100,mac,phase-30,with +5,1777.9932479026747,1.292579813372932,0.0,478.2545309479849,0.5160309589991812,100,mac,phase-30,with +6,1778.2917123371087,1.2927967934449398,0.0,478.3348135746278,0.5161175829998683,100,mac,phase-30,with +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995,100,mac,phase-30,with +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622,100,mac,phase-30,with +9,1754.4484513303544,1.275463028033475,0.0,471.9213203723859,0.5091975000032107,100,mac,phase-30,with +10,1775.5038586790918,1.290770057198758,0.0,477.5849211635405,0.5153084579942515,100,mac,phase-30,with +11,1786.1638599055125,1.2985197505184911,0.0,480.45230769184184,0.5184023340043495,100,mac,phase-30,with +12,1780.7071642069795,1.2945527980477989,0.0,478.9845352776855,0.5168186250011786,100,mac,phase-30,with +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725,100,mac,phase-30,with +14,1780.113098568184,1.2941209194377807,0.0,478.8247401919788,0.5166462080014753,100,mac,phase-30,with +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305,100,mac,phase-30,with +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493,100,mac,phase-30,with +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456,100,mac,phase-30,with +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645,100,mac,phase-30,with +19,1790.2618712334158,1.301498955711576,0.0,481.5546136132831,0.5195917090022704,100,mac,phase-30,with +20,1815.5910112672468,1.3199129373937035,0.0,488.3677868356704,0.5269430419939454,100,mac,phase-30,with +21,1782.178110375644,1.2956221583091028,0.0,479.380198574368,0.5172455409992835,100,mac,phase-30,with +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016,100,mac,phase-30,with +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714,100,mac,phase-30,with +24,1840.8703326220395,1.3382907014923673,0.0,495.16755955217593,0.5342799159989227,100,mac,phase-30,with +25,1787.1828714348917,1.299260559705491,0.0,480.72640709103166,0.5186980840007891,100,mac,phase-30,with +26,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483,100,mac,phase-30,with +27,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777,100,mac,phase-30,with +28,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738,100,mac,phase-30,with +29,1783.093470454418,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704,100,mac,phase-30,with +0,1851.2929834808735,1.525707090391358,0.0,489.00607477143456,0.5257506659982027,100,mac,phase-6,with +1,1815.007070744064,1.4958027614505225,0.0,479.4214050755753,0.5154457909957273,100,mac,phase-6,with +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323,100,mac,phase-6,with +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766,100,mac,phase-6,with +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256,100,mac,phase-6,with +5,1815.024824844166,1.4958173931466672,0.0,479.426094696764,0.5154508330015233,100,mac,phase-6,with +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143,100,mac,phase-6,with +7,1811.0336499636064,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081,100,mac,phase-6,with +8,1817.0066970315177,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951,100,mac,phase-6,with +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976,100,mac,phase-6,with +10,1810.1798942357495,1.4918245378570545,0.0,478.1463402113843,0.5140749159982079,100,mac,phase-6,with +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977,100,mac,phase-6,with +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256,100,mac,phase-6,with +13,1812.1079196707988,1.4934134825043668,0.0,478.6556146257886,0.5146224579948466,100,mac,phase-6,with +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482,100,mac,phase-6,with +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739,100,mac,phase-6,with +16,1814.2052567911392,1.495141962082693,0.0,479.20961153597057,0.5152180829973076,100,mac,phase-6,with +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969,100,mac,phase-6,with +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826,100,mac,phase-6,with +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299,100,mac,phase-6,with +20,1817.835656233042,1.4981338851434334,0.0,480.1685561205276,0.5162490840011742,100,mac,phase-6,with +21,1813.5350490943129,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173,100,mac,phase-6,with +22,1814.531999481375,1.495411240713182,0.0,479.2959183290272,0.5153108750018873,100,mac,phase-6,with +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478,100,mac,phase-6,with +24,1821.465316194058,1.5011251987753895,0.0,481.1273053763877,0.5172798749990761,100,mac,phase-6,with +25,1816.57387709804,1.4970940144206697,0.0,479.83526599976256,0.5158907500008354,100,mac,phase-6,with +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959,100,mac,phase-6,with +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901,100,mac,phase-6,with +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062,100,mac,phase-6,with +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325,100,mac,phase-6,with +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044,100,mac,phase-7,with +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938,100,mac,phase-7,with +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633,100,mac,phase-7,with +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316,100,mac,phase-7,with +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086,100,mac,phase-7,with +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983,100,mac,phase-7,with +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794,100,mac,phase-7,with +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901,100,mac,phase-7,with +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509,100,mac,phase-7,with +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675,100,mac,phase-7,with +10,2646.795163355197,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344,100,mac,phase-7,with +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734,100,mac,phase-7,with +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329,100,mac,phase-7,with +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119,100,mac,phase-7,with +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925,100,mac,phase-7,with +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591,100,mac,phase-7,with +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422,100,mac,phase-7,with +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537,100,mac,phase-7,with +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056,100,mac,phase-7,with +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665,100,mac,phase-7,with +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854,100,mac,phase-7,with +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703,100,mac,phase-7,with +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205,100,mac,phase-7,with +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758,100,mac,phase-7,with +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439,100,mac,phase-7,with +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776,100,mac,phase-7,with +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591,100,mac,phase-7,with +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822,100,mac,phase-7,with +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663,100,mac,phase-7,with +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273,100,mac,phase-7,with +0,1754.9343348502491,0.9659333379641896,0.0,478.1370022922739,0.5167249579972122,100,mac,phase-9,with +1,1749.9576772420037,0.9631941360465022,0.0,476.7810973430186,0.5152596249972703,100,mac,phase-9,with +2,1765.8187969550952,0.9719242543216248,0.0,481.1025058892042,0.5199297919971286,100,mac,phase-9,with +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453,100,mac,phase-9,with +4,1751.8730274703044,0.9642483638900476,0.0,477.3029401255735,0.5158235830022022,100,mac,phase-9,with +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217,100,mac,phase-9,with +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765,100,mac,phase-9,with +7,1753.9604561917197,0.9653973054501948,0.0,477.8716661978465,0.5164382080038195,100,mac,phase-9,with +8,1755.9675055029504,0.966502005382356,0.0,478.4184926642661,0.517029165996064,100,mac,phase-9,with +9,1753.8309770174317,0.9653260388229864,0.0,477.8363892173782,0.5164000840013614,100,mac,phase-9,with +10,1754.0766355703215,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781,100,mac,phase-9,with +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869,100,mac,phase-9,with +12,1756.321002261384,0.96669657351921,0.0,478.51480389200896,0.5171332500030985,100,mac,phase-9,with +13,1761.6994107051369,0.9696569030984088,0.0,479.9801670337124,0.5187168749980628,100,mac,phase-9,with +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397,100,mac,phase-9,with +15,1774.358559978593,0.976624624950258,0.0,483.42918935037767,0.5224442500039004,100,mac,phase-9,with +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615,100,mac,phase-9,with +17,1751.65354389843,0.9641275579459168,0.0,477.2431411832288,0.5157589579976047,100,mac,phase-9,with +18,1750.447303023146,0.9634636309533716,0.0,476.914497321919,0.5154037909960607,100,mac,phase-9,with +19,1744.4536070151348,0.9601646409702193,0.0,475.2814972802585,0.5136389999970561,100,mac,phase-9,with +20,1753.692293957126,0.9652497062852384,0.0,477.798604611193,0.5163592499957304,100,mac,phase-9,with +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802,100,mac,phase-9,with +22,1758.8267386074654,0.968075755762536,0.0,479.19749910245525,0.5178710420004791,100,mac,phase-9,with +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659,100,mac,phase-9,with +24,1766.5958315849296,0.9723519419215564,0.0,481.3142112511703,0.5201585830000113,100,mac,phase-9,with +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069,100,mac,phase-9,with +26,1752.9806340260625,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014,100,mac,phase-9,with +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911,100,mac,phase-9,with +28,1751.2059468821633,0.9638811960898636,0.0,477.1211920644825,0.5156271669984562,100,mac,phase-9,with +29,1757.8863946286374,0.967558181070272,0.0,478.9412996297846,0.5175941659981618,100,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n100/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n100/without_smell.csv new file mode 100644 index 000000000..cb616b5ee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n100/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,246.0739988250765,0.0,0.0,60.74658181579221,0.0778715830019791,100,mac,phase-19,without +1,245.0826823466955,0.0,0.0,60.50186239055085,0.0775578749962733,100,mac,phase-19,without +2,244.5910373393436,0.0,0.0,60.38049339664647,0.0774022910045459,100,mac,phase-19,without +3,244.5508800746296,0.0,0.0,60.37058005115652,0.077389582998876,100,mac,phase-19,without +4,244.58959003848383,0.0,0.0,60.38013611151879,0.077401832997566,100,mac,phase-19,without +5,244.22606079392185,0.0,0.0,60.29039416762119,0.077286792002269,100,mac,phase-19,without +6,242.8457992005612,0.0,0.0,59.94965855878557,0.0768499999976484,100,mac,phase-19,without +7,244.85397754171655,0.0,0.0,60.44540362118208,0.0774854999981471,100,mac,phase-19,without +8,241.9405926628893,0.0,0.0,59.72619649752176,0.0765635419957107,100,mac,phase-19,without +9,245.51138657380295,0.0,0.0,60.607693630466905,0.0776935410031001,100,mac,phase-19,without +10,244.7109876747656,0.0,0.0,60.41010470421792,0.0774402500028372,100,mac,phase-19,without +11,248.3810623596752,0.0,0.0,61.31611059342773,0.0786016670026583,100,mac,phase-19,without +12,241.60984521505156,0.0,0.0,59.644547168472904,0.0764588749952963,100,mac,phase-19,without +13,245.731929101319,0.0,0.0,60.66213743499555,0.0777633329998934,100,mac,phase-19,without +14,245.77880451553304,0.0,0.0,60.67370924346901,0.0777781670039985,100,mac,phase-19,without +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489,100,mac,phase-19,without +16,259.02748853123154,0.0,0.0,63.94432000020854,0.0819707919945358,100,mac,phase-19,without +17,245.3989443932433,0.0,0.0,60.579935809024875,0.0776579580051475,100,mac,phase-19,without +18,223.20115090919603,0.0,0.0,55.100120450851726,0.0706333340058336,100,mac,phase-19,without +19,247.6429406685668,0.0,0.0,61.133895609670745,0.0783680839958833,100,mac,phase-19,without +20,246.88414631211123,0.0,0.0,60.94657730836352,0.0781279590009944,100,mac,phase-19,without +21,245.0546373862557,0.0,0.0,60.4949391256305,0.0775490000014542,100,mac,phase-19,without +22,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792,100,mac,phase-19,without +23,244.31098572658755,0.0,0.0,60.3113589968799,0.0773136670031817,100,mac,phase-19,without +24,243.40301102024273,0.0,0.0,60.087213577010274,0.0770263329977751,100,mac,phase-19,without +25,245.98617616377825,0.0,0.0,60.72490164435878,0.0778437909975764,100,mac,phase-19,without +26,246.44029623831136,0.0,0.0,60.83700711829563,0.077987500000745,100,mac,phase-19,without +27,250.5241978502783,0.0,0.0,61.84517159151716,0.0792798749971552,100,mac,phase-19,without +28,224.68990150640013,0.0,0.0,55.46763798780473,0.0711044580020825,100,mac,phase-19,without +29,245.67623416012847,0.0,0.0,60.648388411051904,0.0777457080039312,100,mac,phase-19,without +0,362.1477510943677,0.2358390787664502,14.28510991385356,76.17602244156343,0.0828109170033712,100,mac,phase-26,without +1,336.858148535045,0.2193698985715243,13.287548142046615,70.85647723860235,0.0770280419965274,100,mac,phase-26,without +2,362.74505428268986,0.2362280565614316,14.308670854578146,76.30166226934243,0.0829474999991362,100,mac,phase-26,without +3,360.94585457223286,0.2350563756633761,14.237700468753069,75.9232093392705,0.0825360840026405,100,mac,phase-26,without +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.0815027909993659,100,mac,phase-26,without +5,349.6413415549495,0.2276946126043954,13.791787963466238,73.54535987121973,0.0799511250006617,100,mac,phase-26,without +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.082421457998862,100,mac,phase-26,without +7,359.44475760769,0.2340788262400065,14.178488903680394,75.60746087552211,0.0821928340010345,100,mac,phase-26,without +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.0812284160056151,100,mac,phase-26,without +9,347.2399143905892,0.2261307471145338,13.697062396651766,73.04023131799444,0.0794019999957527,100,mac,phase-26,without +10,368.19860405248215,0.2397795356188831,14.523789014629491,77.44879000489925,0.084194542003388,100,mac,phase-26,without +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.0862538340006722,100,mac,phase-26,without +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242,100,mac,phase-26,without +13,356.8769656271249,0.2324066200939505,14.07720098854786,75.06733829034602,0.0816056670009857,100,mac,phase-26,without +14,360.27602202196147,0.23462016505291,14.211278568919123,75.78231331208995,0.0823829159999149,100,mac,phase-26,without +15,355.8179236856387,0.2317169472322514,14.035426518067805,74.84457395601721,0.0813635000013164,100,mac,phase-26,without +16,367.0209393602304,0.2390126128497174,14.47733540689717,77.20107395045873,0.0839252500009024,100,mac,phase-26,without +17,364.3840903443813,0.2372954351484481,14.373323500420288,76.64642555294876,0.0833222919973195,100,mac,phase-26,without +18,350.5090521147184,0.2282596859989792,13.826015266223887,73.72787857767031,0.0801495409978088,100,mac,phase-26,without +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033,100,mac,phase-26,without +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.083118957998522,100,mac,phase-26,without +21,365.90504594881264,0.2382859169822019,14.4333184000648,76.96635118525121,0.0836700829968322,100,mac,phase-26,without +22,351.0808508987014,0.2286320547298269,13.84857017220666,73.8481536777341,0.0802802920006797,100,mac,phase-26,without +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.0797767499971087,100,mac,phase-26,without +24,340.5454724450315,0.2217711700730505,13.43299658728192,71.63208793359534,0.0778712080063996,100,mac,phase-26,without +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.0810339579984429,100,mac,phase-26,without +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.0822699170021223,100,mac,phase-26,without +27,360.8257711959278,0.2349781745624239,14.232963716352534,75.89795038366293,0.0825086250042659,100,mac,phase-26,without +28,370.2476265409491,0.2411139069482411,14.604613792293463,77.87979194428189,0.0846630840023863,100,mac,phase-26,without +29,362.5628409920885,0.2361093950083374,14.301483354790728,76.26333458769301,0.0829058339950279,100,mac,phase-26,without +0,260.20760817827636,0.0668398685276846,0.0,63.29735549571737,0.0778534579949337,100,mac,phase-21,without +1,264.69906999108105,0.0679935961960136,0.0,64.3899355976249,0.0791972920051193,100,mac,phase-21,without +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.0786077919983654,100,mac,phase-21,without +3,261.1013891414675,0.0670694552122957,0.0,63.51477408604411,0.078120874997694,100,mac,phase-21,without +4,257.7910068686657,0.0662191129896392,0.0,62.7095000011884,0.0771304169975337,100,mac,phase-21,without +5,259.7389946089577,0.0667194951474332,0.0,63.183361904619304,0.07771325000067,100,mac,phase-21,without +6,258.06479595470574,0.0662894415501427,0.0,62.77610114798519,0.0772123339993413,100,mac,phase-21,without +7,256.0824062134452,0.0657802225053802,0.0,62.29387071259507,0.0766192080045584,100,mac,phase-21,without +8,245.48280118105225,0.0630574881019913,0.0,59.71544123258579,0.0734478329977719,100,mac,phase-21,without +9,255.98353170352672,0.0657548244807415,0.0,62.26981878326222,0.0765896250013611,100,mac,phase-21,without +10,265.5946591131205,0.0682236473447522,0.0,64.60779403548037,0.0794652500044321,100,mac,phase-21,without +11,260.294366973363,0.0668621543728135,0.0,63.318460191054406,0.0778794160069082,100,mac,phase-21,without +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.0770466250032768,100,mac,phase-21,without +13,260.85629013818584,0.067006496310862,0.0,63.45515200638633,0.0780475419960566,100,mac,phase-21,without +14,307.82568802659245,0.0790715869577684,0.0,74.8807928490067,0.0921006670032511,100,mac,phase-21,without +15,263.58442150290836,0.0677072749814817,0.0,64.1187894074632,0.078863791997719,100,mac,phase-21,without +16,262.31742217161724,0.067381819206683,0.0,63.81058278872888,0.0784847090035327,100,mac,phase-21,without +17,268.16277907116,0.0688833236761263,0.0,65.2325075212917,0.0802336249980726,100,mac,phase-21,without +18,206.91894566594263,0.0531515401145498,0.0,50.334508488478725,0.0619096250011352,100,mac,phase-21,without +19,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.0772270000015851,100,mac,phase-21,without +20,252.13699183642044,0.0647667587558233,0.0,61.33412054176475,0.07543875000556,100,mac,phase-21,without +21,259.3735737404644,0.0666256290111647,0.0,63.09447067357302,0.0776039170013973,100,mac,phase-21,without +22,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.0781142080013523,100,mac,phase-21,without +23,260.63695006654126,0.066950154139877,0.0,63.40179597046354,0.0779819160015904,100,mac,phase-21,without +24,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589,100,mac,phase-21,without +25,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505,100,mac,phase-21,without +26,257.15221136999554,0.0660550247546867,0.0,62.55410844268836,0.076939291000599,100,mac,phase-21,without +27,263.19769031243703,0.067607934834944,0.0,64.02471428869198,0.0787480830040294,100,mac,phase-21,without +28,259.31383057100317,0.0666102827051125,0.0,63.079937721741594,0.0775860419962555,100,mac,phase-21,without +29,261.2983025863787,0.0671200366263495,0.0,63.56267468515301,0.078179791002185,100,mac,phase-21,without +0,390.8727972970198,1.8664702076173023,14.049430290064786,79.44375920058373,0.0834474579969537,100,mac,phase-28,without +1,386.2283609945746,1.8442923992621632,13.882491878082469,78.49979103041318,0.0824559169996064,100,mac,phase-28,without +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.0830597499953,100,mac,phase-28,without +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.0818107090017292,100,mac,phase-28,without +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.0824191249994328,100,mac,phase-28,without +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.0820837080027558,100,mac,phase-28,without +6,363.3642991549768,1.735113427116142,13.060671978656051,73.85273696143435,0.0775746670042281,100,mac,phase-28,without +7,388.22708634477254,1.8538365817817757,13.954333542866456,78.90602614456611,0.082882624999911,100,mac,phase-28,without +8,375.0914257577759,1.7911120347870877,13.482188770942804,76.2362413352104,0.0800782919977791,100,mac,phase-28,without +9,386.50588680771034,1.8456176223670837,13.892467193817684,78.55619734475168,0.0825151660028495,100,mac,phase-28,without +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.0819437079990166,100,mac,phase-28,without +11,382.40578027890945,1.826039061932629,13.745094029820152,77.72286261789608,0.0816398340029991,100,mac,phase-28,without +12,399.92533106121743,1.909697274558687,14.374812212132664,81.2836603589434,0.0853800839977338,100,mac,phase-28,without +13,392.779794759326,1.875576377128228,14.1179749114743,79.8313508883124,0.0838545830047223,100,mac,phase-28,without +14,385.4919894836888,1.840776126202716,13.856023931780443,78.35012566255561,0.0822987089995876,100,mac,phase-28,without +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.0750168340018717,100,mac,phase-28,without +16,363.50267089671735,1.7357741708039116,13.065645576596715,73.88086061549012,0.0776042079960461,100,mac,phase-28,without +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.0824202080038958,100,mac,phase-28,without +18,383.1556137558722,1.8296196176916977,13.772045849533868,77.8752640912048,0.0817999159989995,100,mac,phase-28,without +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.0846969580015866,100,mac,phase-28,without +20,377.543333802351,1.8028202256580403,13.57031951677143,76.73458451391768,0.0806017499999143,100,mac,phase-28,without +21,384.0859896272982,1.8340622876802744,13.805487038175158,78.06436028108223,0.0819985420021112,100,mac,phase-28,without +22,377.9580697399782,1.804800645572044,13.585226677578657,76.81887838698462,0.0806902920012362,100,mac,phase-28,without +23,377.9699719544116,1.804857480247668,13.585654487682444,76.82129747745074,0.0806928330057417,100,mac,phase-28,without +24,393.94456555862206,1.8811383144403728,14.159841130514804,80.06808716554386,0.0841032499956782,100,mac,phase-28,without +25,367.0360156994838,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779,100,mac,phase-28,without +26,423.4076839939201,2.021828669878938,15.218855805997825,86.05638029430169,0.0903933329973369,100,mac,phase-28,without +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.0836692079974454,100,mac,phase-28,without +28,397.13519183039904,1.896373984256985,14.27452417240712,80.71657267537456,0.0847844169984455,100,mac,phase-28,without +29,368.653767842532,1.7603713519134625,13.250795267130425,74.92780608780754,0.0787039160059066,100,mac,phase-28,without +0,229.97339319686975,0.0,0.0,56.76642090692848,0.0792393329975311,100,mac,phase-17,without +1,226.07553485511937,0.0,0.0,55.804277138088366,0.0778962920012418,100,mac,phase-17,without +2,231.8659096318397,0.0,0.0,57.233567923491464,0.0798914159968262,100,mac,phase-17,without +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506,100,mac,phase-17,without +4,238.15693061363416,0.0,0.0,58.78643775779073,0.0820590419971267,100,mac,phase-17,without +5,232.81398613818936,0.0,0.0,57.467590256524325,0.0802180840037181,100,mac,phase-17,without +6,232.3516788377947,0.0,0.0,57.35347474760509,0.0800587920020916,100,mac,phase-17,without +7,235.3009818299224,0.0,0.0,58.08147798617912,0.0810750000018742,100,mac,phase-17,without +8,232.87529353460332,0.0,0.0,57.48272331788053,0.080239208000421,100,mac,phase-17,without +9,234.6029875368596,0.0,0.0,57.90918571671333,0.0808344999968539,100,mac,phase-17,without +10,233.90293845796447,0.0,0.0,57.73638624580215,0.080593291997502,100,mac,phase-17,without +11,236.10309480251144,0.0,0.0,58.27947081475786,0.0813513750035781,100,mac,phase-17,without +12,228.53955331278615,0.0,0.0,56.41249318841474,0.0787452909935382,100,mac,phase-17,without +13,214.85514476600093,0.0,0.0,53.03464636609046,0.0740302089980105,100,mac,phase-17,without +14,236.0381566565893,0.0,0.0,58.26344154253167,0.0813290000005508,100,mac,phase-17,without +15,233.2262264846764,0.0,0.0,57.56934728457961,0.0803601250008796,100,mac,phase-17,without +16,223.59820949155468,0.0,0.0,55.1927764233464,0.0770427079987712,100,mac,phase-17,without +17,232.78762196853413,0.0,0.0,57.46108254912954,0.0802089999997406,100,mac,phase-17,without +18,234.0781596831433,0.0,0.0,57.77963769190232,0.0806536659947596,100,mac,phase-17,without +19,234.60528613661103,0.0,0.0,57.90975310096232,0.0808352919993922,100,mac,phase-17,without +20,232.4469688391939,0.0,0.0,57.37699604392746,0.0800916250009322,100,mac,phase-17,without +21,236.41351504810697,0.0,0.0,58.35609466273675,0.0814583329993183,100,mac,phase-17,without +22,216.02874452302436,0.0,0.0,53.32433665094193,0.0744345830025849,100,mac,phase-17,without +23,232.45519093886716,0.0,0.0,57.37902557945026,0.0800944579968927,100,mac,phase-17,without +24,233.9956889809203,0.0,0.0,57.75928069960073,0.0806252499969559,100,mac,phase-17,without +25,232.5895425232549,0.0,0.0,57.41218880099883,0.0801407500039204,100,mac,phase-17,without +26,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317,100,mac,phase-17,without +27,229.88862389489532,0.0,0.0,56.74549653037789,0.0792101249971892,100,mac,phase-17,without +28,233.92301053494205,0.0,0.0,57.74134081882622,0.0806002080062171,100,mac,phase-17,without +29,234.3584718660642,0.0,0.0,57.84882969337619,0.0807502499956172,100,mac,phase-17,without +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467,100,mac,phase-10,without +1,228.78073899886232,0.0,0.0,56.00141900241923,0.0778383330034557,100,mac,phase-10,without +2,235.23590932049515,0.0,0.0,57.58152884687401,0.0800345829993602,100,mac,phase-10,without +3,236.26866601830895,0.0,0.0,57.83432915172009,0.0803859589941566,100,mac,phase-10,without +4,236.1306451621364,0.0,0.0,57.80054412317523,0.0803390000000945,100,mac,phase-10,without +5,236.65994415723756,0.0,0.0,57.930107017901115,0.0805190840037539,100,mac,phase-10,without +6,230.7082285871409,0.0,0.0,56.4732338611715,0.0784941249949042,100,mac,phase-10,without +7,217.65362425882617,0.0,0.0,53.27770101124752,0.0740525420042104,100,mac,phase-10,without +8,236.48396084260233,0.0,0.0,57.88702946083294,0.0804592089989455,100,mac,phase-10,without +9,233.11602697824952,0.0,0.0,57.062619694803665,0.0793133330007549,100,mac,phase-10,without +10,234.8972924876633,0.0,0.0,57.4986415233184,0.0799193750062841,100,mac,phase-10,without +11,235.4089534558389,0.0,0.0,57.62388694560078,0.0800934580038301,100,mac,phase-10,without +12,236.8091074367793,0.0,0.0,57.966619511714825,0.0805698339972877,100,mac,phase-10,without +13,235.2139889440503,0.0,0.0,57.576163132123064,0.0800271250045625,100,mac,phase-10,without +14,235.677400358321,0.0,0.0,57.68959792953932,0.0801847920010914,100,mac,phase-10,without +15,235.25183085336997,0.0,0.0,57.58542615237964,0.0800400000007357,100,mac,phase-10,without +16,224.63833749671065,0.0,0.0,54.98743345794819,0.0764289589933469,100,mac,phase-10,without +17,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743,100,mac,phase-10,without +18,236.4523617407738,0.0,0.0,57.87929456781116,0.080448458000319,100,mac,phase-10,without +19,230.33752474602355,0.0,0.0,56.382492213849865,0.0783680000022286,100,mac,phase-10,without +20,235.6896449605586,0.0,0.0,57.69259518841446,0.0801889579961425,100,mac,phase-10,without +21,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569,100,mac,phase-10,without +22,234.47784821362225,0.0,0.0,57.395969092756594,0.0797766670002602,100,mac,phase-10,without +23,236.01075312636675,0.0,0.0,57.77119670450892,0.0802982089953729,100,mac,phase-10,without +24,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387,100,mac,phase-10,without +25,249.0360862322947,0.0,0.0,60.95956448452025,0.0847298330045305,100,mac,phase-10,without +26,237.69685978979257,0.0,0.0,58.183925355331866,0.0808718749976833,100,mac,phase-10,without +27,236.12660378259105,0.0,0.0,57.799554865992754,0.0803376249969005,100,mac,phase-10,without +28,234.46707023916116,0.0,0.0,57.39333083803974,0.0797729999976581,100,mac,phase-10,without +29,241.69022142718063,0.0,0.0,59.161428615711976,0.0822305410038097,100,mac,phase-10,without +0,228.1520204661302,0.0,0.0,57.746086091398226,0.0799198750028153,100,mac,phase-11,without +1,227.8495358539531,0.0,0.0,57.66952616253846,0.0798139170001377,100,mac,phase-11,without +2,229.0306925870703,0.0,0.0,57.968481123615135,0.0802276670001447,100,mac,phase-11,without +3,230.2044726270147,0.0,0.0,58.265569017469915,0.0806388330020126,100,mac,phase-11,without +4,229.10003753664316,0.0,0.0,57.98603257645722,0.0802519579956424,100,mac,phase-11,without +5,230.7167820382236,0.0,0.0,58.39523634763275,0.0808182909968309,100,mac,phase-11,without +6,211.05486597292324,0.0,0.0,53.418735611373734,0.0739308750053169,100,mac,phase-11,without +7,230.54216782071205,0.0,0.0,58.3510408694748,0.0807571249970351,100,mac,phase-11,without +8,228.80932881388665,0.0,0.0,57.91245316700242,0.0801501249952707,100,mac,phase-11,without +9,230.55620182047025,0.0,0.0,58.35459292462026,0.0807620409977971,100,mac,phase-11,without +10,230.03128580010983,0.0,0.0,58.22173481694031,0.0805781670060241,100,mac,phase-11,without +11,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297,100,mac,phase-11,without +12,230.31081241713733,0.0,0.0,58.29248399574981,0.0806760830018902,100,mac,phase-11,without +13,232.7656686097756,0.0,0.0,58.91381681039013,0.0815359999978682,100,mac,phase-11,without +14,229.0882616679938,0.0,0.0,57.98305206230952,0.0802478330006124,100,mac,phase-11,without +15,211.45488911631423,0.0,0.0,53.51998288864797,0.074070999995456,100,mac,phase-11,without +16,231.4391589588723,0.0,0.0,58.578072509964315,0.0810713340033544,100,mac,phase-11,without +17,231.1610539996254,0.0,0.0,58.50768315778455,0.0809739160031313,100,mac,phase-11,without +18,223.1157480108247,0.0,0.0,56.47138765923167,0.0781557080044876,100,mac,phase-11,without +19,229.29047568345513,0.0,0.0,58.03423314728023,0.0803186669945716,100,mac,phase-11,without +20,226.68384051120097,0.0,0.0,57.37448453423561,0.0794055830047,100,mac,phase-11,without +21,229.939339682268,0.0,0.0,58.19846292819781,0.0805459589973907,100,mac,phase-11,without +22,229.9903656561629,0.0,0.0,58.211377783281776,0.0805638329984503,100,mac,phase-11,without +23,229.92208836236088,0.0,0.0,58.1940965579044,0.0805399159944499,100,mac,phase-11,without +24,234.3581505243959,0.0,0.0,59.31687963469814,0.0820938340038992,100,mac,phase-11,without +25,232.28523543551043,0.0,0.0,58.79221746892648,0.0813677080004708,100,mac,phase-11,without +26,224.9047315536089,0.0,0.0,56.92418574301216,0.0787823749997187,100,mac,phase-11,without +27,229.36006045625183,0.0,0.0,58.051845300231406,0.080343041998276,100,mac,phase-11,without +28,227.33044351249188,0.0,0.0,57.53814204865611,0.0796320829977048,100,mac,phase-11,without +29,226.7574704574646,0.0,0.0,57.393120534947585,0.0794313750011497,100,mac,phase-11,without +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328,100,mac,phase-29,without +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.0816092919994844,100,mac,phase-29,without +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.083558999998786,100,mac,phase-29,without +3,360.8727014356981,1.3071714929106786,13.5385618908606,73.38834238769952,0.0766691250028088,100,mac,phase-29,without +4,405.9071867253503,1.4702977009456415,15.228083331222717,82.54671378166245,0.0862369159949594,100,mac,phase-29,without +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.0799180419999174,100,mac,phase-29,without +6,399.0524005201552,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465,100,mac,phase-29,without +7,389.3215008612753,1.410220184232304,14.60585190812029,79.17379034332791,0.0827132080012233,100,mac,phase-29,without +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.0822733329987386,100,mac,phase-29,without +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927,100,mac,phase-29,without +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093,100,mac,phase-29,without +11,387.03474113975176,1.4019369666122965,14.520061439913068,78.70874683980463,0.0822273750018212,100,mac,phase-29,without +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.0788562090019695,100,mac,phase-29,without +13,424.3344458168445,1.537045858068777,15.919403529998048,86.29414603157562,0.0901518749960814,100,mac,phase-29,without +14,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.082806749996962,100,mac,phase-29,without +15,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.0829413329993258,100,mac,phase-29,without +16,393.57240572328834,1.4256180284931532,14.765329580821945,80.03826931397275,0.0836163329950068,100,mac,phase-29,without +17,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.0819364579947432,100,mac,phase-29,without +18,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.0825907089965767,100,mac,phase-29,without +19,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.0801123339988407,100,mac,phase-29,without +20,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.0808422499976586,100,mac,phase-29,without +21,367.5496145188862,1.3313569478045033,13.789054102260929,74.74618292673854,0.0780876670032739,100,mac,phase-29,without +22,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166,100,mac,phase-29,without +23,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.0810130409954581,100,mac,phase-29,without +24,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.0816602499980945,100,mac,phase-29,without +25,379.5121562547591,1.374688276213875,14.237842860786564,77.17892750743613,0.0806291659973794,100,mac,phase-29,without +26,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.0827884579994133,100,mac,phase-29,without +27,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.0803707919985754,100,mac,phase-29,without +28,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335,100,mac,phase-29,without +29,390.5568650001384,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184,100,mac,phase-29,without +0,242.1989277900244,0.0,0.0,58.23108794513989,0.0794612079989747,100,mac,phase-16,without +1,242.4689300777569,0.0,0.0,58.29600370304932,0.0795497910003177,100,mac,phase-16,without +2,245.1891581817424,0.0,0.0,58.950019158028326,0.0804422499932115,100,mac,phase-16,without +3,244.62667452650356,0.0,0.0,58.81478307133387,0.0802577089998521,100,mac,phase-16,without +4,230.49772748177529,0.0,0.0,55.41780701763689,0.0756222499985597,100,mac,phase-16,without +5,248.5687694470221,0.0,0.0,59.76256792777146,0.0815510410029674,100,mac,phase-16,without +6,245.56152502051543,0.0,0.0,59.03954608671583,0.0805644170031882,100,mac,phase-16,without +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579,100,mac,phase-16,without +8,245.84270436380183,0.0,0.0,59.107149107161334,0.0806566669998574,100,mac,phase-16,without +9,247.49612431036985,0.0,0.0,59.50467540175467,0.0811991250011487,100,mac,phase-16,without +10,245.79812410417784,0.0,0.0,59.09643082264013,0.0806420410008286,100,mac,phase-16,without +11,243.7852944737544,0.0,0.0,58.61249284530364,0.0799816670041764,100,mac,phase-16,without +12,241.62857108664963,0.0,0.0,58.0939589674959,0.0792740839970065,100,mac,phase-16,without +13,248.07080308887888,0.0,0.0,59.642843521642384,0.0813876669999444,100,mac,phase-16,without +14,245.79787110638867,0.0,0.0,59.09636999521763,0.0806419579967041,100,mac,phase-16,without +15,246.7866989049236,0.0,0.0,59.33411059557655,0.0809663750042091,100,mac,phase-16,without +16,243.67810491245837,0.0,0.0,58.58672161325243,0.0799464999945485,100,mac,phase-16,without +17,244.35603522014415,0.0,0.0,58.749714157140794,0.0801689170039026,100,mac,phase-16,without +18,240.2579794931515,0.0,0.0,57.764432159321714,0.0788244170034886,100,mac,phase-16,without +19,243.21099669998037,0.0,0.0,58.47441632912548,0.0797932500063325,100,mac,phase-16,without +20,261.55407699968373,0.0,0.0,62.884582517155906,0.0858112920031999,100,mac,phase-16,without +21,239.347894129501,0.0,0.0,57.54562334240464,0.0785258340038126,100,mac,phase-16,without +22,245.55783996400805,0.0,0.0,59.03866010075577,0.0805632080009672,100,mac,phase-16,without +23,224.7037046013891,0.0,0.0,54.02476924087008,0.0737213330066879,100,mac,phase-16,without +24,245.09403272066805,0.0,0.0,58.92714845773173,0.0804110410026623,100,mac,phase-16,without +25,245.82682726665857,0.0,0.0,59.10333182915559,0.0806514580035582,100,mac,phase-16,without +26,246.27298345658295,0.0,0.0,59.210599687728774,0.0807978340017143,100,mac,phase-16,without +27,229.8491343612716,0.0,0.0,55.26186791672805,0.0754094580042874,100,mac,phase-16,without +28,244.80002731204428,0.0,0.0,58.85646170877651,0.0803145829995628,100,mac,phase-16,without +29,244.9462070527816,0.0,0.0,58.89160722084109,0.0803625420012394,100,mac,phase-16,without +0,224.52516714856455,0.0,0.0,57.735973906146626,0.0753427089948672,100,mac,phase-20,without +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632,100,mac,phase-20,without +2,231.69330601434635,0.0,0.0,59.57923933499082,0.0777480830001877,100,mac,phase-20,without +3,234.760649370358,0.0,0.0,60.36799748719698,0.078777374998026,100,mac,phase-20,without +4,228.2324736502117,0.0,0.0,58.6892966634995,0.0765867500012973,100,mac,phase-20,without +5,223.36952695819903,0.0,0.0,57.43880449425753,0.0749549169995589,100,mac,phase-20,without +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515,100,mac,phase-20,without +7,228.01604737457023,0.0,0.0,58.63364329527478,0.0765141249939915,100,mac,phase-20,without +8,210.18081054030137,0.0,0.0,54.047365589524595,0.070529249998799,100,mac,phase-20,without +9,226.91454579476897,0.0,0.0,58.35039546485715,0.076144500002556,100,mac,phase-20,without +10,223.1887361622084,0.0,0.0,57.392314682837515,0.0748942499994882,100,mac,phase-20,without +11,228.57679477020545,0.0,0.0,58.777837807691775,0.0767022919972078,100,mac,phase-20,without +12,233.5521132500369,0.0,0.0,60.05722604543105,0.0783718329985276,100,mac,phase-20,without +13,231.26827613662832,0.0,0.0,59.46994417560664,0.0776054579982883,100,mac,phase-20,without +14,232.72316419059683,0.0,0.0,59.844064278876445,0.0780936669980292,100,mac,phase-20,without +15,226.37205419514888,0.0,0.0,58.21089537567897,0.075962458999129,100,mac,phase-20,without +16,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212,100,mac,phase-20,without +17,235.0194191984909,0.0,0.0,60.43453937305556,0.0788642090046778,100,mac,phase-20,without +18,235.69725578504784,0.0,0.0,60.60884302004133,0.0790916670011938,100,mac,phase-20,without +19,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004,100,mac,phase-20,without +20,224.62400355737097,0.0,0.0,57.76138939249184,0.0753758749997359,100,mac,phase-20,without +21,231.10611067541615,0.0,0.0,59.42824381321107,0.0775510410021524,100,mac,phase-20,without +22,232.56050106737092,0.0,0.0,59.802235944185355,0.0780390830041142,100,mac,phase-20,without +23,232.27069102387352,0.0,0.0,59.727712159962834,0.0779418329984764,100,mac,phase-20,without +24,231.9585306176708,0.0,0.0,59.64744104694712,0.0778370830012136,100,mac,phase-20,without +25,230.3707829163002,0.0,0.0,59.23915648348338,0.0773042910004733,100,mac,phase-20,without +26,230.7023166464104,0.0,0.0,59.32440938868658,0.0774155420003808,100,mac,phase-20,without +27,239.12095968349055,0.0,0.0,61.489238217841425,0.0802405409995117,100,mac,phase-20,without +28,235.103850013608,0.0,0.0,60.45625050415228,0.0788925410015508,100,mac,phase-20,without +29,229.96015861058865,0.0,0.0,59.13356567377203,0.0771664999992935,100,mac,phase-20,without +0,245.20605579923495,0.0,0.0,58.064741436243395,0.0789422499947249,100,mac,phase-18,without +1,250.55095440543516,0.0,0.0,59.3304122801399,0.0806630000006407,100,mac,phase-18,without +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149,100,mac,phase-18,without +3,249.81764644337736,0.0,0.0,59.156765111960304,0.0804269170039333,100,mac,phase-18,without +4,249.02622560509047,0.0,0.0,58.969356827150214,0.0801721250027185,100,mac,phase-18,without +5,248.4707444057284,0.0,0.0,58.83781899824741,0.0799932919981074,100,mac,phase-18,without +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263,100,mac,phase-18,without +7,246.38859307336747,0.0,0.0,58.34476600919865,0.079322958998091,100,mac,phase-18,without +8,246.47595340441205,0.0,0.0,58.36545291685823,0.0793510840012459,100,mac,phase-18,without +9,251.11329706391197,0.0,0.0,59.46357490108985,0.0808440420005354,100,mac,phase-18,without +10,250.43486224262665,0.0,0.0,59.302921680879294,0.0806256249998114,100,mac,phase-18,without +11,251.25358918047456,0.0,0.0,59.49679604421048,0.0808892079949146,100,mac,phase-18,without +12,249.02648340531616,0.0,0.0,58.96941787418838,0.080172207999567,100,mac,phase-18,without +13,253.20619256589657,0.0,0.0,59.95917210720173,0.0815178340053535,100,mac,phase-18,without +14,249.5875338986397,0.0,0.0,59.10227451070708,0.0803528339965851,100,mac,phase-18,without +15,246.30614979515929,0.0,0.0,58.32524345859641,0.0792964170032064,100,mac,phase-18,without +16,248.74706084391897,0.0,0.0,58.90325067156323,0.0800822500023059,100,mac,phase-18,without +17,249.45383612969297,0.0,0.0,59.07061490768795,0.0803097910029464,100,mac,phase-18,without +18,248.40447792783144,0.0,0.0,58.82212711049024,0.0799719580027158,100,mac,phase-18,without +19,228.9579399496601,0.0,0.0,54.21719108698062,0.0737112909991992,100,mac,phase-18,without +20,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705,100,mac,phase-18,without +21,248.96720883475896,0.0,0.0,58.955381668590064,0.0801531249962863,100,mac,phase-18,without +22,250.81174011459103,0.0,0.0,59.39216628015041,0.0807469580031465,100,mac,phase-18,without +23,237.7471648094788,0.0,0.0,56.298477649202496,0.0765409160012495,100,mac,phase-18,without +24,249.37748086472203,0.0,0.0,59.05253399731491,0.0802852089982479,100,mac,phase-18,without +25,250.11596367984183,0.0,0.0,59.227406569589995,0.0805229580000741,100,mac,phase-18,without +26,248.8819172109695,0.0,0.0,58.93518463036493,0.0801256659979117,100,mac,phase-18,without +27,249.33903922826215,0.0,0.0,59.04343102604385,0.0802728330017998,100,mac,phase-18,without +28,262.4534401956857,0.0,0.0,62.148918363143466,0.0844949160018586,100,mac,phase-18,without +29,261.2161602290057,0.0,0.0,61.85593073233089,0.0840965829993365,100,mac,phase-18,without +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.0830702079983893,100,mac,phase-27,without +1,374.8739455288989,0.3746015080684854,13.247271512603714,76.14627018555758,0.0836669999989681,100,mac,phase-27,without +2,360.3381183231657,0.3600762446906633,12.733605380424368,73.19368028439303,0.0804227919943514,100,mac,phase-27,without +3,348.5626801398173,0.3483093642385529,12.317485698981551,70.8017944034004,0.0777946669986704,100,mac,phase-27,without +4,364.61442878503067,0.3643494473687624,12.884721366040782,74.06230584695935,0.0813772089968551,100,mac,phase-27,without +5,369.74521098479994,0.3694765008023982,13.06603261928481,75.10449598128749,0.0825223330029985,100,mac,phase-27,without +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.082606374999159,100,mac,phase-27,without +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.0820752500003436,100,mac,phase-27,without +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.0797756669999216,100,mac,phase-27,without +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.0821104580027167,100,mac,phase-27,without +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.0825127500065718,100,mac,phase-27,without +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.0837727909965906,100,mac,phase-27,without +12,367.93805840787127,0.3676706615630981,13.002171577095016,74.73741811409886,0.0821189999987836,100,mac,phase-27,without +13,378.27841319804594,0.3780035015605473,13.367578373368447,76.83780268085307,0.0844268330038175,100,mac,phase-27,without +14,382.7117309698025,0.3824335974443884,13.524242673260645,77.73832035324112,0.0854162920004455,100,mac,phase-27,without +15,372.41599349838015,0.3721453423403144,13.160412560943849,75.64699867935846,0.0831184170019696,100,mac,phase-27,without +16,356.7682378530547,0.3565089586104289,12.607453172677896,72.46854831390174,0.0796260409988462,100,mac,phase-27,without +17,368.93348814627194,0.3686653678787238,13.037348009529412,74.93961477971149,0.0823411669989582,100,mac,phase-27,without +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.0823945420052041,100,mac,phase-27,without +19,368.3876096681557,0.3681198861146177,13.018057790780574,74.82873321384412,0.0822193340063677,100,mac,phase-27,without +20,370.1432358855347,0.3698742364408505,13.080097997771896,75.18534478924924,0.0826111669957754,100,mac,phase-27,without +21,368.5427485912714,0.368274912291423,13.02354008012396,74.860245807602,0.0822539590008091,100,mac,phase-27,without +22,380.3863269498703,0.3801098833983078,13.44206769472198,77.2659726616924,0.0848972919993684,100,mac,phase-27,without +23,370.1045866985358,0.3698356153419234,13.078732215273476,75.17749417314008,0.0826025409987778,100,mac,phase-27,without +24,361.6613717978691,0.3613985364985974,12.78036642708676,73.46246614644215,0.0807181249983841,100,mac,phase-27,without +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.0820459999958984,100,mac,phase-27,without +26,371.72020035590015,0.3714500548614554,13.135824667373289,75.50566569729222,0.0829631250016973,100,mac,phase-27,without +27,331.3958353192039,0.3311549953226056,11.710844834590327,67.3147790492133,0.0739632500044535,100,mac,phase-27,without +28,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.0810689170029945,100,mac,phase-27,without +29,360.0086099352188,0.3597469757710216,12.721961234084311,73.12674889309132,0.0803492499981075,100,mac,phase-27,without +0,245.4849858868351,0.03325453615373,0.0,59.824910540560325,0.077182166998682,100,mac,phase-5,without +1,243.26148489011845,0.0329533303833809,0.0,59.2830413597024,0.0764830830012215,100,mac,phase-5,without +2,227.93765961629927,0.0308774938521131,0.0,55.54861143995156,0.0716651670009014,100,mac,phase-5,without +3,250.7231538165253,0.0339641227061128,0.0,61.101456748297075,0.078829083002347,100,mac,phase-5,without +4,252.5889686193737,0.0342168746436431,0.0,61.55615748391402,0.0794157080017612,100,mac,phase-5,without +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.0827996669977437,100,mac,phase-5,without +6,226.94041043538476,0.0307424018471125,0.0,55.30558092295546,0.0713516250034445,100,mac,phase-5,without +7,242.6599554225411,0.0328718444083637,0.0,59.13644809064636,0.07629395800177,100,mac,phase-5,without +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.076669291993312,100,mac,phase-5,without +9,247.36392063917748,0.0335090653805442,0.0,60.28280861959906,0.0777729170004022,100,mac,phase-5,without +10,248.7334295032324,0.0336945854108957,0.0,60.61655915420145,0.0782035000011092,100,mac,phase-5,without +11,247.311043310453,0.0335019023720472,0.0,60.26992236731305,0.0777562920047785,100,mac,phase-5,without +12,226.72783872430568,0.0307136058960045,0.0,55.25377700691221,0.0712847909962874,100,mac,phase-5,without +13,246.69360768372263,0.0334182616748472,0.0,60.119452753050254,0.0775621659995522,100,mac,phase-5,without +14,247.48014585109556,0.0335248097874689,0.0,60.311132807656584,0.0778094590059481,100,mac,phase-5,without +15,246.05219040943203,0.0333313723123045,0.0,59.963138789835845,0.0773604999994859,100,mac,phase-5,without +16,249.95252500188107,0.0338597297482905,0.0,60.913653817174755,0.078586792005808,100,mac,phase-5,without +17,250.6415207454208,0.0339530643112192,0.0,61.081562695883505,0.0788034170036553,100,mac,phase-5,without +18,246.5275553318546,0.0333957674521612,0.0,60.07898564643816,0.0775099579986999,100,mac,phase-5,without +19,244.4563283517981,0.0331151894272281,0.0,59.57422577958342,0.0768587499987916,100,mac,phase-5,without +20,247.40791776784516,0.0335150254359042,0.0,60.29353075919174,0.0777867500000866,100,mac,phase-5,without +21,250.543583961273,0.0339397973396468,0.0,61.05769541402468,0.0787726250055129,100,mac,phase-5,without +22,245.99334947150876,0.0333234014456121,0.0,59.948799200656225,0.0773420000041369,100,mac,phase-5,without +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.078443917002005,100,mac,phase-5,without +24,244.25754136307833,0.0330882608186234,0.0,59.5257812127036,0.0767962500030989,100,mac,phase-5,without +25,245.0430139869781,0.0331946645877781,0.0,59.717201593412845,0.0770432079953025,100,mac,phase-5,without +26,249.4024129823822,0.0337852090195586,0.0,60.779591026186075,0.0784138330054702,100,mac,phase-5,without +27,246.43412861712733,0.033383111435536,0.0,60.05621747252941,0.0774805839973851,100,mac,phase-5,without +28,257.6022464065648,0.0348959965329944,0.0,62.77789776285696,0.0809919169987551,100,mac,phase-5,without +29,247.07528191230236,0.0334699650382419,0.0,60.21246710379734,0.0776821670006029,100,mac,phase-5,without +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.0812097079979139,100,mac,phase-2,without +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.0806707500014454,100,mac,phase-2,without +2,387.06785099851174,1.270425839345776,15.004759237678492,78.69773037244646,0.0837934169976506,100,mac,phase-2,without +3,384.2510321293888,1.2611805365729962,14.895564715740525,78.12502134662994,0.0831836249999469,100,mac,phase-2,without +4,371.5677530253622,1.219551748597392,14.403894976677307,75.54628669689791,0.0804379170003812,100,mac,phase-2,without +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.0769082499973592,100,mac,phase-2,without +6,310.8037935940057,1.020113577838926,12.048368473394882,63.191900551535625,0.0672835830046096,100,mac,phase-2,without +7,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.0817295420056325,100,mac,phase-2,without +8,383.3779823279192,1.2583150311481424,14.861720773290225,77.94751490247413,0.0829946249941713,100,mac,phase-2,without +9,392.08615035475583,1.2868967943871166,15.199294571545131,79.71803926311544,0.0848797910002758,100,mac,phase-2,without +10,367.5730098278583,1.2064402877344769,14.249037992972063,74.73408485101137,0.0795731249963864,100,mac,phase-2,without +11,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.0822060409991536,100,mac,phase-2,without +12,382.579806971804,1.2556952770297831,14.83077935302744,77.78523175546657,0.0828218339956947,100,mac,phase-2,without +13,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.0843364579995977,100,mac,phase-2,without +14,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.0827404169976944,100,mac,phase-2,without +15,380.74632391965866,1.2496774580881194,14.759704032013737,77.41245226859378,0.0824249169963877,100,mac,phase-2,without +16,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.0817379159998381,100,mac,phase-2,without +17,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.0794940830019186,100,mac,phase-2,without +18,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.0817125419998774,100,mac,phase-2,without +19,384.8167037344661,1.2630371718420337,14.917493083647802,78.24003237464706,0.0833060830045724,100,mac,phase-2,without +20,378.67475235924377,1.242878190126144,14.679399164462836,76.99126518294923,0.0819764580010087,100,mac,phase-2,without +21,383.49654619559766,1.2587041789441245,14.866316924286007,77.971621030809,0.0830202919969451,100,mac,phase-2,without +22,382.5284125446302,1.2555265913378268,14.828787038233251,77.77478236071079,0.0828107080014888,100,mac,phase-2,without +23,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.0843647500005317,100,mac,phase-2,without +24,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.0826560839996091,100,mac,phase-2,without +25,373.2033724819483,1.2249201438687207,14.46730007758462,75.87883702019211,0.0807919999933801,100,mac,phase-2,without +26,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.0832666250062175,100,mac,phase-2,without +27,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.0812299999961396,100,mac,phase-2,without +28,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.0742695840017404,100,mac,phase-2,without +29,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.0825761250016512,100,mac,phase-2,without +0,247.6358913639864,0.0,0.0,60.23755530694149,0.0770938330024364,100,mac,phase-3,without +1,224.91484920266885,0.0,0.0,54.710650356753966,0.070020334002038,100,mac,phase-3,without +2,250.59815225213995,0.0,0.0,60.95812676005715,0.0780160419963067,100,mac,phase-3,without +3,250.60497804678556,0.0,0.0,60.9597871380428,0.0780181669979356,100,mac,phase-3,without +4,252.79538510278,0.0,0.0,61.4926047577078,0.0787000829950557,100,mac,phase-3,without +5,249.1592469382651,0.0,0.0,60.608112317689475,0.0775680829974589,100,mac,phase-3,without +6,251.2633310797192,0.0,0.0,61.11993184491222,0.0782231250050244,100,mac,phase-3,without +7,246.2273696215814,0.0,0.0,59.894931683637864,0.0766553329958696,100,mac,phase-3,without +8,248.6098367504889,0.0,0.0,60.47446801277843,0.0773970410009496,100,mac,phase-3,without +9,247.39203882310005,0.0,0.0,60.17823805354388,0.0770179169994662,100,mac,phase-3,without +10,255.71776095388975,0.0,0.0,62.20347415547271,0.0796098750070086,100,mac,phase-3,without +11,249.22121548631523,0.0,0.0,60.62318619821583,0.0775873750026221,100,mac,phase-3,without +12,249.92976133402135,0.0,0.0,60.79554033256047,0.0778079590018023,100,mac,phase-3,without +13,247.14791645978391,0.0,0.0,60.11885516570433,0.0769419169955654,100,mac,phase-3,without +14,238.7495165766193,0.0,0.0,58.07594016390296,0.0743273330008378,100,mac,phase-3,without +15,250.1377439451952,0.0,0.0,60.84613220748805,0.0778727080032695,100,mac,phase-3,without +16,250.0574405131458,0.0,0.0,60.826598357193696,0.0778477079948061,100,mac,phase-3,without +17,252.51927631291608,0.0,0.0,61.42544115549913,0.0786141249991487,100,mac,phase-3,without +18,247.5537152778006,0.0,0.0,60.21756593258521,0.0770682500005932,100,mac,phase-3,without +19,246.7884238216119,0.0,0.0,60.03140840039478,0.0768299999981536,100,mac,phase-3,without +20,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801,100,mac,phase-3,without +21,242.33265448766724,0.0,0.0,58.94754026556956,0.0754428329964866,100,mac,phase-3,without +22,255.49612352817607,0.0,0.0,62.14956074003047,0.0795408749982016,100,mac,phase-3,without +23,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822,100,mac,phase-3,without +24,240.24168874114216,0.0,0.0,58.43891179452095,0.0747918749984819,100,mac,phase-3,without +25,253.03723326850667,0.0,0.0,61.55143444583822,0.0787753749973489,100,mac,phase-3,without +26,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577,100,mac,phase-3,without +27,252.68015295270183,0.0,0.0,61.46457447915958,0.0786642090024543,100,mac,phase-3,without +28,247.46926179214807,0.0,0.0,60.197022579661535,0.0770419580003363,100,mac,phase-3,without +29,247.49469226985136,0.0,0.0,60.20320855617205,0.0770498749989201,100,mac,phase-3,without +0,258.05412357567263,0.0,0.0,60.88917522572051,0.0776646669983165,100,mac,phase-4,without +1,257.9959768285465,0.0,0.0,60.87545520673569,0.0776471669960301,100,mac,phase-4,without +2,256.0814273269359,0.0,0.0,60.42370757152421,0.077070958999684,100,mac,phase-4,without +3,258.3119063629601,0.0,0.0,60.9500003777771,0.0777422500032116,100,mac,phase-4,without +4,254.87501871078396,0.0,0.0,60.13904935872431,0.0767078749995562,100,mac,phase-4,without +5,218.53039916041607,0.0,0.0,51.56335261088469,0.0657694999972591,100,mac,phase-4,without +6,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612,100,mac,phase-4,without +7,256.1942552713655,0.0,0.0,60.45032989549073,0.0771049160030088,100,mac,phase-4,without +8,269.4083809346708,0.0,0.0,63.568269658742544,0.0810818750032922,100,mac,phase-4,without +9,256.7634055100046,0.0,0.0,60.584623772023555,0.0772762089982279,100,mac,phase-4,without +10,265.09209197392056,0.0,0.0,62.54981945452058,0.0797828330032643,100,mac,phase-4,without +11,247.3756110807905,0.0,0.0,58.36952621007416,0.0744508329953532,100,mac,phase-4,without +12,258.04927578522654,0.0,0.0,60.88803136505345,0.0776632079941919,100,mac,phase-4,without +13,256.90531014005614,0.0,0.0,60.61810688697954,0.0773189169995021,100,mac,phase-4,without +14,259.4555995489818,0.0,0.0,61.21986056773728,0.0780864589978591,100,mac,phase-4,without +15,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601,100,mac,phase-4,without +16,255.6555672710305,0.0,0.0,60.32322373810831,0.0769427910054219,100,mac,phase-4,without +17,257.38764897090465,0.0,0.0,60.73191717291009,0.077464082998631,100,mac,phase-4,without +18,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146,100,mac,phase-4,without +19,236.34739083788008,0.0,0.0,55.7673618830953,0.071131750002678,100,mac,phase-4,without +20,255.39654180892845,0.0,0.0,60.26210537064603,0.0768648340017534,100,mac,phase-4,without +21,256.04875219815136,0.0,0.0,60.41599770967616,0.0770611250045476,100,mac,phase-4,without +22,255.4578716622009,0.0,0.0,60.27657645962043,0.0768832920002751,100,mac,phase-4,without +23,258.9686854110115,0.0,0.0,61.10497071495777,0.0779399160019238,100,mac,phase-4,without +24,258.4434309763645,0.0,0.0,60.98103427532196,0.0777818340066005,100,mac,phase-4,without +25,257.6428035065198,0.0,0.0,60.792122175695674,0.0775408749977941,100,mac,phase-4,without +26,258.0723949714545,0.0,0.0,60.893486453938706,0.0776701660070102,100,mac,phase-4,without +27,257.6979033528984,0.0,0.0,60.80512326304344,0.0775574579965905,100,mac,phase-4,without +28,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646,100,mac,phase-4,without +29,236.55450287180864,0.0,0.0,55.81623101469642,0.0711940830005914,100,mac,phase-4,without +0,248.82851645392185,0.0,0.0,60.371399972863664,0.0773350419985945,100,mac,phase-22,without +1,240.3368936219519,0.0,0.0,58.3111411017608,0.0746958750023623,100,mac,phase-22,without +2,248.97893642549755,0.0,0.0,60.407895244375624,0.0773817920053261,100,mac,phase-22,without +3,251.12462953695908,0.0,0.0,60.92848869924618,0.0780486660005408,100,mac,phase-22,without +4,249.99473921307967,0.0,0.0,60.654351869430606,0.0776974999971571,100,mac,phase-22,without +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547,100,mac,phase-22,without +6,251.56958945104645,0.0,0.0,61.036445991794814,0.078186958002334,100,mac,phase-22,without +7,253.98636346091425,0.0,0.0,61.622809775468184,0.0789380830028676,100,mac,phase-22,without +8,258.675926589324,0.0,0.0,62.76060336664463,0.0803955829978804,100,mac,phase-22,without +9,253.03209606091505,0.0,0.0,61.39128302078818,0.0786414999965927,100,mac,phase-22,without +10,245.9887712196412,0.0,0.0,59.682413847788496,0.0764524590049404,100,mac,phase-22,without +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585,100,mac,phase-22,without +12,253.69195862142328,0.0,0.0,61.551380533465895,0.0788465829973574,100,mac,phase-22,without +13,249.9323994112021,0.0,0.0,60.639226830037956,0.0776781250024214,100,mac,phase-22,without +14,249.64268574376183,0.0,0.0,60.56893577198762,0.0775880829969537,100,mac,phase-22,without +15,248.90372320903617,0.0,0.0,60.389646824785515,0.0773584159978781,100,mac,phase-22,without +16,249.89043626314705,0.0,0.0,60.62904562560264,0.0776650830011931,100,mac,phase-22,without +17,251.38565561954871,0.0,0.0,60.99181950336761,0.0781297920038923,100,mac,phase-22,without +18,248.0580477823997,0.0,0.0,60.18446692757648,0.0770955830012098,100,mac,phase-22,without +19,242.71331647279524,0.0,0.0,58.88771478582841,0.075434459002281,100,mac,phase-22,without +20,251.9422866197867,0.0,0.0,61.12687071546968,0.0783027909928932,100,mac,phase-22,without +21,252.17301315190568,0.0,0.0,61.182850166512566,0.0783745000007911,100,mac,phase-22,without +22,251.8146597287694,0.0,0.0,61.09590555844225,0.078263124996738,100,mac,phase-22,without +23,248.1852757086486,0.0,0.0,60.2153352867692,0.0771351250004954,100,mac,phase-22,without +24,252.43765573938865,0.0,0.0,61.24705841613956,0.0784567500013508,100,mac,phase-22,without +25,247.58493442148287,0.0,0.0,60.069678975007925,0.0769485410055494,100,mac,phase-22,without +26,252.21926527656947,0.0,0.0,61.19407197323097,0.0783888750011101,100,mac,phase-22,without +27,249.8356029545924,0.0,0.0,60.61574183048396,0.0776480409986106,100,mac,phase-22,without +28,229.06746313872625,0.0,0.0,55.5769235576266,0.0711933749989839,100,mac,phase-22,without +29,254.86381530062064,0.0,0.0,61.83569934587096,0.0792107919987756,100,mac,phase-22,without +0,244.30085516419717,0.0,0.0,58.77237786122283,0.0794237919981242,100,mac,phase-25,without +1,225.99531436860696,0.0,0.0,54.36854489113619,0.0734725419970345,100,mac,phase-25,without +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879,100,mac,phase-25,without +3,248.47192239445707,0.0,0.0,59.77582723178127,0.0807798329988145,100,mac,phase-25,without +4,243.27721517189647,0.0,0.0,58.52611692864887,0.0790909999996074,100,mac,phase-25,without +5,245.8384283162675,0.0,0.0,59.14227763182338,0.0799236669990932,100,mac,phase-25,without +6,252.4730483757677,0.0,0.0,60.73839319531787,0.0820806249976158,100,mac,phase-25,without +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987,100,mac,phase-25,without +8,246.1321782239548,0.0,0.0,59.21294615469732,0.0800191669986816,100,mac,phase-25,without +9,245.90750722117627,0.0,0.0,59.15889620443872,0.079946124998969,100,mac,phase-25,without +10,250.79449374512456,0.0,0.0,60.3345769788476,0.0815349160038749,100,mac,phase-25,without +11,249.24756673150785,0.0,0.0,59.96242691450618,0.0810320000018691,100,mac,phase-25,without +12,248.5006329833621,0.0,0.0,59.782734246407195,0.0807891669974196,100,mac,phase-25,without +13,201.25431595629993,0.0,0.0,48.41650961735576,0.0654290829988895,100,mac,phase-25,without +14,241.8498643799761,0.0,0.0,58.18273376682212,0.0786269590025767,100,mac,phase-25,without +15,246.26623584150497,0.0,0.0,59.24519690121452,0.0800627499993424,100,mac,phase-25,without +16,253.02671313402087,0.0,0.0,60.87159041379928,0.0822606250003445,100,mac,phase-25,without +17,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806,100,mac,phase-25,without +18,252.45626002588983,0.0,0.0,60.73435435868744,0.0820751669962192,100,mac,phase-25,without +19,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663,100,mac,phase-25,without +20,225.67067614143417,0.0,0.0,54.29044544877944,0.0733670000045094,100,mac,phase-25,without +21,246.5857465567506,0.0,0.0,59.322062798693686,0.0801666250044945,100,mac,phase-25,without +22,246.7726084003519,0.0,0.0,59.367016856969904,0.0802273750014137,100,mac,phase-25,without +23,246.30570906024255,0.0,0.0,59.25469312227967,0.0800755829986883,100,mac,phase-25,without +24,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335,100,mac,phase-25,without +25,246.2417577120216,0.0,0.0,59.23930810531011,0.0800547920007375,100,mac,phase-25,without +26,245.9956844736978,0.0,0.0,59.18010933854943,0.0799747919954825,100,mac,phase-25,without +27,246.54319742169463,0.0,0.0,59.31182659284212,0.0801527920048101,100,mac,phase-25,without +28,245.51635537810407,0.0,0.0,59.06479533071602,0.0798189589986577,100,mac,phase-25,without +29,232.80692876152213,0.0,0.0,56.00724064877602,0.0756870420009363,100,mac,phase-25,without +0,245.52679852308864,0.8392357072842789,0.0,59.08219379281323,0.0801600000049802,100,mac,phase-13,without +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229,100,mac,phase-13,without +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.0804796250013168,100,mac,phase-13,without +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.0806689580058446,100,mac,phase-13,without +4,247.65389493149505,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214,100,mac,phase-13,without +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083,100,mac,phase-13,without +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.0797389169965754,100,mac,phase-13,without +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.080351333002909,100,mac,phase-13,without +8,252.1240294551156,0.861785717306247,0.0,60.66971449835979,0.0823138749983627,100,mac,phase-13,without +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204,100,mac,phase-13,without +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.0808115420004469,100,mac,phase-13,without +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.0807958750010584,100,mac,phase-13,without +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.0805811250029364,100,mac,phase-13,without +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.0759737499975017,100,mac,phase-13,without +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.0750240000052144,100,mac,phase-13,without +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702,100,mac,phase-13,without +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.0801142499985871,100,mac,phase-13,without +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.0833885419997386,100,mac,phase-13,without +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879,100,mac,phase-13,without +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.0807840420020511,100,mac,phase-13,without +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.0801257920029456,100,mac,phase-13,without +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.0801382080026087,100,mac,phase-13,without +22,198.5005478535641,0.6784951731390624,0.0,47.76606018898999,0.064806791000592,100,mac,phase-13,without +23,242.797444696174,0.8299064967739063,0.0,58.42541737288301,0.0792689160007285,100,mac,phase-13,without +24,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.0803952499991282,100,mac,phase-13,without +25,248.27937873327463,0.8486443079480266,0.0,59.74455927954107,0.0810586669977055,100,mac,phase-13,without +26,247.81495449698696,0.8470568584119051,0.0,59.63280283219813,0.0809070409959531,100,mac,phase-13,without +27,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.0825096659973496,100,mac,phase-13,without +28,248.93357471888788,0.8508804167312274,0.0,59.9019813378784,0.0812722499977098,100,mac,phase-13,without +29,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.0796597500011557,100,mac,phase-13,without +0,227.2823037447636,0.0,0.0,57.07730787818506,0.0794794169996748,100,mac,phase-14,without +1,228.76466537890357,0.0,0.0,57.449572722321946,0.0799977910064626,100,mac,phase-14,without +2,229.7965197297261,0.0,0.0,57.708701864789106,0.0803586250040098,100,mac,phase-14,without +3,229.99490705767593,0.0,0.0,57.75852278973555,0.0804280000011203,100,mac,phase-14,without +4,229.18670205564752,0.0,0.0,57.55555861272128,0.0801453749954816,100,mac,phase-14,without +5,231.26160626838956,0.0,0.0,58.07662842157634,0.0808709580014692,100,mac,phase-14,without +6,227.8381457495341,0.0,0.0,57.21689624346994,0.0796737920027226,100,mac,phase-14,without +7,220.54535576053524,0.0,0.0,55.385461007929194,0.0771235419961158,100,mac,phase-14,without +8,228.6866229862869,0.0,0.0,57.42997396959223,0.0799704999953974,100,mac,phase-14,without +9,229.87968653815292,0.0,0.0,57.72958750987283,0.0803877079961239,100,mac,phase-14,without +10,227.81550598444144,0.0,0.0,57.21121072893056,0.0796658749968628,100,mac,phase-14,without +11,227.62605500780717,0.0,0.0,57.16363398607371,0.0795996249944437,100,mac,phase-14,without +12,229.86336373993495,0.0,0.0,57.72548837252703,0.0803820000000996,100,mac,phase-14,without +13,231.66171813641745,0.0,0.0,58.17710834412581,0.081010875001084,100,mac,phase-14,without +14,230.9662314522403,0.0,0.0,58.002451070137006,0.0807676669937791,100,mac,phase-14,without +15,231.48180120147975,0.0,0.0,58.131925881088705,0.0809479590025148,100,mac,phase-14,without +16,229.71871471960463,0.0,0.0,57.68916272582404,0.0803314170043449,100,mac,phase-14,without +17,231.9388627509407,0.0,0.0,58.246707552816034,0.0811077910038875,100,mac,phase-14,without +18,221.67276777003045,0.0,0.0,55.668587504410795,0.0775177920004352,100,mac,phase-14,without +19,231.92921431455932,0.0,0.0,58.24428454510795,0.0811044169968226,100,mac,phase-14,without +20,229.2441321614661,0.0,0.0,57.569981010669885,0.0801654579991009,100,mac,phase-14,without +21,228.92075580272544,0.0,0.0,57.48877164379768,0.0800523750003776,100,mac,phase-14,without +22,229.27058667095508,0.0,0.0,57.57662452034042,0.0801747090008575,100,mac,phase-14,without +23,230.96611135654717,0.0,0.0,58.002420910556886,0.0807676249969517,100,mac,phase-14,without +24,215.5182335244439,0.0,0.0,54.12300194761942,0.0753655839944258,100,mac,phase-14,without +25,231.36241133068287,0.0,0.0,58.1019435538211,0.0809062089974759,100,mac,phase-14,without +26,229.37019641490616,0.0,0.0,57.601639472800365,0.0802095420003752,100,mac,phase-14,without +27,230.27086205486523,0.0,0.0,57.82782325033272,0.0805245000010472,100,mac,phase-14,without +28,228.54089874330737,0.0,0.0,57.39337830268453,0.0799195409999811,100,mac,phase-14,without +29,229.6250615930292,0.0,0.0,57.66564365614186,0.0802986670023528,100,mac,phase-14,without +0,252.0569260482816,0.0,0.0,59.22685631305648,0.080362166998384,100,mac,phase-15,without +1,252.5636013837425,0.0,0.0,59.34591190800159,0.080523707998509,100,mac,phase-15,without +2,255.97155373331972,0.0,0.0,60.14669253837193,0.0816102499957196,100,mac,phase-15,without +3,234.60118746361675,0.0,0.0,55.1252093668655,0.0747968330033472,100,mac,phase-15,without +4,253.97385574356483,0.0,0.0,59.6772851959471,0.0809733330024755,100,mac,phase-15,without +5,252.33189155253675,0.0,0.0,59.2914660925491,0.080449833003513,100,mac,phase-15,without +6,255.14612719979553,0.0,0.0,59.952738658728656,0.081347082996217,100,mac,phase-15,without +7,244.04078157036597,0.0,0.0,57.34326975734617,0.077806415996747,100,mac,phase-15,without +8,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253,100,mac,phase-15,without +9,252.32235341535025,0.0,0.0,59.289224877084415,0.0804467920024762,100,mac,phase-15,without +10,251.56057298405543,0.0,0.0,59.110226184789994,0.0802039170011994,100,mac,phase-15,without +11,251.38231558091536,0.0,0.0,59.06834030699232,0.0801470840015099,100,mac,phase-15,without +12,236.56595209719924,0.0,0.0,55.58687822265356,0.0754232500039506,100,mac,phase-15,without +13,257.3785429826992,0.0,0.0,60.477298609839494,0.0820588339993264,100,mac,phase-15,without +14,255.38228149183257,0.0,0.0,60.00822880748779,0.0814223749985103,100,mac,phase-15,without +15,252.88574631214084,0.0,0.0,59.42160763152467,0.0806264160055434,100,mac,phase-15,without +16,251.8723956183979,0.0,0.0,59.18349643627208,0.0803033339980174,100,mac,phase-15,without +17,252.58816970012697,0.0,0.0,59.35168482671154,0.0805315410034381,100,mac,phase-15,without +18,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807,100,mac,phase-15,without +19,256.3833495792202,0.0,0.0,60.24345390802693,0.0817415409983368,100,mac,phase-15,without +20,253.93595723964492,0.0,0.0,59.668380028049775,0.0809612499942886,100,mac,phase-15,without +21,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426,100,mac,phase-15,without +22,253.27297696815177,0.0,0.0,59.51259681711514,0.0807498750000377,100,mac,phase-15,without +23,250.3815046876699,0.0,0.0,58.83317564042237,0.0798280000017257,100,mac,phase-15,without +24,252.92717650013057,0.0,0.0,59.43134265380538,0.0806396250045509,100,mac,phase-15,without +25,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173,100,mac,phase-15,without +26,252.25818664902565,0.0,0.0,59.27414734714401,0.0804263340032775,100,mac,phase-15,without +27,244.1120086467984,0.0,0.0,57.360006277495025,0.0778291250026086,100,mac,phase-15,without +28,253.4064073264722,0.0,0.0,59.54394949916176,0.0807924159962567,100,mac,phase-15,without +29,252.61770622229048,0.0,0.0,59.35862514524034,0.0805409579988918,100,mac,phase-15,without +0,242.90782385251904,0.8766974823241211,0.0,55.38849450826323,0.0747689999989233,100,mac,phase-12,without +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.0778219589992659,100,mac,phase-12,without +2,258.8651385625255,0.9342902655002208,0.0,59.02712427392467,0.0796807910010102,100,mac,phase-12,without +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.081725957999879,100,mac,phase-12,without +4,241.39105099810257,0.8712231796786377,0.0,55.04263588755393,0.07430212500185,100,mac,phase-12,without +5,268.08165313176636,0.9675543036464884,0.0,61.12869868395136,0.0825177090009674,100,mac,phase-12,without +6,261.2141409213791,0.9427682322504016,0.0,59.562750101820015,0.0804038329952163,100,mac,phase-12,without +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.0795712500039371,100,mac,phase-12,without +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.0776966249977704,100,mac,phase-12,without +9,262.6748723911695,0.9480402715845252,0.0,59.89583001546517,0.0808534579991828,100,mac,phase-12,without +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.0748128330014878,100,mac,phase-12,without +11,259.4128304085643,0.9362669826552976,0.0,59.15201043990077,0.0798493749971385,100,mac,phase-12,without +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.0795320000033825,100,mac,phase-12,without +13,262.3333479240832,0.9468076491201768,0.0,59.81795468905688,0.0807483339958707,100,mac,phase-12,without +14,263.7812174805347,0.9520332675244872,0.0,60.148101794672066,0.0811939999985043,100,mac,phase-12,without +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.0804758339945692,100,mac,phase-12,without +16,260.33751362128316,0.939604328615098,0.0,59.36285919000386,0.0801339999961783,100,mac,phase-12,without +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235,100,mac,phase-12,without +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179,100,mac,phase-12,without +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.0806621669980813,100,mac,phase-12,without +20,259.3887374833051,0.9361800270085772,0.0,59.14651670636333,0.0798419589991681,100,mac,phase-12,without +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.0798660830041626,100,mac,phase-12,without +22,263.0187002361503,0.9492812073488284,0.0,59.97423056428847,0.0809592910009087,100,mac,phase-12,without +23,262.90255644081475,0.9488620237616412,0.0,59.94774714408369,0.080923540997901,100,mac,phase-12,without +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067,100,mac,phase-12,without +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.0796380419997149,100,mac,phase-12,without +26,258.61634070403085,0.9333923098366672,0.0,58.970392717895145,0.0796042090005357,100,mac,phase-12,without +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639,100,mac,phase-12,without +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.0794995839969487,100,mac,phase-12,without +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.0802607500008889,100,mac,phase-12,without +0,241.774082389606,0.0,0.0,58.314702618296096,0.0794790410000132,100,mac,phase-24,without +1,236.29470921743456,0.0,0.0,56.99310514220705,0.0776777919963933,100,mac,phase-24,without +2,245.02596783164793,0.0,0.0,59.09904116536938,0.0805480420021922,100,mac,phase-24,without +3,239.61731779511788,0.0,0.0,57.79450175680519,0.0787700420041801,100,mac,phase-24,without +4,234.89514347109304,0.0,0.0,56.65553686571519,0.0772177090038894,100,mac,phase-24,without +5,244.3573637645225,0.0,0.0,58.937777199610736,0.0803282499982742,100,mac,phase-24,without +6,246.66217572690388,0.0,0.0,59.49368634772521,0.0810859170014737,100,mac,phase-24,without +7,247.69936496973415,0.0,0.0,59.74385121923148,0.0814268749963957,100,mac,phase-24,without +8,247.93347313702415,0.0,0.0,59.80031694136804,0.081503834000614,100,mac,phase-24,without +9,244.9906017154224,0.0,0.0,59.0905110345544,0.080536416004179,100,mac,phase-24,without +10,244.5686539902464,0.0,0.0,58.988739348065465,0.0803977079995093,100,mac,phase-24,without +11,244.99022144221857,0.0,0.0,59.090419314554566,0.0805362909959512,100,mac,phase-24,without +12,243.10761578902108,0.0,0.0,58.63634422210183,0.0799174170024343,100,mac,phase-24,without +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349,100,mac,phase-24,without +14,226.95226404933985,0.0,0.0,54.73975397106182,0.0746066249994328,100,mac,phase-24,without +15,247.18260772680364,0.0,0.0,59.61921195000334,0.0812570000052801,100,mac,phase-24,without +16,245.5469078363539,0.0,0.0,59.22468929587267,0.0807192920037778,100,mac,phase-24,without +17,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146,100,mac,phase-24,without +18,242.99404630361005,0.0,0.0,58.6089518287452,0.0798800830016261,100,mac,phase-24,without +19,243.03942360273416,0.0,0.0,58.61989660693602,0.0798950000025797,100,mac,phase-24,without +20,243.40129207930585,0.0,0.0,58.70717747835799,0.0800139579951064,100,mac,phase-24,without +21,242.2193560611542,0.0,0.0,58.42210040669198,0.0796254170054453,100,mac,phase-24,without +22,244.86537532136504,0.0,0.0,59.06030705298102,0.080495249996602,100,mac,phase-24,without +23,229.17519487543,0.0,0.0,55.27591379755472,0.0753373749976162,100,mac,phase-24,without +24,245.74083136710107,0.0,0.0,59.27146268413018,0.0807830410049064,100,mac,phase-24,without +25,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226,100,mac,phase-24,without +26,245.22724384220348,0.0,0.0,59.14758793507991,0.0806142080036806,100,mac,phase-24,without +27,246.6794116137417,0.0,0.0,59.497843557651834,0.0810915830006706,100,mac,phase-24,without +28,245.331815099925,0.0,0.0,59.17281000080416,0.0806485839930246,100,mac,phase-24,without +29,247.67071860704505,0.0,0.0,59.73694185944898,0.0814174580009421,100,mac,phase-24,without +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.0798695409976062,100,mac,phase-23,without +1,222.282954626191,0.5425670898579795,0.0,63.921185273893215,0.0796238750044722,100,mac,phase-23,without +2,181.99531463538943,0.4442296009406912,0.0,52.33579986082519,0.0651924580015474,100,mac,phase-23,without +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.0797642079996876,100,mac,phase-23,without +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.0648530830003437,100,mac,phase-23,without +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477,100,mac,phase-23,without +6,228.03587230478863,0.5566092992946786,0.0,65.57553307315432,0.0816846250017988,100,mac,phase-23,without +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.0808889159961836,100,mac,phase-23,without +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.0801839999985531,100,mac,phase-23,without +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.078770958003588,100,mac,phase-23,without +10,225.93084181352305,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981,100,mac,phase-23,without +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.0814994160027708,100,mac,phase-23,without +12,190.86070386116344,0.4658689949319016,0.0,54.885190965414665,0.0683681250011432,100,mac,phase-23,without +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.0778178749969811,100,mac,phase-23,without +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.0821365419978974,100,mac,phase-23,without +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.0831774999969638,100,mac,phase-23,without +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.0827088329970138,100,mac,phase-23,without +17,208.47225322116213,0.5088567584345681,0.0,59.94968685307256,0.0746767500022542,100,mac,phase-23,without +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.0824930000017047,100,mac,phase-23,without +19,229.14404490940265,0.5593142209840491,0.0,65.89420665968329,0.082081583001127,100,mac,phase-23,without +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.0812505829962901,100,mac,phase-23,without +21,226.7383300922263,0.5534421482037561,0.0,65.20240308525501,0.0812198330022511,100,mac,phase-23,without +22,190.32796262279587,0.4645686349297839,0.0,54.73199230266517,0.0681772920070216,100,mac,phase-23,without +23,216.75046098615985,0.5290629101111453,0.0,62.3302240974693,0.0776420830006827,100,mac,phase-23,without +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832,100,mac,phase-23,without +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.0806313339999178,100,mac,phase-23,without +26,190.4228763228689,0.4648003083395731,0.0,54.75928632625596,0.0682112909998977,100,mac,phase-23,without +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.0820812920064781,100,mac,phase-23,without +28,229.7988069023712,0.5609124195938885,0.0,66.08249443340499,0.0823161249936674,100,mac,phase-23,without +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156,100,mac,phase-23,without +0,261.69304748056817,0.0,0.0,60.19573731393214,0.0799580409948248,100,mac,phase-8,without +1,250.04241406090983,0.0,0.0,57.51580952974925,0.0763982909993501,100,mac,phase-8,without +2,265.34640271204813,0.0,0.0,61.03609747613698,0.0810742920002667,100,mac,phase-8,without +3,260.32975890934574,0.0,0.0,59.88214793314248,0.0795414999956847,100,mac,phase-8,without +4,256.60290463269945,0.0,0.0,59.02488121091149,0.0784027919944492,100,mac,phase-8,without +5,254.2476553292837,0.0,0.0,58.48311684329771,0.0776831659968593,100,mac,phase-8,without +6,267.4662730703839,0.0,0.0,61.52371898713432,0.0817220000026281,100,mac,phase-8,without +7,261.4647674093651,0.0,0.0,60.143227370192946,0.0798882919989409,100,mac,phase-8,without +8,246.01554802208992,0.0,0.0,56.589532838011,0.0751679170061834,100,mac,phase-8,without +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688,100,mac,phase-8,without +10,263.23716595979414,0.0,0.0,60.550921952010754,0.0804298330040182,100,mac,phase-8,without +11,260.4273987454803,0.0,0.0,59.904607459614105,0.0795713330007856,100,mac,phase-8,without +12,263.1834383636676,0.0,0.0,60.538563303991346,0.080413417003001,100,mac,phase-8,without +13,264.8376041165323,0.0,0.0,60.91906147958976,0.0809188330022152,100,mac,phase-8,without +14,262.7376459678526,0.0,0.0,60.43602025894914,0.0802772090028156,100,mac,phase-8,without +15,265.9190191847479,0.0,0.0,61.16781312966357,0.0812492499971995,100,mac,phase-8,without +16,262.16475454640056,0.0,0.0,60.30424136055219,0.0801021669976762,100,mac,phase-8,without +17,270.0616666527359,0.0,0.0,62.120722353534894,0.0825150000018766,100,mac,phase-8,without +18,267.46191030093564,0.0,0.0,61.522715444525154,0.0817206669962615,100,mac,phase-8,without +19,262.00329030822877,0.0,0.0,60.26710067622695,0.0800528330000815,100,mac,phase-8,without +20,253.51275965468895,0.0,0.0,58.314073044056784,0.0774586249972344,100,mac,phase-8,without +21,264.0262048684438,0.0,0.0,60.732420006058504,0.0806709169992245,100,mac,phase-8,without +22,263.8846528399279,0.0,0.0,60.69985961208996,0.0806276670045917,100,mac,phase-8,without +23,264.5367741043955,0.0,0.0,60.849863292778615,0.0808269170011044,100,mac,phase-8,without +24,263.01842955838407,0.0,0.0,60.50060728340553,0.0803629999936674,100,mac,phase-8,without +25,262.9862473617866,0.0,0.0,60.493204598958165,0.0803531670026131,100,mac,phase-8,without +26,263.65418646654734,0.0,0.0,60.64684676591282,0.0805572500030393,100,mac,phase-8,without +27,248.40133983118992,0.0,0.0,57.13832272146015,0.0758968750014901,100,mac,phase-8,without +28,269.71869832726696,0.0,0.0,62.04183133435922,0.0824102090045926,100,mac,phase-8,without +29,263.8835596650258,0.0,0.0,60.69960815539335,0.0806273329944815,100,mac,phase-8,without +0,365.5962922637533,0.31946547733638,13.09808457079158,71.3685876369473,0.0776209169998765,100,mac,phase-1,without +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.0843391249945852,100,mac,phase-1,without +2,381.68376621972993,0.3335230393391558,13.67444461290539,74.50904698836742,0.0810364999997546,100,mac,phase-1,without +3,374.9568692135735,0.3276449398930212,13.433442535613873,73.19587957210095,0.0796082910019322,100,mac,phase-1,without +4,383.4586629821924,0.3350739802360996,13.738033189680085,74.85552718474466,0.0814133340027183,100,mac,phase-1,without +5,378.5011661164349,0.3307420186267344,13.560422763696112,73.88776696121248,0.080360792002466,100,mac,phase-1,without +6,388.4279301626621,0.3394162269858983,13.916065306421832,75.82558510864969,0.0824683749960968,100,mac,phase-1,without +7,388.868712974047,0.3398013919731275,13.931857070898229,75.91163096679668,0.0825619590032147,100,mac,phase-1,without +8,387.4873009382955,0.3385942860348615,13.882365727429324,75.64196350018807,0.0822686669998802,100,mac,phase-1,without +9,361.1088179961347,0.3155442310347209,12.93731347242356,70.49258121315667,0.0766681669992976,100,mac,phase-1,without +10,384.98725849243414,0.3364096980884604,13.792797621626878,75.15392655296206,0.081737874999817,100,mac,phase-1,without +11,387.3220545051752,0.3384498903400692,13.876445503942838,75.60970550197146,0.0822335830016527,100,mac,phase-1,without +12,381.00905545019447,0.3329334633434065,13.650271997079669,74.37733571091702,0.080893250000372,100,mac,phase-1,without +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574,100,mac,phase-1,without +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.0836733749965787,100,mac,phase-1,without +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.0806210000009741,100,mac,phase-1,without +16,376.5386550083152,0.3290271364980035,13.490112596418143,73.504662293654,0.0799441249982919,100,mac,phase-1,without +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.0815830829960759,100,mac,phase-1,without +18,371.9656137717135,0.3250311200381977,13.326275921566106,72.61195221653337,0.0789732080011162,100,mac,phase-1,without +19,373.64807162243585,0.3265012859336209,13.38655272327846,72.94038727757092,0.0793304160033585,100,mac,phase-1,without +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.0774970830025267,100,mac,phase-1,without +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.0814905410006758,100,mac,phase-1,without +22,389.6713762032651,0.340502775431025,13.960613792672026,76.068320031291,0.0827323749981587,100,mac,phase-1,without +23,385.0612435284915,0.3364743477180107,13.795448256438442,75.1683692802036,0.0817535829992266,100,mac,phase-1,without +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.0754203329997835,100,mac,phase-1,without +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.0827776250007445,100,mac,phase-1,without +26,389.3864198446626,0.3402537747681428,13.950404765493856,76.0126932832031,0.0826718750031432,100,mac,phase-1,without +27,385.34934147980306,0.3367260935685102,13.80576983630892,75.22460930320518,0.0818147499958286,100,mac,phase-1,without +28,388.2126444619807,0.3392281059611854,13.908352344408604,75.78355887172884,0.082422667001083,100,mac,phase-1,without +29,382.30646891442245,0.3340671696211311,13.696753954466375,74.63060569336069,0.0811687079985858,100,mac,phase-1,without +0,243.54047775399584,0.0,0.0,58.53663370586776,0.0799515000035171,100,mac,phase-30,without +1,243.291711687412,0.0,0.0,58.47684106584192,0.0798698330036131,100,mac,phase-30,without +2,245.5951988714672,0.0,0.0,59.03050009937392,0.080626040995412,100,mac,phase-30,without +3,244.14360606550724,0.0,0.0,58.681599755758846,0.0801494999977876,100,mac,phase-30,without +4,243.31671713606323,0.0,0.0,58.48285129790621,0.0798780420009279,100,mac,phase-30,without +5,241.55492443854592,0.0,0.0,58.05939227067864,0.0792996659947675,100,mac,phase-30,without +6,244.21963070926464,0.0,0.0,58.69987280328379,0.0801744580021477,100,mac,phase-30,without +7,245.1422220915524,0.0,0.0,58.92162400580759,0.080477333998715,100,mac,phase-30,without +8,246.35114409687137,0.0,0.0,59.21219674860971,0.0808742090011946,100,mac,phase-30,without +9,223.61325483398392,0.0,0.0,53.74698822433849,0.0734096250016591,100,mac,phase-30,without +10,244.82669458259335,0.0,0.0,58.845784792604114,0.0803737499954877,100,mac,phase-30,without +11,245.46624823405313,0.0,0.0,58.999505924204115,0.0805837080042692,100,mac,phase-30,without +12,244.69279401281028,0.0,0.0,58.81360086704609,0.0803297919992473,100,mac,phase-30,without +13,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065,100,mac,phase-30,without +14,244.25085325559544,0.0,0.0,58.70737735765924,0.0801847080001607,100,mac,phase-30,without +15,242.3843538378488,0.0,0.0,58.25875134798534,0.0795719579982687,100,mac,phase-30,without +16,247.02788453109272,0.0,0.0,59.37485597995104,0.081096374997287,100,mac,phase-30,without +17,244.8240292446239,0.0,0.0,58.845144160238355,0.080372874996101,100,mac,phase-30,without +18,242.5058171758989,0.0,0.0,58.28794589910761,0.0796118329963064,100,mac,phase-30,without +19,249.33936777338295,0.0,0.0,59.93043692123454,0.081855208001798,100,mac,phase-30,without +20,234.16127478349617,0.0,0.0,56.2822775766509,0.076872416997503,100,mac,phase-30,without +21,244.35937066953136,0.0,0.0,58.73346026662311,0.0802203330022166,100,mac,phase-30,without +22,245.70321065155915,0.0,0.0,59.056461475755675,0.0806615000037709,100,mac,phase-30,without +23,244.62806434791267,0.0,0.0,58.79804264559987,0.0803085420047864,100,mac,phase-30,without +24,243.1429613426851,0.0,0.0,58.44108789444635,0.0798209999993559,100,mac,phase-30,without +25,247.57986270663923,0.0,0.0,59.507527741842864,0.0812775829981546,100,mac,phase-30,without +26,242.2868816000614,0.0,0.0,58.235323223295474,0.0795399589987937,100,mac,phase-30,without +27,246.40584599254623,0.0,0.0,59.22534472655436,0.080892166995909,100,mac,phase-30,without +28,225.71531849657757,0.0,0.0,54.25223372512112,0.0740997079992666,100,mac,phase-30,without +29,243.29945488439853,0.0,0.0,58.47870219664816,0.0798723750049248,100,mac,phase-30,without +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.0776710830032243,100,mac,phase-6,without +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.0761652920045889,100,mac,phase-6,without +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.0773927499976707,100,mac,phase-6,without +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.0778755829960573,100,mac,phase-6,without +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986,100,mac,phase-6,without +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.0779352500030654,100,mac,phase-6,without +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.0773458750045392,100,mac,phase-6,without +7,342.3226982986895,22.968494031768262,0.0,74.03884179294928,0.0776502919979975,100,mac,phase-6,without +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.0789362499999697,100,mac,phase-6,without +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.0777301670023007,100,mac,phase-6,without +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.0775382089996128,100,mac,phase-6,without +11,335.4773722078628,22.5091998270776,0.0,72.55830889817277,0.0760975419980241,100,mac,phase-6,without +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.0786656250056694,100,mac,phase-6,without +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.0751801669975975,100,mac,phase-6,without +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.0794126249966211,100,mac,phase-6,without +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.0779685840025194,100,mac,phase-6,without +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.0783674590056762,100,mac,phase-6,without +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854,100,mac,phase-6,without +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.077208333001181,100,mac,phase-6,without +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402,100,mac,phase-6,without +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902,100,mac,phase-6,without +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.0720434999966528,100,mac,phase-6,without +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.0812008749999222,100,mac,phase-6,without +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.0808140000008279,100,mac,phase-6,without +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.0795359170006122,100,mac,phase-6,without +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.0832596659965929,100,mac,phase-6,without +26,404.5004296622107,27.140372960129103,0.0,87.48687558780871,0.0917542910028714,100,mac,phase-6,without +27,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141,100,mac,phase-6,without +28,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.0817928329997812,100,mac,phase-6,without +29,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364,100,mac,phase-6,without +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.0838514580027549,100,mac,phase-7,without +1,398.7176187759755,1.608272748003935,12.832676301781396,78.77185896994273,0.0833907080013887,100,mac,phase-7,without +2,393.4009922947646,1.5868275319452692,12.661561348646623,77.72149015840266,0.082278750000114,100,mac,phase-7,without +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.0802324579999549,100,mac,phase-7,without +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.0815308750024996,100,mac,phase-7,without +5,397.77390581907474,1.6044661747324025,12.80230301921896,78.58541618324745,0.0831933329973253,100,mac,phase-7,without +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.0835334169969428,100,mac,phase-7,without +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.0827721669993479,100,mac,phase-7,without +8,402.1872645561368,1.6222679578734929,12.944346413865578,79.45733268667878,0.0841163750010309,100,mac,phase-7,without +9,411.01636787259105,1.6578811477213755,13.228509991193476,81.20163704776988,0.0859629580008913,100,mac,phase-7,without +10,398.47576527691933,1.60729720447833,12.824892277400007,78.72407766101153,0.083340124998358,100,mac,phase-7,without +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.0853469160065287,100,mac,phase-7,without +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.0847861250003916,100,mac,phase-7,without +13,397.95758979573526,1.6052070848903608,12.808214864854335,78.62170534535913,0.0832317500025965,100,mac,phase-7,without +14,397.9368723030194,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143,100,mac,phase-7,without +15,378.44542169605904,1.5265025412950282,12.180218194083244,74.7668223871794,0.0791508329930366,100,mac,phase-7,without +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.081899249998969,100,mac,phase-7,without +17,394.47718603434674,1.591168481483079,12.696198508500403,77.93410624930665,0.0825038330003735,100,mac,phase-7,without +18,390.30130111050465,1.574324575907918,12.561798178598597,77.10910579082322,0.0816304580002906,100,mac,phase-7,without +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.0853198749973671,100,mac,phase-7,without +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.0832003749965224,100,mac,phase-7,without +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.082188499996846,100,mac,phase-7,without +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.0817053749997285,100,mac,phase-7,without +23,408.1975839921713,1.6465112631616992,13.137787787311058,80.64474957694073,0.0853734170013922,100,mac,phase-7,without +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.0866518750044633,100,mac,phase-7,without +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.0798403750013676,100,mac,phase-7,without +26,374.92099637623625,1.5122863719377595,12.06678500942004,74.07052625886818,0.0784137090013246,100,mac,phase-7,without +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.0841622919979272,100,mac,phase-7,without +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.0840398750005988,100,mac,phase-7,without +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.0819778340010088,100,mac,phase-7,without +0,259.2976060090398,0.9378436735173552,0.0,59.34286692773609,0.0769311670010211,100,mac,phase-9,without +1,255.2444208838569,0.9231838620144488,0.0,58.41525471712115,0.0757286250009201,100,mac,phase-9,without +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.0805979579963604,100,mac,phase-9,without +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538,100,mac,phase-9,without +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.0820534579979721,100,mac,phase-9,without +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388,100,mac,phase-9,without +6,274.5216566791403,0.9929069647911036,0.0,62.827044151437065,0.0814480000044568,100,mac,phase-9,without +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.083064166996337,100,mac,phase-9,without +8,281.3432946979796,1.0175798885309817,0.0,64.38824467083968,0.0834719160047825,100,mac,phase-9,without +9,271.4910013468641,0.9819455025017532,0.0,62.13344817554198,0.0805488330006483,100,mac,phase-9,without +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.0789655840053455,100,mac,phase-9,without +11,269.5141946577938,0.9747956653873808,0.0,61.68103606847738,0.0799623330021859,100,mac,phase-9,without +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.0766440829975181,100,mac,phase-9,without +13,269.12490022342575,0.9733876411174044,0.0,61.59194211898058,0.0798468329958268,100,mac,phase-9,without +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.0748828750001848,100,mac,phase-9,without +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.0800642079993849,100,mac,phase-9,without +16,269.730891764629,0.975579428931684,0.0,61.730629382401375,0.0800266250007553,100,mac,phase-9,without +17,218.2457214537565,0.7893646697629007,0.0,49.947729966031815,0.0647514579977723,100,mac,phase-9,without +18,268.35867106427986,0.9706162959421448,0.0,61.41658286392536,0.0796194999929866,100,mac,phase-9,without +19,268.1440805449837,0.9698401516343884,0.0,61.367471663762174,0.0795558329991763,100,mac,phase-9,without +20,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.0736840000026859,100,mac,phase-9,without +21,267.1683200118613,0.9663109603821372,0.0,61.14415904486973,0.0792663340034778,100,mac,phase-9,without +22,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673,100,mac,phase-9,without +23,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.0803771249993587,100,mac,phase-9,without +24,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.0804226670006755,100,mac,phase-9,without +25,270.16990124801515,0.9771672656762832,0.0,61.831101121240685,0.0801568749957368,100,mac,phase-9,without +26,266.0163051495714,0.9621442815337454,0.0,60.8805088487732,0.0789245420019142,100,mac,phase-9,without +27,271.33244897442904,0.9813720404413124,0.0,62.097161869303726,0.0805017919992678,100,mac,phase-9,without +28,271.5900102009636,0.982303603869786,0.0,62.15610734831233,0.0805782079987693,100,mac,phase-9,without +29,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.082180834004248,100,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n1000/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n1000/with_smell.csv new file mode 100644 index 000000000..16459de01 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n1000/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006,1000,mac,phase-19,with +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721,1000,mac,phase-19,with +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177,1000,mac,phase-19,with +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329,1000,mac,phase-19,with +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873,1000,mac,phase-19,with +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295,1000,mac,phase-19,with +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759,1000,mac,phase-19,with +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249,1000,mac,phase-19,with +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635,1000,mac,phase-19,with +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924,1000,mac,phase-19,with +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713,1000,mac,phase-19,with +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727,1000,mac,phase-19,with +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946,1000,mac,phase-19,with +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714,1000,mac,phase-19,with +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466,1000,mac,phase-19,with +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588,1000,mac,phase-19,with +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919,1000,mac,phase-19,with +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543,1000,mac,phase-19,with +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764,1000,mac,phase-19,with +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398,1000,mac,phase-19,with +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131,1000,mac,phase-19,with +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727,1000,mac,phase-19,with +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806,1000,mac,phase-19,with +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098,1000,mac,phase-19,with +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595,1000,mac,phase-19,with +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957,1000,mac,phase-19,with +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162,1000,mac,phase-19,with +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392,1000,mac,phase-19,with +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415,1000,mac,phase-19,with +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499,1000,mac,phase-19,with +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854,1000,mac,phase-26,with +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071,1000,mac,phase-26,with +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433,1000,mac,phase-26,with +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542,1000,mac,phase-26,with +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617,1000,mac,phase-26,with +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172,1000,mac,phase-26,with +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277,1000,mac,phase-26,with +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914,1000,mac,phase-26,with +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907,1000,mac,phase-26,with +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628,1000,mac,phase-26,with +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385,1000,mac,phase-26,with +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806,1000,mac,phase-26,with +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976,1000,mac,phase-26,with +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619,1000,mac,phase-26,with +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589,1000,mac,phase-26,with +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459,1000,mac,phase-26,with +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566,1000,mac,phase-26,with +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083,1000,mac,phase-26,with +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654,1000,mac,phase-26,with +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998,1000,mac,phase-26,with +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395,1000,mac,phase-26,with +21,4364.406018298075,2.093846030238117,0.0,678.904648566254,0.6681513339935918,1000,mac,phase-26,with +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177,1000,mac,phase-26,with +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178,1000,mac,phase-26,with +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715,1000,mac,phase-26,with +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321,1000,mac,phase-26,with +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689,1000,mac,phase-26,with +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114,1000,mac,phase-26,with +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263,1000,mac,phase-26,with +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523,1000,mac,phase-26,with +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707,1000,mac,phase-21,with +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797,1000,mac,phase-21,with +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437,1000,mac,phase-21,with +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597,1000,mac,phase-21,with +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613,1000,mac,phase-21,with +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439,1000,mac,phase-21,with +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201,1000,mac,phase-21,with +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153,1000,mac,phase-21,with +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435,1000,mac,phase-21,with +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157,1000,mac,phase-21,with +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486,1000,mac,phase-21,with +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289,1000,mac,phase-21,with +12,4818.831734850124,2.8785491743233154,0.0,724.0955343752076,0.7059918749946519,1000,mac,phase-21,with +13,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356,1000,mac,phase-21,with +14,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292,1000,mac,phase-21,with +15,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317,1000,mac,phase-21,with +16,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879,1000,mac,phase-21,with +17,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976,1000,mac,phase-21,with +18,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954,1000,mac,phase-21,with +19,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227,1000,mac,phase-21,with +20,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144,1000,mac,phase-21,with +21,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737,1000,mac,phase-21,with +22,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129,1000,mac,phase-21,with +23,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405,1000,mac,phase-21,with +24,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877,1000,mac,phase-21,with +25,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048,1000,mac,phase-21,with +26,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602,1000,mac,phase-21,with +27,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938,1000,mac,phase-21,with +28,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162,1000,mac,phase-21,with +29,4545.066951538386,2.715014642652162,0.0,682.9586223656848,0.6658834579939139,1000,mac,phase-21,with +0,4389.025421830659,1.6062307124723365,0.0334631398431736,684.0535046741562,0.6730389170043054,1000,mac,phase-28,with +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023,1000,mac,phase-28,with +2,4354.233157511607,1.5934979533436806,0.0331978740279933,678.63094088024,0.667703667000751,1000,mac,phase-28,with +3,4357.945080142954,1.5948563879754634,0.0332261747494888,679.2094642290505,0.6682728750020033,1000,mac,phase-28,with +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661,1000,mac,phase-28,with +5,4408.816460337069,1.6134735444966395,0.0336140321770133,687.1380457625065,0.6760737910008174,1000,mac,phase-28,with +6,4345.096674030936,1.5901543180351092,0.0331282149590647,677.2069701932021,0.6663026250025723,1000,mac,phase-28,with +7,4424.448338877007,1.6191942685734702,0.0337332139286139,689.5743591287267,0.678470874998311,1000,mac,phase-28,with +8,4389.556078381045,1.6064249143206022,0.0334671857150125,684.1362103862865,0.6731202909941203,1000,mac,phase-28,with +9,4359.39441815639,1.5953867952996852,0.0332372249020767,679.4353514482535,0.6684951249990263,1000,mac,phase-28,with +10,4364.926572416989,1.5974113714243328,0.0332794035713402,680.2975678053377,0.6693434580010944,1000,mac,phase-28,with +11,4336.208818024484,1.586901671738146,0.0330604514945447,675.8217494514829,0.6649397090004641,1000,mac,phase-28,with +12,4360.874458026974,1.595928438436221,0.0332485091340879,679.6660237190256,0.668722082999011,1000,mac,phase-28,with +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759,1000,mac,phase-28,with +14,4406.642727210601,1.6126780337458744,0.0335974590363723,686.7992576215242,0.6757404580057482,1000,mac,phase-28,with +15,4401.9515346063135,1.6109612203499777,0.0335616920906245,686.0681097165467,0.6750210829995922,1000,mac,phase-28,with +16,4349.9085088683905,1.5919152822940132,0.0331649017144586,677.9569208469628,0.6670404999968014,1000,mac,phase-28,with +17,4371.0961810783265,1.5996692336974665,0.0333264423686972,681.2591349009085,0.6702895420021378,1000,mac,phase-28,with +18,4354.880661070511,1.5937349171346793,0.0332028107736391,678.7318578347315,0.6678029589966172,1000,mac,phase-28,with +19,4358.4390615102575,1.5950371679817958,0.0332299409996207,679.2864539142473,0.6683486250040005,1000,mac,phase-28,with +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141,1000,mac,phase-28,with +21,4353.926660820881,1.5933857862107526,0.033195537212724,678.5831717025042,0.6676566669993917,1000,mac,phase-28,with +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694,1000,mac,phase-28,with +23,4390.797833401572,1.606879353486394,0.0334766531976332,684.3297446660181,0.6733107089967234,1000,mac,phase-28,with +24,4370.716046913472,1.599530117809139,0.0333235441210237,681.199888921967,0.6702312499983236,1000,mac,phase-28,with +25,4326.591936832465,1.5833822275690632,0.0329871297410221,674.3229061659748,0.6634649999978137,1000,mac,phase-28,with +26,4357.462510925597,1.5946797844192484,0.0332224955087343,679.1342531895475,0.6681988750060555,1000,mac,phase-28,with +27,4363.351975051161,1.5968351235319895,0.0332673984069164,680.0521582341861,0.6691019999998389,1000,mac,phase-28,with +28,4369.617223686835,1.599127986710644,0.033315166389805,681.0286313403956,0.67006274999585,1000,mac,phase-28,with +29,4413.620958856811,1.6152318239183203,0.0336506629982983,687.8868530112147,0.6768105410010321,1000,mac,phase-28,with +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424,1000,mac,phase-17,with +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305,1000,mac,phase-17,with +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748,1000,mac,phase-17,with +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677,1000,mac,phase-17,with +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616,1000,mac,phase-17,with +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506,1000,mac,phase-17,with +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521,1000,mac,phase-17,with +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271,1000,mac,phase-17,with +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755,1000,mac,phase-17,with +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792,1000,mac,phase-17,with +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214,1000,mac,phase-17,with +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096,1000,mac,phase-17,with +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535,1000,mac,phase-17,with +13,4363.96912667838,2.588947138539631,0.0,676.9432934681511,0.6655433749983786,1000,mac,phase-17,with +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162,1000,mac,phase-17,with +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428,1000,mac,phase-17,with +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266,1000,mac,phase-17,with +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628,1000,mac,phase-17,with +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434,1000,mac,phase-17,with +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379,1000,mac,phase-17,with +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164,1000,mac,phase-17,with +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172,1000,mac,phase-17,with +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261,1000,mac,phase-17,with +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249,1000,mac,phase-17,with +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646,1000,mac,phase-17,with +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692,1000,mac,phase-17,with +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895,1000,mac,phase-17,with +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225,1000,mac,phase-17,with +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484,1000,mac,phase-17,with +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813,1000,mac,phase-17,with +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011,1000,mac,phase-10,with +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471,1000,mac,phase-10,with +2,4382.027550348223,1.966185465922483,0.0,684.3325176731897,0.6720537090004655,1000,mac,phase-10,with +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344,1000,mac,phase-10,with +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364,1000,mac,phase-10,with +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557,1000,mac,phase-10,with +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387,1000,mac,phase-10,with +7,4368.331000730204,1.9600399188023856,0.0,682.1935547899488,0.6699531249978463,1000,mac,phase-10,with +8,4367.809372487584,1.9598058678162904,0.0,682.1120931458903,0.6698731249998673,1000,mac,phase-10,with +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433,1000,mac,phase-10,with +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591,1000,mac,phase-10,with +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015,1000,mac,phase-10,with +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553,1000,mac,phase-10,with +13,4356.402555742098,1.9546877080056264,0.0,680.330713286365,0.668123707997438,1000,mac,phase-10,with +14,4365.2036763306705,1.958636709965622,0.0,681.7051667651533,0.6694734999982757,1000,mac,phase-10,with +15,4360.810862240808,1.9566656846539945,0.0,681.0191497350809,0.6687997920016642,1000,mac,phase-10,with +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262,1000,mac,phase-10,with +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621,1000,mac,phase-10,with +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128,1000,mac,phase-10,with +19,4438.056671531104,1.9913253452300512,0.0,693.0824739711713,0.6806466670022928,1000,mac,phase-10,with +20,4475.827721362907,2.00827295415278,0.0,698.9811036191074,0.6864394590011216,1000,mac,phase-10,with +21,4374.899715425766,1.962987255672319,0.0,683.2193778852723,0.6709605420037406,1000,mac,phase-10,with +22,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819,1000,mac,phase-10,with +23,4370.521024384246,1.96102256727484,0.0,682.5355664235396,0.6702890000015032,1000,mac,phase-10,with +24,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454,1000,mac,phase-10,with +25,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797,1000,mac,phase-10,with +26,4382.123445150023,1.9662284932570664,0.0,684.3474933734551,0.6720684159954544,1000,mac,phase-10,with +27,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432,1000,mac,phase-10,with +28,4361.726697985227,1.9570766138207232,0.0,681.162173979806,0.6689402499978314,1000,mac,phase-10,with +29,4360.017283100929,1.9563096111804792,0.0,680.8952180608669,0.6686780840027495,1000,mac,phase-10,with +0,4595.378147494374,2.7001478144444446,0.0,709.7629052500422,0.6829660829971544,1000,mac,phase-11,with +1,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479,1000,mac,phase-11,with +2,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886,1000,mac,phase-11,with +3,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246,1000,mac,phase-11,with +4,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568,1000,mac,phase-11,with +5,4606.5699898098865,2.7067239062475346,0.0,711.4915017359026,0.684629416995449,1000,mac,phase-11,with +6,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654,1000,mac,phase-11,with +7,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804,1000,mac,phase-11,with +8,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281,1000,mac,phase-11,with +9,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404,1000,mac,phase-11,with +10,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845,1000,mac,phase-11,with +11,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495,1000,mac,phase-11,with +12,4503.148936965444,2.645955864784455,0.0,695.5179682039748,0.6692589580052299,1000,mac,phase-11,with +13,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871,1000,mac,phase-11,with +14,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482,1000,mac,phase-11,with +15,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759,1000,mac,phase-11,with +16,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602,1000,mac,phase-11,with +17,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186,1000,mac,phase-11,with +18,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621,1000,mac,phase-11,with +19,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419,1000,mac,phase-11,with +20,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636,1000,mac,phase-11,with +21,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363,1000,mac,phase-11,with +22,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023,1000,mac,phase-11,with +23,4462.746741007515,2.622216381848967,0.0,689.2777896895653,0.6632543750019977,1000,mac,phase-11,with +24,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533,1000,mac,phase-11,with +25,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954,1000,mac,phase-11,with +26,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133,1000,mac,phase-11,with +27,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709,1000,mac,phase-11,with +28,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768,1000,mac,phase-11,with +29,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695,1000,mac,phase-11,with +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536,1000,mac,phase-29,with +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493,1000,mac,phase-29,with +2,5399.907734117013,5.218201322461614,113.57066190351168,759.8964129645852,0.6863256669967086,1000,mac,phase-29,with +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003,1000,mac,phase-29,with +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715,1000,mac,phase-29,with +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272,1000,mac,phase-29,with +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599,1000,mac,phase-29,with +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276,1000,mac,phase-29,with +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962,1000,mac,phase-29,with +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584,1000,mac,phase-29,with +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608,1000,mac,phase-29,with +11,5399.536300795058,5.2178423878376785,113.56284993147356,759.8441433957505,0.6862784580007428,1000,mac,phase-29,with +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153,1000,mac,phase-29,with +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151,1000,mac,phase-29,with +14,5409.343253817727,5.227319337769412,113.7691094086502,761.224216684217,0.687524916997063,1000,mac,phase-29,with +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099,1000,mac,phase-29,with +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416,1000,mac,phase-29,with +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084,1000,mac,phase-29,with +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481,1000,mac,phase-29,with +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695,1000,mac,phase-29,with +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285,1000,mac,phase-29,with +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882,1000,mac,phase-29,with +22,5438.732295420172,5.25571944075392,114.38721865640856,765.3599590697888,0.6912602500015055,1000,mac,phase-29,with +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235,1000,mac,phase-29,with +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406,1000,mac,phase-29,with +25,5438.364150832097,5.255363684198263,114.37947585290104,765.3081523046171,0.6912134590020287,1000,mac,phase-29,with +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145,1000,mac,phase-29,with +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306,1000,mac,phase-29,with +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348,1000,mac,phase-29,with +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703,1000,mac,phase-29,with +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463,1000,mac,phase-16,with +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947,1000,mac,phase-16,with +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871,1000,mac,phase-16,with +3,4335.694701631531,2.062035021448992,0.0,673.6867966850125,0.6660807919979561,1000,mac,phase-16,with +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711,1000,mac,phase-16,with +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248,1000,mac,phase-16,with +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867,1000,mac,phase-16,with +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616,1000,mac,phase-16,with +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431,1000,mac,phase-16,with +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603,1000,mac,phase-16,with +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623,1000,mac,phase-16,with +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934,1000,mac,phase-16,with +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854,1000,mac,phase-16,with +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233,1000,mac,phase-16,with +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968,1000,mac,phase-16,with +15,4422.4905613437695,2.103314704351033,0.0,687.1732685699118,0.6794149999986985,1000,mac,phase-16,with +16,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684,1000,mac,phase-16,with +17,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233,1000,mac,phase-16,with +18,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367,1000,mac,phase-16,with +19,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686,1000,mac,phase-16,with +20,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466,1000,mac,phase-16,with +21,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982,1000,mac,phase-16,with +22,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603,1000,mac,phase-16,with +23,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318,1000,mac,phase-16,with +24,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496,1000,mac,phase-16,with +25,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769,1000,mac,phase-16,with +26,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032,1000,mac,phase-16,with +27,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459,1000,mac,phase-16,with +28,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574,1000,mac,phase-16,with +29,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194,1000,mac,phase-16,with +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088,1000,mac,phase-20,with +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537,1000,mac,phase-20,with +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334,1000,mac,phase-20,with +3,4348.094503970354,1.7675587619781763,0.0,678.475763277057,0.6687571250004112,1000,mac,phase-20,with +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395,1000,mac,phase-20,with +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458,1000,mac,phase-20,with +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595,1000,mac,phase-20,with +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057,1000,mac,phase-20,with +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031,1000,mac,phase-20,with +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331,1000,mac,phase-20,with +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702,1000,mac,phase-20,with +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254,1000,mac,phase-20,with +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906,1000,mac,phase-20,with +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986,1000,mac,phase-20,with +14,4346.65978133577,1.766975527974994,0.0,678.2518894551563,0.6685364579971065,1000,mac,phase-20,with +15,4367.501700837171,1.7754480479254011,0.0,681.5040582451767,0.6717420419954578,1000,mac,phase-20,with +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579,1000,mac,phase-20,with +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937,1000,mac,phase-20,with +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709,1000,mac,phase-20,with +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252,1000,mac,phase-20,with +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354,1000,mac,phase-20,with +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782,1000,mac,phase-20,with +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695,1000,mac,phase-20,with +23,4317.882204189577,1.755277056705152,0.0,673.7614422945209,0.6641103330039186,1000,mac,phase-20,with +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662,1000,mac,phase-20,with +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897,1000,mac,phase-20,with +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202,1000,mac,phase-20,with +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887,1000,mac,phase-20,with +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396,1000,mac,phase-20,with +29,4419.641433587555,1.7966435489399235,0.0,689.6399313138453,0.679761375002272,1000,mac,phase-20,with +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299,1000,mac,phase-18,with +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385,1000,mac,phase-18,with +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045,1000,mac,phase-18,with +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057,1000,mac,phase-18,with +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268,1000,mac,phase-18,with +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344,1000,mac,phase-18,with +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375,1000,mac,phase-18,with +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743,1000,mac,phase-18,with +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125,1000,mac,phase-18,with +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514,1000,mac,phase-18,with +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048,1000,mac,phase-18,with +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856,1000,mac,phase-18,with +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496,1000,mac,phase-18,with +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685,1000,mac,phase-18,with +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462,1000,mac,phase-18,with +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559,1000,mac,phase-18,with +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298,1000,mac,phase-18,with +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533,1000,mac,phase-18,with +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415,1000,mac,phase-18,with +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282,1000,mac,phase-18,with +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979,1000,mac,phase-18,with +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028,1000,mac,phase-18,with +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217,1000,mac,phase-18,with +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957,1000,mac,phase-18,with +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171,1000,mac,phase-18,with +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815,1000,mac,phase-18,with +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784,1000,mac,phase-18,with +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544,1000,mac,phase-18,with +28,4332.967360737383,2.240071707660648,0.0,676.2341844648398,0.6700551249959972,1000,mac,phase-18,with +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539,1000,mac,phase-18,with +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029,1000,mac,phase-27,with +1,4354.354070461016,2.273796674817034,0.0,681.0021041077019,0.6721263750005164,1000,mac,phase-27,with +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739,1000,mac,phase-27,with +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867,1000,mac,phase-27,with +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185,1000,mac,phase-27,with +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036,1000,mac,phase-27,with +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834,1000,mac,phase-27,with +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246,1000,mac,phase-27,with +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938,1000,mac,phase-27,with +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276,1000,mac,phase-27,with +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405,1000,mac,phase-27,with +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806,1000,mac,phase-27,with +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341,1000,mac,phase-27,with +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212,1000,mac,phase-27,with +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047,1000,mac,phase-27,with +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004,1000,mac,phase-27,with +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738,1000,mac,phase-27,with +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917,1000,mac,phase-27,with +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045,1000,mac,phase-27,with +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948,1000,mac,phase-27,with +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894,1000,mac,phase-27,with +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339,1000,mac,phase-27,with +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831,1000,mac,phase-27,with +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966,1000,mac,phase-27,with +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685,1000,mac,phase-27,with +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241,1000,mac,phase-27,with +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349,1000,mac,phase-27,with +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466,1000,mac,phase-27,with +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023,1000,mac,phase-27,with +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449,1000,mac,phase-27,with +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649,1000,mac,phase-5,with +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086,1000,mac,phase-5,with +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261,1000,mac,phase-5,with +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379,1000,mac,phase-5,with +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596,1000,mac,phase-5,with +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012,1000,mac,phase-5,with +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358,1000,mac,phase-5,with +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984,1000,mac,phase-5,with +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149,1000,mac,phase-5,with +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144,1000,mac,phase-5,with +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066,1000,mac,phase-5,with +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439,1000,mac,phase-5,with +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846,1000,mac,phase-5,with +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843,1000,mac,phase-5,with +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685,1000,mac,phase-5,with +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386,1000,mac,phase-5,with +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428,1000,mac,phase-5,with +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229,1000,mac,phase-5,with +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533,1000,mac,phase-5,with +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505,1000,mac,phase-5,with +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795,1000,mac,phase-5,with +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432,1000,mac,phase-5,with +22,4392.603872271309,2.607442063569521,0.0,685.7572627187839,0.6731581249987357,1000,mac,phase-5,with +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675,1000,mac,phase-5,with +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446,1000,mac,phase-5,with +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581,1000,mac,phase-5,with +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689,1000,mac,phase-5,with +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216,1000,mac,phase-5,with +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154,1000,mac,phase-5,with +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794,1000,mac,phase-5,with +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449,1000,mac,phase-2,with +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021,1000,mac,phase-2,with +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229,1000,mac,phase-2,with +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491,1000,mac,phase-2,with +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962,1000,mac,phase-2,with +5,4345.360137259517,1.6675467938398043,0.0,679.7254241049811,0.6724117499979911,1000,mac,phase-2,with +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415,1000,mac,phase-2,with +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838,1000,mac,phase-2,with +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865,1000,mac,phase-2,with +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737,1000,mac,phase-2,with +10,4329.558075685815,1.6614826987404503,0.0,677.2535776605824,0.6699664999978268,1000,mac,phase-2,with +11,4307.3984058292945,1.6529788497487543,0.0,673.7872387345873,0.6665374580043135,1000,mac,phase-2,with +12,4349.584627244564,1.6691679562999129,0.0,680.3862423469704,0.6730654580023838,1000,mac,phase-2,with +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554,1000,mac,phase-2,with +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981,1000,mac,phase-2,with +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243,1000,mac,phase-2,with +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875,1000,mac,phase-2,with +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369,1000,mac,phase-2,with +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125,1000,mac,phase-2,with +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987,1000,mac,phase-2,with +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684,1000,mac,phase-2,with +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822,1000,mac,phase-2,with +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829,1000,mac,phase-2,with +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659,1000,mac,phase-2,with +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864,1000,mac,phase-2,with +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879,1000,mac,phase-2,with +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664,1000,mac,phase-2,with +27,4334.978371818408,1.6635627558938415,0.0,678.1014505574477,0.6708052499961923,1000,mac,phase-2,with +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682,1000,mac,phase-2,with +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487,1000,mac,phase-2,with +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824,1000,mac,phase-3,with +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309,1000,mac,phase-3,with +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063,1000,mac,phase-3,with +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915,1000,mac,phase-3,with +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849,1000,mac,phase-3,with +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294,1000,mac,phase-3,with +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797,1000,mac,phase-3,with +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292,1000,mac,phase-3,with +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422,1000,mac,phase-3,with +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556,1000,mac,phase-3,with +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638,1000,mac,phase-3,with +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283,1000,mac,phase-3,with +12,4356.767493437678,2.397615735537004,0.0,680.5232662699196,0.6708844999957364,1000,mac,phase-3,with +13,4341.809499462903,2.389384054186092,0.0,678.1868407131525,0.6685811670031399,1000,mac,phase-3,with +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968,1000,mac,phase-3,with +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453,1000,mac,phase-3,with +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709,1000,mac,phase-3,with +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409,1000,mac,phase-3,with +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754,1000,mac,phase-3,with +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893,1000,mac,phase-3,with +20,4375.239322141577,2.407781149971288,0.0,683.4085497335172,0.6737289170050644,1000,mac,phase-3,with +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018,1000,mac,phase-3,with +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538,1000,mac,phase-3,with +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116,1000,mac,phase-3,with +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911,1000,mac,phase-3,with +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852,1000,mac,phase-3,with +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635,1000,mac,phase-3,with +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468,1000,mac,phase-3,with +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446,1000,mac,phase-3,with +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469,1000,mac,phase-3,with +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043,1000,mac,phase-4,with +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336,1000,mac,phase-4,with +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125,1000,mac,phase-4,with +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834,1000,mac,phase-4,with +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116,1000,mac,phase-4,with +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327,1000,mac,phase-4,with +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987,1000,mac,phase-4,with +7,4337.0403644270955,2.031509830681979,0.0,678.790710966559,0.6709766249987297,1000,mac,phase-4,with +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983,1000,mac,phase-4,with +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326,1000,mac,phase-4,with +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708,1000,mac,phase-4,with +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113,1000,mac,phase-4,with +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485,1000,mac,phase-4,with +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637,1000,mac,phase-4,with +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956,1000,mac,phase-4,with +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545,1000,mac,phase-4,with +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394,1000,mac,phase-4,with +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118,1000,mac,phase-4,with +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574,1000,mac,phase-4,with +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509,1000,mac,phase-4,with +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263,1000,mac,phase-4,with +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787,1000,mac,phase-4,with +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361,1000,mac,phase-4,with +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064,1000,mac,phase-4,with +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606,1000,mac,phase-4,with +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084,1000,mac,phase-4,with +26,4347.693469734016,2.03649984376459,0.0,680.4580297640961,0.6726247499973397,1000,mac,phase-4,with +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489,1000,mac,phase-4,with +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278,1000,mac,phase-4,with +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626,1000,mac,phase-4,with +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826,1000,mac,phase-22,with +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989,1000,mac,phase-22,with +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705,1000,mac,phase-22,with +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731,1000,mac,phase-22,with +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786,1000,mac,phase-22,with +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694,1000,mac,phase-22,with +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159,1000,mac,phase-22,with +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917,1000,mac,phase-22,with +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899,1000,mac,phase-22,with +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922,1000,mac,phase-22,with +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615,1000,mac,phase-22,with +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488,1000,mac,phase-22,with +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839,1000,mac,phase-22,with +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955,1000,mac,phase-22,with +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446,1000,mac,phase-22,with +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393,1000,mac,phase-22,with +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975,1000,mac,phase-22,with +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217,1000,mac,phase-22,with +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491,1000,mac,phase-22,with +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536,1000,mac,phase-22,with +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475,1000,mac,phase-22,with +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606,1000,mac,phase-22,with +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018,1000,mac,phase-22,with +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269,1000,mac,phase-22,with +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302,1000,mac,phase-22,with +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841,1000,mac,phase-22,with +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071,1000,mac,phase-22,with +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335,1000,mac,phase-22,with +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998,1000,mac,phase-22,with +29,4298.143686713266,2.320919342687324,0.0,669.4526064028538,0.6634929580031894,1000,mac,phase-22,with +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242,1000,mac,phase-25,with +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093,1000,mac,phase-25,with +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832,1000,mac,phase-25,with +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005,1000,mac,phase-25,with +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286,1000,mac,phase-25,with +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888,1000,mac,phase-25,with +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056,1000,mac,phase-25,with +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718,1000,mac,phase-25,with +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019,1000,mac,phase-25,with +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522,1000,mac,phase-25,with +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947,1000,mac,phase-25,with +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863,1000,mac,phase-25,with +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808,1000,mac,phase-25,with +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149,1000,mac,phase-25,with +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736,1000,mac,phase-25,with +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961,1000,mac,phase-25,with +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928,1000,mac,phase-25,with +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731,1000,mac,phase-25,with +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366,1000,mac,phase-25,with +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125,1000,mac,phase-25,with +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944,1000,mac,phase-25,with +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427,1000,mac,phase-25,with +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008,1000,mac,phase-25,with +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724,1000,mac,phase-25,with +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941,1000,mac,phase-25,with +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141,1000,mac,phase-25,with +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581,1000,mac,phase-25,with +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955,1000,mac,phase-25,with +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355,1000,mac,phase-25,with +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641,1000,mac,phase-25,with +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252,1000,mac,phase-13,with +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143,1000,mac,phase-13,with +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413,1000,mac,phase-13,with +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653,1000,mac,phase-13,with +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525,1000,mac,phase-13,with +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557,1000,mac,phase-13,with +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427,1000,mac,phase-13,with +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632,1000,mac,phase-13,with +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706,1000,mac,phase-13,with +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636,1000,mac,phase-13,with +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242,1000,mac,phase-13,with +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164,1000,mac,phase-13,with +12,4419.158622070723,2.6776616900106394,0.0,689.3792545965366,0.6806454170000507,1000,mac,phase-13,with +13,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739,1000,mac,phase-13,with +14,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554,1000,mac,phase-13,with +15,4337.461148529906,2.628159462600572,0.0,676.6346241751016,0.6680622499989113,1000,mac,phase-13,with +16,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586,1000,mac,phase-13,with +17,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295,1000,mac,phase-13,with +18,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005,1000,mac,phase-13,with +19,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879,1000,mac,phase-13,with +20,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957,1000,mac,phase-13,with +21,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418,1000,mac,phase-13,with +22,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706,1000,mac,phase-13,with +23,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824,1000,mac,phase-13,with +24,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733,1000,mac,phase-13,with +25,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746,1000,mac,phase-13,with +26,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593,1000,mac,phase-13,with +27,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348,1000,mac,phase-13,with +28,4358.332696369016,2.640805974943643,0.0,679.8905408149211,0.671276916997158,1000,mac,phase-13,with +29,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551,1000,mac,phase-13,with +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178,1000,mac,phase-14,with +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928,1000,mac,phase-14,with +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591,1000,mac,phase-14,with +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788,1000,mac,phase-14,with +4,4332.3764799353785,2.127886286805196,0.0,674.240718908165,0.6668309590022545,1000,mac,phase-14,with +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093,1000,mac,phase-14,with +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905,1000,mac,phase-14,with +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291,1000,mac,phase-14,with +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341,1000,mac,phase-14,with +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862,1000,mac,phase-14,with +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245,1000,mac,phase-14,with +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937,1000,mac,phase-14,with +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288,1000,mac,phase-14,with +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575,1000,mac,phase-14,with +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733,1000,mac,phase-14,with +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325,1000,mac,phase-14,with +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989,1000,mac,phase-14,with +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246,1000,mac,phase-14,with +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973,1000,mac,phase-14,with +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821,1000,mac,phase-14,with +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617,1000,mac,phase-14,with +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726,1000,mac,phase-14,with +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684,1000,mac,phase-14,with +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297,1000,mac,phase-14,with +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134,1000,mac,phase-14,with +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271,1000,mac,phase-14,with +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358,1000,mac,phase-14,with +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624,1000,mac,phase-14,with +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369,1000,mac,phase-14,with +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649,1000,mac,phase-14,with +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367,1000,mac,phase-15,with +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543,1000,mac,phase-15,with +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124,1000,mac,phase-15,with +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614,1000,mac,phase-15,with +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087,1000,mac,phase-15,with +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917,1000,mac,phase-15,with +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481,1000,mac,phase-15,with +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222,1000,mac,phase-15,with +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404,1000,mac,phase-15,with +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312,1000,mac,phase-15,with +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824,1000,mac,phase-15,with +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533,1000,mac,phase-15,with +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766,1000,mac,phase-15,with +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874,1000,mac,phase-15,with +14,4319.8312777558685,3.283845150135942,0.0,677.979989007148,0.6700942090028548,1000,mac,phase-15,with +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462,1000,mac,phase-15,with +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344,1000,mac,phase-15,with +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974,1000,mac,phase-15,with +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448,1000,mac,phase-15,with +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309,1000,mac,phase-15,with +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348,1000,mac,phase-15,with +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761,1000,mac,phase-15,with +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644,1000,mac,phase-15,with +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413,1000,mac,phase-15,with +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967,1000,mac,phase-15,with +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905,1000,mac,phase-15,with +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321,1000,mac,phase-15,with +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346,1000,mac,phase-15,with +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033,1000,mac,phase-15,with +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482,1000,mac,phase-15,with +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207,1000,mac,phase-12,with +1,4376.520182243895,1.7528193218882475,0.0,681.9815484700583,0.6767852090051747,1000,mac,phase-12,with +2,4337.145668188113,1.73704962218323,0.0,675.845922230983,0.6706963329997961,1000,mac,phase-12,with +3,4341.215338897163,1.7386795466792917,0.0,676.4800882387582,0.6713256669972907,1000,mac,phase-12,with +4,4308.598732289321,1.725616424404978,0.0,671.3975288184906,0.6662818339973455,1000,mac,phase-12,with +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304,1000,mac,phase-12,with +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381,1000,mac,phase-12,with +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761,1000,mac,phase-12,with +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709,1000,mac,phase-12,with +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578,1000,mac,phase-12,with +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612,1000,mac,phase-12,with +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773,1000,mac,phase-12,with +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248,1000,mac,phase-12,with +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235,1000,mac,phase-12,with +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453,1000,mac,phase-12,with +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269,1000,mac,phase-12,with +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693,1000,mac,phase-12,with +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906,1000,mac,phase-12,with +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411,1000,mac,phase-12,with +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086,1000,mac,phase-12,with +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324,1000,mac,phase-12,with +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115,1000,mac,phase-12,with +22,4321.644617054854,1.730841369780742,0.0,673.4304344885379,0.6682992499991087,1000,mac,phase-12,with +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593,1000,mac,phase-12,with +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319,1000,mac,phase-12,with +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376,1000,mac,phase-12,with +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013,1000,mac,phase-12,with +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729,1000,mac,phase-12,with +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226,1000,mac,phase-12,with +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141,1000,mac,phase-12,with +0,4335.519852132827,1.998426580480376,0.0,678.132752976341,0.6699371249997057,1000,mac,phase-24,with +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514,1000,mac,phase-24,with +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133,1000,mac,phase-24,with +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932,1000,mac,phase-24,with +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202,1000,mac,phase-24,with +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873,1000,mac,phase-24,with +6,4442.778222222504,2.0478665519432595,0.0,694.9093832927462,0.6865109999998822,1000,mac,phase-24,with +7,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265,1000,mac,phase-24,with +8,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114,1000,mac,phase-24,with +9,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809,1000,mac,phase-24,with +10,4319.72068635306,1.9911440690583215,0.0,675.6615541004571,0.667495791996771,1000,mac,phase-24,with +11,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105,1000,mac,phase-24,with +12,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653,1000,mac,phase-24,with +13,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835,1000,mac,phase-24,with +14,4331.440896987593,1.9965464155495631,0.0,677.4947503431518,0.6693068329987,1000,mac,phase-24,with +15,4331.623180642343,1.9966304378844304,0.0,677.5232619221168,0.6693349999986822,1000,mac,phase-24,with +16,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171,1000,mac,phase-24,with +17,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132,1000,mac,phase-24,with +18,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548,1000,mac,phase-24,with +19,4331.732931351392,1.9966810266815465,0.0,677.5404283872713,0.6693519589971402,1000,mac,phase-24,with +20,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524,1000,mac,phase-24,with +21,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489,1000,mac,phase-24,with +22,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182,1000,mac,phase-24,with +23,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922,1000,mac,phase-24,with +24,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994,1000,mac,phase-24,with +25,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739,1000,mac,phase-24,with +26,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682,1000,mac,phase-24,with +27,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981,1000,mac,phase-24,with +28,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206,1000,mac,phase-24,with +29,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657,1000,mac,phase-24,with +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915,1000,mac,phase-23,with +1,4331.503324019295,2.405462702116385,0.0,676.3359297450568,0.6692004170035943,1000,mac,phase-23,with +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156,1000,mac,phase-23,with +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433,1000,mac,phase-23,with +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722,1000,mac,phase-23,with +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264,1000,mac,phase-23,with +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261,1000,mac,phase-23,with +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994,1000,mac,phase-23,with +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461,1000,mac,phase-23,with +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413,1000,mac,phase-23,with +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163,1000,mac,phase-23,with +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986,1000,mac,phase-23,with +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575,1000,mac,phase-23,with +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499,1000,mac,phase-23,with +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617,1000,mac,phase-23,with +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059,1000,mac,phase-23,with +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107,1000,mac,phase-23,with +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997,1000,mac,phase-23,with +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968,1000,mac,phase-23,with +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292,1000,mac,phase-23,with +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103,1000,mac,phase-23,with +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821,1000,mac,phase-23,with +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829,1000,mac,phase-23,with +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914,1000,mac,phase-23,with +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086,1000,mac,phase-23,with +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554,1000,mac,phase-23,with +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729,1000,mac,phase-23,with +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415,1000,mac,phase-23,with +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671,1000,mac,phase-23,with +29,4302.407659547652,2.389304677882228,0.0,671.7928319312199,0.6647052500047721,1000,mac,phase-23,with +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002,1000,mac,phase-8,with +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979,1000,mac,phase-8,with +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341,1000,mac,phase-8,with +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482,1000,mac,phase-8,with +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519,1000,mac,phase-8,with +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996,1000,mac,phase-8,with +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411,1000,mac,phase-8,with +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611,1000,mac,phase-8,with +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564,1000,mac,phase-8,with +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847,1000,mac,phase-8,with +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614,1000,mac,phase-8,with +11,4321.626234797135,1.665251055725281,0.0,678.0902298913345,0.670513832999859,1000,mac,phase-8,with +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626,1000,mac,phase-8,with +13,4312.391545143513,1.66169265528538,0.0,676.6412492322067,0.6690810420041089,1000,mac,phase-8,with +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434,1000,mac,phase-8,with +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791,1000,mac,phase-8,with +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744,1000,mac,phase-8,with +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336,1000,mac,phase-8,with +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872,1000,mac,phase-8,with +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327,1000,mac,phase-8,with +20,4303.975665866741,1.658449766824167,0.0,675.3207450508007,0.6677752920004423,1000,mac,phase-8,with +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242,1000,mac,phase-8,with +22,4338.901909588244,1.671907886770183,0.0,680.8008914928187,0.6731942080004956,1000,mac,phase-8,with +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412,1000,mac,phase-8,with +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607,1000,mac,phase-8,with +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747,1000,mac,phase-8,with +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422,1000,mac,phase-8,with +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349,1000,mac,phase-8,with +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419,1000,mac,phase-8,with +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734,1000,mac,phase-8,with +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348,1000,mac,phase-1,with +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363,1000,mac,phase-1,with +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453,1000,mac,phase-1,with +3,4330.179511549561,1.8300141626022992,0.0,677.2383321019491,0.6701198750015465,1000,mac,phase-1,with +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198,1000,mac,phase-1,with +5,4325.011416888251,1.8278300299586896,0.0,676.430044177803,0.6693200829977286,1000,mac,phase-1,with +6,4325.735138314875,1.828135888054634,0.0,676.5432339175277,0.6694320829992648,1000,mac,phase-1,with +7,4347.06876561683,1.8371518745739288,0.0,679.8798046377772,0.6727335830000811,1000,mac,phase-1,with +8,4327.957460643241,1.8290750826824616,0.0,676.8908042348878,0.6697760000024573,1000,mac,phase-1,with +9,4348.485786304246,1.8377507337943737,0.0,680.1014261027397,0.6729528750001919,1000,mac,phase-1,with +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608,1000,mac,phase-1,with +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531,1000,mac,phase-1,with +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221,1000,mac,phase-1,with +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238,1000,mac,phase-1,with +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096,1000,mac,phase-1,with +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013,1000,mac,phase-1,with +16,4330.573681242119,1.8301807460240551,0.0,677.2999800831567,0.6701808750003693,1000,mac,phase-1,with +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381,1000,mac,phase-1,with +18,4327.686065067118,1.8289603858790968,0.0,676.8483580760569,0.6697339999955148,1000,mac,phase-1,with +19,4330.916964261218,1.8303258237939384,0.0,677.3536694091241,0.6702339999974356,1000,mac,phase-1,with +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324,1000,mac,phase-1,with +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929,1000,mac,phase-1,with +22,4315.7473562602345,1.8239148661399016,0.0,674.9811488256646,0.6678864169953158,1000,mac,phase-1,with +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024,1000,mac,phase-1,with +24,4344.278884181038,1.8359728189422015,0.0,679.4434683045378,0.6723018330012565,1000,mac,phase-1,with +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992,1000,mac,phase-1,with +26,4314.834620808611,1.8235291272118217,0.0,674.8383973685347,0.6677451659998042,1000,mac,phase-1,with +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372,1000,mac,phase-1,with +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875,1000,mac,phase-1,with +29,4332.038357679215,1.8307997454480665,0.0,677.5290548881808,0.6704075419984292,1000,mac,phase-1,with +0,5519.84217345951,4.72710642584526,111.62724174174592,771.4300036520476,0.698210457994719,1000,mac,phase-30,with +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258,1000,mac,phase-30,with +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211,1000,mac,phase-30,with +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729,1000,mac,phase-30,with +4,5448.99591016236,4.666434795034992,110.1945245170406,761.5288268726033,0.6892490419995738,1000,mac,phase-30,with +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845,1000,mac,phase-30,with +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203,1000,mac,phase-30,with +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498,1000,mac,phase-30,with +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937,1000,mac,phase-30,with +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837,1000,mac,phase-30,with +10,5462.674746967845,4.6781491367370425,110.4711503289476,763.4405237645086,0.6909792919977917,1000,mac,phase-30,with +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947,1000,mac,phase-30,with +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783,1000,mac,phase-30,with +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562,1000,mac,phase-30,with +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421,1000,mac,phase-30,with +15,5535.119945995178,4.74019007107577,111.93620267840356,773.5651610990581,0.7001429590018233,1000,mac,phase-30,with +16,5419.449013845381,4.641131295577101,109.59700045127067,757.3994765003574,0.6855116249935236,1000,mac,phase-30,with +17,5435.615181475974,4.654975748459343,109.92392731718992,759.6587923217901,0.6875565000009374,1000,mac,phase-30,with +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156,1000,mac,phase-30,with +19,5449.549965300805,4.6669092791819855,110.2057291212546,761.6062592962202,0.689319124998292,1000,mac,phase-30,with +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152,1000,mac,phase-30,with +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409,1000,mac,phase-30,with +22,5449.408975070284,4.666788537355728,110.20287788927168,761.5865550926165,0.6893012910004472,1000,mac,phase-30,with +23,5401.537331059038,4.6257920108410016,109.23477419885964,754.8962147977454,0.6832459579964052,1000,mac,phase-30,with +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586,1000,mac,phase-30,with +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554,1000,mac,phase-30,with +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894,1000,mac,phase-30,with +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058,1000,mac,phase-30,with +28,5425.496549978012,4.646310310848687,109.71929919761256,758.244654799714,0.6862765839978238,1000,mac,phase-30,with +29,5472.8253332894155,4.686841939958393,110.67642466787464,764.8591271587816,0.6922632499990868,1000,mac,phase-30,with +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535,1000,mac,phase-6,with +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561,1000,mac,phase-6,with +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272,1000,mac,phase-6,with +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199,1000,mac,phase-6,with +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286,1000,mac,phase-6,with +5,4391.016889062863,1.7124603228688555,0.0,684.5811973068672,0.6757975419968716,1000,mac,phase-6,with +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228,1000,mac,phase-6,with +7,4344.730354172825,1.6944089565259697,0.0,677.3648981500287,0.6686738330026856,1000,mac,phase-6,with +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567,1000,mac,phase-6,with +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164,1000,mac,phase-6,with +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068,1000,mac,phase-6,with +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551,1000,mac,phase-6,with +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753,1000,mac,phase-6,with +13,4363.309510738167,1.7016546741477263,0.0,680.261480323997,0.6715332500025397,1000,mac,phase-6,with +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706,1000,mac,phase-6,with +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957,1000,mac,phase-6,with +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198,1000,mac,phase-6,with +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859,1000,mac,phase-6,with +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221,1000,mac,phase-6,with +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357,1000,mac,phase-6,with +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156,1000,mac,phase-6,with +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466,1000,mac,phase-6,with +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512,1000,mac,phase-6,with +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975,1000,mac,phase-6,with +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294,1000,mac,phase-6,with +25,4368.247362930842,1.703580395722884,0.0,681.0313158431011,0.6722932079937891,1000,mac,phase-6,with +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028,1000,mac,phase-6,with +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131,1000,mac,phase-6,with +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972,1000,mac,phase-6,with +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512,1000,mac,phase-6,with +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145,1000,mac,phase-7,with +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862,1000,mac,phase-7,with +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175,1000,mac,phase-7,with +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131,1000,mac,phase-7,with +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066,1000,mac,phase-7,with +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478,1000,mac,phase-7,with +6,4417.676650902167,2.49145203457279,0.0,684.2191674146103,0.67062487500516,1000,mac,phase-7,with +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159,1000,mac,phase-7,with +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944,1000,mac,phase-7,with +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487,1000,mac,phase-7,with +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336,1000,mac,phase-7,with +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097,1000,mac,phase-7,with +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006,1000,mac,phase-7,with +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183,1000,mac,phase-7,with +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441,1000,mac,phase-7,with +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204,1000,mac,phase-7,with +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235,1000,mac,phase-7,with +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284,1000,mac,phase-7,with +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211,1000,mac,phase-7,with +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926,1000,mac,phase-7,with +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846,1000,mac,phase-7,with +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933,1000,mac,phase-7,with +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663,1000,mac,phase-7,with +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835,1000,mac,phase-7,with +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885,1000,mac,phase-7,with +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396,1000,mac,phase-7,with +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204,1000,mac,phase-7,with +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728,1000,mac,phase-7,with +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545,1000,mac,phase-7,with +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802,1000,mac,phase-7,with +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944,1000,mac,phase-9,with +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237,1000,mac,phase-9,with +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636,1000,mac,phase-9,with +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309,1000,mac,phase-9,with +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115,1000,mac,phase-9,with +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606,1000,mac,phase-9,with +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372,1000,mac,phase-9,with +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534,1000,mac,phase-9,with +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623,1000,mac,phase-9,with +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886,1000,mac,phase-9,with +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754,1000,mac,phase-9,with +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207,1000,mac,phase-9,with +12,4327.235400242506,2.364463924465652,0.0,680.0997502174303,0.6709446249951725,1000,mac,phase-9,with +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574,1000,mac,phase-9,with +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149,1000,mac,phase-9,with +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999,1000,mac,phase-9,with +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457,1000,mac,phase-9,with +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501,1000,mac,phase-9,with +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202,1000,mac,phase-9,with +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666,1000,mac,phase-9,with +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456,1000,mac,phase-9,with +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212,1000,mac,phase-9,with +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304,1000,mac,phase-9,with +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887,1000,mac,phase-9,with +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787,1000,mac,phase-9,with +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945,1000,mac,phase-9,with +26,4338.812194020074,2.370789651798745,0.0,681.9192432258304,0.6727396249989397,1000,mac,phase-9,with +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578,1000,mac,phase-9,with +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274,1000,mac,phase-9,with +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904,1000,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n1000/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n1000/without_smell.csv new file mode 100644 index 000000000..9e6ba68d6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/data/n1000/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.1265818329993635,1000,mac,phase-19,without +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.1273689170047873,1000,mac,phase-19,without +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.1272704590010107,1000,mac,phase-19,without +3,390.0256092913664,1.0581449340672937,0.0,81.74169615669842,0.1245831669948529,1000,mac,phase-19,without +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.1276017079944722,1000,mac,phase-19,without +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.1207954999990761,1000,mac,phase-19,without +6,402.8359437074606,1.092899550541648,0.0,84.42649027934232,0.1286750829967786,1000,mac,phase-19,without +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859,1000,mac,phase-19,without +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.1266689580006641,1000,mac,phase-19,without +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494,1000,mac,phase-19,without +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.127547208998294,1000,mac,phase-19,without +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.1202903329976834,1000,mac,phase-19,without +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.1262500839948188,1000,mac,phase-19,without +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602,1000,mac,phase-19,without +14,399.0628659124927,1.0826631377023963,0.0,83.63572738751013,0.1274698750057723,1000,mac,phase-19,without +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.1271318750004866,1000,mac,phase-19,without +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.1265424590019392,1000,mac,phase-19,without +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.1203042499982984,1000,mac,phase-19,without +18,402.568664946258,1.0921744195235483,0.0,84.37047390819413,0.1285897080015274,1000,mac,phase-19,without +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.1271081250015413,1000,mac,phase-19,without +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.1269394580012885,1000,mac,phase-19,without +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.1268292910026502,1000,mac,phase-19,without +22,350.76980647561356,0.9516433918795788,0.0,73.51445202269747,0.112043959001312,1000,mac,phase-19,without +23,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.1216482500021811,1000,mac,phase-19,without +24,405.61921819575144,1.100450613163548,0.0,85.00980986688407,0.129564125003526,1000,mac,phase-19,without +25,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.1270289169988245,1000,mac,phase-19,without +26,395.58876147911013,1.0732378437754575,0.0,82.90762343165412,0.1263601659957203,1000,mac,phase-19,without +27,397.43884404649145,1.0782571436615285,0.0,83.29536434785305,0.1269511249993229,1000,mac,phase-19,without +28,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.1271508339996216,1000,mac,phase-19,without +29,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985,1000,mac,phase-19,without +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837,1000,mac,phase-26,without +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799,1000,mac,phase-26,without +2,392.782657800016,0.0,0.0,82.10768031039964,0.1270926669967593,1000,mac,phase-26,without +3,394.0904615657848,0.0,0.0,82.3810649198677,0.1275158330026897,1000,mac,phase-26,without +4,386.1846502784042,0.0,0.0,80.72842620762319,0.1249577499984297,1000,mac,phase-26,without +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858,1000,mac,phase-26,without +6,390.5682958318153,0.0,0.0,81.64478786602623,0.1263761659938609,1000,mac,phase-26,without +7,391.0349677496118,0.0,0.0,81.742341431275,0.1265271670054062,1000,mac,phase-26,without +8,394.99521491133027,0.0,0.0,82.57019546568124,0.1278085840021958,1000,mac,phase-26,without +9,389.8935329590793,0.0,0.0,81.50373475907328,0.1261578330013435,1000,mac,phase-26,without +10,386.8460219423448,0.0,0.0,80.86668000287307,0.1251717499981168,1000,mac,phase-26,without +11,395.2454142765718,0.0,0.0,82.62249739166286,0.1278895409996039,1000,mac,phase-26,without +12,405.8558215300987,0.0,0.0,84.84050755437045,0.1313227499995264,1000,mac,phase-26,without +13,394.8692730303716,0.0,0.0,82.54386844870608,0.1277678329934133,1000,mac,phase-26,without +14,390.91198968003886,0.0,0.0,81.71663397240133,0.126487374996941,1000,mac,phase-26,without +15,344.4968582488303,0.0,0.0,72.01396839529932,0.1114688329980708,1000,mac,phase-26,without +16,384.1205680557549,0.0,0.0,80.29694839182318,0.1242898750060703,1000,mac,phase-26,without +17,397.6399258501084,0.0,0.0,83.12304849002524,0.1286643330022343,1000,mac,phase-26,without +18,394.5017605534564,0.0,0.0,82.46704327232571,0.1276489169977139,1000,mac,phase-26,without +19,344.61906365958396,0.0,0.0,72.03951433679929,0.1115083749973564,1000,mac,phase-26,without +20,389.40123755570465,0.0,0.0,81.40082483472742,0.125998540999717,1000,mac,phase-26,without +21,390.4691426421824,0.0,0.0,81.62406078392506,0.1263440830007312,1000,mac,phase-26,without +22,383.5958221737522,0.0,0.0,80.1872549869132,0.1241200830045272,1000,mac,phase-26,without +23,405.63909868024984,0.0,0.0,84.7952035927062,0.1312526249967049,1000,mac,phase-26,without +24,392.9889501493175,0.0,0.0,82.15080386977927,0.1271594170029857,1000,mac,phase-26,without +25,393.90245582749657,0.0,0.0,82.34176401197539,0.1274549999943701,1000,mac,phase-26,without +26,388.23392583418934,0.0,0.0,81.15680882294728,0.1256208339982549,1000,mac,phase-26,without +27,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692,1000,mac,phase-26,without +28,375.36074051247016,0.0,0.0,78.46578526581658,0.1214554580001276,1000,mac,phase-26,without +29,394.00032031549273,0.0,0.0,82.36222170259528,0.127486666002369,1000,mac,phase-26,without +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.1263446250013657,1000,mac,phase-21,without +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.1269560419968911,1000,mac,phase-21,without +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.1267198330024257,1000,mac,phase-21,without +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.1260341660017729,1000,mac,phase-21,without +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786,1000,mac,phase-21,without +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.1269434159985394,1000,mac,phase-21,without +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936,1000,mac,phase-21,without +7,373.7075999076504,0.701202608833154,0.0,80.83864361833646,0.1267825000031734,1000,mac,phase-21,without +8,370.2519987370816,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832,1000,mac,phase-21,without +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.1285800419937004,1000,mac,phase-21,without +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545,1000,mac,phase-21,without +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.1268734170007519,1000,mac,phase-21,without +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.1245892920051119,1000,mac,phase-21,without +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285,1000,mac,phase-21,without +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.1260856660010176,1000,mac,phase-21,without +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992,1000,mac,phase-21,without +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.1266507079999428,1000,mac,phase-21,without +17,373.544619672528,0.7008968024591752,0.0,80.8033885120792,0.1267272080003749,1000,mac,phase-21,without +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.1260830000028363,1000,mac,phase-21,without +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762,1000,mac,phase-21,without +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.1277539160000742,1000,mac,phase-21,without +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999,1000,mac,phase-21,without +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.1266689580006641,1000,mac,phase-21,without +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.1274090419974527,1000,mac,phase-21,without +24,373.3273559434392,0.7004891417809348,0.0,80.75639105960205,0.1266535000031581,1000,mac,phase-21,without +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481,1000,mac,phase-21,without +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.1265395829977933,1000,mac,phase-21,without +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.1265127079968806,1000,mac,phase-21,without +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.1282391249987995,1000,mac,phase-21,without +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.1254270000063115,1000,mac,phase-21,without +0,366.2560098974747,0.0,0.0,80.782447497649,0.1274277500051539,1000,mac,phase-28,without +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433,1000,mac,phase-28,without +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269,1000,mac,phase-28,without +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301,1000,mac,phase-28,without +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036,1000,mac,phase-28,without +5,365.55697252599737,0.0,0.0,80.62826586449009,0.1271845410010428,1000,mac,phase-28,without +6,378.0393748010996,0.0,0.0,83.38141933961053,0.1315274170046905,1000,mac,phase-28,without +7,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953,1000,mac,phase-28,without +8,367.84473766973,0.0,0.0,81.13286172808361,0.1279804999940097,1000,mac,phase-28,without +9,366.06882597778775,0.0,0.0,80.7411616900284,0.1273626249967492,1000,mac,phase-28,without +10,365.15554103083457,0.0,0.0,80.53972501381307,0.1270448750001378,1000,mac,phase-28,without +11,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692,1000,mac,phase-28,without +12,365.718411986348,0.0,0.0,80.66387340232536,0.1272407090000342,1000,mac,phase-28,without +13,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072,1000,mac,phase-28,without +14,366.3053517052931,0.0,0.0,80.7933304644586,0.1274449170014122,1000,mac,phase-28,without +15,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047,1000,mac,phase-28,without +16,364.87015348468304,0.0,0.0,80.4767791403244,0.1269455829969956,1000,mac,phase-28,without +17,365.9639167863109,0.0,0.0,80.71802262603086,0.1273261250025825,1000,mac,phase-28,without +18,367.16306638263006,0.0,0.0,80.98251040695109,0.1277433329960331,1000,mac,phase-28,without +19,365.2581738498211,0.0,0.0,80.56236199474246,0.1270805829990422,1000,mac,phase-28,without +20,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815,1000,mac,phase-28,without +21,366.7016354671544,0.0,0.0,80.88073591671505,0.1275827920035226,1000,mac,phase-28,without +22,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122,1000,mac,phase-28,without +23,364.065011256822,0.0,0.0,80.29919472397987,0.1266654580031172,1000,mac,phase-28,without +24,365.0026092698173,0.0,0.0,80.50599395788157,0.126991666998947,1000,mac,phase-28,without +25,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237,1000,mac,phase-28,without +26,363.3076529841561,0.0,0.0,80.13214967012348,0.1264019579975865,1000,mac,phase-28,without +27,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376,1000,mac,phase-28,without +28,366.2285868981014,0.0,0.0,80.77639900438956,0.1274182089982787,1000,mac,phase-28,without +29,366.2516985482337,0.0,0.0,80.78149657443056,0.1274262500010081,1000,mac,phase-28,without +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.1279306249998626,1000,mac,phase-17,without +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.1298666250004316,1000,mac,phase-17,without +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.1268119170053978,1000,mac,phase-17,without +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.1270387500044307,1000,mac,phase-17,without +4,411.469987685372,0.7956876725847174,0.0,84.27658598793131,0.126604999997653,1000,mac,phase-17,without +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.1283349580044159,1000,mac,phase-17,without +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466,1000,mac,phase-17,without +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.1262690420044236,1000,mac,phase-17,without +8,428.2287649279869,0.8280952669625078,0.0,87.70909035911228,0.1317615000007208,1000,mac,phase-17,without +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.1220044580040848,1000,mac,phase-17,without +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.1273247919962159,1000,mac,phase-17,without +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.127753875000053,1000,mac,phase-17,without +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.1249797920027049,1000,mac,phase-17,without +13,412.5154149354085,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701,1000,mac,phase-17,without +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551,1000,mac,phase-17,without +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.1267970419939956,1000,mac,phase-17,without +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.1263662080018548,1000,mac,phase-17,without +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802,1000,mac,phase-17,without +18,412.5823102935587,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206,1000,mac,phase-17,without +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921,1000,mac,phase-17,without +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597,1000,mac,phase-17,without +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937,1000,mac,phase-17,without +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952,1000,mac,phase-17,without +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472,1000,mac,phase-17,without +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135,1000,mac,phase-17,without +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.1276210409996565,1000,mac,phase-17,without +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.1273774169967509,1000,mac,phase-17,without +27,403.1514038574026,0.7796014577856469,0.0,82.57278773712977,0.1240454589933506,1000,mac,phase-17,without +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.1270551250054268,1000,mac,phase-17,without +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.1296990409973659,1000,mac,phase-17,without +0,392.6923196485306,0.0,0.0,80.61026913897126,0.1246850840034312,1000,mac,phase-10,without +1,400.5184957667552,0.0,0.0,82.21679448121304,0.1271699999997508,1000,mac,phase-10,without +2,398.0520646223312,0.0,0.0,81.71049560950932,0.12638687499566,1000,mac,phase-10,without +3,399.9544786756752,0.0,0.0,82.10101536551342,0.1269909170005121,1000,mac,phase-10,without +4,403.1854443963641,0.0,0.0,82.7642547600517,0.128016791997652,1000,mac,phase-10,without +5,381.7259833976352,0.0,0.0,78.3591446009504,0.121203125003376,1000,mac,phase-10,without +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361,1000,mac,phase-10,without +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702,1000,mac,phase-10,without +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854,1000,mac,phase-10,without +9,402.8376890448656,0.0,0.0,82.69286896747012,0.127906375004386,1000,mac,phase-10,without +10,414.9605369904961,0.0,0.0,85.18139748389932,0.1317555419955169,1000,mac,phase-10,without +11,400.0866242774884,0.0,0.0,82.12814167278938,0.1270328750033513,1000,mac,phase-10,without +12,394.6405270092331,0.0,0.0,81.01018915733403,0.1253036659982171,1000,mac,phase-10,without +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246,1000,mac,phase-10,without +14,404.0993175654207,0.0,0.0,82.95185089685027,0.1283069589990191,1000,mac,phase-10,without +15,388.2460478319902,0.0,0.0,79.69755669245045,0.1232733330034534,1000,mac,phase-10,without +16,399.35397808432066,0.0,0.0,81.97774706647837,0.1268002500000875,1000,mac,phase-10,without +17,378.67151729069445,0.0,0.0,77.73213632338405,0.1202332910033874,1000,mac,phase-10,without +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858,1000,mac,phase-10,without +19,402.932305515202,0.0,0.0,82.71229144852506,0.1279364170040935,1000,mac,phase-10,without +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364,1000,mac,phase-10,without +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568,1000,mac,phase-10,without +22,404.07320215275104,0.0,0.0,82.94649003202395,0.1282986670048558,1000,mac,phase-10,without +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844,1000,mac,phase-10,without +24,403.0031686498588,0.0,0.0,82.72683794223248,0.1279589170007966,1000,mac,phase-10,without +25,400.56206556674624,0.0,0.0,82.22573831109683,0.1271838339962414,1000,mac,phase-10,without +26,401.1814598637611,0.0,0.0,82.35288503255603,0.127380500001891,1000,mac,phase-10,without +27,401.3059963273414,0.0,0.0,82.37844936713687,0.1274200420011766,1000,mac,phase-10,without +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624,1000,mac,phase-10,without +29,402.8306027222338,0.0,0.0,82.69141431621779,0.1279041250018053,1000,mac,phase-10,without +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531,1000,mac,phase-11,without +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089,1000,mac,phase-11,without +2,386.8253353097512,0.0,0.0,87.22500746639305,0.1195789579942356,1000,mac,phase-11,without +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987,1000,mac,phase-11,without +4,410.1044494159173,0.0,0.0,92.47420061992683,0.1267752089988789,1000,mac,phase-11,without +5,408.0670027544839,0.0,0.0,92.01477802261016,0.1261453749975771,1000,mac,phase-11,without +6,408.1467946849229,0.0,0.0,92.03277025603695,0.1261700410032062,1000,mac,phase-11,without +7,408.5973928664444,0.0,0.0,92.1343753634586,0.1263093340021441,1000,mac,phase-11,without +8,386.5837986845974,0.0,0.0,87.17054352101684,0.1195042920007836,1000,mac,phase-11,without +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258,1000,mac,phase-11,without +10,407.3952218840771,0.0,0.0,91.86329856641038,0.1259377079986734,1000,mac,phase-11,without +11,409.46030100316216,0.0,0.0,92.32895198964506,0.1265760839960421,1000,mac,phase-11,without +12,415.01542067501595,0.0,0.0,93.58157251530466,0.1282933330003288,1000,mac,phase-11,without +13,409.88663100545983,0.0,0.0,92.42508488022676,0.1267078749951906,1000,mac,phase-11,without +14,386.8309963950141,0.0,0.0,87.22628398103481,0.119580708000285,1000,mac,phase-11,without +15,408.6011647578864,0.0,0.0,92.13522588494506,0.1263105000034556,1000,mac,phase-11,without +16,406.44537592628774,0.0,0.0,91.64911838430376,0.1256440829965868,1000,mac,phase-11,without +17,396.8252034977494,0.0,0.0,89.4798716072401,0.1226702079948154,1000,mac,phase-11,without +18,405.77534837085153,0.0,0.0,91.49803428202073,0.1254369579983176,1000,mac,phase-11,without +19,415.27138496028545,0.0,0.0,93.6392897449062,0.1283724590030033,1000,mac,phase-11,without +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354,1000,mac,phase-11,without +21,361.9479179930077,0.0,0.0,81.61541390277617,0.1118886249969364,1000,mac,phase-11,without +22,407.4975254542064,0.0,0.0,91.88636693565569,0.1259693330066511,1000,mac,phase-11,without +23,409.9073893301796,0.0,0.0,92.42976566212856,0.1267142919969046,1000,mac,phase-11,without +24,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338,1000,mac,phase-11,without +25,414.45147178217695,0.0,0.0,93.45440802555076,0.1281190000008791,1000,mac,phase-11,without +26,386.3541211550232,0.0,0.0,87.11875367582502,0.1194332919985754,1000,mac,phase-11,without +27,409.1427411144483,0.0,0.0,92.25734560522376,0.1264779170014662,1000,mac,phase-11,without +28,409.6813478367339,0.0,0.0,92.37879570449192,0.1266444159991806,1000,mac,phase-11,without +29,405.9621635490298,0.0,0.0,91.54015912190069,0.1254947080014972,1000,mac,phase-11,without +0,580.8490462076469,0.4375130425111193,22.313165168067087,110.42156095992172,0.1313430000009248,1000,mac,phase-29,without +1,577.9638128096457,0.4353397975853406,22.202329676852372,109.87306737519252,0.1306905840028775,1000,mac,phase-29,without +2,571.3580595604811,0.4303641447526656,21.948571382385943,108.61728914873044,0.129196875001071,1000,mac,phase-29,without +3,509.83055091581105,0.3840197671884549,19.585008126611203,96.92068124194776,0.1152841250004712,1000,mac,phase-29,without +4,561.9166389561877,0.423252581634535,21.585881663361288,106.82244002637763,0.1270619579954655,1000,mac,phase-29,without +5,588.3427741262249,0.44315754468051,22.601034778706012,111.84614646898105,0.133037499996135,1000,mac,phase-29,without +6,579.4248575746424,0.4364403006240425,22.25845533182617,110.15081741134487,0.1310209590010345,1000,mac,phase-29,without +7,589.9617378100206,0.4443769970178033,22.66322684790797,112.15391747810868,0.1334035840045544,1000,mac,phase-29,without +8,568.8925810737016,0.4285070719020871,21.853860667006444,108.148592531596,0.1286393750051502,1000,mac,phase-29,without +9,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355672,0.1280307499982882,1000,mac,phase-29,without +10,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.1297934160029399,1000,mac,phase-29,without +11,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034755,0.1305069580048439,1000,mac,phase-29,without +12,550.8068744156343,0.4148843714817339,21.15910294556843,104.71043252550533,0.1245497909985715,1000,mac,phase-29,without +13,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.1323175419965991,1000,mac,phase-29,without +14,576.6522047657539,0.4343518547977751,22.151944594686533,109.6237258147308,0.1303939999997965,1000,mac,phase-29,without +15,578.589761320147,0.4358112809063045,22.226375326221532,109.99206251181424,0.1308321250035078,1000,mac,phase-29,without +16,570.777621784413,0.4299269414912433,21.92627401605341,108.50694577175148,0.1290656249984749,1000,mac,phase-29,without +17,559.7279309023393,0.4216039806321577,21.50180301224005,106.40635849646996,0.1265670420034439,1000,mac,phase-29,without +18,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.1261816249971161,1000,mac,phase-29,without +19,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.1294468749983934,1000,mac,phase-29,without +20,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198,1000,mac,phase-29,without +21,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.1363984580020769,1000,mac,phase-29,without +22,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.1297899169949232,1000,mac,phase-29,without +23,590.8758797423774,0.4450655563271861,22.69834337268649,112.32769925457674,0.1336102920031407,1000,mac,phase-29,without +24,580.168923511577,0.4370007535575931,22.287038431437253,110.29226710942024,0.1311892090016044,1000,mac,phase-29,without +25,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.1283416670048609,1000,mac,phase-29,without +26,596.6714126054211,0.4494309266974027,22.92097726156754,113.42945157647527,0.1349207919993205,1000,mac,phase-29,without +27,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.1315066250026575,1000,mac,phase-29,without +28,602.7321027138048,0.4539960215122233,23.15379709712339,114.58161127550808,0.1362912499971571,1000,mac,phase-29,without +29,575.0345324443498,0.4331333751536327,22.08980213283527,109.31620029838992,0.130028207997384,1000,mac,phase-29,without +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871,1000,mac,phase-16,without +1,396.406509388618,1.2991178784215116,0.0,90.1306917272438,0.1337517080028192,1000,mac,phase-16,without +2,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.1283866669982671,1000,mac,phase-16,without +3,378.1783407682509,1.2393798590279257,0.0,85.98616481418068,0.1276013329988927,1000,mac,phase-16,without +4,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.1280753750033909,1000,mac,phase-16,without +5,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.1272267079984885,1000,mac,phase-16,without +6,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.1250958329983404,1000,mac,phase-16,without +7,376.4828302874184,1.2338232702067742,0.0,85.60065769245378,0.1270292500048526,1000,mac,phase-16,without +8,372.3979185608552,1.2204360484279575,0.0,84.67187395444776,0.1256509580052807,1000,mac,phase-16,without +9,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935,1000,mac,phase-16,without +10,375.9752882211583,1.232159934825762,0.0,85.48525818101977,0.1268579999959911,1000,mac,phase-16,without +11,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.1262761250036419,1000,mac,phase-16,without +12,380.0242615418349,1.2454293779493255,0.0,86.40587062691674,0.1282241660010186,1000,mac,phase-16,without +13,380.4472152044884,1.2468154971271983,0.0,86.50203732771672,0.1283668749965727,1000,mac,phase-16,without +14,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619,1000,mac,phase-16,without +15,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671,1000,mac,phase-16,without +16,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.1262934999977005,1000,mac,phase-16,without +17,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.1261303330029477,1000,mac,phase-16,without +18,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.1253175000019837,1000,mac,phase-16,without +19,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.1270073749983566,1000,mac,phase-16,without +20,374.82881226544566,1.2284026619859605,0.0,85.22458468426919,0.1264711670010001,1000,mac,phase-16,without +21,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837,1000,mac,phase-16,without +22,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595,1000,mac,phase-16,without +23,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.1281118750048335,1000,mac,phase-16,without +24,352.75184196457076,1.1560512092727298,0.0,80.20495822170533,0.1190221659999224,1000,mac,phase-16,without +25,378.32986245382807,1.2398764314253,0.0,86.02061620185799,0.1276524580025579,1000,mac,phase-16,without +26,377.6759852809123,1.2377335212926268,0.0,85.87194457184252,0.1274318329960806,1000,mac,phase-16,without +27,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.1273741659970255,1000,mac,phase-16,without +28,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.1267671660025371,1000,mac,phase-16,without +29,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.1263089579952065,1000,mac,phase-16,without +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298,1000,mac,phase-20,without +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315,1000,mac,phase-20,without +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.1230740000028163,1000,mac,phase-20,without +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065,1000,mac,phase-20,without +4,414.8404317742507,0.7109809081252971,0.0,85.55470261107743,0.1281313330036937,1000,mac,phase-20,without +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828,1000,mac,phase-20,without +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.1286632920018746,1000,mac,phase-20,without +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.126794959003746,1000,mac,phase-20,without +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.1242163330025505,1000,mac,phase-20,without +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521,1000,mac,phase-20,without +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514,1000,mac,phase-20,without +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.1251826670049922,1000,mac,phase-20,without +12,411.592562504149,0.7054144954368015,0.0,84.88487761756177,0.1271281669978634,1000,mac,phase-20,without +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.1268025829995167,1000,mac,phase-20,without +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.1264638749998994,1000,mac,phase-20,without +15,399.1943694562683,0.6841656540097638,0.0,82.32793369917492,0.1232987499970477,1000,mac,phase-20,without +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.1309235410008113,1000,mac,phase-20,without +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.1250162500000442,1000,mac,phase-20,without +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.1251117080028052,1000,mac,phase-20,without +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.1266198330049519,1000,mac,phase-20,without +20,359.6831412166489,0.6164487036276526,0.0,74.17932733652752,0.1110949579961015,1000,mac,phase-20,without +21,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764,1000,mac,phase-20,without +22,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.1272145830007502,1000,mac,phase-20,without +23,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064,1000,mac,phase-20,without +24,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.1268779590027406,1000,mac,phase-20,without +25,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714,1000,mac,phase-20,without +26,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.1281818329953239,1000,mac,phase-20,without +27,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.1278080830015824,1000,mac,phase-20,without +28,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.1285623750009108,1000,mac,phase-20,without +29,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.1284708340026554,1000,mac,phase-20,without +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395,1000,mac,phase-18,without +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.1276939169983961,1000,mac,phase-18,without +2,379.7503451515355,0.911076889913938,0.0,81.4232790874938,0.1268921250011772,1000,mac,phase-18,without +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.1268949169971165,1000,mac,phase-18,without +4,380.9400699708801,0.913931214609362,0.0,81.67837114268114,0.1272896669979673,1000,mac,phase-18,without +5,312.09731859928553,0.7487673362520624,0.0,66.91761416208246,0.1042861250025453,1000,mac,phase-18,without +6,377.40880702846295,0.905459195820908,0.0,80.92122368577226,0.1261097089955001,1000,mac,phase-18,without +7,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.1234518330020364,1000,mac,phase-18,without +8,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277,1000,mac,phase-18,without +9,377.5661692958721,0.9058367310279496,0.0,80.95496414705343,0.1261622909951256,1000,mac,phase-18,without +10,380.5384223868755,0.9129676030252032,0.0,81.59225281851168,0.1271554579943767,1000,mac,phase-18,without +11,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.1257233749929582,1000,mac,phase-18,without +12,394.5627248223053,0.9466139657190548,0.0,84.59924071407701,0.1318416249996516,1000,mac,phase-18,without +13,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.126691417004622,1000,mac,phase-18,without +14,378.82859285824617,0.9088654706924336,0.0,81.22564373262378,0.1265841249987715,1000,mac,phase-18,without +15,379.1090329887456,0.9095382877817784,0.0,81.28577364509003,0.1266778329954831,1000,mac,phase-18,without +16,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.1235821249938453,1000,mac,phase-18,without +17,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205,1000,mac,phase-18,without +18,381.92828421094526,0.916302085809092,0.0,81.89025677990145,0.127619875005621,1000,mac,phase-18,without +19,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.1268732919998001,1000,mac,phase-18,without +20,383.9252904409535,0.92109319725482,0.0,82.31844018429187,0.1282871669973246,1000,mac,phase-18,without +21,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.1269927079993067,1000,mac,phase-18,without +22,379.801843560333,0.9112004421653628,0.0,81.43432099796371,0.1269093329974566,1000,mac,phase-18,without +23,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.1208661670025321,1000,mac,phase-18,without +24,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.127685334002308,1000,mac,phase-18,without +25,378.08752496595537,0.9070875399041048,0.0,81.06674939957796,0.1263364999977057,1000,mac,phase-18,without +26,375.8814036432744,0.901794730617417,0.0,80.59372907332693,0.1255993329978082,1000,mac,phase-18,without +27,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.1263170419988455,1000,mac,phase-18,without +28,378.28604288554345,0.9075638135693684,0.0,81.10931415344024,0.1264028340010554,1000,mac,phase-18,without +29,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943,1000,mac,phase-18,without +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546,1000,mac,phase-27,without +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422,1000,mac,phase-27,without +2,386.7646891747356,0.0,0.0,80.34820506063755,0.1234175829958985,1000,mac,phase-27,without +3,400.02309949515256,0.0,0.0,83.10256578957589,0.1276483750043553,1000,mac,phase-27,without +4,400.4175651822858,0.0,0.0,83.18451383397155,0.1277742499951273,1000,mac,phase-27,without +5,396.0818362122956,0.0,0.0,82.2837903446803,0.126390707999235,1000,mac,phase-27,without +6,397.7300808589709,0.0,0.0,82.6262039686948,0.1269166670026607,1000,mac,phase-27,without +7,395.98168657862607,0.0,0.0,82.26298481737118,0.1263587499997811,1000,mac,phase-27,without +8,396.5324500295691,0.0,0.0,82.37740284966543,0.1265344999992521,1000,mac,phase-27,without +9,398.14478456222105,0.0,0.0,82.71235634795994,0.1270489999951678,1000,mac,phase-27,without +10,399.33118701966725,0.0,0.0,82.95882483539796,0.127427583996905,1000,mac,phase-27,without +11,397.223970778421,0.0,0.0,82.52106242482209,0.1267551660057506,1000,mac,phase-27,without +12,402.9354331958688,0.0,0.0,83.70758685778524,0.128577707997465,1000,mac,phase-27,without +13,397.41304479758514,0.0,0.0,82.56034149679698,0.1268154999997932,1000,mac,phase-27,without +14,398.0741427062589,0.0,0.0,82.69768089674226,0.1270264580016373,1000,mac,phase-27,without +15,396.5969559370069,0.0,0.0,82.39080359183116,0.1265550839962088,1000,mac,phase-27,without +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509,1000,mac,phase-27,without +17,396.8564054927456,0.0,0.0,82.44470278865771,0.1266378750005969,1000,mac,phase-27,without +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872,1000,mac,phase-27,without +19,397.34449316119225,0.0,0.0,82.54610027702614,0.1267936250005732,1000,mac,phase-27,without +20,397.6506894306738,0.0,0.0,82.60971084266905,0.1268913329986389,1000,mac,phase-27,without +21,397.0926148741081,0.0,0.0,82.49377396899592,0.1267132500070147,1000,mac,phase-27,without +22,396.0943744971357,0.0,0.0,82.2863951033608,0.1263947089973953,1000,mac,phase-27,without +23,397.0390803449771,0.0,0.0,82.48265246942572,0.1266961670044111,1000,mac,phase-27,without +24,396.6367801479797,0.0,0.0,82.39907684934194,0.1265677920018788,1000,mac,phase-27,without +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732,1000,mac,phase-27,without +26,394.427458763678,0.0,0.0,81.94010266529867,0.1258627920033177,1000,mac,phase-27,without +27,406.09638297638475,0.0,0.0,84.36425652867271,0.1295863750056014,1000,mac,phase-27,without +28,407.3996475439181,0.0,0.0,84.63500246709813,0.1300022499999613,1000,mac,phase-27,without +29,408.0202694203579,0.0,0.0,84.76393319730442,0.1302002919983351,1000,mac,phase-27,without +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.1260774999973364,1000,mac,phase-5,without +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.1270055420027347,1000,mac,phase-5,without +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.1273317499944823,1000,mac,phase-5,without +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.1277807910009869,1000,mac,phase-5,without +4,382.865699575474,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585,1000,mac,phase-5,without +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.126890708997962,1000,mac,phase-5,without +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899,1000,mac,phase-5,without +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.1271131670000613,1000,mac,phase-5,without +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.1269129170032101,1000,mac,phase-5,without +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.1268732919998001,1000,mac,phase-5,without +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.1278685830038739,1000,mac,phase-5,without +11,379.158248535522,0.8729402693636388,0.0,81.98923606869253,0.127998458003276,1000,mac,phase-5,without +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.1279381250060396,1000,mac,phase-5,without +13,380.905955104168,0.8769640337118894,0.0,82.3671603970936,0.1285884590033674,1000,mac,phase-5,without +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.128263375001552,1000,mac,phase-5,without +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538,1000,mac,phase-5,without +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952,1000,mac,phase-5,without +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.1270275829956517,1000,mac,phase-5,without +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.1267205830008606,1000,mac,phase-5,without +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.1267619579957681,1000,mac,phase-5,without +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377,1000,mac,phase-5,without +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698,1000,mac,phase-5,without +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.1286793750041397,1000,mac,phase-5,without +23,377.2149146660136,0.868466110096197,0.0,81.5690092636505,0.127342415995372,1000,mac,phase-5,without +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235,1000,mac,phase-5,without +25,377.792424091372,0.8697957164947907,0.0,81.69388998770303,0.1275373750031576,1000,mac,phase-5,without +26,372.2949335054875,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435,1000,mac,phase-5,without +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024,1000,mac,phase-5,without +28,347.61244727258975,0.800312018868975,0.0,75.16776731069372,0.1173490420042071,1000,mac,phase-5,without +29,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907,1000,mac,phase-5,without +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808,1000,mac,phase-2,without +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.1277220839983783,1000,mac,phase-2,without +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.1272478329992736,1000,mac,phase-2,without +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.1273376659955829,1000,mac,phase-2,without +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101,1000,mac,phase-2,without +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.1282137920061359,1000,mac,phase-2,without +6,394.616409505073,0.6568873121251435,0.0,85.2570585105581,0.131947958994715,1000,mac,phase-2,without +7,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888,1000,mac,phase-2,without +8,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.1262204169979668,1000,mac,phase-2,without +9,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019,1000,mac,phase-2,without +10,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021,1000,mac,phase-2,without +11,378.5886374541328,0.630207123850405,0.0,81.79425091658413,0.1265887500048848,1000,mac,phase-2,without +12,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.1284940410041599,1000,mac,phase-2,without +13,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.1273608750052517,1000,mac,phase-2,without +14,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241,1000,mac,phase-2,without +15,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344,1000,mac,phase-2,without +16,376.1731498918869,0.6261862491629446,0.0,81.2723837071485,0.1257810829993104,1000,mac,phase-2,without +17,377.5617067268463,0.6284976719651376,0.0,81.5723820561068,0.1262453749950509,1000,mac,phase-2,without +18,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.1282457499983138,1000,mac,phase-2,without +19,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.1276990840051439,1000,mac,phase-2,without +20,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.1275388750000274,1000,mac,phase-2,without +21,370.9409249040661,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327,1000,mac,phase-2,without +22,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.1235482500051148,1000,mac,phase-2,without +23,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773,1000,mac,phase-2,without +24,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.1300859159964602,1000,mac,phase-2,without +25,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122,1000,mac,phase-2,without +26,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.1262704169930657,1000,mac,phase-2,without +27,380.6645552301474,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738,1000,mac,phase-2,without +28,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.1272568749991478,1000,mac,phase-2,without +29,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.1275444999992032,1000,mac,phase-2,without +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.1257333750036195,1000,mac,phase-3,without +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832,1000,mac,phase-3,without +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.1277571250029723,1000,mac,phase-3,without +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.1318783749957219,1000,mac,phase-3,without +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.1273030829979688,1000,mac,phase-3,without +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225,1000,mac,phase-3,without +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.1280105410041869,1000,mac,phase-3,without +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.1272239169993554,1000,mac,phase-3,without +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.1272712909994879,1000,mac,phase-3,without +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.1268018749979091,1000,mac,phase-3,without +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.1302960419998271,1000,mac,phase-3,without +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.1214435000001685,1000,mac,phase-3,without +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.1277919170024688,1000,mac,phase-3,without +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.1277310000004945,1000,mac,phase-3,without +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639,1000,mac,phase-3,without +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.1275388750000274,1000,mac,phase-3,without +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.127049499998975,1000,mac,phase-3,without +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.1213214579984196,1000,mac,phase-3,without +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.1275617919964133,1000,mac,phase-3,without +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.1269967919943155,1000,mac,phase-3,without +20,339.5262861430443,0.7393221107548216,0.0,72.86758723599522,0.1121294580007088,1000,mac,phase-3,without +21,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.1260682499996619,1000,mac,phase-3,without +22,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.1243212089975713,1000,mac,phase-3,without +23,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.1276745420036604,1000,mac,phase-3,without +24,386.3097856350467,0.8411936800693467,0.0,82.90804910763481,0.1275798329952522,1000,mac,phase-3,without +25,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.1271656670069205,1000,mac,phase-3,without +26,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733,1000,mac,phase-3,without +27,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888,1000,mac,phase-3,without +28,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.1284481249967939,1000,mac,phase-3,without +29,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.1226739999983692,1000,mac,phase-3,without +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.1290693749979254,1000,mac,phase-4,without +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051,1000,mac,phase-4,without +2,379.3227523689651,0.739289559896991,0.0,82.73322256665416,0.1275123750019702,1000,mac,phase-4,without +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.1282127079975907,1000,mac,phase-4,without +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.1270318749957368,1000,mac,phase-4,without +5,377.3349727742443,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827,1000,mac,phase-4,without +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.1275647080037742,1000,mac,phase-4,without +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.1269037500023841,1000,mac,phase-4,without +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.127749125000264,1000,mac,phase-4,without +9,380.193747573396,0.7409871054761438,0.0,82.92319334919391,0.1278051670014974,1000,mac,phase-4,without +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.1276764170033857,1000,mac,phase-4,without +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.127789959005895,1000,mac,phase-4,without +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.127124749997165,1000,mac,phase-4,without +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.1266850829997565,1000,mac,phase-4,without +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841,1000,mac,phase-4,without +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.1375446250021923,1000,mac,phase-4,without +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.1272327080005197,1000,mac,phase-4,without +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.1276012079979409,1000,mac,phase-4,without +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.1282910420050029,1000,mac,phase-4,without +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.1266605839991825,1000,mac,phase-4,without +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.1268799999961629,1000,mac,phase-4,without +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.1255359169954317,1000,mac,phase-4,without +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.1272838750010123,1000,mac,phase-4,without +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.1268487090055714,1000,mac,phase-4,without +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.1266794170005596,1000,mac,phase-4,without +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.1264934169957996,1000,mac,phase-4,without +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865,1000,mac,phase-4,without +27,330.59219602187005,0.6443150524876986,0.0,72.10471178294154,0.1111312089997227,1000,mac,phase-4,without +28,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.1270743339991895,1000,mac,phase-4,without +29,323.76578983555265,0.6310105755122394,0.0,70.61581985959697,0.1088364579991321,1000,mac,phase-4,without +0,356.33566462805965,0.0,0.0,78.6689939309365,0.1220669589965837,1000,mac,phase-22,without +1,365.621944433946,0.0,0.0,80.71914597073523,0.1252480830007698,1000,mac,phase-22,without +2,369.7227878911292,0.0,0.0,81.62449803360438,0.126652874998399,1000,mac,phase-22,without +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455,1000,mac,phase-22,without +4,381.5487589223497,0.0,0.0,84.2353431878597,0.1307040000028791,1000,mac,phase-22,without +5,374.4612274067481,0.0,0.0,82.67061355472525,0.128276082999946,1000,mac,phase-22,without +6,376.2095751151944,0.0,0.0,83.05660005262041,0.1288750000021536,1000,mac,phase-22,without +7,417.9745566255801,0.0,0.0,92.27714518215636,0.1431820840007276,1000,mac,phase-22,without +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442,1000,mac,phase-22,without +9,368.9749927454226,0.0,0.0,81.45940568496007,0.1263967090053483,1000,mac,phase-22,without +10,368.7472965391703,0.0,0.0,81.40913670195931,0.1263187090007704,1000,mac,phase-22,without +11,354.0226975037879,0.0,0.0,78.15835518571936,0.1212746249948395,1000,mac,phase-22,without +12,368.9847223569777,0.0,0.0,81.46155371230721,0.1264000419978401,1000,mac,phase-22,without +13,368.6611806740536,0.0,0.0,81.3901247165121,0.1262892090016976,1000,mac,phase-22,without +14,368.6304066460952,0.0,0.0,81.3833306679253,0.1262786669976776,1000,mac,phase-22,without +15,360.7548186281763,0.0,0.0,79.64462009953212,0.1235807920020306,1000,mac,phase-22,without +16,371.2739682072804,0.0,0.0,81.96695546066114,0.127184249999118,1000,mac,phase-22,without +17,300.1849544333428,0.0,0.0,66.27248042410939,0.1028318750031758,1000,mac,phase-22,without +18,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106,1000,mac,phase-22,without +19,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356,1000,mac,phase-22,without +20,369.8492877304773,0.0,0.0,81.65242567622282,0.1266962090012384,1000,mac,phase-22,without +21,368.8047051618492,0.0,0.0,81.42181092752081,0.1263383749974309,1000,mac,phase-22,without +22,366.89142369116024,0.0,0.0,80.99941164687931,0.1256829580015619,1000,mac,phase-22,without +23,351.5059977726157,0.0,0.0,77.60273795306252,0.1204125000003841,1000,mac,phase-22,without +24,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249,1000,mac,phase-22,without +25,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876,1000,mac,phase-22,without +26,371.2468431633174,0.0,0.0,81.96096700614838,0.1271749579973402,1000,mac,phase-22,without +27,392.0700979045949,0.0,0.0,86.55816190824662,0.1343082080056774,1000,mac,phase-22,without +28,371.75271404089193,0.0,0.0,82.07264921185542,0.1273482499964302,1000,mac,phase-22,without +29,351.3996928408619,0.0,0.0,77.57926878379007,0.1203760839998722,1000,mac,phase-22,without +0,382.11192345358336,0.0,0.0,83.48578836048895,0.1285898329952033,1000,mac,phase-25,without +1,383.063317719908,0.0,0.0,83.69365389802014,0.1289099999994505,1000,mac,phase-25,without +2,378.283444669349,0.0,0.0,82.64932252442081,0.1273014580001472,1000,mac,phase-25,without +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752,1000,mac,phase-25,without +4,379.91545010812285,0.0,0.0,83.0058915093224,0.1278506669987109,1000,mac,phase-25,without +5,377.47332413675264,0.0,0.0,82.47232320254791,0.1270288329978939,1000,mac,phase-25,without +6,378.7013227559976,0.0,0.0,82.74062268900902,0.1274420840054517,1000,mac,phase-25,without +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177,1000,mac,phase-25,without +8,377.4120387598971,0.0,0.0,82.45893325659827,0.1270082089977222,1000,mac,phase-25,without +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708,1000,mac,phase-25,without +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298,1000,mac,phase-25,without +11,373.0895357637535,0.0,0.0,81.51453045685822,0.1255535829986911,1000,mac,phase-25,without +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769,1000,mac,phase-25,without +13,383.83679006238367,0.0,0.0,83.86264613386297,0.1291702920061652,1000,mac,phase-25,without +14,382.0622747139288,0.0,0.0,83.47494084719048,0.1285731250027311,1000,mac,phase-25,without +15,379.26022195757537,0.0,0.0,82.8627338757944,0.1276301670004613,1000,mac,phase-25,without +16,378.4614914107541,0.0,0.0,82.68822309689409,0.127361375001783,1000,mac,phase-25,without +17,376.1883756534947,0.0,0.0,82.19158101539543,0.126596416994289,1000,mac,phase-25,without +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035,1000,mac,phase-25,without +19,376.2270029142905,0.0,0.0,82.2000204990174,0.1266094159946078,1000,mac,phase-25,without +20,376.0207293733377,0.0,0.0,82.15495278946071,0.1265399999974761,1000,mac,phase-25,without +21,377.7483179042934,0.0,0.0,82.53240526245817,0.1271213750005699,1000,mac,phase-25,without +22,378.4316510205191,0.0,0.0,82.68170341417591,0.1273513329942943,1000,mac,phase-25,without +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608,1000,mac,phase-25,without +24,363.8453956857787,0.0,0.0,79.4948229451185,0.122442708001472,1000,mac,phase-25,without +25,374.7420925115319,0.0,0.0,81.87558959799095,0.1261097080059698,1000,mac,phase-25,without +26,384.3096389423701,0.0,0.0,83.96595660155066,0.1293294170027366,1000,mac,phase-25,without +27,378.8730519301984,0.0,0.0,82.7781429667409,0.1274998749941005,1000,mac,phase-25,without +28,376.8858236829585,0.0,0.0,82.34396306632436,0.1268311249950784,1000,mac,phase-25,without +29,376.7586678245342,0.0,0.0,82.31618139704467,0.1267883339969557,1000,mac,phase-25,without +0,381.15527652293935,0.0,0.0,81.51934415933158,0.1286932079965481,1000,mac,phase-13,without +1,385.36513808692746,0.0,0.0,82.41972564382412,0.130114624997077,1000,mac,phase-13,without +2,378.5353754336696,0.0,0.0,80.95901446769543,0.127808625002217,1000,mac,phase-13,without +3,375.9680451234962,0.0,0.0,80.40992831825284,0.1269417919975239,1000,mac,phase-13,without +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456,1000,mac,phase-13,without +5,376.0794774873806,0.0,0.0,80.43376084473613,0.1269794160034507,1000,mac,phase-13,without +6,376.188694437082,0.0,0.0,80.45711955090954,0.127016291997279,1000,mac,phase-13,without +7,378.75676516528466,0.0,0.0,81.00636405679074,0.1278833749965997,1000,mac,phase-13,without +8,378.5499353289353,0.0,0.0,80.96212845610434,0.127813541002979,1000,mac,phase-13,without +9,376.9519574623808,0.0,0.0,80.62036194863003,0.1272740000058547,1000,mac,phase-13,without +10,375.52600605674576,0.0,0.0,80.31538749189194,0.1267925419961102,1000,mac,phase-13,without +11,378.15886475244446,0.0,0.0,80.87848848342348,0.1276814999946509,1000,mac,phase-13,without +12,375.0297909482362,0.0,0.0,80.20925979879881,0.1266250000044237,1000,mac,phase-13,without +13,371.8400015295662,0.0,0.0,79.5270456004583,0.1255480000036186,1000,mac,phase-13,without +14,380.5503420202996,0.0,0.0,81.38996417444876,0.1284889580056187,1000,mac,phase-13,without +15,378.3637191494406,0.0,0.0,80.92230158826523,0.1277506670012371,1000,mac,phase-13,without +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861,1000,mac,phase-13,without +17,374.23394884006944,0.0,0.0,80.03904957029572,0.1263562919994001,1000,mac,phase-13,without +18,377.2002516134433,0.0,0.0,80.67346570345106,0.1273578340042149,1000,mac,phase-13,without +19,364.2633868236725,0.0,0.0,77.90660191302786,0.122989832998428,1000,mac,phase-13,without +20,380.7449517375222,0.0,0.0,81.43158620487097,0.1285546660001273,1000,mac,phase-13,without +21,374.3580929740989,0.0,0.0,80.06560081859438,0.126398208005412,1000,mac,phase-13,without +22,378.7710821980925,0.0,0.0,81.00942610314478,0.1278882089973194,1000,mac,phase-13,without +23,384.0539539971067,0.0,0.0,82.13929697430812,0.1296719170059077,1000,mac,phase-13,without +24,381.7317073342197,0.0,0.0,81.64262793521807,0.1288878340055816,1000,mac,phase-13,without +25,358.74814021678975,0.0,0.0,76.72703202651994,0.1211276659960276,1000,mac,phase-13,without +26,377.330689419243,0.0,0.0,80.70136300682668,0.1274018750045797,1000,mac,phase-13,without +27,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793,1000,mac,phase-13,without +28,368.4089550234593,0.0,0.0,78.7932326948375,0.124389541997516,1000,mac,phase-13,without +29,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174,1000,mac,phase-13,without +0,371.9505742570301,0.0,0.0,79.28333129496517,0.1256908330033184,1000,mac,phase-14,without +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039,1000,mac,phase-14,without +2,380.42500161272574,0.0,0.0,81.08970256598367,0.1285545409991755,1000,mac,phase-14,without +3,379.724029315134,0.0,0.0,80.94028642646145,0.1283176659999299,1000,mac,phase-14,without +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309,1000,mac,phase-14,without +5,376.13581758750024,0.0,0.0,80.17543916220671,0.1271051250005257,1000,mac,phase-14,without +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614,1000,mac,phase-14,without +7,376.2810664428482,0.0,0.0,80.20639976266224,0.1271542079994105,1000,mac,phase-14,without +8,380.54867753629713,0.0,0.0,81.11606477618137,0.1285963339978479,1000,mac,phase-14,without +9,379.31836647407073,0.0,0.0,80.85381713820637,0.1281805830003577,1000,mac,phase-14,without +10,381.0452130124147,0.0,0.0,81.22190407144627,0.1287641249946318,1000,mac,phase-14,without +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587,1000,mac,phase-14,without +12,376.2243494820515,0.0,0.0,80.19431022737417,0.1271350420065573,1000,mac,phase-14,without +13,329.24711978815566,0.0,0.0,70.18085273351087,0.1112603329966077,1000,mac,phase-14,without +14,372.8399531157799,0.0,0.0,79.47290733970135,0.1259913750036503,1000,mac,phase-14,without +15,374.9296776697505,0.0,0.0,79.91834373796102,0.1266975420003291,1000,mac,phase-14,without +16,374.12192675589216,0.0,0.0,79.74616714316706,0.1264245839993236,1000,mac,phase-14,without +17,375.5840417938985,0.0,0.0,80.05782508637942,0.1269186670033377,1000,mac,phase-14,without +18,375.37479914772064,0.0,0.0,80.01322385388747,0.1268479589998605,1000,mac,phase-14,without +19,375.09391603623067,0.0,0.0,79.95335205821166,0.1267530420009279,1000,mac,phase-14,without +20,378.31259142851826,0.0,0.0,80.63943059960772,0.1278407079953467,1000,mac,phase-14,without +21,378.55623535736214,0.0,0.0,80.69136465661818,0.1279230410000309,1000,mac,phase-14,without +22,376.64345322012633,0.0,0.0,80.28364451749893,0.1272766670008422,1000,mac,phase-14,without +23,376.4232347180749,0.0,0.0,80.23670372035055,0.1272022499979357,1000,mac,phase-14,without +24,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102,1000,mac,phase-14,without +25,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959,1000,mac,phase-14,without +26,369.4433498371993,0.0,0.0,78.74890248085369,0.1248435829984373,1000,mac,phase-14,without +27,376.9355548460999,0.0,0.0,80.34590760186201,0.1273753749992465,1000,mac,phase-14,without +28,378.0333122323057,0.0,0.0,80.57990068738393,0.1277463329970487,1000,mac,phase-14,without +29,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645,1000,mac,phase-14,without +0,403.1280711860908,0.0,0.0,84.25633205896268,0.1253158330000587,1000,mac,phase-15,without +1,387.8453998928396,0.0,0.0,81.06215651211087,0.1205650830015656,1000,mac,phase-15,without +2,419.1526392551472,0.0,0.0,87.60556875278897,0.1302972080011386,1000,mac,phase-15,without +3,406.2162918923644,0.0,0.0,84.90178983751325,0.1262758330049109,1000,mac,phase-15,without +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548,1000,mac,phase-15,without +5,414.97228218567807,0.0,0.0,86.73184752485783,0.1289977080014068,1000,mac,phase-15,without +6,409.33346783722465,0.0,0.0,85.55329944517618,0.1272448339950642,1000,mac,phase-15,without +7,387.6850922721412,0.0,0.0,81.02865119931684,0.1205152499969699,1000,mac,phase-15,without +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134,1000,mac,phase-15,without +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388,1000,mac,phase-15,without +10,443.8168553412664,0.0,0.0,92.7605468579152,0.137964292000106,1000,mac,phase-15,without +11,409.103591653989,0.0,0.0,85.50525386013376,0.1271733750036219,1000,mac,phase-15,without +12,410.61660425324544,0.0,0.0,85.8214831209671,0.1276437080014147,1000,mac,phase-15,without +13,402.2978448831,0.0,0.0,84.08280947874876,0.1250577500031795,1000,mac,phase-15,without +14,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471,1000,mac,phase-15,without +15,406.7088823894727,0.0,0.0,85.00474438585651,0.1264289590035332,1000,mac,phase-15,without +16,409.91545590084,0.0,0.0,85.6749386537732,0.1274257499972009,1000,mac,phase-15,without +17,408.4102153116807,0.0,0.0,85.36033379250497,0.1269578329956857,1000,mac,phase-15,without +18,407.3196873856032,0.0,0.0,85.13240651671686,0.1266188329973374,1000,mac,phase-15,without +19,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295,1000,mac,phase-15,without +20,408.7449076956601,0.0,0.0,85.43028663046836,0.1270618750058929,1000,mac,phase-15,without +21,406.67349330879034,0.0,0.0,84.9973478428064,0.1264179580030031,1000,mac,phase-15,without +22,408.2432069034229,0.0,0.0,85.32542797247262,0.1269059169935644,1000,mac,phase-15,without +23,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104,1000,mac,phase-15,without +24,403.50310985493286,0.0,0.0,84.3347175271935,0.125432417000411,1000,mac,phase-15,without +25,408.1030049222433,0.0,0.0,85.29612486627406,0.1268623340001795,1000,mac,phase-15,without +26,395.15070496407816,0.0,0.0,82.58901175705402,0.1228360000022803,1000,mac,phase-15,without +27,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865,1000,mac,phase-15,without +28,405.9890985754069,0.0,0.0,84.85430498859458,0.1262052080055582,1000,mac,phase-15,without +29,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786,1000,mac,phase-15,without +0,373.7002810104703,0.0,0.0,80.05956189892107,0.1265379169999505,1000,mac,phase-12,without +1,377.3721755823788,0.0,0.0,80.84620907502472,0.127781249997497,1000,mac,phase-12,without +2,375.5968928291588,0.0,0.0,80.46588193401963,0.127180124996812,1000,mac,phase-12,without +3,376.8571996022623,0.0,0.0,80.73588335826284,0.127606874993944,1000,mac,phase-12,without +4,358.4247515000995,0.0,0.0,76.78701364964624,0.1213655000028666,1000,mac,phase-12,without +5,376.5106839164296,0.0,0.0,80.66164767954228,0.127489541999239,1000,mac,phase-12,without +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804,1000,mac,phase-12,without +7,374.2099647272519,0.0,0.0,80.1687538293157,0.1267105000006267,1000,mac,phase-12,without +8,375.82244863222303,0.0,0.0,80.51420381038605,0.1272565000035683,1000,mac,phase-12,without +9,375.6955792262256,0.0,0.0,80.48702398318585,0.1272135410035844,1000,mac,phase-12,without +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104,1000,mac,phase-12,without +11,367.9267647010967,0.0,0.0,78.82267445239606,0.1245829580002464,1000,mac,phase-12,without +12,374.54122384829685,0.0,0.0,80.23972102268834,0.1268226669999421,1000,mac,phase-12,without +13,375.0623514767027,0.0,0.0,80.35136463588229,0.1269991250010207,1000,mac,phase-12,without +14,374.88404796498406,0.0,0.0,80.31316583925673,0.126938749999681,1000,mac,phase-12,without +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875,1000,mac,phase-12,without +16,375.49242102266754,0.0,0.0,80.44350044948914,0.1271447500039357,1000,mac,phase-12,without +17,373.65007545091566,0.0,0.0,80.04880612669643,0.1265209169941954,1000,mac,phase-12,without +18,378.19699950514024,0.0,0.0,81.02291496810425,0.128060542003368,1000,mac,phase-12,without +19,372.4382495153243,0.0,0.0,79.7891909793948,0.1261105829980806,1000,mac,phase-12,without +20,363.61881019547434,0.0,0.0,77.8997611769015,0.1231242499998188,1000,mac,phase-12,without +21,384.24356897781905,0.0,0.0,82.31829987299409,0.1301079589975415,1000,mac,phase-12,without +22,368.9578241234784,0.0,0.0,79.04356314272411,0.1249320830029319,1000,mac,phase-12,without +23,378.87735844050263,0.0,0.0,81.16867145014876,0.1282909170040511,1000,mac,phase-12,without +24,329.8612412749815,0.0,0.0,70.66771904078234,0.1116936659964267,1000,mac,phase-12,without +25,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101,1000,mac,phase-12,without +26,377.9771021827879,0.0,0.0,80.97580533456942,0.1279860830036341,1000,mac,phase-12,without +27,376.3770485675717,0.0,0.0,80.63301835270623,0.1274442919966532,1000,mac,phase-12,without +28,376.4166725657793,0.0,0.0,80.64150718747139,0.1274577090007369,1000,mac,phase-12,without +29,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799,1000,mac,phase-12,without +0,376.57177593891714,0.0,0.0,79.74107126114866,0.1257639160030521,1000,mac,phase-24,without +1,380.690278713343,0.0,0.0,80.61318607221193,0.1271393749993876,1000,mac,phase-24,without +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998,1000,mac,phase-24,without +3,321.82332515261595,0.0,0.0,68.14779636766306,0.1074795410022488,1000,mac,phase-24,without +4,377.175622428229,0.0,0.0,79.86893895865455,0.1259655829999246,1000,mac,phase-24,without +5,380.9577662999694,0.0,0.0,80.66982798769662,0.1272287079991656,1000,mac,phase-24,without +6,381.55025850883186,0.0,0.0,80.79529135608311,0.1274265829997602,1000,mac,phase-24,without +7,386.5080296823765,0.0,0.0,81.84512570296262,0.1290823329982231,1000,mac,phase-24,without +8,378.1668532813673,0.0,0.0,80.07883735026734,0.1262966249996679,1000,mac,phase-24,without +9,364.021648680628,0.0,0.0,77.0835152360204,0.1215725420042872,1000,mac,phase-24,without +10,381.3288079055205,0.0,0.0,80.7483980160407,0.1273526250006398,1000,mac,phase-24,without +11,372.39002208305175,0.0,0.0,78.85556269804478,0.1243673330027377,1000,mac,phase-24,without +12,382.33663003234,0.0,0.0,80.96180969787187,0.1276892079986282,1000,mac,phase-24,without +13,380.7838498071915,0.0,0.0,80.63300024772721,0.1271706249972339,1000,mac,phase-24,without +14,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207,1000,mac,phase-24,without +15,359.0034919453096,0.0,0.0,76.02089392609103,0.1198966250012745,1000,mac,phase-24,without +16,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113,1000,mac,phase-24,without +17,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118,1000,mac,phase-24,without +18,382.58927200969583,0.0,0.0,81.01530797683783,0.1277735830008168,1000,mac,phase-24,without +19,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988,1000,mac,phase-24,without +20,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475,1000,mac,phase-24,without +21,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802,1000,mac,phase-24,without +22,380.5168592731632,0.0,0.0,80.57646358576704,0.1270814579984289,1000,mac,phase-24,without +23,379.91950137360783,0.0,0.0,80.44996988156394,0.1268819580000126,1000,mac,phase-24,without +24,380.7278329052986,0.0,0.0,80.62113837158283,0.1271519169968087,1000,mac,phase-24,without +25,381.2378568006439,0.0,0.0,80.7291386370892,0.1273222500021802,1000,mac,phase-24,without +26,381.37821343052354,0.0,0.0,80.75885989805546,0.1273691249953117,1000,mac,phase-24,without +27,358.5115594791486,0.0,0.0,75.91672461668911,0.1197323340020375,1000,mac,phase-24,without +28,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729,1000,mac,phase-24,without +29,378.77381981874754,0.0,0.0,80.2073657345035,0.1264993340009823,1000,mac,phase-24,without +0,375.7903775249154,0.0,0.0,80.41439874522317,0.1264599169953726,1000,mac,phase-23,without +1,383.4508304762699,0.0,0.0,82.0536390106512,0.1290377909972448,1000,mac,phase-23,without +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519,1000,mac,phase-23,without +3,378.9841223881726,0.0,0.0,81.09781984454986,0.127534667000873,1000,mac,phase-23,without +4,377.41585176705246,0.0,0.0,80.76222972141316,0.1270069169986527,1000,mac,phase-23,without +5,378.5934796234818,0.0,0.0,81.01422722237132,0.1274032090004766,1000,mac,phase-23,without +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686,1000,mac,phase-23,without +7,381.4723549525934,0.0,0.0,81.63027021468451,0.1283719999992172,1000,mac,phase-23,without +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033,1000,mac,phase-23,without +9,376.8108781888688,0.0,0.0,80.63277300975706,0.1268033329979516,1000,mac,phase-23,without +10,377.2519165934144,0.0,0.0,80.72714966292916,0.126951749996806,1000,mac,phase-23,without +11,367.1828436771961,0.0,0.0,78.57249511905164,0.1235633340038475,1000,mac,phase-23,without +12,377.61655773184407,0.0,0.0,80.80517826519866,0.1270744580033351,1000,mac,phase-23,without +13,377.07560168009087,0.0,0.0,80.68942049637064,0.1268924169999081,1000,mac,phase-23,without +14,378.470650841746,0.0,0.0,80.98794341303869,0.1273618750055902,1000,mac,phase-23,without +15,378.9410339449637,0.0,0.0,81.08859946143005,0.1275201669996022,1000,mac,phase-23,without +16,378.1692783957104,0.0,0.0,80.92345351256293,0.1272604580008192,1000,mac,phase-23,without +17,360.8712520229351,0.0,0.0,77.22189415011354,0.1214393749978626,1000,mac,phase-23,without +18,376.8633777379917,0.0,0.0,80.64400725078504,0.1268209999980172,1000,mac,phase-23,without +19,378.58864776937514,0.0,0.0,81.01319326656494,0.1274015829985728,1000,mac,phase-23,without +20,377.4466793231688,0.0,0.0,80.76882642941354,0.1270172910008113,1000,mac,phase-23,without +21,377.031895147184,0.0,0.0,80.68006784985506,0.126877709000837,1000,mac,phase-23,without +22,374.3029586664954,0.0,0.0,80.09610987904745,0.1259593750000931,1000,mac,phase-23,without +23,347.9967234803297,0.0,0.0,74.46690750383311,0.1171068749972619,1000,mac,phase-23,without +24,376.47582842715946,0.0,0.0,80.56107658869635,0.1266905829979805,1000,mac,phase-23,without +25,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271,1000,mac,phase-23,without +26,378.17670742869615,0.0,0.0,80.92504323187597,0.1272629579980275,1000,mac,phase-23,without +27,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385,1000,mac,phase-23,without +28,376.6962243120295,0.0,0.0,80.60823852691433,0.1267647499989834,1000,mac,phase-23,without +29,356.6068604960436,0.0,0.0,76.30936817510647,0.1200043339995318,1000,mac,phase-23,without +0,391.0022498249037,0.0,0.0,82.00330714172952,0.1264092919955146,1000,mac,phase-8,without +1,388.85277091672145,0.0,0.0,81.5525056970287,0.1257143750044633,1000,mac,phase-8,without +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597,1000,mac,phase-8,without +3,392.66726186303595,0.0,0.0,82.35250332568698,0.1269475829976727,1000,mac,phase-8,without +4,399.7876812973492,0.0,0.0,83.84583985280774,0.1292495829984545,1000,mac,phase-8,without +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936,1000,mac,phase-8,without +6,394.38228386701905,0.0,0.0,82.71218789581523,0.1275020419998327,1000,mac,phase-8,without +7,392.0421898742136,0.0,0.0,82.22140952684555,0.1267454999979236,1000,mac,phase-8,without +8,396.18906710609906,0.0,0.0,83.09111717552949,0.1280861670020385,1000,mac,phase-8,without +9,394.03494844532105,0.0,0.0,82.63934265444013,0.1273897499995655,1000,mac,phase-8,without +10,392.7300279752369,0.0,0.0,82.36566700640546,0.1269678750031744,1000,mac,phase-8,without +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105,1000,mac,phase-8,without +12,394.3054687072889,0.0,0.0,82.6960777656579,0.1274772079996182,1000,mac,phase-8,without +13,373.9605683304472,0.0,0.0,78.42922478689076,0.1208997920039109,1000,mac,phase-8,without +14,394.4120553877859,0.0,0.0,82.71843175544166,0.1275116670003626,1000,mac,phase-8,without +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296,1000,mac,phase-8,without +16,390.35114282852976,0.0,0.0,81.86675312693883,0.1261987919933744,1000,mac,phase-8,without +17,396.3350882853156,0.0,0.0,83.12174160189497,0.1281333750011981,1000,mac,phase-8,without +18,343.90009686569954,0.0,0.0,72.12476470909637,0.1111813749957946,1000,mac,phase-8,without +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461,1000,mac,phase-8,without +20,395.20003402797175,0.0,0.0,82.88369130185403,0.1277664169974741,1000,mac,phase-8,without +21,392.31580638784453,0.0,0.0,82.27879400229646,0.126833959002397,1000,mac,phase-8,without +22,345.98874293694035,0.0,0.0,72.56280793101395,0.1118566250006551,1000,mac,phase-8,without +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976,1000,mac,phase-8,without +24,392.7198453431928,0.0,0.0,82.36353144451702,0.1269645830034278,1000,mac,phase-8,without +25,410.9331853581329,0.0,0.0,86.18334096221345,0.132852874994569,1000,mac,phase-8,without +26,396.49541525584135,0.0,0.0,83.1553663235251,0.1281852079991949,1000,mac,phase-8,without +27,395.588223713584,0.0,0.0,82.96510474137456,0.1278919169999426,1000,mac,phase-8,without +28,392.22867867129474,0.0,0.0,82.2605210616574,0.1268057909983326,1000,mac,phase-8,without +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405,1000,mac,phase-8,without +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.1269404159975238,1000,mac,phase-1,without +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.1279510000022128,1000,mac,phase-1,without +2,415.0127574793532,1.4175777337453508,0.0,92.1425526934478,0.127556833998824,1000,mac,phase-1,without +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.1269669169996632,1000,mac,phase-1,without +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.1270766669986187,1000,mac,phase-1,without +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.1233426670005428,1000,mac,phase-1,without +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818,1000,mac,phase-1,without +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338908,0.1287382910013548,1000,mac,phase-1,without +8,416.11991185189385,1.421359490710763,0.0,92.3883668961996,0.1278971249994356,1000,mac,phase-1,without +9,411.9964417244347,1.4072747684146274,0.0,91.4728599469508,0.1266297499969368,1000,mac,phase-1,without +10,413.4103800010833,1.412104420953603,0.0,91.78678736198415,0.127064332998998,1000,mac,phase-1,without +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.1217907500031287,1000,mac,phase-1,without +12,368.7876480349551,1.259684549241063,0.0,81.87949570066912,0.1133492500011925,1000,mac,phase-1,without +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.126919041002111,1000,mac,phase-1,without +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.1270633339954656,1000,mac,phase-1,without +15,415.7098276987633,1.419958747832471,0.0,92.2973186091106,0.1277710830036085,1000,mac,phase-1,without +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.1279709580048802,1000,mac,phase-1,without +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.1204881249941536,1000,mac,phase-1,without +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976,1000,mac,phase-1,without +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.1281227910003508,1000,mac,phase-1,without +20,411.35644206336633,1.405088692799397,0.0,91.3307650319608,0.1264330419944599,1000,mac,phase-1,without +21,434.2858446220848,1.4834096839726385,0.0,96.42162945822147,0.1334805410006083,1000,mac,phase-1,without +22,425.7506982570446,1.454255800812937,0.0,94.52662705284092,0.1308572089983499,1000,mac,phase-1,without +23,343.1229552610153,1.1720205043073066,0.0,76.18133277997494,0.1054610419960226,1000,mac,phase-1,without +24,425.9506550579292,1.4549388022473182,0.0,94.57102214607568,0.1309186670041526,1000,mac,phase-1,without +25,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.1300685829992289,1000,mac,phase-1,without +26,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162,1000,mac,phase-1,without +27,414.45965044482983,1.4156884611811038,0.0,92.01974997677176,0.1273868330026744,1000,mac,phase-1,without +28,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.1280377500006579,1000,mac,phase-1,without +29,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.1202185420042951,1000,mac,phase-1,without +0,596.4459331278491,0.4886326329094673,23.45436637965443,115.49181302124482,0.1359050419996492,1000,mac,phase-30,without +1,554.2467896523963,0.454061387742615,21.79494661164552,107.3206522885938,0.1262896249972982,1000,mac,phase-30,without +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.128024291996553,1000,mac,phase-30,without +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.1317127079964848,1000,mac,phase-30,without +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885487,0.1296312500053318,1000,mac,phase-30,without +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371764,0.1249224590064841,1000,mac,phase-30,without +6,574.285027647265,0.4704775227960507,22.58292109421043,111.20072306658084,0.1308554999995976,1000,mac,phase-30,without +7,568.8810812926358,0.4660503913685354,22.3704187856897,110.15433893132028,0.1296241670061135,1000,mac,phase-30,without +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196,1000,mac,phase-30,without +9,573.1562154950751,0.4695527542238312,22.538532202743895,110.98214740904696,0.130598290998023,1000,mac,phase-30,without +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.1330455419956706,1000,mac,phase-30,without +11,542.9270608157159,0.444787808029728,21.349814785426947,105.12877548359786,0.1237103329985984,1000,mac,phase-30,without +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095,1000,mac,phase-30,without +13,560.8248965977349,0.4594504390173964,22.053621072835032,108.5943930506118,0.1277885000017704,1000,mac,phase-30,without +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.135394859954,0.130778625003586,1000,mac,phase-30,without +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902384,0.1249148339993553,1000,mac,phase-30,without +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.1294760829987353,1000,mac,phase-30,without +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373,1000,mac,phase-30,without +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913752,0.1291372500054421,1000,mac,phase-30,without +19,582.8598113728299,0.4775023324489214,22.92011195754823,112.86108700524863,0.1328093339980114,1000,mac,phase-30,without +20,575.8457576853292,0.4717561359701918,22.644294526569208,111.50293242324037,0.1312111249935696,1000,mac,phase-30,without +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062836,0.1310481670006993,1000,mac,phase-30,without +22,561.1286338518851,0.4596992728612786,22.065565097341377,108.65320670699792,0.127857708997908,1000,mac,phase-30,without +23,581.2049042884294,0.4761465656292358,22.85503515020332,112.54064183336725,0.13243225000042,1000,mac,phase-30,without +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.1302706669957842,1000,mac,phase-30,without +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.1308044999968842,1000,mac,phase-30,without +26,558.5815399432987,0.457612590508876,21.965404344426048,108.16000442813365,0.1272773329983465,1000,mac,phase-30,without +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.1308387090030009,1000,mac,phase-30,without +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.1301158330024918,1000,mac,phase-30,without +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332224,0.131808792000811,1000,mac,phase-30,without +0,390.2923708501913,0.4469127826171484,0.0,83.81333569389291,0.1297804999994696,1000,mac,phase-6,without +1,365.9657287665602,0.4190570310900451,0.0,78.58931090750231,0.121691375003138,1000,mac,phase-6,without +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035,1000,mac,phase-6,without +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715,1000,mac,phase-6,without +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.1247413749952102,1000,mac,phase-6,without +5,383.3887996646965,0.4390076980217611,0.0,82.33082829054258,0.1274849160035955,1000,mac,phase-6,without +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.1267657089993008,1000,mac,phase-6,without +7,372.53711365314894,0.4265817385264631,0.0,80.00048296365516,0.1238765000016428,1000,mac,phase-6,without +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.1270593330045812,1000,mac,phase-6,without +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.1271557080035563,1000,mac,phase-6,without +10,381.75469649055145,0.4371365325796854,0.0,81.97991280225177,0.1269415420028963,1000,mac,phase-6,without +11,381.439053481218,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572,1000,mac,phase-6,without +12,381.4226364679471,0.4367563000161465,0.0,81.90860457225888,0.1268311249950784,1000,mac,phase-6,without +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.1209846669953549,1000,mac,phase-6,without +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.1269026670051971,1000,mac,phase-6,without +15,384.03863484277593,0.4397518059505053,0.0,82.47037714671785,0.1277009999976144,1000,mac,phase-6,without +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.1271295830010785,1000,mac,phase-6,without +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.1265630839989171,1000,mac,phase-6,without +18,383.1444573623307,0.4387279085449043,0.0,82.27835700249821,0.1274036670001805,1000,mac,phase-6,without +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.1213963339978363,1000,mac,phase-6,without +20,337.2567860558492,0.3861832307518752,0.0,72.42420896715937,0.1121450420032488,1000,mac,phase-6,without +21,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588,1000,mac,phase-6,without +22,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.1273649170034332,1000,mac,phase-6,without +23,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.1270068339945282,1000,mac,phase-6,without +24,381.2948250919911,0.436609946815457,0.0,81.88115771816032,0.1267886249988805,1000,mac,phase-6,without +25,375.600202278002,0.4300891948924535,0.0,80.65826593444629,0.1248950420049368,1000,mac,phase-6,without +26,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.1272384590047295,1000,mac,phase-6,without +27,380.0551779472132,0.4351904618438977,0.0,81.61494969041713,0.1263764160030405,1000,mac,phase-6,without +28,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.1245102920001954,1000,mac,phase-6,without +29,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.1261221669992664,1000,mac,phase-6,without +0,384.9922799870706,0.0,0.0,81.6414086697934,0.1287048750018584,1000,mac,phase-7,without +1,382.1713775858955,0.0,0.0,81.0432085039104,0.127761832998658,1000,mac,phase-7,without +2,387.3060348462912,0.0,0.0,82.13206319935875,0.1294783750054193,1000,mac,phase-7,without +3,382.6248077427939,0.0,0.0,81.13936283911889,0.1279134170035831,1000,mac,phase-7,without +4,382.57595115897095,0.0,0.0,81.1290023188346,0.1278970839994144,1000,mac,phase-7,without +5,380.9924394855085,0.0,0.0,80.79320305638996,0.1273677080025663,1000,mac,phase-7,without +6,381.0339464626488,0.0,0.0,80.80200502011628,0.1273815839958842,1000,mac,phase-7,without +7,373.8850362618945,0.0,0.0,79.28600812983309,0.1249916669985395,1000,mac,phase-7,without +8,375.0913924440434,0.0,0.0,79.54182785191026,0.125394957998651,1000,mac,phase-7,without +9,379.9175739652012,0.0,0.0,80.5652672255431,0.1270083749986952,1000,mac,phase-7,without +10,380.5149594438619,0.0,0.0,80.6919487060091,0.1272080839989939,1000,mac,phase-7,without +11,383.2371466215314,0.0,0.0,81.26921533549904,0.1281181250014924,1000,mac,phase-7,without +12,380.5183216338946,0.0,0.0,80.69266169155388,0.1272092079962021,1000,mac,phase-7,without +13,380.6673860889716,0.0,0.0,80.72427227890252,0.1272590410007978,1000,mac,phase-7,without +14,361.8152226748145,0.0,0.0,76.72648516053064,0.1209566670004278,1000,mac,phase-7,without +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084,1000,mac,phase-7,without +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263,1000,mac,phase-7,without +17,380.8158283426864,0.0,0.0,80.7557509223179,0.1273086660003173,1000,mac,phase-7,without +18,365.9374543718208,0.0,0.0,77.6006450336018,0.1223347499981173,1000,mac,phase-7,without +19,378.25367465054006,0.0,0.0,80.21242097122808,0.1264521250050165,1000,mac,phase-7,without +20,356.6132616527771,0.0,0.0,75.62335803886796,0.1192176250042393,1000,mac,phase-7,without +21,384.7918642445624,0.0,0.0,81.59890853566469,0.1286378750010044,1000,mac,phase-7,without +22,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591,1000,mac,phase-7,without +23,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283,1000,mac,phase-7,without +24,382.10669117039305,0.0,0.0,81.02949111174972,0.1277402080013416,1000,mac,phase-7,without +25,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084,1000,mac,phase-7,without +26,363.2618803228803,0.0,0.0,77.03326317762489,0.1214402920013526,1000,mac,phase-7,without +27,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759,1000,mac,phase-7,without +28,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602,1000,mac,phase-7,without +29,380.0084340815053,0.0,0.0,80.58453500900934,0.1270387499971548,1000,mac,phase-7,without +0,371.8360981389177,0.0,0.0,79.91504063021144,0.1259272919996874,1000,mac,phase-9,without +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777,1000,mac,phase-9,without +2,378.69492235952407,0.0,0.0,81.38913961900961,0.1282501250025234,1000,mac,phase-9,without +3,377.1005429822752,0.0,0.0,81.04647548997387,0.1277101669984404,1000,mac,phase-9,without +4,376.1059449323693,0.0,0.0,80.83271640642396,0.1273733330017421,1000,mac,phase-9,without +5,377.0002693980719,0.0,0.0,81.02492468413269,0.1276762080015032,1000,mac,phase-9,without +6,376.09511706560784,0.0,0.0,80.83038928053028,0.1273696659991401,1000,mac,phase-9,without +7,373.9279005486811,0.0,0.0,80.36461095273609,0.1266357089989469,1000,mac,phase-9,without +8,375.2913456412782,0.0,0.0,80.65764266890704,0.1270974580038455,1000,mac,phase-9,without +9,375.9660567759833,0.0,0.0,80.8026516339147,0.1273259579975274,1000,mac,phase-9,without +10,380.76937419502184,0.0,0.0,81.83498095488036,0.1289526659966213,1000,mac,phase-9,without +11,374.6659725434551,0.0,0.0,80.52323743829143,0.126885666999442,1000,mac,phase-9,without +12,367.4374331842578,0.0,0.0,78.96967924563978,0.1244376249960623,1000,mac,phase-9,without +13,367.6221062246298,0.0,0.0,79.00936918859718,0.1245001670031342,1000,mac,phase-9,without +14,373.8652749683743,0.0,0.0,80.35115145856713,0.1266145000045071,1000,mac,phase-9,without +15,374.382871422958,0.0,0.0,80.46239332536042,0.126789791000192,1000,mac,phase-9,without +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078,1000,mac,phase-9,without +17,373.0515349216383,0.0,0.0,80.17626238990805,0.1263389160012593,1000,mac,phase-9,without +18,373.3190099077397,0.0,0.0,80.23374813292452,0.1264295000000856,1000,mac,phase-9,without +19,372.9278900370712,0.0,0.0,80.14968862253218,0.1262970419993507,1000,mac,phase-9,without +20,374.2486437648836,0.0,0.0,80.43354510755047,0.1267443329998059,1000,mac,phase-9,without +21,375.006771060872,0.0,0.0,80.59648187986771,0.1270010829975945,1000,mac,phase-9,without +22,375.173975427608,0.0,0.0,80.63241745424612,0.1270577090035658,1000,mac,phase-9,without +23,379.6903796752694,0.0,0.0,81.6030833760348,0.1285872500011464,1000,mac,phase-9,without +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745,1000,mac,phase-9,without +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546,1000,mac,phase-9,without +26,377.5824609660864,0.0,0.0,81.15004933729386,0.1278733750004903,1000,mac,phase-9,without +27,377.7160744515755,0.0,0.0,81.17876555708816,0.1279186250030761,1000,mac,phase-9,without +28,375.568662234418,0.0,0.0,80.71724357080743,0.1271913749951636,1000,mac,phase-9,without +29,375.75431854819095,0.0,0.0,80.757144838954,0.1272542500009876,1000,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_box.png new file mode 100644 index 000000000..f39726eb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_per_phase.png new file mode 100644 index 000000000..bcff94108 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_violin.png new file mode 100644 index 000000000..02400c68c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_box.png new file mode 100644 index 000000000..43f6250cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_per_phase.png new file mode 100644 index 000000000..e5f2a240d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_violin.png new file mode 100644 index 000000000..ce0f3be7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_box.png new file mode 100644 index 000000000..541ffd434 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_per_phase.png new file mode 100644 index 000000000..985bcd3c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_violin.png new file mode 100644 index 000000000..09e6adb27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_box.png new file mode 100644 index 000000000..32613c10b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_per_phase.png new file mode 100644 index 000000000..58d2a0461 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_violin.png new file mode 100644 index 000000000..4447546f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_box.png new file mode 100644 index 000000000..97c34dc31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_per_phase.png new file mode 100644 index 000000000..2b6669c8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_violin.png new file mode 100644 index 000000000..02069ec47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n10/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_box.png new file mode 100644 index 000000000..96e75e744 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_per_phase.png new file mode 100644 index 000000000..3a193bf7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_violin.png new file mode 100644 index 000000000..623f991a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_box.png new file mode 100644 index 000000000..f3b65ea78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_per_phase.png new file mode 100644 index 000000000..167e7a91e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_violin.png new file mode 100644 index 000000000..9141a707f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_box.png new file mode 100644 index 000000000..9b119b6c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_per_phase.png new file mode 100644 index 000000000..1708c8700 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_violin.png new file mode 100644 index 000000000..2ebb157e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_box.png new file mode 100644 index 000000000..aa9d086f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_per_phase.png new file mode 100644 index 000000000..2fc2e3fea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_violin.png new file mode 100644 index 000000000..4857f287c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_box.png new file mode 100644 index 000000000..5f22666e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_per_phase.png new file mode 100644 index 000000000..6e7a02f2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_violin.png new file mode 100644 index 000000000..5703660bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n100/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_box.png new file mode 100644 index 000000000..23c9520fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_per_phase.png new file mode 100644 index 000000000..0e233c129 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_violin.png new file mode 100644 index 000000000..c385eb608 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_box.png new file mode 100644 index 000000000..8b5ab4647 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_per_phase.png new file mode 100644 index 000000000..2ae42e2b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_violin.png new file mode 100644 index 000000000..f773263aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_box.png new file mode 100644 index 000000000..c301c1431 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_per_phase.png new file mode 100644 index 000000000..9b93c69e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_violin.png new file mode 100644 index 000000000..7e378b515 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_box.png new file mode 100644 index 000000000..ae51cee2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_per_phase.png new file mode 100644 index 000000000..23ca8e39f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_violin.png new file mode 100644 index 000000000..983eed7f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_box.png new file mode 100644 index 000000000..beacb69eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_per_phase.png new file mode 100644 index 000000000..43e6d9dc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_violin.png new file mode 100644 index 000000000..94436e959 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/n1000/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/scaling_overhead.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/scaling_overhead.png new file mode 100644 index 000000000..8f40d9abc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/plots/scaling_overhead.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n10/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n10/cleaned_mac_report.md new file mode 100644 index 000000000..b599fc070 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n10/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 880 samples (with smell) vs 882 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 481.32 ms | 73.56 ms | +| **Average Power** | 4.194 W | 5.170 W | +| **Total Energy** | 1776.26 J | 335.44 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.68% | 0.00e+00 | +6.469 | large | βœ… | +| `gpu_mj` | +86.23% | 6.17e-33 | +0.604 | medium | βœ… | +| `ane_mj` | +85.06% | 3.92e-22 | +0.473 | small | βœ… | +| `dram_mj` | +85.42% | 0.00e+00 | +28.839 | large | βœ… | +| `time_s` | +84.91% | 0.00e+00 | +53.990 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.469, large) +- **`gpu_mj`**: 86.2% lower energy (Cohen’s d = +0.604, medium) +- **`ane_mj`**: 85.1% lower energy (Cohen’s d = +0.473, small) +- **`dram_mj`**: 85.4% lower energy (Cohen’s d = +28.839, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +53.990, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n10/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n10/raw_mac_report.md new file mode 100644 index 000000000..c56529e19 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n10/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 482.89 ms | 73.43 ms | +| **Average Power** | 4.177 W | 5.169 W | +| **Total Energy** | 1815.47 J | 341.56 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.74% | 0.00e+00 | +6.500 | large | βœ… | +| `gpu_mj` | +86.51% | 1.12e-33 | +0.605 | medium | βœ… | +| `ane_mj` | +85.56% | 9.85e-23 | +0.475 | small | βœ… | +| `dram_mj` | +85.45% | 0.00e+00 | +28.600 | large | βœ… | +| `time_s` | +84.95% | 0.00e+00 | +52.041 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.500, large) +- **`gpu_mj`**: 86.5% lower energy (Cohen’s d = +0.605, medium) +- **`ane_mj`**: 85.6% lower energy (Cohen’s d = +0.475, small) +- **`dram_mj`**: 85.5% lower energy (Cohen’s d = +28.600, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +52.041, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n100/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n100/cleaned_mac_report.md new file mode 100644 index 000000000..0f16c88e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n100/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 521.44 ms | 78.82 ms | +| **Average Power** | 4.860 W | 4.414 W | +| **Total Energy** | 2258.08 J | 304.41 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.07% | 0.00e+00 | +6.228 | large | βœ… | +| `gpu_mj` | +80.99% | 2.11e-166 | +1.541 | large | βœ… | +| `ane_mj` | +86.38% | 1.05e-47 | +0.729 | medium | βœ… | +| `dram_mj` | +87.09% | 0.00e+00 | +20.546 | large | βœ… | +| `time_s` | +84.69% | 0.00e+00 | +75.359 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.228, large) +- **`gpu_mj`**: 81.0% lower energy (Cohen’s d = +1.541, large) +- **`ane_mj`**: 86.4% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.546, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +75.359, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n100/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n100/raw_mac_report.md new file mode 100644 index 000000000..99df8502d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n100/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 520.34 ms | 78.33 ms | +| **Average Power** | 4.871 W | 4.426 W | +| **Total Energy** | 2281.01 J | 312.04 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.12% | 0.00e+00 | +6.230 | large | βœ… | +| `gpu_mj` | +81.23% | 4.98e-169 | +1.546 | large | βœ… | +| `ane_mj` | +86.55% | 2.91e-48 | +0.729 | medium | βœ… | +| `dram_mj` | +87.13% | 0.00e+00 | +20.514 | large | βœ… | +| `time_s` | +84.73% | 0.00e+00 | +74.836 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.230, large) +- **`gpu_mj`**: 81.2% lower energy (Cohen’s d = +1.546, large) +- **`ane_mj`**: 86.6% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.514, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +74.836, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n1000/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n1000/cleaned_mac_report.md new file mode 100644 index 000000000..0ec7f1294 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n1000/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 892 samples (with smell) vs 874 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 650.62 ms | 125.11 ms | +| **Average Power** | 7.226 W | 3.505 W | +| **Total Energy** | 4193.45 J | 383.30 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.15% | 0.00e+00 | +95.218 | large | βœ… | +| `gpu_mj` | +83.82% | 0.00e+00 | +3.677 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.273 | small | βœ… | +| `dram_mj` | +87.81% | 0.00e+00 | +129.181 | large | βœ… | +| `time_s` | +81.05% | 0.00e+00 | +145.073 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.1% lower energy (Cohen’s d = +95.218, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.677, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.273, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +129.181, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +145.073, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n1000/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n1000/raw_mac_report.md new file mode 100644 index 000000000..2c0845c14 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/consolidated-report/reports-source/n1000/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 655.51 ms | 123.73 ms | +| **Average Power** | 7.179 W | 3.544 W | +| **Total Energy** | 4235.28 J | 394.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.17% | 0.00e+00 | +89.445 | large | βœ… | +| `gpu_mj` | +83.80% | 0.00e+00 | +3.683 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.272 | small | βœ… | +| `dram_mj` | +87.83% | 0.00e+00 | +117.690 | large | βœ… | +| `time_s` | +81.06% | 0.00e+00 | +134.006 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.2% lower energy (Cohen’s d = +89.445, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.683, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.272, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +117.690, large) +- **`time_s`**: 81.1% lower time (Cohen’s d = +134.006, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1a78eefcb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.49625229200319154 +1,1548.7716415444704,0.5093526556274295,0.0,468.36674527127565,0.49902783399738837 +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157 +3,1537.9614894800372,0.5057974642008454,0.0,465.09762824815067,0.49554470799921546 +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305 +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575 +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797 +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397 +8,1543.7942757566407,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953 +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.49384420899878023 +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.49462162500276463 +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.49868320799578214 +12,1536.410091706245,0.5052872478753273,0.0,464.62846732962595,0.49504483400232857 +13,1501.0461152669352,0.49365691140109685,0.0,453.9339852636886,0.48365025000384776 +14,1503.158875751745,0.49435174602666465,0.0,454.57290886305236,0.48433099999965634 +15,1497.0097852395265,0.49232946236774605,0.0,452.7133516292214,0.48234970899648033 +16,1521.5805489456523,0.5004101783421352,0.0,460.14383932487135,0.49026662499818485 +17,1499.5455354643086,0.49316340784838036,0.0,453.48019229684735,0.48316675000387477 +18,1505.117621218829,0.49499592892528915,0.0,455.1652565111009,0.48496212500322144 +19,1493.7772756646511,0.49126636998398965,0.0,451.73580274594457,0.48130816600314574 +20,1496.3047548280974,0.49209759531728703,0.0,452.50014214742265,0.4821225420018891 +21,1502.9231341998309,0.49427421646563174,0.0,454.5016178473639,0.4842550419998588 +22,1510.012481501061,0.49660572730795693,0.0,456.64551978391,0.4865392920037266 +23,1504.4246171495324,0.49476801704106527,0.0,454.9556839364942,0.4847388330017566 +24,1509.3322796742225,0.49638202576437923,0.0,456.43981875787216,0.4863201249972917 +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552 +26,1505.1934012764107,0.4950208511104179,0.0,455.1881732910663,0.48498654200375313 +27,1520.9086243674801,0.5001891989807543,0.0,459.9406414361029,0.49005012499401346 +28,1511.0160978228657,0.49693579187333886,0.0,456.94902515393085,0.48686266600270756 +29,1510.3806433826637,0.49672680663757846,0.0,456.7568562634747,0.48665791699750116 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2352d0fc1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,315.89567899052815,0.0,0.0,70.69041793477467,0.08322591600153828 +1,312.32888500652234,0.0,0.0,69.8922488739558,0.08228620800218778 +2,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424 +3,315.90675086282243,0.0,0.0,70.69289557322259,0.08322883299842943 +4,299.2312370810115,0.0,0.0,66.96128695394593,0.07883550000406103 +5,317.14049354538116,0.0,0.0,70.96897971002608,0.08355387500341749 +6,317.43117509131514,0.0,0.0,71.03402776650366,0.08363045800069813 +7,312.8783039921803,0.0,0.0,70.01519660733908,0.08243095799844014 +8,312.72885063157213,0.0,0.0,69.98175227357386,0.08239158299693372 +9,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071 +10,297.0645600830759,0.0,0.0,66.47643289388668,0.07826466700498713 +11,320.132881830413,0.0,0.0,71.63860956747773,0.08434225000382867 +12,305.29682664515053,0.0,0.0,68.31863081721116,0.08043354100664146 +13,306.0025007629592,0.0,0.0,68.47654496935486,0.08061945800000103 +14,317.616212578826,0.0,0.0,71.07543503540818,0.08367920800083084 +15,313.46473429199887,0.0,0.0,70.14642664858644,0.08258545900025638 +16,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633 +17,317.8055239782236,0.0,0.0,71.1177987106126,0.08372908400633605 +18,312.42836494049845,0.0,0.0,69.91451026775316,0.08231241699832026 +19,310.49337764575245,0.0,0.0,69.48150320351859,0.08180262499809032 +20,319.06867904096777,0.0,0.0,71.40046468308539,0.08406187500077067 +21,315.95309183579826,0.0,0.0,70.70326565095722,0.08324104199709836 +22,314.0385061273956,0.0,0.0,70.27482400740125,0.08273662500141654 +23,314.3986175247909,0.0,0.0,70.35540891842726,0.08283149999624584 +24,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661 +25,312.9080390484739,0.0,0.0,70.02185065073537,0.08243879200017545 +26,316.7443235347586,0.0,0.0,70.88032568438815,0.08344950000173412 +27,312.2983604376832,0.0,0.0,69.88541815523429,0.08227816599537618 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..129011411 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..02366f49e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b18a88cd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0377dd1a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..702b5816d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..138493a87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..29a69aa1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fdfa1b82f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f12ccb936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e662ebf6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..801e1368c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f5ff6b616 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..78ee06bd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..16fd80ccf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..149ec7121 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..675678e27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9b967e1f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1a78eefcb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.49625229200319154 +1,1548.7716415444704,0.5093526556274295,0.0,468.36674527127565,0.49902783399738837 +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157 +3,1537.9614894800372,0.5057974642008454,0.0,465.09762824815067,0.49554470799921546 +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305 +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575 +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797 +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397 +8,1543.7942757566407,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953 +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.49384420899878023 +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.49462162500276463 +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.49868320799578214 +12,1536.410091706245,0.5052872478753273,0.0,464.62846732962595,0.49504483400232857 +13,1501.0461152669352,0.49365691140109685,0.0,453.9339852636886,0.48365025000384776 +14,1503.158875751745,0.49435174602666465,0.0,454.57290886305236,0.48433099999965634 +15,1497.0097852395265,0.49232946236774605,0.0,452.7133516292214,0.48234970899648033 +16,1521.5805489456523,0.5004101783421352,0.0,460.14383932487135,0.49026662499818485 +17,1499.5455354643086,0.49316340784838036,0.0,453.48019229684735,0.48316675000387477 +18,1505.117621218829,0.49499592892528915,0.0,455.1652565111009,0.48496212500322144 +19,1493.7772756646511,0.49126636998398965,0.0,451.73580274594457,0.48130816600314574 +20,1496.3047548280974,0.49209759531728703,0.0,452.50014214742265,0.4821225420018891 +21,1502.9231341998309,0.49427421646563174,0.0,454.5016178473639,0.4842550419998588 +22,1510.012481501061,0.49660572730795693,0.0,456.64551978391,0.4865392920037266 +23,1504.4246171495324,0.49476801704106527,0.0,454.9556839364942,0.4847388330017566 +24,1509.3322796742225,0.49638202576437923,0.0,456.43981875787216,0.4863201249972917 +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552 +26,1505.1934012764107,0.4950208511104179,0.0,455.1881732910663,0.48498654200375313 +27,1520.9086243674801,0.5001891989807543,0.0,459.9406414361029,0.49005012499401346 +28,1511.0160978228657,0.49693579187333886,0.0,456.94902515393085,0.48686266600270756 +29,1510.3806433826637,0.49672680663757846,0.0,456.7568562634747,0.48665791699750116 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e6db750d1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,315.89567899052815,0.0,0.0,70.69041793477467,0.08322591600153828 +1,265.85174216063353,0.0,0.0,59.491699354921,0.07004133400187129 +2,312.32888500652234,0.0,0.0,69.8922488739558,0.08228620800218778 +3,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424 +4,315.90675086282243,0.0,0.0,70.69289557322259,0.08322883299842943 +5,299.2312370810115,0.0,0.0,66.96128695394593,0.07883550000406103 +6,317.14049354538116,0.0,0.0,70.96897971002608,0.08355387500341749 +7,317.43117509131514,0.0,0.0,71.03402776650366,0.08363045800069813 +8,312.8783039921803,0.0,0.0,70.01519660733908,0.08243095799844014 +9,268.2657658886426,0.0,0.0,60.03190410473824,0.07067733300209511 +10,312.72885063157213,0.0,0.0,69.98175227357386,0.08239158299693372 +11,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071 +12,297.0645600830759,0.0,0.0,66.47643289388668,0.07826466700498713 +13,320.132881830413,0.0,0.0,71.63860956747773,0.08434225000382867 +14,305.29682664515053,0.0,0.0,68.31863081721116,0.08043354100664146 +15,306.0025007629592,0.0,0.0,68.47654496935486,0.08061945800000103 +16,317.616212578826,0.0,0.0,71.07543503540818,0.08367920800083084 +17,313.46473429199887,0.0,0.0,70.14642664858644,0.08258545900025638 +18,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633 +19,317.8055239782236,0.0,0.0,71.1177987106126,0.08372908400633605 +20,312.42836494049845,0.0,0.0,69.91451026775316,0.08231241699832026 +21,310.49337764575245,0.0,0.0,69.48150320351859,0.08180262499809032 +22,319.06867904096777,0.0,0.0,71.40046468308539,0.08406187500077067 +23,315.95309183579826,0.0,0.0,70.70326565095722,0.08324104199709836 +24,314.0385061273956,0.0,0.0,70.27482400740125,0.08273662500141654 +25,314.3986175247909,0.0,0.0,70.35540891842726,0.08283149999624584 +26,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661 +27,312.9080390484739,0.0,0.0,70.02185065073537,0.08243879200017545 +28,316.7443235347586,0.0,0.0,70.88032568438815,0.08344950000173412 +29,312.2983604376832,0.0,0.0,69.88541815523429,0.08227816599537618 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0319131ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b57a9f8fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ad8da99ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ff5024c65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9db10d75f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..54f8d535d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3e1ae7ea5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fdfa1b82f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7f8462330 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2c942fd66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..76ff77f1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..528d94c19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..56d052c0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..65fdce7fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..890d717a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..675678e27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..3570faabe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..99b1295da --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.49496045800333377 +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918 +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945 +3,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.49600291699607624 +4,1570.4229559700955,1.455749590500236,0.0,463.25922195873414,0.4943787920055911 +5,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.49500675000308547 +6,1574.5666425869533,1.4595907022674324,0.0,464.48156848064974,0.49568325000291225 +7,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233 +8,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.49534995800058823 +9,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374 +10,1602.5001032995297,1.4854844424467895,0.0,472.7216627986351,0.5044768750012736 +11,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.49552000000403496 +12,1593.1679060882755,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409 +13,1568.6851150349341,1.4541386479066511,0.0,462.74657609065747,0.49383170900546247 +14,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915 +15,1579.9922038317707,1.4646200852946933,0.0,466.0820553249158,0.49739125000633067 +16,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326 +17,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526 +18,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758 +19,1574.6586293514379,1.459675972095042,0.0,464.5087036653359,0.4957122080013505 +20,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.49889824999991106 +21,1565.789148638521,1.4514541469703561,0.0,461.89229467906654,0.49292004099697806 +22,1568.7101272229095,1.4541618336874398,0.0,462.75395443844394,0.49383958299586084 +23,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.49612645900197094 +24,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402 +25,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641 +26,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868 +27,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838 +28,1584.8883408124661,1.4691587029821032,0.0,467.526367253532,0.49893258399970364 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3ba4b9551 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.08749516699754167 +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.08673758400254883 +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.08618716699857032 +3,293.9572294015164,0.9146992271339105,0.0,69.27999701810545,0.08470116699754726 +4,300.39880553788765,0.9347433156071183,0.0,70.79815112653915,0.08655724999698577 +5,298.60714878159104,0.9291682628907407,0.0,70.37589250413203,0.08604100000229664 +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496 +7,300.03454654918687,0.9336098601853227,0.0,70.71230237329574,0.08645229200192261 +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.08588683400012087 +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.07098441600101069 +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.08500116700452054 +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.08652070900279796 +12,298.57230126240773,0.9290598287524501,0.0,70.36767962217631,0.08603095899889013 +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825 +14,300.45317822288536,0.9349125057068001,0.0,70.81096571001504,0.08657291700365022 +15,300.4835452655799,0.9350069980604653,0.0,70.81812263087598,0.08658166699751746 +16,298.95347907171913,0.9302459300376187,0.0,70.45751581210853,0.08614079200197011 +17,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.08607629199832445 +18,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.08586454200121807 +19,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.08555479099595686 +20,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623 +21,296.81231300431466,0.9235833180957123,0.0,69.95288464836042,0.08552383400092367 +22,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.08525341700442368 +23,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.08011595800053328 +24,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.07127437499730149 +25,296.6898313446286,0.9232021950334185,0.0,69.92401810530892,0.0854885419976199 +26,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.08302279200142948 +27,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.08662908300175332 +28,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.07028991699917242 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..79287fdfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a0c2cb895 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..36b8ce9eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7dbe89a62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6a32f1994 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..664c997f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..15e65df62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..534a8bf82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3a7f5edec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5630bfdde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d8d68ad91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f2d6669a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..148ced702 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a2857a378 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..254680397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6fb4cbe30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6b917c3a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f3988c723 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.49496045800333377 +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918 +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945 +3,1644.218898611452,1.5241569026019444,0.0,485.0282943234642,0.5176102080004057 +4,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.49600291699607624 +5,1570.4229559700955,1.455749590500236,0.0,463.25922195873414,0.4943787920055911 +6,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.49500675000308547 +7,1574.5666425869533,1.4595907022674324,0.0,464.48156848064974,0.49568325000291225 +8,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233 +9,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.49534995800058823 +10,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374 +11,1602.5001032995297,1.4854844424467895,0.0,472.7216627986351,0.5044768750012736 +12,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.49552000000403496 +13,1593.1679060882755,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409 +14,1568.6851150349341,1.4541386479066511,0.0,462.74657609065747,0.49383170900546247 +15,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915 +16,1579.9922038317707,1.4646200852946933,0.0,466.0820553249158,0.49739125000633067 +17,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326 +18,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526 +19,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758 +20,1574.6586293514379,1.459675972095042,0.0,464.5087036653359,0.4957122080013505 +21,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.49889824999991106 +22,1565.789148638521,1.4514541469703561,0.0,461.89229467906654,0.49292004099697806 +23,1568.7101272229095,1.4541618336874398,0.0,462.75395443844394,0.49383958299586084 +24,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.49612645900197094 +25,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402 +26,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641 +27,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868 +28,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838 +29,1584.8883408124661,1.4691587029821032,0.0,467.526367253532,0.49893258399970364 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9c035a08a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.08749516699754167 +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.08673758400254883 +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.08618716699857032 +3,293.9572294015164,0.9146992271339105,0.0,69.27999701810545,0.08470116699754726 +4,300.39880553788765,0.9347433156071183,0.0,70.79815112653915,0.08655724999698577 +5,298.60714878159104,0.9291682628907407,0.0,70.37589250413203,0.08604100000229664 +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496 +7,300.03454654918687,0.9336098601853227,0.0,70.71230237329574,0.08645229200192261 +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.08588683400012087 +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.07098441600101069 +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.08500116700452054 +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.08652070900279796 +12,298.57230126240773,0.9290598287524501,0.0,70.36767962217631,0.08603095899889013 +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825 +14,300.45317822288536,0.9349125057068001,0.0,70.81096571001504,0.08657291700365022 +15,226.2276855823378,0.7039469298977896,0.0,53.317461912628886,0.06518549999600509 +16,300.4835452655799,0.9350069980604653,0.0,70.81812263087598,0.08658166699751746 +17,298.95347907171913,0.9302459300376187,0.0,70.45751581210853,0.08614079200197011 +18,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.08607629199832445 +19,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.08586454200121807 +20,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.08555479099595686 +21,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623 +22,296.81231300431466,0.9235833180957123,0.0,69.95288464836042,0.08552383400092367 +23,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.08525341700442368 +24,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.08011595800053328 +25,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.07127437499730149 +26,296.6898313446286,0.9232021950334185,0.0,69.92401810530892,0.0854885419976199 +27,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.08302279200142948 +28,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.08662908300175332 +29,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.07028991699917242 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9377eaa8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ba3cce9c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b375f273d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5595250dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ea27639a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..da01d2d03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fb4f6b820 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..43807ab99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..eb2214001 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6698f399a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..dd865d68b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..42f0cc16b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7c1efb529 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2e6887fb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..75c944d6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3128f9b30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..90cddbbc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e373c644e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959 +1,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304 +2,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075 +3,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075 +4,1450.011697038547,1.2283451883239747,0.0,451.3006618939489,0.48178745900077047 +5,1448.3522481877958,1.226939423104802,0.0,450.78417615369403,0.48123608300375054 +6,1450.3252002552106,1.228610765607592,0.0,451.39823642350285,0.48189162500057137 +7,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.48259254100412363 +8,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156 +9,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383 +10,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.48371741700248094 +11,1451.4555736764398,1.229568336333271,0.0,451.75005308417525,0.4822672079972108 +12,1470.749938151556,1.2459131284567981,0.0,457.75521806058686,0.48867804099427303 +13,1452.0386934092628,1.2300623132573831,0.0,451.93154287623963,0.48246095800277544 +14,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524 +15,1453.7180781688435,1.231484966738723,0.0,452.45423345530276,0.48301895799522754 +16,1455.6323420932597,1.2331065928852853,0.0,453.0500276670965,0.4836550000036368 +17,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.48178824999922654 +18,1474.4356339985911,1.2490353837934811,0.0,458.90235154834005,0.4899026670027524 +19,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922 +20,1456.8314348645263,1.2341223776813306,0.0,453.42323249189207,0.48405341600300744 +21,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.48282391699467553 +22,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974 +23,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.48458450000180164 +24,1454.071838478107,1.2317846469237805,0.0,452.5643375751858,0.48313649999909103 +25,1445.4984738230935,1.2245219115656858,0.0,449.89596934659284,0.4802878749978845 +26,1453.5452760949365,1.231338581301661,0.0,452.4004506544535,0.4829615419948823 +27,1445.4045486582243,1.224442344949385,0.0,449.8667361416741,0.48025666699686553 +28,1451.5710690043645,1.2296661756338918,0.0,451.78599977208444,0.48230558299837867 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3803a05df --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,309.7762415538039,0.0,0.0,63.37230984127286,0.06812000000354601 +1,311.42073409796063,0.0,0.0,63.70873102876365,0.06848162499954924 +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803 +3,313.74090904811897,0.0,0.0,64.18337958505668,0.06899183300265577 +4,310.57698038804125,0.0,0.0,63.53612056236206,0.06829608300176915 +5,311.4457454166953,0.0,0.0,63.7138477059899,0.06848712500504917 +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942 +7,310.3448710223421,0.0,0.0,63.48863691233658,0.06824504199903458 +8,310.4030381748929,0.0,0.0,63.50053642662969,0.06825783299427712 +9,309.88272598227024,0.0,0.0,63.39409383658571,0.06814341599965701 +10,314.95073715611716,0.0,0.0,64.43087952672482,0.06925787500222214 +11,311.97913169496366,0.0,0.0,63.82296492015055,0.06860441699973308 +12,314.11153092259957,0.0,0.0,64.25919935788926,0.06907333299750462 +13,311.2255687180135,0.0,0.0,63.66880517497234,0.06843870800366858 +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324 +15,313.3998459687748,0.0,0.0,64.11360678701638,0.06891683300636942 +16,314.72354819575156,0.0,0.0,64.38440246600322,0.06920791599986842 +17,310.5500773260057,0.0,0.0,63.53061688275627,0.06829016700066859 +18,309.80466346329615,0.0,0.0,63.3781242382892,0.06812625000020489 +19,313.26815920758014,0.0,0.0,64.08666703789113,0.06888787500065519 +20,312.11271473244335,0.0,0.0,63.85029259898814,0.06863379199785413 +21,323.48735546048795,0.0,0.0,66.17725367558705,0.07113508300244575 +22,317.51420374814444,0.0,0.0,64.95529934124274,0.06982158299797447 +23,315.9167051463369,0.0,0.0,64.62849191451126,0.06947029200091492 +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978 +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328 +26,314.22105311215415,0.0,0.0,64.2816048015609,0.06909741699928418 +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759 +28,312.78100741484513,0.0,0.0,63.987008219015664,0.06878074999985984 +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b4c97ec21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9cbd62e7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..09964eeed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2ab9b76f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e1145cb92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..aa6439090 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aa3c08a3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..15840364b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6a583d7d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..602c3df5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2bef511f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..33f7e7ef8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..69d4d51ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1d1c169c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..fbc394e22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5af3f8abc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..53231fad7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..551898d23 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1511.6439387550033,1.2805555723592537,0.0,470.4830392068025,0.5022656669971184 +1,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959 +2,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304 +3,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075 +4,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075 +5,1450.011697038547,1.2283451883239747,0.0,451.3006618939489,0.48178745900077047 +6,1448.3522481877958,1.226939423104802,0.0,450.78417615369403,0.48123608300375054 +7,1450.3252002552106,1.228610765607592,0.0,451.39823642350285,0.48189162500057137 +8,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.48259254100412363 +9,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156 +10,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383 +11,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.48371741700248094 +12,1451.4555736764398,1.229568336333271,0.0,451.75005308417525,0.4822672079972108 +13,1470.749938151556,1.2459131284567981,0.0,457.75521806058686,0.48867804099427303 +14,1452.0386934092628,1.2300623132573831,0.0,451.93154287623963,0.48246095800277544 +15,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524 +16,1453.7180781688435,1.231484966738723,0.0,452.45423345530276,0.48301895799522754 +17,1455.6323420932597,1.2331065928852853,0.0,453.0500276670965,0.4836550000036368 +18,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.48178824999922654 +19,1474.4356339985911,1.2490353837934811,0.0,458.90235154834005,0.4899026670027524 +20,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922 +21,1456.8314348645263,1.2341223776813306,0.0,453.42323249189207,0.48405341600300744 +22,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.48282391699467553 +23,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974 +24,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.48458450000180164 +25,1454.071838478107,1.2317846469237805,0.0,452.5643375751858,0.48313649999909103 +26,1445.4984738230935,1.2245219115656858,0.0,449.89596934659284,0.4802878749978845 +27,1453.5452760949365,1.231338581301661,0.0,452.4004506544535,0.4829615419948823 +28,1445.4045486582243,1.224442344949385,0.0,449.8667361416741,0.48025666699686553 +29,1451.5710690043645,1.2296661756338918,0.0,451.78599977208444,0.48230558299837867 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..3803a05df --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,309.7762415538039,0.0,0.0,63.37230984127286,0.06812000000354601 +1,311.42073409796063,0.0,0.0,63.70873102876365,0.06848162499954924 +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803 +3,313.74090904811897,0.0,0.0,64.18337958505668,0.06899183300265577 +4,310.57698038804125,0.0,0.0,63.53612056236206,0.06829608300176915 +5,311.4457454166953,0.0,0.0,63.7138477059899,0.06848712500504917 +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942 +7,310.3448710223421,0.0,0.0,63.48863691233658,0.06824504199903458 +8,310.4030381748929,0.0,0.0,63.50053642662969,0.06825783299427712 +9,309.88272598227024,0.0,0.0,63.39409383658571,0.06814341599965701 +10,314.95073715611716,0.0,0.0,64.43087952672482,0.06925787500222214 +11,311.97913169496366,0.0,0.0,63.82296492015055,0.06860441699973308 +12,314.11153092259957,0.0,0.0,64.25919935788926,0.06907333299750462 +13,311.2255687180135,0.0,0.0,63.66880517497234,0.06843870800366858 +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324 +15,313.3998459687748,0.0,0.0,64.11360678701638,0.06891683300636942 +16,314.72354819575156,0.0,0.0,64.38440246600322,0.06920791599986842 +17,310.5500773260057,0.0,0.0,63.53061688275627,0.06829016700066859 +18,309.80466346329615,0.0,0.0,63.3781242382892,0.06812625000020489 +19,313.26815920758014,0.0,0.0,64.08666703789113,0.06888787500065519 +20,312.11271473244335,0.0,0.0,63.85029259898814,0.06863379199785413 +21,323.48735546048795,0.0,0.0,66.17725367558705,0.07113508300244575 +22,317.51420374814444,0.0,0.0,64.95529934124274,0.06982158299797447 +23,315.9167051463369,0.0,0.0,64.62849191451126,0.06947029200091492 +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978 +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328 +26,314.22105311215415,0.0,0.0,64.2816048015609,0.06909741699928418 +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759 +28,312.78100741484513,0.0,0.0,63.987008219015664,0.06878074999985984 +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5c09b8f98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..02460df11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cd4081e38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..99cef236d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4247d712e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..bcdbfec2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..80dd21dee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1c96cbc2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bb06256bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d4e07ee07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..82e8193d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..90dba34ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..03b1d6be5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4fde6c176 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6453516fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..259c20040 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a15fd88d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..993b212ba --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427 +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.48483000000123866 +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943 +3,1463.6997649458424,0.9049459287293111,0.0,456.293847174846,0.4853247499995632 +4,1469.782118043518,0.9087063998345581,0.0,458.1899602721361,0.4873414999965462 +5,1441.0904332217215,0.8909675001027336,0.0,449.24561282957836,0.4778280839964282 +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285 +7,1447.019725460083,0.8946333399148689,0.0,451.09401072596387,0.4797940829957952 +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928 +9,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.48540454100293573 +10,1476.4065824689321,0.9128020362863495,0.0,460.25507118527264,0.4895380000016303 +11,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.48066866699809907 +12,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029 +13,1453.0520656111892,0.8983628900529438,0.0,452.97453278447324,0.48179425000125775 +14,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347 +15,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518 +16,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.48277741700439947 +17,1452.1312032410679,0.8977935583684558,0.0,452.6874630973391,0.48148891600430943 +18,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651 +19,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.48212970799795585 +20,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213 +21,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.48356108400184894 +22,1452.8914679709853,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396 +23,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403 +24,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.48663266700168606 +25,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.48219816599885235 +26,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354 +27,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348 +28,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..dd4ca6c3d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,298.5621379017781,0.0,0.0,65.17760957180526,0.06996104100107914 +1,293.7520815286884,0.0,0.0,64.12755018213558,0.06883391700102948 +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092 +3,291.0702814766676,0.0,0.0,63.54209980330101,0.06820549999974901 +4,297.6933418060511,0.0,0.0,64.98794703414137,0.06975745899399044 +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567 +6,293.15729192518216,0.0,0.0,63.99770463364393,0.06869454199477332 +7,291.59732372815654,0.0,0.0,63.65715576564372,0.06832900000154041 +8,289.71177993007666,0.0,0.0,63.2455321138121,0.06788716699520592 +9,288.3285607864271,0.0,0.0,62.943568449127,0.06756304200098384 +10,287.9739957844177,0.0,0.0,62.86616513392031,0.06747995800105855 +11,292.9851689308829,0.0,0.0,63.96012932218745,0.06865420900430763 +12,294.059699195972,0.0,0.0,64.19470465911147,0.06890599999314873 +13,288.9098350378217,0.0,0.0,63.070463528582806,0.06769925000116928 +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247 +15,293.23659577732656,0.0,0.0,64.01501706163273,0.06871312499424675 +16,280.4243482266323,0.0,0.0,61.21803927179926,0.06571087500196882 +17,295.6641182362926,0.0,0.0,64.54495736876346,0.06928195799991954 +18,294.7314796376094,0.0,0.0,64.34135769305185,0.06906341599824373 +19,292.6675907282371,0.0,0.0,63.890800410470675,0.06857979199412512 +20,291.79132220494307,0.0,0.0,63.69950660445531,0.06837445899873273 +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606 +22,290.6044059821546,0.0,0.0,63.440396850261365,0.06809633299417328 +23,290.49878844398484,0.0,0.0,63.41734001286348,0.06807158399897162 +24,291.0869974835,0.0,0.0,63.545748991287724,0.06820941700425465 +25,290.73012372139635,0.0,0.0,63.46784166219275,0.06812579200050095 +26,287.31287997933134,0.0,0.0,62.7218402435357,0.06732504100364167 +27,292.54952051034445,0.0,0.0,63.865025090740104,0.06855212500522612 +28,291.9493964926538,0.0,0.0,63.734015012923166,0.06841150000400376 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f0eaedb1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..965927e6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4ce15f165 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2d272af2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..dd7ecd274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..066e403b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9e12b6a8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bc95d7a2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fdb42a186 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0731a1134 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b62bd0179 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..20cb71343 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..df605da76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..95f84b45f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ca7813aa1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9e0e78e78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..da1d937ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9ccb0b9e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427 +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.48483000000123866 +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943 +3,1463.6997649458424,0.9049459287293111,0.0,456.293847174846,0.4853247499995632 +4,1469.782118043518,0.9087063998345581,0.0,458.1899602721361,0.4873414999965462 +5,1441.0904332217215,0.8909675001027336,0.0,449.24561282957836,0.4778280839964282 +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285 +7,1447.019725460083,0.8946333399148689,0.0,451.09401072596387,0.4797940829957952 +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928 +9,1485.7182300106604,0.9185590485742903,0.0,463.1578847144588,0.49262549999548355 +10,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.48540454100293573 +11,1476.4065824689321,0.9128020362863495,0.0,460.25507118527264,0.4895380000016303 +12,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.48066866699809907 +13,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029 +14,1453.0520656111892,0.8983628900529438,0.0,452.97453278447324,0.48179425000125775 +15,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347 +16,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518 +17,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.48277741700439947 +18,1452.1312032410679,0.8977935583684558,0.0,452.6874630973391,0.48148891600430943 +19,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651 +20,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.48212970799795585 +21,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213 +22,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.48356108400184894 +23,1452.8914679709853,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396 +24,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403 +25,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.48663266700168606 +26,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.48219816599885235 +27,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354 +28,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348 +29,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..22bd2aecd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,298.5621379017781,0.0,0.0,65.17760957180526,0.06996104100107914 +1,293.7520815286884,0.0,0.0,64.12755018213558,0.06883391700102948 +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092 +3,291.0702814766676,0.0,0.0,63.54209980330101,0.06820549999974901 +4,297.6933418060511,0.0,0.0,64.98794703414137,0.06975745899399044 +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567 +6,293.15729192518216,0.0,0.0,63.99770463364393,0.06869454199477332 +7,291.59732372815654,0.0,0.0,63.65715576564372,0.06832900000154041 +8,289.71177993007666,0.0,0.0,63.2455321138121,0.06788716699520592 +9,288.3285607864271,0.0,0.0,62.943568449127,0.06756304200098384 +10,287.9739957844177,0.0,0.0,62.86616513392031,0.06747995800105855 +11,292.9851689308829,0.0,0.0,63.96012932218745,0.06865420900430763 +12,294.059699195972,0.0,0.0,64.19470465911147,0.06890599999314873 +13,288.9098350378217,0.0,0.0,63.070463528582806,0.06769925000116928 +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247 +15,293.23659577732656,0.0,0.0,64.01501706163273,0.06871312499424675 +16,280.4243482266323,0.0,0.0,61.21803927179926,0.06571087500196882 +17,295.6641182362926,0.0,0.0,64.54495736876346,0.06928195799991954 +18,294.7314796376094,0.0,0.0,64.34135769305185,0.06906341599824373 +19,292.6675907282371,0.0,0.0,63.890800410470675,0.06857979199412512 +20,291.79132220494307,0.0,0.0,63.69950660445531,0.06837445899873273 +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606 +22,290.6044059821546,0.0,0.0,63.440396850261365,0.06809633299417328 +23,290.49878844398484,0.0,0.0,63.41734001286348,0.06807158399897162 +24,291.0869974835,0.0,0.0,63.545748991287724,0.06820941700425465 +25,290.73012372139635,0.0,0.0,63.46784166219275,0.06812579200050095 +26,287.31287997933134,0.0,0.0,62.7218402435357,0.06732504100364167 +27,271.03076122136986,0.0,0.0,59.1673721958916,0.06350970800122013 +28,292.54952051034445,0.0,0.0,63.865025090740104,0.06855212500522612 +29,291.9493964926538,0.0,0.0,63.734015012923166,0.06841150000400376 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b101a5728 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d8dece0ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..58111aa0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2e218da4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..162a7b406 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2017b88da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3dc0bdf47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..250d590d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ced995fd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..cf455d83b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ab06eab45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..48095deec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f6dfb4d53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1e9fe7105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a954dc002 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..235e4f4c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..3fd125dfb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..87ba998b1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778 +1,1488.7041689159475,1.9934442540384942,0.0,459.42245241407164,0.4818315829979838 +2,1487.8198785168481,1.9922601479872097,0.0,459.1495554394523,0.4815453749979497 +3,1491.727934254883,1.9974932167312307,0.0,460.35560334932427,0.4828102499959641 +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.48158991699892795 +5,1501.2124715705365,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793 +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881 +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226 +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.48217941699840594 +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622 +10,1497.9545334031648,2.005830923142963,0.0,462.27716675368157,0.4848255410033744 +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.48506770800304366 +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.48374725000030594 +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.48775600000226405 +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639 +15,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.48693708299833816 +16,1491.0045635252645,1.996524589616048,0.0,460.1323670868452,0.48257612499583047 +17,1493.8568517872507,2.0003439365121194,0.0,461.01259923482644,0.4834992920004879 +18,1491.1042056393792,1.9966580150500526,0.0,460.1631172018688,0.4826083750012913 +19,1484.7932830352127,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615 +20,1505.3592048868375,2.0157461233085665,0.0,464.562289885181,0.48722212499706075 +21,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039 +22,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.47861337500216905 +23,1486.3696611665118,1.9903182393766896,0.0,458.70201023501437,0.48107599999639206 +24,1490.7165777906416,1.9961389632975919,0.0,460.0434930746517,0.48248291599884396 +25,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.48823162500048056 +26,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877 +27,1483.4506884174402,1.9864095988449921,0.0,457.80119888047585,0.4801312499985215 +28,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a1fee5164 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.06871212499390822 +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.06847354199999245 +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.06826074999844423 +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.06935379200149328 +4,282.3759053861895,0.9401410231953469,0.0,57.6822008425016,0.06154324999806704 +5,321.98321971372366,1.0720094309016681,0.0,65.77296572822493,0.07017558300140081 +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.06908562500029802 +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.06742454100458417 +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.06737495800189208 +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.06746741600363748 +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.06761574999836739 +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.06864937499631196 +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.06778058299823897 +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.06587720800598618 +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.06790516700129956 +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.06311279199871933 +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.06829408300109208 +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.06725804199959384 +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.06783333299972583 +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.06815754099807236 +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.06838887499907287 +21,316.3211247316838,1.0531580782603587,0.0,64.61634402745813,0.06894154100154992 +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.06737420900026336 +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.06880079099937575 +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264 +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.06886962499993388 +26,283.9395447763309,0.9453469968925203,0.0,58.00161251901851,0.061884041999292094 +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.07017000000632834 +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.06854991599539062 +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.06808729200565722 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..87182c4cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7353df5b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8e044fc52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..16cbaf71b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2dc547d49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5647269c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d352ad347 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f0f801b71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0ff6dd1fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..62ea723d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..84366ddb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..59a50dbe5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..caa59b573 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..13e799d92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..dc63dca24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..096176612 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..20ab52f7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3d3610184 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778 +1,1488.7041689159475,1.9934442540384942,0.0,459.42245241407164,0.4818315829979838 +2,1487.8198785168481,1.9922601479872097,0.0,459.1495554394523,0.4815453749979497 +3,1491.727934254883,1.9974932167312307,0.0,460.35560334932427,0.4828102499959641 +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.48158991699892795 +5,1501.2124715705365,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793 +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881 +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226 +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.48217941699840594 +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622 +10,1497.9545334031648,2.005830923142963,0.0,462.27716675368157,0.4848255410033744 +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.48506770800304366 +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.48374725000030594 +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.48775600000226405 +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639 +15,1529.9467312348206,2.048669966838271,0.0,472.15013835732685,0.4951800839990028 +16,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.48693708299833816 +17,1491.0045635252645,1.996524589616048,0.0,460.1323670868452,0.48257612499583047 +18,1493.8568517872507,2.0003439365121194,0.0,461.01259923482644,0.4834992920004879 +19,1491.1042056393792,1.9966580150500526,0.0,460.1631172018688,0.4826083750012913 +20,1484.7932830352127,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615 +21,1505.3592048868375,2.0157461233085665,0.0,464.562289885181,0.48722212499706075 +22,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039 +23,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.47861337500216905 +24,1486.3696611665118,1.9903182393766896,0.0,458.70201023501437,0.48107599999639206 +25,1490.7165777906416,1.9961389632975919,0.0,460.0434930746517,0.48248291599884396 +26,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.48823162500048056 +27,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877 +28,1483.4506884174402,1.9864095988449921,0.0,457.80119888047585,0.4801312499985215 +29,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a1fee5164 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.06871212499390822 +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.06847354199999245 +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.06826074999844423 +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.06935379200149328 +4,282.3759053861895,0.9401410231953469,0.0,57.6822008425016,0.06154324999806704 +5,321.98321971372366,1.0720094309016681,0.0,65.77296572822493,0.07017558300140081 +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.06908562500029802 +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.06742454100458417 +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.06737495800189208 +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.06746741600363748 +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.06761574999836739 +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.06864937499631196 +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.06778058299823897 +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.06587720800598618 +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.06790516700129956 +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.06311279199871933 +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.06829408300109208 +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.06725804199959384 +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.06783333299972583 +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.06815754099807236 +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.06838887499907287 +21,316.3211247316838,1.0531580782603587,0.0,64.61634402745813,0.06894154100154992 +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.06737420900026336 +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.06880079099937575 +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264 +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.06886962499993388 +26,283.9395447763309,0.9453469968925203,0.0,58.00161251901851,0.061884041999292094 +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.07017000000632834 +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.06854991599539062 +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.06808729200565722 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9a2155c1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b5608f860 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..73cc10674 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e6e893f95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..931cf3bf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..16c52cef1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fba632d81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..76d3059df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1af2ac2a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6c24485f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..141499d28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..61fc42608 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..529d64aba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6c4c4c335 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1482636b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b7b521a3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..46deda0cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2b34f20bd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.49428650000481866 +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005 +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.48249575000227196 +3,1508.1492778731936,1.951623100383721,0.0,443.18107904546997,0.48174604200175963 +4,1509.5093876893877,1.953383152770635,0.0,443.5807576083317,0.48218050000286894 +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.48404399999708403 +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509 +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.49448045899771387 +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042 +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149 +11,1548.4815781326527,2.003815181123219,0.0,455.03303071339764,0.494629332999466 +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555 +13,1548.2143040147905,2.003469314603102,0.0,454.95449019112107,0.49454395799693884 +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453 +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676 +16,1553.0686749459173,2.0097511214414663,0.0,456.380983827333,0.4960945830025594 +17,1547.3030425219179,2.002290095141161,0.0,454.686709104972,0.4942528749961639 +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793 +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576 +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.49602862499887124 +21,1560.5320011886452,2.0194090512728877,0.0,458.57413872655155,0.4984785830019973 +22,1572.43476681286,2.034811845075521,0.0,462.07185648589956,0.5022806669949205 +23,1545.401732006987,1.9998297010831045,0.0,454.127994620955,0.4936455420029233 +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539 +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +26,1565.7153470029502,2.0261165686101243,0.0,460.09730412188236,0.500134292000439 +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341 +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.49308312500215834 +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.49549945799662964 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6dfa4b935 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,311.59367925352166,0.0,0.0,72.32524053893655,0.08424512499914272 +1,314.6147113063084,0.0,0.0,73.02646423004957,0.08506191699416377 +2,317.0589047950213,0.0,0.0,73.59379564196513,0.08572274999460205 +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667 +4,310.3879176166453,0.0,0.0,72.04536643934435,0.08391912499791943 +5,319.6777081144411,0.0,0.0,74.20165643187254,0.08643079199828207 +6,254.6704492989941,0.0,0.0,59.112564631718605,0.06885487499675946 +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371 +8,273.9504631496793,0.0,0.0,63.58772485539658,0.07406758399883984 +9,303.15396548952185,0.0,0.0,70.36626521721826,0.08196329199563479 +10,319.6621404622535,0.0,0.0,74.19804296258846,0.08642658299504546 +11,321.3189864206904,0.0,0.0,74.58262002707511,0.08687454200116917 +12,327.9853465847884,0.0,0.0,76.12997523512246,0.08867691599880345 +13,316.0251306481012,0.0,0.0,73.35384223848772,0.08544324999820674 +14,293.83489274284335,0.0,0.0,68.20317840615691,0.07944370799668832 +15,319.29011864863867,0.0,0.0,74.1116915089265,0.08632600000419188 +16,317.9883472997439,0.0,0.0,73.8095322155767,0.08597404199826997 +17,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388 +18,317.9663070322047,0.0,0.0,73.80441636195883,0.08596808300353587 +19,309.99647784933063,0.0,0.0,71.95450780769507,0.08381329200346954 +20,318.1546314596068,0.0,0.0,73.84812908919976,0.08601900000212481 +21,317.56423360371525,0.0,0.0,73.7110895091822,0.08585937500174623 +22,314.6444522037832,0.0,0.0,73.03336750732035,0.08506995799689321 +23,291.90250070508733,0.0,0.0,67.75464325203872,0.07892125000216765 +24,315.9423732511658,0.0,0.0,73.33463309196694,0.08542087500245543 +25,312.00345697187805,0.0,0.0,72.42035566488721,0.08435591599845793 +26,315.7848733838278,0.0,0.0,73.2980751752038,0.08537829199485714 +27,316.48175922730144,0.0,0.0,73.4598321029379,0.08556670799589483 +28,318.58722249833687,0.0,0.0,73.94853950511737,0.08613595900533255 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a399ad69c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f8f5f6b05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..97c80f008 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ad26f6842 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5c8698073 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1cc2ae120 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e8ac1bbd7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..839e9c182 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a696a6866 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..564c796ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a158b5f42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..445dbbbc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fd3b47a46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..25583e9d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d6d1cd594 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f0f53d17a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..bf360c825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2b34f20bd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.49428650000481866 +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005 +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.48249575000227196 +3,1508.1492778731936,1.951623100383721,0.0,443.18107904546997,0.48174604200175963 +4,1509.5093876893877,1.953383152770635,0.0,443.5807576083317,0.48218050000286894 +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.48404399999708403 +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509 +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.49448045899771387 +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042 +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149 +11,1548.4815781326527,2.003815181123219,0.0,455.03303071339764,0.494629332999466 +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555 +13,1548.2143040147905,2.003469314603102,0.0,454.95449019112107,0.49454395799693884 +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453 +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676 +16,1553.0686749459173,2.0097511214414663,0.0,456.380983827333,0.4960945830025594 +17,1547.3030425219179,2.002290095141161,0.0,454.686709104972,0.4942528749961639 +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793 +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576 +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.49602862499887124 +21,1560.5320011886452,2.0194090512728877,0.0,458.57413872655155,0.4984785830019973 +22,1572.43476681286,2.034811845075521,0.0,462.07185648589956,0.5022806669949205 +23,1545.401732006987,1.9998297010831045,0.0,454.127994620955,0.4936455420029233 +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539 +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +26,1565.7153470029502,2.0261165686101243,0.0,460.09730412188236,0.500134292000439 +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341 +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.49308312500215834 +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.49549945799662964 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a043b6284 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,311.59367925352166,0.0,0.0,72.32524053893655,0.08424512499914272 +1,314.6147113063084,0.0,0.0,73.02646423004957,0.08506191699416377 +2,317.0589047950213,0.0,0.0,73.59379564196513,0.08572274999460205 +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667 +4,310.3879176166453,0.0,0.0,72.04536643934435,0.08391912499791943 +5,319.6777081144411,0.0,0.0,74.20165643187254,0.08643079199828207 +6,254.6704492989941,0.0,0.0,59.112564631718605,0.06885487499675946 +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371 +8,273.9504631496793,0.0,0.0,63.58772485539658,0.07406758399883984 +9,303.15396548952185,0.0,0.0,70.36626521721826,0.08196329199563479 +10,319.6621404622535,0.0,0.0,74.19804296258846,0.08642658299504546 +11,321.3189864206904,0.0,0.0,74.58262002707511,0.08687454200116917 +12,327.9853465847884,0.0,0.0,76.12997523512246,0.08867691599880345 +13,316.0251306481012,0.0,0.0,73.35384223848772,0.08544324999820674 +14,248.80099032368904,0.0,0.0,57.750181308541606,0.06726795800204854 +15,293.83489274284335,0.0,0.0,68.20317840615691,0.07944370799668832 +16,319.29011864863867,0.0,0.0,74.1116915089265,0.08632600000419188 +17,317.9883472997439,0.0,0.0,73.8095322155767,0.08597404199826997 +18,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388 +19,317.9663070322047,0.0,0.0,73.80441636195883,0.08596808300353587 +20,309.99647784933063,0.0,0.0,71.95450780769507,0.08381329200346954 +21,318.1546314596068,0.0,0.0,73.84812908919976,0.08601900000212481 +22,317.56423360371525,0.0,0.0,73.7110895091822,0.08585937500174623 +23,314.6444522037832,0.0,0.0,73.03336750732035,0.08506995799689321 +24,291.90250070508733,0.0,0.0,67.75464325203872,0.07892125000216765 +25,315.9423732511658,0.0,0.0,73.33463309196694,0.08542087500245543 +26,312.00345697187805,0.0,0.0,72.42035566488721,0.08435591599845793 +27,315.7848733838278,0.0,0.0,73.2980751752038,0.08537829199485714 +28,316.48175922730144,0.0,0.0,73.4598321029379,0.08556670799589483 +29,318.58722249833687,0.0,0.0,73.94853950511737,0.08613595900533255 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8658c70d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..60ef623a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..83813e574 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c397bb1fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c7b007b7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9b87f6f9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0805cd003 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..839e9c182 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..69e023f3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2c493164c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ec2de7f17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4967514d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b5d9f1249 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c9d337e7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e4968b23e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f0f53d17a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a82312a5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..78f3c9ff5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1473.756556484359,1.7308367157329259,0.0,462.06552715105465,0.4929395419967477 +1,1446.159224005418,1.6984253408008365,0.0,453.4129610784978,0.4837088339991169 +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742 +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.48208983299991814 +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.48030145799566526 +5,1452.578920577144,1.7059648808159893,0.0,455.42572259430773,0.4858560829961789 +6,1471.581150604885,1.7282818349072915,0.0,461.38347416201515,0.4922119160037255 +7,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.48224341699824436 +8,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321 +9,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.48145437499624677 +10,1442.9805152629785,1.694692142277764,0.0,452.4163434727796,0.4826456250011688 +11,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.48142195800028276 +12,1428.712272923545,1.6779349664732481,0.0,447.942834677123,0.477873208001256 +13,1442.6170148012345,1.694265233272607,0.0,452.30237550993223,0.48252404199593 +14,1464.2447277915135,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759 +15,1449.9154471216855,1.702836794547057,0.0,454.59064623055264,0.4849652090051677 +16,1444.6339619987825,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075 +17,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.48314887499873294 +18,1438.8095895874126,1.6897936458021425,0.0,451.1086370116896,0.481250541000918 +19,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.48368249999475665 +20,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994 +21,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702 +22,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.48350758400192717 +23,1448.5964765048539,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375 +24,1447.9104558714087,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382 +25,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544 +26,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.48280537499522325 +27,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.48134712500177557 +28,1439.6781064000427,1.6908136655475459,0.0,451.38094228293795,0.48154104100103723 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..514a46550 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,291.29299505714096,0.0,0.0,62.99496139075435,0.06825308399857022 +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809 +2,289.0799426382046,0.0,0.0,62.51636714354541,0.06773454199719708 +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137 +4,297.886977244811,0.0,0.0,64.42097458150106,0.06979812499776017 +5,290.82548775033143,0.0,0.0,62.893858359641,0.06814354200469097 +6,268.5173277099082,0.0,0.0,58.06950039603958,0.06291649999911897 +7,292.0704497581507,0.0,0.0,63.16309357966455,0.06843525000294903 +8,293.8949497924379,0.0,0.0,63.55765957049728,0.06886274999851594 +9,293.04956393422503,0.0,0.0,63.37483660392384,0.06866466699284501 +10,290.9037299843468,0.0,0.0,62.91077900859089,0.06816187500226079 +11,291.32144445247934,0.0,0.0,63.001113850962255,0.06825974999810569 +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997 +13,292.62811511187584,0.0,0.0,63.28369417090083,0.06856591699761339 +14,291.9456155250125,0.0,0.0,63.136096954856455,0.06840599999850383 +15,288.2672740442093,0.0,0.0,62.34061960559938,0.06754412499867612 +16,293.5677518423963,0.0,0.0,63.48689981114927,0.06878608399711084 +17,269.05080725191584,0.0,0.0,58.184870568758406,0.06304149999778019 +18,292.5950351222772,0.0,0.0,63.27654029935935,0.06855816600000253 +19,288.8240474431492,0.0,0.0,62.46102730288279,0.06767458299873397 +20,289.09861444034067,0.0,0.0,62.52040510351909,0.06773891700140666 +21,292.22515879396974,0.0,0.0,63.19655092297043,0.06847149999521207 +22,289.8157859281682,0.0,0.0,62.67550045751957,0.06790695800009416 +23,289.92461574616726,0.0,0.0,62.69903597090075,0.06793245799781289 +24,289.408032574084,0.0,0.0,62.58731980356169,0.06781141700048465 +25,291.7665414108356,0.0,0.0,63.09737042486749,0.06836404100613436 +26,292.56711921054875,0.0,0.0,63.270503210203884,0.06855162500141887 +27,293.90632783646987,0.0,0.0,63.560120183888806,0.06886541599669727 +28,296.77573933170015,0.0,0.0,64.18065850586514,0.06953774999419693 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d0aa44a46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4b12e6240 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4d320eb7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f747f9edc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9ad8bed0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..82b5d19ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..00d9dae78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d6ae313c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..684ad485e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f62e3be64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..80de1c242 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ef2594faa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3b077d456 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5eb1cb5b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..414d75768 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ee6c80270 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f1bff117b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..23037b41d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1473.756556484359,1.7308367157329259,0.0,462.06552715105465,0.4929395419967477 +1,1446.159224005418,1.6984253408008365,0.0,453.4129610784978,0.4837088339991169 +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742 +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.48208983299991814 +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.48030145799566526 +5,1452.578920577144,1.7059648808159893,0.0,455.42572259430773,0.4858560829961789 +6,1491.0040656140802,1.7510928577160183,0.0,467.47312270203116,0.4987084589956794 +7,1471.581150604885,1.7282818349072915,0.0,461.38347416201515,0.4922119160037255 +8,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.48224341699824436 +9,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321 +10,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.48145437499624677 +11,1442.9805152629785,1.694692142277764,0.0,452.4163434727796,0.4826456250011688 +12,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.48142195800028276 +13,1428.712272923545,1.6779349664732481,0.0,447.942834677123,0.477873208001256 +14,1442.6170148012345,1.694265233272607,0.0,452.30237550993223,0.48252404199593 +15,1464.2447277915135,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759 +16,1449.9154471216855,1.702836794547057,0.0,454.59064623055264,0.4849652090051677 +17,1444.6339619987825,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075 +18,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.48314887499873294 +19,1438.8095895874126,1.6897936458021425,0.0,451.1086370116896,0.481250541000918 +20,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.48368249999475665 +21,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994 +22,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702 +23,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.48350758400192717 +24,1448.5964765048539,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375 +25,1447.9104558714087,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382 +26,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544 +27,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.48280537499522325 +28,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.48134712500177557 +29,1439.6781064000427,1.6908136655475459,0.0,451.38094228293795,0.48154104100103723 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f5e2f6423 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,291.29299505714096,0.0,0.0,62.99496139075435,0.06825308399857022 +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809 +2,289.0799426382046,0.0,0.0,62.51636714354541,0.06773454199719708 +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137 +4,297.886977244811,0.0,0.0,64.42097458150106,0.06979812499776017 +5,290.82548775033143,0.0,0.0,62.893858359641,0.06814354200469097 +6,268.5173277099082,0.0,0.0,58.06950039603958,0.06291649999911897 +7,292.0704497581507,0.0,0.0,63.16309357966455,0.06843525000294903 +8,293.8949497924379,0.0,0.0,63.55765957049728,0.06886274999851594 +9,293.04956393422503,0.0,0.0,63.37483660392384,0.06866466699284501 +10,290.9037299843468,0.0,0.0,62.91077900859089,0.06816187500226079 +11,291.32144445247934,0.0,0.0,63.001113850962255,0.06825974999810569 +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997 +13,292.62811511187584,0.0,0.0,63.28369417090083,0.06856591699761339 +14,291.9456155250125,0.0,0.0,63.136096954856455,0.06840599999850383 +15,288.2672740442093,0.0,0.0,62.34061960559938,0.06754412499867612 +16,293.5677518423963,0.0,0.0,63.48689981114927,0.06878608399711084 +17,269.05080725191584,0.0,0.0,58.184870568758406,0.06304149999778019 +18,292.5950351222772,0.0,0.0,63.27654029935935,0.06855816600000253 +19,288.8240474431492,0.0,0.0,62.46102730288279,0.06767458299873397 +20,289.09861444034067,0.0,0.0,62.52040510351909,0.06773891700140666 +21,292.22515879396974,0.0,0.0,63.19655092297043,0.06847149999521207 +22,289.8157859281682,0.0,0.0,62.67550045751957,0.06790695800009416 +23,289.92461574616726,0.0,0.0,62.69903597090075,0.06793245799781289 +24,289.408032574084,0.0,0.0,62.58731980356169,0.06781141700048465 +25,291.7665414108356,0.0,0.0,63.09737042486749,0.06836404100613436 +26,292.56711921054875,0.0,0.0,63.270503210203884,0.06855162500141887 +27,293.90632783646987,0.0,0.0,63.560120183888806,0.06886541599669727 +28,265.84672909821063,0.0,0.0,57.491957306130764,0.06229075000010198 +29,296.77573933170015,0.0,0.0,64.18065850586514,0.06953774999419693 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ede908c0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8d0ea8c36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..25ae8a2c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d4987d6d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3c80ba009 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b6550e322 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6970a05b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4ebc9ce97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0bd4ce058 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..84dabdf31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b0740269a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0938d2b2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dc210bd9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ec2e5b084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cc430a9ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..73da36d69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a14dd84d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4d0f820ff --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1449.4460304052652,1.1053478844400377,0.0,457.04460252073676,0.484376374995918 +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133 +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.49321866699756356 +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786 +4,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017 +5,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.48108762499759905 +6,1442.2213894749407,1.099838371563632,0.0,454.76650242381083,0.4819620419948478 +7,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643 +8,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937 +9,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358 +10,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781 +11,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.48886708300415194 +12,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.48504466700251214 +13,1448.2680227759279,1.1044495355442336,0.0,456.6731488636687,0.48398270799953025 +14,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958 +15,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285 +16,1444.9364893090867,1.1019089073371353,0.0,455.6226375944004,0.48286937499506166 +17,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807 +18,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.48134320799726993 +19,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893 +20,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.48148787500394974 +21,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644 +22,1434.6330467519774,1.0940514996144306,0.0,452.37371855269413,0.4794261670031119 +23,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179 +24,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259 +25,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956 +26,1433.8784631668887,1.093476053994577,0.0,452.1357805077576,0.4791740000000573 +27,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ef9e53dda --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526 +1,297.817315883756,0.0,0.0,62.733064436627,0.06772345799981849 +2,299.81856627760055,0.0,0.0,63.15461336348616,0.06817854099790566 +3,293.4782177778501,0.0,0.0,61.81906479135154,0.06673674999910872 +4,300.9928969475883,0.0,0.0,63.40197762896428,0.06844558300508652 +5,302.9091294778741,0.0,0.0,63.805618157525416,0.06888133299798938 +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736 +7,298.40897111216174,0.0,0.0,62.85769233295232,0.06785800000216113 +8,301.1378313788484,0.0,0.0,63.432507019064865,0.06847854099760298 +9,300.16524277859793,0.0,0.0,63.227638262025714,0.06825737500184914 +10,302.53570709857513,0.0,0.0,63.7269594330885,0.06879641699924832 +11,300.62625114769776,0.0,0.0,63.32474634198656,0.06836220799596049 +12,301.35917766867016,0.0,0.0,63.47913201473039,0.06852887499553617 +13,299.7551711903755,0.0,0.0,63.14125964669488,0.06816412499756552 +14,304.2527658133512,0.0,0.0,64.0886454373958,0.06918687500001397 +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185 +16,297.4405953485831,0.0,0.0,62.6537109795002,0.06763779200264253 +17,306.33775437514066,0.0,0.0,64.52783320392388,0.06966100000136066 +18,303.6565283499523,0.0,0.0,63.963052326397744,0.06905129100050544 +19,304.6771294210259,0.0,0.0,64.17803456329608,0.06928337499994086 +20,300.6194745682893,0.0,0.0,63.32331890452737,0.06836066700634547 +21,297.64673049065647,0.0,0.0,62.697131856865795,0.06768466699577402 +22,301.97648382691904,0.0,0.0,63.60916309397653,0.06866925000213087 +23,297.5443027834249,0.0,0.0,62.67555620086746,0.06766137500380864 +24,292.8490031072213,0.0,0.0,61.686525270068515,0.06659366700478131 +25,305.28948829746935,0.0,0.0,64.30702353339768,0.06942262499796925 +26,299.9959370811122,0.0,0.0,63.19197524089363,0.06821887499972945 +27,300.89853428238985,0.0,0.0,63.38210081576173,0.06842412499827333 +28,298.13540828185586,0.0,0.0,62.80006830054803,0.06779579199792352 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7b632cc64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ac571ca32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2a82f99eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5f492e8bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c84b51620 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a2f0113ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..63070427e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..422d8970e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8b0b9b2e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8a164bcfd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0f9a5de21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9b50c3e34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..425159ba3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..98eca208e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a08931918 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c605a71af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..49844eedb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f803cd3af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..e69c42e4a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1449.4460304052652,1.1053478844400377,0.0,457.04460252073676,0.484376374995918 +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133 +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.49321866699756356 +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786 +4,1382.9401472485877,1.0546304822684676,0.0,436.07372516827996,0.46215141599532217 +5,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017 +6,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.48108762499759905 +7,1442.2213894749407,1.099838371563632,0.0,454.76650242381083,0.4819620419948478 +8,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643 +9,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937 +10,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358 +11,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781 +12,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.48886708300415194 +13,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.48504466700251214 +14,1382.5177226513833,1.0543083411710685,0.0,435.94052470543124,0.46201024999754736 +15,1448.2680227759279,1.1044495355442336,0.0,456.6731488636687,0.48398270799953025 +16,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958 +17,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285 +18,1444.9364893090867,1.1019089073371353,0.0,455.6226375944004,0.48286937499506166 +19,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807 +20,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.48134320799726993 +21,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893 +22,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.48148787500394974 +23,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644 +24,1434.6330467519774,1.0940514996144306,0.0,452.37371855269413,0.4794261670031119 +25,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179 +26,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259 +27,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956 +28,1433.8784631668887,1.093476053994577,0.0,452.1357805077576,0.4791740000000573 +29,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..93dea8836 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526 +1,297.817315883756,0.0,0.0,62.733064436627,0.06772345799981849 +2,299.81856627760055,0.0,0.0,63.15461336348616,0.06817854099790566 +3,293.4782177778501,0.0,0.0,61.81906479135154,0.06673674999910872 +4,300.9928969475883,0.0,0.0,63.40197762896428,0.06844558300508652 +5,302.9091294778741,0.0,0.0,63.805618157525416,0.06888133299798938 +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736 +7,298.40897111216174,0.0,0.0,62.85769233295232,0.06785800000216113 +8,301.1378313788484,0.0,0.0,63.432507019064865,0.06847854099760298 +9,300.16524277859793,0.0,0.0,63.227638262025714,0.06825737500184914 +10,302.53570709857513,0.0,0.0,63.7269594330885,0.06879641699924832 +11,300.62625114769776,0.0,0.0,63.32474634198656,0.06836220799596049 +12,301.35917766867016,0.0,0.0,63.47913201473039,0.06852887499553617 +13,299.7551711903755,0.0,0.0,63.14125964669488,0.06816412499756552 +14,304.2527658133512,0.0,0.0,64.0886454373958,0.06918687500001397 +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185 +16,297.4405953485831,0.0,0.0,62.6537109795002,0.06763779200264253 +17,306.33775437514066,0.0,0.0,64.52783320392388,0.06966100000136066 +18,322.565634223188,0.0,0.0,67.94611876988051,0.07335120900097536 +19,303.6565283499523,0.0,0.0,63.963052326397744,0.06905129100050544 +20,304.6771294210259,0.0,0.0,64.17803456329608,0.06928337499994086 +21,300.6194745682893,0.0,0.0,63.32331890452737,0.06836066700634547 +22,297.64673049065647,0.0,0.0,62.697131856865795,0.06768466699577402 +23,301.97648382691904,0.0,0.0,63.60916309397653,0.06866925000213087 +24,297.5443027834249,0.0,0.0,62.67555620086746,0.06766137500380864 +25,292.8490031072213,0.0,0.0,61.686525270068515,0.06659366700478131 +26,305.28948829746935,0.0,0.0,64.30702353339768,0.06942262499796925 +27,299.9959370811122,0.0,0.0,63.19197524089363,0.06821887499972945 +28,300.89853428238985,0.0,0.0,63.38210081576173,0.06842412499827333 +29,298.13540828185586,0.0,0.0,62.80006830054803,0.06779579199792352 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..080fe50ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..50ded1277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..742baca31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cad83ca64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..591ef3336 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ae1924391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bc5a5b595 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d3b5bbbec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4f208fbce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..433cd242b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d0649d453 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..235ca19e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..741f9a1d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..17aef58f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a25ac001f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9a1594a5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9548754e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c098594b8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.48041916700458387 +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.48371524999674875 +2,1437.3842689681999,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448 +3,1435.7789167975,0.7680104908680055,0.0,454.19472594724397,0.4835930420013028 +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.48055420799937565 +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554 +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761 +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.48211737500241725 +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863 +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.48248829200019827 +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.48204420800175285 +11,1430.9528339766903,0.7654289776609116,0.0,452.66804148450956,0.4819675409962656 +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251 +13,1439.4373198422413,0.7699674021203672,0.0,455.3520262452711,0.48482524999417365 +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234 +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461 +16,1429.0497166778464,0.7644109838501899,0.0,452.06600879696884,0.4813265409975429 +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.48262966699985554 +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621 +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332 +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.48191316700103926 +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717 +22,1436.4061141941868,0.7683459841496418,0.0,454.39313375667075,0.4838042920018779 +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.48016945800191024 +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861 +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.47970954199990956 +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817 +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837 +28,1433.8801282741756,0.7669948125565385,0.0,453.59406262582763,0.4829535000026226 +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..bac0a8e9b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.08549616699747276 +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.08529104199988069 +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.08503670899517601 +3,352.4283146868622,1.2669926655795813,0.0,78.06309649216129,0.08612062499742024 +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.06906529200205114 +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.06919866600219393 +6,276.21979273513165,0.9930202452498065,0.0,61.18286027184291,0.06749804200080689 +7,276.9739641940552,0.9957315191946783,0.0,61.349909731026955,0.06768233399634482 +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.06808987499971408 +9,280.05765275444236,1.0068174922170605,0.0,62.032948714018886,0.06843587500043213 +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.05939045800187159 +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.06873354200070025 +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.06772266599728027 +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.06844770799943944 +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.06831941700511379 +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.06843379200290656 +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.06871795899496647 +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.06844929199723992 +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.06753604100231314 +19,280.94925472663203,1.0100228338774895,0.0,62.23043911954855,0.06865375000052154 +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814 +21,267.5825543832899,0.9619690578548055,0.0,59.269706467828335,0.06538741599797504 +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.07280275000084657 +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.06739575000392506 +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965 +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.06772983299742918 +26,278.3068472864164,1.0005232826022161,0.0,61.645144186136534,0.0680080420061131 +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.06803462500101887 +28,277.9544010343528,0.9992562254511119,0.0,61.56707711650399,0.06792191699787509 +29,276.82374129899574,0.9951914623992657,0.0,61.31663526395476,0.0676456250002957 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..42de27ab8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d555b42e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0f2930780 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..829a84177 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..554430dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d41cc75aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..dbb695dea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4270d8cc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fbcba4f7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9f23f4707 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c4eb30dec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0ed77304a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..04998a8b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b27d095fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5f20af603 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..dce9a38e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..0111cb6ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c098594b8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.48041916700458387 +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.48371524999674875 +2,1437.3842689681999,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448 +3,1435.7789167975,0.7680104908680055,0.0,454.19472594724397,0.4835930420013028 +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.48055420799937565 +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554 +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761 +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.48211737500241725 +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863 +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.48248829200019827 +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.48204420800175285 +11,1430.9528339766903,0.7654289776609116,0.0,452.66804148450956,0.4819675409962656 +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251 +13,1439.4373198422413,0.7699674021203672,0.0,455.3520262452711,0.48482524999417365 +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234 +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461 +16,1429.0497166778464,0.7644109838501899,0.0,452.06600879696884,0.4813265409975429 +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.48262966699985554 +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621 +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332 +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.48191316700103926 +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717 +22,1436.4061141941868,0.7683459841496418,0.0,454.39313375667075,0.4838042920018779 +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.48016945800191024 +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861 +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.47970954199990956 +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817 +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837 +28,1433.8801282741756,0.7669948125565385,0.0,453.59406262582763,0.4829535000026226 +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..bac0a8e9b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.08549616699747276 +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.08529104199988069 +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.08503670899517601 +3,352.4283146868622,1.2669926655795813,0.0,78.06309649216129,0.08612062499742024 +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.06906529200205114 +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.06919866600219393 +6,276.21979273513165,0.9930202452498065,0.0,61.18286027184291,0.06749804200080689 +7,276.9739641940552,0.9957315191946783,0.0,61.349909731026955,0.06768233399634482 +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.06808987499971408 +9,280.05765275444236,1.0068174922170605,0.0,62.032948714018886,0.06843587500043213 +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.05939045800187159 +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.06873354200070025 +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.06772266599728027 +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.06844770799943944 +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.06831941700511379 +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.06843379200290656 +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.06871795899496647 +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.06844929199723992 +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.06753604100231314 +19,280.94925472663203,1.0100228338774895,0.0,62.23043911954855,0.06865375000052154 +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814 +21,267.5825543832899,0.9619690578548055,0.0,59.269706467828335,0.06538741599797504 +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.07280275000084657 +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.06739575000392506 +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965 +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.06772983299742918 +26,278.3068472864164,1.0005232826022161,0.0,61.645144186136534,0.0680080420061131 +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.06803462500101887 +28,277.9544010343528,0.9992562254511119,0.0,61.56707711650399,0.06792191699787509 +29,276.82374129899574,0.9951914623992657,0.0,61.31663526395476,0.0676456250002957 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..42de27ab8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d555b42e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0f2930780 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..829a84177 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..554430dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d41cc75aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..dbb695dea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4270d8cc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fbcba4f7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9f23f4707 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c4eb30dec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0ed77304a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..04998a8b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b27d095fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5f20af603 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..dce9a38e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0111cb6ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..aaa7e40a0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691 +1,1494.6927432930365,2.473550026918434,0.0,455.73487928386396,0.49584499999764375 +2,1493.1747248593663,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275 +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.49847208299615886 +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588 +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215 +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248 +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.49237287500000093 +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.49650362499960465 +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.49406124999950407 +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.49517937500058906 +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688 +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212 +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.49181562500598375 +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422 +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985 +16,1492.1949067183677,2.469416385570248,0.0,454.9732837954698,0.49501637499633944 +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.49382570800662506 +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.49489591699966695 +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.49210095899616135 +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491 +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438 +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575 +23,1499.6939449160884,2.4818264586231,0.0,457.25975590361276,0.4975040839999565 +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.49070587499591056 +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.49583537499711383 +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.49486712500220165 +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389 +28,1498.3648260791647,2.4796269149713344,0.0,456.85450484755637,0.49706316600349965 +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.49539212500530994 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8d2027c7b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,254.6307029336884,0.08032514288128972,0.0,57.08440154096989,0.06765558299957775 +1,263.7963996346027,0.08321652985318698,0.0,59.139213882331546,0.07009091600048123 +2,253.7492302434404,0.08004707578657425,0.0,56.886788525658766,0.06742137499531964 +3,315.84115707071624,0.09963443440716599,0.0,70.8068713853593,0.08391924999887124 +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.08857233299931977 +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049 +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.08686008299991954 +7,326.48454970016655,0.10299197151424813,0.0,73.192961089459,0.0867472079989966 +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.08906920900335535 +9,330.8312320406672,0.10436316468159848,0.0,74.16742236705599,0.08790212500025518 +10,325.4089376060097,0.10265266170536584,0.0,72.95182491861333,0.08646141699864529 +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.08579479099716991 +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.08634108399564866 +13,323.1647140635819,0.10194470475191858,0.0,72.44870351036347,0.08586512499459786 +14,321.04641790612,0.10127647252558991,0.0,71.97381314151923,0.08530229199823225 +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.08566950000385987 +16,321.7960054059207,0.10151293545928099,0.0,72.14185946639569,0.08550145800109021 +17,303.00058629844494,0.09558378116670187,0.0,67.92820714913613,0.08050749999529216 +18,319.4832536685931,0.10078336077873598,0.0,71.62337506008836,0.08488695800042478 +19,324.52934299437413,0.10237518706447134,0.0,72.7546329404843,0.08622770800138824 +20,335.0232930833541,0.10568558141430728,0.0,75.10721985843438,0.08901595899806125 +21,328.476451821486,0.10362033180488517,0.0,73.63951580267174,0.0872764579980867 +22,329.2296486453677,0.10385793332661442,0.0,73.80837128411399,0.08747658300126204 +23,327.0558388796751,0.10317218892103315,0.0,73.32103559321422,0.08689899999444606 +24,324.61872924541194,0.10240338462000377,0.0,72.77467200328267,0.08625145800033351 +25,318.41955724016697,0.10044780985494225,0.0,71.38491020357897,0.08460433300206205 +26,300.9517592509948,0.09493746348611824,0.0,67.46889071746803,0.07996312499744818 +27,324.7123495870697,0.10243291785081063,0.0,72.79566028597608,0.08627633300056914 +28,323.6961727674179,0.10211235733987947,0.0,72.56784861620767,0.08600633400055813 +29,321.83113513979686,0.10152401739425768,0.0,72.14973502818579,0.08551079199969536 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c4071a358 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..79e2ecdad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bcccdffc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ea2586c77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e165f4b93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..09ec20de1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ecf995df4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..55b7236f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6628a8ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ed36749e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5acee134d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bb55756e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..294f32300 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1f59cb252 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b65803671 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e07acbd84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..47db973e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..aaa7e40a0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691 +1,1494.6927432930365,2.473550026918434,0.0,455.73487928386396,0.49584499999764375 +2,1493.1747248593663,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275 +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.49847208299615886 +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588 +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215 +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248 +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.49237287500000093 +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.49650362499960465 +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.49406124999950407 +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.49517937500058906 +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688 +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212 +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.49181562500598375 +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422 +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985 +16,1492.1949067183677,2.469416385570248,0.0,454.9732837954698,0.49501637499633944 +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.49382570800662506 +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.49489591699966695 +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.49210095899616135 +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491 +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438 +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575 +23,1499.6939449160884,2.4818264586231,0.0,457.25975590361276,0.4975040839999565 +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.49070587499591056 +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.49583537499711383 +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.49486712500220165 +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389 +28,1498.3648260791647,2.4796269149713344,0.0,456.85450484755637,0.49706316600349965 +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.49539212500530994 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8d2027c7b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,254.6307029336884,0.08032514288128972,0.0,57.08440154096989,0.06765558299957775 +1,263.7963996346027,0.08321652985318698,0.0,59.139213882331546,0.07009091600048123 +2,253.7492302434404,0.08004707578657425,0.0,56.886788525658766,0.06742137499531964 +3,315.84115707071624,0.09963443440716599,0.0,70.8068713853593,0.08391924999887124 +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.08857233299931977 +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049 +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.08686008299991954 +7,326.48454970016655,0.10299197151424813,0.0,73.192961089459,0.0867472079989966 +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.08906920900335535 +9,330.8312320406672,0.10436316468159848,0.0,74.16742236705599,0.08790212500025518 +10,325.4089376060097,0.10265266170536584,0.0,72.95182491861333,0.08646141699864529 +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.08579479099716991 +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.08634108399564866 +13,323.1647140635819,0.10194470475191858,0.0,72.44870351036347,0.08586512499459786 +14,321.04641790612,0.10127647252558991,0.0,71.97381314151923,0.08530229199823225 +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.08566950000385987 +16,321.7960054059207,0.10151293545928099,0.0,72.14185946639569,0.08550145800109021 +17,303.00058629844494,0.09558378116670187,0.0,67.92820714913613,0.08050749999529216 +18,319.4832536685931,0.10078336077873598,0.0,71.62337506008836,0.08488695800042478 +19,324.52934299437413,0.10237518706447134,0.0,72.7546329404843,0.08622770800138824 +20,335.0232930833541,0.10568558141430728,0.0,75.10721985843438,0.08901595899806125 +21,328.476451821486,0.10362033180488517,0.0,73.63951580267174,0.0872764579980867 +22,329.2296486453677,0.10385793332661442,0.0,73.80837128411399,0.08747658300126204 +23,327.0558388796751,0.10317218892103315,0.0,73.32103559321422,0.08689899999444606 +24,324.61872924541194,0.10240338462000377,0.0,72.77467200328267,0.08625145800033351 +25,318.41955724016697,0.10044780985494225,0.0,71.38491020357897,0.08460433300206205 +26,300.9517592509948,0.09493746348611824,0.0,67.46889071746803,0.07996312499744818 +27,324.7123495870697,0.10243291785081063,0.0,72.79566028597608,0.08627633300056914 +28,323.6961727674179,0.10211235733987947,0.0,72.56784861620767,0.08600633400055813 +29,321.83113513979686,0.10152401739425768,0.0,72.14973502818579,0.08551079199969536 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c4071a358 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..79e2ecdad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bcccdffc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ea2586c77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e165f4b93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..09ec20de1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ecf995df4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..55b7236f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6628a8ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ed36749e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5acee134d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bb55756e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..294f32300 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1f59cb252 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b65803671 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e07acbd84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..47db973e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c4b56dd4e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.47933887500403216 +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867 +2,1441.9302878449867,0.8980466361832127,0.0,453.4470292994718,0.48276849999820115 +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275 +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.48217733300407417 +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047 +6,1443.4038975756093,0.8989644130499505,0.0,453.91043863370277,0.4832618750006077 +7,1444.6679358767042,0.8997516670204607,0.0,454.30794357370155,0.48368508400017163 +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.48249283299810486 +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.48156404200562974 +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736 +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.48134249999566237 +12,1446.2781884746041,0.9007545462450247,0.0,454.8143232947564,0.4842242080048891 +13,1461.7319885114002,0.9103793063712817,0.0,459.6741142133216,0.48939824999979464 +14,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.48273437500029104 +15,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.48008979100268334 +16,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867 +17,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679 +18,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.48508345799928065 +19,1445.4697617578422,0.9002510511040261,0.0,454.56009554448843,0.4839535409992095 +20,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.48045812499913154 +21,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503 +22,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.48397304199897917 +23,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.48046933300065575 +24,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.48029249999672174 +25,1455.9690940043993,0.9067901259023523,0.0,457.8618439417322,0.48746879199461546 +26,1436.5572954868483,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864 +27,1432.2019249021291,0.8919877277255372,0.0,450.38772933637955,0.47951137500058394 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d56548a8f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,297.4059709817293,0.9431835074740537,0.0,64.00173800716793,0.06847587499942165 +1,294.011382014694,0.9324180197543813,0.0,63.2712227690473,0.0676942920035799 +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.06834195899864426 +3,295.5819955572358,0.9373990118476161,0.0,63.609218661088235,0.06805591600277694 +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.06837800000357674 +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.06661583399545634 +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.06959824999648845 +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.06310720799956471 +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908 +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.06823495799471857 +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217 +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.06788029100425774 +12,298.78404079959876,0.9475538727362969,0.0,64.29829850710586,0.06879316700360505 +13,298.6888503744389,0.9472519889550675,0.0,64.27781353623672,0.06877125000028173 +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.06841820800036658 +15,300.98587226643184,0.9545366885785583,0.0,64.77213243925932,0.06930012500379235 +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.06885033399885288 +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.07032216699735727 +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.06221129199548159 +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.07043704099487513 +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.06791695799620356 +21,294.30110968856326,0.9333368525631183,0.0,63.33357213821159,0.067760999998427 +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.06830391599942232 +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.06860804199823178 +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.06546416700439295 +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.06820254200283671 +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.06795516699639848 +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.06825387499702629 +28,297.22988805085987,0.9426250838627337,0.0,63.963844976399784,0.06843533299979754 +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.06241829200007487 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..21370607b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6f4870570 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3b39dca06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bf2dc1799 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..28b75636c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1221199d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..79e8ddd7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6bb76517a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7416954ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8a94ab9f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a0557fbdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fd28b898a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..24afc1f36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..97f67936c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..915781406 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a97b7ce8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..66ef5230c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..58027302b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1c9a15626 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.47933887500403216 +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867 +2,1441.9302878449867,0.8980466361832127,0.0,453.4470292994718,0.48276849999820115 +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275 +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.48217733300407417 +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047 +6,1443.4038975756093,0.8989644130499505,0.0,453.91043863370277,0.4832618750006077 +7,1444.6679358767042,0.8997516670204607,0.0,454.30794357370155,0.48368508400017163 +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.48249283299810486 +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.48156404200562974 +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736 +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.48134249999566237 +12,1446.2781884746041,0.9007545462450247,0.0,454.8143232947564,0.4842242080048891 +13,1461.7319885114002,0.9103793063712817,0.0,459.6741142133216,0.48939824999979464 +14,1485.9730603675403,0.9254768552759639,0.0,467.29725807323024,0.4975143330011633 +15,1485.196744674062,0.9249933591575863,0.0,467.0531283479768,0.4972544169941102 +16,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.48273437500029104 +17,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.48008979100268334 +18,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867 +19,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679 +20,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.48508345799928065 +21,1445.4697617578422,0.9002510511040261,0.0,454.56009554448843,0.4839535409992095 +22,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.48045812499913154 +23,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503 +24,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.48397304199897917 +25,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.48046933300065575 +26,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.48029249999672174 +27,1455.9690940043993,0.9067901259023523,0.0,457.8618439417322,0.48746879199461546 +28,1436.5572954868483,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864 +29,1432.2019249021291,0.8919877277255372,0.0,450.38772933637955,0.47951137500058394 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d56548a8f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,297.4059709817293,0.9431835074740537,0.0,64.00173800716793,0.06847587499942165 +1,294.011382014694,0.9324180197543813,0.0,63.2712227690473,0.0676942920035799 +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.06834195899864426 +3,295.5819955572358,0.9373990118476161,0.0,63.609218661088235,0.06805591600277694 +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.06837800000357674 +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.06661583399545634 +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.06959824999648845 +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.06310720799956471 +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908 +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.06823495799471857 +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217 +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.06788029100425774 +12,298.78404079959876,0.9475538727362969,0.0,64.29829850710586,0.06879316700360505 +13,298.6888503744389,0.9472519889550675,0.0,64.27781353623672,0.06877125000028173 +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.06841820800036658 +15,300.98587226643184,0.9545366885785583,0.0,64.77213243925932,0.06930012500379235 +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.06885033399885288 +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.07032216699735727 +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.06221129199548159 +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.07043704099487513 +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.06791695799620356 +21,294.30110968856326,0.9333368525631183,0.0,63.33357213821159,0.067760999998427 +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.06830391599942232 +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.06860804199823178 +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.06546416700439295 +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.06820254200283671 +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.06795516699639848 +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.06825387499702629 +28,297.22988805085987,0.9426250838627337,0.0,63.963844976399784,0.06843533299979754 +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.06241829200007487 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b4e259370 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c40dcd6c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..04fccb059 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0ce82b4b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e1099a7f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8d30f6213 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1eea33e62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..647b613c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..02ecb1006 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2acc92554 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c4ce4f9ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cdd7c72b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a600ea05f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..58c9a2160 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f58511b30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9fa2593ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2c52056ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ed605d272 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1491.8732837180632,0.16713419861957646,0.0,457.51315530122855,0.4853813329973491 +1,1490.1256809068748,0.16693841510462176,0.0,456.97721750739163,0.4848127500008559 +2,1488.2943221687606,0.16673324843368517,0.0,456.4155942623698,0.4842169169933186 +3,1478.1767640016478,0.16559978086998361,0.0,453.3128401534932,0.48092516700126 +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.48071524999977555 +5,1475.4721125595993,0.16529677943129206,0.0,452.48340401521887,0.48004520800168393 +6,1484.248678964546,0.16628001601628306,0.0,455.17491584297323,0.4829006660002051 +7,1479.026359174096,0.16569496080908963,0.0,453.57338571880194,0.48120158299570903 +8,1478.2323440915482,0.16560600749384374,0.0,453.3298849136479,0.48094324999692617 +9,1480.85157375242,0.16589943915130964,0.0,454.133124732795,0.48179541699937545 +10,1481.4601486859867,0.1659676176520789,0.0,454.31975656080084,0.4819934170009219 +11,1482.2434061160802,0.16605536579015484,0.0,454.5599583139699,0.4822482499948819 +12,1491.9479478691496,0.16714256322613763,0.0,457.5360525752291,0.48540562499692896 +13,1501.6120194051155,0.16822522679360932,0.0,460.49973582482613,0.48854983300407184 +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161 +15,1473.289209598557,0.16505222934715297,0.0,451.81397261489656,0.47933499999635387 +16,1479.9291063236064,0.16579609535116918,0.0,453.85023141429053,0.4814952919987263 +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442 +18,1492.6903539863913,0.16722573480163913,0.0,457.76372644600696,0.4856471670063911 +19,1482.245585323591,0.1660556099262386,0.0,454.56062661208557,0.48224895900057163 +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339 +21,1481.4204468550586,0.16596316986568288,0.0,454.3075811903203,0.4819805000006454 +22,1521.4543559992917,0.17044815890292528,0.0,466.5847901808677,0.4950055420049466 +23,1507.892303639942,0.16892880549841388,0.0,462.4257121713581,0.49059312499593943 +24,1517.9368635996732,0.17005409509081953,0.0,465.5060799016094,0.4938611250036047 +25,1487.6624369941349,0.16666245849231864,0.0,456.22181387687306,0.4840113329992164 +26,1484.790276829119,0.16634069109241548,0.0,455.3410077963781,0.48307687499618623 +27,1484.8006502773037,0.16634185322727518,0.0,455.34418902434305,0.4830802500000573 +28,1470.9937325949475,0.16479506762059415,0.0,451.11001810461437,0.47858816599909915 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..172ae6346 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,295.56381491985087,0.0,0.0,64.40996834269353,0.06891687499592081 +1,292.9117899350054,0.0,0.0,63.832032760950376,0.06829849999485305 +2,298.182066414368,0.0,0.0,64.98054392523157,0.06952737500250805 +3,292.7641857549563,0.0,0.0,63.7998665075584,0.06826408299821196 +4,293.3478092458931,0.0,0.0,63.92705112447601,0.06840016700152773 +5,294.64942974187426,0.0,0.0,64.21070335356598,0.06870366699877195 +6,296.68959874211004,0.0,0.0,64.65530182633425,0.06917937500111293 +7,294.8887006250224,0.0,0.0,64.2628458325534,0.06875945800129557 +8,295.15227983001137,0.0,0.0,64.32028563875475,0.06882091699662851 +9,290.6847022677367,0.0,0.0,63.34670052843714,0.06777920800232096 +10,294.45357766054786,0.0,0.0,64.16802280296643,0.06865799999650335 +11,292.47201807649003,0.0,0.0,63.73619663333556,0.06819595800334355 +12,294.7008941303778,0.0,0.0,64.22191859530722,0.06871566699555842 +13,272.00670099030486,0.0,0.0,59.276346140467126,0.06342404199676821 +14,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245 +15,301.81066704160895,0.0,0.0,65.77129718977528,0.07037345900607761 +16,295.9329991160775,0.0,0.0,64.49042183933697,0.06900295800005551 +17,295.25288419120227,0.0,0.0,64.34220958002342,0.06884437500411877 +18,301.8601629004876,0.0,0.0,65.78208344486653,0.07038499999907799 +19,286.4547915575912,0.0,0.0,62.42490834285863,0.06679291599721182 +20,290.8757295246105,0.0,0.0,63.38832964183578,0.06782374999602325 +21,288.97083044730425,0.0,0.0,62.973209511861164,0.06737958300072933 +22,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602 +23,295.5164591211883,0.0,0.0,64.399648454606,0.06890583300264552 +24,268.26248562413593,0.0,0.0,58.460397837497204,0.06255100000271341 +25,293.4117794845162,0.0,0.0,63.94099167076958,0.06841508299839916 +26,293.46628031085334,0.0,0.0,63.952868620253305,0.06842779100406915 +27,292.03207031876735,0.0,0.0,63.64032217334782,0.06809337499726098 +28,296.7944917425345,0.0,0.0,64.67816035804776,0.06920383299438981 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6c84b228b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0e4d70879 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bf378ef3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..84784bdf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b583ec41f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3e984e206 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..cd56de1d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e760037c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..45f193fc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6051fbcd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1fed1027e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aece8e6f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8634ad1ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1b7dd4681 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8d830dca0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ceff50a1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..3ffb31e16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..50449873c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1491.8732837180632,0.16713419861957646,0.0,457.51315530122855,0.4853813329973491 +1,1490.1256809068748,0.16693841510462176,0.0,456.97721750739163,0.4848127500008559 +2,1488.2943221687606,0.16673324843368517,0.0,456.4155942623698,0.4842169169933186 +3,1478.1767640016478,0.16559978086998361,0.0,453.3128401534932,0.48092516700126 +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.48071524999977555 +5,1475.4721125595993,0.16529677943129206,0.0,452.48340401521887,0.48004520800168393 +6,1484.248678964546,0.16628001601628306,0.0,455.17491584297323,0.4829006660002051 +7,1479.026359174096,0.16569496080908963,0.0,453.57338571880194,0.48120158299570903 +8,1478.2323440915482,0.16560600749384374,0.0,453.3298849136479,0.48094324999692617 +9,1480.85157375242,0.16589943915130964,0.0,454.133124732795,0.48179541699937545 +10,1481.4601486859867,0.1659676176520789,0.0,454.31975656080084,0.4819934170009219 +11,1482.2434061160802,0.16605536579015484,0.0,454.5599583139699,0.4822482499948819 +12,1491.9479478691496,0.16714256322613763,0.0,457.5360525752291,0.48540562499692896 +13,1501.6120194051155,0.16822522679360932,0.0,460.49973582482613,0.48854983300407184 +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161 +15,1473.289209598557,0.16505222934715297,0.0,451.81397261489656,0.47933499999635387 +16,1479.9291063236064,0.16579609535116918,0.0,453.85023141429053,0.4814952919987263 +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442 +18,1492.6903539863913,0.16722573480163913,0.0,457.76372644600696,0.4856471670063911 +19,1482.245585323591,0.1660556099262386,0.0,454.56062661208557,0.48224895900057163 +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339 +21,1481.4204468550586,0.16596316986568288,0.0,454.3075811903203,0.4819805000006454 +22,1521.4543559992917,0.17044815890292528,0.0,466.5847901808677,0.4950055420049466 +23,1507.892303639942,0.16892880549841388,0.0,462.4257121713581,0.49059312499593943 +24,1545.2417949075991,0.17311305985834946,0.0,473.87969005624586,0.5027447909960756 +25,1517.9368635996732,0.17005409509081953,0.0,465.5060799016094,0.4938611250036047 +26,1487.6624369941349,0.16666245849231864,0.0,456.22181387687306,0.4840113329992164 +27,1484.790276829119,0.16634069109241548,0.0,455.3410077963781,0.48307687499618623 +28,1484.8006502773037,0.16634185322727518,0.0,455.34418902434305,0.4830802500000573 +29,1470.9937325949475,0.16479506762059415,0.0,451.11001810461437,0.47858816599909915 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d122d8cd7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,295.56381491985087,0.0,0.0,64.40996834269353,0.06891687499592081 +1,292.9117899350054,0.0,0.0,63.832032760950376,0.06829849999485305 +2,298.182066414368,0.0,0.0,64.98054392523157,0.06952737500250805 +3,266.1084859341793,0.0,0.0,57.99099311054205,0.06204874999821186 +4,292.7641857549563,0.0,0.0,63.7998665075584,0.06826408299821196 +5,293.3478092458931,0.0,0.0,63.92705112447601,0.06840016700152773 +6,294.64942974187426,0.0,0.0,64.21070335356598,0.06870366699877195 +7,296.68959874211004,0.0,0.0,64.65530182633425,0.06917937500111293 +8,294.8887006250224,0.0,0.0,64.2628458325534,0.06875945800129557 +9,295.15227983001137,0.0,0.0,64.32028563875475,0.06882091699662851 +10,290.6847022677367,0.0,0.0,63.34670052843714,0.06777920800232096 +11,294.45357766054786,0.0,0.0,64.16802280296643,0.06865799999650335 +12,292.47201807649003,0.0,0.0,63.73619663333556,0.06819595800334355 +13,294.7008941303778,0.0,0.0,64.22191859530722,0.06871566699555842 +14,272.00670099030486,0.0,0.0,59.276346140467126,0.06342404199676821 +15,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245 +16,301.81066704160895,0.0,0.0,65.77129718977528,0.07037345900607761 +17,295.9329991160775,0.0,0.0,64.49042183933697,0.06900295800005551 +18,295.25288419120227,0.0,0.0,64.34220958002342,0.06884437500411877 +19,301.8601629004876,0.0,0.0,65.78208344486653,0.07038499999907799 +20,286.4547915575912,0.0,0.0,62.42490834285863,0.06679291599721182 +21,290.8757295246105,0.0,0.0,63.38832964183578,0.06782374999602325 +22,288.97083044730425,0.0,0.0,62.973209511861164,0.06737958300072933 +23,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602 +24,295.5164591211883,0.0,0.0,64.399648454606,0.06890583300264552 +25,268.26248562413593,0.0,0.0,58.460397837497204,0.06255100000271341 +26,293.4117794845162,0.0,0.0,63.94099167076958,0.06841508299839916 +27,293.46628031085334,0.0,0.0,63.952868620253305,0.06842779100406915 +28,292.03207031876735,0.0,0.0,63.64032217334782,0.06809337499726098 +29,296.7944917425345,0.0,0.0,64.67816035804776,0.06920383299438981 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e99b1018f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b2db91658 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6740cff42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..20341a0c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6022caf60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a953729ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..19e460f5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1b64e1a74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b44aad565 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6431c441c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5af263787 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..413009ce4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0829089cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d00a47ff4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..eee2bb639 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a3c746c4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b3d5fecb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4da51dc1d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1498.5408128623817,0.8690099505837388,0.033423459637836106,458.53644277147356,0.4839190410057199 +1,1491.5130351462874,0.8649345135229948,0.033266712058576724,456.38602273161405,0.48164958299457794 +2,1490.9282803951478,0.8645954118495337,0.03325366968652053,456.2070944293751,0.48146074999385746 +3,1498.858609293904,0.8691942420350508,0.033430547770578876,458.6336848645716,0.4840216660013539 +4,1501.085510016672,0.8704856308784092,0.03348021657224651,459.31509115464985,0.4847407920024125 +5,1479.0403956377672,0.8577015788241764,0.032988522262468324,452.56953691880295,0.47762183300073957 +6,1495.4335579034869,0.8672080407157502,0.03335415541214424,457.5856580992068,0.482915624997986 +7,1489.2027842934413,0.8635947895980701,0.03321518421531039,455.67911224984323,0.48090354099986143 +8,1492.1808861224167,0.8653218030374225,0.033281607809131634,456.5903775334769,0.48186524999618996 +9,1495.2063392563043,0.8670762756922921,0.03334908752662662,457.5161317777906,0.4828422499995213 +10,1487.4661958807744,0.8625877348700822,0.03317645134115701,455.14773594933297,0.48034275000100024 +11,1490.5684218110532,0.8643867283837936,0.033245643399376676,456.0969817960486,0.48134454200044274 +12,1490.2245606219176,0.8641873218728641,0.03323797391818708,455.99176418360855,0.48123349999514176 +13,1487.687995347552,0.862716357288644,0.03318139835725554,455.2156040631887,0.4804143750006915 +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.11059417075563,0.48769104199891444 +15,1484.8391828501337,0.861064319261815,0.033117858433146734,454.34389984434006,0.47949441699893214 +16,1492.7811242622347,0.8656698835913483,0.03329499552274417,456.7740435765272,0.4820590829986031 +17,1492.3149443588663,0.865399543957411,0.03328459784451581,456.6313978289124,0.48190854099811986 +18,1495.187245138547,0.8670652029352565,0.03334866165135602,457.5102891949532,0.4828360839965171 +19,1506.9395171583026,0.8738803935790314,0.03361078436842428,461.10635075041273,0.48663120799756143 +20,1500.7598418289485,0.8702967745634584,0.033472952867825326,459.21544039369564,0.48463562500546686 +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446 +22,1492.8802179047152,0.8657273484001917,0.03329720570769968,456.8043651039319,0.48209108299488435 +23,1490.5962918881432,0.8644028903555643,0.03324626501367555,456.1055097226149,0.4813535419962136 +24,1503.3667264430414,0.8718085176205883,0.03353109683156109,460.01311743218656,0.4854774580016965 +25,1474.89227025517,0.8552960639374243,0.032896002459131705,451.30025773682786,0.4762822920019971 +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.48171854200336384 +27,1500.2008916666362,0.8699726370766709,0.03346048604141042,459.04440800210955,0.48445512499893084 +28,1492.6384201170483,0.8655871288734974,0.03329181264898067,456.7303777313658,0.4820130000007339 +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5d7f3c552 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,289.28287234917417,0.0,0.0,62.42629931011725,0.06768341599672567 +1,294.6927660431574,0.0,0.0,63.5937367053353,0.06894916699820897 +2,277.7601904303348,0.0,0.0,59.93974217495268,0.06498745799763128 +3,293.7341289609959,0.0,0.0,63.386865953068444,0.06872487500368152 +4,292.09271527384254,0.0,0.0,63.03265423879081,0.06834083399735391 +5,293.5832888779959,0.0,0.0,63.35431515566778,0.06868958300037775 +6,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502 +7,291.9546931410586,0.0,0.0,63.002869513194646,0.06830854100553552 +8,294.338014940254,0.0,0.0,63.517182575633115,0.06886616600240814 +9,291.76485654961874,0.0,0.0,62.96190339660087,0.06826412500231527 +10,291.4241799062767,0.0,0.0,62.88838648931725,0.06818441700306721 +11,289.7307595134493,0.0,0.0,62.52295189776321,0.06778820800536778 +12,295.45675398335953,0.0,0.0,63.75860280831983,0.06912791699869558 +13,268.6430896357433,0.0,0.0,57.97230159189356,0.06285433300217846 +14,296.1544940115595,0.0,0.0,63.90917282820156,0.06929116699757287 +15,296.023421474765,0.0,0.0,63.88088780272865,0.06926050000038231 +16,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743 +17,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523 +18,288.2072371897795,0.0,0.0,62.19418075479606,0.06743175000156043 +19,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575 +20,291.5402932180753,0.0,0.0,62.91344336287967,0.06821158399543492 +21,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078 +22,290.7937520213083,0.0,0.0,62.75234221016276,0.06803691600362072 +23,292.5845867335617,0.0,0.0,63.13879849377964,0.06845591699675424 +24,273.97462270495254,0.0,0.0,59.12282902014209,0.06410174999473384 +25,299.1048380666353,0.0,0.0,64.54584744206421,0.06998145800025668 +26,294.26660397366516,0.0,0.0,63.501772322208495,0.06884945800265996 +27,292.6253698145022,0.0,0.0,63.14759934948502,0.06846545900043566 +28,290.1271784005321,0.0,0.0,62.60849779924106,0.06788095799856819 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2b081165a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ef4cd4b78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c2a0e72f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ac37c478e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..acff7328f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ff40bd893 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..4154608cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ed0ad5df5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4a91d4843 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e25edf2ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e98b8250d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d3f428b8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bbb887290 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..07a7c2e3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6fc41cb52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..f451f89dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ee8be0871 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..fcd222f1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b5fecfd85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f4fc92f97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4da51dc1d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1498.5408128623817,0.8690099505837388,0.033423459637836106,458.53644277147356,0.4839190410057199 +1,1491.5130351462874,0.8649345135229948,0.033266712058576724,456.38602273161405,0.48164958299457794 +2,1490.9282803951478,0.8645954118495337,0.03325366968652053,456.2070944293751,0.48146074999385746 +3,1498.858609293904,0.8691942420350508,0.033430547770578876,458.6336848645716,0.4840216660013539 +4,1501.085510016672,0.8704856308784092,0.03348021657224651,459.31509115464985,0.4847407920024125 +5,1479.0403956377672,0.8577015788241764,0.032988522262468324,452.56953691880295,0.47762183300073957 +6,1495.4335579034869,0.8672080407157502,0.03335415541214424,457.5856580992068,0.482915624997986 +7,1489.2027842934413,0.8635947895980701,0.03321518421531039,455.67911224984323,0.48090354099986143 +8,1492.1808861224167,0.8653218030374225,0.033281607809131634,456.5903775334769,0.48186524999618996 +9,1495.2063392563043,0.8670762756922921,0.03334908752662662,457.5161317777906,0.4828422499995213 +10,1487.4661958807744,0.8625877348700822,0.03317645134115701,455.14773594933297,0.48034275000100024 +11,1490.5684218110532,0.8643867283837936,0.033245643399376676,456.0969817960486,0.48134454200044274 +12,1490.2245606219176,0.8641873218728641,0.03323797391818708,455.99176418360855,0.48123349999514176 +13,1487.687995347552,0.862716357288644,0.03318139835725554,455.2156040631887,0.4804143750006915 +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.11059417075563,0.48769104199891444 +15,1484.8391828501337,0.861064319261815,0.033117858433146734,454.34389984434006,0.47949441699893214 +16,1492.7811242622347,0.8656698835913483,0.03329499552274417,456.7740435765272,0.4820590829986031 +17,1492.3149443588663,0.865399543957411,0.03328459784451581,456.6313978289124,0.48190854099811986 +18,1495.187245138547,0.8670652029352565,0.03334866165135602,457.5102891949532,0.4828360839965171 +19,1506.9395171583026,0.8738803935790314,0.03361078436842428,461.10635075041273,0.48663120799756143 +20,1500.7598418289485,0.8702967745634584,0.033472952867825326,459.21544039369564,0.48463562500546686 +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446 +22,1492.8802179047152,0.8657273484001917,0.03329720570769968,456.8043651039319,0.48209108299488435 +23,1490.5962918881432,0.8644028903555643,0.03324626501367555,456.1055097226149,0.4813535419962136 +24,1503.3667264430414,0.8718085176205883,0.03353109683156109,460.01311743218656,0.4854774580016965 +25,1474.89227025517,0.8552960639374243,0.032896002459131705,451.30025773682786,0.4762822920019971 +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.48171854200336384 +27,1500.2008916666362,0.8699726370766709,0.03346048604141042,459.04440800210955,0.48445512499893084 +28,1492.6384201170483,0.8655871288734974,0.03329181264898067,456.7303777313658,0.4820130000007339 +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0891b8883 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,289.28287234917417,0.0,0.0,62.42629931011725,0.06768341599672567 +1,294.6927660431574,0.0,0.0,63.5937367053353,0.06894916699820897 +2,277.7601904303348,0.0,0.0,59.93974217495268,0.06498745799763128 +3,262.90320869288206,0.0,0.0,56.733654025815085,0.061511374995461665 +4,293.7341289609959,0.0,0.0,63.386865953068444,0.06872487500368152 +5,292.09271527384254,0.0,0.0,63.03265423879081,0.06834083399735391 +6,293.5832888779959,0.0,0.0,63.35431515566778,0.06868958300037775 +7,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502 +8,291.9546931410586,0.0,0.0,63.002869513194646,0.06830854100553552 +9,294.338014940254,0.0,0.0,63.517182575633115,0.06886616600240814 +10,291.76485654961874,0.0,0.0,62.96190339660087,0.06826412500231527 +11,291.4241799062767,0.0,0.0,62.88838648931725,0.06818441700306721 +12,289.7307595134493,0.0,0.0,62.52295189776321,0.06778820800536778 +13,295.45675398335953,0.0,0.0,63.75860280831983,0.06912791699869558 +14,268.6430896357433,0.0,0.0,57.97230159189356,0.06285433300217846 +15,296.1544940115595,0.0,0.0,63.90917282820156,0.06929116699757287 +16,296.023421474765,0.0,0.0,63.88088780272865,0.06926050000038231 +17,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743 +18,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523 +19,288.2072371897795,0.0,0.0,62.19418075479606,0.06743175000156043 +20,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575 +21,291.5402932180753,0.0,0.0,62.91344336287967,0.06821158399543492 +22,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078 +23,290.7937520213083,0.0,0.0,62.75234221016276,0.06803691600362072 +24,292.5845867335617,0.0,0.0,63.13879849377964,0.06845591699675424 +25,273.97462270495254,0.0,0.0,59.12282902014209,0.06410174999473384 +26,299.1048380666353,0.0,0.0,64.54584744206421,0.06998145800025668 +27,294.26660397366516,0.0,0.0,63.501772322208495,0.06884945800265996 +28,292.6253698145022,0.0,0.0,63.14759934948502,0.06846545900043566 +29,290.1271784005321,0.0,0.0,62.60849779924106,0.06788095799856819 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..82ae54e16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8848c4170 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..609ff37cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..dc22a96d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d90cb048f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8db896039 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..4154608cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..87c26cbdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1d8bc5245 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e25edf2ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b96ae2f29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9fa42c327 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bbafbcaaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..14257455b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1f0a63ebc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..f451f89dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..aa2fa0317 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1cb2b09af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b5fecfd85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cee94325a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..5bfb7ebe7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1533.8317063038091,1.9223856119804854,3.480180849275017,458.8204142525148,0.482414374993823 +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305 +2,1532.7859211727925,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907 +3,1538.3956003927374,1.9281056426038587,3.4905360771276754,460.1856277683658,0.4838497919990914 +4,1522.9541430561326,1.9087525184704215,3.4555002489550732,455.5665709170007,0.47899320899887243 +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.62170341262964,0.48430829199787695 +6,1558.8705879131594,1.9537674027910894,3.536992711949386,466.31038201443187,0.4902894999977434 +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.13107717971917,0.48063816699868767 +8,1530.6126061866742,1.9183510417448646,3.4728768859174273,457.85747363576144,0.48140191700076684 +9,1529.805810596203,1.9173398667713935,3.4710463105344194,457.6161340640759,0.4811481670039939 +10,1543.3268559157984,1.9342860955359318,3.501724828125394,461.66073138799834,0.4854007499961881 +11,1528.3825913511535,1.9155561142331374,3.467817103353094,457.19040154016074,0.48070054200070444 +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202 +13,1532.1754590843223,1.9203098002655896,3.476422914273912,458.32497525994063,0.48189345900027547 +14,1548.060719170639,1.9402191523196635,3.5124657067855973,463.0767883717431,0.48688962499727495 +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935 +16,1531.8200143511995,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334 +17,1544.5072416097676,1.9357654993488456,3.5044030591660134,462.01382426700116,0.4857719999999972 +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605 +19,1532.2398437391905,1.9203904949947719,3.476568999559501,458.3442348657349,0.4819137089943979 +20,1550.3115310460873,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921 +21,1542.1652832809461,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617 +22,1531.4933249285327,1.9194548662587225,3.4748751889166525,458.12092609688784,0.4816789169999538 +23,1524.2148076912772,1.9103325376773361,3.458360628553798,455.94367791495455,0.47938970800169045 +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068 +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.48184829099773197 +26,1538.7289158546507,1.9285233943334645,3.4912923518105825,460.2853335820371,0.48395462499320274 +27,1566.0945228565863,1.9628213221618083,3.5533834280515495,468.4713028049295,0.49256154199974844 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5376d72db --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.09013454099476803 +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.08825741699547507 +2,455.5753429091931,1.3050782533395657,13.497256672696034,88.47056791059792,0.09038687499560183 +3,419.65660965940964,1.202182522959485,12.433098197975724,81.49532050377981,0.08326054100325564 +4,435.18530530497446,1.2466672899803264,12.893164341112323,84.51091944708739,0.0863414589985041 +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.08629216699773679 +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.08706749999691965 +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.08295312499831198 +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.08539787500194507 +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.08892620899860049 +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.08714970800065203 +11,445.6432605229153,1.2766260007441221,13.20300048138,86.5418046820226,0.08841633400152205 +12,443.88609216486395,1.2715922730693427,13.15094113990136,86.20057093227965,0.08806770899536787 +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.08562462499685353 +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.08468962500046473 +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.09143250000488479 +16,448.61450172342313,1.2851376604214158,13.291028961726747,87.11880561172545,0.08900583299691789 +17,446.24997941202497,1.2783640571169959,13.220975643341562,86.6596266087732,0.08853670799726387 +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.08732487499946728 +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951 +20,443.4385504379859,1.2703102085671665,13.137681893865695,86.11366045444791,0.0879789160026121 +21,442.1656725615023,1.2666638188720005,13.099970547807795,85.8664736161651,0.08772637500078417 +22,441.68348391262026,1.2652825019735823,13.085684823042575,85.77283487063022,0.08763070800341666 +23,435.0414455972906,1.2462551777381863,12.888902232923874,84.4829825750939,0.08631291700294241 +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.09108233299775748 +25,446.02715863284936,1.2777257465547136,13.214374168315855,86.616355871709,0.0884924999991199 +26,450.11881927566117,1.2894470510723803,13.33559713345909,87.410936935854,0.08930429199972423 +27,448.49374666265436,1.2847917356336875,13.287451371158927,87.09535555243103,0.0889818750001723 +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.08642858399980469 +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.08746533300291048 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..386b76f26 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..4c223a41d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d3899842d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..592b2c04e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8ed33cf0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4665693ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..5bf115316 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..27bbf4f63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..618e2d3c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a82cc6d9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e1f883a74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ff5a25391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9a4a1aa31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..44cb8e9fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0ebb54c40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..ec507b540 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..60d07ed76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2ed5c6cac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ac6b0f967 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7cfdfe90b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..428c5b951 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1533.8317063038091,1.9223856119804854,3.480180849275017,458.8204142525148,0.482414374993823 +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305 +2,1532.7859211727925,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907 +3,1538.3956003927374,1.9281056426038587,3.4905360771276754,460.1856277683658,0.4838497919990914 +4,1522.9541430561326,1.9087525184704215,3.4555002489550732,455.5665709170007,0.47899320899887243 +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.62170341262964,0.48430829199787695 +6,1558.8705879131594,1.9537674027910894,3.536992711949386,466.31038201443187,0.4902894999977434 +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.13107717971917,0.48063816699868767 +8,1530.6126061866742,1.9183510417448646,3.4728768859174273,457.85747363576144,0.48140191700076684 +9,1529.805810596203,1.9173398667713935,3.4710463105344194,457.6161340640759,0.4811481670039939 +10,1543.3268559157984,1.9342860955359318,3.501724828125394,461.66073138799834,0.4854007499961881 +11,1528.3825913511535,1.9155561142331374,3.467817103353094,457.19040154016074,0.48070054200070444 +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202 +13,1532.1754590843223,1.9203098002655896,3.476422914273912,458.32497525994063,0.48189345900027547 +14,1548.060719170639,1.9402191523196635,3.5124657067855973,463.0767883717431,0.48688962499727495 +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935 +16,1531.8200143511995,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334 +17,1544.5072416097676,1.9357654993488456,3.5044030591660134,462.01382426700116,0.4857719999999972 +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605 +19,1532.2398437391905,1.9203904949947719,3.476568999559501,458.3442348657349,0.4819137089943979 +20,1550.3115310460873,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921 +21,1542.1652832809461,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617 +22,1531.4933249285327,1.9194548662587225,3.4748751889166525,458.12092609688784,0.4816789169999538 +23,1524.2148076912772,1.9103325376773361,3.458360628553798,455.94367791495455,0.47938970800169045 +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068 +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.48184829099773197 +26,1538.7289158546507,1.9285233943334645,3.4912923518105825,460.2853335820371,0.48395462499320274 +27,1566.0945228565863,1.9628213221618083,3.5533834280515495,468.4713028049295,0.49256154199974844 +28,1626.4442900112474,2.0384590362524007,3.6903137725258977,486.52393860072385,0.5115425000039977 +29,1622.9085635276701,2.0340276311041094,3.68229140113675,485.46628443748597,0.5104304580017924 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..5376d72db --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.09013454099476803 +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.08825741699547507 +2,455.5753429091931,1.3050782533395657,13.497256672696034,88.47056791059792,0.09038687499560183 +3,419.65660965940964,1.202182522959485,12.433098197975724,81.49532050377981,0.08326054100325564 +4,435.18530530497446,1.2466672899803264,12.893164341112323,84.51091944708739,0.0863414589985041 +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.08629216699773679 +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.08706749999691965 +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.08295312499831198 +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.08539787500194507 +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.08892620899860049 +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.08714970800065203 +11,445.6432605229153,1.2766260007441221,13.20300048138,86.5418046820226,0.08841633400152205 +12,443.88609216486395,1.2715922730693427,13.15094113990136,86.20057093227965,0.08806770899536787 +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.08562462499685353 +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.08468962500046473 +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.09143250000488479 +16,448.61450172342313,1.2851376604214158,13.291028961726747,87.11880561172545,0.08900583299691789 +17,446.24997941202497,1.2783640571169959,13.220975643341562,86.6596266087732,0.08853670799726387 +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.08732487499946728 +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951 +20,443.4385504379859,1.2703102085671665,13.137681893865695,86.11366045444791,0.0879789160026121 +21,442.1656725615023,1.2666638188720005,13.099970547807795,85.8664736161651,0.08772637500078417 +22,441.68348391262026,1.2652825019735823,13.085684823042575,85.77283487063022,0.08763070800341666 +23,435.0414455972906,1.2462551777381863,12.888902232923874,84.4829825750939,0.08631291700294241 +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.09108233299775748 +25,446.02715863284936,1.2777257465547136,13.214374168315855,86.616355871709,0.0884924999991199 +26,450.11881927566117,1.2894470510723803,13.33559713345909,87.410936935854,0.08930429199972423 +27,448.49374666265436,1.2847917356336875,13.287451371158927,87.09535555243103,0.0889818750001723 +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.08642858399980469 +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.08746533300291048 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b0c0ed2ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..90a066fef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8b24030b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a36bada6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d59380c54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..64a91de72 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..94c1a0122 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b1a32016f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..44232cc0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0519c1fa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9f1a41aec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..61fb631cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4372dae86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c9bdf67cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5f46229a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..7851b41cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9fbe5a29f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..296338838 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c539ef62e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..93a868395 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..36e8f65da --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455 +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247 +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637 +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687 +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102 +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535 +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377 +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012 +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362 +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754 +10,2530.9661354573554,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819 +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904 +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.49712954200367676 +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964 +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.49569775000418304 +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316 +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772 +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.49581683299766155 +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591 +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655 +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278 +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505 +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175 +23,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116 +24,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507 +25,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086 +26,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.49586175000149524 +27,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456 +28,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.49888074999762466 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..dc982a9b6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,376.1194842106595,0.10284918901029791,1.4741717091476034,69.90316546399914,0.070418499999505 +1,375.3772813659091,0.10264623499204514,1.471262701552647,69.76522438292668,0.07027954200020758 +2,372.25223442040107,0.10179169658747636,1.459014317753828,69.18442311395476,0.06969445899449056 +3,385.48684281980036,0.10541067618807776,1.510886358695781,71.64412291583018,0.07217229199886788 +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.07048312499682652 +5,358.7098339166928,0.09808855179565021,1.4059359090709862,66.66751903711025,0.06715899999835528 +6,348.4707482819762,0.09528869244790163,1.3658045917532566,64.76454796709048,0.06524199999694247 +7,377.0809007160486,0.10311208660542756,1.4779399080111284,70.0818481961556,0.07059850000223378 +8,372.1874670252756,0.10177398606105431,1.4587604668751117,69.17238585949659,0.06968233299994608 +9,344.4984530925867,0.09420247555170541,1.3502354829077776,64.02628254997578,0.06449829199846135 +10,365.79850193293845,0.10002693517444311,1.4337194041670178,67.98497360689649,0.06848616700153798 +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.06600612499460112 +12,327.2959987393395,0.08949849569027604,1.2828117715606233,60.82914423749095,0.0612775839981623 +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.06563587500568246 +14,348.36548389342033,0.09525990809226698,1.36539201598916,64.74498420004412,0.06522229200345464 +15,370.71997155536667,0.10137270209334609,1.4530087300046275,68.89964652277756,0.06940758299606387 +16,393.78017104004334,0.10767847170906299,1.5433914278299028,73.1854679382598,0.07372500000201399 +17,402.07105295215644,0.10994559829153853,1.5758869088453857,74.72635830548236,0.0752772499981802 +18,373.83523342380454,0.10222456478638353,1.4652187619381638,69.478629199812,0.06999083400296513 +19,367.5913620968913,0.10051718952608459,1.4407463832072125,68.3181831478955,0.06882183300331235 +20,365.9671931593512,0.10007306348355241,1.4343805765975846,68.01632548098779,0.06851775000541238 +21,333.9660446668918,0.09132240762015088,1.3089545092221626,62.06879637916255,0.06252637500438141 +22,366.693153401072,0.1002715759915428,1.4372259225454467,68.15124781558525,0.06865366700367304 +23,363.69117314929224,0.09945068995058579,1.4254598892917296,67.5933189364148,0.06809162500576349 +24,364.9750647376018,0.09980176777074154,1.430492004713962,67.83193482818066,0.06833200000255601 +25,369.7136034968617,0.1010975125777582,1.4490643469478675,68.71260938201632,0.06921916699502617 +26,376.5937403004009,0.10297887347563602,1.4760305198174495,69.99130767227395,0.07050729200273054 +27,364.0695065079672,0.09955414451954259,1.4269427381134436,67.6636335584491,0.06816245799564058 +28,367.74291871241866,0.10055863240700538,1.4413403978337438,68.34635049262799,0.06885020800109487 +29,358.35531160656274,0.09799160831461928,1.4045463858428764,66.6016297845029,0.06709262500226032 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9d33bf370 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..13085bc21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..50a82fb04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5f49f0242 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0f345f6f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b35b8d066 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..24e83a9ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..dc09bb52b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e737496f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7cb053320 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5169f453e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b8120cc7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9ddaa04ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..050563792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0920a1ace Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..4b3c51acf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..952aab049 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..517651e54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..781264bc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..57999d257 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..25b7e2b15 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455 +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247 +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637 +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687 +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102 +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535 +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377 +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012 +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362 +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754 +10,2530.9661354573554,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819 +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904 +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.49712954200367676 +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964 +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.49569775000418304 +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316 +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772 +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.49581683299766155 +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591 +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655 +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278 +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505 +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175 +23,2797.642040985372,82.6511430553775,94.43706884190712,620.4635152953034,0.5694319999965956 +24,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116 +25,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507 +26,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086 +27,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.49586175000149524 +28,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456 +29,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.49888074999762466 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..dc982a9b6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,376.1194842106595,0.10284918901029791,1.4741717091476034,69.90316546399914,0.070418499999505 +1,375.3772813659091,0.10264623499204514,1.471262701552647,69.76522438292668,0.07027954200020758 +2,372.25223442040107,0.10179169658747636,1.459014317753828,69.18442311395476,0.06969445899449056 +3,385.48684281980036,0.10541067618807776,1.510886358695781,71.64412291583018,0.07217229199886788 +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.07048312499682652 +5,358.7098339166928,0.09808855179565021,1.4059359090709862,66.66751903711025,0.06715899999835528 +6,348.4707482819762,0.09528869244790163,1.3658045917532566,64.76454796709048,0.06524199999694247 +7,377.0809007160486,0.10311208660542756,1.4779399080111284,70.0818481961556,0.07059850000223378 +8,372.1874670252756,0.10177398606105431,1.4587604668751117,69.17238585949659,0.06968233299994608 +9,344.4984530925867,0.09420247555170541,1.3502354829077776,64.02628254997578,0.06449829199846135 +10,365.79850193293845,0.10002693517444311,1.4337194041670178,67.98497360689649,0.06848616700153798 +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.06600612499460112 +12,327.2959987393395,0.08949849569027604,1.2828117715606233,60.82914423749095,0.0612775839981623 +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.06563587500568246 +14,348.36548389342033,0.09525990809226698,1.36539201598916,64.74498420004412,0.06522229200345464 +15,370.71997155536667,0.10137270209334609,1.4530087300046275,68.89964652277756,0.06940758299606387 +16,393.78017104004334,0.10767847170906299,1.5433914278299028,73.1854679382598,0.07372500000201399 +17,402.07105295215644,0.10994559829153853,1.5758869088453857,74.72635830548236,0.0752772499981802 +18,373.83523342380454,0.10222456478638353,1.4652187619381638,69.478629199812,0.06999083400296513 +19,367.5913620968913,0.10051718952608459,1.4407463832072125,68.3181831478955,0.06882183300331235 +20,365.9671931593512,0.10007306348355241,1.4343805765975846,68.01632548098779,0.06851775000541238 +21,333.9660446668918,0.09132240762015088,1.3089545092221626,62.06879637916255,0.06252637500438141 +22,366.693153401072,0.1002715759915428,1.4372259225454467,68.15124781558525,0.06865366700367304 +23,363.69117314929224,0.09945068995058579,1.4254598892917296,67.5933189364148,0.06809162500576349 +24,364.9750647376018,0.09980176777074154,1.430492004713962,67.83193482818066,0.06833200000255601 +25,369.7136034968617,0.1010975125777582,1.4490643469478675,68.71260938201632,0.06921916699502617 +26,376.5937403004009,0.10297887347563602,1.4760305198174495,69.99130767227395,0.07050729200273054 +27,364.0695065079672,0.09955414451954259,1.4269427381134436,67.6636335584491,0.06816245799564058 +28,367.74291871241866,0.10055863240700538,1.4413403978337438,68.34635049262799,0.06885020800109487 +29,358.35531160656274,0.09799160831461928,1.4045463858428764,66.6016297845029,0.06709262500226032 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d525da2c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..a6d863783 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..480f60f82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ec8e608d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bc0e86f37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c1a76892a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9562bfbbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..da0e92b18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ccd64be8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ae61095b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2eb7a1ab5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..50cf174cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9d7db988a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4b105b26b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..083f13496 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..707532db7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a00fa99ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..fd1415fc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b1a7bde97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ef10d14b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3db8ae919 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1478.1854806320387,0.10019105853677315,0.0,453.1975547813372,0.48267045799730113 +1,1472.4376515691376,0.09980147205683138,0.0,451.43532527040054,0.48079362499993294 +2,1467.3052593754642,0.09945359974077388,0.0,449.86178282743384,0.4791177500010235 +3,1469.146722041262,0.09957841364008463,0.0,450.4263576986495,0.4797190410026815 +4,1470.3858951825941,0.09966240449939637,0.0,450.80627635226955,0.480123666995496 +5,1466.8412883523577,0.09942215189573378,0.0,449.71953374170243,0.4789662499970291 +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107 +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546 +8,1478.2217224431022,0.10019351499806389,0.0,453.2086661745757,0.4826822920003906 +9,1476.0122465403242,0.10004375724951928,0.0,452.53126195865883,0.48196083399670897 +10,1472.6817615590717,0.09981801777359786,0.0,451.51016706257434,0.4808733339959872 +11,1475.1950634268462,0.09998836877342443,0.0,452.2807214184565,0.4816939999946044 +12,1475.1436376964587,0.09998488314971139,0.0,452.2649547805279,0.4816772080012015 +13,1471.505244398319,0.09973827372167274,0.0,451.14945813436634,0.48048916699917754 +14,1487.7908044971593,0.10084210509232683,0.0,456.1424553676251,0.48580687499634223 +15,1468.6795629390188,0.09954674970780272,0.0,450.2831311782943,0.47956649999832734 +16,1475.7644370380624,0.10002696078069151,0.0,452.455285931328,0.48187991700251587 +17,1467.6844997653375,0.09947930456374715,0.0,449.97805431001626,0.4792415829942911 +18,1482.7513106263857,0.10050052940238939,0.0,454.5973946634747,0.48416133399587125 +19,1477.909345926593,0.10017234219244434,0.0,453.1128945171565,0.48258029200223973 +20,1479.7538741610845,0.10029736387526839,0.0,453.67840926246396,0.4831825840010424 +21,1471.3194508052536,0.09972568067634624,0.0,451.0924955926728,0.48042849999910686 +22,1489.160260118828,0.10093492646701349,0.0,456.562317385791,0.4862540419999277 +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504 +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.48254937500314554 +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.48158045900345314 +26,1470.1209876523237,0.09964444913031724,0.0,450.72505823280164,0.4800371669989545 +27,1479.45489308524,0.10027709900941506,0.0,453.5867445192541,0.483084958003019 +28,1481.6974196226456,0.10042909692207444,0.0,454.2742817441834,0.48381720799807226 +29,1478.0856947176749,0.10018429507135004,0.0,453.16696137274005,0.48263787500036415 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..02566b6ba --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,289.20382575590736,0.09967962744344233,0.0,62.69848566192523,0.06742754200240597 +1,293.9195168609384,0.10130498053570948,0.0,63.720832756961265,0.06852700000308687 +2,293.63447150195356,0.10120673420333877,0.0,63.65903581390008,0.06846054200286744 +3,291.00346139953365,0.10029990627281721,0.0,63.08864104560202,0.06784712499938905 +4,290.50771376254335,0.10012903737220015,0.0,62.981164507113895,0.06773154200345743 +5,293.7504532056515,0.10124670951481556,0.0,63.684180284818986,0.0684875830047531 +6,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.06871604100160766 +7,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.06708499999513151 +8,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.06846433299506316 +9,290.6228033105725,0.10016870518516977,0.0,63.00611556147178,0.06775837500026682 +10,292.06412282992403,0.10066548351215213,0.0,63.31858912914369,0.06809441700170282 +11,290.22624120801856,0.10003202247519022,0.0,62.920142136894654,0.06766591699852142 +12,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.06674575000215555 +13,290.24715059938825,0.10003922929666414,0.0,62.92467522760175,0.06767079199926229 +14,290.5952801459097,0.10015921880029058,0.0,63.00014862538278,0.06775195800582878 +15,287.0188825965561,0.09892654501259976,0.0,62.224796812925256,0.06691812499775551 +16,294.8216615026295,0.10161592193335117,0.0,63.91641489607788,0.06873733399697812 +17,292.6999826596284,0.10088464475860354,0.0,63.45644155316163,0.06824266699550208 +18,294.47674453414845,0.10149703970616329,0.0,63.84163797517671,0.06865691699931631 +19,291.70115300347874,0.10054037902233873,0.0,63.23989840505106,0.0680097910008044 +20,291.2361453845984,0.10038010525664007,0.0,63.1390862064266,0.06790137500502169 +21,290.8948054959841,0.10026245593841362,0.0,63.06508478526217,0.06782179199944949 +22,292.993606263265,0.10098584774698932,0.0,63.52009823285628,0.06831112500367453 +23,289.21990989831363,0.09968517115061362,0.0,62.701972653735965,0.06743129200185649 +24,276.5893870013989,0.09533181996831304,0.0,59.9637147600689,0.0644864999994752 +25,294.1384413389605,0.10138043704238069,0.0,63.76829489965745,0.06857804199535167 +26,282.89311931638207,0.09750452182320155,0.0,61.33034422679377,0.06595620799635071 +27,293.29813271570947,0.10109080861065353,0.0,63.586118616101075,0.06838212499860674 +28,294.9056550815358,0.10164487192608082,0.0,63.93462444150483,0.06875691700406605 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5df637c46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..379bb3ae6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..06eb99c9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7a61639aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..505067072 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f43f8eefd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..25a559a5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6cc47410a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4944c73ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..981e876ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ba44212dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d6d36dc46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cdfab8c72 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..eca3ec5a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..7f714d8e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..87ec163b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..30194fd09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3db8ae919 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1478.1854806320387,0.10019105853677315,0.0,453.1975547813372,0.48267045799730113 +1,1472.4376515691376,0.09980147205683138,0.0,451.43532527040054,0.48079362499993294 +2,1467.3052593754642,0.09945359974077388,0.0,449.86178282743384,0.4791177500010235 +3,1469.146722041262,0.09957841364008463,0.0,450.4263576986495,0.4797190410026815 +4,1470.3858951825941,0.09966240449939637,0.0,450.80627635226955,0.480123666995496 +5,1466.8412883523577,0.09942215189573378,0.0,449.71953374170243,0.4789662499970291 +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107 +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546 +8,1478.2217224431022,0.10019351499806389,0.0,453.2086661745757,0.4826822920003906 +9,1476.0122465403242,0.10004375724951928,0.0,452.53126195865883,0.48196083399670897 +10,1472.6817615590717,0.09981801777359786,0.0,451.51016706257434,0.4808733339959872 +11,1475.1950634268462,0.09998836877342443,0.0,452.2807214184565,0.4816939999946044 +12,1475.1436376964587,0.09998488314971139,0.0,452.2649547805279,0.4816772080012015 +13,1471.505244398319,0.09973827372167274,0.0,451.14945813436634,0.48048916699917754 +14,1487.7908044971593,0.10084210509232683,0.0,456.1424553676251,0.48580687499634223 +15,1468.6795629390188,0.09954674970780272,0.0,450.2831311782943,0.47956649999832734 +16,1475.7644370380624,0.10002696078069151,0.0,452.455285931328,0.48187991700251587 +17,1467.6844997653375,0.09947930456374715,0.0,449.97805431001626,0.4792415829942911 +18,1482.7513106263857,0.10050052940238939,0.0,454.5973946634747,0.48416133399587125 +19,1477.909345926593,0.10017234219244434,0.0,453.1128945171565,0.48258029200223973 +20,1479.7538741610845,0.10029736387526839,0.0,453.67840926246396,0.4831825840010424 +21,1471.3194508052536,0.09972568067634624,0.0,451.0924955926728,0.48042849999910686 +22,1489.160260118828,0.10093492646701349,0.0,456.562317385791,0.4862540419999277 +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504 +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.48254937500314554 +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.48158045900345314 +26,1470.1209876523237,0.09964444913031724,0.0,450.72505823280164,0.4800371669989545 +27,1479.45489308524,0.10027709900941506,0.0,453.5867445192541,0.483084958003019 +28,1481.6974196226456,0.10042909692207444,0.0,454.2742817441834,0.48381720799807226 +29,1478.0856947176749,0.10018429507135004,0.0,453.16696137274005,0.48263787500036415 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..77e287cd2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,289.20382575590736,0.09967962744344233,0.0,62.69848566192523,0.06742754200240597 +1,293.9195168609384,0.10130498053570948,0.0,63.720832756961265,0.06852700000308687 +2,293.63447150195356,0.10120673420333877,0.0,63.65903581390008,0.06846054200286744 +3,291.00346139953365,0.10029990627281721,0.0,63.08864104560202,0.06784712499938905 +4,290.50771376254335,0.10012903737220015,0.0,62.981164507113895,0.06773154200345743 +5,268.94209243479787,0.09269603369765553,0.0,58.30580519582532,0.06270354199659778 +6,293.7504532056515,0.10124670951481556,0.0,63.684180284818986,0.0684875830047531 +7,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.06871604100160766 +8,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.06708499999513151 +9,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.06846433299506316 +10,290.6228033105725,0.10016870518516977,0.0,63.00611556147178,0.06775837500026682 +11,292.06412282992403,0.10066548351215213,0.0,63.31858912914369,0.06809441700170282 +12,290.22624120801856,0.10003202247519022,0.0,62.920142136894654,0.06766591699852142 +13,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.06674575000215555 +14,290.24715059938825,0.10003922929666414,0.0,62.92467522760175,0.06767079199926229 +15,290.5952801459097,0.10015921880029058,0.0,63.00014862538278,0.06775195800582878 +16,287.0188825965561,0.09892654501259976,0.0,62.224796812925256,0.06691812499775551 +17,294.8216615026295,0.10161592193335117,0.0,63.91641489607788,0.06873733399697812 +18,292.6999826596284,0.10088464475860354,0.0,63.45644155316163,0.06824266699550208 +19,294.47674453414845,0.10149703970616329,0.0,63.84163797517671,0.06865691699931631 +20,291.70115300347874,0.10054037902233873,0.0,63.23989840505106,0.0680097910008044 +21,291.2361453845984,0.10038010525664007,0.0,63.1390862064266,0.06790137500502169 +22,290.8948054959841,0.10026245593841362,0.0,63.06508478526217,0.06782179199944949 +23,292.993606263265,0.10098584774698932,0.0,63.52009823285628,0.06831112500367453 +24,289.21990989831363,0.09968517115061362,0.0,62.701972653735965,0.06743129200185649 +25,276.5893870013989,0.09533181996831304,0.0,59.9637147600689,0.0644864999994752 +26,294.1384413389605,0.10138043704238069,0.0,63.76829489965745,0.06857804199535167 +27,282.89311931638207,0.09750452182320155,0.0,61.33034422679377,0.06595620799635071 +28,293.29813271570947,0.10109080861065353,0.0,63.586118616101075,0.06838212499860674 +29,294.9056550815358,0.10164487192608082,0.0,63.93462444150483,0.06875691700406605 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7e2a438b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..65060abf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2bb912858 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fc1e25a5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..83d593b8d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..06855043b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..755457974 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..661dec718 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8f25508f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2abfe9cac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6bb6bf220 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..52fc099b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..659499ab3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..31313a80b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..12b9acde4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..82130eed6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c4ee652c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f0396b1bc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1445.9512284681282,0.09937353810602914,0.0,451.0233649505643,0.47950145800132304 +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221 +2,1445.2778876531952,0.09932726250709212,0.0,450.8133354321888,0.47927816699666437 +3,1473.4560079931223,0.10126381434938529,0.0,459.6026987270767,0.488622500000929 +4,1438.4085093783447,0.09885516192007318,0.0,448.6706282345721,0.4770001669967314 +5,1462.0207397229187,0.10047792126749647,0.0,456.035791992744,0.48483037499681814 +6,1459.873808732507,0.10033037263349953,0.0,455.36611792590986,0.4841184169999906 +7,1445.9359005314507,0.09937248468785742,0.0,451.01858383662216,0.47949637500278186 +8,1451.6571155923002,0.09976567732926099,0.0,452.8031541717392,0.4813936249993276 +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256 +10,1453.1768162644025,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993 +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.48026554100215435 +12,1459.790501679045,0.10032464732514283,0.0,455.3401326597149,0.4840907909965608 +13,1455.5734090741,0.10003482606117245,0.0,454.02473054964133,0.4826923330037971 +14,1458.6344227252055,0.10024519536735124,0.0,454.97952670728483,0.4837074160022894 +15,1454.1420362947786,0.09993645443242774,0.0,453.578254517312,0.4822176660018158 +16,1452.8549083992968,0.09984799608718709,0.0,453.17677157437976,0.48179083300055936 +17,1456.5114923274932,0.10009929618304955,0.0,454.3173389428009,0.483003417000873 +18,1445.2579097656906,0.09932588951931347,0.0,450.80710389832404,0.47927154199715005 +19,1460.9679426822058,0.10040556739775079,0.0,455.70740189592493,0.4844812500014086 +20,1450.2062685342962,0.09966596732344196,0.0,452.3506036919953,0.4809125000028871 +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235 +22,1455.721926964596,0.10004503300865454,0.0,454.07105648194675,0.48274158400454326 +23,1450.0845164884097,0.09965759986862524,0.0,452.3126266037338,0.48087212500104215 +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355 +25,1455.2424545927595,0.10001208109086132,0.0,453.92149871105596,0.4825825829975656 +26,1450.4460031843535,0.09968244317678596,0.0,452.4253820983725,0.4809919999970589 +27,1449.8539520475165,0.09964175424133027,0.0,452.24070858331766,0.48079566600063117 +28,1454.8514398281357,0.09998520845515456,0.0,453.79953277512817,0.4824529160032398 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2abc23b86 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,370.44916321321614,0.0,0.0,65.64209549207466,0.06712775000050897 +1,371.36386610958994,0.0,0.0,65.80417715086381,0.06729349999659462 +2,368.962830282296,0.0,0.0,65.3787232999547,0.06685841699800221 +3,368.91086189692436,0.0,0.0,65.36951471196507,0.0668489999952726 +4,376.83391647843223,0.0,0.0,66.77344798290869,0.06828470799518982 +5,379.53434024077234,0.0,0.0,67.25195216669212,0.06877404199622106 +6,377.5320155936468,0.0,0.0,66.8971483265304,0.06841120800527278 +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257 +8,381.6909531277366,0.0,0.0,67.63409525978926,0.06916483399982098 +9,375.57016404452764,0.0,0.0,66.54951615586617,0.06805570799770067 +10,374.0240484961872,0.0,0.0,66.27555072539892,0.06777554200380109 +11,371.35052776493495,0.0,0.0,65.80181365006399,0.06729108300351072 +12,370.73061027987507,0.0,0.0,65.69196677553322,0.06717875000322238 +13,394.8672224542054,0.0,0.0,69.96887696601637,0.07155245800095145 +14,365.1862909781526,0.0,0.0,64.70953578855121,0.06617408400052227 +15,371.5834610794553,0.0,0.0,65.84308849258868,0.06733329200505977 +16,386.614659576844,0.0,0.0,68.50655615591829,0.07005704099719878 +17,386.60155849554985,0.0,0.0,68.50423469722772,0.07005466699774843 +18,362.7040769916651,0.0,0.0,64.26969749570833,0.06572429100197041 +19,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238 +20,379.35935194717405,0.0,0.0,67.2209449478372,0.06874233300186461 +21,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073 +22,376.3324220394227,0.0,0.0,66.6845851938321,0.06819383400579682 +23,375.27032362669036,0.0,0.0,66.49638564486882,0.06800137500249548 +24,387.82208398640864,0.0,0.0,68.72050688455441,0.07027583399758441 +25,379.18068825981504,0.0,0.0,67.18928646405266,0.06870995800272794 +26,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301 +27,382.47504806500143,0.0,0.0,67.7730337157446,0.06930691700108582 +28,362.62245185062477,0.0,0.0,64.25523385039665,0.0657095000060508 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f7fc14a8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f6533ace3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..66ed5c8b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f29d0827a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..831eefe3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c62e42d0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ef8a76aea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7882aa907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b860e51e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d83869f4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3b8ea4248 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8a61447f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d2021da30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..76261a69b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8a10fc30a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..102ee7e32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6fd80e2eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4d69b317e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1445.9512284681282,0.09937353810602914,0.0,451.0233649505643,0.47950145800132304 +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221 +2,1445.2778876531952,0.09932726250709212,0.0,450.8133354321888,0.47927816699666437 +3,1473.4560079931223,0.10126381434938529,0.0,459.6026987270767,0.488622500000929 +4,1438.4085093783447,0.09885516192007318,0.0,448.6706282345721,0.4770001669967314 +5,1462.0207397229187,0.10047792126749647,0.0,456.035791992744,0.48483037499681814 +6,1459.873808732507,0.10033037263349953,0.0,455.36611792590986,0.4841184169999906 +7,1445.9359005314507,0.09937248468785742,0.0,451.01858383662216,0.47949637500278186 +8,1451.6571155923002,0.09976567732926099,0.0,452.8031541717392,0.4813936249993276 +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256 +10,1453.1768162644025,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993 +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.48026554100215435 +12,1459.790501679045,0.10032464732514283,0.0,455.3401326597149,0.4840907909965608 +13,1455.5734090741,0.10003482606117245,0.0,454.02473054964133,0.4826923330037971 +14,1458.6344227252055,0.10024519536735124,0.0,454.97952670728483,0.4837074160022894 +15,1454.1420362947786,0.09993645443242774,0.0,453.578254517312,0.4822176660018158 +16,1452.8549083992968,0.09984799608718709,0.0,453.17677157437976,0.48179083300055936 +17,1456.5114923274932,0.10009929618304955,0.0,454.3173389428009,0.483003417000873 +18,1445.2579097656906,0.09932588951931347,0.0,450.80710389832404,0.47927154199715005 +19,1460.9679426822058,0.10040556739775079,0.0,455.70740189592493,0.4844812500014086 +20,1450.2062685342962,0.09966596732344196,0.0,452.3506036919953,0.4809125000028871 +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235 +22,1455.721926964596,0.10004503300865454,0.0,454.07105648194675,0.48274158400454326 +23,1450.0845164884097,0.09965759986862524,0.0,452.3126266037338,0.48087212500104215 +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355 +25,1455.2424545927595,0.10001208109086132,0.0,453.92149871105596,0.4825825829975656 +26,1450.4460031843535,0.09968244317678596,0.0,452.4253820983725,0.4809919999970589 +27,1449.8539520475165,0.09964175424133027,0.0,452.24070858331766,0.48079566600063117 +28,1454.8514398281357,0.09998520845515456,0.0,453.79953277512817,0.4824529160032398 +29,1481.6993373073888,0.10183034023463224,0.0,462.1739708782508,0.4913561249995837 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2a37db31e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,370.44916321321614,0.0,0.0,65.64209549207466,0.06712775000050897 +1,371.36386610958994,0.0,0.0,65.80417715086381,0.06729349999659462 +2,368.962830282296,0.0,0.0,65.3787232999547,0.06685841699800221 +3,368.91086189692436,0.0,0.0,65.36951471196507,0.0668489999952726 +4,376.83391647843223,0.0,0.0,66.77344798290869,0.06828470799518982 +5,379.53434024077234,0.0,0.0,67.25195216669212,0.06877404199622106 +6,377.5320155936468,0.0,0.0,66.8971483265304,0.06841120800527278 +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257 +8,381.6909531277366,0.0,0.0,67.63409525978926,0.06916483399982098 +9,336.48949708535804,0.0,0.0,59.62457981594719,0.060974042004090734 +10,375.57016404452764,0.0,0.0,66.54951615586617,0.06805570799770067 +11,374.0240484961872,0.0,0.0,66.27555072539892,0.06777554200380109 +12,371.35052776493495,0.0,0.0,65.80181365006399,0.06729108300351072 +13,370.73061027987507,0.0,0.0,65.69196677553322,0.06717875000322238 +14,394.8672224542054,0.0,0.0,69.96887696601637,0.07155245800095145 +15,365.1862909781526,0.0,0.0,64.70953578855121,0.06617408400052227 +16,371.5834610794553,0.0,0.0,65.84308849258868,0.06733329200505977 +17,386.614659576844,0.0,0.0,68.50655615591829,0.07005704099719878 +18,386.60155849554985,0.0,0.0,68.50423469722772,0.07005466699774843 +19,362.7040769916651,0.0,0.0,64.26969749570833,0.06572429100197041 +20,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238 +21,379.35935194717405,0.0,0.0,67.2209449478372,0.06874233300186461 +22,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073 +23,376.3324220394227,0.0,0.0,66.6845851938321,0.06819383400579682 +24,375.27032362669036,0.0,0.0,66.49638564486882,0.06800137500249548 +25,387.82208398640864,0.0,0.0,68.72050688455441,0.07027583399758441 +26,379.18068825981504,0.0,0.0,67.18928646405266,0.06870995800272794 +27,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301 +28,382.47504806500143,0.0,0.0,67.7730337157446,0.06930691700108582 +29,362.62245185062477,0.0,0.0,64.25523385039665,0.0657095000060508 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a4de9f9f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..caf2ab23b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..639f0349f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a925241f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..075bc969a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c8259235e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fe5d07f7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..633f3dc47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fe3428118 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..160888675 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b70d0bfc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..74cf50cef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..de64a051a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..aee0e6665 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..8e66bbca2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a1ad3c654 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1f60af3e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1fe5f488a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1445.0937116123694,0.09948553445251182,0.0,451.26638427659367,0.48048012499930337 +1,1451.89089555387,0.09995347744593731,0.0,453.38897369477166,0.48274012500041863 +2,1450.1180395946537,0.09983142756004225,0.0,452.83535541235165,0.482150666997768 +3,1449.4058631584062,0.09978239873041325,0.0,452.61296064115453,0.4819138750026468 +4,1446.5463840973528,0.09958554173743163,0.0,451.7200173209899,0.4809631249954691 +5,1445.161635344861,0.0994902105705896,0.0,451.28759514819444,0.4805027090042131 +6,1451.1624299232567,0.09990332720861395,0.0,453.1614922182729,0.4824979170007282 +7,1461.9935620683018,0.10064898194471637,0.0,456.5437821012335,0.4860991669993382 +8,1443.7212398797321,0.09939104848060207,0.0,450.837795908011,0.48002379100216785 +9,1457.922268440679,0.10036869920650887,0.0,455.2724196007243,0.48474549999809824 +10,1463.2726687745692,0.10073704032686297,0.0,456.94321492265044,0.4865244579996215 +11,1434.2653374502413,0.09874006958603676,0.0,447.8849556422627,0.4768797920041834 +12,1440.3483418552953,0.09915884584909208,0.0,449.7845247714817,0.4789023339981213 +13,1458.1363075618142,0.10038343444214706,0.0,455.3392586295791,0.4848166660012794 +14,1443.7793888920285,0.09939505167120466,0.0,450.8559543805843,0.48004312500415836 +15,1447.6267393486346,0.09965991734277035,0.0,452.0573850668063,0.48132233299838845 +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.48353912500169827 +17,1450.7958782332366,0.09987809245013907,0.0,453.0470273538308,0.48237604199675843 +18,1447.8402822026578,0.09967461841356619,0.0,452.12406912393624,0.4813933339974028 +19,1442.8031718956472,0.0993278453240687,0.0,450.55110638997564,0.4797185419956804 +20,1471.4015954886797,0.10129666536168253,0.0,459.4816740805919,0.4892272500001127 +21,1448.4089689054954,0.09971376888534059,0.0,452.30165566390485,0.4815824170000269 +22,1437.4115403386227,0.09895666569557032,0.0,448.867435595107,0.4779258749986184 +23,1446.9099281828417,0.09961056944141464,0.0,451.83354298625676,0.48108399999910034 +24,1445.926441829572,0.09954286264517329,0.0,451.526424958506,0.4807569999975385 +25,1444.6335482723644,0.09945385512580243,0.0,451.12268685063987,0.4803271249984391 +26,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.48129470799904084 +27,1448.532656600787,0.09972228399849373,0.0,452.34028021716756,0.48162354200030677 +28,1441.3934810706207,0.09923079705376373,0.0,450.1108954358723,0.479249832998903 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d2fabd76b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,318.0434962832716,0.10475740984297485,0.0,66.0670064743028,0.07047604199760826 +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633 +2,311.3660715806597,0.10255799459178515,0.0,64.67990858921917,0.0689963750046445 +3,307.96812656956257,0.10143877686744485,0.0,63.97405527773522,0.0682434159971308 +4,307.9854286365557,0.10144447583549265,0.0,63.97764942691737,0.06824725000478793 +5,303.54277752976253,0.09998115201902588,0.0,63.05477987333232,0.0672627919993829 +6,295.5978232288647,0.09736423690015306,0.0,61.40437873836319,0.0655022499995539 +7,309.92668146656416,0.10208388717607517,0.0,64.3809048457114,0.06867741700261831 +8,281.20051954266887,0.09262204201010174,0.0,58.41363449437083,0.06231191600090824 +9,299.98387491674634,0.09880891795676758,0.0,62.31549092473475,0.0664741660002619 +10,305.7382448097462,0.10070429670940256,0.0,63.51084312472989,0.0677492910035653 +11,294.734003229727,0.09707971120873748,0.0,61.224937868977115,0.0653108339975006 +12,298.89347681440523,0.09844976179657616,0.0,62.08898310637403,0.06623254199803341 +13,308.355851863169,0.10156648612093841,0.0,64.05459724693849,0.06832933300029254 +14,310.24746403189397,0.10218954678257378,0.0,64.44754083754319,0.06874850000167498 +15,311.1235091390795,0.10247809918942011,0.0,64.62952122212762,0.06894262499554316 +16,308.5540400267205,0.10163176548969713,0.0,64.09576676883565,0.06837325000378769 +17,305.98663773748234,0.10078611256175307,0.0,63.562441655612275,0.0678043330044602 +18,292.8154993760287,0.09644779294335597,0.0,60.82640808294316,0.06488570800138405 +19,306.57198705890426,0.10097891536854554,0.0,63.68403595909606,0.06793404200288933 +20,299.9385619885642,0.09879399274985645,0.0,62.3060780942428,0.06646412499685539 +21,306.6251973620329,0.10099644181885142,0.0,63.69508930708896,0.06794583300506929 +22,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.06788475000212202 +23,304.5282532805252,0.10030574877487654,0.0,63.25949222735547,0.0674811659991974 +24,312.89270739925354,0.10306083906431276,0.0,64.99703583655992,0.06933466599730309 +25,306.72541736758814,0.10102945236086565,0.0,63.715907955585934,0.06796804100304144 +26,306.35518366378886,0.10090750450058922,0.0,63.63899950503827,0.06788600000436418 +27,303.16651925294775,0.09985721978028582,0.0,62.97661994143359,0.06717941600072663 +28,307.1612805694235,0.10117301731535688,0.0,63.80644958688507,0.06806462500389898 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..25b72fe28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4e40384e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a2d02e750 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9fa73d7bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..aaed2e11a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..662192af2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..daeb743db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0491f701f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8e268604e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c59a37ed3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f259089e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d7910ac65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..65a6301f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b1fe76ef2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6a918f7d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b0624d6ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..10090dd80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f9ac46aa8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1445.0937116123694,0.09948553445251182,0.0,451.26638427659367,0.48048012499930337 +1,1451.89089555387,0.09995347744593731,0.0,453.38897369477166,0.48274012500041863 +2,1450.1180395946537,0.09983142756004225,0.0,452.83535541235165,0.482150666997768 +3,1449.4058631584062,0.09978239873041325,0.0,452.61296064115453,0.4819138750026468 +4,1446.5463840973528,0.09958554173743163,0.0,451.7200173209899,0.4809631249954691 +5,1445.161635344861,0.0994902105705896,0.0,451.28759514819444,0.4805027090042131 +6,1451.1624299232567,0.09990332720861395,0.0,453.1614922182729,0.4824979170007282 +7,1461.9935620683018,0.10064898194471637,0.0,456.5437821012335,0.4860991669993382 +8,1443.7212398797321,0.09939104848060207,0.0,450.837795908011,0.48002379100216785 +9,1457.922268440679,0.10036869920650887,0.0,455.2724196007243,0.48474549999809824 +10,1463.2726687745692,0.10073704032686297,0.0,456.94321492265044,0.4865244579996215 +11,1434.2653374502413,0.09874006958603676,0.0,447.8849556422627,0.4768797920041834 +12,1440.3483418552953,0.09915884584909208,0.0,449.7845247714817,0.4789023339981213 +13,1458.1363075618142,0.10038343444214706,0.0,455.3392586295791,0.4848166660012794 +14,1443.7793888920285,0.09939505167120466,0.0,450.8559543805843,0.48004312500415836 +15,1447.6267393486346,0.09965991734277035,0.0,452.0573850668063,0.48132233299838845 +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.48353912500169827 +17,1450.7958782332366,0.09987809245013907,0.0,453.0470273538308,0.48237604199675843 +18,1447.8402822026578,0.09967461841356619,0.0,452.12406912393624,0.4813933339974028 +19,1442.8031718956472,0.0993278453240687,0.0,450.55110638997564,0.4797185419956804 +20,1471.4015954886797,0.10129666536168253,0.0,459.4816740805919,0.4892272500001127 +21,1448.4089689054954,0.09971376888534059,0.0,452.30165566390485,0.4815824170000269 +22,1437.4115403386227,0.09895666569557032,0.0,448.867435595107,0.4779258749986184 +23,1446.9099281828417,0.09961056944141464,0.0,451.83354298625676,0.48108399999910034 +24,1445.926441829572,0.09954286264517329,0.0,451.526424958506,0.4807569999975385 +25,1558.660068355674,0.10730385765580518,0.0,486.7302983267323,0.5182398750039283 +26,1444.6335482723644,0.09945385512580243,0.0,451.12268685063987,0.4803271249984391 +27,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.48129470799904084 +28,1448.532656600787,0.09972228399849373,0.0,452.34028021716756,0.48162354200030677 +29,1441.3934810706207,0.09923079705376373,0.0,450.1108954358723,0.479249832998903 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..119a02fe0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,318.0434962832716,0.10475740984297485,0.0,66.0670064743028,0.07047604199760826 +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633 +2,311.3660715806597,0.10255799459178515,0.0,64.67990858921917,0.0689963750046445 +3,307.96812656956257,0.10143877686744485,0.0,63.97405527773522,0.0682434159971308 +4,307.9854286365557,0.10144447583549265,0.0,63.97764942691737,0.06824725000478793 +5,303.54277752976253,0.09998115201902588,0.0,63.05477987333232,0.0672627919993829 +6,295.5978232288647,0.09736423690015306,0.0,61.40437873836319,0.0655022499995539 +7,309.92668146656416,0.10208388717607517,0.0,64.3809048457114,0.06867741700261831 +8,281.20051954266887,0.09262204201010174,0.0,58.41363449437083,0.06231191600090824 +9,299.98387491674634,0.09880891795676758,0.0,62.31549092473475,0.0664741660002619 +10,305.7382448097462,0.10070429670940256,0.0,63.51084312472989,0.0677492910035653 +11,294.734003229727,0.09707971120873748,0.0,61.224937868977115,0.0653108339975006 +12,298.89347681440523,0.09844976179657616,0.0,62.08898310637403,0.06623254199803341 +13,308.355851863169,0.10156648612093841,0.0,64.05459724693849,0.06832933300029254 +14,310.24746403189397,0.10218954678257378,0.0,64.44754083754319,0.06874850000167498 +15,311.1235091390795,0.10247809918942011,0.0,64.62952122212762,0.06894262499554316 +16,308.5540400267205,0.10163176548969713,0.0,64.09576676883565,0.06837325000378769 +17,305.98663773748234,0.10078611256175307,0.0,63.562441655612275,0.0678043330044602 +18,292.8154993760287,0.09644779294335597,0.0,60.82640808294316,0.06488570800138405 +19,275.3126478356244,0.09068269032793952,0.0,57.190550033487185,0.061007208001683466 +20,306.57198705890426,0.10097891536854554,0.0,63.68403595909606,0.06793404200288933 +21,299.9385619885642,0.09879399274985645,0.0,62.3060780942428,0.06646412499685539 +22,306.6251973620329,0.10099644181885142,0.0,63.69508930708896,0.06794583300506929 +23,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.06788475000212202 +24,304.5282532805252,0.10030574877487654,0.0,63.25949222735547,0.0674811659991974 +25,312.89270739925354,0.10306083906431276,0.0,64.99703583655992,0.06933466599730309 +26,306.72541736758814,0.10102945236086565,0.0,63.715907955585934,0.06796804100304144 +27,306.35518366378886,0.10090750450058922,0.0,63.63899950503827,0.06788600000436418 +28,303.16651925294775,0.09985721978028582,0.0,62.97661994143359,0.06717941600072663 +29,307.1612805694235,0.10117301731535688,0.0,63.80644958688507,0.06806462500389898 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c4b8a916f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..10b0c04d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..892b48f62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a6f7fea3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ab069fb81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..24ba19ffc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..287623c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..197d21bfd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..70c08ec79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..30b1adec5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..df9c8ccf5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fda785ff2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..75f4a5686 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6242190b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f305c8578 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f1f45f8f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6237ca0d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..19e277c95 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.48508508300437825 +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073 +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.48357995900005335 +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713 +4,1424.9465914698055,2.9337523512726174,0.0,449.72116099339684,0.47674520799773745 +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784 +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895 +7,1442.0672958435393,2.9690013262254786,0.0,455.12455161454164,0.48247329199512023 +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.47942895800224505 +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.48150579199864296 +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.48181220799597213 +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.48556574999383884 +12,1443.4372101016247,2.97182177521617,0.0,455.55690426150795,0.4829316250034026 +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.47980233400448924 +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.48162008300278103 +15,1430.9403462200441,2.946092597704819,0.0,451.6128237133354,0.47875054200267186 +16,1433.8790624545059,2.952142975813154,0.0,452.54029909009955,0.4797337499985588 +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338 +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.48197612499643583 +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.48266666699782945 +20,1445.4668027829039,2.9760004036198398,0.0,456.19745513017386,0.48361066700454103 +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073 +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602 +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814 +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204 +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738 +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832 +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.48257541700149886 +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.48349820900330087 +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.48347354100405937 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..92e4c5a0e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,310.5645000365186,0.0,0.0,62.906193325953055,0.06603570799779845 +1,288.3742824692979,0.0,0.0,58.41146802391626,0.061317375002545305 +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334 +3,321.1442400366122,0.0,0.0,65.04916578322343,0.06828529100312153 +4,320.22265380094257,0.0,0.0,64.86249447371847,0.06808933299907949 +5,319.2936180922495,0.0,0.0,64.67431424097813,0.06789179100451292 +6,321.08878720952856,0.0,0.0,65.03793357136217,0.06827350000094157 +7,320.00827793597637,0.0,0.0,64.81907170774105,0.06804374999774154 +8,320.43507321341815,0.0,0.0,64.90552095171516,0.06813449999754084 +9,317.3079830296693,0.0,0.0,64.2721152030753,0.06746958300209371 +10,320.68334814658476,0.0,0.0,64.95581012173277,0.06818729099904886 +11,325.38888014404125,0.0,0.0,65.90893614063914,0.06918783400033135 +12,295.5038000069898,0.0,0.0,59.85558288087539,0.06283333300234517 +13,298.2466145543028,0.0,0.0,60.41115192418272,0.06341654100106098 +14,342.3866146636323,0.0,0.0,69.35190136579169,0.07280208299926016 +15,299.69944448734907,0.0,0.0,60.70542896044151,0.06372545799968066 +16,292.9898605966174,0.0,0.0,59.34637349429057,0.06229879100283142 +17,323.37110492136594,0.0,0.0,65.50022697320047,0.06875879199651536 +18,316.76831626965384,0.0,0.0,64.16280334826533,0.06735483300144551 +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589 +20,319.69611777139016,0.0,0.0,64.75584230560457,0.06797737500164658 +21,322.2084863736894,0.0,0.0,65.26473351816657,0.06851158299832605 +22,322.89276972182176,0.0,0.0,65.40333809332657,0.06865708300028928 +23,295.41542632084173,0.0,0.0,59.83768240549876,0.06281454199779546 +24,322.6825089599613,0.0,0.0,65.36074885942217,0.06861237499833805 +25,322.5780652279843,0.0,0.0,65.33959332620877,0.06859016700036591 +26,321.6707807541225,0.0,0.0,65.15581890090364,0.06839724999736063 +27,318.3269632325836,0.0,0.0,64.4785140852151,0.06768625000404427 +28,328.9750938995778,0.0,0.0,66.63533937020159,0.06995037500018952 +29,307.251251832783,0.0,0.0,62.235080458846376,0.06533120799576864 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0fde48af9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5bdcecf11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e56379f68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d8e9c58af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a3ebdd581 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ea5630b73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..39145c595 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1fd1b0ae1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..db18aece0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..90034ed08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4420d1f43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7006967c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7fdf16f60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d0e4762f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6f6895c9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..811e82cb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..276211b25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..19e277c95 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.48508508300437825 +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073 +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.48357995900005335 +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713 +4,1424.9465914698055,2.9337523512726174,0.0,449.72116099339684,0.47674520799773745 +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784 +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895 +7,1442.0672958435393,2.9690013262254786,0.0,455.12455161454164,0.48247329199512023 +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.47942895800224505 +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.48150579199864296 +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.48181220799597213 +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.48556574999383884 +12,1443.4372101016247,2.97182177521617,0.0,455.55690426150795,0.4829316250034026 +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.47980233400448924 +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.48162008300278103 +15,1430.9403462200441,2.946092597704819,0.0,451.6128237133354,0.47875054200267186 +16,1433.8790624545059,2.952142975813154,0.0,452.54029909009955,0.4797337499985588 +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338 +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.48197612499643583 +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.48266666699782945 +20,1445.4668027829039,2.9760004036198398,0.0,456.19745513017386,0.48361066700454103 +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073 +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602 +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814 +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204 +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738 +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832 +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.48257541700149886 +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.48349820900330087 +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.48347354100405937 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..92e4c5a0e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,310.5645000365186,0.0,0.0,62.906193325953055,0.06603570799779845 +1,288.3742824692979,0.0,0.0,58.41146802391626,0.061317375002545305 +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334 +3,321.1442400366122,0.0,0.0,65.04916578322343,0.06828529100312153 +4,320.22265380094257,0.0,0.0,64.86249447371847,0.06808933299907949 +5,319.2936180922495,0.0,0.0,64.67431424097813,0.06789179100451292 +6,321.08878720952856,0.0,0.0,65.03793357136217,0.06827350000094157 +7,320.00827793597637,0.0,0.0,64.81907170774105,0.06804374999774154 +8,320.43507321341815,0.0,0.0,64.90552095171516,0.06813449999754084 +9,317.3079830296693,0.0,0.0,64.2721152030753,0.06746958300209371 +10,320.68334814658476,0.0,0.0,64.95581012173277,0.06818729099904886 +11,325.38888014404125,0.0,0.0,65.90893614063914,0.06918783400033135 +12,295.5038000069898,0.0,0.0,59.85558288087539,0.06283333300234517 +13,298.2466145543028,0.0,0.0,60.41115192418272,0.06341654100106098 +14,342.3866146636323,0.0,0.0,69.35190136579169,0.07280208299926016 +15,299.69944448734907,0.0,0.0,60.70542896044151,0.06372545799968066 +16,292.9898605966174,0.0,0.0,59.34637349429057,0.06229879100283142 +17,323.37110492136594,0.0,0.0,65.50022697320047,0.06875879199651536 +18,316.76831626965384,0.0,0.0,64.16280334826533,0.06735483300144551 +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589 +20,319.69611777139016,0.0,0.0,64.75584230560457,0.06797737500164658 +21,322.2084863736894,0.0,0.0,65.26473351816657,0.06851158299832605 +22,322.89276972182176,0.0,0.0,65.40333809332657,0.06865708300028928 +23,295.41542632084173,0.0,0.0,59.83768240549876,0.06281454199779546 +24,322.6825089599613,0.0,0.0,65.36074885942217,0.06861237499833805 +25,322.5780652279843,0.0,0.0,65.33959332620877,0.06859016700036591 +26,321.6707807541225,0.0,0.0,65.15581890090364,0.06839724999736063 +27,318.3269632325836,0.0,0.0,64.4785140852151,0.06768625000404427 +28,328.9750938995778,0.0,0.0,66.63533937020159,0.06995037500018952 +29,307.251251832783,0.0,0.0,62.235080458846376,0.06533120799576864 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0fde48af9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5bdcecf11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e56379f68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d8e9c58af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a3ebdd581 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ea5630b73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..39145c595 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1fd1b0ae1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..db18aece0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..90034ed08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4420d1f43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7006967c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7fdf16f60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d0e4762f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6f6895c9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..811e82cb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..276211b25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ca6cc0356 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.48650075000477955 +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.48386500000196975 +2,1480.717294074354,2.098418389982776,0.0,450.69363864852284,0.48115679200418526 +3,1488.9251312995693,2.1100502366859266,0.0,453.19190083487734,0.48382391600171104 +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666 +5,1479.7277771261827,2.097016082756709,0.0,450.39245421874654,0.48083525000402005 +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296 +7,1480.7792238858788,2.0985061546465045,0.0,450.71248854796596,0.4811769160005497 +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014 +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.47401812500174856 +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322 +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.47937562500010245 +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.48625650000030873 +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238 +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.48349975000019185 +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.48068783299822826 +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534 +17,1477.318804252413,2.093602174511349,0.0,449.65922259227085,0.48005245799868135 +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.48245387499628123 +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.47600400000374066 +20,1479.9037034992361,2.0972653991778625,0.0,450.44600184564536,0.48089241700654384 +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.48176041699480265 +22,1503.0404470395401,2.130053945866405,0.0,457.48825303997336,0.488410665995616 +23,1480.9454071466057,2.0987416634852356,0.0,450.76307061299565,0.48123091699380893 +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.48078529199847253 +25,1473.9158306771963,2.088779604828779,0.0,448.62344179266995,0.47894666700449307 +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397 +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.48022554199997103 +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355 +29,1510.0737441282997,2.1400212772485183,0.0,459.6290143245985,0.49069612499442883 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..68c3f8f53 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,305.721962186582,0.0,0.0,63.66560385029554,0.06872870799998054 +1,307.5698377636455,0.0,0.0,64.05041792649908,0.06914412500191247 +2,304.5750584918347,0.0,0.0,63.426764887723195,0.06847087500500493 +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397 +4,302.7877946617043,0.0,0.0,63.05457301059663,0.06806908400176326 +5,302.41839922506983,0.0,0.0,62.97764761287684,0.06798604099458316 +6,304.01921499319684,0.0,0.0,63.311012287766246,0.06834591700317105 +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322 +8,306.7875031062147,0.0,0.0,63.88749927969296,0.06896825000148965 +9,304.17471662540027,0.0,0.0,63.34339499669278,0.06838087499636458 +10,304.8949627430861,0.0,0.0,63.49338390712414,0.06854279200342717 +11,310.9972086145361,0.0,0.0,64.76415675402785,0.06991462499718182 +12,303.45410134996797,0.0,0.0,63.193329210361924,0.06821887499972945 +13,303.2832176918836,0.0,0.0,63.15774324459655,0.06818045900581637 +14,305.3787091124342,0.0,0.0,63.594122514500135,0.06865154200204415 +15,299.556141985043,0.0,0.0,62.381591856012456,0.06734258299547946 +16,310.09439777626403,0.0,0.0,64.57614933457363,0.06971166600123979 +17,309.0629659837681,0.0,0.0,64.36135701991627,0.06947979200049303 +18,303.34771274786874,0.0,0.0,63.171174130147875,0.06819495800300501 +19,302.234170867233,0.0,0.0,62.93928265680976,0.06794462500693044 +20,304.56560596920565,0.0,0.0,63.42479643064285,0.06846875000337604 +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217 +22,305.56497926280053,0.0,0.0,63.63291266721779,0.06869341700075893 +23,307.9737025847265,0.0,0.0,64.13452146137145,0.06923491699853912 +24,306.6599897546909,0.0,0.0,63.86094503914815,0.06893958399450639 +25,302.4908700108722,0.0,0.0,62.992739418210725,0.06800233299873071 +26,300.3927852296424,0.0,0.0,62.555820089384135,0.06753066699457122 +27,307.767415320001,0.0,0.0,64.09156280972131,0.06918854199466296 +28,302.781304689866,0.0,0.0,63.05322149507873,0.06806762500491459 +29,302.1294503364202,0.0,0.0,62.91747494701346,0.06792108300578548 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..183314f2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3295dffbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2f3fbe8b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..64b787cb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bed4eed12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..663cbaf8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..31ffb1355 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ae0c615dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..749878c8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b9a6a6527 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ea81e48ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aa7f9edb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4a8e179f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4334ef6d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..13e3dc109 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f7556fa41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..838f0f999 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ca6cc0356 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.48650075000477955 +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.48386500000196975 +2,1480.717294074354,2.098418389982776,0.0,450.69363864852284,0.48115679200418526 +3,1488.9251312995693,2.1100502366859266,0.0,453.19190083487734,0.48382391600171104 +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666 +5,1479.7277771261827,2.097016082756709,0.0,450.39245421874654,0.48083525000402005 +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296 +7,1480.7792238858788,2.0985061546465045,0.0,450.71248854796596,0.4811769160005497 +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014 +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.47401812500174856 +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322 +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.47937562500010245 +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.48625650000030873 +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238 +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.48349975000019185 +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.48068783299822826 +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534 +17,1477.318804252413,2.093602174511349,0.0,449.65922259227085,0.48005245799868135 +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.48245387499628123 +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.47600400000374066 +20,1479.9037034992361,2.0972653991778625,0.0,450.44600184564536,0.48089241700654384 +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.48176041699480265 +22,1503.0404470395401,2.130053945866405,0.0,457.48825303997336,0.488410665995616 +23,1480.9454071466057,2.0987416634852356,0.0,450.76307061299565,0.48123091699380893 +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.48078529199847253 +25,1473.9158306771963,2.088779604828779,0.0,448.62344179266995,0.47894666700449307 +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397 +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.48022554199997103 +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355 +29,1510.0737441282997,2.1400212772485183,0.0,459.6290143245985,0.49069612499442883 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..68c3f8f53 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,305.721962186582,0.0,0.0,63.66560385029554,0.06872870799998054 +1,307.5698377636455,0.0,0.0,64.05041792649908,0.06914412500191247 +2,304.5750584918347,0.0,0.0,63.426764887723195,0.06847087500500493 +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397 +4,302.7877946617043,0.0,0.0,63.05457301059663,0.06806908400176326 +5,302.41839922506983,0.0,0.0,62.97764761287684,0.06798604099458316 +6,304.01921499319684,0.0,0.0,63.311012287766246,0.06834591700317105 +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322 +8,306.7875031062147,0.0,0.0,63.88749927969296,0.06896825000148965 +9,304.17471662540027,0.0,0.0,63.34339499669278,0.06838087499636458 +10,304.8949627430861,0.0,0.0,63.49338390712414,0.06854279200342717 +11,310.9972086145361,0.0,0.0,64.76415675402785,0.06991462499718182 +12,303.45410134996797,0.0,0.0,63.193329210361924,0.06821887499972945 +13,303.2832176918836,0.0,0.0,63.15774324459655,0.06818045900581637 +14,305.3787091124342,0.0,0.0,63.594122514500135,0.06865154200204415 +15,299.556141985043,0.0,0.0,62.381591856012456,0.06734258299547946 +16,310.09439777626403,0.0,0.0,64.57614933457363,0.06971166600123979 +17,309.0629659837681,0.0,0.0,64.36135701991627,0.06947979200049303 +18,303.34771274786874,0.0,0.0,63.171174130147875,0.06819495800300501 +19,302.234170867233,0.0,0.0,62.93928265680976,0.06794462500693044 +20,304.56560596920565,0.0,0.0,63.42479643064285,0.06846875000337604 +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217 +22,305.56497926280053,0.0,0.0,63.63291266721779,0.06869341700075893 +23,307.9737025847265,0.0,0.0,64.13452146137145,0.06923491699853912 +24,306.6599897546909,0.0,0.0,63.86094503914815,0.06893958399450639 +25,302.4908700108722,0.0,0.0,62.992739418210725,0.06800233299873071 +26,300.3927852296424,0.0,0.0,62.555820089384135,0.06753066699457122 +27,307.767415320001,0.0,0.0,64.09156280972131,0.06918854199466296 +28,302.781304689866,0.0,0.0,63.05322149507873,0.06806762500491459 +29,302.1294503364202,0.0,0.0,62.91747494701346,0.06792108300578548 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..183314f2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3295dffbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2f3fbe8b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..64b787cb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bed4eed12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..663cbaf8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..31ffb1355 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ae0c615dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..749878c8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b9a6a6527 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ea81e48ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aa7f9edb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4a8e179f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4334ef6d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..13e3dc109 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f7556fa41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..838f0f999 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d09cfaec8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345 +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269 +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.64738792491045,0.49443004200293217 +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.49679145800473634 +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.49874483400344616 +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246 +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705 +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.49871774999337504 +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657 +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015 +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.49562575000163633 +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514 +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.49247037500026636 +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.49871675000031246 +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936 +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026 +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889 +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749 +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826 +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.49568216600164305 +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.49908720800158335 +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322 +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656 +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.60362262103956,0.49438749999535503 +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963 +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746 +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637 +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.49971662500320235 +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594 +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..0813a1244 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,478.8738629620707,0.34311478120043276,14.220201487529048,87.79926012273296,0.08649062499898719 +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.08649570800480433 +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.08809295800165273 +3,399.3710335699146,0.28615072861469876,11.859357974809182,73.22279199996125,0.07213141700049164 +4,491.18082679972747,0.35193276341036117,14.585657861340525,90.05568379267353,0.08871341700432822 +5,483.7304803199704,0.34659456435631986,14.364419167211922,88.68969796806718,0.08736779099854175 +6,483.51801446922707,0.34644233183847173,14.358109975083329,88.65074335822227,0.08732941700145602 +7,485.3377441423682,0.34774617445118333,14.412147007810153,88.98438219567502,0.08765808300086064 +8,499.413915114863,0.35783179970016454,14.830140143129041,91.56518163438655,0.09020041600160766 +9,473.2155736942138,0.3390605973447913,14.052178089956353,86.76183952056161,0.08546866699907696 +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.07073550000495743 +11,394.04540115046467,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108 +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425 +13,394.9993326892937,0.2830183897940962,11.729539932577545,72.42126129953374,0.07134183299785946 +14,378.78252964338554,0.27139899425129127,11.24798053952574,69.44798708452487,0.06841287499992177 +15,384.47957592306403,0.2754809476401223,11.417154829973958,70.49251360168908,0.06944183300220175 +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.07052370799647179 +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.07279399999970337 +18,393.9042149535417,0.28223373414392766,11.697020315076115,72.22047663705172,0.07114404100138927 +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.07002979200478876 +20,398.0775187183235,0.2852239207439624,11.820946937499775,72.98563216370505,0.07189779199688928 +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.07066454100277042 +22,389.63033672032196,0.27917148558895766,11.57010712496458,71.43688125681884,0.07037212499562884 +23,388.1340397821256,0.27809938365091397,11.525674455754546,71.16254228311722,0.07010187500418397 +24,386.7157163168241,0.27708314997622935,11.483557215681506,70.90249937725069,0.06984570799977519 +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.07114312500198139 +26,388.7795265014115,0.27856187712066743,11.544842240667661,71.28088922321079,0.07021845800045412 +27,378.82221127416574,0.27142742627716676,11.249158889042578,69.455262524035,0.06842004200007068 +28,392.96851579515817,0.28156330245652605,11.6692346462538,72.0489206174866,0.07097504199919058 +29,375.2639478299834,0.26887791819678775,11.143495943044647,68.80287173413357,0.06777737499942305 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a3bd74084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..08915cd5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..837da545e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..233ffec96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2ee65a9f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4b6d80616 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..25c35fe83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2be2ec7a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0c11a832d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bb3ffb4c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..eec2ae87c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..045331821 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..98da92907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e139f2e08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bb4fdbf66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..00c2c9b06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..651e7dabb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1401ca729 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e65034bb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f040ba627 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d09cfaec8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345 +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269 +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.64738792491045,0.49443004200293217 +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.49679145800473634 +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.49874483400344616 +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246 +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705 +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.49871774999337504 +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657 +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015 +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.49562575000163633 +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514 +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.49247037500026636 +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.49871675000031246 +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936 +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026 +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889 +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749 +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826 +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.49568216600164305 +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.49908720800158335 +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322 +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656 +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.60362262103956,0.49438749999535503 +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963 +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746 +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637 +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.49971662500320235 +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594 +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0813a1244 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,478.8738629620707,0.34311478120043276,14.220201487529048,87.79926012273296,0.08649062499898719 +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.08649570800480433 +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.08809295800165273 +3,399.3710335699146,0.28615072861469876,11.859357974809182,73.22279199996125,0.07213141700049164 +4,491.18082679972747,0.35193276341036117,14.585657861340525,90.05568379267353,0.08871341700432822 +5,483.7304803199704,0.34659456435631986,14.364419167211922,88.68969796806718,0.08736779099854175 +6,483.51801446922707,0.34644233183847173,14.358109975083329,88.65074335822227,0.08732941700145602 +7,485.3377441423682,0.34774617445118333,14.412147007810153,88.98438219567502,0.08765808300086064 +8,499.413915114863,0.35783179970016454,14.830140143129041,91.56518163438655,0.09020041600160766 +9,473.2155736942138,0.3390605973447913,14.052178089956353,86.76183952056161,0.08546866699907696 +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.07073550000495743 +11,394.04540115046467,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108 +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425 +13,394.9993326892937,0.2830183897940962,11.729539932577545,72.42126129953374,0.07134183299785946 +14,378.78252964338554,0.27139899425129127,11.24798053952574,69.44798708452487,0.06841287499992177 +15,384.47957592306403,0.2754809476401223,11.417154829973958,70.49251360168908,0.06944183300220175 +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.07052370799647179 +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.07279399999970337 +18,393.9042149535417,0.28223373414392766,11.697020315076115,72.22047663705172,0.07114404100138927 +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.07002979200478876 +20,398.0775187183235,0.2852239207439624,11.820946937499775,72.98563216370505,0.07189779199688928 +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.07066454100277042 +22,389.63033672032196,0.27917148558895766,11.57010712496458,71.43688125681884,0.07037212499562884 +23,388.1340397821256,0.27809938365091397,11.525674455754546,71.16254228311722,0.07010187500418397 +24,386.7157163168241,0.27708314997622935,11.483557215681506,70.90249937725069,0.06984570799977519 +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.07114312500198139 +26,388.7795265014115,0.27856187712066743,11.544842240667661,71.28088922321079,0.07021845800045412 +27,378.82221127416574,0.27142742627716676,11.249158889042578,69.455262524035,0.06842004200007068 +28,392.96851579515817,0.28156330245652605,11.6692346462538,72.0489206174866,0.07097504199919058 +29,375.2639478299834,0.26887791819678775,11.143495943044647,68.80287173413357,0.06777737499942305 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a3bd74084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..08915cd5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..837da545e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..233ffec96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2ee65a9f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4b6d80616 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..25c35fe83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2be2ec7a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0c11a832d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bb3ffb4c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..eec2ae87c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..045331821 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..98da92907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e139f2e08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bb4fdbf66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..00c2c9b06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..651e7dabb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1401ca729 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e65034bb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f040ba627 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..9eb5c03d3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201 +1,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.49630120799702127 +2,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.49112237499502953 +3,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304 +4,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217 +5,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269 +6,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.49483054099982837 +7,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823 +8,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474 +9,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459 +10,2305.401423920151,3.8313967910576667,84.2240964155981,517.0719843236086,0.4973134169995319 +11,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.49507791699579684 +12,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218 +13,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.49461300000257324 +14,2299.0294440458956,3.8208070590528203,83.99130648074375,515.642830926085,0.4959388749994105 +15,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636 +16,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.49900508300197544 +17,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.49815912500343984 +18,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401 +19,2313.5898284762848,3.8450052787660267,84.52324647583058,518.9085384908586,0.49907979200361297 +20,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719 +21,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981 +22,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781 +23,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469 +24,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.49021362500207033 +25,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838 +26,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756 +27,2287.752886269415,3.8020663023105437,83.57933575861786,513.1136435813881,0.4935063340017223 +28,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d2f160b0a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.07161470799474046 +1,398.6592292206605,1.0601916085650023,10.248518882795024,69.07556095804284,0.06744604199775495 +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.07733154200104764 +3,514.3190563490106,1.3677765562639899,13.221840043885235,89.11590331966148,0.0870136250014184 +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.08681425000395393 +5,517.1547567068353,1.3753177982657059,13.29473871656849,89.60724424085022,0.08749337500194088 +6,490.26978754538726,1.3038200964384659,12.603594265571838,84.94889397564467,0.08294491700507933 +7,519.4725243133612,1.3814816534756962,13.354322650265063,90.00884311491652,0.08788550000463147 +8,518.1034381164648,1.3778407150727667,13.319126912370079,89.77162197435642,0.08765387500170618 +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281693,0.08892404200014425 +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.08301929199660663 +11,500.35038752648165,1.3306283746016219,12.862740954482344,86.69555640673644,0.08465037499991013 +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.08557225000549806 +13,488.42094043081113,1.2989032851552427,12.556065089834012,84.62854480973004,0.08263212499878136 +14,503.4395128973858,1.338843573337746,12.942154542264879,87.23080820131315,0.08517299999948591 +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788 +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.08654037499945844 +17,493.5559371722591,1.312559260123976,12.688072847865099,85.51828410192365,0.08350087500002701 +18,507.3150213055262,1.3491500737071616,13.041784045835895,87.9023163407666,0.08582866700453451 +19,517.1131388371582,1.375207119989715,13.293668826567245,89.60003312548373,0.08748633399954997 +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.42133125041101,0.08926466700359015 +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.08595983299892396 +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.08674112500011688 +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.07985995899798581 +24,510.89991397744865,1.3586837125891917,13.133942555028854,88.52346958177273,0.08643516700249165 +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.08749012499902165 +26,423.54044139290176,1.1263605328553132,10.888151817601361,73.38672087141926,0.07165549999626819 +27,420.70326336992974,1.1188153611610816,10.815215157890455,72.89512391564892,0.07117550000111805 +28,459.11156121555587,1.2209581239281746,11.802595197972353,79.55011776670491,0.07767349999630824 +29,402.5174899448091,1.070452240562397,10.347704992103173,69.74408059664233,0.06809879100183025 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2a7bbbfc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..178bb2594 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..68035965b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d8aee8535 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..17a09b23c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..878ec65da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..16447e627 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a99fd4f0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..79d0efc6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2ad316fdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cb3c1f614 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..73725aa29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b65f740b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1f4f82026 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..93775bb34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..47ac27a87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..05074628b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..28d6a9d5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..08ba40e19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..33289ad19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ce73fe7f8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2392.998209324197,3.976975794792876,87.4243026890121,536.7188203059603,0.5162095000050613 +1,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201 +2,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.49630120799702127 +3,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.49112237499502953 +4,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304 +5,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217 +6,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269 +7,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.49483054099982837 +8,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823 +9,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474 +10,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459 +11,2305.401423920151,3.8313967910576667,84.2240964155981,517.0719843236086,0.4973134169995319 +12,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.49507791699579684 +13,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218 +14,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.49461300000257324 +15,2299.0294440458956,3.8208070590528203,83.99130648074375,515.642830926085,0.4959388749994105 +16,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636 +17,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.49900508300197544 +18,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.49815912500343984 +19,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401 +20,2313.5898284762848,3.8450052787660267,84.52324647583058,518.9085384908586,0.49907979200361297 +21,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719 +22,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981 +23,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781 +24,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469 +25,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.49021362500207033 +26,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838 +27,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756 +28,2287.752886269415,3.8020663023105437,83.57933575861786,513.1136435813881,0.4935063340017223 +29,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d2f160b0a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.07161470799474046 +1,398.6592292206605,1.0601916085650023,10.248518882795024,69.07556095804284,0.06744604199775495 +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.07733154200104764 +3,514.3190563490106,1.3677765562639899,13.221840043885235,89.11590331966148,0.0870136250014184 +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.08681425000395393 +5,517.1547567068353,1.3753177982657059,13.29473871656849,89.60724424085022,0.08749337500194088 +6,490.26978754538726,1.3038200964384659,12.603594265571838,84.94889397564467,0.08294491700507933 +7,519.4725243133612,1.3814816534756962,13.354322650265063,90.00884311491652,0.08788550000463147 +8,518.1034381164648,1.3778407150727667,13.319126912370079,89.77162197435642,0.08765387500170618 +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281693,0.08892404200014425 +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.08301929199660663 +11,500.35038752648165,1.3306283746016219,12.862740954482344,86.69555640673644,0.08465037499991013 +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.08557225000549806 +13,488.42094043081113,1.2989032851552427,12.556065089834012,84.62854480973004,0.08263212499878136 +14,503.4395128973858,1.338843573337746,12.942154542264879,87.23080820131315,0.08517299999948591 +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788 +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.08654037499945844 +17,493.5559371722591,1.312559260123976,12.688072847865099,85.51828410192365,0.08350087500002701 +18,507.3150213055262,1.3491500737071616,13.041784045835895,87.9023163407666,0.08582866700453451 +19,517.1131388371582,1.375207119989715,13.293668826567245,89.60003312548373,0.08748633399954997 +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.42133125041101,0.08926466700359015 +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.08595983299892396 +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.08674112500011688 +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.07985995899798581 +24,510.89991397744865,1.3586837125891917,13.133942555028854,88.52346958177273,0.08643516700249165 +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.08749012499902165 +26,423.54044139290176,1.1263605328553132,10.888151817601361,73.38672087141926,0.07165549999626819 +27,420.70326336992974,1.1188153611610816,10.815215157890455,72.89512391564892,0.07117550000111805 +28,459.11156121555587,1.2209581239281746,11.802595197972353,79.55011776670491,0.07767349999630824 +29,402.5174899448091,1.070452240562397,10.347704992103173,69.74408059664233,0.06809879100183025 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d26c0128e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..c772f8df6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..aa2d6424d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..17a6d47d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..754e78320 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1396ab436 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ff8000422 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..17f376af7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3566f2b13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cdf1d092b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4c604fa8d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..de0d69270 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b4f9ea31c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d6819e920 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..58add1be4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..5275a0ebe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fe2daff2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2258e0207 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca97a4d40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..23c741497 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..90fc78e53 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.48917929199524224 +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176 +2,1470.6334323813912,0.09965216491189152,0.0,454.21456766840157,0.48235437499533873 +3,1485.0875958430825,0.10063159911298641,0.0,458.67882875699206,0.4870952089986531 +4,1472.8761257438919,0.09980413293049206,0.0,454.9072378971828,0.4830899579974357 +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356 +6,1476.1830010833758,0.10002821139859797,0.0,455.9285875548095,0.4841745829980937 +7,1463.426296356512,0.09916379936009613,0.0,451.9885974833182,0.4799905000036233 +8,1471.8095321193011,0.09973185906439372,0.0,454.57781361550656,0.48274012500041863 +9,1476.4591795005704,0.10004692563191361,0.0,456.01388703026225,0.484265167004196 +10,1480.2938895968366,0.10030677091659723,0.0,457.1982618378502,0.48552291699888883 +11,1473.468242797507,0.09984425560482733,0.0,455.090117046803,0.4832841669995105 +12,1470.8582862106548,0.09966740131981036,0.0,454.2840152156956,0.48242812500393484 +13,1481.4675746258279,0.10038630144506774,0.0,457.56076198661873,0.4859078750014305 +14,1498.777378307361,0.10155923779554318,0.0,462.9070058720858,0.49158533299487317 +15,1481.2213787556393,0.10036961887079976,0.0,457.48472281310535,0.4858271249977406 +16,1470.3611931394696,0.09963371760256609,0.0,454.1304848324962,0.48226508300285786 +17,1478.7457002780488,0.1002018634570539,0.0,456.72009363725164,0.48501512499933597 +18,1464.457703027839,0.09923368890934695,0.0,452.30715404880334,0.48032879200036405 +19,1474.8152039772676,0.0999355275660516,0.0,455.50613464606323,0.4837259580017417 +20,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.48179058299865574 +21,1467.7080463118232,0.09945393668681746,0.0,453.311043418514,0.48139487500156974 +22,1476.5658867326172,0.10005415626223323,0.0,456.04684424325905,0.4843001660046866 +23,1477.537206367709,0.10011997423041417,0.0,456.3468425422278,0.48461875000066357 +24,1452.3435435551507,0.09841281663012338,0.0,448.56561820010234,0.47635545799857937 +25,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921 +26,1471.1452606296632,0.09968684710521061,0.0,454.37264910554995,0.4825222500003292 +27,1466.0039837744687,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276 +28,1458.1899954967043,0.09880898033768014,0.0,450.37133237914605,0.47827304100064794 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..e91dd4db5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,307.4320612663604,0.0,0.0,63.35199239749272,0.06712858299579239 +1,319.09229461987655,0.0,0.0,65.75479648930452,0.06967462500324473 +2,315.8303683771894,0.0,0.0,65.08261699808075,0.06896237500041025 +3,320.11071629586803,0.0,0.0,65.96466088018519,0.06989700000121957 +4,312.61748207640557,0.0,0.0,64.42054308274855,0.06826083299529273 +5,307.04469238953703,0.0,0.0,63.27216796396276,0.06704400000307942 +6,315.62218214509465,0.0,0.0,65.03971642180838,0.06891691700002411 +7,310.95312800205056,0.0,0.0,64.07757252128222,0.06789741699321894 +8,313.5021384751786,0.0,0.0,64.60284269463226,0.06845400000020163 +9,312.90657876781614,0.0,0.0,64.48011673723646,0.06832395800302038 +10,312.5113876374554,0.0,0.0,64.39868038546805,0.06823766700108536 +11,300.6441130311362,0.0,0.0,61.95321166128344,0.06564641700242646 +12,314.46636338728104,0.0,0.0,64.80153885224628,0.06866454099508701 +13,314.6789461985706,0.0,0.0,64.84534542397851,0.06871095899987267 +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814 +15,319.99393270665615,0.0,0.0,65.9405954882237,0.06987150000350084 +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653 +17,315.12031493923246,0.0,0.0,64.93629751592275,0.06880733300204156 +18,320.1736878576916,0.0,0.0,65.9776373208644,0.06991075000405544 +19,315.997721590775,0.0,0.0,65.1171031849511,0.06899891700595617 +20,315.1537104407051,0.0,0.0,64.94317926907071,0.06881462499586632 +21,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792 +22,316.5843095668302,0.0,0.0,65.23798035321532,0.06912700000248151 +23,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724 +24,324.2240911390176,0.0,0.0,66.8122969098102,0.07079516600060742 +25,319.4119244478356,0.0,0.0,65.82066205435802,0.06974441700003808 +26,316.58221200981916,0.0,0.0,65.237548113275,0.06912654199550161 +27,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193 +28,318.88009651176566,0.0,0.0,65.71106919269002,0.06962829099938972 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6b1b68c94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cf4e17169 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e3a9f3622 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a677862b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..566686bbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..569491816 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a174e1aef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3ea12d4a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e76a71d54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1c85688ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e2629569d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b2cbf41cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7977827a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b86269e64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4e795bdc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..feb39e0a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..4ffa3de61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..34fe9e7cc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.48917929199524224 +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176 +2,1470.6334323813912,0.09965216491189152,0.0,454.21456766840157,0.48235437499533873 +3,1485.0875958430825,0.10063159911298641,0.0,458.67882875699206,0.4870952089986531 +4,1472.8761257438919,0.09980413293049206,0.0,454.9072378971828,0.4830899579974357 +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356 +6,1476.1830010833758,0.10002821139859797,0.0,455.9285875548095,0.4841745829980937 +7,1463.426296356512,0.09916379936009613,0.0,451.9885974833182,0.4799905000036233 +8,1471.8095321193011,0.09973185906439372,0.0,454.57781361550656,0.48274012500041863 +9,1476.4591795005704,0.10004692563191361,0.0,456.01388703026225,0.484265167004196 +10,1480.2938895968366,0.10030677091659723,0.0,457.1982618378502,0.48552291699888883 +11,1473.468242797507,0.09984425560482733,0.0,455.090117046803,0.4832841669995105 +12,1470.8582862106548,0.09966740131981036,0.0,454.2840152156956,0.48242812500393484 +13,1481.4675746258279,0.10038630144506774,0.0,457.56076198661873,0.4859078750014305 +14,1498.777378307361,0.10155923779554318,0.0,462.9070058720858,0.49158533299487317 +15,1481.2213787556393,0.10036961887079976,0.0,457.48472281310535,0.4858271249977406 +16,1531.283872192057,0.10376192299090126,0.0,472.9468449925279,0.5022471670017694 +17,1470.3611931394696,0.09963371760256609,0.0,454.1304848324962,0.48226508300285786 +18,1478.7457002780488,0.1002018634570539,0.0,456.72009363725164,0.48501512499933597 +19,1464.457703027839,0.09923368890934695,0.0,452.30715404880334,0.48032879200036405 +20,1474.8152039772676,0.0999355275660516,0.0,455.50613464606323,0.4837259580017417 +21,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.48179058299865574 +22,1467.7080463118232,0.09945393668681746,0.0,453.311043418514,0.48139487500156974 +23,1476.5658867326172,0.10005415626223323,0.0,456.04684424325905,0.4843001660046866 +24,1477.537206367709,0.10011997423041417,0.0,456.3468425422278,0.48461875000066357 +25,1452.3435435551507,0.09841281663012338,0.0,448.56561820010234,0.47635545799857937 +26,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921 +27,1471.1452606296632,0.09968684710521061,0.0,454.37264910554995,0.4825222500003292 +28,1466.0039837744687,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276 +29,1458.1899954967043,0.09880898033768014,0.0,450.37133237914605,0.47827304100064794 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..60c1f66e0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,307.4320612663604,0.0,0.0,63.35199239749272,0.06712858299579239 +1,319.09229461987655,0.0,0.0,65.75479648930452,0.06967462500324473 +2,315.8303683771894,0.0,0.0,65.08261699808075,0.06896237500041025 +3,320.11071629586803,0.0,0.0,65.96466088018519,0.06989700000121957 +4,312.61748207640557,0.0,0.0,64.42054308274855,0.06826083299529273 +5,307.04469238953703,0.0,0.0,63.27216796396276,0.06704400000307942 +6,315.62218214509465,0.0,0.0,65.03971642180838,0.06891691700002411 +7,310.95312800205056,0.0,0.0,64.07757252128222,0.06789741699321894 +8,313.5021384751786,0.0,0.0,64.60284269463226,0.06845400000020163 +9,312.90657876781614,0.0,0.0,64.48011673723646,0.06832395800302038 +10,312.5113876374554,0.0,0.0,64.39868038546805,0.06823766700108536 +11,300.6441130311362,0.0,0.0,61.95321166128344,0.06564641700242646 +12,314.46636338728104,0.0,0.0,64.80153885224628,0.06866454099508701 +13,314.6789461985706,0.0,0.0,64.84534542397851,0.06871095899987267 +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814 +15,319.99393270665615,0.0,0.0,65.9405954882237,0.06987150000350084 +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653 +17,315.12031493923246,0.0,0.0,64.93629751592275,0.06880733300204156 +18,320.1736878576916,0.0,0.0,65.9776373208644,0.06991075000405544 +19,315.997721590775,0.0,0.0,65.1171031849511,0.06899891700595617 +20,315.1537104407051,0.0,0.0,64.94317926907071,0.06881462499586632 +21,396.2162204473379,0.0,0.0,81.64759030709996,0.0865148329976364 +22,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792 +23,316.5843095668302,0.0,0.0,65.23798035321532,0.06912700000248151 +24,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724 +25,324.2240911390176,0.0,0.0,66.8122969098102,0.07079516600060742 +26,319.4119244478356,0.0,0.0,65.82066205435802,0.06974441700003808 +27,316.58221200981916,0.0,0.0,65.237548113275,0.06912654199550161 +28,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193 +29,318.88009651176566,0.0,0.0,65.71106919269002,0.06962829099938972 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a77418ac7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c43e23475 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c35b8f5de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7f6c1af7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..813c123ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..753551c35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c985df3a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d557e6060 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..65edf4ffb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a4e82caa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e99f59d31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e3b0c829e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2567d7df8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c7fb32f25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..647283e70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3a96e438b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..25f2edf60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c6045675f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.49258404199645156 +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336 +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091 +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.49596200000087265 +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922 +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767 +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257 +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117 +8,2281.0575381943677,2.9970099041969798,84.21597830793513,509.79138470390626,0.4952505420005764 +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.49559037500148406 +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.49527062499691965 +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.49558608300139895 +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566 +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922 +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516 +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.49730287499551196 +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166 +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952 +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721 +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778 +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292 +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.49623437500122236 +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198 +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.49108608300593914 +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296 +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179 +26,2277.2584680920518,2.9920184252304334,84.07571774897518,508.9423341316967,0.4944257090028259 +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.49494004099688027 +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396 +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..353ef430b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,411.18397650340427,1.167188903294335,11.571844269803835,72.9993288374657,0.06970495900168316 +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.06977079100033734 +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.07087916700402275 +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.06793066600221209 +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.07086104200425325 +5,413.635956981174,1.1741491074080366,11.640849722016819,73.43463988903406,0.07012062500143657 +6,420.48804217203855,1.1935994708857542,11.833686182781621,74.6511211933976,0.07128220800223062 +7,410.60071488827333,1.1655332539407597,11.555429689069816,72.89577979646637,0.06960608300141757 +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.06844070800434565 +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.06993445800617337 +10,429.4455521502114,1.2190263037516138,12.085775068623143,76.24138796892237,0.0728007079960662 +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.06711370799894212 +12,445.29103640889906,1.2640053750455367,12.53171043259432,79.05450759927656,0.07548687500093365 +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.06774666700221132 +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.07029874999716412 +15,410.0169695614531,1.163876231520751,11.539001495362873,72.79214487996926,0.06950712500110967 +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.06760833299631486 +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717 +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.07053362500300864 +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.06657466699834913 +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.07001375000254484 +21,403.19118176217404,1.1445005159510213,11.34690511528584,71.58033226905101,0.0683500000013737 +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.07181558400043286 +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.06675537500268547 +24,401.4849191657379,1.1396571103650306,11.298886208476159,71.27741184540147,0.06806075000349665 +25,426.85518892582195,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923 +26,413.6236695024976,1.1741142281092793,11.640503918683427,73.43245843803464,0.07011854199663503 +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523 +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.07033754199801479 +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.06638941700657597 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a11e418d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..75ee50955 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..847618537 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5d7ac7060 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..523d2f176 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9970d5b00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..79455a3ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..27a1d7ea3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ff6a0dca8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..95da9aecb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6885e6329 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b573739c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b13110ac8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2c4c34335 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f2cba4af9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..0f4866c9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3cd9a2824 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f4db4d212 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1b3b79a76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..65edfb1c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c6045675f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.49258404199645156 +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336 +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091 +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.49596200000087265 +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922 +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767 +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257 +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117 +8,2281.0575381943677,2.9970099041969798,84.21597830793513,509.79138470390626,0.4952505420005764 +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.49559037500148406 +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.49527062499691965 +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.49558608300139895 +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566 +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922 +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516 +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.49730287499551196 +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166 +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952 +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721 +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778 +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292 +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.49623437500122236 +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198 +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.49108608300593914 +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296 +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179 +26,2277.2584680920518,2.9920184252304334,84.07571774897518,508.9423341316967,0.4944257090028259 +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.49494004099688027 +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396 +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..353ef430b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,411.18397650340427,1.167188903294335,11.571844269803835,72.9993288374657,0.06970495900168316 +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.06977079100033734 +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.07087916700402275 +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.06793066600221209 +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.07086104200425325 +5,413.635956981174,1.1741491074080366,11.640849722016819,73.43463988903406,0.07012062500143657 +6,420.48804217203855,1.1935994708857542,11.833686182781621,74.6511211933976,0.07128220800223062 +7,410.60071488827333,1.1655332539407597,11.555429689069816,72.89577979646637,0.06960608300141757 +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.06844070800434565 +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.06993445800617337 +10,429.4455521502114,1.2190263037516138,12.085775068623143,76.24138796892237,0.0728007079960662 +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.06711370799894212 +12,445.29103640889906,1.2640053750455367,12.53171043259432,79.05450759927656,0.07548687500093365 +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.06774666700221132 +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.07029874999716412 +15,410.0169695614531,1.163876231520751,11.539001495362873,72.79214487996926,0.06950712500110967 +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.06760833299631486 +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717 +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.07053362500300864 +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.06657466699834913 +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.07001375000254484 +21,403.19118176217404,1.1445005159510213,11.34690511528584,71.58033226905101,0.0683500000013737 +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.07181558400043286 +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.06675537500268547 +24,401.4849191657379,1.1396571103650306,11.298886208476159,71.27741184540147,0.06806075000349665 +25,426.85518892582195,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923 +26,413.6236695024976,1.1741142281092793,11.640503918683427,73.43245843803464,0.07011854199663503 +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523 +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.07033754199801479 +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.06638941700657597 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a11e418d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..75ee50955 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..847618537 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5d7ac7060 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..523d2f176 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9970d5b00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..79455a3ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..27a1d7ea3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ff6a0dca8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..95da9aecb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6885e6329 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b573739c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b13110ac8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2c4c34335 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f2cba4af9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..0f4866c9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3cd9a2824 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f4db4d212 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1b3b79a76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..65edfb1c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ed9a12433 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908 +1,1573.4160634871228,22.800282743848374,0.0,461.1160630781749,0.4818563750013709 +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289 +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567 +4,1576.0847815073448,22.83895498499088,0.0,461.89817581714317,0.482673666003393 +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.48216270800185157 +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886 +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355 +8,1576.0729479760835,22.83878350596198,0.0,461.8947078016104,0.4826700420017005 +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.48720233399944846 +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.49068370899476577 +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.49332891700032633 +12,1613.171083804858,23.376370483618178,0.0,472.76694098765734,0.49403129200072726 +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545 +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044 +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329 +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758 +17,1588.9640265017401,23.025587392155135,0.0,465.67265536203405,0.48661791600170545 +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.48254341700521763 +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111 +20,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.49964866600203095 +21,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483 +22,1630.1989199727823,23.623119889674296,0.0,477.7572350101371,0.4992460419962299 +23,1632.2295419060226,23.652545516689397,0.0,478.35234294959764,0.4998679170021205 +24,1613.2401976059741,23.377372007781762,0.0,472.7871959504829,0.4940524580015335 +25,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.49556979200133355 +26,1610.8625013861165,23.34291694700681,0.0,472.09037204894804,0.4933242920014891 +27,1614.9038790021223,23.401480320330567,0.0,473.2747657887544,0.4945619580030325 +28,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.49932937500125263 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3c3c29410 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,303.23390333758607,0.0,0.0,75.59622229023033,0.08612237500346964 +1,299.87754304590914,0.0,0.0,74.75948155674698,0.08516912499908358 +2,303.496507488735,0.0,0.0,75.66168951393483,0.08619695800007321 +3,280.98976423022,0.0,0.0,70.05075766339677,0.07980474999931175 +4,302.6632146728885,0.0,0.0,75.453949586947,0.08596029199543409 +5,302.2430473239825,0.0,0.0,75.3492018527478,0.08584095900005195 +6,288.1644636376654,0.0,0.0,71.83941046673124,0.08184245800657663 +7,299.15970621388135,0.0,0.0,74.58052481040428,0.08496524999645771 +8,303.53919918635705,0.0,0.0,75.67233255558638,0.08620908299781149 +9,304.1503789285395,0.0,0.0,75.82469968584712,0.08638266599882627 +10,302.7150010544735,0.0,0.0,75.46685993361608,0.08597500000178115 +11,304.3796818047821,0.0,0.0,75.8818649005986,0.08644779099995503 +12,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672 +13,299.5502411494769,0.0,0.0,74.6778851829696,0.08507616700080689 +14,299.0150508701026,0.0,0.0,74.54446222834005,0.08492416599619901 +15,301.69890677153836,0.0,0.0,75.21354759474123,0.08568641600140836 +16,293.7211350318159,0.0,0.0,73.22468883198815,0.08342062500014435 +17,301.99774870612936,0.0,0.0,75.28804889907536,0.08577129100012826 +18,290.7437186585,0.0,0.0,72.4824188300841,0.08257500000036089 +19,300.40744832723414,0.0,0.0,74.89158696118525,0.08531962499546353 +20,302.49420835289175,0.0,0.0,75.41181630569348,0.08591229200101225 +21,302.62287146478,0.0,0.0,75.4438920238101,0.08594883399928221 +22,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865 +23,300.38544230519113,0.0,0.0,74.88610085915057,0.08531337499880465 +24,302.0932584124877,0.0,0.0,75.31185947207949,0.08579841699975077 +25,298.48529699349257,0.0,0.0,74.4123945691023,0.08477370900072856 +26,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006 +27,298.8282953574442,0.0,0.0,74.49790407275962,0.08487112500006333 +28,301.1461152201156,0.0,0.0,75.07573664239862,0.08552941600646591 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..52eb96df2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b13d1ed00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..748b2ffe4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8069190a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b404a008a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..462bf3d7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ee88f5ccc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d9e5408fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..77aafa8ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c6d001758 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..974919400 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5fcc50cbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9e6ecab2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..40e762226 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..095b18452 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e60d0040c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9ed555983 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b4e4c2678 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908 +1,1573.4160634871228,22.800282743848374,0.0,461.1160630781749,0.4818563750013709 +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289 +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567 +4,1576.0847815073448,22.83895498499088,0.0,461.89817581714317,0.482673666003393 +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.48216270800185157 +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886 +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355 +8,1576.0729479760835,22.83878350596198,0.0,461.8947078016104,0.4826700420017005 +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.48720233399944846 +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.49068370899476577 +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.49332891700032633 +12,1613.171083804858,23.376370483618178,0.0,472.76694098765734,0.49403129200072726 +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545 +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044 +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329 +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758 +17,1588.9640265017401,23.025587392155135,0.0,465.67265536203405,0.48661791600170545 +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.48254341700521763 +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111 +20,1697.495566956316,24.59831177600658,0.0,497.47965022854686,0.5198555419992772 +21,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.49964866600203095 +22,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483 +23,1630.1989199727823,23.623119889674296,0.0,477.7572350101371,0.4992460419962299 +24,1632.2295419060226,23.652545516689397,0.0,478.35234294959764,0.4998679170021205 +25,1613.2401976059741,23.377372007781762,0.0,472.7871959504829,0.4940524580015335 +26,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.49556979200133355 +27,1610.8625013861165,23.34291694700681,0.0,472.09037204894804,0.4933242920014891 +28,1614.9038790021223,23.401480320330567,0.0,473.2747657887544,0.4945619580030325 +29,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.49932937500125263 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..181f6e0f9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,303.23390333758607,0.0,0.0,75.59622229023033,0.08612237500346964 +1,299.87754304590914,0.0,0.0,74.75948155674698,0.08516912499908358 +2,303.496507488735,0.0,0.0,75.66168951393483,0.08619695800007321 +3,250.8244775680612,0.0,0.0,62.5305506850156,0.07123741599934874 +4,280.98976423022,0.0,0.0,70.05075766339677,0.07980474999931175 +5,302.6632146728885,0.0,0.0,75.453949586947,0.08596029199543409 +6,302.2430473239825,0.0,0.0,75.3492018527478,0.08584095900005195 +7,288.1644636376654,0.0,0.0,71.83941046673124,0.08184245800657663 +8,299.15970621388135,0.0,0.0,74.58052481040428,0.08496524999645771 +9,303.53919918635705,0.0,0.0,75.67233255558638,0.08620908299781149 +10,304.1503789285395,0.0,0.0,75.82469968584712,0.08638266599882627 +11,302.7150010544735,0.0,0.0,75.46685993361608,0.08597500000178115 +12,304.3796818047821,0.0,0.0,75.8818649005986,0.08644779099995503 +13,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672 +14,299.5502411494769,0.0,0.0,74.6778851829696,0.08507616700080689 +15,299.0150508701026,0.0,0.0,74.54446222834005,0.08492416599619901 +16,301.69890677153836,0.0,0.0,75.21354759474123,0.08568641600140836 +17,293.7211350318159,0.0,0.0,73.22468883198815,0.08342062500014435 +18,301.99774870612936,0.0,0.0,75.28804889907536,0.08577129100012826 +19,290.7437186585,0.0,0.0,72.4824188300841,0.08257500000036089 +20,300.40744832723414,0.0,0.0,74.89158696118525,0.08531962499546353 +21,302.49420835289175,0.0,0.0,75.41181630569348,0.08591229200101225 +22,302.62287146478,0.0,0.0,75.4438920238101,0.08594883399928221 +23,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865 +24,300.38544230519113,0.0,0.0,74.88610085915057,0.08531337499880465 +25,302.0932584124877,0.0,0.0,75.31185947207949,0.08579841699975077 +26,298.48529699349257,0.0,0.0,74.4123945691023,0.08477370900072856 +27,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006 +28,298.8282953574442,0.0,0.0,74.49790407275962,0.08487112500006333 +29,301.1461152201156,0.0,0.0,75.07573664239862,0.08552941600646591 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..86ef4520d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..63a80f68d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b1cdd7ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3150a4964 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c7c67f3e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..31a3e4274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a21c74ce7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4c9ff49a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f981d1bba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..459f68ca6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..eceeb5522 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6ad7bdf62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..87878d4ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dade902d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c7bd0ef1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7e1dafb58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0747220c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ab5ea972b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1501.502028693519,2.3088191112663026,0.0,460.82691015013796,0.4996751660000882 +1,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831 +2,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203 +3,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406 +4,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604 +5,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825 +6,1507.9842242384736,2.3187866082600825,0.0,462.81636476750515,0.5018323340045754 +7,1525.2583386023323,2.3453485473126583,0.0,468.11797382014396,0.5075808749970747 +8,1487.4017761634502,2.2871375338238598,0.0,456.49939298293043,0.49498283399589127 +9,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076 +10,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088 +11,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453 +12,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.49754454199864995 +13,1486.045287815104,2.2850516983317846,0.0,456.08307231051214,0.49453141699632397 +14,1484.8389210893304,2.283196700803686,0.0,455.71282555751253,0.4941299580023042 +15,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077 +16,1499.9656215906023,2.306456619565252,0.0,460.35537050221234,0.49916387499979464 +17,1488.3503386998007,2.288596112813635,0.0,456.79051689375916,0.4952984999981709 +18,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.49512262499774806 +19,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.49604925000312505 +20,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.49556266700528795 +21,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.49555312500160653 +22,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009 +23,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.49588583299919264 +24,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721 +25,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.49462991600012174 +26,1504.0738956441755,2.3127738016056005,0.0,461.61624341612077,0.5005310409978847 +27,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622 +28,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a5587e71b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,315.8166415430196,0.0,0.0,71.55382505573768,0.08804116700048326 +1,286.0633453360258,0.0,0.0,64.81269152577208,0.07974675000150455 +2,313.0570777710135,0.0,0.0,70.92859725771052,0.08727187500335276 +3,308.9532305134665,0.0,0.0,69.99879834880156,0.08612783300486626 +4,308.43414159245566,0.0,0.0,69.88118960703004,0.08598312500544125 +5,308.23565035456966,0.0,0.0,69.83621791952999,0.08592779099853942 +6,309.07130861685545,0.0,0.0,70.02555102374461,0.08616074999736156 +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234 +8,309.104489721779,0.0,0.0,70.03306878773974,0.08616999999503605 +9,311.85239528042814,0.0,0.0,70.65565521210488,0.08693604199652327 +10,309.7618344994348,0.0,0.0,70.18200183000086,0.08635325000068406 +11,307.98514910300486,0.0,0.0,69.7794624469775,0.08585795800172491 +12,311.25931787985377,0.0,0.0,70.52128307655853,0.08677070800331421 +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218 +14,307.8869545283353,0.0,0.0,69.75721473582777,0.08583058400108712 +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165004 +16,306.82904378030355,0.0,0.0,69.5175264147203,0.08553566699993098 +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673 +18,310.8970159762155,0.0,0.0,70.43919719627168,0.08666970799822593 +19,309.5836716636141,0.0,0.0,70.1416359001896,0.08630358300433727 +20,311.40639092002573,0.0,0.0,70.5546050653412,0.08681170800264226 +21,317.1811027296167,0.0,0.0,71.8629677803392,0.08842154200101504 +22,311.9760012189771,0.0,0.0,70.68366031550781,0.08697050000046147 +23,309.0541226205383,0.0,0.0,70.02165723344947,0.08615595900482731 +24,309.0817723407111,0.0,0.0,70.02792176476237,0.08616366700152867 +25,311.56422898167176,0.0,0.0,70.59036605942617,0.08685570899979211 +26,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687 +27,310.2794311568168,0.0,0.0,70.29927247315251,0.08649754199723247 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..569a90378 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..994448035 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..882cbda80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0b7a53733 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..284467ddf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0499b2740 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a643fec4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f86fe7954 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..db567c038 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7087a5efe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cfca780b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..22cb8e3d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..360499adb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9f86c02b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..893285338 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9efe1cc86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..428c40c07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4a911b371 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1535.669135852832,2.361356949030495,0.0,471.3131580006953,0.511045416998968 +1,1501.502028693519,2.3088191112663026,0.0,460.82691015013796,0.4996751660000882 +2,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831 +3,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203 +4,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406 +5,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604 +6,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825 +7,1507.9842242384736,2.3187866082600825,0.0,462.81636476750515,0.5018323340045754 +8,1525.2583386023323,2.3453485473126583,0.0,468.11797382014396,0.5075808749970747 +9,1487.4017761634502,2.2871375338238598,0.0,456.49939298293043,0.49498283399589127 +10,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076 +11,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088 +12,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453 +13,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.49754454199864995 +14,1486.045287815104,2.2850516983317846,0.0,456.08307231051214,0.49453141699632397 +15,1484.8389210893304,2.283196700803686,0.0,455.71282555751253,0.4941299580023042 +16,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077 +17,1499.9656215906023,2.306456619565252,0.0,460.35537050221234,0.49916387499979464 +18,1488.3503386998007,2.288596112813635,0.0,456.79051689375916,0.4952984999981709 +19,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.49512262499774806 +20,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.49604925000312505 +21,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.49556266700528795 +22,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.49555312500160653 +23,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009 +24,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.49588583299919264 +25,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721 +26,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.49462991600012174 +27,1504.0738956441755,2.3127738016056005,0.0,461.61624341612077,0.5005310409978847 +28,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622 +29,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..30193de93 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,315.8166415430196,0.0,0.0,71.55382505573768,0.08804116700048326 +1,286.0633453360258,0.0,0.0,64.81269152577208,0.07974675000150455 +2,313.0570777710135,0.0,0.0,70.92859725771052,0.08727187500335276 +3,308.9532305134665,0.0,0.0,69.99879834880156,0.08612783300486626 +4,308.43414159245566,0.0,0.0,69.88118960703004,0.08598312500544125 +5,308.23565035456966,0.0,0.0,69.83621791952999,0.08592779099853942 +6,309.07130861685545,0.0,0.0,70.02555102374461,0.08616074999736156 +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234 +8,309.104489721779,0.0,0.0,70.03306878773974,0.08616999999503605 +9,311.85239528042814,0.0,0.0,70.65565521210488,0.08693604199652327 +10,309.7618344994348,0.0,0.0,70.18200183000086,0.08635325000068406 +11,307.98514910300486,0.0,0.0,69.7794624469775,0.08585795800172491 +12,311.25931787985377,0.0,0.0,70.52128307655853,0.08677070800331421 +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218 +14,307.8869545283353,0.0,0.0,69.75721473582777,0.08583058400108712 +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165004 +16,306.82904378030355,0.0,0.0,69.5175264147203,0.08553566699993098 +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673 +18,310.8970159762155,0.0,0.0,70.43919719627168,0.08666970799822593 +19,309.5836716636141,0.0,0.0,70.1416359001896,0.08630358300433727 +20,311.40639092002573,0.0,0.0,70.5546050653412,0.08681170800264226 +21,317.1811027296167,0.0,0.0,71.8629677803392,0.08842154200101504 +22,311.9760012189771,0.0,0.0,70.68366031550781,0.08697050000046147 +23,259.64086611242755,0.0,0.0,58.82621327476237,0.07238087499717949 +24,309.0541226205383,0.0,0.0,70.02165723344947,0.08615595900482731 +25,309.0817723407111,0.0,0.0,70.02792176476237,0.08616366700152867 +26,311.56422898167176,0.0,0.0,70.59036605942617,0.08685570899979211 +27,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687 +28,310.2794311568168,0.0,0.0,70.29927247315251,0.08649754199723247 +29,254.3169403535346,0.0,0.0,57.619984082721295,0.07089670799905434 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..68d399801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0ae193880 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4b7c396a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8f665074d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c26eeaa0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..aace26614 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..97956db0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..be563dfc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..25a585968 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..04d1ca792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..22b09f205 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d27e9e7c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..47a9ef27c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b0a93a3a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2e7ec147f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3272f1300 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4a751a457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..9133297cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394 +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.48223316700023133 +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149 +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802 +4,1458.91194965116,0.39925524859891726,0.0,454.9180845077496,0.48192041699803667 +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.48105766699882224 +6,1468.611380787982,0.40190965744842033,0.0,457.94256219102095,0.4851244170058635 +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.47912587499740766 +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833 +9,1466.35176146208,0.40129127545770626,0.0,457.2379674444348,0.4843780000010156 +10,1460.154775553515,0.39959536834687637,0.0,455.3056226172367,0.48233095800242154 +11,1457.9792906101436,0.3990000111136337,0.0,454.62726266305947,0.4816123329947004 +12,1457.422775179489,0.39884771151346365,0.0,454.4537299602991,0.48142850000294857 +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474 +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208 +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636 +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052 +17,1457.9613811923634,0.39899510990691606,0.0,454.6216781464386,0.4816064170008758 +18,1469.355588079086,0.40211332201302263,0.0,458.1746209903382,0.4853702499967767 +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.48355391700170003 +20,1460.7395477092175,0.39975540086457184,0.0,455.48796633510756,0.4825241250000545 +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.48341420799988555 +22,1459.13710420092,0.39931686584439874,0.0,454.98829222420534,0.4819947919968399 +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122 +24,1458.813181355714,0.399228219030504,0.0,454.88728656700675,0.4818877910001902 +25,1457.0466346307994,0.39874477446622714,0.0,454.33644177306024,0.48130425000272226 +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921 +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982 +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989 +29,1471.0342193441872,0.40257270706584525,0.0,458.69805197594184,0.48592474999895785 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..33eda0690 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206009 +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733 +2,291.12877419678506,0.0,0.0,64.01819623510673,0.06870495800103527 +3,289.13703351517285,0.0,0.0,63.58021944577464,0.06823491700197337 +4,287.799607294358,0.0,0.0,63.286124111191775,0.06791929099563276 +5,291.371363998525,0.0,0.0,64.07154088156179,0.06876220800040755 +6,289.56394921064606,0.0,0.0,63.67409670969008,0.06833566700515803 +7,292.13638840929866,0.0,0.0,64.23976706596653,0.06894274999649497 +8,283.5650571496894,0.0,0.0,62.35496138817781,0.06691995800065342 +9,287.130631504071,0.0,0.0,63.13901868151625,0.06776141600130359 +10,289.67976939419503,0.0,0.0,63.699565161782736,0.06836299999849871 +11,292.1418630957887,0.0,0.0,64.2409709303218,0.06894404199556448 +12,293.0022242707416,0.0,0.0,64.43016133475076,0.06914708299882477 +13,293.2524074633523,0.0,0.0,64.4851757412225,0.06920612500107381 +14,292.1868810008963,0.0,0.0,64.2508702097428,0.06895466599962674 +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097 +16,289.3466056584585,0.0,0.0,63.62630362495372,0.06828437499643769 +17,290.05283648513034,0.0,0.0,63.781601306448444,0.06845104199601337 +18,292.61538991766724,0.0,0.0,64.34509781743297,0.06905579199519707 +19,291.45399282192466,0.0,0.0,64.08971066998504,0.06878170799609507 +20,292.67577253005464,0.0,0.0,64.35837574208907,0.06907004199456424 +21,292.25150521505736,0.0,0.0,64.26508084775038,0.06896991699613864 +22,288.79928071261065,0.0,0.0,63.50594878924803,0.06815520900272531 +23,290.00304733298486,0.0,0.0,63.77065284654021,0.06843929200113053 +24,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247007 +25,293.6300636211133,0.0,0.0,64.56822100558581,0.06929524999577552 +26,289.9055876714127,0.0,0.0,63.749221808825894,0.06841629200062016 +27,284.5073479632638,0.0,0.0,62.5621678327499,0.06714233399543446 +28,296.6712669039547,0.0,0.0,65.23697093966203,0.07001295900408877 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..53f619e83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..98f76b971 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..20c87bee1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bd4ac4f61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..585987d54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c46061a45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8785dca89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9858a37c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..acbb4ef08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a55f94bfb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..709d8d2b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d0a282405 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..20cf1a938 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4ab894926 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c96d3d039 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..687516259 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..439357818 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9133297cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394 +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.48223316700023133 +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149 +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802 +4,1458.91194965116,0.39925524859891726,0.0,454.9180845077496,0.48192041699803667 +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.48105766699882224 +6,1468.611380787982,0.40190965744842033,0.0,457.94256219102095,0.4851244170058635 +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.47912587499740766 +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833 +9,1466.35176146208,0.40129127545770626,0.0,457.2379674444348,0.4843780000010156 +10,1460.154775553515,0.39959536834687637,0.0,455.3056226172367,0.48233095800242154 +11,1457.9792906101436,0.3990000111136337,0.0,454.62726266305947,0.4816123329947004 +12,1457.422775179489,0.39884771151346365,0.0,454.4537299602991,0.48142850000294857 +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474 +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208 +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636 +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052 +17,1457.9613811923634,0.39899510990691606,0.0,454.6216781464386,0.4816064170008758 +18,1469.355588079086,0.40211332201302263,0.0,458.1746209903382,0.4853702499967767 +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.48355391700170003 +20,1460.7395477092175,0.39975540086457184,0.0,455.48796633510756,0.4825241250000545 +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.48341420799988555 +22,1459.13710420092,0.39931686584439874,0.0,454.98829222420534,0.4819947919968399 +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122 +24,1458.813181355714,0.399228219030504,0.0,454.88728656700675,0.4818877910001902 +25,1457.0466346307994,0.39874477446622714,0.0,454.33644177306024,0.48130425000272226 +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921 +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982 +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989 +29,1471.0342193441872,0.40257270706584525,0.0,458.69805197594184,0.48592474999895785 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6381a9b5e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206009 +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733 +2,291.12877419678506,0.0,0.0,64.01819623510673,0.06870495800103527 +3,289.13703351517285,0.0,0.0,63.58021944577464,0.06823491700197337 +4,287.799607294358,0.0,0.0,63.286124111191775,0.06791929099563276 +5,291.371363998525,0.0,0.0,64.07154088156179,0.06876220800040755 +6,289.56394921064606,0.0,0.0,63.67409670969008,0.06833566700515803 +7,292.13638840929866,0.0,0.0,64.23976706596653,0.06894274999649497 +8,283.5650571496894,0.0,0.0,62.35496138817781,0.06691995800065342 +9,287.130631504071,0.0,0.0,63.13901868151625,0.06776141600130359 +10,289.67976939419503,0.0,0.0,63.699565161782736,0.06836299999849871 +11,292.1418630957887,0.0,0.0,64.2409709303218,0.06894404199556448 +12,293.0022242707416,0.0,0.0,64.43016133475076,0.06914708299882477 +13,293.2524074633523,0.0,0.0,64.4851757412225,0.06920612500107381 +14,292.1868810008963,0.0,0.0,64.2508702097428,0.06895466599962674 +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097 +16,289.3466056584585,0.0,0.0,63.62630362495372,0.06828437499643769 +17,290.05283648513034,0.0,0.0,63.781601306448444,0.06845104199601337 +18,292.61538991766724,0.0,0.0,64.34509781743297,0.06905579199519707 +19,263.23624764234796,0.0,0.0,57.884727486160926,0.062122458999510854 +20,291.45399282192466,0.0,0.0,64.08971066998504,0.06878170799609507 +21,292.67577253005464,0.0,0.0,64.35837574208907,0.06907004199456424 +22,292.25150521505736,0.0,0.0,64.26508084775038,0.06896991699613864 +23,288.79928071261065,0.0,0.0,63.50594878924803,0.06815520900272531 +24,290.00304733298486,0.0,0.0,63.77065284654021,0.06843929200113053 +25,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247007 +26,293.6300636211133,0.0,0.0,64.56822100558581,0.06929524999577552 +27,289.9055876714127,0.0,0.0,63.749221808825894,0.06841629200062016 +28,284.5073479632638,0.0,0.0,62.5621678327499,0.06714233399543446 +29,296.6712669039547,0.0,0.0,65.23697093966203,0.07001295900408877 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c10fa77d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..35be58d0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6ead992c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..af7774854 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..756162802 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c909e4088 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ed26076af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9858a37c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fcde752ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..687134c34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..de5fd1457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..38e2c574c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..78120c066 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a9ba44716 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f38649599 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..687516259 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0aab47204 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1798f14d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1471.0692318666959,0.10084565823317235,0.0,459.85620154326585,0.48539266700390726 +1,1468.578895878081,0.10067493916261239,0.0,459.07772258151243,0.48457095800404204 +2,1461.668066437173,0.10020118365960237,0.0,456.91739748778684,0.48229066700150725 +3,1442.4901829574026,0.09888648939427375,0.0,450.92239163788827,0.475962749995233 +4,1460.192632019516,0.10010003875642218,0.0,456.4561767292852,0.4818038340017665 +5,1457.0270850402062,0.09988303219963937,0.0,455.46662683035555,0.4807593329969677 +6,1451.4069459189002,0.09949775690683013,0.0,453.70977149514545,0.47890491699945414 +7,1454.6021662782161,0.09971679765172178,0.0,454.7085972918513,0.47995920900575584 +8,1454.5623855826552,0.09971407058059426,0.0,454.6961618475098,0.47994608300359687 +9,1468.8514054091331,0.10069362040645766,0.0,459.16290905344687,0.48466087500128197 +10,1454.7620315206584,0.09972775683382787,0.0,454.7585711622551,0.4800119579958846 +11,1461.4857195792638,0.10018868330372907,0.0,456.86039586500453,0.48223049999796785 +12,1456.5270230567808,0.09984875163773005,0.0,455.310307468049,0.480594332999317 +13,1456.90813089835,0.09987487758089325,0.0,455.4294417688732,0.4807200829964131 +14,1448.7476526265218,0.09931545536948873,0.0,452.8784764848686,0.4780274590011686 +15,1454.4989959096524,0.09970972505207618,0.0,454.6763462374673,0.47992516700469423 +16,1457.879845299315,0.09994149115437927,0.0,455.73319966396946,0.48104070899717044 +17,1455.9537216856306,0.09980945032349738,0.0,455.131093475148,0.48040516699984437 +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.48140320800303016 +19,1468.4137238864755,0.10066361618891792,0.0,459.02608982146575,0.48451645800378174 +20,1463.4019935002777,0.10032004891231738,0.0,457.4594230401672,0.48286279199965065 +21,1455.2831840044878,0.09976348320491438,0.0,454.9214834144096,0.4801839169958839 +22,1465.0343928246136,0.10043195417197207,0.0,457.9697110241926,0.48340141699736705 +23,1452.4517724066475,0.09956938250582566,0.0,454.036384226565,0.47924966699793003 +24,1458.159298145276,0.09996064838069164,0.0,455.8205566159539,0.4811329170042882 +25,1464.0746768847828,0.10036616312449953,0.0,457.6697038477178,0.4830847499979427 +26,1460.3305278933121,0.10010949188062558,0.0,456.49928297565265,0.48184933399898 +27,1466.4579268707341,0.10052954116841559,0.0,458.41470772797504,0.4838711249976768 +28,1458.690297278725,0.09999704976546261,0.0,455.9865469305096,0.48130812499584863 +29,1453.5116250142864,0.09964203818479181,0.0,454.3676941226507,0.47959937500127126 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..bcfa984e7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,302.5242036763287,0.0,0.0,63.689306037121824,0.06757125000149244 +1,302.7327655579679,0.0,0.0,63.733213801677465,0.06761783399997512 +2,316.69315087742956,0.0,0.0,66.67224228998516,0.07073600000148872 +3,307.5654342587211,0.0,0.0,64.75061773867812,0.06869724999705795 +4,306.4536190758211,0.0,0.0,64.51655138438339,0.06844891700166045 +5,300.7051879657525,0.0,0.0,63.30635536121105,0.06716495799628319 +6,307.374413716436,0.0,0.0,64.71040288767074,0.06865458399988711 +7,310.5906561688394,0.0,0.0,65.38750656186093,0.06937295800162246 +8,308.0642609293506,0.0,0.0,64.85563387986328,0.06880866700521437 +9,304.84745437059416,0.0,0.0,64.17841144644088,0.06809016700572101 +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945 +11,305.72011556246974,0.0,0.0,64.3621295920989,0.06828508300532121 +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476 +13,308.66251527816155,0.0,0.0,64.98158216382348,0.06894229199679103 +14,307.0794838197012,0.0,0.0,64.64831238309499,0.06858870900032343 +15,309.8218998360231,0.0,0.0,65.22566312337328,0.06920125000033295 +16,306.41127454986776,0.0,0.0,64.50763674734058,0.06843945900618564 +17,309.1954754486052,0.0,0.0,65.0937843049695,0.06906133300071815 +18,306.76198031973763,0.0,0.0,64.58146954099739,0.06851779200223973 +19,296.2609044530781,0.0,0.0,62.37071672696381,0.06617229100083932 +20,307.906254599804,0.0,0.0,64.82236938943242,0.06877337500191061 +21,308.04205891249177,0.0,0.0,64.8509597710509,0.06880370800354285 +22,307.9202455579482,0.0,0.0,64.82531485430489,0.06877649999660207 +23,308.26330444060716,0.0,0.0,64.89753777696993,0.06885312499798601 +24,304.56744666191145,0.0,0.0,64.11946245513926,0.06802762499864912 +25,312.2052199573735,0.0,0.0,65.72741472786811,0.06973358400136931 +26,307.5005161295389,0.0,0.0,64.73695076411346,0.06868275000306312 +27,318.98524529080635,0.0,0.0,67.15478848227502,0.07124795799609274 +28,329.1152803585185,0.0,0.0,69.28742744389862,0.07351058400672628 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ee2dc4625 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..378c86150 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9f78f8ad0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b0ca2758f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c238b4b0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..84c2588f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8bd07c294 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..56e8dd43a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..29f77e5f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..97dcfcacf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9f64c897a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0a1b52c46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..33bd956e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..afc8871d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1bf3b9640 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f92fac577 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..700fd73a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1798f14d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1471.0692318666959,0.10084565823317235,0.0,459.85620154326585,0.48539266700390726 +1,1468.578895878081,0.10067493916261239,0.0,459.07772258151243,0.48457095800404204 +2,1461.668066437173,0.10020118365960237,0.0,456.91739748778684,0.48229066700150725 +3,1442.4901829574026,0.09888648939427375,0.0,450.92239163788827,0.475962749995233 +4,1460.192632019516,0.10010003875642218,0.0,456.4561767292852,0.4818038340017665 +5,1457.0270850402062,0.09988303219963937,0.0,455.46662683035555,0.4807593329969677 +6,1451.4069459189002,0.09949775690683013,0.0,453.70977149514545,0.47890491699945414 +7,1454.6021662782161,0.09971679765172178,0.0,454.7085972918513,0.47995920900575584 +8,1454.5623855826552,0.09971407058059426,0.0,454.6961618475098,0.47994608300359687 +9,1468.8514054091331,0.10069362040645766,0.0,459.16290905344687,0.48466087500128197 +10,1454.7620315206584,0.09972775683382787,0.0,454.7585711622551,0.4800119579958846 +11,1461.4857195792638,0.10018868330372907,0.0,456.86039586500453,0.48223049999796785 +12,1456.5270230567808,0.09984875163773005,0.0,455.310307468049,0.480594332999317 +13,1456.90813089835,0.09987487758089325,0.0,455.4294417688732,0.4807200829964131 +14,1448.7476526265218,0.09931545536948873,0.0,452.8784764848686,0.4780274590011686 +15,1454.4989959096524,0.09970972505207618,0.0,454.6763462374673,0.47992516700469423 +16,1457.879845299315,0.09994149115437927,0.0,455.73319966396946,0.48104070899717044 +17,1455.9537216856306,0.09980945032349738,0.0,455.131093475148,0.48040516699984437 +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.48140320800303016 +19,1468.4137238864755,0.10066361618891792,0.0,459.02608982146575,0.48451645800378174 +20,1463.4019935002777,0.10032004891231738,0.0,457.4594230401672,0.48286279199965065 +21,1455.2831840044878,0.09976348320491438,0.0,454.9214834144096,0.4801839169958839 +22,1465.0343928246136,0.10043195417197207,0.0,457.9697110241926,0.48340141699736705 +23,1452.4517724066475,0.09956938250582566,0.0,454.036384226565,0.47924966699793003 +24,1458.159298145276,0.09996064838069164,0.0,455.8205566159539,0.4811329170042882 +25,1464.0746768847828,0.10036616312449953,0.0,457.6697038477178,0.4830847499979427 +26,1460.3305278933121,0.10010949188062558,0.0,456.49928297565265,0.48184933399898 +27,1466.4579268707341,0.10052954116841559,0.0,458.41470772797504,0.4838711249976768 +28,1458.690297278725,0.09999704976546261,0.0,455.9865469305096,0.48130812499584863 +29,1453.5116250142864,0.09964203818479181,0.0,454.3676941226507,0.47959937500127126 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2984dba65 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,302.5242036763287,0.0,0.0,63.689306037121824,0.06757125000149244 +1,302.7327655579679,0.0,0.0,63.733213801677465,0.06761783399997512 +2,316.69315087742956,0.0,0.0,66.67224228998516,0.07073600000148872 +3,307.5654342587211,0.0,0.0,64.75061773867812,0.06869724999705795 +4,306.4536190758211,0.0,0.0,64.51655138438339,0.06844891700166045 +5,300.7051879657525,0.0,0.0,63.30635536121105,0.06716495799628319 +6,307.374413716436,0.0,0.0,64.71040288767074,0.06865458399988711 +7,310.5906561688394,0.0,0.0,65.38750656186093,0.06937295800162246 +8,308.0642609293506,0.0,0.0,64.85563387986328,0.06880866700521437 +9,304.84745437059416,0.0,0.0,64.17841144644088,0.06809016700572101 +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945 +11,305.72011556246974,0.0,0.0,64.3621295920989,0.06828508300532121 +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476 +13,308.66251527816155,0.0,0.0,64.98158216382348,0.06894229199679103 +14,307.0794838197012,0.0,0.0,64.64831238309499,0.06858870900032343 +15,309.8218998360231,0.0,0.0,65.22566312337328,0.06920125000033295 +16,306.41127454986776,0.0,0.0,64.50763674734058,0.06843945900618564 +17,309.1954754486052,0.0,0.0,65.0937843049695,0.06906133300071815 +18,306.76198031973763,0.0,0.0,64.58146954099739,0.06851779200223973 +19,296.2609044530781,0.0,0.0,62.37071672696381,0.06617229100083932 +20,307.906254599804,0.0,0.0,64.82236938943242,0.06877337500191061 +21,308.04205891249177,0.0,0.0,64.8509597710509,0.06880370800354285 +22,307.9202455579482,0.0,0.0,64.82531485430489,0.06877649999660207 +23,308.26330444060716,0.0,0.0,64.89753777696993,0.06885312499798601 +24,304.56744666191145,0.0,0.0,64.11946245513926,0.06802762499864912 +25,312.2052199573735,0.0,0.0,65.72741472786811,0.06973358400136931 +26,307.5005161295389,0.0,0.0,64.73695076411346,0.06868275000306312 +27,318.98524529080635,0.0,0.0,67.15478848227502,0.07124795799609274 +28,329.1152803585185,0.0,0.0,69.28742744389862,0.07351058400672628 +29,277.68144008298685,0.0,0.0,58.4592505437867,0.06202241599385161 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..87becdbeb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7e677fb12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d0f4505bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..255ecda60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..825d0f0c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..60cba0a5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..800541c4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..56e8dd43a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b2cbec131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..22cdd8026 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b2ca15636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..06e25504a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fd40c6043 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..69cece4b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6918f8f0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f92fac577 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8142f522a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7334b19a3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1515.8144076794304,0.10160976053622672,0.0,463.7808170075175,0.5029127919988241 +1,1494.2954542299487,0.10016727806877254,0.0,457.1968461985674,0.495773292001104 +2,1490.567926608189,0.09991741028342868,0.0,456.0563663369963,0.4945365829989896 +3,1487.0834114226138,0.09968383237851011,0.0,454.9902389196463,0.4933805000036955 +4,1489.19388742284,0.09982530415758412,0.0,455.63596327659974,0.4940807080056402 +5,1491.6388015866264,0.09998919436832192,0.0,456.38401282847735,0.4948918749942095 +6,1489.4443053961663,0.09984209045422753,0.0,455.7125815299125,0.49416379100148333 +7,1483.7489697588537,0.09946031436914154,0.0,453.9700282188851,0.49227420799434185 +8,1490.2046075822445,0.09989305587761392,0.0,455.94520471072246,0.49441604199819267 +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724 +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.49239462499826914 +11,1498.6863274365103,0.10046161197456162,0.0,458.54028425589075,0.49723008400178514 +12,1494.202268227495,0.10016103152081346,0.0,457.16833487149955,0.4957423750020098 +13,1500.9979926125363,0.10061657009066471,0.0,459.24756475049065,0.49799704200268025 +14,1506.2064293036553,0.10096570782300947,0.0,460.8411457401562,0.4997250829983386 +15,1499.4482572416061,0.10051268650231976,0.0,458.7734054254215,0.4974828750055167 +16,1490.7811750729018,0.09993170499215054,0.0,456.1216121525058,0.49460733399610035 +17,1491.8823143613793,0.10000551778799968,0.0,456.4585183570265,0.4949726670020027 +18,1482.5530138883219,0.09938014572250448,0.0,453.60411179275127,0.4918774170000688 +19,1497.833219014053,0.10040442546011884,0.0,458.2792659418024,0.4969470420037396 +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598 +21,1482.0456464125618,0.09934613530048009,0.0,453.4488768898246,0.4917090839953744 +22,1496.2841105630728,0.10030058389617058,0.0,457.80529843008793,0.4964330830043764 +23,1488.0433927335248,0.09974818291550643,0.0,455.2839562206765,0.4936989999987418 +24,1474.3194514814572,0.09882822439210734,0.0,451.0849588670419,0.48914570800116053 +25,1494.2725955009112,0.10016574577697487,0.0,457.189852308039,0.49576570799399633 +26,1490.5446941438947,0.09991585293899281,0.0,456.0492580978762,0.4945288749950123 +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964 +28,1488.174128032597,0.09975694650975983,0.0,455.3239561860471,0.49374237500160234 +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..890b8d810 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,305.2603840466375,0.0,0.0,70.23005972174292,0.08228550000058021 +1,311.8426015201836,0.0,0.0,71.74440468894973,0.08405979199596914 +2,309.3793097001562,0.0,0.0,71.17768479775621,0.08339579099992989 +3,307.9774835661487,0.0,0.0,70.85517215525161,0.08301791699341265 +4,309.9985372950614,0.0,0.0,71.32014806270742,0.08356270899821538 +5,317.29333507952543,0.0,0.0,72.99843358823003,0.08552908300043782 +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142 +7,307.5211780361769,0.0,0.0,70.7501917310103,0.08289491600589827 +8,307.52566313089267,0.0,0.0,70.75122359916683,0.08289612500084331 +9,309.28022911738526,0.0,0.0,71.1548897165438,0.08336908299679635 +10,309.2709546995603,0.0,0.0,71.15275598759708,0.08336658299958799 +11,307.9507398632547,0.0,0.0,70.84901933638095,0.08301070800371235 +12,305.0501624157072,0.0,0.0,70.18169485533174,0.08222883299458772 +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517 +14,263.23315694845485,0.0,0.0,60.56102035961698,0.07095670800481457 +15,281.69931878209627,0.0,0.0,64.80945781231267,0.07593441700009862 +16,310.20798354982014,0.0,0.0,71.36833454136281,0.08361916699504945 +17,307.4975319241093,0.0,0.0,70.74475156271633,0.08288854199781781 +18,312.2465028928711,0.0,0.0,71.83732869418587,0.08416866700281389 +19,264.4872154298051,0.0,0.0,60.84953667762806,0.07129474999965169 +20,307.0058314139288,0.0,0.0,70.63162795415167,0.08275599999615224 +21,313.308421210062,0.0,0.0,72.0816400779537,0.08445491600286914 +22,309.2122178896617,0.0,0.0,71.1392426400334,0.08335074999922654 +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184 +24,287.64237234819007,0.0,0.0,66.17675284530496,0.07753641699673608 +25,306.2275548020647,0.0,0.0,70.45257290545298,0.08254620899970178 +26,307.19379440968873,0.0,0.0,70.67487186363874,0.08280666700011352 +27,303.97726690862385,0.0,0.0,69.9348579925237,0.08193962500081398 +28,311.54442867805176,0.0,0.0,71.67580523220816,0.08397941700241063 +29,307.42689047443804,0.0,0.0,70.72849936135475,0.08286950000183424 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..65dc1c9b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cb525a361 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..aac52a457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a7429c46b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3412ebb0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3ecdc165d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8ec79f408 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1369f85a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d5702ccac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..162c97e07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8e19981af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..67c52a399 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..309a2dd84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8019976b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..27e6b3a30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b4de576b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..11dab5887 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7334b19a3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1515.8144076794304,0.10160976053622672,0.0,463.7808170075175,0.5029127919988241 +1,1494.2954542299487,0.10016727806877254,0.0,457.1968461985674,0.495773292001104 +2,1490.567926608189,0.09991741028342868,0.0,456.0563663369963,0.4945365829989896 +3,1487.0834114226138,0.09968383237851011,0.0,454.9902389196463,0.4933805000036955 +4,1489.19388742284,0.09982530415758412,0.0,455.63596327659974,0.4940807080056402 +5,1491.6388015866264,0.09998919436832192,0.0,456.38401282847735,0.4948918749942095 +6,1489.4443053961663,0.09984209045422753,0.0,455.7125815299125,0.49416379100148333 +7,1483.7489697588537,0.09946031436914154,0.0,453.9700282188851,0.49227420799434185 +8,1490.2046075822445,0.09989305587761392,0.0,455.94520471072246,0.49441604199819267 +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724 +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.49239462499826914 +11,1498.6863274365103,0.10046161197456162,0.0,458.54028425589075,0.49723008400178514 +12,1494.202268227495,0.10016103152081346,0.0,457.16833487149955,0.4957423750020098 +13,1500.9979926125363,0.10061657009066471,0.0,459.24756475049065,0.49799704200268025 +14,1506.2064293036553,0.10096570782300947,0.0,460.8411457401562,0.4997250829983386 +15,1499.4482572416061,0.10051268650231976,0.0,458.7734054254215,0.4974828750055167 +16,1490.7811750729018,0.09993170499215054,0.0,456.1216121525058,0.49460733399610035 +17,1491.8823143613793,0.10000551778799968,0.0,456.4585183570265,0.4949726670020027 +18,1482.5530138883219,0.09938014572250448,0.0,453.60411179275127,0.4918774170000688 +19,1497.833219014053,0.10040442546011884,0.0,458.2792659418024,0.4969470420037396 +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598 +21,1482.0456464125618,0.09934613530048009,0.0,453.4488768898246,0.4917090839953744 +22,1496.2841105630728,0.10030058389617058,0.0,457.80529843008793,0.4964330830043764 +23,1488.0433927335248,0.09974818291550643,0.0,455.2839562206765,0.4936989999987418 +24,1474.3194514814572,0.09882822439210734,0.0,451.0849588670419,0.48914570800116053 +25,1494.2725955009112,0.10016574577697487,0.0,457.189852308039,0.49576570799399633 +26,1490.5446941438947,0.09991585293899281,0.0,456.0492580978762,0.4945288749950123 +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964 +28,1488.174128032597,0.09975694650975983,0.0,455.3239561860471,0.49374237500160234 +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..890b8d810 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,305.2603840466375,0.0,0.0,70.23005972174292,0.08228550000058021 +1,311.8426015201836,0.0,0.0,71.74440468894973,0.08405979199596914 +2,309.3793097001562,0.0,0.0,71.17768479775621,0.08339579099992989 +3,307.9774835661487,0.0,0.0,70.85517215525161,0.08301791699341265 +4,309.9985372950614,0.0,0.0,71.32014806270742,0.08356270899821538 +5,317.29333507952543,0.0,0.0,72.99843358823003,0.08552908300043782 +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142 +7,307.5211780361769,0.0,0.0,70.7501917310103,0.08289491600589827 +8,307.52566313089267,0.0,0.0,70.75122359916683,0.08289612500084331 +9,309.28022911738526,0.0,0.0,71.1548897165438,0.08336908299679635 +10,309.2709546995603,0.0,0.0,71.15275598759708,0.08336658299958799 +11,307.9507398632547,0.0,0.0,70.84901933638095,0.08301070800371235 +12,305.0501624157072,0.0,0.0,70.18169485533174,0.08222883299458772 +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517 +14,263.23315694845485,0.0,0.0,60.56102035961698,0.07095670800481457 +15,281.69931878209627,0.0,0.0,64.80945781231267,0.07593441700009862 +16,310.20798354982014,0.0,0.0,71.36833454136281,0.08361916699504945 +17,307.4975319241093,0.0,0.0,70.74475156271633,0.08288854199781781 +18,312.2465028928711,0.0,0.0,71.83732869418587,0.08416866700281389 +19,264.4872154298051,0.0,0.0,60.84953667762806,0.07129474999965169 +20,307.0058314139288,0.0,0.0,70.63162795415167,0.08275599999615224 +21,313.308421210062,0.0,0.0,72.0816400779537,0.08445491600286914 +22,309.2122178896617,0.0,0.0,71.1392426400334,0.08335074999922654 +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184 +24,287.64237234819007,0.0,0.0,66.17675284530496,0.07753641699673608 +25,306.2275548020647,0.0,0.0,70.45257290545298,0.08254620899970178 +26,307.19379440968873,0.0,0.0,70.67487186363874,0.08280666700011352 +27,303.97726690862385,0.0,0.0,69.9348579925237,0.08193962500081398 +28,311.54442867805176,0.0,0.0,71.67580523220816,0.08397941700241063 +29,307.42689047443804,0.0,0.0,70.72849936135475,0.08286950000183424 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..65dc1c9b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cb525a361 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..aac52a457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a7429c46b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3412ebb0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3ecdc165d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8ec79f408 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1369f85a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d5702ccac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..162c97e07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8e19981af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..67c52a399 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..309a2dd84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8019976b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..27e6b3a30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b4de576b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..11dab5887 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a47e281c0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1507.0006290040246,0.10121797087296991,0.0,462.93725944934005,0.49603141699481057 +1,1496.950668211312,0.10054296343155725,0.0,459.850000414799,0.4927234579954529 +2,1468.6940451139656,0.09864510221067248,0.0,451.169815810879,0.48342275000322843 +3,1468.9915282259046,0.09866508271789984,0.0,451.2611999907679,0.4835206669959007 +4,1479.1725047147079,0.09934888985232893,0.0,454.3887058879351,0.4868717499994091 +5,1500.238416336118,0.10076378563131586,0.0,460.85996754909496,0.49380562500300584 +6,1509.7154372095292,0.10140031145902001,0.0,463.7712245097378,0.49692500000674045 +7,1461.69840489276,0.09817523876501769,0.0,449.0208170316026,0.4811201249976875 +8,1471.3692332004143,0.09882478170423237,0.0,451.99160992125746,0.48430329199618427 +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694 +10,1480.732072591294,0.09945363851193037,0.0,454.8677913407322,0.4873850840012892 +11,1466.0959491930096,0.09847060062640552,0.0,450.37170373163667,0.4825675830070395 +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.48561145800340455 +13,1514.13083342455,0.10169687234750482,0.0,465.12759516003786,0.4983783339994261 +14,1512.595950245761,0.10159378164011292,0.0,464.65609262799643,0.49787312500120606 +15,1502.2335709419558,0.10089779055267692,0.0,461.4728613910934,0.4944623330011382 +16,1495.3046447168208,0.10043240796468147,0.0,459.34435656113146,0.4921816670030239 +17,1495.762512977266,0.10046316076952935,0.0,459.48500963957076,0.49233237499720417 +18,1505.7422143211961,0.10113344922230753,0.0,462.5506855930939,0.49561720799829345 +19,1500.2357579650031,0.10076360708133725,0.0,460.8591509210095,0.49380474999634316 +20,1501.366192061746,0.10083953289269776,0.0,461.2064102735686,0.49417683399951784 +21,1472.4900455897166,0.09890006127186562,0.0,452.3359135704227,0.4846722090005642 +22,1462.9344104531917,0.09825825530290547,0.0,449.40050700372194,0.4815269579994492 +23,1472.7381563218598,0.09891672567423945,0.0,452.4121309920798,0.48475387500366196 +24,1482.564812614605,0.09957673482836643,0.0,455.4307928600052,0.4879883330067969 +25,1501.7557027604369,0.10086569444949875,0.0,461.32606451385743,0.49430504200427094 +26,1471.3960688887162,0.09882658412810971,0.0,451.99985360726447,0.48431212500145193 +27,1465.3707267413292,0.09842189092875986,0.0,450.14892181117136,0.48232887499762 +28,1493.8271059364454,0.10033316880422102,0.0,458.8904697209055,0.4916953329957323 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..0e2ea37f9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.3303920568681,0.0,0.0,69.15518081324026,0.07560670800012304 +1,314.38863582784177,0.0,0.0,61.53335078178913,0.06727383299585199 +2,317.2772995012459,0.0,0.0,62.098731125891405,0.06789195800229209 +3,321.3954204399756,0.0,0.0,62.904745566004465,0.06877316600002814 +4,319.5576625612702,0.0,0.0,62.54505253860031,0.06837991700012935 +5,331.31404809256026,0.0,0.0,64.84605744902893,0.07089558400184615 +6,331.38667532066586,0.0,0.0,64.86027232893883,0.07091112499620067 +7,318.43373701362606,0.0,0.0,62.325073515523684,0.06813941600557882 +8,336.7251033504346,0.0,0.0,65.90512995782265,0.07205345800321084 +9,304.5621182908196,0.0,0.0,59.610067044204875,0.06517112499568611 +10,322.1328293892706,0.0,0.0,63.0490740765663,0.06893095900159096 +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169 +12,320.85566267461155,0.0,0.0,62.799102103969375,0.06865766699775122 +13,374.90570573356854,0.0,0.0,73.37798403639027,0.08022345900099026 +14,386.9158076380404,0.0,0.0,75.72864728942714,0.08279341700108489 +15,335.4308044090277,0.0,0.0,65.65180480003387,0.07177649999357527 +16,388.6902847933515,0.0,0.0,76.07595477070589,0.08317312500003027 +17,387.62594807984937,0.0,0.0,75.86763870301657,0.08294537500478327 +18,390.1639250154146,0.0,0.0,76.36438129245846,0.08348845900036395 +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579 +20,388.70488876434206,0.0,0.0,76.07881311597464,0.08317625000199769 +21,391.1120095675774,0.0,0.0,76.54994404082375,0.08369133300584508 +22,385.3631097374103,0.0,0.0,75.42474729531305,0.08246116599912057 +23,381.9621437858659,0.0,0.0,74.7590971825402,0.08173341699875891 +24,385.65558154605156,0.0,0.0,75.48199100053641,0.08252375000301981 +25,356.2938326643222,0.0,0.0,69.73519678595287,0.07624083400150994 +26,391.34392044465426,0.0,0.0,76.5953345280203,0.08374095799808856 +27,326.9782229625547,0.0,0.0,63.99743310880556,0.06996779100154527 +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193 +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a9874fae7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1f2e12d18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1fe5b41e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..23aa68ef9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..846b5a56a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7ff8eef3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e1fbdbdb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c090f2979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c2512884e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9c8d49eda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..87176fad7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..add841523 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c5c2c87ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0436fd233 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..939397a36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bfa7ccad9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c9f3f37e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..31f3410fd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1507.0006290040246,0.10121797087296991,0.0,462.93725944934005,0.49603141699481057 +1,1496.950668211312,0.10054296343155725,0.0,459.850000414799,0.4927234579954529 +2,1468.6940451139656,0.09864510221067248,0.0,451.169815810879,0.48342275000322843 +3,1468.9915282259046,0.09866508271789984,0.0,451.2611999907679,0.4835206669959007 +4,1479.1725047147079,0.09934888985232893,0.0,454.3887058879351,0.4868717499994091 +5,1500.238416336118,0.10076378563131586,0.0,460.85996754909496,0.49380562500300584 +6,1509.7154372095292,0.10140031145902001,0.0,463.7712245097378,0.49692500000674045 +7,1461.69840489276,0.09817523876501769,0.0,449.0208170316026,0.4811201249976875 +8,1471.3692332004143,0.09882478170423237,0.0,451.99160992125746,0.48430329199618427 +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694 +10,1480.732072591294,0.09945363851193037,0.0,454.8677913407322,0.4873850840012892 +11,1466.0959491930096,0.09847060062640552,0.0,450.37170373163667,0.4825675830070395 +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.48561145800340455 +13,1514.13083342455,0.10169687234750482,0.0,465.12759516003786,0.4983783339994261 +14,1512.595950245761,0.10159378164011292,0.0,464.65609262799643,0.49787312500120606 +15,1561.482643030755,0.10487726523736768,0.0,479.67365210730736,0.5139642499998445 +16,1502.2335709419558,0.10089779055267692,0.0,461.4728613910934,0.4944623330011382 +17,1495.3046447168208,0.10043240796468147,0.0,459.34435656113146,0.4921816670030239 +18,1495.762512977266,0.10046316076952935,0.0,459.48500963957076,0.49233237499720417 +19,1505.7422143211961,0.10113344922230753,0.0,462.5506855930939,0.49561720799829345 +20,1500.2357579650031,0.10076360708133725,0.0,460.8591509210095,0.49380474999634316 +21,1501.366192061746,0.10083953289269776,0.0,461.2064102735686,0.49417683399951784 +22,1472.4900455897166,0.09890006127186562,0.0,452.3359135704227,0.4846722090005642 +23,1462.9344104531917,0.09825825530290547,0.0,449.40050700372194,0.4815269579994492 +24,1472.7381563218598,0.09891672567423945,0.0,452.4121309920798,0.48475387500366196 +25,1482.564812614605,0.09957673482836643,0.0,455.4307928600052,0.4879883330067969 +26,1501.7557027604369,0.10086569444949875,0.0,461.32606451385743,0.49430504200427094 +27,1471.3960688887162,0.09882658412810971,0.0,451.99985360726447,0.48431212500145193 +28,1465.3707267413292,0.09842189092875986,0.0,450.14892181117136,0.48232887499762 +29,1493.8271059364454,0.10033316880422102,0.0,458.8904697209055,0.4916953329957323 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0e2ea37f9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.3303920568681,0.0,0.0,69.15518081324026,0.07560670800012304 +1,314.38863582784177,0.0,0.0,61.53335078178913,0.06727383299585199 +2,317.2772995012459,0.0,0.0,62.098731125891405,0.06789195800229209 +3,321.3954204399756,0.0,0.0,62.904745566004465,0.06877316600002814 +4,319.5576625612702,0.0,0.0,62.54505253860031,0.06837991700012935 +5,331.31404809256026,0.0,0.0,64.84605744902893,0.07089558400184615 +6,331.38667532066586,0.0,0.0,64.86027232893883,0.07091112499620067 +7,318.43373701362606,0.0,0.0,62.325073515523684,0.06813941600557882 +8,336.7251033504346,0.0,0.0,65.90512995782265,0.07205345800321084 +9,304.5621182908196,0.0,0.0,59.610067044204875,0.06517112499568611 +10,322.1328293892706,0.0,0.0,63.0490740765663,0.06893095900159096 +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169 +12,320.85566267461155,0.0,0.0,62.799102103969375,0.06865766699775122 +13,374.90570573356854,0.0,0.0,73.37798403639027,0.08022345900099026 +14,386.9158076380404,0.0,0.0,75.72864728942714,0.08279341700108489 +15,335.4308044090277,0.0,0.0,65.65180480003387,0.07177649999357527 +16,388.6902847933515,0.0,0.0,76.07595477070589,0.08317312500003027 +17,387.62594807984937,0.0,0.0,75.86763870301657,0.08294537500478327 +18,390.1639250154146,0.0,0.0,76.36438129245846,0.08348845900036395 +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579 +20,388.70488876434206,0.0,0.0,76.07881311597464,0.08317625000199769 +21,391.1120095675774,0.0,0.0,76.54994404082375,0.08369133300584508 +22,385.3631097374103,0.0,0.0,75.42474729531305,0.08246116599912057 +23,381.9621437858659,0.0,0.0,74.7590971825402,0.08173341699875891 +24,385.65558154605156,0.0,0.0,75.48199100053641,0.08252375000301981 +25,356.2938326643222,0.0,0.0,69.73519678595287,0.07624083400150994 +26,391.34392044465426,0.0,0.0,76.5953345280203,0.08374095799808856 +27,326.9782229625547,0.0,0.0,63.99743310880556,0.06996779100154527 +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193 +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a34eb3c47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bf75895f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..eda54e97d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..03f6e10e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5b5893df6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3741feead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d23675d79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0cd725ee9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e33581714 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f7fc7dbb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1d2d61213 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fbadac8d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f000e1570 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2eb4bfe40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f28bd6560 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3a8110434 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..46e1bf959 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..b599fc070 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 880 samples (with smell) vs 882 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 481.32 ms | 73.56 ms | +| **Average Power** | 4.194 W | 5.170 W | +| **Total Energy** | 1776.26 J | 335.44 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.68% | 0.00e+00 | +6.469 | large | βœ… | +| `gpu_mj` | +86.23% | 6.17e-33 | +0.604 | medium | βœ… | +| `ane_mj` | +85.06% | 3.92e-22 | +0.473 | small | βœ… | +| `dram_mj` | +85.42% | 0.00e+00 | +28.839 | large | βœ… | +| `time_s` | +84.91% | 0.00e+00 | +53.990 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.469, large) +- **`gpu_mj`**: 86.2% lower energy (Cohen’s d = +0.604, medium) +- **`ane_mj`**: 85.1% lower energy (Cohen’s d = +0.473, small) +- **`dram_mj`**: 85.4% lower energy (Cohen’s d = +28.839, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +53.990, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..fe155cb4b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/with_smell.csv @@ -0,0 +1,881 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1507.0006290040246,0.1012179708729699,0.0,462.9372594493401,0.4960314169948105 +1,1496.950668211312,0.1005429634315572,0.0,459.850000414799,0.4927234579954529 +2,1468.6940451139656,0.0986451022106724,0.0,451.169815810879,0.4834227500032284 +3,1468.9915282259046,0.0986650827178998,0.0,451.2611999907679,0.4835206669959007 +4,1479.172504714708,0.0993488898523289,0.0,454.3887058879351,0.4868717499994091 +5,1500.238416336118,0.1007637856313158,0.0,460.85996754909496,0.4938056250030058 +6,1509.7154372095292,0.10140031145902,0.0,463.7712245097378,0.4969250000067404 +7,1461.69840489276,0.0981752387650176,0.0,449.0208170316026,0.4811201249976875 +8,1471.3692332004143,0.0988247817042323,0.0,451.99160992125746,0.4843032919961842 +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694 +10,1480.732072591294,0.0994536385119303,0.0,454.8677913407322,0.4873850840012892 +11,1466.0959491930096,0.0984706006264055,0.0,450.3717037316366,0.4825675830070395 +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.4856114580034045 +13,1514.13083342455,0.1016968723475048,0.0,465.12759516003786,0.4983783339994261 +14,1512.595950245761,0.1015937816401129,0.0,464.6560926279964,0.497873125001206 +15,1502.2335709419558,0.1008977905526769,0.0,461.4728613910934,0.4944623330011382 +16,1495.3046447168208,0.1004324079646814,0.0,459.34435656113146,0.4921816670030239 +17,1495.762512977266,0.1004631607695293,0.0,459.4850096395707,0.4923323749972041 +18,1505.742214321196,0.1011334492223075,0.0,462.5506855930939,0.4956172079982934 +19,1500.2357579650031,0.1007636070813372,0.0,460.8591509210095,0.4938047499963431 +20,1501.366192061746,0.1008395328926977,0.0,461.2064102735686,0.4941768339995178 +21,1472.4900455897166,0.0989000612718656,0.0,452.3359135704227,0.4846722090005642 +22,1462.9344104531915,0.0982582553029054,0.0,449.40050700372194,0.4815269579994492 +23,1472.7381563218598,0.0989167256742394,0.0,452.4121309920798,0.4847538750036619 +24,1482.564812614605,0.0995767348283664,0.0,455.4307928600052,0.4879883330067969 +25,1501.7557027604369,0.1008656944494987,0.0,461.32606451385743,0.4943050420042709 +26,1471.3960688887162,0.0988265841281097,0.0,451.99985360726447,0.4843121250014519 +27,1465.3707267413292,0.0984218909287598,0.0,450.14892181117136,0.48232887499762 +28,1493.8271059364454,0.100333168804221,0.0,458.8904697209055,0.4916953329957323 +0,1471.069231866696,0.1008456582331723,0.0,459.85620154326585,0.4853926670039072 +1,1468.578895878081,0.1006749391626123,0.0,459.0777225815124,0.484570958004042 +2,1461.668066437173,0.1002011836596023,0.0,456.9173974877869,0.4822906670015072 +3,1442.4901829574026,0.0988864893942737,0.0,450.92239163788827,0.475962749995233 +4,1460.192632019516,0.1001000387564221,0.0,456.4561767292852,0.4818038340017665 +5,1457.0270850402062,0.0998830321996393,0.0,455.4666268303555,0.4807593329969677 +6,1451.4069459189002,0.0994977569068301,0.0,453.70977149514545,0.4789049169994541 +7,1454.602166278216,0.0997167976517217,0.0,454.7085972918513,0.4799592090057558 +8,1454.5623855826552,0.0997140705805942,0.0,454.6961618475098,0.4799460830035968 +9,1468.8514054091331,0.1006936204064576,0.0,459.16290905344687,0.4846608750012819 +10,1454.7620315206584,0.0997277568338278,0.0,454.7585711622551,0.4800119579958846 +11,1461.4857195792638,0.100188683303729,0.0,456.86039586500453,0.4822304999979678 +12,1456.5270230567808,0.09984875163773,0.0,455.310307468049,0.480594332999317 +13,1456.90813089835,0.0998748775808932,0.0,455.4294417688732,0.4807200829964131 +14,1448.7476526265218,0.0993154553694887,0.0,452.8784764848686,0.4780274590011686 +15,1454.4989959096524,0.0997097250520761,0.0,454.6763462374673,0.4799251670046942 +16,1457.879845299315,0.0999414911543792,0.0,455.73319966396946,0.4810407089971704 +17,1455.9537216856306,0.0998094503234973,0.0,455.131093475148,0.4804051669998443 +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.4814032080030301 +19,1468.4137238864755,0.1006636161889179,0.0,459.02608982146575,0.4845164580037817 +20,1463.4019935002775,0.1003200489123173,0.0,457.4594230401672,0.4828627919996506 +21,1455.2831840044878,0.0997634832049143,0.0,454.9214834144096,0.4801839169958839 +22,1465.0343928246136,0.100431954171972,0.0,457.9697110241926,0.483401416997367 +23,1452.4517724066477,0.0995693825058256,0.0,454.036384226565,0.47924966699793 +24,1458.159298145276,0.0999606483806916,0.0,455.8205566159539,0.4811329170042882 +25,1464.0746768847828,0.1003661631244995,0.0,457.6697038477178,0.4830847499979427 +26,1460.330527893312,0.1001094918806255,0.0,456.49928297565265,0.48184933399898 +27,1466.457926870734,0.1005295411684155,0.0,458.41470772797504,0.4838711249976768 +28,1458.690297278725,0.0999970497654626,0.0,455.9865469305096,0.4813081249958486 +29,1453.5116250142864,0.0996420381847918,0.0,454.3676941226507,0.4795993750012712 +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394 +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.4822331670002313 +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149 +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802 +4,1458.91194965116,0.3992552485989172,0.0,454.9180845077496,0.4819204169980366 +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.4810576669988222 +6,1468.611380787982,0.4019096574484203,0.0,457.94256219102095,0.4851244170058635 +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.4791258749974076 +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833 +9,1466.35176146208,0.4012912754577062,0.0,457.2379674444348,0.4843780000010156 +10,1460.154775553515,0.3995953683468763,0.0,455.3056226172367,0.4823309580024215 +11,1457.9792906101436,0.3990000111136337,0.0,454.6272626630594,0.4816123329947004 +12,1457.422775179489,0.3988477115134636,0.0,454.4537299602991,0.4814285000029485 +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474 +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208 +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636 +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052 +17,1457.9613811923634,0.398995109906916,0.0,454.6216781464386,0.4816064170008758 +18,1469.355588079086,0.4021133220130226,0.0,458.1746209903382,0.4853702499967767 +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.4835539170017 +20,1460.7395477092175,0.3997554008645718,0.0,455.4879663351075,0.4825241250000545 +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.4834142079998855 +22,1459.13710420092,0.3993168658443987,0.0,454.98829222420534,0.4819947919968399 +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122 +24,1458.813181355714,0.399228219030504,0.0,454.8872865670067,0.4818877910001902 +25,1457.0466346307994,0.3987447744662271,0.0,454.33644177306024,0.4813042500027222 +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921 +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982 +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989 +29,1471.0342193441872,0.4025727070658452,0.0,458.69805197594184,0.4859247499989578 +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.4925840419964515 +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336 +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091 +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.4959620000008726 +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922 +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767 +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257 +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117 +8,2281.0575381943677,2.99700990419698,84.21597830793513,509.79138470390626,0.4952505420005764 +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.495590375001484 +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.4952706249969196 +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.4955860830013989 +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566 +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922 +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516 +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.4973028749955119 +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166 +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952 +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721 +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778 +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292 +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.4962343750012223 +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198 +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.4910860830059391 +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296 +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179 +26,2277.258468092052,2.992018425230434,84.07571774897518,508.9423341316967,0.4944257090028259 +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.4949400409968802 +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396 +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236 +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.4962522920031915 +1,1548.7716415444704,0.5093526556274295,0.0,468.3667452712757,0.4990278339973883 +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157 +3,1537.9614894800372,0.5057974642008454,0.0,465.0976282481506,0.4955447079992154 +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305 +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575 +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797 +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397 +8,1543.794275756641,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953 +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.4938442089987802 +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.4946216250027646 +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.4986832079957821 +12,1536.410091706245,0.5052872478753273,0.0,464.6284673296259,0.4950448340023285 +13,1501.0461152669352,0.4936569114010968,0.0,453.9339852636886,0.4836502500038477 +14,1503.158875751745,0.4943517460266646,0.0,454.5729088630523,0.4843309999996563 +15,1497.0097852395263,0.492329462367746,0.0,452.7133516292214,0.4823497089964803 +16,1521.5805489456525,0.5004101783421352,0.0,460.14383932487135,0.4902666249981848 +17,1499.5455354643086,0.4931634078483803,0.0,453.48019229684735,0.4831667500038747 +18,1505.117621218829,0.4949959289252891,0.0,455.1652565111009,0.4849621250032214 +19,1493.7772756646511,0.4912663699839896,0.0,451.73580274594457,0.4813081660031457 +20,1496.3047548280974,0.492097595317287,0.0,452.50014214742265,0.4821225420018891 +21,1502.9231341998309,0.4942742164656317,0.0,454.5016178473639,0.4842550419998588 +22,1510.012481501061,0.4966057273079569,0.0,456.64551978391,0.4865392920037266 +23,1504.4246171495324,0.4947680170410652,0.0,454.9556839364942,0.4847388330017566 +24,1509.3322796742225,0.4963820257643792,0.0,456.43981875787216,0.4863201249972917 +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552 +26,1505.193401276411,0.4950208511104179,0.0,455.1881732910663,0.4849865420037531 +27,1520.90862436748,0.5001891989807543,0.0,459.9406414361029,0.4900501249940134 +28,1511.0160978228655,0.4969357918733388,0.0,456.9490251539309,0.4868626660027075 +29,1510.3806433826635,0.4967268066375784,0.0,456.7568562634747,0.4866579169975011 +0,1515.8144076794304,0.1016097605362267,0.0,463.7808170075175,0.5029127919988241 +1,1494.2954542299487,0.1001672780687725,0.0,457.1968461985674,0.495773292001104 +2,1490.567926608189,0.0999174102834286,0.0,456.0563663369963,0.4945365829989896 +3,1487.0834114226138,0.0996838323785101,0.0,454.9902389196463,0.4933805000036955 +4,1489.19388742284,0.0998253041575841,0.0,455.63596327659974,0.4940807080056402 +5,1491.6388015866264,0.0999891943683219,0.0,456.38401282847735,0.4948918749942095 +6,1489.4443053961663,0.0998420904542275,0.0,455.7125815299125,0.4941637910014833 +7,1483.7489697588535,0.0994603143691415,0.0,453.9700282188851,0.4922742079943418 +8,1490.2046075822443,0.0998930558776139,0.0,455.94520471072246,0.4944160419981926 +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724 +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.4923946249982691 +11,1498.6863274365105,0.1004616119745616,0.0,458.5402842558907,0.4972300840017851 +12,1494.202268227495,0.1001610315208134,0.0,457.1683348714995,0.4957423750020098 +13,1500.9979926125363,0.1006165700906647,0.0,459.24756475049065,0.4979970420026802 +14,1506.206429303655,0.1009657078230094,0.0,460.8411457401562,0.4997250829983386 +15,1499.448257241606,0.1005126865023197,0.0,458.7734054254215,0.4974828750055167 +16,1490.7811750729018,0.0999317049921505,0.0,456.1216121525058,0.4946073339961003 +17,1491.8823143613793,0.1000055177879996,0.0,456.4585183570265,0.4949726670020027 +18,1482.553013888322,0.0993801457225044,0.0,453.60411179275127,0.4918774170000688 +19,1497.833219014053,0.1004044254601188,0.0,458.2792659418024,0.4969470420037396 +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598 +21,1482.0456464125618,0.09934613530048,0.0,453.4488768898246,0.4917090839953744 +22,1496.2841105630728,0.1003005838961705,0.0,457.80529843008793,0.4964330830043764 +23,1488.0433927335248,0.0997481829155064,0.0,455.2839562206765,0.4936989999987418 +24,1474.3194514814572,0.0988282243921073,0.0,451.0849588670419,0.4891457080011605 +25,1494.2725955009112,0.1001657457769748,0.0,457.189852308039,0.4957657079939963 +26,1490.5446941438947,0.0999158529389928,0.0,456.0492580978762,0.4945288749950123 +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964 +28,1488.174128032597,0.0997569465097598,0.0,455.3239561860471,0.4937423750016023 +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141 +0,1478.185480632039,0.1001910585367731,0.0,453.1975547813372,0.4826704579973011 +1,1472.4376515691376,0.0998014720568313,0.0,451.43532527040054,0.4807936249999329 +2,1467.3052593754642,0.0994535997407738,0.0,449.86178282743384,0.4791177500010235 +3,1469.146722041262,0.0995784136400846,0.0,450.4263576986495,0.4797190410026815 +4,1470.385895182594,0.0996624044993963,0.0,450.8062763522695,0.480123666995496 +5,1466.8412883523577,0.0994221518957337,0.0,449.7195337417024,0.4789662499970291 +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107 +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546 +8,1478.2217224431022,0.1001935149980638,0.0,453.2086661745757,0.4826822920003906 +9,1476.0122465403242,0.1000437572495192,0.0,452.5312619586588,0.4819608339967089 +10,1472.6817615590717,0.0998180177735978,0.0,451.51016706257434,0.4808733339959872 +11,1475.1950634268462,0.0999883687734244,0.0,452.2807214184565,0.4816939999946044 +12,1475.1436376964589,0.0999848831497113,0.0,452.2649547805279,0.4816772080012015 +13,1471.505244398319,0.0997382737216727,0.0,451.14945813436634,0.4804891669991775 +14,1487.7908044971591,0.1008421050923268,0.0,456.1424553676251,0.4858068749963422 +15,1468.6795629390188,0.0995467497078027,0.0,450.2831311782943,0.4795664999983273 +16,1475.7644370380624,0.1000269607806915,0.0,452.455285931328,0.4818799170025158 +17,1467.6844997653377,0.0994793045637471,0.0,449.97805431001626,0.4792415829942911 +18,1482.7513106263857,0.1005005294023893,0.0,454.5973946634747,0.4841613339958712 +19,1477.909345926593,0.1001723421924443,0.0,453.1128945171565,0.4825802920022397 +20,1479.7538741610845,0.1002973638752683,0.0,453.678409262464,0.4831825840010424 +21,1471.3194508052536,0.0997256806763462,0.0,451.0924955926728,0.4804284999991068 +22,1489.160260118828,0.1009349264670134,0.0,456.562317385791,0.4862540419999277 +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504 +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.4825493750031455 +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.4815804590034531 +26,1470.1209876523235,0.0996444491303172,0.0,450.7250582328016,0.4800371669989545 +27,1479.45489308524,0.100277099009415,0.0,453.5867445192541,0.483084958003019 +28,1481.6974196226456,0.1004290969220744,0.0,454.2742817441834,0.4838172079980722 +29,1478.0856947176749,0.10018429507135,0.0,453.1669613727401,0.4826378750003641 +0,1445.9512284681282,0.0993735381060291,0.0,451.0233649505643,0.479501458001323 +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221 +2,1445.2778876531952,0.0993272625070921,0.0,450.8133354321888,0.4792781669966643 +3,1473.4560079931225,0.1012638143493852,0.0,459.6026987270767,0.488622500000929 +4,1438.408509378345,0.0988551619200731,0.0,448.6706282345721,0.4770001669967314 +5,1462.0207397229187,0.1004779212674964,0.0,456.035791992744,0.4848303749968181 +6,1459.873808732507,0.1003303726334995,0.0,455.36611792590986,0.4841184169999906 +7,1445.935900531451,0.0993724846878574,0.0,451.01858383662216,0.4794963750027818 +8,1451.6571155923002,0.0997656773292609,0.0,452.8031541717392,0.4813936249993276 +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256 +10,1453.1768162644023,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993 +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.4802655410021543 +12,1459.790501679045,0.1003246473251428,0.0,455.3401326597149,0.4840907909965608 +13,1455.5734090741,0.1000348260611724,0.0,454.02473054964133,0.4826923330037971 +14,1458.6344227252057,0.1002451953673512,0.0,454.9795267072848,0.4837074160022894 +15,1454.1420362947786,0.0999364544324277,0.0,453.578254517312,0.4822176660018158 +16,1452.8549083992968,0.099847996087187,0.0,453.17677157437976,0.4817908330005593 +17,1456.5114923274932,0.1000992961830495,0.0,454.3173389428009,0.483003417000873 +18,1445.2579097656906,0.0993258895193134,0.0,450.807103898324,0.47927154199715 +19,1460.9679426822058,0.1004055673977507,0.0,455.707401895925,0.4844812500014086 +20,1450.2062685342962,0.0996659673234419,0.0,452.3506036919953,0.4809125000028871 +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235 +22,1455.721926964596,0.1000450330086545,0.0,454.0710564819467,0.4827415840045432 +23,1450.0845164884097,0.0996575998686252,0.0,452.3126266037338,0.4808721250010421 +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355 +25,1455.2424545927595,0.1000120810908613,0.0,453.921498711056,0.4825825829975656 +26,1450.4460031843537,0.0996824431767859,0.0,452.4253820983725,0.4809919999970589 +27,1449.8539520475165,0.0996417542413302,0.0,452.24070858331766,0.4807956660006311 +28,1454.8514398281357,0.0999852084551545,0.0,453.79953277512817,0.4824529160032398 +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427 +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.4848300000012386 +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943 +3,1463.6997649458424,0.9049459287293112,0.0,456.293847174846,0.4853247499995632 +4,1469.782118043518,0.908706399834558,0.0,458.1899602721361,0.4873414999965462 +5,1441.0904332217217,0.8909675001027336,0.0,449.2456128295784,0.4778280839964282 +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285 +7,1447.019725460083,0.8946333399148689,0.0,451.0940107259638,0.4797940829957952 +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928 +9,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.4854045410029357 +10,1476.406582468932,0.9128020362863496,0.0,460.25507118527264,0.4895380000016303 +11,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.480668666998099 +12,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029 +13,1453.0520656111892,0.8983628900529438,0.0,452.9745327844733,0.4817942500012577 +14,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347 +15,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518 +16,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.4827774170043994 +17,1452.131203241068,0.8977935583684558,0.0,452.6874630973391,0.4814889160043094 +18,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651 +19,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.4821297079979558 +20,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213 +21,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.4835610840018489 +22,1452.891467970985,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396 +23,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403 +24,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.486632667001686 +25,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.4821981659988523 +26,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354 +27,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348 +28,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541 +0,1473.756556484359,1.730836715732926,0.0,462.06552715105465,0.4929395419967477 +1,1446.159224005418,1.6984253408008363,0.0,453.4129610784978,0.4837088339991169 +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742 +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.4820898329999181 +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.4803014579956652 +5,1452.578920577144,1.7059648808159893,0.0,455.4257225943078,0.4858560829961789 +6,1471.581150604885,1.7282818349072917,0.0,461.38347416201515,0.4922119160037255 +7,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.4822434169982443 +8,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321 +9,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.4814543749962467 +10,1442.9805152629783,1.694692142277764,0.0,452.4163434727796,0.4826456250011688 +11,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.4814219580002827 +12,1428.712272923545,1.677934966473248,0.0,447.942834677123,0.477873208001256 +13,1442.6170148012343,1.694265233272607,0.0,452.30237550993223,0.48252404199593 +14,1464.2447277915137,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759 +15,1449.9154471216857,1.702836794547057,0.0,454.59064623055264,0.4849652090051677 +16,1444.6339619987823,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075 +17,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.4831488749987329 +18,1438.8095895874126,1.6897936458021423,0.0,451.1086370116896,0.481250541000918 +19,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.4836824999947566 +20,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994 +21,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702 +22,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.4835075840019271 +23,1448.596476504854,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375 +24,1447.9104558714089,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382 +25,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544 +26,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.4828053749952232 +27,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.4813471250017755 +28,1439.678106400043,1.690813665547546,0.0,451.3809422829379,0.4815410410010372 +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.4942865000048186 +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005 +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.4824957500022719 +3,1508.1492778731936,1.951623100383721,0.0,443.18107904547,0.4817460420017596 +4,1509.5093876893875,1.953383152770635,0.0,443.5807576083317,0.4821805000028689 +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.484043999997084 +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509 +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.4944804589977138 +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042 +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149 +11,1548.4815781326529,2.003815181123219,0.0,455.0330307133976,0.494629332999466 +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555 +13,1548.2143040147903,2.003469314603102,0.0,454.95449019112107,0.4945439579969388 +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453 +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676 +16,1553.068674945917,2.0097511214414663,0.0,456.380983827333,0.4960945830025594 +17,1547.303042521918,2.002290095141161,0.0,454.686709104972,0.4942528749961639 +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793 +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576 +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.4960286249988712 +21,1560.5320011886452,2.0194090512728877,0.0,458.5741387265515,0.4984785830019973 +22,1572.43476681286,2.034811845075521,0.0,462.0718564858995,0.5022806669949205 +23,1545.401732006987,1.9998297010831043,0.0,454.127994620955,0.4936455420029233 +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539 +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +26,1565.7153470029502,2.0261165686101243,0.0,460.0973041218824,0.500134292000439 +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341 +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.4930831250021583 +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.4954994579966296 +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778 +1,1488.7041689159475,1.9934442540384945,0.0,459.4224524140717,0.4818315829979838 +2,1487.819878516848,1.9922601479872095,0.0,459.1495554394523,0.4815453749979497 +3,1491.727934254883,1.9974932167312307,0.0,460.3556033493242,0.4828102499959641 +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.4815899169989279 +5,1501.2124715705363,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793 +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881 +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226 +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.4821794169984059 +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622 +10,1497.9545334031648,2.005830923142963,0.0,462.2771667536816,0.4848255410033744 +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.4850677080030436 +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.4837472500003059 +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.487756000002264 +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639 +15,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.4869370829983381 +16,1491.0045635252643,1.996524589616048,0.0,460.1323670868452,0.4825761249958304 +17,1493.856851787251,2.0003439365121194,0.0,461.0125992348264,0.4834992920004879 +18,1491.1042056393792,1.9966580150500528,0.0,460.1631172018688,0.4826083750012913 +19,1484.7932830352129,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615 +20,1505.3592048868377,2.0157461233085665,0.0,464.562289885181,0.4872221249970607 +21,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039 +22,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.478613375002169 +23,1486.3696611665118,1.9903182393766896,0.0,458.7020102350144,0.481075999996392 +24,1490.7165777906416,1.996138963297592,0.0,460.0434930746517,0.4824829159988439 +25,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.4882316250004805 +26,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877 +27,1483.4506884174402,1.986409598844992,0.0,457.80119888047585,0.4801312499985215 +28,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782 +0,1445.0937116123694,0.0994855344525118,0.0,451.26638427659367,0.4804801249993033 +1,1451.89089555387,0.0999534774459373,0.0,453.38897369477166,0.4827401250004186 +2,1450.1180395946535,0.0998314275600422,0.0,452.8353554123517,0.482150666997768 +3,1449.4058631584062,0.0997823987304132,0.0,452.6129606411546,0.4819138750026468 +4,1446.5463840973528,0.0995855417374316,0.0,451.7200173209899,0.4809631249954691 +5,1445.161635344861,0.0994902105705896,0.0,451.2875951481944,0.4805027090042131 +6,1451.1624299232567,0.0999033272086139,0.0,453.1614922182729,0.4824979170007282 +7,1461.9935620683018,0.1006489819447163,0.0,456.5437821012335,0.4860991669993382 +8,1443.721239879732,0.099391048480602,0.0,450.837795908011,0.4800237910021678 +9,1457.922268440679,0.1003686992065088,0.0,455.2724196007243,0.4847454999980982 +10,1463.2726687745692,0.1007370403268629,0.0,456.9432149226504,0.4865244579996215 +11,1434.2653374502413,0.0987400695860367,0.0,447.8849556422627,0.4768797920041834 +12,1440.3483418552953,0.099158845849092,0.0,449.7845247714817,0.4789023339981213 +13,1458.1363075618142,0.100383434442147,0.0,455.3392586295791,0.4848166660012794 +14,1443.7793888920285,0.0993950516712046,0.0,450.8559543805843,0.4800431250041583 +15,1447.6267393486346,0.0996599173427703,0.0,452.0573850668063,0.4813223329983884 +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.4835391250016982 +17,1450.7958782332366,0.099878092450139,0.0,453.0470273538308,0.4823760419967584 +18,1447.8402822026578,0.0996746184135661,0.0,452.12406912393624,0.4813933339974028 +19,1442.8031718956472,0.0993278453240687,0.0,450.5511063899757,0.4797185419956804 +20,1471.4015954886795,0.1012966653616825,0.0,459.4816740805919,0.4892272500001127 +21,1448.4089689054954,0.0997137688853405,0.0,452.30165566390485,0.4815824170000269 +22,1437.411540338623,0.0989566656955703,0.0,448.867435595107,0.4779258749986184 +23,1446.9099281828417,0.0996105694414146,0.0,451.8335429862568,0.4810839999991003 +24,1445.926441829572,0.0995428626451732,0.0,451.526424958506,0.4807569999975385 +25,1444.6335482723644,0.0994538551258024,0.0,451.12268685063987,0.4803271249984391 +26,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.4812947079990408 +27,1448.532656600787,0.0997222839984937,0.0,452.3402802171675,0.4816235420003067 +28,1441.3934810706207,0.0992307970537637,0.0,450.1108954358723,0.479249832998903 +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455 +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247 +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637 +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687 +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102 +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535 +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377 +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012 +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362 +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754 +10,2530.966135457355,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819 +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904 +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.4971295420036767 +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964 +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.495697750004183 +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316 +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772 +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.4958168329976615 +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591 +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655 +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278 +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505 +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175 +23,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116 +24,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507 +25,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086 +26,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.4958617500014952 +27,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456 +28,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.4988807499976246 +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908 +1,1573.4160634871228,22.800282743848378,0.0,461.1160630781749,0.4818563750013709 +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289 +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567 +4,1576.0847815073448,22.83895498499088,0.0,461.8981758171432,0.482673666003393 +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.4821627080018515 +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886 +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355 +8,1576.0729479760837,22.83878350596198,0.0,461.8947078016104,0.4826700420017005 +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.4872023339994484 +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.4906837089947657 +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.4933289170003263 +12,1613.171083804858,23.376370483618174,0.0,472.76694098765734,0.4940312920007272 +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545 +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044 +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329 +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758 +17,1588.96402650174,23.025587392155135,0.0,465.6726553620341,0.4866179160017054 +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.4825434170052176 +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111 +20,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.4996486660020309 +21,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483 +22,1630.1989199727825,23.623119889674296,0.0,477.7572350101371,0.4992460419962299 +23,1632.2295419060226,23.652545516689397,0.0,478.3523429495976,0.4998679170021205 +24,1613.240197605974,23.37737200778176,0.0,472.7871959504829,0.4940524580015335 +25,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.4955697920013335 +26,1610.8625013861165,23.34291694700681,0.0,472.090372048948,0.4933242920014891 +27,1614.9038790021225,23.401480320330567,0.0,473.2747657887544,0.4945619580030325 +28,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.4993293750012526 +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.4891792919952422 +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176 +2,1470.6334323813912,0.0996521649118915,0.0,454.2145676684016,0.4823543749953387 +3,1485.0875958430825,0.1006315991129864,0.0,458.67882875699206,0.4870952089986531 +4,1472.876125743892,0.099804132930492,0.0,454.9072378971828,0.4830899579974357 +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356 +6,1476.1830010833758,0.1000282113985979,0.0,455.9285875548095,0.4841745829980937 +7,1463.426296356512,0.0991637993600961,0.0,451.9885974833182,0.4799905000036233 +8,1471.8095321193011,0.0997318590643937,0.0,454.57781361550656,0.4827401250004186 +9,1476.4591795005704,0.1000469256319136,0.0,456.01388703026225,0.484265167004196 +10,1480.2938895968366,0.1003067709165972,0.0,457.1982618378502,0.4855229169988888 +11,1473.468242797507,0.0998442556048273,0.0,455.090117046803,0.4832841669995105 +12,1470.8582862106548,0.0996674013198103,0.0,454.2840152156956,0.4824281250039348 +13,1481.467574625828,0.1003863014450677,0.0,457.56076198661873,0.4859078750014305 +14,1498.777378307361,0.1015592377955431,0.0,462.9070058720858,0.4915853329948731 +15,1481.2213787556393,0.1003696188707997,0.0,457.48472281310535,0.4858271249977406 +16,1470.3611931394696,0.099633717602566,0.0,454.1304848324962,0.4822650830028578 +17,1478.7457002780488,0.1002018634570539,0.0,456.7200936372517,0.4850151249993359 +18,1464.457703027839,0.0992336889093469,0.0,452.30715404880334,0.480328792000364 +19,1474.8152039772676,0.0999355275660516,0.0,455.5061346460632,0.4837259580017417 +20,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.4817905829986557 +21,1467.7080463118232,0.0994539366868174,0.0,453.311043418514,0.4813948750015697 +22,1476.5658867326172,0.1000541562622332,0.0,456.04684424325905,0.4843001660046866 +23,1477.537206367709,0.1001199742304141,0.0,456.3468425422278,0.4846187500006635 +24,1452.3435435551507,0.0984128166301233,0.0,448.56561820010234,0.4763554579985793 +25,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921 +26,1471.1452606296632,0.0996868471052106,0.0,454.3726491055499,0.4825222500003292 +27,1466.003983774469,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276 +28,1458.1899954967043,0.0988089803376801,0.0,450.37133237914605,0.4782730410006479 +0,1491.8732837180632,0.1671341986195764,0.0,457.51315530122855,0.4853813329973491 +1,1490.1256809068748,0.1669384151046217,0.0,456.9772175073916,0.4848127500008559 +2,1488.2943221687606,0.1667332484336851,0.0,456.4155942623698,0.4842169169933186 +3,1478.1767640016478,0.1655997808699836,0.0,453.3128401534932,0.48092516700126 +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.4807152499997755 +5,1475.4721125595993,0.165296779431292,0.0,452.48340401521887,0.4800452080016839 +6,1484.248678964546,0.166280016016283,0.0,455.1749158429732,0.4829006660002051 +7,1479.026359174096,0.1656949608090896,0.0,453.57338571880194,0.481201582995709 +8,1478.2323440915482,0.1656060074938437,0.0,453.3298849136479,0.4809432499969261 +9,1480.85157375242,0.1658994391513096,0.0,454.133124732795,0.4817954169993754 +10,1481.4601486859867,0.1659676176520789,0.0,454.3197565608008,0.4819934170009219 +11,1482.2434061160802,0.1660553657901548,0.0,454.5599583139699,0.4822482499948819 +12,1491.9479478691496,0.1671425632261376,0.0,457.5360525752291,0.4854056249969289 +13,1501.6120194051157,0.1682252267936093,0.0,460.49973582482613,0.4885498330040718 +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161 +15,1473.289209598557,0.1650522293471529,0.0,451.81397261489656,0.4793349999963538 +16,1479.9291063236064,0.1657960953511691,0.0,453.85023141429053,0.4814952919987263 +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442 +18,1492.6903539863913,0.1672257348016391,0.0,457.76372644600696,0.4856471670063911 +19,1482.245585323591,0.1660556099262386,0.0,454.5606266120856,0.4822489590005716 +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339 +21,1481.4204468550586,0.1659631698656828,0.0,454.3075811903203,0.4819805000006454 +22,1521.4543559992917,0.1704481589029252,0.0,466.5847901808677,0.4950055420049466 +23,1507.892303639942,0.1689288054984138,0.0,462.4257121713581,0.4905931249959394 +24,1517.9368635996732,0.1700540950908195,0.0,465.5060799016094,0.4938611250036047 +25,1487.6624369941349,0.1666624584923186,0.0,456.22181387687306,0.4840113329992164 +26,1484.790276829119,0.1663406910924154,0.0,455.3410077963781,0.4830768749961862 +27,1484.8006502773037,0.1663418532272751,0.0,455.34418902434305,0.4830802500000573 +28,1470.9937325949477,0.1647950676205941,0.0,451.1100181046144,0.4785881659990991 +0,1501.502028693519,2.3088191112663026,0.0,460.8269101501379,0.4996751660000882 +1,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831 +2,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203 +3,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406 +4,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604 +5,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825 +6,1507.9842242384736,2.3187866082600825,0.0,462.8163647675051,0.5018323340045754 +7,1525.2583386023323,2.3453485473126583,0.0,468.117973820144,0.5075808749970747 +8,1487.4017761634502,2.28713753382386,0.0,456.4993929829304,0.4949828339958912 +9,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076 +10,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088 +11,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453 +12,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.4975445419986499 +13,1486.045287815104,2.285051698331785,0.0,456.08307231051214,0.4945314169963239 +14,1484.8389210893304,2.283196700803686,0.0,455.7128255575126,0.4941299580023042 +15,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077 +16,1499.9656215906025,2.306456619565252,0.0,460.35537050221234,0.4991638749997946 +17,1488.350338699801,2.288596112813635,0.0,456.7905168937592,0.4952984999981709 +18,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.495122624997748 +19,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.496049250003125 +20,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.4955626670052879 +21,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.4955531250016065 +22,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009 +23,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.4958858329991926 +24,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721 +25,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.4946299160001217 +26,1504.0738956441755,2.3127738016056005,0.0,461.6162434161208,0.5005310409978847 +27,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622 +28,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531 +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.4865007500047795 +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.4838650000019697 +2,1480.717294074354,2.098418389982776,0.0,450.6936386485229,0.4811567920041852 +3,1488.925131299569,2.1100502366859266,0.0,453.19190083487734,0.483823916001711 +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666 +5,1479.727777126183,2.097016082756709,0.0,450.39245421874654,0.48083525000402 +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296 +7,1480.7792238858788,2.0985061546465045,0.0,450.7124885479659,0.4811769160005497 +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014 +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.4740181250017485 +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322 +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.4793756250001024 +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.4862565000003087 +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238 +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.4834997500001918 +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.4806878329982282 +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534 +17,1477.318804252413,2.093602174511349,0.0,449.6592225922709,0.4800524579986813 +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.4824538749962812 +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.4760040000037406 +20,1479.903703499236,2.0972653991778625,0.0,450.44600184564536,0.4808924170065438 +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.4817604169948026 +22,1503.04044703954,2.130053945866405,0.0,457.48825303997336,0.488410665995616 +23,1480.9454071466057,2.0987416634852356,0.0,450.7630706129957,0.4812309169938089 +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.4807852919984725 +25,1473.9158306771965,2.088779604828779,0.0,448.6234417926699,0.478946667004493 +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397 +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.480225541999971 +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355 +29,1510.0737441282995,2.1400212772485183,0.0,459.6290143245985,0.4906961249944288 +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691 +1,1494.6927432930363,2.473550026918434,0.0,455.734879283864,0.4958449999976437 +2,1493.1747248593665,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275 +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.4984720829961588 +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588 +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215 +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248 +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.4923728750000009 +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.4965036249996046 +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.494061249999504 +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.495179375000589 +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688 +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212 +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.4918156250059837 +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422 +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985 +16,1492.1949067183675,2.469416385570248,0.0,454.9732837954698,0.4950163749963394 +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.493825708006625 +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.4948959169996669 +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.4921009589961613 +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491 +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438 +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575 +23,1499.6939449160884,2.4818264586231,0.0,457.2597559036128,0.4975040839999565 +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.4907058749959105 +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.4958353749971138 +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.4948671250022016 +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389 +28,1498.364826079165,2.4796269149713344,0.0,456.8545048475564,0.4970631660034996 +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.4953921250053099 +0,1498.5408128623817,0.8690099505837388,0.0334234596378361,458.5364427714736,0.4839190410057199 +1,1491.5130351462874,0.8649345135229948,0.0332667120585767,456.3860227316141,0.4816495829945779 +2,1490.9282803951478,0.8645954118495337,0.0332536696865205,456.2070944293751,0.4814607499938574 +3,1498.858609293904,0.8691942420350508,0.0334305477705788,458.6336848645716,0.4840216660013539 +4,1501.085510016672,0.8704856308784092,0.0334802165722465,459.31509115464985,0.4847407920024125 +5,1479.0403956377672,0.8577015788241764,0.0329885222624683,452.56953691880295,0.4776218330007395 +6,1495.4335579034869,0.8672080407157502,0.0333541554121442,457.5856580992068,0.482915624997986 +7,1489.2027842934413,0.8635947895980701,0.0332151842153103,455.6791122498432,0.4809035409998614 +8,1492.1808861224167,0.8653218030374225,0.0332816078091316,456.5903775334769,0.4818652499961899 +9,1495.2063392563043,0.8670762756922921,0.0333490875266266,457.5161317777906,0.4828422499995213 +10,1487.4661958807744,0.8625877348700822,0.033176451341157,455.14773594933297,0.4803427500010002 +11,1490.5684218110532,0.8643867283837936,0.0332456433993766,456.0969817960486,0.4813445420004427 +12,1490.2245606219176,0.8641873218728641,0.033237973918187,455.99176418360855,0.4812334999951417 +13,1487.687995347552,0.862716357288644,0.0331813983572555,455.2156040631887,0.4804143750006915 +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.1105941707556,0.4876910419989144 +15,1484.8391828501335,0.861064319261815,0.0331178584331467,454.34389984434006,0.4794944169989321 +16,1492.7811242622347,0.8656698835913483,0.0332949955227441,456.7740435765272,0.4820590829986031 +17,1492.3149443588663,0.865399543957411,0.0332845978445158,456.6313978289124,0.4819085409981198 +18,1495.187245138547,0.8670652029352565,0.033348661651356,457.5102891949532,0.4828360839965171 +19,1506.9395171583026,0.8738803935790314,0.0336107843684242,461.10635075041273,0.4866312079975614 +20,1500.7598418289483,0.8702967745634584,0.0334729528678253,459.2154403936957,0.4846356250054668 +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446 +22,1492.8802179047152,0.8657273484001917,0.0332972057076996,456.8043651039319,0.4820910829948843 +23,1490.5962918881432,0.8644028903555643,0.0332462650136755,456.1055097226149,0.4813535419962136 +24,1503.3667264430414,0.8718085176205883,0.033531096831561,460.01311743218656,0.4854774580016965 +25,1474.89227025517,0.8552960639374243,0.0328960024591317,451.30025773682786,0.4762822920019971 +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.4817185420033638 +27,1500.2008916666362,0.8699726370766709,0.0334604860414104,459.0444080021095,0.4844551249989308 +28,1492.6384201170483,0.8655871288734974,0.0332918126489806,456.7303777313658,0.4820130000007339 +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809 +0,1449.4460304052652,1.1053478844400375,0.0,457.0446025207368,0.484376374995918 +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133 +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.4932186669975635 +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786 +4,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017 +5,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.481087624997599 +6,1442.221389474941,1.099838371563632,0.0,454.7665024238108,0.4819620419948478 +7,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643 +8,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937 +9,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358 +10,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781 +11,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.4888670830041519 +12,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.4850446670025121 +13,1448.268022775928,1.1044495355442336,0.0,456.6731488636687,0.4839827079995302 +14,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958 +15,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285 +16,1444.9364893090867,1.101908907337135,0.0,455.6226375944004,0.4828693749950616 +17,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807 +18,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.4813432079972699 +19,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893 +20,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.4814878750039497 +21,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644 +22,1434.6330467519774,1.0940514996144306,0.0,452.3737185526942,0.4794261670031119 +23,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179 +24,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259 +25,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956 +26,1433.8784631668889,1.093476053994577,0.0,452.1357805077576,0.4791740000000573 +27,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892 +0,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201 +1,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.4963012079970212 +2,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.4911223749950295 +3,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304 +4,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217 +5,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269 +6,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.4948305409998283 +7,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823 +8,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474 +9,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459 +10,2305.401423920151,3.8313967910576663,84.2240964155981,517.0719843236086,0.4973134169995319 +11,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.4950779169957968 +12,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218 +13,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.4946130000025732 +14,2299.0294440458956,3.82080705905282,83.99130648074375,515.642830926085,0.4959388749994105 +15,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636 +16,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.4990050830019754 +17,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.4981591250034398 +18,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401 +19,2313.5898284762848,3.8450052787660263,84.52324647583058,518.9085384908586,0.4990797920036129 +20,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719 +21,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981 +22,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781 +23,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469 +24,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.4902136250020703 +25,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838 +26,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756 +27,2287.752886269415,3.802066302310544,83.57933575861786,513.1136435813881,0.4935063340017223 +28,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755 +0,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959 +1,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304 +2,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075 +3,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075 +4,1450.011697038547,1.2283451883239749,0.0,451.3006618939489,0.4817874590007704 +5,1448.3522481877958,1.226939423104802,0.0,450.784176153694,0.4812360830037505 +6,1450.3252002552106,1.228610765607592,0.0,451.3982364235029,0.4818916250005713 +7,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.4825925410041236 +8,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156 +9,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383 +10,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.4837174170024809 +11,1451.4555736764398,1.229568336333271,0.0,451.7500530841753,0.4822672079972108 +12,1470.749938151556,1.245913128456798,0.0,457.75521806058686,0.488678040994273 +13,1452.0386934092628,1.2300623132573831,0.0,451.9315428762396,0.4824609580027754 +14,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524 +15,1453.7180781688437,1.231484966738723,0.0,452.4542334553027,0.4830189579952275 +16,1455.6323420932597,1.2331065928852851,0.0,453.0500276670965,0.4836550000036368 +17,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.4817882499992265 +18,1474.4356339985911,1.2490353837934811,0.0,458.9023515483401,0.4899026670027524 +19,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922 +20,1456.8314348645265,1.2341223776813306,0.0,453.42323249189207,0.4840534160030074 +21,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.4828239169946755 +22,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974 +23,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.4845845000018016 +24,1454.071838478107,1.2317846469237803,0.0,452.5643375751858,0.483136499999091 +25,1445.4984738230935,1.2245219115656858,0.0,449.8959693465928,0.4802878749978845 +26,1453.5452760949363,1.231338581301661,0.0,452.4004506544535,0.4829615419948823 +27,1445.4045486582245,1.224442344949385,0.0,449.8667361416741,0.4802566669968655 +28,1451.5710690043643,1.2296661756338918,0.0,451.7859997720845,0.4823055829983786 +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.4949604580033337 +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918 +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945 +3,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.4960029169960762 +4,1570.4229559700957,1.455749590500236,0.0,463.25922195873414,0.4943787920055911 +5,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.4950067500030854 +6,1574.566642586953,1.4595907022674324,0.0,464.48156848064974,0.4956832500029122 +7,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233 +8,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.4953499580005882 +9,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374 +10,1602.5001032995297,1.4854844424467897,0.0,472.7216627986351,0.5044768750012736 +11,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.4955200000040349 +12,1593.1679060882757,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409 +13,1568.685115034934,1.4541386479066511,0.0,462.7465760906574,0.4938317090054624 +14,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915 +15,1579.992203831771,1.4646200852946931,0.0,466.0820553249158,0.4973912500063306 +16,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326 +17,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526 +18,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758 +19,1574.658629351438,1.459675972095042,0.0,464.5087036653359,0.4957122080013505 +20,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.498898249999911 +21,1565.789148638521,1.451454146970356,0.0,461.89229467906654,0.492920040996978 +22,1568.7101272229097,1.4541618336874398,0.0,462.75395443844394,0.4938395829958608 +23,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.4961264590019709 +24,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402 +25,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641 +26,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868 +27,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838 +28,1584.888340812466,1.4691587029821032,0.0,467.526367253532,0.4989325839997036 +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.4804191670045838 +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.4837152499967487 +2,1437.3842689682,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448 +3,1435.7789167975,0.7680104908680055,0.0,454.194725947244,0.4835930420013028 +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.4805542079993756 +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554 +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761 +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.4821173750024172 +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863 +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.4824882920001982 +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.4820442080017528 +11,1430.9528339766905,0.7654289776609116,0.0,452.6680414845096,0.4819675409962656 +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251 +13,1439.437319842241,0.7699674021203672,0.0,455.3520262452711,0.4848252499941736 +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234 +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461 +16,1429.0497166778464,0.7644109838501899,0.0,452.0660087969688,0.4813265409975429 +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.4826296669998555 +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621 +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332 +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.4819131670010392 +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717 +22,1436.4061141941868,0.7683459841496418,0.0,454.3931337566707,0.4838042920018779 +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.4801694580019102 +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861 +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.4797095419999095 +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817 +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837 +28,1433.8801282741756,0.7669948125565385,0.0,453.5940626258276,0.4829535000026226 +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747 +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345 +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269 +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.6473879249105,0.4944300420029321 +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.4967914580047363 +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.4987448340034461 +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246 +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705 +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.498717749993375 +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657 +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015 +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.4956257500016363 +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514 +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.4924703750002663 +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.4987167500003124 +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936 +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026 +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889 +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749 +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826 +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.495682166001643 +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.4990872080015833 +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322 +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656 +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.6036226210395,0.494387499995355 +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963 +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746 +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637 +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.4997166250032023 +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594 +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264 +0,1533.8317063038091,1.9223856119804856,3.480180849275017,458.8204142525148,0.482414374993823 +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305 +2,1532.7859211727923,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907 +3,1538.3956003927374,1.9281056426038587,3.490536077127675,460.1856277683658,0.4838497919990914 +4,1522.9541430561326,1.9087525184704217,3.4555002489550732,455.5665709170007,0.4789932089988724 +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.6217034126296,0.4843082919978769 +6,1558.8705879131594,1.9537674027910896,3.536992711949386,466.31038201443187,0.4902894999977434 +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.1310771797192,0.4806381669986876 +8,1530.6126061866742,1.9183510417448648,3.4728768859174273,457.85747363576144,0.4814019170007668 +9,1529.805810596203,1.9173398667713937,3.4710463105344194,457.6161340640759,0.4811481670039939 +10,1543.3268559157984,1.934286095535932,3.501724828125394,461.66073138799834,0.4854007499961881 +11,1528.3825913511537,1.9155561142331377,3.467817103353094,457.19040154016074,0.4807005420007044 +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202 +13,1532.1754590843225,1.9203098002655896,3.476422914273912,458.32497525994063,0.4818934590002754 +14,1548.060719170639,1.9402191523196637,3.5124657067855973,463.0767883717431,0.4868896249972749 +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935 +16,1531.8200143511997,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334 +17,1544.5072416097676,1.9357654993488456,3.504403059166014,462.0138242670011,0.4857719999999972 +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605 +19,1532.2398437391903,1.920390494994772,3.476568999559501,458.3442348657349,0.4819137089943979 +20,1550.311531046087,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921 +21,1542.165283280946,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617 +22,1531.4933249285327,1.9194548662587223,3.4748751889166525,458.12092609688784,0.4816789169999538 +23,1524.2148076912772,1.910332537677336,3.458360628553798,455.94367791495455,0.4793897080016904 +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068 +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.4818482909977319 +26,1538.7289158546507,1.9285233943334643,3.4912923518105825,460.2853335820371,0.4839546249932027 +27,1566.0945228565863,1.9628213221618085,3.5533834280515495,468.4713028049295,0.4925615419997484 +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.4850850830043782 +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073 +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.4835799590000533 +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713 +4,1424.9465914698055,2.933752351272618,0.0,449.7211609933968,0.4767452079977374 +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784 +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895 +7,1442.0672958435391,2.969001326225478,0.0,455.1245516145416,0.4824732919951202 +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.479428958002245 +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.4815057919986429 +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.4818122079959721 +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.4855657499938388 +12,1443.4372101016247,2.97182177521617,0.0,455.5569042615079,0.4829316250034026 +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.4798023340044892 +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.481620083002781 +15,1430.940346220044,2.946092597704819,0.0,451.6128237133354,0.4787505420026718 +16,1433.879062454506,2.952142975813154,0.0,452.5402990900995,0.4797337499985588 +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338 +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.4819761249964358 +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.4826666669978294 +20,1445.466802782904,2.97600040361984,0.0,456.19745513017386,0.483610667004541 +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073 +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602 +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814 +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204 +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738 +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832 +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.4825754170014988 +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.4834982090033008 +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.4834735410040593 +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.4793388750040321 +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867 +2,1441.9302878449869,0.8980466361832127,0.0,453.4470292994718,0.4827684999982011 +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275 +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.4821773330040741 +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047 +6,1443.403897575609,0.8989644130499505,0.0,453.9104386337028,0.4832618750006077 +7,1444.6679358767042,0.8997516670204607,0.0,454.3079435737015,0.4836850840001716 +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.4824928329981048 +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.4815640420056297 +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736 +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.4813424999956623 +12,1446.278188474604,0.9007545462450248,0.0,454.8143232947564,0.4842242080048891 +13,1461.7319885114002,0.9103793063712816,0.0,459.6741142133216,0.4893982499997946 +14,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.482734375000291 +15,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.4800897910026833 +16,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867 +17,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679 +18,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.4850834579992806 +19,1445.4697617578422,0.9002510511040261,0.0,454.5600955444884,0.4839535409992095 +20,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.4804581249991315 +21,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503 +22,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.4839730419989791 +23,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.4804693330006557 +24,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.4802924999967217 +25,1455.9690940043993,0.9067901259023524,0.0,457.8618439417322,0.4874687919946154 +26,1436.5572954868485,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864 +27,1432.2019249021291,0.8919877277255372,0.0,450.3877293363795,0.4795113750005839 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..3ad77b8b2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/cleaned/mac/without_smell.csv @@ -0,0 +1,883 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.3303920568681,0.0,0.0,69.15518081324026,0.075606708000123 +1,314.38863582784177,0.0,0.0,61.53335078178913,0.0672738329958519 +2,317.2772995012459,0.0,0.0,62.098731125891405,0.067891958002292 +3,321.3954204399756,0.0,0.0,62.904745566004465,0.0687731660000281 +4,319.5576625612702,0.0,0.0,62.54505253860031,0.0683799170001293 +5,331.31404809256026,0.0,0.0,64.84605744902893,0.0708955840018461 +6,331.38667532066586,0.0,0.0,64.86027232893883,0.0709111249962006 +7,318.43373701362606,0.0,0.0,62.32507351552368,0.0681394160055788 +8,336.7251033504346,0.0,0.0,65.90512995782265,0.0720534580032108 +9,304.5621182908196,0.0,0.0,59.610067044204875,0.0651711249956861 +10,322.1328293892706,0.0,0.0,63.0490740765663,0.0689309590015909 +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169 +12,320.85566267461155,0.0,0.0,62.799102103969375,0.0686576669977512 +13,374.90570573356854,0.0,0.0,73.37798403639027,0.0802234590009902 +14,386.9158076380404,0.0,0.0,75.72864728942714,0.0827934170010848 +15,335.4308044090277,0.0,0.0,65.65180480003387,0.0717764999935752 +16,388.6902847933515,0.0,0.0,76.07595477070589,0.0831731250000302 +17,387.62594807984937,0.0,0.0,75.86763870301657,0.0829453750047832 +18,390.1639250154146,0.0,0.0,76.36438129245846,0.0834884590003639 +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579 +20,388.70488876434206,0.0,0.0,76.07881311597464,0.0831762500019976 +21,391.1120095675774,0.0,0.0,76.54994404082375,0.083691333005845 +22,385.3631097374103,0.0,0.0,75.42474729531305,0.0824611659991205 +23,381.9621437858659,0.0,0.0,74.7590971825402,0.0817334169987589 +24,385.6555815460515,0.0,0.0,75.48199100053641,0.0825237500030198 +25,356.2938326643222,0.0,0.0,69.73519678595287,0.0762408340015099 +26,391.34392044465426,0.0,0.0,76.5953345280203,0.0837409579980885 +27,326.9782229625547,0.0,0.0,63.99743310880556,0.0699677910015452 +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193 +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412 +0,302.5242036763287,0.0,0.0,63.689306037121824,0.0675712500014924 +1,302.7327655579679,0.0,0.0,63.733213801677465,0.0676178339999751 +2,316.69315087742956,0.0,0.0,66.67224228998516,0.0707360000014887 +3,307.5654342587211,0.0,0.0,64.75061773867812,0.0686972499970579 +4,306.4536190758211,0.0,0.0,64.51655138438339,0.0684489170016604 +5,300.7051879657525,0.0,0.0,63.30635536121105,0.0671649579962831 +6,307.374413716436,0.0,0.0,64.71040288767074,0.0686545839998871 +7,310.5906561688394,0.0,0.0,65.38750656186093,0.0693729580016224 +8,308.0642609293506,0.0,0.0,64.85563387986328,0.0688086670052143 +9,304.84745437059416,0.0,0.0,64.17841144644088,0.068090167005721 +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945 +11,305.72011556246974,0.0,0.0,64.3621295920989,0.0682850830053212 +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476 +13,308.66251527816155,0.0,0.0,64.98158216382348,0.068942291996791 +14,307.0794838197012,0.0,0.0,64.64831238309499,0.0685887090003234 +15,309.8218998360231,0.0,0.0,65.22566312337328,0.0692012500003329 +16,306.41127454986776,0.0,0.0,64.50763674734058,0.0684394590061856 +17,309.1954754486052,0.0,0.0,65.0937843049695,0.0690613330007181 +18,306.76198031973763,0.0,0.0,64.58146954099739,0.0685177920022397 +19,296.2609044530781,0.0,0.0,62.37071672696381,0.0661722910008393 +20,307.906254599804,0.0,0.0,64.82236938943242,0.0687733750019106 +21,308.04205891249177,0.0,0.0,64.8509597710509,0.0688037080035428 +22,307.9202455579482,0.0,0.0,64.82531485430489,0.068776499996602 +23,308.26330444060716,0.0,0.0,64.89753777696993,0.068853124997986 +24,304.56744666191145,0.0,0.0,64.11946245513926,0.0680276249986491 +25,312.2052199573735,0.0,0.0,65.72741472786811,0.0697335840013693 +26,307.5005161295389,0.0,0.0,64.73695076411346,0.0686827500030631 +27,318.98524529080635,0.0,0.0,67.15478848227502,0.0712479579960927 +28,329.1152803585185,0.0,0.0,69.28742744389862,0.0735105840067262 +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206 +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733 +2,291.12877419678506,0.0,0.0,64.01819623510673,0.0687049580010352 +3,289.13703351517285,0.0,0.0,63.58021944577464,0.0682349170019733 +4,287.799607294358,0.0,0.0,63.286124111191775,0.0679192909956327 +5,291.371363998525,0.0,0.0,64.07154088156179,0.0687622080004075 +6,289.56394921064606,0.0,0.0,63.67409670969008,0.068335667005158 +7,292.13638840929866,0.0,0.0,64.23976706596653,0.0689427499964949 +8,283.5650571496894,0.0,0.0,62.35496138817781,0.0669199580006534 +9,287.130631504071,0.0,0.0,63.13901868151625,0.0677614160013035 +10,289.67976939419503,0.0,0.0,63.699565161782736,0.0683629999984987 +11,292.1418630957887,0.0,0.0,64.2409709303218,0.0689440419955644 +12,293.0022242707416,0.0,0.0,64.43016133475076,0.0691470829988247 +13,293.2524074633523,0.0,0.0,64.4851757412225,0.0692061250010738 +14,292.1868810008963,0.0,0.0,64.2508702097428,0.0689546659996267 +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097 +16,289.3466056584585,0.0,0.0,63.62630362495372,0.0682843749964376 +17,290.05283648513034,0.0,0.0,63.78160130644845,0.0684510419960133 +18,292.61538991766724,0.0,0.0,64.34509781743297,0.069055791995197 +19,291.45399282192466,0.0,0.0,64.08971066998504,0.068781707996095 +20,292.67577253005464,0.0,0.0,64.35837574208907,0.0690700419945642 +21,292.25150521505736,0.0,0.0,64.26508084775038,0.0689699169961386 +22,288.79928071261065,0.0,0.0,63.50594878924803,0.0681552090027253 +23,290.00304733298486,0.0,0.0,63.77065284654021,0.0684392920011305 +24,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247 +25,293.6300636211133,0.0,0.0,64.56822100558581,0.0692952499957755 +26,289.9055876714127,0.0,0.0,63.749221808825894,0.0684162920006201 +27,284.5073479632638,0.0,0.0,62.5621678327499,0.0671423339954344 +28,296.6712669039547,0.0,0.0,65.23697093966203,0.0700129590040887 +0,411.18397650340427,1.167188903294335,11.571844269803837,72.9993288374657,0.0697049590016831 +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.0697707910003373 +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.0708791670040227 +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.067930666002212 +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.0708610420042532 +5,413.635956981174,1.1741491074080366,11.64084972201682,73.43463988903406,0.0701206250014365 +6,420.48804217203855,1.1935994708857542,11.83368618278162,74.6511211933976,0.0712822080022306 +7,410.6007148882734,1.1655332539407597,11.555429689069816,72.89577979646637,0.0696060830014175 +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.0684407080043456 +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.0699344580061733 +10,429.4455521502114,1.2190263037516138,12.085775068623144,76.24138796892237,0.0728007079960662 +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.0671137079989421 +12,445.29103640889906,1.264005375045537,12.53171043259432,79.05450759927656,0.0754868750009336 +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.0677466670022113 +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.0702987499971641 +15,410.0169695614531,1.163876231520751,11.539001495362871,72.79214487996926,0.0695071250011096 +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.0676083329963148 +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717 +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.0705336250030086 +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.0665746669983491 +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.0700137500025448 +21,403.1911817621741,1.144500515951021,11.34690511528584,71.58033226905101,0.0683500000013737 +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.0718155840004328 +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.0667553750026854 +24,401.4849191657379,1.1396571103650306,11.29888620847616,71.27741184540147,0.0680607500034966 +25,426.8551889258219,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923 +26,413.6236695024976,1.1741142281092791,11.640503918683429,73.43245843803464,0.070118541996635 +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523 +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.0703375419980147 +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.0663894170065759 +0,315.89567899052815,0.0,0.0,70.69041793477467,0.0832259160015382 +1,312.32888500652234,0.0,0.0,69.8922488739558,0.0822862080021877 +2,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424 +3,315.90675086282243,0.0,0.0,70.69289557322259,0.0832288329984294 +4,299.2312370810115,0.0,0.0,66.96128695394593,0.078835500004061 +5,317.14049354538116,0.0,0.0,70.96897971002608,0.0835538750034174 +6,317.43117509131514,0.0,0.0,71.03402776650366,0.0836304580006981 +7,312.8783039921803,0.0,0.0,70.01519660733908,0.0824309579984401 +8,312.72885063157213,0.0,0.0,69.98175227357386,0.0823915829969337 +9,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071 +10,297.0645600830759,0.0,0.0,66.47643289388668,0.0782646670049871 +11,320.132881830413,0.0,0.0,71.63860956747773,0.0843422500038286 +12,305.29682664515053,0.0,0.0,68.31863081721116,0.0804335410066414 +13,306.0025007629592,0.0,0.0,68.47654496935486,0.080619458000001 +14,317.616212578826,0.0,0.0,71.07543503540818,0.0836792080008308 +15,313.46473429199887,0.0,0.0,70.14642664858644,0.0825854590002563 +16,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633 +17,317.8055239782236,0.0,0.0,71.1177987106126,0.083729084006336 +18,312.42836494049845,0.0,0.0,69.91451026775316,0.0823124169983202 +19,310.49337764575245,0.0,0.0,69.48150320351859,0.0818026249980903 +20,319.06867904096777,0.0,0.0,71.40046468308539,0.0840618750007706 +21,315.95309183579826,0.0,0.0,70.70326565095722,0.0832410419970983 +22,314.0385061273956,0.0,0.0,70.27482400740125,0.0827366250014165 +23,314.3986175247909,0.0,0.0,70.35540891842726,0.0828314999962458 +24,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661 +25,312.9080390484739,0.0,0.0,70.02185065073537,0.0824387920001754 +26,316.7443235347586,0.0,0.0,70.88032568438815,0.0834495000017341 +27,312.2983604376832,0.0,0.0,69.88541815523429,0.0822781659953761 +0,305.2603840466375,0.0,0.0,70.23005972174292,0.0822855000005802 +1,311.8426015201836,0.0,0.0,71.74440468894973,0.0840597919959691 +2,309.3793097001562,0.0,0.0,71.17768479775621,0.0833957909999298 +3,307.9774835661487,0.0,0.0,70.85517215525161,0.0830179169934126 +4,309.9985372950614,0.0,0.0,71.32014806270742,0.0835627089982153 +5,317.29333507952543,0.0,0.0,72.99843358823003,0.0855290830004378 +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142 +7,307.5211780361769,0.0,0.0,70.7501917310103,0.0828949160058982 +8,307.52566313089267,0.0,0.0,70.75122359916683,0.0828961250008433 +9,309.28022911738526,0.0,0.0,71.1548897165438,0.0833690829967963 +10,309.2709546995603,0.0,0.0,71.15275598759708,0.0833665829995879 +11,307.9507398632547,0.0,0.0,70.84901933638095,0.0830107080037123 +12,305.0501624157072,0.0,0.0,70.18169485533174,0.0822288329945877 +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517 +14,263.23315694845485,0.0,0.0,60.56102035961698,0.0709567080048145 +15,281.69931878209627,0.0,0.0,64.80945781231267,0.0759344170000986 +16,310.20798354982014,0.0,0.0,71.36833454136281,0.0836191669950494 +17,307.4975319241093,0.0,0.0,70.74475156271633,0.0828885419978178 +18,312.2465028928711,0.0,0.0,71.83732869418587,0.0841686670028138 +19,264.4872154298051,0.0,0.0,60.84953667762806,0.0712947499996516 +20,307.0058314139288,0.0,0.0,70.63162795415167,0.0827559999961522 +21,313.308421210062,0.0,0.0,72.0816400779537,0.0844549160028691 +22,309.2122178896617,0.0,0.0,71.1392426400334,0.0833507499992265 +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184 +24,287.64237234819007,0.0,0.0,66.17675284530496,0.077536416996736 +25,306.2275548020647,0.0,0.0,70.45257290545298,0.0825462089997017 +26,307.19379440968873,0.0,0.0,70.67487186363874,0.0828066670001135 +27,303.97726690862385,0.0,0.0,69.9348579925237,0.0819396250008139 +28,311.54442867805176,0.0,0.0,71.67580523220816,0.0839794170024106 +29,307.42689047443804,0.0,0.0,70.72849936135475,0.0828695000018342 +0,289.20382575590736,0.0996796274434423,0.0,62.69848566192523,0.0674275420024059 +1,293.9195168609384,0.1013049805357094,0.0,63.720832756961265,0.0685270000030868 +2,293.63447150195356,0.1012067342033387,0.0,63.65903581390008,0.0684605420028674 +3,291.00346139953365,0.1002999062728172,0.0,63.08864104560202,0.067847124999389 +4,290.50771376254335,0.1001290373722001,0.0,62.981164507113895,0.0677315420034574 +5,293.7504532056515,0.1012467095148155,0.0,63.684180284818986,0.0684875830047531 +6,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.0687160410016076 +7,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.0670849999951315 +8,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.0684643329950631 +9,290.6228033105725,0.1001687051851697,0.0,63.00611556147178,0.0677583750002668 +10,292.06412282992403,0.1006654835121521,0.0,63.31858912914369,0.0680944170017028 +11,290.22624120801856,0.1000320224751902,0.0,62.920142136894654,0.0676659169985214 +12,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.0667457500021555 +13,290.24715059938825,0.1000392292966641,0.0,62.92467522760175,0.0676707919992622 +14,290.5952801459097,0.1001592188002905,0.0,63.00014862538278,0.0677519580058287 +15,287.0188825965561,0.0989265450125997,0.0,62.224796812925256,0.0669181249977555 +16,294.8216615026295,0.1016159219333511,0.0,63.91641489607788,0.0687373339969781 +17,292.6999826596284,0.1008846447586035,0.0,63.45644155316163,0.068242666995502 +18,294.47674453414845,0.1014970397061632,0.0,63.84163797517671,0.0686569169993163 +19,291.70115300347874,0.1005403790223387,0.0,63.23989840505106,0.0680097910008044 +20,291.2361453845984,0.10038010525664,0.0,63.1390862064266,0.0679013750050216 +21,290.8948054959841,0.1002624559384136,0.0,63.06508478526217,0.0678217919994494 +22,292.993606263265,0.1009858477469893,0.0,63.52009823285628,0.0683111250036745 +23,289.21990989831363,0.0996851711506136,0.0,62.701972653735965,0.0674312920018564 +24,276.5893870013989,0.095331819968313,0.0,59.9637147600689,0.0644864999994752 +25,294.1384413389605,0.1013804370423806,0.0,63.76829489965745,0.0685780419953516 +26,282.89311931638207,0.0975045218232015,0.0,61.33034422679377,0.0659562079963507 +27,293.29813271570947,0.1010908086106535,0.0,63.586118616101075,0.0683821249986067 +28,294.9056550815358,0.1016448719260808,0.0,63.93462444150483,0.068756917004066 +0,370.44916321321614,0.0,0.0,65.64209549207466,0.0671277500005089 +1,371.36386610958994,0.0,0.0,65.80417715086381,0.0672934999965946 +2,368.962830282296,0.0,0.0,65.3787232999547,0.0668584169980022 +3,368.9108618969243,0.0,0.0,65.36951471196507,0.0668489999952726 +4,376.83391647843223,0.0,0.0,66.77344798290869,0.0682847079951898 +5,379.53434024077234,0.0,0.0,67.25195216669212,0.068774041996221 +6,377.5320155936468,0.0,0.0,66.8971483265304,0.0684112080052727 +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257 +8,381.6909531277366,0.0,0.0,67.63409525978926,0.0691648339998209 +9,375.5701640445277,0.0,0.0,66.54951615586617,0.0680557079977006 +10,374.0240484961872,0.0,0.0,66.27555072539892,0.067775542003801 +11,371.35052776493495,0.0,0.0,65.80181365006399,0.0672910830035107 +12,370.73061027987507,0.0,0.0,65.69196677553322,0.0671787500032223 +13,394.8672224542054,0.0,0.0,69.96887696601637,0.0715524580009514 +14,365.1862909781526,0.0,0.0,64.70953578855121,0.0661740840005222 +15,371.5834610794553,0.0,0.0,65.84308849258868,0.0673332920050597 +16,386.614659576844,0.0,0.0,68.50655615591829,0.0700570409971987 +17,386.60155849554985,0.0,0.0,68.50423469722772,0.0700546669977484 +18,362.7040769916651,0.0,0.0,64.26969749570833,0.0657242910019704 +19,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238 +20,379.3593519471741,0.0,0.0,67.2209449478372,0.0687423330018646 +21,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073 +22,376.3324220394227,0.0,0.0,66.6845851938321,0.0681938340057968 +23,375.2703236266904,0.0,0.0,66.49638564486882,0.0680013750024954 +24,387.82208398640864,0.0,0.0,68.72050688455441,0.0702758339975844 +25,379.18068825981504,0.0,0.0,67.18928646405266,0.0687099580027279 +26,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301 +27,382.47504806500143,0.0,0.0,67.7730337157446,0.0693069170010858 +28,362.6224518506248,0.0,0.0,64.25523385039665,0.0657095000060508 +0,298.5621379017781,0.0,0.0,65.17760957180526,0.0699610410010791 +1,293.7520815286884,0.0,0.0,64.12755018213558,0.0688339170010294 +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092 +3,291.0702814766676,0.0,0.0,63.54209980330101,0.068205499999749 +4,297.6933418060511,0.0,0.0,64.98794703414137,0.0697574589939904 +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567 +6,293.15729192518216,0.0,0.0,63.99770463364393,0.0686945419947733 +7,291.59732372815654,0.0,0.0,63.65715576564372,0.0683290000015404 +8,289.71177993007666,0.0,0.0,63.2455321138121,0.0678871669952059 +9,288.3285607864271,0.0,0.0,62.943568449127,0.0675630420009838 +10,287.9739957844177,0.0,0.0,62.86616513392031,0.0674799580010585 +11,292.9851689308829,0.0,0.0,63.96012932218745,0.0686542090043076 +12,294.059699195972,0.0,0.0,64.19470465911147,0.0689059999931487 +13,288.9098350378217,0.0,0.0,63.070463528582806,0.0676992500011692 +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247 +15,293.23659577732656,0.0,0.0,64.01501706163273,0.0687131249942467 +16,280.4243482266323,0.0,0.0,61.21803927179926,0.0657108750019688 +17,295.6641182362926,0.0,0.0,64.54495736876346,0.0692819579999195 +18,294.7314796376094,0.0,0.0,64.34135769305185,0.0690634159982437 +19,292.6675907282371,0.0,0.0,63.890800410470675,0.0685797919941251 +20,291.79132220494307,0.0,0.0,63.69950660445531,0.0683744589987327 +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606 +22,290.6044059821546,0.0,0.0,63.440396850261365,0.0680963329941732 +23,290.49878844398484,0.0,0.0,63.41734001286348,0.0680715839989716 +24,291.0869974835,0.0,0.0,63.54574899128773,0.0682094170042546 +25,290.73012372139635,0.0,0.0,63.46784166219275,0.0681257920005009 +26,287.31287997933134,0.0,0.0,62.7218402435357,0.0673250410036416 +27,292.54952051034445,0.0,0.0,63.865025090740104,0.0685521250052261 +28,291.9493964926538,0.0,0.0,63.734015012923166,0.0684115000040037 +0,291.29299505714096,0.0,0.0,62.99496139075435,0.0682530839985702 +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809 +2,289.0799426382046,0.0,0.0,62.51636714354541,0.067734541997197 +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137 +4,297.886977244811,0.0,0.0,64.42097458150106,0.0697981249977601 +5,290.82548775033143,0.0,0.0,62.893858359641,0.0681435420046909 +6,268.5173277099082,0.0,0.0,58.06950039603958,0.0629164999991189 +7,292.0704497581507,0.0,0.0,63.16309357966455,0.068435250002949 +8,293.8949497924379,0.0,0.0,63.55765957049728,0.0688627499985159 +9,293.04956393422503,0.0,0.0,63.37483660392384,0.068664666992845 +10,290.9037299843468,0.0,0.0,62.91077900859089,0.0681618750022607 +11,291.32144445247934,0.0,0.0,63.001113850962255,0.0682597499981056 +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997 +13,292.62811511187584,0.0,0.0,63.28369417090083,0.0685659169976133 +14,291.9456155250125,0.0,0.0,63.136096954856455,0.0684059999985038 +15,288.2672740442093,0.0,0.0,62.34061960559938,0.0675441249986761 +16,293.5677518423963,0.0,0.0,63.48689981114927,0.0687860839971108 +17,269.05080725191584,0.0,0.0,58.184870568758406,0.0630414999977801 +18,292.5950351222772,0.0,0.0,63.27654029935935,0.0685581660000025 +19,288.8240474431492,0.0,0.0,62.46102730288279,0.0676745829987339 +20,289.09861444034067,0.0,0.0,62.52040510351909,0.0677389170014066 +21,292.22515879396974,0.0,0.0,63.19655092297043,0.068471499995212 +22,289.8157859281682,0.0,0.0,62.67550045751957,0.0679069580000941 +23,289.92461574616726,0.0,0.0,62.69903597090075,0.0679324579978128 +24,289.408032574084,0.0,0.0,62.58731980356169,0.0678114170004846 +25,291.7665414108356,0.0,0.0,63.09737042486749,0.0683640410061343 +26,292.56711921054875,0.0,0.0,63.27050321020389,0.0685516250014188 +27,293.90632783646987,0.0,0.0,63.560120183888806,0.0688654159966972 +28,296.77573933170015,0.0,0.0,64.18065850586514,0.0695377499941969 +0,311.59367925352166,0.0,0.0,72.32524053893655,0.0842451249991427 +1,314.6147113063084,0.0,0.0,73.02646423004957,0.0850619169941637 +2,317.0589047950213,0.0,0.0,73.59379564196513,0.085722749994602 +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667 +4,310.3879176166453,0.0,0.0,72.04536643934435,0.0839191249979194 +5,319.6777081144411,0.0,0.0,74.20165643187254,0.086430791998282 +6,254.6704492989941,0.0,0.0,59.112564631718605,0.0688548749967594 +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371 +8,273.9504631496793,0.0,0.0,63.58772485539658,0.0740675839988398 +9,303.15396548952185,0.0,0.0,70.36626521721826,0.0819632919956347 +10,319.6621404622535,0.0,0.0,74.19804296258846,0.0864265829950454 +11,321.3189864206904,0.0,0.0,74.58262002707511,0.0868745420011691 +12,327.9853465847884,0.0,0.0,76.12997523512246,0.0886769159988034 +13,316.0251306481012,0.0,0.0,73.35384223848772,0.0854432499982067 +14,293.83489274284335,0.0,0.0,68.20317840615691,0.0794437079966883 +15,319.29011864863867,0.0,0.0,74.1116915089265,0.0863260000041918 +16,317.9883472997439,0.0,0.0,73.8095322155767,0.0859740419982699 +17,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388 +18,317.9663070322047,0.0,0.0,73.80441636195883,0.0859680830035358 +19,309.99647784933063,0.0,0.0,71.95450780769507,0.0838132920034695 +20,318.1546314596068,0.0,0.0,73.84812908919976,0.0860190000021248 +21,317.56423360371525,0.0,0.0,73.7110895091822,0.0858593750017462 +22,314.6444522037832,0.0,0.0,73.03336750732035,0.0850699579968932 +23,291.90250070508733,0.0,0.0,67.75464325203872,0.0789212500021676 +24,315.9423732511658,0.0,0.0,73.33463309196694,0.0854208750024554 +25,312.00345697187805,0.0,0.0,72.42035566488721,0.0843559159984579 +26,315.7848733838278,0.0,0.0,73.2980751752038,0.0853782919948571 +27,316.48175922730144,0.0,0.0,73.4598321029379,0.0855667079958948 +28,318.58722249833687,0.0,0.0,73.94853950511737,0.0861359590053325 +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.0687121249939082 +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.0684735419999924 +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.0682607499984442 +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.0693537920014932 +4,282.3759053861895,0.9401410231953468,0.0,57.6822008425016,0.061543249998067 +5,321.98321971372366,1.072009430901668,0.0,65.77296572822493,0.0701755830014008 +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.069085625000298 +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.0674245410045841 +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.067374958001892 +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.0674674160036374 +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.0676157499983673 +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.0686493749963119 +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.0677805829982389 +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.0658772080059861 +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.0679051670012995 +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.0631127919987193 +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.068294083001092 +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.0672580419995938 +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.0678333329997258 +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.0681575409980723 +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.0683888749990728 +21,316.3211247316838,1.053158078260359,0.0,64.61634402745813,0.0689415410015499 +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.0673742090002633 +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.0688007909993757 +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264 +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.0688696249999338 +26,283.9395447763309,0.9453469968925204,0.0,58.00161251901851,0.061884041999292 +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.0701700000063283 +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.0685499159953906 +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.0680872920056572 +0,318.0434962832716,0.1047574098429748,0.0,66.0670064743028,0.0704760419976082 +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633 +2,311.3660715806597,0.1025579945917851,0.0,64.67990858921917,0.0689963750046445 +3,307.96812656956257,0.1014387768674448,0.0,63.97405527773522,0.0682434159971308 +4,307.9854286365557,0.1014444758354926,0.0,63.97764942691737,0.0682472500047879 +5,303.54277752976253,0.0999811520190258,0.0,63.05477987333232,0.0672627919993829 +6,295.5978232288647,0.097364236900153,0.0,61.40437873836319,0.0655022499995539 +7,309.92668146656416,0.1020838871760751,0.0,64.3809048457114,0.0686774170026183 +8,281.20051954266887,0.0926220420101017,0.0,58.41363449437083,0.0623119160009082 +9,299.98387491674634,0.0988089179567675,0.0,62.31549092473475,0.0664741660002619 +10,305.7382448097462,0.1007042967094025,0.0,63.51084312472989,0.0677492910035653 +11,294.734003229727,0.0970797112087374,0.0,61.224937868977115,0.0653108339975006 +12,298.89347681440523,0.0984497617965761,0.0,62.08898310637403,0.0662325419980334 +13,308.355851863169,0.1015664861209384,0.0,64.05459724693849,0.0683293330002925 +14,310.24746403189397,0.1021895467825737,0.0,64.44754083754319,0.0687485000016749 +15,311.1235091390795,0.1024780991894201,0.0,64.62952122212762,0.0689426249955431 +16,308.5540400267205,0.1016317654896971,0.0,64.09576676883565,0.0683732500037876 +17,305.98663773748234,0.100786112561753,0.0,63.562441655612275,0.0678043330044602 +18,292.8154993760287,0.0964477929433559,0.0,60.82640808294316,0.064885708001384 +19,306.57198705890426,0.1009789153685455,0.0,63.68403595909606,0.0679340420028893 +20,299.9385619885642,0.0987939927498564,0.0,62.3060780942428,0.0664641249968553 +21,306.6251973620329,0.1009964418188514,0.0,63.69508930708896,0.0679458330050692 +22,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.067884750002122 +23,304.5282532805252,0.1003057487748765,0.0,63.25949222735547,0.0674811659991974 +24,312.89270739925354,0.1030608390643127,0.0,64.99703583655992,0.069334665997303 +25,306.72541736758814,0.1010294523608656,0.0,63.715907955585934,0.0679680410030414 +26,306.35518366378886,0.1009075045005892,0.0,63.63899950503827,0.0678860000043641 +27,303.16651925294775,0.0998572197802858,0.0,62.97661994143359,0.0671794160007266 +28,307.1612805694235,0.1011730173153568,0.0,63.80644958688507,0.0680646250038989 +0,376.1194842106595,0.1028491890102979,1.4741717091476034,69.90316546399914,0.070418499999505 +1,375.3772813659091,0.1026462349920451,1.471262701552647,69.76522438292668,0.0702795420002075 +2,372.25223442040107,0.1017916965874763,1.459014317753828,69.18442311395476,0.0696944589944905 +3,385.4868428198003,0.1054106761880777,1.510886358695781,71.64412291583018,0.0721722919988678 +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.0704831249968265 +5,358.7098339166928,0.0980885517956502,1.4059359090709862,66.66751903711025,0.0671589999983552 +6,348.4707482819762,0.0952886924479016,1.3658045917532566,64.76454796709048,0.0652419999969424 +7,377.0809007160486,0.1031120866054275,1.4779399080111284,70.0818481961556,0.0705985000022337 +8,372.1874670252756,0.1017739860610543,1.4587604668751115,69.17238585949659,0.069682332999946 +9,344.4984530925867,0.0942024755517054,1.3502354829077776,64.02628254997578,0.0644982919984613 +10,365.7985019329385,0.1000269351744431,1.4337194041670178,67.98497360689649,0.0684861670015379 +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.0660061249946011 +12,327.2959987393395,0.089498495690276,1.282811771560623,60.82914423749095,0.0612775839981623 +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.0656358750056824 +14,348.36548389342033,0.0952599080922669,1.36539201598916,64.74498420004412,0.0652222920034546 +15,370.7199715553666,0.101372702093346,1.4530087300046275,68.89964652277756,0.0694075829960638 +16,393.78017104004334,0.1076784717090629,1.5433914278299028,73.1854679382598,0.0737250000020139 +17,402.0710529521565,0.1099455982915385,1.5758869088453855,74.72635830548236,0.0752772499981802 +18,373.83523342380454,0.1022245647863835,1.4652187619381638,69.478629199812,0.0699908340029651 +19,367.5913620968913,0.1005171895260845,1.4407463832072125,68.3181831478955,0.0688218330033123 +20,365.9671931593512,0.1000730634835524,1.4343805765975846,68.01632548098779,0.0685177500054123 +21,333.9660446668918,0.0913224076201508,1.3089545092221626,62.06879637916255,0.0625263750043814 +22,366.693153401072,0.1002715759915428,1.437225922545447,68.15124781558525,0.068653667003673 +23,363.69117314929224,0.0994506899505857,1.4254598892917296,67.5933189364148,0.0680916250057634 +24,364.9750647376018,0.0998017677707415,1.430492004713962,67.83193482818066,0.068332000002556 +25,369.7136034968617,0.1010975125777582,1.4490643469478677,68.71260938201632,0.0692191669950261 +26,376.5937403004009,0.102978873475636,1.4760305198174497,69.99130767227395,0.0705072920027305 +27,364.0695065079672,0.0995541445195425,1.4269427381134436,67.6636335584491,0.0681624579956405 +28,367.74291871241866,0.1005586324070053,1.4413403978337438,68.34635049262799,0.0688502080010948 +29,358.35531160656274,0.0979916083146192,1.4045463858428764,66.6016297845029,0.0670926250022603 +0,303.23390333758607,0.0,0.0,75.59622229023033,0.0861223750034696 +1,299.87754304590914,0.0,0.0,74.75948155674698,0.0851691249990835 +2,303.496507488735,0.0,0.0,75.66168951393483,0.0861969580000732 +3,280.98976423022,0.0,0.0,70.05075766339677,0.0798047499993117 +4,302.6632146728885,0.0,0.0,75.453949586947,0.085960291995434 +5,302.2430473239825,0.0,0.0,75.3492018527478,0.0858409590000519 +6,288.1644636376654,0.0,0.0,71.83941046673124,0.0818424580065766 +7,299.15970621388135,0.0,0.0,74.58052481040428,0.0849652499964577 +8,303.53919918635705,0.0,0.0,75.67233255558638,0.0862090829978114 +9,304.1503789285395,0.0,0.0,75.82469968584712,0.0863826659988262 +10,302.7150010544735,0.0,0.0,75.46685993361608,0.0859750000017811 +11,304.3796818047821,0.0,0.0,75.8818649005986,0.086447790999955 +12,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672 +13,299.5502411494769,0.0,0.0,74.6778851829696,0.0850761670008068 +14,299.0150508701026,0.0,0.0,74.54446222834005,0.084924165996199 +15,301.69890677153836,0.0,0.0,75.21354759474123,0.0856864160014083 +16,293.7211350318159,0.0,0.0,73.22468883198815,0.0834206250001443 +17,301.99774870612936,0.0,0.0,75.28804889907536,0.0857712910001282 +18,290.7437186585,0.0,0.0,72.4824188300841,0.0825750000003608 +19,300.40744832723414,0.0,0.0,74.89158696118525,0.0853196249954635 +20,302.49420835289175,0.0,0.0,75.41181630569348,0.0859122920010122 +21,302.62287146478,0.0,0.0,75.4438920238101,0.0859488339992822 +22,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865 +23,300.38544230519113,0.0,0.0,74.88610085915057,0.0853133749988046 +24,302.0932584124877,0.0,0.0,75.31185947207949,0.0857984169997507 +25,298.48529699349257,0.0,0.0,74.4123945691023,0.0847737090007285 +26,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006 +27,298.8282953574442,0.0,0.0,74.49790407275962,0.0848711250000633 +28,301.1461152201156,0.0,0.0,75.07573664239862,0.0855294160064659 +0,307.4320612663604,0.0,0.0,63.35199239749272,0.0671285829957923 +1,319.09229461987655,0.0,0.0,65.75479648930452,0.0696746250032447 +2,315.8303683771894,0.0,0.0,65.08261699808075,0.0689623750004102 +3,320.11071629586803,0.0,0.0,65.96466088018519,0.0698970000012195 +4,312.61748207640557,0.0,0.0,64.42054308274855,0.0682608329952927 +5,307.04469238953703,0.0,0.0,63.27216796396276,0.0670440000030794 +6,315.62218214509465,0.0,0.0,65.03971642180838,0.0689169170000241 +7,310.95312800205056,0.0,0.0,64.07757252128222,0.0678974169932189 +8,313.5021384751786,0.0,0.0,64.60284269463226,0.0684540000002016 +9,312.90657876781614,0.0,0.0,64.48011673723646,0.0683239580030203 +10,312.5113876374554,0.0,0.0,64.39868038546805,0.0682376670010853 +11,300.6441130311362,0.0,0.0,61.95321166128344,0.0656464170024264 +12,314.46636338728104,0.0,0.0,64.80153885224628,0.068664540995087 +13,314.6789461985706,0.0,0.0,64.84534542397851,0.0687109589998726 +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814 +15,319.99393270665615,0.0,0.0,65.9405954882237,0.0698715000035008 +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653 +17,315.12031493923246,0.0,0.0,64.93629751592275,0.0688073330020415 +18,320.1736878576916,0.0,0.0,65.9776373208644,0.0699107500040554 +19,315.997721590775,0.0,0.0,65.1171031849511,0.0689989170059561 +20,315.1537104407051,0.0,0.0,64.94317926907071,0.0688146249958663 +21,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792 +22,316.5843095668302,0.0,0.0,65.23798035321532,0.0691270000024815 +23,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724 +24,324.2240911390176,0.0,0.0,66.8122969098102,0.0707951660006074 +25,319.4119244478356,0.0,0.0,65.82066205435802,0.069744417000038 +26,316.58221200981916,0.0,0.0,65.237548113275,0.0691265419955016 +27,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193 +28,318.88009651176566,0.0,0.0,65.71106919269002,0.0696282909993897 +0,295.56381491985087,0.0,0.0,64.40996834269353,0.0689168749959208 +1,292.9117899350054,0.0,0.0,63.832032760950376,0.068298499994853 +2,298.182066414368,0.0,0.0,64.98054392523157,0.069527375002508 +3,292.7641857549563,0.0,0.0,63.7998665075584,0.0682640829982119 +4,293.3478092458931,0.0,0.0,63.92705112447601,0.0684001670015277 +5,294.64942974187426,0.0,0.0,64.21070335356598,0.0687036669987719 +6,296.68959874211004,0.0,0.0,64.65530182633425,0.0691793750011129 +7,294.8887006250224,0.0,0.0,64.2628458325534,0.0687594580012955 +8,295.15227983001137,0.0,0.0,64.32028563875475,0.0688209169966285 +9,290.6847022677367,0.0,0.0,63.34670052843714,0.0677792080023209 +10,294.45357766054786,0.0,0.0,64.16802280296643,0.0686579999965033 +11,292.47201807649003,0.0,0.0,63.73619663333556,0.0681959580033435 +12,294.7008941303778,0.0,0.0,64.22191859530722,0.0687156669955584 +13,272.00670099030486,0.0,0.0,59.276346140467126,0.0634240419967682 +14,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245 +15,301.81066704160895,0.0,0.0,65.77129718977528,0.0703734590060776 +16,295.9329991160775,0.0,0.0,64.49042183933697,0.0690029580000555 +17,295.25288419120227,0.0,0.0,64.34220958002342,0.0688443750041187 +18,301.8601629004876,0.0,0.0,65.78208344486653,0.0703849999990779 +19,286.4547915575912,0.0,0.0,62.42490834285863,0.0667929159972118 +20,290.8757295246105,0.0,0.0,63.38832964183578,0.0678237499960232 +21,288.97083044730425,0.0,0.0,62.97320951186117,0.0673795830007293 +22,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602 +23,295.5164591211883,0.0,0.0,64.399648454606,0.0689058330026455 +24,268.26248562413593,0.0,0.0,58.4603978374972,0.0625510000027134 +25,293.4117794845162,0.0,0.0,63.94099167076958,0.0684150829983991 +26,293.46628031085334,0.0,0.0,63.952868620253305,0.0684277910040691 +27,292.03207031876735,0.0,0.0,63.64032217334782,0.0680933749972609 +28,296.7944917425345,0.0,0.0,64.67816035804776,0.0692038329943898 +0,315.8166415430196,0.0,0.0,71.55382505573768,0.0880411670004832 +1,286.0633453360258,0.0,0.0,64.81269152577208,0.0797467500015045 +2,313.0570777710135,0.0,0.0,70.92859725771052,0.0872718750033527 +3,308.9532305134665,0.0,0.0,69.99879834880156,0.0861278330048662 +4,308.43414159245566,0.0,0.0,69.88118960703004,0.0859831250054412 +5,308.23565035456966,0.0,0.0,69.83621791952999,0.0859277909985394 +6,309.07130861685545,0.0,0.0,70.02555102374461,0.0861607499973615 +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234 +8,309.104489721779,0.0,0.0,70.03306878773974,0.086169999995036 +9,311.85239528042814,0.0,0.0,70.65565521210488,0.0869360419965232 +10,309.7618344994348,0.0,0.0,70.18200183000086,0.086353250000684 +11,307.98514910300486,0.0,0.0,69.7794624469775,0.0858579580017249 +12,311.25931787985377,0.0,0.0,70.52128307655853,0.0867707080033142 +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218 +14,307.8869545283353,0.0,0.0,69.75721473582777,0.0858305840010871 +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165 +16,306.82904378030355,0.0,0.0,69.5175264147203,0.0855356669999309 +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673 +18,310.8970159762155,0.0,0.0,70.43919719627168,0.0866697079982259 +19,309.5836716636141,0.0,0.0,70.1416359001896,0.0863035830043372 +20,311.40639092002573,0.0,0.0,70.5546050653412,0.0868117080026422 +21,317.1811027296167,0.0,0.0,71.8629677803392,0.088421542001015 +22,311.9760012189771,0.0,0.0,70.68366031550781,0.0869705000004614 +23,309.0541226205383,0.0,0.0,70.02165723344947,0.0861559590048273 +24,309.0817723407111,0.0,0.0,70.02792176476237,0.0861636670015286 +25,311.56422898167176,0.0,0.0,70.59036605942617,0.0868557089997921 +26,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687 +27,310.2794311568168,0.0,0.0,70.29927247315251,0.0864975419972324 +0,305.721962186582,0.0,0.0,63.66560385029554,0.0687287079999805 +1,307.5698377636455,0.0,0.0,64.05041792649908,0.0691441250019124 +2,304.5750584918347,0.0,0.0,63.426764887723195,0.0684708750050049 +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397 +4,302.7877946617043,0.0,0.0,63.05457301059663,0.0680690840017632 +5,302.41839922506983,0.0,0.0,62.97764761287684,0.0679860409945831 +6,304.01921499319684,0.0,0.0,63.311012287766246,0.068345917003171 +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322 +8,306.7875031062147,0.0,0.0,63.88749927969296,0.0689682500014896 +9,304.17471662540027,0.0,0.0,63.34339499669278,0.0683808749963645 +10,304.8949627430861,0.0,0.0,63.49338390712414,0.0685427920034271 +11,310.9972086145361,0.0,0.0,64.76415675402785,0.0699146249971818 +12,303.45410134996797,0.0,0.0,63.19332921036192,0.0682188749997294 +13,303.2832176918836,0.0,0.0,63.15774324459655,0.0681804590058163 +14,305.3787091124342,0.0,0.0,63.594122514500135,0.0686515420020441 +15,299.556141985043,0.0,0.0,62.381591856012456,0.0673425829954794 +16,310.09439777626403,0.0,0.0,64.57614933457363,0.0697116660012397 +17,309.0629659837681,0.0,0.0,64.36135701991627,0.069479792000493 +18,303.34771274786874,0.0,0.0,63.171174130147875,0.068194958003005 +19,302.234170867233,0.0,0.0,62.93928265680976,0.0679446250069304 +20,304.56560596920565,0.0,0.0,63.42479643064285,0.068468750003376 +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217 +22,305.56497926280053,0.0,0.0,63.63291266721779,0.0686934170007589 +23,307.9737025847265,0.0,0.0,64.13452146137145,0.0692349169985391 +24,306.6599897546909,0.0,0.0,63.86094503914815,0.0689395839945063 +25,302.4908700108722,0.0,0.0,62.992739418210725,0.0680023329987307 +26,300.3927852296424,0.0,0.0,62.555820089384135,0.0675306669945712 +27,307.767415320001,0.0,0.0,64.09156280972131,0.0691885419946629 +28,302.781304689866,0.0,0.0,63.05322149507873,0.0680676250049145 +29,302.1294503364202,0.0,0.0,62.91747494701346,0.0679210830057854 +0,254.6307029336884,0.0803251428812897,0.0,57.08440154096989,0.0676555829995777 +1,263.7963996346027,0.0832165298531869,0.0,59.139213882331546,0.0700909160004812 +2,253.7492302434404,0.0800470757865742,0.0,56.886788525658766,0.0674213749953196 +3,315.84115707071624,0.0996344344071659,0.0,70.8068713853593,0.0839192499988712 +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.0885723329993197 +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049 +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.0868600829999195 +7,326.48454970016655,0.1029919715142481,0.0,73.192961089459,0.0867472079989966 +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.0890692090033553 +9,330.8312320406672,0.1043631646815984,0.0,74.16742236705599,0.0879021250002551 +10,325.4089376060097,0.1026526617053658,0.0,72.95182491861333,0.0864614169986452 +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.0857947909971699 +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.0863410839956486 +13,323.1647140635819,0.1019447047519185,0.0,72.44870351036347,0.0858651249945978 +14,321.04641790612,0.1012764725255899,0.0,71.97381314151923,0.0853022919982322 +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.0856695000038598 +16,321.7960054059207,0.1015129354592809,0.0,72.14185946639569,0.0855014580010902 +17,303.00058629844494,0.0955837811667018,0.0,67.92820714913613,0.0805074999952921 +18,319.4832536685931,0.1007833607787359,0.0,71.62337506008836,0.0848869580004247 +19,324.52934299437413,0.1023751870644713,0.0,72.7546329404843,0.0862277080013882 +20,335.0232930833541,0.1056855814143072,0.0,75.10721985843438,0.0890159589980612 +21,328.476451821486,0.1036203318048851,0.0,73.63951580267174,0.0872764579980867 +22,329.2296486453677,0.1038579333266144,0.0,73.80837128411399,0.087476583001262 +23,327.0558388796751,0.1031721889210331,0.0,73.32103559321422,0.086898999994446 +24,324.61872924541194,0.1024033846200037,0.0,72.77467200328267,0.0862514580003335 +25,318.41955724016697,0.1004478098549422,0.0,71.38491020357897,0.084604333002062 +26,300.9517592509948,0.0949374634861182,0.0,67.46889071746803,0.0799631249974481 +27,324.7123495870697,0.1024329178508106,0.0,72.79566028597608,0.0862763330005691 +28,323.6961727674179,0.1021123573398794,0.0,72.56784861620767,0.0860063340005581 +29,321.83113513979686,0.1015240173942576,0.0,72.14973502818579,0.0855107919996953 +0,289.28287234917417,0.0,0.0,62.42629931011725,0.0676834159967256 +1,294.6927660431574,0.0,0.0,63.5937367053353,0.0689491669982089 +2,277.7601904303348,0.0,0.0,59.93974217495268,0.0649874579976312 +3,293.7341289609959,0.0,0.0,63.38686595306845,0.0687248750036815 +4,292.09271527384254,0.0,0.0,63.03265423879081,0.0683408339973539 +5,293.5832888779959,0.0,0.0,63.35431515566778,0.0686895830003777 +6,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502 +7,291.9546931410586,0.0,0.0,63.002869513194646,0.0683085410055355 +8,294.338014940254,0.0,0.0,63.517182575633115,0.0688661660024081 +9,291.76485654961874,0.0,0.0,62.96190339660087,0.0682641250023152 +10,291.4241799062767,0.0,0.0,62.88838648931725,0.0681844170030672 +11,289.7307595134493,0.0,0.0,62.52295189776321,0.0677882080053677 +12,295.45675398335953,0.0,0.0,63.75860280831983,0.0691279169986955 +13,268.6430896357433,0.0,0.0,57.97230159189356,0.0628543330021784 +14,296.1544940115595,0.0,0.0,63.90917282820156,0.0692911669975728 +15,296.023421474765,0.0,0.0,63.88088780272865,0.0692605000003823 +16,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743 +17,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523 +18,288.2072371897795,0.0,0.0,62.19418075479606,0.0674317500015604 +19,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575 +20,291.5402932180753,0.0,0.0,62.91344336287967,0.0682115839954349 +21,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078 +22,290.7937520213083,0.0,0.0,62.75234221016276,0.0680369160036207 +23,292.5845867335617,0.0,0.0,63.13879849377964,0.0684559169967542 +24,273.97462270495254,0.0,0.0,59.12282902014209,0.0641017499947338 +25,299.1048380666353,0.0,0.0,64.54584744206421,0.0699814580002566 +26,294.26660397366516,0.0,0.0,63.501772322208495,0.0688494580026599 +27,292.6253698145022,0.0,0.0,63.14759934948502,0.0684654590004356 +28,290.1271784005321,0.0,0.0,62.60849779924106,0.0678809579985681 +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526 +1,297.817315883756,0.0,0.0,62.733064436627,0.0677234579998184 +2,299.81856627760055,0.0,0.0,63.15461336348616,0.0681785409979056 +3,293.4782177778501,0.0,0.0,61.81906479135154,0.0667367499991087 +4,300.9928969475883,0.0,0.0,63.40197762896428,0.0684455830050865 +5,302.9091294778741,0.0,0.0,63.805618157525416,0.0688813329979893 +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736 +7,298.40897111216174,0.0,0.0,62.85769233295232,0.0678580000021611 +8,301.1378313788484,0.0,0.0,63.432507019064865,0.0684785409976029 +9,300.16524277859793,0.0,0.0,63.227638262025714,0.0682573750018491 +10,302.53570709857513,0.0,0.0,63.7269594330885,0.0687964169992483 +11,300.62625114769776,0.0,0.0,63.32474634198656,0.0683622079959604 +12,301.35917766867016,0.0,0.0,63.47913201473039,0.0685288749955361 +13,299.7551711903755,0.0,0.0,63.14125964669488,0.0681641249975655 +14,304.2527658133512,0.0,0.0,64.0886454373958,0.0691868750000139 +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185 +16,297.4405953485831,0.0,0.0,62.6537109795002,0.0676377920026425 +17,306.33775437514066,0.0,0.0,64.52783320392388,0.0696610000013606 +18,303.6565283499523,0.0,0.0,63.963052326397744,0.0690512910005054 +19,304.6771294210259,0.0,0.0,64.17803456329608,0.0692833749999408 +20,300.6194745682893,0.0,0.0,63.32331890452737,0.0683606670063454 +21,297.64673049065647,0.0,0.0,62.697131856865795,0.067684666995774 +22,301.97648382691904,0.0,0.0,63.60916309397653,0.0686692500021308 +23,297.5443027834249,0.0,0.0,62.67555620086746,0.0676613750038086 +24,292.8490031072213,0.0,0.0,61.686525270068515,0.0665936670047813 +25,305.28948829746935,0.0,0.0,64.30702353339768,0.0694226249979692 +26,299.9959370811122,0.0,0.0,63.19197524089363,0.0682188749997294 +27,300.89853428238985,0.0,0.0,63.38210081576173,0.0684241249982733 +28,298.13540828185586,0.0,0.0,62.80006830054803,0.0677957919979235 +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.0716147079947404 +1,398.6592292206605,1.0601916085650025,10.248518882795024,69.07556095804284,0.0674460419977549 +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.0773315420010476 +3,514.3190563490106,1.36777655626399,13.221840043885235,89.11590331966148,0.0870136250014184 +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.0868142500039539 +5,517.1547567068353,1.375317798265706,13.29473871656849,89.60724424085022,0.0874933750019408 +6,490.26978754538726,1.303820096438466,12.603594265571838,84.94889397564467,0.0829449170050793 +7,519.4725243133612,1.3814816534756962,13.354322650265065,90.00884311491652,0.0878855000046314 +8,518.1034381164648,1.3778407150727667,13.31912691237008,89.77162197435642,0.0876538750017061 +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281692,0.0889240420001442 +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.0830192919966066 +11,500.35038752648165,1.330628374601622,12.862740954482344,86.69555640673644,0.0846503749999101 +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.085572250005498 +13,488.42094043081113,1.298903285155243,12.556065089834012,84.62854480973004,0.0826321249987813 +14,503.4395128973858,1.338843573337746,12.94215454226488,87.23080820131315,0.0851729999994859 +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788 +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.0865403749994584 +17,493.5559371722591,1.312559260123976,12.6880728478651,85.51828410192365,0.083500875000027 +18,507.3150213055262,1.3491500737071616,13.041784045835897,87.9023163407666,0.0858286670045345 +19,517.1131388371582,1.375207119989715,13.293668826567243,89.60003312548373,0.0874863339995499 +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.421331250411,0.0892646670035901 +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.0859598329989239 +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.0867411250001168 +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.0798599589979858 +24,510.89991397744865,1.3586837125891915,13.133942555028854,88.52346958177273,0.0864351670024916 +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.0874901249990216 +26,423.54044139290176,1.1263605328553132,10.88815181760136,73.38672087141926,0.0716554999962681 +27,420.70326336992974,1.1188153611610816,10.815215157890457,72.89512391564892,0.071175500001118 +28,459.11156121555587,1.2209581239281746,11.802595197972352,79.55011776670491,0.0776734999963082 +29,402.5174899448091,1.070452240562397,10.347704992103171,69.74408059664233,0.0680987910018302 +0,309.7762415538039,0.0,0.0,63.37230984127286,0.068120000003546 +1,311.42073409796063,0.0,0.0,63.70873102876365,0.0684816249995492 +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803 +3,313.74090904811897,0.0,0.0,64.18337958505668,0.0689918330026557 +4,310.57698038804125,0.0,0.0,63.53612056236206,0.0682960830017691 +5,311.4457454166953,0.0,0.0,63.7138477059899,0.0684871250050491 +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942 +7,310.3448710223421,0.0,0.0,63.48863691233658,0.0682450419990345 +8,310.4030381748929,0.0,0.0,63.50053642662969,0.0682578329942771 +9,309.88272598227024,0.0,0.0,63.39409383658571,0.068143415999657 +10,314.95073715611716,0.0,0.0,64.43087952672482,0.0692578750022221 +11,311.97913169496366,0.0,0.0,63.82296492015055,0.068604416999733 +12,314.11153092259957,0.0,0.0,64.25919935788926,0.0690733329975046 +13,311.2255687180135,0.0,0.0,63.66880517497234,0.0684387080036685 +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324 +15,313.3998459687748,0.0,0.0,64.11360678701638,0.0689168330063694 +16,314.72354819575156,0.0,0.0,64.38440246600322,0.0692079159998684 +17,310.5500773260057,0.0,0.0,63.53061688275627,0.0682901670006685 +18,309.80466346329615,0.0,0.0,63.3781242382892,0.0681262500002048 +19,313.26815920758014,0.0,0.0,64.08666703789113,0.0688878750006551 +20,312.11271473244335,0.0,0.0,63.85029259898814,0.0686337919978541 +21,323.48735546048795,0.0,0.0,66.17725367558705,0.0711350830024457 +22,317.51420374814444,0.0,0.0,64.95529934124274,0.0698215829979744 +23,315.9167051463369,0.0,0.0,64.62849191451126,0.0694702920009149 +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978 +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328 +26,314.22105311215415,0.0,0.0,64.2816048015609,0.0690974169992841 +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759 +28,312.78100741484513,0.0,0.0,63.987008219015664,0.0687807499998598 +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293 +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.0874951669975416 +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.0867375840025488 +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.0861871669985703 +3,293.9572294015164,0.9146992271339104,0.0,69.27999701810545,0.0847011669975472 +4,300.39880553788765,0.9347433156071184,0.0,70.79815112653915,0.0865572499969857 +5,298.60714878159104,0.9291682628907408,0.0,70.37589250413203,0.0860410000022966 +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496 +7,300.03454654918687,0.9336098601853228,0.0,70.71230237329574,0.0864522920019226 +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.0858868340001208 +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.0709844160010106 +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.0850011670045205 +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.0865207090027979 +12,298.57230126240773,0.92905982875245,0.0,70.36767962217631,0.0860309589988901 +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825 +14,300.45317822288536,0.9349125057068,0.0,70.81096571001504,0.0865729170036502 +15,300.4835452655799,0.9350069980604652,0.0,70.81812263087598,0.0865816669975174 +16,298.95347907171913,0.9302459300376188,0.0,70.45751581210853,0.0861407920019701 +17,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.0860762919983244 +18,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.085864542001218 +19,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.0855547909959568 +20,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623 +21,296.81231300431466,0.9235833180957124,0.0,69.95288464836042,0.0855238340009236 +22,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.0852534170044236 +23,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.0801159580005332 +24,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.0712743749973014 +25,296.6898313446286,0.9232021950334184,0.0,69.92401810530892,0.0854885419976199 +26,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.0830227920014294 +27,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.0866290830017533 +28,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.0702899169991724 +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.0854961669974727 +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.0852910419998806 +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.085036708995176 +3,352.4283146868622,1.2669926655795811,0.0,78.06309649216129,0.0861206249974202 +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.0690652920020511 +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.0691986660021939 +6,276.21979273513165,0.9930202452498064,0.0,61.18286027184291,0.0674980420008068 +7,276.9739641940552,0.9957315191946784,0.0,61.349909731026955,0.0676823339963448 +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.068089874999714 +9,280.05765275444236,1.0068174922170603,0.0,62.032948714018886,0.0684358750004321 +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.0593904580018715 +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.0687335420007002 +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.0677226659972802 +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.0684477079994394 +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.0683194170051137 +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.0684337920029065 +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.0687179589949664 +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.0684492919972399 +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.0675360410023131 +19,280.94925472663203,1.0100228338774897,0.0,62.23043911954855,0.0686537500005215 +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814 +21,267.5825543832899,0.9619690578548056,0.0,59.269706467828335,0.065387415997975 +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.0728027500008465 +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.067395750003925 +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965 +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.0677298329974291 +26,278.3068472864164,1.000523282602216,0.0,61.645144186136534,0.0680080420061131 +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.0680346250010188 +28,277.9544010343528,0.999256225451112,0.0,61.56707711650399,0.067921916997875 +29,276.82374129899574,0.9951914623992656,0.0,61.31663526395476,0.0676456250002957 +0,478.8738629620707,0.3431147812004327,14.220201487529048,87.79926012273296,0.0864906249989871 +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.0864957080048043 +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.0880929580016527 +3,399.3710335699146,0.2861507286146987,11.859357974809182,73.22279199996125,0.0721314170004916 +4,491.1808267997274,0.3519327634103611,14.585657861340524,90.05568379267353,0.0887134170043282 +5,483.7304803199704,0.3465945643563198,14.364419167211922,88.68969796806718,0.0873677909985417 +6,483.518014469227,0.3464423318384717,14.358109975083329,88.65074335822227,0.087329417001456 +7,485.3377441423682,0.3477461744511833,14.412147007810152,88.98438219567502,0.0876580830008606 +8,499.413915114863,0.3578317997001645,14.83014014312904,91.56518163438656,0.0902004160016076 +9,473.2155736942138,0.3390605973447913,14.052178089956351,86.76183952056161,0.0854686669990769 +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.0707355000049574 +11,394.0454011504646,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108 +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425 +13,394.9993326892937,0.2830183897940962,11.729539932577543,72.42126129953374,0.0713418329978594 +14,378.78252964338554,0.2713989942512912,11.24798053952574,69.44798708452487,0.0684128749999217 +15,384.479575923064,0.2754809476401223,11.417154829973958,70.49251360168908,0.0694418330022017 +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.0705237079964717 +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.0727939999997033 +18,393.9042149535417,0.2822337341439276,11.697020315076117,72.22047663705172,0.0711440410013892 +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.0700297920047887 +20,398.0775187183235,0.2852239207439624,11.820946937499777,72.98563216370505,0.0718977919968892 +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.0706645410027704 +22,389.6303367203219,0.2791714855889576,11.57010712496458,71.43688125681884,0.0703721249956288 +23,388.1340397821256,0.2780993836509139,11.525674455754546,71.16254228311722,0.0701018750041839 +24,386.7157163168241,0.2770831499762293,11.483557215681506,70.90249937725069,0.0698457079997751 +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.0711431250019813 +26,388.7795265014115,0.2785618771206674,11.54484224066766,71.28088922321079,0.0702184580004541 +27,378.82221127416574,0.2714274262771667,11.249158889042578,69.455262524035,0.0684200420000706 +28,392.96851579515817,0.281563302456526,11.6692346462538,72.0489206174866,0.0709750419991905 +29,375.2639478299834,0.2688779181967877,11.143495943044648,68.80287173413357,0.067777374999423 +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.090134540994768 +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.088257416995475 +2,455.5753429091931,1.3050782533395655,13.497256672696034,88.47056791059792,0.0903868749956018 +3,419.6566096594096,1.202182522959485,12.433098197975724,81.49532050377981,0.0832605410032556 +4,435.18530530497446,1.2466672899803264,12.893164341112325,84.51091944708739,0.0863414589985041 +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.0862921669977367 +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.0870674999969196 +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.0829531249983119 +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.085397875001945 +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.0889262089986004 +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.087149708000652 +11,445.6432605229153,1.276626000744122,13.20300048138,86.5418046820226,0.088416334001522 +12,443.8860921648639,1.2715922730693427,13.15094113990136,86.20057093227965,0.0880677089953678 +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.0856246249968535 +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.0846896250004647 +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.0914325000048847 +16,448.61450172342313,1.2851376604214158,13.291028961726749,87.11880561172545,0.0890058329969178 +17,446.24997941202497,1.278364057116996,13.220975643341562,86.6596266087732,0.0885367079972638 +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.0873248749994672 +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951 +20,443.4385504379859,1.2703102085671665,13.137681893865697,86.11366045444791,0.0879789160026121 +21,442.1656725615023,1.2666638188720003,13.099970547807796,85.8664736161651,0.0877263750007841 +22,441.68348391262026,1.2652825019735825,13.085684823042577,85.77283487063022,0.0876307080034166 +23,435.0414455972906,1.2462551777381865,12.888902232923874,84.4829825750939,0.0863129170029424 +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.0910823329977574 +25,446.02715863284936,1.2777257465547136,13.214374168315857,86.616355871709,0.0884924999991199 +26,450.1188192756612,1.2894470510723803,13.33559713345909,87.410936935854,0.0893042919997242 +27,448.4937466626544,1.2847917356336875,13.287451371158928,87.09535555243103,0.0889818750001723 +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.0864285839998046 +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.0874653330029104 +0,310.5645000365186,0.0,0.0,62.906193325953055,0.0660357079977984 +1,288.3742824692979,0.0,0.0,58.41146802391626,0.0613173750025453 +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334 +3,321.1442400366122,0.0,0.0,65.04916578322343,0.0682852910031215 +4,320.22265380094257,0.0,0.0,64.86249447371847,0.0680893329990794 +5,319.2936180922495,0.0,0.0,64.67431424097813,0.0678917910045129 +6,321.08878720952856,0.0,0.0,65.03793357136217,0.0682735000009415 +7,320.00827793597637,0.0,0.0,64.81907170774105,0.0680437499977415 +8,320.43507321341815,0.0,0.0,64.90552095171516,0.0681344999975408 +9,317.3079830296693,0.0,0.0,64.2721152030753,0.0674695830020937 +10,320.68334814658476,0.0,0.0,64.95581012173277,0.0681872909990488 +11,325.38888014404125,0.0,0.0,65.90893614063914,0.0691878340003313 +12,295.5038000069898,0.0,0.0,59.85558288087539,0.0628333330023451 +13,298.2466145543028,0.0,0.0,60.41115192418272,0.0634165410010609 +14,342.3866146636323,0.0,0.0,69.35190136579169,0.0728020829992601 +15,299.69944448734907,0.0,0.0,60.70542896044151,0.0637254579996806 +16,292.9898605966174,0.0,0.0,59.34637349429057,0.0622987910028314 +17,323.37110492136594,0.0,0.0,65.50022697320047,0.0687587919965153 +18,316.76831626965384,0.0,0.0,64.16280334826533,0.0673548330014455 +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589 +20,319.69611777139016,0.0,0.0,64.75584230560457,0.0679773750016465 +21,322.2084863736894,0.0,0.0,65.26473351816657,0.068511582998326 +22,322.89276972182176,0.0,0.0,65.40333809332657,0.0686570830002892 +23,295.41542632084173,0.0,0.0,59.83768240549876,0.0628145419977954 +24,322.6825089599613,0.0,0.0,65.36074885942217,0.068612374998338 +25,322.5780652279843,0.0,0.0,65.33959332620877,0.0685901670003659 +26,321.6707807541225,0.0,0.0,65.15581890090364,0.0683972499973606 +27,318.3269632325836,0.0,0.0,64.4785140852151,0.0676862500040442 +28,328.9750938995778,0.0,0.0,66.63533937020159,0.0699503750001895 +29,307.251251832783,0.0,0.0,62.235080458846376,0.0653312079957686 +0,297.4059709817293,0.9431835074740536,0.0,64.00173800716793,0.0684758749994216 +1,294.011382014694,0.9324180197543812,0.0,63.2712227690473,0.0676942920035799 +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.0683419589986442 +3,295.5819955572358,0.937399011847616,0.0,63.609218661088235,0.0680559160027769 +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.0683780000035767 +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.0666158339954563 +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.0695982499964884 +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.0631072079995647 +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908 +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.0682349579947185 +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217 +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.0678802910042577 +12,298.78404079959876,0.9475538727362968,0.0,64.29829850710586,0.068793167003605 +13,298.6888503744389,0.9472519889550676,0.0,64.27781353623672,0.0687712500002817 +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.0684182080003665 +15,300.98587226643184,0.9545366885785584,0.0,64.77213243925932,0.0693001250037923 +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.0688503339988528 +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.0703221669973572 +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.0622112919954815 +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.0704370409948751 +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.0679169579962035 +21,294.30110968856326,0.9333368525631184,0.0,63.33357213821159,0.067760999998427 +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.0683039159994223 +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.0686080419982317 +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.0654641670043929 +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.0682025420028367 +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.0679551669963984 +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.0682538749970262 +28,297.22988805085987,0.9426250838627336,0.0,63.963844976399784,0.0684353329997975 +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.0624182920000748 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/mac_report.md new file mode 100644 index 000000000..c56529e19 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 482.89 ms | 73.43 ms | +| **Average Power** | 4.177 W | 5.169 W | +| **Total Energy** | 1815.47 J | 341.56 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.74% | 0.00e+00 | +6.500 | large | βœ… | +| `gpu_mj` | +86.51% | 1.12e-33 | +0.605 | medium | βœ… | +| `ane_mj` | +85.56% | 9.85e-23 | +0.475 | small | βœ… | +| `dram_mj` | +85.45% | 0.00e+00 | +28.600 | large | βœ… | +| `time_s` | +84.95% | 0.00e+00 | +52.041 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.500, large) +- **`gpu_mj`**: 86.5% lower energy (Cohen’s d = +0.605, medium) +- **`ane_mj`**: 85.6% lower energy (Cohen’s d = +0.475, small) +- **`dram_mj`**: 85.5% lower energy (Cohen’s d = +28.600, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +52.041, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..29d534adc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1507.0006290040246,0.1012179708729699,0.0,462.9372594493401,0.4960314169948105 +1,1496.950668211312,0.1005429634315572,0.0,459.850000414799,0.4927234579954529 +2,1468.6940451139656,0.0986451022106724,0.0,451.169815810879,0.4834227500032284 +3,1468.9915282259046,0.0986650827178998,0.0,451.2611999907679,0.4835206669959007 +4,1479.172504714708,0.0993488898523289,0.0,454.3887058879351,0.4868717499994091 +5,1500.238416336118,0.1007637856313158,0.0,460.85996754909496,0.4938056250030058 +6,1509.7154372095292,0.10140031145902,0.0,463.7712245097378,0.4969250000067404 +7,1461.69840489276,0.0981752387650176,0.0,449.0208170316026,0.4811201249976875 +8,1471.3692332004143,0.0988247817042323,0.0,451.99160992125746,0.4843032919961842 +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694 +10,1480.732072591294,0.0994536385119303,0.0,454.8677913407322,0.4873850840012892 +11,1466.0959491930096,0.0984706006264055,0.0,450.3717037316366,0.4825675830070395 +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.4856114580034045 +13,1514.13083342455,0.1016968723475048,0.0,465.12759516003786,0.4983783339994261 +14,1512.595950245761,0.1015937816401129,0.0,464.6560926279964,0.497873125001206 +15,1561.482643030755,0.1048772652373676,0.0,479.67365210730736,0.5139642499998445 +16,1502.2335709419558,0.1008977905526769,0.0,461.4728613910934,0.4944623330011382 +17,1495.3046447168208,0.1004324079646814,0.0,459.34435656113146,0.4921816670030239 +18,1495.762512977266,0.1004631607695293,0.0,459.4850096395707,0.4923323749972041 +19,1505.742214321196,0.1011334492223075,0.0,462.5506855930939,0.4956172079982934 +20,1500.2357579650031,0.1007636070813372,0.0,460.8591509210095,0.4938047499963431 +21,1501.366192061746,0.1008395328926977,0.0,461.2064102735686,0.4941768339995178 +22,1472.4900455897166,0.0989000612718656,0.0,452.3359135704227,0.4846722090005642 +23,1462.9344104531915,0.0982582553029054,0.0,449.40050700372194,0.4815269579994492 +24,1472.7381563218598,0.0989167256742394,0.0,452.4121309920798,0.4847538750036619 +25,1482.564812614605,0.0995767348283664,0.0,455.4307928600052,0.4879883330067969 +26,1501.7557027604369,0.1008656944494987,0.0,461.32606451385743,0.4943050420042709 +27,1471.3960688887162,0.0988265841281097,0.0,451.99985360726447,0.4843121250014519 +28,1465.3707267413292,0.0984218909287598,0.0,450.14892181117136,0.48232887499762 +29,1493.8271059364454,0.100333168804221,0.0,458.8904697209055,0.4916953329957323 +0,1471.069231866696,0.1008456582331723,0.0,459.85620154326585,0.4853926670039072 +1,1468.578895878081,0.1006749391626123,0.0,459.0777225815124,0.484570958004042 +2,1461.668066437173,0.1002011836596023,0.0,456.9173974877869,0.4822906670015072 +3,1442.4901829574026,0.0988864893942737,0.0,450.92239163788827,0.475962749995233 +4,1460.192632019516,0.1001000387564221,0.0,456.4561767292852,0.4818038340017665 +5,1457.0270850402062,0.0998830321996393,0.0,455.4666268303555,0.4807593329969677 +6,1451.4069459189002,0.0994977569068301,0.0,453.70977149514545,0.4789049169994541 +7,1454.602166278216,0.0997167976517217,0.0,454.7085972918513,0.4799592090057558 +8,1454.5623855826552,0.0997140705805942,0.0,454.6961618475098,0.4799460830035968 +9,1468.8514054091331,0.1006936204064576,0.0,459.16290905344687,0.4846608750012819 +10,1454.7620315206584,0.0997277568338278,0.0,454.7585711622551,0.4800119579958846 +11,1461.4857195792638,0.100188683303729,0.0,456.86039586500453,0.4822304999979678 +12,1456.5270230567808,0.09984875163773,0.0,455.310307468049,0.480594332999317 +13,1456.90813089835,0.0998748775808932,0.0,455.4294417688732,0.4807200829964131 +14,1448.7476526265218,0.0993154553694887,0.0,452.8784764848686,0.4780274590011686 +15,1454.4989959096524,0.0997097250520761,0.0,454.6763462374673,0.4799251670046942 +16,1457.879845299315,0.0999414911543792,0.0,455.73319966396946,0.4810407089971704 +17,1455.9537216856306,0.0998094503234973,0.0,455.131093475148,0.4804051669998443 +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.4814032080030301 +19,1468.4137238864755,0.1006636161889179,0.0,459.02608982146575,0.4845164580037817 +20,1463.4019935002775,0.1003200489123173,0.0,457.4594230401672,0.4828627919996506 +21,1455.2831840044878,0.0997634832049143,0.0,454.9214834144096,0.4801839169958839 +22,1465.0343928246136,0.100431954171972,0.0,457.9697110241926,0.483401416997367 +23,1452.4517724066477,0.0995693825058256,0.0,454.036384226565,0.47924966699793 +24,1458.159298145276,0.0999606483806916,0.0,455.8205566159539,0.4811329170042882 +25,1464.0746768847828,0.1003661631244995,0.0,457.6697038477178,0.4830847499979427 +26,1460.330527893312,0.1001094918806255,0.0,456.49928297565265,0.48184933399898 +27,1466.457926870734,0.1005295411684155,0.0,458.41470772797504,0.4838711249976768 +28,1458.690297278725,0.0999970497654626,0.0,455.9865469305096,0.4813081249958486 +29,1453.5116250142864,0.0996420381847918,0.0,454.3676941226507,0.4795993750012712 +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394 +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.4822331670002313 +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149 +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802 +4,1458.91194965116,0.3992552485989172,0.0,454.9180845077496,0.4819204169980366 +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.4810576669988222 +6,1468.611380787982,0.4019096574484203,0.0,457.94256219102095,0.4851244170058635 +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.4791258749974076 +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833 +9,1466.35176146208,0.4012912754577062,0.0,457.2379674444348,0.4843780000010156 +10,1460.154775553515,0.3995953683468763,0.0,455.3056226172367,0.4823309580024215 +11,1457.9792906101436,0.3990000111136337,0.0,454.6272626630594,0.4816123329947004 +12,1457.422775179489,0.3988477115134636,0.0,454.4537299602991,0.4814285000029485 +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474 +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208 +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636 +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052 +17,1457.9613811923634,0.398995109906916,0.0,454.6216781464386,0.4816064170008758 +18,1469.355588079086,0.4021133220130226,0.0,458.1746209903382,0.4853702499967767 +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.4835539170017 +20,1460.7395477092175,0.3997554008645718,0.0,455.4879663351075,0.4825241250000545 +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.4834142079998855 +22,1459.13710420092,0.3993168658443987,0.0,454.98829222420534,0.4819947919968399 +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122 +24,1458.813181355714,0.399228219030504,0.0,454.8872865670067,0.4818877910001902 +25,1457.0466346307994,0.3987447744662271,0.0,454.33644177306024,0.4813042500027222 +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921 +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982 +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989 +29,1471.0342193441872,0.4025727070658452,0.0,458.69805197594184,0.4859247499989578 +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.4925840419964515 +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336 +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091 +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.4959620000008726 +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922 +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767 +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257 +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117 +8,2281.0575381943677,2.99700990419698,84.21597830793513,509.79138470390626,0.4952505420005764 +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.495590375001484 +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.4952706249969196 +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.4955860830013989 +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566 +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922 +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516 +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.4973028749955119 +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166 +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952 +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721 +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778 +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292 +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.4962343750012223 +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198 +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.4910860830059391 +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296 +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179 +26,2277.258468092052,2.992018425230434,84.07571774897518,508.9423341316967,0.4944257090028259 +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.4949400409968802 +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396 +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236 +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.4962522920031915 +1,1548.7716415444704,0.5093526556274295,0.0,468.3667452712757,0.4990278339973883 +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157 +3,1537.9614894800372,0.5057974642008454,0.0,465.0976282481506,0.4955447079992154 +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305 +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575 +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797 +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397 +8,1543.794275756641,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953 +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.4938442089987802 +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.4946216250027646 +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.4986832079957821 +12,1536.410091706245,0.5052872478753273,0.0,464.6284673296259,0.4950448340023285 +13,1501.0461152669352,0.4936569114010968,0.0,453.9339852636886,0.4836502500038477 +14,1503.158875751745,0.4943517460266646,0.0,454.5729088630523,0.4843309999996563 +15,1497.0097852395263,0.492329462367746,0.0,452.7133516292214,0.4823497089964803 +16,1521.5805489456525,0.5004101783421352,0.0,460.14383932487135,0.4902666249981848 +17,1499.5455354643086,0.4931634078483803,0.0,453.48019229684735,0.4831667500038747 +18,1505.117621218829,0.4949959289252891,0.0,455.1652565111009,0.4849621250032214 +19,1493.7772756646511,0.4912663699839896,0.0,451.73580274594457,0.4813081660031457 +20,1496.3047548280974,0.492097595317287,0.0,452.50014214742265,0.4821225420018891 +21,1502.9231341998309,0.4942742164656317,0.0,454.5016178473639,0.4842550419998588 +22,1510.012481501061,0.4966057273079569,0.0,456.64551978391,0.4865392920037266 +23,1504.4246171495324,0.4947680170410652,0.0,454.9556839364942,0.4847388330017566 +24,1509.3322796742225,0.4963820257643792,0.0,456.43981875787216,0.4863201249972917 +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552 +26,1505.193401276411,0.4950208511104179,0.0,455.1881732910663,0.4849865420037531 +27,1520.90862436748,0.5001891989807543,0.0,459.9406414361029,0.4900501249940134 +28,1511.0160978228655,0.4969357918733388,0.0,456.9490251539309,0.4868626660027075 +29,1510.3806433826635,0.4967268066375784,0.0,456.7568562634747,0.4866579169975011 +0,1515.8144076794304,0.1016097605362267,0.0,463.7808170075175,0.5029127919988241 +1,1494.2954542299487,0.1001672780687725,0.0,457.1968461985674,0.495773292001104 +2,1490.567926608189,0.0999174102834286,0.0,456.0563663369963,0.4945365829989896 +3,1487.0834114226138,0.0996838323785101,0.0,454.9902389196463,0.4933805000036955 +4,1489.19388742284,0.0998253041575841,0.0,455.63596327659974,0.4940807080056402 +5,1491.6388015866264,0.0999891943683219,0.0,456.38401282847735,0.4948918749942095 +6,1489.4443053961663,0.0998420904542275,0.0,455.7125815299125,0.4941637910014833 +7,1483.7489697588535,0.0994603143691415,0.0,453.9700282188851,0.4922742079943418 +8,1490.2046075822443,0.0998930558776139,0.0,455.94520471072246,0.4944160419981926 +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724 +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.4923946249982691 +11,1498.6863274365105,0.1004616119745616,0.0,458.5402842558907,0.4972300840017851 +12,1494.202268227495,0.1001610315208134,0.0,457.1683348714995,0.4957423750020098 +13,1500.9979926125363,0.1006165700906647,0.0,459.24756475049065,0.4979970420026802 +14,1506.206429303655,0.1009657078230094,0.0,460.8411457401562,0.4997250829983386 +15,1499.448257241606,0.1005126865023197,0.0,458.7734054254215,0.4974828750055167 +16,1490.7811750729018,0.0999317049921505,0.0,456.1216121525058,0.4946073339961003 +17,1491.8823143613793,0.1000055177879996,0.0,456.4585183570265,0.4949726670020027 +18,1482.553013888322,0.0993801457225044,0.0,453.60411179275127,0.4918774170000688 +19,1497.833219014053,0.1004044254601188,0.0,458.2792659418024,0.4969470420037396 +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598 +21,1482.0456464125618,0.09934613530048,0.0,453.4488768898246,0.4917090839953744 +22,1496.2841105630728,0.1003005838961705,0.0,457.80529843008793,0.4964330830043764 +23,1488.0433927335248,0.0997481829155064,0.0,455.2839562206765,0.4936989999987418 +24,1474.3194514814572,0.0988282243921073,0.0,451.0849588670419,0.4891457080011605 +25,1494.2725955009112,0.1001657457769748,0.0,457.189852308039,0.4957657079939963 +26,1490.5446941438947,0.0999158529389928,0.0,456.0492580978762,0.4945288749950123 +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964 +28,1488.174128032597,0.0997569465097598,0.0,455.3239561860471,0.4937423750016023 +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141 +0,1478.185480632039,0.1001910585367731,0.0,453.1975547813372,0.4826704579973011 +1,1472.4376515691376,0.0998014720568313,0.0,451.43532527040054,0.4807936249999329 +2,1467.3052593754642,0.0994535997407738,0.0,449.86178282743384,0.4791177500010235 +3,1469.146722041262,0.0995784136400846,0.0,450.4263576986495,0.4797190410026815 +4,1470.385895182594,0.0996624044993963,0.0,450.8062763522695,0.480123666995496 +5,1466.8412883523577,0.0994221518957337,0.0,449.7195337417024,0.4789662499970291 +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107 +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546 +8,1478.2217224431022,0.1001935149980638,0.0,453.2086661745757,0.4826822920003906 +9,1476.0122465403242,0.1000437572495192,0.0,452.5312619586588,0.4819608339967089 +10,1472.6817615590717,0.0998180177735978,0.0,451.51016706257434,0.4808733339959872 +11,1475.1950634268462,0.0999883687734244,0.0,452.2807214184565,0.4816939999946044 +12,1475.1436376964589,0.0999848831497113,0.0,452.2649547805279,0.4816772080012015 +13,1471.505244398319,0.0997382737216727,0.0,451.14945813436634,0.4804891669991775 +14,1487.7908044971591,0.1008421050923268,0.0,456.1424553676251,0.4858068749963422 +15,1468.6795629390188,0.0995467497078027,0.0,450.2831311782943,0.4795664999983273 +16,1475.7644370380624,0.1000269607806915,0.0,452.455285931328,0.4818799170025158 +17,1467.6844997653377,0.0994793045637471,0.0,449.97805431001626,0.4792415829942911 +18,1482.7513106263857,0.1005005294023893,0.0,454.5973946634747,0.4841613339958712 +19,1477.909345926593,0.1001723421924443,0.0,453.1128945171565,0.4825802920022397 +20,1479.7538741610845,0.1002973638752683,0.0,453.678409262464,0.4831825840010424 +21,1471.3194508052536,0.0997256806763462,0.0,451.0924955926728,0.4804284999991068 +22,1489.160260118828,0.1009349264670134,0.0,456.562317385791,0.4862540419999277 +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504 +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.4825493750031455 +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.4815804590034531 +26,1470.1209876523235,0.0996444491303172,0.0,450.7250582328016,0.4800371669989545 +27,1479.45489308524,0.100277099009415,0.0,453.5867445192541,0.483084958003019 +28,1481.6974196226456,0.1004290969220744,0.0,454.2742817441834,0.4838172079980722 +29,1478.0856947176749,0.10018429507135,0.0,453.1669613727401,0.4826378750003641 +0,1445.9512284681282,0.0993735381060291,0.0,451.0233649505643,0.479501458001323 +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221 +2,1445.2778876531952,0.0993272625070921,0.0,450.8133354321888,0.4792781669966643 +3,1473.4560079931225,0.1012638143493852,0.0,459.6026987270767,0.488622500000929 +4,1438.408509378345,0.0988551619200731,0.0,448.6706282345721,0.4770001669967314 +5,1462.0207397229187,0.1004779212674964,0.0,456.035791992744,0.4848303749968181 +6,1459.873808732507,0.1003303726334995,0.0,455.36611792590986,0.4841184169999906 +7,1445.935900531451,0.0993724846878574,0.0,451.01858383662216,0.4794963750027818 +8,1451.6571155923002,0.0997656773292609,0.0,452.8031541717392,0.4813936249993276 +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256 +10,1453.1768162644023,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993 +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.4802655410021543 +12,1459.790501679045,0.1003246473251428,0.0,455.3401326597149,0.4840907909965608 +13,1455.5734090741,0.1000348260611724,0.0,454.02473054964133,0.4826923330037971 +14,1458.6344227252057,0.1002451953673512,0.0,454.9795267072848,0.4837074160022894 +15,1454.1420362947786,0.0999364544324277,0.0,453.578254517312,0.4822176660018158 +16,1452.8549083992968,0.099847996087187,0.0,453.17677157437976,0.4817908330005593 +17,1456.5114923274932,0.1000992961830495,0.0,454.3173389428009,0.483003417000873 +18,1445.2579097656906,0.0993258895193134,0.0,450.807103898324,0.47927154199715 +19,1460.9679426822058,0.1004055673977507,0.0,455.707401895925,0.4844812500014086 +20,1450.2062685342962,0.0996659673234419,0.0,452.3506036919953,0.4809125000028871 +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235 +22,1455.721926964596,0.1000450330086545,0.0,454.0710564819467,0.4827415840045432 +23,1450.0845164884097,0.0996575998686252,0.0,452.3126266037338,0.4808721250010421 +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355 +25,1455.2424545927595,0.1000120810908613,0.0,453.921498711056,0.4825825829975656 +26,1450.4460031843537,0.0996824431767859,0.0,452.4253820983725,0.4809919999970589 +27,1449.8539520475165,0.0996417542413302,0.0,452.24070858331766,0.4807956660006311 +28,1454.8514398281357,0.0999852084551545,0.0,453.79953277512817,0.4824529160032398 +29,1481.6993373073888,0.1018303402346322,0.0,462.1739708782508,0.4913561249995837 +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427 +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.4848300000012386 +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943 +3,1463.6997649458424,0.9049459287293112,0.0,456.293847174846,0.4853247499995632 +4,1469.782118043518,0.908706399834558,0.0,458.1899602721361,0.4873414999965462 +5,1441.0904332217217,0.8909675001027336,0.0,449.2456128295784,0.4778280839964282 +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285 +7,1447.019725460083,0.8946333399148689,0.0,451.0940107259638,0.4797940829957952 +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928 +9,1485.7182300106604,0.9185590485742904,0.0,463.1578847144588,0.4926254999954835 +10,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.4854045410029357 +11,1476.406582468932,0.9128020362863496,0.0,460.25507118527264,0.4895380000016303 +12,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.480668666998099 +13,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029 +14,1453.0520656111892,0.8983628900529438,0.0,452.9745327844733,0.4817942500012577 +15,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347 +16,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518 +17,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.4827774170043994 +18,1452.131203241068,0.8977935583684558,0.0,452.6874630973391,0.4814889160043094 +19,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651 +20,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.4821297079979558 +21,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213 +22,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.4835610840018489 +23,1452.891467970985,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396 +24,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403 +25,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.486632667001686 +26,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.4821981659988523 +27,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354 +28,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348 +29,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541 +0,1473.756556484359,1.730836715732926,0.0,462.06552715105465,0.4929395419967477 +1,1446.159224005418,1.6984253408008363,0.0,453.4129610784978,0.4837088339991169 +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742 +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.4820898329999181 +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.4803014579956652 +5,1452.578920577144,1.7059648808159893,0.0,455.4257225943078,0.4858560829961789 +6,1491.0040656140802,1.7510928577160183,0.0,467.4731227020312,0.4987084589956794 +7,1471.581150604885,1.7282818349072917,0.0,461.38347416201515,0.4922119160037255 +8,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.4822434169982443 +9,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321 +10,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.4814543749962467 +11,1442.9805152629783,1.694692142277764,0.0,452.4163434727796,0.4826456250011688 +12,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.4814219580002827 +13,1428.712272923545,1.677934966473248,0.0,447.942834677123,0.477873208001256 +14,1442.6170148012343,1.694265233272607,0.0,452.30237550993223,0.48252404199593 +15,1464.2447277915137,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759 +16,1449.9154471216857,1.702836794547057,0.0,454.59064623055264,0.4849652090051677 +17,1444.6339619987823,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075 +18,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.4831488749987329 +19,1438.8095895874126,1.6897936458021423,0.0,451.1086370116896,0.481250541000918 +20,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.4836824999947566 +21,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994 +22,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702 +23,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.4835075840019271 +24,1448.596476504854,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375 +25,1447.9104558714089,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382 +26,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544 +27,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.4828053749952232 +28,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.4813471250017755 +29,1439.678106400043,1.690813665547546,0.0,451.3809422829379,0.4815410410010372 +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.4942865000048186 +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005 +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.4824957500022719 +3,1508.1492778731936,1.951623100383721,0.0,443.18107904547,0.4817460420017596 +4,1509.5093876893875,1.953383152770635,0.0,443.5807576083317,0.4821805000028689 +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.484043999997084 +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509 +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.4944804589977138 +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042 +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149 +11,1548.4815781326529,2.003815181123219,0.0,455.0330307133976,0.494629332999466 +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555 +13,1548.2143040147903,2.003469314603102,0.0,454.95449019112107,0.4945439579969388 +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453 +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676 +16,1553.068674945917,2.0097511214414663,0.0,456.380983827333,0.4960945830025594 +17,1547.303042521918,2.002290095141161,0.0,454.686709104972,0.4942528749961639 +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793 +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576 +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.4960286249988712 +21,1560.5320011886452,2.0194090512728877,0.0,458.5741387265515,0.4984785830019973 +22,1572.43476681286,2.034811845075521,0.0,462.0718564858995,0.5022806669949205 +23,1545.401732006987,1.9998297010831043,0.0,454.127994620955,0.4936455420029233 +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539 +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +26,1565.7153470029502,2.0261165686101243,0.0,460.0973041218824,0.500134292000439 +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341 +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.4930831250021583 +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.4954994579966296 +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778 +1,1488.7041689159475,1.9934442540384945,0.0,459.4224524140717,0.4818315829979838 +2,1487.819878516848,1.9922601479872095,0.0,459.1495554394523,0.4815453749979497 +3,1491.727934254883,1.9974932167312307,0.0,460.3556033493242,0.4828102499959641 +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.4815899169989279 +5,1501.2124715705363,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793 +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881 +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226 +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.4821794169984059 +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622 +10,1497.9545334031648,2.005830923142963,0.0,462.2771667536816,0.4848255410033744 +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.4850677080030436 +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.4837472500003059 +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.487756000002264 +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639 +15,1529.9467312348206,2.048669966838271,0.0,472.15013835732685,0.4951800839990028 +16,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.4869370829983381 +17,1491.0045635252643,1.996524589616048,0.0,460.1323670868452,0.4825761249958304 +18,1493.856851787251,2.0003439365121194,0.0,461.0125992348264,0.4834992920004879 +19,1491.1042056393792,1.9966580150500528,0.0,460.1631172018688,0.4826083750012913 +20,1484.7932830352129,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615 +21,1505.3592048868377,2.0157461233085665,0.0,464.562289885181,0.4872221249970607 +22,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039 +23,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.478613375002169 +24,1486.3696611665118,1.9903182393766896,0.0,458.7020102350144,0.481075999996392 +25,1490.7165777906416,1.996138963297592,0.0,460.0434930746517,0.4824829159988439 +26,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.4882316250004805 +27,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877 +28,1483.4506884174402,1.986409598844992,0.0,457.80119888047585,0.4801312499985215 +29,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782 +0,1445.0937116123694,0.0994855344525118,0.0,451.26638427659367,0.4804801249993033 +1,1451.89089555387,0.0999534774459373,0.0,453.38897369477166,0.4827401250004186 +2,1450.1180395946535,0.0998314275600422,0.0,452.8353554123517,0.482150666997768 +3,1449.4058631584062,0.0997823987304132,0.0,452.6129606411546,0.4819138750026468 +4,1446.5463840973528,0.0995855417374316,0.0,451.7200173209899,0.4809631249954691 +5,1445.161635344861,0.0994902105705896,0.0,451.2875951481944,0.4805027090042131 +6,1451.1624299232567,0.0999033272086139,0.0,453.1614922182729,0.4824979170007282 +7,1461.9935620683018,0.1006489819447163,0.0,456.5437821012335,0.4860991669993382 +8,1443.721239879732,0.099391048480602,0.0,450.837795908011,0.4800237910021678 +9,1457.922268440679,0.1003686992065088,0.0,455.2724196007243,0.4847454999980982 +10,1463.2726687745692,0.1007370403268629,0.0,456.9432149226504,0.4865244579996215 +11,1434.2653374502413,0.0987400695860367,0.0,447.8849556422627,0.4768797920041834 +12,1440.3483418552953,0.099158845849092,0.0,449.7845247714817,0.4789023339981213 +13,1458.1363075618142,0.100383434442147,0.0,455.3392586295791,0.4848166660012794 +14,1443.7793888920285,0.0993950516712046,0.0,450.8559543805843,0.4800431250041583 +15,1447.6267393486346,0.0996599173427703,0.0,452.0573850668063,0.4813223329983884 +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.4835391250016982 +17,1450.7958782332366,0.099878092450139,0.0,453.0470273538308,0.4823760419967584 +18,1447.8402822026578,0.0996746184135661,0.0,452.12406912393624,0.4813933339974028 +19,1442.8031718956472,0.0993278453240687,0.0,450.5511063899757,0.4797185419956804 +20,1471.4015954886795,0.1012966653616825,0.0,459.4816740805919,0.4892272500001127 +21,1448.4089689054954,0.0997137688853405,0.0,452.30165566390485,0.4815824170000269 +22,1437.411540338623,0.0989566656955703,0.0,448.867435595107,0.4779258749986184 +23,1446.9099281828417,0.0996105694414146,0.0,451.8335429862568,0.4810839999991003 +24,1445.926441829572,0.0995428626451732,0.0,451.526424958506,0.4807569999975385 +25,1558.660068355674,0.1073038576558051,0.0,486.7302983267323,0.5182398750039283 +26,1444.6335482723644,0.0994538551258024,0.0,451.12268685063987,0.4803271249984391 +27,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.4812947079990408 +28,1448.532656600787,0.0997222839984937,0.0,452.3402802171675,0.4816235420003067 +29,1441.3934810706207,0.0992307970537637,0.0,450.1108954358723,0.479249832998903 +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455 +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247 +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637 +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687 +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102 +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535 +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377 +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012 +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362 +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754 +10,2530.966135457355,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819 +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904 +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.4971295420036767 +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964 +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.495697750004183 +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316 +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772 +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.4958168329976615 +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591 +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655 +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278 +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505 +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175 +23,2797.642040985372,82.6511430553775,94.43706884190712,620.4635152953034,0.5694319999965956 +24,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116 +25,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507 +26,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086 +27,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.4958617500014952 +28,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456 +29,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.4988807499976246 +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908 +1,1573.4160634871228,22.800282743848378,0.0,461.1160630781749,0.4818563750013709 +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289 +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567 +4,1576.0847815073448,22.83895498499088,0.0,461.8981758171432,0.482673666003393 +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.4821627080018515 +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886 +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355 +8,1576.0729479760837,22.83878350596198,0.0,461.8947078016104,0.4826700420017005 +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.4872023339994484 +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.4906837089947657 +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.4933289170003263 +12,1613.171083804858,23.376370483618174,0.0,472.76694098765734,0.4940312920007272 +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545 +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044 +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329 +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758 +17,1588.96402650174,23.025587392155135,0.0,465.6726553620341,0.4866179160017054 +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.4825434170052176 +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111 +20,1697.495566956316,24.59831177600658,0.0,497.47965022854686,0.5198555419992772 +21,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.4996486660020309 +22,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483 +23,1630.1989199727825,23.623119889674296,0.0,477.7572350101371,0.4992460419962299 +24,1632.2295419060226,23.652545516689397,0.0,478.3523429495976,0.4998679170021205 +25,1613.240197605974,23.37737200778176,0.0,472.7871959504829,0.4940524580015335 +26,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.4955697920013335 +27,1610.8625013861165,23.34291694700681,0.0,472.090372048948,0.4933242920014891 +28,1614.9038790021225,23.401480320330567,0.0,473.2747657887544,0.4945619580030325 +29,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.4993293750012526 +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.4891792919952422 +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176 +2,1470.6334323813912,0.0996521649118915,0.0,454.2145676684016,0.4823543749953387 +3,1485.0875958430825,0.1006315991129864,0.0,458.67882875699206,0.4870952089986531 +4,1472.876125743892,0.099804132930492,0.0,454.9072378971828,0.4830899579974357 +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356 +6,1476.1830010833758,0.1000282113985979,0.0,455.9285875548095,0.4841745829980937 +7,1463.426296356512,0.0991637993600961,0.0,451.9885974833182,0.4799905000036233 +8,1471.8095321193011,0.0997318590643937,0.0,454.57781361550656,0.4827401250004186 +9,1476.4591795005704,0.1000469256319136,0.0,456.01388703026225,0.484265167004196 +10,1480.2938895968366,0.1003067709165972,0.0,457.1982618378502,0.4855229169988888 +11,1473.468242797507,0.0998442556048273,0.0,455.090117046803,0.4832841669995105 +12,1470.8582862106548,0.0996674013198103,0.0,454.2840152156956,0.4824281250039348 +13,1481.467574625828,0.1003863014450677,0.0,457.56076198661873,0.4859078750014305 +14,1498.777378307361,0.1015592377955431,0.0,462.9070058720858,0.4915853329948731 +15,1481.2213787556393,0.1003696188707997,0.0,457.48472281310535,0.4858271249977406 +16,1531.283872192057,0.1037619229909012,0.0,472.9468449925279,0.5022471670017694 +17,1470.3611931394696,0.099633717602566,0.0,454.1304848324962,0.4822650830028578 +18,1478.7457002780488,0.1002018634570539,0.0,456.7200936372517,0.4850151249993359 +19,1464.457703027839,0.0992336889093469,0.0,452.30715404880334,0.480328792000364 +20,1474.8152039772676,0.0999355275660516,0.0,455.5061346460632,0.4837259580017417 +21,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.4817905829986557 +22,1467.7080463118232,0.0994539366868174,0.0,453.311043418514,0.4813948750015697 +23,1476.5658867326172,0.1000541562622332,0.0,456.04684424325905,0.4843001660046866 +24,1477.537206367709,0.1001199742304141,0.0,456.3468425422278,0.4846187500006635 +25,1452.3435435551507,0.0984128166301233,0.0,448.56561820010234,0.4763554579985793 +26,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921 +27,1471.1452606296632,0.0996868471052106,0.0,454.3726491055499,0.4825222500003292 +28,1466.003983774469,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276 +29,1458.1899954967043,0.0988089803376801,0.0,450.37133237914605,0.4782730410006479 +0,1491.8732837180632,0.1671341986195764,0.0,457.51315530122855,0.4853813329973491 +1,1490.1256809068748,0.1669384151046217,0.0,456.9772175073916,0.4848127500008559 +2,1488.2943221687606,0.1667332484336851,0.0,456.4155942623698,0.4842169169933186 +3,1478.1767640016478,0.1655997808699836,0.0,453.3128401534932,0.48092516700126 +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.4807152499997755 +5,1475.4721125595993,0.165296779431292,0.0,452.48340401521887,0.4800452080016839 +6,1484.248678964546,0.166280016016283,0.0,455.1749158429732,0.4829006660002051 +7,1479.026359174096,0.1656949608090896,0.0,453.57338571880194,0.481201582995709 +8,1478.2323440915482,0.1656060074938437,0.0,453.3298849136479,0.4809432499969261 +9,1480.85157375242,0.1658994391513096,0.0,454.133124732795,0.4817954169993754 +10,1481.4601486859867,0.1659676176520789,0.0,454.3197565608008,0.4819934170009219 +11,1482.2434061160802,0.1660553657901548,0.0,454.5599583139699,0.4822482499948819 +12,1491.9479478691496,0.1671425632261376,0.0,457.5360525752291,0.4854056249969289 +13,1501.6120194051157,0.1682252267936093,0.0,460.49973582482613,0.4885498330040718 +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161 +15,1473.289209598557,0.1650522293471529,0.0,451.81397261489656,0.4793349999963538 +16,1479.9291063236064,0.1657960953511691,0.0,453.85023141429053,0.4814952919987263 +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442 +18,1492.6903539863913,0.1672257348016391,0.0,457.76372644600696,0.4856471670063911 +19,1482.245585323591,0.1660556099262386,0.0,454.5606266120856,0.4822489590005716 +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339 +21,1481.4204468550586,0.1659631698656828,0.0,454.3075811903203,0.4819805000006454 +22,1521.4543559992917,0.1704481589029252,0.0,466.5847901808677,0.4950055420049466 +23,1507.892303639942,0.1689288054984138,0.0,462.4257121713581,0.4905931249959394 +24,1545.2417949075991,0.1731130598583494,0.0,473.87969005624586,0.5027447909960756 +25,1517.9368635996732,0.1700540950908195,0.0,465.5060799016094,0.4938611250036047 +26,1487.6624369941349,0.1666624584923186,0.0,456.22181387687306,0.4840113329992164 +27,1484.790276829119,0.1663406910924154,0.0,455.3410077963781,0.4830768749961862 +28,1484.8006502773037,0.1663418532272751,0.0,455.34418902434305,0.4830802500000573 +29,1470.9937325949477,0.1647950676205941,0.0,451.1100181046144,0.4785881659990991 +0,1535.669135852832,2.361356949030495,0.0,471.3131580006953,0.511045416998968 +1,1501.502028693519,2.3088191112663026,0.0,460.8269101501379,0.4996751660000882 +2,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831 +3,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203 +4,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406 +5,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604 +6,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825 +7,1507.9842242384736,2.3187866082600825,0.0,462.8163647675051,0.5018323340045754 +8,1525.2583386023323,2.3453485473126583,0.0,468.117973820144,0.5075808749970747 +9,1487.4017761634502,2.28713753382386,0.0,456.4993929829304,0.4949828339958912 +10,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076 +11,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088 +12,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453 +13,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.4975445419986499 +14,1486.045287815104,2.285051698331785,0.0,456.08307231051214,0.4945314169963239 +15,1484.8389210893304,2.283196700803686,0.0,455.7128255575126,0.4941299580023042 +16,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077 +17,1499.9656215906025,2.306456619565252,0.0,460.35537050221234,0.4991638749997946 +18,1488.350338699801,2.288596112813635,0.0,456.7905168937592,0.4952984999981709 +19,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.495122624997748 +20,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.496049250003125 +21,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.4955626670052879 +22,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.4955531250016065 +23,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009 +24,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.4958858329991926 +25,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721 +26,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.4946299160001217 +27,1504.0738956441755,2.3127738016056005,0.0,461.6162434161208,0.5005310409978847 +28,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622 +29,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531 +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.4865007500047795 +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.4838650000019697 +2,1480.717294074354,2.098418389982776,0.0,450.6936386485229,0.4811567920041852 +3,1488.925131299569,2.1100502366859266,0.0,453.19190083487734,0.483823916001711 +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666 +5,1479.727777126183,2.097016082756709,0.0,450.39245421874654,0.48083525000402 +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296 +7,1480.7792238858788,2.0985061546465045,0.0,450.7124885479659,0.4811769160005497 +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014 +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.4740181250017485 +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322 +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.4793756250001024 +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.4862565000003087 +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238 +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.4834997500001918 +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.4806878329982282 +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534 +17,1477.318804252413,2.093602174511349,0.0,449.6592225922709,0.4800524579986813 +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.4824538749962812 +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.4760040000037406 +20,1479.903703499236,2.0972653991778625,0.0,450.44600184564536,0.4808924170065438 +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.4817604169948026 +22,1503.04044703954,2.130053945866405,0.0,457.48825303997336,0.488410665995616 +23,1480.9454071466057,2.0987416634852356,0.0,450.7630706129957,0.4812309169938089 +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.4807852919984725 +25,1473.9158306771965,2.088779604828779,0.0,448.6234417926699,0.478946667004493 +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397 +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.480225541999971 +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355 +29,1510.0737441282995,2.1400212772485183,0.0,459.6290143245985,0.4906961249944288 +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691 +1,1494.6927432930363,2.473550026918434,0.0,455.734879283864,0.4958449999976437 +2,1493.1747248593665,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275 +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.4984720829961588 +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588 +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215 +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248 +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.4923728750000009 +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.4965036249996046 +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.494061249999504 +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.495179375000589 +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688 +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212 +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.4918156250059837 +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422 +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985 +16,1492.1949067183675,2.469416385570248,0.0,454.9732837954698,0.4950163749963394 +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.493825708006625 +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.4948959169996669 +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.4921009589961613 +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491 +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438 +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575 +23,1499.6939449160884,2.4818264586231,0.0,457.2597559036128,0.4975040839999565 +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.4907058749959105 +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.4958353749971138 +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.4948671250022016 +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389 +28,1498.364826079165,2.4796269149713344,0.0,456.8545048475564,0.4970631660034996 +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.4953921250053099 +0,1498.5408128623817,0.8690099505837388,0.0334234596378361,458.5364427714736,0.4839190410057199 +1,1491.5130351462874,0.8649345135229948,0.0332667120585767,456.3860227316141,0.4816495829945779 +2,1490.9282803951478,0.8645954118495337,0.0332536696865205,456.2070944293751,0.4814607499938574 +3,1498.858609293904,0.8691942420350508,0.0334305477705788,458.6336848645716,0.4840216660013539 +4,1501.085510016672,0.8704856308784092,0.0334802165722465,459.31509115464985,0.4847407920024125 +5,1479.0403956377672,0.8577015788241764,0.0329885222624683,452.56953691880295,0.4776218330007395 +6,1495.4335579034869,0.8672080407157502,0.0333541554121442,457.5856580992068,0.482915624997986 +7,1489.2027842934413,0.8635947895980701,0.0332151842153103,455.6791122498432,0.4809035409998614 +8,1492.1808861224167,0.8653218030374225,0.0332816078091316,456.5903775334769,0.4818652499961899 +9,1495.2063392563043,0.8670762756922921,0.0333490875266266,457.5161317777906,0.4828422499995213 +10,1487.4661958807744,0.8625877348700822,0.033176451341157,455.14773594933297,0.4803427500010002 +11,1490.5684218110532,0.8643867283837936,0.0332456433993766,456.0969817960486,0.4813445420004427 +12,1490.2245606219176,0.8641873218728641,0.033237973918187,455.99176418360855,0.4812334999951417 +13,1487.687995347552,0.862716357288644,0.0331813983572555,455.2156040631887,0.4804143750006915 +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.1105941707556,0.4876910419989144 +15,1484.8391828501335,0.861064319261815,0.0331178584331467,454.34389984434006,0.4794944169989321 +16,1492.7811242622347,0.8656698835913483,0.0332949955227441,456.7740435765272,0.4820590829986031 +17,1492.3149443588663,0.865399543957411,0.0332845978445158,456.6313978289124,0.4819085409981198 +18,1495.187245138547,0.8670652029352565,0.033348661651356,457.5102891949532,0.4828360839965171 +19,1506.9395171583026,0.8738803935790314,0.0336107843684242,461.10635075041273,0.4866312079975614 +20,1500.7598418289483,0.8702967745634584,0.0334729528678253,459.2154403936957,0.4846356250054668 +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446 +22,1492.8802179047152,0.8657273484001917,0.0332972057076996,456.8043651039319,0.4820910829948843 +23,1490.5962918881432,0.8644028903555643,0.0332462650136755,456.1055097226149,0.4813535419962136 +24,1503.3667264430414,0.8718085176205883,0.033531096831561,460.01311743218656,0.4854774580016965 +25,1474.89227025517,0.8552960639374243,0.0328960024591317,451.30025773682786,0.4762822920019971 +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.4817185420033638 +27,1500.2008916666362,0.8699726370766709,0.0334604860414104,459.0444080021095,0.4844551249989308 +28,1492.6384201170483,0.8655871288734974,0.0332918126489806,456.7303777313658,0.4820130000007339 +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809 +0,1449.4460304052652,1.1053478844400375,0.0,457.0446025207368,0.484376374995918 +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133 +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.4932186669975635 +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786 +4,1382.9401472485877,1.0546304822684676,0.0,436.07372516828,0.4621514159953221 +5,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017 +6,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.481087624997599 +7,1442.221389474941,1.099838371563632,0.0,454.7665024238108,0.4819620419948478 +8,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643 +9,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937 +10,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358 +11,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781 +12,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.4888670830041519 +13,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.4850446670025121 +14,1382.517722651383,1.0543083411710683,0.0,435.9405247054312,0.4620102499975473 +15,1448.268022775928,1.1044495355442336,0.0,456.6731488636687,0.4839827079995302 +16,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958 +17,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285 +18,1444.9364893090867,1.101908907337135,0.0,455.6226375944004,0.4828693749950616 +19,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807 +20,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.4813432079972699 +21,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893 +22,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.4814878750039497 +23,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644 +24,1434.6330467519774,1.0940514996144306,0.0,452.3737185526942,0.4794261670031119 +25,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179 +26,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259 +27,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956 +28,1433.8784631668889,1.093476053994577,0.0,452.1357805077576,0.4791740000000573 +29,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892 +0,2392.998209324197,3.976975794792876,87.4243026890121,536.7188203059603,0.5162095000050613 +1,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201 +2,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.4963012079970212 +3,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.4911223749950295 +4,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304 +5,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217 +6,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269 +7,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.4948305409998283 +8,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823 +9,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474 +10,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459 +11,2305.401423920151,3.8313967910576663,84.2240964155981,517.0719843236086,0.4973134169995319 +12,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.4950779169957968 +13,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218 +14,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.4946130000025732 +15,2299.0294440458956,3.82080705905282,83.99130648074375,515.642830926085,0.4959388749994105 +16,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636 +17,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.4990050830019754 +18,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.4981591250034398 +19,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401 +20,2313.5898284762848,3.8450052787660263,84.52324647583058,518.9085384908586,0.4990797920036129 +21,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719 +22,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981 +23,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781 +24,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469 +25,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.4902136250020703 +26,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838 +27,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756 +28,2287.752886269415,3.802066302310544,83.57933575861786,513.1136435813881,0.4935063340017223 +29,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755 +0,1511.643938755003,1.2805555723592537,0.0,470.4830392068025,0.5022656669971184 +1,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959 +2,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304 +3,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075 +4,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075 +5,1450.011697038547,1.2283451883239749,0.0,451.3006618939489,0.4817874590007704 +6,1448.3522481877958,1.226939423104802,0.0,450.784176153694,0.4812360830037505 +7,1450.3252002552106,1.228610765607592,0.0,451.3982364235029,0.4818916250005713 +8,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.4825925410041236 +9,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156 +10,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383 +11,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.4837174170024809 +12,1451.4555736764398,1.229568336333271,0.0,451.7500530841753,0.4822672079972108 +13,1470.749938151556,1.245913128456798,0.0,457.75521806058686,0.488678040994273 +14,1452.0386934092628,1.2300623132573831,0.0,451.9315428762396,0.4824609580027754 +15,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524 +16,1453.7180781688437,1.231484966738723,0.0,452.4542334553027,0.4830189579952275 +17,1455.6323420932597,1.2331065928852851,0.0,453.0500276670965,0.4836550000036368 +18,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.4817882499992265 +19,1474.4356339985911,1.2490353837934811,0.0,458.9023515483401,0.4899026670027524 +20,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922 +21,1456.8314348645265,1.2341223776813306,0.0,453.42323249189207,0.4840534160030074 +22,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.4828239169946755 +23,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974 +24,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.4845845000018016 +25,1454.071838478107,1.2317846469237803,0.0,452.5643375751858,0.483136499999091 +26,1445.4984738230935,1.2245219115656858,0.0,449.8959693465928,0.4802878749978845 +27,1453.5452760949363,1.231338581301661,0.0,452.4004506544535,0.4829615419948823 +28,1445.4045486582245,1.224442344949385,0.0,449.8667361416741,0.4802566669968655 +29,1451.5710690043643,1.2296661756338918,0.0,451.7859997720845,0.4823055829983786 +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.4949604580033337 +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918 +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945 +3,1644.218898611452,1.5241569026019444,0.0,485.0282943234642,0.5176102080004057 +4,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.4960029169960762 +5,1570.4229559700957,1.455749590500236,0.0,463.25922195873414,0.4943787920055911 +6,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.4950067500030854 +7,1574.566642586953,1.4595907022674324,0.0,464.48156848064974,0.4956832500029122 +8,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233 +9,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.4953499580005882 +10,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374 +11,1602.5001032995297,1.4854844424467897,0.0,472.7216627986351,0.5044768750012736 +12,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.4955200000040349 +13,1593.1679060882757,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409 +14,1568.685115034934,1.4541386479066511,0.0,462.7465760906574,0.4938317090054624 +15,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915 +16,1579.992203831771,1.4646200852946931,0.0,466.0820553249158,0.4973912500063306 +17,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326 +18,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526 +19,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758 +20,1574.658629351438,1.459675972095042,0.0,464.5087036653359,0.4957122080013505 +21,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.498898249999911 +22,1565.789148638521,1.451454146970356,0.0,461.89229467906654,0.492920040996978 +23,1568.7101272229097,1.4541618336874398,0.0,462.75395443844394,0.4938395829958608 +24,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.4961264590019709 +25,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402 +26,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641 +27,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868 +28,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838 +29,1584.888340812466,1.4691587029821032,0.0,467.526367253532,0.4989325839997036 +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.4804191670045838 +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.4837152499967487 +2,1437.3842689682,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448 +3,1435.7789167975,0.7680104908680055,0.0,454.194725947244,0.4835930420013028 +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.4805542079993756 +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554 +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761 +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.4821173750024172 +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863 +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.4824882920001982 +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.4820442080017528 +11,1430.9528339766905,0.7654289776609116,0.0,452.6680414845096,0.4819675409962656 +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251 +13,1439.437319842241,0.7699674021203672,0.0,455.3520262452711,0.4848252499941736 +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234 +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461 +16,1429.0497166778464,0.7644109838501899,0.0,452.0660087969688,0.4813265409975429 +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.4826296669998555 +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621 +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332 +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.4819131670010392 +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717 +22,1436.4061141941868,0.7683459841496418,0.0,454.3931337566707,0.4838042920018779 +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.4801694580019102 +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861 +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.4797095419999095 +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817 +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837 +28,1433.8801282741756,0.7669948125565385,0.0,453.5940626258276,0.4829535000026226 +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747 +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345 +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269 +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.6473879249105,0.4944300420029321 +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.4967914580047363 +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.4987448340034461 +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246 +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705 +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.498717749993375 +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657 +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015 +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.4956257500016363 +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514 +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.4924703750002663 +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.4987167500003124 +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936 +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026 +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889 +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749 +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826 +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.495682166001643 +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.4990872080015833 +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322 +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656 +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.6036226210395,0.494387499995355 +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963 +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746 +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637 +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.4997166250032023 +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594 +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264 +0,1533.8317063038091,1.9223856119804856,3.480180849275017,458.8204142525148,0.482414374993823 +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305 +2,1532.7859211727923,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907 +3,1538.3956003927374,1.9281056426038587,3.490536077127675,460.1856277683658,0.4838497919990914 +4,1522.9541430561326,1.9087525184704217,3.4555002489550732,455.5665709170007,0.4789932089988724 +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.6217034126296,0.4843082919978769 +6,1558.8705879131594,1.9537674027910896,3.536992711949386,466.31038201443187,0.4902894999977434 +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.1310771797192,0.4806381669986876 +8,1530.6126061866742,1.9183510417448648,3.4728768859174273,457.85747363576144,0.4814019170007668 +9,1529.805810596203,1.9173398667713937,3.4710463105344194,457.6161340640759,0.4811481670039939 +10,1543.3268559157984,1.934286095535932,3.501724828125394,461.66073138799834,0.4854007499961881 +11,1528.3825913511537,1.9155561142331377,3.467817103353094,457.19040154016074,0.4807005420007044 +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202 +13,1532.1754590843225,1.9203098002655896,3.476422914273912,458.32497525994063,0.4818934590002754 +14,1548.060719170639,1.9402191523196637,3.5124657067855973,463.0767883717431,0.4868896249972749 +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935 +16,1531.8200143511997,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334 +17,1544.5072416097676,1.9357654993488456,3.504403059166014,462.0138242670011,0.4857719999999972 +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605 +19,1532.2398437391903,1.920390494994772,3.476568999559501,458.3442348657349,0.4819137089943979 +20,1550.311531046087,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921 +21,1542.165283280946,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617 +22,1531.4933249285327,1.9194548662587223,3.4748751889166525,458.12092609688784,0.4816789169999538 +23,1524.2148076912772,1.910332537677336,3.458360628553798,455.94367791495455,0.4793897080016904 +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068 +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.4818482909977319 +26,1538.7289158546507,1.9285233943334643,3.4912923518105825,460.2853335820371,0.4839546249932027 +27,1566.0945228565863,1.9628213221618085,3.5533834280515495,468.4713028049295,0.4925615419997484 +28,1626.4442900112474,2.0384590362524007,3.6903137725258977,486.52393860072385,0.5115425000039977 +29,1622.90856352767,2.0340276311041094,3.68229140113675,485.466284437486,0.5104304580017924 +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.4850850830043782 +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073 +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.4835799590000533 +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713 +4,1424.9465914698055,2.933752351272618,0.0,449.7211609933968,0.4767452079977374 +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784 +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895 +7,1442.0672958435391,2.969001326225478,0.0,455.1245516145416,0.4824732919951202 +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.479428958002245 +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.4815057919986429 +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.4818122079959721 +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.4855657499938388 +12,1443.4372101016247,2.97182177521617,0.0,455.5569042615079,0.4829316250034026 +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.4798023340044892 +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.481620083002781 +15,1430.940346220044,2.946092597704819,0.0,451.6128237133354,0.4787505420026718 +16,1433.879062454506,2.952142975813154,0.0,452.5402990900995,0.4797337499985588 +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338 +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.4819761249964358 +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.4826666669978294 +20,1445.466802782904,2.97600040361984,0.0,456.19745513017386,0.483610667004541 +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073 +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602 +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814 +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204 +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738 +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832 +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.4825754170014988 +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.4834982090033008 +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.4834735410040593 +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.4793388750040321 +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867 +2,1441.9302878449869,0.8980466361832127,0.0,453.4470292994718,0.4827684999982011 +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275 +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.4821773330040741 +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047 +6,1443.403897575609,0.8989644130499505,0.0,453.9104386337028,0.4832618750006077 +7,1444.6679358767042,0.8997516670204607,0.0,454.3079435737015,0.4836850840001716 +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.4824928329981048 +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.4815640420056297 +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736 +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.4813424999956623 +12,1446.278188474604,0.9007545462450248,0.0,454.8143232947564,0.4842242080048891 +13,1461.7319885114002,0.9103793063712816,0.0,459.6741142133216,0.4893982499997946 +14,1485.9730603675405,0.925476855275964,0.0,467.29725807323024,0.4975143330011633 +15,1485.196744674062,0.9249933591575864,0.0,467.0531283479768,0.4972544169941102 +16,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.482734375000291 +17,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.4800897910026833 +18,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867 +19,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679 +20,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.4850834579992806 +21,1445.4697617578422,0.9002510511040261,0.0,454.5600955444884,0.4839535409992095 +22,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.4804581249991315 +23,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503 +24,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.4839730419989791 +25,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.4804693330006557 +26,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.4802924999967217 +27,1455.9690940043993,0.9067901259023524,0.0,457.8618439417322,0.4874687919946154 +28,1436.5572954868485,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864 +29,1432.2019249021291,0.8919877277255372,0.0,450.3877293363795,0.4795113750005839 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..045554887 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n10/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.3303920568681,0.0,0.0,69.15518081324026,0.075606708000123 +1,314.38863582784177,0.0,0.0,61.53335078178913,0.0672738329958519 +2,317.2772995012459,0.0,0.0,62.098731125891405,0.067891958002292 +3,321.3954204399756,0.0,0.0,62.904745566004465,0.0687731660000281 +4,319.5576625612702,0.0,0.0,62.54505253860031,0.0683799170001293 +5,331.31404809256026,0.0,0.0,64.84605744902893,0.0708955840018461 +6,331.38667532066586,0.0,0.0,64.86027232893883,0.0709111249962006 +7,318.43373701362606,0.0,0.0,62.32507351552368,0.0681394160055788 +8,336.7251033504346,0.0,0.0,65.90512995782265,0.0720534580032108 +9,304.5621182908196,0.0,0.0,59.610067044204875,0.0651711249956861 +10,322.1328293892706,0.0,0.0,63.0490740765663,0.0689309590015909 +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169 +12,320.85566267461155,0.0,0.0,62.799102103969375,0.0686576669977512 +13,374.90570573356854,0.0,0.0,73.37798403639027,0.0802234590009902 +14,386.9158076380404,0.0,0.0,75.72864728942714,0.0827934170010848 +15,335.4308044090277,0.0,0.0,65.65180480003387,0.0717764999935752 +16,388.6902847933515,0.0,0.0,76.07595477070589,0.0831731250000302 +17,387.62594807984937,0.0,0.0,75.86763870301657,0.0829453750047832 +18,390.1639250154146,0.0,0.0,76.36438129245846,0.0834884590003639 +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579 +20,388.70488876434206,0.0,0.0,76.07881311597464,0.0831762500019976 +21,391.1120095675774,0.0,0.0,76.54994404082375,0.083691333005845 +22,385.3631097374103,0.0,0.0,75.42474729531305,0.0824611659991205 +23,381.9621437858659,0.0,0.0,74.7590971825402,0.0817334169987589 +24,385.6555815460515,0.0,0.0,75.48199100053641,0.0825237500030198 +25,356.2938326643222,0.0,0.0,69.73519678595287,0.0762408340015099 +26,391.34392044465426,0.0,0.0,76.5953345280203,0.0837409579980885 +27,326.9782229625547,0.0,0.0,63.99743310880556,0.0699677910015452 +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193 +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412 +0,302.5242036763287,0.0,0.0,63.689306037121824,0.0675712500014924 +1,302.7327655579679,0.0,0.0,63.733213801677465,0.0676178339999751 +2,316.69315087742956,0.0,0.0,66.67224228998516,0.0707360000014887 +3,307.5654342587211,0.0,0.0,64.75061773867812,0.0686972499970579 +4,306.4536190758211,0.0,0.0,64.51655138438339,0.0684489170016604 +5,300.7051879657525,0.0,0.0,63.30635536121105,0.0671649579962831 +6,307.374413716436,0.0,0.0,64.71040288767074,0.0686545839998871 +7,310.5906561688394,0.0,0.0,65.38750656186093,0.0693729580016224 +8,308.0642609293506,0.0,0.0,64.85563387986328,0.0688086670052143 +9,304.84745437059416,0.0,0.0,64.17841144644088,0.068090167005721 +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945 +11,305.72011556246974,0.0,0.0,64.3621295920989,0.0682850830053212 +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476 +13,308.66251527816155,0.0,0.0,64.98158216382348,0.068942291996791 +14,307.0794838197012,0.0,0.0,64.64831238309499,0.0685887090003234 +15,309.8218998360231,0.0,0.0,65.22566312337328,0.0692012500003329 +16,306.41127454986776,0.0,0.0,64.50763674734058,0.0684394590061856 +17,309.1954754486052,0.0,0.0,65.0937843049695,0.0690613330007181 +18,306.76198031973763,0.0,0.0,64.58146954099739,0.0685177920022397 +19,296.2609044530781,0.0,0.0,62.37071672696381,0.0661722910008393 +20,307.906254599804,0.0,0.0,64.82236938943242,0.0687733750019106 +21,308.04205891249177,0.0,0.0,64.8509597710509,0.0688037080035428 +22,307.9202455579482,0.0,0.0,64.82531485430489,0.068776499996602 +23,308.26330444060716,0.0,0.0,64.89753777696993,0.068853124997986 +24,304.56744666191145,0.0,0.0,64.11946245513926,0.0680276249986491 +25,312.2052199573735,0.0,0.0,65.72741472786811,0.0697335840013693 +26,307.5005161295389,0.0,0.0,64.73695076411346,0.0686827500030631 +27,318.98524529080635,0.0,0.0,67.15478848227502,0.0712479579960927 +28,329.1152803585185,0.0,0.0,69.28742744389862,0.0735105840067262 +29,277.68144008298685,0.0,0.0,58.4592505437867,0.0620224159938516 +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206 +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733 +2,291.12877419678506,0.0,0.0,64.01819623510673,0.0687049580010352 +3,289.13703351517285,0.0,0.0,63.58021944577464,0.0682349170019733 +4,287.799607294358,0.0,0.0,63.286124111191775,0.0679192909956327 +5,291.371363998525,0.0,0.0,64.07154088156179,0.0687622080004075 +6,289.56394921064606,0.0,0.0,63.67409670969008,0.068335667005158 +7,292.13638840929866,0.0,0.0,64.23976706596653,0.0689427499964949 +8,283.5650571496894,0.0,0.0,62.35496138817781,0.0669199580006534 +9,287.130631504071,0.0,0.0,63.13901868151625,0.0677614160013035 +10,289.67976939419503,0.0,0.0,63.699565161782736,0.0683629999984987 +11,292.1418630957887,0.0,0.0,64.2409709303218,0.0689440419955644 +12,293.0022242707416,0.0,0.0,64.43016133475076,0.0691470829988247 +13,293.2524074633523,0.0,0.0,64.4851757412225,0.0692061250010738 +14,292.1868810008963,0.0,0.0,64.2508702097428,0.0689546659996267 +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097 +16,289.3466056584585,0.0,0.0,63.62630362495372,0.0682843749964376 +17,290.05283648513034,0.0,0.0,63.78160130644845,0.0684510419960133 +18,292.61538991766724,0.0,0.0,64.34509781743297,0.069055791995197 +19,263.23624764234796,0.0,0.0,57.884727486160926,0.0621224589995108 +20,291.45399282192466,0.0,0.0,64.08971066998504,0.068781707996095 +21,292.67577253005464,0.0,0.0,64.35837574208907,0.0690700419945642 +22,292.25150521505736,0.0,0.0,64.26508084775038,0.0689699169961386 +23,288.79928071261065,0.0,0.0,63.50594878924803,0.0681552090027253 +24,290.00304733298486,0.0,0.0,63.77065284654021,0.0684392920011305 +25,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247 +26,293.6300636211133,0.0,0.0,64.56822100558581,0.0692952499957755 +27,289.9055876714127,0.0,0.0,63.749221808825894,0.0684162920006201 +28,284.5073479632638,0.0,0.0,62.5621678327499,0.0671423339954344 +29,296.6712669039547,0.0,0.0,65.23697093966203,0.0700129590040887 +0,411.18397650340427,1.167188903294335,11.571844269803837,72.9993288374657,0.0697049590016831 +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.0697707910003373 +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.0708791670040227 +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.067930666002212 +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.0708610420042532 +5,413.635956981174,1.1741491074080366,11.64084972201682,73.43463988903406,0.0701206250014365 +6,420.48804217203855,1.1935994708857542,11.83368618278162,74.6511211933976,0.0712822080022306 +7,410.6007148882734,1.1655332539407597,11.555429689069816,72.89577979646637,0.0696060830014175 +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.0684407080043456 +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.0699344580061733 +10,429.4455521502114,1.2190263037516138,12.085775068623144,76.24138796892237,0.0728007079960662 +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.0671137079989421 +12,445.29103640889906,1.264005375045537,12.53171043259432,79.05450759927656,0.0754868750009336 +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.0677466670022113 +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.0702987499971641 +15,410.0169695614531,1.163876231520751,11.539001495362871,72.79214487996926,0.0695071250011096 +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.0676083329963148 +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717 +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.0705336250030086 +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.0665746669983491 +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.0700137500025448 +21,403.1911817621741,1.144500515951021,11.34690511528584,71.58033226905101,0.0683500000013737 +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.0718155840004328 +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.0667553750026854 +24,401.4849191657379,1.1396571103650306,11.29888620847616,71.27741184540147,0.0680607500034966 +25,426.8551889258219,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923 +26,413.6236695024976,1.1741142281092791,11.640503918683429,73.43245843803464,0.070118541996635 +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523 +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.0703375419980147 +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.0663894170065759 +0,315.89567899052815,0.0,0.0,70.69041793477467,0.0832259160015382 +1,265.85174216063353,0.0,0.0,59.491699354921,0.0700413340018712 +2,312.32888500652234,0.0,0.0,69.8922488739558,0.0822862080021877 +3,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424 +4,315.90675086282243,0.0,0.0,70.69289557322259,0.0832288329984294 +5,299.2312370810115,0.0,0.0,66.96128695394593,0.078835500004061 +6,317.14049354538116,0.0,0.0,70.96897971002608,0.0835538750034174 +7,317.43117509131514,0.0,0.0,71.03402776650366,0.0836304580006981 +8,312.8783039921803,0.0,0.0,70.01519660733908,0.0824309579984401 +9,268.2657658886426,0.0,0.0,60.03190410473824,0.0706773330020951 +10,312.72885063157213,0.0,0.0,69.98175227357386,0.0823915829969337 +11,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071 +12,297.0645600830759,0.0,0.0,66.47643289388668,0.0782646670049871 +13,320.132881830413,0.0,0.0,71.63860956747773,0.0843422500038286 +14,305.29682664515053,0.0,0.0,68.31863081721116,0.0804335410066414 +15,306.0025007629592,0.0,0.0,68.47654496935486,0.080619458000001 +16,317.616212578826,0.0,0.0,71.07543503540818,0.0836792080008308 +17,313.46473429199887,0.0,0.0,70.14642664858644,0.0825854590002563 +18,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633 +19,317.8055239782236,0.0,0.0,71.1177987106126,0.083729084006336 +20,312.42836494049845,0.0,0.0,69.91451026775316,0.0823124169983202 +21,310.49337764575245,0.0,0.0,69.48150320351859,0.0818026249980903 +22,319.06867904096777,0.0,0.0,71.40046468308539,0.0840618750007706 +23,315.95309183579826,0.0,0.0,70.70326565095722,0.0832410419970983 +24,314.0385061273956,0.0,0.0,70.27482400740125,0.0827366250014165 +25,314.3986175247909,0.0,0.0,70.35540891842726,0.0828314999962458 +26,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661 +27,312.9080390484739,0.0,0.0,70.02185065073537,0.0824387920001754 +28,316.7443235347586,0.0,0.0,70.88032568438815,0.0834495000017341 +29,312.2983604376832,0.0,0.0,69.88541815523429,0.0822781659953761 +0,305.2603840466375,0.0,0.0,70.23005972174292,0.0822855000005802 +1,311.8426015201836,0.0,0.0,71.74440468894973,0.0840597919959691 +2,309.3793097001562,0.0,0.0,71.17768479775621,0.0833957909999298 +3,307.9774835661487,0.0,0.0,70.85517215525161,0.0830179169934126 +4,309.9985372950614,0.0,0.0,71.32014806270742,0.0835627089982153 +5,317.29333507952543,0.0,0.0,72.99843358823003,0.0855290830004378 +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142 +7,307.5211780361769,0.0,0.0,70.7501917310103,0.0828949160058982 +8,307.52566313089267,0.0,0.0,70.75122359916683,0.0828961250008433 +9,309.28022911738526,0.0,0.0,71.1548897165438,0.0833690829967963 +10,309.2709546995603,0.0,0.0,71.15275598759708,0.0833665829995879 +11,307.9507398632547,0.0,0.0,70.84901933638095,0.0830107080037123 +12,305.0501624157072,0.0,0.0,70.18169485533174,0.0822288329945877 +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517 +14,263.23315694845485,0.0,0.0,60.56102035961698,0.0709567080048145 +15,281.69931878209627,0.0,0.0,64.80945781231267,0.0759344170000986 +16,310.20798354982014,0.0,0.0,71.36833454136281,0.0836191669950494 +17,307.4975319241093,0.0,0.0,70.74475156271633,0.0828885419978178 +18,312.2465028928711,0.0,0.0,71.83732869418587,0.0841686670028138 +19,264.4872154298051,0.0,0.0,60.84953667762806,0.0712947499996516 +20,307.0058314139288,0.0,0.0,70.63162795415167,0.0827559999961522 +21,313.308421210062,0.0,0.0,72.0816400779537,0.0844549160028691 +22,309.2122178896617,0.0,0.0,71.1392426400334,0.0833507499992265 +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184 +24,287.64237234819007,0.0,0.0,66.17675284530496,0.077536416996736 +25,306.2275548020647,0.0,0.0,70.45257290545298,0.0825462089997017 +26,307.19379440968873,0.0,0.0,70.67487186363874,0.0828066670001135 +27,303.97726690862385,0.0,0.0,69.9348579925237,0.0819396250008139 +28,311.54442867805176,0.0,0.0,71.67580523220816,0.0839794170024106 +29,307.42689047443804,0.0,0.0,70.72849936135475,0.0828695000018342 +0,289.20382575590736,0.0996796274434423,0.0,62.69848566192523,0.0674275420024059 +1,293.9195168609384,0.1013049805357094,0.0,63.720832756961265,0.0685270000030868 +2,293.63447150195356,0.1012067342033387,0.0,63.65903581390008,0.0684605420028674 +3,291.00346139953365,0.1002999062728172,0.0,63.08864104560202,0.067847124999389 +4,290.50771376254335,0.1001290373722001,0.0,62.981164507113895,0.0677315420034574 +5,268.94209243479787,0.0926960336976555,0.0,58.30580519582532,0.0627035419965977 +6,293.7504532056515,0.1012467095148155,0.0,63.684180284818986,0.0684875830047531 +7,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.0687160410016076 +8,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.0670849999951315 +9,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.0684643329950631 +10,290.6228033105725,0.1001687051851697,0.0,63.00611556147178,0.0677583750002668 +11,292.06412282992403,0.1006654835121521,0.0,63.31858912914369,0.0680944170017028 +12,290.22624120801856,0.1000320224751902,0.0,62.920142136894654,0.0676659169985214 +13,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.0667457500021555 +14,290.24715059938825,0.1000392292966641,0.0,62.92467522760175,0.0676707919992622 +15,290.5952801459097,0.1001592188002905,0.0,63.00014862538278,0.0677519580058287 +16,287.0188825965561,0.0989265450125997,0.0,62.224796812925256,0.0669181249977555 +17,294.8216615026295,0.1016159219333511,0.0,63.91641489607788,0.0687373339969781 +18,292.6999826596284,0.1008846447586035,0.0,63.45644155316163,0.068242666995502 +19,294.47674453414845,0.1014970397061632,0.0,63.84163797517671,0.0686569169993163 +20,291.70115300347874,0.1005403790223387,0.0,63.23989840505106,0.0680097910008044 +21,291.2361453845984,0.10038010525664,0.0,63.1390862064266,0.0679013750050216 +22,290.8948054959841,0.1002624559384136,0.0,63.06508478526217,0.0678217919994494 +23,292.993606263265,0.1009858477469893,0.0,63.52009823285628,0.0683111250036745 +24,289.21990989831363,0.0996851711506136,0.0,62.701972653735965,0.0674312920018564 +25,276.5893870013989,0.095331819968313,0.0,59.9637147600689,0.0644864999994752 +26,294.1384413389605,0.1013804370423806,0.0,63.76829489965745,0.0685780419953516 +27,282.89311931638207,0.0975045218232015,0.0,61.33034422679377,0.0659562079963507 +28,293.29813271570947,0.1010908086106535,0.0,63.586118616101075,0.0683821249986067 +29,294.9056550815358,0.1016448719260808,0.0,63.93462444150483,0.068756917004066 +0,370.44916321321614,0.0,0.0,65.64209549207466,0.0671277500005089 +1,371.36386610958994,0.0,0.0,65.80417715086381,0.0672934999965946 +2,368.962830282296,0.0,0.0,65.3787232999547,0.0668584169980022 +3,368.9108618969243,0.0,0.0,65.36951471196507,0.0668489999952726 +4,376.83391647843223,0.0,0.0,66.77344798290869,0.0682847079951898 +5,379.53434024077234,0.0,0.0,67.25195216669212,0.068774041996221 +6,377.5320155936468,0.0,0.0,66.8971483265304,0.0684112080052727 +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257 +8,381.6909531277366,0.0,0.0,67.63409525978926,0.0691648339998209 +9,336.48949708535804,0.0,0.0,59.62457981594719,0.0609740420040907 +10,375.5701640445277,0.0,0.0,66.54951615586617,0.0680557079977006 +11,374.0240484961872,0.0,0.0,66.27555072539892,0.067775542003801 +12,371.35052776493495,0.0,0.0,65.80181365006399,0.0672910830035107 +13,370.73061027987507,0.0,0.0,65.69196677553322,0.0671787500032223 +14,394.8672224542054,0.0,0.0,69.96887696601637,0.0715524580009514 +15,365.1862909781526,0.0,0.0,64.70953578855121,0.0661740840005222 +16,371.5834610794553,0.0,0.0,65.84308849258868,0.0673332920050597 +17,386.614659576844,0.0,0.0,68.50655615591829,0.0700570409971987 +18,386.60155849554985,0.0,0.0,68.50423469722772,0.0700546669977484 +19,362.7040769916651,0.0,0.0,64.26969749570833,0.0657242910019704 +20,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238 +21,379.3593519471741,0.0,0.0,67.2209449478372,0.0687423330018646 +22,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073 +23,376.3324220394227,0.0,0.0,66.6845851938321,0.0681938340057968 +24,375.2703236266904,0.0,0.0,66.49638564486882,0.0680013750024954 +25,387.82208398640864,0.0,0.0,68.72050688455441,0.0702758339975844 +26,379.18068825981504,0.0,0.0,67.18928646405266,0.0687099580027279 +27,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301 +28,382.47504806500143,0.0,0.0,67.7730337157446,0.0693069170010858 +29,362.6224518506248,0.0,0.0,64.25523385039665,0.0657095000060508 +0,298.5621379017781,0.0,0.0,65.17760957180526,0.0699610410010791 +1,293.7520815286884,0.0,0.0,64.12755018213558,0.0688339170010294 +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092 +3,291.0702814766676,0.0,0.0,63.54209980330101,0.068205499999749 +4,297.6933418060511,0.0,0.0,64.98794703414137,0.0697574589939904 +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567 +6,293.15729192518216,0.0,0.0,63.99770463364393,0.0686945419947733 +7,291.59732372815654,0.0,0.0,63.65715576564372,0.0683290000015404 +8,289.71177993007666,0.0,0.0,63.2455321138121,0.0678871669952059 +9,288.3285607864271,0.0,0.0,62.943568449127,0.0675630420009838 +10,287.9739957844177,0.0,0.0,62.86616513392031,0.0674799580010585 +11,292.9851689308829,0.0,0.0,63.96012932218745,0.0686542090043076 +12,294.059699195972,0.0,0.0,64.19470465911147,0.0689059999931487 +13,288.9098350378217,0.0,0.0,63.070463528582806,0.0676992500011692 +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247 +15,293.23659577732656,0.0,0.0,64.01501706163273,0.0687131249942467 +16,280.4243482266323,0.0,0.0,61.21803927179926,0.0657108750019688 +17,295.6641182362926,0.0,0.0,64.54495736876346,0.0692819579999195 +18,294.7314796376094,0.0,0.0,64.34135769305185,0.0690634159982437 +19,292.6675907282371,0.0,0.0,63.890800410470675,0.0685797919941251 +20,291.79132220494307,0.0,0.0,63.69950660445531,0.0683744589987327 +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606 +22,290.6044059821546,0.0,0.0,63.440396850261365,0.0680963329941732 +23,290.49878844398484,0.0,0.0,63.41734001286348,0.0680715839989716 +24,291.0869974835,0.0,0.0,63.54574899128773,0.0682094170042546 +25,290.73012372139635,0.0,0.0,63.46784166219275,0.0681257920005009 +26,287.31287997933134,0.0,0.0,62.7218402435357,0.0673250410036416 +27,271.03076122136986,0.0,0.0,59.1673721958916,0.0635097080012201 +28,292.54952051034445,0.0,0.0,63.865025090740104,0.0685521250052261 +29,291.9493964926538,0.0,0.0,63.734015012923166,0.0684115000040037 +0,291.29299505714096,0.0,0.0,62.99496139075435,0.0682530839985702 +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809 +2,289.0799426382046,0.0,0.0,62.51636714354541,0.067734541997197 +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137 +4,297.886977244811,0.0,0.0,64.42097458150106,0.0697981249977601 +5,290.82548775033143,0.0,0.0,62.893858359641,0.0681435420046909 +6,268.5173277099082,0.0,0.0,58.06950039603958,0.0629164999991189 +7,292.0704497581507,0.0,0.0,63.16309357966455,0.068435250002949 +8,293.8949497924379,0.0,0.0,63.55765957049728,0.0688627499985159 +9,293.04956393422503,0.0,0.0,63.37483660392384,0.068664666992845 +10,290.9037299843468,0.0,0.0,62.91077900859089,0.0681618750022607 +11,291.32144445247934,0.0,0.0,63.001113850962255,0.0682597499981056 +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997 +13,292.62811511187584,0.0,0.0,63.28369417090083,0.0685659169976133 +14,291.9456155250125,0.0,0.0,63.136096954856455,0.0684059999985038 +15,288.2672740442093,0.0,0.0,62.34061960559938,0.0675441249986761 +16,293.5677518423963,0.0,0.0,63.48689981114927,0.0687860839971108 +17,269.05080725191584,0.0,0.0,58.184870568758406,0.0630414999977801 +18,292.5950351222772,0.0,0.0,63.27654029935935,0.0685581660000025 +19,288.8240474431492,0.0,0.0,62.46102730288279,0.0676745829987339 +20,289.09861444034067,0.0,0.0,62.52040510351909,0.0677389170014066 +21,292.22515879396974,0.0,0.0,63.19655092297043,0.068471499995212 +22,289.8157859281682,0.0,0.0,62.67550045751957,0.0679069580000941 +23,289.92461574616726,0.0,0.0,62.69903597090075,0.0679324579978128 +24,289.408032574084,0.0,0.0,62.58731980356169,0.0678114170004846 +25,291.7665414108356,0.0,0.0,63.09737042486749,0.0683640410061343 +26,292.56711921054875,0.0,0.0,63.27050321020389,0.0685516250014188 +27,293.90632783646987,0.0,0.0,63.560120183888806,0.0688654159966972 +28,265.84672909821063,0.0,0.0,57.491957306130764,0.0622907500001019 +29,296.77573933170015,0.0,0.0,64.18065850586514,0.0695377499941969 +0,311.59367925352166,0.0,0.0,72.32524053893655,0.0842451249991427 +1,314.6147113063084,0.0,0.0,73.02646423004957,0.0850619169941637 +2,317.0589047950213,0.0,0.0,73.59379564196513,0.085722749994602 +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667 +4,310.3879176166453,0.0,0.0,72.04536643934435,0.0839191249979194 +5,319.6777081144411,0.0,0.0,74.20165643187254,0.086430791998282 +6,254.6704492989941,0.0,0.0,59.112564631718605,0.0688548749967594 +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371 +8,273.9504631496793,0.0,0.0,63.58772485539658,0.0740675839988398 +9,303.15396548952185,0.0,0.0,70.36626521721826,0.0819632919956347 +10,319.6621404622535,0.0,0.0,74.19804296258846,0.0864265829950454 +11,321.3189864206904,0.0,0.0,74.58262002707511,0.0868745420011691 +12,327.9853465847884,0.0,0.0,76.12997523512246,0.0886769159988034 +13,316.0251306481012,0.0,0.0,73.35384223848772,0.0854432499982067 +14,248.80099032368904,0.0,0.0,57.750181308541606,0.0672679580020485 +15,293.83489274284335,0.0,0.0,68.20317840615691,0.0794437079966883 +16,319.29011864863867,0.0,0.0,74.1116915089265,0.0863260000041918 +17,317.9883472997439,0.0,0.0,73.8095322155767,0.0859740419982699 +18,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388 +19,317.9663070322047,0.0,0.0,73.80441636195883,0.0859680830035358 +20,309.99647784933063,0.0,0.0,71.95450780769507,0.0838132920034695 +21,318.1546314596068,0.0,0.0,73.84812908919976,0.0860190000021248 +22,317.56423360371525,0.0,0.0,73.7110895091822,0.0858593750017462 +23,314.6444522037832,0.0,0.0,73.03336750732035,0.0850699579968932 +24,291.90250070508733,0.0,0.0,67.75464325203872,0.0789212500021676 +25,315.9423732511658,0.0,0.0,73.33463309196694,0.0854208750024554 +26,312.00345697187805,0.0,0.0,72.42035566488721,0.0843559159984579 +27,315.7848733838278,0.0,0.0,73.2980751752038,0.0853782919948571 +28,316.48175922730144,0.0,0.0,73.4598321029379,0.0855667079958948 +29,318.58722249833687,0.0,0.0,73.94853950511737,0.0861359590053325 +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.0687121249939082 +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.0684735419999924 +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.0682607499984442 +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.0693537920014932 +4,282.3759053861895,0.9401410231953468,0.0,57.6822008425016,0.061543249998067 +5,321.98321971372366,1.072009430901668,0.0,65.77296572822493,0.0701755830014008 +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.069085625000298 +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.0674245410045841 +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.067374958001892 +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.0674674160036374 +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.0676157499983673 +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.0686493749963119 +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.0677805829982389 +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.0658772080059861 +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.0679051670012995 +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.0631127919987193 +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.068294083001092 +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.0672580419995938 +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.0678333329997258 +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.0681575409980723 +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.0683888749990728 +21,316.3211247316838,1.053158078260359,0.0,64.61634402745813,0.0689415410015499 +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.0673742090002633 +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.0688007909993757 +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264 +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.0688696249999338 +26,283.9395447763309,0.9453469968925204,0.0,58.00161251901851,0.061884041999292 +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.0701700000063283 +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.0685499159953906 +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.0680872920056572 +0,318.0434962832716,0.1047574098429748,0.0,66.0670064743028,0.0704760419976082 +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633 +2,311.3660715806597,0.1025579945917851,0.0,64.67990858921917,0.0689963750046445 +3,307.96812656956257,0.1014387768674448,0.0,63.97405527773522,0.0682434159971308 +4,307.9854286365557,0.1014444758354926,0.0,63.97764942691737,0.0682472500047879 +5,303.54277752976253,0.0999811520190258,0.0,63.05477987333232,0.0672627919993829 +6,295.5978232288647,0.097364236900153,0.0,61.40437873836319,0.0655022499995539 +7,309.92668146656416,0.1020838871760751,0.0,64.3809048457114,0.0686774170026183 +8,281.20051954266887,0.0926220420101017,0.0,58.41363449437083,0.0623119160009082 +9,299.98387491674634,0.0988089179567675,0.0,62.31549092473475,0.0664741660002619 +10,305.7382448097462,0.1007042967094025,0.0,63.51084312472989,0.0677492910035653 +11,294.734003229727,0.0970797112087374,0.0,61.224937868977115,0.0653108339975006 +12,298.89347681440523,0.0984497617965761,0.0,62.08898310637403,0.0662325419980334 +13,308.355851863169,0.1015664861209384,0.0,64.05459724693849,0.0683293330002925 +14,310.24746403189397,0.1021895467825737,0.0,64.44754083754319,0.0687485000016749 +15,311.1235091390795,0.1024780991894201,0.0,64.62952122212762,0.0689426249955431 +16,308.5540400267205,0.1016317654896971,0.0,64.09576676883565,0.0683732500037876 +17,305.98663773748234,0.100786112561753,0.0,63.562441655612275,0.0678043330044602 +18,292.8154993760287,0.0964477929433559,0.0,60.82640808294316,0.064885708001384 +19,275.3126478356244,0.0906826903279395,0.0,57.190550033487185,0.0610072080016834 +20,306.57198705890426,0.1009789153685455,0.0,63.68403595909606,0.0679340420028893 +21,299.9385619885642,0.0987939927498564,0.0,62.3060780942428,0.0664641249968553 +22,306.6251973620329,0.1009964418188514,0.0,63.69508930708896,0.0679458330050692 +23,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.067884750002122 +24,304.5282532805252,0.1003057487748765,0.0,63.25949222735547,0.0674811659991974 +25,312.89270739925354,0.1030608390643127,0.0,64.99703583655992,0.069334665997303 +26,306.72541736758814,0.1010294523608656,0.0,63.715907955585934,0.0679680410030414 +27,306.35518366378886,0.1009075045005892,0.0,63.63899950503827,0.0678860000043641 +28,303.16651925294775,0.0998572197802858,0.0,62.97661994143359,0.0671794160007266 +29,307.1612805694235,0.1011730173153568,0.0,63.80644958688507,0.0680646250038989 +0,376.1194842106595,0.1028491890102979,1.4741717091476034,69.90316546399914,0.070418499999505 +1,375.3772813659091,0.1026462349920451,1.471262701552647,69.76522438292668,0.0702795420002075 +2,372.25223442040107,0.1017916965874763,1.459014317753828,69.18442311395476,0.0696944589944905 +3,385.4868428198003,0.1054106761880777,1.510886358695781,71.64412291583018,0.0721722919988678 +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.0704831249968265 +5,358.7098339166928,0.0980885517956502,1.4059359090709862,66.66751903711025,0.0671589999983552 +6,348.4707482819762,0.0952886924479016,1.3658045917532566,64.76454796709048,0.0652419999969424 +7,377.0809007160486,0.1031120866054275,1.4779399080111284,70.0818481961556,0.0705985000022337 +8,372.1874670252756,0.1017739860610543,1.4587604668751115,69.17238585949659,0.069682332999946 +9,344.4984530925867,0.0942024755517054,1.3502354829077776,64.02628254997578,0.0644982919984613 +10,365.7985019329385,0.1000269351744431,1.4337194041670178,67.98497360689649,0.0684861670015379 +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.0660061249946011 +12,327.2959987393395,0.089498495690276,1.282811771560623,60.82914423749095,0.0612775839981623 +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.0656358750056824 +14,348.36548389342033,0.0952599080922669,1.36539201598916,64.74498420004412,0.0652222920034546 +15,370.7199715553666,0.101372702093346,1.4530087300046275,68.89964652277756,0.0694075829960638 +16,393.78017104004334,0.1076784717090629,1.5433914278299028,73.1854679382598,0.0737250000020139 +17,402.0710529521565,0.1099455982915385,1.5758869088453855,74.72635830548236,0.0752772499981802 +18,373.83523342380454,0.1022245647863835,1.4652187619381638,69.478629199812,0.0699908340029651 +19,367.5913620968913,0.1005171895260845,1.4407463832072125,68.3181831478955,0.0688218330033123 +20,365.9671931593512,0.1000730634835524,1.4343805765975846,68.01632548098779,0.0685177500054123 +21,333.9660446668918,0.0913224076201508,1.3089545092221626,62.06879637916255,0.0625263750043814 +22,366.693153401072,0.1002715759915428,1.437225922545447,68.15124781558525,0.068653667003673 +23,363.69117314929224,0.0994506899505857,1.4254598892917296,67.5933189364148,0.0680916250057634 +24,364.9750647376018,0.0998017677707415,1.430492004713962,67.83193482818066,0.068332000002556 +25,369.7136034968617,0.1010975125777582,1.4490643469478677,68.71260938201632,0.0692191669950261 +26,376.5937403004009,0.102978873475636,1.4760305198174497,69.99130767227395,0.0705072920027305 +27,364.0695065079672,0.0995541445195425,1.4269427381134436,67.6636335584491,0.0681624579956405 +28,367.74291871241866,0.1005586324070053,1.4413403978337438,68.34635049262799,0.0688502080010948 +29,358.35531160656274,0.0979916083146192,1.4045463858428764,66.6016297845029,0.0670926250022603 +0,303.23390333758607,0.0,0.0,75.59622229023033,0.0861223750034696 +1,299.87754304590914,0.0,0.0,74.75948155674698,0.0851691249990835 +2,303.496507488735,0.0,0.0,75.66168951393483,0.0861969580000732 +3,250.8244775680612,0.0,0.0,62.5305506850156,0.0712374159993487 +4,280.98976423022,0.0,0.0,70.05075766339677,0.0798047499993117 +5,302.6632146728885,0.0,0.0,75.453949586947,0.085960291995434 +6,302.2430473239825,0.0,0.0,75.3492018527478,0.0858409590000519 +7,288.1644636376654,0.0,0.0,71.83941046673124,0.0818424580065766 +8,299.15970621388135,0.0,0.0,74.58052481040428,0.0849652499964577 +9,303.53919918635705,0.0,0.0,75.67233255558638,0.0862090829978114 +10,304.1503789285395,0.0,0.0,75.82469968584712,0.0863826659988262 +11,302.7150010544735,0.0,0.0,75.46685993361608,0.0859750000017811 +12,304.3796818047821,0.0,0.0,75.8818649005986,0.086447790999955 +13,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672 +14,299.5502411494769,0.0,0.0,74.6778851829696,0.0850761670008068 +15,299.0150508701026,0.0,0.0,74.54446222834005,0.084924165996199 +16,301.69890677153836,0.0,0.0,75.21354759474123,0.0856864160014083 +17,293.7211350318159,0.0,0.0,73.22468883198815,0.0834206250001443 +18,301.99774870612936,0.0,0.0,75.28804889907536,0.0857712910001282 +19,290.7437186585,0.0,0.0,72.4824188300841,0.0825750000003608 +20,300.40744832723414,0.0,0.0,74.89158696118525,0.0853196249954635 +21,302.49420835289175,0.0,0.0,75.41181630569348,0.0859122920010122 +22,302.62287146478,0.0,0.0,75.4438920238101,0.0859488339992822 +23,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865 +24,300.38544230519113,0.0,0.0,74.88610085915057,0.0853133749988046 +25,302.0932584124877,0.0,0.0,75.31185947207949,0.0857984169997507 +26,298.48529699349257,0.0,0.0,74.4123945691023,0.0847737090007285 +27,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006 +28,298.8282953574442,0.0,0.0,74.49790407275962,0.0848711250000633 +29,301.1461152201156,0.0,0.0,75.07573664239862,0.0855294160064659 +0,307.4320612663604,0.0,0.0,63.35199239749272,0.0671285829957923 +1,319.09229461987655,0.0,0.0,65.75479648930452,0.0696746250032447 +2,315.8303683771894,0.0,0.0,65.08261699808075,0.0689623750004102 +3,320.11071629586803,0.0,0.0,65.96466088018519,0.0698970000012195 +4,312.61748207640557,0.0,0.0,64.42054308274855,0.0682608329952927 +5,307.04469238953703,0.0,0.0,63.27216796396276,0.0670440000030794 +6,315.62218214509465,0.0,0.0,65.03971642180838,0.0689169170000241 +7,310.95312800205056,0.0,0.0,64.07757252128222,0.0678974169932189 +8,313.5021384751786,0.0,0.0,64.60284269463226,0.0684540000002016 +9,312.90657876781614,0.0,0.0,64.48011673723646,0.0683239580030203 +10,312.5113876374554,0.0,0.0,64.39868038546805,0.0682376670010853 +11,300.6441130311362,0.0,0.0,61.95321166128344,0.0656464170024264 +12,314.46636338728104,0.0,0.0,64.80153885224628,0.068664540995087 +13,314.6789461985706,0.0,0.0,64.84534542397851,0.0687109589998726 +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814 +15,319.99393270665615,0.0,0.0,65.9405954882237,0.0698715000035008 +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653 +17,315.12031493923246,0.0,0.0,64.93629751592275,0.0688073330020415 +18,320.1736878576916,0.0,0.0,65.9776373208644,0.0699107500040554 +19,315.997721590775,0.0,0.0,65.1171031849511,0.0689989170059561 +20,315.1537104407051,0.0,0.0,64.94317926907071,0.0688146249958663 +21,396.2162204473379,0.0,0.0,81.64759030709996,0.0865148329976364 +22,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792 +23,316.5843095668302,0.0,0.0,65.23798035321532,0.0691270000024815 +24,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724 +25,324.2240911390176,0.0,0.0,66.8122969098102,0.0707951660006074 +26,319.4119244478356,0.0,0.0,65.82066205435802,0.069744417000038 +27,316.58221200981916,0.0,0.0,65.237548113275,0.0691265419955016 +28,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193 +29,318.88009651176566,0.0,0.0,65.71106919269002,0.0696282909993897 +0,295.56381491985087,0.0,0.0,64.40996834269353,0.0689168749959208 +1,292.9117899350054,0.0,0.0,63.832032760950376,0.068298499994853 +2,298.182066414368,0.0,0.0,64.98054392523157,0.069527375002508 +3,266.1084859341793,0.0,0.0,57.99099311054205,0.0620487499982118 +4,292.7641857549563,0.0,0.0,63.7998665075584,0.0682640829982119 +5,293.3478092458931,0.0,0.0,63.92705112447601,0.0684001670015277 +6,294.64942974187426,0.0,0.0,64.21070335356598,0.0687036669987719 +7,296.68959874211004,0.0,0.0,64.65530182633425,0.0691793750011129 +8,294.8887006250224,0.0,0.0,64.2628458325534,0.0687594580012955 +9,295.15227983001137,0.0,0.0,64.32028563875475,0.0688209169966285 +10,290.6847022677367,0.0,0.0,63.34670052843714,0.0677792080023209 +11,294.45357766054786,0.0,0.0,64.16802280296643,0.0686579999965033 +12,292.47201807649003,0.0,0.0,63.73619663333556,0.0681959580033435 +13,294.7008941303778,0.0,0.0,64.22191859530722,0.0687156669955584 +14,272.00670099030486,0.0,0.0,59.276346140467126,0.0634240419967682 +15,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245 +16,301.81066704160895,0.0,0.0,65.77129718977528,0.0703734590060776 +17,295.9329991160775,0.0,0.0,64.49042183933697,0.0690029580000555 +18,295.25288419120227,0.0,0.0,64.34220958002342,0.0688443750041187 +19,301.8601629004876,0.0,0.0,65.78208344486653,0.0703849999990779 +20,286.4547915575912,0.0,0.0,62.42490834285863,0.0667929159972118 +21,290.8757295246105,0.0,0.0,63.38832964183578,0.0678237499960232 +22,288.97083044730425,0.0,0.0,62.97320951186117,0.0673795830007293 +23,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602 +24,295.5164591211883,0.0,0.0,64.399648454606,0.0689058330026455 +25,268.26248562413593,0.0,0.0,58.4603978374972,0.0625510000027134 +26,293.4117794845162,0.0,0.0,63.94099167076958,0.0684150829983991 +27,293.46628031085334,0.0,0.0,63.952868620253305,0.0684277910040691 +28,292.03207031876735,0.0,0.0,63.64032217334782,0.0680933749972609 +29,296.7944917425345,0.0,0.0,64.67816035804776,0.0692038329943898 +0,315.8166415430196,0.0,0.0,71.55382505573768,0.0880411670004832 +1,286.0633453360258,0.0,0.0,64.81269152577208,0.0797467500015045 +2,313.0570777710135,0.0,0.0,70.92859725771052,0.0872718750033527 +3,308.9532305134665,0.0,0.0,69.99879834880156,0.0861278330048662 +4,308.43414159245566,0.0,0.0,69.88118960703004,0.0859831250054412 +5,308.23565035456966,0.0,0.0,69.83621791952999,0.0859277909985394 +6,309.07130861685545,0.0,0.0,70.02555102374461,0.0861607499973615 +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234 +8,309.104489721779,0.0,0.0,70.03306878773974,0.086169999995036 +9,311.85239528042814,0.0,0.0,70.65565521210488,0.0869360419965232 +10,309.7618344994348,0.0,0.0,70.18200183000086,0.086353250000684 +11,307.98514910300486,0.0,0.0,69.7794624469775,0.0858579580017249 +12,311.25931787985377,0.0,0.0,70.52128307655853,0.0867707080033142 +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218 +14,307.8869545283353,0.0,0.0,69.75721473582777,0.0858305840010871 +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165 +16,306.82904378030355,0.0,0.0,69.5175264147203,0.0855356669999309 +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673 +18,310.8970159762155,0.0,0.0,70.43919719627168,0.0866697079982259 +19,309.5836716636141,0.0,0.0,70.1416359001896,0.0863035830043372 +20,311.40639092002573,0.0,0.0,70.5546050653412,0.0868117080026422 +21,317.1811027296167,0.0,0.0,71.8629677803392,0.088421542001015 +22,311.9760012189771,0.0,0.0,70.68366031550781,0.0869705000004614 +23,259.64086611242755,0.0,0.0,58.82621327476237,0.0723808749971794 +24,309.0541226205383,0.0,0.0,70.02165723344947,0.0861559590048273 +25,309.0817723407111,0.0,0.0,70.02792176476237,0.0861636670015286 +26,311.56422898167176,0.0,0.0,70.59036605942617,0.0868557089997921 +27,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687 +28,310.2794311568168,0.0,0.0,70.29927247315251,0.0864975419972324 +29,254.3169403535346,0.0,0.0,57.619984082721295,0.0708967079990543 +0,305.721962186582,0.0,0.0,63.66560385029554,0.0687287079999805 +1,307.5698377636455,0.0,0.0,64.05041792649908,0.0691441250019124 +2,304.5750584918347,0.0,0.0,63.426764887723195,0.0684708750050049 +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397 +4,302.7877946617043,0.0,0.0,63.05457301059663,0.0680690840017632 +5,302.41839922506983,0.0,0.0,62.97764761287684,0.0679860409945831 +6,304.01921499319684,0.0,0.0,63.311012287766246,0.068345917003171 +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322 +8,306.7875031062147,0.0,0.0,63.88749927969296,0.0689682500014896 +9,304.17471662540027,0.0,0.0,63.34339499669278,0.0683808749963645 +10,304.8949627430861,0.0,0.0,63.49338390712414,0.0685427920034271 +11,310.9972086145361,0.0,0.0,64.76415675402785,0.0699146249971818 +12,303.45410134996797,0.0,0.0,63.19332921036192,0.0682188749997294 +13,303.2832176918836,0.0,0.0,63.15774324459655,0.0681804590058163 +14,305.3787091124342,0.0,0.0,63.594122514500135,0.0686515420020441 +15,299.556141985043,0.0,0.0,62.381591856012456,0.0673425829954794 +16,310.09439777626403,0.0,0.0,64.57614933457363,0.0697116660012397 +17,309.0629659837681,0.0,0.0,64.36135701991627,0.069479792000493 +18,303.34771274786874,0.0,0.0,63.171174130147875,0.068194958003005 +19,302.234170867233,0.0,0.0,62.93928265680976,0.0679446250069304 +20,304.56560596920565,0.0,0.0,63.42479643064285,0.068468750003376 +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217 +22,305.56497926280053,0.0,0.0,63.63291266721779,0.0686934170007589 +23,307.9737025847265,0.0,0.0,64.13452146137145,0.0692349169985391 +24,306.6599897546909,0.0,0.0,63.86094503914815,0.0689395839945063 +25,302.4908700108722,0.0,0.0,62.992739418210725,0.0680023329987307 +26,300.3927852296424,0.0,0.0,62.555820089384135,0.0675306669945712 +27,307.767415320001,0.0,0.0,64.09156280972131,0.0691885419946629 +28,302.781304689866,0.0,0.0,63.05322149507873,0.0680676250049145 +29,302.1294503364202,0.0,0.0,62.91747494701346,0.0679210830057854 +0,254.6307029336884,0.0803251428812897,0.0,57.08440154096989,0.0676555829995777 +1,263.7963996346027,0.0832165298531869,0.0,59.139213882331546,0.0700909160004812 +2,253.7492302434404,0.0800470757865742,0.0,56.886788525658766,0.0674213749953196 +3,315.84115707071624,0.0996344344071659,0.0,70.8068713853593,0.0839192499988712 +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.0885723329993197 +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049 +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.0868600829999195 +7,326.48454970016655,0.1029919715142481,0.0,73.192961089459,0.0867472079989966 +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.0890692090033553 +9,330.8312320406672,0.1043631646815984,0.0,74.16742236705599,0.0879021250002551 +10,325.4089376060097,0.1026526617053658,0.0,72.95182491861333,0.0864614169986452 +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.0857947909971699 +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.0863410839956486 +13,323.1647140635819,0.1019447047519185,0.0,72.44870351036347,0.0858651249945978 +14,321.04641790612,0.1012764725255899,0.0,71.97381314151923,0.0853022919982322 +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.0856695000038598 +16,321.7960054059207,0.1015129354592809,0.0,72.14185946639569,0.0855014580010902 +17,303.00058629844494,0.0955837811667018,0.0,67.92820714913613,0.0805074999952921 +18,319.4832536685931,0.1007833607787359,0.0,71.62337506008836,0.0848869580004247 +19,324.52934299437413,0.1023751870644713,0.0,72.7546329404843,0.0862277080013882 +20,335.0232930833541,0.1056855814143072,0.0,75.10721985843438,0.0890159589980612 +21,328.476451821486,0.1036203318048851,0.0,73.63951580267174,0.0872764579980867 +22,329.2296486453677,0.1038579333266144,0.0,73.80837128411399,0.087476583001262 +23,327.0558388796751,0.1031721889210331,0.0,73.32103559321422,0.086898999994446 +24,324.61872924541194,0.1024033846200037,0.0,72.77467200328267,0.0862514580003335 +25,318.41955724016697,0.1004478098549422,0.0,71.38491020357897,0.084604333002062 +26,300.9517592509948,0.0949374634861182,0.0,67.46889071746803,0.0799631249974481 +27,324.7123495870697,0.1024329178508106,0.0,72.79566028597608,0.0862763330005691 +28,323.6961727674179,0.1021123573398794,0.0,72.56784861620767,0.0860063340005581 +29,321.83113513979686,0.1015240173942576,0.0,72.14973502818579,0.0855107919996953 +0,289.28287234917417,0.0,0.0,62.42629931011725,0.0676834159967256 +1,294.6927660431574,0.0,0.0,63.5937367053353,0.0689491669982089 +2,277.7601904303348,0.0,0.0,59.93974217495268,0.0649874579976312 +3,262.90320869288206,0.0,0.0,56.733654025815085,0.0615113749954616 +4,293.7341289609959,0.0,0.0,63.38686595306845,0.0687248750036815 +5,292.09271527384254,0.0,0.0,63.03265423879081,0.0683408339973539 +6,293.5832888779959,0.0,0.0,63.35431515566778,0.0686895830003777 +7,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502 +8,291.9546931410586,0.0,0.0,63.002869513194646,0.0683085410055355 +9,294.338014940254,0.0,0.0,63.517182575633115,0.0688661660024081 +10,291.76485654961874,0.0,0.0,62.96190339660087,0.0682641250023152 +11,291.4241799062767,0.0,0.0,62.88838648931725,0.0681844170030672 +12,289.7307595134493,0.0,0.0,62.52295189776321,0.0677882080053677 +13,295.45675398335953,0.0,0.0,63.75860280831983,0.0691279169986955 +14,268.6430896357433,0.0,0.0,57.97230159189356,0.0628543330021784 +15,296.1544940115595,0.0,0.0,63.90917282820156,0.0692911669975728 +16,296.023421474765,0.0,0.0,63.88088780272865,0.0692605000003823 +17,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743 +18,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523 +19,288.2072371897795,0.0,0.0,62.19418075479606,0.0674317500015604 +20,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575 +21,291.5402932180753,0.0,0.0,62.91344336287967,0.0682115839954349 +22,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078 +23,290.7937520213083,0.0,0.0,62.75234221016276,0.0680369160036207 +24,292.5845867335617,0.0,0.0,63.13879849377964,0.0684559169967542 +25,273.97462270495254,0.0,0.0,59.12282902014209,0.0641017499947338 +26,299.1048380666353,0.0,0.0,64.54584744206421,0.0699814580002566 +27,294.26660397366516,0.0,0.0,63.501772322208495,0.0688494580026599 +28,292.6253698145022,0.0,0.0,63.14759934948502,0.0684654590004356 +29,290.1271784005321,0.0,0.0,62.60849779924106,0.0678809579985681 +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526 +1,297.817315883756,0.0,0.0,62.733064436627,0.0677234579998184 +2,299.81856627760055,0.0,0.0,63.15461336348616,0.0681785409979056 +3,293.4782177778501,0.0,0.0,61.81906479135154,0.0667367499991087 +4,300.9928969475883,0.0,0.0,63.40197762896428,0.0684455830050865 +5,302.9091294778741,0.0,0.0,63.805618157525416,0.0688813329979893 +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736 +7,298.40897111216174,0.0,0.0,62.85769233295232,0.0678580000021611 +8,301.1378313788484,0.0,0.0,63.432507019064865,0.0684785409976029 +9,300.16524277859793,0.0,0.0,63.227638262025714,0.0682573750018491 +10,302.53570709857513,0.0,0.0,63.7269594330885,0.0687964169992483 +11,300.62625114769776,0.0,0.0,63.32474634198656,0.0683622079959604 +12,301.35917766867016,0.0,0.0,63.47913201473039,0.0685288749955361 +13,299.7551711903755,0.0,0.0,63.14125964669488,0.0681641249975655 +14,304.2527658133512,0.0,0.0,64.0886454373958,0.0691868750000139 +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185 +16,297.4405953485831,0.0,0.0,62.6537109795002,0.0676377920026425 +17,306.33775437514066,0.0,0.0,64.52783320392388,0.0696610000013606 +18,322.565634223188,0.0,0.0,67.94611876988051,0.0733512090009753 +19,303.6565283499523,0.0,0.0,63.963052326397744,0.0690512910005054 +20,304.6771294210259,0.0,0.0,64.17803456329608,0.0692833749999408 +21,300.6194745682893,0.0,0.0,63.32331890452737,0.0683606670063454 +22,297.64673049065647,0.0,0.0,62.697131856865795,0.067684666995774 +23,301.97648382691904,0.0,0.0,63.60916309397653,0.0686692500021308 +24,297.5443027834249,0.0,0.0,62.67555620086746,0.0676613750038086 +25,292.8490031072213,0.0,0.0,61.686525270068515,0.0665936670047813 +26,305.28948829746935,0.0,0.0,64.30702353339768,0.0694226249979692 +27,299.9959370811122,0.0,0.0,63.19197524089363,0.0682188749997294 +28,300.89853428238985,0.0,0.0,63.38210081576173,0.0684241249982733 +29,298.13540828185586,0.0,0.0,62.80006830054803,0.0677957919979235 +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.0716147079947404 +1,398.6592292206605,1.0601916085650025,10.248518882795024,69.07556095804284,0.0674460419977549 +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.0773315420010476 +3,514.3190563490106,1.36777655626399,13.221840043885235,89.11590331966148,0.0870136250014184 +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.0868142500039539 +5,517.1547567068353,1.375317798265706,13.29473871656849,89.60724424085022,0.0874933750019408 +6,490.26978754538726,1.303820096438466,12.603594265571838,84.94889397564467,0.0829449170050793 +7,519.4725243133612,1.3814816534756962,13.354322650265065,90.00884311491652,0.0878855000046314 +8,518.1034381164648,1.3778407150727667,13.31912691237008,89.77162197435642,0.0876538750017061 +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281692,0.0889240420001442 +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.0830192919966066 +11,500.35038752648165,1.330628374601622,12.862740954482344,86.69555640673644,0.0846503749999101 +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.085572250005498 +13,488.42094043081113,1.298903285155243,12.556065089834012,84.62854480973004,0.0826321249987813 +14,503.4395128973858,1.338843573337746,12.94215454226488,87.23080820131315,0.0851729999994859 +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788 +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.0865403749994584 +17,493.5559371722591,1.312559260123976,12.6880728478651,85.51828410192365,0.083500875000027 +18,507.3150213055262,1.3491500737071616,13.041784045835897,87.9023163407666,0.0858286670045345 +19,517.1131388371582,1.375207119989715,13.293668826567243,89.60003312548373,0.0874863339995499 +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.421331250411,0.0892646670035901 +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.0859598329989239 +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.0867411250001168 +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.0798599589979858 +24,510.89991397744865,1.3586837125891915,13.133942555028854,88.52346958177273,0.0864351670024916 +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.0874901249990216 +26,423.54044139290176,1.1263605328553132,10.88815181760136,73.38672087141926,0.0716554999962681 +27,420.70326336992974,1.1188153611610816,10.815215157890457,72.89512391564892,0.071175500001118 +28,459.11156121555587,1.2209581239281746,11.802595197972352,79.55011776670491,0.0776734999963082 +29,402.5174899448091,1.070452240562397,10.347704992103171,69.74408059664233,0.0680987910018302 +0,309.7762415538039,0.0,0.0,63.37230984127286,0.068120000003546 +1,311.42073409796063,0.0,0.0,63.70873102876365,0.0684816249995492 +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803 +3,313.74090904811897,0.0,0.0,64.18337958505668,0.0689918330026557 +4,310.57698038804125,0.0,0.0,63.53612056236206,0.0682960830017691 +5,311.4457454166953,0.0,0.0,63.7138477059899,0.0684871250050491 +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942 +7,310.3448710223421,0.0,0.0,63.48863691233658,0.0682450419990345 +8,310.4030381748929,0.0,0.0,63.50053642662969,0.0682578329942771 +9,309.88272598227024,0.0,0.0,63.39409383658571,0.068143415999657 +10,314.95073715611716,0.0,0.0,64.43087952672482,0.0692578750022221 +11,311.97913169496366,0.0,0.0,63.82296492015055,0.068604416999733 +12,314.11153092259957,0.0,0.0,64.25919935788926,0.0690733329975046 +13,311.2255687180135,0.0,0.0,63.66880517497234,0.0684387080036685 +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324 +15,313.3998459687748,0.0,0.0,64.11360678701638,0.0689168330063694 +16,314.72354819575156,0.0,0.0,64.38440246600322,0.0692079159998684 +17,310.5500773260057,0.0,0.0,63.53061688275627,0.0682901670006685 +18,309.80466346329615,0.0,0.0,63.3781242382892,0.0681262500002048 +19,313.26815920758014,0.0,0.0,64.08666703789113,0.0688878750006551 +20,312.11271473244335,0.0,0.0,63.85029259898814,0.0686337919978541 +21,323.48735546048795,0.0,0.0,66.17725367558705,0.0711350830024457 +22,317.51420374814444,0.0,0.0,64.95529934124274,0.0698215829979744 +23,315.9167051463369,0.0,0.0,64.62849191451126,0.0694702920009149 +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978 +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328 +26,314.22105311215415,0.0,0.0,64.2816048015609,0.0690974169992841 +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759 +28,312.78100741484513,0.0,0.0,63.987008219015664,0.0687807499998598 +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293 +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.0874951669975416 +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.0867375840025488 +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.0861871669985703 +3,293.9572294015164,0.9146992271339104,0.0,69.27999701810545,0.0847011669975472 +4,300.39880553788765,0.9347433156071184,0.0,70.79815112653915,0.0865572499969857 +5,298.60714878159104,0.9291682628907408,0.0,70.37589250413203,0.0860410000022966 +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496 +7,300.03454654918687,0.9336098601853228,0.0,70.71230237329574,0.0864522920019226 +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.0858868340001208 +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.0709844160010106 +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.0850011670045205 +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.0865207090027979 +12,298.57230126240773,0.92905982875245,0.0,70.36767962217631,0.0860309589988901 +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825 +14,300.45317822288536,0.9349125057068,0.0,70.81096571001504,0.0865729170036502 +15,226.2276855823378,0.7039469298977896,0.0,53.317461912628886,0.065185499996005 +16,300.4835452655799,0.9350069980604652,0.0,70.81812263087598,0.0865816669975174 +17,298.95347907171913,0.9302459300376188,0.0,70.45751581210853,0.0861407920019701 +18,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.0860762919983244 +19,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.085864542001218 +20,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.0855547909959568 +21,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623 +22,296.81231300431466,0.9235833180957124,0.0,69.95288464836042,0.0855238340009236 +23,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.0852534170044236 +24,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.0801159580005332 +25,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.0712743749973014 +26,296.6898313446286,0.9232021950334184,0.0,69.92401810530892,0.0854885419976199 +27,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.0830227920014294 +28,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.0866290830017533 +29,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.0702899169991724 +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.0854961669974727 +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.0852910419998806 +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.085036708995176 +3,352.4283146868622,1.2669926655795811,0.0,78.06309649216129,0.0861206249974202 +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.0690652920020511 +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.0691986660021939 +6,276.21979273513165,0.9930202452498064,0.0,61.18286027184291,0.0674980420008068 +7,276.9739641940552,0.9957315191946784,0.0,61.349909731026955,0.0676823339963448 +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.068089874999714 +9,280.05765275444236,1.0068174922170603,0.0,62.032948714018886,0.0684358750004321 +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.0593904580018715 +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.0687335420007002 +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.0677226659972802 +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.0684477079994394 +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.0683194170051137 +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.0684337920029065 +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.0687179589949664 +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.0684492919972399 +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.0675360410023131 +19,280.94925472663203,1.0100228338774897,0.0,62.23043911954855,0.0686537500005215 +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814 +21,267.5825543832899,0.9619690578548056,0.0,59.269706467828335,0.065387415997975 +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.0728027500008465 +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.067395750003925 +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965 +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.0677298329974291 +26,278.3068472864164,1.000523282602216,0.0,61.645144186136534,0.0680080420061131 +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.0680346250010188 +28,277.9544010343528,0.999256225451112,0.0,61.56707711650399,0.067921916997875 +29,276.82374129899574,0.9951914623992656,0.0,61.31663526395476,0.0676456250002957 +0,478.8738629620707,0.3431147812004327,14.220201487529048,87.79926012273296,0.0864906249989871 +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.0864957080048043 +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.0880929580016527 +3,399.3710335699146,0.2861507286146987,11.859357974809182,73.22279199996125,0.0721314170004916 +4,491.1808267997274,0.3519327634103611,14.585657861340524,90.05568379267353,0.0887134170043282 +5,483.7304803199704,0.3465945643563198,14.364419167211922,88.68969796806718,0.0873677909985417 +6,483.518014469227,0.3464423318384717,14.358109975083329,88.65074335822227,0.087329417001456 +7,485.3377441423682,0.3477461744511833,14.412147007810152,88.98438219567502,0.0876580830008606 +8,499.413915114863,0.3578317997001645,14.83014014312904,91.56518163438656,0.0902004160016076 +9,473.2155736942138,0.3390605973447913,14.052178089956351,86.76183952056161,0.0854686669990769 +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.0707355000049574 +11,394.0454011504646,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108 +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425 +13,394.9993326892937,0.2830183897940962,11.729539932577543,72.42126129953374,0.0713418329978594 +14,378.78252964338554,0.2713989942512912,11.24798053952574,69.44798708452487,0.0684128749999217 +15,384.479575923064,0.2754809476401223,11.417154829973958,70.49251360168908,0.0694418330022017 +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.0705237079964717 +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.0727939999997033 +18,393.9042149535417,0.2822337341439276,11.697020315076117,72.22047663705172,0.0711440410013892 +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.0700297920047887 +20,398.0775187183235,0.2852239207439624,11.820946937499777,72.98563216370505,0.0718977919968892 +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.0706645410027704 +22,389.6303367203219,0.2791714855889576,11.57010712496458,71.43688125681884,0.0703721249956288 +23,388.1340397821256,0.2780993836509139,11.525674455754546,71.16254228311722,0.0701018750041839 +24,386.7157163168241,0.2770831499762293,11.483557215681506,70.90249937725069,0.0698457079997751 +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.0711431250019813 +26,388.7795265014115,0.2785618771206674,11.54484224066766,71.28088922321079,0.0702184580004541 +27,378.82221127416574,0.2714274262771667,11.249158889042578,69.455262524035,0.0684200420000706 +28,392.96851579515817,0.281563302456526,11.6692346462538,72.0489206174866,0.0709750419991905 +29,375.2639478299834,0.2688779181967877,11.143495943044648,68.80287173413357,0.067777374999423 +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.090134540994768 +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.088257416995475 +2,455.5753429091931,1.3050782533395655,13.497256672696034,88.47056791059792,0.0903868749956018 +3,419.6566096594096,1.202182522959485,12.433098197975724,81.49532050377981,0.0832605410032556 +4,435.18530530497446,1.2466672899803264,12.893164341112325,84.51091944708739,0.0863414589985041 +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.0862921669977367 +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.0870674999969196 +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.0829531249983119 +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.085397875001945 +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.0889262089986004 +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.087149708000652 +11,445.6432605229153,1.276626000744122,13.20300048138,86.5418046820226,0.088416334001522 +12,443.8860921648639,1.2715922730693427,13.15094113990136,86.20057093227965,0.0880677089953678 +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.0856246249968535 +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.0846896250004647 +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.0914325000048847 +16,448.61450172342313,1.2851376604214158,13.291028961726749,87.11880561172545,0.0890058329969178 +17,446.24997941202497,1.278364057116996,13.220975643341562,86.6596266087732,0.0885367079972638 +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.0873248749994672 +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951 +20,443.4385504379859,1.2703102085671665,13.137681893865697,86.11366045444791,0.0879789160026121 +21,442.1656725615023,1.2666638188720003,13.099970547807796,85.8664736161651,0.0877263750007841 +22,441.68348391262026,1.2652825019735825,13.085684823042577,85.77283487063022,0.0876307080034166 +23,435.0414455972906,1.2462551777381865,12.888902232923874,84.4829825750939,0.0863129170029424 +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.0910823329977574 +25,446.02715863284936,1.2777257465547136,13.214374168315857,86.616355871709,0.0884924999991199 +26,450.1188192756612,1.2894470510723803,13.33559713345909,87.410936935854,0.0893042919997242 +27,448.4937466626544,1.2847917356336875,13.287451371158928,87.09535555243103,0.0889818750001723 +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.0864285839998046 +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.0874653330029104 +0,310.5645000365186,0.0,0.0,62.906193325953055,0.0660357079977984 +1,288.3742824692979,0.0,0.0,58.41146802391626,0.0613173750025453 +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334 +3,321.1442400366122,0.0,0.0,65.04916578322343,0.0682852910031215 +4,320.22265380094257,0.0,0.0,64.86249447371847,0.0680893329990794 +5,319.2936180922495,0.0,0.0,64.67431424097813,0.0678917910045129 +6,321.08878720952856,0.0,0.0,65.03793357136217,0.0682735000009415 +7,320.00827793597637,0.0,0.0,64.81907170774105,0.0680437499977415 +8,320.43507321341815,0.0,0.0,64.90552095171516,0.0681344999975408 +9,317.3079830296693,0.0,0.0,64.2721152030753,0.0674695830020937 +10,320.68334814658476,0.0,0.0,64.95581012173277,0.0681872909990488 +11,325.38888014404125,0.0,0.0,65.90893614063914,0.0691878340003313 +12,295.5038000069898,0.0,0.0,59.85558288087539,0.0628333330023451 +13,298.2466145543028,0.0,0.0,60.41115192418272,0.0634165410010609 +14,342.3866146636323,0.0,0.0,69.35190136579169,0.0728020829992601 +15,299.69944448734907,0.0,0.0,60.70542896044151,0.0637254579996806 +16,292.9898605966174,0.0,0.0,59.34637349429057,0.0622987910028314 +17,323.37110492136594,0.0,0.0,65.50022697320047,0.0687587919965153 +18,316.76831626965384,0.0,0.0,64.16280334826533,0.0673548330014455 +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589 +20,319.69611777139016,0.0,0.0,64.75584230560457,0.0679773750016465 +21,322.2084863736894,0.0,0.0,65.26473351816657,0.068511582998326 +22,322.89276972182176,0.0,0.0,65.40333809332657,0.0686570830002892 +23,295.41542632084173,0.0,0.0,59.83768240549876,0.0628145419977954 +24,322.6825089599613,0.0,0.0,65.36074885942217,0.068612374998338 +25,322.5780652279843,0.0,0.0,65.33959332620877,0.0685901670003659 +26,321.6707807541225,0.0,0.0,65.15581890090364,0.0683972499973606 +27,318.3269632325836,0.0,0.0,64.4785140852151,0.0676862500040442 +28,328.9750938995778,0.0,0.0,66.63533937020159,0.0699503750001895 +29,307.251251832783,0.0,0.0,62.235080458846376,0.0653312079957686 +0,297.4059709817293,0.9431835074740536,0.0,64.00173800716793,0.0684758749994216 +1,294.011382014694,0.9324180197543812,0.0,63.2712227690473,0.0676942920035799 +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.0683419589986442 +3,295.5819955572358,0.937399011847616,0.0,63.609218661088235,0.0680559160027769 +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.0683780000035767 +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.0666158339954563 +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.0695982499964884 +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.0631072079995647 +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908 +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.0682349579947185 +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217 +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.0678802910042577 +12,298.78404079959876,0.9475538727362968,0.0,64.29829850710586,0.068793167003605 +13,298.6888503744389,0.9472519889550676,0.0,64.27781353623672,0.0687712500002817 +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.0684182080003665 +15,300.98587226643184,0.9545366885785584,0.0,64.77213243925932,0.0693001250037923 +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.0688503339988528 +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.0703221669973572 +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.0622112919954815 +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.0704370409948751 +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.0679169579962035 +21,294.30110968856326,0.9333368525631184,0.0,63.33357213821159,0.067760999998427 +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.0683039159994223 +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.0686080419982317 +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.0654641670043929 +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.0682025420028367 +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.0679551669963984 +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.0682538749970262 +28,297.22988805085987,0.9426250838627336,0.0,63.963844976399784,0.0684353329997975 +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.0624182920000748 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d283534b1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292 +1,2715.9020526639206,4.5839715944040265,91.47719784715093,550.9866445126663,0.5387826250007492 +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223 +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655 +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857 +5,2719.8013326503037,4.59055290269483,91.60853366113065,551.7777080908264,0.5395561670011375 +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514 +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546 +8,2686.408260218842,4.5341911884255115,90.48378592196205,545.0031129205282,0.532931624999037 +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732 +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318 +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728 +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426 +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253 +14,2678.044504222127,4.520074618988164,90.20207732304321,543.3063220338199,0.5312724169998546 +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908 +16,2692.3906558823523,4.544288434664978,90.68528538000551,546.2167870696205,0.534118417002901 +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387 +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994 +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183 +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407 +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541 +22,2669.2258149406434,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802 +23,2704.503515961487,4.5647328415151005,91.09327155788223,548.6741747077011,0.5365213749973918 +24,2722.9180265552013,4.595813341418859,91.71351035743223,552.4100050895154,0.5401744590053568 +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108 +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303 +27,2689.5938418367864,4.5395678976606595,90.59108289890463,545.6493854636676,0.5335635829978855 +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969 +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..dc4426a52 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,365.5962922637533,0.31946547733638003,13.098084570791581,71.3685876369473,0.0776209169998765 +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.08433912499458529 +2,381.68376621972993,0.33352303933915584,13.67444461290539,74.50904698836742,0.0810364999997546 +3,374.9568692135735,0.32764493989302124,13.433442535613871,73.19587957210095,0.07960829100193223 +4,383.4586629821924,0.33507398023609963,13.738033189680085,74.85552718474466,0.08141333400271833 +5,378.5011661164349,0.33074201862673447,13.560422763696112,73.88776696121248,0.08036079200246604 +6,388.4279301626621,0.33941622698589835,13.916065306421833,75.82558510864969,0.08246837499609683 +7,388.86871297404707,0.3398013919731275,13.931857070898227,75.91163096679668,0.08256195900321472 +8,387.48730093829556,0.3385942860348615,13.882365727429324,75.64196350018807,0.08226866699988022 +9,361.1088179961347,0.31554423103472096,12.93731347242356,70.49258121315667,0.07666816699929768 +10,384.98725849243414,0.33640969808846044,13.792797621626878,75.15392655296206,0.081737874999817 +11,387.32205450517523,0.3384498903400692,13.876445503942838,75.60970550197146,0.08223358300165273 +12,381.00905545019447,0.33293346334340657,13.650271997079669,74.37733571091702,0.08089325000037206 +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574 +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.08367337499657879 +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.08062100000097416 +16,376.53865500831523,0.3290271364980035,13.490112596418145,73.504662293654,0.07994412499829195 +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.08158308299607597 +18,371.9656137717135,0.32503112003819773,13.326275921566106,72.61195221653337,0.07897320800111629 +19,373.64807162243585,0.32650128593362093,13.38655272327846,72.94038727757092,0.07933041600335855 +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.07749708300252678 +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.08149054100067588 +22,389.6713762032651,0.34050277543102503,13.960613792672026,76.068320031291,0.08273237499815878 +23,385.06124352849156,0.33647434771801077,13.795448256438442,75.1683692802036,0.08175358299922664 +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.07542033299978357 +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.08277762500074459 +26,389.38641984466267,0.34025377476814284,13.950404765493857,76.0126932832031,0.08267187500314321 +27,385.34934147980306,0.3367260935685102,13.805769836308919,75.22460930320518,0.0818147499958286 +28,388.2126444619807,0.33922810596118547,13.908352344408605,75.78355887172884,0.08242266700108303 +29,382.30646891442245,0.33406716962113114,13.696753954466377,74.63060569336069,0.08116870799858589 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4b689b7ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8e50a7763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d39ed2067 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..79c7eec65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d72ffd21e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b22e7a0ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..04fbe3c18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..42ecec5ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..031667f18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e8d4a5fe6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..40aea970d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e012d299a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3d16a64f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dc1d83d35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..189f604f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..0f649f910 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..685ac5c22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0c21f3fa9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..191d3be28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..8bfe05152 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d283534b1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292 +1,2715.9020526639206,4.5839715944040265,91.47719784715093,550.9866445126663,0.5387826250007492 +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223 +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655 +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857 +5,2719.8013326503037,4.59055290269483,91.60853366113065,551.7777080908264,0.5395561670011375 +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514 +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546 +8,2686.408260218842,4.5341911884255115,90.48378592196205,545.0031129205282,0.532931624999037 +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732 +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318 +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728 +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426 +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253 +14,2678.044504222127,4.520074618988164,90.20207732304321,543.3063220338199,0.5312724169998546 +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908 +16,2692.3906558823523,4.544288434664978,90.68528538000551,546.2167870696205,0.534118417002901 +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387 +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994 +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183 +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407 +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541 +22,2669.2258149406434,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802 +23,2704.503515961487,4.5647328415151005,91.09327155788223,548.6741747077011,0.5365213749973918 +24,2722.9180265552013,4.595813341418859,91.71351035743223,552.4100050895154,0.5401744590053568 +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108 +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303 +27,2689.5938418367864,4.5395678976606595,90.59108289890463,545.6493854636676,0.5335635829978855 +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969 +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..dc4426a52 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,365.5962922637533,0.31946547733638003,13.098084570791581,71.3685876369473,0.0776209169998765 +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.08433912499458529 +2,381.68376621972993,0.33352303933915584,13.67444461290539,74.50904698836742,0.0810364999997546 +3,374.9568692135735,0.32764493989302124,13.433442535613871,73.19587957210095,0.07960829100193223 +4,383.4586629821924,0.33507398023609963,13.738033189680085,74.85552718474466,0.08141333400271833 +5,378.5011661164349,0.33074201862673447,13.560422763696112,73.88776696121248,0.08036079200246604 +6,388.4279301626621,0.33941622698589835,13.916065306421833,75.82558510864969,0.08246837499609683 +7,388.86871297404707,0.3398013919731275,13.931857070898227,75.91163096679668,0.08256195900321472 +8,387.48730093829556,0.3385942860348615,13.882365727429324,75.64196350018807,0.08226866699988022 +9,361.1088179961347,0.31554423103472096,12.93731347242356,70.49258121315667,0.07666816699929768 +10,384.98725849243414,0.33640969808846044,13.792797621626878,75.15392655296206,0.081737874999817 +11,387.32205450517523,0.3384498903400692,13.876445503942838,75.60970550197146,0.08223358300165273 +12,381.00905545019447,0.33293346334340657,13.650271997079669,74.37733571091702,0.08089325000037206 +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574 +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.08367337499657879 +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.08062100000097416 +16,376.53865500831523,0.3290271364980035,13.490112596418145,73.504662293654,0.07994412499829195 +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.08158308299607597 +18,371.9656137717135,0.32503112003819773,13.326275921566106,72.61195221653337,0.07897320800111629 +19,373.64807162243585,0.32650128593362093,13.38655272327846,72.94038727757092,0.07933041600335855 +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.07749708300252678 +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.08149054100067588 +22,389.6713762032651,0.34050277543102503,13.960613792672026,76.068320031291,0.08273237499815878 +23,385.06124352849156,0.33647434771801077,13.795448256438442,75.1683692802036,0.08175358299922664 +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.07542033299978357 +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.08277762500074459 +26,389.38641984466267,0.34025377476814284,13.950404765493857,76.0126932832031,0.08267187500314321 +27,385.34934147980306,0.3367260935685102,13.805769836308919,75.22460930320518,0.0818147499958286 +28,388.2126444619807,0.33922810596118547,13.908352344408605,75.78355887172884,0.08242266700108303 +29,382.30646891442245,0.33406716962113114,13.696753954466377,74.63060569336069,0.08116870799858589 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4b689b7ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8e50a7763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d39ed2067 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..79c7eec65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d72ffd21e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b22e7a0ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..04fbe3c18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..42ecec5ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..031667f18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e8d4a5fe6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..40aea970d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e012d299a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3d16a64f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dc1d83d35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..189f604f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..0f649f910 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..685ac5c22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0c21f3fa9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..191d3be28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8bfe05152 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2141f0236 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1795.1479240354913,2.682538176309839,0.0,479.4457429436733,0.5142721660013194 +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979 +2,1817.3031298206897,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046 +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751 +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264 +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576 +6,1809.3933002198742,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581 +7,1805.3675530191015,2.697809644766114,0.0,482.17518799109916,0.5171998750010971 +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467 +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286 +10,1799.7155993091633,2.689363777216903,0.0,480.66567163912475,0.5155807090050075 +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075 +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091 +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005 +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217 +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733 +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314 +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529 +18,1826.6656523216354,2.729635971553408,0.0,487.8634562985023,0.5233013329998357 +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408 +20,1807.3063234553779,2.700706801953429,0.0,482.6929922454295,0.5177552919994923 +21,1833.0039600605846,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359 +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235 +23,1838.0546515121378,2.7466548615899486,0.0,490.90521520046525,0.5265640419966076 +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132 +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729 +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903 +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051 +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895 +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..eb58775d4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467 +1,228.78073899886232,0.0,0.0,56.00141900241923,0.07783833300345577 +2,235.23590932049515,0.0,0.0,57.58152884687401,0.08003458299936028 +3,236.26866601830895,0.0,0.0,57.83432915172009,0.08038595899415668 +4,236.1306451621364,0.0,0.0,57.800544123175236,0.08033900000009453 +5,236.65994415723756,0.0,0.0,57.930107017901115,0.08051908400375396 +6,230.7082285871409,0.0,0.0,56.4732338611715,0.07849412499490427 +7,236.48396084260233,0.0,0.0,57.88702946083294,0.08045920899894554 +8,233.11602697824952,0.0,0.0,57.062619694803665,0.07931333300075494 +9,234.89729248766326,0.0,0.0,57.4986415233184,0.0799193750062841 +10,235.4089534558389,0.0,0.0,57.62388694560078,0.08009345800383016 +11,236.8091074367793,0.0,0.0,57.966619511714825,0.08056983399728779 +12,235.2139889440503,0.0,0.0,57.576163132123064,0.08002712500456255 +13,235.677400358321,0.0,0.0,57.68959792953932,0.08018479200109141 +14,235.25183085336997,0.0,0.0,57.58542615237964,0.08004000000073574 +15,224.63833749671062,0.0,0.0,54.98743345794819,0.0764289589933469 +16,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743 +17,236.4523617407738,0.0,0.0,57.87929456781116,0.08044845800031908 +18,230.33752474602355,0.0,0.0,56.382492213849865,0.07836800000222865 +19,235.6896449605586,0.0,0.0,57.69259518841446,0.08018895799614256 +20,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569 +21,234.47784821362222,0.0,0.0,57.395969092756594,0.0797766670002602 +22,236.01075312636675,0.0,0.0,57.77119670450892,0.08029820899537299 +23,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387001 +24,249.03608623229474,0.0,0.0,60.95956448452025,0.08472983300453052 +25,237.69685978979254,0.0,0.0,58.183925355331866,0.08087187499768334 +26,236.12660378259105,0.0,0.0,57.799554865992754,0.08033762499690056 +27,234.46707023916116,0.0,0.0,57.39333083803974,0.07977299999765819 +28,241.69022142718066,0.0,0.0,59.161428615711976,0.08223054100380978 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3e563ddc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..df305be90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c49dc6461 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..97246e1d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4b45fa16d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..288893c5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f97e1c3e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4a712fed6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..98a1f3455 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..31ec74fb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..186edac84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9a8bbfa74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6e08ddf1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4c7e0fe2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..179af1bee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0349c0756 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b4b9dd256 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2141f0236 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1795.1479240354913,2.682538176309839,0.0,479.4457429436733,0.5142721660013194 +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979 +2,1817.3031298206897,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046 +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751 +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264 +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576 +6,1809.3933002198742,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581 +7,1805.3675530191015,2.697809644766114,0.0,482.17518799109916,0.5171998750010971 +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467 +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286 +10,1799.7155993091633,2.689363777216903,0.0,480.66567163912475,0.5155807090050075 +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075 +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091 +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005 +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217 +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733 +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314 +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529 +18,1826.6656523216354,2.729635971553408,0.0,487.8634562985023,0.5233013329998357 +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408 +20,1807.3063234553779,2.700706801953429,0.0,482.6929922454295,0.5177552919994923 +21,1833.0039600605846,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359 +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235 +23,1838.0546515121378,2.7466548615899486,0.0,490.90521520046525,0.5265640419966076 +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132 +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729 +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903 +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051 +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895 +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..553e3c0ea --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467 +1,228.78073899886232,0.0,0.0,56.00141900241923,0.07783833300345577 +2,235.23590932049515,0.0,0.0,57.58152884687401,0.08003458299936028 +3,236.26866601830895,0.0,0.0,57.83432915172009,0.08038595899415668 +4,236.1306451621364,0.0,0.0,57.800544123175236,0.08033900000009453 +5,236.65994415723756,0.0,0.0,57.930107017901115,0.08051908400375396 +6,230.7082285871409,0.0,0.0,56.4732338611715,0.07849412499490427 +7,217.65362425882617,0.0,0.0,53.27770101124752,0.07405254200421041 +8,236.48396084260233,0.0,0.0,57.88702946083294,0.08045920899894554 +9,233.11602697824952,0.0,0.0,57.062619694803665,0.07931333300075494 +10,234.89729248766326,0.0,0.0,57.4986415233184,0.0799193750062841 +11,235.4089534558389,0.0,0.0,57.62388694560078,0.08009345800383016 +12,236.8091074367793,0.0,0.0,57.966619511714825,0.08056983399728779 +13,235.2139889440503,0.0,0.0,57.576163132123064,0.08002712500456255 +14,235.677400358321,0.0,0.0,57.68959792953932,0.08018479200109141 +15,235.25183085336997,0.0,0.0,57.58542615237964,0.08004000000073574 +16,224.63833749671062,0.0,0.0,54.98743345794819,0.0764289589933469 +17,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743 +18,236.4523617407738,0.0,0.0,57.87929456781116,0.08044845800031908 +19,230.33752474602355,0.0,0.0,56.382492213849865,0.07836800000222865 +20,235.6896449605586,0.0,0.0,57.69259518841446,0.08018895799614256 +21,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569 +22,234.47784821362222,0.0,0.0,57.395969092756594,0.0797766670002602 +23,236.01075312636675,0.0,0.0,57.77119670450892,0.08029820899537299 +24,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387001 +25,249.03608623229474,0.0,0.0,60.95956448452025,0.08472983300453052 +26,237.69685978979254,0.0,0.0,58.183925355331866,0.08087187499768334 +27,236.12660378259105,0.0,0.0,57.799554865992754,0.08033762499690056 +28,234.46707023916116,0.0,0.0,57.39333083803974,0.07977299999765819 +29,241.69022142718066,0.0,0.0,59.161428615711976,0.08223054100380978 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..aab6f674b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1fb566c51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3fea4bbab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5d14cd421 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b99493f9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..147070dc4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a4422797b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4a712fed6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8bbbe1e34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..319f16131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a9af62ada Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9a26518ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2e18f0009 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..db9f5c75f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2bb15061a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0349c0756 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2d23ba495 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..09bb91aa5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037 +1,1782.8336566198655,1.7941300308884223,0.0,479.7304354814431,0.5178688749947469 +2,1795.0281902994725,1.8064018314605201,0.0,483.0117786010824,0.5214110840024659 +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378 +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384 +5,1796.9891979642368,1.8083752644440698,0.0,483.53945265385045,0.5219807079993188 +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032 +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437 +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653 +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079 +10,1803.0189770789996,1.8144432493899734,0.0,485.1619644063301,0.5237322089960799 +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943 +12,1800.0309108242288,1.8114362501771966,0.0,484.35792622793593,0.5228642500005662 +13,1791.4015151729552,1.8027521770283186,0.0,482.03590155762765,0.5203576249987236 +14,1809.3940181194137,1.8208586839069762,0.0,486.8773803135709,0.5255840000027092 +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398 +16,1782.9656266294744,1.794262837085196,0.0,479.76594638283603,0.5179072090031696 +17,1797.0181746335738,1.8084044247151134,0.0,483.5472497863245,0.5219891250017099 +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482 +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603 +20,1817.2879807960328,1.8288026642375284,0.0,489.00151238751243,0.5278770000004442 +21,1799.0441654896515,1.8104432526358774,0.0,484.0924097186932,0.5225776250008494 +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759 +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128 +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152 +25,1779.0384404444324,1.7903107674990562,0.0,478.70920688738653,0.5167664590044296 +26,1782.7894773086882,1.7940855716486985,0.0,479.71854757473255,0.517856042002677 +27,1783.1825092184056,1.7944810938835987,0.0,479.8243058256533,0.5179702080058632 +28,1780.5486074656133,1.7918305032266701,0.0,479.11556733499793,0.5172051249974174 +29,1787.7603534401135,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ac78f2e39 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.1520204661302,0.0,0.0,57.746086091398226,0.07991987500281539 +1,227.84953585395314,0.0,0.0,57.66952616253846,0.07981391700013774 +2,229.0306925870703,0.0,0.0,57.968481123615135,0.08022766700014472 +3,230.2044726270147,0.0,0.0,58.265569017469915,0.08063883300201269 +4,229.10003753664316,0.0,0.0,57.98603257645722,0.08025195799564244 +5,230.71678203822358,0.0,0.0,58.39523634763275,0.08081829099683091 +6,230.54216782071205,0.0,0.0,58.3510408694748,0.08075712499703513 +7,228.80932881388662,0.0,0.0,57.91245316700242,0.08015012499527074 +8,230.55620182047025,0.0,0.0,58.35459292462026,0.08076204099779716 +9,230.03128580010983,0.0,0.0,58.22173481694031,0.08057816700602416 +10,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297 +11,230.31081241713733,0.0,0.0,58.29248399574981,0.08067608300189022 +12,232.76566860977562,0.0,0.0,58.913816810390124,0.0815359999978682 +13,229.0882616679938,0.0,0.0,57.98305206230952,0.08024783300061245 +14,231.4391589588723,0.0,0.0,58.578072509964315,0.08107133400335442 +15,231.1610539996254,0.0,0.0,58.50768315778455,0.08097391600313131 +16,223.1157480108247,0.0,0.0,56.47138765923167,0.07815570800448768 +17,229.29047568345513,0.0,0.0,58.03423314728023,0.08031866699457169 +18,226.68384051120094,0.0,0.0,57.37448453423561,0.07940558300470002 +19,229.93933968226798,0.0,0.0,58.19846292819781,0.0805459589973907 +20,229.9903656561629,0.0,0.0,58.211377783281776,0.08056383299845038 +21,229.92208836236088,0.0,0.0,58.1940965579044,0.08053991599444998 +22,234.35815052439594,0.0,0.0,59.31687963469814,0.08209383400389925 +23,232.28523543551043,0.0,0.0,58.79221746892648,0.08136770800047088 +24,224.9047315536089,0.0,0.0,56.92418574301216,0.07878237499971874 +25,229.36006045625183,0.0,0.0,58.051845300231406,0.08034304199827602 +26,227.33044351249188,0.0,0.0,57.53814204865611,0.07963208299770486 +27,226.7574704574646,0.0,0.0,57.393120534947585,0.07943137500114972 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ba6b0d3a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..44c740c90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3e3cb50a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4165ce258 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..eb3e6ef64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..140cb0687 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a00d741c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a9169b8d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..97b109e0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1c06774e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..27a521105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9918af297 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c962e7904 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6d2d0ce8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..010f14459 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d77c15b2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e7cb2b1b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..09bb91aa5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037 +1,1782.8336566198655,1.7941300308884223,0.0,479.7304354814431,0.5178688749947469 +2,1795.0281902994725,1.8064018314605201,0.0,483.0117786010824,0.5214110840024659 +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378 +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384 +5,1796.9891979642368,1.8083752644440698,0.0,483.53945265385045,0.5219807079993188 +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032 +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437 +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653 +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079 +10,1803.0189770789996,1.8144432493899734,0.0,485.1619644063301,0.5237322089960799 +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943 +12,1800.0309108242288,1.8114362501771966,0.0,484.35792622793593,0.5228642500005662 +13,1791.4015151729552,1.8027521770283186,0.0,482.03590155762765,0.5203576249987236 +14,1809.3940181194137,1.8208586839069762,0.0,486.8773803135709,0.5255840000027092 +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398 +16,1782.9656266294744,1.794262837085196,0.0,479.76594638283603,0.5179072090031696 +17,1797.0181746335738,1.8084044247151134,0.0,483.5472497863245,0.5219891250017099 +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482 +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603 +20,1817.2879807960328,1.8288026642375284,0.0,489.00151238751243,0.5278770000004442 +21,1799.0441654896515,1.8104432526358774,0.0,484.0924097186932,0.5225776250008494 +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759 +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128 +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152 +25,1779.0384404444324,1.7903107674990562,0.0,478.70920688738653,0.5167664590044296 +26,1782.7894773086882,1.7940855716486985,0.0,479.71854757473255,0.517856042002677 +27,1783.1825092184056,1.7944810938835987,0.0,479.8243058256533,0.5179702080058632 +28,1780.5486074656133,1.7918305032266701,0.0,479.11556733499793,0.5172051249974174 +29,1787.7603534401135,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..7745350c9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.1520204661302,0.0,0.0,57.746086091398226,0.07991987500281539 +1,227.84953585395314,0.0,0.0,57.66952616253846,0.07981391700013774 +2,229.0306925870703,0.0,0.0,57.968481123615135,0.08022766700014472 +3,230.2044726270147,0.0,0.0,58.265569017469915,0.08063883300201269 +4,229.10003753664316,0.0,0.0,57.98603257645722,0.08025195799564244 +5,230.71678203822358,0.0,0.0,58.39523634763275,0.08081829099683091 +6,211.05486597292324,0.0,0.0,53.418735611373734,0.07393087500531692 +7,230.54216782071205,0.0,0.0,58.3510408694748,0.08075712499703513 +8,228.80932881388662,0.0,0.0,57.91245316700242,0.08015012499527074 +9,230.55620182047025,0.0,0.0,58.35459292462026,0.08076204099779716 +10,230.03128580010983,0.0,0.0,58.22173481694031,0.08057816700602416 +11,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297 +12,230.31081241713733,0.0,0.0,58.29248399574981,0.08067608300189022 +13,232.76566860977562,0.0,0.0,58.913816810390124,0.0815359999978682 +14,229.0882616679938,0.0,0.0,57.98305206230952,0.08024783300061245 +15,211.45488911631426,0.0,0.0,53.51998288864797,0.07407099999545608 +16,231.4391589588723,0.0,0.0,58.578072509964315,0.08107133400335442 +17,231.1610539996254,0.0,0.0,58.50768315778455,0.08097391600313131 +18,223.1157480108247,0.0,0.0,56.47138765923167,0.07815570800448768 +19,229.29047568345513,0.0,0.0,58.03423314728023,0.08031866699457169 +20,226.68384051120094,0.0,0.0,57.37448453423561,0.07940558300470002 +21,229.93933968226798,0.0,0.0,58.19846292819781,0.0805459589973907 +22,229.9903656561629,0.0,0.0,58.211377783281776,0.08056383299845038 +23,229.92208836236088,0.0,0.0,58.1940965579044,0.08053991599444998 +24,234.35815052439594,0.0,0.0,59.31687963469814,0.08209383400389925 +25,232.28523543551043,0.0,0.0,58.79221746892648,0.08136770800047088 +26,224.9047315536089,0.0,0.0,56.92418574301216,0.07878237499971874 +27,229.36006045625183,0.0,0.0,58.051845300231406,0.08034304199827602 +28,227.33044351249188,0.0,0.0,57.53814204865611,0.07963208299770486 +29,226.7574704574646,0.0,0.0,57.393120534947585,0.07943137500114972 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2e7d584c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e7a923817 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..255bbbecc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2adff1509 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..41a4026d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..bec208e80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..60821204d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a9169b8d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..395be92e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1d8ddc8ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9da1c3405 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..111b724f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0ac83d88f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6a8781f35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5f4253b6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d77c15b2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1d4b98384 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..cdf642344 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364 +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786 +2,1778.486234577878,1.5993880891754217,0.0,479.54986207109727,0.5181025829951977 +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965 +4,1767.9182652955083,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635 +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698 +6,1776.3588275952675,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941 +7,1769.0324619649873,1.5908863358186303,0.0,477.00075302295267,0.5153485419941717 +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501 +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905 +10,1781.6853587261821,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195 +11,1782.0121818251403,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831 +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797 +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205 +14,1808.8365189834237,1.6266820217555849,0.0,487.73349285638284,0.5269441249984084 +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777 +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378 +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959 +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474 +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329 +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545 +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641 +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807 +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364 +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073 +25,1771.4579433126605,1.5930675649462802,0.0,477.6547582230597,0.516055125001003 +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122 +27,1771.2442582749284,1.5928753985423243,0.0,477.59714032960693,0.5159928749999381 +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222 +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2add33115 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,242.90782385251902,0.8766974823241211,0.0,55.38849450826323,0.07476899999892339 +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.07782195899926592 +2,258.8651385625255,0.9342902655002209,0.0,59.02712427392467,0.07968079100101022 +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.08172595799987903 +4,241.39105099810254,0.8712231796786377,0.0,55.04263588755393,0.07430212500185007 +5,268.08165313176636,0.9675543036464885,0.0,61.12869868395136,0.08251770900096744 +6,261.2141409213791,0.9427682322504015,0.0,59.562750101820015,0.08040383299521636 +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.07957125000393717 +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.07769662499777041 +9,262.6748723911695,0.9480402715845251,0.0,59.89583001546517,0.08085345799918287 +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.07481283300148789 +11,259.4128304085643,0.9362669826552977,0.0,59.15201043990077,0.07984937499713851 +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.07953200000338256 +13,262.3333479240832,0.9468076491201767,0.0,59.81795468905688,0.08074833399587078 +14,263.7812174805347,0.9520332675244871,0.0,60.148101794672066,0.0811939999985043 +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.08047583399456926 +16,260.33751362128316,0.9396043286150979,0.0,59.36285919000386,0.08013399999617832 +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235 +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179 +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.08066216699808137 +20,259.3887374833051,0.9361800270085773,0.0,59.14651670636333,0.07984195899916813 +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.07986608300416265 +22,263.0187002361503,0.9492812073488283,0.0,59.97423056428847,0.0809592910009087 +23,262.90255644081475,0.9488620237616413,0.0,59.94774714408369,0.080923540997901 +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067 +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.07963804199971491 +26,258.61634070403085,0.9333923098366671,0.0,58.970392717895145,0.07960420900053577 +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639 +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.07949958399694879 +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.08026075000088895 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ed65081e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6af6006e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..004a7d1af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d22801107 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ebe24a6f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ba1faeac5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f10c62357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8aacc53b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9006623b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..68197e3f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cad9ba342 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b88207936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ac420bf0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2ad8a2d14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..69ba5a152 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9d36974e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b945ce935 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..cdf642344 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364 +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786 +2,1778.486234577878,1.5993880891754217,0.0,479.54986207109727,0.5181025829951977 +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965 +4,1767.9182652955083,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635 +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698 +6,1776.3588275952675,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941 +7,1769.0324619649873,1.5908863358186303,0.0,477.00075302295267,0.5153485419941717 +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501 +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905 +10,1781.6853587261821,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195 +11,1782.0121818251403,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831 +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797 +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205 +14,1808.8365189834237,1.6266820217555849,0.0,487.73349285638284,0.5269441249984084 +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777 +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378 +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959 +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474 +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329 +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545 +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641 +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807 +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364 +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073 +25,1771.4579433126605,1.5930675649462802,0.0,477.6547582230597,0.516055125001003 +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122 +27,1771.2442582749284,1.5928753985423243,0.0,477.59714032960693,0.5159928749999381 +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222 +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2add33115 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,242.90782385251902,0.8766974823241211,0.0,55.38849450826323,0.07476899999892339 +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.07782195899926592 +2,258.8651385625255,0.9342902655002209,0.0,59.02712427392467,0.07968079100101022 +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.08172595799987903 +4,241.39105099810254,0.8712231796786377,0.0,55.04263588755393,0.07430212500185007 +5,268.08165313176636,0.9675543036464885,0.0,61.12869868395136,0.08251770900096744 +6,261.2141409213791,0.9427682322504015,0.0,59.562750101820015,0.08040383299521636 +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.07957125000393717 +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.07769662499777041 +9,262.6748723911695,0.9480402715845251,0.0,59.89583001546517,0.08085345799918287 +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.07481283300148789 +11,259.4128304085643,0.9362669826552977,0.0,59.15201043990077,0.07984937499713851 +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.07953200000338256 +13,262.3333479240832,0.9468076491201767,0.0,59.81795468905688,0.08074833399587078 +14,263.7812174805347,0.9520332675244871,0.0,60.148101794672066,0.0811939999985043 +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.08047583399456926 +16,260.33751362128316,0.9396043286150979,0.0,59.36285919000386,0.08013399999617832 +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235 +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179 +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.08066216699808137 +20,259.3887374833051,0.9361800270085773,0.0,59.14651670636333,0.07984195899916813 +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.07986608300416265 +22,263.0187002361503,0.9492812073488283,0.0,59.97423056428847,0.0809592910009087 +23,262.90255644081475,0.9488620237616413,0.0,59.94774714408369,0.080923540997901 +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067 +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.07963804199971491 +26,258.61634070403085,0.9333923098366671,0.0,58.970392717895145,0.07960420900053577 +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639 +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.07949958399694879 +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.08026075000088895 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ed65081e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6af6006e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..004a7d1af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d22801107 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ebe24a6f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ba1faeac5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f10c62357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8aacc53b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9006623b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..68197e3f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cad9ba342 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b88207936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ac420bf0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2ad8a2d14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..69ba5a152 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9d36974e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b945ce935 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..651d57af0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839 +1,1753.2505788590775,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426 +2,1752.8381169148636,0.8314540247964403,0.0,476.38989804736843,0.5165165830039768 +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984 +4,1765.1143769503167,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311 +5,1756.9934111913137,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252 +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978 +7,1763.462414839216,0.8364936318112554,0.0,479.27739128257684,0.5196472919997177 +8,1753.3060095523142,0.8316759684048242,0.0,476.51706285722804,0.5166544590028934 +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468 +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776 +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499 +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328 +13,1773.3545454320447,0.841185937230592,0.0,481.96589459563995,0.5225622500001919 +14,1776.3548905408898,0.8426091428263935,0.0,482.78133447381043,0.523446375002095 +15,1744.0009641467575,0.827262145257835,0.0,473.98811874692916,0.5139124999986961 +16,1748.8014619995813,0.8295392484439423,0.0,475.29280778844117,0.5153270839946344 +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871 +18,1750.5782771651313,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152 +19,1747.6397256783087,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122 +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235 +21,1752.5626705211125,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282 +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452 +23,1783.0733219996503,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041 +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799 +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868 +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653 +27,1752.178208974687,0.8311409992480111,0.0,476.21054692914043,0.5163221250040806 +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269 +29,1752.354532351862,0.831224637765569,0.0,476.25846845416044,0.5163740829957533 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..7cc40603c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.52679852308862,0.8392357072842789,0.0,59.082193792813236,0.08016000000498025 +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229 +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.08047962500131689 +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.08066895800584462 +4,247.65389493149502,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214 +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083007 +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.07973891699657543 +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.08035133300290909 +8,252.12402945511562,0.861785717306247,0.0,60.66971449835979,0.08231387499836273 +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204 +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.08081154200044693 +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.08079587500105845 +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.08058112500293646 +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.07597374999750173 +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.07502400000521448 +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702 +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.08011424999858718 +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.08338854199973866 +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879 +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.08078404200205114 +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.08012579200294567 +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.08013820800260874 +22,242.797444696174,0.8299064967739063,0.0,58.425417372883004,0.0792689160007285 +23,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.08039524999912828 +24,248.27937873327465,0.8486443079480266,0.0,59.74455927954107,0.08105866699770559 +25,247.81495449698696,0.8470568584119051,0.0,59.632802832198124,0.08090704099595314 +26,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.08250966599734966 +27,248.93357471888788,0.8508804167312274,0.0,59.901981337878404,0.08127224999770988 +28,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.07965975000115577 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f34bea49f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..265f4a7d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..03057fba7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..99beb1acd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..424441b3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8088afac5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7c46d4f23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f21c50cbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b19b7f558 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4148767bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f16d14537 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f295042e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fa2342c29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b26b94c8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9d0783a3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b8b8800b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..521fe30e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..651d57af0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839 +1,1753.2505788590775,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426 +2,1752.8381169148636,0.8314540247964403,0.0,476.38989804736843,0.5165165830039768 +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984 +4,1765.1143769503167,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311 +5,1756.9934111913137,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252 +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978 +7,1763.462414839216,0.8364936318112554,0.0,479.27739128257684,0.5196472919997177 +8,1753.3060095523142,0.8316759684048242,0.0,476.51706285722804,0.5166544590028934 +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468 +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776 +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499 +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328 +13,1773.3545454320447,0.841185937230592,0.0,481.96589459563995,0.5225622500001919 +14,1776.3548905408898,0.8426091428263935,0.0,482.78133447381043,0.523446375002095 +15,1744.0009641467575,0.827262145257835,0.0,473.98811874692916,0.5139124999986961 +16,1748.8014619995813,0.8295392484439423,0.0,475.29280778844117,0.5153270839946344 +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871 +18,1750.5782771651313,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152 +19,1747.6397256783087,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122 +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235 +21,1752.5626705211125,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282 +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452 +23,1783.0733219996503,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041 +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799 +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868 +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653 +27,1752.178208974687,0.8311409992480111,0.0,476.21054692914043,0.5163221250040806 +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269 +29,1752.354532351862,0.831224637765569,0.0,476.25846845416044,0.5163740829957533 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..496841f24 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.52679852308862,0.8392357072842789,0.0,59.082193792813236,0.08016000000498025 +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229 +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.08047962500131689 +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.08066895800584462 +4,247.65389493149502,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214 +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083007 +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.07973891699657543 +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.08035133300290909 +8,252.12402945511562,0.861785717306247,0.0,60.66971449835979,0.08231387499836273 +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204 +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.08081154200044693 +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.08079587500105845 +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.08058112500293646 +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.07597374999750173 +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.07502400000521448 +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702 +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.08011424999858718 +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.08338854199973866 +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879 +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.08078404200205114 +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.08012579200294567 +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.08013820800260874 +22,198.5005478535641,0.6784951731390624,0.0,47.76606018898999,0.06480679100059206 +23,242.797444696174,0.8299064967739063,0.0,58.425417372883004,0.0792689160007285 +24,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.08039524999912828 +25,248.27937873327465,0.8486443079480266,0.0,59.74455927954107,0.08105866699770559 +26,247.81495449698696,0.8470568584119051,0.0,59.632802832198124,0.08090704099595314 +27,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.08250966599734966 +28,248.93357471888788,0.8508804167312274,0.0,59.901981337878404,0.08127224999770988 +29,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.07965975000115577 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..325008ac4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..27896aeaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0374f54ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..05a7a2f61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d908cfd7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ff59dab9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..08ff8135e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e764c71ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..01b5f471b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ec49a1d9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b87af806a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ecf957e54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dc68a6010 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c029b9e11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..97b1fc532 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8e6613378 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c3f893e43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..920a81206 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1756.762206346076,1.7661260064937125,0.0,477.9203619836382,0.5165056249970803 +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214 +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192 +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793 +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873 +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208 +6,1765.817171014456,1.7752292354514723,0.0,480.3837300914154,0.5191678749979474 +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429 +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212 +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823 +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864 +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192 +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042 +13,1755.3462952571253,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376 +14,1758.3116163303305,1.7676836750603677,0.0,478.34187297576966,0.5169611669989536 +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556 +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374 +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569 +18,1756.8116672700412,1.7661757310516548,0.0,477.93381763665724,0.5165201670024544 +19,1752.963015612889,1.7623065655168557,0.0,476.88680684231593,0.5153886249972857 +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859 +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751 +22,1757.2164154209179,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844 +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327 +24,1755.7857633216242,1.765144358884768,0.0,477.65472443632723,0.5162185410008533 +25,1762.7288405170839,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231 +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085 +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424 +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666 +29,1755.9440640749146,1.7653035034042845,0.0,477.69778954385373,0.5162650830025086 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c47f85865 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,227.28230374476362,0.0,0.0,57.07730787818506,0.07947941699967487 +1,228.76466537890357,0.0,0.0,57.449572722321946,0.07999779100646265 +2,229.7965197297261,0.0,0.0,57.708701864789106,0.08035862500400981 +3,229.99490705767593,0.0,0.0,57.75852278973555,0.08042800000112038 +4,229.18670205564752,0.0,0.0,57.55555861272128,0.08014537499548169 +5,231.26160626838956,0.0,0.0,58.07662842157634,0.08087095800146926 +6,227.8381457495341,0.0,0.0,57.21689624346994,0.07967379200272262 +7,220.54535576053524,0.0,0.0,55.385461007929194,0.07712354199611582 +8,228.68662298628686,0.0,0.0,57.42997396959223,0.0799704999953974 +9,229.87968653815292,0.0,0.0,57.72958750987283,0.08038770799612394 +10,227.81550598444142,0.0,0.0,57.21121072893056,0.07966587499686284 +11,227.62605500780717,0.0,0.0,57.16363398607371,0.07959962499444373 +12,229.86336373993498,0.0,0.0,57.72548837252703,0.08038200000009965 +13,231.66171813641742,0.0,0.0,58.17710834412581,0.08101087500108406 +14,230.9662314522403,0.0,0.0,58.002451070137006,0.08076766699377913 +15,231.48180120147975,0.0,0.0,58.131925881088705,0.08094795900251484 +16,229.71871471960463,0.0,0.0,57.68916272582404,0.08033141700434498 +17,231.9388627509407,0.0,0.0,58.246707552816034,0.08110779100388754 +18,221.67276777003045,0.0,0.0,55.668587504410795,0.07751779200043529 +19,231.92921431455932,0.0,0.0,58.24428454510795,0.08110441699682269 +20,229.2441321614661,0.0,0.0,57.569981010669885,0.08016545799910091 +21,228.92075580272544,0.0,0.0,57.48877164379768,0.08005237500037765 +22,229.27058667095508,0.0,0.0,57.57662452034042,0.08017470900085755 +23,230.96611135654717,0.0,0.0,58.002420910556886,0.08076762499695178 +24,231.36241133068287,0.0,0.0,58.1019435538211,0.08090620899747591 +25,229.37019641490616,0.0,0.0,57.601639472800365,0.08020954200037522 +26,230.27086205486523,0.0,0.0,57.82782325033272,0.08052450000104727 +27,228.54089874330734,0.0,0.0,57.39337830268453,0.07991954099998111 +28,229.6250615930292,0.0,0.0,57.66564365614186,0.08029866700235289 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..bf5b6c93c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..57b327357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6bffb5f81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b7a2355c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f8fab94de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..173a286ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e8a9ed681 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3bb04e70c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..15fa7e6bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..de99e9ce0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a21b65271 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e4ce4f2d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..891c221f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2c50e9ac7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e6bf96527 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..14c55623a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..53ca074cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..920a81206 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1756.762206346076,1.7661260064937125,0.0,477.9203619836382,0.5165056249970803 +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214 +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192 +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793 +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873 +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208 +6,1765.817171014456,1.7752292354514723,0.0,480.3837300914154,0.5191678749979474 +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429 +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212 +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823 +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864 +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192 +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042 +13,1755.3462952571253,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376 +14,1758.3116163303305,1.7676836750603677,0.0,478.34187297576966,0.5169611669989536 +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556 +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374 +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569 +18,1756.8116672700412,1.7661757310516548,0.0,477.93381763665724,0.5165201670024544 +19,1752.963015612889,1.7623065655168557,0.0,476.88680684231593,0.5153886249972857 +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859 +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751 +22,1757.2164154209179,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844 +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327 +24,1755.7857633216242,1.765144358884768,0.0,477.65472443632723,0.5162185410008533 +25,1762.7288405170839,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231 +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085 +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424 +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666 +29,1755.9440640749146,1.7653035034042845,0.0,477.69778954385373,0.5162650830025086 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d8e0df6b5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,227.28230374476362,0.0,0.0,57.07730787818506,0.07947941699967487 +1,228.76466537890357,0.0,0.0,57.449572722321946,0.07999779100646265 +2,229.7965197297261,0.0,0.0,57.708701864789106,0.08035862500400981 +3,229.99490705767593,0.0,0.0,57.75852278973555,0.08042800000112038 +4,229.18670205564752,0.0,0.0,57.55555861272128,0.08014537499548169 +5,231.26160626838956,0.0,0.0,58.07662842157634,0.08087095800146926 +6,227.8381457495341,0.0,0.0,57.21689624346994,0.07967379200272262 +7,220.54535576053524,0.0,0.0,55.385461007929194,0.07712354199611582 +8,228.68662298628686,0.0,0.0,57.42997396959223,0.0799704999953974 +9,229.87968653815292,0.0,0.0,57.72958750987283,0.08038770799612394 +10,227.81550598444142,0.0,0.0,57.21121072893056,0.07966587499686284 +11,227.62605500780717,0.0,0.0,57.16363398607371,0.07959962499444373 +12,229.86336373993498,0.0,0.0,57.72548837252703,0.08038200000009965 +13,231.66171813641742,0.0,0.0,58.17710834412581,0.08101087500108406 +14,230.9662314522403,0.0,0.0,58.002451070137006,0.08076766699377913 +15,231.48180120147975,0.0,0.0,58.131925881088705,0.08094795900251484 +16,229.71871471960463,0.0,0.0,57.68916272582404,0.08033141700434498 +17,231.9388627509407,0.0,0.0,58.246707552816034,0.08110779100388754 +18,221.67276777003045,0.0,0.0,55.668587504410795,0.07751779200043529 +19,231.92921431455932,0.0,0.0,58.24428454510795,0.08110441699682269 +20,229.2441321614661,0.0,0.0,57.569981010669885,0.08016545799910091 +21,228.92075580272544,0.0,0.0,57.48877164379768,0.08005237500037765 +22,229.27058667095508,0.0,0.0,57.57662452034042,0.08017470900085755 +23,230.96611135654717,0.0,0.0,58.002420910556886,0.08076762499695178 +24,215.5182335244439,0.0,0.0,54.12300194761942,0.07536558399442583 +25,231.36241133068287,0.0,0.0,58.1019435538211,0.08090620899747591 +26,229.37019641490616,0.0,0.0,57.601639472800365,0.08020954200037522 +27,230.27086205486523,0.0,0.0,57.82782325033272,0.08052450000104727 +28,228.54089874330734,0.0,0.0,57.39337830268453,0.07991954099998111 +29,229.6250615930292,0.0,0.0,57.66564365614186,0.08029866700235289 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1069c5caa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ce9b2c59d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..fcfc1342f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7820220f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5c95ac3ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3dcb4c082 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..721713621 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3bb04e70c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ee4728909 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5455526ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..57b98d31a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8a37218c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..08ee6538d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1f79d3c79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d88ffc70c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..14c55623a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..bf657d7c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..fbc19a61e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646 +1,1779.6926984637155,2.2989141117641974,0.0,482.0722939582054,0.5188747089996468 +2,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378 +3,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604 +4,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856 +5,1776.1563189074313,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351 +6,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192 +7,1773.7140800868076,2.2911912446830485,0.0,480.45284230897147,0.5171316249980009 +8,1782.3990367731815,2.302410018296943,0.0,482.8053703585286,0.5196637499975623 +9,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193 +10,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539 +11,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419 +12,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821 +13,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162 +14,1772.8533137245881,2.29007935163615,0.0,480.2196831713544,0.5168806660003611 +15,1770.9595755799235,2.2876331195711908,0.0,479.70671894312403,0.5163285410017124 +16,1786.4787687097225,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075 +17,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552 +18,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846 +19,1791.2989321099121,2.3139064384376202,0.0,485.21611967759316,0.5222585410010652 +20,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781 +21,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464 +22,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138 +23,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602 +24,1774.9085456819907,2.292734192976961,0.0,480.77639185773404,0.5174798750012997 +25,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214 +26,1779.5730804224474,2.298759595423635,0.0,482.03989255339957,0.5188398340033018 +27,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901 +28,1792.9830205511932,2.3160818559613663,0.0,485.67229527398564,0.5227495420040214 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..7634b5d34 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.05692604828158,0.0,0.0,59.22685631305648,0.08036216699838405 +1,252.5636013837425,0.0,0.0,59.34591190800159,0.08052370799850905 +2,255.97155373331972,0.0,0.0,60.14669253837193,0.08161024999571964 +3,253.97385574356483,0.0,0.0,59.6772851959471,0.08097333300247556 +4,252.33189155253675,0.0,0.0,59.2914660925491,0.08044983300351305 +5,255.14612719979553,0.0,0.0,59.952738658728656,0.08134708299621707 +6,244.04078157036597,0.0,0.0,57.34326975734617,0.07780641599674709 +7,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253 +8,252.32235341535022,0.0,0.0,59.289224877084415,0.08044679200247629 +9,251.56057298405543,0.0,0.0,59.110226184789994,0.08020391700119944 +10,251.38231558091536,0.0,0.0,59.06834030699232,0.08014708400150994 +11,236.56595209719924,0.0,0.0,55.58687822265356,0.07542325000395067 +12,257.3785429826992,0.0,0.0,60.477298609839494,0.08205883399932645 +13,255.38228149183257,0.0,0.0,60.00822880748779,0.08142237499851035 +14,252.88574631214084,0.0,0.0,59.42160763152467,0.08062641600554343 +15,251.8723956183979,0.0,0.0,59.18349643627208,0.08030333399801748 +16,252.58816970012697,0.0,0.0,59.35168482671154,0.08053154100343818 +17,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807 +18,256.3833495792202,0.0,0.0,60.24345390802693,0.08174154099833686 +19,253.93595723964492,0.0,0.0,59.668380028049775,0.08096124999428866 +20,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426 +21,253.27297696815177,0.0,0.0,59.51259681711514,0.08074987500003772 +22,250.3815046876699,0.0,0.0,58.83317564042237,0.07982800000172574 +23,252.92717650013054,0.0,0.0,59.43134265380538,0.08063962500455091 +24,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173 +25,252.25818664902565,0.0,0.0,59.27414734714401,0.08042633400327759 +26,244.11200864679842,0.0,0.0,57.360006277495025,0.07782912500260863 +27,253.4064073264722,0.0,0.0,59.54394949916176,0.08079241599625675 +28,252.61770622229048,0.0,0.0,59.35862514524034,0.08054095799889183 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..af07d979e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9443eff71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1bfe36e9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b27f5e25d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a854ead15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..32f568c08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..be92039d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..af014ce35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fbecc6870 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e6c095c18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6db10aced Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4c693b0fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e9b15a222 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..08285ad34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a4eb68e4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..848d1c890 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..974eb6354 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..8ade6be15 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646 +1,1779.6926984637155,2.2989141117641974,0.0,482.0722939582054,0.5188747089996468 +2,1815.206967652506,2.3447895905351,0.0,491.69218239786034,0.5292289999997593 +3,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378 +4,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604 +5,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856 +6,1776.1563189074313,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351 +7,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192 +8,1773.7140800868076,2.2911912446830485,0.0,480.45284230897147,0.5171316249980009 +9,1782.3990367731815,2.302410018296943,0.0,482.8053703585286,0.5196637499975623 +10,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193 +11,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539 +12,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419 +13,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821 +14,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162 +15,1772.8533137245881,2.29007935163615,0.0,480.2196831713544,0.5168806660003611 +16,1770.9595755799235,2.2876331195711908,0.0,479.70671894312403,0.5163285410017124 +17,1786.4787687097225,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075 +18,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552 +19,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846 +20,1791.2989321099121,2.3139064384376202,0.0,485.21611967759316,0.5222585410010652 +21,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781 +22,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464 +23,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138 +24,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602 +25,1774.9085456819907,2.292734192976961,0.0,480.77639185773404,0.5174798750012997 +26,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214 +27,1779.5730804224474,2.298759595423635,0.0,482.03989255339957,0.5188398340033018 +28,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901 +29,1792.9830205511932,2.3160818559613663,0.0,485.67229527398564,0.5227495420040214 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ae8b52b20 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.05692604828158,0.0,0.0,59.22685631305648,0.08036216699838405 +1,252.5636013837425,0.0,0.0,59.34591190800159,0.08052370799850905 +2,255.97155373331972,0.0,0.0,60.14669253837193,0.08161024999571964 +3,234.60118746361675,0.0,0.0,55.1252093668655,0.07479683300334727 +4,253.97385574356483,0.0,0.0,59.6772851959471,0.08097333300247556 +5,252.33189155253675,0.0,0.0,59.2914660925491,0.08044983300351305 +6,255.14612719979553,0.0,0.0,59.952738658728656,0.08134708299621707 +7,244.04078157036597,0.0,0.0,57.34326975734617,0.07780641599674709 +8,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253 +9,252.32235341535022,0.0,0.0,59.289224877084415,0.08044679200247629 +10,251.56057298405543,0.0,0.0,59.110226184789994,0.08020391700119944 +11,251.38231558091536,0.0,0.0,59.06834030699232,0.08014708400150994 +12,236.56595209719924,0.0,0.0,55.58687822265356,0.07542325000395067 +13,257.3785429826992,0.0,0.0,60.477298609839494,0.08205883399932645 +14,255.38228149183257,0.0,0.0,60.00822880748779,0.08142237499851035 +15,252.88574631214084,0.0,0.0,59.42160763152467,0.08062641600554343 +16,251.8723956183979,0.0,0.0,59.18349643627208,0.08030333399801748 +17,252.58816970012697,0.0,0.0,59.35168482671154,0.08053154100343818 +18,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807 +19,256.3833495792202,0.0,0.0,60.24345390802693,0.08174154099833686 +20,253.93595723964492,0.0,0.0,59.668380028049775,0.08096124999428866 +21,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426 +22,253.27297696815177,0.0,0.0,59.51259681711514,0.08074987500003772 +23,250.3815046876699,0.0,0.0,58.83317564042237,0.07982800000172574 +24,252.92717650013054,0.0,0.0,59.43134265380538,0.08063962500455091 +25,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173 +26,252.25818664902565,0.0,0.0,59.27414734714401,0.08042633400327759 +27,244.11200864679842,0.0,0.0,57.360006277495025,0.07782912500260863 +28,253.4064073264722,0.0,0.0,59.54394949916176,0.08079241599625675 +29,252.61770622229048,0.0,0.0,59.35862514524034,0.08054095799889183 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..877b26645 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f1b56d9dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..21415f456 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..85eaf7404 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..cf4efaf2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e6e46a533 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7a08bf19f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fa231d1d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..193d59caa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3662b35f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7af03e7e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cc3e092e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..725af6ac6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e087ba59c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e3d350b73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c13f33215 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2b1be3ce2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..53318e861 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1750.3108252154523,2.609757505147961,0.0,479.15816963107625,0.5184650419978425 +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429 +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149 +3,1752.016519404531,2.6123007381253878,0.0,479.625113726842,0.5189702910065535 +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639 +5,1742.4832686743487,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369 +6,1745.1907786743113,2.602123386855969,0.0,477.7565259380042,0.5169484170037322 +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536 +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203 +9,1735.1488806738735,2.587150664128651,0.0,475.007495653672,0.5139738750003744 +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756 +11,1734.3902782445693,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704 +12,1740.4614946593651,2.59507190532813,0.0,476.46185584877117,0.5155475409992505 +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972 +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954 +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097 +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292 +17,1746.9815770882105,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611 +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266 +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417 +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639 +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297 +22,1745.2933230781055,2.6022762831436204,0.0,477.78459808845884,0.5169787920021918 +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218 +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297 +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044 +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646 +27,1744.9471466366679,2.6017601253543114,0.0,477.6898301948601,0.5168762499961304 +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994 +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f7db2faa1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,242.19892779002438,0.0,0.0,58.23108794513989,0.07946120799897471 +1,242.4689300777569,0.0,0.0,58.29600370304932,0.07954979100031778 +2,245.18915818174239,0.0,0.0,58.950019158028326,0.08044224999321159 +3,244.62667452650356,0.0,0.0,58.81478307133387,0.08025770899985218 +4,230.49772748177529,0.0,0.0,55.41780701763689,0.07562224999855971 +5,248.56876944702213,0.0,0.0,59.76256792777146,0.0815510410029674 +6,245.56152502051543,0.0,0.0,59.03954608671583,0.08056441700318828 +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579 +8,245.84270436380186,0.0,0.0,59.107149107161334,0.08065666699985741 +9,247.49612431036982,0.0,0.0,59.50467540175467,0.08119912500114879 +10,245.79812410417782,0.0,0.0,59.09643082264013,0.08064204100082861 +11,243.7852944737544,0.0,0.0,58.61249284530364,0.07998166700417642 +12,241.62857108664963,0.0,0.0,58.0939589674959,0.07927408399700653 +13,248.07080308887888,0.0,0.0,59.642843521642384,0.08138766699994449 +14,245.79787110638867,0.0,0.0,59.09636999521763,0.08064195799670415 +15,246.7866989049236,0.0,0.0,59.33411059557655,0.08096637500420911 +16,243.67810491245837,0.0,0.0,58.586721613252436,0.0799464999945485 +17,244.35603522014418,0.0,0.0,58.749714157140794,0.0801689170039026 +18,240.25797949315154,0.0,0.0,57.764432159321714,0.07882441700348863 +19,243.21099669998037,0.0,0.0,58.47441632912548,0.07979325000633253 +20,261.55407699968373,0.0,0.0,62.884582517155906,0.08581129200319992 +21,239.347894129501,0.0,0.0,57.54562334240464,0.07852583400381263 +22,245.55783996400805,0.0,0.0,59.03866010075577,0.08056320800096728 +23,224.7037046013891,0.0,0.0,54.02476924087008,0.07372133300668793 +24,245.09403272066803,0.0,0.0,58.92714845773173,0.08041104100266239 +25,245.82682726665854,0.0,0.0,59.10333182915559,0.08065145800355822 +26,246.27298345658295,0.0,0.0,59.210599687728774,0.08079783400171436 +27,229.8491343612716,0.0,0.0,55.26186791672805,0.07540945800428744 +28,244.80002731204428,0.0,0.0,58.85646170877651,0.08031458299956284 +29,244.9462070527816,0.0,0.0,58.89160722084109,0.08036254200123949 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ef62e7f71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f4cdb1942 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0671cd548 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..715591201 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..357f9eb56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f001432d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..dca1b7b4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4805edc43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a8156706e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..97682e7e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3f27095c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..609584005 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f1084a7cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d01b91ce7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ed51c80e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f29121ecc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..85b4a659b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..53318e861 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1750.3108252154523,2.609757505147961,0.0,479.15816963107625,0.5184650419978425 +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429 +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149 +3,1752.016519404531,2.6123007381253878,0.0,479.625113726842,0.5189702910065535 +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639 +5,1742.4832686743487,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369 +6,1745.1907786743113,2.602123386855969,0.0,477.7565259380042,0.5169484170037322 +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536 +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203 +9,1735.1488806738735,2.587150664128651,0.0,475.007495653672,0.5139738750003744 +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756 +11,1734.3902782445693,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704 +12,1740.4614946593651,2.59507190532813,0.0,476.46185584877117,0.5155475409992505 +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972 +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954 +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097 +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292 +17,1746.9815770882105,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611 +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266 +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417 +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639 +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297 +22,1745.2933230781055,2.6022762831436204,0.0,477.78459808845884,0.5169787920021918 +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218 +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297 +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044 +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646 +27,1744.9471466366679,2.6017601253543114,0.0,477.6898301948601,0.5168762499961304 +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994 +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f7db2faa1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,242.19892779002438,0.0,0.0,58.23108794513989,0.07946120799897471 +1,242.4689300777569,0.0,0.0,58.29600370304932,0.07954979100031778 +2,245.18915818174239,0.0,0.0,58.950019158028326,0.08044224999321159 +3,244.62667452650356,0.0,0.0,58.81478307133387,0.08025770899985218 +4,230.49772748177529,0.0,0.0,55.41780701763689,0.07562224999855971 +5,248.56876944702213,0.0,0.0,59.76256792777146,0.0815510410029674 +6,245.56152502051543,0.0,0.0,59.03954608671583,0.08056441700318828 +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579 +8,245.84270436380186,0.0,0.0,59.107149107161334,0.08065666699985741 +9,247.49612431036982,0.0,0.0,59.50467540175467,0.08119912500114879 +10,245.79812410417782,0.0,0.0,59.09643082264013,0.08064204100082861 +11,243.7852944737544,0.0,0.0,58.61249284530364,0.07998166700417642 +12,241.62857108664963,0.0,0.0,58.0939589674959,0.07927408399700653 +13,248.07080308887888,0.0,0.0,59.642843521642384,0.08138766699994449 +14,245.79787110638867,0.0,0.0,59.09636999521763,0.08064195799670415 +15,246.7866989049236,0.0,0.0,59.33411059557655,0.08096637500420911 +16,243.67810491245837,0.0,0.0,58.586721613252436,0.0799464999945485 +17,244.35603522014418,0.0,0.0,58.749714157140794,0.0801689170039026 +18,240.25797949315154,0.0,0.0,57.764432159321714,0.07882441700348863 +19,243.21099669998037,0.0,0.0,58.47441632912548,0.07979325000633253 +20,261.55407699968373,0.0,0.0,62.884582517155906,0.08581129200319992 +21,239.347894129501,0.0,0.0,57.54562334240464,0.07852583400381263 +22,245.55783996400805,0.0,0.0,59.03866010075577,0.08056320800096728 +23,224.7037046013891,0.0,0.0,54.02476924087008,0.07372133300668793 +24,245.09403272066803,0.0,0.0,58.92714845773173,0.08041104100266239 +25,245.82682726665854,0.0,0.0,59.10333182915559,0.08065145800355822 +26,246.27298345658295,0.0,0.0,59.210599687728774,0.08079783400171436 +27,229.8491343612716,0.0,0.0,55.26186791672805,0.07540945800428744 +28,244.80002731204428,0.0,0.0,58.85646170877651,0.08031458299956284 +29,244.9462070527816,0.0,0.0,58.89160722084109,0.08036254200123949 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ef62e7f71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f4cdb1942 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0671cd548 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..715591201 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..357f9eb56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f001432d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..dca1b7b4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4805edc43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a8156706e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..97682e7e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3f27095c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..609584005 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f1084a7cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d01b91ce7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ed51c80e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f29121ecc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..85b4a659b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f20cf4747 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297 +1,1756.5603036838259,1.7731543519587607,0.0,478.85204225633476,0.5189257919992087 +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679 +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372 +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144 +5,1746.06400151769,1.7625588922832083,0.0,475.99066840093514,0.5158249579981202 +6,1754.1136576433805,1.770684592699588,0.0,478.1850674586642,0.5182029999996303 +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129 +8,1745.2030860378886,1.7616898438215773,0.0,475.7559761248724,0.5155706250006915 +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393 +10,1747.4051663255143,1.7639127269398953,0.0,476.35628039039096,0.5162211670030956 +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424 +12,1746.5747123718454,1.7630744277713661,0.0,476.1298921639917,0.5159758329973556 +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304 +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058 +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449 +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621 +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053 +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674 +19,1748.336743535644,1.7648531046661042,0.0,476.61023560539525,0.5164963749994058 +20,1753.3933581542744,1.7699574886137541,0.0,477.988708198654,0.517990207998082 +21,1757.4467487928957,1.7740491712254967,0.0,479.09369410850064,0.5191876669996418 +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899 +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545 +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244 +25,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401 +26,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632 +27,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313 +28,1747.8861163258769,1.7643982204264719,0.0,476.48739111253,0.5163632500043605 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..535d2f88a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,229.97339319686975,0.0,0.0,56.76642090692848,0.07923933299753116 +1,226.07553485511934,0.0,0.0,55.804277138088366,0.07789629200124182 +2,231.8659096318397,0.0,0.0,57.233567923491464,0.07989141599682625 +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506 +4,238.15693061363416,0.0,0.0,58.78643775779073,0.08205904199712677 +5,232.81398613818934,0.0,0.0,57.467590256524325,0.0802180840037181 +6,232.35167883779474,0.0,0.0,57.353474747605084,0.08005879200209165 +7,235.3009818299224,0.0,0.0,58.081477986179124,0.08107500000187429 +8,232.87529353460332,0.0,0.0,57.48272331788053,0.08023920800042106 +9,234.6029875368596,0.0,0.0,57.909185716713324,0.08083449999685399 +10,233.90293845796447,0.0,0.0,57.73638624580215,0.08059329199750209 +11,236.10309480251146,0.0,0.0,58.27947081475786,0.08135137500357814 +12,228.53955331278615,0.0,0.0,56.41249318841474,0.07874529099353822 +13,236.0381566565893,0.0,0.0,58.26344154253167,0.08132900000055088 +14,233.2262264846764,0.0,0.0,57.56934728457961,0.08036012500087963 +15,223.59820949155468,0.0,0.0,55.1927764233464,0.07704270799877122 +16,232.78762196853413,0.0,0.0,57.46108254912954,0.08020899999974063 +17,234.0781596831433,0.0,0.0,57.77963769190232,0.08065366599475965 +18,234.60528613661103,0.0,0.0,57.90975310096232,0.08083529199939221 +19,232.4469688391939,0.0,0.0,57.37699604392746,0.08009162500093225 +20,236.41351504810697,0.0,0.0,58.35609466273675,0.08145833299931837 +21,216.02874452302436,0.0,0.0,53.32433665094193,0.07443458300258499 +22,232.45519093886716,0.0,0.0,57.37902557945026,0.08009445799689274 +23,233.9956889809203,0.0,0.0,57.75928069960073,0.08062524999695597 +24,232.58954252325486,0.0,0.0,57.41218880099883,0.0801407500039204 +25,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317 +26,229.88862389489532,0.0,0.0,56.74549653037789,0.07921012499718927 +27,233.92301053494205,0.0,0.0,57.74134081882622,0.08060020800621714 +28,234.3584718660642,0.0,0.0,57.848829693376196,0.0807502499956172 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b1cdb92c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e0caa9d89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..87792a69b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..67f83d923 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..758542d20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f323e9540 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d42843179 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b13ce5c49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3dab34917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a6452c551 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6e555adc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3a498c220 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8ec6ae739 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cf4cc7a63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d975ae01a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..30f8beed8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..48f12825b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..415aca4e0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297 +1,1756.5603036838259,1.7731543519587607,0.0,478.85204225633476,0.5189257919992087 +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679 +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372 +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144 +5,1746.06400151769,1.7625588922832083,0.0,475.99066840093514,0.5158249579981202 +6,1754.1136576433805,1.770684592699588,0.0,478.1850674586642,0.5182029999996303 +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129 +8,1745.2030860378886,1.7616898438215773,0.0,475.7559761248724,0.5155706250006915 +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393 +10,1747.4051663255143,1.7639127269398953,0.0,476.35628039039096,0.5162211670030956 +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424 +12,1746.5747123718454,1.7630744277713661,0.0,476.1298921639917,0.5159758329973556 +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304 +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058 +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449 +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621 +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053 +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674 +19,1748.336743535644,1.7648531046661042,0.0,476.61023560539525,0.5164963749994058 +20,1753.3933581542744,1.7699574886137541,0.0,477.988708198654,0.517990207998082 +21,1757.4467487928957,1.7740491712254967,0.0,479.09369410850064,0.5191876669996418 +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899 +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545 +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244 +25,1770.162052819831,1.7868845954489379,0.0,482.55998518227636,0.522944042000745 +26,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401 +27,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632 +28,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313 +29,1747.8861163258769,1.7643982204264719,0.0,476.48739111253,0.5163632500043605 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f538ea5b7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,229.97339319686975,0.0,0.0,56.76642090692848,0.07923933299753116 +1,226.07553485511934,0.0,0.0,55.804277138088366,0.07789629200124182 +2,231.8659096318397,0.0,0.0,57.233567923491464,0.07989141599682625 +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506 +4,238.15693061363416,0.0,0.0,58.78643775779073,0.08205904199712677 +5,232.81398613818934,0.0,0.0,57.467590256524325,0.0802180840037181 +6,232.35167883779474,0.0,0.0,57.353474747605084,0.08005879200209165 +7,235.3009818299224,0.0,0.0,58.081477986179124,0.08107500000187429 +8,232.87529353460332,0.0,0.0,57.48272331788053,0.08023920800042106 +9,234.6029875368596,0.0,0.0,57.909185716713324,0.08083449999685399 +10,233.90293845796447,0.0,0.0,57.73638624580215,0.08059329199750209 +11,236.10309480251146,0.0,0.0,58.27947081475786,0.08135137500357814 +12,228.53955331278615,0.0,0.0,56.41249318841474,0.07874529099353822 +13,214.85514476600093,0.0,0.0,53.03464636609046,0.0740302089980105 +14,236.0381566565893,0.0,0.0,58.26344154253167,0.08132900000055088 +15,233.2262264846764,0.0,0.0,57.56934728457961,0.08036012500087963 +16,223.59820949155468,0.0,0.0,55.1927764233464,0.07704270799877122 +17,232.78762196853413,0.0,0.0,57.46108254912954,0.08020899999974063 +18,234.0781596831433,0.0,0.0,57.77963769190232,0.08065366599475965 +19,234.60528613661103,0.0,0.0,57.90975310096232,0.08083529199939221 +20,232.4469688391939,0.0,0.0,57.37699604392746,0.08009162500093225 +21,236.41351504810697,0.0,0.0,58.35609466273675,0.08145833299931837 +22,216.02874452302436,0.0,0.0,53.32433665094193,0.07443458300258499 +23,232.45519093886716,0.0,0.0,57.37902557945026,0.08009445799689274 +24,233.9956889809203,0.0,0.0,57.75928069960073,0.08062524999695597 +25,232.58954252325486,0.0,0.0,57.41218880099883,0.0801407500039204 +26,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317 +27,229.88862389489532,0.0,0.0,56.74549653037789,0.07921012499718927 +28,233.92301053494205,0.0,0.0,57.74134081882622,0.08060020800621714 +29,234.3584718660642,0.0,0.0,57.848829693376196,0.0807502499956172 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3e1ea9dd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..266167f3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..245c395fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b91e2d5aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..137c1c097 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..52c10f556 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c7d96d291 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..71081c031 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ad65d4f6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2b071b8ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..87d8fb6a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8a8ef559c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..aee7a4399 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3fea12b78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1252d199b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5886b5a08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ebe49e5e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a6c264b2b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213 +1,1779.2162506886077,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688 +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013 +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128 +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836 +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122 +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858 +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367 +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509 +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752 +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764 +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953 +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438 +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806 +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779 +15,1790.0668889243043,1.6695581795261099,0.0,480.09815010452814,0.5182433750014752 +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756 +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821 +18,1792.1862688524075,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506 +19,1790.008024062706,1.6695032774932437,0.0,480.08236247595715,0.5182263329988928 +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355 +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276 +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134 +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887 +24,1787.3388646459287,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427 +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853 +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772 +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742 +28,1804.8606743706225,1.6833560357128678,0.0,484.0658616295923,0.522526332999405 +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..b9f872625 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.20605579923497,0.0,0.0,58.064741436243395,0.07894224999472499 +1,250.55095440543516,0.0,0.0,59.3304122801399,0.08066300000064075 +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149 +3,249.81764644337736,0.0,0.0,59.156765111960304,0.08042691700393334 +4,249.02622560509047,0.0,0.0,58.969356827150214,0.08017212500271853 +5,248.47074440572842,0.0,0.0,58.83781899824741,0.07999329199810745 +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263 +7,246.38859307336747,0.0,0.0,58.34476600919865,0.07932295899809105 +8,246.47595340441205,0.0,0.0,58.36545291685823,0.07935108400124591 +9,251.11329706391197,0.0,0.0,59.46357490108985,0.08084404200053541 +10,250.43486224262665,0.0,0.0,59.302921680879294,0.08062562499981141 +11,251.25358918047456,0.0,0.0,59.49679604421048,0.08088920799491461 +12,249.02648340531618,0.0,0.0,58.96941787418838,0.08017220799956704 +13,253.20619256589657,0.0,0.0,59.959172107201724,0.0815178340053535 +14,249.58753389863966,0.0,0.0,59.10227451070708,0.0803528339965851 +15,246.30614979515926,0.0,0.0,58.32524345859641,0.07929641700320644 +16,248.74706084391894,0.0,0.0,58.90325067156323,0.08008225000230595 +17,249.45383612969297,0.0,0.0,59.07061490768795,0.08030979100294644 +18,248.40447792783144,0.0,0.0,58.822127110490236,0.07997195800271584 +19,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705 +20,248.96720883475896,0.0,0.0,58.955381668590064,0.08015312499628635 +21,250.81174011459103,0.0,0.0,59.39216628015041,0.08074695800314657 +22,237.7471648094788,0.0,0.0,56.298477649202496,0.07654091600124957 +23,249.37748086472203,0.0,0.0,59.05253399731491,0.08028520899824798 +24,250.11596367984185,0.0,0.0,59.227406569589995,0.08052295800007414 +25,248.8819172109695,0.0,0.0,58.93518463036493,0.08012566599791171 +26,249.33903922826215,0.0,0.0,59.04343102604385,0.08027283300179988 +27,262.4534401956857,0.0,0.0,62.148918363143466,0.08449491600185866 +28,261.2161602290057,0.0,0.0,61.85593073233089,0.08409658299933653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1b80583f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c844f73f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..88093d95b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..10a81659c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..01aac4ee9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a9db5afdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a0c01af56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a2c140054 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e6ef85ded Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..eedb9369e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7eeaa816f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..22eec01fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ac52271fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7cc103cea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e32523ebe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..71c36276d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..08109a1ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a6c264b2b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213 +1,1779.2162506886077,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688 +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013 +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128 +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836 +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122 +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858 +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367 +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509 +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752 +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764 +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953 +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438 +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806 +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779 +15,1790.0668889243043,1.6695581795261099,0.0,480.09815010452814,0.5182433750014752 +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756 +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821 +18,1792.1862688524075,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506 +19,1790.008024062706,1.6695032774932437,0.0,480.08236247595715,0.5182263329988928 +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355 +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276 +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134 +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887 +24,1787.3388646459287,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427 +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853 +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772 +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742 +28,1804.8606743706225,1.6833560357128678,0.0,484.0658616295923,0.522526332999405 +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6b78361db --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.20605579923497,0.0,0.0,58.064741436243395,0.07894224999472499 +1,250.55095440543516,0.0,0.0,59.3304122801399,0.08066300000064075 +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149 +3,249.81764644337736,0.0,0.0,59.156765111960304,0.08042691700393334 +4,249.02622560509047,0.0,0.0,58.969356827150214,0.08017212500271853 +5,248.47074440572842,0.0,0.0,58.83781899824741,0.07999329199810745 +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263 +7,246.38859307336747,0.0,0.0,58.34476600919865,0.07932295899809105 +8,246.47595340441205,0.0,0.0,58.36545291685823,0.07935108400124591 +9,251.11329706391197,0.0,0.0,59.46357490108985,0.08084404200053541 +10,250.43486224262665,0.0,0.0,59.302921680879294,0.08062562499981141 +11,251.25358918047456,0.0,0.0,59.49679604421048,0.08088920799491461 +12,249.02648340531618,0.0,0.0,58.96941787418838,0.08017220799956704 +13,253.20619256589657,0.0,0.0,59.959172107201724,0.0815178340053535 +14,249.58753389863966,0.0,0.0,59.10227451070708,0.0803528339965851 +15,246.30614979515926,0.0,0.0,58.32524345859641,0.07929641700320644 +16,248.74706084391894,0.0,0.0,58.90325067156323,0.08008225000230595 +17,249.45383612969297,0.0,0.0,59.07061490768795,0.08030979100294644 +18,248.40447792783144,0.0,0.0,58.822127110490236,0.07997195800271584 +19,228.9579399496601,0.0,0.0,54.21719108698062,0.07371129099919926 +20,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705 +21,248.96720883475896,0.0,0.0,58.955381668590064,0.08015312499628635 +22,250.81174011459103,0.0,0.0,59.39216628015041,0.08074695800314657 +23,237.7471648094788,0.0,0.0,56.298477649202496,0.07654091600124957 +24,249.37748086472203,0.0,0.0,59.05253399731491,0.08028520899824798 +25,250.11596367984185,0.0,0.0,59.227406569589995,0.08052295800007414 +26,248.8819172109695,0.0,0.0,58.93518463036493,0.08012566599791171 +27,249.33903922826215,0.0,0.0,59.04343102604385,0.08027283300179988 +28,262.4534401956857,0.0,0.0,62.148918363143466,0.08449491600185866 +29,261.2161602290057,0.0,0.0,61.85593073233089,0.08409658299933653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ab1544460 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fc23d687e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a7a3c9218 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bd3f90fd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c184e5360 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a776a0244 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ac9a339f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a2c140054 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..853dbdc64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..497030e27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..72399b336 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..74b866a6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ca3f22e82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..545cdb644 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b1061a077 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..71c36276d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9575ed1dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..54b3a4730 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1832.0288573050366,0.3348434297708107,0.0,485.7573635685151,0.520800792000955 +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087 +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004 +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638 +4,1832.5450819984574,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844 +5,1811.5611756891399,0.331102512325981,0.0,480.33041463130064,0.5149823329993524 +6,1861.7579478217278,0.3402770726923634,0.0,493.63994935481156,0.5292520420043729 +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311 +8,1813.0148750103676,0.33136820774045794,0.0,480.7158589690824,0.5153955839996343 +9,1828.3792277749956,0.33417637997824934,0.0,484.78967443444634,0.5197632919953321 +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375 +11,1817.2384760499765,0.33214016340722985,0.0,481.83573505486834,0.5165962500032037 +12,1824.0181403819433,0.333379295666833,0.0,483.63334422387464,0.5185235419994569 +13,1833.410144455411,0.33509589027386744,0.0,486.1236080202995,0.521193458000198 +14,1821.170110213187,0.3328587557277406,0.0,482.87819693423324,0.5177139169973088 +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314 +16,1818.3656082621744,0.33234617152453244,0.0,482.1345910306392,0.5169166659979965 +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685 +18,1805.5999711042286,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965 +19,1838.1848588994615,0.33596857399511293,0.0,487.38961029471034,0.52255079200404 +20,1814.558121289498,0.3316502698242645,0.0,481.12504643406044,0.5158342909999192 +21,1810.8972069332913,0.33098115748237006,0.0,480.1543651596742,0.5147935829954804 +22,1833.8570420407632,0.33517757060310405,0.0,486.24210167392306,0.5213205000036396 +23,1835.274389296927,0.33543662188089246,0.0,486.6179073626107,0.5217234170049778 +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233 +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785 +26,1843.4762342226047,0.33693568881666236,0.0,488.79260376633204,0.524055000001681 +27,1812.0322575714158,0.33118861286557416,0.0,480.45532068408846,0.5151162500042119 +28,1851.1542315714742,0.33833901112559617,0.0,490.82840343990233,0.5262376660029986 +29,1816.7635844920446,0.33205336656590656,0.0,481.70981887716067,0.5164612500011572 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a172e126e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,246.0739988250765,0.0,0.0,60.74658181579221,0.07787158300197916 +1,245.0826823466955,0.0,0.0,60.50186239055085,0.07755787499627331 +2,244.59103733934361,0.0,0.0,60.38049339664647,0.07740229100454599 +3,244.55088007462962,0.0,0.0,60.37058005115652,0.077389582998876 +4,244.58959003848383,0.0,0.0,60.38013611151879,0.07740183299756609 +5,244.22606079392185,0.0,0.0,60.29039416762119,0.07728679200226907 +6,242.8457992005612,0.0,0.0,59.94965855878557,0.07684999999764841 +7,244.85397754171657,0.0,0.0,60.44540362118208,0.07748549999814713 +8,241.94059266288926,0.0,0.0,59.72619649752176,0.0765635419957107 +9,245.51138657380295,0.0,0.0,60.607693630466905,0.07769354100310011 +10,244.71098767476562,0.0,0.0,60.41010470421792,0.07744025000283727 +11,248.3810623596752,0.0,0.0,61.31611059342773,0.07860166700265836 +12,241.60984521505156,0.0,0.0,59.644547168472904,0.07645887499529636 +13,245.731929101319,0.0,0.0,60.66213743499555,0.07776333299989346 +14,245.77880451553304,0.0,0.0,60.67370924346901,0.07777816700399853 +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489 +16,259.02748853123154,0.0,0.0,63.94432000020854,0.08197079199453583 +17,245.3989443932433,0.0,0.0,60.579935809024875,0.07765795800514752 +18,247.64294066856678,0.0,0.0,61.133895609670745,0.07836808399588335 +19,246.88414631211123,0.0,0.0,60.946577308363516,0.07812795900099445 +20,245.0546373862557,0.0,0.0,60.4949391256305,0.07754900000145426 +21,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792 +22,244.31098572658755,0.0,0.0,60.3113589968799,0.07731366700318176 +23,243.40301102024273,0.0,0.0,60.087213577010274,0.07702633299777517 +24,245.98617616377823,0.0,0.0,60.72490164435878,0.07784379099757643 +25,246.44029623831136,0.0,0.0,60.83700711829563,0.07798750000074506 +26,250.52419785027834,0.0,0.0,61.84517159151716,0.07927987499715528 +27,245.67623416012847,0.0,0.0,60.648388411051904,0.07774570800393121 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c31011221 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4f183d038 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f867b5141 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..41c98da7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..411a30a14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b5dbf84d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2909108af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ac401790c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4d83456f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..23d650dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..75121e626 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1c76fdbea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..337bf7b6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..af0aa62a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..34934d370 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..33ddc7c31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..32e5a7d55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..54b3a4730 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1832.0288573050366,0.3348434297708107,0.0,485.7573635685151,0.520800792000955 +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087 +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004 +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638 +4,1832.5450819984574,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844 +5,1811.5611756891399,0.331102512325981,0.0,480.33041463130064,0.5149823329993524 +6,1861.7579478217278,0.3402770726923634,0.0,493.63994935481156,0.5292520420043729 +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311 +8,1813.0148750103676,0.33136820774045794,0.0,480.7158589690824,0.5153955839996343 +9,1828.3792277749956,0.33417637997824934,0.0,484.78967443444634,0.5197632919953321 +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375 +11,1817.2384760499765,0.33214016340722985,0.0,481.83573505486834,0.5165962500032037 +12,1824.0181403819433,0.333379295666833,0.0,483.63334422387464,0.5185235419994569 +13,1833.410144455411,0.33509589027386744,0.0,486.1236080202995,0.521193458000198 +14,1821.170110213187,0.3328587557277406,0.0,482.87819693423324,0.5177139169973088 +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314 +16,1818.3656082621744,0.33234617152453244,0.0,482.1345910306392,0.5169166659979965 +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685 +18,1805.5999711042286,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965 +19,1838.1848588994615,0.33596857399511293,0.0,487.38961029471034,0.52255079200404 +20,1814.558121289498,0.3316502698242645,0.0,481.12504643406044,0.5158342909999192 +21,1810.8972069332913,0.33098115748237006,0.0,480.1543651596742,0.5147935829954804 +22,1833.8570420407632,0.33517757060310405,0.0,486.24210167392306,0.5213205000036396 +23,1835.274389296927,0.33543662188089246,0.0,486.6179073626107,0.5217234170049778 +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233 +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785 +26,1843.4762342226047,0.33693568881666236,0.0,488.79260376633204,0.524055000001681 +27,1812.0322575714158,0.33118861286557416,0.0,480.45532068408846,0.5151162500042119 +28,1851.1542315714742,0.33833901112559617,0.0,490.82840343990233,0.5262376660029986 +29,1816.7635844920446,0.33205336656590656,0.0,481.70981887716067,0.5164612500011572 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ce7adc293 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,246.0739988250765,0.0,0.0,60.74658181579221,0.07787158300197916 +1,245.0826823466955,0.0,0.0,60.50186239055085,0.07755787499627331 +2,244.59103733934361,0.0,0.0,60.38049339664647,0.07740229100454599 +3,244.55088007462962,0.0,0.0,60.37058005115652,0.077389582998876 +4,244.58959003848383,0.0,0.0,60.38013611151879,0.07740183299756609 +5,244.22606079392185,0.0,0.0,60.29039416762119,0.07728679200226907 +6,242.8457992005612,0.0,0.0,59.94965855878557,0.07684999999764841 +7,244.85397754171657,0.0,0.0,60.44540362118208,0.07748549999814713 +8,241.94059266288926,0.0,0.0,59.72619649752176,0.0765635419957107 +9,245.51138657380295,0.0,0.0,60.607693630466905,0.07769354100310011 +10,244.71098767476562,0.0,0.0,60.41010470421792,0.07744025000283727 +11,248.3810623596752,0.0,0.0,61.31611059342773,0.07860166700265836 +12,241.60984521505156,0.0,0.0,59.644547168472904,0.07645887499529636 +13,245.731929101319,0.0,0.0,60.66213743499555,0.07776333299989346 +14,245.77880451553304,0.0,0.0,60.67370924346901,0.07777816700399853 +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489 +16,259.02748853123154,0.0,0.0,63.94432000020854,0.08197079199453583 +17,245.3989443932433,0.0,0.0,60.579935809024875,0.07765795800514752 +18,223.20115090919603,0.0,0.0,55.100120450851726,0.0706333340058336 +19,247.64294066856678,0.0,0.0,61.133895609670745,0.07836808399588335 +20,246.88414631211123,0.0,0.0,60.946577308363516,0.07812795900099445 +21,245.0546373862557,0.0,0.0,60.4949391256305,0.07754900000145426 +22,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792 +23,244.31098572658755,0.0,0.0,60.3113589968799,0.07731366700318176 +24,243.40301102024273,0.0,0.0,60.087213577010274,0.07702633299777517 +25,245.98617616377823,0.0,0.0,60.72490164435878,0.07784379099757643 +26,246.44029623831136,0.0,0.0,60.83700711829563,0.07798750000074506 +27,250.52419785027834,0.0,0.0,61.84517159151716,0.07927987499715528 +28,224.68990150640013,0.0,0.0,55.46763798780473,0.07110445800208254 +29,245.67623416012847,0.0,0.0,60.648388411051904,0.07774570800393121 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..18814e118 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..eba0fea13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2381df5ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..119360463 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f14ef02c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..df3a597f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3e6eadb2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ac401790c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..29e6def98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..766f5e7ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..154facd73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..52316b7bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2835e8d2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2e74eb262 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2e3ce504c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..33ddc7c31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7359f69d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..21d95306a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2707.064349798109,3.6012385418086788,92.06499642531261,546.2211903089626,0.5340038330032257 +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182 +2,2725.020067211528,3.625125237224638,92.67565537015949,549.8442269534888,0.5375458330017864 +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456 +4,2738.164742265457,3.6426117481852254,93.12269478462413,552.4965096946497,0.5401387919991976 +5,2721.6892765557122,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198 +6,2720.5877475209177,3.619228871849861,92.52491588127283,548.9498902756719,0.5366714999981923 +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976 +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933 +9,2684.9247119572583,3.571785929387366,91.31204584294923,541.7539380490226,0.5296365000031074 +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256 +11,2721.1405220612946,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162 +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359 +13,2693.7475289550293,3.5835230233438016,91.61210247640959,543.5341726425446,0.5313769159984076 +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352 +15,2691.344864372215,3.580326731279553,91.53038986169301,543.0493720841699,0.5309029589989223 +16,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008 +17,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486 +18,2696.253071379015,3.586856174972084,91.69731388053633,544.0397315020158,0.5318711669970071 +19,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715 +20,2711.4054258427636,3.6070135247218476,92.21263279404648,547.097116189524,0.5348601670048083 +21,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715 +22,2722.2352935902622,3.6214206211537783,92.58094754634799,549.2823258807412,0.5369964999990771 +23,2705.6396482764453,3.599343245145054,92.01654351708791,545.9337194326031,0.5337227920026635 +24,2704.6099320015473,3.5979734018546403,91.98152372704317,545.7259471831561,0.5335196670057485 +25,2732.7517068573975,3.635410725519794,92.93860197370509,551.4042879142569,0.5390709999992396 +26,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095 +27,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125 +28,2711.9605221173633,3.607751975619275,92.23151115448907,547.2091214131422,0.5349696670018602 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..64e9332db --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.08120970799791394 +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.08067075000144541 +2,387.06785099851174,1.2704258393457761,15.004759237678492,78.69773037244646,0.08379341699765064 +3,384.2510321293888,1.2611805365729962,14.895564715740523,78.12502134662994,0.08318362499994691 +4,371.5677530253622,1.2195517485973921,14.403894976677307,75.54628669689791,0.08043791700038128 +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.07690824999735923 +6,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.08172954200563254 +7,383.3779823279192,1.2583150311481424,14.861720773290223,77.94751490247413,0.08299462499417132 +8,392.08615035475583,1.2868967943871166,15.199294571545133,79.71803926311544,0.08487979100027587 +9,367.5730098278583,1.2064402877344769,14.249037992972065,74.73408485101137,0.07957312499638647 +10,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.08220604099915363 +11,382.579806971804,1.2556952770297833,14.83077935302744,77.78523175546657,0.08282183399569476 +12,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.08433645799959777 +13,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.08274041699769441 +14,380.74632391965866,1.2496774580881194,14.759704032013735,77.41245226859378,0.08242491699638776 +15,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.08173791599983815 +16,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.07949408300191863 +17,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.08171254199987743 +18,384.81670373446605,1.2630371718420337,14.917493083647802,78.24003237464706,0.08330608300457243 +19,378.67475235924377,1.2428781901261439,14.679399164462835,76.99126518294923,0.08197645800100872 +20,383.49654619559766,1.2587041789441245,14.866316924286009,77.971621030809,0.08302029199694516 +21,382.52841254463027,1.2555265913378268,14.828787038233251,77.77478236071079,0.08281070800148882 +22,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.08436475000053179 +23,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.08265608399960911 +24,373.20337248194835,1.2249201438687207,14.467300077584621,75.87883702019211,0.08079199999338016 +25,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.08326662500621751 +26,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.08122999999613967 +27,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.07426958400174044 +28,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.08257612500165123 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f046e3a34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5a4a41bc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e8dee9e13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0a781b8f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..20a036b9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c95981187 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6ae3dbad4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b7e6a2e0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1d778edfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5bae950ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..747f3baec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..65c01d9c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d72e225bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fa2b3598e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..38e21341f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..dbaba2b59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8d572cba7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b53494c67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..83190b9a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6ba784c65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..abb4915ce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2707.064349798109,3.6012385418086788,92.06499642531261,546.2211903089626,0.5340038330032257 +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182 +2,2725.020067211528,3.625125237224638,92.67565537015949,549.8442269534888,0.5375458330017864 +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456 +4,2738.164742265457,3.6426117481852254,93.12269478462413,552.4965096946497,0.5401387919991976 +5,2721.6892765557122,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198 +6,2720.5877475209177,3.619228871849861,92.52491588127283,548.9498902756719,0.5366714999981923 +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976 +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933 +9,2684.9247119572583,3.571785929387366,91.31204584294923,541.7539380490226,0.5296365000031074 +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256 +11,2721.1405220612946,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162 +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359 +13,2693.7475289550293,3.5835230233438016,91.61210247640959,543.5341726425446,0.5313769159984076 +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352 +15,2781.6217251628236,3.7004230675697793,94.60063045889038,561.2650950913014,0.5487112499977229 +16,2691.344864372215,3.580326731279553,91.53038986169301,543.0493720841699,0.5309029589989223 +17,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008 +18,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486 +19,2696.253071379015,3.586856174972084,91.69731388053633,544.0397315020158,0.5318711669970071 +20,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715 +21,2711.4054258427636,3.6070135247218476,92.21263279404648,547.097116189524,0.5348601670048083 +22,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715 +23,2722.2352935902622,3.6214206211537783,92.58094754634799,549.2823258807412,0.5369964999990771 +24,2705.6396482764453,3.599343245145054,92.01654351708791,545.9337194326031,0.5337227920026635 +25,2704.6099320015473,3.5979734018546403,91.98152372704317,545.7259471831561,0.5335196670057485 +26,2732.7517068573975,3.635410725519794,92.93860197370509,551.4042879142569,0.5390709999992396 +27,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095 +28,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125 +29,2711.9605221173633,3.607751975619275,92.23151115448907,547.2091214131422,0.5349696670018602 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ea4106e57 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.08120970799791394 +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.08067075000144541 +2,387.06785099851174,1.2704258393457761,15.004759237678492,78.69773037244646,0.08379341699765064 +3,384.2510321293888,1.2611805365729962,14.895564715740523,78.12502134662994,0.08318362499994691 +4,371.5677530253622,1.2195517485973921,14.403894976677307,75.54628669689791,0.08043791700038128 +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.07690824999735923 +6,310.8037935940057,1.0201135778389259,12.048368473394882,63.191900551535625,0.06728358300460968 +7,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.08172954200563254 +8,383.3779823279192,1.2583150311481424,14.861720773290223,77.94751490247413,0.08299462499417132 +9,392.08615035475583,1.2868967943871166,15.199294571545133,79.71803926311544,0.08487979100027587 +10,367.5730098278583,1.2064402877344769,14.249037992972065,74.73408485101137,0.07957312499638647 +11,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.08220604099915363 +12,382.579806971804,1.2556952770297833,14.83077935302744,77.78523175546657,0.08282183399569476 +13,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.08433645799959777 +14,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.08274041699769441 +15,380.74632391965866,1.2496774580881194,14.759704032013735,77.41245226859378,0.08242491699638776 +16,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.08173791599983815 +17,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.07949408300191863 +18,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.08171254199987743 +19,384.81670373446605,1.2630371718420337,14.917493083647802,78.24003237464706,0.08330608300457243 +20,378.67475235924377,1.2428781901261439,14.679399164462835,76.99126518294923,0.08197645800100872 +21,383.49654619559766,1.2587041789441245,14.866316924286009,77.971621030809,0.08302029199694516 +22,382.52841254463027,1.2555265913378268,14.828787038233251,77.77478236071079,0.08281070800148882 +23,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.08436475000053179 +24,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.08265608399960911 +25,373.20337248194835,1.2249201438687207,14.467300077584621,75.87883702019211,0.08079199999338016 +26,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.08326662500621751 +27,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.08122999999613967 +28,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.07426958400174044 +29,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.08257612500165123 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e138695a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..312016a67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9e408f90d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cc4976726 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..466af9094 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7955d06c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..691dfb89a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b4829dc54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..99c27f083 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4aed0ec8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5ff23f891 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..33d24dfe7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5e958cde0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2cbdca02d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0aba9b10b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..102e31340 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..bbc43190b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..233aa9556 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a378586c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0ab53add5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..48233c8c1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1845.8242060718921,0.1677320580549854,0.0,486.15459706656964,0.5214718330025789 +1,1830.4651068256326,0.16633635996089205,0.0,482.1093057106495,0.5171326670024428 +2,1849.9641160769513,0.16810825619077036,0.0,487.24496974332874,0.5226414170028875 +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669 +4,1822.3392648347447,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443 +5,1836.1359089329783,0.16685167193109957,0.0,483.602885925099,0.5187347499959287 +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701 +7,1845.3007813203662,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832 +8,1825.8569338770212,0.16591761026089283,0.0,480.8956015801718,0.5158307919991785 +9,1807.0185105123555,0.16420574219075254,0.0,475.9339231656772,0.5105086669937009 +10,1823.162968089531,0.1656728066526299,0.0,480.18606280198253,0.5150697079952806 +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444 +12,1857.7274384163823,0.16881371775588228,0.0,489.2896795436492,0.5248346669977764 +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564 +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571 +15,1830.059520329347,0.16629950387377523,0.0,482.00248202775015,0.5170180829954916 +16,1826.6731154100846,0.16599177756666164,0.0,481.11056809921206,0.5160613749976619 +17,1843.7639886261206,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808 +18,1825.188089979146,0.16585683168667156,0.0,480.71944096064885,0.5156418339975062 +19,1824.456265218254,0.16579032997276175,0.0,480.52669239305266,0.5154350829980103 +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028 +21,1827.3999209682072,0.1660578231801435,0.0,481.30199470532796,0.5162667080003303 +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859 +23,1827.5106834888259,0.16606788829115332,0.0,481.3311674230788,0.5162980000022799 +24,1835.150709439822,0.16676214577902168,0.0,483.3434033259165,0.5184564169976511 +25,1813.572750949637,0.16480133316518886,0.0,477.6601840459834,0.5123603339961846 +26,1842.1702642888458,0.16740002038137194,0.0,485.19221907336845,0.5204395420005312 +27,1831.9371559299914,0.16647012666793806,0.0,482.4970151343517,0.5175485420040786 +28,1845.660352440013,0.16771716849681162,0.0,486.1114411711588,0.5214255419996334 +29,1853.0747226186222,0.16839092039861714,0.0,488.06424368335195,0.5235202080002637 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5716143bf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,224.52516714856458,0.0,0.0,57.735973906146626,0.07534270899486728 +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632 +2,231.69330601434635,0.0,0.0,59.57923933499082,0.07774808300018776 +3,234.760649370358,0.0,0.0,60.36799748719698,0.07877737499802606 +4,228.23247365021166,0.0,0.0,58.6892966634995,0.07658675000129733 +5,223.36952695819903,0.0,0.0,57.43880449425753,0.07495491699955892 +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515 +7,228.01604737457026,0.0,0.0,58.63364329527478,0.07651412499399157 +8,226.91454579476897,0.0,0.0,58.35039546485715,0.07614450000255601 +9,223.18873616220841,0.0,0.0,57.392314682837515,0.07489424999948824 +10,228.57679477020542,0.0,0.0,58.777837807691775,0.0767022919972078 +11,233.5521132500369,0.0,0.0,60.05722604543105,0.07837183299852768 +12,231.26827613662832,0.0,0.0,59.46994417560664,0.07760545799828833 +13,232.72316419059683,0.0,0.0,59.844064278876445,0.07809366699802922 +14,226.37205419514888,0.0,0.0,58.21089537567897,0.07596245899912901 +15,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212 +16,235.0194191984909,0.0,0.0,60.43453937305556,0.07886420900467783 +17,235.69725578504784,0.0,0.0,60.60884302004133,0.07909166700119385 +18,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004 +19,224.62400355737094,0.0,0.0,57.76138939249184,0.07537587499973597 +20,231.10611067541618,0.0,0.0,59.42824381321107,0.07755104100215249 +21,232.56050106737092,0.0,0.0,59.802235944185355,0.07803908300411422 +22,232.27069102387352,0.0,0.0,59.727712159962834,0.07794183299847646 +23,231.9585306176708,0.0,0.0,59.64744104694712,0.07783708300121361 +24,230.37078291630021,0.0,0.0,59.23915648348338,0.07730429100047331 +25,230.7023166464104,0.0,0.0,59.32440938868658,0.07741554200038081 +26,239.12095968349055,0.0,0.0,61.489238217841425,0.08024054099951172 +27,235.103850013608,0.0,0.0,60.45625050415228,0.07889254100155085 +28,229.96015861058862,0.0,0.0,59.13356567377203,0.07716649999929359 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c8a3ad4c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ab32c50c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..21504b827 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8796a4d23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..cf40257d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f56eea657 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..950dde26d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b9329645f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..19ce886d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ab55da1d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5ef09b1be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5678646f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1265356d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..255588dec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8c4419ca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e3517ac4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..178fb3105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..48233c8c1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1845.8242060718921,0.1677320580549854,0.0,486.15459706656964,0.5214718330025789 +1,1830.4651068256326,0.16633635996089205,0.0,482.1093057106495,0.5171326670024428 +2,1849.9641160769513,0.16810825619077036,0.0,487.24496974332874,0.5226414170028875 +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669 +4,1822.3392648347447,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443 +5,1836.1359089329783,0.16685167193109957,0.0,483.602885925099,0.5187347499959287 +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701 +7,1845.3007813203662,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832 +8,1825.8569338770212,0.16591761026089283,0.0,480.8956015801718,0.5158307919991785 +9,1807.0185105123555,0.16420574219075254,0.0,475.9339231656772,0.5105086669937009 +10,1823.162968089531,0.1656728066526299,0.0,480.18606280198253,0.5150697079952806 +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444 +12,1857.7274384163823,0.16881371775588228,0.0,489.2896795436492,0.5248346669977764 +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564 +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571 +15,1830.059520329347,0.16629950387377523,0.0,482.00248202775015,0.5170180829954916 +16,1826.6731154100846,0.16599177756666164,0.0,481.11056809921206,0.5160613749976619 +17,1843.7639886261206,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808 +18,1825.188089979146,0.16585683168667156,0.0,480.71944096064885,0.5156418339975062 +19,1824.456265218254,0.16579032997276175,0.0,480.52669239305266,0.5154350829980103 +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028 +21,1827.3999209682072,0.1660578231801435,0.0,481.30199470532796,0.5162667080003303 +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859 +23,1827.5106834888259,0.16606788829115332,0.0,481.3311674230788,0.5162980000022799 +24,1835.150709439822,0.16676214577902168,0.0,483.3434033259165,0.5184564169976511 +25,1813.572750949637,0.16480133316518886,0.0,477.6601840459834,0.5123603339961846 +26,1842.1702642888458,0.16740002038137194,0.0,485.19221907336845,0.5204395420005312 +27,1831.9371559299914,0.16647012666793806,0.0,482.4970151343517,0.5175485420040786 +28,1845.660352440013,0.16771716849681162,0.0,486.1114411711588,0.5214255419996334 +29,1853.0747226186222,0.16839092039861714,0.0,488.06424368335195,0.5235202080002637 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..450ee88c1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,224.52516714856458,0.0,0.0,57.735973906146626,0.07534270899486728 +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632 +2,231.69330601434635,0.0,0.0,59.57923933499082,0.07774808300018776 +3,234.760649370358,0.0,0.0,60.36799748719698,0.07877737499802606 +4,228.23247365021166,0.0,0.0,58.6892966634995,0.07658675000129733 +5,223.36952695819903,0.0,0.0,57.43880449425753,0.07495491699955892 +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515 +7,228.01604737457026,0.0,0.0,58.63364329527478,0.07651412499399157 +8,210.18081054030134,0.0,0.0,54.047365589524595,0.07052924999879906 +9,226.91454579476897,0.0,0.0,58.35039546485715,0.07614450000255601 +10,223.18873616220841,0.0,0.0,57.392314682837515,0.07489424999948824 +11,228.57679477020542,0.0,0.0,58.777837807691775,0.0767022919972078 +12,233.5521132500369,0.0,0.0,60.05722604543105,0.07837183299852768 +13,231.26827613662832,0.0,0.0,59.46994417560664,0.07760545799828833 +14,232.72316419059683,0.0,0.0,59.844064278876445,0.07809366699802922 +15,226.37205419514888,0.0,0.0,58.21089537567897,0.07596245899912901 +16,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212 +17,235.0194191984909,0.0,0.0,60.43453937305556,0.07886420900467783 +18,235.69725578504784,0.0,0.0,60.60884302004133,0.07909166700119385 +19,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004 +20,224.62400355737094,0.0,0.0,57.76138939249184,0.07537587499973597 +21,231.10611067541618,0.0,0.0,59.42824381321107,0.07755104100215249 +22,232.56050106737092,0.0,0.0,59.802235944185355,0.07803908300411422 +23,232.27069102387352,0.0,0.0,59.727712159962834,0.07794183299847646 +24,231.9585306176708,0.0,0.0,59.64744104694712,0.07783708300121361 +25,230.37078291630021,0.0,0.0,59.23915648348338,0.07730429100047331 +26,230.7023166464104,0.0,0.0,59.32440938868658,0.07741554200038081 +27,239.12095968349055,0.0,0.0,61.489238217841425,0.08024054099951172 +28,235.103850013608,0.0,0.0,60.45625050415228,0.07889254100155085 +29,229.96015861058862,0.0,0.0,59.13356567377203,0.07716649999929359 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5ff8648ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..501248c04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f035d6617 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e2c919a31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7f2e1dadb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..46b0eb011 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3382ef523 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b9329645f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0ff20bffb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..66a6a44b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4a23dd0a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b28f3e61f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d0043b95d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..25c18eb03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..8b6af3c1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e3517ac4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..fb593c1f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ae7744cce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1761.0627122628562,0.10027308185523398,0.0,479.40560434987367,0.5189407500001835 +1,1773.2261221061888,0.10096565377920146,0.0,482.7167907183622,0.5225250000003143 +2,1774.1111385027095,0.10101604569367083,0.0,482.9577144614402,0.5227857920035603 +3,1747.8332966738471,0.09951981267122573,0.0,475.8042243811302,0.51504237500194 +4,1746.9785407537054,0.09947114375685386,0.0,475.5715383015183,0.5147904999976163 +5,1750.5248233346763,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402 +6,1746.6482342427257,0.099452336447164,0.0,475.4816205538911,0.514693167002406 +7,1772.610473858339,0.10093059940736063,0.0,482.5491957665912,0.5223435839943704 +8,1748.7226941545937,0.09957045404008089,0.0,476.04634076562667,0.5153044580001733 +9,1772.4744459499425,0.10092285411953059,0.0,482.5121655454757,0.5223035000017262 +10,1770.3282934230103,0.10080065442356952,0.0,481.92792879908586,0.5216710829990916 +11,1758.2146570945301,0.10011091655184465,0.0,478.63029203436923,0.5181014999980107 +12,1757.855223569782,0.10009045078024116,0.0,478.532445180333,0.5179955840067123 +13,1756.2394557664416,0.09999845063960153,0.0,478.09259250793485,0.5175194580006064 +14,1747.016436775467,0.09947330151697542,0.0,475.5818545526595,0.5148016669991193 +15,1754.1526907543482,0.09987963240705748,0.0,477.5245225381418,0.5169045410002582 +16,1753.2227129170685,0.09982668043484674,0.0,477.2713591590023,0.5166304999947897 +17,1756.2227695819904,0.09999750054558858,0.0,478.088050108459,0.5175145410030382 +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174 +19,1748.2398194280586,0.09954295965464954,0.0,475.9148901088795,0.5151621670011082 +20,1763.74038297599,0.10042554564470031,0.0,480.1345337273122,0.5197297920021811 +21,1760.1897159033686,0.10022337434918968,0.0,479.16795276347585,0.5186834999985876 +22,1751.7277020054344,0.09974155606620679,0.0,476.8643795525346,0.5161899579979945 +23,1748.352370623307,0.09954936820281508,0.0,475.9455293776589,0.5151953329987009 +24,1759.1921483115996,0.10016657388655478,0.0,478.89638975161847,0.5183895419977489 +25,1747.339389421523,0.09949169010523401,0.0,475.66977039312377,0.5148968329958734 +26,1751.9406486544974,0.09975368102724515,0.0,476.92234899125907,0.5162527080028667 +27,1754.9035218939098,0.09992238395235593,0.0,477.7289176762137,0.5171257919937489 +28,1752.4458666562616,0.09978244761556304,0.0,477.0598820500069,0.516401583001425 +29,1750.364901254197,0.09966395960679075,0.0,476.4933908800666,0.5157883749998291 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..258c48f01 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,260.20760817827636,0.06683986852768466,0.0,63.29735549571737,0.0778534579949337 +1,264.69906999108105,0.06799359619601363,0.0,64.3899355976249,0.07919729200511938 +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.07860779199836543 +3,261.1013891414675,0.06706945521229579,0.0,63.51477408604411,0.07812087499769405 +4,257.7910068686657,0.06621911298963928,0.0,62.7095000011884,0.07713041699753376 +5,259.7389946089577,0.06671949514743326,0.0,63.183361904619304,0.07771325000067009 +6,258.06479595470574,0.06628944155014276,0.0,62.77610114798519,0.07721233399934135 +7,256.0824062134452,0.06578022250538022,0.0,62.29387071259507,0.07661920800455846 +8,245.48280118105222,0.06305748810199133,0.0,59.71544123258579,0.07344783299777191 +9,255.98353170352672,0.06575482448074152,0.0,62.26981878326222,0.07658962500136113 +10,265.5946591131205,0.06822364734475224,0.0,64.60779403548037,0.07946525000443216 +11,260.294366973363,0.06686215437281352,0.0,63.318460191054406,0.07787941600690829 +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.07704662500327686 +13,260.85629013818584,0.06700649631086202,0.0,63.45515200638633,0.07804754199605668 +14,263.58442150290836,0.06770727498148173,0.0,64.1187894074632,0.07886379199771909 +15,262.31742217161724,0.06738181920668308,0.0,63.81058278872888,0.07848470900353277 +16,268.16277907116,0.06888332367612639,0.0,65.2325075212917,0.08023362499807263 +17,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.07722700000158511 +18,252.13699183642044,0.06476675875582338,0.0,61.33412054176475,0.07543875000556 +19,259.3735737404644,0.06662562901116476,0.0,63.09447067357302,0.07760391700139735 +20,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.07811420800135238 +21,260.63695006654126,0.06695015413987702,0.0,63.40179597046354,0.07798191600159043 +22,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589 +23,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505 +24,257.15221136999554,0.06605502475468676,0.0,62.55410844268836,0.07693929100059904 +25,263.19769031243703,0.06760793483494401,0.0,64.02471428869198,0.07874808300402947 +26,259.31383057100317,0.06661028270511256,0.0,63.079937721741594,0.07758604199625552 +27,261.2983025863787,0.06712003662634954,0.0,63.56267468515301,0.07817979100218508 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..dcc423bf2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..75292ef4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..53fbd160e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2a1b74e7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0df74f8a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0c59850a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..eab0044e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ef48ae3a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..eb0bdc185 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..eacd04917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3af78f397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..630c35229 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c34a2176c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..30aca69a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2c79af94a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..22a4d065e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..33e607e16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ae7744cce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1761.0627122628562,0.10027308185523398,0.0,479.40560434987367,0.5189407500001835 +1,1773.2261221061888,0.10096565377920146,0.0,482.7167907183622,0.5225250000003143 +2,1774.1111385027095,0.10101604569367083,0.0,482.9577144614402,0.5227857920035603 +3,1747.8332966738471,0.09951981267122573,0.0,475.8042243811302,0.51504237500194 +4,1746.9785407537054,0.09947114375685386,0.0,475.5715383015183,0.5147904999976163 +5,1750.5248233346763,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402 +6,1746.6482342427257,0.099452336447164,0.0,475.4816205538911,0.514693167002406 +7,1772.610473858339,0.10093059940736063,0.0,482.5491957665912,0.5223435839943704 +8,1748.7226941545937,0.09957045404008089,0.0,476.04634076562667,0.5153044580001733 +9,1772.4744459499425,0.10092285411953059,0.0,482.5121655454757,0.5223035000017262 +10,1770.3282934230103,0.10080065442356952,0.0,481.92792879908586,0.5216710829990916 +11,1758.2146570945301,0.10011091655184465,0.0,478.63029203436923,0.5181014999980107 +12,1757.855223569782,0.10009045078024116,0.0,478.532445180333,0.5179955840067123 +13,1756.2394557664416,0.09999845063960153,0.0,478.09259250793485,0.5175194580006064 +14,1747.016436775467,0.09947330151697542,0.0,475.5818545526595,0.5148016669991193 +15,1754.1526907543482,0.09987963240705748,0.0,477.5245225381418,0.5169045410002582 +16,1753.2227129170685,0.09982668043484674,0.0,477.2713591590023,0.5166304999947897 +17,1756.2227695819904,0.09999750054558858,0.0,478.088050108459,0.5175145410030382 +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174 +19,1748.2398194280586,0.09954295965464954,0.0,475.9148901088795,0.5151621670011082 +20,1763.74038297599,0.10042554564470031,0.0,480.1345337273122,0.5197297920021811 +21,1760.1897159033686,0.10022337434918968,0.0,479.16795276347585,0.5186834999985876 +22,1751.7277020054344,0.09974155606620679,0.0,476.8643795525346,0.5161899579979945 +23,1748.352370623307,0.09954936820281508,0.0,475.9455293776589,0.5151953329987009 +24,1759.1921483115996,0.10016657388655478,0.0,478.89638975161847,0.5183895419977489 +25,1747.339389421523,0.09949169010523401,0.0,475.66977039312377,0.5148968329958734 +26,1751.9406486544974,0.09975368102724515,0.0,476.92234899125907,0.5162527080028667 +27,1754.9035218939098,0.09992238395235593,0.0,477.7289176762137,0.5171257919937489 +28,1752.4458666562616,0.09978244761556304,0.0,477.0598820500069,0.516401583001425 +29,1750.364901254197,0.09966395960679075,0.0,476.4933908800666,0.5157883749998291 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..957c38c9d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,260.20760817827636,0.06683986852768466,0.0,63.29735549571737,0.0778534579949337 +1,264.69906999108105,0.06799359619601363,0.0,64.3899355976249,0.07919729200511938 +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.07860779199836543 +3,261.1013891414675,0.06706945521229579,0.0,63.51477408604411,0.07812087499769405 +4,257.7910068686657,0.06621911298963928,0.0,62.7095000011884,0.07713041699753376 +5,259.7389946089577,0.06671949514743326,0.0,63.183361904619304,0.07771325000067009 +6,258.06479595470574,0.06628944155014276,0.0,62.77610114798519,0.07721233399934135 +7,256.0824062134452,0.06578022250538022,0.0,62.29387071259507,0.07661920800455846 +8,245.48280118105222,0.06305748810199133,0.0,59.71544123258579,0.07344783299777191 +9,255.98353170352672,0.06575482448074152,0.0,62.26981878326222,0.07658962500136113 +10,265.5946591131205,0.06822364734475224,0.0,64.60779403548037,0.07946525000443216 +11,260.294366973363,0.06686215437281352,0.0,63.318460191054406,0.07787941600690829 +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.07704662500327686 +13,260.85629013818584,0.06700649631086202,0.0,63.45515200638633,0.07804754199605668 +14,307.82568802659245,0.07907158695776842,0.0,74.8807928490067,0.09210066700325115 +15,263.58442150290836,0.06770727498148173,0.0,64.1187894074632,0.07886379199771909 +16,262.31742217161724,0.06738181920668308,0.0,63.81058278872888,0.07848470900353277 +17,268.16277907116,0.06888332367612639,0.0,65.2325075212917,0.08023362499807263 +18,206.91894566594263,0.05315154011454987,0.0,50.334508488478725,0.06190962500113528 +19,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.07722700000158511 +20,252.13699183642044,0.06476675875582338,0.0,61.33412054176475,0.07543875000556 +21,259.3735737404644,0.06662562901116476,0.0,63.09447067357302,0.07760391700139735 +22,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.07811420800135238 +23,260.63695006654126,0.06695015413987702,0.0,63.40179597046354,0.07798191600159043 +24,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589 +25,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505 +26,257.15221136999554,0.06605502475468676,0.0,62.55410844268836,0.07693929100059904 +27,263.19769031243703,0.06760793483494401,0.0,64.02471428869198,0.07874808300402947 +28,259.31383057100317,0.06661028270511256,0.0,63.079937721741594,0.07758604199625552 +29,261.2983025863787,0.06712003662634954,0.0,63.56267468515301,0.07817979100218508 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b9c2f9ce3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..844fb8a4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..51565c0d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..da21aa609 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2499710d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8ad4c551e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..16a9f8969 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..495794215 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a492f3f3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..745549fe6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7c3f5c769 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8bb34d222 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2d714732f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..463316940 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1e0182f6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0b4252063 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..5a0c2cdf6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a5b5e8ac7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073 +1,1764.845139373689,0.16648854188272982,0.0,479.25391666362606,0.5172321659993031 +2,1769.8090308676667,0.16695681586238884,0.0,480.6018901414725,0.5186869589961134 +3,1761.6674862860261,0.16618877460152695,0.0,478.39100656795546,0.5163008750023437 +4,1770.120524418555,0.16698620093756417,0.0,480.6864780188722,0.5187782499997411 +5,1758.7666359534974,0.16591511980241286,0.0,477.6032638632257,0.5154507080005715 +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002 +7,1766.3960797342909,0.16663485148997123,0.0,479.6750834990312,0.5176867080008378 +8,1777.8972580842958,0.1677198273729572,0.0,482.79829507579467,0.5210574169977917 +9,1769.0387471033746,0.16688415032483442,0.0,480.3927151250683,0.5184612080047373 +10,1764.9314380729104,0.16649668296223827,0.0,479.27735157509903,0.5172574579992215 +11,1772.566856441291,0.16721697826886636,0.0,481.3507936447587,0.5194952090023435 +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439 +13,1762.1909595977615,0.16623815701273176,0.0,478.53315877684963,0.5164542919956148 +14,1773.2691781297697,0.16728323253176952,0.0,481.5415131659517,0.5197010420015431 +15,1763.9601307223377,0.16640505365102615,0.0,479.0135874398439,0.5169727920001606 +16,1762.9672077460498,0.16631138520678934,0.0,478.7439534562638,0.5166817909994279 +17,1765.03607677191,0.16650655416511734,0.0,479.30576681970683,0.5172881249964121 +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674 +19,1759.353089729241,0.16597044354262488,0.0,477.7625187818,0.5156225829996401 +20,1767.829302824657,0.16677005611341617,0.0,480.06428352807984,0.518106750001607 +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435 +22,1767.7985939618375,0.16676715916020504,0.0,480.05594435856625,0.5180977499985602 +23,1772.0661315525292,0.16716974185431957,0.0,481.2148189018443,0.519348459005414 +24,1759.3323339609199,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604 +25,1759.9227696447715,0.16602418490290663,0.0,477.91721866150704,0.5157895419979468 +26,1767.522357592919,0.16674110010876184,0.0,479.98093077308187,0.51801679199707 +27,1756.276093432469,0.16568017182676778,0.0,476.92694262053374,0.5147207920017536 +28,1787.0935630557296,0.16858737057617917,0.0,485.2956049405893,0.5237526249984512 +29,1761.5507619170933,0.16617776328413017,0.0,478.3593093896971,0.516266665996227 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2e3a35ba0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,248.82851645392182,0.0,0.0,60.371399972863664,0.07733504199859453 +1,240.3368936219519,0.0,0.0,58.311141101760796,0.0746958750023623 +2,248.97893642549755,0.0,0.0,60.407895244375624,0.07738179200532613 +3,251.12462953695908,0.0,0.0,60.92848869924618,0.07804866600054083 +4,249.99473921307967,0.0,0.0,60.654351869430606,0.07769749999715714 +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547 +6,251.56958945104643,0.0,0.0,61.036445991794814,0.078186958002334 +7,253.98636346091425,0.0,0.0,61.622809775468184,0.07893808300286764 +8,258.675926589324,0.0,0.0,62.76060336664463,0.08039558299788041 +9,253.03209606091505,0.0,0.0,61.39128302078818,0.07864149999659276 +10,245.9887712196412,0.0,0.0,59.682413847788496,0.07645245900494047 +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585 +12,253.69195862142328,0.0,0.0,61.551380533465895,0.07884658299735747 +13,249.9323994112021,0.0,0.0,60.639226830037956,0.07767812500242144 +14,249.64268574376183,0.0,0.0,60.56893577198762,0.07758808299695374 +15,248.90372320903617,0.0,0.0,60.389646824785515,0.07735841599787818 +16,249.89043626314705,0.0,0.0,60.62904562560264,0.07766508300119312 +17,251.38565561954871,0.0,0.0,60.99181950336761,0.07812979200389236 +18,248.0580477823997,0.0,0.0,60.18446692757648,0.07709558300120989 +19,242.71331647279524,0.0,0.0,58.88771478582841,0.07543445900228107 +20,251.9422866197867,0.0,0.0,61.12687071546968,0.07830279099289328 +21,252.17301315190568,0.0,0.0,61.182850166512566,0.07837450000079116 +22,251.81465972876939,0.0,0.0,61.09590555844225,0.07826312499673804 +23,248.1852757086486,0.0,0.0,60.215335286769196,0.07713512500049546 +24,252.43765573938865,0.0,0.0,61.24705841613956,0.07845675000135088 +25,247.58493442148287,0.0,0.0,60.069678975007925,0.07694854100554949 +26,252.21926527656947,0.0,0.0,61.19407197323097,0.07838887500111014 +27,249.8356029545924,0.0,0.0,60.61574183048396,0.07764804099861067 +28,254.86381530062062,0.0,0.0,61.835699345870964,0.07921079199877568 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ceca93943 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..383ef343b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..104acc479 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7c5c2f7af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ebf936a99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0b59c1c84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..04d4b14a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fe8a733d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1d9ffafec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..af1228884 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c3524f472 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5261d031d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c29dd5f84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0e94a21f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b8d8031fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8210c40d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a1efd50fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a5b5e8ac7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073 +1,1764.845139373689,0.16648854188272982,0.0,479.25391666362606,0.5172321659993031 +2,1769.8090308676667,0.16695681586238884,0.0,480.6018901414725,0.5186869589961134 +3,1761.6674862860261,0.16618877460152695,0.0,478.39100656795546,0.5163008750023437 +4,1770.120524418555,0.16698620093756417,0.0,480.6864780188722,0.5187782499997411 +5,1758.7666359534974,0.16591511980241286,0.0,477.6032638632257,0.5154507080005715 +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002 +7,1766.3960797342909,0.16663485148997123,0.0,479.6750834990312,0.5176867080008378 +8,1777.8972580842958,0.1677198273729572,0.0,482.79829507579467,0.5210574169977917 +9,1769.0387471033746,0.16688415032483442,0.0,480.3927151250683,0.5184612080047373 +10,1764.9314380729104,0.16649668296223827,0.0,479.27735157509903,0.5172574579992215 +11,1772.566856441291,0.16721697826886636,0.0,481.3507936447587,0.5194952090023435 +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439 +13,1762.1909595977615,0.16623815701273176,0.0,478.53315877684963,0.5164542919956148 +14,1773.2691781297697,0.16728323253176952,0.0,481.5415131659517,0.5197010420015431 +15,1763.9601307223377,0.16640505365102615,0.0,479.0135874398439,0.5169727920001606 +16,1762.9672077460498,0.16631138520678934,0.0,478.7439534562638,0.5166817909994279 +17,1765.03607677191,0.16650655416511734,0.0,479.30576681970683,0.5172881249964121 +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674 +19,1759.353089729241,0.16597044354262488,0.0,477.7625187818,0.5156225829996401 +20,1767.829302824657,0.16677005611341617,0.0,480.06428352807984,0.518106750001607 +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435 +22,1767.7985939618375,0.16676715916020504,0.0,480.05594435856625,0.5180977499985602 +23,1772.0661315525292,0.16716974185431957,0.0,481.2148189018443,0.519348459005414 +24,1759.3323339609199,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604 +25,1759.9227696447715,0.16602418490290663,0.0,477.91721866150704,0.5157895419979468 +26,1767.522357592919,0.16674110010876184,0.0,479.98093077308187,0.51801679199707 +27,1756.276093432469,0.16568017182676778,0.0,476.92694262053374,0.5147207920017536 +28,1787.0935630557296,0.16858737057617917,0.0,485.2956049405893,0.5237526249984512 +29,1761.5507619170933,0.16617776328413017,0.0,478.3593093896971,0.516266665996227 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..b145d8282 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,248.82851645392182,0.0,0.0,60.371399972863664,0.07733504199859453 +1,240.3368936219519,0.0,0.0,58.311141101760796,0.0746958750023623 +2,248.97893642549755,0.0,0.0,60.407895244375624,0.07738179200532613 +3,251.12462953695908,0.0,0.0,60.92848869924618,0.07804866600054083 +4,249.99473921307967,0.0,0.0,60.654351869430606,0.07769749999715714 +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547 +6,251.56958945104643,0.0,0.0,61.036445991794814,0.078186958002334 +7,253.98636346091425,0.0,0.0,61.622809775468184,0.07893808300286764 +8,258.675926589324,0.0,0.0,62.76060336664463,0.08039558299788041 +9,253.03209606091505,0.0,0.0,61.39128302078818,0.07864149999659276 +10,245.9887712196412,0.0,0.0,59.682413847788496,0.07645245900494047 +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585 +12,253.69195862142328,0.0,0.0,61.551380533465895,0.07884658299735747 +13,249.9323994112021,0.0,0.0,60.639226830037956,0.07767812500242144 +14,249.64268574376183,0.0,0.0,60.56893577198762,0.07758808299695374 +15,248.90372320903617,0.0,0.0,60.389646824785515,0.07735841599787818 +16,249.89043626314705,0.0,0.0,60.62904562560264,0.07766508300119312 +17,251.38565561954871,0.0,0.0,60.99181950336761,0.07812979200389236 +18,248.0580477823997,0.0,0.0,60.18446692757648,0.07709558300120989 +19,242.71331647279524,0.0,0.0,58.88771478582841,0.07543445900228107 +20,251.9422866197867,0.0,0.0,61.12687071546968,0.07830279099289328 +21,252.17301315190568,0.0,0.0,61.182850166512566,0.07837450000079116 +22,251.81465972876939,0.0,0.0,61.09590555844225,0.07826312499673804 +23,248.1852757086486,0.0,0.0,60.215335286769196,0.07713512500049546 +24,252.43765573938865,0.0,0.0,61.24705841613956,0.07845675000135088 +25,247.58493442148287,0.0,0.0,60.069678975007925,0.07694854100554949 +26,252.21926527656947,0.0,0.0,61.19407197323097,0.07838887500111014 +27,249.8356029545924,0.0,0.0,60.61574183048396,0.07764804099861067 +28,229.06746313872625,0.0,0.0,55.5769235576266,0.07119337499898393 +29,254.86381530062062,0.0,0.0,61.835699345870964,0.07921079199877568 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..632b4ce83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..28a39d8fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..dd9db3350 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a47abd121 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d56cb2c67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7bca54e34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..605d30b3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fe8a733d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..74da094a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a8cc83172 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..83e63b275 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5e0516d6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bf485778b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c855a5f53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6d8c3dbcb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8210c40d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..38d31087b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1e1fec5fc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1786.9876176050948,0.9744578121988633,0.0,485.98563233903997,0.5244097500035423 +1,1782.494248517345,0.9720075441793687,0.0,484.76362453331757,0.5230911249964265 +2,1789.6608931992603,0.9759155695225465,0.0,486.71265110360656,0.5251942500035511 +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507 +4,1774.29452682005,0.9675361741558347,0.0,482.53364437295994,0.5206848329980858 +5,1774.592693303347,0.9676987665857555,0.0,482.61473314240624,0.5207723329949658 +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435 +7,1782.7985214602406,0.9721734665077185,0.0,484.84637400348737,0.5231804169961833 +8,1756.4093657710655,0.9577832610774695,0.0,477.6696312056359,0.515436249996128 +9,1768.7031962830279,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765 +10,1768.6684113239016,0.9644682109849975,0.0,481.0035770853799,0.5190337919993908 +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654 +12,1777.5417030532524,0.9693068838221229,0.0,483.4167400248056,0.5216377499964437 +13,1800.5370152626763,0.9818464008314551,0.0,489.6704998353564,0.5283859589981148 +14,1773.0453523522408,0.9668549899064512,0.0,482.19392134541397,0.5203182500044932 +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211 +16,1769.166632213147,0.9647398945898209,0.0,481.1390722569855,0.5191800000029616 +17,1763.204154234821,0.9614885104230799,0.0,479.517528491345,0.5174302500017802 +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578 +19,1767.0888376996136,0.9636068575861454,0.0,480.57399935408347,0.5185702500020852 +20,1767.2573750274973,0.9636987622609094,0.0,480.619834433777,0.5186197090006317 +21,1785.681222404281,0.9737454250526343,0.0,485.6303476736638,0.5240263750019949 +22,1765.3002646808288,0.9626315352427377,0.0,480.0875825591626,0.5180453749999288 +23,1766.7130081954772,0.9634019149257975,0.0,480.4717895024762,0.5184599589993013 +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092 +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044 +26,1761.7207060696867,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842 +27,1768.10288660893,0.9641598260968949,0.0,480.84977809791,0.5188678330014227 +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913 +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..831c9f8dd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.07986954099760624 +1,222.28295462619099,0.5425670898579795,0.0,63.921185273893215,0.07962387500447221 +2,181.99531463538943,0.44422960094069125,0.0,52.33579986082519,0.06519245800154749 +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.07976420799968764 +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.06485308300034376 +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477 +6,228.03587230478865,0.5566092992946786,0.0,65.57553307315432,0.08168462500179885 +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.08088891599618364 +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.08018399999855319 +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.07877095800358802 +10,225.93084181352302,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981 +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.08149941600277089 +12,190.86070386116344,0.46586899493190165,0.0,54.885190965414665,0.0683681250011432 +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.07781787499698112 +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.08213654199789744 +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.08317749999696389 +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.08270883299701381 +17,208.47225322116213,0.5088567584345681,0.0,59.949686853072556,0.07467675000225427 +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.08249300000170479 +19,229.14404490940262,0.5593142209840491,0.0,65.89420665968329,0.082081583001127 +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.08125058299629018 +21,226.73833009222633,0.5534421482037561,0.0,65.20240308525501,0.08121983300225111 +22,190.32796262279587,0.46456863492978395,0.0,54.73199230266517,0.0681772920070216 +23,216.75046098615982,0.5290629101111453,0.0,62.3302240974693,0.07764208300068276 +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832 +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.08063133399991784 +26,190.42287632286886,0.46480030833957314,0.0,54.75928632625596,0.06821129099989776 +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.08208129200647818 +28,229.79880690237118,0.5609124195938885,0.0,66.08249443340499,0.08231612499366747 +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b24680742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..31d4696a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..468570cfd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..83b463c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..968f83364 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ed1519ede Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ddcf32170 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a87d8a301 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2e06a5163 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ec62c901a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a90bd127b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1c4e6a8d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0901a94d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e2ac451a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..cca4dbd0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..38983ef10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..987a45e70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1e1fec5fc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1786.9876176050948,0.9744578121988633,0.0,485.98563233903997,0.5244097500035423 +1,1782.494248517345,0.9720075441793687,0.0,484.76362453331757,0.5230911249964265 +2,1789.6608931992603,0.9759155695225465,0.0,486.71265110360656,0.5251942500035511 +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507 +4,1774.29452682005,0.9675361741558347,0.0,482.53364437295994,0.5206848329980858 +5,1774.592693303347,0.9676987665857555,0.0,482.61473314240624,0.5207723329949658 +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435 +7,1782.7985214602406,0.9721734665077185,0.0,484.84637400348737,0.5231804169961833 +8,1756.4093657710655,0.9577832610774695,0.0,477.6696312056359,0.515436249996128 +9,1768.7031962830279,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765 +10,1768.6684113239016,0.9644682109849975,0.0,481.0035770853799,0.5190337919993908 +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654 +12,1777.5417030532524,0.9693068838221229,0.0,483.4167400248056,0.5216377499964437 +13,1800.5370152626763,0.9818464008314551,0.0,489.6704998353564,0.5283859589981148 +14,1773.0453523522408,0.9668549899064512,0.0,482.19392134541397,0.5203182500044932 +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211 +16,1769.166632213147,0.9647398945898209,0.0,481.1390722569855,0.5191800000029616 +17,1763.204154234821,0.9614885104230799,0.0,479.517528491345,0.5174302500017802 +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578 +19,1767.0888376996136,0.9636068575861454,0.0,480.57399935408347,0.5185702500020852 +20,1767.2573750274973,0.9636987622609094,0.0,480.619834433777,0.5186197090006317 +21,1785.681222404281,0.9737454250526343,0.0,485.6303476736638,0.5240263750019949 +22,1765.3002646808288,0.9626315352427377,0.0,480.0875825591626,0.5180453749999288 +23,1766.7130081954772,0.9634019149257975,0.0,480.4717895024762,0.5184599589993013 +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092 +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044 +26,1761.7207060696867,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842 +27,1768.10288660893,0.9641598260968949,0.0,480.84977809791,0.5188678330014227 +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913 +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..831c9f8dd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.07986954099760624 +1,222.28295462619099,0.5425670898579795,0.0,63.921185273893215,0.07962387500447221 +2,181.99531463538943,0.44422960094069125,0.0,52.33579986082519,0.06519245800154749 +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.07976420799968764 +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.06485308300034376 +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477 +6,228.03587230478865,0.5566092992946786,0.0,65.57553307315432,0.08168462500179885 +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.08088891599618364 +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.08018399999855319 +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.07877095800358802 +10,225.93084181352302,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981 +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.08149941600277089 +12,190.86070386116344,0.46586899493190165,0.0,54.885190965414665,0.0683681250011432 +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.07781787499698112 +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.08213654199789744 +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.08317749999696389 +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.08270883299701381 +17,208.47225322116213,0.5088567584345681,0.0,59.949686853072556,0.07467675000225427 +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.08249300000170479 +19,229.14404490940262,0.5593142209840491,0.0,65.89420665968329,0.082081583001127 +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.08125058299629018 +21,226.73833009222633,0.5534421482037561,0.0,65.20240308525501,0.08121983300225111 +22,190.32796262279587,0.46456863492978395,0.0,54.73199230266517,0.0681772920070216 +23,216.75046098615982,0.5290629101111453,0.0,62.3302240974693,0.07764208300068276 +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832 +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.08063133399991784 +26,190.42287632286886,0.46480030833957314,0.0,54.75928632625596,0.06821129099989776 +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.08208129200647818 +28,229.79880690237118,0.5609124195938885,0.0,66.08249443340499,0.08231612499366747 +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b24680742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..31d4696a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..468570cfd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..83b463c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..968f83364 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ed1519ede Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ddcf32170 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a87d8a301 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2e06a5163 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ec62c901a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a90bd127b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1c4e6a8d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0901a94d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e2ac451a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cca4dbd0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..38983ef10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..987a45e70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c72fac096 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1751.7597276163842,2.1636114978065435,0.0,477.19283742391707,0.5169033329948434 +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173 +2,1755.551400507329,2.168294621258601,0.0,478.22571831328156,0.5180221670016181 +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047 +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944 +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581 +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837 +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318 +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886 +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515 +10,1760.3645572400521,2.174239387018135,0.0,479.5368592660305,0.5194424170040293 +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399 +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216 +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349 +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101 +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313 +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864 +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862 +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351 +19,1740.7353332443333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869 +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783 +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092 +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061 +23,1780.1372456652791,2.1986607818846435,0.0,484.92309183228076,0.5252768749996903 +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918 +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964 +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957 +27,1746.5222472011149,2.1571426467036403,0.0,475.76610743297516,0.5153578749959706 +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571 +29,1754.4581827370757,2.166944379841335,0.0,477.9279173754673,0.5176995840010932 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..80f8fdfc8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,241.774082389606,0.0,0.0,58.314702618296096,0.07947904100001324 +1,236.29470921743456,0.0,0.0,56.99310514220705,0.07767779199639335 +2,245.02596783164793,0.0,0.0,59.09904116536938,0.08054804200219223 +3,239.61731779511788,0.0,0.0,57.79450175680519,0.07877004200418014 +4,234.89514347109304,0.0,0.0,56.65553686571519,0.07721770900388947 +5,244.35736376452246,0.0,0.0,58.937777199610736,0.08032824999827426 +6,246.66217572690388,0.0,0.0,59.49368634772521,0.08108591700147372 +7,247.69936496973415,0.0,0.0,59.74385121923148,0.08142687499639578 +8,247.93347313702418,0.0,0.0,59.80031694136804,0.081503834000614 +9,244.9906017154224,0.0,0.0,59.090511034554396,0.08053641600417905 +10,244.56865399024642,0.0,0.0,58.988739348065465,0.0803977079995093 +11,244.99022144221857,0.0,0.0,59.090419314554566,0.08053629099595128 +12,243.10761578902108,0.0,0.0,58.63634422210183,0.07991741700243438 +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349 +14,247.18260772680364,0.0,0.0,59.61921195000334,0.08125700000528013 +15,245.5469078363539,0.0,0.0,59.22468929587267,0.08071929200377781 +16,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146 +17,242.99404630361005,0.0,0.0,58.6089518287452,0.07988008300162619 +18,243.03942360273416,0.0,0.0,58.61989660693602,0.07989500000257976 +19,243.40129207930582,0.0,0.0,58.70717747835799,0.08001395799510647 +20,242.2193560611542,0.0,0.0,58.42210040669198,0.07962541700544534 +21,244.86537532136506,0.0,0.0,59.06030705298102,0.08049524999660207 +22,229.17519487542998,0.0,0.0,55.27591379755472,0.07533737499761628 +23,245.74083136710107,0.0,0.0,59.27146268413018,0.08078304100490641 +24,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226 +25,245.22724384220348,0.0,0.0,59.14758793507991,0.08061420800368069 +26,246.67941161374173,0.0,0.0,59.497843557651834,0.08109158300067065 +27,245.331815099925,0.0,0.0,59.17281000080416,0.08064858399302466 +28,247.67071860704502,0.0,0.0,59.73694185944898,0.08141745800094213 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..dcc1aa565 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..31865b945 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9a944906e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..57c22091f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fd290f882 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e2beb4cd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b7b0a721a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5e6cd69f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7af8a09de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b81a31a3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4bd88019a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dc6809ca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1618e4fdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3a1405353 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..54ef0d25e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..05be6078e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2457e6059 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c72fac096 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1751.7597276163842,2.1636114978065435,0.0,477.19283742391707,0.5169033329948434 +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173 +2,1755.551400507329,2.168294621258601,0.0,478.22571831328156,0.5180221670016181 +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047 +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944 +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581 +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837 +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318 +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886 +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515 +10,1760.3645572400521,2.174239387018135,0.0,479.5368592660305,0.5194424170040293 +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399 +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216 +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349 +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101 +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313 +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864 +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862 +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351 +19,1740.7353332443333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869 +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783 +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092 +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061 +23,1780.1372456652791,2.1986607818846435,0.0,484.92309183228076,0.5252768749996903 +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918 +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964 +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957 +27,1746.5222472011149,2.1571426467036403,0.0,475.76610743297516,0.5153578749959706 +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571 +29,1754.4581827370757,2.166944379841335,0.0,477.9279173754673,0.5176995840010932 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e150ff8bc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,241.774082389606,0.0,0.0,58.314702618296096,0.07947904100001324 +1,236.29470921743456,0.0,0.0,56.99310514220705,0.07767779199639335 +2,245.02596783164793,0.0,0.0,59.09904116536938,0.08054804200219223 +3,239.61731779511788,0.0,0.0,57.79450175680519,0.07877004200418014 +4,234.89514347109304,0.0,0.0,56.65553686571519,0.07721770900388947 +5,244.35736376452246,0.0,0.0,58.937777199610736,0.08032824999827426 +6,246.66217572690388,0.0,0.0,59.49368634772521,0.08108591700147372 +7,247.69936496973415,0.0,0.0,59.74385121923148,0.08142687499639578 +8,247.93347313702418,0.0,0.0,59.80031694136804,0.081503834000614 +9,244.9906017154224,0.0,0.0,59.090511034554396,0.08053641600417905 +10,244.56865399024642,0.0,0.0,58.988739348065465,0.0803977079995093 +11,244.99022144221857,0.0,0.0,59.090419314554566,0.08053629099595128 +12,243.10761578902108,0.0,0.0,58.63634422210183,0.07991741700243438 +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349 +14,226.95226404933985,0.0,0.0,54.73975397106182,0.07460662499943282 +15,247.18260772680364,0.0,0.0,59.61921195000334,0.08125700000528013 +16,245.5469078363539,0.0,0.0,59.22468929587267,0.08071929200377781 +17,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146 +18,242.99404630361005,0.0,0.0,58.6089518287452,0.07988008300162619 +19,243.03942360273416,0.0,0.0,58.61989660693602,0.07989500000257976 +20,243.40129207930582,0.0,0.0,58.70717747835799,0.08001395799510647 +21,242.2193560611542,0.0,0.0,58.42210040669198,0.07962541700544534 +22,244.86537532136506,0.0,0.0,59.06030705298102,0.08049524999660207 +23,229.17519487542998,0.0,0.0,55.27591379755472,0.07533737499761628 +24,245.74083136710107,0.0,0.0,59.27146268413018,0.08078304100490641 +25,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226 +26,245.22724384220348,0.0,0.0,59.14758793507991,0.08061420800368069 +27,246.67941161374173,0.0,0.0,59.497843557651834,0.08109158300067065 +28,245.331815099925,0.0,0.0,59.17281000080416,0.08064858399302466 +29,247.67071860704502,0.0,0.0,59.73694185944898,0.08141745800094213 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9caaea7e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c74a2251a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a6973cd53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c6562c93e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fd563de1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1ececd413 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1d3ed1194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5e6cd69f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2a7882f2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c7804c15c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7aeb1739c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f2b47101a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f7f2ebac7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c85c5d077 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c65e1b344 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..05be6078e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a59654a58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b3a02e4be --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1747.0589457116464,3.0201243148830725,0.03318817928442937,476.8145717793967,0.5152042500048992 +1,1747.3293781548232,3.020591808895897,0.03319331658127359,476.8883793231577,0.5152840000009746 +2,1750.1044899098858,3.025389118401999,0.03324603426815383,477.6457743305661,0.5161023750042659 +3,1751.6777760699365,3.028108843341962,0.03327592135540618,478.07516211312054,0.5165663340012543 +4,1766.1522672194958,3.0531307596165367,0.03355088746831359,482.0256002572614,0.5208348329979344 +5,1766.7483783587693,3.0541612513183263,0.03356221155294864,482.1882933812131,0.5210106250015087 +6,1754.7747482092896,3.0334625498574375,0.033334753295136674,478.9204005912286,0.517479624999396 +7,1753.3064440845665,3.030924306371375,0.03330686050957555,478.51966494107194,0.5170466249983292 +8,1749.3128298275074,3.0240205830873874,0.03323099541854272,477.42971117820326,0.5158689160016365 +9,1757.5330439768443,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158 +10,1749.9246243251405,3.0250781864627907,0.03324261743365704,477.59668466935074,0.5160493329967721 +11,1748.560030649437,3.022719226251378,0.033216694793971185,477.224254104984,0.5156469170033233 +12,1753.7423269355932,3.0316778129431237,0.03331514080157279,478.6386278961962,0.5171751659945585 +13,1756.9680215412786,3.0372540407715727,0.03337641803045684,479.51899784357346,0.5181264169950737 +14,1753.7127980950843,3.0316267667151586,0.03331457985401273,478.63056876260094,0.5171664579975186 +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442 +16,1746.7611037466984,3.0196094382885876,0.03318252129987459,476.73328351529824,0.5151164169947151 +17,1749.0789930550138,3.023616351665171,0.03322655331500188,477.365891476632,0.5157999579969328 +18,1745.504313415313,3.0174368367013065,0.033158646557157216,476.3902750866777,0.5147457919956651 +19,1750.3038537106063,3.025733756723185,0.03324982150245258,477.7001855257362,0.5161611669973354 +20,1748.1413808301063,3.0219955102589178,0.03320874187097712,477.1099944603282,0.5155234579942771 +21,1757.5372861178564,3.0382381230737434,0.03338723212168949,479.6743638923129,0.5182942920000642 +22,1749.8696629689396,3.0249831752849206,0.03324157335477935,477.5816843881149,0.5160331250008312 +23,1759.469025002054,3.0415775018557194,0.03342392859182109,480.2015820786936,0.5188639580010204 +24,1751.8266953376512,3.028366278674916,0.03327875031510897,478.1158057771706,0.5166102500006673 +25,1755.287352510616,3.034348684076406,0.033344491033806656,479.06030268270024,0.5176307910005562 +26,1765.1312939975094,3.0513658128411953,0.033531492448804344,481.746952011972,0.5205337500010501 +27,1767.6126601371138,3.0556553270735236,0.03357862996784092,482.4241767479705,0.5212654999995721 +28,1751.5500471769017,3.027888039609773,0.033273494940766736,478.0403018139957,0.516528667001694 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ab4d9db33 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,244.30085516419715,0.0,0.0,58.772377861222836,0.07942379199812422 +1,225.99531436860698,0.0,0.0,54.36854489113619,0.07347254199703457 +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879 +3,248.47192239445707,0.0,0.0,59.77582723178127,0.08077983299881453 +4,243.27721517189647,0.0,0.0,58.52611692864887,0.07909099999960745 +5,245.83842831626754,0.0,0.0,59.14227763182338,0.07992366699909326 +6,252.47304837576766,0.0,0.0,60.738393195317876,0.08208062499761581 +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987 +8,246.13217822395478,0.0,0.0,59.21294615469732,0.08001916699868161 +9,245.90750722117627,0.0,0.0,59.15889620443872,0.07994612499896903 +10,250.79449374512458,0.0,0.0,60.3345769788476,0.08153491600387497 +11,249.24756673150782,0.0,0.0,59.96242691450618,0.08103200000186916 +12,248.5006329833621,0.0,0.0,59.782734246407195,0.08078916699741967 +13,241.8498643799761,0.0,0.0,58.18273376682212,0.07862695900257677 +14,246.26623584150497,0.0,0.0,59.24519690121452,0.08006274999934249 +15,253.02671313402087,0.0,0.0,60.87159041379928,0.08226062500034459 +16,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806 +17,252.45626002588986,0.0,0.0,60.73435435868744,0.0820751669962192 +18,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663 +19,225.67067614143414,0.0,0.0,54.29044544877944,0.07336700000450946 +20,246.5857465567506,0.0,0.0,59.322062798693686,0.08016662500449456 +21,246.7726084003519,0.0,0.0,59.367016856969904,0.08022737500141375 +22,246.30570906024258,0.0,0.0,59.25469312227967,0.08007558299868833 +23,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335 +24,246.24175771202158,0.0,0.0,59.23930810531011,0.0800547920007375 +25,245.9956844736978,0.0,0.0,59.18010933854943,0.07997479199548252 +26,246.54319742169466,0.0,0.0,59.31182659284212,0.08015279200481018 +27,245.51635537810407,0.0,0.0,59.06479533071602,0.07981895899865776 +28,232.80692876152213,0.0,0.0,56.00724064877602,0.07568704200093634 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..436960ee0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..74876f137 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cc80283a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b9e91ef31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..eea1bce89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f0ee3ba6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..28a7b2771 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1a45fb9cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5d5957ae3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..606fd92fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1bf180c3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2524f2b34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4d0540088 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..61d6e876c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e74b4c2b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..779f016cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d82bb8e9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ecd6441f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..be903b919 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7a8e12ff0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7f9337b93 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1747.0589457116464,3.0201243148830725,0.03318817928442937,476.8145717793967,0.5152042500048992 +1,1747.3293781548232,3.020591808895897,0.03319331658127359,476.8883793231577,0.5152840000009746 +2,1750.1044899098858,3.025389118401999,0.03324603426815383,477.6457743305661,0.5161023750042659 +3,1751.6777760699365,3.028108843341962,0.03327592135540618,478.07516211312054,0.5165663340012543 +4,1766.1522672194958,3.0531307596165367,0.03355088746831359,482.0256002572614,0.5208348329979344 +5,1766.7483783587693,3.0541612513183263,0.03356221155294864,482.1882933812131,0.5210106250015087 +6,1754.7747482092896,3.0334625498574375,0.033334753295136674,478.9204005912286,0.517479624999396 +7,1753.3064440845665,3.030924306371375,0.03330686050957555,478.51966494107194,0.5170466249983292 +8,1749.3128298275074,3.0240205830873874,0.03323099541854272,477.42971117820326,0.5158689160016365 +9,1757.5330439768443,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158 +10,1749.9246243251405,3.0250781864627907,0.03324261743365704,477.59668466935074,0.5160493329967721 +11,1748.560030649437,3.022719226251378,0.033216694793971185,477.224254104984,0.5156469170033233 +12,1753.7423269355932,3.0316778129431237,0.03331514080157279,478.6386278961962,0.5171751659945585 +13,1756.9680215412786,3.0372540407715727,0.03337641803045684,479.51899784357346,0.5181264169950737 +14,1753.7127980950843,3.0316267667151586,0.03331457985401273,478.63056876260094,0.5171664579975186 +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442 +16,1746.7611037466984,3.0196094382885876,0.03318252129987459,476.73328351529824,0.5151164169947151 +17,1749.0789930550138,3.023616351665171,0.03322655331500188,477.365891476632,0.5157999579969328 +18,1745.504313415313,3.0174368367013065,0.033158646557157216,476.3902750866777,0.5147457919956651 +19,1750.3038537106063,3.025733756723185,0.03324982150245258,477.7001855257362,0.5161611669973354 +20,1748.1413808301063,3.0219955102589178,0.03320874187097712,477.1099944603282,0.5155234579942771 +21,1757.5372861178564,3.0382381230737434,0.03338723212168949,479.6743638923129,0.5182942920000642 +22,1749.8696629689396,3.0249831752849206,0.03324157335477935,477.5816843881149,0.5160331250008312 +23,1781.692526770394,3.07999505967033,0.03384609955681681,486.2669123327872,0.5254176250018645 +24,1759.469025002054,3.0415775018557194,0.03342392859182109,480.2015820786936,0.5188639580010204 +25,1751.8266953376512,3.028366278674916,0.03327875031510897,478.1158057771706,0.5166102500006673 +26,1755.287352510616,3.034348684076406,0.033344491033806656,479.06030268270024,0.5176307910005562 +27,1765.1312939975094,3.0513658128411953,0.033531492448804344,481.746952011972,0.5205337500010501 +28,1767.6126601371138,3.0556553270735236,0.03357862996784092,482.4241767479705,0.5212654999995721 +29,1751.5500471769017,3.027888039609773,0.033273494940766736,478.0403018139957,0.516528667001694 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..eb3ddf920 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,244.30085516419715,0.0,0.0,58.772377861222836,0.07942379199812422 +1,225.99531436860698,0.0,0.0,54.36854489113619,0.07347254199703457 +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879 +3,248.47192239445707,0.0,0.0,59.77582723178127,0.08077983299881453 +4,243.27721517189647,0.0,0.0,58.52611692864887,0.07909099999960745 +5,245.83842831626754,0.0,0.0,59.14227763182338,0.07992366699909326 +6,252.47304837576766,0.0,0.0,60.738393195317876,0.08208062499761581 +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987 +8,246.13217822395478,0.0,0.0,59.21294615469732,0.08001916699868161 +9,245.90750722117627,0.0,0.0,59.15889620443872,0.07994612499896903 +10,250.79449374512458,0.0,0.0,60.3345769788476,0.08153491600387497 +11,249.24756673150782,0.0,0.0,59.96242691450618,0.08103200000186916 +12,248.5006329833621,0.0,0.0,59.782734246407195,0.08078916699741967 +13,201.25431595629993,0.0,0.0,48.416509617355764,0.0654290829988895 +14,241.8498643799761,0.0,0.0,58.18273376682212,0.07862695900257677 +15,246.26623584150497,0.0,0.0,59.24519690121452,0.08006274999934249 +16,253.02671313402087,0.0,0.0,60.87159041379928,0.08226062500034459 +17,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806 +18,252.45626002588986,0.0,0.0,60.73435435868744,0.0820751669962192 +19,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663 +20,225.67067614143414,0.0,0.0,54.29044544877944,0.07336700000450946 +21,246.5857465567506,0.0,0.0,59.322062798693686,0.08016662500449456 +22,246.7726084003519,0.0,0.0,59.367016856969904,0.08022737500141375 +23,246.30570906024258,0.0,0.0,59.25469312227967,0.08007558299868833 +24,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335 +25,246.24175771202158,0.0,0.0,59.23930810531011,0.0800547920007375 +26,245.9956844736978,0.0,0.0,59.18010933854943,0.07997479199548252 +27,246.54319742169466,0.0,0.0,59.31182659284212,0.08015279200481018 +28,245.51635537810407,0.0,0.0,59.06479533071602,0.07981895899865776 +29,232.80692876152213,0.0,0.0,56.00724064877602,0.07568704200093634 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cca63ec1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5e409c717 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c167784e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5b1b9a521 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1f7fbd8d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9bac0c4f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..993fbd66e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..02a7168c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c65dc48a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9479aef18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..afa8c4c8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..68d6ff228 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..38c4b9368 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f12c6f1a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..934d25377 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..c5d7ef622 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8bd66dd74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..9caa4b6ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8c49b6c70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b36c11ced Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..fb733fc89 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021 +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396 +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647 +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121 +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826 +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744 +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462 +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933 +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716 +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596 +10,2615.36164408698,2.8635954088927402,88.30529098120404,541.2528299017616,0.5338564999983646 +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096 +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936 +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303 +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195 +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093 +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978 +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057 +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888 +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631 +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072 +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873 +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502 +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321 +24,2646.0932560853726,2.8972438732362598,89.34291571886699,547.6127809239,0.5401295409974409 +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246 +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397 +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437 +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415 +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..68945f2e0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,362.1477510943677,0.23583907876645027,14.28510991385356,76.17602244156343,0.08281091700337129 +1,336.858148535045,0.21936989857152434,13.287548142046615,70.85647723860235,0.07702804199652746 +2,362.74505428268986,0.23622805656143167,14.308670854578146,76.30166226934243,0.0829474999991362 +3,360.94585457223286,0.23505637566337614,14.237700468753069,75.9232093392705,0.08253608400264056 +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.08150279099936597 +5,349.6413415549495,0.22769461260439544,13.791787963466238,73.54535987121973,0.0799511250006617 +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.08242145799886202 +7,359.44475760769,0.23407882624000653,14.178488903680394,75.60746087552211,0.0821928340010345 +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.08122841600561514 +9,347.2399143905892,0.22613074711453388,13.697062396651766,73.04023131799444,0.0794019999957527 +10,368.19860405248215,0.23977953561888316,14.523789014629493,77.44879000489925,0.08419454200338805 +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.08625383400067221 +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242 +13,356.8769656271249,0.23240662009395052,14.07720098854786,75.06733829034602,0.0816056670009857 +14,360.27602202196147,0.23462016505291006,14.211278568919123,75.78231331208995,0.08238291599991499 +15,355.8179236856387,0.23171694723225145,14.035426518067803,74.84457395601721,0.08136350000131642 +16,367.0209393602304,0.23901261284971745,14.47733540689717,77.20107395045873,0.08392525000090245 +17,364.3840903443813,0.23729543514844814,14.373323500420288,76.64642555294876,0.08332229199731955 +18,350.5090521147184,0.22825968599897928,13.826015266223889,73.72787857767031,0.0801495409978088 +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033 +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.08311895799852209 +21,365.90504594881264,0.23828591698220192,14.4333184000648,76.96635118525121,0.0836700829968322 +22,351.0808508987014,0.22863205472982695,13.84857017220666,73.8481536777341,0.08028029200067976 +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.07977674999710871 +24,340.5454724450315,0.22177117007305058,13.43299658728192,71.63208793359534,0.07787120800639968 +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.08103395799844293 +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.08226991700212238 +27,360.8257711959278,0.23497817456242392,14.232963716352534,75.89795038366293,0.08250862500426592 +28,370.2476265409491,0.24111390694824114,14.604613792293463,77.87979194428189,0.08466308400238631 +29,362.5628409920885,0.23610939500833747,14.301483354790728,76.26333458769301,0.08290583399502793 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..290eb0321 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..faf8e0db4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d4c131aa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ed234946f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1f2703845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f18d7c16b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7a69b3601 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9a2db3828 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ab5fbe511 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2e901d7b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5085c526d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1503e710b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..eebdf4c9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..96080ab98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d64dd6dcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..7a4f2f18e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..db5ac439d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..588b84fc3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c2c2a2a66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a3e54fae9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..fb733fc89 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021 +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396 +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647 +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121 +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826 +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744 +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462 +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933 +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716 +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596 +10,2615.36164408698,2.8635954088927402,88.30529098120404,541.2528299017616,0.5338564999983646 +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096 +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936 +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303 +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195 +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093 +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978 +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057 +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888 +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631 +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072 +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873 +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502 +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321 +24,2646.0932560853726,2.8972438732362598,89.34291571886699,547.6127809239,0.5401295409974409 +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246 +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397 +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437 +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415 +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..68945f2e0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,362.1477510943677,0.23583907876645027,14.28510991385356,76.17602244156343,0.08281091700337129 +1,336.858148535045,0.21936989857152434,13.287548142046615,70.85647723860235,0.07702804199652746 +2,362.74505428268986,0.23622805656143167,14.308670854578146,76.30166226934243,0.0829474999991362 +3,360.94585457223286,0.23505637566337614,14.237700468753069,75.9232093392705,0.08253608400264056 +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.08150279099936597 +5,349.6413415549495,0.22769461260439544,13.791787963466238,73.54535987121973,0.0799511250006617 +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.08242145799886202 +7,359.44475760769,0.23407882624000653,14.178488903680394,75.60746087552211,0.0821928340010345 +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.08122841600561514 +9,347.2399143905892,0.22613074711453388,13.697062396651766,73.04023131799444,0.0794019999957527 +10,368.19860405248215,0.23977953561888316,14.523789014629493,77.44879000489925,0.08419454200338805 +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.08625383400067221 +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242 +13,356.8769656271249,0.23240662009395052,14.07720098854786,75.06733829034602,0.0816056670009857 +14,360.27602202196147,0.23462016505291006,14.211278568919123,75.78231331208995,0.08238291599991499 +15,355.8179236856387,0.23171694723225145,14.035426518067803,74.84457395601721,0.08136350000131642 +16,367.0209393602304,0.23901261284971745,14.47733540689717,77.20107395045873,0.08392525000090245 +17,364.3840903443813,0.23729543514844814,14.373323500420288,76.64642555294876,0.08332229199731955 +18,350.5090521147184,0.22825968599897928,13.826015266223889,73.72787857767031,0.0801495409978088 +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033 +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.08311895799852209 +21,365.90504594881264,0.23828591698220192,14.4333184000648,76.96635118525121,0.0836700829968322 +22,351.0808508987014,0.22863205472982695,13.84857017220666,73.8481536777341,0.08028029200067976 +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.07977674999710871 +24,340.5454724450315,0.22177117007305058,13.43299658728192,71.63208793359534,0.07787120800639968 +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.08103395799844293 +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.08226991700212238 +27,360.8257711959278,0.23497817456242392,14.232963716352534,75.89795038366293,0.08250862500426592 +28,370.2476265409491,0.24111390694824114,14.604613792293463,77.87979194428189,0.08466308400238631 +29,362.5628409920885,0.23610939500833747,14.301483354790728,76.26333458769301,0.08290583399502793 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..290eb0321 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..faf8e0db4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d4c131aa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ed234946f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1f2703845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f18d7c16b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7a69b3601 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9a2db3828 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ab5fbe511 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2e901d7b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5085c526d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1503e710b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..eebdf4c9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..96080ab98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d64dd6dcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..7a4f2f18e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..db5ac439d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..588b84fc3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c2c2a2a66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a3e54fae9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3eb1efa2b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224 +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637 +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822 +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785 +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257 +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757 +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788 +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315 +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518 +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946 +10,2618.9124733008675,4.199020794266546,93.62136762896691,547.6194959050658,0.5388713749998715 +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708 +12,2598.3698797146358,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963 +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235 +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425 +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375 +16,2588.202161551629,4.149781562735098,92.52352972274173,541.1979122856604,0.5325523749997956 +17,2609.8641773866566,4.184513252268183,93.29790747257141,545.7274803078074,0.5370095840044087 +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034 +19,2571.5775359527493,4.123126548755723,91.92922953105759,537.7216719825263,0.529131666997273 +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198 +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871 +22,2590.805700040584,4.153955933725058,92.61660149833389,541.7423170526872,0.5330880830006208 +23,2581.167113924082,4.138501952752755,92.27203953857541,539.7268706702032,0.5311048330040649 +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174 +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983 +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351 +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567 +28,2612.5537766415023,4.188825608375719,93.39405576434503,546.2898805419278,0.5375629999980447 +29,2596.2320891691634,4.162656308793328,92.81058506085603,542.8769851675906,0.5342046250007115 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3f700440a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.08307020799838938 +1,374.8739455288989,0.37460150806848547,13.247271512603714,76.14627018555758,0.0836669999989681 +2,360.33811832316565,0.36007624469066335,12.733605380424367,73.19368028439303,0.08042279199435143 +3,348.5626801398173,0.3483093642385529,12.317485698981553,70.8017944034004,0.07779466699867044 +4,364.61442878503067,0.36434944736876246,12.884721366040782,74.06230584695935,0.08137720899685519 +5,369.74521098479994,0.36947650080239824,13.06603261928481,75.10449598128749,0.0825223330029985 +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.08260637499915902 +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.08207525000034366 +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.07977566699992167 +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.08211045800271677 +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.08251275000657188 +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.08377279099659063 +12,367.93805840787127,0.36767066156309813,13.002171577095016,74.73741811409886,0.08211899999878369 +13,378.27841319804594,0.37800350156054735,13.367578373368447,76.83780268085307,0.08442683300381759 +14,382.7117309698025,0.3824335974443884,13.524242673260643,77.73832035324112,0.08541629200044554 +15,372.41599349838015,0.37214534234031443,13.160412560943847,75.64699867935846,0.08311841700196965 +16,356.7682378530547,0.35650895861042897,12.607453172677896,72.46854831390174,0.07962604099884629 +17,368.93348814627194,0.3686653678787238,13.037348009529413,74.93961477971149,0.08234116699895822 +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.08239454200520413 +19,368.3876096681557,0.36811988611461777,13.018057790780574,74.82873321384412,0.08221933400636772 +20,370.14323588553475,0.3698742364408505,13.080097997771896,75.18534478924924,0.08261116699577542 +21,368.5427485912714,0.36827491229142306,13.023540080123961,74.860245807602,0.08225395900080912 +22,380.3863269498703,0.38010988339830787,13.44206769472198,77.2659726616924,0.08489729199936846 +23,370.1045866985358,0.36983561534192344,13.078732215273476,75.17749417314008,0.08260254099877784 +24,361.6613717978691,0.3613985364985974,12.780366427086761,73.46246614644215,0.08071812499838416 +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.08204599999589846 +26,371.72020035590015,0.37145005486145544,13.135824667373289,75.50566569729222,0.08296312500169734 +27,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.08106891700299457 +28,360.0086099352188,0.35974697577102166,12.721961234084311,73.12674889309132,0.08034924999810755 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..be96acfbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..69ee2205c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d4b310ac3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3ea30c8e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ebab52acf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..53890f7f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9c47dec08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e2956c506 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4b0de2aea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9710d9b31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..94d17a48d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..25c71fce9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7b5ae07f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cf1e0553f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c754b5845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..858c0f5a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8ab527ea0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..18839d237 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9f354e2f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5d76ca1fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3eb1efa2b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224 +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637 +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822 +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785 +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257 +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757 +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788 +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315 +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518 +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946 +10,2618.9124733008675,4.199020794266546,93.62136762896691,547.6194959050658,0.5388713749998715 +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708 +12,2598.3698797146358,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963 +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235 +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425 +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375 +16,2588.202161551629,4.149781562735098,92.52352972274173,541.1979122856604,0.5325523749997956 +17,2609.8641773866566,4.184513252268183,93.29790747257141,545.7274803078074,0.5370095840044087 +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034 +19,2571.5775359527493,4.123126548755723,91.92922953105759,537.7216719825263,0.529131666997273 +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198 +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871 +22,2590.805700040584,4.153955933725058,92.61660149833389,541.7423170526872,0.5330880830006208 +23,2581.167113924082,4.138501952752755,92.27203953857541,539.7268706702032,0.5311048330040649 +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174 +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983 +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351 +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567 +28,2612.5537766415023,4.188825608375719,93.39405576434503,546.2898805419278,0.5375629999980447 +29,2596.2320891691634,4.162656308793328,92.81058506085603,542.8769851675906,0.5342046250007115 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..364e000e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.08307020799838938 +1,374.8739455288989,0.37460150806848547,13.247271512603714,76.14627018555758,0.0836669999989681 +2,360.33811832316565,0.36007624469066335,12.733605380424367,73.19368028439303,0.08042279199435143 +3,348.5626801398173,0.3483093642385529,12.317485698981553,70.8017944034004,0.07779466699867044 +4,364.61442878503067,0.36434944736876246,12.884721366040782,74.06230584695935,0.08137720899685519 +5,369.74521098479994,0.36947650080239824,13.06603261928481,75.10449598128749,0.0825223330029985 +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.08260637499915902 +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.08207525000034366 +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.07977566699992167 +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.08211045800271677 +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.08251275000657188 +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.08377279099659063 +12,367.93805840787127,0.36767066156309813,13.002171577095016,74.73741811409886,0.08211899999878369 +13,378.27841319804594,0.37800350156054735,13.367578373368447,76.83780268085307,0.08442683300381759 +14,382.7117309698025,0.3824335974443884,13.524242673260643,77.73832035324112,0.08541629200044554 +15,372.41599349838015,0.37214534234031443,13.160412560943847,75.64699867935846,0.08311841700196965 +16,356.7682378530547,0.35650895861042897,12.607453172677896,72.46854831390174,0.07962604099884629 +17,368.93348814627194,0.3686653678787238,13.037348009529413,74.93961477971149,0.08234116699895822 +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.08239454200520413 +19,368.3876096681557,0.36811988611461777,13.018057790780574,74.82873321384412,0.08221933400636772 +20,370.14323588553475,0.3698742364408505,13.080097997771896,75.18534478924924,0.08261116699577542 +21,368.5427485912714,0.36827491229142306,13.023540080123961,74.860245807602,0.08225395900080912 +22,380.3863269498703,0.38010988339830787,13.44206769472198,77.2659726616924,0.08489729199936846 +23,370.1045866985358,0.36983561534192344,13.078732215273476,75.17749417314008,0.08260254099877784 +24,361.6613717978691,0.3613985364985974,12.780366427086761,73.46246614644215,0.08071812499838416 +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.08204599999589846 +26,371.72020035590015,0.37145005486145544,13.135824667373289,75.50566569729222,0.08296312500169734 +27,331.3958353192039,0.33115499532260567,11.710844834590327,67.3147790492133,0.07396325000445358 +28,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.08106891700299457 +29,360.0086099352188,0.35974697577102166,12.721961234084311,73.12674889309132,0.08034924999810755 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ccd244cf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8e070a010 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..78ef16ad8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c8b437235 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..07516dc83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..96d1f7c3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c6ba25043 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..53197746c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c0d6539c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4b0240ea7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6321cd103 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d178b110e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ed5161189 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..48dba23da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7cc4f3eb0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..7cb231bea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c1a000483 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..fe4e846ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..af8d368ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..368a2920f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..6bc910380 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2670.570409785425,2.9727932568403896,91.95617793350105,548.196437429938,0.53703412500181 +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161 +2,2649.982550200963,2.949875512406015,91.24727287251415,543.9703023551407,0.5328940420004074 +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248 +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252 +5,2691.5962946236164,2.9961985969269294,92.68016558808806,552.5124873344356,0.5412622919975547 +6,2666.77366683587,2.9685668444615825,91.82544407643523,547.417067992174,0.5362706249943585 +7,2661.481141542177,2.9626753751907864,91.64320570674421,546.3306545801257,0.5352063330064993 +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573 +9,2645.7442612379073,2.9451575851782787,91.10133519096405,543.1002953701787,0.5320417499970063 +10,2647.4012424367324,2.9470020834609416,91.15839028952777,543.4404291433817,0.5323749580056756 +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555 +12,2627.9855146860323,2.925389118559347,90.48984543139193,539.4549012786067,0.5284705829981249 +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745 +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839 +15,2687.243218261744,2.991352892051421,92.53027541368047,551.618917576943,0.5403869170040707 +16,2700.8745297979617,3.0065268304985318,92.9996445433984,554.4170600240664,0.5431280839984538 +17,2651.924020997127,2.95203669537653,91.31412384687175,544.3688342080854,0.5332844589938759 +18,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431 +19,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277 +20,2647.5437980205056,2.9471607717608688,91.16329892873789,543.4696919790941,0.5324036249949131 +21,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085 +22,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703 +23,2656.7905403646746,2.9574539485248152,91.48169348639121,545.3678000358345,0.5342630839950289 +24,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377 +25,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278 +26,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112 +27,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322 +28,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..e2e148abe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,390.8727972970198,1.8664702076173025,14.049430290064786,79.44375920058373,0.08344745799695374 +1,386.22836099457453,1.8442923992621634,13.882491878082467,78.49979103041318,0.08245591699960642 +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.08305974999530008 +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.08181070900172926 +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.08241912499943282 +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.08208370800275588 +6,363.36429915497683,1.7351134271161421,13.060671978656053,73.85273696143435,0.0775746670042281 +7,388.22708634477254,1.8538365817817755,13.954333542866456,78.90602614456611,0.08288262499991106 +8,375.0914257577759,1.7911120347870875,13.482188770942804,76.2362413352104,0.08007829199777916 +9,386.50588680771034,1.8456176223670835,13.892467193817684,78.55619734475168,0.08251516600284958 +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.08194370799901662 +11,382.40578027890945,1.826039061932629,13.745094029820153,77.72286261789608,0.08163983400299912 +12,399.92533106121743,1.9096972745586873,14.374812212132664,81.2836603589434,0.08538008399773389 +13,392.779794759326,1.8755763771282281,14.117974911474299,79.8313508883124,0.08385458300472237 +14,385.4919894836888,1.840776126202716,13.856023931780445,78.35012566255561,0.08229870899958769 +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.07501683400187176 +16,363.50267089671735,1.7357741708039116,13.065645576596717,73.88086061549012,0.07760420799604617 +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.08242020800389582 +18,383.1556137558722,1.8296196176916975,13.772045849533868,77.8752640912048,0.0817999159989995 +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.08469695800158661 +20,377.54333380235107,1.8028202256580403,13.57031951677143,76.73458451391768,0.08060174999991432 +21,384.0859896272982,1.8340622876802746,13.805487038175158,78.06436028108223,0.08199854200211121 +22,377.9580697399782,1.8048006455720438,13.585226677578657,76.81887838698462,0.08069029200123623 +23,377.9699719544116,1.804857480247668,13.585654487682445,76.82129747745074,0.0806928330057417 +24,393.94456555862206,1.8811383144403726,14.159841130514804,80.06808716554386,0.0841032499956782 +25,367.03601569948387,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779 +26,423.4076839939201,2.021828669878938,15.218855805997823,86.05638029430169,0.09039333299733698 +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.08366920799744548 +28,397.13519183039904,1.8963739842569847,14.274524172407121,80.71657267537456,0.08478441699844552 +29,368.653767842532,1.7603713519134623,13.250795267130425,74.92780608780754,0.07870391600590665 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1638aa226 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..a41ddeb11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6e3825ebe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..35c8cf51f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ff527f927 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ddac069d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7e724452b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5d8ba4161 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5dd2faac1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7f86e08f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..421c26f19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d817dd2a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c04f709da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2bbb9238c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8e42472ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..4cfd379b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7726e3464 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4ba75b463 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fcf2f4c69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..04b9f4ef8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..5e48abc05 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2670.570409785425,2.9727932568403896,91.95617793350105,548.196437429938,0.53703412500181 +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161 +2,2649.982550200963,2.949875512406015,91.24727287251415,543.9703023551407,0.5328940420004074 +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248 +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252 +5,2691.5962946236164,2.9961985969269294,92.68016558808806,552.5124873344356,0.5412622919975547 +6,2666.77366683587,2.9685668444615825,91.82544407643523,547.417067992174,0.5362706249943585 +7,2661.481141542177,2.9626753751907864,91.64320570674421,546.3306545801257,0.5352063330064993 +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573 +9,2645.7442612379073,2.9451575851782787,91.10133519096405,543.1002953701787,0.5320417499970063 +10,2647.4012424367324,2.9470020834609416,91.15839028952777,543.4404291433817,0.5323749580056756 +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555 +12,2627.9855146860323,2.925389118559347,90.48984543139193,539.4549012786067,0.5284705829981249 +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745 +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839 +15,2687.243218261744,2.991352892051421,92.53027541368047,551.618917576943,0.5403869170040707 +16,2700.8745297979617,3.0065268304985318,92.9996445433984,554.4170600240664,0.5431280839984538 +17,2651.924020997127,2.95203669537653,91.31412384687175,544.3688342080854,0.5332844589938759 +18,2727.5859912015253,3.0362611719148456,93.91940456496147,559.9002062187241,0.548499583004741 +19,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431 +20,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277 +21,2647.5437980205056,2.9471607717608688,91.16329892873789,543.4696919790941,0.5324036249949131 +22,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085 +23,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703 +24,2656.7905403646746,2.9574539485248152,91.48169348639121,545.3678000358345,0.5342630839950289 +25,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377 +26,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278 +27,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112 +28,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322 +29,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e2e148abe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,390.8727972970198,1.8664702076173025,14.049430290064786,79.44375920058373,0.08344745799695374 +1,386.22836099457453,1.8442923992621634,13.882491878082467,78.49979103041318,0.08245591699960642 +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.08305974999530008 +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.08181070900172926 +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.08241912499943282 +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.08208370800275588 +6,363.36429915497683,1.7351134271161421,13.060671978656053,73.85273696143435,0.0775746670042281 +7,388.22708634477254,1.8538365817817755,13.954333542866456,78.90602614456611,0.08288262499991106 +8,375.0914257577759,1.7911120347870875,13.482188770942804,76.2362413352104,0.08007829199777916 +9,386.50588680771034,1.8456176223670835,13.892467193817684,78.55619734475168,0.08251516600284958 +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.08194370799901662 +11,382.40578027890945,1.826039061932629,13.745094029820153,77.72286261789608,0.08163983400299912 +12,399.92533106121743,1.9096972745586873,14.374812212132664,81.2836603589434,0.08538008399773389 +13,392.779794759326,1.8755763771282281,14.117974911474299,79.8313508883124,0.08385458300472237 +14,385.4919894836888,1.840776126202716,13.856023931780445,78.35012566255561,0.08229870899958769 +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.07501683400187176 +16,363.50267089671735,1.7357741708039116,13.065645576596717,73.88086061549012,0.07760420799604617 +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.08242020800389582 +18,383.1556137558722,1.8296196176916975,13.772045849533868,77.8752640912048,0.0817999159989995 +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.08469695800158661 +20,377.54333380235107,1.8028202256580403,13.57031951677143,76.73458451391768,0.08060174999991432 +21,384.0859896272982,1.8340622876802746,13.805487038175158,78.06436028108223,0.08199854200211121 +22,377.9580697399782,1.8048006455720438,13.585226677578657,76.81887838698462,0.08069029200123623 +23,377.9699719544116,1.804857480247668,13.585654487682445,76.82129747745074,0.0806928330057417 +24,393.94456555862206,1.8811383144403726,14.159841130514804,80.06808716554386,0.0841032499956782 +25,367.03601569948387,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779 +26,423.4076839939201,2.021828669878938,15.218855805997823,86.05638029430169,0.09039333299733698 +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.08366920799744548 +28,397.13519183039904,1.8963739842569847,14.274524172407121,80.71657267537456,0.08478441699844552 +29,368.653767842532,1.7603713519134623,13.250795267130425,74.92780608780754,0.07870391600590665 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..38bfda88a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8f61863aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8b764b350 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9d0c28af3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4fb51297e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ad37c7840 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ac5807039 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..befd16766 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aa593f47d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..848337866 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1e52a165f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..daef4bc31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1c365dbdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1c8420c62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7135f1dbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..bbb17534c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..099602dca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..80ad1f9b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9cf3fcfbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..89117e8a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..262e80589 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2672.382616871309,3.0753543154939074,90.65609677847257,547.1456460435247,0.5367295840042061 +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645 +2,2668.042158872389,3.070359354759644,90.50885402291473,546.2569773772376,0.5358578330051387 +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605 +4,2673.3815259950325,3.0765038512920504,90.68998309460913,547.3501634559595,0.5369302079998306 +5,2660.8570324091256,3.062090774678085,90.26511066224965,544.7858891296837,0.5344147499999963 +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095 +7,2691.9810406321994,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829 +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093 +9,2663.405459659043,3.0650234822519478,90.35156178116611,545.3076560597814,0.5349265840050066 +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977 +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532 +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001 +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807 +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968 +15,2656.6049568069725,3.0571975236255113,90.12086613122159,543.915315942417,0.5335607499946491 +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822 +17,2683.2200521488594,3.087825940305148,91.02373858812567,549.3645107708115,0.5389062079993892 +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233 +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017 +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186 +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897 +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739 +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244 +24,2660.4190835585628,3.0615867870084155,90.25025398224807,544.6962231494972,0.5343267909993301 +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568 +26,2652.9553415843593,3.0529975786573402,89.99705905781202,543.1680909506885,0.5328277499938849 +27,2692.647814864721,3.0986753263813163,91.34355962115359,551.2947580674934,0.5407997090005665 +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348 +29,2675.12895480308,3.0785147769326833,90.74926168523301,547.707933356893,0.5372811670022202 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6ebab02d7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328 +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.08160929199948441 +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.08355899999878602 +3,360.87270143569805,1.3071714929106786,13.5385618908606,73.38834238769952,0.07666912500280887 +4,405.9071867253503,1.4702977009456415,15.228083331222715,82.54671378166245,0.08623691599495942 +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.07991804199991748 +6,399.05240052015523,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465 +7,389.3215008612753,1.4102201842323039,14.60585190812029,79.17379034332791,0.08271320800122339 +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.08227333299873862 +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927 +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093 +11,387.03474113975176,1.4019369666122963,14.520061439913068,78.70874683980463,0.0822273750018212 +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.07885620900196955 +13,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.08280674999696203 +14,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.08294133299932582 +15,393.57240572328834,1.4256180284931532,14.765329580821943,80.03826931397275,0.08361633299500681 +16,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.08193645799474325 +17,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.08259070899657672 +18,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.08011233399884077 +19,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.08084224999765866 +20,367.54961451888613,1.3313569478045033,13.789054102260927,74.74618292673854,0.07808766700327396 +21,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166 +22,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.08101304099545814 +23,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.08166024999809451 +24,379.5121562547591,1.374688276213875,14.237842860786563,77.17892750743613,0.08062916599737946 +25,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.08278845799941337 +26,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.08037079199857544 +27,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335 +28,390.55686500013843,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1c7aea5b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..916c50141 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3a8b2512e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5a072bfb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..56cc6f7ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b0291c026 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..951bf6f7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..92a48a3bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ece078a1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d01871962 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8e064c8c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..142230356 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..63eb061ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fd4ed86a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4e5f66fd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..5f8ae04f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..05b8cc54b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e1202515e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..29b6b09ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..073a698e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..262e80589 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2672.382616871309,3.0753543154939074,90.65609677847257,547.1456460435247,0.5367295840042061 +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645 +2,2668.042158872389,3.070359354759644,90.50885402291473,546.2569773772376,0.5358578330051387 +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605 +4,2673.3815259950325,3.0765038512920504,90.68998309460913,547.3501634559595,0.5369302079998306 +5,2660.8570324091256,3.062090774678085,90.26511066224965,544.7858891296837,0.5344147499999963 +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095 +7,2691.9810406321994,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829 +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093 +9,2663.405459659043,3.0650234822519478,90.35156178116611,545.3076560597814,0.5349265840050066 +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977 +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532 +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001 +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807 +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968 +15,2656.6049568069725,3.0571975236255113,90.12086613122159,543.915315942417,0.5335607499946491 +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822 +17,2683.2200521488594,3.087825940305148,91.02373858812567,549.3645107708115,0.5389062079993892 +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233 +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017 +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186 +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897 +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739 +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244 +24,2660.4190835585628,3.0615867870084155,90.25025398224807,544.6962231494972,0.5343267909993301 +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568 +26,2652.9553415843593,3.0529975786573402,89.99705905781202,543.1680909506885,0.5328277499938849 +27,2692.647814864721,3.0986753263813163,91.34355962115359,551.2947580674934,0.5407997090005665 +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348 +29,2675.12895480308,3.0785147769326833,90.74926168523301,547.707933356893,0.5372811670022202 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..28b2852a2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328 +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.08160929199948441 +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.08355899999878602 +3,360.87270143569805,1.3071714929106786,13.5385618908606,73.38834238769952,0.07666912500280887 +4,405.9071867253503,1.4702977009456415,15.228083331222715,82.54671378166245,0.08623691599495942 +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.07991804199991748 +6,399.05240052015523,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465 +7,389.3215008612753,1.4102201842323039,14.60585190812029,79.17379034332791,0.08271320800122339 +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.08227333299873862 +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927 +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093 +11,387.03474113975176,1.4019369666122963,14.520061439913068,78.70874683980463,0.0822273750018212 +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.07885620900196955 +13,424.3344458168445,1.537045858068777,15.919403529998048,86.29414603157562,0.09015187499608146 +14,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.08280674999696203 +15,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.08294133299932582 +16,393.57240572328834,1.4256180284931532,14.765329580821943,80.03826931397275,0.08361633299500681 +17,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.08193645799474325 +18,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.08259070899657672 +19,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.08011233399884077 +20,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.08084224999765866 +21,367.54961451888613,1.3313569478045033,13.789054102260927,74.74618292673854,0.07808766700327396 +22,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166 +23,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.08101304099545814 +24,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.08166024999809451 +25,379.5121562547591,1.374688276213875,14.237842860786563,77.17892750743613,0.08062916599737946 +26,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.08278845799941337 +27,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.08037079199857544 +28,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335 +29,390.55686500013843,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1fa4aa847 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..9a1d7e1bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4b526e5c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..279b3f1ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6d04feffe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c2880d1ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7f1717153 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d8b835012 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ffaf8f437 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..054f9233f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cb5e99f4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..218f674c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b1ba223a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0a454bf8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..274bc1cee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..17f3992e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8167856fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b845c4fdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..04e21148f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..94f6ef3ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a2ab9fcf7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286 +1,1747.7432374054538,0.49845324766768334,0.0,475.82347022357055,0.5151742909947643 +2,1751.518133922168,0.49952984140759615,0.0,476.8511866076913,0.516286999998556 +3,1754.7691630242361,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799 +4,1751.2478613919254,0.49945276016501344,0.0,476.77760485352184,0.5162073329993291 +5,1736.266881541672,0.49518021148635954,0.0,472.6990298848788,0.5117914579968783 +6,1748.792095154288,0.49875238002308814,0.0,476.1090219700399,0.5154834580025636 +7,1753.1379269695713,0.4999918034897532,0.0,477.29217561131844,0.5167644589964766 +8,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888 +9,1761.7996142862125,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684 +10,1740.7653737649098,0.49646317342853213,0.0,473.92374535487676,0.5131174580019433 +11,1742.9166639927867,0.49707671755664606,0.0,474.5094345795743,0.5137515839960543 +12,1749.7232016130595,0.49901792992101707,0.0,476.36251590260287,0.5157579160004389 +13,1753.2353196533288,0.5000195797090965,0.0,477.31869079030355,0.5167931669930113 +14,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666 +15,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121 +16,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543 +17,1757.0913484891291,0.5011193122414096,0.0,478.36849546564963,0.517929790999915 +18,1744.1792476012558,0.49743680414523883,0.0,474.85317323704504,0.5141237499992712 +19,1749.1235756856784,0.49884691767820466,0.0,476.1992676156142,0.5155811670047115 +20,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054 +21,1746.9655037563957,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537 +22,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729 +23,1748.1721106452853,0.49857556154918303,0.0,475.94023105485013,0.5153007080007228 +24,1751.4983453162597,0.49952419773255813,0.0,476.8457991555,0.5162811670015799 +25,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782 +26,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758 +27,1772.4144105029475,0.5054894221417285,0.0,482.54020237649405,0.5224464999992051 +28,1751.7315782126657,0.49959071533776944,0.0,476.9092968614347,0.5163499159971252 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..49cac505b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,247.63589136398642,0.0,0.0,60.23755530694149,0.07709383300243644 +1,250.59815225213995,0.0,0.0,60.95812676005715,0.07801604199630674 +2,250.60497804678556,0.0,0.0,60.9597871380428,0.07801816699793562 +3,252.79538510278002,0.0,0.0,61.4926047577078,0.07870008299505571 +4,249.15924693826514,0.0,0.0,60.608112317689475,0.07756808299745899 +5,251.26333107971922,0.0,0.0,61.11993184491222,0.07822312500502449 +6,246.2273696215814,0.0,0.0,59.894931683637864,0.07665533299586968 +7,248.6098367504889,0.0,0.0,60.47446801277843,0.07739704100094968 +8,247.39203882310005,0.0,0.0,60.17823805354388,0.07701791699946625 +9,255.71776095388975,0.0,0.0,62.20347415547271,0.07960987500700867 +10,249.22121548631523,0.0,0.0,60.62318619821583,0.07758737500262214 +11,249.92976133402138,0.0,0.0,60.79554033256047,0.07780795900180237 +12,247.14791645978394,0.0,0.0,60.11885516570433,0.07694191699556541 +13,238.7495165766193,0.0,0.0,58.07594016390296,0.07432733300083783 +14,250.13774394519518,0.0,0.0,60.84613220748805,0.07787270800326951 +15,250.0574405131458,0.0,0.0,60.826598357193696,0.07784770799480611 +16,252.51927631291608,0.0,0.0,61.42544115549913,0.07861412499914877 +17,247.5537152778006,0.0,0.0,60.21756593258521,0.07706825000059325 +18,246.7884238216119,0.0,0.0,60.03140840039478,0.07682999999815365 +19,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801 +20,242.33265448766724,0.0,0.0,58.94754026556956,0.07544283299648669 +21,255.49612352817607,0.0,0.0,62.14956074003047,0.07954087499820162 +22,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822 +23,240.24168874114216,0.0,0.0,58.43891179452095,0.07479187499848194 +24,253.03723326850667,0.0,0.0,61.55143444583822,0.07877537499734899 +25,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577 +26,252.68015295270186,0.0,0.0,61.46457447915958,0.0786642090024543 +27,247.46926179214807,0.0,0.0,60.197022579661535,0.07704195800033631 +28,247.49469226985138,0.0,0.0,60.203208556172044,0.07704987499892013 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..aabf5f14d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3392b0005 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4b7c41e4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1914a58dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7be1e2de7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..22c986b61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d5e2880e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a6bcf4b23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..071f3097a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..543b3e805 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7ccb25875 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..834ce70c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fff117871 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..19442b663 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8f2bddd04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cbaa64817 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..aabd156ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f4e37b183 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286 +1,1747.7432374054538,0.49845324766768334,0.0,475.82347022357055,0.5151742909947643 +2,1751.518133922168,0.49952984140759615,0.0,476.8511866076913,0.516286999998556 +3,1754.7691630242361,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799 +4,1751.2478613919254,0.49945276016501344,0.0,476.77760485352184,0.5162073329993291 +5,1736.266881541672,0.49518021148635954,0.0,472.6990298848788,0.5117914579968783 +6,1748.792095154288,0.49875238002308814,0.0,476.1090219700399,0.5154834580025636 +7,1799.850348084657,0.5133141025053685,0.0,490.00964225162477,0.5305336660021567 +8,1753.1379269695713,0.4999918034897532,0.0,477.29217561131844,0.5167644589964766 +9,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888 +10,1761.7996142862125,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684 +11,1740.7653737649098,0.49646317342853213,0.0,473.92374535487676,0.5131174580019433 +12,1742.9166639927867,0.49707671755664606,0.0,474.5094345795743,0.5137515839960543 +13,1749.7232016130595,0.49901792992101707,0.0,476.36251590260287,0.5157579160004389 +14,1753.2353196533288,0.5000195797090965,0.0,477.31869079030355,0.5167931669930113 +15,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666 +16,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121 +17,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543 +18,1757.0913484891291,0.5011193122414096,0.0,478.36849546564963,0.517929790999915 +19,1744.1792476012558,0.49743680414523883,0.0,474.85317323704504,0.5141237499992712 +20,1749.1235756856784,0.49884691767820466,0.0,476.1992676156142,0.5155811670047115 +21,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054 +22,1746.9655037563957,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537 +23,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729 +24,1748.1721106452853,0.49857556154918303,0.0,475.94023105485013,0.5153007080007228 +25,1751.4983453162597,0.49952419773255813,0.0,476.8457991555,0.5162811670015799 +26,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782 +27,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758 +28,1772.4144105029475,0.5054894221417285,0.0,482.54020237649405,0.5224464999992051 +29,1751.7315782126657,0.49959071533776944,0.0,476.9092968614347,0.5163499159971252 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9e89d5b07 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,247.63589136398642,0.0,0.0,60.23755530694149,0.07709383300243644 +1,224.91484920266885,0.0,0.0,54.710650356753966,0.070020334002038 +2,250.59815225213995,0.0,0.0,60.95812676005715,0.07801604199630674 +3,250.60497804678556,0.0,0.0,60.9597871380428,0.07801816699793562 +4,252.79538510278002,0.0,0.0,61.4926047577078,0.07870008299505571 +5,249.15924693826514,0.0,0.0,60.608112317689475,0.07756808299745899 +6,251.26333107971922,0.0,0.0,61.11993184491222,0.07822312500502449 +7,246.2273696215814,0.0,0.0,59.894931683637864,0.07665533299586968 +8,248.6098367504889,0.0,0.0,60.47446801277843,0.07739704100094968 +9,247.39203882310005,0.0,0.0,60.17823805354388,0.07701791699946625 +10,255.71776095388975,0.0,0.0,62.20347415547271,0.07960987500700867 +11,249.22121548631523,0.0,0.0,60.62318619821583,0.07758737500262214 +12,249.92976133402138,0.0,0.0,60.79554033256047,0.07780795900180237 +13,247.14791645978394,0.0,0.0,60.11885516570433,0.07694191699556541 +14,238.7495165766193,0.0,0.0,58.07594016390296,0.07432733300083783 +15,250.13774394519518,0.0,0.0,60.84613220748805,0.07787270800326951 +16,250.0574405131458,0.0,0.0,60.826598357193696,0.07784770799480611 +17,252.51927631291608,0.0,0.0,61.42544115549913,0.07861412499914877 +18,247.5537152778006,0.0,0.0,60.21756593258521,0.07706825000059325 +19,246.7884238216119,0.0,0.0,60.03140840039478,0.07682999999815365 +20,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801 +21,242.33265448766724,0.0,0.0,58.94754026556956,0.07544283299648669 +22,255.49612352817607,0.0,0.0,62.14956074003047,0.07954087499820162 +23,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822 +24,240.24168874114216,0.0,0.0,58.43891179452095,0.07479187499848194 +25,253.03723326850667,0.0,0.0,61.55143444583822,0.07877537499734899 +26,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577 +27,252.68015295270186,0.0,0.0,61.46457447915958,0.0786642090024543 +28,247.46926179214807,0.0,0.0,60.197022579661535,0.07704195800033631 +29,247.49469226985138,0.0,0.0,60.203208556172044,0.07704987499892013 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..044196f93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bc12bd544 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..248a9cbef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b85039b76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bf757996f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f221eb336 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..cbe0af458 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3c780410b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..499441499 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..576c2e575 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7c6963d0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..08a4cedb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f55559d95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..473b8450e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..4c6de9dfb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3d52375b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cfe032631 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..bf1598432 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145 +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091 +2,1779.3928443092848,1.2935973032110895,0.0,478.6310021881031,0.5164371669961838 +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093 +4,1773.9815157607254,1.2896633321155033,0.0,477.17543288273623,0.5148666250024689 +5,1777.9932479026747,1.292579813372932,0.0,478.25453094798485,0.5160309589991812 +6,1778.2917123371087,1.2927967934449398,0.0,478.33481357462773,0.5161175829998683 +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995 +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622 +9,1754.4484513303544,1.2754630280334753,0.0,471.9213203723859,0.5091975000032107 +10,1775.5038586790918,1.2907700571987581,0.0,477.5849211635405,0.5153084579942515 +11,1786.1638599055125,1.2985197505184913,0.0,480.45230769184184,0.5184023340043495 +12,1780.7071642069795,1.2945527980477987,0.0,478.9845352776855,0.5168186250011786 +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725 +14,1780.1130985681841,1.2941209194377807,0.0,478.82474019197883,0.5166462080014753 +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305 +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493 +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456 +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645 +19,1790.2618712334158,1.3014989557115761,0.0,481.55461361328315,0.5195917090022704 +20,1815.5910112672468,1.3199129373937035,0.0,488.36778683567036,0.5269430419939454 +21,1782.178110375644,1.2956221583091028,0.0,479.38019857436797,0.5172455409992835 +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016 +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714 +24,1787.1828714348915,1.299260559705491,0.0,480.72640709103166,0.5186980840007891 +25,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483 +26,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777 +27,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738 +28,1783.0934704544181,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3986a452e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.54047775399582,0.0,0.0,58.536633705867764,0.07995150000351714 +1,243.291711687412,0.0,0.0,58.476841065841924,0.07986983300361317 +2,245.59519887146718,0.0,0.0,59.030500099373924,0.08062604099541204 +3,244.14360606550724,0.0,0.0,58.681599755758846,0.08014949999778764 +4,243.31671713606323,0.0,0.0,58.48285129790621,0.07987804200092796 +5,241.55492443854592,0.0,0.0,58.05939227067864,0.07929966599476757 +6,244.21963070926466,0.0,0.0,58.699872803283796,0.08017445800214773 +7,245.1422220915524,0.0,0.0,58.92162400580759,0.08047733399871504 +8,246.35114409687137,0.0,0.0,59.21219674860971,0.08087420900119469 +9,244.82669458259335,0.0,0.0,58.845784792604114,0.08037374999548774 +10,245.46624823405313,0.0,0.0,58.999505924204115,0.08058370800426928 +11,244.69279401281028,0.0,0.0,58.81360086704609,0.08032979199924739 +12,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065 +13,244.25085325559542,0.0,0.0,58.70737735765924,0.08018470800016075 +14,242.38435383784878,0.0,0.0,58.25875134798534,0.07957195799826877 +15,247.02788453109272,0.0,0.0,59.37485597995104,0.08109637499728706 +16,244.8240292446239,0.0,0.0,58.845144160238355,0.08037287499610102 +17,242.5058171758989,0.0,0.0,58.28794589910761,0.07961183299630648 +18,249.33936777338297,0.0,0.0,59.93043692123454,0.08185520800179802 +19,234.16127478349617,0.0,0.0,56.2822775766509,0.07687241699750302 +20,244.35937066953136,0.0,0.0,58.73346026662311,0.08022033300221665 +21,245.70321065155917,0.0,0.0,59.056461475755675,0.08066150000377093 +22,244.62806434791267,0.0,0.0,58.79804264559987,0.08030854200478643 +23,243.1429613426851,0.0,0.0,58.44108789444635,0.07982099999935599 +24,247.57986270663923,0.0,0.0,59.507527741842864,0.08127758299815468 +25,242.2868816000614,0.0,0.0,58.235323223295474,0.07953995899879374 +26,246.40584599254626,0.0,0.0,59.22534472655436,0.08089216699590907 +27,243.29945488439853,0.0,0.0,58.47870219664816,0.07987237500492483 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4fbb7ca9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..992de2f0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9d233eb46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2039615c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b8ff76a47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e3fb9d538 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e2b2e74ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3a7842f6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bb8af037a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..af4660a92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..53d0fc9e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4efa9b529 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6e59bb185 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..86d0fe30a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c4f79e43e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4926235b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a1c0bee17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..46d76e6d0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145 +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091 +2,1779.3928443092848,1.2935973032110895,0.0,478.6310021881031,0.5164371669961838 +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093 +4,1773.9815157607254,1.2896633321155033,0.0,477.17543288273623,0.5148666250024689 +5,1777.9932479026747,1.292579813372932,0.0,478.25453094798485,0.5160309589991812 +6,1778.2917123371087,1.2927967934449398,0.0,478.33481357462773,0.5161175829998683 +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995 +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622 +9,1754.4484513303544,1.2754630280334753,0.0,471.9213203723859,0.5091975000032107 +10,1775.5038586790918,1.2907700571987581,0.0,477.5849211635405,0.5153084579942515 +11,1786.1638599055125,1.2985197505184913,0.0,480.45230769184184,0.5184023340043495 +12,1780.7071642069795,1.2945527980477987,0.0,478.9845352776855,0.5168186250011786 +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725 +14,1780.1130985681841,1.2941209194377807,0.0,478.82474019197883,0.5166462080014753 +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305 +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493 +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456 +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645 +19,1790.2618712334158,1.3014989557115761,0.0,481.55461361328315,0.5195917090022704 +20,1815.5910112672468,1.3199129373937035,0.0,488.36778683567036,0.5269430419939454 +21,1782.178110375644,1.2956221583091028,0.0,479.38019857436797,0.5172455409992835 +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016 +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714 +24,1840.8703326220395,1.3382907014923673,0.0,495.16755955217593,0.5342799159989227 +25,1787.1828714348915,1.299260559705491,0.0,480.72640709103166,0.5186980840007891 +26,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483 +27,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777 +28,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738 +29,1783.0934704544181,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a6501b9a9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.54047775399582,0.0,0.0,58.536633705867764,0.07995150000351714 +1,243.291711687412,0.0,0.0,58.476841065841924,0.07986983300361317 +2,245.59519887146718,0.0,0.0,59.030500099373924,0.08062604099541204 +3,244.14360606550724,0.0,0.0,58.681599755758846,0.08014949999778764 +4,243.31671713606323,0.0,0.0,58.48285129790621,0.07987804200092796 +5,241.55492443854592,0.0,0.0,58.05939227067864,0.07929966599476757 +6,244.21963070926466,0.0,0.0,58.699872803283796,0.08017445800214773 +7,245.1422220915524,0.0,0.0,58.92162400580759,0.08047733399871504 +8,246.35114409687137,0.0,0.0,59.21219674860971,0.08087420900119469 +9,223.61325483398392,0.0,0.0,53.74698822433849,0.07340962500165915 +10,244.82669458259335,0.0,0.0,58.845784792604114,0.08037374999548774 +11,245.46624823405313,0.0,0.0,58.999505924204115,0.08058370800426928 +12,244.69279401281028,0.0,0.0,58.81360086704609,0.08032979199924739 +13,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065 +14,244.25085325559542,0.0,0.0,58.70737735765924,0.08018470800016075 +15,242.38435383784878,0.0,0.0,58.25875134798534,0.07957195799826877 +16,247.02788453109272,0.0,0.0,59.37485597995104,0.08109637499728706 +17,244.8240292446239,0.0,0.0,58.845144160238355,0.08037287499610102 +18,242.5058171758989,0.0,0.0,58.28794589910761,0.07961183299630648 +19,249.33936777338297,0.0,0.0,59.93043692123454,0.08185520800179802 +20,234.16127478349617,0.0,0.0,56.2822775766509,0.07687241699750302 +21,244.35937066953136,0.0,0.0,58.73346026662311,0.08022033300221665 +22,245.70321065155917,0.0,0.0,59.056461475755675,0.08066150000377093 +23,244.62806434791267,0.0,0.0,58.79804264559987,0.08030854200478643 +24,243.1429613426851,0.0,0.0,58.44108789444635,0.07982099999935599 +25,247.57986270663923,0.0,0.0,59.507527741842864,0.08127758299815468 +26,242.2868816000614,0.0,0.0,58.235323223295474,0.07953995899879374 +27,246.40584599254626,0.0,0.0,59.22534472655436,0.08089216699590907 +28,225.71531849657757,0.0,0.0,54.252233725121116,0.07409970799926668 +29,243.29945488439853,0.0,0.0,58.47870219664816,0.07987237500492483 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5e30f3cdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a82a46b9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ccc8359aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..25750d7cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..921cd87c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..819185ce8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ab2bd10f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bc7b55347 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..141d13567 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0d922c0ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3b93039f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..123418f90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..901da4b3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..562713d55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1c8766939 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5539c5f07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e711c6a23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..aa10248b7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1776.691736185956,0.10018373416081551,0.0,477.44228243239314,0.5172290420014178 +1,1770.7935195244447,0.09985114671302998,0.0,475.8572815187299,0.5155119580012979 +2,1771.6266559565545,0.0998981254416041,0.0,476.08116647953796,0.5157544999965467 +3,1771.6970738633242,0.09990209615228413,0.0,476.10008956306876,0.5157749999998487 +4,1767.255164562743,0.09965162666932746,0.0,474.9064354971249,0.5144818750050035 +5,1778.5290421222858,0.10028733579623061,0.0,477.93601329290306,0.5177639169996837 +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503 +7,1775.7415239627014,0.10013015378621704,0.0,477.1869362271816,0.5169524169978104 +8,1770.133281321143,0.09981391733480122,0.0,475.6798587118843,0.5153197499967064 +9,1767.617129727283,0.09967203708779297,0.0,475.0037047480587,0.5145872500070254 +10,1762.247909439489,0.09936927858050235,0.0,473.560858621814,0.5130241669976385 +11,1773.6424386464917,0.10001179098809232,0.0,476.6228585855853,0.5163413330010371 +12,1769.1378436654543,0.09975778679766861,0.0,475.41235928208937,0.5150299590022769 +13,1777.9878823036338,0.10025682098586361,0.0,477.7905898782973,0.5176063749968307 +14,1755.9015670313543,0.09901142230878077,0.0,471.85543491621286,0.5111766249974607 +15,1776.3105898766091,0.10016224215983736,0.0,477.3398587197316,0.5171180830002413 +16,1787.7577916465848,0.10080772465725155,0.0,480.41601314157515,0.5204505829970003 +17,1773.7231650386664,0.10001634297156174,0.0,476.64455182147276,0.5163648340021609 +18,1769.8345789266932,0.09979707416461628,0.0,475.599589777173,0.5152327920004609 +19,1774.2379885508392,0.10004537273560735,0.0,476.78289800032604,0.5165147090010578 +20,1766.4500819098491,0.09960622983157993,0.0,474.69008930069947,0.5142475000029663 +21,1771.0441351066002,0.09986527837377217,0.0,475.92462830327355,0.515584917004162 +22,1766.2073393898709,0.09959254211547494,0.0,474.62485820831506,0.5141768329995102 +23,1761.5407248569813,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116 +24,1766.0573458461463,0.09958408430987799,0.0,474.5845511261085,0.5141331670020008 +25,1775.480603344183,0.10011544104716931,0.0,477.11682021712653,0.5168764580012066 +26,1790.8488796480174,0.10098202430208922,0.0,481.24666714898984,0.5213504580024164 +27,1777.4756350505515,0.10022793649139437,0.0,477.6529360058218,0.5174572499963688 +28,1768.5382885241104,0.09972397920366016,0.0,475.25124355824306,0.5148554170009447 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ce1572ee6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,258.05412357567263,0.0,0.0,60.88917522572051,0.07766466699831653 +1,257.9959768285465,0.0,0.0,60.87545520673569,0.07764716699603014 +2,256.0814273269359,0.0,0.0,60.42370757152421,0.07707095899968408 +3,258.3119063629601,0.0,0.0,60.9500003777771,0.07774225000321167 +4,254.87501871078396,0.0,0.0,60.13904935872431,0.07670787499955622 +5,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612 +6,256.1942552713655,0.0,0.0,60.45032989549073,0.07710491600300884 +7,269.4083809346708,0.0,0.0,63.568269658742544,0.08108187500329223 +8,256.7634055100046,0.0,0.0,60.584623772023555,0.07727620899822796 +9,265.09209197392056,0.0,0.0,62.54981945452058,0.07978283300326439 +10,247.3756110807905,0.0,0.0,58.369526210074156,0.07445083299535327 +11,258.04927578522654,0.0,0.0,60.88803136505345,0.07766320799419191 +12,256.90531014005614,0.0,0.0,60.61810688697954,0.07731891699950211 +13,259.4555995489818,0.0,0.0,61.21986056773728,0.07808645899785915 +14,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601 +15,255.65556727103046,0.0,0.0,60.32322373810831,0.0769427910054219 +16,257.38764897090465,0.0,0.0,60.73191717291009,0.07746408299863106 +17,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146 +18,236.34739083788008,0.0,0.0,55.7673618830953,0.07113175000267802 +19,255.39654180892845,0.0,0.0,60.26210537064603,0.07686483400175348 +20,256.04875219815136,0.0,0.0,60.41599770967616,0.07706112500454765 +21,255.4578716622009,0.0,0.0,60.276576459620436,0.0768832920002751 +22,258.9686854110115,0.0,0.0,61.10497071495777,0.07793991600192385 +23,258.4434309763645,0.0,0.0,60.98103427532196,0.07778183400660055 +24,257.6428035065198,0.0,0.0,60.792122175695674,0.07754087499779416 +25,258.0723949714545,0.0,0.0,60.893486453938706,0.07767016600701027 +26,257.6979033528984,0.0,0.0,60.80512326304344,0.07755745799659053 +27,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646 +28,236.55450287180864,0.0,0.0,55.81623101469642,0.07119408300059149 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2c2924192 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e44e0183d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c7938fb18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0cd8f3f7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b0738d702 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1f6366962 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7b3ed5412 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..138186f50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4b8627eac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1f3731fe2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ed5f2378f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..acbe7cfaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..55bb71d77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..40f38a0a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5efc49b24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..66082ae72 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b8a9c8978 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d49eff281 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1776.691736185956,0.10018373416081551,0.0,477.44228243239314,0.5172290420014178 +1,1770.7935195244447,0.09985114671302998,0.0,475.8572815187299,0.5155119580012979 +2,1771.6266559565545,0.0998981254416041,0.0,476.08116647953796,0.5157544999965467 +3,1771.6970738633242,0.09990209615228413,0.0,476.10008956306876,0.5157749999998487 +4,1767.255164562743,0.09965162666932746,0.0,474.9064354971249,0.5144818750050035 +5,1778.5290421222858,0.10028733579623061,0.0,477.93601329290306,0.5177639169996837 +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503 +7,1775.7415239627014,0.10013015378621704,0.0,477.1869362271816,0.5169524169978104 +8,1770.133281321143,0.09981391733480122,0.0,475.6798587118843,0.5153197499967064 +9,1767.617129727283,0.09967203708779297,0.0,475.0037047480587,0.5145872500070254 +10,1762.247909439489,0.09936927858050235,0.0,473.560858621814,0.5130241669976385 +11,1773.6424386464917,0.10001179098809232,0.0,476.6228585855853,0.5163413330010371 +12,1769.1378436654543,0.09975778679766861,0.0,475.41235928208937,0.5150299590022769 +13,1777.9878823036338,0.10025682098586361,0.0,477.7905898782973,0.5176063749968307 +14,1755.9015670313543,0.09901142230878077,0.0,471.85543491621286,0.5111766249974607 +15,1776.3105898766091,0.10016224215983736,0.0,477.3398587197316,0.5171180830002413 +16,1787.7577916465848,0.10080772465725155,0.0,480.41601314157515,0.5204505829970003 +17,1773.7231650386664,0.10001634297156174,0.0,476.64455182147276,0.5163648340021609 +18,1769.8345789266932,0.09979707416461628,0.0,475.599589777173,0.5152327920004609 +19,1774.2379885508392,0.10004537273560735,0.0,476.78289800032604,0.5165147090010578 +20,1766.4500819098491,0.09960622983157993,0.0,474.69008930069947,0.5142475000029663 +21,1771.0441351066002,0.09986527837377217,0.0,475.92462830327355,0.515584917004162 +22,1766.2073393898709,0.09959254211547494,0.0,474.62485820831506,0.5141768329995102 +23,1761.5407248569813,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116 +24,1766.0573458461463,0.09958408430987799,0.0,474.5845511261085,0.5141331670020008 +25,1775.480603344183,0.10011544104716931,0.0,477.11682021712653,0.5168764580012066 +26,1790.8488796480174,0.10098202430208922,0.0,481.24666714898984,0.5213504580024164 +27,1777.4756350505515,0.10022793649139437,0.0,477.6529360058218,0.5174572499963688 +28,1768.5382885241104,0.09972397920366016,0.0,475.25124355824306,0.5148554170009447 +29,1803.8391230015989,0.10171451551613249,0.0,484.7374761113821,0.5251321670002653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e2a57ea7c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,258.05412357567263,0.0,0.0,60.88917522572051,0.07766466699831653 +1,257.9959768285465,0.0,0.0,60.87545520673569,0.07764716699603014 +2,256.0814273269359,0.0,0.0,60.42370757152421,0.07707095899968408 +3,258.3119063629601,0.0,0.0,60.9500003777771,0.07774225000321167 +4,254.87501871078396,0.0,0.0,60.13904935872431,0.07670787499955622 +5,218.53039916041607,0.0,0.0,51.56335261088469,0.06576949999725912 +6,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612 +7,256.1942552713655,0.0,0.0,60.45032989549073,0.07710491600300884 +8,269.4083809346708,0.0,0.0,63.568269658742544,0.08108187500329223 +9,256.7634055100046,0.0,0.0,60.584623772023555,0.07727620899822796 +10,265.09209197392056,0.0,0.0,62.54981945452058,0.07978283300326439 +11,247.3756110807905,0.0,0.0,58.369526210074156,0.07445083299535327 +12,258.04927578522654,0.0,0.0,60.88803136505345,0.07766320799419191 +13,256.90531014005614,0.0,0.0,60.61810688697954,0.07731891699950211 +14,259.4555995489818,0.0,0.0,61.21986056773728,0.07808645899785915 +15,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601 +16,255.65556727103046,0.0,0.0,60.32322373810831,0.0769427910054219 +17,257.38764897090465,0.0,0.0,60.73191717291009,0.07746408299863106 +18,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146 +19,236.34739083788008,0.0,0.0,55.7673618830953,0.07113175000267802 +20,255.39654180892845,0.0,0.0,60.26210537064603,0.07686483400175348 +21,256.04875219815136,0.0,0.0,60.41599770967616,0.07706112500454765 +22,255.4578716622009,0.0,0.0,60.276576459620436,0.0768832920002751 +23,258.9686854110115,0.0,0.0,61.10497071495777,0.07793991600192385 +24,258.4434309763645,0.0,0.0,60.98103427532196,0.07778183400660055 +25,257.6428035065198,0.0,0.0,60.792122175695674,0.07754087499779416 +26,258.0723949714545,0.0,0.0,60.893486453938706,0.07767016600701027 +27,257.6979033528984,0.0,0.0,60.80512326304344,0.07755745799659053 +28,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646 +29,236.55450287180864,0.0,0.0,55.81623101469642,0.07119408300059149 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..876125a95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..36b45d727 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2b0908dd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..18965a789 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..25320517f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b94f4d504 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..51302ec62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5297849cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5fdc64777 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..49a1b0b60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..acbe00e58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9cfaf7dda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cb9b8f085 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e7664e2f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..56c06a342 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..886f6df2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c65d9802b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..6b47d3953 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881 +1,1809.1855259194288,0.265466227826992,0.0,478.86789172141516,0.515494541003136 +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585 +3,1810.0879382553949,0.26559864100150693,0.0,479.10674853659333,0.5157516670005862 +4,1839.304281081116,0.26988562661449583,0.0,486.83993470922366,0.5240763330002665 +5,1809.758034772763,0.26555023345467077,0.0,479.0194273730442,0.5156576669978676 +6,1808.8649860767891,0.26541919423000887,0.0,478.78304899165727,0.5154032089994871 +7,1813.8231895913323,0.26614672358780395,0.0,480.09542101194984,0.5168159589957213 +8,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819 +9,1809.8633196014086,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656 +10,1813.954652607598,0.26616601347849056,0.0,480.13021756351213,0.5168534169933992 +11,1807.167211573315,0.26517007561465344,0.0,478.33367014938295,0.5149194590048864 +12,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542 +13,1823.9124415236115,0.26762714425980616,0.0,482.76591485165784,0.5196907080025994 +14,1819.837052677855,0.26702915246277287,0.0,481.6872123987844,0.5185295000046608 +15,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613 +16,1808.2260893946043,0.26532544735343877,0.0,478.61394134468435,0.5152211669992539 +17,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068 +18,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739 +19,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421 +20,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996 +21,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448 +22,1802.5880460667881,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584 +23,1837.0768465398767,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271 +24,1807.5499030880778,0.26522622887886543,0.0,478.4349636188634,0.5150284999981523 +25,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453 +26,1809.485601206097,0.26551025860950417,0.0,478.94731774921934,0.5155800420034211 +27,1807.857580198864,0.26527137509566795,0.0,478.51640175069804,0.5151161670000874 +28,1807.3931392937275,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6d5da3478 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.4849858868351,0.03325453615373003,0.0,59.824910540560325,0.07718216699868208 +1,243.26148489011845,0.03295333038338099,0.0,59.2830413597024,0.07648308300122153 +2,227.93765961629927,0.03087749385211315,0.0,55.54861143995156,0.07166516700090142 +3,250.7231538165253,0.03396412270611288,0.0,61.101456748297075,0.07882908300234703 +4,252.5889686193737,0.03421687464364315,0.0,61.55615748391402,0.07941570800176123 +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.08279966699774377 +6,226.94041043538476,0.03074240184711254,0.0,55.30558092295546,0.0713516250034445 +7,242.6599554225411,0.032871844408363736,0.0,59.13644809064636,0.07629395800177008 +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.07666929199331207 +9,247.36392063917748,0.033509065380544226,0.0,60.28280861959906,0.07777291700040223 +10,248.7334295032324,0.03369458541089575,0.0,60.61655915420145,0.0782035000011092 +11,247.311043310453,0.033501902372047275,0.0,60.26992236731305,0.07775629200477852 +12,226.72783872430568,0.030713605896004564,0.0,55.25377700691221,0.07128479099628748 +13,246.69360768372263,0.03341826167484728,0.0,60.119452753050254,0.07756216599955224 +14,247.48014585109556,0.03352480978746892,0.0,60.311132807656584,0.07780945900594816 +15,246.05219040943203,0.03333137231230453,0.0,59.963138789835845,0.07736049999948591 +16,249.95252500188107,0.03385972974829058,0.0,60.913653817174755,0.07858679200580809 +17,250.64152074542082,0.03395306431121929,0.0,61.081562695883505,0.07880341700365534 +18,246.52755533185461,0.03339576745216129,0.0,60.078985646438156,0.07750995799869997 +19,244.4563283517981,0.03311518942722814,0.0,59.57422577958342,0.07685874999879161 +20,247.40791776784516,0.03351502543590425,0.0,60.29353075919174,0.07778675000008661 +21,250.54358396127301,0.033939797339646846,0.0,61.05769541402468,0.07877262500551296 +22,245.99334947150876,0.03332340144561213,0.0,59.948799200656225,0.07734200000413693 +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.07844391700200504 +24,244.25754136307833,0.033088260818623455,0.0,59.5257812127036,0.07679625000309898 +25,245.0430139869781,0.033194664587778124,0.0,59.717201593412845,0.07704320799530251 +26,249.4024129823822,0.033785209019558685,0.0,60.779591026186075,0.07841383300547022 +27,246.43412861712733,0.03338311143553608,0.0,60.056217472529404,0.07748058399738511 +28,257.6022464065648,0.03489599653299442,0.0,62.77789776285696,0.08099191699875519 +29,247.07528191230236,0.03346996503824199,0.0,60.21246710379734,0.07768216700060293 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..eb17ad2f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bf22f3019 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..34c1369be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..438349a1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..19ebfa96a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..27a089393 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7aacdbb8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7be7d2fe3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d076fb56f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..47eb71a7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1dbba73cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6b37d6241 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ce9637b36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e5319d56d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..792048039 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c127086cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..383f98658 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4557dc9c3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881 +1,1809.1855259194288,0.265466227826992,0.0,478.86789172141516,0.515494541003136 +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585 +3,1862.4952107043603,0.2732884885756843,0.0,492.97827232946247,0.5306841669953428 +4,1810.0879382553949,0.26559864100150693,0.0,479.10674853659333,0.5157516670005862 +5,1839.304281081116,0.26988562661449583,0.0,486.83993470922366,0.5240763330002665 +6,1809.758034772763,0.26555023345467077,0.0,479.0194273730442,0.5156576669978676 +7,1808.8649860767891,0.26541919423000887,0.0,478.78304899165727,0.5154032089994871 +8,1813.8231895913323,0.26614672358780395,0.0,480.09542101194984,0.5168159589957213 +9,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819 +10,1809.8633196014086,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656 +11,1813.954652607598,0.26616601347849056,0.0,480.13021756351213,0.5168534169933992 +12,1807.167211573315,0.26517007561465344,0.0,478.33367014938295,0.5149194590048864 +13,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542 +14,1823.9124415236115,0.26762714425980616,0.0,482.76591485165784,0.5196907080025994 +15,1819.837052677855,0.26702915246277287,0.0,481.6872123987844,0.5185295000046608 +16,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613 +17,1808.2260893946043,0.26532544735343877,0.0,478.61394134468435,0.5152211669992539 +18,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068 +19,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739 +20,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421 +21,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996 +22,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448 +23,1802.5880460667881,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584 +24,1837.0768465398767,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271 +25,1807.5499030880778,0.26522622887886543,0.0,478.4349636188634,0.5150284999981523 +26,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453 +27,1809.485601206097,0.26551025860950417,0.0,478.94731774921934,0.5155800420034211 +28,1807.857580198864,0.26527137509566795,0.0,478.51640175069804,0.5151161670000874 +29,1807.3931392937275,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6d5da3478 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.4849858868351,0.03325453615373003,0.0,59.824910540560325,0.07718216699868208 +1,243.26148489011845,0.03295333038338099,0.0,59.2830413597024,0.07648308300122153 +2,227.93765961629927,0.03087749385211315,0.0,55.54861143995156,0.07166516700090142 +3,250.7231538165253,0.03396412270611288,0.0,61.101456748297075,0.07882908300234703 +4,252.5889686193737,0.03421687464364315,0.0,61.55615748391402,0.07941570800176123 +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.08279966699774377 +6,226.94041043538476,0.03074240184711254,0.0,55.30558092295546,0.0713516250034445 +7,242.6599554225411,0.032871844408363736,0.0,59.13644809064636,0.07629395800177008 +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.07666929199331207 +9,247.36392063917748,0.033509065380544226,0.0,60.28280861959906,0.07777291700040223 +10,248.7334295032324,0.03369458541089575,0.0,60.61655915420145,0.0782035000011092 +11,247.311043310453,0.033501902372047275,0.0,60.26992236731305,0.07775629200477852 +12,226.72783872430568,0.030713605896004564,0.0,55.25377700691221,0.07128479099628748 +13,246.69360768372263,0.03341826167484728,0.0,60.119452753050254,0.07756216599955224 +14,247.48014585109556,0.03352480978746892,0.0,60.311132807656584,0.07780945900594816 +15,246.05219040943203,0.03333137231230453,0.0,59.963138789835845,0.07736049999948591 +16,249.95252500188107,0.03385972974829058,0.0,60.913653817174755,0.07858679200580809 +17,250.64152074542082,0.03395306431121929,0.0,61.081562695883505,0.07880341700365534 +18,246.52755533185461,0.03339576745216129,0.0,60.078985646438156,0.07750995799869997 +19,244.4563283517981,0.03311518942722814,0.0,59.57422577958342,0.07685874999879161 +20,247.40791776784516,0.03351502543590425,0.0,60.29353075919174,0.07778675000008661 +21,250.54358396127301,0.033939797339646846,0.0,61.05769541402468,0.07877262500551296 +22,245.99334947150876,0.03332340144561213,0.0,59.948799200656225,0.07734200000413693 +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.07844391700200504 +24,244.25754136307833,0.033088260818623455,0.0,59.5257812127036,0.07679625000309898 +25,245.0430139869781,0.033194664587778124,0.0,59.717201593412845,0.07704320799530251 +26,249.4024129823822,0.033785209019558685,0.0,60.779591026186075,0.07841383300547022 +27,246.43412861712733,0.03338311143553608,0.0,60.056217472529404,0.07748058399738511 +28,257.6022464065648,0.03489599653299442,0.0,62.77789776285696,0.08099191699875519 +29,247.07528191230236,0.03346996503824199,0.0,60.21246710379734,0.07768216700060293 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..209f825fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4780a4b61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6a5f7a2fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0c7b67ba7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d15f796e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2264f8b9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1904eef56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7d8a4f4cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..89c9f27e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..12c4f510d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..155a592ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..265f2a1a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..181ad3919 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9ec975022 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3274dd7ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fc2262ce1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f8d717263 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..dd08ad34c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1851.2929834808735,1.5257070903913579,0.0,489.00607477143456,0.5257506659982027 +1,1815.007070744064,1.4958027614505225,0.0,479.42140507557525,0.5154457909957273 +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323 +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766 +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256 +5,1815.024824844166,1.4958173931466672,0.0,479.42609469676404,0.5154508330015233 +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143 +7,1811.0336499636062,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081 +8,1817.0066970315174,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951 +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976 +10,1810.1798942357498,1.4918245378570543,0.0,478.1463402113843,0.5140749159982079 +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977 +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256 +13,1812.1079196707988,1.4934134825043668,0.0,478.65561462578853,0.5146224579948466 +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482 +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739 +16,1814.2052567911394,1.4951419620826927,0.0,479.20961153597057,0.5152180829973076 +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969 +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826 +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299 +20,1817.835656233042,1.4981338851434334,0.0,480.16855612052757,0.5162490840011742 +21,1813.5350490943126,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173 +22,1814.531999481375,1.4954112407131819,0.0,479.2959183290272,0.5153108750018873 +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478 +24,1821.465316194058,1.5011251987753897,0.0,481.1273053763877,0.5172798749990761 +25,1816.5738770980402,1.4970940144206695,0.0,479.83526599976256,0.5158907500008354 +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959 +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901 +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062 +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..047449ec8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.07767108300322434 +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.07616529200458899 +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.07739274999767076 +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.07787558299605735 +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986 +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.07793525000306545 +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.07734587500453927 +7,342.3226982986895,22.968494031768266,0.0,74.03884179294928,0.07765029199799756 +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.07893624999996973 +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.07773016700230073 +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.07753820899961283 +11,335.4773722078628,22.509199827077598,0.0,72.55830889817277,0.0760975419980241 +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.07866562500566943 +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.07518016699759755 +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.07941262499662116 +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.07796858400251949 +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.07836745900567621 +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854 +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.07720833300118102 +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402 +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902 +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.07204349999665283 +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.08120087499992223 +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.08081400000082795 +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.07953591700061224 +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.08325966599659296 +26,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141 +27,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.08179283299978124 +28,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f3bcbd272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..483ad846c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..12aea5860 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..820e3b5e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7e6aa3c3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ca1f73ca7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fcd794e69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..013809239 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..18507f168 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8e09fc7b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b5b890087 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e7dcc1203 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..20b12b89f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a1625eee0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3ac7f5fb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..268faf581 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1a0f2475f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dd08ad34c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1851.2929834808735,1.5257070903913579,0.0,489.00607477143456,0.5257506659982027 +1,1815.007070744064,1.4958027614505225,0.0,479.42140507557525,0.5154457909957273 +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323 +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766 +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256 +5,1815.024824844166,1.4958173931466672,0.0,479.42609469676404,0.5154508330015233 +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143 +7,1811.0336499636062,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081 +8,1817.0066970315174,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951 +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976 +10,1810.1798942357498,1.4918245378570543,0.0,478.1463402113843,0.5140749159982079 +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977 +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256 +13,1812.1079196707988,1.4934134825043668,0.0,478.65561462578853,0.5146224579948466 +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482 +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739 +16,1814.2052567911394,1.4951419620826927,0.0,479.20961153597057,0.5152180829973076 +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969 +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826 +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299 +20,1817.835656233042,1.4981338851434334,0.0,480.16855612052757,0.5162490840011742 +21,1813.5350490943126,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173 +22,1814.531999481375,1.4954112407131819,0.0,479.2959183290272,0.5153108750018873 +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478 +24,1821.465316194058,1.5011251987753897,0.0,481.1273053763877,0.5172798749990761 +25,1816.5738770980402,1.4970940144206695,0.0,479.83526599976256,0.5158907500008354 +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959 +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901 +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062 +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..01528c73a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.07767108300322434 +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.07616529200458899 +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.07739274999767076 +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.07787558299605735 +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986 +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.07793525000306545 +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.07734587500453927 +7,342.3226982986895,22.968494031768266,0.0,74.03884179294928,0.07765029199799756 +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.07893624999996973 +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.07773016700230073 +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.07753820899961283 +11,335.4773722078628,22.509199827077598,0.0,72.55830889817277,0.0760975419980241 +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.07866562500566943 +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.07518016699759755 +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.07941262499662116 +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.07796858400251949 +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.07836745900567621 +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854 +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.07720833300118102 +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402 +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902 +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.07204349999665283 +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.08120087499992223 +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.08081400000082795 +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.07953591700061224 +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.08325966599659296 +26,404.5004296622107,27.140372960129103,0.0,87.48687558780871,0.09175429100287147 +27,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141 +28,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.08179283299978124 +29,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..60181ab0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..24aac353f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e4acb83f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3270323c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d233271c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ad2ebae13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..71e8e0927 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0dae5e158 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..61d17b339 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1c7513291 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a436965f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..42df89366 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2ec1cd621 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4bfc03764 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f69d489ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1383dc00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f26c94a4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..579017557 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044 +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938 +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633 +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316 +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086 +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983 +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794 +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901 +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509 +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675 +10,2646.7951633551966,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344 +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734 +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329 +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119 +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925 +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591 +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422 +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537 +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056 +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665 +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854 +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703 +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205 +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758 +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439 +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776 +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591 +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822 +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663 +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9afbac53c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.08385145800275495 +1,398.71761877597555,1.608272748003935,12.832676301781397,78.77185896994273,0.0833907080013887 +2,393.4009922947646,1.5868275319452692,12.661561348646625,77.72149015840266,0.08227875000011409 +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.08023245799995493 +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.08153087500249967 +5,397.77390581907474,1.6044661747324023,12.802303019218959,78.58541618324745,0.08319333299732534 +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.08353341699694283 +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.08277216699934797 +8,402.18726455613677,1.6222679578734929,12.944346413865578,79.45733268667878,0.08411637500103097 +9,411.01636787259105,1.6578811477213757,13.228509991193476,81.20163704776988,0.08596295800089138 +10,398.47576527691933,1.60729720447833,12.824892277400009,78.72407766101153,0.08334012499835808 +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.08534691600652877 +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.08478612500039162 +13,397.95758979573526,1.6052070848903608,12.808214864854337,78.62170534535913,0.08323175000259653 +14,397.93687230301947,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143 +15,378.44542169605904,1.5265025412950282,12.180218194083245,74.7668223871794,0.0791508329930366 +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.08189924999896903 +17,394.47718603434674,1.5911684814830793,12.696198508500403,77.93410624930665,0.08250383300037356 +18,390.30130111050465,1.5743245759079179,12.561798178598595,77.10910579082322,0.08163045800029067 +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.08531987499736715 +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.08320037499652244 +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.08218849999684608 +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.08170537499972852 +23,408.19758399217125,1.6465112631616992,13.137787787311058,80.64474957694073,0.08537341700139223 +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.08665187500446336 +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.07984037500136765 +26,374.92099637623625,1.5122863719377597,12.066785009420041,74.07052625886818,0.0784137090013246 +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.08416229199792724 +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.08403987500059884 +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.08197783400100889 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f3319ef58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cca936f1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c5b574505 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b059c657b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..30426fc7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6b741e21a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..11aef144c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d3b443c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..38c471e87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4de259735 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ec017bf43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a08e8e01d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..769cb39e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dbce37c4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d8a00e676 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..77254c9ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c43062d1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f13a0a7ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1d55ff272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f54237287 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..579017557 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044 +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938 +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633 +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316 +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086 +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983 +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794 +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901 +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509 +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675 +10,2646.7951633551966,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344 +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734 +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329 +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119 +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925 +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591 +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422 +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537 +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056 +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665 +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854 +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703 +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205 +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758 +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439 +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776 +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591 +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822 +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663 +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9afbac53c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.08385145800275495 +1,398.71761877597555,1.608272748003935,12.832676301781397,78.77185896994273,0.0833907080013887 +2,393.4009922947646,1.5868275319452692,12.661561348646625,77.72149015840266,0.08227875000011409 +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.08023245799995493 +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.08153087500249967 +5,397.77390581907474,1.6044661747324023,12.802303019218959,78.58541618324745,0.08319333299732534 +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.08353341699694283 +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.08277216699934797 +8,402.18726455613677,1.6222679578734929,12.944346413865578,79.45733268667878,0.08411637500103097 +9,411.01636787259105,1.6578811477213757,13.228509991193476,81.20163704776988,0.08596295800089138 +10,398.47576527691933,1.60729720447833,12.824892277400009,78.72407766101153,0.08334012499835808 +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.08534691600652877 +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.08478612500039162 +13,397.95758979573526,1.6052070848903608,12.808214864854337,78.62170534535913,0.08323175000259653 +14,397.93687230301947,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143 +15,378.44542169605904,1.5265025412950282,12.180218194083245,74.7668223871794,0.0791508329930366 +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.08189924999896903 +17,394.47718603434674,1.5911684814830793,12.696198508500403,77.93410624930665,0.08250383300037356 +18,390.30130111050465,1.5743245759079179,12.561798178598595,77.10910579082322,0.08163045800029067 +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.08531987499736715 +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.08320037499652244 +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.08218849999684608 +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.08170537499972852 +23,408.19758399217125,1.6465112631616992,13.137787787311058,80.64474957694073,0.08537341700139223 +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.08665187500446336 +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.07984037500136765 +26,374.92099637623625,1.5122863719377597,12.066785009420041,74.07052625886818,0.0784137090013246 +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.08416229199792724 +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.08403987500059884 +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.08197783400100889 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f3319ef58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cca936f1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c5b574505 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b059c657b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..30426fc7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6b741e21a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..11aef144c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d3b443c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..38c471e87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4de259735 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ec017bf43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a08e8e01d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..769cb39e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dbce37c4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d8a00e676 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..77254c9ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c43062d1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f13a0a7ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1d55ff272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f54237287 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..31f2eb760 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069 +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925 +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788 +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137 +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639 +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815 +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394 +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472 +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863 +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402 +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608 +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669 +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245 +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812 +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655 +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166 +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059 +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509 +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761 +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521 +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396 +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608 +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393 +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749 +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709 +25,2647.2209247514334,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588 +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705 +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554 +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974 +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..08af48157 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,261.69304748056817,0.0,0.0,60.19573731393214,0.07995804099482484 +1,250.04241406090986,0.0,0.0,57.51580952974925,0.07639829099935014 +2,265.34640271204813,0.0,0.0,61.03609747613698,0.08107429200026672 +3,260.32975890934574,0.0,0.0,59.882147933142484,0.07954149999568472 +4,256.60290463269945,0.0,0.0,59.02488121091149,0.07840279199444922 +5,254.2476553292837,0.0,0.0,58.48311684329771,0.07768316599685932 +6,267.4662730703839,0.0,0.0,61.523718987134316,0.08172200000262819 +7,261.4647674093651,0.0,0.0,60.143227370192946,0.07988829199894099 +8,246.01554802208992,0.0,0.0,56.589532838011,0.07516791700618342 +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688 +10,263.23716595979414,0.0,0.0,60.550921952010754,0.08042983300401829 +11,260.4273987454803,0.0,0.0,59.904607459614105,0.07957133300078567 +12,263.1834383636676,0.0,0.0,60.538563303991346,0.08041341700300109 +13,264.8376041165323,0.0,0.0,60.919061479589764,0.08091883300221525 +14,262.7376459678526,0.0,0.0,60.43602025894914,0.08027720900281565 +15,265.9190191847479,0.0,0.0,61.167813129663564,0.08124924999719951 +16,262.16475454640056,0.0,0.0,60.30424136055219,0.08010216699767625 +17,270.0616666527359,0.0,0.0,62.120722353534894,0.08251500000187661 +18,267.46191030093564,0.0,0.0,61.522715444525154,0.08172066699626157 +19,262.00329030822877,0.0,0.0,60.26710067622695,0.08005283300008159 +20,253.51275965468895,0.0,0.0,58.314073044056784,0.07745862499723444 +21,264.0262048684438,0.0,0.0,60.732420006058504,0.08067091699922457 +22,263.8846528399279,0.0,0.0,60.69985961208996,0.08062766700459179 +23,264.5367741043955,0.0,0.0,60.849863292778615,0.08082691700110445 +24,263.01842955838407,0.0,0.0,60.50060728340553,0.08036299999366747 +25,262.9862473617866,0.0,0.0,60.493204598958165,0.08035316700261319 +26,263.65418646654734,0.0,0.0,60.64684676591282,0.08055725000303937 +27,248.40133983118992,0.0,0.0,57.13832272146015,0.07589687500149012 +28,269.71869832726696,0.0,0.0,62.04183133435922,0.08241020900459262 +29,263.8835596650258,0.0,0.0,60.69960815539335,0.08062733299448155 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..32d145285 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..10b80623b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ced0ee56d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ca6c5953b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b4b2bbb21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..955f1344c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..8c4152945 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d3f6270a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a892de15e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..536e7b11f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ec3cc75b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2fda1d3e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..879400324 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f2ea58ae4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6be15d825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..ce27e8b2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..30c6c7e2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d22ee16ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..42cedc9f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d611e638d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..31f2eb760 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069 +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925 +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788 +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137 +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639 +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815 +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394 +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472 +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863 +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402 +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608 +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669 +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245 +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812 +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655 +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166 +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059 +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509 +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761 +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521 +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396 +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608 +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393 +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749 +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709 +25,2647.2209247514334,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588 +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705 +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554 +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974 +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..08af48157 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,261.69304748056817,0.0,0.0,60.19573731393214,0.07995804099482484 +1,250.04241406090986,0.0,0.0,57.51580952974925,0.07639829099935014 +2,265.34640271204813,0.0,0.0,61.03609747613698,0.08107429200026672 +3,260.32975890934574,0.0,0.0,59.882147933142484,0.07954149999568472 +4,256.60290463269945,0.0,0.0,59.02488121091149,0.07840279199444922 +5,254.2476553292837,0.0,0.0,58.48311684329771,0.07768316599685932 +6,267.4662730703839,0.0,0.0,61.523718987134316,0.08172200000262819 +7,261.4647674093651,0.0,0.0,60.143227370192946,0.07988829199894099 +8,246.01554802208992,0.0,0.0,56.589532838011,0.07516791700618342 +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688 +10,263.23716595979414,0.0,0.0,60.550921952010754,0.08042983300401829 +11,260.4273987454803,0.0,0.0,59.904607459614105,0.07957133300078567 +12,263.1834383636676,0.0,0.0,60.538563303991346,0.08041341700300109 +13,264.8376041165323,0.0,0.0,60.919061479589764,0.08091883300221525 +14,262.7376459678526,0.0,0.0,60.43602025894914,0.08027720900281565 +15,265.9190191847479,0.0,0.0,61.167813129663564,0.08124924999719951 +16,262.16475454640056,0.0,0.0,60.30424136055219,0.08010216699767625 +17,270.0616666527359,0.0,0.0,62.120722353534894,0.08251500000187661 +18,267.46191030093564,0.0,0.0,61.522715444525154,0.08172066699626157 +19,262.00329030822877,0.0,0.0,60.26710067622695,0.08005283300008159 +20,253.51275965468895,0.0,0.0,58.314073044056784,0.07745862499723444 +21,264.0262048684438,0.0,0.0,60.732420006058504,0.08067091699922457 +22,263.8846528399279,0.0,0.0,60.69985961208996,0.08062766700459179 +23,264.5367741043955,0.0,0.0,60.849863292778615,0.08082691700110445 +24,263.01842955838407,0.0,0.0,60.50060728340553,0.08036299999366747 +25,262.9862473617866,0.0,0.0,60.493204598958165,0.08035316700261319 +26,263.65418646654734,0.0,0.0,60.64684676591282,0.08055725000303937 +27,248.40133983118992,0.0,0.0,57.13832272146015,0.07589687500149012 +28,269.71869832726696,0.0,0.0,62.04183133435922,0.08241020900459262 +29,263.8835596650258,0.0,0.0,60.69960815539335,0.08062733299448155 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..32d145285 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..10b80623b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ced0ee56d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ca6c5953b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b4b2bbb21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..955f1344c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..8c4152945 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d3f6270a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a892de15e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..536e7b11f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ec3cc75b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2fda1d3e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..879400324 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f2ea58ae4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6be15d825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..ce27e8b2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..30c6c7e2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d22ee16ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..42cedc9f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d611e638d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b43f2cbfb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.9343348502491,0.9659333379641897,0.0,478.1370022922739,0.5167249579972122 +1,1749.9576772420037,0.9631941360465022,0.0,476.78109734301853,0.5152596249972703 +2,1765.8187969550952,0.9719242543216247,0.0,481.1025058892042,0.5199297919971286 +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453 +4,1751.8730274703044,0.9642483638900475,0.0,477.3029401255735,0.5158235830022022 +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217 +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765 +7,1753.9604561917195,0.9653973054501949,0.0,477.8716661978465,0.5164382080038195 +8,1755.9675055029504,0.9665020053823559,0.0,478.4184926642661,0.517029165996064 +9,1753.8309770174315,0.9653260388229865,0.0,477.83638921737827,0.5164000840013614 +10,1754.0766355703217,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781 +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869 +12,1756.3210022613841,0.96669657351921,0.0,478.51480389200896,0.5171332500030985 +13,1761.6994107051369,0.9696569030984089,0.0,479.9801670337124,0.5187168749980628 +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397 +15,1774.3585599785927,0.9766246249502579,0.0,483.42918935037767,0.5224442500039004 +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615 +17,1751.65354389843,0.9641275579459169,0.0,477.24314118322883,0.5157589579976047 +18,1750.447303023146,0.9634636309533715,0.0,476.91449732191893,0.5154037909960607 +19,1744.4536070151348,0.9601646409702191,0.0,475.2814972802585,0.5136389999970561 +20,1753.692293957126,0.9652497062852385,0.0,477.79860461119307,0.5163592499957304 +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802 +22,1758.8267386074654,0.9680757557625359,0.0,479.19749910245525,0.5178710420004791 +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659 +24,1766.5958315849296,0.9723519419215563,0.0,481.3142112511703,0.5201585830000113 +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069 +26,1752.9806340260623,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014 +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911 +28,1751.2059468821633,0.9638811960898637,0.0,477.1211920644825,0.5156271669984562 +29,1757.8863946286374,0.9675581810702719,0.0,478.9412996297846,0.5175941659981618 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..e6b0fe1d3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.2976060090398,0.9378436735173551,0.0,59.34286692773609,0.0769311670010211 +1,255.2444208838569,0.9231838620144487,0.0,58.41525471712115,0.07572862500092015 +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.08059795799636049 +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538 +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.08205345799797215 +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388 +6,274.5216566791403,0.9929069647911035,0.0,62.827044151437065,0.08144800000445684 +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.08306416699633701 +8,281.3432946979796,1.0175798885309815,0.0,64.38824467083968,0.08347191600478254 +9,271.4910013468641,0.9819455025017533,0.0,62.13344817554198,0.0805488330006483 +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.07896558400534559 +11,269.5141946577938,0.9747956653873809,0.0,61.68103606847738,0.07996233300218591 +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.07664408299751813 +13,269.12490022342575,0.9733876411174043,0.0,61.59194211898058,0.07984683299582684 +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.07488287500018487 +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.08006420799938496 +16,269.730891764629,0.9755794289316839,0.0,61.730629382401375,0.0800266250007553 +17,268.35867106427986,0.9706162959421447,0.0,61.41658286392536,0.07961949999298668 +18,268.1440805449837,0.9698401516343885,0.0,61.367471663762174,0.07955583299917635 +19,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.07368400000268593 +20,267.1683200118613,0.9663109603821373,0.0,61.144159044869724,0.07926633400347782 +21,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673 +22,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.08037712499935878 +23,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.08042266700067557 +24,270.16990124801515,0.9771672656762833,0.0,61.831101121240685,0.08015687499573687 +25,266.0163051495714,0.9621442815337454,0.0,60.880508848773204,0.07892454200191423 +26,271.33244897442904,0.9813720404413123,0.0,62.097161869303726,0.08050179199926788 +27,271.5900102009636,0.9823036038697861,0.0,62.15610734831233,0.08057820799876936 +28,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.08218083400424803 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..46e74bea4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..60d9405e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4c7070438 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6eb31af5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fb20038d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d104c9a9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f60463d43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7e2f58647 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4dd22cb01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..430f61032 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2a779ef4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..150cd9b05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1a44fc93e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..56621ce70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9cf35e0a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..23eeeb6c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f3b79abff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b43f2cbfb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.9343348502491,0.9659333379641897,0.0,478.1370022922739,0.5167249579972122 +1,1749.9576772420037,0.9631941360465022,0.0,476.78109734301853,0.5152596249972703 +2,1765.8187969550952,0.9719242543216247,0.0,481.1025058892042,0.5199297919971286 +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453 +4,1751.8730274703044,0.9642483638900475,0.0,477.3029401255735,0.5158235830022022 +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217 +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765 +7,1753.9604561917195,0.9653973054501949,0.0,477.8716661978465,0.5164382080038195 +8,1755.9675055029504,0.9665020053823559,0.0,478.4184926642661,0.517029165996064 +9,1753.8309770174315,0.9653260388229865,0.0,477.83638921737827,0.5164000840013614 +10,1754.0766355703217,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781 +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869 +12,1756.3210022613841,0.96669657351921,0.0,478.51480389200896,0.5171332500030985 +13,1761.6994107051369,0.9696569030984089,0.0,479.9801670337124,0.5187168749980628 +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397 +15,1774.3585599785927,0.9766246249502579,0.0,483.42918935037767,0.5224442500039004 +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615 +17,1751.65354389843,0.9641275579459169,0.0,477.24314118322883,0.5157589579976047 +18,1750.447303023146,0.9634636309533715,0.0,476.91449732191893,0.5154037909960607 +19,1744.4536070151348,0.9601646409702191,0.0,475.2814972802585,0.5136389999970561 +20,1753.692293957126,0.9652497062852385,0.0,477.79860461119307,0.5163592499957304 +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802 +22,1758.8267386074654,0.9680757557625359,0.0,479.19749910245525,0.5178710420004791 +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659 +24,1766.5958315849296,0.9723519419215563,0.0,481.3142112511703,0.5201585830000113 +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069 +26,1752.9806340260623,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014 +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911 +28,1751.2059468821633,0.9638811960898637,0.0,477.1211920644825,0.5156271669984562 +29,1757.8863946286374,0.9675581810702719,0.0,478.9412996297846,0.5175941659981618 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9713f2467 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.2976060090398,0.9378436735173551,0.0,59.34286692773609,0.0769311670010211 +1,255.2444208838569,0.9231838620144487,0.0,58.41525471712115,0.07572862500092015 +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.08059795799636049 +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538 +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.08205345799797215 +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388 +6,274.5216566791403,0.9929069647911035,0.0,62.827044151437065,0.08144800000445684 +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.08306416699633701 +8,281.3432946979796,1.0175798885309815,0.0,64.38824467083968,0.08347191600478254 +9,271.4910013468641,0.9819455025017533,0.0,62.13344817554198,0.0805488330006483 +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.07896558400534559 +11,269.5141946577938,0.9747956653873809,0.0,61.68103606847738,0.07996233300218591 +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.07664408299751813 +13,269.12490022342575,0.9733876411174043,0.0,61.59194211898058,0.07984683299582684 +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.07488287500018487 +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.08006420799938496 +16,269.730891764629,0.9755794289316839,0.0,61.730629382401375,0.0800266250007553 +17,218.24572145375646,0.7893646697629007,0.0,49.947729966031815,0.06475145799777238 +18,268.35867106427986,0.9706162959421447,0.0,61.41658286392536,0.07961949999298668 +19,268.1440805449837,0.9698401516343885,0.0,61.367471663762174,0.07955583299917635 +20,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.07368400000268593 +21,267.1683200118613,0.9663109603821373,0.0,61.144159044869724,0.07926633400347782 +22,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673 +23,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.08037712499935878 +24,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.08042266700067557 +25,270.16990124801515,0.9771672656762833,0.0,61.831101121240685,0.08015687499573687 +26,266.0163051495714,0.9621442815337454,0.0,60.880508848773204,0.07892454200191423 +27,271.33244897442904,0.9813720404413123,0.0,62.097161869303726,0.08050179199926788 +28,271.5900102009636,0.9823036038697861,0.0,62.15610734831233,0.08057820799876936 +29,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.08218083400424803 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..40dfd8cee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..aa25ca562 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8da7efaf9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f9dfae26f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..451bd0018 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0d5a3d49d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..cccac3ecd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4cf0d80ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3657d7fdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1a37545df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..96315da48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bb679064a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2eac008d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..bc1d23e3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..82a970a63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6247b7b73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d435b04d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..0f16c88e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 521.44 ms | 78.82 ms | +| **Average Power** | 4.860 W | 4.414 W | +| **Total Energy** | 2258.08 J | 304.41 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.07% | 0.00e+00 | +6.228 | large | βœ… | +| `gpu_mj` | +80.99% | 2.11e-166 | +1.541 | large | βœ… | +| `ane_mj` | +86.38% | 1.05e-47 | +0.729 | medium | βœ… | +| `dram_mj` | +87.09% | 0.00e+00 | +20.546 | large | βœ… | +| `time_s` | +84.69% | 0.00e+00 | +75.359 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.228, large) +- **`gpu_mj`**: 81.0% lower energy (Cohen’s d = +1.541, large) +- **`ane_mj`**: 86.4% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.546, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +75.359, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..6bcc28fee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/with_smell.csv @@ -0,0 +1,892 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.9343348502491,0.9659333379641896,0.0,478.1370022922739,0.5167249579972122 +1,1749.9576772420037,0.9631941360465022,0.0,476.7810973430186,0.5152596249972703 +2,1765.8187969550952,0.9719242543216248,0.0,481.1025058892042,0.5199297919971286 +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453 +4,1751.8730274703044,0.9642483638900476,0.0,477.3029401255735,0.5158235830022022 +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217 +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765 +7,1753.9604561917197,0.9653973054501948,0.0,477.8716661978465,0.5164382080038195 +8,1755.9675055029504,0.966502005382356,0.0,478.4184926642661,0.517029165996064 +9,1753.8309770174317,0.9653260388229864,0.0,477.8363892173782,0.5164000840013614 +10,1754.0766355703215,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781 +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869 +12,1756.321002261384,0.96669657351921,0.0,478.51480389200896,0.5171332500030985 +13,1761.6994107051369,0.9696569030984088,0.0,479.9801670337124,0.5187168749980628 +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397 +15,1774.358559978593,0.976624624950258,0.0,483.42918935037767,0.5224442500039004 +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615 +17,1751.65354389843,0.9641275579459168,0.0,477.2431411832288,0.5157589579976047 +18,1750.447303023146,0.9634636309533716,0.0,476.914497321919,0.5154037909960607 +19,1744.4536070151348,0.9601646409702193,0.0,475.2814972802585,0.5136389999970561 +20,1753.692293957126,0.9652497062852384,0.0,477.798604611193,0.5163592499957304 +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802 +22,1758.8267386074654,0.968075755762536,0.0,479.19749910245525,0.5178710420004791 +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659 +24,1766.5958315849296,0.9723519419215564,0.0,481.3142112511703,0.5201585830000113 +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069 +26,1752.9806340260625,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014 +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911 +28,1751.2059468821633,0.9638811960898636,0.0,477.1211920644825,0.5156271669984562 +29,1757.8863946286374,0.967558181070272,0.0,478.9412996297846,0.5175941659981618 +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044 +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938 +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633 +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316 +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086 +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983 +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794 +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901 +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509 +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675 +10,2646.795163355197,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344 +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734 +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329 +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119 +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925 +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591 +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422 +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537 +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056 +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665 +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854 +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703 +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205 +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758 +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439 +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776 +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591 +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822 +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663 +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273 +0,1851.2929834808735,1.525707090391358,0.0,489.00607477143456,0.5257506659982027 +1,1815.007070744064,1.4958027614505225,0.0,479.4214050755753,0.5154457909957273 +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323 +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766 +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256 +5,1815.024824844166,1.4958173931466672,0.0,479.426094696764,0.5154508330015233 +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143 +7,1811.0336499636064,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081 +8,1817.0066970315177,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951 +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976 +10,1810.1798942357495,1.4918245378570545,0.0,478.1463402113843,0.5140749159982079 +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977 +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256 +13,1812.1079196707988,1.4934134825043668,0.0,478.6556146257886,0.5146224579948466 +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482 +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739 +16,1814.2052567911392,1.495141962082693,0.0,479.20961153597057,0.5152180829973076 +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969 +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826 +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299 +20,1817.835656233042,1.4981338851434334,0.0,480.1685561205276,0.5162490840011742 +21,1813.5350490943129,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173 +22,1814.531999481375,1.495411240713182,0.0,479.2959183290272,0.5153108750018873 +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478 +24,1821.465316194058,1.5011251987753895,0.0,481.1273053763877,0.5172798749990761 +25,1816.57387709804,1.4970940144206697,0.0,479.83526599976256,0.5158907500008354 +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959 +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901 +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062 +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325 +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145 +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091 +2,1779.3928443092848,1.2935973032110897,0.0,478.6310021881031,0.5164371669961838 +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093 +4,1773.9815157607254,1.289663332115503,0.0,477.17543288273623,0.5148666250024689 +5,1777.9932479026747,1.292579813372932,0.0,478.2545309479849,0.5160309589991812 +6,1778.2917123371087,1.2927967934449398,0.0,478.3348135746278,0.5161175829998683 +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995 +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622 +9,1754.4484513303544,1.275463028033475,0.0,471.9213203723859,0.5091975000032107 +10,1775.5038586790918,1.290770057198758,0.0,477.5849211635405,0.5153084579942515 +11,1786.1638599055125,1.2985197505184911,0.0,480.45230769184184,0.5184023340043495 +12,1780.7071642069795,1.2945527980477989,0.0,478.9845352776855,0.5168186250011786 +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725 +14,1780.113098568184,1.2941209194377807,0.0,478.8247401919788,0.5166462080014753 +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305 +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493 +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456 +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645 +19,1790.2618712334158,1.301498955711576,0.0,481.5546136132831,0.5195917090022704 +20,1815.5910112672468,1.3199129373937035,0.0,488.3677868356704,0.5269430419939454 +21,1782.178110375644,1.2956221583091028,0.0,479.380198574368,0.5172455409992835 +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016 +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714 +24,1787.1828714348917,1.299260559705491,0.0,480.72640709103166,0.5186980840007891 +25,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483 +26,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777 +27,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738 +28,1783.093470454418,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704 +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292 +1,2715.9020526639206,4.5839715944040265,91.47719784715092,550.9866445126663,0.5387826250007492 +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223 +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655 +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857 +5,2719.8013326503037,4.59055290269483,91.60853366113064,551.7777080908264,0.5395561670011375 +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514 +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546 +8,2686.408260218842,4.5341911884255115,90.48378592196204,545.0031129205282,0.532931624999037 +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732 +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318 +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728 +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426 +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253 +14,2678.044504222127,4.520074618988164,90.2020773230432,543.3063220338199,0.5312724169998546 +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908 +16,2692.3906558823523,4.544288434664978,90.68528538000552,546.2167870696205,0.534118417002901 +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387 +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994 +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183 +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407 +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541 +22,2669.225814940643,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802 +23,2704.503515961487,4.5647328415151005,91.09327155788225,548.6741747077011,0.5365213749973918 +24,2722.9180265552013,4.595813341418859,91.71351035743224,552.4100050895154,0.5401744590053568 +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108 +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303 +27,2689.5938418367864,4.5395678976606595,90.59108289890465,545.6493854636676,0.5335635829978855 +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969 +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076 +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069 +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925 +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788 +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137 +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639 +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815 +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394 +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472 +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863 +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402 +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608 +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669 +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245 +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812 +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655 +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166 +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059 +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509 +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761 +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521 +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396 +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608 +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393 +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749 +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709 +25,2647.220924751434,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588 +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705 +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554 +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974 +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549 +0,1786.9876176050948,0.9744578121988632,0.0,485.98563233904,0.5244097500035423 +1,1782.494248517345,0.9720075441793689,0.0,484.7636245333176,0.5230911249964265 +2,1789.6608931992605,0.9759155695225464,0.0,486.71265110360656,0.5251942500035511 +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507 +4,1774.29452682005,0.9675361741558348,0.0,482.53364437295994,0.5206848329980858 +5,1774.592693303347,0.9676987665857556,0.0,482.61473314240624,0.5207723329949658 +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435 +7,1782.7985214602406,0.9721734665077184,0.0,484.84637400348737,0.5231804169961833 +8,1756.4093657710655,0.9577832610774696,0.0,477.6696312056359,0.515436249996128 +9,1768.703196283028,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765 +10,1768.6684113239016,0.9644682109849976,0.0,481.0035770853799,0.5190337919993908 +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654 +12,1777.5417030532524,0.9693068838221228,0.0,483.4167400248056,0.5216377499964437 +13,1800.5370152626765,0.9818464008314552,0.0,489.6704998353564,0.5283859589981148 +14,1773.0453523522408,0.9668549899064512,0.0,482.193921345414,0.5203182500044932 +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211 +16,1769.166632213147,0.9647398945898208,0.0,481.1390722569855,0.5191800000029616 +17,1763.204154234821,0.96148851042308,0.0,479.517528491345,0.5174302500017802 +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578 +19,1767.0888376996136,0.9636068575861454,0.0,480.5739993540834,0.5185702500020852 +20,1767.2573750274971,0.9636987622609094,0.0,480.619834433777,0.5186197090006317 +21,1785.681222404281,0.9737454250526344,0.0,485.6303476736638,0.5240263750019949 +22,1765.3002646808288,0.9626315352427376,0.0,480.0875825591626,0.5180453749999288 +23,1766.7130081954772,0.9634019149257976,0.0,480.4717895024762,0.5184599589993013 +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092 +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044 +26,1761.720706069687,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842 +27,1768.10288660893,0.9641598260968948,0.0,480.84977809791,0.5188678330014227 +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913 +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169 +0,1751.7597276163842,2.1636114978065435,0.0,477.192837423917,0.5169033329948434 +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173 +2,1755.551400507329,2.168294621258601,0.0,478.2257183132816,0.5180221670016181 +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047 +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944 +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581 +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837 +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318 +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886 +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515 +10,1760.364557240052,2.174239387018135,0.0,479.5368592660305,0.5194424170040293 +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399 +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216 +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349 +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101 +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313 +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864 +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862 +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351 +19,1740.735333244333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869 +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783 +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092 +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061 +23,1780.1372456652791,2.1986607818846435,0.0,484.9230918322808,0.5252768749996903 +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918 +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964 +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957 +27,1746.5222472011149,2.1571426467036403,0.0,475.7661074329752,0.5153578749959706 +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571 +29,1754.4581827370755,2.166944379841335,0.0,477.9279173754673,0.5176995840010932 +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364 +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786 +2,1778.486234577878,1.5993880891754215,0.0,479.54986207109727,0.5181025829951977 +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965 +4,1767.9182652955085,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635 +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698 +6,1776.3588275952677,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941 +7,1769.0324619649873,1.5908863358186305,0.0,477.00075302295267,0.5153485419941717 +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501 +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905 +10,1781.685358726182,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195 +11,1782.0121818251405,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831 +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797 +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205 +14,1808.8365189834235,1.6266820217555849,0.0,487.7334928563829,0.5269441249984084 +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777 +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378 +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959 +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474 +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329 +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545 +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641 +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807 +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364 +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073 +25,1771.4579433126603,1.5930675649462802,0.0,477.6547582230597,0.516055125001003 +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122 +27,1771.2442582749284,1.5928753985423243,0.0,477.597140329607,0.5159928749999381 +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222 +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618 +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646 +1,1779.6926984637155,2.298914111764198,0.0,482.0722939582054,0.5188747089996468 +2,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378 +3,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604 +4,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856 +5,1776.1563189074311,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351 +6,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192 +7,1773.7140800868076,2.2911912446830485,0.0,480.4528423089714,0.5171316249980009 +8,1782.3990367731817,2.302410018296943,0.0,482.8053703585286,0.5196637499975623 +9,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193 +10,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539 +11,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419 +12,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821 +13,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162 +14,1772.853313724588,2.29007935163615,0.0,480.2196831713544,0.5168806660003611 +15,1770.9595755799237,2.2876331195711908,0.0,479.706718943124,0.5163285410017124 +16,1786.4787687097223,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075 +17,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552 +18,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846 +19,1791.298932109912,2.31390643843762,0.0,485.2161196775931,0.5222585410010652 +20,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781 +21,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464 +22,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138 +23,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602 +24,1774.9085456819907,2.292734192976961,0.0,480.7763918577341,0.5174798750012997 +25,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214 +26,1779.5730804224474,2.298759595423635,0.0,482.0398925533996,0.5188398340033018 +27,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901 +28,1792.9830205511932,2.3160818559613663,0.0,485.6722952739856,0.5227495420040214 +0,1756.762206346076,1.7661260064937123,0.0,477.9203619836382,0.5165056249970803 +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214 +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192 +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793 +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873 +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208 +6,1765.817171014456,1.7752292354514725,0.0,480.3837300914154,0.5191678749979474 +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429 +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212 +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823 +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864 +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192 +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042 +13,1755.3462952571251,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376 +14,1758.3116163303305,1.7676836750603675,0.0,478.34187297576966,0.5169611669989536 +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556 +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374 +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569 +18,1756.8116672700412,1.7661757310516548,0.0,477.9338176366573,0.5165201670024544 +19,1752.963015612889,1.7623065655168555,0.0,476.88680684231593,0.5153886249972857 +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859 +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751 +22,1757.216415420918,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844 +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327 +24,1755.7857633216242,1.765144358884768,0.0,477.6547244363272,0.5162185410008533 +25,1762.728840517084,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231 +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085 +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424 +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666 +29,1755.9440640749146,1.7653035034042843,0.0,477.6977895438538,0.5162650830025086 +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839 +1,1753.2505788590777,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426 +2,1752.8381169148636,0.8314540247964403,0.0,476.3898980473684,0.5165165830039768 +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984 +4,1765.114376950317,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311 +5,1756.9934111913135,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252 +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978 +7,1763.462414839216,0.8364936318112554,0.0,479.2773912825768,0.5196472919997177 +8,1753.3060095523142,0.8316759684048242,0.0,476.517062857228,0.5166544590028934 +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468 +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776 +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499 +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328 +13,1773.3545454320447,0.841185937230592,0.0,481.9658945956399,0.5225622500001919 +14,1776.3548905408898,0.8426091428263935,0.0,482.7813344738104,0.523446375002095 +15,1744.0009641467575,0.827262145257835,0.0,473.9881187469291,0.5139124999986961 +16,1748.8014619995813,0.8295392484439423,0.0,475.2928077884412,0.5153270839946344 +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871 +18,1750.578277165131,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152 +19,1747.6397256783089,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122 +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235 +21,1752.5626705211123,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282 +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452 +23,1783.0733219996505,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041 +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799 +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868 +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653 +27,1752.178208974687,0.8311409992480111,0.0,476.2105469291404,0.5163221250040806 +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269 +29,1752.354532351862,0.831224637765569,0.0,476.2584684541605,0.5163740829957533 +0,1747.0589457116464,3.0201243148830725,0.0331881792844293,476.8145717793967,0.5152042500048992 +1,1747.3293781548232,3.020591808895897,0.0331933165812735,476.8883793231577,0.5152840000009746 +2,1750.1044899098858,3.025389118401999,0.0332460342681538,477.6457743305661,0.5161023750042659 +3,1751.6777760699365,3.028108843341962,0.0332759213554061,478.07516211312054,0.5165663340012543 +4,1766.1522672194958,3.0531307596165367,0.0335508874683135,482.0256002572614,0.5208348329979344 +5,1766.7483783587693,3.0541612513183263,0.0335622115529486,482.1882933812131,0.5210106250015087 +6,1754.7747482092896,3.0334625498574375,0.0333347532951366,478.9204005912286,0.517479624999396 +7,1753.3064440845665,3.030924306371375,0.0333068605095755,478.51966494107194,0.5170466249983292 +8,1749.3128298275074,3.0240205830873874,0.0332309954185427,477.42971117820326,0.5158689160016365 +9,1757.5330439768445,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158 +10,1749.9246243251405,3.0250781864627907,0.033242617433657,477.59668466935074,0.5160493329967721 +11,1748.560030649437,3.022719226251378,0.0332166947939711,477.224254104984,0.5156469170033233 +12,1753.7423269355932,3.0316778129431237,0.0333151408015727,478.6386278961962,0.5171751659945585 +13,1756.9680215412786,3.0372540407715727,0.0333764180304568,479.51899784357346,0.5181264169950737 +14,1753.7127980950845,3.031626766715158,0.0333145798540127,478.63056876260094,0.5171664579975186 +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442 +16,1746.7611037466984,3.0196094382885876,0.0331825212998745,476.73328351529824,0.5151164169947151 +17,1749.0789930550138,3.023616351665171,0.0332265533150018,477.365891476632,0.5157999579969328 +18,1745.504313415313,3.0174368367013065,0.0331586465571572,476.3902750866777,0.5147457919956651 +19,1750.3038537106063,3.025733756723185,0.0332498215024525,477.7001855257362,0.5161611669973354 +20,1748.1413808301063,3.0219955102589178,0.0332087418709771,477.1099944603282,0.5155234579942771 +21,1757.5372861178564,3.0382381230737434,0.0333872321216894,479.6743638923129,0.5182942920000642 +22,1749.8696629689396,3.024983175284921,0.0332415733547793,477.5816843881149,0.5160331250008312 +23,1759.469025002054,3.0415775018557194,0.033423928591821,480.2015820786936,0.5188639580010204 +24,1751.8266953376512,3.028366278674916,0.0332787503151089,478.1158057771706,0.5166102500006673 +25,1755.287352510616,3.034348684076406,0.0333444910338066,479.06030268270024,0.5176307910005562 +26,1765.1312939975094,3.0513658128411953,0.0335314924488043,481.746952011972,0.5205337500010501 +27,1767.6126601371138,3.0556553270735236,0.0335786299678409,482.4241767479705,0.5212654999995721 +28,1751.5500471769017,3.027888039609773,0.0332734949407667,478.0403018139957,0.516528667001694 +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073 +1,1764.845139373689,0.1664885418827298,0.0,479.25391666362606,0.5172321659993031 +2,1769.8090308676667,0.1669568158623888,0.0,480.6018901414725,0.5186869589961134 +3,1761.667486286026,0.1661887746015269,0.0,478.39100656795546,0.5163008750023437 +4,1770.120524418555,0.1669862009375641,0.0,480.6864780188722,0.5187782499997411 +5,1758.7666359534974,0.1659151198024128,0.0,477.6032638632257,0.5154507080005715 +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002 +7,1766.3960797342909,0.1666348514899712,0.0,479.6750834990312,0.5176867080008378 +8,1777.8972580842958,0.1677198273729572,0.0,482.7982950757946,0.5210574169977917 +9,1769.0387471033746,0.1668841503248344,0.0,480.3927151250683,0.5184612080047373 +10,1764.9314380729104,0.1664966829622382,0.0,479.27735157509903,0.5172574579992215 +11,1772.566856441291,0.1672169782688663,0.0,481.3507936447587,0.5194952090023435 +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439 +13,1762.1909595977615,0.1662381570127317,0.0,478.5331587768496,0.5164542919956148 +14,1773.2691781297697,0.1672832325317695,0.0,481.5415131659517,0.5197010420015431 +15,1763.9601307223377,0.1664050536510261,0.0,479.0135874398439,0.5169727920001606 +16,1762.9672077460498,0.1663113852067893,0.0,478.7439534562638,0.5166817909994279 +17,1765.03607677191,0.1665065541651173,0.0,479.3057668197068,0.5172881249964121 +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674 +19,1759.353089729241,0.1659704435426248,0.0,477.7625187818,0.5156225829996401 +20,1767.829302824657,0.1667700561134161,0.0,480.06428352807984,0.518106750001607 +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435 +22,1767.7985939618377,0.166767159160205,0.0,480.05594435856625,0.5180977499985602 +23,1772.0661315525292,0.1671697418543195,0.0,481.2148189018443,0.519348459005414 +24,1759.33233396092,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604 +25,1759.9227696447715,0.1660241849029066,0.0,477.91721866150704,0.5157895419979468 +26,1767.522357592919,0.1667411001087618,0.0,479.98093077308187,0.51801679199707 +27,1756.276093432469,0.1656801718267677,0.0,476.92694262053374,0.5147207920017536 +28,1787.0935630557296,0.1685873705761791,0.0,485.2956049405893,0.5237526249984512 +29,1761.5507619170933,0.1661777632841301,0.0,478.3593093896971,0.516266665996227 +0,1776.691736185956,0.1001837341608155,0.0,477.44228243239314,0.5172290420014178 +1,1770.7935195244447,0.0998511467130299,0.0,475.8572815187299,0.5155119580012979 +2,1771.6266559565545,0.0998981254416041,0.0,476.0811664795379,0.5157544999965467 +3,1771.6970738633242,0.0999020961522841,0.0,476.1000895630688,0.5157749999998487 +4,1767.255164562743,0.0996516266693274,0.0,474.9064354971249,0.5144818750050035 +5,1778.5290421222858,0.1002873357962306,0.0,477.93601329290306,0.5177639169996837 +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503 +7,1775.7415239627014,0.100130153786217,0.0,477.1869362271816,0.5169524169978104 +8,1770.133281321143,0.0998139173348012,0.0,475.6798587118843,0.5153197499967064 +9,1767.617129727283,0.0996720370877929,0.0,475.0037047480587,0.5145872500070254 +10,1762.247909439489,0.0993692785805023,0.0,473.560858621814,0.5130241669976385 +11,1773.6424386464917,0.1000117909880923,0.0,476.6228585855853,0.5163413330010371 +12,1769.1378436654545,0.0997577867976686,0.0,475.41235928208937,0.5150299590022769 +13,1777.9878823036338,0.1002568209858636,0.0,477.7905898782973,0.5176063749968307 +14,1755.9015670313545,0.0990114223087807,0.0,471.85543491621286,0.5111766249974607 +15,1776.3105898766091,0.1001622421598373,0.0,477.3398587197316,0.5171180830002413 +16,1787.7577916465848,0.1008077246572515,0.0,480.4160131415751,0.5204505829970003 +17,1773.7231650386664,0.1000163429715617,0.0,476.6445518214728,0.5163648340021609 +18,1769.8345789266932,0.0997970741646162,0.0,475.599589777173,0.5152327920004609 +19,1774.2379885508392,0.1000453727356073,0.0,476.7828980003261,0.5165147090010578 +20,1766.4500819098491,0.0996062298315799,0.0,474.6900893006994,0.5142475000029663 +21,1771.0441351066002,0.0998652783737721,0.0,475.9246283032735,0.515584917004162 +22,1766.2073393898709,0.0995925421154749,0.0,474.62485820831506,0.5141768329995102 +23,1761.5407248569811,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116 +24,1766.0573458461463,0.0995840843098779,0.0,474.5845511261085,0.5141331670020008 +25,1775.480603344183,0.1001154410471693,0.0,477.1168202171266,0.5168764580012066 +26,1790.8488796480174,0.1009820243020892,0.0,481.24666714898984,0.5213504580024164 +27,1777.4756350505515,0.1002279364913943,0.0,477.6529360058218,0.5174572499963688 +28,1768.5382885241104,0.0997239792036601,0.0,475.25124355824306,0.5148554170009447 +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286 +1,1747.7432374054538,0.4984532476676833,0.0,475.82347022357055,0.5151742909947643 +2,1751.518133922168,0.4995298414075961,0.0,476.8511866076913,0.516286999998556 +3,1754.769163024236,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799 +4,1751.2478613919254,0.4994527601650134,0.0,476.77760485352184,0.5162073329993291 +5,1736.266881541672,0.4951802114863595,0.0,472.6990298848788,0.5117914579968783 +6,1748.792095154288,0.4987523800230881,0.0,476.1090219700399,0.5154834580025636 +7,1753.1379269695713,0.4999918034897532,0.0,477.2921756113184,0.5167644589964766 +8,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888 +9,1761.7996142862123,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684 +10,1740.7653737649098,0.4964631734285321,0.0,473.9237453548768,0.5131174580019433 +11,1742.9166639927869,0.497076717556646,0.0,474.5094345795743,0.5137515839960543 +12,1749.7232016130597,0.499017929921017,0.0,476.36251590260287,0.5157579160004389 +13,1753.2353196533288,0.5000195797090965,0.0,477.3186907903035,0.5167931669930113 +14,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666 +15,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121 +16,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543 +17,1757.0913484891291,0.5011193122414096,0.0,478.3684954656496,0.517929790999915 +18,1744.1792476012558,0.4974368041452388,0.0,474.85317323704504,0.5141237499992712 +19,1749.1235756856784,0.4988469176782046,0.0,476.1992676156142,0.5155811670047115 +20,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054 +21,1746.9655037563955,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537 +22,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729 +23,1748.172110645285,0.498575561549183,0.0,475.9402310548502,0.5153007080007228 +24,1751.4983453162597,0.4995241977325581,0.0,476.8457991555,0.5162811670015799 +25,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782 +26,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758 +27,1772.4144105029477,0.5054894221417285,0.0,482.5402023764941,0.5224464999992051 +28,1751.7315782126657,0.4995907153377694,0.0,476.9092968614347,0.5163499159971252 +0,2707.064349798109,3.6012385418086788,92.0649964253126,546.2211903089626,0.5340038330032257 +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182 +2,2725.020067211528,3.625125237224638,92.67565537015948,549.8442269534888,0.5375458330017864 +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456 +4,2738.164742265457,3.642611748185226,93.12269478462412,552.4965096946497,0.5401387919991976 +5,2721.689276555712,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198 +6,2720.5877475209177,3.619228871849861,92.52491588127285,548.9498902756719,0.5366714999981923 +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976 +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933 +9,2684.9247119572583,3.571785929387366,91.31204584294925,541.7539380490226,0.5296365000031074 +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256 +11,2721.140522061294,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162 +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359 +13,2693.7475289550293,3.5835230233438016,91.6121024764096,543.5341726425446,0.5313769159984076 +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352 +15,2691.344864372215,3.580326731279553,91.530389861693,543.0493720841699,0.5309029589989223 +16,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008 +17,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486 +18,2696.253071379015,3.586856174972084,91.69731388053631,544.0397315020158,0.5318711669970071 +19,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715 +20,2711.4054258427636,3.607013524721848,92.21263279404648,547.097116189524,0.5348601670048083 +21,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715 +22,2722.2352935902622,3.6214206211537783,92.580947546348,549.2823258807412,0.5369964999990771 +23,2705.6396482764453,3.599343245145054,92.01654351708792,545.9337194326031,0.5337227920026635 +24,2704.6099320015473,3.5979734018546403,91.98152372704315,545.7259471831561,0.5335196670057485 +25,2732.7517068573975,3.635410725519794,92.93860197370508,551.4042879142569,0.5390709999992396 +26,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095 +27,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125 +28,2711.9605221173633,3.607751975619275,92.23151115448908,547.2091214131422,0.5349696670018602 +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881 +1,1809.1855259194288,0.265466227826992,0.0,478.8678917214152,0.515494541003136 +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585 +3,1810.0879382553949,0.2655986410015069,0.0,479.1067485365934,0.5157516670005862 +4,1839.304281081116,0.2698856266144958,0.0,486.83993470922366,0.5240763330002665 +5,1809.758034772763,0.2655502334546707,0.0,479.0194273730442,0.5156576669978676 +6,1808.8649860767891,0.2654191942300088,0.0,478.78304899165727,0.5154032089994871 +7,1813.8231895913325,0.2661467235878039,0.0,480.09542101194984,0.5168159589957213 +8,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819 +9,1809.8633196014089,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656 +10,1813.954652607598,0.2661660134784905,0.0,480.13021756351213,0.5168534169933992 +11,1807.167211573315,0.2651700756146534,0.0,478.33367014938295,0.5149194590048864 +12,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542 +13,1823.9124415236115,0.2676271442598061,0.0,482.76591485165784,0.5196907080025994 +14,1819.837052677855,0.2670291524627728,0.0,481.6872123987844,0.5185295000046608 +15,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613 +16,1808.2260893946043,0.2653254473534387,0.0,478.6139413446843,0.5152211669992539 +17,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068 +18,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739 +19,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421 +20,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996 +21,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448 +22,1802.588046066788,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584 +23,1837.076846539877,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271 +24,1807.5499030880776,0.2652262288788654,0.0,478.4349636188634,0.5150284999981523 +25,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453 +26,1809.485601206097,0.2655102586095041,0.0,478.94731774921934,0.5155800420034211 +27,1807.857580198864,0.2652713750956679,0.0,478.5164017506981,0.5151161670000874 +28,1807.3931392937277,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981 +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224 +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637 +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822 +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785 +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257 +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757 +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788 +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315 +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518 +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946 +10,2618.9124733008675,4.199020794266546,93.62136762896692,547.6194959050658,0.5388713749998715 +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708 +12,2598.369879714636,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963 +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235 +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425 +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375 +16,2588.202161551629,4.149781562735098,92.52352972274171,541.1979122856604,0.5325523749997956 +17,2609.8641773866566,4.184513252268183,93.2979074725714,545.7274803078074,0.5370095840044087 +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034 +19,2571.5775359527493,4.123126548755723,91.9292295310576,537.7216719825263,0.529131666997273 +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198 +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871 +22,2590.805700040584,4.153955933725058,92.61660149833388,541.7423170526872,0.5330880830006208 +23,2581.167113924082,4.138501952752755,92.2720395385754,539.7268706702032,0.5311048330040649 +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174 +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983 +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351 +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567 +28,2612.5537766415023,4.188825608375719,93.39405576434504,546.2898805419278,0.5375629999980447 +29,2596.2320891691634,4.162656308793328,92.81058506085604,542.8769851675906,0.5342046250007115 +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213 +1,1779.2162506886075,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688 +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013 +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128 +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836 +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122 +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858 +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367 +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509 +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752 +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764 +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953 +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438 +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806 +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779 +15,1790.0668889243043,1.66955817952611,0.0,480.09815010452814,0.5182433750014752 +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756 +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821 +18,1792.1862688524077,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506 +19,1790.008024062706,1.6695032774932437,0.0,480.0823624759571,0.5182263329988928 +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355 +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276 +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134 +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887 +24,1787.3388646459289,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427 +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853 +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772 +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742 +28,1804.8606743706223,1.6833560357128678,0.0,484.0658616295923,0.522526332999405 +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485 +0,1845.824206071892,0.1677320580549854,0.0,486.1545970665696,0.5214718330025789 +1,1830.4651068256328,0.166336359960892,0.0,482.1093057106495,0.5171326670024428 +2,1849.9641160769513,0.1681082561907703,0.0,487.24496974332874,0.5226414170028875 +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669 +4,1822.3392648347449,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443 +5,1836.1359089329785,0.1668516719310995,0.0,483.602885925099,0.5187347499959287 +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701 +7,1845.3007813203665,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832 +8,1825.8569338770212,0.1659176102608928,0.0,480.8956015801718,0.5158307919991785 +9,1807.0185105123555,0.1642057421907525,0.0,475.9339231656772,0.5105086669937009 +10,1823.162968089531,0.1656728066526299,0.0,480.1860628019826,0.5150697079952806 +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444 +12,1857.7274384163825,0.1688137177558822,0.0,489.2896795436492,0.5248346669977764 +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564 +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571 +15,1830.059520329347,0.1662995038737752,0.0,482.00248202775015,0.5170180829954916 +16,1826.6731154100848,0.1659917775666616,0.0,481.11056809921206,0.5160613749976619 +17,1843.7639886261209,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808 +18,1825.188089979146,0.1658568316866715,0.0,480.71944096064885,0.5156418339975062 +19,1824.456265218254,0.1657903299727617,0.0,480.52669239305266,0.5154350829980103 +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028 +21,1827.3999209682072,0.1660578231801435,0.0,481.301994705328,0.5162667080003303 +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859 +23,1827.510683488826,0.1660678882911533,0.0,481.3311674230788,0.5162980000022799 +24,1835.150709439822,0.1667621457790216,0.0,483.3434033259165,0.5184564169976511 +25,1813.572750949637,0.1648013331651888,0.0,477.6601840459834,0.5123603339961846 +26,1842.1702642888456,0.1674000203813719,0.0,485.1922190733685,0.5204395420005312 +27,1831.9371559299911,0.166470126667938,0.0,482.4970151343517,0.5175485420040786 +28,1845.660352440013,0.1677171684968116,0.0,486.1114411711588,0.5214255419996334 +29,1853.0747226186224,0.1683909203986171,0.0,488.06424368335195,0.5235202080002637 +0,1750.3108252154525,2.609757505147961,0.0,479.15816963107625,0.5184650419978425 +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429 +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149 +3,1752.016519404531,2.612300738125388,0.0,479.625113726842,0.5189702910065535 +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639 +5,1742.483268674349,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369 +6,1745.190778674311,2.602123386855969,0.0,477.7565259380042,0.5169484170037322 +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536 +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203 +9,1735.1488806738737,2.587150664128651,0.0,475.007495653672,0.5139738750003744 +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756 +11,1734.3902782445691,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704 +12,1740.4614946593651,2.59507190532813,0.0,476.4618558487712,0.5155475409992505 +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972 +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954 +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097 +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292 +17,1746.9815770882103,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611 +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266 +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417 +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639 +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297 +22,1745.2933230781057,2.6022762831436204,0.0,477.7845980884589,0.5169787920021918 +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218 +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297 +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044 +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646 +27,1744.947146636668,2.601760125354311,0.0,477.6898301948601,0.5168762499961304 +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994 +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613 +0,2672.382616871309,3.0753543154939074,90.65609677847256,547.1456460435247,0.5367295840042061 +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645 +2,2668.042158872389,3.070359354759644,90.50885402291472,546.2569773772376,0.5358578330051387 +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605 +4,2673.3815259950325,3.0765038512920504,90.68998309460912,547.3501634559595,0.5369302079998306 +5,2660.8570324091256,3.062090774678085,90.26511066224964,544.7858891296837,0.5344147499999963 +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095 +7,2691.981040632199,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829 +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093 +9,2663.405459659043,3.065023482251948,90.35156178116613,545.3076560597814,0.5349265840050066 +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977 +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532 +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001 +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807 +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968 +15,2656.6049568069725,3.0571975236255113,90.1208661312216,543.915315942417,0.5335607499946491 +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822 +17,2683.2200521488594,3.087825940305148,91.02373858812568,549.3645107708115,0.5389062079993892 +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233 +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017 +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186 +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897 +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739 +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244 +24,2660.4190835585628,3.0615867870084155,90.25025398224808,544.6962231494972,0.5343267909993301 +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568 +26,2652.9553415843593,3.05299757865734,89.99705905781202,543.1680909506885,0.5328277499938849 +27,2692.647814864721,3.0986753263813163,91.3435596211536,551.2947580674934,0.5407997090005665 +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348 +29,2675.12895480308,3.0785147769326833,90.749261685233,547.707933356893,0.5372811670022202 +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037 +1,1782.8336566198657,1.7941300308884225,0.0,479.7304354814431,0.5178688749947469 +2,1795.0281902994725,1.80640183146052,0.0,483.0117786010824,0.5214110840024659 +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378 +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384 +5,1796.9891979642368,1.8083752644440696,0.0,483.5394526538505,0.5219807079993188 +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032 +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437 +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653 +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079 +10,1803.0189770789996,1.8144432493899736,0.0,485.1619644063301,0.5237322089960799 +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943 +12,1800.0309108242288,1.8114362501771968,0.0,484.35792622793593,0.5228642500005662 +13,1791.4015151729552,1.8027521770283184,0.0,482.03590155762765,0.5203576249987236 +14,1809.3940181194137,1.820858683906976,0.0,486.8773803135709,0.5255840000027092 +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398 +16,1782.9656266294744,1.794262837085196,0.0,479.765946382836,0.5179072090031696 +17,1797.0181746335738,1.8084044247151136,0.0,483.5472497863245,0.5219891250017099 +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482 +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603 +20,1817.2879807960328,1.8288026642375284,0.0,489.0015123875124,0.5278770000004442 +21,1799.0441654896515,1.8104432526358776,0.0,484.0924097186932,0.5225776250008494 +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759 +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128 +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152 +25,1779.0384404444324,1.7903107674990562,0.0,478.7092068873866,0.5167664590044296 +26,1782.7894773086882,1.7940855716486983,0.0,479.71854757473255,0.517856042002677 +27,1783.1825092184056,1.7944810938835989,0.0,479.8243058256533,0.5179702080058632 +28,1780.5486074656133,1.79183050322667,0.0,479.11556733499793,0.5172051249974174 +29,1787.7603534401137,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268 +0,1795.147924035491,2.682538176309839,0.0,479.4457429436733,0.5142721660013194 +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979 +2,1817.3031298206895,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046 +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751 +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264 +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576 +6,1809.3933002198744,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581 +7,1805.3675530191017,2.697809644766114,0.0,482.1751879910992,0.5171998750010971 +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467 +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286 +10,1799.7155993091633,2.689363777216903,0.0,480.6656716391247,0.5155807090050075 +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075 +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091 +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005 +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217 +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733 +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314 +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529 +18,1826.6656523216352,2.729635971553408,0.0,487.8634562985023,0.5233013329998357 +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408 +20,1807.306323455378,2.700706801953429,0.0,482.6929922454295,0.5177552919994923 +21,1833.0039600605849,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359 +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235 +23,1838.0546515121375,2.7466548615899486,0.0,490.9052152004653,0.5265640419966076 +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132 +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729 +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903 +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051 +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895 +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387 +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297 +1,1756.560303683826,1.7731543519587607,0.0,478.8520422563347,0.5189257919992087 +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679 +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372 +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144 +5,1746.06400151769,1.7625588922832085,0.0,475.99066840093514,0.5158249579981202 +6,1754.1136576433803,1.770684592699588,0.0,478.1850674586642,0.5182029999996303 +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129 +8,1745.2030860378886,1.7616898438215771,0.0,475.7559761248724,0.5155706250006915 +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393 +10,1747.4051663255143,1.763912726939895,0.0,476.35628039039096,0.5162211670030956 +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424 +12,1746.5747123718454,1.763074427771366,0.0,476.1298921639917,0.5159758329973556 +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304 +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058 +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449 +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621 +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053 +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674 +19,1748.336743535644,1.7648531046661042,0.0,476.6102356053953,0.5164963749994058 +20,1753.3933581542744,1.769957488613754,0.0,477.988708198654,0.517990207998082 +21,1757.4467487928955,1.7740491712254969,0.0,479.09369410850064,0.5191876669996418 +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899 +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545 +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244 +25,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401 +26,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632 +27,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313 +28,1747.8861163258769,1.764398220426472,0.0,476.48739111253,0.5163632500043605 +0,2670.570409785425,2.9727932568403896,91.95617793350104,548.196437429938,0.53703412500181 +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161 +2,2649.982550200963,2.949875512406015,91.24727287251416,543.9703023551407,0.5328940420004074 +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248 +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252 +5,2691.5962946236164,2.99619859692693,92.68016558808806,552.5124873344356,0.5412622919975547 +6,2666.77366683587,2.9685668444615825,91.82544407643525,547.417067992174,0.5362706249943585 +7,2661.481141542177,2.9626753751907864,91.6432057067442,546.3306545801257,0.5352063330064993 +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573 +9,2645.7442612379073,2.9451575851782787,91.10133519096404,543.1002953701787,0.5320417499970063 +10,2647.4012424367324,2.9470020834609416,91.15839028952776,543.4404291433817,0.5323749580056756 +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555 +12,2627.9855146860323,2.925389118559347,90.48984543139191,539.4549012786067,0.5284705829981249 +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745 +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839 +15,2687.243218261744,2.991352892051421,92.53027541368049,551.618917576943,0.5403869170040707 +16,2700.8745297979617,3.006526830498532,92.9996445433984,554.4170600240664,0.5431280839984538 +17,2651.924020997127,2.95203669537653,91.31412384687177,544.3688342080854,0.5332844589938759 +18,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431 +19,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277 +20,2647.5437980205056,2.9471607717608688,91.16329892873787,543.4696919790941,0.5324036249949131 +21,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085 +22,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703 +23,2656.7905403646746,2.9574539485248152,91.4816934863912,545.3678000358345,0.5342630839950289 +24,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377 +25,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278 +26,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112 +27,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322 +28,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103 +0,1761.0627122628562,0.1002730818552339,0.0,479.40560434987367,0.5189407500001835 +1,1773.2261221061888,0.1009656537792014,0.0,482.7167907183622,0.5225250000003143 +2,1774.1111385027095,0.1010160456936708,0.0,482.9577144614402,0.5227857920035603 +3,1747.8332966738471,0.0995198126712257,0.0,475.8042243811302,0.51504237500194 +4,1746.9785407537054,0.0994711437568538,0.0,475.5715383015183,0.5147904999976163 +5,1750.5248233346765,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402 +6,1746.6482342427255,0.099452336447164,0.0,475.4816205538911,0.514693167002406 +7,1772.610473858339,0.1009305994073606,0.0,482.5491957665912,0.5223435839943704 +8,1748.7226941545937,0.0995704540400808,0.0,476.04634076562667,0.5153044580001733 +9,1772.4744459499425,0.1009228541195305,0.0,482.5121655454757,0.5223035000017262 +10,1770.3282934230103,0.1008006544235695,0.0,481.92792879908586,0.5216710829990916 +11,1758.21465709453,0.1001109165518446,0.0,478.6302920343692,0.5181014999980107 +12,1757.855223569782,0.1000904507802411,0.0,478.532445180333,0.5179955840067123 +13,1756.2394557664416,0.0999984506396015,0.0,478.09259250793485,0.5175194580006064 +14,1747.016436775467,0.0994733015169754,0.0,475.5818545526595,0.5148016669991193 +15,1754.1526907543482,0.0998796324070574,0.0,477.5245225381418,0.5169045410002582 +16,1753.2227129170683,0.0998266804348467,0.0,477.2713591590023,0.5166304999947897 +17,1756.2227695819904,0.0999975005455885,0.0,478.088050108459,0.5175145410030382 +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174 +19,1748.2398194280586,0.0995429596546495,0.0,475.9148901088795,0.5151621670011082 +20,1763.74038297599,0.1004255456447003,0.0,480.1345337273122,0.5197297920021811 +21,1760.1897159033686,0.1002233743491896,0.0,479.16795276347585,0.5186834999985876 +22,1751.7277020054344,0.0997415560662067,0.0,476.8643795525346,0.5161899579979945 +23,1748.352370623307,0.099549368202815,0.0,475.9455293776589,0.5151953329987009 +24,1759.1921483115996,0.1001665738865547,0.0,478.89638975161847,0.5183895419977489 +25,1747.339389421523,0.099491690105234,0.0,475.66977039312377,0.5148968329958734 +26,1751.9406486544974,0.0997536810272451,0.0,476.922348991259,0.5162527080028667 +27,1754.9035218939098,0.0999223839523559,0.0,477.7289176762137,0.5171257919937489 +28,1752.4458666562616,0.099782447615563,0.0,477.0598820500069,0.516401583001425 +29,1750.364901254197,0.0996639596067907,0.0,476.4933908800666,0.5157883749998291 +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021 +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396 +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647 +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121 +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826 +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744 +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462 +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933 +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716 +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596 +10,2615.36164408698,2.86359540889274,88.30529098120404,541.2528299017616,0.5338564999983646 +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096 +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936 +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303 +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195 +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093 +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978 +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057 +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888 +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631 +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072 +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873 +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502 +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321 +24,2646.093256085373,2.89724387323626,89.34291571886699,547.6127809239,0.5401295409974409 +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246 +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397 +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437 +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415 +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615 +0,1832.0288573050368,0.3348434297708107,0.0,485.7573635685151,0.520800792000955 +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087 +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004 +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638 +4,1832.5450819984576,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844 +5,1811.56117568914,0.331102512325981,0.0,480.33041463130064,0.5149823329993524 +6,1861.757947821728,0.3402770726923634,0.0,493.6399493548115,0.5292520420043729 +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311 +8,1813.0148750103676,0.3313682077404579,0.0,480.7158589690824,0.5153955839996343 +9,1828.3792277749956,0.3341763799782493,0.0,484.78967443444634,0.5197632919953321 +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375 +11,1817.2384760499765,0.3321401634072298,0.0,481.83573505486834,0.5165962500032037 +12,1824.018140381943,0.333379295666833,0.0,483.63334422387464,0.5185235419994569 +13,1833.410144455411,0.3350958902738674,0.0,486.1236080202995,0.521193458000198 +14,1821.170110213187,0.3328587557277406,0.0,482.8781969342333,0.5177139169973088 +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314 +16,1818.3656082621744,0.3323461715245324,0.0,482.1345910306392,0.5169166659979965 +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685 +18,1805.5999711042289,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965 +19,1838.1848588994617,0.3359685739951129,0.0,487.38961029471034,0.52255079200404 +20,1814.558121289498,0.3316502698242645,0.0,481.1250464340605,0.5158342909999192 +21,1810.8972069332913,0.33098115748237,0.0,480.1543651596742,0.5147935829954804 +22,1833.8570420407632,0.335177570603104,0.0,486.24210167392306,0.5213205000036396 +23,1835.274389296927,0.3354366218808924,0.0,486.6179073626107,0.5217234170049778 +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233 +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785 +26,1843.4762342226047,0.3369356888166623,0.0,488.792603766332,0.524055000001681 +27,1812.032257571416,0.3311886128655741,0.0,480.45532068408846,0.5151162500042119 +28,1851.1542315714744,0.3383390111255961,0.0,490.82840343990233,0.5262376660029986 +29,1816.7635844920449,0.3320533665659065,0.0,481.7098188771606,0.5164612500011572 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..eecd7cb6d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/cleaned/mac/without_smell.csv @@ -0,0 +1,876 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.2976060090398,0.9378436735173552,0.0,59.34286692773609,0.0769311670010211 +1,255.2444208838569,0.9231838620144488,0.0,58.41525471712115,0.0757286250009201 +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.0805979579963604 +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538 +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.0820534579979721 +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388 +6,274.5216566791403,0.9929069647911036,0.0,62.827044151437065,0.0814480000044568 +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.083064166996337 +8,281.3432946979796,1.0175798885309817,0.0,64.38824467083968,0.0834719160047825 +9,271.4910013468641,0.9819455025017532,0.0,62.13344817554198,0.0805488330006483 +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.0789655840053455 +11,269.5141946577938,0.9747956653873808,0.0,61.68103606847738,0.0799623330021859 +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.0766440829975181 +13,269.12490022342575,0.9733876411174044,0.0,61.59194211898058,0.0798468329958268 +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.0748828750001848 +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.0800642079993849 +16,269.730891764629,0.975579428931684,0.0,61.730629382401375,0.0800266250007553 +17,268.35867106427986,0.9706162959421448,0.0,61.41658286392536,0.0796194999929866 +18,268.1440805449837,0.9698401516343884,0.0,61.367471663762174,0.0795558329991763 +19,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.0736840000026859 +20,267.1683200118613,0.9663109603821372,0.0,61.14415904486973,0.0792663340034778 +21,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673 +22,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.0803771249993587 +23,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.0804226670006755 +24,270.16990124801515,0.9771672656762832,0.0,61.831101121240685,0.0801568749957368 +25,266.0163051495714,0.9621442815337454,0.0,60.8805088487732,0.0789245420019142 +26,271.33244897442904,0.9813720404413124,0.0,62.097161869303726,0.0805017919992678 +27,271.5900102009636,0.982303603869786,0.0,62.15610734831233,0.0805782079987693 +28,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.082180834004248 +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.0838514580027549 +1,398.7176187759755,1.608272748003935,12.832676301781396,78.77185896994273,0.0833907080013887 +2,393.4009922947646,1.5868275319452692,12.661561348646623,77.72149015840266,0.082278750000114 +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.0802324579999549 +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.0815308750024996 +5,397.77390581907474,1.6044661747324025,12.80230301921896,78.58541618324745,0.0831933329973253 +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.0835334169969428 +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.0827721669993479 +8,402.1872645561368,1.6222679578734929,12.944346413865578,79.45733268667878,0.0841163750010309 +9,411.01636787259105,1.6578811477213755,13.228509991193476,81.20163704776988,0.0859629580008913 +10,398.47576527691933,1.60729720447833,12.824892277400007,78.72407766101153,0.083340124998358 +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.0853469160065287 +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.0847861250003916 +13,397.95758979573526,1.6052070848903608,12.808214864854335,78.62170534535913,0.0832317500025965 +14,397.9368723030194,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143 +15,378.44542169605904,1.5265025412950282,12.180218194083244,74.7668223871794,0.0791508329930366 +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.081899249998969 +17,394.47718603434674,1.591168481483079,12.696198508500403,77.93410624930665,0.0825038330003735 +18,390.30130111050465,1.574324575907918,12.561798178598597,77.10910579082322,0.0816304580002906 +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.0853198749973671 +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.0832003749965224 +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.082188499996846 +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.0817053749997285 +23,408.1975839921713,1.6465112631616992,13.137787787311058,80.64474957694073,0.0853734170013922 +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.0866518750044633 +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.0798403750013676 +26,374.92099637623625,1.5122863719377595,12.06678500942004,74.07052625886818,0.0784137090013246 +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.0841622919979272 +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.0840398750005988 +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.0819778340010088 +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.0776710830032243 +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.0761652920045889 +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.0773927499976707 +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.0778755829960573 +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986 +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.0779352500030654 +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.0773458750045392 +7,342.3226982986895,22.968494031768262,0.0,74.03884179294928,0.0776502919979975 +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.0789362499999697 +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.0777301670023007 +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.0775382089996128 +11,335.4773722078628,22.5091998270776,0.0,72.55830889817277,0.0760975419980241 +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.0786656250056694 +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.0751801669975975 +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.0794126249966211 +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.0779685840025194 +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.0783674590056762 +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854 +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.077208333001181 +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402 +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902 +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.0720434999966528 +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.0812008749999222 +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.0808140000008279 +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.0795359170006122 +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.0832596659965929 +26,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141 +27,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.0817928329997812 +28,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364 +0,243.54047775399584,0.0,0.0,58.53663370586776,0.0799515000035171 +1,243.291711687412,0.0,0.0,58.47684106584192,0.0798698330036131 +2,245.5951988714672,0.0,0.0,59.03050009937392,0.080626040995412 +3,244.14360606550724,0.0,0.0,58.681599755758846,0.0801494999977876 +4,243.31671713606323,0.0,0.0,58.48285129790621,0.0798780420009279 +5,241.55492443854592,0.0,0.0,58.05939227067864,0.0792996659947675 +6,244.21963070926464,0.0,0.0,58.69987280328379,0.0801744580021477 +7,245.1422220915524,0.0,0.0,58.92162400580759,0.080477333998715 +8,246.35114409687137,0.0,0.0,59.21219674860971,0.0808742090011946 +9,244.82669458259335,0.0,0.0,58.845784792604114,0.0803737499954877 +10,245.46624823405313,0.0,0.0,58.999505924204115,0.0805837080042692 +11,244.69279401281028,0.0,0.0,58.81360086704609,0.0803297919992473 +12,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065 +13,244.25085325559544,0.0,0.0,58.70737735765924,0.0801847080001607 +14,242.3843538378488,0.0,0.0,58.25875134798534,0.0795719579982687 +15,247.02788453109272,0.0,0.0,59.37485597995104,0.081096374997287 +16,244.8240292446239,0.0,0.0,58.845144160238355,0.080372874996101 +17,242.5058171758989,0.0,0.0,58.28794589910761,0.0796118329963064 +18,249.33936777338295,0.0,0.0,59.93043692123454,0.081855208001798 +19,234.16127478349617,0.0,0.0,56.2822775766509,0.076872416997503 +20,244.35937066953136,0.0,0.0,58.73346026662311,0.0802203330022166 +21,245.70321065155915,0.0,0.0,59.056461475755675,0.0806615000037709 +22,244.62806434791267,0.0,0.0,58.79804264559987,0.0803085420047864 +23,243.1429613426851,0.0,0.0,58.44108789444635,0.0798209999993559 +24,247.57986270663923,0.0,0.0,59.507527741842864,0.0812775829981546 +25,242.2868816000614,0.0,0.0,58.235323223295474,0.0795399589987937 +26,246.40584599254623,0.0,0.0,59.22534472655436,0.080892166995909 +27,243.29945488439853,0.0,0.0,58.47870219664816,0.0798723750049248 +0,365.5962922637533,0.31946547733638,13.09808457079158,71.3685876369473,0.0776209169998765 +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.0843391249945852 +2,381.68376621972993,0.3335230393391558,13.67444461290539,74.50904698836742,0.0810364999997546 +3,374.9568692135735,0.3276449398930212,13.433442535613873,73.19587957210095,0.0796082910019322 +4,383.4586629821924,0.3350739802360996,13.738033189680085,74.85552718474466,0.0814133340027183 +5,378.5011661164349,0.3307420186267344,13.560422763696112,73.88776696121248,0.080360792002466 +6,388.4279301626621,0.3394162269858983,13.916065306421832,75.82558510864969,0.0824683749960968 +7,388.868712974047,0.3398013919731275,13.931857070898229,75.91163096679668,0.0825619590032147 +8,387.4873009382955,0.3385942860348615,13.882365727429324,75.64196350018807,0.0822686669998802 +9,361.1088179961347,0.3155442310347209,12.93731347242356,70.49258121315667,0.0766681669992976 +10,384.98725849243414,0.3364096980884604,13.792797621626878,75.15392655296206,0.081737874999817 +11,387.3220545051752,0.3384498903400692,13.876445503942838,75.60970550197146,0.0822335830016527 +12,381.00905545019447,0.3329334633434065,13.650271997079669,74.37733571091702,0.080893250000372 +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574 +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.0836733749965787 +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.0806210000009741 +16,376.5386550083152,0.3290271364980035,13.490112596418143,73.504662293654,0.0799441249982919 +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.0815830829960759 +18,371.9656137717135,0.3250311200381977,13.326275921566106,72.61195221653337,0.0789732080011162 +19,373.64807162243585,0.3265012859336209,13.38655272327846,72.94038727757092,0.0793304160033585 +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.0774970830025267 +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.0814905410006758 +22,389.6713762032651,0.340502775431025,13.960613792672026,76.068320031291,0.0827323749981587 +23,385.0612435284915,0.3364743477180107,13.795448256438442,75.1683692802036,0.0817535829992266 +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.0754203329997835 +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.0827776250007445 +26,389.3864198446626,0.3402537747681428,13.950404765493856,76.0126932832031,0.0826718750031432 +27,385.34934147980306,0.3367260935685102,13.80576983630892,75.22460930320518,0.0818147499958286 +28,388.2126444619807,0.3392281059611854,13.908352344408604,75.78355887172884,0.082422667001083 +29,382.30646891442245,0.3340671696211311,13.696753954466375,74.63060569336069,0.0811687079985858 +0,261.69304748056817,0.0,0.0,60.19573731393214,0.0799580409948248 +1,250.04241406090983,0.0,0.0,57.51580952974925,0.0763982909993501 +2,265.34640271204813,0.0,0.0,61.03609747613698,0.0810742920002667 +3,260.32975890934574,0.0,0.0,59.88214793314248,0.0795414999956847 +4,256.60290463269945,0.0,0.0,59.02488121091149,0.0784027919944492 +5,254.2476553292837,0.0,0.0,58.48311684329771,0.0776831659968593 +6,267.4662730703839,0.0,0.0,61.52371898713432,0.0817220000026281 +7,261.4647674093651,0.0,0.0,60.143227370192946,0.0798882919989409 +8,246.01554802208992,0.0,0.0,56.589532838011,0.0751679170061834 +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688 +10,263.23716595979414,0.0,0.0,60.550921952010754,0.0804298330040182 +11,260.4273987454803,0.0,0.0,59.904607459614105,0.0795713330007856 +12,263.1834383636676,0.0,0.0,60.538563303991346,0.080413417003001 +13,264.8376041165323,0.0,0.0,60.91906147958976,0.0809188330022152 +14,262.7376459678526,0.0,0.0,60.43602025894914,0.0802772090028156 +15,265.9190191847479,0.0,0.0,61.16781312966357,0.0812492499971995 +16,262.16475454640056,0.0,0.0,60.30424136055219,0.0801021669976762 +17,270.0616666527359,0.0,0.0,62.120722353534894,0.0825150000018766 +18,267.46191030093564,0.0,0.0,61.522715444525154,0.0817206669962615 +19,262.00329030822877,0.0,0.0,60.26710067622695,0.0800528330000815 +20,253.51275965468895,0.0,0.0,58.314073044056784,0.0774586249972344 +21,264.0262048684438,0.0,0.0,60.732420006058504,0.0806709169992245 +22,263.8846528399279,0.0,0.0,60.69985961208996,0.0806276670045917 +23,264.5367741043955,0.0,0.0,60.849863292778615,0.0808269170011044 +24,263.01842955838407,0.0,0.0,60.50060728340553,0.0803629999936674 +25,262.9862473617866,0.0,0.0,60.493204598958165,0.0803531670026131 +26,263.65418646654734,0.0,0.0,60.64684676591282,0.0805572500030393 +27,248.40133983118992,0.0,0.0,57.13832272146015,0.0758968750014901 +28,269.71869832726696,0.0,0.0,62.04183133435922,0.0824102090045926 +29,263.8835596650258,0.0,0.0,60.69960815539335,0.0806273329944815 +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.0798695409976062 +1,222.282954626191,0.5425670898579795,0.0,63.921185273893215,0.0796238750044722 +2,181.99531463538943,0.4442296009406912,0.0,52.33579986082519,0.0651924580015474 +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.0797642079996876 +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.0648530830003437 +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477 +6,228.03587230478863,0.5566092992946786,0.0,65.57553307315432,0.0816846250017988 +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.0808889159961836 +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.0801839999985531 +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.078770958003588 +10,225.93084181352305,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981 +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.0814994160027708 +12,190.86070386116344,0.4658689949319016,0.0,54.885190965414665,0.0683681250011432 +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.0778178749969811 +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.0821365419978974 +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.0831774999969638 +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.0827088329970138 +17,208.47225322116213,0.5088567584345681,0.0,59.94968685307256,0.0746767500022542 +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.0824930000017047 +19,229.14404490940265,0.5593142209840491,0.0,65.89420665968329,0.082081583001127 +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.0812505829962901 +21,226.7383300922263,0.5534421482037561,0.0,65.20240308525501,0.0812198330022511 +22,190.32796262279587,0.4645686349297839,0.0,54.73199230266517,0.0681772920070216 +23,216.75046098615985,0.5290629101111453,0.0,62.3302240974693,0.0776420830006827 +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832 +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.0806313339999178 +26,190.4228763228689,0.4648003083395731,0.0,54.75928632625596,0.0682112909998977 +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.0820812920064781 +28,229.7988069023712,0.5609124195938885,0.0,66.08249443340499,0.0823161249936674 +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156 +0,241.774082389606,0.0,0.0,58.314702618296096,0.0794790410000132 +1,236.29470921743456,0.0,0.0,56.99310514220705,0.0776777919963933 +2,245.02596783164793,0.0,0.0,59.09904116536938,0.0805480420021922 +3,239.61731779511788,0.0,0.0,57.79450175680519,0.0787700420041801 +4,234.89514347109304,0.0,0.0,56.65553686571519,0.0772177090038894 +5,244.3573637645225,0.0,0.0,58.937777199610736,0.0803282499982742 +6,246.66217572690388,0.0,0.0,59.49368634772521,0.0810859170014737 +7,247.69936496973415,0.0,0.0,59.74385121923148,0.0814268749963957 +8,247.93347313702415,0.0,0.0,59.80031694136804,0.081503834000614 +9,244.9906017154224,0.0,0.0,59.0905110345544,0.080536416004179 +10,244.5686539902464,0.0,0.0,58.988739348065465,0.0803977079995093 +11,244.99022144221857,0.0,0.0,59.090419314554566,0.0805362909959512 +12,243.10761578902108,0.0,0.0,58.63634422210183,0.0799174170024343 +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349 +14,247.18260772680364,0.0,0.0,59.61921195000334,0.0812570000052801 +15,245.5469078363539,0.0,0.0,59.22468929587267,0.0807192920037778 +16,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146 +17,242.99404630361005,0.0,0.0,58.6089518287452,0.0798800830016261 +18,243.03942360273416,0.0,0.0,58.61989660693602,0.0798950000025797 +19,243.40129207930585,0.0,0.0,58.70717747835799,0.0800139579951064 +20,242.2193560611542,0.0,0.0,58.42210040669198,0.0796254170054453 +21,244.86537532136504,0.0,0.0,59.06030705298102,0.080495249996602 +22,229.17519487543,0.0,0.0,55.27591379755472,0.0753373749976162 +23,245.74083136710107,0.0,0.0,59.27146268413018,0.0807830410049064 +24,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226 +25,245.22724384220348,0.0,0.0,59.14758793507991,0.0806142080036806 +26,246.6794116137417,0.0,0.0,59.497843557651834,0.0810915830006706 +27,245.331815099925,0.0,0.0,59.17281000080416,0.0806485839930246 +28,247.67071860704505,0.0,0.0,59.73694185944898,0.0814174580009421 +0,242.90782385251904,0.8766974823241211,0.0,55.38849450826323,0.0747689999989233 +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.0778219589992659 +2,258.8651385625255,0.9342902655002208,0.0,59.02712427392467,0.0796807910010102 +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.081725957999879 +4,241.39105099810257,0.8712231796786377,0.0,55.04263588755393,0.07430212500185 +5,268.08165313176636,0.9675543036464884,0.0,61.12869868395136,0.0825177090009674 +6,261.2141409213791,0.9427682322504016,0.0,59.562750101820015,0.0804038329952163 +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.0795712500039371 +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.0776966249977704 +9,262.6748723911695,0.9480402715845252,0.0,59.89583001546517,0.0808534579991828 +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.0748128330014878 +11,259.4128304085643,0.9362669826552976,0.0,59.15201043990077,0.0798493749971385 +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.0795320000033825 +13,262.3333479240832,0.9468076491201768,0.0,59.81795468905688,0.0807483339958707 +14,263.7812174805347,0.9520332675244872,0.0,60.148101794672066,0.0811939999985043 +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.0804758339945692 +16,260.33751362128316,0.939604328615098,0.0,59.36285919000386,0.0801339999961783 +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235 +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179 +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.0806621669980813 +20,259.3887374833051,0.9361800270085772,0.0,59.14651670636333,0.0798419589991681 +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.0798660830041626 +22,263.0187002361503,0.9492812073488284,0.0,59.97423056428847,0.0809592910009087 +23,262.90255644081475,0.9488620237616412,0.0,59.94774714408369,0.080923540997901 +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067 +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.0796380419997149 +26,258.61634070403085,0.9333923098366672,0.0,58.970392717895145,0.0796042090005357 +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639 +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.0794995839969487 +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.0802607500008889 +0,252.0569260482816,0.0,0.0,59.22685631305648,0.080362166998384 +1,252.5636013837425,0.0,0.0,59.34591190800159,0.080523707998509 +2,255.97155373331972,0.0,0.0,60.14669253837193,0.0816102499957196 +3,253.97385574356483,0.0,0.0,59.6772851959471,0.0809733330024755 +4,252.33189155253675,0.0,0.0,59.2914660925491,0.080449833003513 +5,255.14612719979553,0.0,0.0,59.952738658728656,0.081347082996217 +6,244.04078157036597,0.0,0.0,57.34326975734617,0.077806415996747 +7,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253 +8,252.32235341535025,0.0,0.0,59.289224877084415,0.0804467920024762 +9,251.56057298405543,0.0,0.0,59.110226184789994,0.0802039170011994 +10,251.38231558091536,0.0,0.0,59.06834030699232,0.0801470840015099 +11,236.56595209719924,0.0,0.0,55.58687822265356,0.0754232500039506 +12,257.3785429826992,0.0,0.0,60.477298609839494,0.0820588339993264 +13,255.38228149183257,0.0,0.0,60.00822880748779,0.0814223749985103 +14,252.88574631214084,0.0,0.0,59.42160763152467,0.0806264160055434 +15,251.8723956183979,0.0,0.0,59.18349643627208,0.0803033339980174 +16,252.58816970012697,0.0,0.0,59.35168482671154,0.0805315410034381 +17,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807 +18,256.3833495792202,0.0,0.0,60.24345390802693,0.0817415409983368 +19,253.93595723964492,0.0,0.0,59.668380028049775,0.0809612499942886 +20,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426 +21,253.27297696815177,0.0,0.0,59.51259681711514,0.0807498750000377 +22,250.3815046876699,0.0,0.0,58.83317564042237,0.0798280000017257 +23,252.92717650013057,0.0,0.0,59.43134265380538,0.0806396250045509 +24,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173 +25,252.25818664902565,0.0,0.0,59.27414734714401,0.0804263340032775 +26,244.1120086467984,0.0,0.0,57.360006277495025,0.0778291250026086 +27,253.4064073264722,0.0,0.0,59.54394949916176,0.0807924159962567 +28,252.61770622229048,0.0,0.0,59.35862514524034,0.0805409579988918 +0,227.2823037447636,0.0,0.0,57.07730787818506,0.0794794169996748 +1,228.76466537890357,0.0,0.0,57.449572722321946,0.0799977910064626 +2,229.7965197297261,0.0,0.0,57.708701864789106,0.0803586250040098 +3,229.99490705767593,0.0,0.0,57.75852278973555,0.0804280000011203 +4,229.18670205564752,0.0,0.0,57.55555861272128,0.0801453749954816 +5,231.26160626838956,0.0,0.0,58.07662842157634,0.0808709580014692 +6,227.8381457495341,0.0,0.0,57.21689624346994,0.0796737920027226 +7,220.54535576053524,0.0,0.0,55.385461007929194,0.0771235419961158 +8,228.6866229862869,0.0,0.0,57.42997396959223,0.0799704999953974 +9,229.87968653815292,0.0,0.0,57.72958750987283,0.0803877079961239 +10,227.81550598444144,0.0,0.0,57.21121072893056,0.0796658749968628 +11,227.62605500780717,0.0,0.0,57.16363398607371,0.0795996249944437 +12,229.86336373993495,0.0,0.0,57.72548837252703,0.0803820000000996 +13,231.66171813641745,0.0,0.0,58.17710834412581,0.081010875001084 +14,230.9662314522403,0.0,0.0,58.002451070137006,0.0807676669937791 +15,231.48180120147975,0.0,0.0,58.131925881088705,0.0809479590025148 +16,229.71871471960463,0.0,0.0,57.68916272582404,0.0803314170043449 +17,231.9388627509407,0.0,0.0,58.246707552816034,0.0811077910038875 +18,221.67276777003045,0.0,0.0,55.668587504410795,0.0775177920004352 +19,231.92921431455932,0.0,0.0,58.24428454510795,0.0811044169968226 +20,229.2441321614661,0.0,0.0,57.569981010669885,0.0801654579991009 +21,228.92075580272544,0.0,0.0,57.48877164379768,0.0800523750003776 +22,229.27058667095508,0.0,0.0,57.57662452034042,0.0801747090008575 +23,230.96611135654717,0.0,0.0,58.002420910556886,0.0807676249969517 +24,231.36241133068287,0.0,0.0,58.1019435538211,0.0809062089974759 +25,229.37019641490616,0.0,0.0,57.601639472800365,0.0802095420003752 +26,230.27086205486523,0.0,0.0,57.82782325033272,0.0805245000010472 +27,228.54089874330737,0.0,0.0,57.39337830268453,0.0799195409999811 +28,229.6250615930292,0.0,0.0,57.66564365614186,0.0802986670023528 +0,245.52679852308864,0.8392357072842789,0.0,59.08219379281323,0.0801600000049802 +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229 +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.0804796250013168 +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.0806689580058446 +4,247.65389493149505,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214 +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083 +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.0797389169965754 +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.080351333002909 +8,252.1240294551156,0.861785717306247,0.0,60.66971449835979,0.0823138749983627 +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204 +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.0808115420004469 +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.0807958750010584 +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.0805811250029364 +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.0759737499975017 +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.0750240000052144 +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702 +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.0801142499985871 +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.0833885419997386 +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879 +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.0807840420020511 +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.0801257920029456 +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.0801382080026087 +22,242.797444696174,0.8299064967739063,0.0,58.42541737288301,0.0792689160007285 +23,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.0803952499991282 +24,248.27937873327463,0.8486443079480266,0.0,59.74455927954107,0.0810586669977055 +25,247.81495449698696,0.8470568584119051,0.0,59.63280283219813,0.0809070409959531 +26,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.0825096659973496 +27,248.93357471888788,0.8508804167312274,0.0,59.9019813378784,0.0812722499977098 +28,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.0796597500011557 +0,244.30085516419717,0.0,0.0,58.77237786122283,0.0794237919981242 +1,225.99531436860696,0.0,0.0,54.36854489113619,0.0734725419970345 +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879 +3,248.47192239445707,0.0,0.0,59.77582723178127,0.0807798329988145 +4,243.27721517189647,0.0,0.0,58.52611692864887,0.0790909999996074 +5,245.8384283162675,0.0,0.0,59.14227763182338,0.0799236669990932 +6,252.4730483757677,0.0,0.0,60.73839319531787,0.0820806249976158 +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987 +8,246.1321782239548,0.0,0.0,59.21294615469732,0.0800191669986816 +9,245.90750722117627,0.0,0.0,59.15889620443872,0.079946124998969 +10,250.79449374512456,0.0,0.0,60.3345769788476,0.0815349160038749 +11,249.24756673150785,0.0,0.0,59.96242691450618,0.0810320000018691 +12,248.5006329833621,0.0,0.0,59.782734246407195,0.0807891669974196 +13,241.8498643799761,0.0,0.0,58.18273376682212,0.0786269590025767 +14,246.26623584150497,0.0,0.0,59.24519690121452,0.0800627499993424 +15,253.02671313402087,0.0,0.0,60.87159041379928,0.0822606250003445 +16,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806 +17,252.45626002588983,0.0,0.0,60.73435435868744,0.0820751669962192 +18,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663 +19,225.67067614143417,0.0,0.0,54.29044544877944,0.0733670000045094 +20,246.5857465567506,0.0,0.0,59.322062798693686,0.0801666250044945 +21,246.7726084003519,0.0,0.0,59.367016856969904,0.0802273750014137 +22,246.30570906024255,0.0,0.0,59.25469312227967,0.0800755829986883 +23,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335 +24,246.2417577120216,0.0,0.0,59.23930810531011,0.0800547920007375 +25,245.9956844736978,0.0,0.0,59.18010933854943,0.0799747919954825 +26,246.54319742169463,0.0,0.0,59.31182659284212,0.0801527920048101 +27,245.51635537810407,0.0,0.0,59.06479533071602,0.0798189589986577 +28,232.80692876152213,0.0,0.0,56.00724064877602,0.0756870420009363 +0,248.82851645392185,0.0,0.0,60.371399972863664,0.0773350419985945 +1,240.3368936219519,0.0,0.0,58.3111411017608,0.0746958750023623 +2,248.97893642549755,0.0,0.0,60.407895244375624,0.0773817920053261 +3,251.12462953695908,0.0,0.0,60.92848869924618,0.0780486660005408 +4,249.99473921307967,0.0,0.0,60.654351869430606,0.0776974999971571 +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547 +6,251.56958945104645,0.0,0.0,61.036445991794814,0.078186958002334 +7,253.98636346091425,0.0,0.0,61.622809775468184,0.0789380830028676 +8,258.675926589324,0.0,0.0,62.76060336664463,0.0803955829978804 +9,253.03209606091505,0.0,0.0,61.39128302078818,0.0786414999965927 +10,245.9887712196412,0.0,0.0,59.682413847788496,0.0764524590049404 +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585 +12,253.69195862142328,0.0,0.0,61.551380533465895,0.0788465829973574 +13,249.9323994112021,0.0,0.0,60.639226830037956,0.0776781250024214 +14,249.64268574376183,0.0,0.0,60.56893577198762,0.0775880829969537 +15,248.90372320903617,0.0,0.0,60.389646824785515,0.0773584159978781 +16,249.89043626314705,0.0,0.0,60.62904562560264,0.0776650830011931 +17,251.38565561954871,0.0,0.0,60.99181950336761,0.0781297920038923 +18,248.0580477823997,0.0,0.0,60.18446692757648,0.0770955830012098 +19,242.71331647279524,0.0,0.0,58.88771478582841,0.075434459002281 +20,251.9422866197867,0.0,0.0,61.12687071546968,0.0783027909928932 +21,252.17301315190568,0.0,0.0,61.182850166512566,0.0783745000007911 +22,251.8146597287694,0.0,0.0,61.09590555844225,0.078263124996738 +23,248.1852757086486,0.0,0.0,60.2153352867692,0.0771351250004954 +24,252.43765573938865,0.0,0.0,61.24705841613956,0.0784567500013508 +25,247.58493442148287,0.0,0.0,60.069678975007925,0.0769485410055494 +26,252.21926527656947,0.0,0.0,61.19407197323097,0.0783888750011101 +27,249.8356029545924,0.0,0.0,60.61574183048396,0.0776480409986106 +28,254.86381530062064,0.0,0.0,61.83569934587096,0.0792107919987756 +0,258.05412357567263,0.0,0.0,60.88917522572051,0.0776646669983165 +1,257.9959768285465,0.0,0.0,60.87545520673569,0.0776471669960301 +2,256.0814273269359,0.0,0.0,60.42370757152421,0.077070958999684 +3,258.3119063629601,0.0,0.0,60.9500003777771,0.0777422500032116 +4,254.87501871078396,0.0,0.0,60.13904935872431,0.0767078749995562 +5,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612 +6,256.1942552713655,0.0,0.0,60.45032989549073,0.0771049160030088 +7,269.4083809346708,0.0,0.0,63.568269658742544,0.0810818750032922 +8,256.7634055100046,0.0,0.0,60.584623772023555,0.0772762089982279 +9,265.09209197392056,0.0,0.0,62.54981945452058,0.0797828330032643 +10,247.3756110807905,0.0,0.0,58.36952621007416,0.0744508329953532 +11,258.04927578522654,0.0,0.0,60.88803136505345,0.0776632079941919 +12,256.90531014005614,0.0,0.0,60.61810688697954,0.0773189169995021 +13,259.4555995489818,0.0,0.0,61.21986056773728,0.0780864589978591 +14,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601 +15,255.6555672710305,0.0,0.0,60.32322373810831,0.0769427910054219 +16,257.38764897090465,0.0,0.0,60.73191717291009,0.077464082998631 +17,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146 +18,236.34739083788008,0.0,0.0,55.7673618830953,0.071131750002678 +19,255.39654180892845,0.0,0.0,60.26210537064603,0.0768648340017534 +20,256.04875219815136,0.0,0.0,60.41599770967616,0.0770611250045476 +21,255.4578716622009,0.0,0.0,60.27657645962043,0.0768832920002751 +22,258.9686854110115,0.0,0.0,61.10497071495777,0.0779399160019238 +23,258.4434309763645,0.0,0.0,60.98103427532196,0.0777818340066005 +24,257.6428035065198,0.0,0.0,60.792122175695674,0.0775408749977941 +25,258.0723949714545,0.0,0.0,60.893486453938706,0.0776701660070102 +26,257.6979033528984,0.0,0.0,60.80512326304344,0.0775574579965905 +27,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646 +28,236.55450287180864,0.0,0.0,55.81623101469642,0.0711940830005914 +0,247.6358913639864,0.0,0.0,60.23755530694149,0.0770938330024364 +1,250.59815225213995,0.0,0.0,60.95812676005715,0.0780160419963067 +2,250.60497804678556,0.0,0.0,60.9597871380428,0.0780181669979356 +3,252.79538510278,0.0,0.0,61.4926047577078,0.0787000829950557 +4,249.1592469382651,0.0,0.0,60.608112317689475,0.0775680829974589 +5,251.2633310797192,0.0,0.0,61.11993184491222,0.0782231250050244 +6,246.2273696215814,0.0,0.0,59.894931683637864,0.0766553329958696 +7,248.6098367504889,0.0,0.0,60.47446801277843,0.0773970410009496 +8,247.39203882310005,0.0,0.0,60.17823805354388,0.0770179169994662 +9,255.71776095388975,0.0,0.0,62.20347415547271,0.0796098750070086 +10,249.22121548631523,0.0,0.0,60.62318619821583,0.0775873750026221 +11,249.92976133402135,0.0,0.0,60.79554033256047,0.0778079590018023 +12,247.14791645978391,0.0,0.0,60.11885516570433,0.0769419169955654 +13,238.7495165766193,0.0,0.0,58.07594016390296,0.0743273330008378 +14,250.1377439451952,0.0,0.0,60.84613220748805,0.0778727080032695 +15,250.0574405131458,0.0,0.0,60.826598357193696,0.0778477079948061 +16,252.51927631291608,0.0,0.0,61.42544115549913,0.0786141249991487 +17,247.5537152778006,0.0,0.0,60.21756593258521,0.0770682500005932 +18,246.7884238216119,0.0,0.0,60.03140840039478,0.0768299999981536 +19,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801 +20,242.33265448766724,0.0,0.0,58.94754026556956,0.0754428329964866 +21,255.49612352817607,0.0,0.0,62.14956074003047,0.0795408749982016 +22,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822 +23,240.24168874114216,0.0,0.0,58.43891179452095,0.0747918749984819 +24,253.03723326850667,0.0,0.0,61.55143444583822,0.0787753749973489 +25,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577 +26,252.68015295270183,0.0,0.0,61.46457447915958,0.0786642090024543 +27,247.46926179214807,0.0,0.0,60.197022579661535,0.0770419580003363 +28,247.49469226985136,0.0,0.0,60.20320855617205,0.0770498749989201 +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.0812097079979139 +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.0806707500014454 +2,387.06785099851174,1.270425839345776,15.004759237678492,78.69773037244646,0.0837934169976506 +3,384.2510321293888,1.2611805365729962,14.895564715740525,78.12502134662994,0.0831836249999469 +4,371.5677530253622,1.219551748597392,14.403894976677307,75.54628669689791,0.0804379170003812 +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.0769082499973592 +6,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.0817295420056325 +7,383.3779823279192,1.2583150311481424,14.861720773290225,77.94751490247413,0.0829946249941713 +8,392.08615035475583,1.2868967943871166,15.199294571545131,79.71803926311544,0.0848797910002758 +9,367.5730098278583,1.2064402877344769,14.249037992972063,74.73408485101137,0.0795731249963864 +10,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.0822060409991536 +11,382.579806971804,1.2556952770297831,14.83077935302744,77.78523175546657,0.0828218339956947 +12,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.0843364579995977 +13,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.0827404169976944 +14,380.74632391965866,1.2496774580881194,14.759704032013737,77.41245226859378,0.0824249169963877 +15,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.0817379159998381 +16,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.0794940830019186 +17,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.0817125419998774 +18,384.8167037344661,1.2630371718420337,14.917493083647802,78.24003237464706,0.0833060830045724 +19,378.67475235924377,1.242878190126144,14.679399164462836,76.99126518294923,0.0819764580010087 +20,383.49654619559766,1.2587041789441245,14.866316924286007,77.971621030809,0.0830202919969451 +21,382.5284125446302,1.2555265913378268,14.828787038233251,77.77478236071079,0.0828107080014888 +22,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.0843647500005317 +23,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.0826560839996091 +24,373.2033724819483,1.2249201438687207,14.46730007758462,75.87883702019211,0.0807919999933801 +25,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.0832666250062175 +26,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.0812299999961396 +27,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.0742695840017404 +28,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.0825761250016512 +0,245.4849858868351,0.03325453615373,0.0,59.824910540560325,0.077182166998682 +1,243.26148489011845,0.0329533303833809,0.0,59.2830413597024,0.0764830830012215 +2,227.93765961629927,0.0308774938521131,0.0,55.54861143995156,0.0716651670009014 +3,250.7231538165253,0.0339641227061128,0.0,61.101456748297075,0.078829083002347 +4,252.5889686193737,0.0342168746436431,0.0,61.55615748391402,0.0794157080017612 +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.0827996669977437 +6,226.94041043538476,0.0307424018471125,0.0,55.30558092295546,0.0713516250034445 +7,242.6599554225411,0.0328718444083637,0.0,59.13644809064636,0.07629395800177 +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.076669291993312 +9,247.36392063917748,0.0335090653805442,0.0,60.28280861959906,0.0777729170004022 +10,248.7334295032324,0.0336945854108957,0.0,60.61655915420145,0.0782035000011092 +11,247.311043310453,0.0335019023720472,0.0,60.26992236731305,0.0777562920047785 +12,226.72783872430568,0.0307136058960045,0.0,55.25377700691221,0.0712847909962874 +13,246.69360768372263,0.0334182616748472,0.0,60.119452753050254,0.0775621659995522 +14,247.48014585109556,0.0335248097874689,0.0,60.311132807656584,0.0778094590059481 +15,246.05219040943203,0.0333313723123045,0.0,59.963138789835845,0.0773604999994859 +16,249.95252500188107,0.0338597297482905,0.0,60.913653817174755,0.078586792005808 +17,250.6415207454208,0.0339530643112192,0.0,61.081562695883505,0.0788034170036553 +18,246.5275553318546,0.0333957674521612,0.0,60.07898564643816,0.0775099579986999 +19,244.4563283517981,0.0331151894272281,0.0,59.57422577958342,0.0768587499987916 +20,247.40791776784516,0.0335150254359042,0.0,60.29353075919174,0.0777867500000866 +21,250.543583961273,0.0339397973396468,0.0,61.05769541402468,0.0787726250055129 +22,245.99334947150876,0.0333234014456121,0.0,59.948799200656225,0.0773420000041369 +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.078443917002005 +24,244.25754136307833,0.0330882608186234,0.0,59.5257812127036,0.0767962500030989 +25,245.0430139869781,0.0331946645877781,0.0,59.717201593412845,0.0770432079953025 +26,249.4024129823822,0.0337852090195586,0.0,60.779591026186075,0.0784138330054702 +27,246.43412861712733,0.033383111435536,0.0,60.05621747252941,0.0774805839973851 +28,257.6022464065648,0.0348959965329944,0.0,62.77789776285696,0.0809919169987551 +29,247.07528191230236,0.0334699650382419,0.0,60.21246710379734,0.0776821670006029 +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.0830702079983893 +1,374.8739455288989,0.3746015080684854,13.247271512603714,76.14627018555758,0.0836669999989681 +2,360.3381183231657,0.3600762446906633,12.733605380424368,73.19368028439303,0.0804227919943514 +3,348.5626801398173,0.3483093642385529,12.317485698981551,70.8017944034004,0.0777946669986704 +4,364.61442878503067,0.3643494473687624,12.884721366040782,74.06230584695935,0.0813772089968551 +5,369.74521098479994,0.3694765008023982,13.06603261928481,75.10449598128749,0.0825223330029985 +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.082606374999159 +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.0820752500003436 +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.0797756669999216 +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.0821104580027167 +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.0825127500065718 +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.0837727909965906 +12,367.93805840787127,0.3676706615630981,13.002171577095016,74.73741811409886,0.0821189999987836 +13,378.27841319804594,0.3780035015605473,13.367578373368447,76.83780268085307,0.0844268330038175 +14,382.7117309698025,0.3824335974443884,13.524242673260645,77.73832035324112,0.0854162920004455 +15,372.41599349838015,0.3721453423403144,13.160412560943849,75.64699867935846,0.0831184170019696 +16,356.7682378530547,0.3565089586104289,12.607453172677896,72.46854831390174,0.0796260409988462 +17,368.93348814627194,0.3686653678787238,13.037348009529412,74.93961477971149,0.0823411669989582 +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.0823945420052041 +19,368.3876096681557,0.3681198861146177,13.018057790780574,74.82873321384412,0.0822193340063677 +20,370.1432358855347,0.3698742364408505,13.080097997771896,75.18534478924924,0.0826111669957754 +21,368.5427485912714,0.368274912291423,13.02354008012396,74.860245807602,0.0822539590008091 +22,380.3863269498703,0.3801098833983078,13.44206769472198,77.2659726616924,0.0848972919993684 +23,370.1045866985358,0.3698356153419234,13.078732215273476,75.17749417314008,0.0826025409987778 +24,361.6613717978691,0.3613985364985974,12.78036642708676,73.46246614644215,0.0807181249983841 +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.0820459999958984 +26,371.72020035590015,0.3714500548614554,13.135824667373289,75.50566569729222,0.0829631250016973 +27,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.0810689170029945 +28,360.0086099352188,0.3597469757710216,12.721961234084311,73.12674889309132,0.0803492499981075 +0,245.20605579923495,0.0,0.0,58.064741436243395,0.0789422499947249 +1,250.55095440543516,0.0,0.0,59.3304122801399,0.0806630000006407 +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149 +3,249.81764644337736,0.0,0.0,59.156765111960304,0.0804269170039333 +4,249.02622560509047,0.0,0.0,58.969356827150214,0.0801721250027185 +5,248.4707444057284,0.0,0.0,58.83781899824741,0.0799932919981074 +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263 +7,246.38859307336747,0.0,0.0,58.34476600919865,0.079322958998091 +8,246.47595340441205,0.0,0.0,58.36545291685823,0.0793510840012459 +9,251.11329706391197,0.0,0.0,59.46357490108985,0.0808440420005354 +10,250.43486224262665,0.0,0.0,59.302921680879294,0.0806256249998114 +11,251.25358918047456,0.0,0.0,59.49679604421048,0.0808892079949146 +12,249.02648340531616,0.0,0.0,58.96941787418838,0.080172207999567 +13,253.20619256589657,0.0,0.0,59.95917210720173,0.0815178340053535 +14,249.5875338986397,0.0,0.0,59.10227451070708,0.0803528339965851 +15,246.30614979515929,0.0,0.0,58.32524345859641,0.0792964170032064 +16,248.74706084391897,0.0,0.0,58.90325067156323,0.0800822500023059 +17,249.45383612969297,0.0,0.0,59.07061490768795,0.0803097910029464 +18,248.40447792783144,0.0,0.0,58.82212711049024,0.0799719580027158 +19,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705 +20,248.96720883475896,0.0,0.0,58.955381668590064,0.0801531249962863 +21,250.81174011459103,0.0,0.0,59.39216628015041,0.0807469580031465 +22,237.7471648094788,0.0,0.0,56.298477649202496,0.0765409160012495 +23,249.37748086472203,0.0,0.0,59.05253399731491,0.0802852089982479 +24,250.11596367984183,0.0,0.0,59.227406569589995,0.0805229580000741 +25,248.8819172109695,0.0,0.0,58.93518463036493,0.0801256659979117 +26,249.33903922826215,0.0,0.0,59.04343102604385,0.0802728330017998 +27,262.4534401956857,0.0,0.0,62.148918363143466,0.0844949160018586 +28,261.2161602290057,0.0,0.0,61.85593073233089,0.0840965829993365 +0,224.52516714856455,0.0,0.0,57.735973906146626,0.0753427089948672 +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632 +2,231.69330601434635,0.0,0.0,59.57923933499082,0.0777480830001877 +3,234.760649370358,0.0,0.0,60.36799748719698,0.078777374998026 +4,228.2324736502117,0.0,0.0,58.6892966634995,0.0765867500012973 +5,223.36952695819903,0.0,0.0,57.43880449425753,0.0749549169995589 +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515 +7,228.01604737457023,0.0,0.0,58.63364329527478,0.0765141249939915 +8,226.91454579476897,0.0,0.0,58.35039546485715,0.076144500002556 +9,223.1887361622084,0.0,0.0,57.392314682837515,0.0748942499994882 +10,228.57679477020545,0.0,0.0,58.777837807691775,0.0767022919972078 +11,233.5521132500369,0.0,0.0,60.05722604543105,0.0783718329985276 +12,231.26827613662832,0.0,0.0,59.46994417560664,0.0776054579982883 +13,232.72316419059683,0.0,0.0,59.844064278876445,0.0780936669980292 +14,226.37205419514888,0.0,0.0,58.21089537567897,0.075962458999129 +15,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212 +16,235.0194191984909,0.0,0.0,60.43453937305556,0.0788642090046778 +17,235.69725578504784,0.0,0.0,60.60884302004133,0.0790916670011938 +18,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004 +19,224.62400355737097,0.0,0.0,57.76138939249184,0.0753758749997359 +20,231.10611067541615,0.0,0.0,59.42824381321107,0.0775510410021524 +21,232.56050106737092,0.0,0.0,59.802235944185355,0.0780390830041142 +22,232.27069102387352,0.0,0.0,59.727712159962834,0.0779418329984764 +23,231.9585306176708,0.0,0.0,59.64744104694712,0.0778370830012136 +24,230.3707829163002,0.0,0.0,59.23915648348338,0.0773042910004733 +25,230.7023166464104,0.0,0.0,59.32440938868658,0.0774155420003808 +26,239.12095968349055,0.0,0.0,61.489238217841425,0.0802405409995117 +27,235.103850013608,0.0,0.0,60.45625050415228,0.0788925410015508 +28,229.96015861058865,0.0,0.0,59.13356567377203,0.0771664999992935 +0,242.1989277900244,0.0,0.0,58.23108794513989,0.0794612079989747 +1,242.4689300777569,0.0,0.0,58.29600370304932,0.0795497910003177 +2,245.1891581817424,0.0,0.0,58.950019158028326,0.0804422499932115 +3,244.62667452650356,0.0,0.0,58.81478307133387,0.0802577089998521 +4,230.49772748177529,0.0,0.0,55.41780701763689,0.0756222499985597 +5,248.5687694470221,0.0,0.0,59.76256792777146,0.0815510410029674 +6,245.56152502051543,0.0,0.0,59.03954608671583,0.0805644170031882 +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579 +8,245.84270436380183,0.0,0.0,59.107149107161334,0.0806566669998574 +9,247.49612431036985,0.0,0.0,59.50467540175467,0.0811991250011487 +10,245.79812410417784,0.0,0.0,59.09643082264013,0.0806420410008286 +11,243.7852944737544,0.0,0.0,58.61249284530364,0.0799816670041764 +12,241.62857108664963,0.0,0.0,58.0939589674959,0.0792740839970065 +13,248.07080308887888,0.0,0.0,59.642843521642384,0.0813876669999444 +14,245.79787110638867,0.0,0.0,59.09636999521763,0.0806419579967041 +15,246.7866989049236,0.0,0.0,59.33411059557655,0.0809663750042091 +16,243.67810491245837,0.0,0.0,58.58672161325243,0.0799464999945485 +17,244.35603522014415,0.0,0.0,58.749714157140794,0.0801689170039026 +18,240.2579794931515,0.0,0.0,57.764432159321714,0.0788244170034886 +19,243.21099669998037,0.0,0.0,58.47441632912548,0.0797932500063325 +20,261.55407699968373,0.0,0.0,62.884582517155906,0.0858112920031999 +21,239.347894129501,0.0,0.0,57.54562334240464,0.0785258340038126 +22,245.55783996400805,0.0,0.0,59.03866010075577,0.0805632080009672 +23,224.7037046013891,0.0,0.0,54.02476924087008,0.0737213330066879 +24,245.09403272066805,0.0,0.0,58.92714845773173,0.0804110410026623 +25,245.82682726665857,0.0,0.0,59.10333182915559,0.0806514580035582 +26,246.27298345658295,0.0,0.0,59.210599687728774,0.0807978340017143 +27,229.8491343612716,0.0,0.0,55.26186791672805,0.0754094580042874 +28,244.80002731204428,0.0,0.0,58.85646170877651,0.0803145829995628 +29,244.9462070527816,0.0,0.0,58.89160722084109,0.0803625420012394 +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328 +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.0816092919994844 +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.083558999998786 +3,360.8727014356981,1.3071714929106786,13.5385618908606,73.38834238769952,0.0766691250028088 +4,405.9071867253503,1.4702977009456415,15.228083331222717,82.54671378166245,0.0862369159949594 +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.0799180419999174 +6,399.0524005201552,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465 +7,389.3215008612753,1.410220184232304,14.60585190812029,79.17379034332791,0.0827132080012233 +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.0822733329987386 +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927 +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093 +11,387.03474113975176,1.4019369666122965,14.520061439913068,78.70874683980463,0.0822273750018212 +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.0788562090019695 +13,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.082806749996962 +14,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.0829413329993258 +15,393.57240572328834,1.4256180284931532,14.765329580821945,80.03826931397275,0.0836163329950068 +16,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.0819364579947432 +17,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.0825907089965767 +18,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.0801123339988407 +19,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.0808422499976586 +20,367.5496145188862,1.3313569478045033,13.789054102260929,74.74618292673854,0.0780876670032739 +21,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166 +22,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.0810130409954581 +23,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.0816602499980945 +24,379.5121562547591,1.374688276213875,14.237842860786564,77.17892750743613,0.0806291659973794 +25,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.0827884579994133 +26,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.0803707919985754 +27,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335 +28,390.5568650001384,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184 +0,228.1520204661302,0.0,0.0,57.746086091398226,0.0799198750028153 +1,227.8495358539531,0.0,0.0,57.66952616253846,0.0798139170001377 +2,229.0306925870703,0.0,0.0,57.968481123615135,0.0802276670001447 +3,230.2044726270147,0.0,0.0,58.265569017469915,0.0806388330020126 +4,229.10003753664316,0.0,0.0,57.98603257645722,0.0802519579956424 +5,230.7167820382236,0.0,0.0,58.39523634763275,0.0808182909968309 +6,230.54216782071205,0.0,0.0,58.3510408694748,0.0807571249970351 +7,228.80932881388665,0.0,0.0,57.91245316700242,0.0801501249952707 +8,230.55620182047025,0.0,0.0,58.35459292462026,0.0807620409977971 +9,230.03128580010983,0.0,0.0,58.22173481694031,0.0805781670060241 +10,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297 +11,230.31081241713733,0.0,0.0,58.29248399574981,0.0806760830018902 +12,232.7656686097756,0.0,0.0,58.91381681039013,0.0815359999978682 +13,229.0882616679938,0.0,0.0,57.98305206230952,0.0802478330006124 +14,231.4391589588723,0.0,0.0,58.578072509964315,0.0810713340033544 +15,231.1610539996254,0.0,0.0,58.50768315778455,0.0809739160031313 +16,223.1157480108247,0.0,0.0,56.47138765923167,0.0781557080044876 +17,229.29047568345513,0.0,0.0,58.03423314728023,0.0803186669945716 +18,226.68384051120097,0.0,0.0,57.37448453423561,0.0794055830047 +19,229.939339682268,0.0,0.0,58.19846292819781,0.0805459589973907 +20,229.9903656561629,0.0,0.0,58.211377783281776,0.0805638329984503 +21,229.92208836236088,0.0,0.0,58.1940965579044,0.0805399159944499 +22,234.3581505243959,0.0,0.0,59.31687963469814,0.0820938340038992 +23,232.28523543551043,0.0,0.0,58.79221746892648,0.0813677080004708 +24,224.9047315536089,0.0,0.0,56.92418574301216,0.0787823749997187 +25,229.36006045625183,0.0,0.0,58.051845300231406,0.080343041998276 +26,227.33044351249188,0.0,0.0,57.53814204865611,0.0796320829977048 +27,226.7574704574646,0.0,0.0,57.393120534947585,0.0794313750011497 +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467 +1,228.78073899886232,0.0,0.0,56.00141900241923,0.0778383330034557 +2,235.23590932049515,0.0,0.0,57.58152884687401,0.0800345829993602 +3,236.26866601830895,0.0,0.0,57.83432915172009,0.0803859589941566 +4,236.1306451621364,0.0,0.0,57.80054412317523,0.0803390000000945 +5,236.65994415723756,0.0,0.0,57.930107017901115,0.0805190840037539 +6,230.7082285871409,0.0,0.0,56.4732338611715,0.0784941249949042 +7,236.48396084260233,0.0,0.0,57.88702946083294,0.0804592089989455 +8,233.11602697824952,0.0,0.0,57.062619694803665,0.0793133330007549 +9,234.8972924876633,0.0,0.0,57.4986415233184,0.0799193750062841 +10,235.4089534558389,0.0,0.0,57.62388694560078,0.0800934580038301 +11,236.8091074367793,0.0,0.0,57.966619511714825,0.0805698339972877 +12,235.2139889440503,0.0,0.0,57.576163132123064,0.0800271250045625 +13,235.677400358321,0.0,0.0,57.68959792953932,0.0801847920010914 +14,235.25183085336997,0.0,0.0,57.58542615237964,0.0800400000007357 +15,224.63833749671065,0.0,0.0,54.98743345794819,0.0764289589933469 +16,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743 +17,236.4523617407738,0.0,0.0,57.87929456781116,0.080448458000319 +18,230.33752474602355,0.0,0.0,56.382492213849865,0.0783680000022286 +19,235.6896449605586,0.0,0.0,57.69259518841446,0.0801889579961425 +20,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569 +21,234.47784821362225,0.0,0.0,57.395969092756594,0.0797766670002602 +22,236.01075312636675,0.0,0.0,57.77119670450892,0.0802982089953729 +23,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387 +24,249.0360862322947,0.0,0.0,60.95956448452025,0.0847298330045305 +25,237.69685978979257,0.0,0.0,58.183925355331866,0.0808718749976833 +26,236.12660378259105,0.0,0.0,57.799554865992754,0.0803376249969005 +27,234.46707023916116,0.0,0.0,57.39333083803974,0.0797729999976581 +28,241.69022142718063,0.0,0.0,59.161428615711976,0.0822305410038097 +0,229.97339319686975,0.0,0.0,56.76642090692848,0.0792393329975311 +1,226.07553485511937,0.0,0.0,55.804277138088366,0.0778962920012418 +2,231.8659096318397,0.0,0.0,57.233567923491464,0.0798914159968262 +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506 +4,238.15693061363416,0.0,0.0,58.78643775779073,0.0820590419971267 +5,232.81398613818936,0.0,0.0,57.467590256524325,0.0802180840037181 +6,232.3516788377947,0.0,0.0,57.35347474760509,0.0800587920020916 +7,235.3009818299224,0.0,0.0,58.08147798617912,0.0810750000018742 +8,232.87529353460332,0.0,0.0,57.48272331788053,0.080239208000421 +9,234.6029875368596,0.0,0.0,57.90918571671333,0.0808344999968539 +10,233.90293845796447,0.0,0.0,57.73638624580215,0.080593291997502 +11,236.10309480251144,0.0,0.0,58.27947081475786,0.0813513750035781 +12,228.53955331278615,0.0,0.0,56.41249318841474,0.0787452909935382 +13,236.0381566565893,0.0,0.0,58.26344154253167,0.0813290000005508 +14,233.2262264846764,0.0,0.0,57.56934728457961,0.0803601250008796 +15,223.59820949155468,0.0,0.0,55.1927764233464,0.0770427079987712 +16,232.78762196853413,0.0,0.0,57.46108254912954,0.0802089999997406 +17,234.0781596831433,0.0,0.0,57.77963769190232,0.0806536659947596 +18,234.60528613661103,0.0,0.0,57.90975310096232,0.0808352919993922 +19,232.4469688391939,0.0,0.0,57.37699604392746,0.0800916250009322 +20,236.41351504810697,0.0,0.0,58.35609466273675,0.0814583329993183 +21,216.02874452302436,0.0,0.0,53.32433665094193,0.0744345830025849 +22,232.45519093886716,0.0,0.0,57.37902557945026,0.0800944579968927 +23,233.9956889809203,0.0,0.0,57.75928069960073,0.0806252499969559 +24,232.5895425232549,0.0,0.0,57.41218880099883,0.0801407500039204 +25,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317 +26,229.88862389489532,0.0,0.0,56.74549653037789,0.0792101249971892 +27,233.92301053494205,0.0,0.0,57.74134081882622,0.0806002080062171 +28,234.3584718660642,0.0,0.0,57.84882969337619,0.0807502499956172 +0,390.8727972970198,1.8664702076173023,14.049430290064786,79.44375920058373,0.0834474579969537 +1,386.2283609945746,1.8442923992621632,13.882491878082469,78.49979103041318,0.0824559169996064 +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.0830597499953 +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.0818107090017292 +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.0824191249994328 +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.0820837080027558 +6,363.3642991549768,1.735113427116142,13.060671978656051,73.85273696143435,0.0775746670042281 +7,388.22708634477254,1.8538365817817757,13.954333542866456,78.90602614456611,0.082882624999911 +8,375.0914257577759,1.7911120347870877,13.482188770942804,76.2362413352104,0.0800782919977791 +9,386.50588680771034,1.8456176223670837,13.892467193817684,78.55619734475168,0.0825151660028495 +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.0819437079990166 +11,382.40578027890945,1.826039061932629,13.745094029820152,77.72286261789608,0.0816398340029991 +12,399.92533106121743,1.909697274558687,14.374812212132664,81.2836603589434,0.0853800839977338 +13,392.779794759326,1.875576377128228,14.1179749114743,79.8313508883124,0.0838545830047223 +14,385.4919894836888,1.840776126202716,13.856023931780443,78.35012566255561,0.0822987089995876 +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.0750168340018717 +16,363.50267089671735,1.7357741708039116,13.065645576596715,73.88086061549012,0.0776042079960461 +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.0824202080038958 +18,383.1556137558722,1.8296196176916977,13.772045849533868,77.8752640912048,0.0817999159989995 +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.0846969580015866 +20,377.543333802351,1.8028202256580403,13.57031951677143,76.73458451391768,0.0806017499999143 +21,384.0859896272982,1.8340622876802744,13.805487038175158,78.06436028108223,0.0819985420021112 +22,377.9580697399782,1.804800645572044,13.585226677578657,76.81887838698462,0.0806902920012362 +23,377.9699719544116,1.804857480247668,13.585654487682444,76.82129747745074,0.0806928330057417 +24,393.94456555862206,1.8811383144403728,14.159841130514804,80.06808716554386,0.0841032499956782 +25,367.0360156994838,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779 +26,423.4076839939201,2.021828669878938,15.218855805997825,86.05638029430169,0.0903933329973369 +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.0836692079974454 +28,397.13519183039904,1.896373984256985,14.27452417240712,80.71657267537456,0.0847844169984455 +29,368.653767842532,1.7603713519134625,13.250795267130425,74.92780608780754,0.0787039160059066 +0,260.20760817827636,0.0668398685276846,0.0,63.29735549571737,0.0778534579949337 +1,264.69906999108105,0.0679935961960136,0.0,64.3899355976249,0.0791972920051193 +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.0786077919983654 +3,261.1013891414675,0.0670694552122957,0.0,63.51477408604411,0.078120874997694 +4,257.7910068686657,0.0662191129896392,0.0,62.7095000011884,0.0771304169975337 +5,259.7389946089577,0.0667194951474332,0.0,63.183361904619304,0.07771325000067 +6,258.06479595470574,0.0662894415501427,0.0,62.77610114798519,0.0772123339993413 +7,256.0824062134452,0.0657802225053802,0.0,62.29387071259507,0.0766192080045584 +8,245.48280118105225,0.0630574881019913,0.0,59.71544123258579,0.0734478329977719 +9,255.98353170352672,0.0657548244807415,0.0,62.26981878326222,0.0765896250013611 +10,265.5946591131205,0.0682236473447522,0.0,64.60779403548037,0.0794652500044321 +11,260.294366973363,0.0668621543728135,0.0,63.318460191054406,0.0778794160069082 +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.0770466250032768 +13,260.85629013818584,0.067006496310862,0.0,63.45515200638633,0.0780475419960566 +14,263.58442150290836,0.0677072749814817,0.0,64.1187894074632,0.078863791997719 +15,262.31742217161724,0.067381819206683,0.0,63.81058278872888,0.0784847090035327 +16,268.16277907116,0.0688833236761263,0.0,65.2325075212917,0.0802336249980726 +17,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.0772270000015851 +18,252.13699183642044,0.0647667587558233,0.0,61.33412054176475,0.07543875000556 +19,259.3735737404644,0.0666256290111647,0.0,63.09447067357302,0.0776039170013973 +20,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.0781142080013523 +21,260.63695006654126,0.066950154139877,0.0,63.40179597046354,0.0779819160015904 +22,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589 +23,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505 +24,257.15221136999554,0.0660550247546867,0.0,62.55410844268836,0.076939291000599 +25,263.19769031243703,0.067607934834944,0.0,64.02471428869198,0.0787480830040294 +26,259.31383057100317,0.0666102827051125,0.0,63.079937721741594,0.0775860419962555 +27,261.2983025863787,0.0671200366263495,0.0,63.56267468515301,0.078179791002185 +0,362.1477510943677,0.2358390787664502,14.28510991385356,76.17602244156343,0.0828109170033712 +1,336.858148535045,0.2193698985715243,13.287548142046615,70.85647723860235,0.0770280419965274 +2,362.74505428268986,0.2362280565614316,14.308670854578146,76.30166226934243,0.0829474999991362 +3,360.94585457223286,0.2350563756633761,14.237700468753069,75.9232093392705,0.0825360840026405 +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.0815027909993659 +5,349.6413415549495,0.2276946126043954,13.791787963466238,73.54535987121973,0.0799511250006617 +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.082421457998862 +7,359.44475760769,0.2340788262400065,14.178488903680394,75.60746087552211,0.0821928340010345 +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.0812284160056151 +9,347.2399143905892,0.2261307471145338,13.697062396651766,73.04023131799444,0.0794019999957527 +10,368.19860405248215,0.2397795356188831,14.523789014629491,77.44879000489925,0.084194542003388 +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.0862538340006722 +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242 +13,356.8769656271249,0.2324066200939505,14.07720098854786,75.06733829034602,0.0816056670009857 +14,360.27602202196147,0.23462016505291,14.211278568919123,75.78231331208995,0.0823829159999149 +15,355.8179236856387,0.2317169472322514,14.035426518067805,74.84457395601721,0.0813635000013164 +16,367.0209393602304,0.2390126128497174,14.47733540689717,77.20107395045873,0.0839252500009024 +17,364.3840903443813,0.2372954351484481,14.373323500420288,76.64642555294876,0.0833222919973195 +18,350.5090521147184,0.2282596859989792,13.826015266223887,73.72787857767031,0.0801495409978088 +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033 +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.083118957998522 +21,365.90504594881264,0.2382859169822019,14.4333184000648,76.96635118525121,0.0836700829968322 +22,351.0808508987014,0.2286320547298269,13.84857017220666,73.8481536777341,0.0802802920006797 +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.0797767499971087 +24,340.5454724450315,0.2217711700730505,13.43299658728192,71.63208793359534,0.0778712080063996 +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.0810339579984429 +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.0822699170021223 +27,360.8257711959278,0.2349781745624239,14.232963716352534,75.89795038366293,0.0825086250042659 +28,370.2476265409491,0.2411139069482411,14.604613792293463,77.87979194428189,0.0846630840023863 +29,362.5628409920885,0.2361093950083374,14.301483354790728,76.26333458769301,0.0829058339950279 +0,246.0739988250765,0.0,0.0,60.74658181579221,0.0778715830019791 +1,245.0826823466955,0.0,0.0,60.50186239055085,0.0775578749962733 +2,244.5910373393436,0.0,0.0,60.38049339664647,0.0774022910045459 +3,244.5508800746296,0.0,0.0,60.37058005115652,0.077389582998876 +4,244.58959003848383,0.0,0.0,60.38013611151879,0.077401832997566 +5,244.22606079392185,0.0,0.0,60.29039416762119,0.077286792002269 +6,242.8457992005612,0.0,0.0,59.94965855878557,0.0768499999976484 +7,244.85397754171655,0.0,0.0,60.44540362118208,0.0774854999981471 +8,241.9405926628893,0.0,0.0,59.72619649752176,0.0765635419957107 +9,245.51138657380295,0.0,0.0,60.607693630466905,0.0776935410031001 +10,244.7109876747656,0.0,0.0,60.41010470421792,0.0774402500028372 +11,248.3810623596752,0.0,0.0,61.31611059342773,0.0786016670026583 +12,241.60984521505156,0.0,0.0,59.644547168472904,0.0764588749952963 +13,245.731929101319,0.0,0.0,60.66213743499555,0.0777633329998934 +14,245.77880451553304,0.0,0.0,60.67370924346901,0.0777781670039985 +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489 +16,259.02748853123154,0.0,0.0,63.94432000020854,0.0819707919945358 +17,245.3989443932433,0.0,0.0,60.579935809024875,0.0776579580051475 +18,247.6429406685668,0.0,0.0,61.133895609670745,0.0783680839958833 +19,246.88414631211123,0.0,0.0,60.94657730836352,0.0781279590009944 +20,245.0546373862557,0.0,0.0,60.4949391256305,0.0775490000014542 +21,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792 +22,244.31098572658755,0.0,0.0,60.3113589968799,0.0773136670031817 +23,243.40301102024273,0.0,0.0,60.087213577010274,0.0770263329977751 +24,245.98617616377825,0.0,0.0,60.72490164435878,0.0778437909975764 +25,246.44029623831136,0.0,0.0,60.83700711829563,0.077987500000745 +26,250.5241978502783,0.0,0.0,61.84517159151716,0.0792798749971552 +27,245.67623416012847,0.0,0.0,60.648388411051904,0.0777457080039312 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/mac_report.md new file mode 100644 index 000000000..99df8502d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 520.34 ms | 78.33 ms | +| **Average Power** | 4.871 W | 4.426 W | +| **Total Energy** | 2281.01 J | 312.04 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.12% | 0.00e+00 | +6.230 | large | βœ… | +| `gpu_mj` | +81.23% | 4.98e-169 | +1.546 | large | βœ… | +| `ane_mj` | +86.55% | 2.91e-48 | +0.729 | medium | βœ… | +| `dram_mj` | +87.13% | 0.00e+00 | +20.514 | large | βœ… | +| `time_s` | +84.73% | 0.00e+00 | +74.836 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.230, large) +- **`gpu_mj`**: 81.2% lower energy (Cohen’s d = +1.546, large) +- **`ane_mj`**: 86.6% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.514, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +74.836, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..15b55e866 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.9343348502491,0.9659333379641896,0.0,478.1370022922739,0.5167249579972122 +1,1749.9576772420037,0.9631941360465022,0.0,476.7810973430186,0.5152596249972703 +2,1765.8187969550952,0.9719242543216248,0.0,481.1025058892042,0.5199297919971286 +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453 +4,1751.8730274703044,0.9642483638900476,0.0,477.3029401255735,0.5158235830022022 +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217 +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765 +7,1753.9604561917197,0.9653973054501948,0.0,477.8716661978465,0.5164382080038195 +8,1755.9675055029504,0.966502005382356,0.0,478.4184926642661,0.517029165996064 +9,1753.8309770174317,0.9653260388229864,0.0,477.8363892173782,0.5164000840013614 +10,1754.0766355703215,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781 +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869 +12,1756.321002261384,0.96669657351921,0.0,478.51480389200896,0.5171332500030985 +13,1761.6994107051369,0.9696569030984088,0.0,479.9801670337124,0.5187168749980628 +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397 +15,1774.358559978593,0.976624624950258,0.0,483.42918935037767,0.5224442500039004 +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615 +17,1751.65354389843,0.9641275579459168,0.0,477.2431411832288,0.5157589579976047 +18,1750.447303023146,0.9634636309533716,0.0,476.914497321919,0.5154037909960607 +19,1744.4536070151348,0.9601646409702193,0.0,475.2814972802585,0.5136389999970561 +20,1753.692293957126,0.9652497062852384,0.0,477.798604611193,0.5163592499957304 +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802 +22,1758.8267386074654,0.968075755762536,0.0,479.19749910245525,0.5178710420004791 +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659 +24,1766.5958315849296,0.9723519419215564,0.0,481.3142112511703,0.5201585830000113 +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069 +26,1752.9806340260625,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014 +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911 +28,1751.2059468821633,0.9638811960898636,0.0,477.1211920644825,0.5156271669984562 +29,1757.8863946286374,0.967558181070272,0.0,478.9412996297846,0.5175941659981618 +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044 +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938 +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633 +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316 +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086 +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983 +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794 +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901 +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509 +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675 +10,2646.795163355197,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344 +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734 +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329 +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119 +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925 +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591 +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422 +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537 +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056 +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665 +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854 +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703 +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205 +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758 +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439 +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776 +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591 +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822 +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663 +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273 +0,1851.2929834808735,1.525707090391358,0.0,489.00607477143456,0.5257506659982027 +1,1815.007070744064,1.4958027614505225,0.0,479.4214050755753,0.5154457909957273 +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323 +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766 +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256 +5,1815.024824844166,1.4958173931466672,0.0,479.426094696764,0.5154508330015233 +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143 +7,1811.0336499636064,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081 +8,1817.0066970315177,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951 +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976 +10,1810.1798942357495,1.4918245378570545,0.0,478.1463402113843,0.5140749159982079 +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977 +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256 +13,1812.1079196707988,1.4934134825043668,0.0,478.6556146257886,0.5146224579948466 +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482 +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739 +16,1814.2052567911392,1.495141962082693,0.0,479.20961153597057,0.5152180829973076 +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969 +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826 +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299 +20,1817.835656233042,1.4981338851434334,0.0,480.1685561205276,0.5162490840011742 +21,1813.5350490943129,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173 +22,1814.531999481375,1.495411240713182,0.0,479.2959183290272,0.5153108750018873 +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478 +24,1821.465316194058,1.5011251987753895,0.0,481.1273053763877,0.5172798749990761 +25,1816.57387709804,1.4970940144206697,0.0,479.83526599976256,0.5158907500008354 +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959 +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901 +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062 +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325 +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145 +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091 +2,1779.3928443092848,1.2935973032110897,0.0,478.6310021881031,0.5164371669961838 +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093 +4,1773.9815157607254,1.289663332115503,0.0,477.17543288273623,0.5148666250024689 +5,1777.9932479026747,1.292579813372932,0.0,478.2545309479849,0.5160309589991812 +6,1778.2917123371087,1.2927967934449398,0.0,478.3348135746278,0.5161175829998683 +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995 +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622 +9,1754.4484513303544,1.275463028033475,0.0,471.9213203723859,0.5091975000032107 +10,1775.5038586790918,1.290770057198758,0.0,477.5849211635405,0.5153084579942515 +11,1786.1638599055125,1.2985197505184911,0.0,480.45230769184184,0.5184023340043495 +12,1780.7071642069795,1.2945527980477989,0.0,478.9845352776855,0.5168186250011786 +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725 +14,1780.113098568184,1.2941209194377807,0.0,478.8247401919788,0.5166462080014753 +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305 +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493 +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456 +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645 +19,1790.2618712334158,1.301498955711576,0.0,481.5546136132831,0.5195917090022704 +20,1815.5910112672468,1.3199129373937035,0.0,488.3677868356704,0.5269430419939454 +21,1782.178110375644,1.2956221583091028,0.0,479.380198574368,0.5172455409992835 +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016 +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714 +24,1840.8703326220395,1.3382907014923673,0.0,495.16755955217593,0.5342799159989227 +25,1787.1828714348917,1.299260559705491,0.0,480.72640709103166,0.5186980840007891 +26,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483 +27,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777 +28,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738 +29,1783.093470454418,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704 +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292 +1,2715.9020526639206,4.5839715944040265,91.47719784715092,550.9866445126663,0.5387826250007492 +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223 +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655 +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857 +5,2719.8013326503037,4.59055290269483,91.60853366113064,551.7777080908264,0.5395561670011375 +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514 +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546 +8,2686.408260218842,4.5341911884255115,90.48378592196204,545.0031129205282,0.532931624999037 +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732 +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318 +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728 +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426 +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253 +14,2678.044504222127,4.520074618988164,90.2020773230432,543.3063220338199,0.5312724169998546 +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908 +16,2692.3906558823523,4.544288434664978,90.68528538000552,546.2167870696205,0.534118417002901 +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387 +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994 +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183 +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407 +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541 +22,2669.225814940643,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802 +23,2704.503515961487,4.5647328415151005,91.09327155788225,548.6741747077011,0.5365213749973918 +24,2722.9180265552013,4.595813341418859,91.71351035743224,552.4100050895154,0.5401744590053568 +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108 +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303 +27,2689.5938418367864,4.5395678976606595,90.59108289890465,545.6493854636676,0.5335635829978855 +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969 +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076 +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069 +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925 +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788 +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137 +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639 +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815 +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394 +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472 +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863 +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402 +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608 +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669 +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245 +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812 +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655 +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166 +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059 +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509 +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761 +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521 +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396 +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608 +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393 +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749 +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709 +25,2647.220924751434,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588 +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705 +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554 +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974 +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549 +0,1786.9876176050948,0.9744578121988632,0.0,485.98563233904,0.5244097500035423 +1,1782.494248517345,0.9720075441793689,0.0,484.7636245333176,0.5230911249964265 +2,1789.6608931992605,0.9759155695225464,0.0,486.71265110360656,0.5251942500035511 +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507 +4,1774.29452682005,0.9675361741558348,0.0,482.53364437295994,0.5206848329980858 +5,1774.592693303347,0.9676987665857556,0.0,482.61473314240624,0.5207723329949658 +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435 +7,1782.7985214602406,0.9721734665077184,0.0,484.84637400348737,0.5231804169961833 +8,1756.4093657710655,0.9577832610774696,0.0,477.6696312056359,0.515436249996128 +9,1768.703196283028,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765 +10,1768.6684113239016,0.9644682109849976,0.0,481.0035770853799,0.5190337919993908 +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654 +12,1777.5417030532524,0.9693068838221228,0.0,483.4167400248056,0.5216377499964437 +13,1800.5370152626765,0.9818464008314552,0.0,489.6704998353564,0.5283859589981148 +14,1773.0453523522408,0.9668549899064512,0.0,482.193921345414,0.5203182500044932 +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211 +16,1769.166632213147,0.9647398945898208,0.0,481.1390722569855,0.5191800000029616 +17,1763.204154234821,0.96148851042308,0.0,479.517528491345,0.5174302500017802 +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578 +19,1767.0888376996136,0.9636068575861454,0.0,480.5739993540834,0.5185702500020852 +20,1767.2573750274971,0.9636987622609094,0.0,480.619834433777,0.5186197090006317 +21,1785.681222404281,0.9737454250526344,0.0,485.6303476736638,0.5240263750019949 +22,1765.3002646808288,0.9626315352427376,0.0,480.0875825591626,0.5180453749999288 +23,1766.7130081954772,0.9634019149257976,0.0,480.4717895024762,0.5184599589993013 +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092 +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044 +26,1761.720706069687,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842 +27,1768.10288660893,0.9641598260968948,0.0,480.84977809791,0.5188678330014227 +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913 +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169 +0,1751.7597276163842,2.1636114978065435,0.0,477.192837423917,0.5169033329948434 +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173 +2,1755.551400507329,2.168294621258601,0.0,478.2257183132816,0.5180221670016181 +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047 +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944 +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581 +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837 +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318 +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886 +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515 +10,1760.364557240052,2.174239387018135,0.0,479.5368592660305,0.5194424170040293 +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399 +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216 +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349 +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101 +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313 +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864 +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862 +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351 +19,1740.735333244333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869 +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783 +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092 +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061 +23,1780.1372456652791,2.1986607818846435,0.0,484.9230918322808,0.5252768749996903 +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918 +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964 +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957 +27,1746.5222472011149,2.1571426467036403,0.0,475.7661074329752,0.5153578749959706 +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571 +29,1754.4581827370755,2.166944379841335,0.0,477.9279173754673,0.5176995840010932 +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364 +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786 +2,1778.486234577878,1.5993880891754215,0.0,479.54986207109727,0.5181025829951977 +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965 +4,1767.9182652955085,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635 +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698 +6,1776.3588275952677,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941 +7,1769.0324619649873,1.5908863358186305,0.0,477.00075302295267,0.5153485419941717 +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501 +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905 +10,1781.685358726182,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195 +11,1782.0121818251405,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831 +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797 +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205 +14,1808.8365189834235,1.6266820217555849,0.0,487.7334928563829,0.5269441249984084 +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777 +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378 +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959 +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474 +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329 +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545 +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641 +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807 +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364 +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073 +25,1771.4579433126603,1.5930675649462802,0.0,477.6547582230597,0.516055125001003 +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122 +27,1771.2442582749284,1.5928753985423243,0.0,477.597140329607,0.5159928749999381 +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222 +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618 +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646 +1,1779.6926984637155,2.298914111764198,0.0,482.0722939582054,0.5188747089996468 +2,1815.206967652506,2.3447895905351,0.0,491.69218239786034,0.5292289999997593 +3,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378 +4,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604 +5,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856 +6,1776.1563189074311,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351 +7,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192 +8,1773.7140800868076,2.2911912446830485,0.0,480.4528423089714,0.5171316249980009 +9,1782.3990367731817,2.302410018296943,0.0,482.8053703585286,0.5196637499975623 +10,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193 +11,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539 +12,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419 +13,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821 +14,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162 +15,1772.853313724588,2.29007935163615,0.0,480.2196831713544,0.5168806660003611 +16,1770.9595755799237,2.2876331195711908,0.0,479.706718943124,0.5163285410017124 +17,1786.4787687097223,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075 +18,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552 +19,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846 +20,1791.298932109912,2.31390643843762,0.0,485.2161196775931,0.5222585410010652 +21,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781 +22,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464 +23,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138 +24,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602 +25,1774.9085456819907,2.292734192976961,0.0,480.7763918577341,0.5174798750012997 +26,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214 +27,1779.5730804224474,2.298759595423635,0.0,482.0398925533996,0.5188398340033018 +28,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901 +29,1792.9830205511932,2.3160818559613663,0.0,485.6722952739856,0.5227495420040214 +0,1756.762206346076,1.7661260064937123,0.0,477.9203619836382,0.5165056249970803 +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214 +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192 +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793 +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873 +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208 +6,1765.817171014456,1.7752292354514725,0.0,480.3837300914154,0.5191678749979474 +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429 +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212 +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823 +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864 +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192 +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042 +13,1755.3462952571251,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376 +14,1758.3116163303305,1.7676836750603675,0.0,478.34187297576966,0.5169611669989536 +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556 +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374 +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569 +18,1756.8116672700412,1.7661757310516548,0.0,477.9338176366573,0.5165201670024544 +19,1752.963015612889,1.7623065655168555,0.0,476.88680684231593,0.5153886249972857 +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859 +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751 +22,1757.216415420918,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844 +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327 +24,1755.7857633216242,1.765144358884768,0.0,477.6547244363272,0.5162185410008533 +25,1762.728840517084,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231 +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085 +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424 +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666 +29,1755.9440640749146,1.7653035034042843,0.0,477.6977895438538,0.5162650830025086 +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839 +1,1753.2505788590777,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426 +2,1752.8381169148636,0.8314540247964403,0.0,476.3898980473684,0.5165165830039768 +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984 +4,1765.114376950317,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311 +5,1756.9934111913135,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252 +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978 +7,1763.462414839216,0.8364936318112554,0.0,479.2773912825768,0.5196472919997177 +8,1753.3060095523142,0.8316759684048242,0.0,476.517062857228,0.5166544590028934 +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468 +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776 +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499 +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328 +13,1773.3545454320447,0.841185937230592,0.0,481.9658945956399,0.5225622500001919 +14,1776.3548905408898,0.8426091428263935,0.0,482.7813344738104,0.523446375002095 +15,1744.0009641467575,0.827262145257835,0.0,473.9881187469291,0.5139124999986961 +16,1748.8014619995813,0.8295392484439423,0.0,475.2928077884412,0.5153270839946344 +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871 +18,1750.578277165131,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152 +19,1747.6397256783089,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122 +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235 +21,1752.5626705211123,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282 +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452 +23,1783.0733219996505,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041 +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799 +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868 +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653 +27,1752.178208974687,0.8311409992480111,0.0,476.2105469291404,0.5163221250040806 +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269 +29,1752.354532351862,0.831224637765569,0.0,476.2584684541605,0.5163740829957533 +0,1747.0589457116464,3.0201243148830725,0.0331881792844293,476.8145717793967,0.5152042500048992 +1,1747.3293781548232,3.020591808895897,0.0331933165812735,476.8883793231577,0.5152840000009746 +2,1750.1044899098858,3.025389118401999,0.0332460342681538,477.6457743305661,0.5161023750042659 +3,1751.6777760699365,3.028108843341962,0.0332759213554061,478.07516211312054,0.5165663340012543 +4,1766.1522672194958,3.0531307596165367,0.0335508874683135,482.0256002572614,0.5208348329979344 +5,1766.7483783587693,3.0541612513183263,0.0335622115529486,482.1882933812131,0.5210106250015087 +6,1754.7747482092896,3.0334625498574375,0.0333347532951366,478.9204005912286,0.517479624999396 +7,1753.3064440845665,3.030924306371375,0.0333068605095755,478.51966494107194,0.5170466249983292 +8,1749.3128298275074,3.0240205830873874,0.0332309954185427,477.42971117820326,0.5158689160016365 +9,1757.5330439768445,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158 +10,1749.9246243251405,3.0250781864627907,0.033242617433657,477.59668466935074,0.5160493329967721 +11,1748.560030649437,3.022719226251378,0.0332166947939711,477.224254104984,0.5156469170033233 +12,1753.7423269355932,3.0316778129431237,0.0333151408015727,478.6386278961962,0.5171751659945585 +13,1756.9680215412786,3.0372540407715727,0.0333764180304568,479.51899784357346,0.5181264169950737 +14,1753.7127980950845,3.031626766715158,0.0333145798540127,478.63056876260094,0.5171664579975186 +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442 +16,1746.7611037466984,3.0196094382885876,0.0331825212998745,476.73328351529824,0.5151164169947151 +17,1749.0789930550138,3.023616351665171,0.0332265533150018,477.365891476632,0.5157999579969328 +18,1745.504313415313,3.0174368367013065,0.0331586465571572,476.3902750866777,0.5147457919956651 +19,1750.3038537106063,3.025733756723185,0.0332498215024525,477.7001855257362,0.5161611669973354 +20,1748.1413808301063,3.0219955102589178,0.0332087418709771,477.1099944603282,0.5155234579942771 +21,1757.5372861178564,3.0382381230737434,0.0333872321216894,479.6743638923129,0.5182942920000642 +22,1749.8696629689396,3.024983175284921,0.0332415733547793,477.5816843881149,0.5160331250008312 +23,1781.692526770394,3.07999505967033,0.0338460995568168,486.2669123327872,0.5254176250018645 +24,1759.469025002054,3.0415775018557194,0.033423928591821,480.2015820786936,0.5188639580010204 +25,1751.8266953376512,3.028366278674916,0.0332787503151089,478.1158057771706,0.5166102500006673 +26,1755.287352510616,3.034348684076406,0.0333444910338066,479.06030268270024,0.5176307910005562 +27,1765.1312939975094,3.0513658128411953,0.0335314924488043,481.746952011972,0.5205337500010501 +28,1767.6126601371138,3.0556553270735236,0.0335786299678409,482.4241767479705,0.5212654999995721 +29,1751.5500471769017,3.027888039609773,0.0332734949407667,478.0403018139957,0.516528667001694 +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073 +1,1764.845139373689,0.1664885418827298,0.0,479.25391666362606,0.5172321659993031 +2,1769.8090308676667,0.1669568158623888,0.0,480.6018901414725,0.5186869589961134 +3,1761.667486286026,0.1661887746015269,0.0,478.39100656795546,0.5163008750023437 +4,1770.120524418555,0.1669862009375641,0.0,480.6864780188722,0.5187782499997411 +5,1758.7666359534974,0.1659151198024128,0.0,477.6032638632257,0.5154507080005715 +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002 +7,1766.3960797342909,0.1666348514899712,0.0,479.6750834990312,0.5176867080008378 +8,1777.8972580842958,0.1677198273729572,0.0,482.7982950757946,0.5210574169977917 +9,1769.0387471033746,0.1668841503248344,0.0,480.3927151250683,0.5184612080047373 +10,1764.9314380729104,0.1664966829622382,0.0,479.27735157509903,0.5172574579992215 +11,1772.566856441291,0.1672169782688663,0.0,481.3507936447587,0.5194952090023435 +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439 +13,1762.1909595977615,0.1662381570127317,0.0,478.5331587768496,0.5164542919956148 +14,1773.2691781297697,0.1672832325317695,0.0,481.5415131659517,0.5197010420015431 +15,1763.9601307223377,0.1664050536510261,0.0,479.0135874398439,0.5169727920001606 +16,1762.9672077460498,0.1663113852067893,0.0,478.7439534562638,0.5166817909994279 +17,1765.03607677191,0.1665065541651173,0.0,479.3057668197068,0.5172881249964121 +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674 +19,1759.353089729241,0.1659704435426248,0.0,477.7625187818,0.5156225829996401 +20,1767.829302824657,0.1667700561134161,0.0,480.06428352807984,0.518106750001607 +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435 +22,1767.7985939618377,0.166767159160205,0.0,480.05594435856625,0.5180977499985602 +23,1772.0661315525292,0.1671697418543195,0.0,481.2148189018443,0.519348459005414 +24,1759.33233396092,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604 +25,1759.9227696447715,0.1660241849029066,0.0,477.91721866150704,0.5157895419979468 +26,1767.522357592919,0.1667411001087618,0.0,479.98093077308187,0.51801679199707 +27,1756.276093432469,0.1656801718267677,0.0,476.92694262053374,0.5147207920017536 +28,1787.0935630557296,0.1685873705761791,0.0,485.2956049405893,0.5237526249984512 +29,1761.5507619170933,0.1661777632841301,0.0,478.3593093896971,0.516266665996227 +0,1776.691736185956,0.1001837341608155,0.0,477.44228243239314,0.5172290420014178 +1,1770.7935195244447,0.0998511467130299,0.0,475.8572815187299,0.5155119580012979 +2,1771.6266559565545,0.0998981254416041,0.0,476.0811664795379,0.5157544999965467 +3,1771.6970738633242,0.0999020961522841,0.0,476.1000895630688,0.5157749999998487 +4,1767.255164562743,0.0996516266693274,0.0,474.9064354971249,0.5144818750050035 +5,1778.5290421222858,0.1002873357962306,0.0,477.93601329290306,0.5177639169996837 +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503 +7,1775.7415239627014,0.100130153786217,0.0,477.1869362271816,0.5169524169978104 +8,1770.133281321143,0.0998139173348012,0.0,475.6798587118843,0.5153197499967064 +9,1767.617129727283,0.0996720370877929,0.0,475.0037047480587,0.5145872500070254 +10,1762.247909439489,0.0993692785805023,0.0,473.560858621814,0.5130241669976385 +11,1773.6424386464917,0.1000117909880923,0.0,476.6228585855853,0.5163413330010371 +12,1769.1378436654545,0.0997577867976686,0.0,475.41235928208937,0.5150299590022769 +13,1777.9878823036338,0.1002568209858636,0.0,477.7905898782973,0.5176063749968307 +14,1755.9015670313545,0.0990114223087807,0.0,471.85543491621286,0.5111766249974607 +15,1776.3105898766091,0.1001622421598373,0.0,477.3398587197316,0.5171180830002413 +16,1787.7577916465848,0.1008077246572515,0.0,480.4160131415751,0.5204505829970003 +17,1773.7231650386664,0.1000163429715617,0.0,476.6445518214728,0.5163648340021609 +18,1769.8345789266932,0.0997970741646162,0.0,475.599589777173,0.5152327920004609 +19,1774.2379885508392,0.1000453727356073,0.0,476.7828980003261,0.5165147090010578 +20,1766.4500819098491,0.0996062298315799,0.0,474.6900893006994,0.5142475000029663 +21,1771.0441351066002,0.0998652783737721,0.0,475.9246283032735,0.515584917004162 +22,1766.2073393898709,0.0995925421154749,0.0,474.62485820831506,0.5141768329995102 +23,1761.5407248569811,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116 +24,1766.0573458461463,0.0995840843098779,0.0,474.5845511261085,0.5141331670020008 +25,1775.480603344183,0.1001154410471693,0.0,477.1168202171266,0.5168764580012066 +26,1790.8488796480174,0.1009820243020892,0.0,481.24666714898984,0.5213504580024164 +27,1777.4756350505515,0.1002279364913943,0.0,477.6529360058218,0.5174572499963688 +28,1768.5382885241104,0.0997239792036601,0.0,475.25124355824306,0.5148554170009447 +29,1803.8391230015989,0.1017145155161324,0.0,484.7374761113821,0.5251321670002653 +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286 +1,1747.7432374054538,0.4984532476676833,0.0,475.82347022357055,0.5151742909947643 +2,1751.518133922168,0.4995298414075961,0.0,476.8511866076913,0.516286999998556 +3,1754.769163024236,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799 +4,1751.2478613919254,0.4994527601650134,0.0,476.77760485352184,0.5162073329993291 +5,1736.266881541672,0.4951802114863595,0.0,472.6990298848788,0.5117914579968783 +6,1748.792095154288,0.4987523800230881,0.0,476.1090219700399,0.5154834580025636 +7,1799.850348084657,0.5133141025053685,0.0,490.0096422516248,0.5305336660021567 +8,1753.1379269695713,0.4999918034897532,0.0,477.2921756113184,0.5167644589964766 +9,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888 +10,1761.7996142862123,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684 +11,1740.7653737649098,0.4964631734285321,0.0,473.9237453548768,0.5131174580019433 +12,1742.9166639927869,0.497076717556646,0.0,474.5094345795743,0.5137515839960543 +13,1749.7232016130597,0.499017929921017,0.0,476.36251590260287,0.5157579160004389 +14,1753.2353196533288,0.5000195797090965,0.0,477.3186907903035,0.5167931669930113 +15,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666 +16,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121 +17,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543 +18,1757.0913484891291,0.5011193122414096,0.0,478.3684954656496,0.517929790999915 +19,1744.1792476012558,0.4974368041452388,0.0,474.85317323704504,0.5141237499992712 +20,1749.1235756856784,0.4988469176782046,0.0,476.1992676156142,0.5155811670047115 +21,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054 +22,1746.9655037563955,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537 +23,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729 +24,1748.172110645285,0.498575561549183,0.0,475.9402310548502,0.5153007080007228 +25,1751.4983453162597,0.4995241977325581,0.0,476.8457991555,0.5162811670015799 +26,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782 +27,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758 +28,1772.4144105029477,0.5054894221417285,0.0,482.5402023764941,0.5224464999992051 +29,1751.7315782126657,0.4995907153377694,0.0,476.9092968614347,0.5163499159971252 +0,2707.064349798109,3.6012385418086788,92.0649964253126,546.2211903089626,0.5340038330032257 +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182 +2,2725.020067211528,3.625125237224638,92.67565537015948,549.8442269534888,0.5375458330017864 +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456 +4,2738.164742265457,3.642611748185226,93.12269478462412,552.4965096946497,0.5401387919991976 +5,2721.689276555712,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198 +6,2720.5877475209177,3.619228871849861,92.52491588127285,548.9498902756719,0.5366714999981923 +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976 +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933 +9,2684.9247119572583,3.571785929387366,91.31204584294925,541.7539380490226,0.5296365000031074 +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256 +11,2721.140522061294,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162 +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359 +13,2693.7475289550293,3.5835230233438016,91.6121024764096,543.5341726425446,0.5313769159984076 +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352 +15,2781.6217251628236,3.7004230675697793,94.60063045889038,561.2650950913014,0.5487112499977229 +16,2691.344864372215,3.580326731279553,91.530389861693,543.0493720841699,0.5309029589989223 +17,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008 +18,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486 +19,2696.253071379015,3.586856174972084,91.69731388053631,544.0397315020158,0.5318711669970071 +20,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715 +21,2711.4054258427636,3.607013524721848,92.21263279404648,547.097116189524,0.5348601670048083 +22,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715 +23,2722.2352935902622,3.6214206211537783,92.580947546348,549.2823258807412,0.5369964999990771 +24,2705.6396482764453,3.599343245145054,92.01654351708792,545.9337194326031,0.5337227920026635 +25,2704.6099320015473,3.5979734018546403,91.98152372704315,545.7259471831561,0.5335196670057485 +26,2732.7517068573975,3.635410725519794,92.93860197370508,551.4042879142569,0.5390709999992396 +27,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095 +28,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125 +29,2711.9605221173633,3.607751975619275,92.23151115448908,547.2091214131422,0.5349696670018602 +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881 +1,1809.1855259194288,0.265466227826992,0.0,478.8678917214152,0.515494541003136 +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585 +3,1862.4952107043605,0.2732884885756843,0.0,492.97827232946247,0.5306841669953428 +4,1810.0879382553949,0.2655986410015069,0.0,479.1067485365934,0.5157516670005862 +5,1839.304281081116,0.2698856266144958,0.0,486.83993470922366,0.5240763330002665 +6,1809.758034772763,0.2655502334546707,0.0,479.0194273730442,0.5156576669978676 +7,1808.8649860767891,0.2654191942300088,0.0,478.78304899165727,0.5154032089994871 +8,1813.8231895913325,0.2661467235878039,0.0,480.09542101194984,0.5168159589957213 +9,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819 +10,1809.8633196014089,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656 +11,1813.954652607598,0.2661660134784905,0.0,480.13021756351213,0.5168534169933992 +12,1807.167211573315,0.2651700756146534,0.0,478.33367014938295,0.5149194590048864 +13,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542 +14,1823.9124415236115,0.2676271442598061,0.0,482.76591485165784,0.5196907080025994 +15,1819.837052677855,0.2670291524627728,0.0,481.6872123987844,0.5185295000046608 +16,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613 +17,1808.2260893946043,0.2653254473534387,0.0,478.6139413446843,0.5152211669992539 +18,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068 +19,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739 +20,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421 +21,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996 +22,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448 +23,1802.588046066788,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584 +24,1837.076846539877,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271 +25,1807.5499030880776,0.2652262288788654,0.0,478.4349636188634,0.5150284999981523 +26,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453 +27,1809.485601206097,0.2655102586095041,0.0,478.94731774921934,0.5155800420034211 +28,1807.857580198864,0.2652713750956679,0.0,478.5164017506981,0.5151161670000874 +29,1807.3931392937277,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981 +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224 +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637 +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822 +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785 +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257 +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757 +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788 +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315 +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518 +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946 +10,2618.9124733008675,4.199020794266546,93.62136762896692,547.6194959050658,0.5388713749998715 +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708 +12,2598.369879714636,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963 +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235 +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425 +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375 +16,2588.202161551629,4.149781562735098,92.52352972274171,541.1979122856604,0.5325523749997956 +17,2609.8641773866566,4.184513252268183,93.2979074725714,545.7274803078074,0.5370095840044087 +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034 +19,2571.5775359527493,4.123126548755723,91.9292295310576,537.7216719825263,0.529131666997273 +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198 +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871 +22,2590.805700040584,4.153955933725058,92.61660149833388,541.7423170526872,0.5330880830006208 +23,2581.167113924082,4.138501952752755,92.2720395385754,539.7268706702032,0.5311048330040649 +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174 +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983 +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351 +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567 +28,2612.5537766415023,4.188825608375719,93.39405576434504,546.2898805419278,0.5375629999980447 +29,2596.2320891691634,4.162656308793328,92.81058506085604,542.8769851675906,0.5342046250007115 +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213 +1,1779.2162506886075,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688 +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013 +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128 +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836 +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122 +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858 +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367 +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509 +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752 +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764 +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953 +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438 +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806 +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779 +15,1790.0668889243043,1.66955817952611,0.0,480.09815010452814,0.5182433750014752 +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756 +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821 +18,1792.1862688524077,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506 +19,1790.008024062706,1.6695032774932437,0.0,480.0823624759571,0.5182263329988928 +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355 +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276 +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134 +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887 +24,1787.3388646459289,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427 +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853 +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772 +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742 +28,1804.8606743706223,1.6833560357128678,0.0,484.0658616295923,0.522526332999405 +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485 +0,1845.824206071892,0.1677320580549854,0.0,486.1545970665696,0.5214718330025789 +1,1830.4651068256328,0.166336359960892,0.0,482.1093057106495,0.5171326670024428 +2,1849.9641160769513,0.1681082561907703,0.0,487.24496974332874,0.5226414170028875 +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669 +4,1822.3392648347449,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443 +5,1836.1359089329785,0.1668516719310995,0.0,483.602885925099,0.5187347499959287 +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701 +7,1845.3007813203665,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832 +8,1825.8569338770212,0.1659176102608928,0.0,480.8956015801718,0.5158307919991785 +9,1807.0185105123555,0.1642057421907525,0.0,475.9339231656772,0.5105086669937009 +10,1823.162968089531,0.1656728066526299,0.0,480.1860628019826,0.5150697079952806 +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444 +12,1857.7274384163825,0.1688137177558822,0.0,489.2896795436492,0.5248346669977764 +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564 +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571 +15,1830.059520329347,0.1662995038737752,0.0,482.00248202775015,0.5170180829954916 +16,1826.6731154100848,0.1659917775666616,0.0,481.11056809921206,0.5160613749976619 +17,1843.7639886261209,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808 +18,1825.188089979146,0.1658568316866715,0.0,480.71944096064885,0.5156418339975062 +19,1824.456265218254,0.1657903299727617,0.0,480.52669239305266,0.5154350829980103 +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028 +21,1827.3999209682072,0.1660578231801435,0.0,481.301994705328,0.5162667080003303 +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859 +23,1827.510683488826,0.1660678882911533,0.0,481.3311674230788,0.5162980000022799 +24,1835.150709439822,0.1667621457790216,0.0,483.3434033259165,0.5184564169976511 +25,1813.572750949637,0.1648013331651888,0.0,477.6601840459834,0.5123603339961846 +26,1842.1702642888456,0.1674000203813719,0.0,485.1922190733685,0.5204395420005312 +27,1831.9371559299911,0.166470126667938,0.0,482.4970151343517,0.5175485420040786 +28,1845.660352440013,0.1677171684968116,0.0,486.1114411711588,0.5214255419996334 +29,1853.0747226186224,0.1683909203986171,0.0,488.06424368335195,0.5235202080002637 +0,1750.3108252154525,2.609757505147961,0.0,479.15816963107625,0.5184650419978425 +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429 +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149 +3,1752.016519404531,2.612300738125388,0.0,479.625113726842,0.5189702910065535 +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639 +5,1742.483268674349,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369 +6,1745.190778674311,2.602123386855969,0.0,477.7565259380042,0.5169484170037322 +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536 +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203 +9,1735.1488806738737,2.587150664128651,0.0,475.007495653672,0.5139738750003744 +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756 +11,1734.3902782445691,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704 +12,1740.4614946593651,2.59507190532813,0.0,476.4618558487712,0.5155475409992505 +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972 +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954 +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097 +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292 +17,1746.9815770882103,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611 +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266 +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417 +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639 +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297 +22,1745.2933230781057,2.6022762831436204,0.0,477.7845980884589,0.5169787920021918 +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218 +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297 +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044 +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646 +27,1744.947146636668,2.601760125354311,0.0,477.6898301948601,0.5168762499961304 +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994 +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613 +0,2672.382616871309,3.0753543154939074,90.65609677847256,547.1456460435247,0.5367295840042061 +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645 +2,2668.042158872389,3.070359354759644,90.50885402291472,546.2569773772376,0.5358578330051387 +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605 +4,2673.3815259950325,3.0765038512920504,90.68998309460912,547.3501634559595,0.5369302079998306 +5,2660.8570324091256,3.062090774678085,90.26511066224964,544.7858891296837,0.5344147499999963 +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095 +7,2691.981040632199,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829 +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093 +9,2663.405459659043,3.065023482251948,90.35156178116613,545.3076560597814,0.5349265840050066 +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977 +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532 +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001 +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807 +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968 +15,2656.6049568069725,3.0571975236255113,90.1208661312216,543.915315942417,0.5335607499946491 +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822 +17,2683.2200521488594,3.087825940305148,91.02373858812568,549.3645107708115,0.5389062079993892 +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233 +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017 +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186 +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897 +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739 +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244 +24,2660.4190835585628,3.0615867870084155,90.25025398224808,544.6962231494972,0.5343267909993301 +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568 +26,2652.9553415843593,3.05299757865734,89.99705905781202,543.1680909506885,0.5328277499938849 +27,2692.647814864721,3.0986753263813163,91.3435596211536,551.2947580674934,0.5407997090005665 +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348 +29,2675.12895480308,3.0785147769326833,90.749261685233,547.707933356893,0.5372811670022202 +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037 +1,1782.8336566198657,1.7941300308884225,0.0,479.7304354814431,0.5178688749947469 +2,1795.0281902994725,1.80640183146052,0.0,483.0117786010824,0.5214110840024659 +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378 +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384 +5,1796.9891979642368,1.8083752644440696,0.0,483.5394526538505,0.5219807079993188 +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032 +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437 +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653 +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079 +10,1803.0189770789996,1.8144432493899736,0.0,485.1619644063301,0.5237322089960799 +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943 +12,1800.0309108242288,1.8114362501771968,0.0,484.35792622793593,0.5228642500005662 +13,1791.4015151729552,1.8027521770283184,0.0,482.03590155762765,0.5203576249987236 +14,1809.3940181194137,1.820858683906976,0.0,486.8773803135709,0.5255840000027092 +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398 +16,1782.9656266294744,1.794262837085196,0.0,479.765946382836,0.5179072090031696 +17,1797.0181746335738,1.8084044247151136,0.0,483.5472497863245,0.5219891250017099 +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482 +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603 +20,1817.2879807960328,1.8288026642375284,0.0,489.0015123875124,0.5278770000004442 +21,1799.0441654896515,1.8104432526358776,0.0,484.0924097186932,0.5225776250008494 +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759 +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128 +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152 +25,1779.0384404444324,1.7903107674990562,0.0,478.7092068873866,0.5167664590044296 +26,1782.7894773086882,1.7940855716486983,0.0,479.71854757473255,0.517856042002677 +27,1783.1825092184056,1.7944810938835989,0.0,479.8243058256533,0.5179702080058632 +28,1780.5486074656133,1.79183050322667,0.0,479.11556733499793,0.5172051249974174 +29,1787.7603534401137,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268 +0,1795.147924035491,2.682538176309839,0.0,479.4457429436733,0.5142721660013194 +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979 +2,1817.3031298206895,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046 +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751 +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264 +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576 +6,1809.3933002198744,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581 +7,1805.3675530191017,2.697809644766114,0.0,482.1751879910992,0.5171998750010971 +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467 +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286 +10,1799.7155993091633,2.689363777216903,0.0,480.6656716391247,0.5155807090050075 +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075 +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091 +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005 +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217 +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733 +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314 +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529 +18,1826.6656523216352,2.729635971553408,0.0,487.8634562985023,0.5233013329998357 +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408 +20,1807.306323455378,2.700706801953429,0.0,482.6929922454295,0.5177552919994923 +21,1833.0039600605849,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359 +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235 +23,1838.0546515121375,2.7466548615899486,0.0,490.9052152004653,0.5265640419966076 +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132 +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729 +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903 +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051 +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895 +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387 +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297 +1,1756.560303683826,1.7731543519587607,0.0,478.8520422563347,0.5189257919992087 +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679 +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372 +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144 +5,1746.06400151769,1.7625588922832085,0.0,475.99066840093514,0.5158249579981202 +6,1754.1136576433803,1.770684592699588,0.0,478.1850674586642,0.5182029999996303 +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129 +8,1745.2030860378886,1.7616898438215771,0.0,475.7559761248724,0.5155706250006915 +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393 +10,1747.4051663255143,1.763912726939895,0.0,476.35628039039096,0.5162211670030956 +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424 +12,1746.5747123718454,1.763074427771366,0.0,476.1298921639917,0.5159758329973556 +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304 +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058 +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449 +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621 +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053 +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674 +19,1748.336743535644,1.7648531046661042,0.0,476.6102356053953,0.5164963749994058 +20,1753.3933581542744,1.769957488613754,0.0,477.988708198654,0.517990207998082 +21,1757.4467487928955,1.7740491712254969,0.0,479.09369410850064,0.5191876669996418 +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899 +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545 +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244 +25,1770.162052819831,1.786884595448938,0.0,482.5599851822763,0.522944042000745 +26,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401 +27,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632 +28,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313 +29,1747.8861163258769,1.764398220426472,0.0,476.48739111253,0.5163632500043605 +0,2670.570409785425,2.9727932568403896,91.95617793350104,548.196437429938,0.53703412500181 +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161 +2,2649.982550200963,2.949875512406015,91.24727287251416,543.9703023551407,0.5328940420004074 +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248 +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252 +5,2691.5962946236164,2.99619859692693,92.68016558808806,552.5124873344356,0.5412622919975547 +6,2666.77366683587,2.9685668444615825,91.82544407643525,547.417067992174,0.5362706249943585 +7,2661.481141542177,2.9626753751907864,91.6432057067442,546.3306545801257,0.5352063330064993 +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573 +9,2645.7442612379073,2.9451575851782787,91.10133519096404,543.1002953701787,0.5320417499970063 +10,2647.4012424367324,2.9470020834609416,91.15839028952776,543.4404291433817,0.5323749580056756 +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555 +12,2627.9855146860323,2.925389118559347,90.48984543139191,539.4549012786067,0.5284705829981249 +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745 +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839 +15,2687.243218261744,2.991352892051421,92.53027541368049,551.618917576943,0.5403869170040707 +16,2700.8745297979617,3.006526830498532,92.9996445433984,554.4170600240664,0.5431280839984538 +17,2651.924020997127,2.95203669537653,91.31412384687177,544.3688342080854,0.5332844589938759 +18,2727.5859912015253,3.0362611719148456,93.91940456496148,559.9002062187241,0.548499583004741 +19,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431 +20,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277 +21,2647.5437980205056,2.9471607717608688,91.16329892873787,543.4696919790941,0.5324036249949131 +22,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085 +23,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703 +24,2656.7905403646746,2.9574539485248152,91.4816934863912,545.3678000358345,0.5342630839950289 +25,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377 +26,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278 +27,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112 +28,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322 +29,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103 +0,1761.0627122628562,0.1002730818552339,0.0,479.40560434987367,0.5189407500001835 +1,1773.2261221061888,0.1009656537792014,0.0,482.7167907183622,0.5225250000003143 +2,1774.1111385027095,0.1010160456936708,0.0,482.9577144614402,0.5227857920035603 +3,1747.8332966738471,0.0995198126712257,0.0,475.8042243811302,0.51504237500194 +4,1746.9785407537054,0.0994711437568538,0.0,475.5715383015183,0.5147904999976163 +5,1750.5248233346765,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402 +6,1746.6482342427255,0.099452336447164,0.0,475.4816205538911,0.514693167002406 +7,1772.610473858339,0.1009305994073606,0.0,482.5491957665912,0.5223435839943704 +8,1748.7226941545937,0.0995704540400808,0.0,476.04634076562667,0.5153044580001733 +9,1772.4744459499425,0.1009228541195305,0.0,482.5121655454757,0.5223035000017262 +10,1770.3282934230103,0.1008006544235695,0.0,481.92792879908586,0.5216710829990916 +11,1758.21465709453,0.1001109165518446,0.0,478.6302920343692,0.5181014999980107 +12,1757.855223569782,0.1000904507802411,0.0,478.532445180333,0.5179955840067123 +13,1756.2394557664416,0.0999984506396015,0.0,478.09259250793485,0.5175194580006064 +14,1747.016436775467,0.0994733015169754,0.0,475.5818545526595,0.5148016669991193 +15,1754.1526907543482,0.0998796324070574,0.0,477.5245225381418,0.5169045410002582 +16,1753.2227129170683,0.0998266804348467,0.0,477.2713591590023,0.5166304999947897 +17,1756.2227695819904,0.0999975005455885,0.0,478.088050108459,0.5175145410030382 +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174 +19,1748.2398194280586,0.0995429596546495,0.0,475.9148901088795,0.5151621670011082 +20,1763.74038297599,0.1004255456447003,0.0,480.1345337273122,0.5197297920021811 +21,1760.1897159033686,0.1002233743491896,0.0,479.16795276347585,0.5186834999985876 +22,1751.7277020054344,0.0997415560662067,0.0,476.8643795525346,0.5161899579979945 +23,1748.352370623307,0.099549368202815,0.0,475.9455293776589,0.5151953329987009 +24,1759.1921483115996,0.1001665738865547,0.0,478.89638975161847,0.5183895419977489 +25,1747.339389421523,0.099491690105234,0.0,475.66977039312377,0.5148968329958734 +26,1751.9406486544974,0.0997536810272451,0.0,476.922348991259,0.5162527080028667 +27,1754.9035218939098,0.0999223839523559,0.0,477.7289176762137,0.5171257919937489 +28,1752.4458666562616,0.099782447615563,0.0,477.0598820500069,0.516401583001425 +29,1750.364901254197,0.0996639596067907,0.0,476.4933908800666,0.5157883749998291 +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021 +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396 +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647 +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121 +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826 +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744 +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462 +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933 +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716 +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596 +10,2615.36164408698,2.86359540889274,88.30529098120404,541.2528299017616,0.5338564999983646 +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096 +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936 +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303 +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195 +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093 +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978 +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057 +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888 +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631 +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072 +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873 +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502 +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321 +24,2646.093256085373,2.89724387323626,89.34291571886699,547.6127809239,0.5401295409974409 +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246 +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397 +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437 +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415 +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615 +0,1832.0288573050368,0.3348434297708107,0.0,485.7573635685151,0.520800792000955 +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087 +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004 +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638 +4,1832.5450819984576,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844 +5,1811.56117568914,0.331102512325981,0.0,480.33041463130064,0.5149823329993524 +6,1861.757947821728,0.3402770726923634,0.0,493.6399493548115,0.5292520420043729 +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311 +8,1813.0148750103676,0.3313682077404579,0.0,480.7158589690824,0.5153955839996343 +9,1828.3792277749956,0.3341763799782493,0.0,484.78967443444634,0.5197632919953321 +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375 +11,1817.2384760499765,0.3321401634072298,0.0,481.83573505486834,0.5165962500032037 +12,1824.018140381943,0.333379295666833,0.0,483.63334422387464,0.5185235419994569 +13,1833.410144455411,0.3350958902738674,0.0,486.1236080202995,0.521193458000198 +14,1821.170110213187,0.3328587557277406,0.0,482.8781969342333,0.5177139169973088 +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314 +16,1818.3656082621744,0.3323461715245324,0.0,482.1345910306392,0.5169166659979965 +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685 +18,1805.5999711042289,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965 +19,1838.1848588994617,0.3359685739951129,0.0,487.38961029471034,0.52255079200404 +20,1814.558121289498,0.3316502698242645,0.0,481.1250464340605,0.5158342909999192 +21,1810.8972069332913,0.33098115748237,0.0,480.1543651596742,0.5147935829954804 +22,1833.8570420407632,0.335177570603104,0.0,486.24210167392306,0.5213205000036396 +23,1835.274389296927,0.3354366218808924,0.0,486.6179073626107,0.5217234170049778 +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233 +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785 +26,1843.4762342226047,0.3369356888166623,0.0,488.792603766332,0.524055000001681 +27,1812.032257571416,0.3311886128655741,0.0,480.45532068408846,0.5151162500042119 +28,1851.1542315714744,0.3383390111255961,0.0,490.82840343990233,0.5262376660029986 +29,1816.7635844920449,0.3320533665659065,0.0,481.7098188771606,0.5164612500011572 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..d5dec5575 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n100/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.2976060090398,0.9378436735173552,0.0,59.34286692773609,0.0769311670010211 +1,255.2444208838569,0.9231838620144488,0.0,58.41525471712115,0.0757286250009201 +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.0805979579963604 +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538 +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.0820534579979721 +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388 +6,274.5216566791403,0.9929069647911036,0.0,62.827044151437065,0.0814480000044568 +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.083064166996337 +8,281.3432946979796,1.0175798885309817,0.0,64.38824467083968,0.0834719160047825 +9,271.4910013468641,0.9819455025017532,0.0,62.13344817554198,0.0805488330006483 +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.0789655840053455 +11,269.5141946577938,0.9747956653873808,0.0,61.68103606847738,0.0799623330021859 +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.0766440829975181 +13,269.12490022342575,0.9733876411174044,0.0,61.59194211898058,0.0798468329958268 +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.0748828750001848 +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.0800642079993849 +16,269.730891764629,0.975579428931684,0.0,61.730629382401375,0.0800266250007553 +17,218.2457214537565,0.7893646697629007,0.0,49.947729966031815,0.0647514579977723 +18,268.35867106427986,0.9706162959421448,0.0,61.41658286392536,0.0796194999929866 +19,268.1440805449837,0.9698401516343884,0.0,61.367471663762174,0.0795558329991763 +20,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.0736840000026859 +21,267.1683200118613,0.9663109603821372,0.0,61.14415904486973,0.0792663340034778 +22,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673 +23,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.0803771249993587 +24,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.0804226670006755 +25,270.16990124801515,0.9771672656762832,0.0,61.831101121240685,0.0801568749957368 +26,266.0163051495714,0.9621442815337454,0.0,60.8805088487732,0.0789245420019142 +27,271.33244897442904,0.9813720404413124,0.0,62.097161869303726,0.0805017919992678 +28,271.5900102009636,0.982303603869786,0.0,62.15610734831233,0.0805782079987693 +29,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.082180834004248 +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.0838514580027549 +1,398.7176187759755,1.608272748003935,12.832676301781396,78.77185896994273,0.0833907080013887 +2,393.4009922947646,1.5868275319452692,12.661561348646623,77.72149015840266,0.082278750000114 +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.0802324579999549 +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.0815308750024996 +5,397.77390581907474,1.6044661747324025,12.80230301921896,78.58541618324745,0.0831933329973253 +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.0835334169969428 +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.0827721669993479 +8,402.1872645561368,1.6222679578734929,12.944346413865578,79.45733268667878,0.0841163750010309 +9,411.01636787259105,1.6578811477213755,13.228509991193476,81.20163704776988,0.0859629580008913 +10,398.47576527691933,1.60729720447833,12.824892277400007,78.72407766101153,0.083340124998358 +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.0853469160065287 +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.0847861250003916 +13,397.95758979573526,1.6052070848903608,12.808214864854335,78.62170534535913,0.0832317500025965 +14,397.9368723030194,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143 +15,378.44542169605904,1.5265025412950282,12.180218194083244,74.7668223871794,0.0791508329930366 +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.081899249998969 +17,394.47718603434674,1.591168481483079,12.696198508500403,77.93410624930665,0.0825038330003735 +18,390.30130111050465,1.574324575907918,12.561798178598597,77.10910579082322,0.0816304580002906 +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.0853198749973671 +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.0832003749965224 +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.082188499996846 +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.0817053749997285 +23,408.1975839921713,1.6465112631616992,13.137787787311058,80.64474957694073,0.0853734170013922 +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.0866518750044633 +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.0798403750013676 +26,374.92099637623625,1.5122863719377595,12.06678500942004,74.07052625886818,0.0784137090013246 +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.0841622919979272 +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.0840398750005988 +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.0819778340010088 +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.0776710830032243 +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.0761652920045889 +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.0773927499976707 +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.0778755829960573 +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986 +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.0779352500030654 +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.0773458750045392 +7,342.3226982986895,22.968494031768262,0.0,74.03884179294928,0.0776502919979975 +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.0789362499999697 +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.0777301670023007 +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.0775382089996128 +11,335.4773722078628,22.5091998270776,0.0,72.55830889817277,0.0760975419980241 +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.0786656250056694 +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.0751801669975975 +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.0794126249966211 +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.0779685840025194 +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.0783674590056762 +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854 +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.077208333001181 +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402 +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902 +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.0720434999966528 +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.0812008749999222 +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.0808140000008279 +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.0795359170006122 +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.0832596659965929 +26,404.5004296622107,27.140372960129103,0.0,87.48687558780871,0.0917542910028714 +27,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141 +28,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.0817928329997812 +29,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364 +0,243.54047775399584,0.0,0.0,58.53663370586776,0.0799515000035171 +1,243.291711687412,0.0,0.0,58.47684106584192,0.0798698330036131 +2,245.5951988714672,0.0,0.0,59.03050009937392,0.080626040995412 +3,244.14360606550724,0.0,0.0,58.681599755758846,0.0801494999977876 +4,243.31671713606323,0.0,0.0,58.48285129790621,0.0798780420009279 +5,241.55492443854592,0.0,0.0,58.05939227067864,0.0792996659947675 +6,244.21963070926464,0.0,0.0,58.69987280328379,0.0801744580021477 +7,245.1422220915524,0.0,0.0,58.92162400580759,0.080477333998715 +8,246.35114409687137,0.0,0.0,59.21219674860971,0.0808742090011946 +9,223.61325483398392,0.0,0.0,53.74698822433849,0.0734096250016591 +10,244.82669458259335,0.0,0.0,58.845784792604114,0.0803737499954877 +11,245.46624823405313,0.0,0.0,58.999505924204115,0.0805837080042692 +12,244.69279401281028,0.0,0.0,58.81360086704609,0.0803297919992473 +13,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065 +14,244.25085325559544,0.0,0.0,58.70737735765924,0.0801847080001607 +15,242.3843538378488,0.0,0.0,58.25875134798534,0.0795719579982687 +16,247.02788453109272,0.0,0.0,59.37485597995104,0.081096374997287 +17,244.8240292446239,0.0,0.0,58.845144160238355,0.080372874996101 +18,242.5058171758989,0.0,0.0,58.28794589910761,0.0796118329963064 +19,249.33936777338295,0.0,0.0,59.93043692123454,0.081855208001798 +20,234.16127478349617,0.0,0.0,56.2822775766509,0.076872416997503 +21,244.35937066953136,0.0,0.0,58.73346026662311,0.0802203330022166 +22,245.70321065155915,0.0,0.0,59.056461475755675,0.0806615000037709 +23,244.62806434791267,0.0,0.0,58.79804264559987,0.0803085420047864 +24,243.1429613426851,0.0,0.0,58.44108789444635,0.0798209999993559 +25,247.57986270663923,0.0,0.0,59.507527741842864,0.0812775829981546 +26,242.2868816000614,0.0,0.0,58.235323223295474,0.0795399589987937 +27,246.40584599254623,0.0,0.0,59.22534472655436,0.080892166995909 +28,225.71531849657757,0.0,0.0,54.25223372512112,0.0740997079992666 +29,243.29945488439853,0.0,0.0,58.47870219664816,0.0798723750049248 +0,365.5962922637533,0.31946547733638,13.09808457079158,71.3685876369473,0.0776209169998765 +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.0843391249945852 +2,381.68376621972993,0.3335230393391558,13.67444461290539,74.50904698836742,0.0810364999997546 +3,374.9568692135735,0.3276449398930212,13.433442535613873,73.19587957210095,0.0796082910019322 +4,383.4586629821924,0.3350739802360996,13.738033189680085,74.85552718474466,0.0814133340027183 +5,378.5011661164349,0.3307420186267344,13.560422763696112,73.88776696121248,0.080360792002466 +6,388.4279301626621,0.3394162269858983,13.916065306421832,75.82558510864969,0.0824683749960968 +7,388.868712974047,0.3398013919731275,13.931857070898229,75.91163096679668,0.0825619590032147 +8,387.4873009382955,0.3385942860348615,13.882365727429324,75.64196350018807,0.0822686669998802 +9,361.1088179961347,0.3155442310347209,12.93731347242356,70.49258121315667,0.0766681669992976 +10,384.98725849243414,0.3364096980884604,13.792797621626878,75.15392655296206,0.081737874999817 +11,387.3220545051752,0.3384498903400692,13.876445503942838,75.60970550197146,0.0822335830016527 +12,381.00905545019447,0.3329334633434065,13.650271997079669,74.37733571091702,0.080893250000372 +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574 +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.0836733749965787 +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.0806210000009741 +16,376.5386550083152,0.3290271364980035,13.490112596418143,73.504662293654,0.0799441249982919 +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.0815830829960759 +18,371.9656137717135,0.3250311200381977,13.326275921566106,72.61195221653337,0.0789732080011162 +19,373.64807162243585,0.3265012859336209,13.38655272327846,72.94038727757092,0.0793304160033585 +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.0774970830025267 +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.0814905410006758 +22,389.6713762032651,0.340502775431025,13.960613792672026,76.068320031291,0.0827323749981587 +23,385.0612435284915,0.3364743477180107,13.795448256438442,75.1683692802036,0.0817535829992266 +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.0754203329997835 +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.0827776250007445 +26,389.3864198446626,0.3402537747681428,13.950404765493856,76.0126932832031,0.0826718750031432 +27,385.34934147980306,0.3367260935685102,13.80576983630892,75.22460930320518,0.0818147499958286 +28,388.2126444619807,0.3392281059611854,13.908352344408604,75.78355887172884,0.082422667001083 +29,382.30646891442245,0.3340671696211311,13.696753954466375,74.63060569336069,0.0811687079985858 +0,261.69304748056817,0.0,0.0,60.19573731393214,0.0799580409948248 +1,250.04241406090983,0.0,0.0,57.51580952974925,0.0763982909993501 +2,265.34640271204813,0.0,0.0,61.03609747613698,0.0810742920002667 +3,260.32975890934574,0.0,0.0,59.88214793314248,0.0795414999956847 +4,256.60290463269945,0.0,0.0,59.02488121091149,0.0784027919944492 +5,254.2476553292837,0.0,0.0,58.48311684329771,0.0776831659968593 +6,267.4662730703839,0.0,0.0,61.52371898713432,0.0817220000026281 +7,261.4647674093651,0.0,0.0,60.143227370192946,0.0798882919989409 +8,246.01554802208992,0.0,0.0,56.589532838011,0.0751679170061834 +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688 +10,263.23716595979414,0.0,0.0,60.550921952010754,0.0804298330040182 +11,260.4273987454803,0.0,0.0,59.904607459614105,0.0795713330007856 +12,263.1834383636676,0.0,0.0,60.538563303991346,0.080413417003001 +13,264.8376041165323,0.0,0.0,60.91906147958976,0.0809188330022152 +14,262.7376459678526,0.0,0.0,60.43602025894914,0.0802772090028156 +15,265.9190191847479,0.0,0.0,61.16781312966357,0.0812492499971995 +16,262.16475454640056,0.0,0.0,60.30424136055219,0.0801021669976762 +17,270.0616666527359,0.0,0.0,62.120722353534894,0.0825150000018766 +18,267.46191030093564,0.0,0.0,61.522715444525154,0.0817206669962615 +19,262.00329030822877,0.0,0.0,60.26710067622695,0.0800528330000815 +20,253.51275965468895,0.0,0.0,58.314073044056784,0.0774586249972344 +21,264.0262048684438,0.0,0.0,60.732420006058504,0.0806709169992245 +22,263.8846528399279,0.0,0.0,60.69985961208996,0.0806276670045917 +23,264.5367741043955,0.0,0.0,60.849863292778615,0.0808269170011044 +24,263.01842955838407,0.0,0.0,60.50060728340553,0.0803629999936674 +25,262.9862473617866,0.0,0.0,60.493204598958165,0.0803531670026131 +26,263.65418646654734,0.0,0.0,60.64684676591282,0.0805572500030393 +27,248.40133983118992,0.0,0.0,57.13832272146015,0.0758968750014901 +28,269.71869832726696,0.0,0.0,62.04183133435922,0.0824102090045926 +29,263.8835596650258,0.0,0.0,60.69960815539335,0.0806273329944815 +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.0798695409976062 +1,222.282954626191,0.5425670898579795,0.0,63.921185273893215,0.0796238750044722 +2,181.99531463538943,0.4442296009406912,0.0,52.33579986082519,0.0651924580015474 +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.0797642079996876 +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.0648530830003437 +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477 +6,228.03587230478863,0.5566092992946786,0.0,65.57553307315432,0.0816846250017988 +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.0808889159961836 +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.0801839999985531 +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.078770958003588 +10,225.93084181352305,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981 +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.0814994160027708 +12,190.86070386116344,0.4658689949319016,0.0,54.885190965414665,0.0683681250011432 +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.0778178749969811 +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.0821365419978974 +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.0831774999969638 +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.0827088329970138 +17,208.47225322116213,0.5088567584345681,0.0,59.94968685307256,0.0746767500022542 +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.0824930000017047 +19,229.14404490940265,0.5593142209840491,0.0,65.89420665968329,0.082081583001127 +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.0812505829962901 +21,226.7383300922263,0.5534421482037561,0.0,65.20240308525501,0.0812198330022511 +22,190.32796262279587,0.4645686349297839,0.0,54.73199230266517,0.0681772920070216 +23,216.75046098615985,0.5290629101111453,0.0,62.3302240974693,0.0776420830006827 +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832 +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.0806313339999178 +26,190.4228763228689,0.4648003083395731,0.0,54.75928632625596,0.0682112909998977 +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.0820812920064781 +28,229.7988069023712,0.5609124195938885,0.0,66.08249443340499,0.0823161249936674 +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156 +0,241.774082389606,0.0,0.0,58.314702618296096,0.0794790410000132 +1,236.29470921743456,0.0,0.0,56.99310514220705,0.0776777919963933 +2,245.02596783164793,0.0,0.0,59.09904116536938,0.0805480420021922 +3,239.61731779511788,0.0,0.0,57.79450175680519,0.0787700420041801 +4,234.89514347109304,0.0,0.0,56.65553686571519,0.0772177090038894 +5,244.3573637645225,0.0,0.0,58.937777199610736,0.0803282499982742 +6,246.66217572690388,0.0,0.0,59.49368634772521,0.0810859170014737 +7,247.69936496973415,0.0,0.0,59.74385121923148,0.0814268749963957 +8,247.93347313702415,0.0,0.0,59.80031694136804,0.081503834000614 +9,244.9906017154224,0.0,0.0,59.0905110345544,0.080536416004179 +10,244.5686539902464,0.0,0.0,58.988739348065465,0.0803977079995093 +11,244.99022144221857,0.0,0.0,59.090419314554566,0.0805362909959512 +12,243.10761578902108,0.0,0.0,58.63634422210183,0.0799174170024343 +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349 +14,226.95226404933985,0.0,0.0,54.73975397106182,0.0746066249994328 +15,247.18260772680364,0.0,0.0,59.61921195000334,0.0812570000052801 +16,245.5469078363539,0.0,0.0,59.22468929587267,0.0807192920037778 +17,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146 +18,242.99404630361005,0.0,0.0,58.6089518287452,0.0798800830016261 +19,243.03942360273416,0.0,0.0,58.61989660693602,0.0798950000025797 +20,243.40129207930585,0.0,0.0,58.70717747835799,0.0800139579951064 +21,242.2193560611542,0.0,0.0,58.42210040669198,0.0796254170054453 +22,244.86537532136504,0.0,0.0,59.06030705298102,0.080495249996602 +23,229.17519487543,0.0,0.0,55.27591379755472,0.0753373749976162 +24,245.74083136710107,0.0,0.0,59.27146268413018,0.0807830410049064 +25,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226 +26,245.22724384220348,0.0,0.0,59.14758793507991,0.0806142080036806 +27,246.6794116137417,0.0,0.0,59.497843557651834,0.0810915830006706 +28,245.331815099925,0.0,0.0,59.17281000080416,0.0806485839930246 +29,247.67071860704505,0.0,0.0,59.73694185944898,0.0814174580009421 +0,242.90782385251904,0.8766974823241211,0.0,55.38849450826323,0.0747689999989233 +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.0778219589992659 +2,258.8651385625255,0.9342902655002208,0.0,59.02712427392467,0.0796807910010102 +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.081725957999879 +4,241.39105099810257,0.8712231796786377,0.0,55.04263588755393,0.07430212500185 +5,268.08165313176636,0.9675543036464884,0.0,61.12869868395136,0.0825177090009674 +6,261.2141409213791,0.9427682322504016,0.0,59.562750101820015,0.0804038329952163 +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.0795712500039371 +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.0776966249977704 +9,262.6748723911695,0.9480402715845252,0.0,59.89583001546517,0.0808534579991828 +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.0748128330014878 +11,259.4128304085643,0.9362669826552976,0.0,59.15201043990077,0.0798493749971385 +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.0795320000033825 +13,262.3333479240832,0.9468076491201768,0.0,59.81795468905688,0.0807483339958707 +14,263.7812174805347,0.9520332675244872,0.0,60.148101794672066,0.0811939999985043 +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.0804758339945692 +16,260.33751362128316,0.939604328615098,0.0,59.36285919000386,0.0801339999961783 +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235 +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179 +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.0806621669980813 +20,259.3887374833051,0.9361800270085772,0.0,59.14651670636333,0.0798419589991681 +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.0798660830041626 +22,263.0187002361503,0.9492812073488284,0.0,59.97423056428847,0.0809592910009087 +23,262.90255644081475,0.9488620237616412,0.0,59.94774714408369,0.080923540997901 +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067 +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.0796380419997149 +26,258.61634070403085,0.9333923098366672,0.0,58.970392717895145,0.0796042090005357 +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639 +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.0794995839969487 +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.0802607500008889 +0,252.0569260482816,0.0,0.0,59.22685631305648,0.080362166998384 +1,252.5636013837425,0.0,0.0,59.34591190800159,0.080523707998509 +2,255.97155373331972,0.0,0.0,60.14669253837193,0.0816102499957196 +3,234.60118746361675,0.0,0.0,55.1252093668655,0.0747968330033472 +4,253.97385574356483,0.0,0.0,59.6772851959471,0.0809733330024755 +5,252.33189155253675,0.0,0.0,59.2914660925491,0.080449833003513 +6,255.14612719979553,0.0,0.0,59.952738658728656,0.081347082996217 +7,244.04078157036597,0.0,0.0,57.34326975734617,0.077806415996747 +8,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253 +9,252.32235341535025,0.0,0.0,59.289224877084415,0.0804467920024762 +10,251.56057298405543,0.0,0.0,59.110226184789994,0.0802039170011994 +11,251.38231558091536,0.0,0.0,59.06834030699232,0.0801470840015099 +12,236.56595209719924,0.0,0.0,55.58687822265356,0.0754232500039506 +13,257.3785429826992,0.0,0.0,60.477298609839494,0.0820588339993264 +14,255.38228149183257,0.0,0.0,60.00822880748779,0.0814223749985103 +15,252.88574631214084,0.0,0.0,59.42160763152467,0.0806264160055434 +16,251.8723956183979,0.0,0.0,59.18349643627208,0.0803033339980174 +17,252.58816970012697,0.0,0.0,59.35168482671154,0.0805315410034381 +18,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807 +19,256.3833495792202,0.0,0.0,60.24345390802693,0.0817415409983368 +20,253.93595723964492,0.0,0.0,59.668380028049775,0.0809612499942886 +21,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426 +22,253.27297696815177,0.0,0.0,59.51259681711514,0.0807498750000377 +23,250.3815046876699,0.0,0.0,58.83317564042237,0.0798280000017257 +24,252.92717650013057,0.0,0.0,59.43134265380538,0.0806396250045509 +25,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173 +26,252.25818664902565,0.0,0.0,59.27414734714401,0.0804263340032775 +27,244.1120086467984,0.0,0.0,57.360006277495025,0.0778291250026086 +28,253.4064073264722,0.0,0.0,59.54394949916176,0.0807924159962567 +29,252.61770622229048,0.0,0.0,59.35862514524034,0.0805409579988918 +0,227.2823037447636,0.0,0.0,57.07730787818506,0.0794794169996748 +1,228.76466537890357,0.0,0.0,57.449572722321946,0.0799977910064626 +2,229.7965197297261,0.0,0.0,57.708701864789106,0.0803586250040098 +3,229.99490705767593,0.0,0.0,57.75852278973555,0.0804280000011203 +4,229.18670205564752,0.0,0.0,57.55555861272128,0.0801453749954816 +5,231.26160626838956,0.0,0.0,58.07662842157634,0.0808709580014692 +6,227.8381457495341,0.0,0.0,57.21689624346994,0.0796737920027226 +7,220.54535576053524,0.0,0.0,55.385461007929194,0.0771235419961158 +8,228.6866229862869,0.0,0.0,57.42997396959223,0.0799704999953974 +9,229.87968653815292,0.0,0.0,57.72958750987283,0.0803877079961239 +10,227.81550598444144,0.0,0.0,57.21121072893056,0.0796658749968628 +11,227.62605500780717,0.0,0.0,57.16363398607371,0.0795996249944437 +12,229.86336373993495,0.0,0.0,57.72548837252703,0.0803820000000996 +13,231.66171813641745,0.0,0.0,58.17710834412581,0.081010875001084 +14,230.9662314522403,0.0,0.0,58.002451070137006,0.0807676669937791 +15,231.48180120147975,0.0,0.0,58.131925881088705,0.0809479590025148 +16,229.71871471960463,0.0,0.0,57.68916272582404,0.0803314170043449 +17,231.9388627509407,0.0,0.0,58.246707552816034,0.0811077910038875 +18,221.67276777003045,0.0,0.0,55.668587504410795,0.0775177920004352 +19,231.92921431455932,0.0,0.0,58.24428454510795,0.0811044169968226 +20,229.2441321614661,0.0,0.0,57.569981010669885,0.0801654579991009 +21,228.92075580272544,0.0,0.0,57.48877164379768,0.0800523750003776 +22,229.27058667095508,0.0,0.0,57.57662452034042,0.0801747090008575 +23,230.96611135654717,0.0,0.0,58.002420910556886,0.0807676249969517 +24,215.5182335244439,0.0,0.0,54.12300194761942,0.0753655839944258 +25,231.36241133068287,0.0,0.0,58.1019435538211,0.0809062089974759 +26,229.37019641490616,0.0,0.0,57.601639472800365,0.0802095420003752 +27,230.27086205486523,0.0,0.0,57.82782325033272,0.0805245000010472 +28,228.54089874330737,0.0,0.0,57.39337830268453,0.0799195409999811 +29,229.6250615930292,0.0,0.0,57.66564365614186,0.0802986670023528 +0,245.52679852308864,0.8392357072842789,0.0,59.08219379281323,0.0801600000049802 +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229 +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.0804796250013168 +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.0806689580058446 +4,247.65389493149505,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214 +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083 +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.0797389169965754 +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.080351333002909 +8,252.1240294551156,0.861785717306247,0.0,60.66971449835979,0.0823138749983627 +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204 +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.0808115420004469 +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.0807958750010584 +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.0805811250029364 +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.0759737499975017 +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.0750240000052144 +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702 +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.0801142499985871 +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.0833885419997386 +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879 +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.0807840420020511 +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.0801257920029456 +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.0801382080026087 +22,198.5005478535641,0.6784951731390624,0.0,47.76606018898999,0.064806791000592 +23,242.797444696174,0.8299064967739063,0.0,58.42541737288301,0.0792689160007285 +24,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.0803952499991282 +25,248.27937873327463,0.8486443079480266,0.0,59.74455927954107,0.0810586669977055 +26,247.81495449698696,0.8470568584119051,0.0,59.63280283219813,0.0809070409959531 +27,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.0825096659973496 +28,248.93357471888788,0.8508804167312274,0.0,59.9019813378784,0.0812722499977098 +29,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.0796597500011557 +0,244.30085516419717,0.0,0.0,58.77237786122283,0.0794237919981242 +1,225.99531436860696,0.0,0.0,54.36854489113619,0.0734725419970345 +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879 +3,248.47192239445707,0.0,0.0,59.77582723178127,0.0807798329988145 +4,243.27721517189647,0.0,0.0,58.52611692864887,0.0790909999996074 +5,245.8384283162675,0.0,0.0,59.14227763182338,0.0799236669990932 +6,252.4730483757677,0.0,0.0,60.73839319531787,0.0820806249976158 +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987 +8,246.1321782239548,0.0,0.0,59.21294615469732,0.0800191669986816 +9,245.90750722117627,0.0,0.0,59.15889620443872,0.079946124998969 +10,250.79449374512456,0.0,0.0,60.3345769788476,0.0815349160038749 +11,249.24756673150785,0.0,0.0,59.96242691450618,0.0810320000018691 +12,248.5006329833621,0.0,0.0,59.782734246407195,0.0807891669974196 +13,201.25431595629993,0.0,0.0,48.41650961735576,0.0654290829988895 +14,241.8498643799761,0.0,0.0,58.18273376682212,0.0786269590025767 +15,246.26623584150497,0.0,0.0,59.24519690121452,0.0800627499993424 +16,253.02671313402087,0.0,0.0,60.87159041379928,0.0822606250003445 +17,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806 +18,252.45626002588983,0.0,0.0,60.73435435868744,0.0820751669962192 +19,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663 +20,225.67067614143417,0.0,0.0,54.29044544877944,0.0733670000045094 +21,246.5857465567506,0.0,0.0,59.322062798693686,0.0801666250044945 +22,246.7726084003519,0.0,0.0,59.367016856969904,0.0802273750014137 +23,246.30570906024255,0.0,0.0,59.25469312227967,0.0800755829986883 +24,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335 +25,246.2417577120216,0.0,0.0,59.23930810531011,0.0800547920007375 +26,245.9956844736978,0.0,0.0,59.18010933854943,0.0799747919954825 +27,246.54319742169463,0.0,0.0,59.31182659284212,0.0801527920048101 +28,245.51635537810407,0.0,0.0,59.06479533071602,0.0798189589986577 +29,232.80692876152213,0.0,0.0,56.00724064877602,0.0756870420009363 +0,248.82851645392185,0.0,0.0,60.371399972863664,0.0773350419985945 +1,240.3368936219519,0.0,0.0,58.3111411017608,0.0746958750023623 +2,248.97893642549755,0.0,0.0,60.407895244375624,0.0773817920053261 +3,251.12462953695908,0.0,0.0,60.92848869924618,0.0780486660005408 +4,249.99473921307967,0.0,0.0,60.654351869430606,0.0776974999971571 +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547 +6,251.56958945104645,0.0,0.0,61.036445991794814,0.078186958002334 +7,253.98636346091425,0.0,0.0,61.622809775468184,0.0789380830028676 +8,258.675926589324,0.0,0.0,62.76060336664463,0.0803955829978804 +9,253.03209606091505,0.0,0.0,61.39128302078818,0.0786414999965927 +10,245.9887712196412,0.0,0.0,59.682413847788496,0.0764524590049404 +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585 +12,253.69195862142328,0.0,0.0,61.551380533465895,0.0788465829973574 +13,249.9323994112021,0.0,0.0,60.639226830037956,0.0776781250024214 +14,249.64268574376183,0.0,0.0,60.56893577198762,0.0775880829969537 +15,248.90372320903617,0.0,0.0,60.389646824785515,0.0773584159978781 +16,249.89043626314705,0.0,0.0,60.62904562560264,0.0776650830011931 +17,251.38565561954871,0.0,0.0,60.99181950336761,0.0781297920038923 +18,248.0580477823997,0.0,0.0,60.18446692757648,0.0770955830012098 +19,242.71331647279524,0.0,0.0,58.88771478582841,0.075434459002281 +20,251.9422866197867,0.0,0.0,61.12687071546968,0.0783027909928932 +21,252.17301315190568,0.0,0.0,61.182850166512566,0.0783745000007911 +22,251.8146597287694,0.0,0.0,61.09590555844225,0.078263124996738 +23,248.1852757086486,0.0,0.0,60.2153352867692,0.0771351250004954 +24,252.43765573938865,0.0,0.0,61.24705841613956,0.0784567500013508 +25,247.58493442148287,0.0,0.0,60.069678975007925,0.0769485410055494 +26,252.21926527656947,0.0,0.0,61.19407197323097,0.0783888750011101 +27,249.8356029545924,0.0,0.0,60.61574183048396,0.0776480409986106 +28,229.06746313872625,0.0,0.0,55.5769235576266,0.0711933749989839 +29,254.86381530062064,0.0,0.0,61.83569934587096,0.0792107919987756 +0,258.05412357567263,0.0,0.0,60.88917522572051,0.0776646669983165 +1,257.9959768285465,0.0,0.0,60.87545520673569,0.0776471669960301 +2,256.0814273269359,0.0,0.0,60.42370757152421,0.077070958999684 +3,258.3119063629601,0.0,0.0,60.9500003777771,0.0777422500032116 +4,254.87501871078396,0.0,0.0,60.13904935872431,0.0767078749995562 +5,218.53039916041607,0.0,0.0,51.56335261088469,0.0657694999972591 +6,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612 +7,256.1942552713655,0.0,0.0,60.45032989549073,0.0771049160030088 +8,269.4083809346708,0.0,0.0,63.568269658742544,0.0810818750032922 +9,256.7634055100046,0.0,0.0,60.584623772023555,0.0772762089982279 +10,265.09209197392056,0.0,0.0,62.54981945452058,0.0797828330032643 +11,247.3756110807905,0.0,0.0,58.36952621007416,0.0744508329953532 +12,258.04927578522654,0.0,0.0,60.88803136505345,0.0776632079941919 +13,256.90531014005614,0.0,0.0,60.61810688697954,0.0773189169995021 +14,259.4555995489818,0.0,0.0,61.21986056773728,0.0780864589978591 +15,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601 +16,255.6555672710305,0.0,0.0,60.32322373810831,0.0769427910054219 +17,257.38764897090465,0.0,0.0,60.73191717291009,0.077464082998631 +18,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146 +19,236.34739083788008,0.0,0.0,55.7673618830953,0.071131750002678 +20,255.39654180892845,0.0,0.0,60.26210537064603,0.0768648340017534 +21,256.04875219815136,0.0,0.0,60.41599770967616,0.0770611250045476 +22,255.4578716622009,0.0,0.0,60.27657645962043,0.0768832920002751 +23,258.9686854110115,0.0,0.0,61.10497071495777,0.0779399160019238 +24,258.4434309763645,0.0,0.0,60.98103427532196,0.0777818340066005 +25,257.6428035065198,0.0,0.0,60.792122175695674,0.0775408749977941 +26,258.0723949714545,0.0,0.0,60.893486453938706,0.0776701660070102 +27,257.6979033528984,0.0,0.0,60.80512326304344,0.0775574579965905 +28,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646 +29,236.55450287180864,0.0,0.0,55.81623101469642,0.0711940830005914 +0,247.6358913639864,0.0,0.0,60.23755530694149,0.0770938330024364 +1,224.91484920266885,0.0,0.0,54.710650356753966,0.070020334002038 +2,250.59815225213995,0.0,0.0,60.95812676005715,0.0780160419963067 +3,250.60497804678556,0.0,0.0,60.9597871380428,0.0780181669979356 +4,252.79538510278,0.0,0.0,61.4926047577078,0.0787000829950557 +5,249.1592469382651,0.0,0.0,60.608112317689475,0.0775680829974589 +6,251.2633310797192,0.0,0.0,61.11993184491222,0.0782231250050244 +7,246.2273696215814,0.0,0.0,59.894931683637864,0.0766553329958696 +8,248.6098367504889,0.0,0.0,60.47446801277843,0.0773970410009496 +9,247.39203882310005,0.0,0.0,60.17823805354388,0.0770179169994662 +10,255.71776095388975,0.0,0.0,62.20347415547271,0.0796098750070086 +11,249.22121548631523,0.0,0.0,60.62318619821583,0.0775873750026221 +12,249.92976133402135,0.0,0.0,60.79554033256047,0.0778079590018023 +13,247.14791645978391,0.0,0.0,60.11885516570433,0.0769419169955654 +14,238.7495165766193,0.0,0.0,58.07594016390296,0.0743273330008378 +15,250.1377439451952,0.0,0.0,60.84613220748805,0.0778727080032695 +16,250.0574405131458,0.0,0.0,60.826598357193696,0.0778477079948061 +17,252.51927631291608,0.0,0.0,61.42544115549913,0.0786141249991487 +18,247.5537152778006,0.0,0.0,60.21756593258521,0.0770682500005932 +19,246.7884238216119,0.0,0.0,60.03140840039478,0.0768299999981536 +20,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801 +21,242.33265448766724,0.0,0.0,58.94754026556956,0.0754428329964866 +22,255.49612352817607,0.0,0.0,62.14956074003047,0.0795408749982016 +23,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822 +24,240.24168874114216,0.0,0.0,58.43891179452095,0.0747918749984819 +25,253.03723326850667,0.0,0.0,61.55143444583822,0.0787753749973489 +26,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577 +27,252.68015295270183,0.0,0.0,61.46457447915958,0.0786642090024543 +28,247.46926179214807,0.0,0.0,60.197022579661535,0.0770419580003363 +29,247.49469226985136,0.0,0.0,60.20320855617205,0.0770498749989201 +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.0812097079979139 +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.0806707500014454 +2,387.06785099851174,1.270425839345776,15.004759237678492,78.69773037244646,0.0837934169976506 +3,384.2510321293888,1.2611805365729962,14.895564715740525,78.12502134662994,0.0831836249999469 +4,371.5677530253622,1.219551748597392,14.403894976677307,75.54628669689791,0.0804379170003812 +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.0769082499973592 +6,310.8037935940057,1.020113577838926,12.048368473394882,63.191900551535625,0.0672835830046096 +7,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.0817295420056325 +8,383.3779823279192,1.2583150311481424,14.861720773290225,77.94751490247413,0.0829946249941713 +9,392.08615035475583,1.2868967943871166,15.199294571545131,79.71803926311544,0.0848797910002758 +10,367.5730098278583,1.2064402877344769,14.249037992972063,74.73408485101137,0.0795731249963864 +11,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.0822060409991536 +12,382.579806971804,1.2556952770297831,14.83077935302744,77.78523175546657,0.0828218339956947 +13,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.0843364579995977 +14,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.0827404169976944 +15,380.74632391965866,1.2496774580881194,14.759704032013737,77.41245226859378,0.0824249169963877 +16,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.0817379159998381 +17,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.0794940830019186 +18,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.0817125419998774 +19,384.8167037344661,1.2630371718420337,14.917493083647802,78.24003237464706,0.0833060830045724 +20,378.67475235924377,1.242878190126144,14.679399164462836,76.99126518294923,0.0819764580010087 +21,383.49654619559766,1.2587041789441245,14.866316924286007,77.971621030809,0.0830202919969451 +22,382.5284125446302,1.2555265913378268,14.828787038233251,77.77478236071079,0.0828107080014888 +23,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.0843647500005317 +24,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.0826560839996091 +25,373.2033724819483,1.2249201438687207,14.46730007758462,75.87883702019211,0.0807919999933801 +26,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.0832666250062175 +27,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.0812299999961396 +28,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.0742695840017404 +29,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.0825761250016512 +0,245.4849858868351,0.03325453615373,0.0,59.824910540560325,0.077182166998682 +1,243.26148489011845,0.0329533303833809,0.0,59.2830413597024,0.0764830830012215 +2,227.93765961629927,0.0308774938521131,0.0,55.54861143995156,0.0716651670009014 +3,250.7231538165253,0.0339641227061128,0.0,61.101456748297075,0.078829083002347 +4,252.5889686193737,0.0342168746436431,0.0,61.55615748391402,0.0794157080017612 +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.0827996669977437 +6,226.94041043538476,0.0307424018471125,0.0,55.30558092295546,0.0713516250034445 +7,242.6599554225411,0.0328718444083637,0.0,59.13644809064636,0.07629395800177 +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.076669291993312 +9,247.36392063917748,0.0335090653805442,0.0,60.28280861959906,0.0777729170004022 +10,248.7334295032324,0.0336945854108957,0.0,60.61655915420145,0.0782035000011092 +11,247.311043310453,0.0335019023720472,0.0,60.26992236731305,0.0777562920047785 +12,226.72783872430568,0.0307136058960045,0.0,55.25377700691221,0.0712847909962874 +13,246.69360768372263,0.0334182616748472,0.0,60.119452753050254,0.0775621659995522 +14,247.48014585109556,0.0335248097874689,0.0,60.311132807656584,0.0778094590059481 +15,246.05219040943203,0.0333313723123045,0.0,59.963138789835845,0.0773604999994859 +16,249.95252500188107,0.0338597297482905,0.0,60.913653817174755,0.078586792005808 +17,250.6415207454208,0.0339530643112192,0.0,61.081562695883505,0.0788034170036553 +18,246.5275553318546,0.0333957674521612,0.0,60.07898564643816,0.0775099579986999 +19,244.4563283517981,0.0331151894272281,0.0,59.57422577958342,0.0768587499987916 +20,247.40791776784516,0.0335150254359042,0.0,60.29353075919174,0.0777867500000866 +21,250.543583961273,0.0339397973396468,0.0,61.05769541402468,0.0787726250055129 +22,245.99334947150876,0.0333234014456121,0.0,59.948799200656225,0.0773420000041369 +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.078443917002005 +24,244.25754136307833,0.0330882608186234,0.0,59.5257812127036,0.0767962500030989 +25,245.0430139869781,0.0331946645877781,0.0,59.717201593412845,0.0770432079953025 +26,249.4024129823822,0.0337852090195586,0.0,60.779591026186075,0.0784138330054702 +27,246.43412861712733,0.033383111435536,0.0,60.05621747252941,0.0774805839973851 +28,257.6022464065648,0.0348959965329944,0.0,62.77789776285696,0.0809919169987551 +29,247.07528191230236,0.0334699650382419,0.0,60.21246710379734,0.0776821670006029 +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.0830702079983893 +1,374.8739455288989,0.3746015080684854,13.247271512603714,76.14627018555758,0.0836669999989681 +2,360.3381183231657,0.3600762446906633,12.733605380424368,73.19368028439303,0.0804227919943514 +3,348.5626801398173,0.3483093642385529,12.317485698981551,70.8017944034004,0.0777946669986704 +4,364.61442878503067,0.3643494473687624,12.884721366040782,74.06230584695935,0.0813772089968551 +5,369.74521098479994,0.3694765008023982,13.06603261928481,75.10449598128749,0.0825223330029985 +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.082606374999159 +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.0820752500003436 +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.0797756669999216 +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.0821104580027167 +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.0825127500065718 +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.0837727909965906 +12,367.93805840787127,0.3676706615630981,13.002171577095016,74.73741811409886,0.0821189999987836 +13,378.27841319804594,0.3780035015605473,13.367578373368447,76.83780268085307,0.0844268330038175 +14,382.7117309698025,0.3824335974443884,13.524242673260645,77.73832035324112,0.0854162920004455 +15,372.41599349838015,0.3721453423403144,13.160412560943849,75.64699867935846,0.0831184170019696 +16,356.7682378530547,0.3565089586104289,12.607453172677896,72.46854831390174,0.0796260409988462 +17,368.93348814627194,0.3686653678787238,13.037348009529412,74.93961477971149,0.0823411669989582 +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.0823945420052041 +19,368.3876096681557,0.3681198861146177,13.018057790780574,74.82873321384412,0.0822193340063677 +20,370.1432358855347,0.3698742364408505,13.080097997771896,75.18534478924924,0.0826111669957754 +21,368.5427485912714,0.368274912291423,13.02354008012396,74.860245807602,0.0822539590008091 +22,380.3863269498703,0.3801098833983078,13.44206769472198,77.2659726616924,0.0848972919993684 +23,370.1045866985358,0.3698356153419234,13.078732215273476,75.17749417314008,0.0826025409987778 +24,361.6613717978691,0.3613985364985974,12.78036642708676,73.46246614644215,0.0807181249983841 +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.0820459999958984 +26,371.72020035590015,0.3714500548614554,13.135824667373289,75.50566569729222,0.0829631250016973 +27,331.3958353192039,0.3311549953226056,11.710844834590327,67.3147790492133,0.0739632500044535 +28,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.0810689170029945 +29,360.0086099352188,0.3597469757710216,12.721961234084311,73.12674889309132,0.0803492499981075 +0,245.20605579923495,0.0,0.0,58.064741436243395,0.0789422499947249 +1,250.55095440543516,0.0,0.0,59.3304122801399,0.0806630000006407 +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149 +3,249.81764644337736,0.0,0.0,59.156765111960304,0.0804269170039333 +4,249.02622560509047,0.0,0.0,58.969356827150214,0.0801721250027185 +5,248.4707444057284,0.0,0.0,58.83781899824741,0.0799932919981074 +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263 +7,246.38859307336747,0.0,0.0,58.34476600919865,0.079322958998091 +8,246.47595340441205,0.0,0.0,58.36545291685823,0.0793510840012459 +9,251.11329706391197,0.0,0.0,59.46357490108985,0.0808440420005354 +10,250.43486224262665,0.0,0.0,59.302921680879294,0.0806256249998114 +11,251.25358918047456,0.0,0.0,59.49679604421048,0.0808892079949146 +12,249.02648340531616,0.0,0.0,58.96941787418838,0.080172207999567 +13,253.20619256589657,0.0,0.0,59.95917210720173,0.0815178340053535 +14,249.5875338986397,0.0,0.0,59.10227451070708,0.0803528339965851 +15,246.30614979515929,0.0,0.0,58.32524345859641,0.0792964170032064 +16,248.74706084391897,0.0,0.0,58.90325067156323,0.0800822500023059 +17,249.45383612969297,0.0,0.0,59.07061490768795,0.0803097910029464 +18,248.40447792783144,0.0,0.0,58.82212711049024,0.0799719580027158 +19,228.9579399496601,0.0,0.0,54.21719108698062,0.0737112909991992 +20,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705 +21,248.96720883475896,0.0,0.0,58.955381668590064,0.0801531249962863 +22,250.81174011459103,0.0,0.0,59.39216628015041,0.0807469580031465 +23,237.7471648094788,0.0,0.0,56.298477649202496,0.0765409160012495 +24,249.37748086472203,0.0,0.0,59.05253399731491,0.0802852089982479 +25,250.11596367984183,0.0,0.0,59.227406569589995,0.0805229580000741 +26,248.8819172109695,0.0,0.0,58.93518463036493,0.0801256659979117 +27,249.33903922826215,0.0,0.0,59.04343102604385,0.0802728330017998 +28,262.4534401956857,0.0,0.0,62.148918363143466,0.0844949160018586 +29,261.2161602290057,0.0,0.0,61.85593073233089,0.0840965829993365 +0,224.52516714856455,0.0,0.0,57.735973906146626,0.0753427089948672 +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632 +2,231.69330601434635,0.0,0.0,59.57923933499082,0.0777480830001877 +3,234.760649370358,0.0,0.0,60.36799748719698,0.078777374998026 +4,228.2324736502117,0.0,0.0,58.6892966634995,0.0765867500012973 +5,223.36952695819903,0.0,0.0,57.43880449425753,0.0749549169995589 +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515 +7,228.01604737457023,0.0,0.0,58.63364329527478,0.0765141249939915 +8,210.18081054030137,0.0,0.0,54.047365589524595,0.070529249998799 +9,226.91454579476897,0.0,0.0,58.35039546485715,0.076144500002556 +10,223.1887361622084,0.0,0.0,57.392314682837515,0.0748942499994882 +11,228.57679477020545,0.0,0.0,58.777837807691775,0.0767022919972078 +12,233.5521132500369,0.0,0.0,60.05722604543105,0.0783718329985276 +13,231.26827613662832,0.0,0.0,59.46994417560664,0.0776054579982883 +14,232.72316419059683,0.0,0.0,59.844064278876445,0.0780936669980292 +15,226.37205419514888,0.0,0.0,58.21089537567897,0.075962458999129 +16,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212 +17,235.0194191984909,0.0,0.0,60.43453937305556,0.0788642090046778 +18,235.69725578504784,0.0,0.0,60.60884302004133,0.0790916670011938 +19,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004 +20,224.62400355737097,0.0,0.0,57.76138939249184,0.0753758749997359 +21,231.10611067541615,0.0,0.0,59.42824381321107,0.0775510410021524 +22,232.56050106737092,0.0,0.0,59.802235944185355,0.0780390830041142 +23,232.27069102387352,0.0,0.0,59.727712159962834,0.0779418329984764 +24,231.9585306176708,0.0,0.0,59.64744104694712,0.0778370830012136 +25,230.3707829163002,0.0,0.0,59.23915648348338,0.0773042910004733 +26,230.7023166464104,0.0,0.0,59.32440938868658,0.0774155420003808 +27,239.12095968349055,0.0,0.0,61.489238217841425,0.0802405409995117 +28,235.103850013608,0.0,0.0,60.45625050415228,0.0788925410015508 +29,229.96015861058865,0.0,0.0,59.13356567377203,0.0771664999992935 +0,242.1989277900244,0.0,0.0,58.23108794513989,0.0794612079989747 +1,242.4689300777569,0.0,0.0,58.29600370304932,0.0795497910003177 +2,245.1891581817424,0.0,0.0,58.950019158028326,0.0804422499932115 +3,244.62667452650356,0.0,0.0,58.81478307133387,0.0802577089998521 +4,230.49772748177529,0.0,0.0,55.41780701763689,0.0756222499985597 +5,248.5687694470221,0.0,0.0,59.76256792777146,0.0815510410029674 +6,245.56152502051543,0.0,0.0,59.03954608671583,0.0805644170031882 +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579 +8,245.84270436380183,0.0,0.0,59.107149107161334,0.0806566669998574 +9,247.49612431036985,0.0,0.0,59.50467540175467,0.0811991250011487 +10,245.79812410417784,0.0,0.0,59.09643082264013,0.0806420410008286 +11,243.7852944737544,0.0,0.0,58.61249284530364,0.0799816670041764 +12,241.62857108664963,0.0,0.0,58.0939589674959,0.0792740839970065 +13,248.07080308887888,0.0,0.0,59.642843521642384,0.0813876669999444 +14,245.79787110638867,0.0,0.0,59.09636999521763,0.0806419579967041 +15,246.7866989049236,0.0,0.0,59.33411059557655,0.0809663750042091 +16,243.67810491245837,0.0,0.0,58.58672161325243,0.0799464999945485 +17,244.35603522014415,0.0,0.0,58.749714157140794,0.0801689170039026 +18,240.2579794931515,0.0,0.0,57.764432159321714,0.0788244170034886 +19,243.21099669998037,0.0,0.0,58.47441632912548,0.0797932500063325 +20,261.55407699968373,0.0,0.0,62.884582517155906,0.0858112920031999 +21,239.347894129501,0.0,0.0,57.54562334240464,0.0785258340038126 +22,245.55783996400805,0.0,0.0,59.03866010075577,0.0805632080009672 +23,224.7037046013891,0.0,0.0,54.02476924087008,0.0737213330066879 +24,245.09403272066805,0.0,0.0,58.92714845773173,0.0804110410026623 +25,245.82682726665857,0.0,0.0,59.10333182915559,0.0806514580035582 +26,246.27298345658295,0.0,0.0,59.210599687728774,0.0807978340017143 +27,229.8491343612716,0.0,0.0,55.26186791672805,0.0754094580042874 +28,244.80002731204428,0.0,0.0,58.85646170877651,0.0803145829995628 +29,244.9462070527816,0.0,0.0,58.89160722084109,0.0803625420012394 +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328 +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.0816092919994844 +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.083558999998786 +3,360.8727014356981,1.3071714929106786,13.5385618908606,73.38834238769952,0.0766691250028088 +4,405.9071867253503,1.4702977009456415,15.228083331222717,82.54671378166245,0.0862369159949594 +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.0799180419999174 +6,399.0524005201552,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465 +7,389.3215008612753,1.410220184232304,14.60585190812029,79.17379034332791,0.0827132080012233 +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.0822733329987386 +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927 +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093 +11,387.03474113975176,1.4019369666122965,14.520061439913068,78.70874683980463,0.0822273750018212 +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.0788562090019695 +13,424.3344458168445,1.537045858068777,15.919403529998048,86.29414603157562,0.0901518749960814 +14,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.082806749996962 +15,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.0829413329993258 +16,393.57240572328834,1.4256180284931532,14.765329580821945,80.03826931397275,0.0836163329950068 +17,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.0819364579947432 +18,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.0825907089965767 +19,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.0801123339988407 +20,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.0808422499976586 +21,367.5496145188862,1.3313569478045033,13.789054102260929,74.74618292673854,0.0780876670032739 +22,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166 +23,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.0810130409954581 +24,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.0816602499980945 +25,379.5121562547591,1.374688276213875,14.237842860786564,77.17892750743613,0.0806291659973794 +26,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.0827884579994133 +27,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.0803707919985754 +28,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335 +29,390.5568650001384,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184 +0,228.1520204661302,0.0,0.0,57.746086091398226,0.0799198750028153 +1,227.8495358539531,0.0,0.0,57.66952616253846,0.0798139170001377 +2,229.0306925870703,0.0,0.0,57.968481123615135,0.0802276670001447 +3,230.2044726270147,0.0,0.0,58.265569017469915,0.0806388330020126 +4,229.10003753664316,0.0,0.0,57.98603257645722,0.0802519579956424 +5,230.7167820382236,0.0,0.0,58.39523634763275,0.0808182909968309 +6,211.05486597292324,0.0,0.0,53.418735611373734,0.0739308750053169 +7,230.54216782071205,0.0,0.0,58.3510408694748,0.0807571249970351 +8,228.80932881388665,0.0,0.0,57.91245316700242,0.0801501249952707 +9,230.55620182047025,0.0,0.0,58.35459292462026,0.0807620409977971 +10,230.03128580010983,0.0,0.0,58.22173481694031,0.0805781670060241 +11,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297 +12,230.31081241713733,0.0,0.0,58.29248399574981,0.0806760830018902 +13,232.7656686097756,0.0,0.0,58.91381681039013,0.0815359999978682 +14,229.0882616679938,0.0,0.0,57.98305206230952,0.0802478330006124 +15,211.45488911631423,0.0,0.0,53.51998288864797,0.074070999995456 +16,231.4391589588723,0.0,0.0,58.578072509964315,0.0810713340033544 +17,231.1610539996254,0.0,0.0,58.50768315778455,0.0809739160031313 +18,223.1157480108247,0.0,0.0,56.47138765923167,0.0781557080044876 +19,229.29047568345513,0.0,0.0,58.03423314728023,0.0803186669945716 +20,226.68384051120097,0.0,0.0,57.37448453423561,0.0794055830047 +21,229.939339682268,0.0,0.0,58.19846292819781,0.0805459589973907 +22,229.9903656561629,0.0,0.0,58.211377783281776,0.0805638329984503 +23,229.92208836236088,0.0,0.0,58.1940965579044,0.0805399159944499 +24,234.3581505243959,0.0,0.0,59.31687963469814,0.0820938340038992 +25,232.28523543551043,0.0,0.0,58.79221746892648,0.0813677080004708 +26,224.9047315536089,0.0,0.0,56.92418574301216,0.0787823749997187 +27,229.36006045625183,0.0,0.0,58.051845300231406,0.080343041998276 +28,227.33044351249188,0.0,0.0,57.53814204865611,0.0796320829977048 +29,226.7574704574646,0.0,0.0,57.393120534947585,0.0794313750011497 +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467 +1,228.78073899886232,0.0,0.0,56.00141900241923,0.0778383330034557 +2,235.23590932049515,0.0,0.0,57.58152884687401,0.0800345829993602 +3,236.26866601830895,0.0,0.0,57.83432915172009,0.0803859589941566 +4,236.1306451621364,0.0,0.0,57.80054412317523,0.0803390000000945 +5,236.65994415723756,0.0,0.0,57.930107017901115,0.0805190840037539 +6,230.7082285871409,0.0,0.0,56.4732338611715,0.0784941249949042 +7,217.65362425882617,0.0,0.0,53.27770101124752,0.0740525420042104 +8,236.48396084260233,0.0,0.0,57.88702946083294,0.0804592089989455 +9,233.11602697824952,0.0,0.0,57.062619694803665,0.0793133330007549 +10,234.8972924876633,0.0,0.0,57.4986415233184,0.0799193750062841 +11,235.4089534558389,0.0,0.0,57.62388694560078,0.0800934580038301 +12,236.8091074367793,0.0,0.0,57.966619511714825,0.0805698339972877 +13,235.2139889440503,0.0,0.0,57.576163132123064,0.0800271250045625 +14,235.677400358321,0.0,0.0,57.68959792953932,0.0801847920010914 +15,235.25183085336997,0.0,0.0,57.58542615237964,0.0800400000007357 +16,224.63833749671065,0.0,0.0,54.98743345794819,0.0764289589933469 +17,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743 +18,236.4523617407738,0.0,0.0,57.87929456781116,0.080448458000319 +19,230.33752474602355,0.0,0.0,56.382492213849865,0.0783680000022286 +20,235.6896449605586,0.0,0.0,57.69259518841446,0.0801889579961425 +21,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569 +22,234.47784821362225,0.0,0.0,57.395969092756594,0.0797766670002602 +23,236.01075312636675,0.0,0.0,57.77119670450892,0.0802982089953729 +24,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387 +25,249.0360862322947,0.0,0.0,60.95956448452025,0.0847298330045305 +26,237.69685978979257,0.0,0.0,58.183925355331866,0.0808718749976833 +27,236.12660378259105,0.0,0.0,57.799554865992754,0.0803376249969005 +28,234.46707023916116,0.0,0.0,57.39333083803974,0.0797729999976581 +29,241.69022142718063,0.0,0.0,59.161428615711976,0.0822305410038097 +0,229.97339319686975,0.0,0.0,56.76642090692848,0.0792393329975311 +1,226.07553485511937,0.0,0.0,55.804277138088366,0.0778962920012418 +2,231.8659096318397,0.0,0.0,57.233567923491464,0.0798914159968262 +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506 +4,238.15693061363416,0.0,0.0,58.78643775779073,0.0820590419971267 +5,232.81398613818936,0.0,0.0,57.467590256524325,0.0802180840037181 +6,232.3516788377947,0.0,0.0,57.35347474760509,0.0800587920020916 +7,235.3009818299224,0.0,0.0,58.08147798617912,0.0810750000018742 +8,232.87529353460332,0.0,0.0,57.48272331788053,0.080239208000421 +9,234.6029875368596,0.0,0.0,57.90918571671333,0.0808344999968539 +10,233.90293845796447,0.0,0.0,57.73638624580215,0.080593291997502 +11,236.10309480251144,0.0,0.0,58.27947081475786,0.0813513750035781 +12,228.53955331278615,0.0,0.0,56.41249318841474,0.0787452909935382 +13,214.85514476600093,0.0,0.0,53.03464636609046,0.0740302089980105 +14,236.0381566565893,0.0,0.0,58.26344154253167,0.0813290000005508 +15,233.2262264846764,0.0,0.0,57.56934728457961,0.0803601250008796 +16,223.59820949155468,0.0,0.0,55.1927764233464,0.0770427079987712 +17,232.78762196853413,0.0,0.0,57.46108254912954,0.0802089999997406 +18,234.0781596831433,0.0,0.0,57.77963769190232,0.0806536659947596 +19,234.60528613661103,0.0,0.0,57.90975310096232,0.0808352919993922 +20,232.4469688391939,0.0,0.0,57.37699604392746,0.0800916250009322 +21,236.41351504810697,0.0,0.0,58.35609466273675,0.0814583329993183 +22,216.02874452302436,0.0,0.0,53.32433665094193,0.0744345830025849 +23,232.45519093886716,0.0,0.0,57.37902557945026,0.0800944579968927 +24,233.9956889809203,0.0,0.0,57.75928069960073,0.0806252499969559 +25,232.5895425232549,0.0,0.0,57.41218880099883,0.0801407500039204 +26,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317 +27,229.88862389489532,0.0,0.0,56.74549653037789,0.0792101249971892 +28,233.92301053494205,0.0,0.0,57.74134081882622,0.0806002080062171 +29,234.3584718660642,0.0,0.0,57.84882969337619,0.0807502499956172 +0,390.8727972970198,1.8664702076173023,14.049430290064786,79.44375920058373,0.0834474579969537 +1,386.2283609945746,1.8442923992621632,13.882491878082469,78.49979103041318,0.0824559169996064 +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.0830597499953 +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.0818107090017292 +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.0824191249994328 +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.0820837080027558 +6,363.3642991549768,1.735113427116142,13.060671978656051,73.85273696143435,0.0775746670042281 +7,388.22708634477254,1.8538365817817757,13.954333542866456,78.90602614456611,0.082882624999911 +8,375.0914257577759,1.7911120347870877,13.482188770942804,76.2362413352104,0.0800782919977791 +9,386.50588680771034,1.8456176223670837,13.892467193817684,78.55619734475168,0.0825151660028495 +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.0819437079990166 +11,382.40578027890945,1.826039061932629,13.745094029820152,77.72286261789608,0.0816398340029991 +12,399.92533106121743,1.909697274558687,14.374812212132664,81.2836603589434,0.0853800839977338 +13,392.779794759326,1.875576377128228,14.1179749114743,79.8313508883124,0.0838545830047223 +14,385.4919894836888,1.840776126202716,13.856023931780443,78.35012566255561,0.0822987089995876 +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.0750168340018717 +16,363.50267089671735,1.7357741708039116,13.065645576596715,73.88086061549012,0.0776042079960461 +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.0824202080038958 +18,383.1556137558722,1.8296196176916977,13.772045849533868,77.8752640912048,0.0817999159989995 +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.0846969580015866 +20,377.543333802351,1.8028202256580403,13.57031951677143,76.73458451391768,0.0806017499999143 +21,384.0859896272982,1.8340622876802744,13.805487038175158,78.06436028108223,0.0819985420021112 +22,377.9580697399782,1.804800645572044,13.585226677578657,76.81887838698462,0.0806902920012362 +23,377.9699719544116,1.804857480247668,13.585654487682444,76.82129747745074,0.0806928330057417 +24,393.94456555862206,1.8811383144403728,14.159841130514804,80.06808716554386,0.0841032499956782 +25,367.0360156994838,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779 +26,423.4076839939201,2.021828669878938,15.218855805997825,86.05638029430169,0.0903933329973369 +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.0836692079974454 +28,397.13519183039904,1.896373984256985,14.27452417240712,80.71657267537456,0.0847844169984455 +29,368.653767842532,1.7603713519134625,13.250795267130425,74.92780608780754,0.0787039160059066 +0,260.20760817827636,0.0668398685276846,0.0,63.29735549571737,0.0778534579949337 +1,264.69906999108105,0.0679935961960136,0.0,64.3899355976249,0.0791972920051193 +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.0786077919983654 +3,261.1013891414675,0.0670694552122957,0.0,63.51477408604411,0.078120874997694 +4,257.7910068686657,0.0662191129896392,0.0,62.7095000011884,0.0771304169975337 +5,259.7389946089577,0.0667194951474332,0.0,63.183361904619304,0.07771325000067 +6,258.06479595470574,0.0662894415501427,0.0,62.77610114798519,0.0772123339993413 +7,256.0824062134452,0.0657802225053802,0.0,62.29387071259507,0.0766192080045584 +8,245.48280118105225,0.0630574881019913,0.0,59.71544123258579,0.0734478329977719 +9,255.98353170352672,0.0657548244807415,0.0,62.26981878326222,0.0765896250013611 +10,265.5946591131205,0.0682236473447522,0.0,64.60779403548037,0.0794652500044321 +11,260.294366973363,0.0668621543728135,0.0,63.318460191054406,0.0778794160069082 +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.0770466250032768 +13,260.85629013818584,0.067006496310862,0.0,63.45515200638633,0.0780475419960566 +14,307.82568802659245,0.0790715869577684,0.0,74.8807928490067,0.0921006670032511 +15,263.58442150290836,0.0677072749814817,0.0,64.1187894074632,0.078863791997719 +16,262.31742217161724,0.067381819206683,0.0,63.81058278872888,0.0784847090035327 +17,268.16277907116,0.0688833236761263,0.0,65.2325075212917,0.0802336249980726 +18,206.91894566594263,0.0531515401145498,0.0,50.334508488478725,0.0619096250011352 +19,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.0772270000015851 +20,252.13699183642044,0.0647667587558233,0.0,61.33412054176475,0.07543875000556 +21,259.3735737404644,0.0666256290111647,0.0,63.09447067357302,0.0776039170013973 +22,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.0781142080013523 +23,260.63695006654126,0.066950154139877,0.0,63.40179597046354,0.0779819160015904 +24,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589 +25,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505 +26,257.15221136999554,0.0660550247546867,0.0,62.55410844268836,0.076939291000599 +27,263.19769031243703,0.067607934834944,0.0,64.02471428869198,0.0787480830040294 +28,259.31383057100317,0.0666102827051125,0.0,63.079937721741594,0.0775860419962555 +29,261.2983025863787,0.0671200366263495,0.0,63.56267468515301,0.078179791002185 +0,362.1477510943677,0.2358390787664502,14.28510991385356,76.17602244156343,0.0828109170033712 +1,336.858148535045,0.2193698985715243,13.287548142046615,70.85647723860235,0.0770280419965274 +2,362.74505428268986,0.2362280565614316,14.308670854578146,76.30166226934243,0.0829474999991362 +3,360.94585457223286,0.2350563756633761,14.237700468753069,75.9232093392705,0.0825360840026405 +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.0815027909993659 +5,349.6413415549495,0.2276946126043954,13.791787963466238,73.54535987121973,0.0799511250006617 +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.082421457998862 +7,359.44475760769,0.2340788262400065,14.178488903680394,75.60746087552211,0.0821928340010345 +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.0812284160056151 +9,347.2399143905892,0.2261307471145338,13.697062396651766,73.04023131799444,0.0794019999957527 +10,368.19860405248215,0.2397795356188831,14.523789014629491,77.44879000489925,0.084194542003388 +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.0862538340006722 +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242 +13,356.8769656271249,0.2324066200939505,14.07720098854786,75.06733829034602,0.0816056670009857 +14,360.27602202196147,0.23462016505291,14.211278568919123,75.78231331208995,0.0823829159999149 +15,355.8179236856387,0.2317169472322514,14.035426518067805,74.84457395601721,0.0813635000013164 +16,367.0209393602304,0.2390126128497174,14.47733540689717,77.20107395045873,0.0839252500009024 +17,364.3840903443813,0.2372954351484481,14.373323500420288,76.64642555294876,0.0833222919973195 +18,350.5090521147184,0.2282596859989792,13.826015266223887,73.72787857767031,0.0801495409978088 +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033 +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.083118957998522 +21,365.90504594881264,0.2382859169822019,14.4333184000648,76.96635118525121,0.0836700829968322 +22,351.0808508987014,0.2286320547298269,13.84857017220666,73.8481536777341,0.0802802920006797 +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.0797767499971087 +24,340.5454724450315,0.2217711700730505,13.43299658728192,71.63208793359534,0.0778712080063996 +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.0810339579984429 +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.0822699170021223 +27,360.8257711959278,0.2349781745624239,14.232963716352534,75.89795038366293,0.0825086250042659 +28,370.2476265409491,0.2411139069482411,14.604613792293463,77.87979194428189,0.0846630840023863 +29,362.5628409920885,0.2361093950083374,14.301483354790728,76.26333458769301,0.0829058339950279 +0,246.0739988250765,0.0,0.0,60.74658181579221,0.0778715830019791 +1,245.0826823466955,0.0,0.0,60.50186239055085,0.0775578749962733 +2,244.5910373393436,0.0,0.0,60.38049339664647,0.0774022910045459 +3,244.5508800746296,0.0,0.0,60.37058005115652,0.077389582998876 +4,244.58959003848383,0.0,0.0,60.38013611151879,0.077401832997566 +5,244.22606079392185,0.0,0.0,60.29039416762119,0.077286792002269 +6,242.8457992005612,0.0,0.0,59.94965855878557,0.0768499999976484 +7,244.85397754171655,0.0,0.0,60.44540362118208,0.0774854999981471 +8,241.9405926628893,0.0,0.0,59.72619649752176,0.0765635419957107 +9,245.51138657380295,0.0,0.0,60.607693630466905,0.0776935410031001 +10,244.7109876747656,0.0,0.0,60.41010470421792,0.0774402500028372 +11,248.3810623596752,0.0,0.0,61.31611059342773,0.0786016670026583 +12,241.60984521505156,0.0,0.0,59.644547168472904,0.0764588749952963 +13,245.731929101319,0.0,0.0,60.66213743499555,0.0777633329998934 +14,245.77880451553304,0.0,0.0,60.67370924346901,0.0777781670039985 +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489 +16,259.02748853123154,0.0,0.0,63.94432000020854,0.0819707919945358 +17,245.3989443932433,0.0,0.0,60.579935809024875,0.0776579580051475 +18,223.20115090919603,0.0,0.0,55.100120450851726,0.0706333340058336 +19,247.6429406685668,0.0,0.0,61.133895609670745,0.0783680839958833 +20,246.88414631211123,0.0,0.0,60.94657730836352,0.0781279590009944 +21,245.0546373862557,0.0,0.0,60.4949391256305,0.0775490000014542 +22,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792 +23,244.31098572658755,0.0,0.0,60.3113589968799,0.0773136670031817 +24,243.40301102024273,0.0,0.0,60.087213577010274,0.0770263329977751 +25,245.98617616377825,0.0,0.0,60.72490164435878,0.0778437909975764 +26,246.44029623831136,0.0,0.0,60.83700711829563,0.077987500000745 +27,250.5241978502783,0.0,0.0,61.84517159151716,0.0792798749971552 +28,224.68990150640013,0.0,0.0,55.46763798780473,0.0711044580020825 +29,245.67623416012847,0.0,0.0,60.648388411051904,0.0777457080039312 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a654fe4f6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348 +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363 +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453 +3,4330.179511549561,1.8300141626022994,0.0,677.2383321019491,0.6701198750015465 +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198 +5,4325.011416888251,1.8278300299586894,0.0,676.430044177803,0.6693200829977286 +6,4325.735138314875,1.8281358880546341,0.0,676.5432339175277,0.6694320829992648 +7,4347.06876561683,1.8371518745739286,0.0,679.8798046377772,0.6727335830000811 +8,4327.957460643241,1.8290750826824618,0.0,676.8908042348878,0.6697760000024573 +9,4348.485786304246,1.8377507337943735,0.0,680.1014261027397,0.6729528750001919 +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608 +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531 +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221 +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238 +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096 +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013 +16,4330.573681242119,1.8301807460240553,0.0,677.2999800831567,0.6701808750003693 +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381 +18,4327.686065067118,1.8289603858790966,0.0,676.8483580760569,0.6697339999955148 +19,4330.916964261218,1.8303258237939386,0.0,677.3536694091241,0.6702339999974356 +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324 +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929 +22,4315.7473562602345,1.8239148661399014,0.0,674.9811488256646,0.6678864169953158 +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024 +24,4344.278884181038,1.8359728189422018,0.0,679.4434683045378,0.6723018330012565 +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992 +26,4314.834620808611,1.8235291272118215,0.0,674.8383973685347,0.6677451659998042 +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372 +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875 +29,4332.038357679215,1.8307997454480662,0.0,677.5290548881808,0.6704075419984292 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f65fc0dd5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.12694041599752381 +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.12795100000221282 +2,415.0127574793532,1.4175777337453508,0.0,92.14255269344781,0.127556833998824 +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.12696691699966323 +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.12707666699861875 +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.12334266700054286 +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818 +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338909,0.1287382910013548 +8,416.11991185189385,1.421359490710763,0.0,92.38836689619959,0.12789712499943562 +9,411.99644172443476,1.4072747684146274,0.0,91.47285994695079,0.12662974999693688 +10,413.4103800010833,1.4121044209536027,0.0,91.78678736198417,0.127064332998998 +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.12179075000312878 +12,368.7876480349551,1.2596845492410633,0.0,81.87949570066912,0.11334925000119256 +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.12691904100211104 +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.12706333399546565 +15,415.7098276987633,1.4199587478324707,0.0,92.2973186091106,0.1277710830036085 +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.12797095800488023 +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.12048812499415362 +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976 +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.12812279100035084 +20,411.35644206336633,1.405088692799397,0.0,91.33076503196081,0.12643304199445993 +21,434.28584462208477,1.4834096839726383,0.0,96.42162945822149,0.13348054100060835 +22,425.7506982570446,1.454255800812937,0.0,94.52662705284091,0.13085720899834996 +23,425.95065505792917,1.4549388022473182,0.0,94.57102214607568,0.13091866700415267 +24,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.13006858299922897 +25,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162 +26,414.45965044482983,1.4156884611811038,0.0,92.01974997677175,0.1273868330026744 +27,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.12803775000065798 +28,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.12021854200429516 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b97dc1547 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2b70cb929 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f9ba4ecc2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bc6119cf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b7719ed4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cb8ab1454 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f327b54fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d55772abe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..506d83dbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..aa8fb9c3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e1e24f9b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3511183c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cebe33d6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5a6d53f24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0e64afd9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..197d8e247 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..aca15238f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a654fe4f6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348 +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363 +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453 +3,4330.179511549561,1.8300141626022994,0.0,677.2383321019491,0.6701198750015465 +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198 +5,4325.011416888251,1.8278300299586894,0.0,676.430044177803,0.6693200829977286 +6,4325.735138314875,1.8281358880546341,0.0,676.5432339175277,0.6694320829992648 +7,4347.06876561683,1.8371518745739286,0.0,679.8798046377772,0.6727335830000811 +8,4327.957460643241,1.8290750826824618,0.0,676.8908042348878,0.6697760000024573 +9,4348.485786304246,1.8377507337943735,0.0,680.1014261027397,0.6729528750001919 +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608 +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531 +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221 +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238 +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096 +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013 +16,4330.573681242119,1.8301807460240553,0.0,677.2999800831567,0.6701808750003693 +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381 +18,4327.686065067118,1.8289603858790966,0.0,676.8483580760569,0.6697339999955148 +19,4330.916964261218,1.8303258237939386,0.0,677.3536694091241,0.6702339999974356 +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324 +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929 +22,4315.7473562602345,1.8239148661399014,0.0,674.9811488256646,0.6678864169953158 +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024 +24,4344.278884181038,1.8359728189422018,0.0,679.4434683045378,0.6723018330012565 +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992 +26,4314.834620808611,1.8235291272118215,0.0,674.8383973685347,0.6677451659998042 +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372 +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875 +29,4332.038357679215,1.8307997454480662,0.0,677.5290548881808,0.6704075419984292 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..3921d3e2d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.12694041599752381 +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.12795100000221282 +2,415.0127574793532,1.4175777337453508,0.0,92.14255269344781,0.127556833998824 +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.12696691699966323 +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.12707666699861875 +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.12334266700054286 +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818 +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338909,0.1287382910013548 +8,416.11991185189385,1.421359490710763,0.0,92.38836689619959,0.12789712499943562 +9,411.99644172443476,1.4072747684146274,0.0,91.47285994695079,0.12662974999693688 +10,413.4103800010833,1.4121044209536027,0.0,91.78678736198417,0.127064332998998 +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.12179075000312878 +12,368.7876480349551,1.2596845492410633,0.0,81.87949570066912,0.11334925000119256 +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.12691904100211104 +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.12706333399546565 +15,415.7098276987633,1.4199587478324707,0.0,92.2973186091106,0.1277710830036085 +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.12797095800488023 +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.12048812499415362 +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976 +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.12812279100035084 +20,411.35644206336633,1.405088692799397,0.0,91.33076503196081,0.12643304199445993 +21,434.28584462208477,1.4834096839726383,0.0,96.42162945822149,0.13348054100060835 +22,425.7506982570446,1.454255800812937,0.0,94.52662705284091,0.13085720899834996 +23,343.1229552610153,1.1720205043073066,0.0,76.18133277997494,0.10546104199602269 +24,425.95065505792917,1.4549388022473182,0.0,94.57102214607568,0.13091866700415267 +25,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.13006858299922897 +26,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162 +27,414.45965044482983,1.4156884611811038,0.0,92.01974997677175,0.1273868330026744 +28,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.12803775000065798 +29,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.12021854200429516 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1739e8fed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f12f2e290 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..78a84c24a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..78bb7e583 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..436c2e945 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4ddaefce3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5238413da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ae305bc53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2e2d83408 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8f2356e50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..30b8c7877 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2f6ce7534 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..004fef604 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2bbcae184 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..06642f9b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..98b79067d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f43c81c34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4e7e86e8f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011 +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471 +2,4382.027550348223,1.9661854659224833,0.0,684.3325176731897,0.6720537090004655 +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344 +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364 +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557 +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387 +7,4368.331000730204,1.9600399188023854,0.0,682.1935547899488,0.6699531249978463 +8,4367.809372487584,1.9598058678162906,0.0,682.1120931458903,0.6698731249998673 +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433 +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591 +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015 +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553 +13,4356.402555742098,1.9546877080056262,0.0,680.330713286365,0.668123707997438 +14,4365.2036763306705,1.9586367099656221,0.0,681.7051667651533,0.6694734999982757 +15,4360.810862240808,1.9566656846539943,0.0,681.0191497350809,0.6687997920016642 +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262 +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621 +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128 +19,4438.056671531104,1.9913253452300514,0.0,693.0824739711713,0.6806466670022928 +20,4374.899715425766,1.9629872556723187,0.0,683.2193778852723,0.6709605420037406 +21,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819 +22,4370.521024384246,1.9610225672748398,0.0,682.5355664235396,0.6702890000015032 +23,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454 +24,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797 +25,4382.123445150023,1.9662284932570662,0.0,684.3474933734551,0.6720684159954544 +26,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432 +27,4361.726697985227,1.9570766138207234,0.0,681.162173979806,0.6689402499978314 +28,4360.017283100929,1.9563096111804794,0.0,680.8952180608669,0.6686780840027495 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..bbc6236e4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,392.6923196485306,0.0,0.0,80.61026913897126,0.12468508400343126 +1,400.51849576675517,0.0,0.0,82.21679448121304,0.12716999999975087 +2,398.05206462233116,0.0,0.0,81.71049560950932,0.12638687499566004 +3,399.9544786756752,0.0,0.0,82.10101536551342,0.12699091700051213 +4,403.1854443963641,0.0,0.0,82.7642547600517,0.12801679199765204 +5,381.72598339763516,0.0,0.0,78.3591446009504,0.12120312500337604 +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361 +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702 +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854 +9,402.8376890448656,0.0,0.0,82.69286896747012,0.12790637500438606 +10,414.9605369904961,0.0,0.0,85.18139748389932,0.13175554199551698 +11,400.0866242774884,0.0,0.0,82.12814167278938,0.12703287500335136 +12,394.64052700923315,0.0,0.0,81.01018915733403,0.12530366599821718 +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246 +14,404.0993175654207,0.0,0.0,82.95185089685027,0.12830695899901912 +15,388.2460478319902,0.0,0.0,79.69755669245045,0.12327333300345344 +16,399.35397808432066,0.0,0.0,81.97774706647837,0.12680025000008754 +17,378.67151729069445,0.0,0.0,77.73213632338405,0.12023329100338742 +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858 +19,402.932305515202,0.0,0.0,82.71229144852506,0.12793641700409353 +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364 +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568 +22,404.07320215275104,0.0,0.0,82.94649003202395,0.12829866700485582 +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844 +24,403.0031686498588,0.0,0.0,82.72683794223248,0.12795891700079665 +25,400.56206556674624,0.0,0.0,82.22573831109683,0.12718383399624145 +26,401.1814598637611,0.0,0.0,82.35288503255603,0.12738050000189105 +27,401.3059963273414,0.0,0.0,82.37844936713687,0.12742004200117663 +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624 +29,402.8306027222338,0.0,0.0,82.69141431621779,0.12790412500180537 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e7bcb4367 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e66d7f7c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..50f03c9d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0da0febad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f750d947e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..33ffb182d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c4db594fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..092f4f07a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a5d58aaa0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a9767d3c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1181c93ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6f35c1427 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4541ac4c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c87bc045e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0736ef108 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c97bc20c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..0a3c56dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2da4777e5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011 +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471 +2,4382.027550348223,1.9661854659224833,0.0,684.3325176731897,0.6720537090004655 +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344 +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364 +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557 +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387 +7,4368.331000730204,1.9600399188023854,0.0,682.1935547899488,0.6699531249978463 +8,4367.809372487584,1.9598058678162906,0.0,682.1120931458903,0.6698731249998673 +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433 +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591 +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015 +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553 +13,4356.402555742098,1.9546877080056262,0.0,680.330713286365,0.668123707997438 +14,4365.2036763306705,1.9586367099656221,0.0,681.7051667651533,0.6694734999982757 +15,4360.810862240808,1.9566656846539943,0.0,681.0191497350809,0.6687997920016642 +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262 +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621 +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128 +19,4438.056671531104,1.9913253452300514,0.0,693.0824739711713,0.6806466670022928 +20,4475.827721362907,2.00827295415278,0.0,698.9811036191074,0.6864394590011216 +21,4374.899715425766,1.9629872556723187,0.0,683.2193778852723,0.6709605420037406 +22,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819 +23,4370.521024384246,1.9610225672748398,0.0,682.5355664235396,0.6702890000015032 +24,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454 +25,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797 +26,4382.123445150023,1.9662284932570662,0.0,684.3474933734551,0.6720684159954544 +27,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432 +28,4361.726697985227,1.9570766138207234,0.0,681.162173979806,0.6689402499978314 +29,4360.017283100929,1.9563096111804794,0.0,680.8952180608669,0.6686780840027495 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..bbc6236e4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,392.6923196485306,0.0,0.0,80.61026913897126,0.12468508400343126 +1,400.51849576675517,0.0,0.0,82.21679448121304,0.12716999999975087 +2,398.05206462233116,0.0,0.0,81.71049560950932,0.12638687499566004 +3,399.9544786756752,0.0,0.0,82.10101536551342,0.12699091700051213 +4,403.1854443963641,0.0,0.0,82.7642547600517,0.12801679199765204 +5,381.72598339763516,0.0,0.0,78.3591446009504,0.12120312500337604 +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361 +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702 +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854 +9,402.8376890448656,0.0,0.0,82.69286896747012,0.12790637500438606 +10,414.9605369904961,0.0,0.0,85.18139748389932,0.13175554199551698 +11,400.0866242774884,0.0,0.0,82.12814167278938,0.12703287500335136 +12,394.64052700923315,0.0,0.0,81.01018915733403,0.12530366599821718 +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246 +14,404.0993175654207,0.0,0.0,82.95185089685027,0.12830695899901912 +15,388.2460478319902,0.0,0.0,79.69755669245045,0.12327333300345344 +16,399.35397808432066,0.0,0.0,81.97774706647837,0.12680025000008754 +17,378.67151729069445,0.0,0.0,77.73213632338405,0.12023329100338742 +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858 +19,402.932305515202,0.0,0.0,82.71229144852506,0.12793641700409353 +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364 +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568 +22,404.07320215275104,0.0,0.0,82.94649003202395,0.12829866700485582 +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844 +24,403.0031686498588,0.0,0.0,82.72683794223248,0.12795891700079665 +25,400.56206556674624,0.0,0.0,82.22573831109683,0.12718383399624145 +26,401.1814598637611,0.0,0.0,82.35288503255603,0.12738050000189105 +27,401.3059963273414,0.0,0.0,82.37844936713687,0.12742004200117663 +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624 +29,402.8306027222338,0.0,0.0,82.69141431621779,0.12790412500180537 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..563ccd3bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e829b13bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ae2564ea0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..beb3f21d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..80aa52405 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cd77ba2d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b2e72c76a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d241f7bbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4e2cee29c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..65549e847 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1d0c3ab48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a60fcca2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2efafa1a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a68c17086 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d29e8ef11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d2b584465 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f4c795be8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b197545cd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479 +1,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886 +2,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246 +3,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568 +4,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654 +5,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804 +6,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281 +7,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404 +8,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845 +9,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495 +10,4503.148936965444,2.6459558647844554,0.0,695.5179682039748,0.6692589580052299 +11,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871 +12,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482 +13,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759 +14,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602 +15,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186 +16,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621 +17,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419 +18,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636 +19,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363 +20,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023 +21,4462.746741007515,2.6222163818489674,0.0,689.2777896895653,0.6632543750019977 +22,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533 +23,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954 +24,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133 +25,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709 +26,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768 +27,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..71c289c0e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531 +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089 +2,386.8253353097512,0.0,0.0,87.22500746639305,0.11957895799423568 +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987 +4,410.1044494159173,0.0,0.0,92.47420061992685,0.12677520899887895 +5,408.06700275448395,0.0,0.0,92.01477802261016,0.12614537499757716 +6,408.14679468492284,0.0,0.0,92.03277025603695,0.12617004100320628 +7,408.5973928664444,0.0,0.0,92.13437536345859,0.12630933400214417 +8,386.5837986845974,0.0,0.0,87.17054352101684,0.11950429200078361 +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258 +10,407.3952218840771,0.0,0.0,91.86329856641038,0.12593770799867343 +11,409.46030100316216,0.0,0.0,92.32895198964506,0.12657608399604214 +12,415.01542067501595,0.0,0.0,93.58157251530466,0.12829333300032886 +13,409.88663100545983,0.0,0.0,92.42508488022675,0.12670787499519065 +14,386.8309963950141,0.0,0.0,87.22628398103481,0.11958070800028509 +15,408.6011647578864,0.0,0.0,92.13522588494506,0.12631050000345567 +16,406.44537592628774,0.0,0.0,91.64911838430375,0.1256440829965868 +17,396.8252034977494,0.0,0.0,89.4798716072401,0.12267020799481543 +18,405.77534837085153,0.0,0.0,91.49803428202071,0.12543695799831767 +19,415.27138496028545,0.0,0.0,93.6392897449062,0.12837245900300331 +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354 +21,407.49752545420637,0.0,0.0,91.88636693565569,0.12596933300665114 +22,409.9073893301796,0.0,0.0,92.42976566212855,0.12671429199690465 +23,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338 +24,414.45147178217695,0.0,0.0,93.45440802555076,0.12811900000087917 +25,386.3541211550232,0.0,0.0,87.11875367582502,0.11943329199857544 +26,409.1427411144483,0.0,0.0,92.25734560522375,0.12647791700146627 +27,409.68134783673395,0.0,0.0,92.37879570449192,0.12664441599918064 +28,405.9621635490298,0.0,0.0,91.54015912190067,0.1254947080014972 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9064943fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ac571ca32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..eb580dd93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e4294460a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b3da9eddc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a1675bbf5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7ed0e83e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..71ff20e30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fa3406ea8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..43fe00f35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4c36f0650 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f2913a1c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ce93091a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a8e1a1d70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cc5564474 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..82720098c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6552ec4a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..660a46b28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b436dbbfe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4595.378147494374,2.7001478144444446,0.0,709.7629052500422,0.6829660829971544 +1,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479 +2,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886 +3,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246 +4,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568 +5,4606.5699898098865,2.7067239062475346,0.0,711.4915017359026,0.684629416995449 +6,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654 +7,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804 +8,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281 +9,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404 +10,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845 +11,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495 +12,4503.148936965444,2.6459558647844554,0.0,695.5179682039748,0.6692589580052299 +13,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871 +14,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482 +15,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759 +16,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602 +17,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186 +18,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621 +19,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419 +20,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636 +21,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363 +22,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023 +23,4462.746741007515,2.6222163818489674,0.0,689.2777896895653,0.6632543750019977 +24,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533 +25,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954 +26,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133 +27,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709 +28,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768 +29,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..07c69f76f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531 +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089 +2,386.8253353097512,0.0,0.0,87.22500746639305,0.11957895799423568 +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987 +4,410.1044494159173,0.0,0.0,92.47420061992685,0.12677520899887895 +5,408.06700275448395,0.0,0.0,92.01477802261016,0.12614537499757716 +6,408.14679468492284,0.0,0.0,92.03277025603695,0.12617004100320628 +7,408.5973928664444,0.0,0.0,92.13437536345859,0.12630933400214417 +8,386.5837986845974,0.0,0.0,87.17054352101684,0.11950429200078361 +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258 +10,407.3952218840771,0.0,0.0,91.86329856641038,0.12593770799867343 +11,409.46030100316216,0.0,0.0,92.32895198964506,0.12657608399604214 +12,415.01542067501595,0.0,0.0,93.58157251530466,0.12829333300032886 +13,409.88663100545983,0.0,0.0,92.42508488022675,0.12670787499519065 +14,386.8309963950141,0.0,0.0,87.22628398103481,0.11958070800028509 +15,408.6011647578864,0.0,0.0,92.13522588494506,0.12631050000345567 +16,406.44537592628774,0.0,0.0,91.64911838430375,0.1256440829965868 +17,396.8252034977494,0.0,0.0,89.4798716072401,0.12267020799481543 +18,405.77534837085153,0.0,0.0,91.49803428202071,0.12543695799831767 +19,415.27138496028545,0.0,0.0,93.6392897449062,0.12837245900300331 +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354 +21,361.9479179930077,0.0,0.0,81.61541390277617,0.11188862499693641 +22,407.49752545420637,0.0,0.0,91.88636693565569,0.12596933300665114 +23,409.9073893301796,0.0,0.0,92.42976566212855,0.12671429199690465 +24,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338 +25,414.45147178217695,0.0,0.0,93.45440802555076,0.12811900000087917 +26,386.3541211550232,0.0,0.0,87.11875367582502,0.11943329199857544 +27,409.1427411144483,0.0,0.0,92.25734560522375,0.12647791700146627 +28,409.68134783673395,0.0,0.0,92.37879570449192,0.12664441599918064 +29,405.9621635490298,0.0,0.0,91.54015912190067,0.1254947080014972 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..511001094 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6989794c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3530d69e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e500daf6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..619241a79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..854c8b492 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..907412def Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5c4a8ea66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..08316e1b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..95d113b7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7d9e13a2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6af971a17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ca4e851c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..20b132054 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..69c4b8f79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..aae28bc18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..511aaa27f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2b6eed622 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207 +1,4376.520182243895,1.7528193218882477,0.0,681.9815484700583,0.6767852090051747 +2,4337.145668188113,1.7370496221832301,0.0,675.845922230983,0.6706963329997961 +3,4341.215338897163,1.7386795466792915,0.0,676.4800882387582,0.6713256669972907 +4,4308.598732289321,1.7256164244049779,0.0,671.3975288184906,0.6662818339973455 +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304 +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381 +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761 +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709 +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578 +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612 +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773 +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248 +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235 +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453 +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269 +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693 +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906 +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411 +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086 +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324 +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115 +22,4321.644617054854,1.7308413697807419,0.0,673.4304344885379,0.6682992499991087 +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593 +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319 +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376 +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013 +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729 +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226 +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..31b7304a3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,373.7002810104703,0.0,0.0,80.05956189892107,0.12653791699995054 +1,377.3721755823788,0.0,0.0,80.84620907502472,0.12778124999749707 +2,375.5968928291588,0.0,0.0,80.46588193401963,0.12718012499681208 +3,376.8571996022623,0.0,0.0,80.73588335826284,0.12760687499394407 +4,358.4247515000995,0.0,0.0,76.78701364964624,0.12136550000286661 +5,376.51068391642957,0.0,0.0,80.66164767954228,0.127489541999239 +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804003 +7,374.2099647272519,0.0,0.0,80.1687538293157,0.12671050000062678 +8,375.82244863222303,0.0,0.0,80.51420381038605,0.12725650000356836 +9,375.69557922622556,0.0,0.0,80.48702398318585,0.1272135410035844 +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104 +11,367.9267647010967,0.0,0.0,78.82267445239606,0.12458295800024644 +12,374.54122384829685,0.0,0.0,80.23972102268834,0.12682266699994216 +13,375.06235147670276,0.0,0.0,80.35136463588229,0.12699912500102073 +14,374.88404796498406,0.0,0.0,80.31316583925673,0.12693874999968102 +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875 +16,375.49242102266754,0.0,0.0,80.44350044948914,0.12714475000393577 +17,373.65007545091566,0.0,0.0,80.04880612669643,0.12652091699419543 +18,378.19699950514024,0.0,0.0,81.02291496810425,0.12806054200336803 +19,372.4382495153243,0.0,0.0,79.7891909793948,0.12611058299808064 +20,363.61881019547434,0.0,0.0,77.8997611769015,0.12312424999981886 +21,384.24356897781905,0.0,0.0,82.31829987299409,0.13010795899754157 +22,368.95782412347836,0.0,0.0,79.04356314272411,0.1249320830029319 +23,378.87735844050263,0.0,0.0,81.16867145014876,0.12829091700405115 +24,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101 +25,377.9771021827879,0.0,0.0,80.97580533456942,0.12798608300363412 +26,376.37704856757165,0.0,0.0,80.63301835270623,0.1274442919966532 +27,376.4166725657793,0.0,0.0,80.64150718747139,0.12745770900073694 +28,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..93d673e8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3d2a2c95e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..49eaac3fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f34beda50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c89582695 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..502dc5758 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b56886f7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..eeec5d50c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..548a09e4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..02e6dda62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..10d5d0f05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e09bdc09f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f77999a74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b8d0d6ffc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e5f10a490 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6a2480084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b58753be4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2b6eed622 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207 +1,4376.520182243895,1.7528193218882477,0.0,681.9815484700583,0.6767852090051747 +2,4337.145668188113,1.7370496221832301,0.0,675.845922230983,0.6706963329997961 +3,4341.215338897163,1.7386795466792915,0.0,676.4800882387582,0.6713256669972907 +4,4308.598732289321,1.7256164244049779,0.0,671.3975288184906,0.6662818339973455 +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304 +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381 +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761 +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709 +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578 +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612 +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773 +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248 +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235 +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453 +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269 +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693 +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906 +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411 +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086 +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324 +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115 +22,4321.644617054854,1.7308413697807419,0.0,673.4304344885379,0.6682992499991087 +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593 +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319 +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376 +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013 +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729 +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226 +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..13680b4d5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,373.7002810104703,0.0,0.0,80.05956189892107,0.12653791699995054 +1,377.3721755823788,0.0,0.0,80.84620907502472,0.12778124999749707 +2,375.5968928291588,0.0,0.0,80.46588193401963,0.12718012499681208 +3,376.8571996022623,0.0,0.0,80.73588335826284,0.12760687499394407 +4,358.4247515000995,0.0,0.0,76.78701364964624,0.12136550000286661 +5,376.51068391642957,0.0,0.0,80.66164767954228,0.127489541999239 +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804003 +7,374.2099647272519,0.0,0.0,80.1687538293157,0.12671050000062678 +8,375.82244863222303,0.0,0.0,80.51420381038605,0.12725650000356836 +9,375.69557922622556,0.0,0.0,80.48702398318585,0.1272135410035844 +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104 +11,367.9267647010967,0.0,0.0,78.82267445239606,0.12458295800024644 +12,374.54122384829685,0.0,0.0,80.23972102268834,0.12682266699994216 +13,375.06235147670276,0.0,0.0,80.35136463588229,0.12699912500102073 +14,374.88404796498406,0.0,0.0,80.31316583925673,0.12693874999968102 +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875 +16,375.49242102266754,0.0,0.0,80.44350044948914,0.12714475000393577 +17,373.65007545091566,0.0,0.0,80.04880612669643,0.12652091699419543 +18,378.19699950514024,0.0,0.0,81.02291496810425,0.12806054200336803 +19,372.4382495153243,0.0,0.0,79.7891909793948,0.12611058299808064 +20,363.61881019547434,0.0,0.0,77.8997611769015,0.12312424999981886 +21,384.24356897781905,0.0,0.0,82.31829987299409,0.13010795899754157 +22,368.95782412347836,0.0,0.0,79.04356314272411,0.1249320830029319 +23,378.87735844050263,0.0,0.0,81.16867145014876,0.12829091700405115 +24,329.8612412749815,0.0,0.0,70.66771904078234,0.11169366599642672 +25,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101 +26,377.9771021827879,0.0,0.0,80.97580533456942,0.12798608300363412 +27,376.37704856757165,0.0,0.0,80.63301835270623,0.1274442919966532 +28,376.4166725657793,0.0,0.0,80.64150718747139,0.12745770900073694 +29,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7d3a673a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..dc6023850 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..91ed6ed8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d0f44b585 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f746121a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..07250e07b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aca891bc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..eeec5d50c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ad62a77e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6911fe484 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..440184ee8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e7fc7ead4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4bccdb29c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2b650087b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..70f108845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6a2480084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e560c2a8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b281e58dc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252 +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143 +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413 +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653 +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525 +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557 +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427 +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632 +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706 +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636 +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242 +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164 +12,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739 +13,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554 +14,4337.461148529906,2.6281594626005718,0.0,676.6346241751016,0.6680622499989113 +15,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586 +16,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295 +17,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005 +18,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879 +19,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957 +20,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418 +21,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706 +22,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824 +23,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733 +24,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746 +25,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593 +26,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348 +27,4358.332696369016,2.6408059749436434,0.0,679.8905408149211,0.671276916997158 +28,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a64f9af0b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.15527652293935,0.0,0.0,81.51934415933158,0.12869320799654815 +1,385.36513808692746,0.0,0.0,82.41972564382412,0.13011462499707704 +2,378.53537543366957,0.0,0.0,80.95901446769543,0.127808625002217 +3,375.9680451234962,0.0,0.0,80.40992831825284,0.12694179199752398 +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456 +5,376.0794774873806,0.0,0.0,80.43376084473613,0.12697941600345075 +6,376.188694437082,0.0,0.0,80.45711955090954,0.12701629199727904 +7,378.75676516528466,0.0,0.0,81.00636405679074,0.12788337499659974 +8,378.54993532893525,0.0,0.0,80.96212845610434,0.12781354100297904 +9,376.9519574623808,0.0,0.0,80.62036194863003,0.12727400000585476 +10,375.52600605674576,0.0,0.0,80.31538749189194,0.12679254199611023 +11,378.15886475244446,0.0,0.0,80.87848848342348,0.12768149999465095 +12,375.0297909482362,0.0,0.0,80.20925979879881,0.12662500000442378 +13,371.8400015295662,0.0,0.0,79.5270456004583,0.12554800000361865 +14,380.5503420202996,0.0,0.0,81.38996417444876,0.12848895800561877 +15,378.3637191494406,0.0,0.0,80.92230158826523,0.12775066700123716 +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861 +17,374.23394884006944,0.0,0.0,80.03904957029572,0.12635629199940013 +18,377.2002516134433,0.0,0.0,80.67346570345106,0.12735783400421496 +19,364.2633868236725,0.0,0.0,77.90660191302786,0.12298983299842803 +20,380.7449517375222,0.0,0.0,81.43158620487097,0.12855466600012733 +21,374.3580929740989,0.0,0.0,80.06560081859438,0.12639820800541202 +22,378.7710821980925,0.0,0.0,81.00942610314478,0.12788820899731945 +23,384.05395399710676,0.0,0.0,82.13929697430812,0.12967191700590774 +24,381.7317073342197,0.0,0.0,81.64262793521807,0.12888783400558168 +25,377.330689419243,0.0,0.0,80.70136300682668,0.12740187500457978 +26,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793 +27,368.4089550234593,0.0,0.0,78.7932326948375,0.12438954199751606 +28,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..832d4106d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2282e647f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c4e24a269 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ada575a8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9c7f76974 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f46a89ee7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0b14289e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b04d99d3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..066ccdda4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bba42faac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..991b41c89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..396ca0925 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dfd9cbcf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..843446ad5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4ccf27211 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4c3008759 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5b183babe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dce43574e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252 +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143 +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413 +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653 +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525 +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557 +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427 +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632 +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706 +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636 +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242 +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164 +12,4419.158622070723,2.6776616900106394,0.0,689.3792545965366,0.6806454170000507 +13,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739 +14,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554 +15,4337.461148529906,2.6281594626005718,0.0,676.6346241751016,0.6680622499989113 +16,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586 +17,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295 +18,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005 +19,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879 +20,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957 +21,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418 +22,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706 +23,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824 +24,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733 +25,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746 +26,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593 +27,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348 +28,4358.332696369016,2.6408059749436434,0.0,679.8905408149211,0.671276916997158 +29,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6359c86da --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.15527652293935,0.0,0.0,81.51934415933158,0.12869320799654815 +1,385.36513808692746,0.0,0.0,82.41972564382412,0.13011462499707704 +2,378.53537543366957,0.0,0.0,80.95901446769543,0.127808625002217 +3,375.9680451234962,0.0,0.0,80.40992831825284,0.12694179199752398 +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456 +5,376.0794774873806,0.0,0.0,80.43376084473613,0.12697941600345075 +6,376.188694437082,0.0,0.0,80.45711955090954,0.12701629199727904 +7,378.75676516528466,0.0,0.0,81.00636405679074,0.12788337499659974 +8,378.54993532893525,0.0,0.0,80.96212845610434,0.12781354100297904 +9,376.9519574623808,0.0,0.0,80.62036194863003,0.12727400000585476 +10,375.52600605674576,0.0,0.0,80.31538749189194,0.12679254199611023 +11,378.15886475244446,0.0,0.0,80.87848848342348,0.12768149999465095 +12,375.0297909482362,0.0,0.0,80.20925979879881,0.12662500000442378 +13,371.8400015295662,0.0,0.0,79.5270456004583,0.12554800000361865 +14,380.5503420202996,0.0,0.0,81.38996417444876,0.12848895800561877 +15,378.3637191494406,0.0,0.0,80.92230158826523,0.12775066700123716 +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861 +17,374.23394884006944,0.0,0.0,80.03904957029572,0.12635629199940013 +18,377.2002516134433,0.0,0.0,80.67346570345106,0.12735783400421496 +19,364.2633868236725,0.0,0.0,77.90660191302786,0.12298983299842803 +20,380.7449517375222,0.0,0.0,81.43158620487097,0.12855466600012733 +21,374.3580929740989,0.0,0.0,80.06560081859438,0.12639820800541202 +22,378.7710821980925,0.0,0.0,81.00942610314478,0.12788820899731945 +23,384.05395399710676,0.0,0.0,82.13929697430812,0.12967191700590774 +24,381.7317073342197,0.0,0.0,81.64262793521807,0.12888783400558168 +25,358.74814021678975,0.0,0.0,76.72703202651994,0.12112766599602764 +26,377.330689419243,0.0,0.0,80.70136300682668,0.12740187500457978 +27,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793 +28,368.4089550234593,0.0,0.0,78.7932326948375,0.12438954199751606 +29,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d3cad47d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fac2246e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0695b4a55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6928ceb0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..40421f186 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..796a4f9cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..603fb7130 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9b1324945 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..395130b4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ddbde4c4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c9f768416 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1a65dda5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2002a6e33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f67b649b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0f24afb5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..48d05ecdd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..335597f14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b86570fad --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178 +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928 +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591 +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788 +4,4332.3764799353785,2.1278862868051958,0.0,674.240718908165,0.6668309590022545 +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093 +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905 +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291 +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341 +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862 +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245 +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937 +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288 +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575 +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733 +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325 +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989 +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246 +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973 +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821 +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617 +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726 +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684 +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297 +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134 +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271 +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358 +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624 +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369 +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d6b7ef0b4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.95057425703004,0.0,0.0,79.28333129496517,0.1256908330033184 +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039 +2,380.42500161272574,0.0,0.0,81.08970256598367,0.12855454099917552 +3,379.72402931513403,0.0,0.0,80.94028642646145,0.1283176659999299 +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309003 +5,376.13581758750024,0.0,0.0,80.17543916220671,0.12710512500052573 +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614 +7,376.28106644284827,0.0,0.0,80.20639976266224,0.12715420799941057 +8,380.54867753629713,0.0,0.0,81.11606477618137,0.12859633399784798 +9,379.31836647407073,0.0,0.0,80.85381713820637,0.12818058300035773 +10,381.04521301241476,0.0,0.0,81.22190407144627,0.12876412499463186 +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587 +12,376.2243494820515,0.0,0.0,80.19431022737417,0.12713504200655734 +13,372.8399531157799,0.0,0.0,79.47290733970135,0.12599137500365032 +14,374.92967766975045,0.0,0.0,79.91834373796102,0.12669754200032912 +15,374.12192675589216,0.0,0.0,79.74616714316706,0.12642458399932366 +16,375.58404179389845,0.0,0.0,80.05782508637942,0.12691866700333776 +17,375.37479914772064,0.0,0.0,80.01322385388747,0.12684795899986057 +18,375.09391603623067,0.0,0.0,79.95335205821166,0.12675304200092796 +19,378.31259142851826,0.0,0.0,80.63943059960772,0.12784070799534675 +20,378.55623535736214,0.0,0.0,80.69136465661818,0.12792304100003093 +21,376.64345322012633,0.0,0.0,80.28364451749893,0.12727666700084228 +22,376.4232347180749,0.0,0.0,80.23670372035055,0.12720224999793572 +23,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102 +24,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959 +25,369.4433498371993,0.0,0.0,78.74890248085369,0.12484358299843734 +26,376.9355548460999,0.0,0.0,80.34590760186201,0.12737537499924656 +27,378.0333122323057,0.0,0.0,80.57990068738393,0.12774633299704874 +28,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..56b1a96a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0f99b91b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..202ddd9b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1f560c382 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..06cd7f57c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..432e54475 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..59a5c585a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fbefa4b14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9c6d4775b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fac20e6d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3b2d4820f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1747104cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fbc4b3ccb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4523b5df7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..836ecf681 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7d8c12682 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6d9c19e4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b86570fad --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178 +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928 +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591 +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788 +4,4332.3764799353785,2.1278862868051958,0.0,674.240718908165,0.6668309590022545 +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093 +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905 +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291 +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341 +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862 +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245 +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937 +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288 +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575 +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733 +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325 +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989 +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246 +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973 +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821 +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617 +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726 +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684 +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297 +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134 +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271 +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358 +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624 +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369 +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..b6736afa1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.95057425703004,0.0,0.0,79.28333129496517,0.1256908330033184 +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039 +2,380.42500161272574,0.0,0.0,81.08970256598367,0.12855454099917552 +3,379.72402931513403,0.0,0.0,80.94028642646145,0.1283176659999299 +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309003 +5,376.13581758750024,0.0,0.0,80.17543916220671,0.12710512500052573 +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614 +7,376.28106644284827,0.0,0.0,80.20639976266224,0.12715420799941057 +8,380.54867753629713,0.0,0.0,81.11606477618137,0.12859633399784798 +9,379.31836647407073,0.0,0.0,80.85381713820637,0.12818058300035773 +10,381.04521301241476,0.0,0.0,81.22190407144627,0.12876412499463186 +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587 +12,376.2243494820515,0.0,0.0,80.19431022737417,0.12713504200655734 +13,329.24711978815566,0.0,0.0,70.18085273351087,0.11126033299660776 +14,372.8399531157799,0.0,0.0,79.47290733970135,0.12599137500365032 +15,374.92967766975045,0.0,0.0,79.91834373796102,0.12669754200032912 +16,374.12192675589216,0.0,0.0,79.74616714316706,0.12642458399932366 +17,375.58404179389845,0.0,0.0,80.05782508637942,0.12691866700333776 +18,375.37479914772064,0.0,0.0,80.01322385388747,0.12684795899986057 +19,375.09391603623067,0.0,0.0,79.95335205821166,0.12675304200092796 +20,378.31259142851826,0.0,0.0,80.63943059960772,0.12784070799534675 +21,378.55623535736214,0.0,0.0,80.69136465661818,0.12792304100003093 +22,376.64345322012633,0.0,0.0,80.28364451749893,0.12727666700084228 +23,376.4232347180749,0.0,0.0,80.23670372035055,0.12720224999793572 +24,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102 +25,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959 +26,369.4433498371993,0.0,0.0,78.74890248085369,0.12484358299843734 +27,376.9355548460999,0.0,0.0,80.34590760186201,0.12737537499924656 +28,378.0333122323057,0.0,0.0,80.57990068738393,0.12774633299704874 +29,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..16afe0cdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..19f67df0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bf1d46aff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6d50a135e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f58f902f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7a6a42f76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7cdff52c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fbefa4b14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f95ab9074 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ab3cdd5a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cd98df9d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..244e7cd53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..69b00114a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9fda12f53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c2749400d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7d8c12682 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..806363b86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ac2ec4491 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367 +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543 +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124 +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614 +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087 +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917 +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481 +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222 +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404 +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312 +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824 +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533 +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766 +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874 +14,4319.8312777558685,3.2838451501359414,0.0,677.979989007148,0.6700942090028548 +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462 +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344 +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974 +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448 +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309 +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348 +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761 +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644 +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413 +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967 +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905 +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321 +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346 +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033 +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5815da966 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,403.1280711860908,0.0,0.0,84.25633205896268,0.12531583300005877 +1,387.8453998928396,0.0,0.0,81.06215651211087,0.12056508300156565 +2,419.15263925514716,0.0,0.0,87.60556875278897,0.13029720800113864 +3,406.2162918923644,0.0,0.0,84.90178983751325,0.12627583300491096 +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548 +5,414.97228218567807,0.0,0.0,86.73184752485783,0.12899770800140686 +6,409.33346783722465,0.0,0.0,85.55329944517618,0.12724483399506425 +7,387.6850922721412,0.0,0.0,81.02865119931684,0.12051524999696994 +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134 +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388 +10,409.10359165398893,0.0,0.0,85.50525386013376,0.1271733750036219 +11,410.61660425324544,0.0,0.0,85.8214831209671,0.12764370800141478 +12,402.2978448831,0.0,0.0,84.08280947874876,0.12505775000317954 +13,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471 +14,406.7088823894727,0.0,0.0,85.00474438585651,0.12642895900353324 +15,409.91545590083996,0.0,0.0,85.6749386537732,0.1274257499972009 +16,408.4102153116807,0.0,0.0,85.36033379250497,0.12695783299568575 +17,407.3196873856032,0.0,0.0,85.13240651671686,0.12661883299733745 +18,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295 +19,408.7449076956601,0.0,0.0,85.43028663046836,0.12706187500589294 +20,406.67349330879034,0.0,0.0,84.9973478428064,0.12641795800300315 +21,408.2432069034229,0.0,0.0,85.32542797247262,0.12690591699356446 +22,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104 +23,403.50310985493286,0.0,0.0,84.3347175271935,0.12543241700041108 +24,408.1030049222433,0.0,0.0,85.29612486627406,0.12686233400017954 +25,395.15070496407816,0.0,0.0,82.58901175705402,0.12283600000228034 +26,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865 +27,405.98909857540684,0.0,0.0,84.85430498859458,0.12620520800555823 +28,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..10c0fe33e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f1491329a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b103eed9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..64761ca5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..713cbf6dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..50b2125f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c1bc851ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d535a5da8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..274cbcc42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..cd5c5fb93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..da512feb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7fa5eca7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ba0d564d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..162051e86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f5fb23d83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8e347e3e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a397b2457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ac2ec4491 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367 +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543 +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124 +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614 +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087 +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917 +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481 +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222 +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404 +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312 +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824 +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533 +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766 +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874 +14,4319.8312777558685,3.2838451501359414,0.0,677.979989007148,0.6700942090028548 +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462 +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344 +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974 +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448 +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309 +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348 +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761 +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644 +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413 +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967 +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905 +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321 +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346 +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033 +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1cd236012 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,403.1280711860908,0.0,0.0,84.25633205896268,0.12531583300005877 +1,387.8453998928396,0.0,0.0,81.06215651211087,0.12056508300156565 +2,419.15263925514716,0.0,0.0,87.60556875278897,0.13029720800113864 +3,406.2162918923644,0.0,0.0,84.90178983751325,0.12627583300491096 +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548 +5,414.97228218567807,0.0,0.0,86.73184752485783,0.12899770800140686 +6,409.33346783722465,0.0,0.0,85.55329944517618,0.12724483399506425 +7,387.6850922721412,0.0,0.0,81.02865119931684,0.12051524999696994 +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134 +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388 +10,443.8168553412664,0.0,0.0,92.76054685791519,0.13796429200010607 +11,409.10359165398893,0.0,0.0,85.50525386013376,0.1271733750036219 +12,410.61660425324544,0.0,0.0,85.8214831209671,0.12764370800141478 +13,402.2978448831,0.0,0.0,84.08280947874876,0.12505775000317954 +14,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471 +15,406.7088823894727,0.0,0.0,85.00474438585651,0.12642895900353324 +16,409.91545590083996,0.0,0.0,85.6749386537732,0.1274257499972009 +17,408.4102153116807,0.0,0.0,85.36033379250497,0.12695783299568575 +18,407.3196873856032,0.0,0.0,85.13240651671686,0.12661883299733745 +19,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295 +20,408.7449076956601,0.0,0.0,85.43028663046836,0.12706187500589294 +21,406.67349330879034,0.0,0.0,84.9973478428064,0.12641795800300315 +22,408.2432069034229,0.0,0.0,85.32542797247262,0.12690591699356446 +23,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104 +24,403.50310985493286,0.0,0.0,84.3347175271935,0.12543241700041108 +25,408.1030049222433,0.0,0.0,85.29612486627406,0.12686233400017954 +26,395.15070496407816,0.0,0.0,82.58901175705402,0.12283600000228034 +27,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865 +28,405.98909857540684,0.0,0.0,84.85430498859458,0.12620520800555823 +29,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c2518335a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ad48b4cbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9b008ac33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3dee17ab9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..efb1777aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0b6c4ed32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..11f0af761 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d535a5da8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..70b5c7e01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3769657d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bd9a8370a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d6a8def63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4318bbf7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e5df41aaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5361a2084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8e347e3e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8159904a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..77c45e99f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463 +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947 +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871 +3,4335.694701631531,2.0620350214489918,0.0,673.6867966850125,0.6660807919979561 +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711 +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248 +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867 +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616 +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431 +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603 +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623 +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934 +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854 +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233 +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968 +15,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684 +16,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233 +17,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367 +18,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686 +19,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466 +20,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982 +21,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603 +22,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318 +23,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496 +24,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769 +25,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032 +26,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459 +27,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574 +28,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3889b5d4f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871 +1,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.12838666699826717 +2,378.17834076825085,1.2393798590279257,0.0,85.98616481418068,0.12760133299889276 +3,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.12807537500339095 +4,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.12722670799848856 +5,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.12509583299834048 +6,376.48283028741844,1.2338232702067742,0.0,85.60065769245378,0.12702925000485266 +7,372.3979185608552,1.2204360484279577,0.0,84.67187395444776,0.1256509580052807 +8,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935 +9,375.9752882211583,1.2321599348257621,0.0,85.48525818101977,0.12685799999599112 +10,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.12627612500364194 +11,380.02426154183485,1.2454293779493257,0.0,86.40587062691674,0.1282241660010186 +12,380.44721520448843,1.2468154971271985,0.0,86.50203732771672,0.12836687499657273 +13,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619 +14,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671 +15,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.12629349999770056 +16,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.12613033300294774 +17,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.12531750000198372 +18,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.12700737499835668 +19,374.82881226544566,1.2284026619859603,0.0,85.22458468426919,0.12647116700100014 +20,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837 +21,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595 +22,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.12811187500483356 +23,378.32986245382807,1.2398764314253001,0.0,86.02061620185799,0.12765245800255798 +24,377.67598528091236,1.2377335212926268,0.0,85.87194457184252,0.12743183299608063 +25,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.12737416599702556 +26,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.12676716600253712 +27,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.12630895799520658 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9f8c58048 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d7c83bf59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..781f104d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..453641b6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8557f4044 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a2cf4719c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..56cac3dd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f5cc5406d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4da79bb6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e26310936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6caff48b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cacc014e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..af78a32bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..41120daf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1d6b280ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8d4ddf5cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5c4d41e10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b0d18e622 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463 +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947 +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871 +3,4335.694701631531,2.0620350214489918,0.0,673.6867966850125,0.6660807919979561 +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711 +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248 +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867 +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616 +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431 +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603 +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623 +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934 +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854 +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233 +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968 +15,4422.4905613437695,2.103314704351033,0.0,687.1732685699118,0.6794149999986985 +16,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684 +17,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233 +18,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367 +19,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686 +20,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466 +21,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982 +22,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603 +23,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318 +24,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496 +25,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769 +26,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032 +27,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459 +28,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574 +29,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..145baab56 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871 +1,396.406509388618,1.2991178784215116,0.0,90.1306917272438,0.13375170800281921 +2,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.12838666699826717 +3,378.17834076825085,1.2393798590279257,0.0,85.98616481418068,0.12760133299889276 +4,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.12807537500339095 +5,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.12722670799848856 +6,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.12509583299834048 +7,376.48283028741844,1.2338232702067742,0.0,85.60065769245378,0.12702925000485266 +8,372.3979185608552,1.2204360484279577,0.0,84.67187395444776,0.1256509580052807 +9,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935 +10,375.9752882211583,1.2321599348257621,0.0,85.48525818101977,0.12685799999599112 +11,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.12627612500364194 +12,380.02426154183485,1.2454293779493257,0.0,86.40587062691674,0.1282241660010186 +13,380.44721520448843,1.2468154971271985,0.0,86.50203732771672,0.12836687499657273 +14,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619 +15,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671 +16,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.12629349999770056 +17,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.12613033300294774 +18,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.12531750000198372 +19,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.12700737499835668 +20,374.82881226544566,1.2284026619859603,0.0,85.22458468426919,0.12647116700100014 +21,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837 +22,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595 +23,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.12811187500483356 +24,352.75184196457076,1.1560512092727298,0.0,80.20495822170533,0.11902216599992244 +25,378.32986245382807,1.2398764314253001,0.0,86.02061620185799,0.12765245800255798 +26,377.67598528091236,1.2377335212926268,0.0,85.87194457184252,0.12743183299608063 +27,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.12737416599702556 +28,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.12676716600253712 +29,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.12630895799520658 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..985ab444f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..98d3c19da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..280a78692 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bb9b8d734 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3a563007a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4bc85c836 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a432fc5e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d49e840ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..103761c25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1347de160 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b720b8c9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..74bce5cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dee86b0c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ef0a37c89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..55c71f26f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4000c2711 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2c9a7c06f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..07e470451 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424 +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305 +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748 +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677 +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616 +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506 +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521 +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271 +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755 +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792 +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214 +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096 +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535 +13,4363.96912667838,2.5889471385396314,0.0,676.9432934681511,0.6655433749983786 +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162 +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428 +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266 +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628 +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434 +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379 +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164 +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172 +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261 +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249 +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646 +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692 +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895 +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225 +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484 +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..68906fc4a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.12793062499986263 +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.12986662500043167 +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.12681191700539785 +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.12703875000443077 +4,411.46998768537196,0.7956876725847174,0.0,84.27658598793131,0.12660499999765307 +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.12833495800441597 +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466 +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.12626904200442368 +8,428.22876492798684,0.8280952669625078,0.0,87.70909035911228,0.13176150000072084 +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.12200445800408488 +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.12732479199621594 +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.12775387500005309 +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.12497979200270493 +13,412.51541493540844,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701 +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551 +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.12679704199399566 +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.12636620800185483 +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802 +18,412.58231029355875,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206 +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921 +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597 +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937 +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952 +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472 +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135 +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.12762104099965654 +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.12737741699675098 +27,403.15140385740267,0.7796014577856469,0.0,82.57278773712977,0.12404545899335062 +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.12705512500542682 +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.12969904099736596 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cf5ce1927 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..afd01f91c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..846785357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ad50a5299 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e88400969 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b5f86516c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6b907baa8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..407ecca5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..85cef9c22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bb24e0d61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c970a2b19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..693c27963 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b37a80fb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6bbbc4898 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f019fbead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3b06ffd24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e28b41098 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..07e470451 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424 +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305 +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748 +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677 +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616 +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506 +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521 +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271 +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755 +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792 +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214 +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096 +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535 +13,4363.96912667838,2.5889471385396314,0.0,676.9432934681511,0.6655433749983786 +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162 +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428 +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266 +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628 +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434 +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379 +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164 +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172 +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261 +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249 +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646 +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692 +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895 +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225 +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484 +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..68906fc4a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.12793062499986263 +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.12986662500043167 +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.12681191700539785 +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.12703875000443077 +4,411.46998768537196,0.7956876725847174,0.0,84.27658598793131,0.12660499999765307 +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.12833495800441597 +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466 +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.12626904200442368 +8,428.22876492798684,0.8280952669625078,0.0,87.70909035911228,0.13176150000072084 +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.12200445800408488 +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.12732479199621594 +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.12775387500005309 +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.12497979200270493 +13,412.51541493540844,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701 +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551 +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.12679704199399566 +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.12636620800185483 +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802 +18,412.58231029355875,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206 +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921 +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597 +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937 +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952 +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472 +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135 +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.12762104099965654 +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.12737741699675098 +27,403.15140385740267,0.7796014577856469,0.0,82.57278773712977,0.12404545899335062 +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.12705512500542682 +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.12969904099736596 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cf5ce1927 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..afd01f91c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..846785357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ad50a5299 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e88400969 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b5f86516c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6b907baa8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..407ecca5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..85cef9c22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bb24e0d61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c970a2b19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..693c27963 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b37a80fb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6bbbc4898 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f019fbead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3b06ffd24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e28b41098 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..751609e6a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299 +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385 +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045 +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057 +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268 +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344 +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375 +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743 +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125 +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514 +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048 +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856 +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496 +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685 +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462 +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559 +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298 +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533 +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415 +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282 +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979 +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028 +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217 +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957 +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171 +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815 +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784 +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544 +28,4332.967360737383,2.2400717076606482,0.0,676.2341844648398,0.6700551249959972 +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..0416c179e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395 +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.12769391699839616 +2,379.7503451515355,0.9110768899139381,0.0,81.4232790874938,0.1268921250011772 +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.12689491699711652 +4,380.9400699708801,0.9139312146093621,0.0,81.67837114268114,0.1272896669979673 +5,377.40880702846295,0.9054591958209081,0.0,80.92122368577226,0.1261097089955001 +6,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.12345183300203644 +7,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277 +8,377.5661692958721,0.9058367310279497,0.0,80.95496414705343,0.12616229099512566 +9,380.5384223868755,0.9129676030252033,0.0,81.59225281851168,0.12715545799437677 +10,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.12572337499295827 +11,394.5627248223053,0.9466139657190549,0.0,84.59924071407701,0.13184162499965169 +12,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.12669141700462205 +13,378.82859285824617,0.9088654706924335,0.0,81.22564373262378,0.12658412499877159 +14,379.10903298874564,0.9095382877817783,0.0,81.28577364509003,0.12667783299548319 +15,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.12358212499384535 +16,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205 +17,381.92828421094526,0.9163020858090921,0.0,81.89025677990145,0.127619875005621 +18,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.12687329199980013 +19,383.9252904409535,0.9210931972548201,0.0,82.31844018429187,0.12828716699732468 +20,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.12699270799930673 +21,379.801843560333,0.9112004421653627,0.0,81.43432099796371,0.12690933299745666 +22,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.12086616700253217 +23,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.12768533400230808 +24,378.08752496595537,0.9070875399041047,0.0,81.06674939957796,0.1263364999977057 +25,375.88140364327444,0.901794730617417,0.0,80.59372907332693,0.12559933299780823 +26,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.12631704199884553 +27,378.28604288554345,0.9075638135693685,0.0,81.10931415344024,0.12640283400105545 +28,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b872f1360 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0cfafddf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3f7740790 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2d93caa19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b832a4866 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..25011d1a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9ad0b2f89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5569529e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9c5cccb88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..41b6a6b0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..aaa24d054 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..208dc7bed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e276caf45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6795a0656 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6e8917586 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b59fdb808 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7431a82e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..751609e6a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299 +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385 +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045 +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057 +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268 +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344 +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375 +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743 +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125 +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514 +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048 +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856 +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496 +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685 +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462 +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559 +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298 +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533 +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415 +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282 +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979 +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028 +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217 +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957 +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171 +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815 +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784 +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544 +28,4332.967360737383,2.2400717076606482,0.0,676.2341844648398,0.6700551249959972 +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8f38625c7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395 +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.12769391699839616 +2,379.7503451515355,0.9110768899139381,0.0,81.4232790874938,0.1268921250011772 +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.12689491699711652 +4,380.9400699708801,0.9139312146093621,0.0,81.67837114268114,0.1272896669979673 +5,312.09731859928553,0.7487673362520624,0.0,66.91761416208246,0.1042861250025453 +6,377.40880702846295,0.9054591958209081,0.0,80.92122368577226,0.1261097089955001 +7,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.12345183300203644 +8,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277 +9,377.5661692958721,0.9058367310279497,0.0,80.95496414705343,0.12616229099512566 +10,380.5384223868755,0.9129676030252033,0.0,81.59225281851168,0.12715545799437677 +11,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.12572337499295827 +12,394.5627248223053,0.9466139657190549,0.0,84.59924071407701,0.13184162499965169 +13,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.12669141700462205 +14,378.82859285824617,0.9088654706924335,0.0,81.22564373262378,0.12658412499877159 +15,379.10903298874564,0.9095382877817783,0.0,81.28577364509003,0.12667783299548319 +16,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.12358212499384535 +17,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205 +18,381.92828421094526,0.9163020858090921,0.0,81.89025677990145,0.127619875005621 +19,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.12687329199980013 +20,383.9252904409535,0.9210931972548201,0.0,82.31844018429187,0.12828716699732468 +21,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.12699270799930673 +22,379.801843560333,0.9112004421653627,0.0,81.43432099796371,0.12690933299745666 +23,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.12086616700253217 +24,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.12768533400230808 +25,378.08752496595537,0.9070875399041047,0.0,81.06674939957796,0.1263364999977057 +26,375.88140364327444,0.901794730617417,0.0,80.59372907332693,0.12559933299780823 +27,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.12631704199884553 +28,378.28604288554345,0.9075638135693685,0.0,81.10931415344024,0.12640283400105545 +29,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8ab2b3801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8f0372c5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..423ddfce4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cfac1a92a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d5ec19365 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..84d5b1ec2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..dc19084ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8ebcb89bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e8115cb54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f8fe72a7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1f898577d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aa0692740 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..825de59d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..12254a675 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a840f2f2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3fc019e65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2959c9a40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..af80d38d0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006 +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721 +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177 +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329 +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873 +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295 +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759 +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249 +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635 +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924 +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713 +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727 +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946 +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714 +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466 +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588 +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919 +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543 +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764 +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398 +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131 +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727 +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806 +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098 +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595 +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957 +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162 +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392 +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415 +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9d9b231d4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.12658183299936354 +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.12736891700478736 +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.12727045900101075 +3,390.02560929136644,1.0581449340672935,0.0,81.74169615669842,0.12458316699485295 +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.12760170799447224 +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.12079549999907613 +6,402.8359437074606,1.0928995505416481,0.0,84.42649027934232,0.12867508299677866 +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859 +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.12666895800066413 +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494 +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.12754720899829408 +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.12029033299768344 +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.12625008399481885 +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602 +14,399.0628659124927,1.0826631377023965,0.0,83.63572738751013,0.12746987500577234 +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.12713187500048662 +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.12654245900193928 +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.12030424999829847 +18,402.56866494625797,1.0921744195235485,0.0,84.37047390819413,0.12858970800152747 +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.12710812500154134 +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.12693945800128859 +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.12682929100265028 +22,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.12164825000218116 +23,405.61921819575144,1.1004506131635479,0.0,85.00980986688407,0.129564125003526 +24,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.12702891699882457 +25,395.58876147911013,1.0732378437754577,0.0,82.90762343165412,0.1263601659957203 +26,397.43884404649145,1.0782571436615283,0.0,83.29536434785305,0.12695112499932293 +27,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.12715083399962168 +28,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f1c926d37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7b7d275b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..89d74633c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..84945b54f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c5c9c46aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ced396c1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e30f2c124 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7d310fa70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..36c42aa76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..05dc767a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2b8a8984d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8ccb5d970 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0fcb0a740 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fb1ac9327 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b2de319b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2c1665eaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..10b40f2b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..af80d38d0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006 +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721 +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177 +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329 +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873 +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295 +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759 +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249 +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635 +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924 +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713 +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727 +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946 +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714 +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466 +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588 +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919 +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543 +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764 +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398 +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131 +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727 +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806 +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098 +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595 +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957 +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162 +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392 +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415 +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9319949c3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.12658183299936354 +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.12736891700478736 +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.12727045900101075 +3,390.02560929136644,1.0581449340672935,0.0,81.74169615669842,0.12458316699485295 +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.12760170799447224 +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.12079549999907613 +6,402.8359437074606,1.0928995505416481,0.0,84.42649027934232,0.12867508299677866 +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859 +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.12666895800066413 +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494 +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.12754720899829408 +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.12029033299768344 +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.12625008399481885 +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602 +14,399.0628659124927,1.0826631377023965,0.0,83.63572738751013,0.12746987500577234 +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.12713187500048662 +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.12654245900193928 +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.12030424999829847 +18,402.56866494625797,1.0921744195235485,0.0,84.37047390819413,0.12858970800152747 +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.12710812500154134 +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.12693945800128859 +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.12682929100265028 +22,350.76980647561356,0.9516433918795789,0.0,73.51445202269747,0.11204395900131203 +23,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.12164825000218116 +24,405.61921819575144,1.1004506131635479,0.0,85.00980986688407,0.129564125003526 +25,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.12702891699882457 +26,395.58876147911013,1.0732378437754577,0.0,82.90762343165412,0.1263601659957203 +27,397.43884404649145,1.0782571436615283,0.0,83.29536434785305,0.12695112499932293 +28,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.12715083399962168 +29,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a554248c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..852a7ad98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..dbae3ffff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a83372f9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1b97c64d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5650b25f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3655232ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..924b2c7f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f5cda7cd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fca7b1802 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..07828709c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5bc82f767 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..08a684a35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..615949067 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7a2b0a4ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4a6d38c9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8c1651090 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..86a267e36 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449 +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021 +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229 +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491 +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962 +5,4345.360137259517,1.6675467938398045,0.0,679.7254241049811,0.6724117499979911 +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415 +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838 +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865 +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737 +10,4329.558075685815,1.6614826987404505,0.0,677.2535776605824,0.6699664999978268 +11,4307.3984058292945,1.6529788497487545,0.0,673.7872387345873,0.6665374580043135 +12,4349.584627244564,1.6691679562999127,0.0,680.3862423469704,0.6730654580023838 +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554 +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981 +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243 +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875 +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369 +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125 +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987 +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684 +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822 +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829 +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659 +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864 +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879 +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664 +27,4334.978371818408,1.6635627558938417,0.0,678.1014505574477,0.6708052499961923 +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682 +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..60dcec3c8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808 +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.12772208399837837 +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.12724783299927367 +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.12733766599558294 +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101 +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.12821379200613592 +6,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888 +7,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.12622041699796682 +8,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019 +9,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021 +10,378.58863745413277,0.630207123850405,0.0,81.79425091658413,0.1265887500048848 +11,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.12849404100415995 +12,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.12736087500525173 +13,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241 +14,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344 +15,376.17314989188685,0.6261862491629446,0.0,81.2723837071485,0.12578108299931046 +16,377.56170672684635,0.6284976719651376,0.0,81.5723820561068,0.12624537499505095 +17,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.12824574999831384 +18,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.12769908400514396 +19,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.12753887500002747 +20,370.94092490406604,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327 +21,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.12354825000511482 +22,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773 +23,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.13008591599646024 +24,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122 +25,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.12627041699306574 +26,380.66455523014747,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738 +27,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.12725687499914784 +28,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.12754449999920325 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8f0692f20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c818b8144 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..aa39eea97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6be1a0315 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f261f51d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4fa0101e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..00c66fe19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8f16244a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..896f2662c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..14ccaddd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..dbc041c48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3d44eefeb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6bfcefac3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c9fbc3ddb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..36d90ec0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5908e91af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..8f78df4c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..86a267e36 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449 +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021 +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229 +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491 +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962 +5,4345.360137259517,1.6675467938398045,0.0,679.7254241049811,0.6724117499979911 +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415 +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838 +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865 +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737 +10,4329.558075685815,1.6614826987404505,0.0,677.2535776605824,0.6699664999978268 +11,4307.3984058292945,1.6529788497487545,0.0,673.7872387345873,0.6665374580043135 +12,4349.584627244564,1.6691679562999127,0.0,680.3862423469704,0.6730654580023838 +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554 +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981 +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243 +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875 +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369 +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125 +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987 +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684 +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822 +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829 +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659 +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864 +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879 +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664 +27,4334.978371818408,1.6635627558938417,0.0,678.1014505574477,0.6708052499961923 +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682 +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f2c8d52c0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808 +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.12772208399837837 +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.12724783299927367 +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.12733766599558294 +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101 +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.12821379200613592 +6,394.616409505073,0.6568873121251435,0.0,85.2570585105581,0.131947958994715 +7,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888 +8,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.12622041699796682 +9,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019 +10,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021 +11,378.58863745413277,0.630207123850405,0.0,81.79425091658413,0.1265887500048848 +12,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.12849404100415995 +13,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.12736087500525173 +14,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241 +15,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344 +16,376.17314989188685,0.6261862491629446,0.0,81.2723837071485,0.12578108299931046 +17,377.56170672684635,0.6284976719651376,0.0,81.5723820561068,0.12624537499505095 +18,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.12824574999831384 +19,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.12769908400514396 +20,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.12753887500002747 +21,370.94092490406604,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327 +22,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.12354825000511482 +23,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773 +24,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.13008591599646024 +25,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122 +26,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.12627041699306574 +27,380.66455523014747,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738 +28,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.12725687499914784 +29,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.12754449999920325 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3e438d860 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a339088ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..61afefa99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9826281e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7254ed16d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..520736a0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..efbf20618 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..327d5e818 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5814e02ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b3461dbfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bdfcba3ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d7330f590 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5210f153c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c11c350dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f954bcf60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e38f058d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..734eb5aa6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f9333bb14 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088 +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537 +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334 +3,4348.094503970354,1.7675587619781765,0.0,678.475763277057,0.6687571250004112 +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395 +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458 +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595 +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057 +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031 +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331 +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702 +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254 +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906 +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986 +14,4346.65978133577,1.7669755279749941,0.0,678.2518894551563,0.6685364579971065 +15,4367.501700837171,1.7754480479254013,0.0,681.5040582451767,0.6717420419954578 +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579 +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937 +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709 +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252 +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354 +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782 +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695 +23,4317.882204189577,1.7552770567051519,0.0,673.7614422945209,0.6641103330039186 +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662 +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897 +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202 +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887 +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9fbe71acf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298 +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315 +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.12307400000281632 +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065 +4,414.84043177425076,0.7109809081252971,0.0,85.55470261107743,0.12813133300369373 +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828 +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.12866329200187465 +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.12679495900374604 +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.12421633300255053 +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521 +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514 +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.12518266700499225 +12,411.59256250414893,0.7054144954368015,0.0,84.88487761756177,0.12712816699786345 +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.12680258299951674 +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.12646387499989942 +15,399.19436945626836,0.6841656540097638,0.0,82.32793369917492,0.12329874999704771 +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.13092354100081138 +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.12501625000004424 +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.12511170800280524 +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.12661983300495194 +20,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764 +21,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.12721458300075028 +22,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064 +23,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.12687795900274068 +24,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714 +25,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.12818183299532393 +26,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.12780808300158242 +27,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.12856237500091083 +28,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.12847083400265547 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3d471bb42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b092c6443 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..889e58691 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e51e95798 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f397f3b92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f589b3256 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5ade35eb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cba32bab2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c51d9c87a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5a325bdff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9fccda1d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8eae2db43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..407030f1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..03d9c4a37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2a377112b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca28d8f49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d1ec5d205 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..5c115e795 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088 +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537 +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334 +3,4348.094503970354,1.7675587619781765,0.0,678.475763277057,0.6687571250004112 +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395 +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458 +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595 +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057 +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031 +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331 +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702 +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254 +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906 +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986 +14,4346.65978133577,1.7669755279749941,0.0,678.2518894551563,0.6685364579971065 +15,4367.501700837171,1.7754480479254013,0.0,681.5040582451767,0.6717420419954578 +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579 +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937 +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709 +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252 +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354 +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782 +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695 +23,4317.882204189577,1.7552770567051519,0.0,673.7614422945209,0.6641103330039186 +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662 +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897 +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202 +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887 +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396 +29,4419.641433587555,1.7966435489399235,0.0,689.6399313138453,0.679761375002272 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8863dca73 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298 +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315 +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.12307400000281632 +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065 +4,414.84043177425076,0.7109809081252971,0.0,85.55470261107743,0.12813133300369373 +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828 +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.12866329200187465 +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.12679495900374604 +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.12421633300255053 +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521 +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514 +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.12518266700499225 +12,411.59256250414893,0.7054144954368015,0.0,84.88487761756177,0.12712816699786345 +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.12680258299951674 +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.12646387499989942 +15,399.19436945626836,0.6841656540097638,0.0,82.32793369917492,0.12329874999704771 +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.13092354100081138 +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.12501625000004424 +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.12511170800280524 +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.12661983300495194 +20,359.6831412166489,0.6164487036276526,0.0,74.17932733652752,0.11109495799610158 +21,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764 +22,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.12721458300075028 +23,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064 +24,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.12687795900274068 +25,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714 +26,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.12818183299532393 +27,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.12780808300158242 +28,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.12856237500091083 +29,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.12847083400265547 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4e093a543 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..63ff5f090 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..551746a19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..432d97880 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f9085d3c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0efbd9a28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bb3f58c13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..93482ccd1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..88f9be3ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c09b709ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d9ff6d6e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dfe2da485 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b65b47a18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ec9a7e397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ea34a3314 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ea5e78160 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..be5314bf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..966b45262 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707 +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797 +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437 +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597 +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613 +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439 +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201 +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153 +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435 +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157 +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486 +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289 +12,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356 +13,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292 +14,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317 +15,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879 +16,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976 +17,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954 +18,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227 +19,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144 +20,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737 +21,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129 +22,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405 +23,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877 +24,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048 +25,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602 +26,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938 +27,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162 +28,4545.066951538386,2.7150146426521626,0.0,682.9586223656848,0.6658834579939139 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..824ac3e48 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.12634462500136578 +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.12695604199689114 +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.12671983300242573 +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.12603416600177297 +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786 +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.12694341599853942 +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936 +7,373.70759990765043,0.701202608833154,0.0,80.83864361833646,0.12678250000317348 +8,370.25199873708164,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832 +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.12858004199370043 +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545 +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.12687341700075194 +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.12458929200511193 +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285 +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.12608566600101767 +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992 +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.12665070799994282 +17,373.54461967252803,0.7008968024591752,0.0,80.8033885120792,0.12672720800037496 +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.12608300000283634 +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762 +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.12775391600007424 +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999 +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.12666895800066413 +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.12740904199745273 +24,373.32735594343916,0.7004891417809348,0.0,80.75639105960205,0.12665350000315811 +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481 +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.12653958299779333 +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.12651270799688064 +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.12823912499879953 +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.12542700000631157 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d8320cacc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9488a78d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e09b72a00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..737616a7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6b36beae9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e17193471 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a37df521c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0dedad5bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e1448e73a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..83f9a2a3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8d5081b48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..99d2a590c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d90271d79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..93265fe5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..30c772ba2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2b861ad22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ece6abee7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..16b1b18b7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707 +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797 +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437 +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597 +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613 +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439 +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201 +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153 +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435 +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157 +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486 +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289 +12,4818.831734850124,2.8785491743233154,0.0,724.0955343752076,0.7059918749946519 +13,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356 +14,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292 +15,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317 +16,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879 +17,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976 +18,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954 +19,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227 +20,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144 +21,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737 +22,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129 +23,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405 +24,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877 +25,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048 +26,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602 +27,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938 +28,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162 +29,4545.066951538386,2.7150146426521626,0.0,682.9586223656848,0.6658834579939139 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..824ac3e48 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.12634462500136578 +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.12695604199689114 +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.12671983300242573 +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.12603416600177297 +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786 +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.12694341599853942 +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936 +7,373.70759990765043,0.701202608833154,0.0,80.83864361833646,0.12678250000317348 +8,370.25199873708164,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832 +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.12858004199370043 +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545 +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.12687341700075194 +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.12458929200511193 +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285 +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.12608566600101767 +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992 +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.12665070799994282 +17,373.54461967252803,0.7008968024591752,0.0,80.8033885120792,0.12672720800037496 +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.12608300000283634 +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762 +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.12775391600007424 +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999 +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.12666895800066413 +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.12740904199745273 +24,373.32735594343916,0.7004891417809348,0.0,80.75639105960205,0.12665350000315811 +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481 +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.12653958299779333 +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.12651270799688064 +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.12823912499879953 +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.12542700000631157 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..aadd053d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e60fad622 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..782bcc568 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6a8ef7e30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..755bf2326 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..bfcc2f636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4847581fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1aa30d78d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..23bb3ac17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bc7eed39c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..27c804617 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4bacf2776 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8af3ab96f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..def639724 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a69e9bc49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f0eb0d6e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2bbdbbb16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3cf2a8b1b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826 +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989 +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705 +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731 +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786 +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694 +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159 +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917 +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899 +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922 +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615 +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488 +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839 +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955 +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446 +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393 +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975 +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217 +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491 +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536 +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475 +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606 +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018 +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269 +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302 +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841 +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071 +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335 +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998 +29,4298.143686713266,2.3209193426873242,0.0,669.4526064028538,0.6634929580031894 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..675449c47 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,356.33566462805965,0.0,0.0,78.6689939309365,0.12206695899658371 +1,365.621944433946,0.0,0.0,80.71914597073523,0.12524808300076984 +2,369.7227878911292,0.0,0.0,81.62449803360438,0.12665287499839906 +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455 +4,381.5487589223497,0.0,0.0,84.2353431878597,0.13070400000287918 +5,374.4612274067481,0.0,0.0,82.67061355472525,0.12827608299994608 +6,376.2095751151944,0.0,0.0,83.05660005262041,0.12887500000215368 +7,417.9745566255801,0.0,0.0,92.27714518215635,0.14318208400072763 +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442 +9,368.9749927454226,0.0,0.0,81.45940568496007,0.12639670900534838 +10,368.74729653917035,0.0,0.0,81.40913670195931,0.12631870900077047 +11,354.0226975037879,0.0,0.0,78.15835518571936,0.12127462499483954 +12,368.9847223569777,0.0,0.0,81.46155371230721,0.12640004199784016 +13,368.66118067405364,0.0,0.0,81.3901247165121,0.1262892090016976 +14,368.6304066460952,0.0,0.0,81.3833306679253,0.12627866699767765 +15,360.7548186281763,0.0,0.0,79.64462009953212,0.12358079200203065 +16,371.2739682072804,0.0,0.0,81.96695546066114,0.12718424999911804 +17,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106 +18,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356 +19,369.8492877304773,0.0,0.0,81.65242567622282,0.12669620900123846 +20,368.8047051618492,0.0,0.0,81.42181092752081,0.12633837499743095 +21,366.89142369116024,0.0,0.0,80.99941164687931,0.12568295800156193 +22,351.5059977726157,0.0,0.0,77.60273795306252,0.12041250000038417 +23,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249 +24,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876 +25,371.2468431633174,0.0,0.0,81.96096700614838,0.12717495799734024 +26,392.0700979045949,0.0,0.0,86.55816190824662,0.13430820800567744 +27,371.75271404089193,0.0,0.0,82.07264921185542,0.12734824999643024 +28,351.3996928408619,0.0,0.0,77.57926878379007,0.12037608399987221 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..332131b47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f0d6a4b9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7725e9594 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..267253a6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8ceb0f804 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..23468063c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0fb65a47f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c5c9f955e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3510f322b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fa8fbb7d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ca83d8dc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0ad999c28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..23126ded8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7103f271f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3974fb0af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f4db17bc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ff356223a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3cf2a8b1b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826 +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989 +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705 +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731 +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786 +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694 +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159 +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917 +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899 +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922 +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615 +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488 +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839 +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955 +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446 +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393 +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975 +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217 +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491 +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536 +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475 +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606 +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018 +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269 +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302 +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841 +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071 +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335 +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998 +29,4298.143686713266,2.3209193426873242,0.0,669.4526064028538,0.6634929580031894 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..77e76ae6e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,356.33566462805965,0.0,0.0,78.6689939309365,0.12206695899658371 +1,365.621944433946,0.0,0.0,80.71914597073523,0.12524808300076984 +2,369.7227878911292,0.0,0.0,81.62449803360438,0.12665287499839906 +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455 +4,381.5487589223497,0.0,0.0,84.2353431878597,0.13070400000287918 +5,374.4612274067481,0.0,0.0,82.67061355472525,0.12827608299994608 +6,376.2095751151944,0.0,0.0,83.05660005262041,0.12887500000215368 +7,417.9745566255801,0.0,0.0,92.27714518215635,0.14318208400072763 +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442 +9,368.9749927454226,0.0,0.0,81.45940568496007,0.12639670900534838 +10,368.74729653917035,0.0,0.0,81.40913670195931,0.12631870900077047 +11,354.0226975037879,0.0,0.0,78.15835518571936,0.12127462499483954 +12,368.9847223569777,0.0,0.0,81.46155371230721,0.12640004199784016 +13,368.66118067405364,0.0,0.0,81.3901247165121,0.1262892090016976 +14,368.6304066460952,0.0,0.0,81.3833306679253,0.12627866699767765 +15,360.7548186281763,0.0,0.0,79.64462009953212,0.12358079200203065 +16,371.2739682072804,0.0,0.0,81.96695546066114,0.12718424999911804 +17,300.1849544333428,0.0,0.0,66.27248042410939,0.10283187500317581 +18,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106 +19,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356 +20,369.8492877304773,0.0,0.0,81.65242567622282,0.12669620900123846 +21,368.8047051618492,0.0,0.0,81.42181092752081,0.12633837499743095 +22,366.89142369116024,0.0,0.0,80.99941164687931,0.12568295800156193 +23,351.5059977726157,0.0,0.0,77.60273795306252,0.12041250000038417 +24,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249 +25,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876 +26,371.2468431633174,0.0,0.0,81.96096700614838,0.12717495799734024 +27,392.0700979045949,0.0,0.0,86.55816190824662,0.13430820800567744 +28,371.75271404089193,0.0,0.0,82.07264921185542,0.12734824999643024 +29,351.3996928408619,0.0,0.0,77.57926878379007,0.12037608399987221 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8d7b6ef5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2cb71decd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..fa8965f97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6c141e374 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..75f705a08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..10c8128b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..047b466ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c5c9f955e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b6c94082b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5626bb896 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e299ca1e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6059602cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ff4bb428c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1c1f53ee6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b981eafda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f4db17bc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6c51a76c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2b7916100 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915 +1,4331.503324019295,2.4054627021163846,0.0,676.3359297450568,0.6692004170035943 +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156 +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433 +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722 +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264 +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261 +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994 +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461 +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413 +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163 +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986 +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575 +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499 +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617 +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059 +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107 +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997 +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968 +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292 +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103 +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821 +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829 +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914 +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086 +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554 +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729 +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415 +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671 +29,4302.407659547652,2.3893046778822282,0.0,671.7928319312199,0.6647052500047721 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..42812305e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.7903775249154,0.0,0.0,80.41439874522317,0.12645991699537262 +1,383.4508304762699,0.0,0.0,82.0536390106512,0.12903779099724488 +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519 +3,378.9841223881726,0.0,0.0,81.09781984454986,0.12753466700087301 +4,377.41585176705246,0.0,0.0,80.76222972141316,0.12700691699865274 +5,378.59347962348187,0.0,0.0,81.01422722237132,0.12740320900047664 +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686 +7,381.4723549525934,0.0,0.0,81.63027021468451,0.12837199999921722 +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033 +9,376.8108781888688,0.0,0.0,80.63277300975706,0.12680333299795166 +10,377.2519165934144,0.0,0.0,80.72714966292916,0.12695174999680603 +11,367.18284367719605,0.0,0.0,78.57249511905164,0.12356333400384756 +12,377.61655773184407,0.0,0.0,80.80517826519866,0.12707445800333517 +13,377.07560168009087,0.0,0.0,80.68942049637064,0.12689241699990816 +14,378.470650841746,0.0,0.0,80.98794341303869,0.12736187500559026 +15,378.94103394496364,0.0,0.0,81.08859946143005,0.12752016699960222 +16,378.16927839571036,0.0,0.0,80.92345351256293,0.1272604580008192 +17,360.8712520229351,0.0,0.0,77.22189415011354,0.12143937499786261 +18,376.8633777379917,0.0,0.0,80.64400725078504,0.12682099999801721 +19,378.58864776937514,0.0,0.0,81.01319326656494,0.12740158299857285 +20,377.44667932316884,0.0,0.0,80.76882642941354,0.12701729100081138 +21,377.031895147184,0.0,0.0,80.68006784985506,0.12687770900083706 +22,374.3029586664954,0.0,0.0,80.09610987904745,0.12595937500009313 +23,376.47582842715946,0.0,0.0,80.56107658869635,0.12669058299798053 +24,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271 +25,378.17670742869615,0.0,0.0,80.92504323187597,0.12726295799802756 +26,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385 +27,376.6962243120295,0.0,0.0,80.60823852691433,0.12676474999898346 +28,356.6068604960436,0.0,0.0,76.30936817510647,0.12000433399953181 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5812297d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..50cf3ebfe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..36a5a4fae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..874023ae1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b55d594a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e209e739f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0280b6bef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1fbf5e217 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9a2b02c6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2a5aa8818 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..eb40d242c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ed6111cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..26192762f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..03f510382 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..dc185bddc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4adf963ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6ff0e9dda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2b7916100 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915 +1,4331.503324019295,2.4054627021163846,0.0,676.3359297450568,0.6692004170035943 +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156 +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433 +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722 +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264 +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261 +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994 +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461 +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413 +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163 +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986 +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575 +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499 +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617 +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059 +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107 +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997 +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968 +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292 +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103 +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821 +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829 +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914 +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086 +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554 +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729 +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415 +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671 +29,4302.407659547652,2.3893046778822282,0.0,671.7928319312199,0.6647052500047721 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..16d38bf7d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.7903775249154,0.0,0.0,80.41439874522317,0.12645991699537262 +1,383.4508304762699,0.0,0.0,82.0536390106512,0.12903779099724488 +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519 +3,378.9841223881726,0.0,0.0,81.09781984454986,0.12753466700087301 +4,377.41585176705246,0.0,0.0,80.76222972141316,0.12700691699865274 +5,378.59347962348187,0.0,0.0,81.01422722237132,0.12740320900047664 +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686 +7,381.4723549525934,0.0,0.0,81.63027021468451,0.12837199999921722 +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033 +9,376.8108781888688,0.0,0.0,80.63277300975706,0.12680333299795166 +10,377.2519165934144,0.0,0.0,80.72714966292916,0.12695174999680603 +11,367.18284367719605,0.0,0.0,78.57249511905164,0.12356333400384756 +12,377.61655773184407,0.0,0.0,80.80517826519866,0.12707445800333517 +13,377.07560168009087,0.0,0.0,80.68942049637064,0.12689241699990816 +14,378.470650841746,0.0,0.0,80.98794341303869,0.12736187500559026 +15,378.94103394496364,0.0,0.0,81.08859946143005,0.12752016699960222 +16,378.16927839571036,0.0,0.0,80.92345351256293,0.1272604580008192 +17,360.8712520229351,0.0,0.0,77.22189415011354,0.12143937499786261 +18,376.8633777379917,0.0,0.0,80.64400725078504,0.12682099999801721 +19,378.58864776937514,0.0,0.0,81.01319326656494,0.12740158299857285 +20,377.44667932316884,0.0,0.0,80.76882642941354,0.12701729100081138 +21,377.031895147184,0.0,0.0,80.68006784985506,0.12687770900083706 +22,374.3029586664954,0.0,0.0,80.09610987904745,0.12595937500009313 +23,347.9967234803297,0.0,0.0,74.46690750383311,0.11710687499726191 +24,376.47582842715946,0.0,0.0,80.56107658869635,0.12669058299798053 +25,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271 +26,378.17670742869615,0.0,0.0,80.92504323187597,0.12726295799802756 +27,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385 +28,376.6962243120295,0.0,0.0,80.60823852691433,0.12676474999898346 +29,356.6068604960436,0.0,0.0,76.30936817510647,0.12000433399953181 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cb7d6790c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bfae1380e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..052073028 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7a30ae2da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..87e929763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ea20c4128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..db307ad52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1fbf5e217 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bebb78444 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..67babc6ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..833f47093 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d4a599c48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1e8ded8b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..abb709172 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b86d3f150 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4adf963ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8ece0b6ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1b3844c23 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4335.519852132827,1.9984265804803762,0.0,678.132752976341,0.6699371249997057 +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514 +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133 +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932 +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202 +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873 +6,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265 +7,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114 +8,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809 +9,4319.72068635306,1.9911440690583218,0.0,675.6615541004571,0.667495791996771 +10,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105 +11,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653 +12,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835 +13,4331.440896987593,1.9965464155495634,0.0,677.4947503431518,0.6693068329987 +14,4331.623180642343,1.9966304378844306,0.0,677.5232619221168,0.6693349999986822 +15,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171 +16,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132 +17,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548 +18,4331.732931351392,1.9966810266815462,0.0,677.5404283872713,0.6693519589971402 +19,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524 +20,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489 +21,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182 +22,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922 +23,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994 +24,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739 +25,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682 +26,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981 +27,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206 +28,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..75562717b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,376.57177593891714,0.0,0.0,79.74107126114866,0.12576391600305215 +1,380.690278713343,0.0,0.0,80.61318607221193,0.12713937499938766 +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998 +3,377.175622428229,0.0,0.0,79.86893895865455,0.12596558299992466 +4,380.9577662999694,0.0,0.0,80.66982798769662,0.12722870799916564 +5,381.55025850883186,0.0,0.0,80.79529135608311,0.12742658299976029 +6,386.5080296823765,0.0,0.0,81.84512570296262,0.12908233299822314 +7,378.1668532813673,0.0,0.0,80.07883735026734,0.12629662499966798 +8,364.021648680628,0.0,0.0,77.0835152360204,0.12157254200428724 +9,381.3288079055205,0.0,0.0,80.7483980160407,0.12735262500063982 +10,372.39002208305175,0.0,0.0,78.85556269804478,0.12436733300273772 +11,382.33663003234,0.0,0.0,80.96180969787187,0.12768920799862826 +12,380.7838498071915,0.0,0.0,80.63300024772721,0.12717062499723397 +13,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207 +14,359.0034919453096,0.0,0.0,76.02089392609103,0.11989662500127451 +15,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113 +16,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118 +17,382.58927200969583,0.0,0.0,81.01530797683783,0.12777358300081687 +18,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988 +19,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475 +20,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802 +21,380.51685927316316,0.0,0.0,80.57646358576704,0.12708145799842896 +22,379.91950137360783,0.0,0.0,80.44996988156394,0.12688195800001267 +23,380.72783290529867,0.0,0.0,80.62113837158283,0.12715191699680872 +24,381.23785680064395,0.0,0.0,80.7291386370892,0.12732225000218023 +25,381.37821343052354,0.0,0.0,80.75885989805546,0.12736912499531172 +26,358.5115594791486,0.0,0.0,75.91672461668911,0.11973233400203753 +27,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729 +28,378.77381981874754,0.0,0.0,80.2073657345035,0.12649933400098234 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c1fe8281d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5f535f85c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7a7031fd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aa9b5d915 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5d9d786a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b416b41f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4662df417 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0edba0c57 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f6ef6c672 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4b41ea07b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2cfb97c46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..21b08d317 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..94bbd3bfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..347c8ace2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..320c28ea0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..01c076052 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..56d57a742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c0a1a2496 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4335.519852132827,1.9984265804803762,0.0,678.132752976341,0.6699371249997057 +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514 +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133 +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932 +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202 +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873 +6,4442.778222222504,2.0478665519432595,0.0,694.9093832927462,0.6865109999998822 +7,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265 +8,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114 +9,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809 +10,4319.72068635306,1.9911440690583218,0.0,675.6615541004571,0.667495791996771 +11,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105 +12,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653 +13,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835 +14,4331.440896987593,1.9965464155495634,0.0,677.4947503431518,0.6693068329987 +15,4331.623180642343,1.9966304378844306,0.0,677.5232619221168,0.6693349999986822 +16,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171 +17,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132 +18,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548 +19,4331.732931351392,1.9966810266815462,0.0,677.5404283872713,0.6693519589971402 +20,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524 +21,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489 +22,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182 +23,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922 +24,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994 +25,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739 +26,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682 +27,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981 +28,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206 +29,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..3fa188977 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,376.57177593891714,0.0,0.0,79.74107126114866,0.12576391600305215 +1,380.690278713343,0.0,0.0,80.61318607221193,0.12713937499938766 +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998 +3,321.82332515261595,0.0,0.0,68.14779636766306,0.10747954100224888 +4,377.175622428229,0.0,0.0,79.86893895865455,0.12596558299992466 +5,380.9577662999694,0.0,0.0,80.66982798769662,0.12722870799916564 +6,381.55025850883186,0.0,0.0,80.79529135608311,0.12742658299976029 +7,386.5080296823765,0.0,0.0,81.84512570296262,0.12908233299822314 +8,378.1668532813673,0.0,0.0,80.07883735026734,0.12629662499966798 +9,364.021648680628,0.0,0.0,77.0835152360204,0.12157254200428724 +10,381.3288079055205,0.0,0.0,80.7483980160407,0.12735262500063982 +11,372.39002208305175,0.0,0.0,78.85556269804478,0.12436733300273772 +12,382.33663003234,0.0,0.0,80.96180969787187,0.12768920799862826 +13,380.7838498071915,0.0,0.0,80.63300024772721,0.12717062499723397 +14,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207 +15,359.0034919453096,0.0,0.0,76.02089392609103,0.11989662500127451 +16,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113 +17,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118 +18,382.58927200969583,0.0,0.0,81.01530797683783,0.12777358300081687 +19,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988 +20,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475 +21,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802 +22,380.51685927316316,0.0,0.0,80.57646358576704,0.12708145799842896 +23,379.91950137360783,0.0,0.0,80.44996988156394,0.12688195800001267 +24,380.72783290529867,0.0,0.0,80.62113837158283,0.12715191699680872 +25,381.23785680064395,0.0,0.0,80.7291386370892,0.12732225000218023 +26,381.37821343052354,0.0,0.0,80.75885989805546,0.12736912499531172 +27,358.5115594791486,0.0,0.0,75.91672461668911,0.11973233400203753 +28,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729 +29,378.77381981874754,0.0,0.0,80.2073657345035,0.12649933400098234 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..faddc658e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e3adcddb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0f6611681 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0773e66e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ac1211cf0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..09a23d77e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..10c511201 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..33a9bc837 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3d41dfad8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6677fb56b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f7be0b462 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cb10dcb6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..70565bc60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4248d8405 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ba850605f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..087012c1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..341475993 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3c60bdb08 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242 +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093 +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832 +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005 +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286 +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888 +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056 +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718 +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019 +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522 +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947 +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863 +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808 +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149 +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736 +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961 +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928 +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731 +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366 +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125 +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944 +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427 +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008 +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724 +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941 +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141 +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581 +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955 +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355 +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a3cbf5484 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,382.11192345358336,0.0,0.0,83.48578836048895,0.12858983299520332 +1,383.06331771990796,0.0,0.0,83.69365389802014,0.12890999999945052 +2,378.283444669349,0.0,0.0,82.64932252442081,0.12730145800014725 +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752 +4,379.91545010812285,0.0,0.0,83.0058915093224,0.12785066699871095 +5,377.47332413675264,0.0,0.0,82.47232320254791,0.12702883299789391 +6,378.70132275599764,0.0,0.0,82.74062268900902,0.12744208400545176 +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177008 +8,377.4120387598971,0.0,0.0,82.45893325659827,0.12700820899772225 +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708 +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298 +11,373.0895357637535,0.0,0.0,81.51453045685822,0.12555358299869113 +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769 +13,383.83679006238367,0.0,0.0,83.86264613386297,0.12917029200616525 +14,382.06227471392884,0.0,0.0,83.47494084719048,0.1285731250027311 +15,379.26022195757537,0.0,0.0,82.8627338757944,0.12763016700046137 +16,378.4614914107541,0.0,0.0,82.68822309689409,0.12736137500178302 +17,376.1883756534947,0.0,0.0,82.19158101539543,0.12659641699428903 +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035 +19,376.2270029142905,0.0,0.0,82.2000204990174,0.12660941599460784 +20,376.0207293733377,0.0,0.0,82.15495278946071,0.12653999999747612 +21,377.7483179042934,0.0,0.0,82.53240526245817,0.12712137500056997 +22,378.4316510205191,0.0,0.0,82.68170341417591,0.12735133299429435 +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608 +24,374.7420925115319,0.0,0.0,81.87558959799095,0.12610970800596988 +25,384.30963894237004,0.0,0.0,83.96595660155066,0.1293294170027366 +26,378.87305193019836,0.0,0.0,82.7781429667409,0.12749987499410054 +27,376.8858236829585,0.0,0.0,82.34396306632436,0.12683112499507843 +28,376.7586678245342,0.0,0.0,82.31618139704467,0.12678833399695577 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..771c0beb7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d3f2cdccc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..18c07bc89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e20035747 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8b8a09917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a3acc4095 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a9d750530 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..734d7a924 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fce6413f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a7b46d652 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ca2f8b05b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c222ac268 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..692bbd3e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a9a0ebcb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c088445d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bbb49f225 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c4395aad7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3c60bdb08 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242 +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093 +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832 +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005 +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286 +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888 +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056 +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718 +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019 +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522 +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947 +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863 +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808 +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149 +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736 +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961 +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928 +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731 +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366 +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125 +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944 +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427 +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008 +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724 +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941 +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141 +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581 +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955 +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355 +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..93740368a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,382.11192345358336,0.0,0.0,83.48578836048895,0.12858983299520332 +1,383.06331771990796,0.0,0.0,83.69365389802014,0.12890999999945052 +2,378.283444669349,0.0,0.0,82.64932252442081,0.12730145800014725 +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752 +4,379.91545010812285,0.0,0.0,83.0058915093224,0.12785066699871095 +5,377.47332413675264,0.0,0.0,82.47232320254791,0.12702883299789391 +6,378.70132275599764,0.0,0.0,82.74062268900902,0.12744208400545176 +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177008 +8,377.4120387598971,0.0,0.0,82.45893325659827,0.12700820899772225 +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708 +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298 +11,373.0895357637535,0.0,0.0,81.51453045685822,0.12555358299869113 +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769 +13,383.83679006238367,0.0,0.0,83.86264613386297,0.12917029200616525 +14,382.06227471392884,0.0,0.0,83.47494084719048,0.1285731250027311 +15,379.26022195757537,0.0,0.0,82.8627338757944,0.12763016700046137 +16,378.4614914107541,0.0,0.0,82.68822309689409,0.12736137500178302 +17,376.1883756534947,0.0,0.0,82.19158101539543,0.12659641699428903 +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035 +19,376.2270029142905,0.0,0.0,82.2000204990174,0.12660941599460784 +20,376.0207293733377,0.0,0.0,82.15495278946071,0.12653999999747612 +21,377.7483179042934,0.0,0.0,82.53240526245817,0.12712137500056997 +22,378.4316510205191,0.0,0.0,82.68170341417591,0.12735133299429435 +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608 +24,363.8453956857787,0.0,0.0,79.4948229451185,0.12244270800147206 +25,374.7420925115319,0.0,0.0,81.87558959799095,0.12610970800596988 +26,384.30963894237004,0.0,0.0,83.96595660155066,0.1293294170027366 +27,378.87305193019836,0.0,0.0,82.7781429667409,0.12749987499410054 +28,376.8858236829585,0.0,0.0,82.34396306632436,0.12683112499507843 +29,376.7586678245342,0.0,0.0,82.31618139704467,0.12678833399695577 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..92f5b5995 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fdfbc7274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3ef76da3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..51a8cc9e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..570f9dc1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..061df098d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f389e68c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..734d7a924 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b73bc13af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..289b7dbfa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..582ef1c07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5e718c54c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e9bbd223a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cac4eb78b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..9721665ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bbb49f225 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..29c063d8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d58c91a33 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854 +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071 +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433 +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542 +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617 +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172 +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277 +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914 +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907 +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628 +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385 +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806 +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976 +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619 +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589 +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459 +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566 +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083 +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654 +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998 +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395 +21,4364.406018298075,2.0938460302381166,0.0,678.904648566254,0.6681513339935918 +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177 +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178 +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715 +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321 +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689 +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114 +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263 +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..682589c33 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837 +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799 +2,392.782657800016,0.0,0.0,82.10768031039964,0.12709266699675936 +3,394.0904615657848,0.0,0.0,82.3810649198677,0.12751583300268976 +4,386.1846502784042,0.0,0.0,80.72842620762319,0.12495774999842979 +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858 +6,390.56829583181525,0.0,0.0,81.64478786602623,0.12637616599386092 +7,391.0349677496118,0.0,0.0,81.742341431275,0.12652716700540623 +8,394.99521491133027,0.0,0.0,82.57019546568124,0.12780858400219586 +9,389.8935329590793,0.0,0.0,81.50373475907328,0.12615783300134353 +10,386.8460219423448,0.0,0.0,80.86668000287307,0.12517174999811687 +11,395.2454142765718,0.0,0.0,82.62249739166286,0.12788954099960392 +12,405.85582153009875,0.0,0.0,84.84050755437045,0.13132274999952642 +13,394.8692730303716,0.0,0.0,82.54386844870608,0.12776783299341332 +14,390.91198968003886,0.0,0.0,81.71663397240133,0.12648737499694107 +15,384.1205680557549,0.0,0.0,80.29694839182318,0.12428987500607036 +16,397.6399258501084,0.0,0.0,83.12304849002524,0.12866433300223434 +17,394.5017605534564,0.0,0.0,82.46704327232571,0.12764891699771397 +18,389.40123755570465,0.0,0.0,81.40082483472742,0.12599854099971708 +19,390.46914264218236,0.0,0.0,81.62406078392506,0.1263440830007312 +20,383.5958221737522,0.0,0.0,80.1872549869132,0.12412008300452726 +21,405.63909868024984,0.0,0.0,84.7952035927062,0.13125262499670498 +22,392.9889501493175,0.0,0.0,82.15080386977927,0.12715941700298572 +23,393.90245582749657,0.0,0.0,82.34176401197539,0.12745499999437016 +24,388.23392583418934,0.0,0.0,81.15680882294728,0.12562083399825497 +25,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692 +26,375.36074051247016,0.0,0.0,78.46578526581658,0.12145545800012769 +27,394.00032031549273,0.0,0.0,82.36222170259528,0.12748666600236902 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2a27833a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..785103d74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4c8134f37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..521e2b177 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0491525ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ad6044115 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f627be495 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ea4abc5f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dc29e5cae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f42d9d372 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9149eb8b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..51d155bbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f550494da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..04104618f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e7ef0cccd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3acc430e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e6162f630 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d58c91a33 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854 +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071 +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433 +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542 +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617 +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172 +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277 +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914 +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907 +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628 +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385 +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806 +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976 +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619 +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589 +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459 +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566 +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083 +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654 +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998 +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395 +21,4364.406018298075,2.0938460302381166,0.0,678.904648566254,0.6681513339935918 +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177 +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178 +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715 +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321 +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689 +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114 +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263 +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a9121dc2a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837 +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799 +2,392.782657800016,0.0,0.0,82.10768031039964,0.12709266699675936 +3,394.0904615657848,0.0,0.0,82.3810649198677,0.12751583300268976 +4,386.1846502784042,0.0,0.0,80.72842620762319,0.12495774999842979 +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858 +6,390.56829583181525,0.0,0.0,81.64478786602623,0.12637616599386092 +7,391.0349677496118,0.0,0.0,81.742341431275,0.12652716700540623 +8,394.99521491133027,0.0,0.0,82.57019546568124,0.12780858400219586 +9,389.8935329590793,0.0,0.0,81.50373475907328,0.12615783300134353 +10,386.8460219423448,0.0,0.0,80.86668000287307,0.12517174999811687 +11,395.2454142765718,0.0,0.0,82.62249739166286,0.12788954099960392 +12,405.85582153009875,0.0,0.0,84.84050755437045,0.13132274999952642 +13,394.8692730303716,0.0,0.0,82.54386844870608,0.12776783299341332 +14,390.91198968003886,0.0,0.0,81.71663397240133,0.12648737499694107 +15,344.4968582488303,0.0,0.0,72.01396839529932,0.11146883299807087 +16,384.1205680557549,0.0,0.0,80.29694839182318,0.12428987500607036 +17,397.6399258501084,0.0,0.0,83.12304849002524,0.12866433300223434 +18,394.5017605534564,0.0,0.0,82.46704327232571,0.12764891699771397 +19,344.61906365958396,0.0,0.0,72.03951433679929,0.11150837499735644 +20,389.40123755570465,0.0,0.0,81.40082483472742,0.12599854099971708 +21,390.46914264218236,0.0,0.0,81.62406078392506,0.1263440830007312 +22,383.5958221737522,0.0,0.0,80.1872549869132,0.12412008300452726 +23,405.63909868024984,0.0,0.0,84.7952035927062,0.13125262499670498 +24,392.9889501493175,0.0,0.0,82.15080386977927,0.12715941700298572 +25,393.90245582749657,0.0,0.0,82.34176401197539,0.12745499999437016 +26,388.23392583418934,0.0,0.0,81.15680882294728,0.12562083399825497 +27,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692 +28,375.36074051247016,0.0,0.0,78.46578526581658,0.12145545800012769 +29,394.00032031549273,0.0,0.0,82.36222170259528,0.12748666600236902 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0e56a5cba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f736df6f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..25dfae375 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ac0401e18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..06b368763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7746f4f25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..76947f262 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ea4abc5f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..22528050b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..39e669548 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..363320fbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..14ace5f55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e5b7f368e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..08d43bf3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..776531e85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3acc430e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b91dca1e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..fa5b1be72 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029 +1,4354.354070461016,2.2737966748170346,0.0,681.0021041077019,0.6721263750005164 +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739 +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867 +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185 +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036 +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834 +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246 +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938 +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276 +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405 +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806 +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341 +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212 +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047 +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004 +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738 +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917 +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045 +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948 +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894 +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339 +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831 +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966 +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685 +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241 +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349 +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466 +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023 +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ee179fbd6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546 +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422 +2,386.7646891747356,0.0,0.0,80.34820506063755,0.12341758299589856 +3,400.02309949515256,0.0,0.0,83.10256578957589,0.12764837500435533 +4,400.4175651822858,0.0,0.0,83.18451383397155,0.12777424999512732 +5,396.0818362122956,0.0,0.0,82.2837903446803,0.12639070799923502 +6,397.73008085897084,0.0,0.0,82.6262039686948,0.1269166670026607 +7,395.98168657862607,0.0,0.0,82.26298481737118,0.12635874999978114 +8,396.5324500295691,0.0,0.0,82.37740284966543,0.12653449999925215 +9,398.14478456222105,0.0,0.0,82.71235634795994,0.12704899999516783 +10,399.33118701966725,0.0,0.0,82.95882483539796,0.12742758399690501 +11,397.223970778421,0.0,0.0,82.52106242482209,0.12675516600575065 +12,402.9354331958688,0.0,0.0,83.70758685778524,0.12857770799746504 +13,397.41304479758514,0.0,0.0,82.56034149679698,0.12681549999979325 +14,398.0741427062589,0.0,0.0,82.69768089674226,0.12702645800163737 +15,396.5969559370069,0.0,0.0,82.39080359183116,0.12655508399620885 +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509 +17,396.85640549274564,0.0,0.0,82.44470278865771,0.12663787500059698 +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872 +19,397.34449316119225,0.0,0.0,82.54610027702614,0.12679362500057323 +20,397.6506894306738,0.0,0.0,82.60971084266905,0.12689133299863897 +21,397.09261487410805,0.0,0.0,82.49377396899592,0.12671325000701472 +22,396.0943744971357,0.0,0.0,82.2863951033608,0.12639470899739536 +23,397.03908034497715,0.0,0.0,82.48265246942572,0.1266961670044111 +24,396.6367801479797,0.0,0.0,82.39907684934194,0.12656779200187884 +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732 +26,394.427458763678,0.0,0.0,81.94010266529867,0.12586279200331774 +27,406.09638297638475,0.0,0.0,84.36425652867271,0.12958637500560144 +28,407.39964754391804,0.0,0.0,84.63500246709813,0.13000224999996135 +29,408.0202694203579,0.0,0.0,84.76393319730442,0.13020029199833516 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..90ed83e0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..04fd33d47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7bd638f41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a7117699a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ae0c33e21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d872d6832 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2c0b15688 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3957e1acd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4bf4af2a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..aa4d58c70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2ab5587ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6878f9b20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..09d8813fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..59f3a2f78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..94213b9b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ae2af38ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1b681621c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..fa5b1be72 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029 +1,4354.354070461016,2.2737966748170346,0.0,681.0021041077019,0.6721263750005164 +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739 +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867 +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185 +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036 +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834 +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246 +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938 +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276 +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405 +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806 +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341 +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212 +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047 +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004 +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738 +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917 +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045 +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948 +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894 +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339 +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831 +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966 +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685 +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241 +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349 +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466 +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023 +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ee179fbd6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546 +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422 +2,386.7646891747356,0.0,0.0,80.34820506063755,0.12341758299589856 +3,400.02309949515256,0.0,0.0,83.10256578957589,0.12764837500435533 +4,400.4175651822858,0.0,0.0,83.18451383397155,0.12777424999512732 +5,396.0818362122956,0.0,0.0,82.2837903446803,0.12639070799923502 +6,397.73008085897084,0.0,0.0,82.6262039686948,0.1269166670026607 +7,395.98168657862607,0.0,0.0,82.26298481737118,0.12635874999978114 +8,396.5324500295691,0.0,0.0,82.37740284966543,0.12653449999925215 +9,398.14478456222105,0.0,0.0,82.71235634795994,0.12704899999516783 +10,399.33118701966725,0.0,0.0,82.95882483539796,0.12742758399690501 +11,397.223970778421,0.0,0.0,82.52106242482209,0.12675516600575065 +12,402.9354331958688,0.0,0.0,83.70758685778524,0.12857770799746504 +13,397.41304479758514,0.0,0.0,82.56034149679698,0.12681549999979325 +14,398.0741427062589,0.0,0.0,82.69768089674226,0.12702645800163737 +15,396.5969559370069,0.0,0.0,82.39080359183116,0.12655508399620885 +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509 +17,396.85640549274564,0.0,0.0,82.44470278865771,0.12663787500059698 +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872 +19,397.34449316119225,0.0,0.0,82.54610027702614,0.12679362500057323 +20,397.6506894306738,0.0,0.0,82.60971084266905,0.12689133299863897 +21,397.09261487410805,0.0,0.0,82.49377396899592,0.12671325000701472 +22,396.0943744971357,0.0,0.0,82.2863951033608,0.12639470899739536 +23,397.03908034497715,0.0,0.0,82.48265246942572,0.1266961670044111 +24,396.6367801479797,0.0,0.0,82.39907684934194,0.12656779200187884 +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732 +26,394.427458763678,0.0,0.0,81.94010266529867,0.12586279200331774 +27,406.09638297638475,0.0,0.0,84.36425652867271,0.12958637500560144 +28,407.39964754391804,0.0,0.0,84.63500246709813,0.13000224999996135 +29,408.0202694203579,0.0,0.0,84.76393319730442,0.13020029199833516 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..90ed83e0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..04fd33d47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7bd638f41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a7117699a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ae0c33e21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d872d6832 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2c0b15688 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3957e1acd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4bf4af2a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..aa4d58c70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2ab5587ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6878f9b20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..09d8813fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..59f3a2f78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..94213b9b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ae2af38ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1b681621c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..391ea24d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4389.025421830659,1.6062307124723363,0.03346313984317367,684.0535046741562,0.6730389170043054 +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023 +2,4354.233157511607,1.5934979533436806,0.033197874027993346,678.63094088024,0.667703667000751 +3,4357.945080142954,1.5948563879754634,0.03322617474948882,679.2094642290505,0.6682728750020033 +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661 +5,4408.816460337069,1.6134735444966397,0.03361403217701333,687.1380457625065,0.6760737910008174 +6,4345.096674030936,1.5901543180351092,0.033128214959064775,677.2069701932021,0.6663026250025723 +7,4424.448338877007,1.6191942685734702,0.03373321392861396,689.5743591287267,0.678470874998311 +8,4389.556078381045,1.6064249143206022,0.033467185715012546,684.1362103862865,0.6731202909941203 +9,4359.39441815639,1.5953867952996852,0.03323722490207678,679.4353514482535,0.6684951249990263 +10,4364.926572416989,1.5974113714243328,0.033279403571340266,680.2975678053377,0.6693434580010944 +11,4336.208818024484,1.5869016717381461,0.03306045149454471,675.8217494514829,0.6649397090004641 +12,4360.874458026974,1.595928438436221,0.03324850913408794,679.6660237190256,0.668722082999011 +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759 +14,4406.642727210601,1.6126780337458744,0.03359745903637238,686.7992576215242,0.6757404580057482 +15,4401.9515346063135,1.6109612203499775,0.03356169209062453,686.0681097165467,0.6750210829995922 +16,4349.9085088683905,1.5919152822940132,0.03316490171445861,677.9569208469628,0.6670404999968014 +17,4371.0961810783265,1.5996692336974663,0.033326442368697216,681.2591349009085,0.6702895420021378 +18,4354.880661070511,1.5937349171346793,0.03320281077363915,678.7318578347315,0.6678029589966172 +19,4358.4390615102575,1.5950371679817958,0.03322994099962075,679.2864539142473,0.6683486250040005 +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141 +21,4353.926660820881,1.5933857862107526,0.03319553721272401,678.5831717025042,0.6676566669993917 +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694 +23,4390.797833401572,1.606879353486394,0.03347665319763321,684.3297446660181,0.6733107089967234 +24,4370.716046913472,1.599530117809139,0.03332354412102373,681.199888921967,0.6702312499983236 +25,4326.591936832465,1.5833822275690632,0.03298712974102215,674.3229061659748,0.6634649999978137 +26,4357.462510925597,1.5946797844192484,0.033222495508734344,679.1342531895475,0.6681988750060555 +27,4363.351975051161,1.5968351235319895,0.03326739840691645,680.0521582341861,0.6691019999998389 +28,4369.617223686835,1.599127986710644,0.033315166389805084,681.0286313403956,0.67006274999585 +29,4413.620958856811,1.6152318239183205,0.033650662998298345,687.8868530112147,0.6768105410010321 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f2c5dba35 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,366.2560098974747,0.0,0.0,80.782447497649,0.12742775000515394 +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433 +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269 +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301 +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036 +5,365.55697252599737,0.0,0.0,80.62826586449009,0.12718454100104282 +6,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953 +7,367.84473766973,0.0,0.0,81.13286172808361,0.12798049999400973 +8,366.06882597778775,0.0,0.0,80.7411616900284,0.12736262499674922 +9,365.15554103083457,0.0,0.0,80.53972501381307,0.12704487500013784 +10,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692 +11,365.718411986348,0.0,0.0,80.66387340232536,0.12724070900003426 +12,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072 +13,366.30535170529316,0.0,0.0,80.7933304644586,0.12744491700141225 +14,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047 +15,364.87015348468304,0.0,0.0,80.4767791403244,0.12694558299699565 +16,365.96391678631085,0.0,0.0,80.71802262603086,0.12732612500258256 +17,367.16306638263006,0.0,0.0,80.98251040695109,0.12774333299603313 +18,365.25817384982116,0.0,0.0,80.56236199474246,0.12708058299904224 +19,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815 +20,366.7016354671544,0.0,0.0,80.88073591671505,0.12758279200352263 +21,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122 +22,364.065011256822,0.0,0.0,80.29919472397987,0.12666545800311724 +23,365.0026092698173,0.0,0.0,80.50599395788157,0.12699166699894704 +24,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237 +25,363.30765298415605,0.0,0.0,80.13214967012348,0.12640195799758658 +26,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376 +27,366.22858689810147,0.0,0.0,80.77639900438956,0.12741820899827871 +28,366.2516985482337,0.0,0.0,80.78149657443056,0.12742625000100816 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d606bf4b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..c4dd73834 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..00f939de4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b0c2df4f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4fdb4d12c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f96eefe7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..38a34b3cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b6a27861b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8400f8009 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1e191072b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..947f6061e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..de3f75b19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..277a1a8e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a277b6828 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dff17b051 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..b325f24e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1af112c7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..33d31070a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..55bce1969 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6ec5253b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..391ea24d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4389.025421830659,1.6062307124723363,0.03346313984317367,684.0535046741562,0.6730389170043054 +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023 +2,4354.233157511607,1.5934979533436806,0.033197874027993346,678.63094088024,0.667703667000751 +3,4357.945080142954,1.5948563879754634,0.03322617474948882,679.2094642290505,0.6682728750020033 +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661 +5,4408.816460337069,1.6134735444966397,0.03361403217701333,687.1380457625065,0.6760737910008174 +6,4345.096674030936,1.5901543180351092,0.033128214959064775,677.2069701932021,0.6663026250025723 +7,4424.448338877007,1.6191942685734702,0.03373321392861396,689.5743591287267,0.678470874998311 +8,4389.556078381045,1.6064249143206022,0.033467185715012546,684.1362103862865,0.6731202909941203 +9,4359.39441815639,1.5953867952996852,0.03323722490207678,679.4353514482535,0.6684951249990263 +10,4364.926572416989,1.5974113714243328,0.033279403571340266,680.2975678053377,0.6693434580010944 +11,4336.208818024484,1.5869016717381461,0.03306045149454471,675.8217494514829,0.6649397090004641 +12,4360.874458026974,1.595928438436221,0.03324850913408794,679.6660237190256,0.668722082999011 +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759 +14,4406.642727210601,1.6126780337458744,0.03359745903637238,686.7992576215242,0.6757404580057482 +15,4401.9515346063135,1.6109612203499775,0.03356169209062453,686.0681097165467,0.6750210829995922 +16,4349.9085088683905,1.5919152822940132,0.03316490171445861,677.9569208469628,0.6670404999968014 +17,4371.0961810783265,1.5996692336974663,0.033326442368697216,681.2591349009085,0.6702895420021378 +18,4354.880661070511,1.5937349171346793,0.03320281077363915,678.7318578347315,0.6678029589966172 +19,4358.4390615102575,1.5950371679817958,0.03322994099962075,679.2864539142473,0.6683486250040005 +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141 +21,4353.926660820881,1.5933857862107526,0.03319553721272401,678.5831717025042,0.6676566669993917 +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694 +23,4390.797833401572,1.606879353486394,0.03347665319763321,684.3297446660181,0.6733107089967234 +24,4370.716046913472,1.599530117809139,0.03332354412102373,681.199888921967,0.6702312499983236 +25,4326.591936832465,1.5833822275690632,0.03298712974102215,674.3229061659748,0.6634649999978137 +26,4357.462510925597,1.5946797844192484,0.033222495508734344,679.1342531895475,0.6681988750060555 +27,4363.351975051161,1.5968351235319895,0.03326739840691645,680.0521582341861,0.6691019999998389 +28,4369.617223686835,1.599127986710644,0.033315166389805084,681.0286313403956,0.67006274999585 +29,4413.620958856811,1.6152318239183205,0.033650662998298345,687.8868530112147,0.6768105410010321 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9fea3a224 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,366.2560098974747,0.0,0.0,80.782447497649,0.12742775000515394 +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433 +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269 +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301 +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036 +5,365.55697252599737,0.0,0.0,80.62826586449009,0.12718454100104282 +6,378.0393748010996,0.0,0.0,83.38141933961053,0.1315274170046905 +7,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953 +8,367.84473766973,0.0,0.0,81.13286172808361,0.12798049999400973 +9,366.06882597778775,0.0,0.0,80.7411616900284,0.12736262499674922 +10,365.15554103083457,0.0,0.0,80.53972501381307,0.12704487500013784 +11,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692 +12,365.718411986348,0.0,0.0,80.66387340232536,0.12724070900003426 +13,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072 +14,366.30535170529316,0.0,0.0,80.7933304644586,0.12744491700141225 +15,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047 +16,364.87015348468304,0.0,0.0,80.4767791403244,0.12694558299699565 +17,365.96391678631085,0.0,0.0,80.71802262603086,0.12732612500258256 +18,367.16306638263006,0.0,0.0,80.98251040695109,0.12774333299603313 +19,365.25817384982116,0.0,0.0,80.56236199474246,0.12708058299904224 +20,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815 +21,366.7016354671544,0.0,0.0,80.88073591671505,0.12758279200352263 +22,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122 +23,364.065011256822,0.0,0.0,80.29919472397987,0.12666545800311724 +24,365.0026092698173,0.0,0.0,80.50599395788157,0.12699166699894704 +25,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237 +26,363.30765298415605,0.0,0.0,80.13214967012348,0.12640195799758658 +27,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376 +28,366.22858689810147,0.0,0.0,80.77639900438956,0.12741820899827871 +29,366.2516985482337,0.0,0.0,80.78149657443056,0.12742625000100816 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9fa963016 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8993cdb16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..228939df7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5c4dcdd32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c9edfff8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..caeaaee42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..38a34b3cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3f6300406 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..04f5666a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1e191072b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e3380e1e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..029a7a800 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..63e677b0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1a43c8187 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..40425685a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..b325f24e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3fb71e506 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..4c04d73a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..55bce1969 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8782208b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..16ced856e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536 +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493 +2,5399.907734117013,5.218201322461614,113.57066190351169,759.8964129645852,0.6863256669967086 +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003 +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715 +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272 +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599 +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276 +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962 +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584 +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608 +11,5399.536300795058,5.2178423878376785,113.56284993147355,759.8441433957505,0.6862784580007428 +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153 +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151 +14,5409.343253817727,5.227319337769412,113.76910940865021,761.224216684217,0.687524916997063 +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099 +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416 +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084 +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481 +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695 +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285 +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882 +22,5438.732295420172,5.25571944075392,114.38721865640855,765.3599590697888,0.6912602500015055 +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235 +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406 +25,5438.364150832097,5.255363684198263,114.37947585290105,765.3081523046171,0.6912134590020287 +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145 +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306 +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348 +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5a486ecbe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,580.8490462076469,0.43751304251111933,22.313165168067087,110.42156095992173,0.1313430000009248 +1,577.9638128096457,0.43533979758534064,22.202329676852372,109.87306737519252,0.13069058400287759 +2,571.3580595604811,0.4303641447526656,21.948571382385946,108.61728914873045,0.12919687500107102 +3,561.9166389561877,0.42325258163453505,21.585881663361288,106.82244002637765,0.1270619579954655 +4,588.3427741262249,0.44315754468051005,22.601034778706012,111.84614646898105,0.133037499996135 +5,579.4248575746424,0.43644030062404254,22.25845533182617,110.15081741134489,0.1310209590010345 +6,589.9617378100206,0.44437699701780337,22.66322684790797,112.15391747810868,0.13340358400455443 +7,568.8925810737016,0.42850707190208714,21.853860667006444,108.148592531596,0.1286393750051502 +8,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355673,0.12803074999828823 +9,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.12979341600293992 +10,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034757,0.1305069580048439 +11,550.8068744156343,0.41488437148173396,21.15910294556843,104.71043252550531,0.12454979099857155 +12,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.13231754199659918 +13,576.6522047657539,0.43435185479777516,22.151944594686533,109.6237258147308,0.1303939999997965 +14,578.589761320147,0.43581128090630455,22.226375326221532,109.99206251181425,0.13083212500350783 +15,570.777621784413,0.42992694149124333,21.92627401605341,108.50694577175149,0.12906562499847496 +16,559.7279309023393,0.42160398063215776,21.501803012240046,106.40635849646996,0.12656704200344393 +17,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.12618162499711616 +18,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.12944687499839347 +19,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198 +20,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.13639845800207695 +21,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.12978991699492326 +22,590.8758797423774,0.44506555632718614,22.69834337268649,112.32769925457674,0.13361029200314078 +23,580.168923511577,0.43700075355759316,22.287038431437253,110.29226710942025,0.13118920900160447 +24,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.12834166700486094 +25,596.6714126054211,0.44943092669740276,22.92097726156754,113.42945157647527,0.1349207919993205 +26,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.13150662500265753 +27,602.7321027138048,0.45399602151222335,23.15379709712339,114.58161127550807,0.13629124999715714 +28,575.0345324443498,0.43313337515363276,22.08980213283527,109.31620029838993,0.13002820799738402 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c15537f84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..d030af605 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6af6b9284 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..af1575997 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f381f5191 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f09d1293d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..89218e39b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0e85f94a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..72303a2e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8cb43095e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6423eefea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7d18274a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4a3c54524 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8b267d98c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c611acaa9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..79c62e2bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ceca04a4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0604d2af4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f81b15e37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..14a210448 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..16ced856e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536 +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493 +2,5399.907734117013,5.218201322461614,113.57066190351169,759.8964129645852,0.6863256669967086 +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003 +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715 +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272 +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599 +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276 +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962 +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584 +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608 +11,5399.536300795058,5.2178423878376785,113.56284993147355,759.8441433957505,0.6862784580007428 +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153 +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151 +14,5409.343253817727,5.227319337769412,113.76910940865021,761.224216684217,0.687524916997063 +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099 +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416 +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084 +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481 +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695 +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285 +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882 +22,5438.732295420172,5.25571944075392,114.38721865640855,765.3599590697888,0.6912602500015055 +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235 +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406 +25,5438.364150832097,5.255363684198263,114.37947585290105,765.3081523046171,0.6912134590020287 +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145 +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306 +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348 +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c4cdf94b0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,580.8490462076469,0.43751304251111933,22.313165168067087,110.42156095992173,0.1313430000009248 +1,577.9638128096457,0.43533979758534064,22.202329676852372,109.87306737519252,0.13069058400287759 +2,571.3580595604811,0.4303641447526656,21.948571382385946,108.61728914873045,0.12919687500107102 +3,509.83055091581105,0.38401976718845493,19.585008126611203,96.92068124194775,0.11528412500047125 +4,561.9166389561877,0.42325258163453505,21.585881663361288,106.82244002637765,0.1270619579954655 +5,588.3427741262249,0.44315754468051005,22.601034778706012,111.84614646898105,0.133037499996135 +6,579.4248575746424,0.43644030062404254,22.25845533182617,110.15081741134489,0.1310209590010345 +7,589.9617378100206,0.44437699701780337,22.66322684790797,112.15391747810868,0.13340358400455443 +8,568.8925810737016,0.42850707190208714,21.853860667006444,108.148592531596,0.1286393750051502 +9,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355673,0.12803074999828823 +10,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.12979341600293992 +11,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034757,0.1305069580048439 +12,550.8068744156343,0.41488437148173396,21.15910294556843,104.71043252550531,0.12454979099857155 +13,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.13231754199659918 +14,576.6522047657539,0.43435185479777516,22.151944594686533,109.6237258147308,0.1303939999997965 +15,578.589761320147,0.43581128090630455,22.226375326221532,109.99206251181425,0.13083212500350783 +16,570.777621784413,0.42992694149124333,21.92627401605341,108.50694577175149,0.12906562499847496 +17,559.7279309023393,0.42160398063215776,21.501803012240046,106.40635849646996,0.12656704200344393 +18,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.12618162499711616 +19,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.12944687499839347 +20,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198 +21,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.13639845800207695 +22,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.12978991699492326 +23,590.8758797423774,0.44506555632718614,22.69834337268649,112.32769925457674,0.13361029200314078 +24,580.168923511577,0.43700075355759316,22.287038431437253,110.29226710942025,0.13118920900160447 +25,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.12834166700486094 +26,596.6714126054211,0.44943092669740276,22.92097726156754,113.42945157647527,0.1349207919993205 +27,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.13150662500265753 +28,602.7321027138048,0.45399602151222335,23.15379709712339,114.58161127550807,0.13629124999715714 +29,575.0345324443498,0.43313337515363276,22.08980213283527,109.31620029838993,0.13002820799738402 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..68f255157 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..0610a6310 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..59390b013 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..52ec79691 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..dbce22454 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9530ec990 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9bbf008e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8e668a6d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5bc789a37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..89d6f704e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ab40dc1ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2ad55edda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8b2d77610 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dec932de7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..802419b94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..f6f6ea3fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..59c14739b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b805f4136 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cc5b8a620 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..51eb951c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..081caf475 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824 +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309 +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063 +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915 +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849 +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294 +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797 +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292 +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422 +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556 +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638 +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283 +12,4356.767493437678,2.3976157355370042,0.0,680.5232662699196,0.6708844999957364 +13,4341.809499462903,2.3893840541860922,0.0,678.1868407131525,0.6685811670031399 +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968 +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453 +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709 +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409 +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754 +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893 +20,4375.239322141577,2.4077811499712882,0.0,683.4085497335172,0.6737289170050644 +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018 +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538 +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116 +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911 +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852 +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635 +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468 +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446 +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1a77f7d53 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.12573337500361959 +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832 +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.12775712500297232 +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.13187837499572197 +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.12730308299796889 +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225 +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.12801054100418696 +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.12722391699935542 +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.12727129099948797 +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.12680187499790918 +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.13029604199982714 +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.12144350000016857 +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.12779191700246884 +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.12773100000049453 +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639 +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.12753887500002747 +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.12704949999897508 +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.12132145799841965 +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.12756179199641338 +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.12699679199431557 +20,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.12606824999966193 +21,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.12432120899757138 +22,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.12767454200366046 +23,386.30978563504675,0.8411936800693467,0.0,82.90804910763481,0.12757983299525222 +24,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.12716566700692056 +25,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733 +26,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888 +27,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.12844812499679392 +28,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.12267399999836925 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..97fbda36e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..227b78f96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ca759a937 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8320fc7b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2d4dba9b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..03e8a27a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5b69fbd03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d07f0f442 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..90ecb2ef1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e0f1b3068 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1bfd24b1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..56cb6c4a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8b5e07803 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cbbb30632 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..992984f97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..96ddd4a2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a233375be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..081caf475 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824 +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309 +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063 +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915 +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849 +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294 +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797 +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292 +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422 +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556 +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638 +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283 +12,4356.767493437678,2.3976157355370042,0.0,680.5232662699196,0.6708844999957364 +13,4341.809499462903,2.3893840541860922,0.0,678.1868407131525,0.6685811670031399 +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968 +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453 +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709 +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409 +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754 +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893 +20,4375.239322141577,2.4077811499712882,0.0,683.4085497335172,0.6737289170050644 +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018 +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538 +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116 +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911 +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852 +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635 +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468 +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446 +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..37cdcc330 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.12573337500361959 +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832 +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.12775712500297232 +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.13187837499572197 +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.12730308299796889 +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225 +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.12801054100418696 +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.12722391699935542 +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.12727129099948797 +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.12680187499790918 +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.13029604199982714 +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.12144350000016857 +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.12779191700246884 +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.12773100000049453 +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639 +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.12753887500002747 +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.12704949999897508 +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.12132145799841965 +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.12756179199641338 +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.12699679199431557 +20,339.5262861430443,0.7393221107548216,0.0,72.86758723599522,0.11212945800070884 +21,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.12606824999966193 +22,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.12432120899757138 +23,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.12767454200366046 +24,386.30978563504675,0.8411936800693467,0.0,82.90804910763481,0.12757983299525222 +25,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.12716566700692056 +26,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733 +27,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888 +28,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.12844812499679392 +29,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.12267399999836925 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..478131998 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f892d16da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7bfcc626a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4e4312496 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..34cbe45df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ded83b41a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b3eb1b690 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..277f6ee36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..be78d39e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d6f716047 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..76015663e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bf8ee4069 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5f5b1da2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8b998c39a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..66f17b0e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..be5527254 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c11964b2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3a2aa8a4a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5519.84217345951,4.72710642584526,111.62724174174593,771.4300036520476,0.698210457994719 +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258 +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211 +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729 +4,5448.99591016236,4.666434795034992,110.19452451704059,761.5288268726033,0.6892490419995738 +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845 +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203 +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498 +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937 +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837 +10,5462.674746967845,4.6781491367370425,110.47115032894759,763.4405237645086,0.6909792919977917 +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947 +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783 +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562 +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421 +15,5535.119945995178,4.74019007107577,111.93620267840355,773.5651610990581,0.7001429590018233 +16,5419.449013845381,4.641131295577101,109.59700045127069,757.3994765003574,0.6855116249935236 +17,5435.615181475974,4.654975748459343,109.92392731718991,759.6587923217901,0.6875565000009374 +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156 +19,5449.549965300805,4.6669092791819855,110.20572912125459,761.6062592962202,0.689319124998292 +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152 +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409 +22,5449.408975070284,4.666788537355728,110.20287788927169,761.5865550926165,0.6893012910004472 +23,5401.537331059038,4.6257920108410016,109.23477419885965,754.8962147977454,0.6832459579964052 +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586 +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554 +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894 +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058 +28,5425.496549978012,4.646310310848687,109.71929919761257,758.244654799714,0.6862765839978238 +29,5472.8253332894155,4.686841939958393,110.67642466787463,764.8591271587816,0.6922632499990868 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..415d04b1a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,596.4459331278491,0.48863263290946735,23.454366379654434,115.49181302124482,0.13590504199964926 +1,554.2467896523963,0.454061387742615,21.79494661164552,107.32065228859379,0.12628962499729823 +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.12802429199655307 +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.13171270799648482 +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885489,0.12963125000533182 +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371763,0.12492245900648413 +6,574.285027647265,0.4704775227960507,22.582921094210434,111.20072306658084,0.13085549999959767 +7,568.8810812926358,0.46605039136853543,22.3704187856897,110.15433893132027,0.12962416700611357 +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196 +9,573.1562154950751,0.4695527542238312,22.538532202743898,110.98214740904696,0.130598290998023 +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.13304554199567065 +11,542.9270608157159,0.44478780802972806,21.349814785426947,105.12877548359786,0.12371033299859846 +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095 +13,560.8248965977349,0.45945043901739646,22.053621072835032,108.59439305061179,0.12778850000177044 +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.13539485995399,0.13077862500358606 +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902383,0.12491483399935532 +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.12947608299873536 +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373 +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913751,0.12913725000544218 +19,582.8598113728299,0.47750233244892143,22.92011195754823,112.86108700524865,0.13280933399801143 +20,575.8457576853292,0.47175613597019184,22.644294526569208,111.50293242324035,0.13121112499356968 +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062835,0.13104816700069932 +22,561.1286338518851,0.45969927286127865,22.065565097341374,108.65320670699792,0.12785770899790805 +23,581.2049042884294,0.47614656562923585,22.85503515020332,112.54064183336725,0.13243225000042003 +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.13027066699578427 +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.13080449999688426 +26,558.5815399432987,0.45761259050887604,21.965404344426048,108.16000442813363,0.12727733299834654 +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.13083870900300099 +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.13011583300249185 +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332225,0.13180879200081108 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7ad6f6971 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..27d3700cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1f3eef0d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3eac14ead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7f465969c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b13fe3191 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..aaeb8de35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a20012002 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..de093a48c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..85fa3bd32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..36340048b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e097f4bc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5fac4bee9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8c2ea8fab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0f5099e37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..c3ff70889 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5bbaf9978 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..bd4dec254 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bcf55f30d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2384f8b44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3a2aa8a4a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5519.84217345951,4.72710642584526,111.62724174174593,771.4300036520476,0.698210457994719 +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258 +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211 +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729 +4,5448.99591016236,4.666434795034992,110.19452451704059,761.5288268726033,0.6892490419995738 +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845 +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203 +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498 +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937 +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837 +10,5462.674746967845,4.6781491367370425,110.47115032894759,763.4405237645086,0.6909792919977917 +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947 +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783 +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562 +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421 +15,5535.119945995178,4.74019007107577,111.93620267840355,773.5651610990581,0.7001429590018233 +16,5419.449013845381,4.641131295577101,109.59700045127069,757.3994765003574,0.6855116249935236 +17,5435.615181475974,4.654975748459343,109.92392731718991,759.6587923217901,0.6875565000009374 +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156 +19,5449.549965300805,4.6669092791819855,110.20572912125459,761.6062592962202,0.689319124998292 +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152 +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409 +22,5449.408975070284,4.666788537355728,110.20287788927169,761.5865550926165,0.6893012910004472 +23,5401.537331059038,4.6257920108410016,109.23477419885965,754.8962147977454,0.6832459579964052 +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586 +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554 +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894 +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058 +28,5425.496549978012,4.646310310848687,109.71929919761257,758.244654799714,0.6862765839978238 +29,5472.8253332894155,4.686841939958393,110.67642466787463,764.8591271587816,0.6922632499990868 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..415d04b1a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,596.4459331278491,0.48863263290946735,23.454366379654434,115.49181302124482,0.13590504199964926 +1,554.2467896523963,0.454061387742615,21.79494661164552,107.32065228859379,0.12628962499729823 +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.12802429199655307 +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.13171270799648482 +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885489,0.12963125000533182 +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371763,0.12492245900648413 +6,574.285027647265,0.4704775227960507,22.582921094210434,111.20072306658084,0.13085549999959767 +7,568.8810812926358,0.46605039136853543,22.3704187856897,110.15433893132027,0.12962416700611357 +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196 +9,573.1562154950751,0.4695527542238312,22.538532202743898,110.98214740904696,0.130598290998023 +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.13304554199567065 +11,542.9270608157159,0.44478780802972806,21.349814785426947,105.12877548359786,0.12371033299859846 +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095 +13,560.8248965977349,0.45945043901739646,22.053621072835032,108.59439305061179,0.12778850000177044 +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.13539485995399,0.13077862500358606 +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902383,0.12491483399935532 +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.12947608299873536 +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373 +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913751,0.12913725000544218 +19,582.8598113728299,0.47750233244892143,22.92011195754823,112.86108700524865,0.13280933399801143 +20,575.8457576853292,0.47175613597019184,22.644294526569208,111.50293242324035,0.13121112499356968 +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062835,0.13104816700069932 +22,561.1286338518851,0.45969927286127865,22.065565097341374,108.65320670699792,0.12785770899790805 +23,581.2049042884294,0.47614656562923585,22.85503515020332,112.54064183336725,0.13243225000042003 +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.13027066699578427 +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.13080449999688426 +26,558.5815399432987,0.45761259050887604,21.965404344426048,108.16000442813363,0.12727733299834654 +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.13083870900300099 +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.13011583300249185 +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332225,0.13180879200081108 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7ad6f6971 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..27d3700cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1f3eef0d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3eac14ead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7f465969c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b13fe3191 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..aaeb8de35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a20012002 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..de093a48c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..85fa3bd32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..36340048b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e097f4bc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5fac4bee9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8c2ea8fab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0f5099e37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..c3ff70889 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5bbaf9978 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..bd4dec254 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bcf55f30d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2384f8b44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..32a54721a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043 +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336 +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125 +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834 +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116 +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327 +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987 +7,4337.0403644270955,2.0315098306819794,0.0,678.790710966559,0.6709766249987297 +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983 +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326 +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708 +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113 +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485 +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637 +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956 +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545 +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394 +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118 +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574 +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509 +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263 +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787 +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361 +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064 +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606 +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084 +26,4347.693469734016,2.0364998437645894,0.0,680.4580297640961,0.6726247499973397 +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489 +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278 +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5f507aad7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.12906937499792548 +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051 +2,379.32275236896515,0.739289559896991,0.0,82.73322256665416,0.1275123750019702 +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.12821270799759077 +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.12703187499573687 +5,377.33497277424436,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827 +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.12756470800377429 +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.12690375000238419 +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.12774912500026403 +9,380.19374757339597,0.7409871054761438,0.0,82.92319334919391,0.12780516700149747 +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.12767641700338572 +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.12778995900589507 +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.12712474999716505 +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.12668508299975656 +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841 +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.13754462500219233 +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.12723270800051978 +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.12760120799794095 +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.12829104200500296 +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.12666058399918256 +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.12687999999616295 +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.12553591699543176 +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.12728387500101235 +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.12684870900557144 +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.12667941700055962 +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.12649341699579963 +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865 +27,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.12707433399918955 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9bf590f29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b7a597873 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d42190c29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d28d275e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e647c583f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a00f7adcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2a93c1fd7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..941c6e3d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..660f8d543 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..624b6ecd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bd5159660 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6e8021d7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dfe5b0f05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..895316cea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8c2000577 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f1e1ad631 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f326e24c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..32a54721a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043 +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336 +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125 +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834 +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116 +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327 +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987 +7,4337.0403644270955,2.0315098306819794,0.0,678.790710966559,0.6709766249987297 +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983 +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326 +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708 +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113 +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485 +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637 +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956 +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545 +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394 +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118 +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574 +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509 +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263 +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787 +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361 +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064 +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606 +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084 +26,4347.693469734016,2.0364998437645894,0.0,680.4580297640961,0.6726247499973397 +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489 +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278 +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c1f812879 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.12906937499792548 +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051 +2,379.32275236896515,0.739289559896991,0.0,82.73322256665416,0.1275123750019702 +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.12821270799759077 +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.12703187499573687 +5,377.33497277424436,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827 +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.12756470800377429 +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.12690375000238419 +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.12774912500026403 +9,380.19374757339597,0.7409871054761438,0.0,82.92319334919391,0.12780516700149747 +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.12767641700338572 +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.12778995900589507 +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.12712474999716505 +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.12668508299975656 +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841 +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.13754462500219233 +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.12723270800051978 +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.12760120799794095 +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.12829104200500296 +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.12666058399918256 +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.12687999999616295 +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.12553591699543176 +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.12728387500101235 +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.12684870900557144 +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.12667941700055962 +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.12649341699579963 +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865 +27,330.59219602187005,0.6443150524876986,0.0,72.10471178294154,0.11113120899972273 +28,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.12707433399918955 +29,323.76578983555265,0.6310105755122394,0.0,70.61581985959697,0.10883645799913211 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..23927c0e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e79b181a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8c02c1294 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..705abfef0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..54194fea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..be6bdd8fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..79bbd1be7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d12789e85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1b702d155 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9533abff3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3f035bda8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..65ec499c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..edec96846 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1fae2456f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..841c30e75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6fde899dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8bd7257f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..37ba2c910 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649 +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086 +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261 +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379 +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596 +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012 +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358 +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984 +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149 +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144 +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066 +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439 +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846 +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843 +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685 +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386 +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428 +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229 +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533 +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505 +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795 +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432 +22,4392.603872271309,2.6074420635695206,0.0,685.7572627187839,0.6731581249987357 +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675 +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446 +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581 +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689 +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216 +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154 +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ca2df942a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.12607749999733642 +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.12700554200273473 +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.12733174999448238 +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.12778079100098694 +4,382.86569957547397,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585 +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.12689070899796207 +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899 +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.12711316700006137 +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.12691291700321017 +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.12687329199980013 +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.12786858300387394 +11,379.15824853552203,0.8729402693636388,0.0,81.98923606869253,0.12799845800327603 +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.12793812500603963 +13,380.90595510416796,0.8769640337118894,0.0,82.3671603970936,0.12858845900336746 +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.12826337500155205 +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538 +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952 +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.12702758299565176 +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.12672058300086064 +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.12676195799576817 +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377 +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698 +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.12867937500413973 +23,377.21491466601356,0.868466110096197,0.0,81.5690092636505,0.127342415995372 +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235 +25,377.79242409137197,0.8697957164947907,0.0,81.69388998770303,0.12753737500315765 +26,372.29493350548756,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435 +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024 +28,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..736fd4946 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..33ae1f812 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3d2ed209d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fc2617b41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a5e4acb69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..abf2c8ef1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8f3cf736d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..358e11734 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8cb11e19d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6faf5647c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..52347bfee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d7d0d94ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..482c54f84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..bd2b59614 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b7f3e01a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..84c9e4d9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..994eaeb55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..37ba2c910 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649 +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086 +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261 +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379 +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596 +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012 +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358 +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984 +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149 +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144 +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066 +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439 +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846 +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843 +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685 +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386 +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428 +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229 +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533 +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505 +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795 +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432 +22,4392.603872271309,2.6074420635695206,0.0,685.7572627187839,0.6731581249987357 +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675 +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446 +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581 +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689 +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216 +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154 +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..01aa1ca4b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.12607749999733642 +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.12700554200273473 +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.12733174999448238 +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.12778079100098694 +4,382.86569957547397,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585 +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.12689070899796207 +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899 +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.12711316700006137 +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.12691291700321017 +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.12687329199980013 +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.12786858300387394 +11,379.15824853552203,0.8729402693636388,0.0,81.98923606869253,0.12799845800327603 +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.12793812500603963 +13,380.90595510416796,0.8769640337118894,0.0,82.3671603970936,0.12858845900336746 +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.12826337500155205 +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538 +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952 +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.12702758299565176 +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.12672058300086064 +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.12676195799576817 +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377 +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698 +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.12867937500413973 +23,377.21491466601356,0.868466110096197,0.0,81.5690092636505,0.127342415995372 +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235 +25,377.79242409137197,0.8697957164947907,0.0,81.69388998770303,0.12753737500315765 +26,372.29493350548756,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435 +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024 +28,347.61244727258975,0.800312018868975,0.0,75.16776731069372,0.11734904200420715 +29,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8db5cd6ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..59bc7f564 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..86afad81b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1442c232c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f7376ea45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8fad0766a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b77d2d1a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fda4530c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..732557428 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..dd895ac1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8fe54abc6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bb3327dcd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b5a2f5458 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d9bf07cbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..79b48b605 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a4eeb632a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..087baf24c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..618927542 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535 +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561 +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272 +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199 +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286 +5,4391.016889062863,1.7124603228688557,0.0,684.5811973068672,0.6757975419968716 +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228 +7,4344.730354172825,1.6944089565259695,0.0,677.3648981500287,0.6686738330026856 +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567 +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164 +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068 +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551 +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753 +13,4363.309510738167,1.7016546741477265,0.0,680.261480323997,0.6715332500025397 +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706 +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957 +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198 +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859 +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221 +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357 +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156 +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466 +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512 +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975 +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294 +25,4368.247362930842,1.7035803957228839,0.0,681.0313158431011,0.6722932079937891 +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028 +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131 +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972 +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..07c368ab9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,390.2923708501913,0.44691278261714845,0.0,83.81333569389291,0.1297804999994696 +1,365.9657287665602,0.41905703109004516,0.0,78.58931090750231,0.12169137500313809 +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035 +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715 +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.12474137499521021 +5,383.3887996646965,0.43900769802176115,0.0,82.33082829054258,0.12748491600359557 +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.12676570899930084 +7,372.53711365314894,0.42658173852646314,0.0,80.00048296365516,0.12387650000164285 +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.12705933300458128 +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.12715570800355636 +10,381.75469649055145,0.43713653257968543,0.0,81.97991280225177,0.1269415420028963 +11,381.43905348121797,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572 +12,381.4226364679471,0.43675630001614657,0.0,81.90860457225888,0.12683112499507843 +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.12098466699535493 +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.12690266700519715 +15,384.03863484277593,0.43975180595050534,0.0,82.47037714671785,0.12770099999761442 +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.12712958300107857 +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.12656308399891714 +18,383.1444573623307,0.43872790854490434,0.0,82.27835700249821,0.12740366700018058 +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.12139633399783634 +20,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588 +21,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.12736491700343322 +22,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.12700683399452828 +23,381.2948250919911,0.43660994681545706,0.0,81.88115771816032,0.12678862499888055 +24,375.600202278002,0.43008919489245356,0.0,80.65826593444629,0.12489504200493684 +25,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.12723845900472952 +26,380.05517794721317,0.43519046184389776,0.0,81.61494969041713,0.1263764160030405 +27,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.12451029200019548 +28,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.12612216699926648 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..45afa7a28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fe30ae5e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..deff10e7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ea11627ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d91facb90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..82c3e7a26 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..65ec4a61b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..dec67bdd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..40fd5a78b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b3e9df2d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ec3088520 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9d918df12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..aa8827740 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..587b5f99f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9d66af8a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bc9229127 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d56f53c71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..618927542 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535 +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561 +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272 +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199 +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286 +5,4391.016889062863,1.7124603228688557,0.0,684.5811973068672,0.6757975419968716 +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228 +7,4344.730354172825,1.6944089565259695,0.0,677.3648981500287,0.6686738330026856 +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567 +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164 +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068 +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551 +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753 +13,4363.309510738167,1.7016546741477265,0.0,680.261480323997,0.6715332500025397 +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706 +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957 +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198 +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859 +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221 +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357 +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156 +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466 +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512 +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975 +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294 +25,4368.247362930842,1.7035803957228839,0.0,681.0313158431011,0.6722932079937891 +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028 +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131 +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972 +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f0319f804 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,390.2923708501913,0.44691278261714845,0.0,83.81333569389291,0.1297804999994696 +1,365.9657287665602,0.41905703109004516,0.0,78.58931090750231,0.12169137500313809 +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035 +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715 +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.12474137499521021 +5,383.3887996646965,0.43900769802176115,0.0,82.33082829054258,0.12748491600359557 +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.12676570899930084 +7,372.53711365314894,0.42658173852646314,0.0,80.00048296365516,0.12387650000164285 +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.12705933300458128 +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.12715570800355636 +10,381.75469649055145,0.43713653257968543,0.0,81.97991280225177,0.1269415420028963 +11,381.43905348121797,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572 +12,381.4226364679471,0.43675630001614657,0.0,81.90860457225888,0.12683112499507843 +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.12098466699535493 +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.12690266700519715 +15,384.03863484277593,0.43975180595050534,0.0,82.47037714671785,0.12770099999761442 +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.12712958300107857 +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.12656308399891714 +18,383.1444573623307,0.43872790854490434,0.0,82.27835700249821,0.12740366700018058 +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.12139633399783634 +20,337.2567860558492,0.3861832307518752,0.0,72.42420896715937,0.11214504200324882 +21,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588 +22,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.12736491700343322 +23,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.12700683399452828 +24,381.2948250919911,0.43660994681545706,0.0,81.88115771816032,0.12678862499888055 +25,375.600202278002,0.43008919489245356,0.0,80.65826593444629,0.12489504200493684 +26,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.12723845900472952 +27,380.05517794721317,0.43519046184389776,0.0,81.61494969041713,0.1263764160030405 +28,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.12451029200019548 +29,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.12612216699926648 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..befd225ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a29758a92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e453e2b3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..16b9c58a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c01417d36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fa2deaa4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..24f3634f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2df14b1ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5342f73aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..45a2e6d4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..78470ce06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..76a3ca742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..18205aa05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..59477934d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1a893a956 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6aa868b46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..458c12883 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..805ef0815 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145 +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862 +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175 +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131 +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066 +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478 +6,4417.676650902167,2.4914520345727906,0.0,684.2191674146103,0.67062487500516 +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159 +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944 +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487 +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336 +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097 +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006 +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183 +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441 +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204 +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235 +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284 +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211 +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926 +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846 +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933 +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663 +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835 +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885 +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396 +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204 +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728 +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545 +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..aa94926ca --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,384.9922799870706,0.0,0.0,81.6414086697934,0.12870487500185845 +1,382.1713775858955,0.0,0.0,81.0432085039104,0.12776183299865806 +2,387.3060348462912,0.0,0.0,82.13206319935875,0.12947837500541937 +3,382.62480774279396,0.0,0.0,81.13936283911889,0.12791341700358316 +4,382.57595115897095,0.0,0.0,81.1290023188346,0.12789708399941446 +5,380.99243948550844,0.0,0.0,80.79320305638996,0.12736770800256636 +6,381.0339464626488,0.0,0.0,80.80200502011628,0.12738158399588428 +7,373.8850362618945,0.0,0.0,79.28600812983309,0.12499166699853959 +8,375.0913924440434,0.0,0.0,79.54182785191026,0.12539495799865108 +9,379.9175739652012,0.0,0.0,80.5652672255431,0.12700837499869522 +10,380.5149594438619,0.0,0.0,80.6919487060091,0.12720808399899397 +11,383.2371466215314,0.0,0.0,81.26921533549904,0.12811812500149244 +12,380.5183216338946,0.0,0.0,80.69266169155388,0.12720920799620217 +13,380.66738608897157,0.0,0.0,80.72427227890252,0.12725904100079788 +14,361.8152226748145,0.0,0.0,76.72648516053064,0.12095666700042784 +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263 +17,380.81582834268636,0.0,0.0,80.7557509223179,0.12730866600031732 +18,365.9374543718208,0.0,0.0,77.6006450336018,0.12233474999811733 +19,378.25367465054006,0.0,0.0,80.21242097122808,0.12645212500501657 +20,384.7918642445624,0.0,0.0,81.59890853566469,0.12863787500100443 +21,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591007 +22,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283 +23,382.10669117039305,0.0,0.0,81.02949111174972,0.12774020800134167 +24,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +25,363.2618803228803,0.0,0.0,77.03326317762489,0.12144029200135265 +26,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759 +27,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602 +28,380.00843408150524,0.0,0.0,80.58453500900934,0.1270387499971548 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d82fc0799 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0080f6b94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..61ff8fee2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..00329d239 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..02570bfc3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0f4dddf2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..971e829ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d648d8c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c17a3dfdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fd6e04638 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9b4f3fae4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..748b7d359 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f6cf7fadd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3707f3371 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e42a329de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c156523b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2ab9f7063 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..805ef0815 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145 +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862 +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175 +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131 +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066 +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478 +6,4417.676650902167,2.4914520345727906,0.0,684.2191674146103,0.67062487500516 +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159 +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944 +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487 +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336 +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097 +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006 +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183 +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441 +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204 +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235 +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284 +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211 +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926 +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846 +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933 +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663 +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835 +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885 +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396 +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204 +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728 +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545 +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1f4a1e377 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,384.9922799870706,0.0,0.0,81.6414086697934,0.12870487500185845 +1,382.1713775858955,0.0,0.0,81.0432085039104,0.12776183299865806 +2,387.3060348462912,0.0,0.0,82.13206319935875,0.12947837500541937 +3,382.62480774279396,0.0,0.0,81.13936283911889,0.12791341700358316 +4,382.57595115897095,0.0,0.0,81.1290023188346,0.12789708399941446 +5,380.99243948550844,0.0,0.0,80.79320305638996,0.12736770800256636 +6,381.0339464626488,0.0,0.0,80.80200502011628,0.12738158399588428 +7,373.8850362618945,0.0,0.0,79.28600812983309,0.12499166699853959 +8,375.0913924440434,0.0,0.0,79.54182785191026,0.12539495799865108 +9,379.9175739652012,0.0,0.0,80.5652672255431,0.12700837499869522 +10,380.5149594438619,0.0,0.0,80.6919487060091,0.12720808399899397 +11,383.2371466215314,0.0,0.0,81.26921533549904,0.12811812500149244 +12,380.5183216338946,0.0,0.0,80.69266169155388,0.12720920799620217 +13,380.66738608897157,0.0,0.0,80.72427227890252,0.12725904100079788 +14,361.8152226748145,0.0,0.0,76.72648516053064,0.12095666700042784 +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263 +17,380.81582834268636,0.0,0.0,80.7557509223179,0.12730866600031732 +18,365.9374543718208,0.0,0.0,77.6006450336018,0.12233474999811733 +19,378.25367465054006,0.0,0.0,80.21242097122808,0.12645212500501657 +20,356.6132616527771,0.0,0.0,75.62335803886796,0.11921762500423938 +21,384.7918642445624,0.0,0.0,81.59890853566469,0.12863787500100443 +22,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591007 +23,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283 +24,382.10669117039305,0.0,0.0,81.02949111174972,0.12774020800134167 +25,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +26,363.2618803228803,0.0,0.0,77.03326317762489,0.12144029200135265 +27,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759 +28,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602 +29,380.00843408150524,0.0,0.0,80.58453500900934,0.1270387499971548 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c07aa20a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..dd13b927b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4e31e66a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8edcb5046 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f8abfcce8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b2db5f3c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..17b3e0a16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d648d8c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..37393d1a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4d873a96b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f58448f99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..83ccaeb79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5d2feadf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..483abf902 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d6b667500 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c156523b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2d5c049d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..9f883fa3b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002 +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979 +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341 +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482 +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519 +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996 +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411 +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611 +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564 +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847 +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614 +11,4321.626234797135,1.6652510557252813,0.0,678.0902298913345,0.670513832999859 +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626 +13,4312.391545143513,1.6616926552853801,0.0,676.6412492322067,0.6690810420041089 +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434 +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791 +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744 +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336 +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872 +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327 +20,4303.975665866741,1.6584497668241667,0.0,675.3207450508007,0.6677752920004423 +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242 +22,4338.901909588244,1.6719078867701833,0.0,680.8008914928187,0.6731942080004956 +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412 +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607 +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747 +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422 +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349 +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419 +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..cc1d87375 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,391.0022498249037,0.0,0.0,82.00330714172952,0.12640929199551465 +1,388.85277091672145,0.0,0.0,81.5525056970287,0.12571437500446336 +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597 +3,392.66726186303595,0.0,0.0,82.35250332568698,0.12694758299767273 +4,399.7876812973492,0.0,0.0,83.84583985280774,0.12924958299845457 +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936 +6,394.38228386701905,0.0,0.0,82.71218789581523,0.12750204199983273 +7,392.0421898742136,0.0,0.0,82.22140952684555,0.12674549999792362 +8,396.18906710609906,0.0,0.0,83.09111717552949,0.12808616700203856 +9,394.03494844532105,0.0,0.0,82.63934265444013,0.12738974999956554 +10,392.73002797523685,0.0,0.0,82.36566700640546,0.1269678750031744 +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105 +12,394.3054687072889,0.0,0.0,82.6960777656579,0.12747720799961826 +13,373.9605683304472,0.0,0.0,78.42922478689076,0.12089979200391099 +14,394.4120553877859,0.0,0.0,82.71843175544166,0.12751166700036265 +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296 +16,390.35114282852976,0.0,0.0,81.86675312693883,0.12619879199337447 +17,396.33508828531563,0.0,0.0,83.12174160189497,0.12813337500119815 +18,343.90009686569954,0.0,0.0,72.12476470909637,0.11118137499579461 +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461 +20,395.20003402797175,0.0,0.0,82.88369130185403,0.12776641699747415 +21,392.31580638784453,0.0,0.0,82.27879400229646,0.12683395900239702 +22,345.98874293694035,0.0,0.0,72.56280793101395,0.11185662500065519 +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976 +24,392.7198453431928,0.0,0.0,82.36353144451702,0.12696458300342783 +25,410.93318535813285,0.0,0.0,86.18334096221345,0.132852874994569 +26,396.49541525584135,0.0,0.0,83.1553663235251,0.12818520799919497 +27,395.588223713584,0.0,0.0,82.96510474137456,0.12789191699994262 +28,392.22867867129474,0.0,0.0,82.2605210616574,0.12680579099833267 +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..603273dd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3f95fda88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ecd8dc4d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2abc8be10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ebf929204 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a0ab5e457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0d24f8087 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..206142b79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8d3faa608 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..56398d802 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9f1793111 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5f3813a7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9990a2e76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..df39e3bd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..284a1441f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..59e8b6091 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ebfb01773 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9f883fa3b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002 +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979 +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341 +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482 +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519 +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996 +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411 +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611 +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564 +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847 +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614 +11,4321.626234797135,1.6652510557252813,0.0,678.0902298913345,0.670513832999859 +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626 +13,4312.391545143513,1.6616926552853801,0.0,676.6412492322067,0.6690810420041089 +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434 +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791 +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744 +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336 +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872 +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327 +20,4303.975665866741,1.6584497668241667,0.0,675.3207450508007,0.6677752920004423 +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242 +22,4338.901909588244,1.6719078867701833,0.0,680.8008914928187,0.6731942080004956 +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412 +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607 +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747 +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422 +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349 +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419 +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..cc1d87375 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,391.0022498249037,0.0,0.0,82.00330714172952,0.12640929199551465 +1,388.85277091672145,0.0,0.0,81.5525056970287,0.12571437500446336 +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597 +3,392.66726186303595,0.0,0.0,82.35250332568698,0.12694758299767273 +4,399.7876812973492,0.0,0.0,83.84583985280774,0.12924958299845457 +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936 +6,394.38228386701905,0.0,0.0,82.71218789581523,0.12750204199983273 +7,392.0421898742136,0.0,0.0,82.22140952684555,0.12674549999792362 +8,396.18906710609906,0.0,0.0,83.09111717552949,0.12808616700203856 +9,394.03494844532105,0.0,0.0,82.63934265444013,0.12738974999956554 +10,392.73002797523685,0.0,0.0,82.36566700640546,0.1269678750031744 +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105 +12,394.3054687072889,0.0,0.0,82.6960777656579,0.12747720799961826 +13,373.9605683304472,0.0,0.0,78.42922478689076,0.12089979200391099 +14,394.4120553877859,0.0,0.0,82.71843175544166,0.12751166700036265 +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296 +16,390.35114282852976,0.0,0.0,81.86675312693883,0.12619879199337447 +17,396.33508828531563,0.0,0.0,83.12174160189497,0.12813337500119815 +18,343.90009686569954,0.0,0.0,72.12476470909637,0.11118137499579461 +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461 +20,395.20003402797175,0.0,0.0,82.88369130185403,0.12776641699747415 +21,392.31580638784453,0.0,0.0,82.27879400229646,0.12683395900239702 +22,345.98874293694035,0.0,0.0,72.56280793101395,0.11185662500065519 +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976 +24,392.7198453431928,0.0,0.0,82.36353144451702,0.12696458300342783 +25,410.93318535813285,0.0,0.0,86.18334096221345,0.132852874994569 +26,396.49541525584135,0.0,0.0,83.1553663235251,0.12818520799919497 +27,395.588223713584,0.0,0.0,82.96510474137456,0.12789191699994262 +28,392.22867867129474,0.0,0.0,82.2605210616574,0.12680579099833267 +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..603273dd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3f95fda88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ecd8dc4d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2abc8be10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ebf929204 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a0ab5e457 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0d24f8087 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..206142b79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8d3faa608 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..56398d802 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9f1793111 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5f3813a7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9990a2e76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..df39e3bd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..284a1441f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..59e8b6091 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ebfb01773 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a21505b43 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944 +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237 +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636 +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309 +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115 +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606 +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372 +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534 +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623 +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886 +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754 +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207 +12,4327.235400242506,2.3644639244656522,0.0,680.0997502174303,0.6709446249951725 +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574 +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149 +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999 +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457 +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501 +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202 +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666 +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456 +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212 +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304 +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887 +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787 +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945 +26,4338.812194020074,2.3707896517987446,0.0,681.9192432258304,0.6727396249989397 +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578 +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274 +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8b7c18155 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.8360981389177,0.0,0.0,79.91504063021144,0.12592729199968744 +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777 +2,378.69492235952407,0.0,0.0,81.38913961900961,0.12825012500252342 +3,377.10054298227516,0.0,0.0,81.04647548997387,0.1277101669984404 +4,376.1059449323693,0.0,0.0,80.83271640642396,0.12737333300174214 +5,377.0002693980719,0.0,0.0,81.02492468413269,0.12767620800150326 +6,376.09511706560784,0.0,0.0,80.83038928053028,0.12736966599914012 +7,373.9279005486811,0.0,0.0,80.36461095273609,0.12663570899894694 +8,375.2913456412782,0.0,0.0,80.65764266890704,0.12709745800384553 +9,375.9660567759833,0.0,0.0,80.8026516339147,0.12732595799752744 +10,380.76937419502184,0.0,0.0,81.83498095488036,0.12895266599662136 +11,374.66597254345515,0.0,0.0,80.52323743829143,0.12688566699944204 +12,367.4374331842578,0.0,0.0,78.96967924563978,0.12443762499606237 +13,367.6221062246298,0.0,0.0,79.00936918859718,0.12450016700313427 +14,373.8652749683743,0.0,0.0,80.35115145856713,0.12661450000450714 +15,374.382871422958,0.0,0.0,80.46239332536042,0.12678979100019205 +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078 +17,373.0515349216383,0.0,0.0,80.17626238990805,0.12633891600125935 +18,373.3190099077397,0.0,0.0,80.23374813292452,0.12642950000008568 +19,372.9278900370712,0.0,0.0,80.14968862253218,0.12629704199935077 +20,374.2486437648836,0.0,0.0,80.43354510755047,0.12674433299980592 +21,375.00677106087204,0.0,0.0,80.59648187986771,0.1270010829975945 +22,375.173975427608,0.0,0.0,80.63241745424612,0.12705770900356583 +23,379.6903796752694,0.0,0.0,81.6030833760348,0.12858725000114646 +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745 +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546 +26,377.5824609660864,0.0,0.0,81.15004933729386,0.12787337500049034 +27,377.7160744515755,0.0,0.0,81.17876555708816,0.12791862500307616 +28,375.568662234418,0.0,0.0,80.71724357080743,0.12719137499516364 +29,375.75431854819095,0.0,0.0,80.757144838954,0.12725425000098767 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0d5851ca9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..89924edf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bbae17a0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ab95cbd9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6f6d22ebc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5d1851e34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..918fdd2cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e42d0b36a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f15a33116 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a6ff4be70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..45d663a9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4d65a90a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..626099a56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..72b48ab77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..aed40ce0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..27c6432e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..4bb1da5a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a21505b43 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944 +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237 +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636 +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309 +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115 +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606 +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372 +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534 +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623 +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886 +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754 +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207 +12,4327.235400242506,2.3644639244656522,0.0,680.0997502174303,0.6709446249951725 +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574 +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149 +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999 +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457 +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501 +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202 +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666 +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456 +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212 +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304 +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887 +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787 +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945 +26,4338.812194020074,2.3707896517987446,0.0,681.9192432258304,0.6727396249989397 +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578 +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274 +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8b7c18155 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.8360981389177,0.0,0.0,79.91504063021144,0.12592729199968744 +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777 +2,378.69492235952407,0.0,0.0,81.38913961900961,0.12825012500252342 +3,377.10054298227516,0.0,0.0,81.04647548997387,0.1277101669984404 +4,376.1059449323693,0.0,0.0,80.83271640642396,0.12737333300174214 +5,377.0002693980719,0.0,0.0,81.02492468413269,0.12767620800150326 +6,376.09511706560784,0.0,0.0,80.83038928053028,0.12736966599914012 +7,373.9279005486811,0.0,0.0,80.36461095273609,0.12663570899894694 +8,375.2913456412782,0.0,0.0,80.65764266890704,0.12709745800384553 +9,375.9660567759833,0.0,0.0,80.8026516339147,0.12732595799752744 +10,380.76937419502184,0.0,0.0,81.83498095488036,0.12895266599662136 +11,374.66597254345515,0.0,0.0,80.52323743829143,0.12688566699944204 +12,367.4374331842578,0.0,0.0,78.96967924563978,0.12443762499606237 +13,367.6221062246298,0.0,0.0,79.00936918859718,0.12450016700313427 +14,373.8652749683743,0.0,0.0,80.35115145856713,0.12661450000450714 +15,374.382871422958,0.0,0.0,80.46239332536042,0.12678979100019205 +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078 +17,373.0515349216383,0.0,0.0,80.17626238990805,0.12633891600125935 +18,373.3190099077397,0.0,0.0,80.23374813292452,0.12642950000008568 +19,372.9278900370712,0.0,0.0,80.14968862253218,0.12629704199935077 +20,374.2486437648836,0.0,0.0,80.43354510755047,0.12674433299980592 +21,375.00677106087204,0.0,0.0,80.59648187986771,0.1270010829975945 +22,375.173975427608,0.0,0.0,80.63241745424612,0.12705770900356583 +23,379.6903796752694,0.0,0.0,81.6030833760348,0.12858725000114646 +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745 +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546 +26,377.5824609660864,0.0,0.0,81.15004933729386,0.12787337500049034 +27,377.7160744515755,0.0,0.0,81.17876555708816,0.12791862500307616 +28,375.568662234418,0.0,0.0,80.71724357080743,0.12719137499516364 +29,375.75431854819095,0.0,0.0,80.757144838954,0.12725425000098767 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0d5851ca9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..89924edf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bbae17a0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ab95cbd9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6f6d22ebc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5d1851e34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..918fdd2cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e42d0b36a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f15a33116 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a6ff4be70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..45d663a9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4d65a90a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..626099a56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..72b48ab77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..aed40ce0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..27c6432e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4bb1da5a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..0ec7f1294 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 892 samples (with smell) vs 874 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 650.62 ms | 125.11 ms | +| **Average Power** | 7.226 W | 3.505 W | +| **Total Energy** | 4193.45 J | 383.30 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.15% | 0.00e+00 | +95.218 | large | βœ… | +| `gpu_mj` | +83.82% | 0.00e+00 | +3.677 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.273 | small | βœ… | +| `dram_mj` | +87.81% | 0.00e+00 | +129.181 | large | βœ… | +| `time_s` | +81.05% | 0.00e+00 | +145.073 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.1% lower energy (Cohen’s d = +95.218, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.677, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.273, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +129.181, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +145.073, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..47d4d1d1a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/with_smell.csv @@ -0,0 +1,893 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944 +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237 +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636 +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309 +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115 +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606 +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372 +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534 +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623 +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886 +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754 +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207 +12,4327.235400242506,2.364463924465652,0.0,680.0997502174303,0.6709446249951725 +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574 +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149 +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999 +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457 +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501 +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202 +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666 +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456 +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212 +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304 +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887 +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787 +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945 +26,4338.812194020074,2.370789651798745,0.0,681.9192432258304,0.6727396249989397 +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578 +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274 +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904 +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145 +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862 +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175 +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131 +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066 +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478 +6,4417.676650902167,2.49145203457279,0.0,684.2191674146103,0.67062487500516 +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159 +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944 +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487 +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336 +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097 +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006 +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183 +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441 +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204 +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235 +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284 +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211 +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926 +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846 +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933 +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663 +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835 +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885 +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396 +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204 +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728 +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545 +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802 +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535 +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561 +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272 +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199 +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286 +5,4391.016889062863,1.7124603228688555,0.0,684.5811973068672,0.6757975419968716 +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228 +7,4344.730354172825,1.6944089565259697,0.0,677.3648981500287,0.6686738330026856 +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567 +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164 +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068 +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551 +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753 +13,4363.309510738167,1.7016546741477263,0.0,680.261480323997,0.6715332500025397 +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706 +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957 +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198 +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859 +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221 +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357 +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156 +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466 +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512 +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975 +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294 +25,4368.247362930842,1.703580395722884,0.0,681.0313158431011,0.6722932079937891 +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028 +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131 +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972 +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512 +0,5519.84217345951,4.72710642584526,111.62724174174592,771.4300036520476,0.698210457994719 +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258 +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211 +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729 +4,5448.99591016236,4.666434795034992,110.1945245170406,761.5288268726033,0.6892490419995738 +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845 +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203 +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498 +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937 +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837 +10,5462.674746967845,4.6781491367370425,110.4711503289476,763.4405237645086,0.6909792919977917 +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947 +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783 +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562 +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421 +15,5535.119945995178,4.74019007107577,111.93620267840356,773.5651610990581,0.7001429590018233 +16,5419.449013845381,4.641131295577101,109.59700045127067,757.3994765003574,0.6855116249935236 +17,5435.615181475974,4.654975748459343,109.92392731718992,759.6587923217901,0.6875565000009374 +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156 +19,5449.549965300805,4.6669092791819855,110.2057291212546,761.6062592962202,0.689319124998292 +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152 +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409 +22,5449.408975070284,4.666788537355728,110.20287788927168,761.5865550926165,0.6893012910004472 +23,5401.537331059038,4.6257920108410016,109.23477419885964,754.8962147977454,0.6832459579964052 +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586 +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554 +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894 +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058 +28,5425.496549978012,4.646310310848687,109.71929919761256,758.244654799714,0.6862765839978238 +29,5472.8253332894155,4.686841939958393,110.67642466787464,764.8591271587816,0.6922632499990868 +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348 +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363 +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453 +3,4330.179511549561,1.8300141626022992,0.0,677.2383321019491,0.6701198750015465 +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198 +5,4325.011416888251,1.8278300299586896,0.0,676.430044177803,0.6693200829977286 +6,4325.735138314875,1.828135888054634,0.0,676.5432339175277,0.6694320829992648 +7,4347.06876561683,1.8371518745739288,0.0,679.8798046377772,0.6727335830000811 +8,4327.957460643241,1.8290750826824616,0.0,676.8908042348878,0.6697760000024573 +9,4348.485786304246,1.8377507337943737,0.0,680.1014261027397,0.6729528750001919 +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608 +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531 +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221 +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238 +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096 +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013 +16,4330.573681242119,1.8301807460240551,0.0,677.2999800831567,0.6701808750003693 +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381 +18,4327.686065067118,1.8289603858790968,0.0,676.8483580760569,0.6697339999955148 +19,4330.916964261218,1.8303258237939384,0.0,677.3536694091241,0.6702339999974356 +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324 +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929 +22,4315.7473562602345,1.8239148661399016,0.0,674.9811488256646,0.6678864169953158 +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024 +24,4344.278884181038,1.8359728189422015,0.0,679.4434683045378,0.6723018330012565 +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992 +26,4314.834620808611,1.8235291272118217,0.0,674.8383973685347,0.6677451659998042 +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372 +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875 +29,4332.038357679215,1.8307997454480665,0.0,677.5290548881808,0.6704075419984292 +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002 +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979 +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341 +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482 +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519 +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996 +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411 +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611 +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564 +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847 +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614 +11,4321.626234797135,1.665251055725281,0.0,678.0902298913345,0.670513832999859 +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626 +13,4312.391545143513,1.66169265528538,0.0,676.6412492322067,0.6690810420041089 +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434 +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791 +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744 +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336 +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872 +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327 +20,4303.975665866741,1.658449766824167,0.0,675.3207450508007,0.6677752920004423 +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242 +22,4338.901909588244,1.671907886770183,0.0,680.8008914928187,0.6731942080004956 +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412 +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607 +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747 +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422 +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349 +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419 +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734 +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915 +1,4331.503324019295,2.405462702116385,0.0,676.3359297450568,0.6692004170035943 +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156 +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433 +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722 +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264 +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261 +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994 +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461 +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413 +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163 +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986 +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575 +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499 +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617 +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059 +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107 +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997 +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968 +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292 +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103 +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821 +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829 +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914 +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086 +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554 +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729 +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415 +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671 +29,4302.407659547652,2.389304677882228,0.0,671.7928319312199,0.6647052500047721 +0,4335.519852132827,1.998426580480376,0.0,678.132752976341,0.6699371249997057 +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514 +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133 +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932 +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202 +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873 +6,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265 +7,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114 +8,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809 +9,4319.72068635306,1.9911440690583215,0.0,675.6615541004571,0.667495791996771 +10,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105 +11,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653 +12,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835 +13,4331.440896987593,1.9965464155495631,0.0,677.4947503431518,0.6693068329987 +14,4331.623180642343,1.9966304378844304,0.0,677.5232619221168,0.6693349999986822 +15,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171 +16,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132 +17,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548 +18,4331.732931351392,1.9966810266815465,0.0,677.5404283872713,0.6693519589971402 +19,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524 +20,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489 +21,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182 +22,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922 +23,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994 +24,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739 +25,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682 +26,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981 +27,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206 +28,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657 +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207 +1,4376.520182243895,1.7528193218882475,0.0,681.9815484700583,0.6767852090051747 +2,4337.145668188113,1.73704962218323,0.0,675.845922230983,0.6706963329997961 +3,4341.215338897163,1.7386795466792917,0.0,676.4800882387582,0.6713256669972907 +4,4308.598732289321,1.725616424404978,0.0,671.3975288184906,0.6662818339973455 +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304 +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381 +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761 +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709 +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578 +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612 +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773 +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248 +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235 +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453 +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269 +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693 +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906 +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411 +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086 +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324 +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115 +22,4321.644617054854,1.730841369780742,0.0,673.4304344885379,0.6682992499991087 +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593 +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319 +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376 +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013 +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729 +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226 +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141 +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367 +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543 +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124 +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614 +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087 +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917 +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481 +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222 +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404 +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312 +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824 +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533 +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766 +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874 +14,4319.8312777558685,3.283845150135942,0.0,677.979989007148,0.6700942090028548 +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462 +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344 +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974 +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448 +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309 +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348 +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761 +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644 +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413 +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967 +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905 +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321 +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346 +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033 +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482 +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178 +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928 +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591 +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788 +4,4332.3764799353785,2.127886286805196,0.0,674.240718908165,0.6668309590022545 +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093 +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905 +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291 +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341 +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862 +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245 +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937 +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288 +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575 +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733 +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325 +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989 +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246 +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973 +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821 +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617 +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726 +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684 +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297 +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134 +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271 +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358 +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624 +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369 +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649 +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252 +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143 +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413 +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653 +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525 +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557 +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427 +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632 +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706 +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636 +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242 +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164 +12,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739 +13,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554 +14,4337.461148529906,2.628159462600572,0.0,676.6346241751016,0.6680622499989113 +15,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586 +16,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295 +17,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005 +18,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879 +19,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957 +20,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418 +21,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706 +22,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824 +23,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733 +24,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746 +25,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593 +26,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348 +27,4358.332696369016,2.640805974943643,0.0,679.8905408149211,0.671276916997158 +28,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551 +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242 +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093 +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832 +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005 +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286 +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888 +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056 +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718 +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019 +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522 +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947 +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863 +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808 +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149 +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736 +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961 +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928 +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731 +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366 +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125 +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944 +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427 +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008 +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724 +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941 +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141 +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581 +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955 +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355 +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641 +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826 +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989 +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705 +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731 +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786 +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694 +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159 +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917 +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899 +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922 +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615 +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488 +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839 +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955 +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446 +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393 +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975 +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217 +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491 +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536 +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475 +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606 +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018 +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269 +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302 +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841 +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071 +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335 +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998 +29,4298.143686713266,2.320919342687324,0.0,669.4526064028538,0.6634929580031894 +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043 +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336 +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125 +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834 +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116 +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327 +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987 +7,4337.0403644270955,2.031509830681979,0.0,678.790710966559,0.6709766249987297 +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983 +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326 +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708 +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113 +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485 +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637 +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956 +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545 +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394 +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118 +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574 +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509 +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263 +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787 +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361 +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064 +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606 +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084 +26,4347.693469734016,2.03649984376459,0.0,680.4580297640961,0.6726247499973397 +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489 +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278 +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626 +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824 +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309 +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063 +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915 +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849 +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294 +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797 +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292 +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422 +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556 +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638 +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283 +12,4356.767493437678,2.397615735537004,0.0,680.5232662699196,0.6708844999957364 +13,4341.809499462903,2.389384054186092,0.0,678.1868407131525,0.6685811670031399 +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968 +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453 +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709 +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409 +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754 +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893 +20,4375.239322141577,2.407781149971288,0.0,683.4085497335172,0.6737289170050644 +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018 +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538 +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116 +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911 +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852 +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635 +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468 +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446 +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469 +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449 +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021 +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229 +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491 +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962 +5,4345.360137259517,1.6675467938398043,0.0,679.7254241049811,0.6724117499979911 +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415 +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838 +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865 +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737 +10,4329.558075685815,1.6614826987404503,0.0,677.2535776605824,0.6699664999978268 +11,4307.3984058292945,1.6529788497487543,0.0,673.7872387345873,0.6665374580043135 +12,4349.584627244564,1.6691679562999129,0.0,680.3862423469704,0.6730654580023838 +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554 +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981 +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243 +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875 +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369 +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125 +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987 +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684 +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822 +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829 +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659 +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864 +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879 +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664 +27,4334.978371818408,1.6635627558938415,0.0,678.1014505574477,0.6708052499961923 +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682 +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487 +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649 +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086 +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261 +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379 +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596 +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012 +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358 +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984 +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149 +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144 +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066 +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439 +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846 +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843 +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685 +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386 +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428 +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229 +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533 +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505 +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795 +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432 +22,4392.603872271309,2.607442063569521,0.0,685.7572627187839,0.6731581249987357 +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675 +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446 +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581 +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689 +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216 +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154 +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794 +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029 +1,4354.354070461016,2.273796674817034,0.0,681.0021041077019,0.6721263750005164 +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739 +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867 +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185 +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036 +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834 +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246 +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938 +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276 +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405 +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806 +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341 +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212 +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047 +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004 +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738 +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917 +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045 +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948 +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894 +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339 +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831 +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966 +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685 +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241 +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349 +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466 +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023 +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449 +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299 +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385 +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045 +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057 +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268 +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344 +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375 +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743 +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125 +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514 +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048 +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856 +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496 +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685 +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462 +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559 +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298 +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533 +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415 +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282 +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979 +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028 +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217 +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957 +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171 +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815 +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784 +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544 +28,4332.967360737383,2.240071707660648,0.0,676.2341844648398,0.6700551249959972 +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539 +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088 +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537 +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334 +3,4348.094503970354,1.7675587619781763,0.0,678.475763277057,0.6687571250004112 +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395 +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458 +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595 +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057 +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031 +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331 +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702 +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254 +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906 +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986 +14,4346.65978133577,1.766975527974994,0.0,678.2518894551563,0.6685364579971065 +15,4367.501700837171,1.7754480479254011,0.0,681.5040582451767,0.6717420419954578 +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579 +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937 +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709 +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252 +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354 +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782 +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695 +23,4317.882204189577,1.755277056705152,0.0,673.7614422945209,0.6641103330039186 +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662 +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897 +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202 +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887 +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396 +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463 +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947 +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871 +3,4335.694701631531,2.062035021448992,0.0,673.6867966850125,0.6660807919979561 +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711 +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248 +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867 +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616 +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431 +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603 +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623 +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934 +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854 +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233 +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968 +15,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684 +16,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233 +17,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367 +18,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686 +19,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466 +20,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982 +21,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603 +22,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318 +23,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496 +24,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769 +25,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032 +26,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459 +27,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574 +28,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194 +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536 +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493 +2,5399.907734117013,5.218201322461614,113.57066190351168,759.8964129645852,0.6863256669967086 +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003 +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715 +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272 +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599 +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276 +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962 +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584 +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608 +11,5399.536300795058,5.2178423878376785,113.56284993147356,759.8441433957505,0.6862784580007428 +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153 +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151 +14,5409.343253817727,5.227319337769412,113.7691094086502,761.224216684217,0.687524916997063 +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099 +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416 +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084 +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481 +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695 +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285 +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882 +22,5438.732295420172,5.25571944075392,114.38721865640856,765.3599590697888,0.6912602500015055 +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235 +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406 +25,5438.364150832097,5.255363684198263,114.37947585290104,765.3081523046171,0.6912134590020287 +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145 +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306 +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348 +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703 +0,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479 +1,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886 +2,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246 +3,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568 +4,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654 +5,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804 +6,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281 +7,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404 +8,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845 +9,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495 +10,4503.148936965444,2.645955864784455,0.0,695.5179682039748,0.6692589580052299 +11,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871 +12,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482 +13,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759 +14,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602 +15,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186 +16,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621 +17,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419 +18,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636 +19,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363 +20,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023 +21,4462.746741007515,2.622216381848967,0.0,689.2777896895653,0.6632543750019977 +22,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533 +23,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954 +24,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133 +25,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709 +26,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768 +27,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695 +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011 +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471 +2,4382.027550348223,1.966185465922483,0.0,684.3325176731897,0.6720537090004655 +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344 +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364 +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557 +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387 +7,4368.331000730204,1.9600399188023856,0.0,682.1935547899488,0.6699531249978463 +8,4367.809372487584,1.9598058678162904,0.0,682.1120931458903,0.6698731249998673 +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433 +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591 +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015 +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553 +13,4356.402555742098,1.9546877080056264,0.0,680.330713286365,0.668123707997438 +14,4365.2036763306705,1.958636709965622,0.0,681.7051667651533,0.6694734999982757 +15,4360.810862240808,1.9566656846539945,0.0,681.0191497350809,0.6687997920016642 +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262 +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621 +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128 +19,4438.056671531104,1.9913253452300512,0.0,693.0824739711713,0.6806466670022928 +20,4374.899715425766,1.962987255672319,0.0,683.2193778852723,0.6709605420037406 +21,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819 +22,4370.521024384246,1.96102256727484,0.0,682.5355664235396,0.6702890000015032 +23,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454 +24,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797 +25,4382.123445150023,1.9662284932570664,0.0,684.3474933734551,0.6720684159954544 +26,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432 +27,4361.726697985227,1.9570766138207232,0.0,681.162173979806,0.6689402499978314 +28,4360.017283100929,1.9563096111804792,0.0,680.8952180608669,0.6686780840027495 +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424 +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305 +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748 +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677 +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616 +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506 +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521 +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271 +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755 +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792 +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214 +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096 +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535 +13,4363.96912667838,2.588947138539631,0.0,676.9432934681511,0.6655433749983786 +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162 +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428 +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266 +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628 +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434 +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379 +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164 +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172 +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261 +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249 +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646 +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692 +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895 +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225 +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484 +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813 +0,4389.025421830659,1.6062307124723365,0.0334631398431736,684.0535046741562,0.6730389170043054 +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023 +2,4354.233157511607,1.5934979533436806,0.0331978740279933,678.63094088024,0.667703667000751 +3,4357.945080142954,1.5948563879754634,0.0332261747494888,679.2094642290505,0.6682728750020033 +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661 +5,4408.816460337069,1.6134735444966395,0.0336140321770133,687.1380457625065,0.6760737910008174 +6,4345.096674030936,1.5901543180351092,0.0331282149590647,677.2069701932021,0.6663026250025723 +7,4424.448338877007,1.6191942685734702,0.0337332139286139,689.5743591287267,0.678470874998311 +8,4389.556078381045,1.6064249143206022,0.0334671857150125,684.1362103862865,0.6731202909941203 +9,4359.39441815639,1.5953867952996852,0.0332372249020767,679.4353514482535,0.6684951249990263 +10,4364.926572416989,1.5974113714243328,0.0332794035713402,680.2975678053377,0.6693434580010944 +11,4336.208818024484,1.586901671738146,0.0330604514945447,675.8217494514829,0.6649397090004641 +12,4360.874458026974,1.595928438436221,0.0332485091340879,679.6660237190256,0.668722082999011 +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759 +14,4406.642727210601,1.6126780337458744,0.0335974590363723,686.7992576215242,0.6757404580057482 +15,4401.9515346063135,1.6109612203499777,0.0335616920906245,686.0681097165467,0.6750210829995922 +16,4349.9085088683905,1.5919152822940132,0.0331649017144586,677.9569208469628,0.6670404999968014 +17,4371.0961810783265,1.5996692336974665,0.0333264423686972,681.2591349009085,0.6702895420021378 +18,4354.880661070511,1.5937349171346793,0.0332028107736391,678.7318578347315,0.6678029589966172 +19,4358.4390615102575,1.5950371679817958,0.0332299409996207,679.2864539142473,0.6683486250040005 +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141 +21,4353.926660820881,1.5933857862107526,0.033195537212724,678.5831717025042,0.6676566669993917 +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694 +23,4390.797833401572,1.606879353486394,0.0334766531976332,684.3297446660181,0.6733107089967234 +24,4370.716046913472,1.599530117809139,0.0333235441210237,681.199888921967,0.6702312499983236 +25,4326.591936832465,1.5833822275690632,0.0329871297410221,674.3229061659748,0.6634649999978137 +26,4357.462510925597,1.5946797844192484,0.0332224955087343,679.1342531895475,0.6681988750060555 +27,4363.351975051161,1.5968351235319895,0.0332673984069164,680.0521582341861,0.6691019999998389 +28,4369.617223686835,1.599127986710644,0.033315166389805,681.0286313403956,0.67006274999585 +29,4413.620958856811,1.6152318239183203,0.0336506629982983,687.8868530112147,0.6768105410010321 +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707 +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797 +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437 +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597 +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613 +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439 +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201 +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153 +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435 +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157 +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486 +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289 +12,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356 +13,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292 +14,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317 +15,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879 +16,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976 +17,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954 +18,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227 +19,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144 +20,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737 +21,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129 +22,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405 +23,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877 +24,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048 +25,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602 +26,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938 +27,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162 +28,4545.066951538386,2.715014642652162,0.0,682.9586223656848,0.6658834579939139 +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854 +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071 +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433 +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542 +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617 +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172 +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277 +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914 +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907 +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628 +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385 +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806 +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976 +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619 +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589 +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459 +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566 +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083 +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654 +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998 +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395 +21,4364.406018298075,2.093846030238117,0.0,678.904648566254,0.6681513339935918 +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177 +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178 +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715 +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321 +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689 +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114 +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263 +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523 +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006 +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721 +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177 +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329 +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873 +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295 +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759 +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249 +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635 +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924 +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713 +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727 +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946 +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714 +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466 +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588 +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919 +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543 +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764 +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398 +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131 +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727 +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806 +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098 +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595 +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957 +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162 +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392 +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415 +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..b0ed47c3e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/cleaned/mac/without_smell.csv @@ -0,0 +1,875 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.8360981389177,0.0,0.0,79.91504063021144,0.1259272919996874 +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777 +2,378.69492235952407,0.0,0.0,81.38913961900961,0.1282501250025234 +3,377.1005429822752,0.0,0.0,81.04647548997387,0.1277101669984404 +4,376.1059449323693,0.0,0.0,80.83271640642396,0.1273733330017421 +5,377.0002693980719,0.0,0.0,81.02492468413269,0.1276762080015032 +6,376.09511706560784,0.0,0.0,80.83038928053028,0.1273696659991401 +7,373.9279005486811,0.0,0.0,80.36461095273609,0.1266357089989469 +8,375.2913456412782,0.0,0.0,80.65764266890704,0.1270974580038455 +9,375.9660567759833,0.0,0.0,80.8026516339147,0.1273259579975274 +10,380.76937419502184,0.0,0.0,81.83498095488036,0.1289526659966213 +11,374.6659725434551,0.0,0.0,80.52323743829143,0.126885666999442 +12,367.4374331842578,0.0,0.0,78.96967924563978,0.1244376249960623 +13,367.6221062246298,0.0,0.0,79.00936918859718,0.1245001670031342 +14,373.8652749683743,0.0,0.0,80.35115145856713,0.1266145000045071 +15,374.382871422958,0.0,0.0,80.46239332536042,0.126789791000192 +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078 +17,373.0515349216383,0.0,0.0,80.17626238990805,0.1263389160012593 +18,373.3190099077397,0.0,0.0,80.23374813292452,0.1264295000000856 +19,372.9278900370712,0.0,0.0,80.14968862253218,0.1262970419993507 +20,374.2486437648836,0.0,0.0,80.43354510755047,0.1267443329998059 +21,375.006771060872,0.0,0.0,80.59648187986771,0.1270010829975945 +22,375.173975427608,0.0,0.0,80.63241745424612,0.1270577090035658 +23,379.6903796752694,0.0,0.0,81.6030833760348,0.1285872500011464 +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745 +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546 +26,377.5824609660864,0.0,0.0,81.15004933729386,0.1278733750004903 +27,377.7160744515755,0.0,0.0,81.17876555708816,0.1279186250030761 +28,375.568662234418,0.0,0.0,80.71724357080743,0.1271913749951636 +29,375.75431854819095,0.0,0.0,80.757144838954,0.1272542500009876 +0,384.9922799870706,0.0,0.0,81.6414086697934,0.1287048750018584 +1,382.1713775858955,0.0,0.0,81.0432085039104,0.127761832998658 +2,387.3060348462912,0.0,0.0,82.13206319935875,0.1294783750054193 +3,382.6248077427939,0.0,0.0,81.13936283911889,0.1279134170035831 +4,382.57595115897095,0.0,0.0,81.1290023188346,0.1278970839994144 +5,380.9924394855085,0.0,0.0,80.79320305638996,0.1273677080025663 +6,381.0339464626488,0.0,0.0,80.80200502011628,0.1273815839958842 +7,373.8850362618945,0.0,0.0,79.28600812983309,0.1249916669985395 +8,375.0913924440434,0.0,0.0,79.54182785191026,0.125394957998651 +9,379.9175739652012,0.0,0.0,80.5652672255431,0.1270083749986952 +10,380.5149594438619,0.0,0.0,80.6919487060091,0.1272080839989939 +11,383.2371466215314,0.0,0.0,81.26921533549904,0.1281181250014924 +12,380.5183216338946,0.0,0.0,80.69266169155388,0.1272092079962021 +13,380.6673860889716,0.0,0.0,80.72427227890252,0.1272590410007978 +14,361.8152226748145,0.0,0.0,76.72648516053064,0.1209566670004278 +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263 +17,380.8158283426864,0.0,0.0,80.7557509223179,0.1273086660003173 +18,365.9374543718208,0.0,0.0,77.6006450336018,0.1223347499981173 +19,378.25367465054006,0.0,0.0,80.21242097122808,0.1264521250050165 +20,384.7918642445624,0.0,0.0,81.59890853566469,0.1286378750010044 +21,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591 +22,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283 +23,382.10669117039305,0.0,0.0,81.02949111174972,0.1277402080013416 +24,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +25,363.2618803228803,0.0,0.0,77.03326317762489,0.1214402920013526 +26,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759 +27,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602 +28,380.0084340815053,0.0,0.0,80.58453500900934,0.1270387499971548 +0,390.2923708501913,0.4469127826171484,0.0,83.81333569389291,0.1297804999994696 +1,365.9657287665602,0.4190570310900451,0.0,78.58931090750231,0.121691375003138 +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035 +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715 +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.1247413749952102 +5,383.3887996646965,0.4390076980217611,0.0,82.33082829054258,0.1274849160035955 +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.1267657089993008 +7,372.53711365314894,0.4265817385264631,0.0,80.00048296365516,0.1238765000016428 +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.1270593330045812 +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.1271557080035563 +10,381.75469649055145,0.4371365325796854,0.0,81.97991280225177,0.1269415420028963 +11,381.439053481218,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572 +12,381.4226364679471,0.4367563000161465,0.0,81.90860457225888,0.1268311249950784 +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.1209846669953549 +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.1269026670051971 +15,384.03863484277593,0.4397518059505053,0.0,82.47037714671785,0.1277009999976144 +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.1271295830010785 +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.1265630839989171 +18,383.1444573623307,0.4387279085449043,0.0,82.27835700249821,0.1274036670001805 +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.1213963339978363 +20,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588 +21,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.1273649170034332 +22,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.1270068339945282 +23,381.2948250919911,0.436609946815457,0.0,81.88115771816032,0.1267886249988805 +24,375.600202278002,0.4300891948924535,0.0,80.65826593444629,0.1248950420049368 +25,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.1272384590047295 +26,380.0551779472132,0.4351904618438977,0.0,81.61494969041713,0.1263764160030405 +27,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.1245102920001954 +28,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.1261221669992664 +0,596.4459331278491,0.4886326329094673,23.45436637965443,115.49181302124482,0.1359050419996492 +1,554.2467896523963,0.454061387742615,21.79494661164552,107.3206522885938,0.1262896249972982 +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.128024291996553 +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.1317127079964848 +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885487,0.1296312500053318 +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371764,0.1249224590064841 +6,574.285027647265,0.4704775227960507,22.58292109421043,111.20072306658084,0.1308554999995976 +7,568.8810812926358,0.4660503913685354,22.3704187856897,110.15433893132028,0.1296241670061135 +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196 +9,573.1562154950751,0.4695527542238312,22.538532202743895,110.98214740904696,0.130598290998023 +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.1330455419956706 +11,542.9270608157159,0.444787808029728,21.349814785426947,105.12877548359786,0.1237103329985984 +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095 +13,560.8248965977349,0.4594504390173964,22.053621072835032,108.5943930506118,0.1277885000017704 +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.135394859954,0.130778625003586 +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902384,0.1249148339993553 +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.1294760829987353 +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373 +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913752,0.1291372500054421 +19,582.8598113728299,0.4775023324489214,22.92011195754823,112.86108700524863,0.1328093339980114 +20,575.8457576853292,0.4717561359701918,22.644294526569208,111.50293242324037,0.1312111249935696 +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062836,0.1310481670006993 +22,561.1286338518851,0.4596992728612786,22.065565097341377,108.65320670699792,0.127857708997908 +23,581.2049042884294,0.4761465656292358,22.85503515020332,112.54064183336725,0.13243225000042 +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.1302706669957842 +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.1308044999968842 +26,558.5815399432987,0.457612590508876,21.965404344426048,108.16000442813365,0.1272773329983465 +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.1308387090030009 +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.1301158330024918 +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332224,0.131808792000811 +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.1269404159975238 +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.1279510000022128 +2,415.0127574793532,1.4175777337453508,0.0,92.1425526934478,0.127556833998824 +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.1269669169996632 +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.1270766669986187 +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.1233426670005428 +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818 +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338908,0.1287382910013548 +8,416.11991185189385,1.421359490710763,0.0,92.3883668961996,0.1278971249994356 +9,411.9964417244347,1.4072747684146274,0.0,91.4728599469508,0.1266297499969368 +10,413.4103800010833,1.412104420953603,0.0,91.78678736198415,0.127064332998998 +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.1217907500031287 +12,368.7876480349551,1.259684549241063,0.0,81.87949570066912,0.1133492500011925 +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.126919041002111 +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.1270633339954656 +15,415.7098276987633,1.419958747832471,0.0,92.2973186091106,0.1277710830036085 +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.1279709580048802 +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.1204881249941536 +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976 +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.1281227910003508 +20,411.35644206336633,1.405088692799397,0.0,91.3307650319608,0.1264330419944599 +21,434.2858446220848,1.4834096839726385,0.0,96.42162945822147,0.1334805410006083 +22,425.7506982570446,1.454255800812937,0.0,94.52662705284092,0.1308572089983499 +23,425.9506550579292,1.4549388022473182,0.0,94.57102214607568,0.1309186670041526 +24,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.1300685829992289 +25,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162 +26,414.45965044482983,1.4156884611811038,0.0,92.01974997677176,0.1273868330026744 +27,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.1280377500006579 +28,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.1202185420042951 +0,391.0022498249037,0.0,0.0,82.00330714172952,0.1264092919955146 +1,388.85277091672145,0.0,0.0,81.5525056970287,0.1257143750044633 +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597 +3,392.66726186303595,0.0,0.0,82.35250332568698,0.1269475829976727 +4,399.7876812973492,0.0,0.0,83.84583985280774,0.1292495829984545 +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936 +6,394.38228386701905,0.0,0.0,82.71218789581523,0.1275020419998327 +7,392.0421898742136,0.0,0.0,82.22140952684555,0.1267454999979236 +8,396.18906710609906,0.0,0.0,83.09111717552949,0.1280861670020385 +9,394.03494844532105,0.0,0.0,82.63934265444013,0.1273897499995655 +10,392.7300279752369,0.0,0.0,82.36566700640546,0.1269678750031744 +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105 +12,394.3054687072889,0.0,0.0,82.6960777656579,0.1274772079996182 +13,373.9605683304472,0.0,0.0,78.42922478689076,0.1208997920039109 +14,394.4120553877859,0.0,0.0,82.71843175544166,0.1275116670003626 +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296 +16,390.35114282852976,0.0,0.0,81.86675312693883,0.1261987919933744 +17,396.3350882853156,0.0,0.0,83.12174160189497,0.1281333750011981 +18,343.90009686569954,0.0,0.0,72.12476470909637,0.1111813749957946 +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461 +20,395.20003402797175,0.0,0.0,82.88369130185403,0.1277664169974741 +21,392.31580638784453,0.0,0.0,82.27879400229646,0.126833959002397 +22,345.98874293694035,0.0,0.0,72.56280793101395,0.1118566250006551 +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976 +24,392.7198453431928,0.0,0.0,82.36353144451702,0.1269645830034278 +25,410.9331853581329,0.0,0.0,86.18334096221345,0.132852874994569 +26,396.49541525584135,0.0,0.0,83.1553663235251,0.1281852079991949 +27,395.588223713584,0.0,0.0,82.96510474137456,0.1278919169999426 +28,392.22867867129474,0.0,0.0,82.2605210616574,0.1268057909983326 +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405 +0,375.7903775249154,0.0,0.0,80.41439874522317,0.1264599169953726 +1,383.4508304762699,0.0,0.0,82.0536390106512,0.1290377909972448 +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519 +3,378.9841223881726,0.0,0.0,81.09781984454986,0.127534667000873 +4,377.41585176705246,0.0,0.0,80.76222972141316,0.1270069169986527 +5,378.5934796234818,0.0,0.0,81.01422722237132,0.1274032090004766 +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686 +7,381.4723549525934,0.0,0.0,81.63027021468451,0.1283719999992172 +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033 +9,376.8108781888688,0.0,0.0,80.63277300975706,0.1268033329979516 +10,377.2519165934144,0.0,0.0,80.72714966292916,0.126951749996806 +11,367.1828436771961,0.0,0.0,78.57249511905164,0.1235633340038475 +12,377.61655773184407,0.0,0.0,80.80517826519866,0.1270744580033351 +13,377.07560168009087,0.0,0.0,80.68942049637064,0.1268924169999081 +14,378.470650841746,0.0,0.0,80.98794341303869,0.1273618750055902 +15,378.9410339449637,0.0,0.0,81.08859946143005,0.1275201669996022 +16,378.1692783957104,0.0,0.0,80.92345351256293,0.1272604580008192 +17,360.8712520229351,0.0,0.0,77.22189415011354,0.1214393749978626 +18,376.8633777379917,0.0,0.0,80.64400725078504,0.1268209999980172 +19,378.58864776937514,0.0,0.0,81.01319326656494,0.1274015829985728 +20,377.4466793231688,0.0,0.0,80.76882642941354,0.1270172910008113 +21,377.031895147184,0.0,0.0,80.68006784985506,0.126877709000837 +22,374.3029586664954,0.0,0.0,80.09610987904745,0.1259593750000931 +23,376.47582842715946,0.0,0.0,80.56107658869635,0.1266905829979805 +24,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271 +25,378.17670742869615,0.0,0.0,80.92504323187597,0.1272629579980275 +26,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385 +27,376.6962243120295,0.0,0.0,80.60823852691433,0.1267647499989834 +28,356.6068604960436,0.0,0.0,76.30936817510647,0.1200043339995318 +0,376.57177593891714,0.0,0.0,79.74107126114866,0.1257639160030521 +1,380.690278713343,0.0,0.0,80.61318607221193,0.1271393749993876 +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998 +3,377.175622428229,0.0,0.0,79.86893895865455,0.1259655829999246 +4,380.9577662999694,0.0,0.0,80.66982798769662,0.1272287079991656 +5,381.55025850883186,0.0,0.0,80.79529135608311,0.1274265829997602 +6,386.5080296823765,0.0,0.0,81.84512570296262,0.1290823329982231 +7,378.1668532813673,0.0,0.0,80.07883735026734,0.1262966249996679 +8,364.021648680628,0.0,0.0,77.0835152360204,0.1215725420042872 +9,381.3288079055205,0.0,0.0,80.7483980160407,0.1273526250006398 +10,372.39002208305175,0.0,0.0,78.85556269804478,0.1243673330027377 +11,382.33663003234,0.0,0.0,80.96180969787187,0.1276892079986282 +12,380.7838498071915,0.0,0.0,80.63300024772721,0.1271706249972339 +13,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207 +14,359.0034919453096,0.0,0.0,76.02089392609103,0.1198966250012745 +15,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113 +16,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118 +17,382.58927200969583,0.0,0.0,81.01530797683783,0.1277735830008168 +18,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988 +19,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475 +20,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802 +21,380.5168592731632,0.0,0.0,80.57646358576704,0.1270814579984289 +22,379.91950137360783,0.0,0.0,80.44996988156394,0.1268819580000126 +23,380.7278329052986,0.0,0.0,80.62113837158283,0.1271519169968087 +24,381.2378568006439,0.0,0.0,80.7291386370892,0.1273222500021802 +25,381.37821343052354,0.0,0.0,80.75885989805546,0.1273691249953117 +26,358.5115594791486,0.0,0.0,75.91672461668911,0.1197323340020375 +27,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729 +28,378.77381981874754,0.0,0.0,80.2073657345035,0.1264993340009823 +0,373.7002810104703,0.0,0.0,80.05956189892107,0.1265379169999505 +1,377.3721755823788,0.0,0.0,80.84620907502472,0.127781249997497 +2,375.5968928291588,0.0,0.0,80.46588193401963,0.127180124996812 +3,376.8571996022623,0.0,0.0,80.73588335826284,0.127606874993944 +4,358.4247515000995,0.0,0.0,76.78701364964624,0.1213655000028666 +5,376.5106839164296,0.0,0.0,80.66164767954228,0.127489541999239 +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804 +7,374.2099647272519,0.0,0.0,80.1687538293157,0.1267105000006267 +8,375.82244863222303,0.0,0.0,80.51420381038605,0.1272565000035683 +9,375.6955792262256,0.0,0.0,80.48702398318585,0.1272135410035844 +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104 +11,367.9267647010967,0.0,0.0,78.82267445239606,0.1245829580002464 +12,374.54122384829685,0.0,0.0,80.23972102268834,0.1268226669999421 +13,375.0623514767027,0.0,0.0,80.35136463588229,0.1269991250010207 +14,374.88404796498406,0.0,0.0,80.31316583925673,0.126938749999681 +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875 +16,375.49242102266754,0.0,0.0,80.44350044948914,0.1271447500039357 +17,373.65007545091566,0.0,0.0,80.04880612669643,0.1265209169941954 +18,378.19699950514024,0.0,0.0,81.02291496810425,0.128060542003368 +19,372.4382495153243,0.0,0.0,79.7891909793948,0.1261105829980806 +20,363.61881019547434,0.0,0.0,77.8997611769015,0.1231242499998188 +21,384.24356897781905,0.0,0.0,82.31829987299409,0.1301079589975415 +22,368.9578241234784,0.0,0.0,79.04356314272411,0.1249320830029319 +23,378.87735844050263,0.0,0.0,81.16867145014876,0.1282909170040511 +24,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101 +25,377.9771021827879,0.0,0.0,80.97580533456942,0.1279860830036341 +26,376.3770485675717,0.0,0.0,80.63301835270623,0.1274442919966532 +27,376.4166725657793,0.0,0.0,80.64150718747139,0.1274577090007369 +28,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799 +0,403.1280711860908,0.0,0.0,84.25633205896268,0.1253158330000587 +1,387.8453998928396,0.0,0.0,81.06215651211087,0.1205650830015656 +2,419.1526392551472,0.0,0.0,87.60556875278897,0.1302972080011386 +3,406.2162918923644,0.0,0.0,84.90178983751325,0.1262758330049109 +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548 +5,414.97228218567807,0.0,0.0,86.73184752485783,0.1289977080014068 +6,409.33346783722465,0.0,0.0,85.55329944517618,0.1272448339950642 +7,387.6850922721412,0.0,0.0,81.02865119931684,0.1205152499969699 +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134 +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388 +10,409.103591653989,0.0,0.0,85.50525386013376,0.1271733750036219 +11,410.61660425324544,0.0,0.0,85.8214831209671,0.1276437080014147 +12,402.2978448831,0.0,0.0,84.08280947874876,0.1250577500031795 +13,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471 +14,406.7088823894727,0.0,0.0,85.00474438585651,0.1264289590035332 +15,409.91545590084,0.0,0.0,85.6749386537732,0.1274257499972009 +16,408.4102153116807,0.0,0.0,85.36033379250497,0.1269578329956857 +17,407.3196873856032,0.0,0.0,85.13240651671686,0.1266188329973374 +18,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295 +19,408.7449076956601,0.0,0.0,85.43028663046836,0.1270618750058929 +20,406.67349330879034,0.0,0.0,84.9973478428064,0.1264179580030031 +21,408.2432069034229,0.0,0.0,85.32542797247262,0.1269059169935644 +22,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104 +23,403.50310985493286,0.0,0.0,84.3347175271935,0.125432417000411 +24,408.1030049222433,0.0,0.0,85.29612486627406,0.1268623340001795 +25,395.15070496407816,0.0,0.0,82.58901175705402,0.1228360000022803 +26,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865 +27,405.9890985754069,0.0,0.0,84.85430498859458,0.1262052080055582 +28,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786 +0,371.9505742570301,0.0,0.0,79.28333129496517,0.1256908330033184 +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039 +2,380.42500161272574,0.0,0.0,81.08970256598367,0.1285545409991755 +3,379.724029315134,0.0,0.0,80.94028642646145,0.1283176659999299 +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309 +5,376.13581758750024,0.0,0.0,80.17543916220671,0.1271051250005257 +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614 +7,376.2810664428482,0.0,0.0,80.20639976266224,0.1271542079994105 +8,380.54867753629713,0.0,0.0,81.11606477618137,0.1285963339978479 +9,379.31836647407073,0.0,0.0,80.85381713820637,0.1281805830003577 +10,381.0452130124147,0.0,0.0,81.22190407144627,0.1287641249946318 +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587 +12,376.2243494820515,0.0,0.0,80.19431022737417,0.1271350420065573 +13,372.8399531157799,0.0,0.0,79.47290733970135,0.1259913750036503 +14,374.9296776697505,0.0,0.0,79.91834373796102,0.1266975420003291 +15,374.12192675589216,0.0,0.0,79.74616714316706,0.1264245839993236 +16,375.5840417938985,0.0,0.0,80.05782508637942,0.1269186670033377 +17,375.37479914772064,0.0,0.0,80.01322385388747,0.1268479589998605 +18,375.09391603623067,0.0,0.0,79.95335205821166,0.1267530420009279 +19,378.31259142851826,0.0,0.0,80.63943059960772,0.1278407079953467 +20,378.55623535736214,0.0,0.0,80.69136465661818,0.1279230410000309 +21,376.64345322012633,0.0,0.0,80.28364451749893,0.1272766670008422 +22,376.4232347180749,0.0,0.0,80.23670372035055,0.1272022499979357 +23,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102 +24,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959 +25,369.4433498371993,0.0,0.0,78.74890248085369,0.1248435829984373 +26,376.9355548460999,0.0,0.0,80.34590760186201,0.1273753749992465 +27,378.0333122323057,0.0,0.0,80.57990068738393,0.1277463329970487 +28,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645 +0,381.15527652293935,0.0,0.0,81.51934415933158,0.1286932079965481 +1,385.36513808692746,0.0,0.0,82.41972564382412,0.130114624997077 +2,378.5353754336696,0.0,0.0,80.95901446769543,0.127808625002217 +3,375.9680451234962,0.0,0.0,80.40992831825284,0.1269417919975239 +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456 +5,376.0794774873806,0.0,0.0,80.43376084473613,0.1269794160034507 +6,376.188694437082,0.0,0.0,80.45711955090954,0.127016291997279 +7,378.75676516528466,0.0,0.0,81.00636405679074,0.1278833749965997 +8,378.5499353289353,0.0,0.0,80.96212845610434,0.127813541002979 +9,376.9519574623808,0.0,0.0,80.62036194863003,0.1272740000058547 +10,375.52600605674576,0.0,0.0,80.31538749189194,0.1267925419961102 +11,378.15886475244446,0.0,0.0,80.87848848342348,0.1276814999946509 +12,375.0297909482362,0.0,0.0,80.20925979879881,0.1266250000044237 +13,371.8400015295662,0.0,0.0,79.5270456004583,0.1255480000036186 +14,380.5503420202996,0.0,0.0,81.38996417444876,0.1284889580056187 +15,378.3637191494406,0.0,0.0,80.92230158826523,0.1277506670012371 +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861 +17,374.23394884006944,0.0,0.0,80.03904957029572,0.1263562919994001 +18,377.2002516134433,0.0,0.0,80.67346570345106,0.1273578340042149 +19,364.2633868236725,0.0,0.0,77.90660191302786,0.122989832998428 +20,380.7449517375222,0.0,0.0,81.43158620487097,0.1285546660001273 +21,374.3580929740989,0.0,0.0,80.06560081859438,0.126398208005412 +22,378.7710821980925,0.0,0.0,81.00942610314478,0.1278882089973194 +23,384.0539539971067,0.0,0.0,82.13929697430812,0.1296719170059077 +24,381.7317073342197,0.0,0.0,81.64262793521807,0.1288878340055816 +25,377.330689419243,0.0,0.0,80.70136300682668,0.1274018750045797 +26,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793 +27,368.4089550234593,0.0,0.0,78.7932326948375,0.124389541997516 +28,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174 +0,382.11192345358336,0.0,0.0,83.48578836048895,0.1285898329952033 +1,383.063317719908,0.0,0.0,83.69365389802014,0.1289099999994505 +2,378.283444669349,0.0,0.0,82.64932252442081,0.1273014580001472 +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752 +4,379.91545010812285,0.0,0.0,83.0058915093224,0.1278506669987109 +5,377.47332413675264,0.0,0.0,82.47232320254791,0.1270288329978939 +6,378.7013227559976,0.0,0.0,82.74062268900902,0.1274420840054517 +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177 +8,377.4120387598971,0.0,0.0,82.45893325659827,0.1270082089977222 +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708 +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298 +11,373.0895357637535,0.0,0.0,81.51453045685822,0.1255535829986911 +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769 +13,383.83679006238367,0.0,0.0,83.86264613386297,0.1291702920061652 +14,382.0622747139288,0.0,0.0,83.47494084719048,0.1285731250027311 +15,379.26022195757537,0.0,0.0,82.8627338757944,0.1276301670004613 +16,378.4614914107541,0.0,0.0,82.68822309689409,0.127361375001783 +17,376.1883756534947,0.0,0.0,82.19158101539543,0.126596416994289 +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035 +19,376.2270029142905,0.0,0.0,82.2000204990174,0.1266094159946078 +20,376.0207293733377,0.0,0.0,82.15495278946071,0.1265399999974761 +21,377.7483179042934,0.0,0.0,82.53240526245817,0.1271213750005699 +22,378.4316510205191,0.0,0.0,82.68170341417591,0.1273513329942943 +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608 +24,374.7420925115319,0.0,0.0,81.87558959799095,0.1261097080059698 +25,384.3096389423701,0.0,0.0,83.96595660155066,0.1293294170027366 +26,378.8730519301984,0.0,0.0,82.7781429667409,0.1274998749941005 +27,376.8858236829585,0.0,0.0,82.34396306632436,0.1268311249950784 +28,376.7586678245342,0.0,0.0,82.31618139704467,0.1267883339969557 +0,356.33566462805965,0.0,0.0,78.6689939309365,0.1220669589965837 +1,365.621944433946,0.0,0.0,80.71914597073523,0.1252480830007698 +2,369.7227878911292,0.0,0.0,81.62449803360438,0.126652874998399 +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455 +4,381.5487589223497,0.0,0.0,84.2353431878597,0.1307040000028791 +5,374.4612274067481,0.0,0.0,82.67061355472525,0.128276082999946 +6,376.2095751151944,0.0,0.0,83.05660005262041,0.1288750000021536 +7,417.9745566255801,0.0,0.0,92.27714518215636,0.1431820840007276 +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442 +9,368.9749927454226,0.0,0.0,81.45940568496007,0.1263967090053483 +10,368.7472965391703,0.0,0.0,81.40913670195931,0.1263187090007704 +11,354.0226975037879,0.0,0.0,78.15835518571936,0.1212746249948395 +12,368.9847223569777,0.0,0.0,81.46155371230721,0.1264000419978401 +13,368.6611806740536,0.0,0.0,81.3901247165121,0.1262892090016976 +14,368.6304066460952,0.0,0.0,81.3833306679253,0.1262786669976776 +15,360.7548186281763,0.0,0.0,79.64462009953212,0.1235807920020306 +16,371.2739682072804,0.0,0.0,81.96695546066114,0.127184249999118 +17,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106 +18,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356 +19,369.8492877304773,0.0,0.0,81.65242567622282,0.1266962090012384 +20,368.8047051618492,0.0,0.0,81.42181092752081,0.1263383749974309 +21,366.89142369116024,0.0,0.0,80.99941164687931,0.1256829580015619 +22,351.5059977726157,0.0,0.0,77.60273795306252,0.1204125000003841 +23,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249 +24,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876 +25,371.2468431633174,0.0,0.0,81.96096700614838,0.1271749579973402 +26,392.0700979045949,0.0,0.0,86.55816190824662,0.1343082080056774 +27,371.75271404089193,0.0,0.0,82.07264921185542,0.1273482499964302 +28,351.3996928408619,0.0,0.0,77.57926878379007,0.1203760839998722 +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.1290693749979254 +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051 +2,379.3227523689651,0.739289559896991,0.0,82.73322256665416,0.1275123750019702 +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.1282127079975907 +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.1270318749957368 +5,377.3349727742443,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827 +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.1275647080037742 +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.1269037500023841 +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.127749125000264 +9,380.193747573396,0.7409871054761438,0.0,82.92319334919391,0.1278051670014974 +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.1276764170033857 +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.127789959005895 +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.127124749997165 +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.1266850829997565 +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841 +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.1375446250021923 +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.1272327080005197 +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.1276012079979409 +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.1282910420050029 +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.1266605839991825 +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.1268799999961629 +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.1255359169954317 +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.1272838750010123 +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.1268487090055714 +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.1266794170005596 +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.1264934169957996 +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865 +27,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.1270743339991895 +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.1257333750036195 +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832 +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.1277571250029723 +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.1318783749957219 +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.1273030829979688 +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225 +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.1280105410041869 +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.1272239169993554 +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.1272712909994879 +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.1268018749979091 +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.1302960419998271 +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.1214435000001685 +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.1277919170024688 +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.1277310000004945 +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639 +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.1275388750000274 +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.127049499998975 +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.1213214579984196 +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.1275617919964133 +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.1269967919943155 +20,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.1260682499996619 +21,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.1243212089975713 +22,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.1276745420036604 +23,386.3097856350467,0.8411936800693467,0.0,82.90804910763481,0.1275798329952522 +24,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.1271656670069205 +25,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733 +26,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888 +27,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.1284481249967939 +28,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.1226739999983692 +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808 +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.1277220839983783 +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.1272478329992736 +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.1273376659955829 +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101 +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.1282137920061359 +6,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888 +7,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.1262204169979668 +8,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019 +9,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021 +10,378.5886374541328,0.630207123850405,0.0,81.79425091658413,0.1265887500048848 +11,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.1284940410041599 +12,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.1273608750052517 +13,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241 +14,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344 +15,376.1731498918869,0.6261862491629446,0.0,81.2723837071485,0.1257810829993104 +16,377.5617067268463,0.6284976719651376,0.0,81.5723820561068,0.1262453749950509 +17,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.1282457499983138 +18,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.1276990840051439 +19,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.1275388750000274 +20,370.9409249040661,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327 +21,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.1235482500051148 +22,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773 +23,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.1300859159964602 +24,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122 +25,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.1262704169930657 +26,380.6645552301474,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738 +27,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.1272568749991478 +28,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.1275444999992032 +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.1260774999973364 +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.1270055420027347 +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.1273317499944823 +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.1277807910009869 +4,382.865699575474,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585 +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.126890708997962 +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899 +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.1271131670000613 +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.1269129170032101 +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.1268732919998001 +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.1278685830038739 +11,379.158248535522,0.8729402693636388,0.0,81.98923606869253,0.127998458003276 +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.1279381250060396 +13,380.905955104168,0.8769640337118894,0.0,82.3671603970936,0.1285884590033674 +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.128263375001552 +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538 +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952 +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.1270275829956517 +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.1267205830008606 +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.1267619579957681 +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377 +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698 +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.1286793750041397 +23,377.2149146660136,0.868466110096197,0.0,81.5690092636505,0.127342415995372 +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235 +25,377.792424091372,0.8697957164947907,0.0,81.69388998770303,0.1275373750031576 +26,372.2949335054875,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435 +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024 +28,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907 +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546 +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422 +2,386.7646891747356,0.0,0.0,80.34820506063755,0.1234175829958985 +3,400.02309949515256,0.0,0.0,83.10256578957589,0.1276483750043553 +4,400.4175651822858,0.0,0.0,83.18451383397155,0.1277742499951273 +5,396.0818362122956,0.0,0.0,82.2837903446803,0.126390707999235 +6,397.7300808589709,0.0,0.0,82.6262039686948,0.1269166670026607 +7,395.98168657862607,0.0,0.0,82.26298481737118,0.1263587499997811 +8,396.5324500295691,0.0,0.0,82.37740284966543,0.1265344999992521 +9,398.14478456222105,0.0,0.0,82.71235634795994,0.1270489999951678 +10,399.33118701966725,0.0,0.0,82.95882483539796,0.127427583996905 +11,397.223970778421,0.0,0.0,82.52106242482209,0.1267551660057506 +12,402.9354331958688,0.0,0.0,83.70758685778524,0.128577707997465 +13,397.41304479758514,0.0,0.0,82.56034149679698,0.1268154999997932 +14,398.0741427062589,0.0,0.0,82.69768089674226,0.1270264580016373 +15,396.5969559370069,0.0,0.0,82.39080359183116,0.1265550839962088 +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509 +17,396.8564054927456,0.0,0.0,82.44470278865771,0.1266378750005969 +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872 +19,397.34449316119225,0.0,0.0,82.54610027702614,0.1267936250005732 +20,397.6506894306738,0.0,0.0,82.60971084266905,0.1268913329986389 +21,397.0926148741081,0.0,0.0,82.49377396899592,0.1267132500070147 +22,396.0943744971357,0.0,0.0,82.2863951033608,0.1263947089973953 +23,397.0390803449771,0.0,0.0,82.48265246942572,0.1266961670044111 +24,396.6367801479797,0.0,0.0,82.39907684934194,0.1265677920018788 +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732 +26,394.427458763678,0.0,0.0,81.94010266529867,0.1258627920033177 +27,406.09638297638475,0.0,0.0,84.36425652867271,0.1295863750056014 +28,407.3996475439181,0.0,0.0,84.63500246709813,0.1300022499999613 +29,408.0202694203579,0.0,0.0,84.76393319730442,0.1302002919983351 +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395 +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.1276939169983961 +2,379.7503451515355,0.911076889913938,0.0,81.4232790874938,0.1268921250011772 +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.1268949169971165 +4,380.9400699708801,0.913931214609362,0.0,81.67837114268114,0.1272896669979673 +5,377.40880702846295,0.905459195820908,0.0,80.92122368577226,0.1261097089955001 +6,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.1234518330020364 +7,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277 +8,377.5661692958721,0.9058367310279496,0.0,80.95496414705343,0.1261622909951256 +9,380.5384223868755,0.9129676030252032,0.0,81.59225281851168,0.1271554579943767 +10,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.1257233749929582 +11,394.5627248223053,0.9466139657190548,0.0,84.59924071407701,0.1318416249996516 +12,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.126691417004622 +13,378.82859285824617,0.9088654706924336,0.0,81.22564373262378,0.1265841249987715 +14,379.1090329887456,0.9095382877817784,0.0,81.28577364509003,0.1266778329954831 +15,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.1235821249938453 +16,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205 +17,381.92828421094526,0.916302085809092,0.0,81.89025677990145,0.127619875005621 +18,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.1268732919998001 +19,383.9252904409535,0.92109319725482,0.0,82.31844018429187,0.1282871669973246 +20,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.1269927079993067 +21,379.801843560333,0.9112004421653628,0.0,81.43432099796371,0.1269093329974566 +22,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.1208661670025321 +23,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.127685334002308 +24,378.08752496595537,0.9070875399041048,0.0,81.06674939957796,0.1263364999977057 +25,375.8814036432744,0.901794730617417,0.0,80.59372907332693,0.1255993329978082 +26,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.1263170419988455 +27,378.28604288554345,0.9075638135693684,0.0,81.10931415344024,0.1264028340010554 +28,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943 +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298 +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315 +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.1230740000028163 +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065 +4,414.8404317742507,0.7109809081252971,0.0,85.55470261107743,0.1281313330036937 +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828 +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.1286632920018746 +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.126794959003746 +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.1242163330025505 +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521 +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514 +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.1251826670049922 +12,411.592562504149,0.7054144954368015,0.0,84.88487761756177,0.1271281669978634 +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.1268025829995167 +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.1264638749998994 +15,399.1943694562683,0.6841656540097638,0.0,82.32793369917492,0.1232987499970477 +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.1309235410008113 +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.1250162500000442 +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.1251117080028052 +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.1266198330049519 +20,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764 +21,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.1272145830007502 +22,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064 +23,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.1268779590027406 +24,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714 +25,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.1281818329953239 +26,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.1278080830015824 +27,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.1285623750009108 +28,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.1284708340026554 +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871 +1,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.1283866669982671 +2,378.1783407682509,1.2393798590279257,0.0,85.98616481418068,0.1276013329988927 +3,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.1280753750033909 +4,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.1272267079984885 +5,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.1250958329983404 +6,376.4828302874184,1.2338232702067742,0.0,85.60065769245378,0.1270292500048526 +7,372.3979185608552,1.2204360484279575,0.0,84.67187395444776,0.1256509580052807 +8,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935 +9,375.9752882211583,1.232159934825762,0.0,85.48525818101977,0.1268579999959911 +10,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.1262761250036419 +11,380.0242615418349,1.2454293779493255,0.0,86.40587062691674,0.1282241660010186 +12,380.4472152044884,1.2468154971271983,0.0,86.50203732771672,0.1283668749965727 +13,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619 +14,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671 +15,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.1262934999977005 +16,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.1261303330029477 +17,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.1253175000019837 +18,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.1270073749983566 +19,374.82881226544566,1.2284026619859605,0.0,85.22458468426919,0.1264711670010001 +20,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837 +21,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595 +22,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.1281118750048335 +23,378.32986245382807,1.2398764314253,0.0,86.02061620185799,0.1276524580025579 +24,377.6759852809123,1.2377335212926268,0.0,85.87194457184252,0.1274318329960806 +25,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.1273741659970255 +26,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.1267671660025371 +27,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.1263089579952065 +0,580.8490462076469,0.4375130425111193,22.313165168067087,110.42156095992172,0.1313430000009248 +1,577.9638128096457,0.4353397975853406,22.202329676852372,109.87306737519252,0.1306905840028775 +2,571.3580595604811,0.4303641447526656,21.948571382385943,108.61728914873044,0.129196875001071 +3,561.9166389561877,0.423252581634535,21.585881663361288,106.82244002637763,0.1270619579954655 +4,588.3427741262249,0.44315754468051,22.601034778706012,111.84614646898105,0.133037499996135 +5,579.4248575746424,0.4364403006240425,22.25845533182617,110.15081741134487,0.1310209590010345 +6,589.9617378100206,0.4443769970178033,22.66322684790797,112.15391747810868,0.1334035840045544 +7,568.8925810737016,0.4285070719020871,21.853860667006444,108.148592531596,0.1286393750051502 +8,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355672,0.1280307499982882 +9,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.1297934160029399 +10,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034755,0.1305069580048439 +11,550.8068744156343,0.4148843714817339,21.15910294556843,104.71043252550533,0.1245497909985715 +12,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.1323175419965991 +13,576.6522047657539,0.4343518547977751,22.151944594686533,109.6237258147308,0.1303939999997965 +14,578.589761320147,0.4358112809063045,22.226375326221532,109.99206251181424,0.1308321250035078 +15,570.777621784413,0.4299269414912433,21.92627401605341,108.50694577175148,0.1290656249984749 +16,559.7279309023393,0.4216039806321577,21.50180301224005,106.40635849646996,0.1265670420034439 +17,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.1261816249971161 +18,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.1294468749983934 +19,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198 +20,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.1363984580020769 +21,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.1297899169949232 +22,590.8758797423774,0.4450655563271861,22.69834337268649,112.32769925457674,0.1336102920031407 +23,580.168923511577,0.4370007535575931,22.287038431437253,110.29226710942024,0.1311892090016044 +24,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.1283416670048609 +25,596.6714126054211,0.4494309266974027,22.92097726156754,113.42945157647527,0.1349207919993205 +26,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.1315066250026575 +27,602.7321027138048,0.4539960215122233,23.15379709712339,114.58161127550808,0.1362912499971571 +28,575.0345324443498,0.4331333751536327,22.08980213283527,109.31620029838992,0.130028207997384 +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531 +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089 +2,386.8253353097512,0.0,0.0,87.22500746639305,0.1195789579942356 +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987 +4,410.1044494159173,0.0,0.0,92.47420061992683,0.1267752089988789 +5,408.0670027544839,0.0,0.0,92.01477802261016,0.1261453749975771 +6,408.1467946849229,0.0,0.0,92.03277025603695,0.1261700410032062 +7,408.5973928664444,0.0,0.0,92.1343753634586,0.1263093340021441 +8,386.5837986845974,0.0,0.0,87.17054352101684,0.1195042920007836 +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258 +10,407.3952218840771,0.0,0.0,91.86329856641038,0.1259377079986734 +11,409.46030100316216,0.0,0.0,92.32895198964506,0.1265760839960421 +12,415.01542067501595,0.0,0.0,93.58157251530466,0.1282933330003288 +13,409.88663100545983,0.0,0.0,92.42508488022676,0.1267078749951906 +14,386.8309963950141,0.0,0.0,87.22628398103481,0.119580708000285 +15,408.6011647578864,0.0,0.0,92.13522588494506,0.1263105000034556 +16,406.44537592628774,0.0,0.0,91.64911838430376,0.1256440829965868 +17,396.8252034977494,0.0,0.0,89.4798716072401,0.1226702079948154 +18,405.77534837085153,0.0,0.0,91.49803428202073,0.1254369579983176 +19,415.27138496028545,0.0,0.0,93.6392897449062,0.1283724590030033 +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354 +21,407.4975254542064,0.0,0.0,91.88636693565569,0.1259693330066511 +22,409.9073893301796,0.0,0.0,92.42976566212856,0.1267142919969046 +23,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338 +24,414.45147178217695,0.0,0.0,93.45440802555076,0.1281190000008791 +25,386.3541211550232,0.0,0.0,87.11875367582502,0.1194332919985754 +26,409.1427411144483,0.0,0.0,92.25734560522376,0.1264779170014662 +27,409.6813478367339,0.0,0.0,92.37879570449192,0.1266444159991806 +28,405.9621635490298,0.0,0.0,91.54015912190069,0.1254947080014972 +0,392.6923196485306,0.0,0.0,80.61026913897126,0.1246850840034312 +1,400.5184957667552,0.0,0.0,82.21679448121304,0.1271699999997508 +2,398.0520646223312,0.0,0.0,81.71049560950932,0.12638687499566 +3,399.9544786756752,0.0,0.0,82.10101536551342,0.1269909170005121 +4,403.1854443963641,0.0,0.0,82.7642547600517,0.128016791997652 +5,381.7259833976352,0.0,0.0,78.3591446009504,0.121203125003376 +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361 +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702 +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854 +9,402.8376890448656,0.0,0.0,82.69286896747012,0.127906375004386 +10,414.9605369904961,0.0,0.0,85.18139748389932,0.1317555419955169 +11,400.0866242774884,0.0,0.0,82.12814167278938,0.1270328750033513 +12,394.6405270092331,0.0,0.0,81.01018915733403,0.1253036659982171 +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246 +14,404.0993175654207,0.0,0.0,82.95185089685027,0.1283069589990191 +15,388.2460478319902,0.0,0.0,79.69755669245045,0.1232733330034534 +16,399.35397808432066,0.0,0.0,81.97774706647837,0.1268002500000875 +17,378.67151729069445,0.0,0.0,77.73213632338405,0.1202332910033874 +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858 +19,402.932305515202,0.0,0.0,82.71229144852506,0.1279364170040935 +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364 +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568 +22,404.07320215275104,0.0,0.0,82.94649003202395,0.1282986670048558 +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844 +24,403.0031686498588,0.0,0.0,82.72683794223248,0.1279589170007966 +25,400.56206556674624,0.0,0.0,82.22573831109683,0.1271838339962414 +26,401.1814598637611,0.0,0.0,82.35288503255603,0.127380500001891 +27,401.3059963273414,0.0,0.0,82.37844936713687,0.1274200420011766 +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624 +29,402.8306027222338,0.0,0.0,82.69141431621779,0.1279041250018053 +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.1279306249998626 +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.1298666250004316 +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.1268119170053978 +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.1270387500044307 +4,411.469987685372,0.7956876725847174,0.0,84.27658598793131,0.126604999997653 +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.1283349580044159 +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466 +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.1262690420044236 +8,428.2287649279869,0.8280952669625078,0.0,87.70909035911228,0.1317615000007208 +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.1220044580040848 +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.1273247919962159 +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.127753875000053 +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.1249797920027049 +13,412.5154149354085,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701 +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551 +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.1267970419939956 +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.1263662080018548 +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802 +18,412.5823102935587,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206 +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921 +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597 +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937 +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952 +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472 +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135 +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.1276210409996565 +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.1273774169967509 +27,403.1514038574026,0.7796014577856469,0.0,82.57278773712977,0.1240454589933506 +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.1270551250054268 +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.1296990409973659 +0,366.2560098974747,0.0,0.0,80.782447497649,0.1274277500051539 +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433 +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269 +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301 +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036 +5,365.55697252599737,0.0,0.0,80.62826586449009,0.1271845410010428 +6,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953 +7,367.84473766973,0.0,0.0,81.13286172808361,0.1279804999940097 +8,366.06882597778775,0.0,0.0,80.7411616900284,0.1273626249967492 +9,365.15554103083457,0.0,0.0,80.53972501381307,0.1270448750001378 +10,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692 +11,365.718411986348,0.0,0.0,80.66387340232536,0.1272407090000342 +12,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072 +13,366.3053517052931,0.0,0.0,80.7933304644586,0.1274449170014122 +14,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047 +15,364.87015348468304,0.0,0.0,80.4767791403244,0.1269455829969956 +16,365.9639167863109,0.0,0.0,80.71802262603086,0.1273261250025825 +17,367.16306638263006,0.0,0.0,80.98251040695109,0.1277433329960331 +18,365.2581738498211,0.0,0.0,80.56236199474246,0.1270805829990422 +19,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815 +20,366.7016354671544,0.0,0.0,80.88073591671505,0.1275827920035226 +21,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122 +22,364.065011256822,0.0,0.0,80.29919472397987,0.1266654580031172 +23,365.0026092698173,0.0,0.0,80.50599395788157,0.126991666998947 +24,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237 +25,363.3076529841561,0.0,0.0,80.13214967012348,0.1264019579975865 +26,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376 +27,366.2285868981014,0.0,0.0,80.77639900438956,0.1274182089982787 +28,366.2516985482337,0.0,0.0,80.78149657443056,0.1274262500010081 +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.1263446250013657 +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.1269560419968911 +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.1267198330024257 +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.1260341660017729 +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786 +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.1269434159985394 +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936 +7,373.7075999076504,0.701202608833154,0.0,80.83864361833646,0.1267825000031734 +8,370.2519987370816,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832 +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.1285800419937004 +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545 +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.1268734170007519 +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.1245892920051119 +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285 +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.1260856660010176 +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992 +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.1266507079999428 +17,373.544619672528,0.7008968024591752,0.0,80.8033885120792,0.1267272080003749 +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.1260830000028363 +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762 +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.1277539160000742 +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999 +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.1266689580006641 +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.1274090419974527 +24,373.3273559434392,0.7004891417809348,0.0,80.75639105960205,0.1266535000031581 +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481 +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.1265395829977933 +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.1265127079968806 +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.1282391249987995 +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.1254270000063115 +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837 +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799 +2,392.782657800016,0.0,0.0,82.10768031039964,0.1270926669967593 +3,394.0904615657848,0.0,0.0,82.3810649198677,0.1275158330026897 +4,386.1846502784042,0.0,0.0,80.72842620762319,0.1249577499984297 +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858 +6,390.5682958318153,0.0,0.0,81.64478786602623,0.1263761659938609 +7,391.0349677496118,0.0,0.0,81.742341431275,0.1265271670054062 +8,394.99521491133027,0.0,0.0,82.57019546568124,0.1278085840021958 +9,389.8935329590793,0.0,0.0,81.50373475907328,0.1261578330013435 +10,386.8460219423448,0.0,0.0,80.86668000287307,0.1251717499981168 +11,395.2454142765718,0.0,0.0,82.62249739166286,0.1278895409996039 +12,405.8558215300987,0.0,0.0,84.84050755437045,0.1313227499995264 +13,394.8692730303716,0.0,0.0,82.54386844870608,0.1277678329934133 +14,390.91198968003886,0.0,0.0,81.71663397240133,0.126487374996941 +15,384.1205680557549,0.0,0.0,80.29694839182318,0.1242898750060703 +16,397.6399258501084,0.0,0.0,83.12304849002524,0.1286643330022343 +17,394.5017605534564,0.0,0.0,82.46704327232571,0.1276489169977139 +18,389.40123755570465,0.0,0.0,81.40082483472742,0.125998540999717 +19,390.4691426421824,0.0,0.0,81.62406078392506,0.1263440830007312 +20,383.5958221737522,0.0,0.0,80.1872549869132,0.1241200830045272 +21,405.63909868024984,0.0,0.0,84.7952035927062,0.1312526249967049 +22,392.9889501493175,0.0,0.0,82.15080386977927,0.1271594170029857 +23,393.90245582749657,0.0,0.0,82.34176401197539,0.1274549999943701 +24,388.23392583418934,0.0,0.0,81.15680882294728,0.1256208339982549 +25,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692 +26,375.36074051247016,0.0,0.0,78.46578526581658,0.1214554580001276 +27,394.00032031549273,0.0,0.0,82.36222170259528,0.127486666002369 +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.1265818329993635 +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.1273689170047873 +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.1272704590010107 +3,390.0256092913664,1.0581449340672937,0.0,81.74169615669842,0.1245831669948529 +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.1276017079944722 +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.1207954999990761 +6,402.8359437074606,1.092899550541648,0.0,84.42649027934232,0.1286750829967786 +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859 +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.1266689580006641 +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494 +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.127547208998294 +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.1202903329976834 +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.1262500839948188 +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602 +14,399.0628659124927,1.0826631377023963,0.0,83.63572738751013,0.1274698750057723 +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.1271318750004866 +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.1265424590019392 +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.1203042499982984 +18,402.568664946258,1.0921744195235483,0.0,84.37047390819413,0.1285897080015274 +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.1271081250015413 +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.1269394580012885 +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.1268292910026502 +22,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.1216482500021811 +23,405.61921819575144,1.100450613163548,0.0,85.00980986688407,0.129564125003526 +24,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.1270289169988245 +25,395.58876147911013,1.0732378437754575,0.0,82.90762343165412,0.1263601659957203 +26,397.43884404649145,1.0782571436615285,0.0,83.29536434785305,0.1269511249993229 +27,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.1271508339996216 +28,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/mac_report.md new file mode 100644 index 000000000..2c0845c14 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 655.51 ms | 123.73 ms | +| **Average Power** | 7.179 W | 3.544 W | +| **Total Energy** | 4235.28 J | 394.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.17% | 0.00e+00 | +89.445 | large | βœ… | +| `gpu_mj` | +83.80% | 0.00e+00 | +3.683 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.272 | small | βœ… | +| `dram_mj` | +87.83% | 0.00e+00 | +117.690 | large | βœ… | +| `time_s` | +81.06% | 0.00e+00 | +134.006 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.2% lower energy (Cohen’s d = +89.445, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.683, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.272, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +117.690, large) +- **`time_s`**: 81.1% lower time (Cohen’s d = +134.006, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..5567cf072 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944 +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237 +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636 +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309 +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115 +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606 +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372 +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534 +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623 +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886 +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754 +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207 +12,4327.235400242506,2.364463924465652,0.0,680.0997502174303,0.6709446249951725 +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574 +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149 +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999 +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457 +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501 +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202 +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666 +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456 +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212 +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304 +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887 +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787 +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945 +26,4338.812194020074,2.370789651798745,0.0,681.9192432258304,0.6727396249989397 +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578 +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274 +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904 +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145 +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862 +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175 +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131 +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066 +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478 +6,4417.676650902167,2.49145203457279,0.0,684.2191674146103,0.67062487500516 +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159 +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944 +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487 +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336 +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097 +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006 +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183 +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441 +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204 +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235 +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284 +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211 +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926 +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846 +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933 +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663 +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835 +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885 +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396 +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204 +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728 +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545 +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802 +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535 +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561 +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272 +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199 +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286 +5,4391.016889062863,1.7124603228688555,0.0,684.5811973068672,0.6757975419968716 +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228 +7,4344.730354172825,1.6944089565259697,0.0,677.3648981500287,0.6686738330026856 +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567 +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164 +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068 +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551 +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753 +13,4363.309510738167,1.7016546741477263,0.0,680.261480323997,0.6715332500025397 +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706 +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957 +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198 +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859 +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221 +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357 +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156 +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466 +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512 +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975 +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294 +25,4368.247362930842,1.703580395722884,0.0,681.0313158431011,0.6722932079937891 +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028 +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131 +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972 +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512 +0,5519.84217345951,4.72710642584526,111.62724174174592,771.4300036520476,0.698210457994719 +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258 +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211 +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729 +4,5448.99591016236,4.666434795034992,110.1945245170406,761.5288268726033,0.6892490419995738 +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845 +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203 +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498 +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937 +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837 +10,5462.674746967845,4.6781491367370425,110.4711503289476,763.4405237645086,0.6909792919977917 +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947 +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783 +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562 +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421 +15,5535.119945995178,4.74019007107577,111.93620267840356,773.5651610990581,0.7001429590018233 +16,5419.449013845381,4.641131295577101,109.59700045127067,757.3994765003574,0.6855116249935236 +17,5435.615181475974,4.654975748459343,109.92392731718992,759.6587923217901,0.6875565000009374 +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156 +19,5449.549965300805,4.6669092791819855,110.2057291212546,761.6062592962202,0.689319124998292 +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152 +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409 +22,5449.408975070284,4.666788537355728,110.20287788927168,761.5865550926165,0.6893012910004472 +23,5401.537331059038,4.6257920108410016,109.23477419885964,754.8962147977454,0.6832459579964052 +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586 +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554 +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894 +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058 +28,5425.496549978012,4.646310310848687,109.71929919761256,758.244654799714,0.6862765839978238 +29,5472.8253332894155,4.686841939958393,110.67642466787464,764.8591271587816,0.6922632499990868 +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348 +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363 +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453 +3,4330.179511549561,1.8300141626022992,0.0,677.2383321019491,0.6701198750015465 +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198 +5,4325.011416888251,1.8278300299586896,0.0,676.430044177803,0.6693200829977286 +6,4325.735138314875,1.828135888054634,0.0,676.5432339175277,0.6694320829992648 +7,4347.06876561683,1.8371518745739288,0.0,679.8798046377772,0.6727335830000811 +8,4327.957460643241,1.8290750826824616,0.0,676.8908042348878,0.6697760000024573 +9,4348.485786304246,1.8377507337943737,0.0,680.1014261027397,0.6729528750001919 +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608 +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531 +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221 +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238 +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096 +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013 +16,4330.573681242119,1.8301807460240551,0.0,677.2999800831567,0.6701808750003693 +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381 +18,4327.686065067118,1.8289603858790968,0.0,676.8483580760569,0.6697339999955148 +19,4330.916964261218,1.8303258237939384,0.0,677.3536694091241,0.6702339999974356 +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324 +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929 +22,4315.7473562602345,1.8239148661399016,0.0,674.9811488256646,0.6678864169953158 +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024 +24,4344.278884181038,1.8359728189422015,0.0,679.4434683045378,0.6723018330012565 +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992 +26,4314.834620808611,1.8235291272118217,0.0,674.8383973685347,0.6677451659998042 +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372 +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875 +29,4332.038357679215,1.8307997454480665,0.0,677.5290548881808,0.6704075419984292 +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002 +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979 +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341 +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482 +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519 +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996 +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411 +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611 +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564 +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847 +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614 +11,4321.626234797135,1.665251055725281,0.0,678.0902298913345,0.670513832999859 +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626 +13,4312.391545143513,1.66169265528538,0.0,676.6412492322067,0.6690810420041089 +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434 +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791 +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744 +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336 +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872 +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327 +20,4303.975665866741,1.658449766824167,0.0,675.3207450508007,0.6677752920004423 +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242 +22,4338.901909588244,1.671907886770183,0.0,680.8008914928187,0.6731942080004956 +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412 +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607 +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747 +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422 +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349 +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419 +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734 +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915 +1,4331.503324019295,2.405462702116385,0.0,676.3359297450568,0.6692004170035943 +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156 +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433 +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722 +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264 +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261 +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994 +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461 +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413 +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163 +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986 +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575 +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499 +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617 +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059 +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107 +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997 +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968 +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292 +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103 +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821 +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829 +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914 +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086 +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554 +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729 +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415 +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671 +29,4302.407659547652,2.389304677882228,0.0,671.7928319312199,0.6647052500047721 +0,4335.519852132827,1.998426580480376,0.0,678.132752976341,0.6699371249997057 +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514 +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133 +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932 +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202 +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873 +6,4442.778222222504,2.0478665519432595,0.0,694.9093832927462,0.6865109999998822 +7,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265 +8,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114 +9,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809 +10,4319.72068635306,1.9911440690583215,0.0,675.6615541004571,0.667495791996771 +11,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105 +12,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653 +13,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835 +14,4331.440896987593,1.9965464155495631,0.0,677.4947503431518,0.6693068329987 +15,4331.623180642343,1.9966304378844304,0.0,677.5232619221168,0.6693349999986822 +16,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171 +17,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132 +18,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548 +19,4331.732931351392,1.9966810266815465,0.0,677.5404283872713,0.6693519589971402 +20,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524 +21,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489 +22,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182 +23,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922 +24,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994 +25,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739 +26,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682 +27,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981 +28,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206 +29,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657 +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207 +1,4376.520182243895,1.7528193218882475,0.0,681.9815484700583,0.6767852090051747 +2,4337.145668188113,1.73704962218323,0.0,675.845922230983,0.6706963329997961 +3,4341.215338897163,1.7386795466792917,0.0,676.4800882387582,0.6713256669972907 +4,4308.598732289321,1.725616424404978,0.0,671.3975288184906,0.6662818339973455 +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304 +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381 +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761 +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709 +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578 +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612 +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773 +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248 +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235 +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453 +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269 +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693 +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906 +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411 +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086 +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324 +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115 +22,4321.644617054854,1.730841369780742,0.0,673.4304344885379,0.6682992499991087 +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593 +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319 +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376 +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013 +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729 +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226 +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141 +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367 +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543 +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124 +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614 +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087 +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917 +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481 +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222 +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404 +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312 +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824 +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533 +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766 +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874 +14,4319.8312777558685,3.283845150135942,0.0,677.979989007148,0.6700942090028548 +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462 +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344 +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974 +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448 +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309 +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348 +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761 +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644 +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413 +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967 +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905 +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321 +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346 +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033 +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482 +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178 +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928 +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591 +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788 +4,4332.3764799353785,2.127886286805196,0.0,674.240718908165,0.6668309590022545 +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093 +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905 +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291 +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341 +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862 +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245 +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937 +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288 +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575 +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733 +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325 +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989 +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246 +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973 +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821 +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617 +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726 +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684 +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297 +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134 +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271 +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358 +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624 +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369 +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649 +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252 +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143 +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413 +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653 +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525 +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557 +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427 +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632 +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706 +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636 +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242 +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164 +12,4419.158622070723,2.6776616900106394,0.0,689.3792545965366,0.6806454170000507 +13,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739 +14,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554 +15,4337.461148529906,2.628159462600572,0.0,676.6346241751016,0.6680622499989113 +16,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586 +17,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295 +18,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005 +19,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879 +20,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957 +21,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418 +22,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706 +23,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824 +24,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733 +25,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746 +26,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593 +27,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348 +28,4358.332696369016,2.640805974943643,0.0,679.8905408149211,0.671276916997158 +29,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551 +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242 +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093 +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832 +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005 +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286 +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888 +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056 +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718 +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019 +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522 +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947 +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863 +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808 +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149 +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736 +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961 +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928 +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731 +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366 +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125 +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944 +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427 +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008 +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724 +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941 +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141 +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581 +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955 +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355 +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641 +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826 +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989 +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705 +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731 +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786 +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694 +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159 +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917 +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899 +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922 +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615 +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488 +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839 +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955 +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446 +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393 +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975 +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217 +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491 +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536 +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475 +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606 +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018 +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269 +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302 +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841 +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071 +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335 +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998 +29,4298.143686713266,2.320919342687324,0.0,669.4526064028538,0.6634929580031894 +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043 +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336 +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125 +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834 +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116 +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327 +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987 +7,4337.0403644270955,2.031509830681979,0.0,678.790710966559,0.6709766249987297 +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983 +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326 +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708 +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113 +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485 +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637 +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956 +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545 +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394 +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118 +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574 +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509 +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263 +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787 +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361 +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064 +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606 +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084 +26,4347.693469734016,2.03649984376459,0.0,680.4580297640961,0.6726247499973397 +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489 +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278 +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626 +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824 +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309 +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063 +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915 +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849 +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294 +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797 +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292 +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422 +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556 +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638 +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283 +12,4356.767493437678,2.397615735537004,0.0,680.5232662699196,0.6708844999957364 +13,4341.809499462903,2.389384054186092,0.0,678.1868407131525,0.6685811670031399 +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968 +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453 +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709 +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409 +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754 +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893 +20,4375.239322141577,2.407781149971288,0.0,683.4085497335172,0.6737289170050644 +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018 +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538 +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116 +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911 +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852 +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635 +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468 +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446 +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469 +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449 +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021 +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229 +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491 +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962 +5,4345.360137259517,1.6675467938398043,0.0,679.7254241049811,0.6724117499979911 +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415 +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838 +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865 +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737 +10,4329.558075685815,1.6614826987404503,0.0,677.2535776605824,0.6699664999978268 +11,4307.3984058292945,1.6529788497487543,0.0,673.7872387345873,0.6665374580043135 +12,4349.584627244564,1.6691679562999129,0.0,680.3862423469704,0.6730654580023838 +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554 +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981 +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243 +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875 +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369 +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125 +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987 +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684 +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822 +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829 +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659 +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864 +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879 +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664 +27,4334.978371818408,1.6635627558938415,0.0,678.1014505574477,0.6708052499961923 +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682 +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487 +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649 +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086 +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261 +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379 +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596 +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012 +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358 +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984 +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149 +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144 +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066 +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439 +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846 +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843 +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685 +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386 +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428 +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229 +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533 +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505 +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795 +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432 +22,4392.603872271309,2.607442063569521,0.0,685.7572627187839,0.6731581249987357 +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675 +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446 +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581 +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689 +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216 +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154 +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794 +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029 +1,4354.354070461016,2.273796674817034,0.0,681.0021041077019,0.6721263750005164 +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739 +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867 +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185 +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036 +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834 +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246 +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938 +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276 +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405 +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806 +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341 +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212 +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047 +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004 +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738 +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917 +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045 +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948 +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894 +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339 +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831 +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966 +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685 +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241 +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349 +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466 +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023 +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449 +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299 +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385 +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045 +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057 +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268 +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344 +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375 +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743 +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125 +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514 +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048 +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856 +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496 +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685 +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462 +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559 +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298 +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533 +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415 +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282 +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979 +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028 +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217 +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957 +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171 +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815 +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784 +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544 +28,4332.967360737383,2.240071707660648,0.0,676.2341844648398,0.6700551249959972 +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539 +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088 +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537 +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334 +3,4348.094503970354,1.7675587619781763,0.0,678.475763277057,0.6687571250004112 +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395 +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458 +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595 +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057 +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031 +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331 +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702 +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254 +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906 +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986 +14,4346.65978133577,1.766975527974994,0.0,678.2518894551563,0.6685364579971065 +15,4367.501700837171,1.7754480479254011,0.0,681.5040582451767,0.6717420419954578 +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579 +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937 +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709 +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252 +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354 +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782 +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695 +23,4317.882204189577,1.755277056705152,0.0,673.7614422945209,0.6641103330039186 +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662 +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897 +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202 +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887 +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396 +29,4419.641433587555,1.7966435489399235,0.0,689.6399313138453,0.679761375002272 +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463 +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947 +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871 +3,4335.694701631531,2.062035021448992,0.0,673.6867966850125,0.6660807919979561 +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711 +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248 +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867 +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616 +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431 +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603 +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623 +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934 +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854 +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233 +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968 +15,4422.4905613437695,2.103314704351033,0.0,687.1732685699118,0.6794149999986985 +16,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684 +17,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233 +18,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367 +19,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686 +20,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466 +21,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982 +22,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603 +23,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318 +24,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496 +25,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769 +26,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032 +27,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459 +28,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574 +29,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194 +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536 +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493 +2,5399.907734117013,5.218201322461614,113.57066190351168,759.8964129645852,0.6863256669967086 +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003 +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715 +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272 +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599 +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276 +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962 +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584 +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608 +11,5399.536300795058,5.2178423878376785,113.56284993147356,759.8441433957505,0.6862784580007428 +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153 +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151 +14,5409.343253817727,5.227319337769412,113.7691094086502,761.224216684217,0.687524916997063 +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099 +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416 +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084 +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481 +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695 +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285 +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882 +22,5438.732295420172,5.25571944075392,114.38721865640856,765.3599590697888,0.6912602500015055 +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235 +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406 +25,5438.364150832097,5.255363684198263,114.37947585290104,765.3081523046171,0.6912134590020287 +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145 +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306 +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348 +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703 +0,4595.378147494374,2.7001478144444446,0.0,709.7629052500422,0.6829660829971544 +1,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479 +2,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886 +3,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246 +4,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568 +5,4606.5699898098865,2.7067239062475346,0.0,711.4915017359026,0.684629416995449 +6,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654 +7,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804 +8,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281 +9,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404 +10,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845 +11,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495 +12,4503.148936965444,2.645955864784455,0.0,695.5179682039748,0.6692589580052299 +13,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871 +14,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482 +15,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759 +16,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602 +17,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186 +18,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621 +19,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419 +20,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636 +21,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363 +22,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023 +23,4462.746741007515,2.622216381848967,0.0,689.2777896895653,0.6632543750019977 +24,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533 +25,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954 +26,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133 +27,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709 +28,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768 +29,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695 +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011 +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471 +2,4382.027550348223,1.966185465922483,0.0,684.3325176731897,0.6720537090004655 +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344 +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364 +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557 +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387 +7,4368.331000730204,1.9600399188023856,0.0,682.1935547899488,0.6699531249978463 +8,4367.809372487584,1.9598058678162904,0.0,682.1120931458903,0.6698731249998673 +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433 +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591 +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015 +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553 +13,4356.402555742098,1.9546877080056264,0.0,680.330713286365,0.668123707997438 +14,4365.2036763306705,1.958636709965622,0.0,681.7051667651533,0.6694734999982757 +15,4360.810862240808,1.9566656846539945,0.0,681.0191497350809,0.6687997920016642 +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262 +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621 +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128 +19,4438.056671531104,1.9913253452300512,0.0,693.0824739711713,0.6806466670022928 +20,4475.827721362907,2.00827295415278,0.0,698.9811036191074,0.6864394590011216 +21,4374.899715425766,1.962987255672319,0.0,683.2193778852723,0.6709605420037406 +22,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819 +23,4370.521024384246,1.96102256727484,0.0,682.5355664235396,0.6702890000015032 +24,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454 +25,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797 +26,4382.123445150023,1.9662284932570664,0.0,684.3474933734551,0.6720684159954544 +27,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432 +28,4361.726697985227,1.9570766138207232,0.0,681.162173979806,0.6689402499978314 +29,4360.017283100929,1.9563096111804792,0.0,680.8952180608669,0.6686780840027495 +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424 +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305 +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748 +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677 +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616 +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506 +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521 +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271 +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755 +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792 +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214 +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096 +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535 +13,4363.96912667838,2.588947138539631,0.0,676.9432934681511,0.6655433749983786 +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162 +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428 +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266 +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628 +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434 +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379 +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164 +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172 +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261 +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249 +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646 +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692 +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895 +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225 +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484 +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813 +0,4389.025421830659,1.6062307124723365,0.0334631398431736,684.0535046741562,0.6730389170043054 +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023 +2,4354.233157511607,1.5934979533436806,0.0331978740279933,678.63094088024,0.667703667000751 +3,4357.945080142954,1.5948563879754634,0.0332261747494888,679.2094642290505,0.6682728750020033 +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661 +5,4408.816460337069,1.6134735444966395,0.0336140321770133,687.1380457625065,0.6760737910008174 +6,4345.096674030936,1.5901543180351092,0.0331282149590647,677.2069701932021,0.6663026250025723 +7,4424.448338877007,1.6191942685734702,0.0337332139286139,689.5743591287267,0.678470874998311 +8,4389.556078381045,1.6064249143206022,0.0334671857150125,684.1362103862865,0.6731202909941203 +9,4359.39441815639,1.5953867952996852,0.0332372249020767,679.4353514482535,0.6684951249990263 +10,4364.926572416989,1.5974113714243328,0.0332794035713402,680.2975678053377,0.6693434580010944 +11,4336.208818024484,1.586901671738146,0.0330604514945447,675.8217494514829,0.6649397090004641 +12,4360.874458026974,1.595928438436221,0.0332485091340879,679.6660237190256,0.668722082999011 +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759 +14,4406.642727210601,1.6126780337458744,0.0335974590363723,686.7992576215242,0.6757404580057482 +15,4401.9515346063135,1.6109612203499777,0.0335616920906245,686.0681097165467,0.6750210829995922 +16,4349.9085088683905,1.5919152822940132,0.0331649017144586,677.9569208469628,0.6670404999968014 +17,4371.0961810783265,1.5996692336974665,0.0333264423686972,681.2591349009085,0.6702895420021378 +18,4354.880661070511,1.5937349171346793,0.0332028107736391,678.7318578347315,0.6678029589966172 +19,4358.4390615102575,1.5950371679817958,0.0332299409996207,679.2864539142473,0.6683486250040005 +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141 +21,4353.926660820881,1.5933857862107526,0.033195537212724,678.5831717025042,0.6676566669993917 +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694 +23,4390.797833401572,1.606879353486394,0.0334766531976332,684.3297446660181,0.6733107089967234 +24,4370.716046913472,1.599530117809139,0.0333235441210237,681.199888921967,0.6702312499983236 +25,4326.591936832465,1.5833822275690632,0.0329871297410221,674.3229061659748,0.6634649999978137 +26,4357.462510925597,1.5946797844192484,0.0332224955087343,679.1342531895475,0.6681988750060555 +27,4363.351975051161,1.5968351235319895,0.0332673984069164,680.0521582341861,0.6691019999998389 +28,4369.617223686835,1.599127986710644,0.033315166389805,681.0286313403956,0.67006274999585 +29,4413.620958856811,1.6152318239183203,0.0336506629982983,687.8868530112147,0.6768105410010321 +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707 +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797 +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437 +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597 +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613 +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439 +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201 +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153 +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435 +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157 +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486 +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289 +12,4818.831734850124,2.8785491743233154,0.0,724.0955343752076,0.7059918749946519 +13,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356 +14,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292 +15,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317 +16,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879 +17,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976 +18,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954 +19,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227 +20,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144 +21,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737 +22,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129 +23,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405 +24,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877 +25,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048 +26,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602 +27,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938 +28,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162 +29,4545.066951538386,2.715014642652162,0.0,682.9586223656848,0.6658834579939139 +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854 +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071 +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433 +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542 +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617 +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172 +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277 +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914 +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907 +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628 +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385 +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806 +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976 +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619 +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589 +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459 +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566 +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083 +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654 +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998 +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395 +21,4364.406018298075,2.093846030238117,0.0,678.904648566254,0.6681513339935918 +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177 +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178 +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715 +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321 +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689 +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114 +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263 +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523 +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006 +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721 +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177 +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329 +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873 +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295 +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759 +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249 +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635 +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924 +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713 +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727 +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946 +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714 +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466 +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588 +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919 +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543 +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764 +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398 +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131 +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727 +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806 +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098 +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595 +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957 +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162 +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392 +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415 +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..d9b6b578a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/out-tmp/fetchtype-n1000/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.8360981389177,0.0,0.0,79.91504063021144,0.1259272919996874 +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777 +2,378.69492235952407,0.0,0.0,81.38913961900961,0.1282501250025234 +3,377.1005429822752,0.0,0.0,81.04647548997387,0.1277101669984404 +4,376.1059449323693,0.0,0.0,80.83271640642396,0.1273733330017421 +5,377.0002693980719,0.0,0.0,81.02492468413269,0.1276762080015032 +6,376.09511706560784,0.0,0.0,80.83038928053028,0.1273696659991401 +7,373.9279005486811,0.0,0.0,80.36461095273609,0.1266357089989469 +8,375.2913456412782,0.0,0.0,80.65764266890704,0.1270974580038455 +9,375.9660567759833,0.0,0.0,80.8026516339147,0.1273259579975274 +10,380.76937419502184,0.0,0.0,81.83498095488036,0.1289526659966213 +11,374.6659725434551,0.0,0.0,80.52323743829143,0.126885666999442 +12,367.4374331842578,0.0,0.0,78.96967924563978,0.1244376249960623 +13,367.6221062246298,0.0,0.0,79.00936918859718,0.1245001670031342 +14,373.8652749683743,0.0,0.0,80.35115145856713,0.1266145000045071 +15,374.382871422958,0.0,0.0,80.46239332536042,0.126789791000192 +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078 +17,373.0515349216383,0.0,0.0,80.17626238990805,0.1263389160012593 +18,373.3190099077397,0.0,0.0,80.23374813292452,0.1264295000000856 +19,372.9278900370712,0.0,0.0,80.14968862253218,0.1262970419993507 +20,374.2486437648836,0.0,0.0,80.43354510755047,0.1267443329998059 +21,375.006771060872,0.0,0.0,80.59648187986771,0.1270010829975945 +22,375.173975427608,0.0,0.0,80.63241745424612,0.1270577090035658 +23,379.6903796752694,0.0,0.0,81.6030833760348,0.1285872500011464 +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745 +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546 +26,377.5824609660864,0.0,0.0,81.15004933729386,0.1278733750004903 +27,377.7160744515755,0.0,0.0,81.17876555708816,0.1279186250030761 +28,375.568662234418,0.0,0.0,80.71724357080743,0.1271913749951636 +29,375.75431854819095,0.0,0.0,80.757144838954,0.1272542500009876 +0,384.9922799870706,0.0,0.0,81.6414086697934,0.1287048750018584 +1,382.1713775858955,0.0,0.0,81.0432085039104,0.127761832998658 +2,387.3060348462912,0.0,0.0,82.13206319935875,0.1294783750054193 +3,382.6248077427939,0.0,0.0,81.13936283911889,0.1279134170035831 +4,382.57595115897095,0.0,0.0,81.1290023188346,0.1278970839994144 +5,380.9924394855085,0.0,0.0,80.79320305638996,0.1273677080025663 +6,381.0339464626488,0.0,0.0,80.80200502011628,0.1273815839958842 +7,373.8850362618945,0.0,0.0,79.28600812983309,0.1249916669985395 +8,375.0913924440434,0.0,0.0,79.54182785191026,0.125394957998651 +9,379.9175739652012,0.0,0.0,80.5652672255431,0.1270083749986952 +10,380.5149594438619,0.0,0.0,80.6919487060091,0.1272080839989939 +11,383.2371466215314,0.0,0.0,81.26921533549904,0.1281181250014924 +12,380.5183216338946,0.0,0.0,80.69266169155388,0.1272092079962021 +13,380.6673860889716,0.0,0.0,80.72427227890252,0.1272590410007978 +14,361.8152226748145,0.0,0.0,76.72648516053064,0.1209566670004278 +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263 +17,380.8158283426864,0.0,0.0,80.7557509223179,0.1273086660003173 +18,365.9374543718208,0.0,0.0,77.6006450336018,0.1223347499981173 +19,378.25367465054006,0.0,0.0,80.21242097122808,0.1264521250050165 +20,356.6132616527771,0.0,0.0,75.62335803886796,0.1192176250042393 +21,384.7918642445624,0.0,0.0,81.59890853566469,0.1286378750010044 +22,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591 +23,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283 +24,382.10669117039305,0.0,0.0,81.02949111174972,0.1277402080013416 +25,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +26,363.2618803228803,0.0,0.0,77.03326317762489,0.1214402920013526 +27,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759 +28,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602 +29,380.0084340815053,0.0,0.0,80.58453500900934,0.1270387499971548 +0,390.2923708501913,0.4469127826171484,0.0,83.81333569389291,0.1297804999994696 +1,365.9657287665602,0.4190570310900451,0.0,78.58931090750231,0.121691375003138 +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035 +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715 +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.1247413749952102 +5,383.3887996646965,0.4390076980217611,0.0,82.33082829054258,0.1274849160035955 +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.1267657089993008 +7,372.53711365314894,0.4265817385264631,0.0,80.00048296365516,0.1238765000016428 +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.1270593330045812 +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.1271557080035563 +10,381.75469649055145,0.4371365325796854,0.0,81.97991280225177,0.1269415420028963 +11,381.439053481218,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572 +12,381.4226364679471,0.4367563000161465,0.0,81.90860457225888,0.1268311249950784 +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.1209846669953549 +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.1269026670051971 +15,384.03863484277593,0.4397518059505053,0.0,82.47037714671785,0.1277009999976144 +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.1271295830010785 +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.1265630839989171 +18,383.1444573623307,0.4387279085449043,0.0,82.27835700249821,0.1274036670001805 +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.1213963339978363 +20,337.2567860558492,0.3861832307518752,0.0,72.42420896715937,0.1121450420032488 +21,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588 +22,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.1273649170034332 +23,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.1270068339945282 +24,381.2948250919911,0.436609946815457,0.0,81.88115771816032,0.1267886249988805 +25,375.600202278002,0.4300891948924535,0.0,80.65826593444629,0.1248950420049368 +26,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.1272384590047295 +27,380.0551779472132,0.4351904618438977,0.0,81.61494969041713,0.1263764160030405 +28,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.1245102920001954 +29,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.1261221669992664 +0,596.4459331278491,0.4886326329094673,23.45436637965443,115.49181302124482,0.1359050419996492 +1,554.2467896523963,0.454061387742615,21.79494661164552,107.3206522885938,0.1262896249972982 +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.128024291996553 +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.1317127079964848 +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885487,0.1296312500053318 +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371764,0.1249224590064841 +6,574.285027647265,0.4704775227960507,22.58292109421043,111.20072306658084,0.1308554999995976 +7,568.8810812926358,0.4660503913685354,22.3704187856897,110.15433893132028,0.1296241670061135 +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196 +9,573.1562154950751,0.4695527542238312,22.538532202743895,110.98214740904696,0.130598290998023 +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.1330455419956706 +11,542.9270608157159,0.444787808029728,21.349814785426947,105.12877548359786,0.1237103329985984 +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095 +13,560.8248965977349,0.4594504390173964,22.053621072835032,108.5943930506118,0.1277885000017704 +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.135394859954,0.130778625003586 +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902384,0.1249148339993553 +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.1294760829987353 +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373 +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913752,0.1291372500054421 +19,582.8598113728299,0.4775023324489214,22.92011195754823,112.86108700524863,0.1328093339980114 +20,575.8457576853292,0.4717561359701918,22.644294526569208,111.50293242324037,0.1312111249935696 +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062836,0.1310481670006993 +22,561.1286338518851,0.4596992728612786,22.065565097341377,108.65320670699792,0.127857708997908 +23,581.2049042884294,0.4761465656292358,22.85503515020332,112.54064183336725,0.13243225000042 +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.1302706669957842 +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.1308044999968842 +26,558.5815399432987,0.457612590508876,21.965404344426048,108.16000442813365,0.1272773329983465 +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.1308387090030009 +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.1301158330024918 +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332224,0.131808792000811 +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.1269404159975238 +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.1279510000022128 +2,415.0127574793532,1.4175777337453508,0.0,92.1425526934478,0.127556833998824 +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.1269669169996632 +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.1270766669986187 +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.1233426670005428 +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818 +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338908,0.1287382910013548 +8,416.11991185189385,1.421359490710763,0.0,92.3883668961996,0.1278971249994356 +9,411.9964417244347,1.4072747684146274,0.0,91.4728599469508,0.1266297499969368 +10,413.4103800010833,1.412104420953603,0.0,91.78678736198415,0.127064332998998 +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.1217907500031287 +12,368.7876480349551,1.259684549241063,0.0,81.87949570066912,0.1133492500011925 +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.126919041002111 +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.1270633339954656 +15,415.7098276987633,1.419958747832471,0.0,92.2973186091106,0.1277710830036085 +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.1279709580048802 +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.1204881249941536 +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976 +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.1281227910003508 +20,411.35644206336633,1.405088692799397,0.0,91.3307650319608,0.1264330419944599 +21,434.2858446220848,1.4834096839726385,0.0,96.42162945822147,0.1334805410006083 +22,425.7506982570446,1.454255800812937,0.0,94.52662705284092,0.1308572089983499 +23,343.1229552610153,1.1720205043073066,0.0,76.18133277997494,0.1054610419960226 +24,425.9506550579292,1.4549388022473182,0.0,94.57102214607568,0.1309186670041526 +25,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.1300685829992289 +26,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162 +27,414.45965044482983,1.4156884611811038,0.0,92.01974997677176,0.1273868330026744 +28,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.1280377500006579 +29,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.1202185420042951 +0,391.0022498249037,0.0,0.0,82.00330714172952,0.1264092919955146 +1,388.85277091672145,0.0,0.0,81.5525056970287,0.1257143750044633 +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597 +3,392.66726186303595,0.0,0.0,82.35250332568698,0.1269475829976727 +4,399.7876812973492,0.0,0.0,83.84583985280774,0.1292495829984545 +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936 +6,394.38228386701905,0.0,0.0,82.71218789581523,0.1275020419998327 +7,392.0421898742136,0.0,0.0,82.22140952684555,0.1267454999979236 +8,396.18906710609906,0.0,0.0,83.09111717552949,0.1280861670020385 +9,394.03494844532105,0.0,0.0,82.63934265444013,0.1273897499995655 +10,392.7300279752369,0.0,0.0,82.36566700640546,0.1269678750031744 +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105 +12,394.3054687072889,0.0,0.0,82.6960777656579,0.1274772079996182 +13,373.9605683304472,0.0,0.0,78.42922478689076,0.1208997920039109 +14,394.4120553877859,0.0,0.0,82.71843175544166,0.1275116670003626 +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296 +16,390.35114282852976,0.0,0.0,81.86675312693883,0.1261987919933744 +17,396.3350882853156,0.0,0.0,83.12174160189497,0.1281333750011981 +18,343.90009686569954,0.0,0.0,72.12476470909637,0.1111813749957946 +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461 +20,395.20003402797175,0.0,0.0,82.88369130185403,0.1277664169974741 +21,392.31580638784453,0.0,0.0,82.27879400229646,0.126833959002397 +22,345.98874293694035,0.0,0.0,72.56280793101395,0.1118566250006551 +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976 +24,392.7198453431928,0.0,0.0,82.36353144451702,0.1269645830034278 +25,410.9331853581329,0.0,0.0,86.18334096221345,0.132852874994569 +26,396.49541525584135,0.0,0.0,83.1553663235251,0.1281852079991949 +27,395.588223713584,0.0,0.0,82.96510474137456,0.1278919169999426 +28,392.22867867129474,0.0,0.0,82.2605210616574,0.1268057909983326 +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405 +0,375.7903775249154,0.0,0.0,80.41439874522317,0.1264599169953726 +1,383.4508304762699,0.0,0.0,82.0536390106512,0.1290377909972448 +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519 +3,378.9841223881726,0.0,0.0,81.09781984454986,0.127534667000873 +4,377.41585176705246,0.0,0.0,80.76222972141316,0.1270069169986527 +5,378.5934796234818,0.0,0.0,81.01422722237132,0.1274032090004766 +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686 +7,381.4723549525934,0.0,0.0,81.63027021468451,0.1283719999992172 +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033 +9,376.8108781888688,0.0,0.0,80.63277300975706,0.1268033329979516 +10,377.2519165934144,0.0,0.0,80.72714966292916,0.126951749996806 +11,367.1828436771961,0.0,0.0,78.57249511905164,0.1235633340038475 +12,377.61655773184407,0.0,0.0,80.80517826519866,0.1270744580033351 +13,377.07560168009087,0.0,0.0,80.68942049637064,0.1268924169999081 +14,378.470650841746,0.0,0.0,80.98794341303869,0.1273618750055902 +15,378.9410339449637,0.0,0.0,81.08859946143005,0.1275201669996022 +16,378.1692783957104,0.0,0.0,80.92345351256293,0.1272604580008192 +17,360.8712520229351,0.0,0.0,77.22189415011354,0.1214393749978626 +18,376.8633777379917,0.0,0.0,80.64400725078504,0.1268209999980172 +19,378.58864776937514,0.0,0.0,81.01319326656494,0.1274015829985728 +20,377.4466793231688,0.0,0.0,80.76882642941354,0.1270172910008113 +21,377.031895147184,0.0,0.0,80.68006784985506,0.126877709000837 +22,374.3029586664954,0.0,0.0,80.09610987904745,0.1259593750000931 +23,347.9967234803297,0.0,0.0,74.46690750383311,0.1171068749972619 +24,376.47582842715946,0.0,0.0,80.56107658869635,0.1266905829979805 +25,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271 +26,378.17670742869615,0.0,0.0,80.92504323187597,0.1272629579980275 +27,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385 +28,376.6962243120295,0.0,0.0,80.60823852691433,0.1267647499989834 +29,356.6068604960436,0.0,0.0,76.30936817510647,0.1200043339995318 +0,376.57177593891714,0.0,0.0,79.74107126114866,0.1257639160030521 +1,380.690278713343,0.0,0.0,80.61318607221193,0.1271393749993876 +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998 +3,321.82332515261595,0.0,0.0,68.14779636766306,0.1074795410022488 +4,377.175622428229,0.0,0.0,79.86893895865455,0.1259655829999246 +5,380.9577662999694,0.0,0.0,80.66982798769662,0.1272287079991656 +6,381.55025850883186,0.0,0.0,80.79529135608311,0.1274265829997602 +7,386.5080296823765,0.0,0.0,81.84512570296262,0.1290823329982231 +8,378.1668532813673,0.0,0.0,80.07883735026734,0.1262966249996679 +9,364.021648680628,0.0,0.0,77.0835152360204,0.1215725420042872 +10,381.3288079055205,0.0,0.0,80.7483980160407,0.1273526250006398 +11,372.39002208305175,0.0,0.0,78.85556269804478,0.1243673330027377 +12,382.33663003234,0.0,0.0,80.96180969787187,0.1276892079986282 +13,380.7838498071915,0.0,0.0,80.63300024772721,0.1271706249972339 +14,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207 +15,359.0034919453096,0.0,0.0,76.02089392609103,0.1198966250012745 +16,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113 +17,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118 +18,382.58927200969583,0.0,0.0,81.01530797683783,0.1277735830008168 +19,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988 +20,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475 +21,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802 +22,380.5168592731632,0.0,0.0,80.57646358576704,0.1270814579984289 +23,379.91950137360783,0.0,0.0,80.44996988156394,0.1268819580000126 +24,380.7278329052986,0.0,0.0,80.62113837158283,0.1271519169968087 +25,381.2378568006439,0.0,0.0,80.7291386370892,0.1273222500021802 +26,381.37821343052354,0.0,0.0,80.75885989805546,0.1273691249953117 +27,358.5115594791486,0.0,0.0,75.91672461668911,0.1197323340020375 +28,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729 +29,378.77381981874754,0.0,0.0,80.2073657345035,0.1264993340009823 +0,373.7002810104703,0.0,0.0,80.05956189892107,0.1265379169999505 +1,377.3721755823788,0.0,0.0,80.84620907502472,0.127781249997497 +2,375.5968928291588,0.0,0.0,80.46588193401963,0.127180124996812 +3,376.8571996022623,0.0,0.0,80.73588335826284,0.127606874993944 +4,358.4247515000995,0.0,0.0,76.78701364964624,0.1213655000028666 +5,376.5106839164296,0.0,0.0,80.66164767954228,0.127489541999239 +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804 +7,374.2099647272519,0.0,0.0,80.1687538293157,0.1267105000006267 +8,375.82244863222303,0.0,0.0,80.51420381038605,0.1272565000035683 +9,375.6955792262256,0.0,0.0,80.48702398318585,0.1272135410035844 +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104 +11,367.9267647010967,0.0,0.0,78.82267445239606,0.1245829580002464 +12,374.54122384829685,0.0,0.0,80.23972102268834,0.1268226669999421 +13,375.0623514767027,0.0,0.0,80.35136463588229,0.1269991250010207 +14,374.88404796498406,0.0,0.0,80.31316583925673,0.126938749999681 +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875 +16,375.49242102266754,0.0,0.0,80.44350044948914,0.1271447500039357 +17,373.65007545091566,0.0,0.0,80.04880612669643,0.1265209169941954 +18,378.19699950514024,0.0,0.0,81.02291496810425,0.128060542003368 +19,372.4382495153243,0.0,0.0,79.7891909793948,0.1261105829980806 +20,363.61881019547434,0.0,0.0,77.8997611769015,0.1231242499998188 +21,384.24356897781905,0.0,0.0,82.31829987299409,0.1301079589975415 +22,368.9578241234784,0.0,0.0,79.04356314272411,0.1249320830029319 +23,378.87735844050263,0.0,0.0,81.16867145014876,0.1282909170040511 +24,329.8612412749815,0.0,0.0,70.66771904078234,0.1116936659964267 +25,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101 +26,377.9771021827879,0.0,0.0,80.97580533456942,0.1279860830036341 +27,376.3770485675717,0.0,0.0,80.63301835270623,0.1274442919966532 +28,376.4166725657793,0.0,0.0,80.64150718747139,0.1274577090007369 +29,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799 +0,403.1280711860908,0.0,0.0,84.25633205896268,0.1253158330000587 +1,387.8453998928396,0.0,0.0,81.06215651211087,0.1205650830015656 +2,419.1526392551472,0.0,0.0,87.60556875278897,0.1302972080011386 +3,406.2162918923644,0.0,0.0,84.90178983751325,0.1262758330049109 +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548 +5,414.97228218567807,0.0,0.0,86.73184752485783,0.1289977080014068 +6,409.33346783722465,0.0,0.0,85.55329944517618,0.1272448339950642 +7,387.6850922721412,0.0,0.0,81.02865119931684,0.1205152499969699 +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134 +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388 +10,443.8168553412664,0.0,0.0,92.7605468579152,0.137964292000106 +11,409.103591653989,0.0,0.0,85.50525386013376,0.1271733750036219 +12,410.61660425324544,0.0,0.0,85.8214831209671,0.1276437080014147 +13,402.2978448831,0.0,0.0,84.08280947874876,0.1250577500031795 +14,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471 +15,406.7088823894727,0.0,0.0,85.00474438585651,0.1264289590035332 +16,409.91545590084,0.0,0.0,85.6749386537732,0.1274257499972009 +17,408.4102153116807,0.0,0.0,85.36033379250497,0.1269578329956857 +18,407.3196873856032,0.0,0.0,85.13240651671686,0.1266188329973374 +19,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295 +20,408.7449076956601,0.0,0.0,85.43028663046836,0.1270618750058929 +21,406.67349330879034,0.0,0.0,84.9973478428064,0.1264179580030031 +22,408.2432069034229,0.0,0.0,85.32542797247262,0.1269059169935644 +23,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104 +24,403.50310985493286,0.0,0.0,84.3347175271935,0.125432417000411 +25,408.1030049222433,0.0,0.0,85.29612486627406,0.1268623340001795 +26,395.15070496407816,0.0,0.0,82.58901175705402,0.1228360000022803 +27,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865 +28,405.9890985754069,0.0,0.0,84.85430498859458,0.1262052080055582 +29,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786 +0,371.9505742570301,0.0,0.0,79.28333129496517,0.1256908330033184 +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039 +2,380.42500161272574,0.0,0.0,81.08970256598367,0.1285545409991755 +3,379.724029315134,0.0,0.0,80.94028642646145,0.1283176659999299 +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309 +5,376.13581758750024,0.0,0.0,80.17543916220671,0.1271051250005257 +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614 +7,376.2810664428482,0.0,0.0,80.20639976266224,0.1271542079994105 +8,380.54867753629713,0.0,0.0,81.11606477618137,0.1285963339978479 +9,379.31836647407073,0.0,0.0,80.85381713820637,0.1281805830003577 +10,381.0452130124147,0.0,0.0,81.22190407144627,0.1287641249946318 +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587 +12,376.2243494820515,0.0,0.0,80.19431022737417,0.1271350420065573 +13,329.24711978815566,0.0,0.0,70.18085273351087,0.1112603329966077 +14,372.8399531157799,0.0,0.0,79.47290733970135,0.1259913750036503 +15,374.9296776697505,0.0,0.0,79.91834373796102,0.1266975420003291 +16,374.12192675589216,0.0,0.0,79.74616714316706,0.1264245839993236 +17,375.5840417938985,0.0,0.0,80.05782508637942,0.1269186670033377 +18,375.37479914772064,0.0,0.0,80.01322385388747,0.1268479589998605 +19,375.09391603623067,0.0,0.0,79.95335205821166,0.1267530420009279 +20,378.31259142851826,0.0,0.0,80.63943059960772,0.1278407079953467 +21,378.55623535736214,0.0,0.0,80.69136465661818,0.1279230410000309 +22,376.64345322012633,0.0,0.0,80.28364451749893,0.1272766670008422 +23,376.4232347180749,0.0,0.0,80.23670372035055,0.1272022499979357 +24,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102 +25,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959 +26,369.4433498371993,0.0,0.0,78.74890248085369,0.1248435829984373 +27,376.9355548460999,0.0,0.0,80.34590760186201,0.1273753749992465 +28,378.0333122323057,0.0,0.0,80.57990068738393,0.1277463329970487 +29,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645 +0,381.15527652293935,0.0,0.0,81.51934415933158,0.1286932079965481 +1,385.36513808692746,0.0,0.0,82.41972564382412,0.130114624997077 +2,378.5353754336696,0.0,0.0,80.95901446769543,0.127808625002217 +3,375.9680451234962,0.0,0.0,80.40992831825284,0.1269417919975239 +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456 +5,376.0794774873806,0.0,0.0,80.43376084473613,0.1269794160034507 +6,376.188694437082,0.0,0.0,80.45711955090954,0.127016291997279 +7,378.75676516528466,0.0,0.0,81.00636405679074,0.1278833749965997 +8,378.5499353289353,0.0,0.0,80.96212845610434,0.127813541002979 +9,376.9519574623808,0.0,0.0,80.62036194863003,0.1272740000058547 +10,375.52600605674576,0.0,0.0,80.31538749189194,0.1267925419961102 +11,378.15886475244446,0.0,0.0,80.87848848342348,0.1276814999946509 +12,375.0297909482362,0.0,0.0,80.20925979879881,0.1266250000044237 +13,371.8400015295662,0.0,0.0,79.5270456004583,0.1255480000036186 +14,380.5503420202996,0.0,0.0,81.38996417444876,0.1284889580056187 +15,378.3637191494406,0.0,0.0,80.92230158826523,0.1277506670012371 +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861 +17,374.23394884006944,0.0,0.0,80.03904957029572,0.1263562919994001 +18,377.2002516134433,0.0,0.0,80.67346570345106,0.1273578340042149 +19,364.2633868236725,0.0,0.0,77.90660191302786,0.122989832998428 +20,380.7449517375222,0.0,0.0,81.43158620487097,0.1285546660001273 +21,374.3580929740989,0.0,0.0,80.06560081859438,0.126398208005412 +22,378.7710821980925,0.0,0.0,81.00942610314478,0.1278882089973194 +23,384.0539539971067,0.0,0.0,82.13929697430812,0.1296719170059077 +24,381.7317073342197,0.0,0.0,81.64262793521807,0.1288878340055816 +25,358.74814021678975,0.0,0.0,76.72703202651994,0.1211276659960276 +26,377.330689419243,0.0,0.0,80.70136300682668,0.1274018750045797 +27,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793 +28,368.4089550234593,0.0,0.0,78.7932326948375,0.124389541997516 +29,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174 +0,382.11192345358336,0.0,0.0,83.48578836048895,0.1285898329952033 +1,383.063317719908,0.0,0.0,83.69365389802014,0.1289099999994505 +2,378.283444669349,0.0,0.0,82.64932252442081,0.1273014580001472 +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752 +4,379.91545010812285,0.0,0.0,83.0058915093224,0.1278506669987109 +5,377.47332413675264,0.0,0.0,82.47232320254791,0.1270288329978939 +6,378.7013227559976,0.0,0.0,82.74062268900902,0.1274420840054517 +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177 +8,377.4120387598971,0.0,0.0,82.45893325659827,0.1270082089977222 +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708 +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298 +11,373.0895357637535,0.0,0.0,81.51453045685822,0.1255535829986911 +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769 +13,383.83679006238367,0.0,0.0,83.86264613386297,0.1291702920061652 +14,382.0622747139288,0.0,0.0,83.47494084719048,0.1285731250027311 +15,379.26022195757537,0.0,0.0,82.8627338757944,0.1276301670004613 +16,378.4614914107541,0.0,0.0,82.68822309689409,0.127361375001783 +17,376.1883756534947,0.0,0.0,82.19158101539543,0.126596416994289 +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035 +19,376.2270029142905,0.0,0.0,82.2000204990174,0.1266094159946078 +20,376.0207293733377,0.0,0.0,82.15495278946071,0.1265399999974761 +21,377.7483179042934,0.0,0.0,82.53240526245817,0.1271213750005699 +22,378.4316510205191,0.0,0.0,82.68170341417591,0.1273513329942943 +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608 +24,363.8453956857787,0.0,0.0,79.4948229451185,0.122442708001472 +25,374.7420925115319,0.0,0.0,81.87558959799095,0.1261097080059698 +26,384.3096389423701,0.0,0.0,83.96595660155066,0.1293294170027366 +27,378.8730519301984,0.0,0.0,82.7781429667409,0.1274998749941005 +28,376.8858236829585,0.0,0.0,82.34396306632436,0.1268311249950784 +29,376.7586678245342,0.0,0.0,82.31618139704467,0.1267883339969557 +0,356.33566462805965,0.0,0.0,78.6689939309365,0.1220669589965837 +1,365.621944433946,0.0,0.0,80.71914597073523,0.1252480830007698 +2,369.7227878911292,0.0,0.0,81.62449803360438,0.126652874998399 +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455 +4,381.5487589223497,0.0,0.0,84.2353431878597,0.1307040000028791 +5,374.4612274067481,0.0,0.0,82.67061355472525,0.128276082999946 +6,376.2095751151944,0.0,0.0,83.05660005262041,0.1288750000021536 +7,417.9745566255801,0.0,0.0,92.27714518215636,0.1431820840007276 +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442 +9,368.9749927454226,0.0,0.0,81.45940568496007,0.1263967090053483 +10,368.7472965391703,0.0,0.0,81.40913670195931,0.1263187090007704 +11,354.0226975037879,0.0,0.0,78.15835518571936,0.1212746249948395 +12,368.9847223569777,0.0,0.0,81.46155371230721,0.1264000419978401 +13,368.6611806740536,0.0,0.0,81.3901247165121,0.1262892090016976 +14,368.6304066460952,0.0,0.0,81.3833306679253,0.1262786669976776 +15,360.7548186281763,0.0,0.0,79.64462009953212,0.1235807920020306 +16,371.2739682072804,0.0,0.0,81.96695546066114,0.127184249999118 +17,300.1849544333428,0.0,0.0,66.27248042410939,0.1028318750031758 +18,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106 +19,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356 +20,369.8492877304773,0.0,0.0,81.65242567622282,0.1266962090012384 +21,368.8047051618492,0.0,0.0,81.42181092752081,0.1263383749974309 +22,366.89142369116024,0.0,0.0,80.99941164687931,0.1256829580015619 +23,351.5059977726157,0.0,0.0,77.60273795306252,0.1204125000003841 +24,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249 +25,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876 +26,371.2468431633174,0.0,0.0,81.96096700614838,0.1271749579973402 +27,392.0700979045949,0.0,0.0,86.55816190824662,0.1343082080056774 +28,371.75271404089193,0.0,0.0,82.07264921185542,0.1273482499964302 +29,351.3996928408619,0.0,0.0,77.57926878379007,0.1203760839998722 +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.1290693749979254 +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051 +2,379.3227523689651,0.739289559896991,0.0,82.73322256665416,0.1275123750019702 +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.1282127079975907 +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.1270318749957368 +5,377.3349727742443,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827 +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.1275647080037742 +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.1269037500023841 +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.127749125000264 +9,380.193747573396,0.7409871054761438,0.0,82.92319334919391,0.1278051670014974 +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.1276764170033857 +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.127789959005895 +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.127124749997165 +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.1266850829997565 +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841 +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.1375446250021923 +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.1272327080005197 +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.1276012079979409 +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.1282910420050029 +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.1266605839991825 +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.1268799999961629 +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.1255359169954317 +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.1272838750010123 +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.1268487090055714 +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.1266794170005596 +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.1264934169957996 +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865 +27,330.59219602187005,0.6443150524876986,0.0,72.10471178294154,0.1111312089997227 +28,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.1270743339991895 +29,323.76578983555265,0.6310105755122394,0.0,70.61581985959697,0.1088364579991321 +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.1257333750036195 +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832 +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.1277571250029723 +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.1318783749957219 +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.1273030829979688 +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225 +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.1280105410041869 +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.1272239169993554 +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.1272712909994879 +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.1268018749979091 +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.1302960419998271 +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.1214435000001685 +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.1277919170024688 +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.1277310000004945 +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639 +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.1275388750000274 +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.127049499998975 +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.1213214579984196 +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.1275617919964133 +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.1269967919943155 +20,339.5262861430443,0.7393221107548216,0.0,72.86758723599522,0.1121294580007088 +21,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.1260682499996619 +22,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.1243212089975713 +23,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.1276745420036604 +24,386.3097856350467,0.8411936800693467,0.0,82.90804910763481,0.1275798329952522 +25,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.1271656670069205 +26,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733 +27,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888 +28,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.1284481249967939 +29,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.1226739999983692 +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808 +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.1277220839983783 +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.1272478329992736 +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.1273376659955829 +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101 +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.1282137920061359 +6,394.616409505073,0.6568873121251435,0.0,85.2570585105581,0.131947958994715 +7,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888 +8,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.1262204169979668 +9,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019 +10,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021 +11,378.5886374541328,0.630207123850405,0.0,81.79425091658413,0.1265887500048848 +12,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.1284940410041599 +13,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.1273608750052517 +14,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241 +15,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344 +16,376.1731498918869,0.6261862491629446,0.0,81.2723837071485,0.1257810829993104 +17,377.5617067268463,0.6284976719651376,0.0,81.5723820561068,0.1262453749950509 +18,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.1282457499983138 +19,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.1276990840051439 +20,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.1275388750000274 +21,370.9409249040661,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327 +22,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.1235482500051148 +23,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773 +24,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.1300859159964602 +25,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122 +26,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.1262704169930657 +27,380.6645552301474,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738 +28,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.1272568749991478 +29,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.1275444999992032 +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.1260774999973364 +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.1270055420027347 +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.1273317499944823 +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.1277807910009869 +4,382.865699575474,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585 +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.126890708997962 +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899 +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.1271131670000613 +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.1269129170032101 +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.1268732919998001 +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.1278685830038739 +11,379.158248535522,0.8729402693636388,0.0,81.98923606869253,0.127998458003276 +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.1279381250060396 +13,380.905955104168,0.8769640337118894,0.0,82.3671603970936,0.1285884590033674 +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.128263375001552 +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538 +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952 +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.1270275829956517 +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.1267205830008606 +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.1267619579957681 +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377 +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698 +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.1286793750041397 +23,377.2149146660136,0.868466110096197,0.0,81.5690092636505,0.127342415995372 +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235 +25,377.792424091372,0.8697957164947907,0.0,81.69388998770303,0.1275373750031576 +26,372.2949335054875,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435 +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024 +28,347.61244727258975,0.800312018868975,0.0,75.16776731069372,0.1173490420042071 +29,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907 +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546 +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422 +2,386.7646891747356,0.0,0.0,80.34820506063755,0.1234175829958985 +3,400.02309949515256,0.0,0.0,83.10256578957589,0.1276483750043553 +4,400.4175651822858,0.0,0.0,83.18451383397155,0.1277742499951273 +5,396.0818362122956,0.0,0.0,82.2837903446803,0.126390707999235 +6,397.7300808589709,0.0,0.0,82.6262039686948,0.1269166670026607 +7,395.98168657862607,0.0,0.0,82.26298481737118,0.1263587499997811 +8,396.5324500295691,0.0,0.0,82.37740284966543,0.1265344999992521 +9,398.14478456222105,0.0,0.0,82.71235634795994,0.1270489999951678 +10,399.33118701966725,0.0,0.0,82.95882483539796,0.127427583996905 +11,397.223970778421,0.0,0.0,82.52106242482209,0.1267551660057506 +12,402.9354331958688,0.0,0.0,83.70758685778524,0.128577707997465 +13,397.41304479758514,0.0,0.0,82.56034149679698,0.1268154999997932 +14,398.0741427062589,0.0,0.0,82.69768089674226,0.1270264580016373 +15,396.5969559370069,0.0,0.0,82.39080359183116,0.1265550839962088 +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509 +17,396.8564054927456,0.0,0.0,82.44470278865771,0.1266378750005969 +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872 +19,397.34449316119225,0.0,0.0,82.54610027702614,0.1267936250005732 +20,397.6506894306738,0.0,0.0,82.60971084266905,0.1268913329986389 +21,397.0926148741081,0.0,0.0,82.49377396899592,0.1267132500070147 +22,396.0943744971357,0.0,0.0,82.2863951033608,0.1263947089973953 +23,397.0390803449771,0.0,0.0,82.48265246942572,0.1266961670044111 +24,396.6367801479797,0.0,0.0,82.39907684934194,0.1265677920018788 +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732 +26,394.427458763678,0.0,0.0,81.94010266529867,0.1258627920033177 +27,406.09638297638475,0.0,0.0,84.36425652867271,0.1295863750056014 +28,407.3996475439181,0.0,0.0,84.63500246709813,0.1300022499999613 +29,408.0202694203579,0.0,0.0,84.76393319730442,0.1302002919983351 +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395 +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.1276939169983961 +2,379.7503451515355,0.911076889913938,0.0,81.4232790874938,0.1268921250011772 +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.1268949169971165 +4,380.9400699708801,0.913931214609362,0.0,81.67837114268114,0.1272896669979673 +5,312.09731859928553,0.7487673362520624,0.0,66.91761416208246,0.1042861250025453 +6,377.40880702846295,0.905459195820908,0.0,80.92122368577226,0.1261097089955001 +7,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.1234518330020364 +8,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277 +9,377.5661692958721,0.9058367310279496,0.0,80.95496414705343,0.1261622909951256 +10,380.5384223868755,0.9129676030252032,0.0,81.59225281851168,0.1271554579943767 +11,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.1257233749929582 +12,394.5627248223053,0.9466139657190548,0.0,84.59924071407701,0.1318416249996516 +13,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.126691417004622 +14,378.82859285824617,0.9088654706924336,0.0,81.22564373262378,0.1265841249987715 +15,379.1090329887456,0.9095382877817784,0.0,81.28577364509003,0.1266778329954831 +16,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.1235821249938453 +17,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205 +18,381.92828421094526,0.916302085809092,0.0,81.89025677990145,0.127619875005621 +19,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.1268732919998001 +20,383.9252904409535,0.92109319725482,0.0,82.31844018429187,0.1282871669973246 +21,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.1269927079993067 +22,379.801843560333,0.9112004421653628,0.0,81.43432099796371,0.1269093329974566 +23,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.1208661670025321 +24,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.127685334002308 +25,378.08752496595537,0.9070875399041048,0.0,81.06674939957796,0.1263364999977057 +26,375.8814036432744,0.901794730617417,0.0,80.59372907332693,0.1255993329978082 +27,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.1263170419988455 +28,378.28604288554345,0.9075638135693684,0.0,81.10931415344024,0.1264028340010554 +29,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943 +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298 +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315 +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.1230740000028163 +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065 +4,414.8404317742507,0.7109809081252971,0.0,85.55470261107743,0.1281313330036937 +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828 +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.1286632920018746 +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.126794959003746 +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.1242163330025505 +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521 +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514 +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.1251826670049922 +12,411.592562504149,0.7054144954368015,0.0,84.88487761756177,0.1271281669978634 +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.1268025829995167 +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.1264638749998994 +15,399.1943694562683,0.6841656540097638,0.0,82.32793369917492,0.1232987499970477 +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.1309235410008113 +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.1250162500000442 +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.1251117080028052 +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.1266198330049519 +20,359.6831412166489,0.6164487036276526,0.0,74.17932733652752,0.1110949579961015 +21,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764 +22,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.1272145830007502 +23,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064 +24,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.1268779590027406 +25,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714 +26,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.1281818329953239 +27,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.1278080830015824 +28,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.1285623750009108 +29,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.1284708340026554 +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871 +1,396.406509388618,1.2991178784215116,0.0,90.1306917272438,0.1337517080028192 +2,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.1283866669982671 +3,378.1783407682509,1.2393798590279257,0.0,85.98616481418068,0.1276013329988927 +4,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.1280753750033909 +5,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.1272267079984885 +6,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.1250958329983404 +7,376.4828302874184,1.2338232702067742,0.0,85.60065769245378,0.1270292500048526 +8,372.3979185608552,1.2204360484279575,0.0,84.67187395444776,0.1256509580052807 +9,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935 +10,375.9752882211583,1.232159934825762,0.0,85.48525818101977,0.1268579999959911 +11,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.1262761250036419 +12,380.0242615418349,1.2454293779493255,0.0,86.40587062691674,0.1282241660010186 +13,380.4472152044884,1.2468154971271983,0.0,86.50203732771672,0.1283668749965727 +14,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619 +15,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671 +16,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.1262934999977005 +17,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.1261303330029477 +18,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.1253175000019837 +19,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.1270073749983566 +20,374.82881226544566,1.2284026619859605,0.0,85.22458468426919,0.1264711670010001 +21,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837 +22,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595 +23,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.1281118750048335 +24,352.75184196457076,1.1560512092727298,0.0,80.20495822170533,0.1190221659999224 +25,378.32986245382807,1.2398764314253,0.0,86.02061620185799,0.1276524580025579 +26,377.6759852809123,1.2377335212926268,0.0,85.87194457184252,0.1274318329960806 +27,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.1273741659970255 +28,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.1267671660025371 +29,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.1263089579952065 +0,580.8490462076469,0.4375130425111193,22.313165168067087,110.42156095992172,0.1313430000009248 +1,577.9638128096457,0.4353397975853406,22.202329676852372,109.87306737519252,0.1306905840028775 +2,571.3580595604811,0.4303641447526656,21.948571382385943,108.61728914873044,0.129196875001071 +3,509.83055091581105,0.3840197671884549,19.585008126611203,96.92068124194776,0.1152841250004712 +4,561.9166389561877,0.423252581634535,21.585881663361288,106.82244002637763,0.1270619579954655 +5,588.3427741262249,0.44315754468051,22.601034778706012,111.84614646898105,0.133037499996135 +6,579.4248575746424,0.4364403006240425,22.25845533182617,110.15081741134487,0.1310209590010345 +7,589.9617378100206,0.4443769970178033,22.66322684790797,112.15391747810868,0.1334035840045544 +8,568.8925810737016,0.4285070719020871,21.853860667006444,108.148592531596,0.1286393750051502 +9,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355672,0.1280307499982882 +10,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.1297934160029399 +11,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034755,0.1305069580048439 +12,550.8068744156343,0.4148843714817339,21.15910294556843,104.71043252550533,0.1245497909985715 +13,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.1323175419965991 +14,576.6522047657539,0.4343518547977751,22.151944594686533,109.6237258147308,0.1303939999997965 +15,578.589761320147,0.4358112809063045,22.226375326221532,109.99206251181424,0.1308321250035078 +16,570.777621784413,0.4299269414912433,21.92627401605341,108.50694577175148,0.1290656249984749 +17,559.7279309023393,0.4216039806321577,21.50180301224005,106.40635849646996,0.1265670420034439 +18,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.1261816249971161 +19,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.1294468749983934 +20,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198 +21,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.1363984580020769 +22,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.1297899169949232 +23,590.8758797423774,0.4450655563271861,22.69834337268649,112.32769925457674,0.1336102920031407 +24,580.168923511577,0.4370007535575931,22.287038431437253,110.29226710942024,0.1311892090016044 +25,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.1283416670048609 +26,596.6714126054211,0.4494309266974027,22.92097726156754,113.42945157647527,0.1349207919993205 +27,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.1315066250026575 +28,602.7321027138048,0.4539960215122233,23.15379709712339,114.58161127550808,0.1362912499971571 +29,575.0345324443498,0.4331333751536327,22.08980213283527,109.31620029838992,0.130028207997384 +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531 +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089 +2,386.8253353097512,0.0,0.0,87.22500746639305,0.1195789579942356 +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987 +4,410.1044494159173,0.0,0.0,92.47420061992683,0.1267752089988789 +5,408.0670027544839,0.0,0.0,92.01477802261016,0.1261453749975771 +6,408.1467946849229,0.0,0.0,92.03277025603695,0.1261700410032062 +7,408.5973928664444,0.0,0.0,92.1343753634586,0.1263093340021441 +8,386.5837986845974,0.0,0.0,87.17054352101684,0.1195042920007836 +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258 +10,407.3952218840771,0.0,0.0,91.86329856641038,0.1259377079986734 +11,409.46030100316216,0.0,0.0,92.32895198964506,0.1265760839960421 +12,415.01542067501595,0.0,0.0,93.58157251530466,0.1282933330003288 +13,409.88663100545983,0.0,0.0,92.42508488022676,0.1267078749951906 +14,386.8309963950141,0.0,0.0,87.22628398103481,0.119580708000285 +15,408.6011647578864,0.0,0.0,92.13522588494506,0.1263105000034556 +16,406.44537592628774,0.0,0.0,91.64911838430376,0.1256440829965868 +17,396.8252034977494,0.0,0.0,89.4798716072401,0.1226702079948154 +18,405.77534837085153,0.0,0.0,91.49803428202073,0.1254369579983176 +19,415.27138496028545,0.0,0.0,93.6392897449062,0.1283724590030033 +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354 +21,361.9479179930077,0.0,0.0,81.61541390277617,0.1118886249969364 +22,407.4975254542064,0.0,0.0,91.88636693565569,0.1259693330066511 +23,409.9073893301796,0.0,0.0,92.42976566212856,0.1267142919969046 +24,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338 +25,414.45147178217695,0.0,0.0,93.45440802555076,0.1281190000008791 +26,386.3541211550232,0.0,0.0,87.11875367582502,0.1194332919985754 +27,409.1427411144483,0.0,0.0,92.25734560522376,0.1264779170014662 +28,409.6813478367339,0.0,0.0,92.37879570449192,0.1266444159991806 +29,405.9621635490298,0.0,0.0,91.54015912190069,0.1254947080014972 +0,392.6923196485306,0.0,0.0,80.61026913897126,0.1246850840034312 +1,400.5184957667552,0.0,0.0,82.21679448121304,0.1271699999997508 +2,398.0520646223312,0.0,0.0,81.71049560950932,0.12638687499566 +3,399.9544786756752,0.0,0.0,82.10101536551342,0.1269909170005121 +4,403.1854443963641,0.0,0.0,82.7642547600517,0.128016791997652 +5,381.7259833976352,0.0,0.0,78.3591446009504,0.121203125003376 +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361 +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702 +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854 +9,402.8376890448656,0.0,0.0,82.69286896747012,0.127906375004386 +10,414.9605369904961,0.0,0.0,85.18139748389932,0.1317555419955169 +11,400.0866242774884,0.0,0.0,82.12814167278938,0.1270328750033513 +12,394.6405270092331,0.0,0.0,81.01018915733403,0.1253036659982171 +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246 +14,404.0993175654207,0.0,0.0,82.95185089685027,0.1283069589990191 +15,388.2460478319902,0.0,0.0,79.69755669245045,0.1232733330034534 +16,399.35397808432066,0.0,0.0,81.97774706647837,0.1268002500000875 +17,378.67151729069445,0.0,0.0,77.73213632338405,0.1202332910033874 +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858 +19,402.932305515202,0.0,0.0,82.71229144852506,0.1279364170040935 +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364 +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568 +22,404.07320215275104,0.0,0.0,82.94649003202395,0.1282986670048558 +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844 +24,403.0031686498588,0.0,0.0,82.72683794223248,0.1279589170007966 +25,400.56206556674624,0.0,0.0,82.22573831109683,0.1271838339962414 +26,401.1814598637611,0.0,0.0,82.35288503255603,0.127380500001891 +27,401.3059963273414,0.0,0.0,82.37844936713687,0.1274200420011766 +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624 +29,402.8306027222338,0.0,0.0,82.69141431621779,0.1279041250018053 +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.1279306249998626 +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.1298666250004316 +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.1268119170053978 +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.1270387500044307 +4,411.469987685372,0.7956876725847174,0.0,84.27658598793131,0.126604999997653 +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.1283349580044159 +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466 +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.1262690420044236 +8,428.2287649279869,0.8280952669625078,0.0,87.70909035911228,0.1317615000007208 +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.1220044580040848 +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.1273247919962159 +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.127753875000053 +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.1249797920027049 +13,412.5154149354085,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701 +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551 +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.1267970419939956 +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.1263662080018548 +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802 +18,412.5823102935587,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206 +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921 +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597 +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937 +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952 +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472 +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135 +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.1276210409996565 +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.1273774169967509 +27,403.1514038574026,0.7796014577856469,0.0,82.57278773712977,0.1240454589933506 +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.1270551250054268 +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.1296990409973659 +0,366.2560098974747,0.0,0.0,80.782447497649,0.1274277500051539 +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433 +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269 +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301 +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036 +5,365.55697252599737,0.0,0.0,80.62826586449009,0.1271845410010428 +6,378.0393748010996,0.0,0.0,83.38141933961053,0.1315274170046905 +7,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953 +8,367.84473766973,0.0,0.0,81.13286172808361,0.1279804999940097 +9,366.06882597778775,0.0,0.0,80.7411616900284,0.1273626249967492 +10,365.15554103083457,0.0,0.0,80.53972501381307,0.1270448750001378 +11,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692 +12,365.718411986348,0.0,0.0,80.66387340232536,0.1272407090000342 +13,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072 +14,366.3053517052931,0.0,0.0,80.7933304644586,0.1274449170014122 +15,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047 +16,364.87015348468304,0.0,0.0,80.4767791403244,0.1269455829969956 +17,365.9639167863109,0.0,0.0,80.71802262603086,0.1273261250025825 +18,367.16306638263006,0.0,0.0,80.98251040695109,0.1277433329960331 +19,365.2581738498211,0.0,0.0,80.56236199474246,0.1270805829990422 +20,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815 +21,366.7016354671544,0.0,0.0,80.88073591671505,0.1275827920035226 +22,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122 +23,364.065011256822,0.0,0.0,80.29919472397987,0.1266654580031172 +24,365.0026092698173,0.0,0.0,80.50599395788157,0.126991666998947 +25,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237 +26,363.3076529841561,0.0,0.0,80.13214967012348,0.1264019579975865 +27,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376 +28,366.2285868981014,0.0,0.0,80.77639900438956,0.1274182089982787 +29,366.2516985482337,0.0,0.0,80.78149657443056,0.1274262500010081 +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.1263446250013657 +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.1269560419968911 +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.1267198330024257 +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.1260341660017729 +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786 +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.1269434159985394 +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936 +7,373.7075999076504,0.701202608833154,0.0,80.83864361833646,0.1267825000031734 +8,370.2519987370816,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832 +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.1285800419937004 +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545 +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.1268734170007519 +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.1245892920051119 +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285 +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.1260856660010176 +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992 +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.1266507079999428 +17,373.544619672528,0.7008968024591752,0.0,80.8033885120792,0.1267272080003749 +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.1260830000028363 +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762 +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.1277539160000742 +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999 +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.1266689580006641 +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.1274090419974527 +24,373.3273559434392,0.7004891417809348,0.0,80.75639105960205,0.1266535000031581 +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481 +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.1265395829977933 +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.1265127079968806 +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.1282391249987995 +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.1254270000063115 +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837 +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799 +2,392.782657800016,0.0,0.0,82.10768031039964,0.1270926669967593 +3,394.0904615657848,0.0,0.0,82.3810649198677,0.1275158330026897 +4,386.1846502784042,0.0,0.0,80.72842620762319,0.1249577499984297 +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858 +6,390.5682958318153,0.0,0.0,81.64478786602623,0.1263761659938609 +7,391.0349677496118,0.0,0.0,81.742341431275,0.1265271670054062 +8,394.99521491133027,0.0,0.0,82.57019546568124,0.1278085840021958 +9,389.8935329590793,0.0,0.0,81.50373475907328,0.1261578330013435 +10,386.8460219423448,0.0,0.0,80.86668000287307,0.1251717499981168 +11,395.2454142765718,0.0,0.0,82.62249739166286,0.1278895409996039 +12,405.8558215300987,0.0,0.0,84.84050755437045,0.1313227499995264 +13,394.8692730303716,0.0,0.0,82.54386844870608,0.1277678329934133 +14,390.91198968003886,0.0,0.0,81.71663397240133,0.126487374996941 +15,344.4968582488303,0.0,0.0,72.01396839529932,0.1114688329980708 +16,384.1205680557549,0.0,0.0,80.29694839182318,0.1242898750060703 +17,397.6399258501084,0.0,0.0,83.12304849002524,0.1286643330022343 +18,394.5017605534564,0.0,0.0,82.46704327232571,0.1276489169977139 +19,344.61906365958396,0.0,0.0,72.03951433679929,0.1115083749973564 +20,389.40123755570465,0.0,0.0,81.40082483472742,0.125998540999717 +21,390.4691426421824,0.0,0.0,81.62406078392506,0.1263440830007312 +22,383.5958221737522,0.0,0.0,80.1872549869132,0.1241200830045272 +23,405.63909868024984,0.0,0.0,84.7952035927062,0.1312526249967049 +24,392.9889501493175,0.0,0.0,82.15080386977927,0.1271594170029857 +25,393.90245582749657,0.0,0.0,82.34176401197539,0.1274549999943701 +26,388.23392583418934,0.0,0.0,81.15680882294728,0.1256208339982549 +27,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692 +28,375.36074051247016,0.0,0.0,78.46578526581658,0.1214554580001276 +29,394.00032031549273,0.0,0.0,82.36222170259528,0.127486666002369 +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.1265818329993635 +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.1273689170047873 +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.1272704590010107 +3,390.0256092913664,1.0581449340672937,0.0,81.74169615669842,0.1245831669948529 +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.1276017079944722 +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.1207954999990761 +6,402.8359437074606,1.092899550541648,0.0,84.42649027934232,0.1286750829967786 +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859 +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.1266689580006641 +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494 +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.127547208998294 +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.1202903329976834 +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.1262500839948188 +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602 +14,399.0628659124927,1.0826631377023963,0.0,83.63572738751013,0.1274698750057723 +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.1271318750004866 +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.1265424590019392 +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.1203042499982984 +18,402.568664946258,1.0921744195235483,0.0,84.37047390819413,0.1285897080015274 +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.1271081250015413 +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.1269394580012885 +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.1268292910026502 +22,350.76980647561356,0.9516433918795788,0.0,73.51445202269747,0.112043959001312 +23,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.1216482500021811 +24,405.61921819575144,1.100450613163548,0.0,85.00980986688407,0.129564125003526 +25,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.1270289169988245 +26,395.58876147911013,1.0732378437754575,0.0,82.90762343165412,0.1263601659957203 +27,397.43884404649145,1.0782571436615285,0.0,83.29536434785305,0.1269511249993229 +28,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.1271508339996216 +29,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/mac_report.md new file mode 100644 index 000000000..b599fc070 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 880 samples (with smell) vs 882 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 481.32 ms | 73.56 ms | +| **Average Power** | 4.194 W | 5.170 W | +| **Total Energy** | 1776.26 J | 335.44 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.68% | 0.00e+00 | +6.469 | large | βœ… | +| `gpu_mj` | +86.23% | 6.17e-33 | +0.604 | medium | βœ… | +| `ane_mj` | +85.06% | 3.92e-22 | +0.473 | small | βœ… | +| `dram_mj` | +85.42% | 0.00e+00 | +28.839 | large | βœ… | +| `time_s` | +84.91% | 0.00e+00 | +53.990 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.469, large) +- **`gpu_mj`**: 86.2% lower energy (Cohen’s d = +0.604, medium) +- **`ane_mj`**: 85.1% lower energy (Cohen’s d = +0.473, small) +- **`dram_mj`**: 85.4% lower energy (Cohen’s d = +28.839, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +53.990, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..fe155cb4b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/with_smell.csv @@ -0,0 +1,881 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1507.0006290040246,0.1012179708729699,0.0,462.9372594493401,0.4960314169948105 +1,1496.950668211312,0.1005429634315572,0.0,459.850000414799,0.4927234579954529 +2,1468.6940451139656,0.0986451022106724,0.0,451.169815810879,0.4834227500032284 +3,1468.9915282259046,0.0986650827178998,0.0,451.2611999907679,0.4835206669959007 +4,1479.172504714708,0.0993488898523289,0.0,454.3887058879351,0.4868717499994091 +5,1500.238416336118,0.1007637856313158,0.0,460.85996754909496,0.4938056250030058 +6,1509.7154372095292,0.10140031145902,0.0,463.7712245097378,0.4969250000067404 +7,1461.69840489276,0.0981752387650176,0.0,449.0208170316026,0.4811201249976875 +8,1471.3692332004143,0.0988247817042323,0.0,451.99160992125746,0.4843032919961842 +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694 +10,1480.732072591294,0.0994536385119303,0.0,454.8677913407322,0.4873850840012892 +11,1466.0959491930096,0.0984706006264055,0.0,450.3717037316366,0.4825675830070395 +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.4856114580034045 +13,1514.13083342455,0.1016968723475048,0.0,465.12759516003786,0.4983783339994261 +14,1512.595950245761,0.1015937816401129,0.0,464.6560926279964,0.497873125001206 +15,1502.2335709419558,0.1008977905526769,0.0,461.4728613910934,0.4944623330011382 +16,1495.3046447168208,0.1004324079646814,0.0,459.34435656113146,0.4921816670030239 +17,1495.762512977266,0.1004631607695293,0.0,459.4850096395707,0.4923323749972041 +18,1505.742214321196,0.1011334492223075,0.0,462.5506855930939,0.4956172079982934 +19,1500.2357579650031,0.1007636070813372,0.0,460.8591509210095,0.4938047499963431 +20,1501.366192061746,0.1008395328926977,0.0,461.2064102735686,0.4941768339995178 +21,1472.4900455897166,0.0989000612718656,0.0,452.3359135704227,0.4846722090005642 +22,1462.9344104531915,0.0982582553029054,0.0,449.40050700372194,0.4815269579994492 +23,1472.7381563218598,0.0989167256742394,0.0,452.4121309920798,0.4847538750036619 +24,1482.564812614605,0.0995767348283664,0.0,455.4307928600052,0.4879883330067969 +25,1501.7557027604369,0.1008656944494987,0.0,461.32606451385743,0.4943050420042709 +26,1471.3960688887162,0.0988265841281097,0.0,451.99985360726447,0.4843121250014519 +27,1465.3707267413292,0.0984218909287598,0.0,450.14892181117136,0.48232887499762 +28,1493.8271059364454,0.100333168804221,0.0,458.8904697209055,0.4916953329957323 +0,1471.069231866696,0.1008456582331723,0.0,459.85620154326585,0.4853926670039072 +1,1468.578895878081,0.1006749391626123,0.0,459.0777225815124,0.484570958004042 +2,1461.668066437173,0.1002011836596023,0.0,456.9173974877869,0.4822906670015072 +3,1442.4901829574026,0.0988864893942737,0.0,450.92239163788827,0.475962749995233 +4,1460.192632019516,0.1001000387564221,0.0,456.4561767292852,0.4818038340017665 +5,1457.0270850402062,0.0998830321996393,0.0,455.4666268303555,0.4807593329969677 +6,1451.4069459189002,0.0994977569068301,0.0,453.70977149514545,0.4789049169994541 +7,1454.602166278216,0.0997167976517217,0.0,454.7085972918513,0.4799592090057558 +8,1454.5623855826552,0.0997140705805942,0.0,454.6961618475098,0.4799460830035968 +9,1468.8514054091331,0.1006936204064576,0.0,459.16290905344687,0.4846608750012819 +10,1454.7620315206584,0.0997277568338278,0.0,454.7585711622551,0.4800119579958846 +11,1461.4857195792638,0.100188683303729,0.0,456.86039586500453,0.4822304999979678 +12,1456.5270230567808,0.09984875163773,0.0,455.310307468049,0.480594332999317 +13,1456.90813089835,0.0998748775808932,0.0,455.4294417688732,0.4807200829964131 +14,1448.7476526265218,0.0993154553694887,0.0,452.8784764848686,0.4780274590011686 +15,1454.4989959096524,0.0997097250520761,0.0,454.6763462374673,0.4799251670046942 +16,1457.879845299315,0.0999414911543792,0.0,455.73319966396946,0.4810407089971704 +17,1455.9537216856306,0.0998094503234973,0.0,455.131093475148,0.4804051669998443 +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.4814032080030301 +19,1468.4137238864755,0.1006636161889179,0.0,459.02608982146575,0.4845164580037817 +20,1463.4019935002775,0.1003200489123173,0.0,457.4594230401672,0.4828627919996506 +21,1455.2831840044878,0.0997634832049143,0.0,454.9214834144096,0.4801839169958839 +22,1465.0343928246136,0.100431954171972,0.0,457.9697110241926,0.483401416997367 +23,1452.4517724066477,0.0995693825058256,0.0,454.036384226565,0.47924966699793 +24,1458.159298145276,0.0999606483806916,0.0,455.8205566159539,0.4811329170042882 +25,1464.0746768847828,0.1003661631244995,0.0,457.6697038477178,0.4830847499979427 +26,1460.330527893312,0.1001094918806255,0.0,456.49928297565265,0.48184933399898 +27,1466.457926870734,0.1005295411684155,0.0,458.41470772797504,0.4838711249976768 +28,1458.690297278725,0.0999970497654626,0.0,455.9865469305096,0.4813081249958486 +29,1453.5116250142864,0.0996420381847918,0.0,454.3676941226507,0.4795993750012712 +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394 +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.4822331670002313 +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149 +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802 +4,1458.91194965116,0.3992552485989172,0.0,454.9180845077496,0.4819204169980366 +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.4810576669988222 +6,1468.611380787982,0.4019096574484203,0.0,457.94256219102095,0.4851244170058635 +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.4791258749974076 +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833 +9,1466.35176146208,0.4012912754577062,0.0,457.2379674444348,0.4843780000010156 +10,1460.154775553515,0.3995953683468763,0.0,455.3056226172367,0.4823309580024215 +11,1457.9792906101436,0.3990000111136337,0.0,454.6272626630594,0.4816123329947004 +12,1457.422775179489,0.3988477115134636,0.0,454.4537299602991,0.4814285000029485 +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474 +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208 +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636 +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052 +17,1457.9613811923634,0.398995109906916,0.0,454.6216781464386,0.4816064170008758 +18,1469.355588079086,0.4021133220130226,0.0,458.1746209903382,0.4853702499967767 +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.4835539170017 +20,1460.7395477092175,0.3997554008645718,0.0,455.4879663351075,0.4825241250000545 +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.4834142079998855 +22,1459.13710420092,0.3993168658443987,0.0,454.98829222420534,0.4819947919968399 +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122 +24,1458.813181355714,0.399228219030504,0.0,454.8872865670067,0.4818877910001902 +25,1457.0466346307994,0.3987447744662271,0.0,454.33644177306024,0.4813042500027222 +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921 +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982 +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989 +29,1471.0342193441872,0.4025727070658452,0.0,458.69805197594184,0.4859247499989578 +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.4925840419964515 +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336 +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091 +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.4959620000008726 +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922 +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767 +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257 +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117 +8,2281.0575381943677,2.99700990419698,84.21597830793513,509.79138470390626,0.4952505420005764 +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.495590375001484 +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.4952706249969196 +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.4955860830013989 +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566 +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922 +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516 +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.4973028749955119 +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166 +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952 +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721 +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778 +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292 +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.4962343750012223 +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198 +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.4910860830059391 +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296 +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179 +26,2277.258468092052,2.992018425230434,84.07571774897518,508.9423341316967,0.4944257090028259 +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.4949400409968802 +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396 +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236 +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.4962522920031915 +1,1548.7716415444704,0.5093526556274295,0.0,468.3667452712757,0.4990278339973883 +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157 +3,1537.9614894800372,0.5057974642008454,0.0,465.0976282481506,0.4955447079992154 +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305 +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575 +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797 +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397 +8,1543.794275756641,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953 +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.4938442089987802 +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.4946216250027646 +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.4986832079957821 +12,1536.410091706245,0.5052872478753273,0.0,464.6284673296259,0.4950448340023285 +13,1501.0461152669352,0.4936569114010968,0.0,453.9339852636886,0.4836502500038477 +14,1503.158875751745,0.4943517460266646,0.0,454.5729088630523,0.4843309999996563 +15,1497.0097852395263,0.492329462367746,0.0,452.7133516292214,0.4823497089964803 +16,1521.5805489456525,0.5004101783421352,0.0,460.14383932487135,0.4902666249981848 +17,1499.5455354643086,0.4931634078483803,0.0,453.48019229684735,0.4831667500038747 +18,1505.117621218829,0.4949959289252891,0.0,455.1652565111009,0.4849621250032214 +19,1493.7772756646511,0.4912663699839896,0.0,451.73580274594457,0.4813081660031457 +20,1496.3047548280974,0.492097595317287,0.0,452.50014214742265,0.4821225420018891 +21,1502.9231341998309,0.4942742164656317,0.0,454.5016178473639,0.4842550419998588 +22,1510.012481501061,0.4966057273079569,0.0,456.64551978391,0.4865392920037266 +23,1504.4246171495324,0.4947680170410652,0.0,454.9556839364942,0.4847388330017566 +24,1509.3322796742225,0.4963820257643792,0.0,456.43981875787216,0.4863201249972917 +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552 +26,1505.193401276411,0.4950208511104179,0.0,455.1881732910663,0.4849865420037531 +27,1520.90862436748,0.5001891989807543,0.0,459.9406414361029,0.4900501249940134 +28,1511.0160978228655,0.4969357918733388,0.0,456.9490251539309,0.4868626660027075 +29,1510.3806433826635,0.4967268066375784,0.0,456.7568562634747,0.4866579169975011 +0,1515.8144076794304,0.1016097605362267,0.0,463.7808170075175,0.5029127919988241 +1,1494.2954542299487,0.1001672780687725,0.0,457.1968461985674,0.495773292001104 +2,1490.567926608189,0.0999174102834286,0.0,456.0563663369963,0.4945365829989896 +3,1487.0834114226138,0.0996838323785101,0.0,454.9902389196463,0.4933805000036955 +4,1489.19388742284,0.0998253041575841,0.0,455.63596327659974,0.4940807080056402 +5,1491.6388015866264,0.0999891943683219,0.0,456.38401282847735,0.4948918749942095 +6,1489.4443053961663,0.0998420904542275,0.0,455.7125815299125,0.4941637910014833 +7,1483.7489697588535,0.0994603143691415,0.0,453.9700282188851,0.4922742079943418 +8,1490.2046075822443,0.0998930558776139,0.0,455.94520471072246,0.4944160419981926 +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724 +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.4923946249982691 +11,1498.6863274365105,0.1004616119745616,0.0,458.5402842558907,0.4972300840017851 +12,1494.202268227495,0.1001610315208134,0.0,457.1683348714995,0.4957423750020098 +13,1500.9979926125363,0.1006165700906647,0.0,459.24756475049065,0.4979970420026802 +14,1506.206429303655,0.1009657078230094,0.0,460.8411457401562,0.4997250829983386 +15,1499.448257241606,0.1005126865023197,0.0,458.7734054254215,0.4974828750055167 +16,1490.7811750729018,0.0999317049921505,0.0,456.1216121525058,0.4946073339961003 +17,1491.8823143613793,0.1000055177879996,0.0,456.4585183570265,0.4949726670020027 +18,1482.553013888322,0.0993801457225044,0.0,453.60411179275127,0.4918774170000688 +19,1497.833219014053,0.1004044254601188,0.0,458.2792659418024,0.4969470420037396 +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598 +21,1482.0456464125618,0.09934613530048,0.0,453.4488768898246,0.4917090839953744 +22,1496.2841105630728,0.1003005838961705,0.0,457.80529843008793,0.4964330830043764 +23,1488.0433927335248,0.0997481829155064,0.0,455.2839562206765,0.4936989999987418 +24,1474.3194514814572,0.0988282243921073,0.0,451.0849588670419,0.4891457080011605 +25,1494.2725955009112,0.1001657457769748,0.0,457.189852308039,0.4957657079939963 +26,1490.5446941438947,0.0999158529389928,0.0,456.0492580978762,0.4945288749950123 +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964 +28,1488.174128032597,0.0997569465097598,0.0,455.3239561860471,0.4937423750016023 +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141 +0,1478.185480632039,0.1001910585367731,0.0,453.1975547813372,0.4826704579973011 +1,1472.4376515691376,0.0998014720568313,0.0,451.43532527040054,0.4807936249999329 +2,1467.3052593754642,0.0994535997407738,0.0,449.86178282743384,0.4791177500010235 +3,1469.146722041262,0.0995784136400846,0.0,450.4263576986495,0.4797190410026815 +4,1470.385895182594,0.0996624044993963,0.0,450.8062763522695,0.480123666995496 +5,1466.8412883523577,0.0994221518957337,0.0,449.7195337417024,0.4789662499970291 +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107 +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546 +8,1478.2217224431022,0.1001935149980638,0.0,453.2086661745757,0.4826822920003906 +9,1476.0122465403242,0.1000437572495192,0.0,452.5312619586588,0.4819608339967089 +10,1472.6817615590717,0.0998180177735978,0.0,451.51016706257434,0.4808733339959872 +11,1475.1950634268462,0.0999883687734244,0.0,452.2807214184565,0.4816939999946044 +12,1475.1436376964589,0.0999848831497113,0.0,452.2649547805279,0.4816772080012015 +13,1471.505244398319,0.0997382737216727,0.0,451.14945813436634,0.4804891669991775 +14,1487.7908044971591,0.1008421050923268,0.0,456.1424553676251,0.4858068749963422 +15,1468.6795629390188,0.0995467497078027,0.0,450.2831311782943,0.4795664999983273 +16,1475.7644370380624,0.1000269607806915,0.0,452.455285931328,0.4818799170025158 +17,1467.6844997653377,0.0994793045637471,0.0,449.97805431001626,0.4792415829942911 +18,1482.7513106263857,0.1005005294023893,0.0,454.5973946634747,0.4841613339958712 +19,1477.909345926593,0.1001723421924443,0.0,453.1128945171565,0.4825802920022397 +20,1479.7538741610845,0.1002973638752683,0.0,453.678409262464,0.4831825840010424 +21,1471.3194508052536,0.0997256806763462,0.0,451.0924955926728,0.4804284999991068 +22,1489.160260118828,0.1009349264670134,0.0,456.562317385791,0.4862540419999277 +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504 +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.4825493750031455 +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.4815804590034531 +26,1470.1209876523235,0.0996444491303172,0.0,450.7250582328016,0.4800371669989545 +27,1479.45489308524,0.100277099009415,0.0,453.5867445192541,0.483084958003019 +28,1481.6974196226456,0.1004290969220744,0.0,454.2742817441834,0.4838172079980722 +29,1478.0856947176749,0.10018429507135,0.0,453.1669613727401,0.4826378750003641 +0,1445.9512284681282,0.0993735381060291,0.0,451.0233649505643,0.479501458001323 +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221 +2,1445.2778876531952,0.0993272625070921,0.0,450.8133354321888,0.4792781669966643 +3,1473.4560079931225,0.1012638143493852,0.0,459.6026987270767,0.488622500000929 +4,1438.408509378345,0.0988551619200731,0.0,448.6706282345721,0.4770001669967314 +5,1462.0207397229187,0.1004779212674964,0.0,456.035791992744,0.4848303749968181 +6,1459.873808732507,0.1003303726334995,0.0,455.36611792590986,0.4841184169999906 +7,1445.935900531451,0.0993724846878574,0.0,451.01858383662216,0.4794963750027818 +8,1451.6571155923002,0.0997656773292609,0.0,452.8031541717392,0.4813936249993276 +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256 +10,1453.1768162644023,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993 +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.4802655410021543 +12,1459.790501679045,0.1003246473251428,0.0,455.3401326597149,0.4840907909965608 +13,1455.5734090741,0.1000348260611724,0.0,454.02473054964133,0.4826923330037971 +14,1458.6344227252057,0.1002451953673512,0.0,454.9795267072848,0.4837074160022894 +15,1454.1420362947786,0.0999364544324277,0.0,453.578254517312,0.4822176660018158 +16,1452.8549083992968,0.099847996087187,0.0,453.17677157437976,0.4817908330005593 +17,1456.5114923274932,0.1000992961830495,0.0,454.3173389428009,0.483003417000873 +18,1445.2579097656906,0.0993258895193134,0.0,450.807103898324,0.47927154199715 +19,1460.9679426822058,0.1004055673977507,0.0,455.707401895925,0.4844812500014086 +20,1450.2062685342962,0.0996659673234419,0.0,452.3506036919953,0.4809125000028871 +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235 +22,1455.721926964596,0.1000450330086545,0.0,454.0710564819467,0.4827415840045432 +23,1450.0845164884097,0.0996575998686252,0.0,452.3126266037338,0.4808721250010421 +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355 +25,1455.2424545927595,0.1000120810908613,0.0,453.921498711056,0.4825825829975656 +26,1450.4460031843537,0.0996824431767859,0.0,452.4253820983725,0.4809919999970589 +27,1449.8539520475165,0.0996417542413302,0.0,452.24070858331766,0.4807956660006311 +28,1454.8514398281357,0.0999852084551545,0.0,453.79953277512817,0.4824529160032398 +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427 +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.4848300000012386 +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943 +3,1463.6997649458424,0.9049459287293112,0.0,456.293847174846,0.4853247499995632 +4,1469.782118043518,0.908706399834558,0.0,458.1899602721361,0.4873414999965462 +5,1441.0904332217217,0.8909675001027336,0.0,449.2456128295784,0.4778280839964282 +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285 +7,1447.019725460083,0.8946333399148689,0.0,451.0940107259638,0.4797940829957952 +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928 +9,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.4854045410029357 +10,1476.406582468932,0.9128020362863496,0.0,460.25507118527264,0.4895380000016303 +11,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.480668666998099 +12,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029 +13,1453.0520656111892,0.8983628900529438,0.0,452.9745327844733,0.4817942500012577 +14,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347 +15,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518 +16,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.4827774170043994 +17,1452.131203241068,0.8977935583684558,0.0,452.6874630973391,0.4814889160043094 +18,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651 +19,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.4821297079979558 +20,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213 +21,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.4835610840018489 +22,1452.891467970985,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396 +23,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403 +24,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.486632667001686 +25,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.4821981659988523 +26,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354 +27,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348 +28,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541 +0,1473.756556484359,1.730836715732926,0.0,462.06552715105465,0.4929395419967477 +1,1446.159224005418,1.6984253408008363,0.0,453.4129610784978,0.4837088339991169 +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742 +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.4820898329999181 +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.4803014579956652 +5,1452.578920577144,1.7059648808159893,0.0,455.4257225943078,0.4858560829961789 +6,1471.581150604885,1.7282818349072917,0.0,461.38347416201515,0.4922119160037255 +7,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.4822434169982443 +8,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321 +9,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.4814543749962467 +10,1442.9805152629783,1.694692142277764,0.0,452.4163434727796,0.4826456250011688 +11,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.4814219580002827 +12,1428.712272923545,1.677934966473248,0.0,447.942834677123,0.477873208001256 +13,1442.6170148012343,1.694265233272607,0.0,452.30237550993223,0.48252404199593 +14,1464.2447277915137,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759 +15,1449.9154471216857,1.702836794547057,0.0,454.59064623055264,0.4849652090051677 +16,1444.6339619987823,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075 +17,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.4831488749987329 +18,1438.8095895874126,1.6897936458021423,0.0,451.1086370116896,0.481250541000918 +19,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.4836824999947566 +20,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994 +21,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702 +22,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.4835075840019271 +23,1448.596476504854,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375 +24,1447.9104558714089,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382 +25,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544 +26,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.4828053749952232 +27,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.4813471250017755 +28,1439.678106400043,1.690813665547546,0.0,451.3809422829379,0.4815410410010372 +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.4942865000048186 +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005 +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.4824957500022719 +3,1508.1492778731936,1.951623100383721,0.0,443.18107904547,0.4817460420017596 +4,1509.5093876893875,1.953383152770635,0.0,443.5807576083317,0.4821805000028689 +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.484043999997084 +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509 +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.4944804589977138 +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042 +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149 +11,1548.4815781326529,2.003815181123219,0.0,455.0330307133976,0.494629332999466 +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555 +13,1548.2143040147903,2.003469314603102,0.0,454.95449019112107,0.4945439579969388 +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453 +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676 +16,1553.068674945917,2.0097511214414663,0.0,456.380983827333,0.4960945830025594 +17,1547.303042521918,2.002290095141161,0.0,454.686709104972,0.4942528749961639 +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793 +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576 +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.4960286249988712 +21,1560.5320011886452,2.0194090512728877,0.0,458.5741387265515,0.4984785830019973 +22,1572.43476681286,2.034811845075521,0.0,462.0718564858995,0.5022806669949205 +23,1545.401732006987,1.9998297010831043,0.0,454.127994620955,0.4936455420029233 +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539 +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +26,1565.7153470029502,2.0261165686101243,0.0,460.0973041218824,0.500134292000439 +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341 +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.4930831250021583 +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.4954994579966296 +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778 +1,1488.7041689159475,1.9934442540384945,0.0,459.4224524140717,0.4818315829979838 +2,1487.819878516848,1.9922601479872095,0.0,459.1495554394523,0.4815453749979497 +3,1491.727934254883,1.9974932167312307,0.0,460.3556033493242,0.4828102499959641 +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.4815899169989279 +5,1501.2124715705363,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793 +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881 +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226 +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.4821794169984059 +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622 +10,1497.9545334031648,2.005830923142963,0.0,462.2771667536816,0.4848255410033744 +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.4850677080030436 +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.4837472500003059 +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.487756000002264 +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639 +15,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.4869370829983381 +16,1491.0045635252643,1.996524589616048,0.0,460.1323670868452,0.4825761249958304 +17,1493.856851787251,2.0003439365121194,0.0,461.0125992348264,0.4834992920004879 +18,1491.1042056393792,1.9966580150500528,0.0,460.1631172018688,0.4826083750012913 +19,1484.7932830352129,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615 +20,1505.3592048868377,2.0157461233085665,0.0,464.562289885181,0.4872221249970607 +21,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039 +22,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.478613375002169 +23,1486.3696611665118,1.9903182393766896,0.0,458.7020102350144,0.481075999996392 +24,1490.7165777906416,1.996138963297592,0.0,460.0434930746517,0.4824829159988439 +25,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.4882316250004805 +26,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877 +27,1483.4506884174402,1.986409598844992,0.0,457.80119888047585,0.4801312499985215 +28,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782 +0,1445.0937116123694,0.0994855344525118,0.0,451.26638427659367,0.4804801249993033 +1,1451.89089555387,0.0999534774459373,0.0,453.38897369477166,0.4827401250004186 +2,1450.1180395946535,0.0998314275600422,0.0,452.8353554123517,0.482150666997768 +3,1449.4058631584062,0.0997823987304132,0.0,452.6129606411546,0.4819138750026468 +4,1446.5463840973528,0.0995855417374316,0.0,451.7200173209899,0.4809631249954691 +5,1445.161635344861,0.0994902105705896,0.0,451.2875951481944,0.4805027090042131 +6,1451.1624299232567,0.0999033272086139,0.0,453.1614922182729,0.4824979170007282 +7,1461.9935620683018,0.1006489819447163,0.0,456.5437821012335,0.4860991669993382 +8,1443.721239879732,0.099391048480602,0.0,450.837795908011,0.4800237910021678 +9,1457.922268440679,0.1003686992065088,0.0,455.2724196007243,0.4847454999980982 +10,1463.2726687745692,0.1007370403268629,0.0,456.9432149226504,0.4865244579996215 +11,1434.2653374502413,0.0987400695860367,0.0,447.8849556422627,0.4768797920041834 +12,1440.3483418552953,0.099158845849092,0.0,449.7845247714817,0.4789023339981213 +13,1458.1363075618142,0.100383434442147,0.0,455.3392586295791,0.4848166660012794 +14,1443.7793888920285,0.0993950516712046,0.0,450.8559543805843,0.4800431250041583 +15,1447.6267393486346,0.0996599173427703,0.0,452.0573850668063,0.4813223329983884 +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.4835391250016982 +17,1450.7958782332366,0.099878092450139,0.0,453.0470273538308,0.4823760419967584 +18,1447.8402822026578,0.0996746184135661,0.0,452.12406912393624,0.4813933339974028 +19,1442.8031718956472,0.0993278453240687,0.0,450.5511063899757,0.4797185419956804 +20,1471.4015954886795,0.1012966653616825,0.0,459.4816740805919,0.4892272500001127 +21,1448.4089689054954,0.0997137688853405,0.0,452.30165566390485,0.4815824170000269 +22,1437.411540338623,0.0989566656955703,0.0,448.867435595107,0.4779258749986184 +23,1446.9099281828417,0.0996105694414146,0.0,451.8335429862568,0.4810839999991003 +24,1445.926441829572,0.0995428626451732,0.0,451.526424958506,0.4807569999975385 +25,1444.6335482723644,0.0994538551258024,0.0,451.12268685063987,0.4803271249984391 +26,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.4812947079990408 +27,1448.532656600787,0.0997222839984937,0.0,452.3402802171675,0.4816235420003067 +28,1441.3934810706207,0.0992307970537637,0.0,450.1108954358723,0.479249832998903 +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455 +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247 +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637 +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687 +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102 +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535 +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377 +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012 +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362 +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754 +10,2530.966135457355,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819 +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904 +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.4971295420036767 +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964 +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.495697750004183 +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316 +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772 +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.4958168329976615 +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591 +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655 +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278 +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505 +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175 +23,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116 +24,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507 +25,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086 +26,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.4958617500014952 +27,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456 +28,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.4988807499976246 +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908 +1,1573.4160634871228,22.800282743848378,0.0,461.1160630781749,0.4818563750013709 +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289 +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567 +4,1576.0847815073448,22.83895498499088,0.0,461.8981758171432,0.482673666003393 +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.4821627080018515 +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886 +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355 +8,1576.0729479760837,22.83878350596198,0.0,461.8947078016104,0.4826700420017005 +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.4872023339994484 +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.4906837089947657 +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.4933289170003263 +12,1613.171083804858,23.376370483618174,0.0,472.76694098765734,0.4940312920007272 +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545 +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044 +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329 +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758 +17,1588.96402650174,23.025587392155135,0.0,465.6726553620341,0.4866179160017054 +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.4825434170052176 +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111 +20,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.4996486660020309 +21,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483 +22,1630.1989199727825,23.623119889674296,0.0,477.7572350101371,0.4992460419962299 +23,1632.2295419060226,23.652545516689397,0.0,478.3523429495976,0.4998679170021205 +24,1613.240197605974,23.37737200778176,0.0,472.7871959504829,0.4940524580015335 +25,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.4955697920013335 +26,1610.8625013861165,23.34291694700681,0.0,472.090372048948,0.4933242920014891 +27,1614.9038790021225,23.401480320330567,0.0,473.2747657887544,0.4945619580030325 +28,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.4993293750012526 +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.4891792919952422 +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176 +2,1470.6334323813912,0.0996521649118915,0.0,454.2145676684016,0.4823543749953387 +3,1485.0875958430825,0.1006315991129864,0.0,458.67882875699206,0.4870952089986531 +4,1472.876125743892,0.099804132930492,0.0,454.9072378971828,0.4830899579974357 +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356 +6,1476.1830010833758,0.1000282113985979,0.0,455.9285875548095,0.4841745829980937 +7,1463.426296356512,0.0991637993600961,0.0,451.9885974833182,0.4799905000036233 +8,1471.8095321193011,0.0997318590643937,0.0,454.57781361550656,0.4827401250004186 +9,1476.4591795005704,0.1000469256319136,0.0,456.01388703026225,0.484265167004196 +10,1480.2938895968366,0.1003067709165972,0.0,457.1982618378502,0.4855229169988888 +11,1473.468242797507,0.0998442556048273,0.0,455.090117046803,0.4832841669995105 +12,1470.8582862106548,0.0996674013198103,0.0,454.2840152156956,0.4824281250039348 +13,1481.467574625828,0.1003863014450677,0.0,457.56076198661873,0.4859078750014305 +14,1498.777378307361,0.1015592377955431,0.0,462.9070058720858,0.4915853329948731 +15,1481.2213787556393,0.1003696188707997,0.0,457.48472281310535,0.4858271249977406 +16,1470.3611931394696,0.099633717602566,0.0,454.1304848324962,0.4822650830028578 +17,1478.7457002780488,0.1002018634570539,0.0,456.7200936372517,0.4850151249993359 +18,1464.457703027839,0.0992336889093469,0.0,452.30715404880334,0.480328792000364 +19,1474.8152039772676,0.0999355275660516,0.0,455.5061346460632,0.4837259580017417 +20,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.4817905829986557 +21,1467.7080463118232,0.0994539366868174,0.0,453.311043418514,0.4813948750015697 +22,1476.5658867326172,0.1000541562622332,0.0,456.04684424325905,0.4843001660046866 +23,1477.537206367709,0.1001199742304141,0.0,456.3468425422278,0.4846187500006635 +24,1452.3435435551507,0.0984128166301233,0.0,448.56561820010234,0.4763554579985793 +25,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921 +26,1471.1452606296632,0.0996868471052106,0.0,454.3726491055499,0.4825222500003292 +27,1466.003983774469,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276 +28,1458.1899954967043,0.0988089803376801,0.0,450.37133237914605,0.4782730410006479 +0,1491.8732837180632,0.1671341986195764,0.0,457.51315530122855,0.4853813329973491 +1,1490.1256809068748,0.1669384151046217,0.0,456.9772175073916,0.4848127500008559 +2,1488.2943221687606,0.1667332484336851,0.0,456.4155942623698,0.4842169169933186 +3,1478.1767640016478,0.1655997808699836,0.0,453.3128401534932,0.48092516700126 +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.4807152499997755 +5,1475.4721125595993,0.165296779431292,0.0,452.48340401521887,0.4800452080016839 +6,1484.248678964546,0.166280016016283,0.0,455.1749158429732,0.4829006660002051 +7,1479.026359174096,0.1656949608090896,0.0,453.57338571880194,0.481201582995709 +8,1478.2323440915482,0.1656060074938437,0.0,453.3298849136479,0.4809432499969261 +9,1480.85157375242,0.1658994391513096,0.0,454.133124732795,0.4817954169993754 +10,1481.4601486859867,0.1659676176520789,0.0,454.3197565608008,0.4819934170009219 +11,1482.2434061160802,0.1660553657901548,0.0,454.5599583139699,0.4822482499948819 +12,1491.9479478691496,0.1671425632261376,0.0,457.5360525752291,0.4854056249969289 +13,1501.6120194051157,0.1682252267936093,0.0,460.49973582482613,0.4885498330040718 +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161 +15,1473.289209598557,0.1650522293471529,0.0,451.81397261489656,0.4793349999963538 +16,1479.9291063236064,0.1657960953511691,0.0,453.85023141429053,0.4814952919987263 +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442 +18,1492.6903539863913,0.1672257348016391,0.0,457.76372644600696,0.4856471670063911 +19,1482.245585323591,0.1660556099262386,0.0,454.5606266120856,0.4822489590005716 +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339 +21,1481.4204468550586,0.1659631698656828,0.0,454.3075811903203,0.4819805000006454 +22,1521.4543559992917,0.1704481589029252,0.0,466.5847901808677,0.4950055420049466 +23,1507.892303639942,0.1689288054984138,0.0,462.4257121713581,0.4905931249959394 +24,1517.9368635996732,0.1700540950908195,0.0,465.5060799016094,0.4938611250036047 +25,1487.6624369941349,0.1666624584923186,0.0,456.22181387687306,0.4840113329992164 +26,1484.790276829119,0.1663406910924154,0.0,455.3410077963781,0.4830768749961862 +27,1484.8006502773037,0.1663418532272751,0.0,455.34418902434305,0.4830802500000573 +28,1470.9937325949477,0.1647950676205941,0.0,451.1100181046144,0.4785881659990991 +0,1501.502028693519,2.3088191112663026,0.0,460.8269101501379,0.4996751660000882 +1,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831 +2,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203 +3,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406 +4,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604 +5,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825 +6,1507.9842242384736,2.3187866082600825,0.0,462.8163647675051,0.5018323340045754 +7,1525.2583386023323,2.3453485473126583,0.0,468.117973820144,0.5075808749970747 +8,1487.4017761634502,2.28713753382386,0.0,456.4993929829304,0.4949828339958912 +9,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076 +10,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088 +11,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453 +12,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.4975445419986499 +13,1486.045287815104,2.285051698331785,0.0,456.08307231051214,0.4945314169963239 +14,1484.8389210893304,2.283196700803686,0.0,455.7128255575126,0.4941299580023042 +15,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077 +16,1499.9656215906025,2.306456619565252,0.0,460.35537050221234,0.4991638749997946 +17,1488.350338699801,2.288596112813635,0.0,456.7905168937592,0.4952984999981709 +18,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.495122624997748 +19,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.496049250003125 +20,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.4955626670052879 +21,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.4955531250016065 +22,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009 +23,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.4958858329991926 +24,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721 +25,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.4946299160001217 +26,1504.0738956441755,2.3127738016056005,0.0,461.6162434161208,0.5005310409978847 +27,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622 +28,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531 +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.4865007500047795 +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.4838650000019697 +2,1480.717294074354,2.098418389982776,0.0,450.6936386485229,0.4811567920041852 +3,1488.925131299569,2.1100502366859266,0.0,453.19190083487734,0.483823916001711 +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666 +5,1479.727777126183,2.097016082756709,0.0,450.39245421874654,0.48083525000402 +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296 +7,1480.7792238858788,2.0985061546465045,0.0,450.7124885479659,0.4811769160005497 +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014 +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.4740181250017485 +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322 +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.4793756250001024 +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.4862565000003087 +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238 +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.4834997500001918 +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.4806878329982282 +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534 +17,1477.318804252413,2.093602174511349,0.0,449.6592225922709,0.4800524579986813 +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.4824538749962812 +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.4760040000037406 +20,1479.903703499236,2.0972653991778625,0.0,450.44600184564536,0.4808924170065438 +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.4817604169948026 +22,1503.04044703954,2.130053945866405,0.0,457.48825303997336,0.488410665995616 +23,1480.9454071466057,2.0987416634852356,0.0,450.7630706129957,0.4812309169938089 +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.4807852919984725 +25,1473.9158306771965,2.088779604828779,0.0,448.6234417926699,0.478946667004493 +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397 +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.480225541999971 +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355 +29,1510.0737441282995,2.1400212772485183,0.0,459.6290143245985,0.4906961249944288 +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691 +1,1494.6927432930363,2.473550026918434,0.0,455.734879283864,0.4958449999976437 +2,1493.1747248593665,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275 +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.4984720829961588 +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588 +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215 +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248 +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.4923728750000009 +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.4965036249996046 +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.494061249999504 +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.495179375000589 +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688 +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212 +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.4918156250059837 +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422 +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985 +16,1492.1949067183675,2.469416385570248,0.0,454.9732837954698,0.4950163749963394 +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.493825708006625 +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.4948959169996669 +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.4921009589961613 +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491 +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438 +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575 +23,1499.6939449160884,2.4818264586231,0.0,457.2597559036128,0.4975040839999565 +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.4907058749959105 +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.4958353749971138 +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.4948671250022016 +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389 +28,1498.364826079165,2.4796269149713344,0.0,456.8545048475564,0.4970631660034996 +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.4953921250053099 +0,1498.5408128623817,0.8690099505837388,0.0334234596378361,458.5364427714736,0.4839190410057199 +1,1491.5130351462874,0.8649345135229948,0.0332667120585767,456.3860227316141,0.4816495829945779 +2,1490.9282803951478,0.8645954118495337,0.0332536696865205,456.2070944293751,0.4814607499938574 +3,1498.858609293904,0.8691942420350508,0.0334305477705788,458.6336848645716,0.4840216660013539 +4,1501.085510016672,0.8704856308784092,0.0334802165722465,459.31509115464985,0.4847407920024125 +5,1479.0403956377672,0.8577015788241764,0.0329885222624683,452.56953691880295,0.4776218330007395 +6,1495.4335579034869,0.8672080407157502,0.0333541554121442,457.5856580992068,0.482915624997986 +7,1489.2027842934413,0.8635947895980701,0.0332151842153103,455.6791122498432,0.4809035409998614 +8,1492.1808861224167,0.8653218030374225,0.0332816078091316,456.5903775334769,0.4818652499961899 +9,1495.2063392563043,0.8670762756922921,0.0333490875266266,457.5161317777906,0.4828422499995213 +10,1487.4661958807744,0.8625877348700822,0.033176451341157,455.14773594933297,0.4803427500010002 +11,1490.5684218110532,0.8643867283837936,0.0332456433993766,456.0969817960486,0.4813445420004427 +12,1490.2245606219176,0.8641873218728641,0.033237973918187,455.99176418360855,0.4812334999951417 +13,1487.687995347552,0.862716357288644,0.0331813983572555,455.2156040631887,0.4804143750006915 +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.1105941707556,0.4876910419989144 +15,1484.8391828501335,0.861064319261815,0.0331178584331467,454.34389984434006,0.4794944169989321 +16,1492.7811242622347,0.8656698835913483,0.0332949955227441,456.7740435765272,0.4820590829986031 +17,1492.3149443588663,0.865399543957411,0.0332845978445158,456.6313978289124,0.4819085409981198 +18,1495.187245138547,0.8670652029352565,0.033348661651356,457.5102891949532,0.4828360839965171 +19,1506.9395171583026,0.8738803935790314,0.0336107843684242,461.10635075041273,0.4866312079975614 +20,1500.7598418289483,0.8702967745634584,0.0334729528678253,459.2154403936957,0.4846356250054668 +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446 +22,1492.8802179047152,0.8657273484001917,0.0332972057076996,456.8043651039319,0.4820910829948843 +23,1490.5962918881432,0.8644028903555643,0.0332462650136755,456.1055097226149,0.4813535419962136 +24,1503.3667264430414,0.8718085176205883,0.033531096831561,460.01311743218656,0.4854774580016965 +25,1474.89227025517,0.8552960639374243,0.0328960024591317,451.30025773682786,0.4762822920019971 +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.4817185420033638 +27,1500.2008916666362,0.8699726370766709,0.0334604860414104,459.0444080021095,0.4844551249989308 +28,1492.6384201170483,0.8655871288734974,0.0332918126489806,456.7303777313658,0.4820130000007339 +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809 +0,1449.4460304052652,1.1053478844400375,0.0,457.0446025207368,0.484376374995918 +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133 +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.4932186669975635 +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786 +4,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017 +5,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.481087624997599 +6,1442.221389474941,1.099838371563632,0.0,454.7665024238108,0.4819620419948478 +7,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643 +8,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937 +9,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358 +10,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781 +11,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.4888670830041519 +12,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.4850446670025121 +13,1448.268022775928,1.1044495355442336,0.0,456.6731488636687,0.4839827079995302 +14,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958 +15,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285 +16,1444.9364893090867,1.101908907337135,0.0,455.6226375944004,0.4828693749950616 +17,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807 +18,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.4813432079972699 +19,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893 +20,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.4814878750039497 +21,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644 +22,1434.6330467519774,1.0940514996144306,0.0,452.3737185526942,0.4794261670031119 +23,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179 +24,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259 +25,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956 +26,1433.8784631668889,1.093476053994577,0.0,452.1357805077576,0.4791740000000573 +27,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892 +0,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201 +1,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.4963012079970212 +2,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.4911223749950295 +3,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304 +4,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217 +5,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269 +6,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.4948305409998283 +7,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823 +8,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474 +9,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459 +10,2305.401423920151,3.8313967910576663,84.2240964155981,517.0719843236086,0.4973134169995319 +11,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.4950779169957968 +12,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218 +13,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.4946130000025732 +14,2299.0294440458956,3.82080705905282,83.99130648074375,515.642830926085,0.4959388749994105 +15,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636 +16,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.4990050830019754 +17,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.4981591250034398 +18,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401 +19,2313.5898284762848,3.8450052787660263,84.52324647583058,518.9085384908586,0.4990797920036129 +20,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719 +21,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981 +22,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781 +23,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469 +24,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.4902136250020703 +25,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838 +26,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756 +27,2287.752886269415,3.802066302310544,83.57933575861786,513.1136435813881,0.4935063340017223 +28,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755 +0,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959 +1,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304 +2,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075 +3,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075 +4,1450.011697038547,1.2283451883239749,0.0,451.3006618939489,0.4817874590007704 +5,1448.3522481877958,1.226939423104802,0.0,450.784176153694,0.4812360830037505 +6,1450.3252002552106,1.228610765607592,0.0,451.3982364235029,0.4818916250005713 +7,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.4825925410041236 +8,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156 +9,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383 +10,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.4837174170024809 +11,1451.4555736764398,1.229568336333271,0.0,451.7500530841753,0.4822672079972108 +12,1470.749938151556,1.245913128456798,0.0,457.75521806058686,0.488678040994273 +13,1452.0386934092628,1.2300623132573831,0.0,451.9315428762396,0.4824609580027754 +14,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524 +15,1453.7180781688437,1.231484966738723,0.0,452.4542334553027,0.4830189579952275 +16,1455.6323420932597,1.2331065928852851,0.0,453.0500276670965,0.4836550000036368 +17,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.4817882499992265 +18,1474.4356339985911,1.2490353837934811,0.0,458.9023515483401,0.4899026670027524 +19,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922 +20,1456.8314348645265,1.2341223776813306,0.0,453.42323249189207,0.4840534160030074 +21,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.4828239169946755 +22,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974 +23,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.4845845000018016 +24,1454.071838478107,1.2317846469237803,0.0,452.5643375751858,0.483136499999091 +25,1445.4984738230935,1.2245219115656858,0.0,449.8959693465928,0.4802878749978845 +26,1453.5452760949363,1.231338581301661,0.0,452.4004506544535,0.4829615419948823 +27,1445.4045486582245,1.224442344949385,0.0,449.8667361416741,0.4802566669968655 +28,1451.5710690043643,1.2296661756338918,0.0,451.7859997720845,0.4823055829983786 +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.4949604580033337 +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918 +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945 +3,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.4960029169960762 +4,1570.4229559700957,1.455749590500236,0.0,463.25922195873414,0.4943787920055911 +5,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.4950067500030854 +6,1574.566642586953,1.4595907022674324,0.0,464.48156848064974,0.4956832500029122 +7,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233 +8,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.4953499580005882 +9,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374 +10,1602.5001032995297,1.4854844424467897,0.0,472.7216627986351,0.5044768750012736 +11,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.4955200000040349 +12,1593.1679060882757,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409 +13,1568.685115034934,1.4541386479066511,0.0,462.7465760906574,0.4938317090054624 +14,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915 +15,1579.992203831771,1.4646200852946931,0.0,466.0820553249158,0.4973912500063306 +16,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326 +17,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526 +18,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758 +19,1574.658629351438,1.459675972095042,0.0,464.5087036653359,0.4957122080013505 +20,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.498898249999911 +21,1565.789148638521,1.451454146970356,0.0,461.89229467906654,0.492920040996978 +22,1568.7101272229097,1.4541618336874398,0.0,462.75395443844394,0.4938395829958608 +23,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.4961264590019709 +24,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402 +25,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641 +26,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868 +27,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838 +28,1584.888340812466,1.4691587029821032,0.0,467.526367253532,0.4989325839997036 +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.4804191670045838 +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.4837152499967487 +2,1437.3842689682,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448 +3,1435.7789167975,0.7680104908680055,0.0,454.194725947244,0.4835930420013028 +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.4805542079993756 +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554 +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761 +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.4821173750024172 +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863 +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.4824882920001982 +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.4820442080017528 +11,1430.9528339766905,0.7654289776609116,0.0,452.6680414845096,0.4819675409962656 +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251 +13,1439.437319842241,0.7699674021203672,0.0,455.3520262452711,0.4848252499941736 +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234 +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461 +16,1429.0497166778464,0.7644109838501899,0.0,452.0660087969688,0.4813265409975429 +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.4826296669998555 +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621 +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332 +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.4819131670010392 +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717 +22,1436.4061141941868,0.7683459841496418,0.0,454.3931337566707,0.4838042920018779 +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.4801694580019102 +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861 +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.4797095419999095 +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817 +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837 +28,1433.8801282741756,0.7669948125565385,0.0,453.5940626258276,0.4829535000026226 +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747 +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345 +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269 +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.6473879249105,0.4944300420029321 +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.4967914580047363 +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.4987448340034461 +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246 +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705 +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.498717749993375 +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657 +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015 +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.4956257500016363 +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514 +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.4924703750002663 +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.4987167500003124 +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936 +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026 +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889 +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749 +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826 +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.495682166001643 +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.4990872080015833 +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322 +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656 +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.6036226210395,0.494387499995355 +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963 +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746 +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637 +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.4997166250032023 +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594 +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264 +0,1533.8317063038091,1.9223856119804856,3.480180849275017,458.8204142525148,0.482414374993823 +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305 +2,1532.7859211727923,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907 +3,1538.3956003927374,1.9281056426038587,3.490536077127675,460.1856277683658,0.4838497919990914 +4,1522.9541430561326,1.9087525184704217,3.4555002489550732,455.5665709170007,0.4789932089988724 +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.6217034126296,0.4843082919978769 +6,1558.8705879131594,1.9537674027910896,3.536992711949386,466.31038201443187,0.4902894999977434 +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.1310771797192,0.4806381669986876 +8,1530.6126061866742,1.9183510417448648,3.4728768859174273,457.85747363576144,0.4814019170007668 +9,1529.805810596203,1.9173398667713937,3.4710463105344194,457.6161340640759,0.4811481670039939 +10,1543.3268559157984,1.934286095535932,3.501724828125394,461.66073138799834,0.4854007499961881 +11,1528.3825913511537,1.9155561142331377,3.467817103353094,457.19040154016074,0.4807005420007044 +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202 +13,1532.1754590843225,1.9203098002655896,3.476422914273912,458.32497525994063,0.4818934590002754 +14,1548.060719170639,1.9402191523196637,3.5124657067855973,463.0767883717431,0.4868896249972749 +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935 +16,1531.8200143511997,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334 +17,1544.5072416097676,1.9357654993488456,3.504403059166014,462.0138242670011,0.4857719999999972 +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605 +19,1532.2398437391903,1.920390494994772,3.476568999559501,458.3442348657349,0.4819137089943979 +20,1550.311531046087,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921 +21,1542.165283280946,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617 +22,1531.4933249285327,1.9194548662587223,3.4748751889166525,458.12092609688784,0.4816789169999538 +23,1524.2148076912772,1.910332537677336,3.458360628553798,455.94367791495455,0.4793897080016904 +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068 +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.4818482909977319 +26,1538.7289158546507,1.9285233943334643,3.4912923518105825,460.2853335820371,0.4839546249932027 +27,1566.0945228565863,1.9628213221618085,3.5533834280515495,468.4713028049295,0.4925615419997484 +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.4850850830043782 +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073 +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.4835799590000533 +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713 +4,1424.9465914698055,2.933752351272618,0.0,449.7211609933968,0.4767452079977374 +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784 +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895 +7,1442.0672958435391,2.969001326225478,0.0,455.1245516145416,0.4824732919951202 +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.479428958002245 +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.4815057919986429 +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.4818122079959721 +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.4855657499938388 +12,1443.4372101016247,2.97182177521617,0.0,455.5569042615079,0.4829316250034026 +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.4798023340044892 +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.481620083002781 +15,1430.940346220044,2.946092597704819,0.0,451.6128237133354,0.4787505420026718 +16,1433.879062454506,2.952142975813154,0.0,452.5402990900995,0.4797337499985588 +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338 +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.4819761249964358 +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.4826666669978294 +20,1445.466802782904,2.97600040361984,0.0,456.19745513017386,0.483610667004541 +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073 +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602 +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814 +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204 +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738 +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832 +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.4825754170014988 +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.4834982090033008 +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.4834735410040593 +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.4793388750040321 +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867 +2,1441.9302878449869,0.8980466361832127,0.0,453.4470292994718,0.4827684999982011 +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275 +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.4821773330040741 +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047 +6,1443.403897575609,0.8989644130499505,0.0,453.9104386337028,0.4832618750006077 +7,1444.6679358767042,0.8997516670204607,0.0,454.3079435737015,0.4836850840001716 +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.4824928329981048 +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.4815640420056297 +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736 +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.4813424999956623 +12,1446.278188474604,0.9007545462450248,0.0,454.8143232947564,0.4842242080048891 +13,1461.7319885114002,0.9103793063712816,0.0,459.6741142133216,0.4893982499997946 +14,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.482734375000291 +15,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.4800897910026833 +16,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867 +17,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679 +18,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.4850834579992806 +19,1445.4697617578422,0.9002510511040261,0.0,454.5600955444884,0.4839535409992095 +20,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.4804581249991315 +21,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503 +22,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.4839730419989791 +23,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.4804693330006557 +24,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.4802924999967217 +25,1455.9690940043993,0.9067901259023524,0.0,457.8618439417322,0.4874687919946154 +26,1436.5572954868485,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864 +27,1432.2019249021291,0.8919877277255372,0.0,450.3877293363795,0.4795113750005839 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..3ad77b8b2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/cleaned/mac/without_smell.csv @@ -0,0 +1,883 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.3303920568681,0.0,0.0,69.15518081324026,0.075606708000123 +1,314.38863582784177,0.0,0.0,61.53335078178913,0.0672738329958519 +2,317.2772995012459,0.0,0.0,62.098731125891405,0.067891958002292 +3,321.3954204399756,0.0,0.0,62.904745566004465,0.0687731660000281 +4,319.5576625612702,0.0,0.0,62.54505253860031,0.0683799170001293 +5,331.31404809256026,0.0,0.0,64.84605744902893,0.0708955840018461 +6,331.38667532066586,0.0,0.0,64.86027232893883,0.0709111249962006 +7,318.43373701362606,0.0,0.0,62.32507351552368,0.0681394160055788 +8,336.7251033504346,0.0,0.0,65.90512995782265,0.0720534580032108 +9,304.5621182908196,0.0,0.0,59.610067044204875,0.0651711249956861 +10,322.1328293892706,0.0,0.0,63.0490740765663,0.0689309590015909 +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169 +12,320.85566267461155,0.0,0.0,62.799102103969375,0.0686576669977512 +13,374.90570573356854,0.0,0.0,73.37798403639027,0.0802234590009902 +14,386.9158076380404,0.0,0.0,75.72864728942714,0.0827934170010848 +15,335.4308044090277,0.0,0.0,65.65180480003387,0.0717764999935752 +16,388.6902847933515,0.0,0.0,76.07595477070589,0.0831731250000302 +17,387.62594807984937,0.0,0.0,75.86763870301657,0.0829453750047832 +18,390.1639250154146,0.0,0.0,76.36438129245846,0.0834884590003639 +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579 +20,388.70488876434206,0.0,0.0,76.07881311597464,0.0831762500019976 +21,391.1120095675774,0.0,0.0,76.54994404082375,0.083691333005845 +22,385.3631097374103,0.0,0.0,75.42474729531305,0.0824611659991205 +23,381.9621437858659,0.0,0.0,74.7590971825402,0.0817334169987589 +24,385.6555815460515,0.0,0.0,75.48199100053641,0.0825237500030198 +25,356.2938326643222,0.0,0.0,69.73519678595287,0.0762408340015099 +26,391.34392044465426,0.0,0.0,76.5953345280203,0.0837409579980885 +27,326.9782229625547,0.0,0.0,63.99743310880556,0.0699677910015452 +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193 +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412 +0,302.5242036763287,0.0,0.0,63.689306037121824,0.0675712500014924 +1,302.7327655579679,0.0,0.0,63.733213801677465,0.0676178339999751 +2,316.69315087742956,0.0,0.0,66.67224228998516,0.0707360000014887 +3,307.5654342587211,0.0,0.0,64.75061773867812,0.0686972499970579 +4,306.4536190758211,0.0,0.0,64.51655138438339,0.0684489170016604 +5,300.7051879657525,0.0,0.0,63.30635536121105,0.0671649579962831 +6,307.374413716436,0.0,0.0,64.71040288767074,0.0686545839998871 +7,310.5906561688394,0.0,0.0,65.38750656186093,0.0693729580016224 +8,308.0642609293506,0.0,0.0,64.85563387986328,0.0688086670052143 +9,304.84745437059416,0.0,0.0,64.17841144644088,0.068090167005721 +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945 +11,305.72011556246974,0.0,0.0,64.3621295920989,0.0682850830053212 +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476 +13,308.66251527816155,0.0,0.0,64.98158216382348,0.068942291996791 +14,307.0794838197012,0.0,0.0,64.64831238309499,0.0685887090003234 +15,309.8218998360231,0.0,0.0,65.22566312337328,0.0692012500003329 +16,306.41127454986776,0.0,0.0,64.50763674734058,0.0684394590061856 +17,309.1954754486052,0.0,0.0,65.0937843049695,0.0690613330007181 +18,306.76198031973763,0.0,0.0,64.58146954099739,0.0685177920022397 +19,296.2609044530781,0.0,0.0,62.37071672696381,0.0661722910008393 +20,307.906254599804,0.0,0.0,64.82236938943242,0.0687733750019106 +21,308.04205891249177,0.0,0.0,64.8509597710509,0.0688037080035428 +22,307.9202455579482,0.0,0.0,64.82531485430489,0.068776499996602 +23,308.26330444060716,0.0,0.0,64.89753777696993,0.068853124997986 +24,304.56744666191145,0.0,0.0,64.11946245513926,0.0680276249986491 +25,312.2052199573735,0.0,0.0,65.72741472786811,0.0697335840013693 +26,307.5005161295389,0.0,0.0,64.73695076411346,0.0686827500030631 +27,318.98524529080635,0.0,0.0,67.15478848227502,0.0712479579960927 +28,329.1152803585185,0.0,0.0,69.28742744389862,0.0735105840067262 +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206 +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733 +2,291.12877419678506,0.0,0.0,64.01819623510673,0.0687049580010352 +3,289.13703351517285,0.0,0.0,63.58021944577464,0.0682349170019733 +4,287.799607294358,0.0,0.0,63.286124111191775,0.0679192909956327 +5,291.371363998525,0.0,0.0,64.07154088156179,0.0687622080004075 +6,289.56394921064606,0.0,0.0,63.67409670969008,0.068335667005158 +7,292.13638840929866,0.0,0.0,64.23976706596653,0.0689427499964949 +8,283.5650571496894,0.0,0.0,62.35496138817781,0.0669199580006534 +9,287.130631504071,0.0,0.0,63.13901868151625,0.0677614160013035 +10,289.67976939419503,0.0,0.0,63.699565161782736,0.0683629999984987 +11,292.1418630957887,0.0,0.0,64.2409709303218,0.0689440419955644 +12,293.0022242707416,0.0,0.0,64.43016133475076,0.0691470829988247 +13,293.2524074633523,0.0,0.0,64.4851757412225,0.0692061250010738 +14,292.1868810008963,0.0,0.0,64.2508702097428,0.0689546659996267 +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097 +16,289.3466056584585,0.0,0.0,63.62630362495372,0.0682843749964376 +17,290.05283648513034,0.0,0.0,63.78160130644845,0.0684510419960133 +18,292.61538991766724,0.0,0.0,64.34509781743297,0.069055791995197 +19,291.45399282192466,0.0,0.0,64.08971066998504,0.068781707996095 +20,292.67577253005464,0.0,0.0,64.35837574208907,0.0690700419945642 +21,292.25150521505736,0.0,0.0,64.26508084775038,0.0689699169961386 +22,288.79928071261065,0.0,0.0,63.50594878924803,0.0681552090027253 +23,290.00304733298486,0.0,0.0,63.77065284654021,0.0684392920011305 +24,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247 +25,293.6300636211133,0.0,0.0,64.56822100558581,0.0692952499957755 +26,289.9055876714127,0.0,0.0,63.749221808825894,0.0684162920006201 +27,284.5073479632638,0.0,0.0,62.5621678327499,0.0671423339954344 +28,296.6712669039547,0.0,0.0,65.23697093966203,0.0700129590040887 +0,411.18397650340427,1.167188903294335,11.571844269803837,72.9993288374657,0.0697049590016831 +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.0697707910003373 +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.0708791670040227 +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.067930666002212 +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.0708610420042532 +5,413.635956981174,1.1741491074080366,11.64084972201682,73.43463988903406,0.0701206250014365 +6,420.48804217203855,1.1935994708857542,11.83368618278162,74.6511211933976,0.0712822080022306 +7,410.6007148882734,1.1655332539407597,11.555429689069816,72.89577979646637,0.0696060830014175 +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.0684407080043456 +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.0699344580061733 +10,429.4455521502114,1.2190263037516138,12.085775068623144,76.24138796892237,0.0728007079960662 +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.0671137079989421 +12,445.29103640889906,1.264005375045537,12.53171043259432,79.05450759927656,0.0754868750009336 +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.0677466670022113 +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.0702987499971641 +15,410.0169695614531,1.163876231520751,11.539001495362871,72.79214487996926,0.0695071250011096 +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.0676083329963148 +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717 +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.0705336250030086 +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.0665746669983491 +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.0700137500025448 +21,403.1911817621741,1.144500515951021,11.34690511528584,71.58033226905101,0.0683500000013737 +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.0718155840004328 +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.0667553750026854 +24,401.4849191657379,1.1396571103650306,11.29888620847616,71.27741184540147,0.0680607500034966 +25,426.8551889258219,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923 +26,413.6236695024976,1.1741142281092791,11.640503918683429,73.43245843803464,0.070118541996635 +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523 +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.0703375419980147 +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.0663894170065759 +0,315.89567899052815,0.0,0.0,70.69041793477467,0.0832259160015382 +1,312.32888500652234,0.0,0.0,69.8922488739558,0.0822862080021877 +2,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424 +3,315.90675086282243,0.0,0.0,70.69289557322259,0.0832288329984294 +4,299.2312370810115,0.0,0.0,66.96128695394593,0.078835500004061 +5,317.14049354538116,0.0,0.0,70.96897971002608,0.0835538750034174 +6,317.43117509131514,0.0,0.0,71.03402776650366,0.0836304580006981 +7,312.8783039921803,0.0,0.0,70.01519660733908,0.0824309579984401 +8,312.72885063157213,0.0,0.0,69.98175227357386,0.0823915829969337 +9,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071 +10,297.0645600830759,0.0,0.0,66.47643289388668,0.0782646670049871 +11,320.132881830413,0.0,0.0,71.63860956747773,0.0843422500038286 +12,305.29682664515053,0.0,0.0,68.31863081721116,0.0804335410066414 +13,306.0025007629592,0.0,0.0,68.47654496935486,0.080619458000001 +14,317.616212578826,0.0,0.0,71.07543503540818,0.0836792080008308 +15,313.46473429199887,0.0,0.0,70.14642664858644,0.0825854590002563 +16,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633 +17,317.8055239782236,0.0,0.0,71.1177987106126,0.083729084006336 +18,312.42836494049845,0.0,0.0,69.91451026775316,0.0823124169983202 +19,310.49337764575245,0.0,0.0,69.48150320351859,0.0818026249980903 +20,319.06867904096777,0.0,0.0,71.40046468308539,0.0840618750007706 +21,315.95309183579826,0.0,0.0,70.70326565095722,0.0832410419970983 +22,314.0385061273956,0.0,0.0,70.27482400740125,0.0827366250014165 +23,314.3986175247909,0.0,0.0,70.35540891842726,0.0828314999962458 +24,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661 +25,312.9080390484739,0.0,0.0,70.02185065073537,0.0824387920001754 +26,316.7443235347586,0.0,0.0,70.88032568438815,0.0834495000017341 +27,312.2983604376832,0.0,0.0,69.88541815523429,0.0822781659953761 +0,305.2603840466375,0.0,0.0,70.23005972174292,0.0822855000005802 +1,311.8426015201836,0.0,0.0,71.74440468894973,0.0840597919959691 +2,309.3793097001562,0.0,0.0,71.17768479775621,0.0833957909999298 +3,307.9774835661487,0.0,0.0,70.85517215525161,0.0830179169934126 +4,309.9985372950614,0.0,0.0,71.32014806270742,0.0835627089982153 +5,317.29333507952543,0.0,0.0,72.99843358823003,0.0855290830004378 +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142 +7,307.5211780361769,0.0,0.0,70.7501917310103,0.0828949160058982 +8,307.52566313089267,0.0,0.0,70.75122359916683,0.0828961250008433 +9,309.28022911738526,0.0,0.0,71.1548897165438,0.0833690829967963 +10,309.2709546995603,0.0,0.0,71.15275598759708,0.0833665829995879 +11,307.9507398632547,0.0,0.0,70.84901933638095,0.0830107080037123 +12,305.0501624157072,0.0,0.0,70.18169485533174,0.0822288329945877 +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517 +14,263.23315694845485,0.0,0.0,60.56102035961698,0.0709567080048145 +15,281.69931878209627,0.0,0.0,64.80945781231267,0.0759344170000986 +16,310.20798354982014,0.0,0.0,71.36833454136281,0.0836191669950494 +17,307.4975319241093,0.0,0.0,70.74475156271633,0.0828885419978178 +18,312.2465028928711,0.0,0.0,71.83732869418587,0.0841686670028138 +19,264.4872154298051,0.0,0.0,60.84953667762806,0.0712947499996516 +20,307.0058314139288,0.0,0.0,70.63162795415167,0.0827559999961522 +21,313.308421210062,0.0,0.0,72.0816400779537,0.0844549160028691 +22,309.2122178896617,0.0,0.0,71.1392426400334,0.0833507499992265 +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184 +24,287.64237234819007,0.0,0.0,66.17675284530496,0.077536416996736 +25,306.2275548020647,0.0,0.0,70.45257290545298,0.0825462089997017 +26,307.19379440968873,0.0,0.0,70.67487186363874,0.0828066670001135 +27,303.97726690862385,0.0,0.0,69.9348579925237,0.0819396250008139 +28,311.54442867805176,0.0,0.0,71.67580523220816,0.0839794170024106 +29,307.42689047443804,0.0,0.0,70.72849936135475,0.0828695000018342 +0,289.20382575590736,0.0996796274434423,0.0,62.69848566192523,0.0674275420024059 +1,293.9195168609384,0.1013049805357094,0.0,63.720832756961265,0.0685270000030868 +2,293.63447150195356,0.1012067342033387,0.0,63.65903581390008,0.0684605420028674 +3,291.00346139953365,0.1002999062728172,0.0,63.08864104560202,0.067847124999389 +4,290.50771376254335,0.1001290373722001,0.0,62.981164507113895,0.0677315420034574 +5,293.7504532056515,0.1012467095148155,0.0,63.684180284818986,0.0684875830047531 +6,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.0687160410016076 +7,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.0670849999951315 +8,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.0684643329950631 +9,290.6228033105725,0.1001687051851697,0.0,63.00611556147178,0.0677583750002668 +10,292.06412282992403,0.1006654835121521,0.0,63.31858912914369,0.0680944170017028 +11,290.22624120801856,0.1000320224751902,0.0,62.920142136894654,0.0676659169985214 +12,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.0667457500021555 +13,290.24715059938825,0.1000392292966641,0.0,62.92467522760175,0.0676707919992622 +14,290.5952801459097,0.1001592188002905,0.0,63.00014862538278,0.0677519580058287 +15,287.0188825965561,0.0989265450125997,0.0,62.224796812925256,0.0669181249977555 +16,294.8216615026295,0.1016159219333511,0.0,63.91641489607788,0.0687373339969781 +17,292.6999826596284,0.1008846447586035,0.0,63.45644155316163,0.068242666995502 +18,294.47674453414845,0.1014970397061632,0.0,63.84163797517671,0.0686569169993163 +19,291.70115300347874,0.1005403790223387,0.0,63.23989840505106,0.0680097910008044 +20,291.2361453845984,0.10038010525664,0.0,63.1390862064266,0.0679013750050216 +21,290.8948054959841,0.1002624559384136,0.0,63.06508478526217,0.0678217919994494 +22,292.993606263265,0.1009858477469893,0.0,63.52009823285628,0.0683111250036745 +23,289.21990989831363,0.0996851711506136,0.0,62.701972653735965,0.0674312920018564 +24,276.5893870013989,0.095331819968313,0.0,59.9637147600689,0.0644864999994752 +25,294.1384413389605,0.1013804370423806,0.0,63.76829489965745,0.0685780419953516 +26,282.89311931638207,0.0975045218232015,0.0,61.33034422679377,0.0659562079963507 +27,293.29813271570947,0.1010908086106535,0.0,63.586118616101075,0.0683821249986067 +28,294.9056550815358,0.1016448719260808,0.0,63.93462444150483,0.068756917004066 +0,370.44916321321614,0.0,0.0,65.64209549207466,0.0671277500005089 +1,371.36386610958994,0.0,0.0,65.80417715086381,0.0672934999965946 +2,368.962830282296,0.0,0.0,65.3787232999547,0.0668584169980022 +3,368.9108618969243,0.0,0.0,65.36951471196507,0.0668489999952726 +4,376.83391647843223,0.0,0.0,66.77344798290869,0.0682847079951898 +5,379.53434024077234,0.0,0.0,67.25195216669212,0.068774041996221 +6,377.5320155936468,0.0,0.0,66.8971483265304,0.0684112080052727 +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257 +8,381.6909531277366,0.0,0.0,67.63409525978926,0.0691648339998209 +9,375.5701640445277,0.0,0.0,66.54951615586617,0.0680557079977006 +10,374.0240484961872,0.0,0.0,66.27555072539892,0.067775542003801 +11,371.35052776493495,0.0,0.0,65.80181365006399,0.0672910830035107 +12,370.73061027987507,0.0,0.0,65.69196677553322,0.0671787500032223 +13,394.8672224542054,0.0,0.0,69.96887696601637,0.0715524580009514 +14,365.1862909781526,0.0,0.0,64.70953578855121,0.0661740840005222 +15,371.5834610794553,0.0,0.0,65.84308849258868,0.0673332920050597 +16,386.614659576844,0.0,0.0,68.50655615591829,0.0700570409971987 +17,386.60155849554985,0.0,0.0,68.50423469722772,0.0700546669977484 +18,362.7040769916651,0.0,0.0,64.26969749570833,0.0657242910019704 +19,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238 +20,379.3593519471741,0.0,0.0,67.2209449478372,0.0687423330018646 +21,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073 +22,376.3324220394227,0.0,0.0,66.6845851938321,0.0681938340057968 +23,375.2703236266904,0.0,0.0,66.49638564486882,0.0680013750024954 +24,387.82208398640864,0.0,0.0,68.72050688455441,0.0702758339975844 +25,379.18068825981504,0.0,0.0,67.18928646405266,0.0687099580027279 +26,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301 +27,382.47504806500143,0.0,0.0,67.7730337157446,0.0693069170010858 +28,362.6224518506248,0.0,0.0,64.25523385039665,0.0657095000060508 +0,298.5621379017781,0.0,0.0,65.17760957180526,0.0699610410010791 +1,293.7520815286884,0.0,0.0,64.12755018213558,0.0688339170010294 +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092 +3,291.0702814766676,0.0,0.0,63.54209980330101,0.068205499999749 +4,297.6933418060511,0.0,0.0,64.98794703414137,0.0697574589939904 +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567 +6,293.15729192518216,0.0,0.0,63.99770463364393,0.0686945419947733 +7,291.59732372815654,0.0,0.0,63.65715576564372,0.0683290000015404 +8,289.71177993007666,0.0,0.0,63.2455321138121,0.0678871669952059 +9,288.3285607864271,0.0,0.0,62.943568449127,0.0675630420009838 +10,287.9739957844177,0.0,0.0,62.86616513392031,0.0674799580010585 +11,292.9851689308829,0.0,0.0,63.96012932218745,0.0686542090043076 +12,294.059699195972,0.0,0.0,64.19470465911147,0.0689059999931487 +13,288.9098350378217,0.0,0.0,63.070463528582806,0.0676992500011692 +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247 +15,293.23659577732656,0.0,0.0,64.01501706163273,0.0687131249942467 +16,280.4243482266323,0.0,0.0,61.21803927179926,0.0657108750019688 +17,295.6641182362926,0.0,0.0,64.54495736876346,0.0692819579999195 +18,294.7314796376094,0.0,0.0,64.34135769305185,0.0690634159982437 +19,292.6675907282371,0.0,0.0,63.890800410470675,0.0685797919941251 +20,291.79132220494307,0.0,0.0,63.69950660445531,0.0683744589987327 +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606 +22,290.6044059821546,0.0,0.0,63.440396850261365,0.0680963329941732 +23,290.49878844398484,0.0,0.0,63.41734001286348,0.0680715839989716 +24,291.0869974835,0.0,0.0,63.54574899128773,0.0682094170042546 +25,290.73012372139635,0.0,0.0,63.46784166219275,0.0681257920005009 +26,287.31287997933134,0.0,0.0,62.7218402435357,0.0673250410036416 +27,292.54952051034445,0.0,0.0,63.865025090740104,0.0685521250052261 +28,291.9493964926538,0.0,0.0,63.734015012923166,0.0684115000040037 +0,291.29299505714096,0.0,0.0,62.99496139075435,0.0682530839985702 +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809 +2,289.0799426382046,0.0,0.0,62.51636714354541,0.067734541997197 +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137 +4,297.886977244811,0.0,0.0,64.42097458150106,0.0697981249977601 +5,290.82548775033143,0.0,0.0,62.893858359641,0.0681435420046909 +6,268.5173277099082,0.0,0.0,58.06950039603958,0.0629164999991189 +7,292.0704497581507,0.0,0.0,63.16309357966455,0.068435250002949 +8,293.8949497924379,0.0,0.0,63.55765957049728,0.0688627499985159 +9,293.04956393422503,0.0,0.0,63.37483660392384,0.068664666992845 +10,290.9037299843468,0.0,0.0,62.91077900859089,0.0681618750022607 +11,291.32144445247934,0.0,0.0,63.001113850962255,0.0682597499981056 +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997 +13,292.62811511187584,0.0,0.0,63.28369417090083,0.0685659169976133 +14,291.9456155250125,0.0,0.0,63.136096954856455,0.0684059999985038 +15,288.2672740442093,0.0,0.0,62.34061960559938,0.0675441249986761 +16,293.5677518423963,0.0,0.0,63.48689981114927,0.0687860839971108 +17,269.05080725191584,0.0,0.0,58.184870568758406,0.0630414999977801 +18,292.5950351222772,0.0,0.0,63.27654029935935,0.0685581660000025 +19,288.8240474431492,0.0,0.0,62.46102730288279,0.0676745829987339 +20,289.09861444034067,0.0,0.0,62.52040510351909,0.0677389170014066 +21,292.22515879396974,0.0,0.0,63.19655092297043,0.068471499995212 +22,289.8157859281682,0.0,0.0,62.67550045751957,0.0679069580000941 +23,289.92461574616726,0.0,0.0,62.69903597090075,0.0679324579978128 +24,289.408032574084,0.0,0.0,62.58731980356169,0.0678114170004846 +25,291.7665414108356,0.0,0.0,63.09737042486749,0.0683640410061343 +26,292.56711921054875,0.0,0.0,63.27050321020389,0.0685516250014188 +27,293.90632783646987,0.0,0.0,63.560120183888806,0.0688654159966972 +28,296.77573933170015,0.0,0.0,64.18065850586514,0.0695377499941969 +0,311.59367925352166,0.0,0.0,72.32524053893655,0.0842451249991427 +1,314.6147113063084,0.0,0.0,73.02646423004957,0.0850619169941637 +2,317.0589047950213,0.0,0.0,73.59379564196513,0.085722749994602 +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667 +4,310.3879176166453,0.0,0.0,72.04536643934435,0.0839191249979194 +5,319.6777081144411,0.0,0.0,74.20165643187254,0.086430791998282 +6,254.6704492989941,0.0,0.0,59.112564631718605,0.0688548749967594 +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371 +8,273.9504631496793,0.0,0.0,63.58772485539658,0.0740675839988398 +9,303.15396548952185,0.0,0.0,70.36626521721826,0.0819632919956347 +10,319.6621404622535,0.0,0.0,74.19804296258846,0.0864265829950454 +11,321.3189864206904,0.0,0.0,74.58262002707511,0.0868745420011691 +12,327.9853465847884,0.0,0.0,76.12997523512246,0.0886769159988034 +13,316.0251306481012,0.0,0.0,73.35384223848772,0.0854432499982067 +14,293.83489274284335,0.0,0.0,68.20317840615691,0.0794437079966883 +15,319.29011864863867,0.0,0.0,74.1116915089265,0.0863260000041918 +16,317.9883472997439,0.0,0.0,73.8095322155767,0.0859740419982699 +17,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388 +18,317.9663070322047,0.0,0.0,73.80441636195883,0.0859680830035358 +19,309.99647784933063,0.0,0.0,71.95450780769507,0.0838132920034695 +20,318.1546314596068,0.0,0.0,73.84812908919976,0.0860190000021248 +21,317.56423360371525,0.0,0.0,73.7110895091822,0.0858593750017462 +22,314.6444522037832,0.0,0.0,73.03336750732035,0.0850699579968932 +23,291.90250070508733,0.0,0.0,67.75464325203872,0.0789212500021676 +24,315.9423732511658,0.0,0.0,73.33463309196694,0.0854208750024554 +25,312.00345697187805,0.0,0.0,72.42035566488721,0.0843559159984579 +26,315.7848733838278,0.0,0.0,73.2980751752038,0.0853782919948571 +27,316.48175922730144,0.0,0.0,73.4598321029379,0.0855667079958948 +28,318.58722249833687,0.0,0.0,73.94853950511737,0.0861359590053325 +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.0687121249939082 +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.0684735419999924 +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.0682607499984442 +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.0693537920014932 +4,282.3759053861895,0.9401410231953468,0.0,57.6822008425016,0.061543249998067 +5,321.98321971372366,1.072009430901668,0.0,65.77296572822493,0.0701755830014008 +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.069085625000298 +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.0674245410045841 +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.067374958001892 +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.0674674160036374 +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.0676157499983673 +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.0686493749963119 +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.0677805829982389 +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.0658772080059861 +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.0679051670012995 +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.0631127919987193 +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.068294083001092 +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.0672580419995938 +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.0678333329997258 +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.0681575409980723 +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.0683888749990728 +21,316.3211247316838,1.053158078260359,0.0,64.61634402745813,0.0689415410015499 +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.0673742090002633 +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.0688007909993757 +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264 +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.0688696249999338 +26,283.9395447763309,0.9453469968925204,0.0,58.00161251901851,0.061884041999292 +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.0701700000063283 +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.0685499159953906 +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.0680872920056572 +0,318.0434962832716,0.1047574098429748,0.0,66.0670064743028,0.0704760419976082 +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633 +2,311.3660715806597,0.1025579945917851,0.0,64.67990858921917,0.0689963750046445 +3,307.96812656956257,0.1014387768674448,0.0,63.97405527773522,0.0682434159971308 +4,307.9854286365557,0.1014444758354926,0.0,63.97764942691737,0.0682472500047879 +5,303.54277752976253,0.0999811520190258,0.0,63.05477987333232,0.0672627919993829 +6,295.5978232288647,0.097364236900153,0.0,61.40437873836319,0.0655022499995539 +7,309.92668146656416,0.1020838871760751,0.0,64.3809048457114,0.0686774170026183 +8,281.20051954266887,0.0926220420101017,0.0,58.41363449437083,0.0623119160009082 +9,299.98387491674634,0.0988089179567675,0.0,62.31549092473475,0.0664741660002619 +10,305.7382448097462,0.1007042967094025,0.0,63.51084312472989,0.0677492910035653 +11,294.734003229727,0.0970797112087374,0.0,61.224937868977115,0.0653108339975006 +12,298.89347681440523,0.0984497617965761,0.0,62.08898310637403,0.0662325419980334 +13,308.355851863169,0.1015664861209384,0.0,64.05459724693849,0.0683293330002925 +14,310.24746403189397,0.1021895467825737,0.0,64.44754083754319,0.0687485000016749 +15,311.1235091390795,0.1024780991894201,0.0,64.62952122212762,0.0689426249955431 +16,308.5540400267205,0.1016317654896971,0.0,64.09576676883565,0.0683732500037876 +17,305.98663773748234,0.100786112561753,0.0,63.562441655612275,0.0678043330044602 +18,292.8154993760287,0.0964477929433559,0.0,60.82640808294316,0.064885708001384 +19,306.57198705890426,0.1009789153685455,0.0,63.68403595909606,0.0679340420028893 +20,299.9385619885642,0.0987939927498564,0.0,62.3060780942428,0.0664641249968553 +21,306.6251973620329,0.1009964418188514,0.0,63.69508930708896,0.0679458330050692 +22,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.067884750002122 +23,304.5282532805252,0.1003057487748765,0.0,63.25949222735547,0.0674811659991974 +24,312.89270739925354,0.1030608390643127,0.0,64.99703583655992,0.069334665997303 +25,306.72541736758814,0.1010294523608656,0.0,63.715907955585934,0.0679680410030414 +26,306.35518366378886,0.1009075045005892,0.0,63.63899950503827,0.0678860000043641 +27,303.16651925294775,0.0998572197802858,0.0,62.97661994143359,0.0671794160007266 +28,307.1612805694235,0.1011730173153568,0.0,63.80644958688507,0.0680646250038989 +0,376.1194842106595,0.1028491890102979,1.4741717091476034,69.90316546399914,0.070418499999505 +1,375.3772813659091,0.1026462349920451,1.471262701552647,69.76522438292668,0.0702795420002075 +2,372.25223442040107,0.1017916965874763,1.459014317753828,69.18442311395476,0.0696944589944905 +3,385.4868428198003,0.1054106761880777,1.510886358695781,71.64412291583018,0.0721722919988678 +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.0704831249968265 +5,358.7098339166928,0.0980885517956502,1.4059359090709862,66.66751903711025,0.0671589999983552 +6,348.4707482819762,0.0952886924479016,1.3658045917532566,64.76454796709048,0.0652419999969424 +7,377.0809007160486,0.1031120866054275,1.4779399080111284,70.0818481961556,0.0705985000022337 +8,372.1874670252756,0.1017739860610543,1.4587604668751115,69.17238585949659,0.069682332999946 +9,344.4984530925867,0.0942024755517054,1.3502354829077776,64.02628254997578,0.0644982919984613 +10,365.7985019329385,0.1000269351744431,1.4337194041670178,67.98497360689649,0.0684861670015379 +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.0660061249946011 +12,327.2959987393395,0.089498495690276,1.282811771560623,60.82914423749095,0.0612775839981623 +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.0656358750056824 +14,348.36548389342033,0.0952599080922669,1.36539201598916,64.74498420004412,0.0652222920034546 +15,370.7199715553666,0.101372702093346,1.4530087300046275,68.89964652277756,0.0694075829960638 +16,393.78017104004334,0.1076784717090629,1.5433914278299028,73.1854679382598,0.0737250000020139 +17,402.0710529521565,0.1099455982915385,1.5758869088453855,74.72635830548236,0.0752772499981802 +18,373.83523342380454,0.1022245647863835,1.4652187619381638,69.478629199812,0.0699908340029651 +19,367.5913620968913,0.1005171895260845,1.4407463832072125,68.3181831478955,0.0688218330033123 +20,365.9671931593512,0.1000730634835524,1.4343805765975846,68.01632548098779,0.0685177500054123 +21,333.9660446668918,0.0913224076201508,1.3089545092221626,62.06879637916255,0.0625263750043814 +22,366.693153401072,0.1002715759915428,1.437225922545447,68.15124781558525,0.068653667003673 +23,363.69117314929224,0.0994506899505857,1.4254598892917296,67.5933189364148,0.0680916250057634 +24,364.9750647376018,0.0998017677707415,1.430492004713962,67.83193482818066,0.068332000002556 +25,369.7136034968617,0.1010975125777582,1.4490643469478677,68.71260938201632,0.0692191669950261 +26,376.5937403004009,0.102978873475636,1.4760305198174497,69.99130767227395,0.0705072920027305 +27,364.0695065079672,0.0995541445195425,1.4269427381134436,67.6636335584491,0.0681624579956405 +28,367.74291871241866,0.1005586324070053,1.4413403978337438,68.34635049262799,0.0688502080010948 +29,358.35531160656274,0.0979916083146192,1.4045463858428764,66.6016297845029,0.0670926250022603 +0,303.23390333758607,0.0,0.0,75.59622229023033,0.0861223750034696 +1,299.87754304590914,0.0,0.0,74.75948155674698,0.0851691249990835 +2,303.496507488735,0.0,0.0,75.66168951393483,0.0861969580000732 +3,280.98976423022,0.0,0.0,70.05075766339677,0.0798047499993117 +4,302.6632146728885,0.0,0.0,75.453949586947,0.085960291995434 +5,302.2430473239825,0.0,0.0,75.3492018527478,0.0858409590000519 +6,288.1644636376654,0.0,0.0,71.83941046673124,0.0818424580065766 +7,299.15970621388135,0.0,0.0,74.58052481040428,0.0849652499964577 +8,303.53919918635705,0.0,0.0,75.67233255558638,0.0862090829978114 +9,304.1503789285395,0.0,0.0,75.82469968584712,0.0863826659988262 +10,302.7150010544735,0.0,0.0,75.46685993361608,0.0859750000017811 +11,304.3796818047821,0.0,0.0,75.8818649005986,0.086447790999955 +12,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672 +13,299.5502411494769,0.0,0.0,74.6778851829696,0.0850761670008068 +14,299.0150508701026,0.0,0.0,74.54446222834005,0.084924165996199 +15,301.69890677153836,0.0,0.0,75.21354759474123,0.0856864160014083 +16,293.7211350318159,0.0,0.0,73.22468883198815,0.0834206250001443 +17,301.99774870612936,0.0,0.0,75.28804889907536,0.0857712910001282 +18,290.7437186585,0.0,0.0,72.4824188300841,0.0825750000003608 +19,300.40744832723414,0.0,0.0,74.89158696118525,0.0853196249954635 +20,302.49420835289175,0.0,0.0,75.41181630569348,0.0859122920010122 +21,302.62287146478,0.0,0.0,75.4438920238101,0.0859488339992822 +22,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865 +23,300.38544230519113,0.0,0.0,74.88610085915057,0.0853133749988046 +24,302.0932584124877,0.0,0.0,75.31185947207949,0.0857984169997507 +25,298.48529699349257,0.0,0.0,74.4123945691023,0.0847737090007285 +26,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006 +27,298.8282953574442,0.0,0.0,74.49790407275962,0.0848711250000633 +28,301.1461152201156,0.0,0.0,75.07573664239862,0.0855294160064659 +0,307.4320612663604,0.0,0.0,63.35199239749272,0.0671285829957923 +1,319.09229461987655,0.0,0.0,65.75479648930452,0.0696746250032447 +2,315.8303683771894,0.0,0.0,65.08261699808075,0.0689623750004102 +3,320.11071629586803,0.0,0.0,65.96466088018519,0.0698970000012195 +4,312.61748207640557,0.0,0.0,64.42054308274855,0.0682608329952927 +5,307.04469238953703,0.0,0.0,63.27216796396276,0.0670440000030794 +6,315.62218214509465,0.0,0.0,65.03971642180838,0.0689169170000241 +7,310.95312800205056,0.0,0.0,64.07757252128222,0.0678974169932189 +8,313.5021384751786,0.0,0.0,64.60284269463226,0.0684540000002016 +9,312.90657876781614,0.0,0.0,64.48011673723646,0.0683239580030203 +10,312.5113876374554,0.0,0.0,64.39868038546805,0.0682376670010853 +11,300.6441130311362,0.0,0.0,61.95321166128344,0.0656464170024264 +12,314.46636338728104,0.0,0.0,64.80153885224628,0.068664540995087 +13,314.6789461985706,0.0,0.0,64.84534542397851,0.0687109589998726 +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814 +15,319.99393270665615,0.0,0.0,65.9405954882237,0.0698715000035008 +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653 +17,315.12031493923246,0.0,0.0,64.93629751592275,0.0688073330020415 +18,320.1736878576916,0.0,0.0,65.9776373208644,0.0699107500040554 +19,315.997721590775,0.0,0.0,65.1171031849511,0.0689989170059561 +20,315.1537104407051,0.0,0.0,64.94317926907071,0.0688146249958663 +21,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792 +22,316.5843095668302,0.0,0.0,65.23798035321532,0.0691270000024815 +23,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724 +24,324.2240911390176,0.0,0.0,66.8122969098102,0.0707951660006074 +25,319.4119244478356,0.0,0.0,65.82066205435802,0.069744417000038 +26,316.58221200981916,0.0,0.0,65.237548113275,0.0691265419955016 +27,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193 +28,318.88009651176566,0.0,0.0,65.71106919269002,0.0696282909993897 +0,295.56381491985087,0.0,0.0,64.40996834269353,0.0689168749959208 +1,292.9117899350054,0.0,0.0,63.832032760950376,0.068298499994853 +2,298.182066414368,0.0,0.0,64.98054392523157,0.069527375002508 +3,292.7641857549563,0.0,0.0,63.7998665075584,0.0682640829982119 +4,293.3478092458931,0.0,0.0,63.92705112447601,0.0684001670015277 +5,294.64942974187426,0.0,0.0,64.21070335356598,0.0687036669987719 +6,296.68959874211004,0.0,0.0,64.65530182633425,0.0691793750011129 +7,294.8887006250224,0.0,0.0,64.2628458325534,0.0687594580012955 +8,295.15227983001137,0.0,0.0,64.32028563875475,0.0688209169966285 +9,290.6847022677367,0.0,0.0,63.34670052843714,0.0677792080023209 +10,294.45357766054786,0.0,0.0,64.16802280296643,0.0686579999965033 +11,292.47201807649003,0.0,0.0,63.73619663333556,0.0681959580033435 +12,294.7008941303778,0.0,0.0,64.22191859530722,0.0687156669955584 +13,272.00670099030486,0.0,0.0,59.276346140467126,0.0634240419967682 +14,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245 +15,301.81066704160895,0.0,0.0,65.77129718977528,0.0703734590060776 +16,295.9329991160775,0.0,0.0,64.49042183933697,0.0690029580000555 +17,295.25288419120227,0.0,0.0,64.34220958002342,0.0688443750041187 +18,301.8601629004876,0.0,0.0,65.78208344486653,0.0703849999990779 +19,286.4547915575912,0.0,0.0,62.42490834285863,0.0667929159972118 +20,290.8757295246105,0.0,0.0,63.38832964183578,0.0678237499960232 +21,288.97083044730425,0.0,0.0,62.97320951186117,0.0673795830007293 +22,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602 +23,295.5164591211883,0.0,0.0,64.399648454606,0.0689058330026455 +24,268.26248562413593,0.0,0.0,58.4603978374972,0.0625510000027134 +25,293.4117794845162,0.0,0.0,63.94099167076958,0.0684150829983991 +26,293.46628031085334,0.0,0.0,63.952868620253305,0.0684277910040691 +27,292.03207031876735,0.0,0.0,63.64032217334782,0.0680933749972609 +28,296.7944917425345,0.0,0.0,64.67816035804776,0.0692038329943898 +0,315.8166415430196,0.0,0.0,71.55382505573768,0.0880411670004832 +1,286.0633453360258,0.0,0.0,64.81269152577208,0.0797467500015045 +2,313.0570777710135,0.0,0.0,70.92859725771052,0.0872718750033527 +3,308.9532305134665,0.0,0.0,69.99879834880156,0.0861278330048662 +4,308.43414159245566,0.0,0.0,69.88118960703004,0.0859831250054412 +5,308.23565035456966,0.0,0.0,69.83621791952999,0.0859277909985394 +6,309.07130861685545,0.0,0.0,70.02555102374461,0.0861607499973615 +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234 +8,309.104489721779,0.0,0.0,70.03306878773974,0.086169999995036 +9,311.85239528042814,0.0,0.0,70.65565521210488,0.0869360419965232 +10,309.7618344994348,0.0,0.0,70.18200183000086,0.086353250000684 +11,307.98514910300486,0.0,0.0,69.7794624469775,0.0858579580017249 +12,311.25931787985377,0.0,0.0,70.52128307655853,0.0867707080033142 +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218 +14,307.8869545283353,0.0,0.0,69.75721473582777,0.0858305840010871 +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165 +16,306.82904378030355,0.0,0.0,69.5175264147203,0.0855356669999309 +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673 +18,310.8970159762155,0.0,0.0,70.43919719627168,0.0866697079982259 +19,309.5836716636141,0.0,0.0,70.1416359001896,0.0863035830043372 +20,311.40639092002573,0.0,0.0,70.5546050653412,0.0868117080026422 +21,317.1811027296167,0.0,0.0,71.8629677803392,0.088421542001015 +22,311.9760012189771,0.0,0.0,70.68366031550781,0.0869705000004614 +23,309.0541226205383,0.0,0.0,70.02165723344947,0.0861559590048273 +24,309.0817723407111,0.0,0.0,70.02792176476237,0.0861636670015286 +25,311.56422898167176,0.0,0.0,70.59036605942617,0.0868557089997921 +26,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687 +27,310.2794311568168,0.0,0.0,70.29927247315251,0.0864975419972324 +0,305.721962186582,0.0,0.0,63.66560385029554,0.0687287079999805 +1,307.5698377636455,0.0,0.0,64.05041792649908,0.0691441250019124 +2,304.5750584918347,0.0,0.0,63.426764887723195,0.0684708750050049 +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397 +4,302.7877946617043,0.0,0.0,63.05457301059663,0.0680690840017632 +5,302.41839922506983,0.0,0.0,62.97764761287684,0.0679860409945831 +6,304.01921499319684,0.0,0.0,63.311012287766246,0.068345917003171 +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322 +8,306.7875031062147,0.0,0.0,63.88749927969296,0.0689682500014896 +9,304.17471662540027,0.0,0.0,63.34339499669278,0.0683808749963645 +10,304.8949627430861,0.0,0.0,63.49338390712414,0.0685427920034271 +11,310.9972086145361,0.0,0.0,64.76415675402785,0.0699146249971818 +12,303.45410134996797,0.0,0.0,63.19332921036192,0.0682188749997294 +13,303.2832176918836,0.0,0.0,63.15774324459655,0.0681804590058163 +14,305.3787091124342,0.0,0.0,63.594122514500135,0.0686515420020441 +15,299.556141985043,0.0,0.0,62.381591856012456,0.0673425829954794 +16,310.09439777626403,0.0,0.0,64.57614933457363,0.0697116660012397 +17,309.0629659837681,0.0,0.0,64.36135701991627,0.069479792000493 +18,303.34771274786874,0.0,0.0,63.171174130147875,0.068194958003005 +19,302.234170867233,0.0,0.0,62.93928265680976,0.0679446250069304 +20,304.56560596920565,0.0,0.0,63.42479643064285,0.068468750003376 +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217 +22,305.56497926280053,0.0,0.0,63.63291266721779,0.0686934170007589 +23,307.9737025847265,0.0,0.0,64.13452146137145,0.0692349169985391 +24,306.6599897546909,0.0,0.0,63.86094503914815,0.0689395839945063 +25,302.4908700108722,0.0,0.0,62.992739418210725,0.0680023329987307 +26,300.3927852296424,0.0,0.0,62.555820089384135,0.0675306669945712 +27,307.767415320001,0.0,0.0,64.09156280972131,0.0691885419946629 +28,302.781304689866,0.0,0.0,63.05322149507873,0.0680676250049145 +29,302.1294503364202,0.0,0.0,62.91747494701346,0.0679210830057854 +0,254.6307029336884,0.0803251428812897,0.0,57.08440154096989,0.0676555829995777 +1,263.7963996346027,0.0832165298531869,0.0,59.139213882331546,0.0700909160004812 +2,253.7492302434404,0.0800470757865742,0.0,56.886788525658766,0.0674213749953196 +3,315.84115707071624,0.0996344344071659,0.0,70.8068713853593,0.0839192499988712 +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.0885723329993197 +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049 +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.0868600829999195 +7,326.48454970016655,0.1029919715142481,0.0,73.192961089459,0.0867472079989966 +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.0890692090033553 +9,330.8312320406672,0.1043631646815984,0.0,74.16742236705599,0.0879021250002551 +10,325.4089376060097,0.1026526617053658,0.0,72.95182491861333,0.0864614169986452 +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.0857947909971699 +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.0863410839956486 +13,323.1647140635819,0.1019447047519185,0.0,72.44870351036347,0.0858651249945978 +14,321.04641790612,0.1012764725255899,0.0,71.97381314151923,0.0853022919982322 +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.0856695000038598 +16,321.7960054059207,0.1015129354592809,0.0,72.14185946639569,0.0855014580010902 +17,303.00058629844494,0.0955837811667018,0.0,67.92820714913613,0.0805074999952921 +18,319.4832536685931,0.1007833607787359,0.0,71.62337506008836,0.0848869580004247 +19,324.52934299437413,0.1023751870644713,0.0,72.7546329404843,0.0862277080013882 +20,335.0232930833541,0.1056855814143072,0.0,75.10721985843438,0.0890159589980612 +21,328.476451821486,0.1036203318048851,0.0,73.63951580267174,0.0872764579980867 +22,329.2296486453677,0.1038579333266144,0.0,73.80837128411399,0.087476583001262 +23,327.0558388796751,0.1031721889210331,0.0,73.32103559321422,0.086898999994446 +24,324.61872924541194,0.1024033846200037,0.0,72.77467200328267,0.0862514580003335 +25,318.41955724016697,0.1004478098549422,0.0,71.38491020357897,0.084604333002062 +26,300.9517592509948,0.0949374634861182,0.0,67.46889071746803,0.0799631249974481 +27,324.7123495870697,0.1024329178508106,0.0,72.79566028597608,0.0862763330005691 +28,323.6961727674179,0.1021123573398794,0.0,72.56784861620767,0.0860063340005581 +29,321.83113513979686,0.1015240173942576,0.0,72.14973502818579,0.0855107919996953 +0,289.28287234917417,0.0,0.0,62.42629931011725,0.0676834159967256 +1,294.6927660431574,0.0,0.0,63.5937367053353,0.0689491669982089 +2,277.7601904303348,0.0,0.0,59.93974217495268,0.0649874579976312 +3,293.7341289609959,0.0,0.0,63.38686595306845,0.0687248750036815 +4,292.09271527384254,0.0,0.0,63.03265423879081,0.0683408339973539 +5,293.5832888779959,0.0,0.0,63.35431515566778,0.0686895830003777 +6,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502 +7,291.9546931410586,0.0,0.0,63.002869513194646,0.0683085410055355 +8,294.338014940254,0.0,0.0,63.517182575633115,0.0688661660024081 +9,291.76485654961874,0.0,0.0,62.96190339660087,0.0682641250023152 +10,291.4241799062767,0.0,0.0,62.88838648931725,0.0681844170030672 +11,289.7307595134493,0.0,0.0,62.52295189776321,0.0677882080053677 +12,295.45675398335953,0.0,0.0,63.75860280831983,0.0691279169986955 +13,268.6430896357433,0.0,0.0,57.97230159189356,0.0628543330021784 +14,296.1544940115595,0.0,0.0,63.90917282820156,0.0692911669975728 +15,296.023421474765,0.0,0.0,63.88088780272865,0.0692605000003823 +16,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743 +17,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523 +18,288.2072371897795,0.0,0.0,62.19418075479606,0.0674317500015604 +19,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575 +20,291.5402932180753,0.0,0.0,62.91344336287967,0.0682115839954349 +21,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078 +22,290.7937520213083,0.0,0.0,62.75234221016276,0.0680369160036207 +23,292.5845867335617,0.0,0.0,63.13879849377964,0.0684559169967542 +24,273.97462270495254,0.0,0.0,59.12282902014209,0.0641017499947338 +25,299.1048380666353,0.0,0.0,64.54584744206421,0.0699814580002566 +26,294.26660397366516,0.0,0.0,63.501772322208495,0.0688494580026599 +27,292.6253698145022,0.0,0.0,63.14759934948502,0.0684654590004356 +28,290.1271784005321,0.0,0.0,62.60849779924106,0.0678809579985681 +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526 +1,297.817315883756,0.0,0.0,62.733064436627,0.0677234579998184 +2,299.81856627760055,0.0,0.0,63.15461336348616,0.0681785409979056 +3,293.4782177778501,0.0,0.0,61.81906479135154,0.0667367499991087 +4,300.9928969475883,0.0,0.0,63.40197762896428,0.0684455830050865 +5,302.9091294778741,0.0,0.0,63.805618157525416,0.0688813329979893 +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736 +7,298.40897111216174,0.0,0.0,62.85769233295232,0.0678580000021611 +8,301.1378313788484,0.0,0.0,63.432507019064865,0.0684785409976029 +9,300.16524277859793,0.0,0.0,63.227638262025714,0.0682573750018491 +10,302.53570709857513,0.0,0.0,63.7269594330885,0.0687964169992483 +11,300.62625114769776,0.0,0.0,63.32474634198656,0.0683622079959604 +12,301.35917766867016,0.0,0.0,63.47913201473039,0.0685288749955361 +13,299.7551711903755,0.0,0.0,63.14125964669488,0.0681641249975655 +14,304.2527658133512,0.0,0.0,64.0886454373958,0.0691868750000139 +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185 +16,297.4405953485831,0.0,0.0,62.6537109795002,0.0676377920026425 +17,306.33775437514066,0.0,0.0,64.52783320392388,0.0696610000013606 +18,303.6565283499523,0.0,0.0,63.963052326397744,0.0690512910005054 +19,304.6771294210259,0.0,0.0,64.17803456329608,0.0692833749999408 +20,300.6194745682893,0.0,0.0,63.32331890452737,0.0683606670063454 +21,297.64673049065647,0.0,0.0,62.697131856865795,0.067684666995774 +22,301.97648382691904,0.0,0.0,63.60916309397653,0.0686692500021308 +23,297.5443027834249,0.0,0.0,62.67555620086746,0.0676613750038086 +24,292.8490031072213,0.0,0.0,61.686525270068515,0.0665936670047813 +25,305.28948829746935,0.0,0.0,64.30702353339768,0.0694226249979692 +26,299.9959370811122,0.0,0.0,63.19197524089363,0.0682188749997294 +27,300.89853428238985,0.0,0.0,63.38210081576173,0.0684241249982733 +28,298.13540828185586,0.0,0.0,62.80006830054803,0.0677957919979235 +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.0716147079947404 +1,398.6592292206605,1.0601916085650025,10.248518882795024,69.07556095804284,0.0674460419977549 +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.0773315420010476 +3,514.3190563490106,1.36777655626399,13.221840043885235,89.11590331966148,0.0870136250014184 +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.0868142500039539 +5,517.1547567068353,1.375317798265706,13.29473871656849,89.60724424085022,0.0874933750019408 +6,490.26978754538726,1.303820096438466,12.603594265571838,84.94889397564467,0.0829449170050793 +7,519.4725243133612,1.3814816534756962,13.354322650265065,90.00884311491652,0.0878855000046314 +8,518.1034381164648,1.3778407150727667,13.31912691237008,89.77162197435642,0.0876538750017061 +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281692,0.0889240420001442 +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.0830192919966066 +11,500.35038752648165,1.330628374601622,12.862740954482344,86.69555640673644,0.0846503749999101 +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.085572250005498 +13,488.42094043081113,1.298903285155243,12.556065089834012,84.62854480973004,0.0826321249987813 +14,503.4395128973858,1.338843573337746,12.94215454226488,87.23080820131315,0.0851729999994859 +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788 +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.0865403749994584 +17,493.5559371722591,1.312559260123976,12.6880728478651,85.51828410192365,0.083500875000027 +18,507.3150213055262,1.3491500737071616,13.041784045835897,87.9023163407666,0.0858286670045345 +19,517.1131388371582,1.375207119989715,13.293668826567243,89.60003312548373,0.0874863339995499 +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.421331250411,0.0892646670035901 +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.0859598329989239 +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.0867411250001168 +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.0798599589979858 +24,510.89991397744865,1.3586837125891915,13.133942555028854,88.52346958177273,0.0864351670024916 +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.0874901249990216 +26,423.54044139290176,1.1263605328553132,10.88815181760136,73.38672087141926,0.0716554999962681 +27,420.70326336992974,1.1188153611610816,10.815215157890457,72.89512391564892,0.071175500001118 +28,459.11156121555587,1.2209581239281746,11.802595197972352,79.55011776670491,0.0776734999963082 +29,402.5174899448091,1.070452240562397,10.347704992103171,69.74408059664233,0.0680987910018302 +0,309.7762415538039,0.0,0.0,63.37230984127286,0.068120000003546 +1,311.42073409796063,0.0,0.0,63.70873102876365,0.0684816249995492 +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803 +3,313.74090904811897,0.0,0.0,64.18337958505668,0.0689918330026557 +4,310.57698038804125,0.0,0.0,63.53612056236206,0.0682960830017691 +5,311.4457454166953,0.0,0.0,63.7138477059899,0.0684871250050491 +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942 +7,310.3448710223421,0.0,0.0,63.48863691233658,0.0682450419990345 +8,310.4030381748929,0.0,0.0,63.50053642662969,0.0682578329942771 +9,309.88272598227024,0.0,0.0,63.39409383658571,0.068143415999657 +10,314.95073715611716,0.0,0.0,64.43087952672482,0.0692578750022221 +11,311.97913169496366,0.0,0.0,63.82296492015055,0.068604416999733 +12,314.11153092259957,0.0,0.0,64.25919935788926,0.0690733329975046 +13,311.2255687180135,0.0,0.0,63.66880517497234,0.0684387080036685 +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324 +15,313.3998459687748,0.0,0.0,64.11360678701638,0.0689168330063694 +16,314.72354819575156,0.0,0.0,64.38440246600322,0.0692079159998684 +17,310.5500773260057,0.0,0.0,63.53061688275627,0.0682901670006685 +18,309.80466346329615,0.0,0.0,63.3781242382892,0.0681262500002048 +19,313.26815920758014,0.0,0.0,64.08666703789113,0.0688878750006551 +20,312.11271473244335,0.0,0.0,63.85029259898814,0.0686337919978541 +21,323.48735546048795,0.0,0.0,66.17725367558705,0.0711350830024457 +22,317.51420374814444,0.0,0.0,64.95529934124274,0.0698215829979744 +23,315.9167051463369,0.0,0.0,64.62849191451126,0.0694702920009149 +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978 +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328 +26,314.22105311215415,0.0,0.0,64.2816048015609,0.0690974169992841 +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759 +28,312.78100741484513,0.0,0.0,63.987008219015664,0.0687807499998598 +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293 +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.0874951669975416 +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.0867375840025488 +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.0861871669985703 +3,293.9572294015164,0.9146992271339104,0.0,69.27999701810545,0.0847011669975472 +4,300.39880553788765,0.9347433156071184,0.0,70.79815112653915,0.0865572499969857 +5,298.60714878159104,0.9291682628907408,0.0,70.37589250413203,0.0860410000022966 +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496 +7,300.03454654918687,0.9336098601853228,0.0,70.71230237329574,0.0864522920019226 +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.0858868340001208 +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.0709844160010106 +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.0850011670045205 +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.0865207090027979 +12,298.57230126240773,0.92905982875245,0.0,70.36767962217631,0.0860309589988901 +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825 +14,300.45317822288536,0.9349125057068,0.0,70.81096571001504,0.0865729170036502 +15,300.4835452655799,0.9350069980604652,0.0,70.81812263087598,0.0865816669975174 +16,298.95347907171913,0.9302459300376188,0.0,70.45751581210853,0.0861407920019701 +17,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.0860762919983244 +18,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.085864542001218 +19,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.0855547909959568 +20,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623 +21,296.81231300431466,0.9235833180957124,0.0,69.95288464836042,0.0855238340009236 +22,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.0852534170044236 +23,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.0801159580005332 +24,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.0712743749973014 +25,296.6898313446286,0.9232021950334184,0.0,69.92401810530892,0.0854885419976199 +26,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.0830227920014294 +27,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.0866290830017533 +28,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.0702899169991724 +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.0854961669974727 +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.0852910419998806 +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.085036708995176 +3,352.4283146868622,1.2669926655795811,0.0,78.06309649216129,0.0861206249974202 +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.0690652920020511 +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.0691986660021939 +6,276.21979273513165,0.9930202452498064,0.0,61.18286027184291,0.0674980420008068 +7,276.9739641940552,0.9957315191946784,0.0,61.349909731026955,0.0676823339963448 +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.068089874999714 +9,280.05765275444236,1.0068174922170603,0.0,62.032948714018886,0.0684358750004321 +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.0593904580018715 +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.0687335420007002 +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.0677226659972802 +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.0684477079994394 +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.0683194170051137 +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.0684337920029065 +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.0687179589949664 +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.0684492919972399 +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.0675360410023131 +19,280.94925472663203,1.0100228338774897,0.0,62.23043911954855,0.0686537500005215 +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814 +21,267.5825543832899,0.9619690578548056,0.0,59.269706467828335,0.065387415997975 +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.0728027500008465 +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.067395750003925 +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965 +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.0677298329974291 +26,278.3068472864164,1.000523282602216,0.0,61.645144186136534,0.0680080420061131 +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.0680346250010188 +28,277.9544010343528,0.999256225451112,0.0,61.56707711650399,0.067921916997875 +29,276.82374129899574,0.9951914623992656,0.0,61.31663526395476,0.0676456250002957 +0,478.8738629620707,0.3431147812004327,14.220201487529048,87.79926012273296,0.0864906249989871 +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.0864957080048043 +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.0880929580016527 +3,399.3710335699146,0.2861507286146987,11.859357974809182,73.22279199996125,0.0721314170004916 +4,491.1808267997274,0.3519327634103611,14.585657861340524,90.05568379267353,0.0887134170043282 +5,483.7304803199704,0.3465945643563198,14.364419167211922,88.68969796806718,0.0873677909985417 +6,483.518014469227,0.3464423318384717,14.358109975083329,88.65074335822227,0.087329417001456 +7,485.3377441423682,0.3477461744511833,14.412147007810152,88.98438219567502,0.0876580830008606 +8,499.413915114863,0.3578317997001645,14.83014014312904,91.56518163438656,0.0902004160016076 +9,473.2155736942138,0.3390605973447913,14.052178089956351,86.76183952056161,0.0854686669990769 +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.0707355000049574 +11,394.0454011504646,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108 +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425 +13,394.9993326892937,0.2830183897940962,11.729539932577543,72.42126129953374,0.0713418329978594 +14,378.78252964338554,0.2713989942512912,11.24798053952574,69.44798708452487,0.0684128749999217 +15,384.479575923064,0.2754809476401223,11.417154829973958,70.49251360168908,0.0694418330022017 +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.0705237079964717 +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.0727939999997033 +18,393.9042149535417,0.2822337341439276,11.697020315076117,72.22047663705172,0.0711440410013892 +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.0700297920047887 +20,398.0775187183235,0.2852239207439624,11.820946937499777,72.98563216370505,0.0718977919968892 +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.0706645410027704 +22,389.6303367203219,0.2791714855889576,11.57010712496458,71.43688125681884,0.0703721249956288 +23,388.1340397821256,0.2780993836509139,11.525674455754546,71.16254228311722,0.0701018750041839 +24,386.7157163168241,0.2770831499762293,11.483557215681506,70.90249937725069,0.0698457079997751 +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.0711431250019813 +26,388.7795265014115,0.2785618771206674,11.54484224066766,71.28088922321079,0.0702184580004541 +27,378.82221127416574,0.2714274262771667,11.249158889042578,69.455262524035,0.0684200420000706 +28,392.96851579515817,0.281563302456526,11.6692346462538,72.0489206174866,0.0709750419991905 +29,375.2639478299834,0.2688779181967877,11.143495943044648,68.80287173413357,0.067777374999423 +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.090134540994768 +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.088257416995475 +2,455.5753429091931,1.3050782533395655,13.497256672696034,88.47056791059792,0.0903868749956018 +3,419.6566096594096,1.202182522959485,12.433098197975724,81.49532050377981,0.0832605410032556 +4,435.18530530497446,1.2466672899803264,12.893164341112325,84.51091944708739,0.0863414589985041 +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.0862921669977367 +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.0870674999969196 +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.0829531249983119 +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.085397875001945 +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.0889262089986004 +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.087149708000652 +11,445.6432605229153,1.276626000744122,13.20300048138,86.5418046820226,0.088416334001522 +12,443.8860921648639,1.2715922730693427,13.15094113990136,86.20057093227965,0.0880677089953678 +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.0856246249968535 +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.0846896250004647 +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.0914325000048847 +16,448.61450172342313,1.2851376604214158,13.291028961726749,87.11880561172545,0.0890058329969178 +17,446.24997941202497,1.278364057116996,13.220975643341562,86.6596266087732,0.0885367079972638 +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.0873248749994672 +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951 +20,443.4385504379859,1.2703102085671665,13.137681893865697,86.11366045444791,0.0879789160026121 +21,442.1656725615023,1.2666638188720003,13.099970547807796,85.8664736161651,0.0877263750007841 +22,441.68348391262026,1.2652825019735825,13.085684823042577,85.77283487063022,0.0876307080034166 +23,435.0414455972906,1.2462551777381865,12.888902232923874,84.4829825750939,0.0863129170029424 +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.0910823329977574 +25,446.02715863284936,1.2777257465547136,13.214374168315857,86.616355871709,0.0884924999991199 +26,450.1188192756612,1.2894470510723803,13.33559713345909,87.410936935854,0.0893042919997242 +27,448.4937466626544,1.2847917356336875,13.287451371158928,87.09535555243103,0.0889818750001723 +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.0864285839998046 +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.0874653330029104 +0,310.5645000365186,0.0,0.0,62.906193325953055,0.0660357079977984 +1,288.3742824692979,0.0,0.0,58.41146802391626,0.0613173750025453 +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334 +3,321.1442400366122,0.0,0.0,65.04916578322343,0.0682852910031215 +4,320.22265380094257,0.0,0.0,64.86249447371847,0.0680893329990794 +5,319.2936180922495,0.0,0.0,64.67431424097813,0.0678917910045129 +6,321.08878720952856,0.0,0.0,65.03793357136217,0.0682735000009415 +7,320.00827793597637,0.0,0.0,64.81907170774105,0.0680437499977415 +8,320.43507321341815,0.0,0.0,64.90552095171516,0.0681344999975408 +9,317.3079830296693,0.0,0.0,64.2721152030753,0.0674695830020937 +10,320.68334814658476,0.0,0.0,64.95581012173277,0.0681872909990488 +11,325.38888014404125,0.0,0.0,65.90893614063914,0.0691878340003313 +12,295.5038000069898,0.0,0.0,59.85558288087539,0.0628333330023451 +13,298.2466145543028,0.0,0.0,60.41115192418272,0.0634165410010609 +14,342.3866146636323,0.0,0.0,69.35190136579169,0.0728020829992601 +15,299.69944448734907,0.0,0.0,60.70542896044151,0.0637254579996806 +16,292.9898605966174,0.0,0.0,59.34637349429057,0.0622987910028314 +17,323.37110492136594,0.0,0.0,65.50022697320047,0.0687587919965153 +18,316.76831626965384,0.0,0.0,64.16280334826533,0.0673548330014455 +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589 +20,319.69611777139016,0.0,0.0,64.75584230560457,0.0679773750016465 +21,322.2084863736894,0.0,0.0,65.26473351816657,0.068511582998326 +22,322.89276972182176,0.0,0.0,65.40333809332657,0.0686570830002892 +23,295.41542632084173,0.0,0.0,59.83768240549876,0.0628145419977954 +24,322.6825089599613,0.0,0.0,65.36074885942217,0.068612374998338 +25,322.5780652279843,0.0,0.0,65.33959332620877,0.0685901670003659 +26,321.6707807541225,0.0,0.0,65.15581890090364,0.0683972499973606 +27,318.3269632325836,0.0,0.0,64.4785140852151,0.0676862500040442 +28,328.9750938995778,0.0,0.0,66.63533937020159,0.0699503750001895 +29,307.251251832783,0.0,0.0,62.235080458846376,0.0653312079957686 +0,297.4059709817293,0.9431835074740536,0.0,64.00173800716793,0.0684758749994216 +1,294.011382014694,0.9324180197543812,0.0,63.2712227690473,0.0676942920035799 +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.0683419589986442 +3,295.5819955572358,0.937399011847616,0.0,63.609218661088235,0.0680559160027769 +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.0683780000035767 +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.0666158339954563 +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.0695982499964884 +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.0631072079995647 +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908 +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.0682349579947185 +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217 +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.0678802910042577 +12,298.78404079959876,0.9475538727362968,0.0,64.29829850710586,0.068793167003605 +13,298.6888503744389,0.9472519889550676,0.0,64.27781353623672,0.0687712500002817 +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.0684182080003665 +15,300.98587226643184,0.9545366885785584,0.0,64.77213243925932,0.0693001250037923 +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.0688503339988528 +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.0703221669973572 +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.0622112919954815 +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.0704370409948751 +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.0679169579962035 +21,294.30110968856326,0.9333368525631184,0.0,63.33357213821159,0.067760999998427 +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.0683039159994223 +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.0686080419982317 +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.0654641670043929 +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.0682025420028367 +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.0679551669963984 +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.0682538749970262 +28,297.22988805085987,0.9426250838627336,0.0,63.963844976399784,0.0684353329997975 +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.0624182920000748 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/mac_report.md new file mode 100644 index 000000000..c56529e19 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 482.89 ms | 73.43 ms | +| **Average Power** | 4.177 W | 5.169 W | +| **Total Energy** | 1815.47 J | 341.56 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.74% | 0.00e+00 | +6.500 | large | βœ… | +| `gpu_mj` | +86.51% | 1.12e-33 | +0.605 | medium | βœ… | +| `ane_mj` | +85.56% | 9.85e-23 | +0.475 | small | βœ… | +| `dram_mj` | +85.45% | 0.00e+00 | +28.600 | large | βœ… | +| `time_s` | +84.95% | 0.00e+00 | +52.041 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.7% lower energy (Cohen’s d = +6.500, large) +- **`gpu_mj`**: 86.5% lower energy (Cohen’s d = +0.605, medium) +- **`ane_mj`**: 85.6% lower energy (Cohen’s d = +0.475, small) +- **`dram_mj`**: 85.5% lower energy (Cohen’s d = +28.600, large) +- **`time_s`**: 84.9% lower time (Cohen’s d = +52.041, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/with_smell.csv new file mode 100644 index 000000000..29d534adc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1507.0006290040246,0.1012179708729699,0.0,462.9372594493401,0.4960314169948105 +1,1496.950668211312,0.1005429634315572,0.0,459.850000414799,0.4927234579954529 +2,1468.6940451139656,0.0986451022106724,0.0,451.169815810879,0.4834227500032284 +3,1468.9915282259046,0.0986650827178998,0.0,451.2611999907679,0.4835206669959007 +4,1479.172504714708,0.0993488898523289,0.0,454.3887058879351,0.4868717499994091 +5,1500.238416336118,0.1007637856313158,0.0,460.85996754909496,0.4938056250030058 +6,1509.7154372095292,0.10140031145902,0.0,463.7712245097378,0.4969250000067404 +7,1461.69840489276,0.0981752387650176,0.0,449.0208170316026,0.4811201249976875 +8,1471.3692332004143,0.0988247817042323,0.0,451.99160992125746,0.4843032919961842 +9,1468.0661699754685,0.0986029308629921,0.0,450.9769381237049,0.4832160840014694 +10,1480.732072591294,0.0994536385119303,0.0,454.8677913407322,0.4873850840012892 +11,1466.0959491930096,0.0984706006264055,0.0,450.3717037316366,0.4825675830070395 +12,1475.3435923401366,0.0990917202574757,0.0,453.21249788427474,0.4856114580034045 +13,1514.13083342455,0.1016968723475048,0.0,465.12759516003786,0.4983783339994261 +14,1512.595950245761,0.1015937816401129,0.0,464.6560926279964,0.497873125001206 +15,1561.482643030755,0.1048772652373676,0.0,479.67365210730736,0.5139642499998445 +16,1502.2335709419558,0.1008977905526769,0.0,461.4728613910934,0.4944623330011382 +17,1495.3046447168208,0.1004324079646814,0.0,459.34435656113146,0.4921816670030239 +18,1495.762512977266,0.1004631607695293,0.0,459.4850096395707,0.4923323749972041 +19,1505.742214321196,0.1011334492223075,0.0,462.5506855930939,0.4956172079982934 +20,1500.2357579650031,0.1007636070813372,0.0,460.8591509210095,0.4938047499963431 +21,1501.366192061746,0.1008395328926977,0.0,461.2064102735686,0.4941768339995178 +22,1472.4900455897166,0.0989000612718656,0.0,452.3359135704227,0.4846722090005642 +23,1462.9344104531915,0.0982582553029054,0.0,449.40050700372194,0.4815269579994492 +24,1472.7381563218598,0.0989167256742394,0.0,452.4121309920798,0.4847538750036619 +25,1482.564812614605,0.0995767348283664,0.0,455.4307928600052,0.4879883330067969 +26,1501.7557027604369,0.1008656944494987,0.0,461.32606451385743,0.4943050420042709 +27,1471.3960688887162,0.0988265841281097,0.0,451.99985360726447,0.4843121250014519 +28,1465.3707267413292,0.0984218909287598,0.0,450.14892181117136,0.48232887499762 +29,1493.8271059364454,0.100333168804221,0.0,458.8904697209055,0.4916953329957323 +0,1471.069231866696,0.1008456582331723,0.0,459.85620154326585,0.4853926670039072 +1,1468.578895878081,0.1006749391626123,0.0,459.0777225815124,0.484570958004042 +2,1461.668066437173,0.1002011836596023,0.0,456.9173974877869,0.4822906670015072 +3,1442.4901829574026,0.0988864893942737,0.0,450.92239163788827,0.475962749995233 +4,1460.192632019516,0.1001000387564221,0.0,456.4561767292852,0.4818038340017665 +5,1457.0270850402062,0.0998830321996393,0.0,455.4666268303555,0.4807593329969677 +6,1451.4069459189002,0.0994977569068301,0.0,453.70977149514545,0.4789049169994541 +7,1454.602166278216,0.0997167976517217,0.0,454.7085972918513,0.4799592090057558 +8,1454.5623855826552,0.0997140705805942,0.0,454.6961618475098,0.4799460830035968 +9,1468.8514054091331,0.1006936204064576,0.0,459.16290905344687,0.4846608750012819 +10,1454.7620315206584,0.0997277568338278,0.0,454.7585711622551,0.4800119579958846 +11,1461.4857195792638,0.100188683303729,0.0,456.86039586500453,0.4822304999979678 +12,1456.5270230567808,0.09984875163773,0.0,455.310307468049,0.480594332999317 +13,1456.90813089835,0.0998748775808932,0.0,455.4294417688732,0.4807200829964131 +14,1448.7476526265218,0.0993154553694887,0.0,452.8784764848686,0.4780274590011686 +15,1454.4989959096524,0.0997097250520761,0.0,454.6763462374673,0.4799251670046942 +16,1457.879845299315,0.0999414911543792,0.0,455.73319966396946,0.4810407089971704 +17,1455.9537216856306,0.0998094503234973,0.0,455.131093475148,0.4804051669998443 +18,1458.9784633262295,0.1000168043046179,0.0,456.0766276290576,0.4814032080030301 +19,1468.4137238864755,0.1006636161889179,0.0,459.02608982146575,0.4845164580037817 +20,1463.4019935002775,0.1003200489123173,0.0,457.4594230401672,0.4828627919996506 +21,1455.2831840044878,0.0997634832049143,0.0,454.9214834144096,0.4801839169958839 +22,1465.0343928246136,0.100431954171972,0.0,457.9697110241926,0.483401416997367 +23,1452.4517724066477,0.0995693825058256,0.0,454.036384226565,0.47924966699793 +24,1458.159298145276,0.0999606483806916,0.0,455.8205566159539,0.4811329170042882 +25,1464.0746768847828,0.1003661631244995,0.0,457.6697038477178,0.4830847499979427 +26,1460.330527893312,0.1001094918806255,0.0,456.49928297565265,0.48184933399898 +27,1466.457926870734,0.1005295411684155,0.0,458.41470772797504,0.4838711249976768 +28,1458.690297278725,0.0999970497654626,0.0,455.9865469305096,0.4813081249958486 +29,1453.5116250142864,0.0996420381847918,0.0,454.3676941226507,0.4795993750012712 +0,1480.5223699547016,0.4051692955245597,0.0,461.65664814227546,0.4890589579954394 +1,1459.8587340150543,0.3995143517111143,0.0,455.2133109121722,0.4822331670002313 +2,1462.278923718044,0.4001766764262932,0.0,455.9679747313922,0.4830326250012149 +3,1458.1204379358958,0.3990386384006648,0.0,454.67127523769074,0.4816589580004802 +4,1458.91194965116,0.3992552485989172,0.0,454.9180845077496,0.4819204169980366 +5,1456.3001568342963,0.3985404885404811,0.0,454.10367498449983,0.4810576669988222 +6,1468.611380787982,0.4019096574484203,0.0,457.94256219102095,0.4851244170058635 +7,1450.4520658721826,0.3969400622697483,0.0,452.2801226178557,0.4791258749974076 +8,1450.1546348410695,0.3968586653764701,0.0,452.1873776410396,0.4790276250059833 +9,1466.35176146208,0.4012912754577062,0.0,457.2379674444348,0.4843780000010156 +10,1460.154775553515,0.3995953683468763,0.0,455.3056226172367,0.4823309580024215 +11,1457.9792906101436,0.3990000111136337,0.0,454.6272626630594,0.4816123329947004 +12,1457.422775179489,0.3988477115134636,0.0,454.4537299602991,0.4814285000029485 +13,1458.3584614876168,0.3991037774601792,0.0,454.7454957677526,0.4817375839993474 +14,1456.1912985882736,0.3985106976911511,0.0,454.06973079425904,0.481021708001208 +15,1461.863428432593,0.4000629693081055,0.0,455.8384149458105,0.4828953750038636 +16,1460.9932071997523,0.3998248189558947,0.0,455.56706246532906,0.4826079159975052 +17,1457.9613811923634,0.398995109906916,0.0,454.6216781464386,0.4816064170008758 +18,1469.355588079086,0.4021133220130226,0.0,458.1746209903382,0.4853702499967767 +19,1463.8570247943644,0.4006085497396149,0.0,456.46005838247953,0.4835539170017 +20,1460.7395477092175,0.3997554008645718,0.0,455.4879663351075,0.4825241250000545 +21,1463.4340853939327,0.4004928054169352,0.0,456.3281773721463,0.4834142079998855 +22,1459.13710420092,0.3993168658443987,0.0,454.98829222420534,0.4819947919968399 +23,1459.0136150596015,0.3992830710099482,0.0,454.9497858265851,0.4819539999953122 +24,1458.813181355714,0.399228219030504,0.0,454.8872865670067,0.4818877910001902 +25,1457.0466346307994,0.3987447744662271,0.0,454.33644177306024,0.4813042500027222 +26,1463.6593671022151,0.4005544574614377,0.0,456.3984247391865,0.4834886250027921 +27,1460.088426469888,0.3995772108289506,0.0,455.2849336386868,0.4823090409990982 +28,1480.3341725438606,0.4051177922079484,0.0,461.59796440493983,0.4889967909984989 +29,1471.0342193441872,0.4025727070658452,0.0,458.69805197594184,0.4859247499989578 +0,2268.7759969961817,2.980873572695713,83.76254739274954,507.0465947155408,0.4925840419964515 +1,2288.665659303097,3.0070059757266967,84.49686791792018,511.49171647111115,0.4969023749945336 +2,2281.4371352379258,2.9975086448381507,84.22999291995204,509.87622048696943,0.4953329580021091 +3,2284.334418272336,3.0013152940804413,84.3369597636604,510.52373152308303,0.4959620000008726 +4,2292.2104487907495,3.0116633633747076,84.62774051082928,512.2839381100378,0.4976719999976922 +5,2283.5172593717048,3.000241654648955,84.30679049563564,510.3411054557873,0.4957845829994767 +6,2265.984842309476,2.9772063621584355,83.65949877665204,506.4228022031499,0.4919780419950257 +7,2263.8636477087557,2.97441939115019,83.58118489132035,505.94873843464734,0.4915175000060117 +8,2281.0575381943677,2.99700990419698,84.21597830793513,509.79138470390626,0.4952505420005764 +9,2282.622763393953,2.9990664044592084,84.27376596530375,510.14119539851134,0.495590375001484 +10,2281.1500377805637,2.997131436500011,84.2193933656503,509.8120573486519,0.4952706249969196 +11,2282.6029950175102,2.9990404314098673,84.27303612261727,510.1367773828184,0.4955860830013989 +12,2278.6018425556335,2.993783442773825,84.12531474194448,509.2425636158276,0.4947173750042566 +13,2307.665818396644,3.03196968840435,85.19834824416223,515.7380439975799,0.5010275839958922 +14,2303.980545413379,3.0271277239007897,85.06228904161219,514.9144258355243,0.500227457996516 +15,2290.510308564031,3.009429602492888,84.56497183005015,511.9039753840402,0.4973028749955119 +16,2282.7634311390066,2.999251223394315,84.27895937738026,510.172633099373,0.4956209160009166 +17,2306.969176592276,3.0310543926029907,85.17262843214404,515.5823521817687,0.5008763329969952 +18,2286.8434636749057,3.0046118500838173,84.42959298735526,511.0844756992573,0.4965067500015721 +19,2306.757500225633,3.030776277668715,85.16481340249089,515.5350448314484,0.5008303750000778 +20,2285.481085413086,3.0028218640463904,84.37929437970357,510.779999074291,0.4962109580010292 +21,2285.5889409736205,3.0029635720821295,84.38327637550783,510.8041036111702,0.4962343750012223 +22,2253.7948427210404,2.961190304305017,83.20944755097098,503.69847076228336,0.4893314169967198 +23,2261.8765988987825,2.971808670085992,83.50782362941636,505.5046547816272,0.4910860830059391 +24,2282.1518136147515,2.998447638325951,84.25637863695923,510.03594327924424,0.4954881250014296 +25,2284.443807580437,3.001459017258968,84.34099838497701,510.5481788357505,0.4959857499998179 +26,2277.258468092052,2.992018425230434,84.07571774897518,508.9423341316967,0.4944257090028259 +27,2279.627412237843,2.9951309065898672,84.16317847517527,509.4717672109364,0.4949400409968802 +28,2290.116893951881,3.008912707382034,84.55044707743515,511.8160515256839,0.4972174590002396 +29,2279.3453075783755,2.9947602581321724,84.15276325351404,509.40871990828254,0.494878792000236 +0,1540.1575313933513,0.5065196880267544,0.0,465.7617371302016,0.4962522920031915 +1,1548.7716415444704,0.5093526556274295,0.0,468.3667452712757,0.4990278339973883 +2,1534.6656203497878,0.5047135344276873,0.0,464.10091869073943,0.4944827500003157 +3,1537.9614894800372,0.5057974642008454,0.0,465.0976282481506,0.4955447079992154 +4,1542.5662925003955,0.50731186992997,0.0,466.4901747962718,0.4970284160008305 +5,1525.6287780684436,0.5017415406934149,0.0,461.3680713856181,0.4915709999986575 +6,1550.1509211188006,0.5098062665376455,0.0,468.7838556235829,0.4994722499977797 +7,1535.3734967527705,0.5049463374543205,0.0,464.3149888338295,0.494710833998397 +8,1543.794275756641,0.5077157232262576,0.0,466.86153136398474,0.4974240829978953 +9,1532.6838587570132,0.5040617820950493,0.0,463.501610695801,0.4938442089987802 +10,1535.0966297060984,0.5048552827360552,0.0,464.23126098522727,0.4946216250027646 +11,1547.7020679819077,0.5090008993582243,0.0,468.0432936565326,0.4986832079957821 +12,1536.410091706245,0.5052872478753273,0.0,464.6284673296259,0.4950448340023285 +13,1501.0461152669352,0.4936569114010968,0.0,453.9339852636886,0.4836502500038477 +14,1503.158875751745,0.4943517460266646,0.0,454.5729088630523,0.4843309999996563 +15,1497.0097852395263,0.492329462367746,0.0,452.7133516292214,0.4823497089964803 +16,1521.5805489456525,0.5004101783421352,0.0,460.14383932487135,0.4902666249981848 +17,1499.5455354643086,0.4931634078483803,0.0,453.48019229684735,0.4831667500038747 +18,1505.117621218829,0.4949959289252891,0.0,455.1652565111009,0.4849621250032214 +19,1493.7772756646511,0.4912663699839896,0.0,451.73580274594457,0.4813081660031457 +20,1496.3047548280974,0.492097595317287,0.0,452.50014214742265,0.4821225420018891 +21,1502.9231341998309,0.4942742164656317,0.0,454.5016178473639,0.4842550419998588 +22,1510.012481501061,0.4966057273079569,0.0,456.64551978391,0.4865392920037266 +23,1504.4246171495324,0.4947680170410652,0.0,454.9556839364942,0.4847388330017566 +24,1509.3322796742225,0.4963820257643792,0.0,456.43981875787216,0.4863201249972917 +25,1507.3055131302267,0.4957154724173076,0.0,455.8269007367949,0.4856670830049552 +26,1505.193401276411,0.4950208511104179,0.0,455.1881732910663,0.4849865420037531 +27,1520.90862436748,0.5001891989807543,0.0,459.9406414361029,0.4900501249940134 +28,1511.0160978228655,0.4969357918733388,0.0,456.9490251539309,0.4868626660027075 +29,1510.3806433826635,0.4967268066375784,0.0,456.7568562634747,0.4866579169975011 +0,1515.8144076794304,0.1016097605362267,0.0,463.7808170075175,0.5029127919988241 +1,1494.2954542299487,0.1001672780687725,0.0,457.1968461985674,0.495773292001104 +2,1490.567926608189,0.0999174102834286,0.0,456.0563663369963,0.4945365829989896 +3,1487.0834114226138,0.0996838323785101,0.0,454.9902389196463,0.4933805000036955 +4,1489.19388742284,0.0998253041575841,0.0,455.63596327659974,0.4940807080056402 +5,1491.6388015866264,0.0999891943683219,0.0,456.38401282847735,0.4948918749942095 +6,1489.4443053961663,0.0998420904542275,0.0,455.7125815299125,0.4941637910014833 +7,1483.7489697588535,0.0994603143691415,0.0,453.9700282188851,0.4922742079943418 +8,1490.2046075822443,0.0998930558776139,0.0,455.94520471072246,0.4944160419981926 +9,1489.4078863844404,0.0998396491744497,0.0,455.7014387152465,0.4941517080005724 +10,1484.1119150495415,0.0994846437223181,0.0,454.0810754965672,0.4923946249982691 +11,1498.6863274365105,0.1004616119745616,0.0,458.5402842558907,0.4972300840017851 +12,1494.202268227495,0.1001610315208134,0.0,457.1683348714995,0.4957423750020098 +13,1500.9979926125363,0.1006165700906647,0.0,459.24756475049065,0.4979970420026802 +14,1506.206429303655,0.1009657078230094,0.0,460.8411457401562,0.4997250829983386 +15,1499.448257241606,0.1005126865023197,0.0,458.7734054254215,0.4974828750055167 +16,1490.7811750729018,0.0999317049921505,0.0,456.1216121525058,0.4946073339961003 +17,1491.8823143613793,0.1000055177879996,0.0,456.4585183570265,0.4949726670020027 +18,1482.553013888322,0.0993801457225044,0.0,453.60411179275127,0.4918774170000688 +19,1497.833219014053,0.1004044254601188,0.0,458.2792659418024,0.4969470420037396 +20,1503.907447332048,0.1008115999015986,0.0,460.13774581752983,0.498962332996598 +21,1482.0456464125618,0.09934613530048,0.0,453.4488768898246,0.4917090839953744 +22,1496.2841105630728,0.1003005838961705,0.0,457.80529843008793,0.4964330830043764 +23,1488.0433927335248,0.0997481829155064,0.0,455.2839562206765,0.4936989999987418 +24,1474.3194514814572,0.0988282243921073,0.0,451.0849588670419,0.4891457080011605 +25,1494.2725955009112,0.1001657457769748,0.0,457.189852308039,0.4957657079939963 +26,1490.5446941438947,0.0999158529389928,0.0,456.0492580978762,0.4945288749950123 +27,1486.603420745228,0.0996516571085419,0.0,454.8433802624214,0.4932212499988964 +28,1488.174128032597,0.0997569465097598,0.0,455.3239561860471,0.4937423750016023 +29,1481.7025427753508,0.0993231359951301,0.0,453.3439003937721,0.49159525000141 +0,1478.185480632039,0.1001910585367731,0.0,453.1975547813372,0.4826704579973011 +1,1472.4376515691376,0.0998014720568313,0.0,451.43532527040054,0.4807936249999329 +2,1467.3052593754642,0.0994535997407738,0.0,449.86178282743384,0.4791177500010235 +3,1469.146722041262,0.0995784136400846,0.0,450.4263576986495,0.4797190410026815 +4,1470.385895182594,0.0996624044993963,0.0,450.8062763522695,0.480123666995496 +5,1466.8412883523577,0.0994221518957337,0.0,449.7195337417024,0.4789662499970291 +6,1475.3840451213316,0.1000011779075031,0.0,452.3386614016057,0.4817557080023107 +7,1469.2759877161188,0.0995871752366272,0.0,450.46598932034374,0.4797612499969546 +8,1478.2217224431022,0.1001935149980638,0.0,453.2086661745757,0.4826822920003906 +9,1476.0122465403242,0.1000437572495192,0.0,452.5312619586588,0.4819608339967089 +10,1472.6817615590717,0.0998180177735978,0.0,451.51016706257434,0.4808733339959872 +11,1475.1950634268462,0.0999883687734244,0.0,452.2807214184565,0.4816939999946044 +12,1475.1436376964589,0.0999848831497113,0.0,452.2649547805279,0.4816772080012015 +13,1471.505244398319,0.0997382737216727,0.0,451.14945813436634,0.4804891669991775 +14,1487.7908044971591,0.1008421050923268,0.0,456.1424553676251,0.4858068749963422 +15,1468.6795629390188,0.0995467497078027,0.0,450.2831311782943,0.4795664999983273 +16,1475.7644370380624,0.1000269607806915,0.0,452.455285931328,0.4818799170025158 +17,1467.6844997653377,0.0994793045637471,0.0,449.97805431001626,0.4792415829942911 +18,1482.7513106263857,0.1005005294023893,0.0,454.5973946634747,0.4841613339958712 +19,1477.909345926593,0.1001723421924443,0.0,453.1128945171565,0.4825802920022397 +20,1479.7538741610845,0.1002973638752683,0.0,453.678409262464,0.4831825840010424 +21,1471.3194508052536,0.0997256806763462,0.0,451.0924955926728,0.4804284999991068 +22,1489.160260118828,0.1009349264670134,0.0,456.562317385791,0.4862540419999277 +23,1480.4434483874377,0.1003441030514971,0.0,453.8898261362719,0.4834077499981504 +24,1477.8146621554847,0.1001659245490715,0.0,453.0838653769668,0.4825493750031455 +25,1474.8473424470442,0.0999648003285315,0.0,452.1741134860575,0.4815804590034531 +26,1470.1209876523235,0.0996444491303172,0.0,450.7250582328016,0.4800371669989545 +27,1479.45489308524,0.100277099009415,0.0,453.5867445192541,0.483084958003019 +28,1481.6974196226456,0.1004290969220744,0.0,454.2742817441834,0.4838172079980722 +29,1478.0856947176749,0.10018429507135,0.0,453.1669613727401,0.4826378750003641 +0,1445.9512284681282,0.0993735381060291,0.0,451.0233649505643,0.479501458001323 +1,1469.8680273775626,0.1010172290418008,0.0,458.4835302110532,0.4874326659992221 +2,1445.2778876531952,0.0993272625070921,0.0,450.8133354321888,0.4792781669966643 +3,1473.4560079931225,0.1012638143493852,0.0,459.6026987270767,0.488622500000929 +4,1438.408509378345,0.0988551619200731,0.0,448.6706282345721,0.4770001669967314 +5,1462.0207397229187,0.1004779212674964,0.0,456.035791992744,0.4848303749968181 +6,1459.873808732507,0.1003303726334995,0.0,455.36611792590986,0.4841184169999906 +7,1445.935900531451,0.0993724846878574,0.0,451.01858383662216,0.4794963750027818 +8,1451.6571155923002,0.0997656773292609,0.0,452.8031541717392,0.4813936249993276 +9,1458.9932738397888,0.1002698575441988,0.0,455.0914601072703,0.4838264169957256 +10,1453.1768162644023,0.0998701193254194,0.0,453.2771815783035,0.4818975829984993 +11,1448.2553439932587,0.0995318893058686,0.0,451.7420682629023,0.4802655410021543 +12,1459.790501679045,0.1003246473251428,0.0,455.3401326597149,0.4840907909965608 +13,1455.5734090741,0.1000348260611724,0.0,454.02473054964133,0.4826923330037971 +14,1458.6344227252057,0.1002451953673512,0.0,454.9795267072848,0.4837074160022894 +15,1454.1420362947786,0.0999364544324277,0.0,453.578254517312,0.4822176660018158 +16,1452.8549083992968,0.099847996087187,0.0,453.17677157437976,0.4817908330005593 +17,1456.5114923274932,0.1000992961830495,0.0,454.3173389428009,0.483003417000873 +18,1445.2579097656906,0.0993258895193134,0.0,450.807103898324,0.47927154199715 +19,1460.9679426822058,0.1004055673977507,0.0,455.707401895925,0.4844812500014086 +20,1450.2062685342962,0.0996659673234419,0.0,452.3506036919953,0.4809125000028871 +21,1453.0583330573086,0.0998619765227693,0.0,453.2402241113423,0.4818582919979235 +22,1455.721926964596,0.1000450330086545,0.0,454.0710564819467,0.4827415840045432 +23,1450.0845164884097,0.0996575998686252,0.0,452.3126266037338,0.4808721250010421 +24,1454.228485500441,0.0999423956863677,0.0,453.60521988852753,0.4822463339951355 +25,1455.2424545927595,0.1000120810908613,0.0,453.921498711056,0.4825825829975656 +26,1450.4460031843537,0.0996824431767859,0.0,452.4253820983725,0.4809919999970589 +27,1449.8539520475165,0.0996417542413302,0.0,452.24070858331766,0.4807956660006311 +28,1454.8514398281357,0.0999852084551545,0.0,453.79953277512817,0.4824529160032398 +29,1481.6993373073888,0.1018303402346322,0.0,462.1739708782508,0.4913561249995837 +0,1444.001168305689,0.8927670890122416,0.0,450.15300554861693,0.4787932079998427 +1,1462.2076394025742,0.9040234083000046,0.0,455.82869187393567,0.4848300000012386 +2,1452.5452676765483,0.898049557538568,0.0,452.8165435677802,0.4816262089952943 +3,1463.6997649458424,0.9049459287293112,0.0,456.293847174846,0.4853247499995632 +4,1469.782118043518,0.908706399834558,0.0,458.1899602721361,0.4873414999965462 +5,1441.0904332217217,0.8909675001027336,0.0,449.2456128295784,0.4778280839964282 +6,1446.461656941924,0.8942883088876359,0.0,450.92003841467687,0.4796090419986285 +7,1447.019725460083,0.8946333399148689,0.0,451.0940107259638,0.4797940829957952 +8,1452.467104131407,0.8980012322032468,0.0,452.7921768598149,0.4816002919978928 +9,1485.7182300106604,0.9185590485742904,0.0,463.1578847144588,0.4926254999954835 +10,1463.9404080881534,0.9050947085796098,0.0,456.3688652815855,0.4854045410029357 +11,1476.406582468932,0.9128020362863496,0.0,460.25507118527264,0.4895380000016303 +12,1449.6573993034194,0.8962641061847068,0.0,451.9162793184666,0.480668666998099 +13,1451.0107926046549,0.8971008541211715,0.0,452.3381862224307,0.4811174169954029 +14,1453.0520656111892,0.8983628900529438,0.0,452.9745327844733,0.4817942500012577 +15,1463.5205681384357,0.9048351386443582,0.0,456.2379843520108,0.4852653330017347 +16,1450.2168521394683,0.8966099930792892,0.0,452.0906831770905,0.4808541669990518 +17,1456.0172169071047,0.900196122289204,0.0,453.89888921648975,0.4827774170043994 +18,1452.131203241068,0.8977935583684558,0.0,452.6874630973391,0.4814889160043094 +19,1453.7298932397582,0.8987819632587637,0.0,453.1858388075855,0.4820190000027651 +20,1454.063779501562,0.8989883915308139,0.0,453.28992452964815,0.4821297079979558 +21,1446.6256475159812,0.8943896975780607,0.0,450.9711608454711,0.479663417005213 +22,1458.3806924973435,0.901657362950889,0.0,454.6356792301261,0.4835610840018489 +23,1452.891467970985,0.8982635990752811,0.0,452.92446806706954,0.4817410000032396 +24,1455.736232852132,0.9000224012962277,0.0,453.8112952313646,0.4826842500042403 +25,1467.6443356865218,0.9073846961035033,0.0,457.5235278797442,0.486632667001686 +26,1454.2702432350125,0.8991160396451956,0.0,453.3542875455442,0.4821981659988523 +27,1447.083940408823,0.894673041401347,0.0,451.1140290977014,0.4798153750016354 +28,1453.0580974497077,0.8983666192929429,0.0,452.9764131501528,0.4817962500019348 +29,1446.5694729997788,0.8943549671634272,0.0,450.95364899862585,0.4796447909975541 +0,1473.756556484359,1.730836715732926,0.0,462.06552715105465,0.4929395419967477 +1,1446.159224005418,1.6984253408008363,0.0,453.4129610784978,0.4837088339991169 +2,1441.5301220903834,1.692988744423939,0.0,451.96160304572413,0.4821605000033742 +3,1441.318846769989,1.6927406145139767,0.0,451.8953620903489,0.4820898329999181 +4,1435.972086846258,1.6864611728073498,0.0,450.21899740729543,0.4803014579956652 +5,1452.578920577144,1.7059648808159893,0.0,455.4257225943078,0.4858560829961789 +6,1491.0040656140802,1.7510928577160183,0.0,467.4731227020312,0.4987084589956794 +7,1471.581150604885,1.7282818349072917,0.0,461.38347416201515,0.4922119160037255 +8,1441.7780215880357,1.693279887184567,0.0,452.03932674544865,0.4822434169982443 +9,1447.6423786475466,1.7001672149919371,0.0,453.8779731787299,0.4842049169965321 +10,1439.4189983717706,1.6905093590549292,0.0,451.2997043829973,0.4814543749962467 +11,1442.9805152629783,1.694692142277764,0.0,452.4163434727796,0.4826456250011688 +12,1439.3220802788337,1.6903955346970758,0.0,451.26931774315074,0.4814219580002827 +13,1428.712272923545,1.677934966473248,0.0,447.942834677123,0.477873208001256 +14,1442.6170148012343,1.694265233272607,0.0,452.30237550993223,0.48252404199593 +15,1464.2447277915137,1.7196656561282024,0.0,459.0832923173623,0.4897580420001759 +16,1449.9154471216857,1.702836794547057,0.0,454.59064623055264,0.4849652090051677 +17,1444.6339619987823,1.6966340140918343,0.0,452.9347470953005,0.4831986670033075 +18,1444.4850973065627,1.6964591816381047,0.0,452.88807368632934,0.4831488749987329 +19,1438.8095895874126,1.6897936458021423,0.0,451.1086370116896,0.481250541000918 +20,1446.0804924201466,1.698332875381174,0.0,453.3882764375428,0.4836824999947566 +21,1450.5933655750375,1.7036329682055706,0.0,454.80319337487936,0.485191957995994 +22,1434.6381676353694,1.6848945664802266,0.0,449.80077495349576,0.4798552910069702 +23,1445.557540680016,1.6977187006259256,0.0,453.224315863176,0.4835075840019271 +24,1448.596476504854,1.7012877444271168,0.0,454.17711059559207,0.4845240419963375 +25,1447.9104558714089,1.7004820552548496,0.0,453.96202318225056,0.4842945830023382 +26,1450.927841737516,1.704025789950796,0.0,454.9080613760802,0.4853038330038544 +27,1443.4581247486824,1.69525306533524,0.0,452.56608793214303,0.4828053749952232 +28,1439.098349754509,1.6901327769137582,0.0,451.19917171923174,0.4813471250017755 +29,1439.678106400043,1.690813665547546,0.0,451.3809422829379,0.4815410410010372 +0,1547.4083086333123,2.0024263149290156,0.0,454.717642348464,0.4942865000048186 +1,1570.5677613005114,2.032395843463544,0.0,461.52322278651314,0.5016842920013005 +2,1510.4963061432968,1.9546602762497909,0.0,443.87077106505666,0.4824957500022719 +3,1508.1492778731936,1.951623100383721,0.0,443.18107904547,0.4817460420017596 +4,1509.5093876893875,1.953383152770635,0.0,443.5807576083317,0.4821805000028689 +5,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +6,1515.343241889651,1.9609324615748405,0.0,445.2950798159534,0.484043999997084 +7,1547.577883276617,2.002645753280357,0.0,454.7674731407477,0.4943406669990509 +8,1548.0155146912105,2.003212070945793,0.0,454.8960744439404,0.4944804589977138 +9,1552.6203494241508,2.009170965048722,0.0,456.249239979814,0.4959513750000042 +10,1554.2588218899066,2.01129123308878,0.0,456.7307175139106,0.4964747499980149 +11,1548.4815781326529,2.003815181123219,0.0,455.0330307133976,0.494629332999466 +12,1531.05736920626,1.981267354362585,0.0,449.9127950531703,0.4890635419942555 +13,1548.2143040147903,2.003469314603102,0.0,454.95449019112107,0.4945439579969388 +14,1551.8815302158264,2.0082148948140786,0.0,456.0321323640304,0.4957153750001453 +15,1549.2120511713058,2.0047604509830124,0.0,455.247685744059,0.4948626669938676 +16,1553.068674945917,2.0097511214414663,0.0,456.380983827333,0.4960945830025594 +17,1547.303042521918,2.002290095141161,0.0,454.686709104972,0.4942528749961639 +18,1548.8384653844942,2.0042770116695348,0.0,455.1379047332902,0.4947433330016793 +19,1550.9915285602706,2.0070631866802446,0.0,455.77059864197224,0.4954310829998576 +20,1552.8621874878802,2.0094839160003626,0.0,456.3203059250823,0.4960286249988712 +21,1560.5320011886452,2.0194090512728877,0.0,458.5741387265515,0.4984785830019973 +22,1572.43476681286,2.034811845075521,0.0,462.0718564858995,0.5022806669949205 +23,1545.401732006987,1.9998297010831043,0.0,454.127994620955,0.4936455420029233 +24,1538.007147244265,1.990260726279082,0.0,451.9550399258748,0.4912834999995539 +25,1547.731282186507,2.0028442593967655,0.0,454.8125505713488,0.4943896670010872 +26,1565.7153470029502,2.0261165686101243,0.0,460.0973041218824,0.500134292000439 +27,1547.742239243364,2.002858438394553,0.0,454.81577038542974,0.4943931669986341 +28,1543.6410350429956,1.9975512682262808,0.0,453.61060049305127,0.4930831250021583 +29,1551.205582632366,2.007340183710951,0.0,455.83350005102847,0.4954994579966296 +0,1492.1540533167286,1.998063810011688,0.0,460.4871060806937,0.4829481670021778 +1,1488.7041689159475,1.9934442540384945,0.0,459.4224524140717,0.4818315829979838 +2,1487.819878516848,1.9922601479872095,0.0,459.1495554394523,0.4815453749979497 +3,1491.727934254883,1.9974932167312307,0.0,460.3556033493242,0.4828102499959641 +4,1487.9574989321304,1.9924444281362217,0.0,459.1920258711279,0.4815899169989279 +5,1501.2124715705363,2.0101934541651536,0.0,463.2825847365957,0.4858800000001793 +6,1485.3365502760714,1.9889348557526396,0.0,458.3831864224584,0.480741624996881 +7,1491.4606771675385,1.997135347037411,0.0,460.2731263138886,0.4827237499994226 +8,1489.7788637777855,1.9948833205380097,0.0,459.7541092733266,0.4821794169984059 +9,1492.4477024390417,1.9984570198701683,0.0,460.5777278460781,0.4830432090020622 +10,1497.9545334031648,2.005830923142963,0.0,462.2771667536816,0.4848255410033744 +11,1498.7027513172716,2.006832821796025,0.0,462.5080709965906,0.4850677080030436 +12,1494.6229620238366,2.0013697938187422,0.0,461.2490251487594,0.4837472500003059 +13,1507.0087064429226,2.0179548827569933,0.0,465.0713353127284,0.487756000002264 +14,1484.307687701971,1.9875571608221356,0.0,458.0656736641415,0.4804086250005639 +15,1529.9467312348206,2.048669966838271,0.0,472.15013835732685,0.4951800839990028 +16,1504.4785170556784,2.0145668412636293,0.0,464.29050468322447,0.4869370829983381 +17,1491.0045635252643,1.996524589616048,0.0,460.1323670868452,0.4825761249958304 +18,1493.856851787251,2.0003439365121194,0.0,461.0125992348264,0.4834992920004879 +19,1491.1042056393792,1.9966580150500528,0.0,460.1631172018688,0.4826083750012913 +20,1484.7932830352129,1.9882073956015167,0.0,458.2155311062962,0.4805657920005615 +21,1505.3592048868377,2.0157461233085665,0.0,464.562289885181,0.4872221249970607 +22,1487.0317512384738,1.991204808835664,0.0,458.9063349429927,0.4812902909980039 +23,1478.7609442937703,1.9801298129268483,0.0,456.353917552541,0.478613375002169 +24,1486.3696611665118,1.9903182393766896,0.0,458.7020102350144,0.481075999996392 +25,1490.7165777906416,1.996138963297592,0.0,460.0434930746517,0.4824829159988439 +26,1508.478234266898,2.0199226489915616,0.0,465.5248398375885,0.4882316250004805 +27,1490.8217596954155,1.9962798067694367,0.0,460.0759528001295,0.4825169590039877 +28,1483.4506884174402,1.986409598844992,0.0,457.80119888047585,0.4801312499985215 +29,1490.6305859097265,1.9960238161619264,0.0,460.01695549811865,0.4824550840057782 +0,1445.0937116123694,0.0994855344525118,0.0,451.26638427659367,0.4804801249993033 +1,1451.89089555387,0.0999534774459373,0.0,453.38897369477166,0.4827401250004186 +2,1450.1180395946535,0.0998314275600422,0.0,452.8353554123517,0.482150666997768 +3,1449.4058631584062,0.0997823987304132,0.0,452.6129606411546,0.4819138750026468 +4,1446.5463840973528,0.0995855417374316,0.0,451.7200173209899,0.4809631249954691 +5,1445.161635344861,0.0994902105705896,0.0,451.2875951481944,0.4805027090042131 +6,1451.1624299232567,0.0999033272086139,0.0,453.1614922182729,0.4824979170007282 +7,1461.9935620683018,0.1006489819447163,0.0,456.5437821012335,0.4860991669993382 +8,1443.721239879732,0.099391048480602,0.0,450.837795908011,0.4800237910021678 +9,1457.922268440679,0.1003686992065088,0.0,455.2724196007243,0.4847454999980982 +10,1463.2726687745692,0.1007370403268629,0.0,456.9432149226504,0.4865244579996215 +11,1434.2653374502413,0.0987400695860367,0.0,447.8849556422627,0.4768797920041834 +12,1440.3483418552953,0.099158845849092,0.0,449.7845247714817,0.4789023339981213 +13,1458.1363075618142,0.100383434442147,0.0,455.3392586295791,0.4848166660012794 +14,1443.7793888920285,0.0993950516712046,0.0,450.8559543805843,0.4800431250041583 +15,1447.6267393486346,0.0996599173427703,0.0,452.0573850668063,0.4813223329983884 +16,1454.2939707641694,0.1001189139291945,0.0,454.13939358282624,0.4835391250016982 +17,1450.7958782332366,0.099878092450139,0.0,453.0470273538308,0.4823760419967584 +18,1447.8402822026578,0.0996746184135661,0.0,452.12406912393624,0.4813933339974028 +19,1442.8031718956472,0.0993278453240687,0.0,450.5511063899757,0.4797185419956804 +20,1471.4015954886795,0.1012966653616825,0.0,459.4816740805919,0.4892272500001127 +21,1448.4089689054954,0.0997137688853405,0.0,452.30165566390485,0.4815824170000269 +22,1437.411540338623,0.0989566656955703,0.0,448.867435595107,0.4779258749986184 +23,1446.9099281828417,0.0996105694414146,0.0,451.8335429862568,0.4810839999991003 +24,1445.926441829572,0.0995428626451732,0.0,451.526424958506,0.4807569999975385 +25,1558.660068355674,0.1073038576558051,0.0,486.7302983267323,0.5182398750039283 +26,1444.6335482723644,0.0994538551258024,0.0,451.12268685063987,0.4803271249984391 +27,1447.543654303565,0.0996541974645041,0.0,452.0314396989906,0.4812947079990408 +28,1448.532656600787,0.0997222839984937,0.0,452.3402802171675,0.4816235420003067 +29,1441.3934810706207,0.0992307970537637,0.0,450.1108954358723,0.479249832998903 +0,2521.360730045856,74.48892436568897,85.1109303300131,559.1896028774197,0.51319770799455 +1,2540.613910868646,75.05772386867864,85.7608397666568,563.4595902735617,0.517116499999247 +2,2511.512954645945,74.19799011411881,84.77850930196283,557.0055545778326,0.5111932920044637 +3,2523.1234894335444,74.54100182098513,85.17043395027906,559.5805492066077,0.5135565000018687 +4,2516.4370487137285,74.34346333665846,84.94472678213036,558.0976244960649,0.5121955420036102 +5,2490.7086829822997,73.58336651029664,84.07624131823844,552.3915648892029,0.5069587910038535 +6,2504.212993131934,73.98232629632004,84.53209215568664,555.3865626853216,0.5097074579971377 +7,2513.8218769477153,74.26620293930219,84.85644917102704,557.517629399026,0.5116632499994012 +8,2507.5063707281693,74.07962302651428,84.64326324985153,556.1169708685768,0.5103777920012362 +9,2515.6151364494895,74.31918146387581,84.91698235166254,557.9153400703724,0.5120282499992754 +10,2530.966135457355,74.77269824567081,85.43516992850753,561.3198981475596,0.5151527920024819 +11,2519.1531391737212,74.42370518957297,85.03641099976558,558.7000014299178,0.5127483749965904 +12,2442.417192103016,72.15668401748732,82.44611609784428,541.6814355192361,0.4971295420036767 +13,2467.525689397487,72.8984679810497,83.29367731288794,547.2500201583283,0.5022401249952964 +14,2435.3827411207144,71.94886421569113,82.20866151217946,540.1213287862408,0.495697750004183 +15,2440.5189114306527,72.10060283729621,82.3820378276757,541.2604331602006,0.4967431659970316 +16,2449.728817134904,72.37269241228005,82.69292695726338,543.3030141570122,0.4986177500031772 +17,2435.9678005991486,71.96614871239927,82.22841075151462,540.2510837925383,0.4958168329976615 +18,2441.8200514022046,72.13904260348085,82.4259590453534,541.5490011288017,0.4970079999984591 +19,2466.733049049541,72.87505089271968,83.26692098380465,547.0742276840066,0.5020787909961655 +20,2473.991863828456,73.08949910657813,83.51194918288964,548.6840940173767,0.5035562499979278 +21,2484.7612469218902,73.40766054740351,83.875479955476,551.072537282749,0.5057482499978505 +22,2539.272857400128,75.01810493228592,85.71557123091429,563.1621702544578,0.5168435420055175 +23,2797.642040985372,82.6511430553775,94.43706884190712,620.4635152953034,0.5694319999965956 +24,2472.984690664037,73.05974404425264,83.47795109447426,548.460722266112,0.5033512499940116 +25,2440.2800148776805,72.09354508191296,82.37397364723782,541.2074504723236,0.4966945409978507 +26,2439.825971409339,72.08013121012185,82.35864697797534,541.1067523121097,0.4966021250002086 +27,2436.188479623652,71.97266826470667,82.23585998194642,540.3000261809102,0.4958617500014952 +28,2460.9051669160795,72.70287692876505,83.07019527759302,545.7817148527437,0.5008925839938456 +29,2451.0209465572925,72.41086597850878,82.7365440152812,543.5895837580856,0.4988807499976246 +0,1637.4690215418325,23.728470518282645,0.0,479.88786065423346,0.5014725000000908 +1,1573.4160634871228,22.800282743848378,0.0,461.1160630781749,0.4818563750013709 +2,1572.2683029233044,22.78365061075619,0.0,460.77969252443125,0.4815048750024289 +3,1568.8744092180505,22.734469889980492,0.0,459.7850548439158,0.4804655000043567 +4,1576.0847815073448,22.83895498499088,0.0,461.8981758171432,0.482673666003393 +5,1574.416339272062,22.81477768339278,0.0,461.409210734823,0.4821627080018515 +6,1573.044770279213,22.794902355076665,0.0,461.0072493535332,0.4817426669978886 +7,1581.9271244166257,22.923616044013563,0.0,463.61037275220536,0.4844628749997355 +8,1576.0729479760837,22.83878350596198,0.0,461.8947078016104,0.4826700420017005 +9,1590.8723392545542,23.05324064378867,0.0,466.2319185373122,0.4872023339994484 +10,1602.240148470815,23.217970921001193,0.0,469.56344638507585,0.4906837089947657 +11,1610.877603495047,23.343135790808923,0.0,472.09479797618735,0.4933289170003263 +12,1613.171083804858,23.376370483618174,0.0,472.76694098765734,0.4940312920007272 +13,1578.972824638657,22.880805453851867,0.0,462.74456547186617,0.4835581250008545 +14,1588.1343637665216,23.013564796616677,0.0,465.4295087315752,0.4863638329989044 +15,1574.877974098389,22.821467207422,0.0,461.54450059148286,0.4823040829942329 +16,1573.9679028462322,22.80827941663497,0.0,461.2777888916004,0.4820253750003758 +17,1588.96402650174,23.025587392155135,0.0,465.6726553620341,0.4866179160017054 +18,1575.659476631008,22.832791916201987,0.0,461.7735330638781,0.4825434170052176 +19,1587.1237499904378,22.998920049830204,0.0,465.13333135260046,0.4860543340037111 +20,1697.495566956316,24.59831177600658,0.0,497.47965022854686,0.5198555419992772 +21,1631.5136168640936,23.642171087599607,0.0,478.14252906473,0.4996486660020309 +22,1632.454711949396,23.655808442989372,0.0,478.41833282114715,0.4999368749995483 +23,1630.1989199727825,23.623119889674296,0.0,477.7572350101371,0.4992460419962299 +24,1632.2295419060226,23.652545516689397,0.0,478.3523429495976,0.4998679170021205 +25,1613.240197605974,23.37737200778176,0.0,472.7871959504829,0.4940524580015335 +26,1618.1947811973062,23.44916859698782,0.0,474.23922007356407,0.4955697920013335 +27,1610.8625013861165,23.34291694700681,0.0,472.090372048948,0.4933242920014891 +28,1614.9038790021225,23.401480320330567,0.0,473.2747657887544,0.4945619580030325 +29,1630.4710290399728,23.627063006700418,0.0,477.8369811527516,0.4993293750012526 +0,1491.441683811438,0.1010621609431101,0.0,460.6413295786959,0.4891792919952422 +1,1478.9675052189712,0.1002168932680621,0.0,456.7885995158271,0.4850878750003176 +2,1470.6334323813912,0.0996521649118915,0.0,454.2145676684016,0.4823543749953387 +3,1485.0875958430825,0.1006315991129864,0.0,458.67882875699206,0.4870952089986531 +4,1472.876125743892,0.099804132930492,0.0,454.9072378971828,0.4830899579974357 +5,1468.164104704498,0.0994848398372257,0.0,453.4518999780748,0.4815444580017356 +6,1476.1830010833758,0.1000282113985979,0.0,455.9285875548095,0.4841745829980937 +7,1463.426296356512,0.0991637993600961,0.0,451.9885974833182,0.4799905000036233 +8,1471.8095321193011,0.0997318590643937,0.0,454.57781361550656,0.4827401250004186 +9,1476.4591795005704,0.1000469256319136,0.0,456.01388703026225,0.484265167004196 +10,1480.2938895968366,0.1003067709165972,0.0,457.1982618378502,0.4855229169988888 +11,1473.468242797507,0.0998442556048273,0.0,455.090117046803,0.4832841669995105 +12,1470.8582862106548,0.0996674013198103,0.0,454.2840152156956,0.4824281250039348 +13,1481.467574625828,0.1003863014450677,0.0,457.56076198661873,0.4859078750014305 +14,1498.777378307361,0.1015592377955431,0.0,462.9070058720858,0.4915853329948731 +15,1481.2213787556393,0.1003696188707997,0.0,457.48472281310535,0.4858271249977406 +16,1531.283872192057,0.1037619229909012,0.0,472.9468449925279,0.5022471670017694 +17,1470.3611931394696,0.099633717602566,0.0,454.1304848324962,0.4822650830028578 +18,1478.7457002780488,0.1002018634570539,0.0,456.7200936372517,0.4850151249993359 +19,1464.457703027839,0.0992336889093469,0.0,452.30715404880334,0.480328792000364 +20,1474.8152039772676,0.0999355275660516,0.0,455.5061346460632,0.4837259580017417 +21,1468.9145066242872,0.0995356881140393,0.0,453.6836664237911,0.4817905829986557 +22,1467.7080463118232,0.0994539366868174,0.0,453.311043418514,0.4813948750015697 +23,1476.5658867326172,0.1000541562622332,0.0,456.04684424325905,0.4843001660046866 +24,1477.537206367709,0.1001199742304141,0.0,456.3468425422278,0.4846187500006635 +25,1452.3435435551507,0.0984128166301233,0.0,448.56561820010234,0.4763554579985793 +26,1473.7926908360353,0.0998662406547581,0.0,455.1903249043874,0.4833905830018921 +27,1471.1452606296632,0.0996868471052106,0.0,454.3726491055499,0.4825222500003292 +28,1466.003983774469,0.0993384670413888,0.0,452.7847327746501,0.4808359580056276 +29,1458.1899954967043,0.0988089803376801,0.0,450.37133237914605,0.4782730410006479 +0,1491.8732837180632,0.1671341986195764,0.0,457.51315530122855,0.4853813329973491 +1,1490.1256809068748,0.1669384151046217,0.0,456.9772175073916,0.4848127500008559 +2,1488.2943221687606,0.1667332484336851,0.0,456.4155942623698,0.4842169169933186 +3,1478.1767640016478,0.1655997808699836,0.0,453.3128401534932,0.48092516700126 +4,1477.5315608489454,0.1655274989187947,0.0,453.11497554030865,0.4807152499997755 +5,1475.4721125595993,0.165296779431292,0.0,452.48340401521887,0.4800452080016839 +6,1484.248678964546,0.166280016016283,0.0,455.1749158429732,0.4829006660002051 +7,1479.026359174096,0.1656949608090896,0.0,453.57338571880194,0.481201582995709 +8,1478.2323440915482,0.1656060074938437,0.0,453.3298849136479,0.4809432499969261 +9,1480.85157375242,0.1658994391513096,0.0,454.133124732795,0.4817954169993754 +10,1481.4601486859867,0.1659676176520789,0.0,454.3197565608008,0.4819934170009219 +11,1482.2434061160802,0.1660553657901548,0.0,454.5599583139699,0.4822482499948819 +12,1491.9479478691496,0.1671425632261376,0.0,457.5360525752291,0.4854056249969289 +13,1501.6120194051157,0.1682252267936093,0.0,460.49973582482613,0.4885498330040718 +14,1457.0264769217529,0.1632303193880658,0.0,446.8266762928913,0.4740439159941161 +15,1473.289209598557,0.1650522293471529,0.0,451.81397261489656,0.4793349999963538 +16,1479.9291063236064,0.1657960953511691,0.0,453.85023141429053,0.4814952919987263 +17,1475.8163569461349,0.1653353450456112,0.0,452.5889735278561,0.4801572079959442 +18,1492.6903539863913,0.1672257348016391,0.0,457.76372644600696,0.4856471670063911 +19,1482.245585323591,0.1660556099262386,0.0,454.5606266120856,0.4822489590005716 +20,1486.713846940064,0.166556188180868,0.0,455.9309095263081,0.4837027089961339 +21,1481.4204468550586,0.1659631698656828,0.0,454.3075811903203,0.4819805000006454 +22,1521.4543559992917,0.1704481589029252,0.0,466.5847901808677,0.4950055420049466 +23,1507.892303639942,0.1689288054984138,0.0,462.4257121713581,0.4905931249959394 +24,1545.2417949075991,0.1731130598583494,0.0,473.87969005624586,0.5027447909960756 +25,1517.9368635996732,0.1700540950908195,0.0,465.5060799016094,0.4938611250036047 +26,1487.6624369941349,0.1666624584923186,0.0,456.22181387687306,0.4840113329992164 +27,1484.790276829119,0.1663406910924154,0.0,455.3410077963781,0.4830768749961862 +28,1484.8006502773037,0.1663418532272751,0.0,455.34418902434305,0.4830802500000573 +29,1470.9937325949477,0.1647950676205941,0.0,451.1100181046144,0.4785881659990991 +0,1535.669135852832,2.361356949030495,0.0,471.3131580006953,0.511045416998968 +1,1501.502028693519,2.3088191112663026,0.0,460.8269101501379,0.4996751660000882 +2,1506.0335027693457,2.315787036549481,0.0,462.2176676428906,0.5011831660012831 +3,1504.9271800294782,2.314085873956143,0.0,461.8781254510725,0.5008149999994203 +4,1487.7315671168278,2.287644644464625,0.0,456.60060932705534,0.4950925829980406 +5,1495.0805633314149,2.298944997434262,0.0,458.85609427050224,0.4975382080010604 +6,1496.6943510528,2.3014264752221423,0.0,459.3513828515847,0.4980752499977825 +7,1507.9842242384736,2.3187866082600825,0.0,462.8163647675051,0.5018323340045754 +8,1525.2583386023323,2.3453485473126583,0.0,468.117973820144,0.5075808749970747 +9,1487.4017761634502,2.28713753382386,0.0,456.4993929829304,0.4949828339958912 +10,1488.914645472731,2.289463832095435,0.0,456.9637086321497,0.4954862920058076 +11,1486.5379744385343,2.2858092892442863,0.0,456.2342830648161,0.4946953749968088 +12,1489.8470593507618,2.290897579729516,0.0,457.2498763483318,0.4957965840003453 +13,1495.0995967172576,2.298974264557546,0.0,458.8619358186453,0.4975445419986499 +14,1486.045287815104,2.285051698331785,0.0,456.08307231051214,0.4945314169963239 +15,1484.8389210893304,2.283196700803686,0.0,455.7128255575126,0.4941299580023042 +16,1489.3444774166558,2.2901247730650782,0.0,457.0956286181486,0.4956293330033077 +17,1499.9656215906025,2.306456619565252,0.0,460.35537050221234,0.4991638749997946 +18,1488.350338699801,2.288596112813635,0.0,456.7905168937592,0.4952984999981709 +19,1487.8218420125522,2.287783457733294,0.0,456.6283156507671,0.495122624997748 +20,1490.6063096428916,2.2920650583950155,0.0,457.4828983219732,0.496049250003125 +21,1489.1441490071556,2.289816733481018,0.0,457.03414570290704,0.4955626670052879 +22,1489.1154757032568,2.2897726433161303,0.0,457.02534556159054,0.4955531250016065 +23,1492.9012187885066,2.295593878198626,0.0,458.1872302978475,0.4968129580011009 +24,1490.11524869045,2.2913099672328805,0.0,457.3321865033512,0.4958858329991926 +25,1486.406633826408,2.285607330332765,0.0,456.1939732368527,0.4946516670024721 +26,1486.3412730152702,2.285506826778991,0.0,456.1739133101487,0.4946299160001217 +27,1504.0738956441755,2.3127738016056005,0.0,461.6162434161208,0.5005310409978847 +28,1507.2588999074671,2.3176712966286015,0.0,462.5937550314362,0.5015909580033622 +29,1491.9884633206152,2.2941903587708077,0.0,457.9070959563994,0.4965092080019531 +0,1497.162850204461,2.121724430612553,0.0,455.699258263785,0.4865007500047795 +1,1489.051563661543,2.110229412004886,0.0,453.23038371171606,0.4838650000019697 +2,1480.717294074354,2.098418389982776,0.0,450.6936386485229,0.4811567920041852 +3,1488.925131299569,2.1100502366859266,0.0,453.19190083487734,0.483823916001711 +4,1478.375639567884,2.095099882865295,0.0,449.9808970642906,0.4803958749980666 +5,1479.727777126183,2.097016082756709,0.0,450.39245421874654,0.48083525000402 +6,1475.8521624140903,2.091523703342429,0.0,449.2128131734351,0.4795758750042296 +7,1480.7792238858788,2.0985061546465045,0.0,450.7124885479659,0.4811769160005497 +8,1483.3448892782874,2.1021421217980456,0.0,451.49341349284686,0.4820106249972014 +9,1458.7486803858374,2.0672852741943033,0.0,444.00693722417645,0.4740181250017485 +10,1475.9017856666765,2.0915940276009586,0.0,449.2279172614059,0.479592000003322 +11,1475.2359108113342,2.0906503741112146,0.0,449.0252414618865,0.4793756250001024 +12,1496.4111925084503,2.120659208818634,0.0,455.47047229404654,0.4862565000003087 +13,1477.1848107025442,2.093412283753465,0.0,449.618438277272,0.4800089170021238 +14,1487.9275392202785,2.108636485679396,0.0,452.8882585353636,0.4834997500001918 +15,1479.2741143835092,2.096373168511103,0.0,450.25437052577354,0.4806878329982282 +16,1483.893308570519,2.10291932155984,0.0,451.66033873057455,0.4821888329970534 +17,1477.318804252413,2.093602174511349,0.0,449.6592225922709,0.4800524579986813 +18,1484.70895178378,2.1040752212884524,0.0,451.9086003056198,0.4824538749962812 +19,1464.8600343315468,2.075946061475367,0.0,445.8670818702094,0.4760040000037406 +20,1479.903703499236,2.0972653991778625,0.0,450.44600184564536,0.4808924170065438 +21,1482.5748963728056,2.101050916015898,0.0,451.25904673985906,0.4817604169948026 +22,1503.04044703954,2.130053945866405,0.0,457.48825303997336,0.488410665995616 +23,1480.9454071466057,2.0987416634852356,0.0,450.7630706129957,0.4812309169938089 +24,1479.574035801066,2.0967982061740447,0.0,450.345659170492,0.4807852919984725 +25,1473.9158306771965,2.088779604828779,0.0,448.6234417926699,0.478946667004493 +26,1468.8860574963155,2.0816515942473934,0.0,447.0925035200235,0.4773122499973397 +27,1477.85145489415,2.094357027518422,0.0,449.82134824367887,0.480225541999971 +28,1482.8327588156449,2.1014163492382325,0.0,451.33753367527817,0.4818442089963355 +29,1510.0737441282995,2.1400212772485183,0.0,459.6290143245985,0.4906961249944288 +0,1478.9238546636504,2.4474542724105492,0.0,450.92691283845176,0.4906138749938691 +1,1494.6927432930363,2.473550026918434,0.0,455.734879283864,0.4958449999976437 +2,1493.1747248593665,2.4710378754717124,0.0,455.27203235380176,0.4953414170013275 +3,1502.61191540111,2.486655374802803,0.0,458.149451081911,0.4984720829961588 +4,1493.5225153432173,2.4716134299892225,0.0,455.3780743847711,0.4954567919994588 +5,1500.7098066492758,2.483507596655479,0.0,457.56949422703786,0.4978410830008215 +6,1492.174309089066,2.4693822987877017,0.0,454.9670035361017,0.4950095419990248 +7,1484.2262466301524,2.4562291405901977,0.0,452.5436230109021,0.4923728750000009 +8,1496.6781258440092,2.476835613929168,0.0,456.3402264906794,0.4965036249996046 +9,1489.315744073359,2.464651692043755,0.0,454.09542120708863,0.494061249999504 +10,1492.686259708737,2.470229520047557,0.0,455.123098328762,0.495179375000589 +11,1479.1976649122005,2.4479073978777808,0.0,451.0103981441306,0.4907047080050688 +12,1486.6322695222434,2.460210840518964,0.0,453.27722431939947,0.4931710419987212 +13,1482.5464524963777,2.453449268376687,0.0,452.0314503384832,0.4918156250059837 +14,1488.2958610956562,2.4629638992995475,0.0,453.78445679797335,0.4937229170027422 +15,1490.1187143319248,2.4659805183952597,0.0,454.34024848379687,0.4943276250050985 +16,1492.1949067183675,2.469416385570248,0.0,454.9732837954698,0.4950163749963394 +17,1488.6057179412032,2.463476677870316,0.0,453.87893278491737,0.493825708006625 +18,1491.8317938635464,2.4688154742352277,0.0,454.86256994220395,0.4948959169996669 +19,1483.4065733900748,2.4548726726644943,0.0,452.2937029609151,0.4921009589961613 +20,1495.6039830099246,2.475058027165543,0.0,456.0127181402029,0.4961472919967491 +21,1489.497740617398,2.46495287605527,0.0,454.1509123261832,0.4941216250008438 +22,1484.2334059030502,2.456240988389519,0.0,452.5458058878743,0.4923752499962575 +23,1499.6939449160884,2.4818264586231,0.0,457.2597559036128,0.4975040839999565 +24,1479.201182730758,2.4479132194757156,0.0,451.0114707342149,0.4907058749959105 +25,1494.6637293502793,2.4735020120744404,0.0,455.7260328732827,0.4958353749971138 +26,1491.7450022458504,2.4686718437738824,0.0,454.8361070001772,0.4948671250022016 +27,1488.122404456989,2.4626768478803376,0.0,453.7315695135206,0.4936653750046389 +28,1498.364826079165,2.4796269149713344,0.0,456.8545048475564,0.4970631660034996 +29,1493.3275808639237,2.471290835135753,0.0,455.3186384627143,0.4953921250053099 +0,1498.5408128623817,0.8690099505837388,0.0334234596378361,458.5364427714736,0.4839190410057199 +1,1491.5130351462874,0.8649345135229948,0.0332667120585767,456.3860227316141,0.4816495829945779 +2,1490.9282803951478,0.8645954118495337,0.0332536696865205,456.2070944293751,0.4814607499938574 +3,1498.858609293904,0.8691942420350508,0.0334305477705788,458.6336848645716,0.4840216660013539 +4,1501.085510016672,0.8704856308784092,0.0334802165722465,459.31509115464985,0.4847407920024125 +5,1479.0403956377672,0.8577015788241764,0.0329885222624683,452.56953691880295,0.4776218330007395 +6,1495.4335579034869,0.8672080407157502,0.0333541554121442,457.5856580992068,0.482915624997986 +7,1489.2027842934413,0.8635947895980701,0.0332151842153103,455.6791122498432,0.4809035409998614 +8,1492.1808861224167,0.8653218030374225,0.0332816078091316,456.5903775334769,0.4818652499961899 +9,1495.2063392563043,0.8670762756922921,0.0333490875266266,457.5161317777906,0.4828422499995213 +10,1487.4661958807744,0.8625877348700822,0.033176451341157,455.14773594933297,0.4803427500010002 +11,1490.5684218110532,0.8643867283837936,0.0332456433993766,456.0969817960486,0.4813445420004427 +12,1490.2245606219176,0.8641873218728641,0.033237973918187,455.99176418360855,0.4812334999951417 +13,1487.687995347552,0.862716357288644,0.0331813983572555,455.2156040631887,0.4804143750006915 +14,1510.2214804027867,0.8757836174968764,0.0336839852883414,462.1105941707556,0.4876910419989144 +15,1484.8391828501335,0.861064319261815,0.0331178584331467,454.34389984434006,0.4794944169989321 +16,1492.7811242622347,0.8656698835913483,0.0332949955227441,456.7740435765272,0.4820590829986031 +17,1492.3149443588663,0.865399543957411,0.0332845978445158,456.6313978289124,0.4819085409981198 +18,1495.187245138547,0.8670652029352565,0.033348661651356,457.5102891949532,0.4828360839965171 +19,1506.9395171583026,0.8738803935790314,0.0336107843684242,461.10635075041273,0.4866312079975614 +20,1500.7598418289483,0.8702967745634584,0.0334729528678253,459.2154403936957,0.4846356250054668 +21,1507.0148717002191,0.8739240919862986,0.0336124650763961,461.1294083830781,0.4866555420012446 +22,1492.8802179047152,0.8657273484001917,0.0332972057076996,456.8043651039319,0.4820910829948843 +23,1490.5962918881432,0.8644028903555643,0.0332462650136755,456.1055097226149,0.4813535419962136 +24,1503.3667264430414,0.8718085176205883,0.033531096831561,460.01311743218656,0.4854774580016965 +25,1474.89227025517,0.8552960639374243,0.0328960024591317,451.30025773682786,0.4762822920019971 +26,1491.7265789011794,0.8650583484204453,0.0332714749392479,456.4513646915419,0.4817185420033638 +27,1500.2008916666362,0.8699726370766709,0.0334604860414104,459.0444080021095,0.4844551249989308 +28,1492.6384201170483,0.8655871288734974,0.0332918126489806,456.7303777313658,0.4820130000007339 +29,1510.7030105349197,0.8760628587912995,0.0336947253381269,462.257936913763,0.4878465410001809 +0,1449.4460304052652,1.1053478844400375,0.0,457.0446025207368,0.484376374995918 +1,1442.0477048299772,1.099705919612443,0.0,454.71173554884194,0.4819040000002133 +2,1475.9056715088952,1.125526012982542,0.0,465.387952943842,0.4932186669975635 +3,1447.8063229841775,1.104097443174216,0.0,456.5275640033994,0.4838284170036786 +4,1382.9401472485877,1.0546304822684676,0.0,436.07372516828,0.4621514159953221 +5,1436.0070533406038,1.095099317362788,0.0,452.8069753156134,0.4798853329994017 +6,1439.6047873634284,1.0978429501766258,0.0,453.94142591394126,0.481087624997599 +7,1442.221389474941,1.099838371563632,0.0,454.7665024238108,0.4819620419948478 +8,1440.7386571826632,1.0987076395680422,0.0,454.29896187593744,0.4814665420053643 +9,1443.3917874681115,1.1007309173491018,0.0,455.13555658268166,0.4823531660003937 +10,1444.120438946979,1.1012865871386386,0.0,455.36531762141584,0.4825966670032358 +11,1451.8769782829083,1.107201725864534,0.0,457.8111378612595,0.4851887499971781 +12,1462.8840080446548,1.1155956893553394,0.0,461.28191458344264,0.4888670830041519 +13,1451.4458248752524,1.106872928174227,0.0,457.67518499810086,0.4850446670025121 +14,1382.517722651383,1.0543083411710683,0.0,435.9405247054312,0.4620102499975473 +15,1448.268022775928,1.1044495355442336,0.0,456.6731488636687,0.4839827079995302 +16,1449.8175872760037,1.1056312337972436,0.0,457.16176318676935,0.4845005419992958 +17,1467.203657642532,1.1188898551568776,0.0,462.6440022307756,0.4903106249985285 +18,1444.9364893090867,1.101908907337135,0.0,455.6226375944004,0.4828693749950616 +19,1447.8512089208018,1.104131673200066,0.0,456.5417176004516,0.4838434170014807 +20,1440.3695929638563,1.0984261911077868,0.0,454.1825872019925,0.4813432079972699 +21,1447.5320189906397,1.1038882588840873,0.0,456.44106946889,0.4837367500003893 +22,1440.8024939668512,1.098756321514711,0.0,454.31909112327975,0.4814878750039497 +23,1452.4112466956822,1.1076091590820492,0.0,457.9796053234715,0.4853672919998644 +24,1434.6330467519774,1.0940514996144306,0.0,452.3737185526942,0.4794261670031119 +25,1440.2304465472582,1.0983200780176905,0.0,454.13871104701167,0.4812967079997179 +26,1443.3067555438834,1.1006660719836423,0.0,455.1087440065697,0.48232475000259 +27,1450.072937439139,1.10582596389184,0.0,457.242281130429,0.4845858750049956 +28,1433.8784631668889,1.093476053994577,0.0,452.1357805077576,0.4791740000000573 +29,1438.731507401643,1.0971769866719252,0.0,453.6660600951036,0.4807957919983892 +0,2392.998209324197,3.976975794792876,87.4243026890121,536.7188203059603,0.5162095000050613 +1,2346.237015301762,3.8992623489414657,85.71595841846978,526.2308839614917,0.5061223329976201 +2,2300.7091152151656,3.823598541118026,84.05267053866409,516.0195596361023,0.4963012079970212 +3,2276.701540577284,3.7836998304317766,83.17559279418722,510.6349684200102,0.4911223749950295 +4,2314.2573708925256,3.8461146820330425,84.54763405373505,519.058259696981,0.4992237920014304 +5,2278.2948762954834,3.7863478297322226,83.23380272663529,510.99233319516605,0.4914660840004217 +6,2289.7309813657334,3.8053537415937018,83.65160224999023,513.5573049524718,0.4939330420020269 +7,2293.891527606336,3.812268243922838,83.80360104901682,514.490462136369,0.4948305409998283 +8,2318.4932520627685,3.853154385121008,84.70238509205137,520.0083135398091,0.5001375419960823 +9,2281.0197056761513,3.790876282971189,83.33334994218406,511.60347749315525,0.4920538750011474 +10,2323.3729176840693,3.861264007596687,84.88065574960369,521.1027599817442,0.501190167000459 +11,2305.401423920151,3.8313967910576663,84.2240964155981,517.0719843236086,0.4973134169995319 +12,2295.03829130475,3.814174075466368,83.84549619807808,514.7476665325047,0.4950779169957968 +13,2295.7346122496533,3.8153313063963776,83.87093515278298,514.9038423936677,0.4952281250007218 +14,2292.883070348418,3.810592266862264,83.76675870111133,514.2642781017595,0.4946130000025732 +15,2299.0294440458956,3.82080705905282,83.99130648074375,515.642830926085,0.4959388749994105 +16,2294.674387996746,3.813569296640401,83.83220158179942,514.6660476857306,0.4949994170019636 +17,2313.243499113619,3.844429706462219,84.5105938950999,518.8308612547272,0.4990050830019754 +18,2309.321882065425,3.8379122857569534,84.36732398603111,517.951292825634,0.4981591250034398 +19,2301.46976129274,3.8248626753857113,84.08045950760938,516.1901627998803,0.4964652920025401 +20,2313.5898284762848,3.8450052787660263,84.52324647583058,518.9085384908586,0.4990797920036129 +21,2375.718595443756,3.9482584284872457,86.79302006274571,532.8432244358439,0.5124819999982719 +22,2341.857811815907,3.891984455378547,85.55597133214755,525.2486847606526,0.5051776659965981 +23,2313.560855262456,3.844957127551518,84.52218798652382,518.902040170431,0.4990735419996781 +24,2286.981230394871,3.8007838706217054,83.55114456462323,512.9405710612946,0.4933398749999469 +25,2272.4888379713584,3.7766986483042073,83.02168854706989,509.6901132320113,0.4902136250020703 +26,2298.875111933314,3.8205505711567143,83.98566820768846,515.6082162117583,0.4959055829967838 +27,2297.6943592134144,3.8185882525187895,83.94253132493478,515.3433885138401,0.4956508750037756 +28,2287.752886269415,3.802066302310544,83.57933575861786,513.1136435813881,0.4935063340017223 +29,2285.9775988803485,3.799115913569087,83.51447851741436,512.7154693790628,0.4931233749957755 +0,1511.643938755003,1.2805555723592537,0.0,470.4830392068025,0.5022656669971184 +1,1455.4449913464755,1.2329478828632825,0.0,452.9917167471206,0.4835927499952959 +2,1448.1302864854454,1.2267513931808842,0.0,450.71509294326864,0.4811623330024304 +3,1464.767882274855,1.240845562748578,0.0,455.89336702713973,0.4866904159935075 +4,1453.6522420742149,1.2314291951541074,0.0,452.4337426736469,0.4829970829960075 +5,1450.011697038547,1.2283451883239749,0.0,451.3006618939489,0.4817874590007704 +6,1448.3522481877958,1.226939423104802,0.0,450.784176153694,0.4812360830037505 +7,1450.3252002552106,1.228610765607592,0.0,451.3982364235029,0.4818916250005713 +8,1452.4347122086772,1.2303977917833426,0.0,452.0547995000746,0.4825925410041236 +9,1460.2794917089348,1.237043322417533,0.0,454.4964033768633,0.4851990829993156 +10,1450.79796512652,1.2290112578629768,0.0,451.5453794429543,0.4820487079996383 +11,1455.8201954230367,1.2332657286593025,0.0,453.1084950106638,0.4837174170024809 +12,1451.4555736764398,1.229568336333271,0.0,451.7500530841753,0.4822672079972108 +13,1470.749938151556,1.245913128456798,0.0,457.75521806058686,0.488678040994273 +14,1452.0386934092628,1.2300623132573831,0.0,451.9315428762396,0.4824609580027754 +15,1451.7139040061998,1.2297871751317488,0.0,451.8304556416485,0.482353042003524 +16,1453.7180781688437,1.231484966738723,0.0,452.4542334553027,0.4830189579952275 +17,1455.6323420932597,1.2331065928852851,0.0,453.0500276670965,0.4836550000036368 +18,1450.0140776671672,1.22834720502061,0.0,451.3014028391938,0.4817882499992265 +19,1474.4356339985911,1.2490353837934811,0.0,458.9023515483401,0.4899026670027524 +20,1453.1416037827598,1.2309966192724342,0.0,452.2748119564722,0.4828274160026922 +21,1456.8314348645265,1.2341223776813306,0.0,453.42323249189207,0.4840534160030074 +22,1453.1310729927666,1.230987698347697,0.0,452.2715343605025,0.4828239169946755 +23,1443.95577834536,1.2232150513720794,0.0,449.4158218473526,0.4797752920057974 +24,1458.429811899825,1.2354764072691238,0.0,453.92071028152617,0.4845845000018016 +25,1454.071838478107,1.2317846469237803,0.0,452.5643375751858,0.483136499999091 +26,1445.4984738230935,1.2245219115656858,0.0,449.8959693465928,0.4802878749978845 +27,1453.5452760949363,1.231338581301661,0.0,452.4004506544535,0.4829615419948823 +28,1445.4045486582245,1.224442344949385,0.0,449.8667361416741,0.4802566669968655 +29,1451.5710690043643,1.2296661756338918,0.0,451.7859997720845,0.4823055829983786 +0,1572.270651806433,1.4574623663144788,0.0,463.8042739348939,0.4949604580033337 +1,1614.5126548127903,1.4966198291779964,0.0,476.26524654887055,0.5082584999981918 +2,1576.3343971552958,1.4612293741801083,0.0,465.0030385743154,0.4962397499984945 +3,1644.218898611452,1.5241569026019444,0.0,485.0282943234642,0.5176102080004057 +4,1575.5820833632336,1.460531994859105,0.0,464.7811134549361,0.4960029169960762 +5,1570.4229559700957,1.455749590500236,0.0,463.25922195873414,0.4943787920055911 +6,1572.4177010331866,1.4575986779054526,0.0,463.84765200073065,0.4950067500030854 +7,1574.566642586953,1.4595907022674324,0.0,464.48156848064974,0.4956832500029122 +8,1580.137267694595,1.4647545564943787,0.0,466.1248477280521,0.4974369170013233 +9,1573.50792117747,1.4586092894241915,0.0,464.1692561481257,0.4953499580005882 +10,1599.3141457492434,1.482531125710334,0.0,471.7818368680931,0.5034739159964374 +11,1602.5001032995297,1.4854844424467897,0.0,472.7216627986351,0.5044768750012736 +12,1574.0480694807752,1.4591099957265012,0.0,464.32859454914706,0.4955200000040349 +13,1593.1679060882757,1.4768336887010516,0.0,469.9687570270937,0.5015390420012409 +14,1568.685115034934,1.4541386479066511,0.0,462.7465760906574,0.4938317090054624 +15,1579.5300145989438,1.4641916454378614,0.0,465.9457140777485,0.4972457499970915 +16,1579.992203831771,1.4646200852946931,0.0,466.0820553249158,0.4973912500063306 +17,1575.0407438877955,1.4600301843648718,0.0,464.6214236699303,0.495832500004326 +18,1600.070697056777,1.4832324331205111,0.0,472.0050120125772,0.5037120829947526 +19,1593.223759506591,1.4768854636643072,0.0,469.9852332324461,0.5015566250003758 +20,1574.658629351438,1.459675972095042,0.0,464.5087036653359,0.4957122080013505 +21,1584.7792768673362,1.4690576029613365,0.0,467.4941944696508,0.498898249999911 +22,1565.789148638521,1.451454146970356,0.0,461.89229467906654,0.492920040996978 +23,1568.7101272229097,1.4541618336874398,0.0,462.75395443844394,0.4938395829958608 +24,1575.9745217226878,1.4608957770993607,0.0,464.8968788851193,0.4961264590019709 +25,1568.585847578053,1.4540466290278165,0.0,462.7172931738065,0.4938004590003402 +26,1571.2650074952892,1.4565301548433136,0.0,463.5076188208199,0.4946438749975641 +27,1582.4785212364975,1.4669248500907153,0.0,466.8154943402317,0.4981739579961868 +28,1569.3266463286614,1.4547333341436206,0.0,462.9358214699767,0.4940336669969838 +29,1584.888340812466,1.4691587029821032,0.0,467.526367253532,0.4989325839997036 +0,1426.3557398510718,0.7629699524762699,0.0,451.2137953731401,0.4804191670045838 +1,1436.1417501058518,0.7682045735251545,0.0,454.3095047430066,0.4837152499967487 +2,1437.3842689682,0.7688692075507837,0.0,454.7025635263374,0.4841337499965448 +3,1435.7789167975,0.7680104908680055,0.0,454.194725947244,0.4835930420013028 +4,1426.756674100297,0.7631844156543754,0.0,451.34062703177455,0.4805542079993756 +5,1442.0244163356904,0.7713512622847778,0.0,456.17042911293686,0.4856966250008554 +6,1433.8540249710404,0.7669808496751926,0.0,453.5858050992161,0.4829447079973761 +7,1431.3976884066913,0.7656669341214452,0.0,452.80876686608246,0.4821173750024172 +8,1444.479393128879,0.772664450485237,0.0,456.9470371956606,0.4865235000033863 +9,1432.4989342043805,0.7662559999697834,0.0,453.157135286478,0.4824882920001982 +10,1431.180456916915,0.7655507351292863,0.0,452.74004779254574,0.4820442080017528 +11,1430.9528339766905,0.7654289776609116,0.0,452.6680414845096,0.4819675409962656 +12,1446.737182019997,0.7738721611809836,0.0,457.66126679929295,0.4872839590025251 +13,1439.437319842241,0.7699674021203672,0.0,455.3520262452711,0.4848252499941736 +14,1429.330534848355,0.7645611959047436,0.0,452.1548428998401,0.4814211249977234 +15,1435.3975273199171,0.7678064823563443,0.0,454.0740770874346,0.4834645839946461 +16,1429.0497166778464,0.7644109838501899,0.0,452.0660087969688,0.4813265409975429 +17,1432.9186739984648,0.7664805223955694,0.0,453.2899158967189,0.4826296669998555 +18,1442.7036926265273,0.7717146130147944,0.0,456.3853115750971,0.4859254159964621 +19,1437.1060516360046,0.7687203867070121,0.0,454.6145521734252,0.4840400419998332 +20,1430.7913985771136,0.765342624477269,0.0,452.6169729626006,0.4819131670010392 +21,1425.923010749327,0.7627384819581031,0.0,451.07690572148346,0.480273417000717 +22,1436.4061141941868,0.7683459841496418,0.0,454.3931337566707,0.4838042920018779 +23,1425.6143583789776,0.7625733811506694,0.0,450.97926653962634,0.4801694580019102 +24,1425.9557912663608,0.7627560165385902,0.0,451.0872755199088,0.4802844579971861 +25,1424.248876161869,0.7618429729690447,0.0,450.547309492389,0.4797095419999095 +26,1424.314811302583,0.7618782422428813,0.0,450.56816743424656,0.4797317499978817 +27,1431.318392832772,0.765624518236982,0.0,452.78368248084473,0.4820906669992837 +28,1433.8801282741756,0.7669948125565385,0.0,453.5940626258276,0.4829535000026226 +29,1438.061321530074,0.7692313687890531,0.0,454.9167425334217,0.4843617920050747 +0,2319.6517057789556,3.3029404967567295,87.47684676461894,525.848557643445,0.5111504169981345 +1,2314.9243261951497,3.2962092045407503,87.29857161304317,524.7768942858021,0.5101087080038269 +2,2243.7729720655752,3.1948971461967437,84.6153687482416,508.6473879249105,0.4944300420029321 +3,2254.4893140159697,3.210156092062139,85.01949485059417,511.0767064919135,0.4967914580047363 +4,2263.353929629599,3.222778374030373,85.35379013282504,513.0862518572274,0.4987448340034461 +5,2281.1763688707247,3.248155656392999,86.02589568323314,517.126472182238,0.5026721249960246 +6,2232.2522473507156,3.1784928437241375,84.18090840749804,506.0357215013594,0.491891375000705 +7,2263.23101968358,3.2226033631711357,85.34915505140874,513.0583890458953,0.498717749993375 +8,2302.994609764187,3.2792225408030493,86.84868770436117,522.0725123466133,0.5074799170033657 +9,2303.3179493746047,3.279682942461968,86.86088122870923,522.1458111385584,0.5075511670002015 +10,2249.199214530751,3.2026235457845784,84.81999885691322,509.8774785314561,0.4956257500016363 +11,2241.124418905544,3.1911258845593675,84.51548863333005,508.0469797448486,0.4938464160004514 +12,2234.8798072469126,3.182234213157825,84.2799968412624,506.63137065769376,0.4924703750002663 +13,2263.226481615066,3.222596901438008,85.34898391540456,513.0573602980119,0.4987167500003124 +14,2308.6490778027983,3.2872739096468364,87.06192447301775,523.3543400688258,0.5087259159990936 +15,2238.1791965577077,3.1869321971448357,84.40442076768126,507.3793187681206,0.4931974170031026 +16,2318.3672328885114,3.301111542213138,87.428407752016,525.5573767669845,0.5108673750000889 +17,2320.239385189272,3.303777290538576,87.49900885972785,525.981780389559,0.5112799159978749 +18,2343.9967198964614,3.337605240960568,88.39492643327524,531.3673993417943,0.5165150000029826 +19,2249.4552359802046,3.2029880934497874,84.82965373270622,509.9355167746914,0.495682166001643 +20,2264.9076570694738,3.2249907187842424,85.41238305728577,513.43847082665,0.4990872080015833 +21,2258.7602333396535,3.2162374327899004,85.18055633852839,512.0448935523137,0.4977325829968322 +22,2237.530243679952,3.1860081563782474,84.3799479766569,507.2322057623637,0.4930544159942656 +23,2243.579912181123,3.1946222491899783,84.60808822854695,508.6036226210395,0.494387499995355 +24,2260.133957079125,3.218193471172367,85.23236110764753,512.356306962009,0.4980352920028963 +25,2268.958855232363,3.230759199646804,85.56515859683132,514.3568486612947,0.4999799159995746 +26,2260.4090793731352,3.218585216434892,85.24273629918801,512.4186752309694,0.4980959169988637 +27,2267.76401436255,3.229057871690433,85.52009971518271,514.0859867269625,0.4997166250032023 +28,2272.703545595133,3.236091245581197,85.70637535977419,515.2057433557776,0.5008050830001594 +29,2241.7712887452008,3.192046959298394,84.53988287049046,508.19362054067113,0.4939889579982264 +0,1533.8317063038091,1.9223856119804856,3.480180849275017,458.8204142525148,0.482414374993823 +1,1532.4658514507016,1.9206737555187392,3.4770817987839244,458.4118413387225,0.4819847920007305 +2,1532.7859211727923,1.9210749060661227,3.4778080196024637,458.507584908161,0.4820854589997907 +3,1538.3956003927374,1.9281056426038587,3.490536077127675,460.1856277683658,0.4838497919990914 +4,1522.9541430561326,1.9087525184704217,3.4555002489550732,455.5665709170007,0.4789932089988724 +5,1539.8533965777838,1.9299327311950096,3.493843737508207,460.6217034126296,0.4843082919978769 +6,1558.8705879131594,1.9537674027910896,3.536992711949386,466.31038201443187,0.4902894999977434 +7,1528.1842706527389,1.9153075544624512,3.4673671244578856,457.1310771797192,0.4806381669986876 +8,1530.6126061866742,1.9183510417448648,3.4728768859174273,457.85747363576144,0.4814019170007668 +9,1529.805810596203,1.9173398667713937,3.4710463105344194,457.6161340640759,0.4811481670039939 +10,1543.3268559157984,1.934286095535932,3.501724828125394,461.66073138799834,0.4854007499961881 +11,1528.3825913511537,1.9155561142331377,3.467817103353094,457.19040154016074,0.4807005420007044 +12,1527.5508876069628,1.9145137213130463,3.465930012721894,456.9416111058017,0.4804389579949202 +13,1532.1754590843225,1.9203098002655896,3.476422914273912,458.32497525994063,0.4818934590002754 +14,1548.060719170639,1.9402191523196637,3.5124657067855973,463.0767883717431,0.4868896249972749 +15,1536.3584725110995,1.925552464629163,3.4859139445872778,459.5762546183018,0.4832090830022935 +16,1531.8200143511997,1.9198643134250184,3.4756164294763265,458.2186498403884,0.4817816659997334 +17,1544.5072416097676,1.9357654993488456,3.504403059166014,462.0138242670011,0.4857719999999972 +18,1539.9674607728598,1.9300756904039993,3.4941025429727572,460.65582383211313,0.4843441669945605 +19,1532.2398437391903,1.920390494994772,3.476568999559501,458.3442348657349,0.4819137089943979 +20,1550.311531046087,1.943040145227069,3.5175726767041766,463.7500815582468,0.487597540995921 +21,1542.165283280946,1.932830270551135,3.4990892828942965,461.3132661248166,0.4850354169975617 +22,1531.4933249285327,1.9194548662587223,3.4748751889166525,458.12092609688784,0.4816789169999538 +23,1524.2148076912772,1.910332537677336,3.458360628553798,455.94367791495455,0.4793897080016904 +24,1530.4574725177151,1.918156609244927,3.4725248960468504,457.81106796168143,0.4813531250038068 +25,1532.0318478695604,1.9201298091154244,3.4760970682261996,458.28201633766935,0.4818482909977319 +26,1538.7289158546507,1.9285233943334643,3.4912923518105825,460.2853335820371,0.4839546249932027 +27,1566.0945228565863,1.9628213221618085,3.5533834280515495,468.4713028049295,0.4925615419997484 +28,1626.4442900112474,2.0384590362524007,3.6903137725258977,486.52393860072385,0.5115425000039977 +29,1622.90856352767,2.0340276311041094,3.68229140113675,485.466284437486,0.5104304580017924 +0,1449.873693545792,2.9850735339496506,0.0,457.58829464803466,0.4850850830043782 +1,1446.8429429029518,2.9788336707310705,0.0,456.63177269420214,0.484071083003073 +2,1445.3750194454071,2.975811435427066,0.0,456.1684877924884,0.4835799590000533 +3,1448.6709069635058,2.9825971758987695,0.0,457.208688435808,0.4846826659995713 +4,1424.9465914698055,2.933752351272618,0.0,449.7211609933968,0.4767452079977374 +5,1435.627076281973,2.955741875383908,0.0,453.0919820883445,0.4803185839991784 +6,1435.801801738884,2.9561016090210206,0.0,453.14712642554815,0.4803770419966895 +7,1442.0672958435391,2.969001326225478,0.0,455.1245516145416,0.4824732919951202 +8,1432.9680678415166,2.9502673738756124,0.0,452.2527840649998,0.479428958002245 +9,1439.1755293420624,2.9630476106098724,0.0,454.2118938376459,0.4815057919986429 +10,1440.091377941359,2.964933206180738,0.0,454.5009408081327,0.4818122079959721 +11,1451.3103619732328,2.988031419811643,0.0,458.0417152864073,0.4855657499938388 +12,1443.4372101016247,2.97182177521617,0.0,455.5569042615079,0.4829316250034026 +13,1434.084053598288,2.9525650219822253,0.0,452.6049954483539,0.4798023340044892 +14,1439.517134404998,2.963750924448154,0.0,454.31970631737266,0.481620083002781 +15,1430.940346220044,2.946092597704819,0.0,451.6128237133354,0.4787505420026718 +16,1433.879062454506,2.952142975813154,0.0,452.5402990900995,0.4797337499985588 +17,1434.991808233428,2.9544339532889583,0.0,452.8914879182164,0.4801060419995338 +18,1440.5813104402628,2.965941904071051,0.0,454.6555662611387,0.4819761249964358 +19,1442.6452755407934,2.9701913001557,0.0,455.30696525869905,0.4826666669978294 +20,1445.466802782904,2.97600040361984,0.0,456.19745513017386,0.483610667004541 +21,1448.1300405226957,2.981483612624223,0.0,457.0379879441829,0.4845017080006073 +22,1441.8208366411573,2.96849390351307,0.0,455.04676770369457,0.4823908339967602 +23,1440.003208219548,2.9647516778833114,0.0,454.47311394788784,0.4817827090009814 +24,1439.818517738674,2.96437142774919,0.0,454.4148245930585,0.4817209169996204 +25,1447.1916495857026,2.979551605744599,0.0,456.7418264850962,0.4841877500002738 +26,1440.1819178853802,2.9651196144119285,0.0,454.529515723842,0.4818424999975832 +27,1442.372537883316,2.969629774026444,0.0,455.22088771958175,0.4825754170014988 +28,1445.1306763932466,2.975308369552118,0.0,456.0913717505567,0.4834982090033008 +29,1445.056946063402,2.9751565698075964,0.0,456.06810204365206,0.4834735410040593 +0,1431.6867028657243,0.8916668429916627,0.0,450.2257063150125,0.4793388750040321 +1,1441.6843731260738,0.8978934783724855,0.0,453.3696959500776,0.4826861660039867 +2,1441.9302878449869,0.8980466361832127,0.0,453.4470292994718,0.4827684999982011 +3,1454.604502298105,0.9059402464026766,0.0,457.43271774843294,0.4870119170009275 +4,1440.1645935339263,0.8969469465172544,0.0,452.8917674766566,0.4821773330040741 +5,1443.7475013846054,0.8991784124696518,0.0,454.01849248884304,0.4833769159959047 +6,1443.403897575609,0.8989644130499505,0.0,453.9104386337028,0.4832618750006077 +7,1444.6679358767042,0.8997516670204607,0.0,454.3079435737015,0.4836850840001716 +8,1441.1069271725326,0.8975338400456352,0.0,453.18810523489424,0.4824928329981048 +9,1438.3328193690356,0.8958061017476463,0.0,452.3157253750245,0.4815640420056297 +10,1434.57119962179,0.8934633324826611,0.0,451.1328004346711,0.480304625001736 +11,1437.6711189179844,0.8953939889921014,0.0,452.1076389603451,0.4813424999956623 +12,1446.278188474604,0.9007545462450248,0.0,454.8143232947564,0.4842242080048891 +13,1461.7319885114002,0.9103793063712816,0.0,459.6741142133216,0.4893982499997946 +14,1485.9730603675405,0.925476855275964,0.0,467.29725807323024,0.4975143330011633 +15,1485.196744674062,0.9249933591575864,0.0,467.0531283479768,0.4972544169941102 +16,1441.8283634898155,0.8979831568145649,0.0,453.4149769204801,0.482734375000291 +17,1433.9295346206682,0.8930636979783642,0.0,450.93101461255696,0.4800897910026833 +18,1447.1245713490089,0.9012816808088032,0.0,455.0804872024598,0.4845075830016867 +19,1442.5035044879503,0.8984036404589097,0.0,453.6272900139377,0.4829604170008679 +20,1448.8445916093335,0.9023529242815096,0.0,455.62138580480814,0.4850834579992806 +21,1445.4697617578422,0.9002510511040261,0.0,454.5600955444884,0.4839535409992095 +22,1435.0296725657156,0.8937488733916388,0.0,451.27697744252634,0.4804581249991315 +23,1444.6637035888714,0.8997490311150472,0.0,454.30661263672,0.4836836670001503 +24,1445.5280072361847,0.9002873268909621,0.0,454.5784121297958,0.4839730419989791 +25,1435.0631485627289,0.8937697225316866,0.0,451.2875047138698,0.4804693330006557 +26,1434.5349847238203,0.8934407775314437,0.0,451.1214118550434,0.4802924999967217 +27,1455.9690940043993,0.9067901259023524,0.0,457.8618439417322,0.4874687919946154 +28,1436.5572954868485,0.8947002901398989,0.0,451.7573724250831,0.4809695840012864 +29,1432.2019249021291,0.8919877277255372,0.0,450.3877293363795,0.4795113750005839 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/without_smell.csv new file mode 100644 index 000000000..045554887 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n10/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.3303920568681,0.0,0.0,69.15518081324026,0.075606708000123 +1,314.38863582784177,0.0,0.0,61.53335078178913,0.0672738329958519 +2,317.2772995012459,0.0,0.0,62.098731125891405,0.067891958002292 +3,321.3954204399756,0.0,0.0,62.904745566004465,0.0687731660000281 +4,319.5576625612702,0.0,0.0,62.54505253860031,0.0683799170001293 +5,331.31404809256026,0.0,0.0,64.84605744902893,0.0708955840018461 +6,331.38667532066586,0.0,0.0,64.86027232893883,0.0709111249962006 +7,318.43373701362606,0.0,0.0,62.32507351552368,0.0681394160055788 +8,336.7251033504346,0.0,0.0,65.90512995782265,0.0720534580032108 +9,304.5621182908196,0.0,0.0,59.610067044204875,0.0651711249956861 +10,322.1328293892706,0.0,0.0,63.0490740765663,0.0689309590015909 +11,346.8411718814985,0.0,0.0,67.88508572758349,0.0742181250025169 +12,320.85566267461155,0.0,0.0,62.799102103969375,0.0686576669977512 +13,374.90570573356854,0.0,0.0,73.37798403639027,0.0802234590009902 +14,386.9158076380404,0.0,0.0,75.72864728942714,0.0827934170010848 +15,335.4308044090277,0.0,0.0,65.65180480003387,0.0717764999935752 +16,388.6902847933515,0.0,0.0,76.07595477070589,0.0831731250000302 +17,387.62594807984937,0.0,0.0,75.86763870301657,0.0829453750047832 +18,390.1639250154146,0.0,0.0,76.36438129245846,0.0834884590003639 +19,383.6162843317429,0.0,0.0,75.08285192063312,0.0820873750053579 +20,388.70488876434206,0.0,0.0,76.07881311597464,0.0831762500019976 +21,391.1120095675774,0.0,0.0,76.54994404082375,0.083691333005845 +22,385.3631097374103,0.0,0.0,75.42474729531305,0.0824611659991205 +23,381.9621437858659,0.0,0.0,74.7590971825402,0.0817334169987589 +24,385.6555815460515,0.0,0.0,75.48199100053641,0.0825237500030198 +25,356.2938326643222,0.0,0.0,69.73519678595287,0.0762408340015099 +26,391.34392044465426,0.0,0.0,76.5953345280203,0.0837409579980885 +27,326.9782229625547,0.0,0.0,63.99743310880556,0.0699677910015452 +28,396.7662756507644,0.0,0.0,77.65661870606465,0.0849012499966193 +29,327.27049847477355,0.0,0.0,64.05463839413953,0.0700303330013412 +0,302.5242036763287,0.0,0.0,63.689306037121824,0.0675712500014924 +1,302.7327655579679,0.0,0.0,63.733213801677465,0.0676178339999751 +2,316.69315087742956,0.0,0.0,66.67224228998516,0.0707360000014887 +3,307.5654342587211,0.0,0.0,64.75061773867812,0.0686972499970579 +4,306.4536190758211,0.0,0.0,64.51655138438339,0.0684489170016604 +5,300.7051879657525,0.0,0.0,63.30635536121105,0.0671649579962831 +6,307.374413716436,0.0,0.0,64.71040288767074,0.0686545839998871 +7,310.5906561688394,0.0,0.0,65.38750656186093,0.0693729580016224 +8,308.0642609293506,0.0,0.0,64.85563387986328,0.0688086670052143 +9,304.84745437059416,0.0,0.0,64.17841144644088,0.068090167005721 +10,302.7420869129773,0.0,0.0,63.73517619220574,0.0676199160006945 +11,305.72011556246974,0.0,0.0,64.3621295920989,0.0682850830053212 +12,312.60610523015094,0.0,0.0,65.81181162740019,0.0698231249989476 +13,308.66251527816155,0.0,0.0,64.98158216382348,0.068942291996791 +14,307.0794838197012,0.0,0.0,64.64831238309499,0.0685887090003234 +15,309.8218998360231,0.0,0.0,65.22566312337328,0.0692012500003329 +16,306.41127454986776,0.0,0.0,64.50763674734058,0.0684394590061856 +17,309.1954754486052,0.0,0.0,65.0937843049695,0.0690613330007181 +18,306.76198031973763,0.0,0.0,64.58146954099739,0.0685177920022397 +19,296.2609044530781,0.0,0.0,62.37071672696381,0.0661722910008393 +20,307.906254599804,0.0,0.0,64.82236938943242,0.0687733750019106 +21,308.04205891249177,0.0,0.0,64.8509597710509,0.0688037080035428 +22,307.9202455579482,0.0,0.0,64.82531485430489,0.068776499996602 +23,308.26330444060716,0.0,0.0,64.89753777696993,0.068853124997986 +24,304.56744666191145,0.0,0.0,64.11946245513926,0.0680276249986491 +25,312.2052199573735,0.0,0.0,65.72741472786811,0.0697335840013693 +26,307.5005161295389,0.0,0.0,64.73695076411346,0.0686827500030631 +27,318.98524529080635,0.0,0.0,67.15478848227502,0.0712479579960927 +28,329.1152803585185,0.0,0.0,69.28742744389862,0.0735105840067262 +29,277.68144008298685,0.0,0.0,58.4592505437867,0.0620224159938516 +0,289.2120689785326,0.0,0.0,63.59671948096083,0.06825262500206 +1,291.15596541819224,0.0,0.0,64.0241754893138,0.0687113749954733 +2,291.12877419678506,0.0,0.0,64.01819623510673,0.0687049580010352 +3,289.13703351517285,0.0,0.0,63.58021944577464,0.0682349170019733 +4,287.799607294358,0.0,0.0,63.286124111191775,0.0679192909956327 +5,291.371363998525,0.0,0.0,64.07154088156179,0.0687622080004075 +6,289.56394921064606,0.0,0.0,63.67409670969008,0.068335667005158 +7,292.13638840929866,0.0,0.0,64.23976706596653,0.0689427499964949 +8,283.5650571496894,0.0,0.0,62.35496138817781,0.0669199580006534 +9,287.130631504071,0.0,0.0,63.13901868151625,0.0677614160013035 +10,289.67976939419503,0.0,0.0,63.699565161782736,0.0683629999984987 +11,292.1418630957887,0.0,0.0,64.2409709303218,0.0689440419955644 +12,293.0022242707416,0.0,0.0,64.43016133475076,0.0691470829988247 +13,293.2524074633523,0.0,0.0,64.4851757412225,0.0692061250010738 +14,292.1868810008963,0.0,0.0,64.2508702097428,0.0689546659996267 +15,297.1340223092222,0.0,0.0,65.33872923004402,0.0701221670024097 +16,289.3466056584585,0.0,0.0,63.62630362495372,0.0682843749964376 +17,290.05283648513034,0.0,0.0,63.78160130644845,0.0684510419960133 +18,292.61538991766724,0.0,0.0,64.34509781743297,0.069055791995197 +19,263.23624764234796,0.0,0.0,57.884727486160926,0.0621224589995108 +20,291.45399282192466,0.0,0.0,64.08971066998504,0.068781707996095 +21,292.67577253005464,0.0,0.0,64.35837574208907,0.0690700419945642 +22,292.25150521505736,0.0,0.0,64.26508084775038,0.0689699169961386 +23,288.79928071261065,0.0,0.0,63.50594878924803,0.0681552090027253 +24,290.00304733298486,0.0,0.0,63.77065284654021,0.0684392920011305 +25,290.2530483145524,0.0,0.0,63.82562718544269,0.06849829100247 +26,293.6300636211133,0.0,0.0,64.56822100558581,0.0692952499957755 +27,289.9055876714127,0.0,0.0,63.749221808825894,0.0684162920006201 +28,284.5073479632638,0.0,0.0,62.5621678327499,0.0671423339954344 +29,296.6712669039547,0.0,0.0,65.23697093966203,0.0700129590040887 +0,411.18397650340427,1.167188903294335,11.571844269803837,72.9993288374657,0.0697049590016831 +1,411.5723141966685,1.1682912406231467,11.582773157035197,73.06827216354479,0.0697707910003373 +2,418.1105355683403,1.1868506686854754,11.766776629538857,74.22903182150016,0.0708791670040227 +3,400.7175640493484,1.1374788922730896,11.277290731964632,71.14117986245122,0.067930666002212 +4,418.00361764476526,1.1865471709299906,11.763767666077335,74.2100502047357,0.0708610420042532 +5,413.635956981174,1.1741491074080366,11.64084972201682,73.43463988903406,0.0701206250014365 +6,420.48804217203855,1.1935994708857542,11.83368618278162,74.6511211933976,0.0712822080022306 +7,410.6007148882734,1.1655332539407597,11.555429689069816,72.89577979646637,0.0696060830014175 +8,403.7262610147389,1.146019394607937,11.36196371225583,71.67532727990782,0.0684407080043456 +9,412.53777277014586,1.1710317961845178,11.609943807886506,73.2396743385117,0.0699344580061733 +10,429.4455521502114,1.2190263037516138,12.085775068623144,76.24138796892237,0.0728007079960662 +11,395.8983941476386,1.1237991723574494,11.14166608022957,70.28561109401305,0.0671137079989421 +12,445.29103640889906,1.264005375045537,12.53171043259432,79.05450759927656,0.0754868750009336 +13,399.63216866892594,1.1343978834884354,11.246744730585345,70.94848477017672,0.0677466670022113 +14,414.6867020803303,1.1771317577300535,11.670420569495102,73.62118336203106,0.0702987499971641 +15,410.0169695614531,1.163876231520751,11.539001495362871,72.79214487996926,0.0695071250011096 +16,398.8161474353609,1.1320815215115678,11.223779656128972,70.80361287396634,0.0676083329963148 +17,419.9141303132871,1.191970361797652,11.817534729822436,74.54923205643028,0.0711849169965717 +18,416.0722109489615,1.1810646701714236,11.709412587128114,73.86715894300704,0.0705336250030086 +19,392.7186344103601,1.1147730903781512,11.052178924606242,69.72109413822209,0.0665746669983491 +20,413.00550991309615,1.1723595171904595,11.623107213288268,73.32271380371188,0.0700137500025448 +21,403.1911817621741,1.144500515951021,11.34690511528584,71.58033226905101,0.0683500000013737 +22,423.6343845134346,1.202530694077065,11.922232881278331,75.20970540956273,0.0718155840004328 +23,393.78461647064967,1.1177989924146583,11.082178581939614,69.91034269701963,0.0667553750026854 +24,401.4849191657379,1.1396571103650306,11.29888620847616,71.27741184540147,0.0680607500034966 +25,426.8551889258219,1.2116732856775156,12.012875146574226,75.78150920994518,0.0723615829992923 +26,413.6236695024976,1.1741142281092791,11.640503918683429,73.43245843803464,0.070118541996635 +27,404.8104353128579,1.1490969372222244,11.392475349031768,71.86780558798426,0.0686245000033523 +28,414.91553298984866,1.1777813183004626,11.676860498578872,73.66180873599178,0.0703375419980147 +29,391.62585952955607,1.111671134106607,11.021425243856932,69.5270889302675,0.0663894170065759 +0,315.89567899052815,0.0,0.0,70.69041793477467,0.0832259160015382 +1,265.85174216063353,0.0,0.0,59.491699354921,0.0700413340018712 +2,312.32888500652234,0.0,0.0,69.8922488739558,0.0822862080021877 +3,314.376318158851,0.0,0.0,70.35041881693866,0.0828256250024424 +4,315.90675086282243,0.0,0.0,70.69289557322259,0.0832288329984294 +5,299.2312370810115,0.0,0.0,66.96128695394593,0.078835500004061 +6,317.14049354538116,0.0,0.0,70.96897971002608,0.0835538750034174 +7,317.43117509131514,0.0,0.0,71.03402776650366,0.0836304580006981 +8,312.8783039921803,0.0,0.0,70.01519660733908,0.0824309579984401 +9,268.2657658886426,0.0,0.0,60.03190410473824,0.0706773330020951 +10,312.72885063157213,0.0,0.0,69.98175227357386,0.0823915829969337 +11,301.8543398759503,0.0,0.0,67.54827894273366,0.0795265830020071 +12,297.0645600830759,0.0,0.0,66.47643289388668,0.0782646670049871 +13,320.132881830413,0.0,0.0,71.63860956747773,0.0843422500038286 +14,305.29682664515053,0.0,0.0,68.31863081721116,0.0804335410066414 +15,306.0025007629592,0.0,0.0,68.47654496935486,0.080619458000001 +16,317.616212578826,0.0,0.0,71.07543503540818,0.0836792080008308 +17,313.46473429199887,0.0,0.0,70.14642664858644,0.0825854590002563 +18,315.381214024097,0.0,0.0,70.57529213246538,0.0830903749956633 +19,317.8055239782236,0.0,0.0,71.1177987106126,0.083729084006336 +20,312.42836494049845,0.0,0.0,69.91451026775316,0.0823124169983202 +21,310.49337764575245,0.0,0.0,69.48150320351859,0.0818026249980903 +22,319.06867904096777,0.0,0.0,71.40046468308539,0.0840618750007706 +23,315.95309183579826,0.0,0.0,70.70326565095722,0.0832410419970983 +24,314.0385061273956,0.0,0.0,70.27482400740125,0.0827366250014165 +25,314.3986175247909,0.0,0.0,70.35540891842726,0.0828314999962458 +26,311.0146443837262,0.0,0.0,69.59815109082307,0.0819399579995661 +27,312.9080390484739,0.0,0.0,70.02185065073537,0.0824387920001754 +28,316.7443235347586,0.0,0.0,70.88032568438815,0.0834495000017341 +29,312.2983604376832,0.0,0.0,69.88541815523429,0.0822781659953761 +0,305.2603840466375,0.0,0.0,70.23005972174292,0.0822855000005802 +1,311.8426015201836,0.0,0.0,71.74440468894973,0.0840597919959691 +2,309.3793097001562,0.0,0.0,71.17768479775621,0.0833957909999298 +3,307.9774835661487,0.0,0.0,70.85517215525161,0.0830179169934126 +4,309.9985372950614,0.0,0.0,71.32014806270742,0.0835627089982153 +5,317.29333507952543,0.0,0.0,72.99843358823003,0.0855290830004378 +6,263.96027579202377,0.0,0.0,60.728305741138506,0.0711527089952142 +7,307.5211780361769,0.0,0.0,70.7501917310103,0.0828949160058982 +8,307.52566313089267,0.0,0.0,70.75122359916683,0.0828961250008433 +9,309.28022911738526,0.0,0.0,71.1548897165438,0.0833690829967963 +10,309.2709546995603,0.0,0.0,71.15275598759708,0.0833665829995879 +11,307.9507398632547,0.0,0.0,70.84901933638095,0.0830107080037123 +12,305.0501624157072,0.0,0.0,70.18169485533174,0.0822288329945877 +13,306.4693057610753,0.0,0.0,70.50819160075841,0.0826113750008517 +14,263.23315694845485,0.0,0.0,60.56102035961698,0.0709567080048145 +15,281.69931878209627,0.0,0.0,64.80945781231267,0.0759344170000986 +16,310.20798354982014,0.0,0.0,71.36833454136281,0.0836191669950494 +17,307.4975319241093,0.0,0.0,70.74475156271633,0.0828885419978178 +18,312.2465028928711,0.0,0.0,71.83732869418587,0.0841686670028138 +19,264.4872154298051,0.0,0.0,60.84953667762806,0.0712947499996516 +20,307.0058314139288,0.0,0.0,70.63162795415167,0.0827559999961522 +21,313.308421210062,0.0,0.0,72.0816400779537,0.0844549160028691 +22,309.2122178896617,0.0,0.0,71.1392426400334,0.0833507499992265 +23,308.3093523143448,0.0,0.0,70.93152389698967,0.0831073750014184 +24,287.64237234819007,0.0,0.0,66.17675284530496,0.077536416996736 +25,306.2275548020647,0.0,0.0,70.45257290545298,0.0825462089997017 +26,307.19379440968873,0.0,0.0,70.67487186363874,0.0828066670001135 +27,303.97726690862385,0.0,0.0,69.9348579925237,0.0819396250008139 +28,311.54442867805176,0.0,0.0,71.67580523220816,0.0839794170024106 +29,307.42689047443804,0.0,0.0,70.72849936135475,0.0828695000018342 +0,289.20382575590736,0.0996796274434423,0.0,62.69848566192523,0.0674275420024059 +1,293.9195168609384,0.1013049805357094,0.0,63.720832756961265,0.0685270000030868 +2,293.63447150195356,0.1012067342033387,0.0,63.65903581390008,0.0684605420028674 +3,291.00346139953365,0.1002999062728172,0.0,63.08864104560202,0.067847124999389 +4,290.50771376254335,0.1001290373722001,0.0,62.981164507113895,0.0677315420034574 +5,268.94209243479787,0.0926960336976555,0.0,58.30580519582532,0.0627035419965977 +6,293.7504532056515,0.1012467095148155,0.0,63.684180284818986,0.0684875830047531 +7,294.7303336039688,0.1015844440271032,0.0,63.89661529304792,0.0687160410016076 +8,287.73462702725806,0.0991732400139906,0.0,62.37996796880009,0.0670849999951315 +9,293.6507314665593,0.1012123385109924,0.0,63.662560923414226,0.0684643329950631 +10,290.6228033105725,0.1001687051851697,0.0,63.00611556147178,0.0677583750002668 +11,292.06412282992403,0.1006654835121521,0.0,63.31858912914369,0.0680944170017028 +12,290.22624120801856,0.1000320224751902,0.0,62.920142136894654,0.0676659169985214 +13,286.2795480944859,0.0986717192421252,0.0,62.06451140329675,0.0667457500021555 +14,290.24715059938825,0.1000392292966641,0.0,62.92467522760175,0.0676707919992622 +15,290.5952801459097,0.1001592188002905,0.0,63.00014862538278,0.0677519580058287 +16,287.0188825965561,0.0989265450125997,0.0,62.224796812925256,0.0669181249977555 +17,294.8216615026295,0.1016159219333511,0.0,63.91641489607788,0.0687373339969781 +18,292.6999826596284,0.1008846447586035,0.0,63.45644155316163,0.068242666995502 +19,294.47674453414845,0.1014970397061632,0.0,63.84163797517671,0.0686569169993163 +20,291.70115300347874,0.1005403790223387,0.0,63.23989840505106,0.0680097910008044 +21,291.2361453845984,0.10038010525664,0.0,63.1390862064266,0.0679013750050216 +22,290.8948054959841,0.1002624559384136,0.0,63.06508478526217,0.0678217919994494 +23,292.993606263265,0.1009858477469893,0.0,63.52009823285628,0.0683111250036745 +24,289.21990989831363,0.0996851711506136,0.0,62.701972653735965,0.0674312920018564 +25,276.5893870013989,0.095331819968313,0.0,59.9637147600689,0.0644864999994752 +26,294.1384413389605,0.1013804370423806,0.0,63.76829489965745,0.0685780419953516 +27,282.89311931638207,0.0975045218232015,0.0,61.33034422679377,0.0659562079963507 +28,293.29813271570947,0.1010908086106535,0.0,63.586118616101075,0.0683821249986067 +29,294.9056550815358,0.1016448719260808,0.0,63.93462444150483,0.068756917004066 +0,370.44916321321614,0.0,0.0,65.64209549207466,0.0671277500005089 +1,371.36386610958994,0.0,0.0,65.80417715086381,0.0672934999965946 +2,368.962830282296,0.0,0.0,65.3787232999547,0.0668584169980022 +3,368.9108618969243,0.0,0.0,65.36951471196507,0.0668489999952726 +4,376.83391647843223,0.0,0.0,66.77344798290869,0.0682847079951898 +5,379.53434024077234,0.0,0.0,67.25195216669212,0.068774041996221 +6,377.5320155936468,0.0,0.0,66.8971483265304,0.0684112080052727 +7,373.23696245052207,0.0,0.0,66.13608225711602,0.0676329169946257 +8,381.6909531277366,0.0,0.0,67.63409525978926,0.0691648339998209 +9,336.48949708535804,0.0,0.0,59.62457981594719,0.0609740420040907 +10,375.5701640445277,0.0,0.0,66.54951615586617,0.0680557079977006 +11,374.0240484961872,0.0,0.0,66.27555072539892,0.067775542003801 +12,371.35052776493495,0.0,0.0,65.80181365006399,0.0672910830035107 +13,370.73061027987507,0.0,0.0,65.69196677553322,0.0671787500032223 +14,394.8672224542054,0.0,0.0,69.96887696601637,0.0715524580009514 +15,365.1862909781526,0.0,0.0,64.70953578855121,0.0661740840005222 +16,371.5834610794553,0.0,0.0,65.84308849258868,0.0673332920050597 +17,386.614659576844,0.0,0.0,68.50655615591829,0.0700570409971987 +18,386.60155849554985,0.0,0.0,68.50423469722772,0.0700546669977484 +19,362.7040769916651,0.0,0.0,64.26969749570833,0.0657242910019704 +20,365.19778618521207,0.0,0.0,64.71157269281348,0.0661761670053238 +21,379.3593519471741,0.0,0.0,67.2209449478372,0.0687423330018646 +22,365.1720309643177,0.0,0.0,64.70700897169529,0.0661714999951073 +23,376.3324220394227,0.0,0.0,66.6845851938321,0.0681938340057968 +24,375.2703236266904,0.0,0.0,66.49638564486882,0.0680013750024954 +25,387.82208398640864,0.0,0.0,68.72050688455441,0.0702758339975844 +26,379.18068825981504,0.0,0.0,67.18928646405266,0.0687099580027279 +27,353.33078643544184,0.0,0.0,62.60878826749005,0.0640257909981301 +28,382.47504806500143,0.0,0.0,67.7730337157446,0.0693069170010858 +29,362.6224518506248,0.0,0.0,64.25523385039665,0.0657095000060508 +0,298.5621379017781,0.0,0.0,65.17760957180526,0.0699610410010791 +1,293.7520815286884,0.0,0.0,64.12755018213558,0.0688339170010294 +2,289.85563047951763,0.0,0.0,63.27693540899896,0.0679208750007092 +3,291.0702814766676,0.0,0.0,63.54209980330101,0.068205499999749 +4,297.6933418060511,0.0,0.0,64.98794703414137,0.0697574589939904 +5,272.9803182380672,0.0,0.0,59.59297025385459,0.0639665410053567 +6,293.15729192518216,0.0,0.0,63.99770463364393,0.0686945419947733 +7,291.59732372815654,0.0,0.0,63.65715576564372,0.0683290000015404 +8,289.71177993007666,0.0,0.0,63.2455321138121,0.0678871669952059 +9,288.3285607864271,0.0,0.0,62.943568449127,0.0675630420009838 +10,287.9739957844177,0.0,0.0,62.86616513392031,0.0674799580010585 +11,292.9851689308829,0.0,0.0,63.96012932218745,0.0686542090043076 +12,294.059699195972,0.0,0.0,64.19470465911147,0.0689059999931487 +13,288.9098350378217,0.0,0.0,63.070463528582806,0.0676992500011692 +14,291.7097053387855,0.0,0.0,63.68168923392643,0.0683553339986247 +15,293.23659577732656,0.0,0.0,64.01501706163273,0.0687131249942467 +16,280.4243482266323,0.0,0.0,61.21803927179926,0.0657108750019688 +17,295.6641182362926,0.0,0.0,64.54495736876346,0.0692819579999195 +18,294.7314796376094,0.0,0.0,64.34135769305185,0.0690634159982437 +19,292.6675907282371,0.0,0.0,63.890800410470675,0.0685797919941251 +20,291.79132220494307,0.0,0.0,63.69950660445531,0.0683744589987327 +21,291.3745192657314,0.0,0.0,63.608516435938846,0.068276790996606 +22,290.6044059821546,0.0,0.0,63.440396850261365,0.0680963329941732 +23,290.49878844398484,0.0,0.0,63.41734001286348,0.0680715839989716 +24,291.0869974835,0.0,0.0,63.54574899128773,0.0682094170042546 +25,290.73012372139635,0.0,0.0,63.46784166219275,0.0681257920005009 +26,287.31287997933134,0.0,0.0,62.7218402435357,0.0673250410036416 +27,271.03076122136986,0.0,0.0,59.1673721958916,0.0635097080012201 +28,292.54952051034445,0.0,0.0,63.865025090740104,0.0685521250052261 +29,291.9493964926538,0.0,0.0,63.734015012923166,0.0684115000040037 +0,291.29299505714096,0.0,0.0,62.99496139075435,0.0682530839985702 +1,292.5162594046519,0.0,0.0,63.25950427935701,0.0685397080014809 +2,289.0799426382046,0.0,0.0,62.51636714354541,0.067734541997197 +3,292.75366209526413,0.0,0.0,63.310844934927005,0.0685953340071137 +4,297.886977244811,0.0,0.0,64.42097458150106,0.0697981249977601 +5,290.82548775033143,0.0,0.0,62.893858359641,0.0681435420046909 +6,268.5173277099082,0.0,0.0,58.06950039603958,0.0629164999991189 +7,292.0704497581507,0.0,0.0,63.16309357966455,0.068435250002949 +8,293.8949497924379,0.0,0.0,63.55765957049728,0.0688627499985159 +9,293.04956393422503,0.0,0.0,63.37483660392384,0.068664666992845 +10,290.9037299843468,0.0,0.0,62.91077900859089,0.0681618750022607 +11,291.32144445247934,0.0,0.0,63.001113850962255,0.0682597499981056 +12,291.6738994667166,0.0,0.0,63.077335697661645,0.0683423340014997 +13,292.62811511187584,0.0,0.0,63.28369417090083,0.0685659169976133 +14,291.9456155250125,0.0,0.0,63.136096954856455,0.0684059999985038 +15,288.2672740442093,0.0,0.0,62.34061960559938,0.0675441249986761 +16,293.5677518423963,0.0,0.0,63.48689981114927,0.0687860839971108 +17,269.05080725191584,0.0,0.0,58.184870568758406,0.0630414999977801 +18,292.5950351222772,0.0,0.0,63.27654029935935,0.0685581660000025 +19,288.8240474431492,0.0,0.0,62.46102730288279,0.0676745829987339 +20,289.09861444034067,0.0,0.0,62.52040510351909,0.0677389170014066 +21,292.22515879396974,0.0,0.0,63.19655092297043,0.068471499995212 +22,289.8157859281682,0.0,0.0,62.67550045751957,0.0679069580000941 +23,289.92461574616726,0.0,0.0,62.69903597090075,0.0679324579978128 +24,289.408032574084,0.0,0.0,62.58731980356169,0.0678114170004846 +25,291.7665414108356,0.0,0.0,63.09737042486749,0.0683640410061343 +26,292.56711921054875,0.0,0.0,63.27050321020389,0.0685516250014188 +27,293.90632783646987,0.0,0.0,63.560120183888806,0.0688654159966972 +28,265.84672909821063,0.0,0.0,57.491957306130764,0.0622907500001019 +29,296.77573933170015,0.0,0.0,64.18065850586514,0.0695377499941969 +0,311.59367925352166,0.0,0.0,72.32524053893655,0.0842451249991427 +1,314.6147113063084,0.0,0.0,73.02646423004957,0.0850619169941637 +2,317.0589047950213,0.0,0.0,73.59379564196513,0.085722749994602 +3,316.35045698648344,0.0,0.0,73.42935502081859,0.0855312080020667 +4,310.3879176166453,0.0,0.0,72.04536643934435,0.0839191249979194 +5,319.6777081144411,0.0,0.0,74.20165643187254,0.086430791998282 +6,254.6704492989941,0.0,0.0,59.112564631718605,0.0688548749967594 +7,313.85401997041055,0.0,0.0,72.84989715726266,0.0848562499959371 +8,273.9504631496793,0.0,0.0,63.58772485539658,0.0740675839988398 +9,303.15396548952185,0.0,0.0,70.36626521721826,0.0819632919956347 +10,319.6621404622535,0.0,0.0,74.19804296258846,0.0864265829950454 +11,321.3189864206904,0.0,0.0,74.58262002707511,0.0868745420011691 +12,327.9853465847884,0.0,0.0,76.12997523512246,0.0886769159988034 +13,316.0251306481012,0.0,0.0,73.35384223848772,0.0854432499982067 +14,248.80099032368904,0.0,0.0,57.750181308541606,0.0672679580020485 +15,293.83489274284335,0.0,0.0,68.20317840615691,0.0794437079966883 +16,319.29011864863867,0.0,0.0,74.1116915089265,0.0863260000041918 +17,317.9883472997439,0.0,0.0,73.8095322155767,0.0859740419982699 +18,317.7534827019866,0.0,0.0,73.7550168654336,0.0859105420022388 +19,317.9663070322047,0.0,0.0,73.80441636195883,0.0859680830035358 +20,309.99647784933063,0.0,0.0,71.95450780769507,0.0838132920034695 +21,318.1546314596068,0.0,0.0,73.84812908919976,0.0860190000021248 +22,317.56423360371525,0.0,0.0,73.7110895091822,0.0858593750017462 +23,314.6444522037832,0.0,0.0,73.03336750732035,0.0850699579968932 +24,291.90250070508733,0.0,0.0,67.75464325203872,0.0789212500021676 +25,315.9423732511658,0.0,0.0,73.33463309196694,0.0854208750024554 +26,312.00345697187805,0.0,0.0,72.42035566488721,0.0843559159984579 +27,315.7848733838278,0.0,0.0,73.2980751752038,0.0853782919948571 +28,316.48175922730144,0.0,0.0,73.4598321029379,0.0855667079958948 +29,318.58722249833687,0.0,0.0,73.94853950511737,0.0861359590053325 +0,315.2685064044108,1.0496534957079513,0.0,64.40132093021043,0.0687121249939082 +1,314.17382763917124,1.0460088773294285,0.0,64.17770595743784,0.0684735419999924 +2,313.19748443178446,1.0427582448056405,0.0,63.9782639232364,0.0682607499984442 +3,318.2126359755493,1.05945566697906,0.0,65.00273156755394,0.0693537920014932 +4,282.3759053861895,0.9401410231953468,0.0,57.6822008425016,0.061543249998067 +5,321.98321971372366,1.072009430901668,0.0,65.77296572822493,0.0701755830014008 +6,316.9822183463278,1.0553591202594954,0.0,64.75138860430839,0.069085625000298 +7,309.3607473121048,1.0299842301229996,0.0,63.19451631270792,0.0674245410045841 +8,309.1332480286353,1.0292267950690253,0.0,63.14804400713826,0.067374958001892 +9,309.5574685882235,1.0306391930227612,0.0,63.2347014557836,0.0674674160036374 +10,310.23806225304827,1.032905158398077,0.0,63.37372939590783,0.0676157499983673 +11,314.9805936376203,1.0486949202842046,0.0,64.3425076896954,0.0686493749963119 +12,310.99435750196216,1.0354231642746028,0.0,63.52822124033209,0.0677805829982389 +13,302.2611944541267,1.0063470119297528,0.0,61.74425860291581,0.0658772080059861 +14,311.56598023332543,1.0373263223319824,0.0,63.64498919598164,0.0679051670012995 +15,289.5773587298098,0.964117508390517,0.0,59.15327422447624,0.0631127919987193 +16,313.3504246291615,1.04326744318591,0.0,64.00950570772905,0.068294083001092 +17,308.59680801280683,1.0274407741807552,0.0,63.03846298360634,0.0672580419995938 +18,311.23638777221015,1.0362289787282262,0.0,63.57766185616407,0.0678333329997258 +19,312.72393558727396,1.041181613490011,0.0,63.88152996316132,0.0681575409980723 +20,313.78535415033616,1.0447154955064355,0.0,64.09835072429807,0.0683888749990728 +21,316.3211247316838,1.053158078260359,0.0,64.61634402745813,0.0689415410015499 +22,309.1298114208343,1.0292153532430313,0.0,63.14734199574985,0.0673742090002633 +23,315.67532833161897,1.051007966736139,0.0,64.48442428168181,0.0688007909993757 +24,311.50384610922924,1.0371194532688333,0.0,63.6322967779781,0.067891624996264 +25,315.9911560337564,1.0520594820155136,0.0,64.54893983204862,0.0688696249999338 +26,283.9395447763309,0.9453469968925204,0.0,58.00161251901851,0.061884041999292 +27,321.9576035285465,1.0719241444941403,0.0,65.76773299444693,0.0701700000063283 +28,314.52425073348616,1.0471755743462647,0.0,64.24928846472889,0.0685499159953906 +29,312.4016155467119,1.040108482649347,0.0,63.81568819351799,0.0680872920056572 +0,318.0434962832716,0.1047574098429748,0.0,66.0670064743028,0.0704760419976082 +1,300.3091747708265,0.0989160654712867,0.0,62.38306529055815,0.0665462499964633 +2,311.3660715806597,0.1025579945917851,0.0,64.67990858921917,0.0689963750046445 +3,307.96812656956257,0.1014387768674448,0.0,63.97405527773522,0.0682434159971308 +4,307.9854286365557,0.1014444758354926,0.0,63.97764942691737,0.0682472500047879 +5,303.54277752976253,0.0999811520190258,0.0,63.05477987333232,0.0672627919993829 +6,295.5978232288647,0.097364236900153,0.0,61.40437873836319,0.0655022499995539 +7,309.92668146656416,0.1020838871760751,0.0,64.3809048457114,0.0686774170026183 +8,281.20051954266887,0.0926220420101017,0.0,58.41363449437083,0.0623119160009082 +9,299.98387491674634,0.0988089179567675,0.0,62.31549092473475,0.0664741660002619 +10,305.7382448097462,0.1007042967094025,0.0,63.51084312472989,0.0677492910035653 +11,294.734003229727,0.0970797112087374,0.0,61.224937868977115,0.0653108339975006 +12,298.89347681440523,0.0984497617965761,0.0,62.08898310637403,0.0662325419980334 +13,308.355851863169,0.1015664861209384,0.0,64.05459724693849,0.0683293330002925 +14,310.24746403189397,0.1021895467825737,0.0,64.44754083754319,0.0687485000016749 +15,311.1235091390795,0.1024780991894201,0.0,64.62952122212762,0.0689426249955431 +16,308.5540400267205,0.1016317654896971,0.0,64.09576676883565,0.0683732500037876 +17,305.98663773748234,0.100786112561753,0.0,63.562441655612275,0.0678043330044602 +18,292.8154993760287,0.0964477929433559,0.0,60.82640808294316,0.064885708001384 +19,275.3126478356244,0.0906826903279395,0.0,57.190550033487185,0.0610072080016834 +20,306.57198705890426,0.1009789153685455,0.0,63.68403595909606,0.0679340420028893 +21,299.9385619885642,0.0987939927498564,0.0,62.3060780942428,0.0664641249968553 +22,306.6251973620329,0.1009964418188514,0.0,63.69508930708896,0.0679458330050692 +23,306.3495426676122,0.1009056464649579,0.0,63.637827703900115,0.067884750002122 +24,304.5282532805252,0.1003057487748765,0.0,63.25949222735547,0.0674811659991974 +25,312.89270739925354,0.1030608390643127,0.0,64.99703583655992,0.069334665997303 +26,306.72541736758814,0.1010294523608656,0.0,63.715907955585934,0.0679680410030414 +27,306.35518366378886,0.1009075045005892,0.0,63.63899950503827,0.0678860000043641 +28,303.16651925294775,0.0998572197802858,0.0,62.97661994143359,0.0671794160007266 +29,307.1612805694235,0.1011730173153568,0.0,63.80644958688507,0.0680646250038989 +0,376.1194842106595,0.1028491890102979,1.4741717091476034,69.90316546399914,0.070418499999505 +1,375.3772813659091,0.1026462349920451,1.471262701552647,69.76522438292668,0.0702795420002075 +2,372.25223442040107,0.1017916965874763,1.459014317753828,69.18442311395476,0.0696944589944905 +3,385.4868428198003,0.1054106761880777,1.510886358695781,71.64412291583018,0.0721722919988678 +4,376.4646594225691,0.1029435765443175,1.4755245971352176,69.96731752462112,0.0704831249968265 +5,358.7098339166928,0.0980885517956502,1.4059359090709862,66.66751903711025,0.0671589999983552 +6,348.4707482819762,0.0952886924479016,1.3658045917532566,64.76454796709048,0.0652419999969424 +7,377.0809007160486,0.1031120866054275,1.4779399080111284,70.0818481961556,0.0705985000022337 +8,372.1874670252756,0.1017739860610543,1.4587604668751115,69.17238585949659,0.069682332999946 +9,344.4984530925867,0.0942024755517054,1.3502354829077776,64.02628254997578,0.0644982919984613 +10,365.7985019329385,0.1000269351744431,1.4337194041670178,67.98497360689649,0.0684861670015379 +11,352.5520948030448,0.0964047292324432,1.3818011189983526,65.52308096831723,0.0660061249946011 +12,327.2959987393395,0.089498495690276,1.282811771560623,60.82914423749095,0.0612775839981623 +13,350.5745145526551,0.0958639635090662,1.3740501436299488,65.155540531662,0.0656358750056824 +14,348.36548389342033,0.0952599080922669,1.36539201598916,64.74498420004412,0.0652222920034546 +15,370.7199715553666,0.101372702093346,1.4530087300046275,68.89964652277756,0.0694075829960638 +16,393.78017104004334,0.1076784717090629,1.5433914278299028,73.1854679382598,0.0737250000020139 +17,402.0710529521565,0.1099455982915385,1.5758869088453855,74.72635830548236,0.0752772499981802 +18,373.83523342380454,0.1022245647863835,1.4652187619381638,69.478629199812,0.0699908340029651 +19,367.5913620968913,0.1005171895260845,1.4407463832072125,68.3181831478955,0.0688218330033123 +20,365.9671931593512,0.1000730634835524,1.4343805765975846,68.01632548098779,0.0685177500054123 +21,333.9660446668918,0.0913224076201508,1.3089545092221626,62.06879637916255,0.0625263750043814 +22,366.693153401072,0.1002715759915428,1.437225922545447,68.15124781558525,0.068653667003673 +23,363.69117314929224,0.0994506899505857,1.4254598892917296,67.5933189364148,0.0680916250057634 +24,364.9750647376018,0.0998017677707415,1.430492004713962,67.83193482818066,0.068332000002556 +25,369.7136034968617,0.1010975125777582,1.4490643469478677,68.71260938201632,0.0692191669950261 +26,376.5937403004009,0.102978873475636,1.4760305198174497,69.99130767227395,0.0705072920027305 +27,364.0695065079672,0.0995541445195425,1.4269427381134436,67.6636335584491,0.0681624579956405 +28,367.74291871241866,0.1005586324070053,1.4413403978337438,68.34635049262799,0.0688502080010948 +29,358.35531160656274,0.0979916083146192,1.4045463858428764,66.6016297845029,0.0670926250022603 +0,303.23390333758607,0.0,0.0,75.59622229023033,0.0861223750034696 +1,299.87754304590914,0.0,0.0,74.75948155674698,0.0851691249990835 +2,303.496507488735,0.0,0.0,75.66168951393483,0.0861969580000732 +3,250.8244775680612,0.0,0.0,62.5305506850156,0.0712374159993487 +4,280.98976423022,0.0,0.0,70.05075766339677,0.0798047499993117 +5,302.6632146728885,0.0,0.0,75.453949586947,0.085960291995434 +6,302.2430473239825,0.0,0.0,75.3492018527478,0.0858409590000519 +7,288.1644636376654,0.0,0.0,71.83941046673124,0.0818424580065766 +8,299.15970621388135,0.0,0.0,74.58052481040428,0.0849652499964577 +9,303.53919918635705,0.0,0.0,75.67233255558638,0.0862090829978114 +10,304.1503789285395,0.0,0.0,75.82469968584712,0.0863826659988262 +11,302.7150010544735,0.0,0.0,75.46685993361608,0.0859750000017811 +12,304.3796818047821,0.0,0.0,75.8818649005986,0.086447790999955 +13,291.44937998960955,0.0,0.0,72.6583402236388,0.0827754170022672 +14,299.5502411494769,0.0,0.0,74.6778851829696,0.0850761670008068 +15,299.0150508701026,0.0,0.0,74.54446222834005,0.084924165996199 +16,301.69890677153836,0.0,0.0,75.21354759474123,0.0856864160014083 +17,293.7211350318159,0.0,0.0,73.22468883198815,0.0834206250001443 +18,301.99774870612936,0.0,0.0,75.28804889907536,0.0857712910001282 +19,290.7437186585,0.0,0.0,72.4824188300841,0.0825750000003608 +20,300.40744832723414,0.0,0.0,74.89158696118525,0.0853196249954635 +21,302.49420835289175,0.0,0.0,75.41181630569348,0.0859122920010122 +22,302.62287146478,0.0,0.0,75.4438920238101,0.0859488339992822 +23,297.91387246601477,0.0,0.0,74.26993841520314,0.0846114169980865 +24,300.38544230519113,0.0,0.0,74.88610085915057,0.0853133749988046 +25,302.0932584124877,0.0,0.0,75.31185947207949,0.0857984169997507 +26,298.48529699349257,0.0,0.0,74.4123945691023,0.0847737090007285 +27,301.0101214300942,0.0,0.0,75.04183338597713,0.0854907920002006 +28,298.8282953574442,0.0,0.0,74.49790407275962,0.0848711250000633 +29,301.1461152201156,0.0,0.0,75.07573664239862,0.0855294160064659 +0,307.4320612663604,0.0,0.0,63.35199239749272,0.0671285829957923 +1,319.09229461987655,0.0,0.0,65.75479648930452,0.0696746250032447 +2,315.8303683771894,0.0,0.0,65.08261699808075,0.0689623750004102 +3,320.11071629586803,0.0,0.0,65.96466088018519,0.0698970000012195 +4,312.61748207640557,0.0,0.0,64.42054308274855,0.0682608329952927 +5,307.04469238953703,0.0,0.0,63.27216796396276,0.0670440000030794 +6,315.62218214509465,0.0,0.0,65.03971642180838,0.0689169170000241 +7,310.95312800205056,0.0,0.0,64.07757252128222,0.0678974169932189 +8,313.5021384751786,0.0,0.0,64.60284269463226,0.0684540000002016 +9,312.90657876781614,0.0,0.0,64.48011673723646,0.0683239580030203 +10,312.5113876374554,0.0,0.0,64.39868038546805,0.0682376670010853 +11,300.6441130311362,0.0,0.0,61.95321166128344,0.0656464170024264 +12,314.46636338728104,0.0,0.0,64.80153885224628,0.068664540995087 +13,314.6789461985706,0.0,0.0,64.84534542397851,0.0687109589998726 +14,314.42801259563953,0.0,0.0,64.7936359710357,0.0686561670008814 +15,319.99393270665615,0.0,0.0,65.9405954882237,0.0698715000035008 +16,311.43609920090114,0.0,0.0,64.17709755973057,0.0680028749993653 +17,315.12031493923246,0.0,0.0,64.93629751592275,0.0688073330020415 +18,320.1736878576916,0.0,0.0,65.9776373208644,0.0699107500040554 +19,315.997721590775,0.0,0.0,65.1171031849511,0.0689989170059561 +20,315.1537104407051,0.0,0.0,64.94317926907071,0.0688146249958663 +21,396.2162204473379,0.0,0.0,81.64759030709996,0.0865148329976364 +22,290.1811039602498,0.0,0.0,59.79711750381885,0.0633617920029792 +23,316.5843095668302,0.0,0.0,65.23798035321532,0.0691270000024815 +24,308.9101752836846,0.0,0.0,63.65658479297168,0.0674513330013724 +25,324.2240911390176,0.0,0.0,66.8122969098102,0.0707951660006074 +26,319.4119244478356,0.0,0.0,65.82066205435802,0.069744417000038 +27,316.58221200981916,0.0,0.0,65.237548113275,0.0691265419955016 +28,311.29393463203826,0.0,0.0,64.14780195325189,0.0679718329993193 +29,318.88009651176566,0.0,0.0,65.71106919269002,0.0696282909993897 +0,295.56381491985087,0.0,0.0,64.40996834269353,0.0689168749959208 +1,292.9117899350054,0.0,0.0,63.832032760950376,0.068298499994853 +2,298.182066414368,0.0,0.0,64.98054392523157,0.069527375002508 +3,266.1084859341793,0.0,0.0,57.99099311054205,0.0620487499982118 +4,292.7641857549563,0.0,0.0,63.7998665075584,0.0682640829982119 +5,293.3478092458931,0.0,0.0,63.92705112447601,0.0684001670015277 +6,294.64942974187426,0.0,0.0,64.21070335356598,0.0687036669987719 +7,296.68959874211004,0.0,0.0,64.65530182633425,0.0691793750011129 +8,294.8887006250224,0.0,0.0,64.2628458325534,0.0687594580012955 +9,295.15227983001137,0.0,0.0,64.32028563875475,0.0688209169966285 +10,290.6847022677367,0.0,0.0,63.34670052843714,0.0677792080023209 +11,294.45357766054786,0.0,0.0,64.16802280296643,0.0686579999965033 +12,292.47201807649003,0.0,0.0,63.73619663333556,0.0681959580033435 +13,294.7008941303778,0.0,0.0,64.22191859530722,0.0687156669955584 +14,272.00670099030486,0.0,0.0,59.276346140467126,0.0634240419967682 +15,298.39560505645784,0.0,0.0,65.02707877314818,0.0695771659957245 +16,301.81066704160895,0.0,0.0,65.77129718977528,0.0703734590060776 +17,295.9329991160775,0.0,0.0,64.49042183933697,0.0690029580000555 +18,295.25288419120227,0.0,0.0,64.34220958002342,0.0688443750041187 +19,301.8601629004876,0.0,0.0,65.78208344486653,0.0703849999990779 +20,286.4547915575912,0.0,0.0,62.42490834285863,0.0667929159972118 +21,290.8757295246105,0.0,0.0,63.38832964183578,0.0678237499960232 +22,288.97083044730425,0.0,0.0,62.97320951186117,0.0673795830007293 +23,296.38670929393584,0.0,0.0,64.58929543859858,0.0691087500017602 +24,295.5164591211883,0.0,0.0,64.399648454606,0.0689058330026455 +25,268.26248562413593,0.0,0.0,58.4603978374972,0.0625510000027134 +26,293.4117794845162,0.0,0.0,63.94099167076958,0.0684150829983991 +27,293.46628031085334,0.0,0.0,63.952868620253305,0.0684277910040691 +28,292.03207031876735,0.0,0.0,63.64032217334782,0.0680933749972609 +29,296.7944917425345,0.0,0.0,64.67816035804776,0.0692038329943898 +0,315.8166415430196,0.0,0.0,71.55382505573768,0.0880411670004832 +1,286.0633453360258,0.0,0.0,64.81269152577208,0.0797467500015045 +2,313.0570777710135,0.0,0.0,70.92859725771052,0.0872718750033527 +3,308.9532305134665,0.0,0.0,69.99879834880156,0.0861278330048662 +4,308.43414159245566,0.0,0.0,69.88118960703004,0.0859831250054412 +5,308.23565035456966,0.0,0.0,69.83621791952999,0.0859277909985394 +6,309.07130861685545,0.0,0.0,70.02555102374461,0.0861607499973615 +7,310.18392336137737,0.0,0.0,70.27763349918031,0.0864709169982234 +8,309.104489721779,0.0,0.0,70.03306878773974,0.086169999995036 +9,311.85239528042814,0.0,0.0,70.65565521210488,0.0869360419965232 +10,309.7618344994348,0.0,0.0,70.18200183000086,0.086353250000684 +11,307.98514910300486,0.0,0.0,69.7794624469775,0.0858579580017249 +12,311.25931787985377,0.0,0.0,70.52128307655853,0.0867707080033142 +13,307.8440558444205,0.0,0.0,69.7474952830815,0.0858186250043218 +14,307.8869545283353,0.0,0.0,69.75721473582777,0.0858305840010871 +15,308.2782477408661,0.0,0.0,69.84586910799173,0.08593966600165 +16,306.82904378030355,0.0,0.0,69.5175264147203,0.0855356669999309 +17,307.12557891795,0.0,0.0,69.58471167531444,0.0856183330033673 +18,310.8970159762155,0.0,0.0,70.43919719627168,0.0866697079982259 +19,309.5836716636141,0.0,0.0,70.1416359001896,0.0863035830043372 +20,311.40639092002573,0.0,0.0,70.5546050653412,0.0868117080026422 +21,317.1811027296167,0.0,0.0,71.8629677803392,0.088421542001015 +22,311.9760012189771,0.0,0.0,70.68366031550781,0.0869705000004614 +23,259.64086611242755,0.0,0.0,58.82621327476237,0.0723808749971794 +24,309.0541226205383,0.0,0.0,70.02165723344947,0.0861559590048273 +25,309.0817723407111,0.0,0.0,70.02792176476237,0.0861636670015286 +26,311.56422898167176,0.0,0.0,70.59036605942617,0.0868557089997921 +27,291.27606954069114,0.0,0.0,65.99372604625228,0.081199917003687 +28,310.2794311568168,0.0,0.0,70.29927247315251,0.0864975419972324 +29,254.3169403535346,0.0,0.0,57.619984082721295,0.0708967079990543 +0,305.721962186582,0.0,0.0,63.66560385029554,0.0687287079999805 +1,307.5698377636455,0.0,0.0,64.05041792649908,0.0691441250019124 +2,304.5750584918347,0.0,0.0,63.426764887723195,0.0684708750050049 +3,302.04790068450137,0.0,0.0,62.90049249735214,0.0679027500009397 +4,302.7877946617043,0.0,0.0,63.05457301059663,0.0680690840017632 +5,302.41839922506983,0.0,0.0,62.97764761287684,0.0679860409945831 +6,304.01921499319684,0.0,0.0,63.311012287766246,0.068345917003171 +7,303.2455899794055,0.0,0.0,63.14990739590814,0.068171999999322 +8,306.7875031062147,0.0,0.0,63.88749927969296,0.0689682500014896 +9,304.17471662540027,0.0,0.0,63.34339499669278,0.0683808749963645 +10,304.8949627430861,0.0,0.0,63.49338390712414,0.0685427920034271 +11,310.9972086145361,0.0,0.0,64.76415675402785,0.0699146249971818 +12,303.45410134996797,0.0,0.0,63.19332921036192,0.0682188749997294 +13,303.2832176918836,0.0,0.0,63.15774324459655,0.0681804590058163 +14,305.3787091124342,0.0,0.0,63.594122514500135,0.0686515420020441 +15,299.556141985043,0.0,0.0,62.381591856012456,0.0673425829954794 +16,310.09439777626403,0.0,0.0,64.57614933457363,0.0697116660012397 +17,309.0629659837681,0.0,0.0,64.36135701991627,0.069479792000493 +18,303.34771274786874,0.0,0.0,63.171174130147875,0.068194958003005 +19,302.234170867233,0.0,0.0,62.93928265680976,0.0679446250069304 +20,304.56560596920565,0.0,0.0,63.42479643064285,0.068468750003376 +21,307.0223302521347,0.0,0.0,63.93640126873722,0.0690210409957217 +22,305.56497926280053,0.0,0.0,63.63291266721779,0.0686934170007589 +23,307.9737025847265,0.0,0.0,64.13452146137145,0.0692349169985391 +24,306.6599897546909,0.0,0.0,63.86094503914815,0.0689395839945063 +25,302.4908700108722,0.0,0.0,62.992739418210725,0.0680023329987307 +26,300.3927852296424,0.0,0.0,62.555820089384135,0.0675306669945712 +27,307.767415320001,0.0,0.0,64.09156280972131,0.0691885419946629 +28,302.781304689866,0.0,0.0,63.05322149507873,0.0680676250049145 +29,302.1294503364202,0.0,0.0,62.91747494701346,0.0679210830057854 +0,254.6307029336884,0.0803251428812897,0.0,57.08440154096989,0.0676555829995777 +1,263.7963996346027,0.0832165298531869,0.0,59.139213882331546,0.0700909160004812 +2,253.7492302434404,0.0800470757865742,0.0,56.886788525658766,0.0674213749953196 +3,315.84115707071624,0.0996344344071659,0.0,70.8068713853593,0.0839192499988712 +4,333.3536481717153,0.105158879549437,0.0,74.73291039979989,0.0885723329993197 +5,326.45130554812584,0.1029814844000397,0.0,73.18550824696155,0.0867383750010049 +6,326.90936964191224,0.1031259841141679,0.0,73.28819937713531,0.0868600829999195 +7,326.48454970016655,0.1029919715142481,0.0,73.192961089459,0.0867472079989966 +8,335.22370649608524,0.1057488033110679,0.0,75.15214955306558,0.0890692090033553 +9,330.8312320406672,0.1043631646815984,0.0,74.16742236705599,0.0879021250002551 +10,325.4089376060097,0.1026526617053658,0.0,72.95182491861333,0.0864614169986452 +11,322.90000279495933,0.101861199619861,0.0,72.38935919651455,0.0857947909971699 +12,324.9560484905712,0.1025097944765209,0.0,72.85029394131418,0.0863410839956486 +13,323.1647140635819,0.1019447047519185,0.0,72.44870351036347,0.0858651249945978 +14,321.04641790612,0.1012764725255899,0.0,71.97381314151923,0.0853022919982322 +15,322.4284536295638,0.1017124459399255,0.0,72.28364491464039,0.0856695000038598 +16,321.7960054059207,0.1015129354592809,0.0,72.14185946639569,0.0855014580010902 +17,303.00058629844494,0.0955837811667018,0.0,67.92820714913613,0.0805074999952921 +18,319.4832536685931,0.1007833607787359,0.0,71.62337506008836,0.0848869580004247 +19,324.52934299437413,0.1023751870644713,0.0,72.7546329404843,0.0862277080013882 +20,335.0232930833541,0.1056855814143072,0.0,75.10721985843438,0.0890159589980612 +21,328.476451821486,0.1036203318048851,0.0,73.63951580267174,0.0872764579980867 +22,329.2296486453677,0.1038579333266144,0.0,73.80837128411399,0.087476583001262 +23,327.0558388796751,0.1031721889210331,0.0,73.32103559321422,0.086898999994446 +24,324.61872924541194,0.1024033846200037,0.0,72.77467200328267,0.0862514580003335 +25,318.41955724016697,0.1004478098549422,0.0,71.38491020357897,0.084604333002062 +26,300.9517592509948,0.0949374634861182,0.0,67.46889071746803,0.0799631249974481 +27,324.7123495870697,0.1024329178508106,0.0,72.79566028597608,0.0862763330005691 +28,323.6961727674179,0.1021123573398794,0.0,72.56784861620767,0.0860063340005581 +29,321.83113513979686,0.1015240173942576,0.0,72.14973502818579,0.0855107919996953 +0,289.28287234917417,0.0,0.0,62.42629931011725,0.0676834159967256 +1,294.6927660431574,0.0,0.0,63.5937367053353,0.0689491669982089 +2,277.7601904303348,0.0,0.0,59.93974217495268,0.0649874579976312 +3,262.90320869288206,0.0,0.0,56.733654025815085,0.0615113749954616 +4,293.7341289609959,0.0,0.0,63.38686595306845,0.0687248750036815 +5,292.09271527384254,0.0,0.0,63.03265423879081,0.0683408339973539 +6,293.5832888779959,0.0,0.0,63.35431515566778,0.0686895830003777 +7,293.31295470960566,0.0,0.0,63.29597792480224,0.0686263330062502 +8,291.9546931410586,0.0,0.0,63.002869513194646,0.0683085410055355 +9,294.338014940254,0.0,0.0,63.517182575633115,0.0688661660024081 +10,291.76485654961874,0.0,0.0,62.96190339660087,0.0682641250023152 +11,291.4241799062767,0.0,0.0,62.88838648931725,0.0681844170030672 +12,289.7307595134493,0.0,0.0,62.52295189776321,0.0677882080053677 +13,295.45675398335953,0.0,0.0,63.75860280831983,0.0691279169986955 +14,268.6430896357433,0.0,0.0,57.97230159189356,0.0628543330021784 +15,296.1544940115595,0.0,0.0,63.90917282820156,0.0692911669975728 +16,296.023421474765,0.0,0.0,63.88088780272865,0.0692605000003823 +17,290.78556292650717,0.0,0.0,62.75057503024304,0.0680350000038743 +18,295.5148085401528,0.0,0.0,63.771130792120815,0.0691415000037523 +19,288.2072371897795,0.0,0.0,62.19418075479606,0.0674317500015604 +20,291.18376409458483,0.0,0.0,62.83650554214024,0.0681281669967575 +21,291.5402932180753,0.0,0.0,62.91344336287967,0.0682115839954349 +22,294.4389938216699,0.0,0.0,63.53897348853465,0.0688897919972078 +23,290.7937520213083,0.0,0.0,62.75234221016276,0.0680369160036207 +24,292.5845867335617,0.0,0.0,63.13879849377964,0.0684559169967542 +25,273.97462270495254,0.0,0.0,59.12282902014209,0.0641017499947338 +26,299.1048380666353,0.0,0.0,64.54584744206421,0.0699814580002566 +27,294.26660397366516,0.0,0.0,63.501772322208495,0.0688494580026599 +28,292.6253698145022,0.0,0.0,63.14759934948502,0.0684654590004356 +29,290.1271784005321,0.0,0.0,62.60849779924106,0.0678809579985681 +0,300.6962469621724,0.0,0.0,63.339490454251155,0.0683781249972526 +1,297.817315883756,0.0,0.0,62.733064436627,0.0677234579998184 +2,299.81856627760055,0.0,0.0,63.15461336348616,0.0681785409979056 +3,293.4782177778501,0.0,0.0,61.81906479135154,0.0667367499991087 +4,300.9928969475883,0.0,0.0,63.40197762896428,0.0684455830050865 +5,302.9091294778741,0.0,0.0,63.805618157525416,0.0688813329979893 +6,301.93397271938517,0.0,0.0,63.60020843652056,0.0686595830047736 +7,298.40897111216174,0.0,0.0,62.85769233295232,0.0678580000021611 +8,301.1378313788484,0.0,0.0,63.432507019064865,0.0684785409976029 +9,300.16524277859793,0.0,0.0,63.227638262025714,0.0682573750018491 +10,302.53570709857513,0.0,0.0,63.7269594330885,0.0687964169992483 +11,300.62625114769776,0.0,0.0,63.32474634198656,0.0683622079959604 +12,301.35917766867016,0.0,0.0,63.47913201473039,0.0685288749955361 +13,299.7551711903755,0.0,0.0,63.14125964669488,0.0681641249975655 +14,304.2527658133512,0.0,0.0,64.0886454373958,0.0691868750000139 +15,303.4795313282674,0.0,0.0,63.92576918342971,0.0690110419964185 +16,297.4405953485831,0.0,0.0,62.6537109795002,0.0676377920026425 +17,306.33775437514066,0.0,0.0,64.52783320392388,0.0696610000013606 +18,322.565634223188,0.0,0.0,67.94611876988051,0.0733512090009753 +19,303.6565283499523,0.0,0.0,63.963052326397744,0.0690512910005054 +20,304.6771294210259,0.0,0.0,64.17803456329608,0.0692833749999408 +21,300.6194745682893,0.0,0.0,63.32331890452737,0.0683606670063454 +22,297.64673049065647,0.0,0.0,62.697131856865795,0.067684666995774 +23,301.97648382691904,0.0,0.0,63.60916309397653,0.0686692500021308 +24,297.5443027834249,0.0,0.0,62.67555620086746,0.0676613750038086 +25,292.8490031072213,0.0,0.0,61.686525270068515,0.0665936670047813 +26,305.28948829746935,0.0,0.0,64.30702353339768,0.0694226249979692 +27,299.9959370811122,0.0,0.0,63.19197524089363,0.0682188749997294 +28,300.89853428238985,0.0,0.0,63.38210081576173,0.0684241249982733 +29,298.13540828185586,0.0,0.0,62.80006830054803,0.0677957919979235 +0,423.2993285357832,1.1257193189836718,10.88195341684216,73.34494332147462,0.0716147079947404 +1,398.6592292206605,1.0601916085650025,10.248518882795024,69.07556095804284,0.0674460419977549 +2,457.0903201348565,1.2155828493187455,11.750634210081207,79.1998979517675,0.0773315420010476 +3,514.3190563490106,1.36777655626399,13.221840043885235,89.11590331966148,0.0870136250014184 +4,513.1405930847361,1.3646425591752274,13.191544738693866,88.91171135549367,0.0868142500039539 +5,517.1547567068353,1.375317798265706,13.29473871656849,89.60724424085022,0.0874933750019408 +6,490.26978754538726,1.303820096438466,12.603594265571838,84.94889397564467,0.0829449170050793 +7,519.4725243133612,1.3814816534756962,13.354322650265065,90.00884311491652,0.0878855000046314 +8,518.1034381164648,1.3778407150727667,13.31912691237008,89.77162197435642,0.0876538750017061 +9,525.6111254703898,1.397806607115254,13.512130535447454,91.07247663281692,0.0889240420001442 +10,490.7094023236206,1.3049892049520084,12.614895647869416,85.02506589187317,0.0830192919966066 +11,500.35038752648165,1.330628374601622,12.862740954482344,86.69555640673644,0.0846503749999101 +12,505.79939488524866,1.3451194272434162,13.00282113001969,87.6397042211672,0.085572250005498 +13,488.42094043081113,1.298903285155243,12.556065089834012,84.62854480973004,0.0826321249987813 +14,503.4395128973858,1.338843573337746,12.94215454226488,87.23080820131315,0.0851729999994859 +15,515.2876866466897,1.3703525250065394,13.246741075063214,89.28373759081067,0.0871774999977788 +16,511.5217761021383,1.360337488440736,13.149929054927114,88.63121943917719,0.0865403749994584 +17,493.5559371722591,1.312559260123976,12.6880728478651,85.51828410192365,0.083500875000027 +18,507.3150213055262,1.3491500737071616,13.041784045835897,87.9023163407666,0.0858286670045345 +19,517.1131388371582,1.375207119989715,13.293668826567243,89.60003312548373,0.0874863339995499 +20,527.6244875195897,1.4031609282825774,13.56388897339825,91.421331250411,0.0892646670035901 +21,508.09031563969927,1.3512118861198958,13.061714899158993,88.03665134950398,0.0859598329989239 +22,512.7083667182519,1.3634930993530052,13.180433293745718,88.83681962707658,0.0867411250001168 +23,472.03525598715373,1.2553273087963857,12.134830651698394,81.78940235004144,0.0798599589979858 +24,510.89991397744865,1.3586837125891915,13.133942555028854,88.52346958177273,0.0864351670024916 +25,517.1355466298558,1.375266711119289,13.294244874153128,89.60391571677215,0.0874901249990216 +26,423.54044139290176,1.1263605328553132,10.88815181760136,73.38672087141926,0.0716554999962681 +27,420.70326336992974,1.1188153611610816,10.815215157890457,72.89512391564892,0.071175500001118 +28,459.11156121555587,1.2209581239281746,11.802595197972352,79.55011776670491,0.0776734999963082 +29,402.5174899448091,1.070452240562397,10.347704992103171,69.74408059664233,0.0680987910018302 +0,309.7762415538039,0.0,0.0,63.37230984127286,0.068120000003546 +1,311.42073409796063,0.0,0.0,63.70873102876365,0.0684816249995492 +2,315.468393615639,0.0,0.0,64.53677882158232,0.0693717079993803 +3,313.74090904811897,0.0,0.0,64.18337958505668,0.0689918330026557 +4,310.57698038804125,0.0,0.0,63.53612056236206,0.0682960830017691 +5,311.4457454166953,0.0,0.0,63.7138477059899,0.0684871250050491 +6,310.3746162984881,0.0,0.0,63.49472203638219,0.0682515830048942 +7,310.3448710223421,0.0,0.0,63.48863691233658,0.0682450419990345 +8,310.4030381748929,0.0,0.0,63.50053642662969,0.0682578329942771 +9,309.88272598227024,0.0,0.0,63.39409383658571,0.068143415999657 +10,314.95073715611716,0.0,0.0,64.43087952672482,0.0692578750022221 +11,311.97913169496366,0.0,0.0,63.82296492015055,0.068604416999733 +12,314.11153092259957,0.0,0.0,64.25919935788926,0.0690733329975046 +13,311.2255687180135,0.0,0.0,63.66880517497234,0.0684387080036685 +14,309.3334279703173,0.0,0.0,63.28172148797023,0.0680226250042324 +15,313.3998459687748,0.0,0.0,64.11360678701638,0.0689168330063694 +16,314.72354819575156,0.0,0.0,64.38440246600322,0.0692079159998684 +17,310.5500773260057,0.0,0.0,63.53061688275627,0.0682901670006685 +18,309.80466346329615,0.0,0.0,63.3781242382892,0.0681262500002048 +19,313.26815920758014,0.0,0.0,64.08666703789113,0.0688878750006551 +20,312.11271473244335,0.0,0.0,63.85029259898814,0.0686337919978541 +21,323.48735546048795,0.0,0.0,66.17725367558705,0.0711350830024457 +22,317.51420374814444,0.0,0.0,64.95529934124274,0.0698215829979744 +23,315.9167051463369,0.0,0.0,64.62849191451126,0.0694702920009149 +24,324.14466134752286,0.0,0.0,66.31172167779643,0.0712796250008978 +25,315.7636041712623,0.0,0.0,64.59717136397205,0.0694366249954328 +26,314.22105311215415,0.0,0.0,64.2816048015609,0.0690974169992841 +27,315.98150259875905,0.0,0.0,64.6417478188738,0.0694845410034759 +28,312.78100741484513,0.0,0.0,63.987008219015664,0.0687807499998598 +29,311.296246046372,0.0,0.0,63.68326395182696,0.0684542499948293 +0,303.6538667450133,0.9448720066976328,0.0,71.56530569246885,0.0874951669975416 +1,301.02465859896444,0.9366907666442364,0.0,70.9456525106468,0.0867375840025488 +2,299.1144244990058,0.9307467398263406,0.0,70.49544751647653,0.0861871669985703 +3,293.9572294015164,0.9146992271339104,0.0,69.27999701810545,0.0847011669975472 +4,300.39880553788765,0.9347433156071184,0.0,70.79815112653915,0.0865572499969857 +5,298.60714878159104,0.9291682628907408,0.0,70.37589250413203,0.0860410000022966 +6,277.2241095231678,0.8626312040020203,0.0,65.33632637719006,0.0798796669987496 +7,300.03454654918687,0.9336098601853228,0.0,70.71230237329574,0.0864522920019226 +8,298.0721123414342,0.92750340362092,0.0,70.24979482980672,0.0858868340001208 +9,246.35294882000863,0.7665701991633321,0.0,58.060594714407934,0.0709844160010106 +10,294.99838590497814,0.9179389673198582,0.0,69.52537733959667,0.0850011670045205 +11,300.2719892283634,0.934348704525275,0.0,70.76826299089583,0.0865207090027979 +12,298.57230126240773,0.92905982875245,0.0,70.36767962217631,0.0860309589988901 +13,298.00616894932057,0.927298209246474,0.0,70.23425325589035,0.0858678329968825 +14,300.45317822288536,0.9349125057068,0.0,70.81096571001504,0.0865729170036502 +15,226.2276855823378,0.7039469298977896,0.0,53.317461912628886,0.065185499996005 +16,300.4835452655799,0.9350069980604652,0.0,70.81812263087598,0.0865816669975174 +17,298.95347907171913,0.9302459300376188,0.0,70.45751581210853,0.0861407920019701 +18,298.72963041602566,0.9295493858744605,0.0,70.40475904123228,0.0860762919983244 +19,297.9947474777897,0.9272626693442806,0.0,70.23156143737236,0.085864542001218 +20,296.91974992417215,0.9239176268240922,0.0,69.97820543908402,0.0855547909959568 +21,299.44672694714785,0.9317807568944326,0.0,70.5737647351524,0.0862829170000623 +22,296.81231300431466,0.9235833180957124,0.0,69.95288464836042,0.0855238340009236 +23,295.87382497762053,0.9206630487951774,0.0,69.73170128837548,0.0852534170044236 +24,278.0441625481616,0.8651829421228953,0.0,65.52959691264151,0.0801159580005332 +25,247.35925777903583,0.7697015051324153,0.0,58.297762147992195,0.0712743749973014 +26,296.6898313446286,0.9232021950334184,0.0,69.92401810530892,0.0854885419976199 +27,288.13239272872465,0.8965742311485035,0.0,67.90719639624777,0.0830227920014294 +28,300.6481035323493,0.9355190498298296,0.0,70.85690581118524,0.0866290830017533 +29,243.94267503466153,0.759070211586477,0.0,57.492540099790574,0.0702899169991724 +0,349.87286782937815,1.2578057407759158,0.0,77.4970633832903,0.0854961669974727 +1,349.0334422306475,1.2547879750840858,0.0,77.31113007776142,0.0852910419998806 +2,347.9926444865531,1.2510462691735065,0.0,77.08059271359346,0.085036708995176 +3,352.4283146868622,1.2669926655795811,0.0,78.06309649216129,0.0861206249974202 +4,282.6333931548689,1.0160773730489314,0.0,62.60347685559545,0.0690652920020511 +5,283.17919474531,1.0180395497048138,0.0,62.72437225600627,0.0691986660021939 +6,276.21979273513165,0.9930202452498064,0.0,61.18286027184291,0.0674980420008068 +7,276.9739641940552,0.9957315191946784,0.0,61.349909731026955,0.0676823339963448 +8,278.64172948242276,1.0017271963301757,0.0,61.71932080614954,0.068089874999714 +9,280.05765275444236,1.0068174922170603,0.0,62.032948714018886,0.0684358750004321 +10,243.0414203648367,0.8737427845656892,0.0,53.83382962969247,0.0593904580018715 +11,281.27578463917416,1.0111967208412849,0.0,62.3027657034469,0.0687335420007002 +12,277.13901338079825,0.996324877050301,0.0,61.386468231163704,0.0677226659972802 +13,280.1060765077298,1.0069915773790588,0.0,62.04367460625814,0.0684477079994394 +14,279.5810759179054,1.0051041810802583,0.0,61.9273866407514,0.0683194170051137 +15,280.0491285791074,1.0067868474953414,0.0,62.031060603745225,0.0684337920029065 +16,281.2120148691721,1.0109674661886043,0.0,62.28864065871724,0.0687179589949664 +17,280.11255864456183,1.0070148808977637,0.0,62.045110403700924,0.0684492919972399 +18,276.3752946728037,0.993579280396256,0.0,61.21730405022093,0.0675360410023131 +19,280.94925472663203,1.0100228338774897,0.0,62.23043911954855,0.0686537500005215 +20,278.774560272846,1.002204727874084,0.0,61.74874291095162,0.0681223339997814 +21,267.5825543832899,0.9619690578548056,0.0,59.269706467828335,0.065387415997975 +22,297.9280571655849,1.071062248884742,0.0,65.99125468935024,0.0728027500008465 +23,275.80118690095316,0.9915153419841758,0.0,61.090138812573414,0.067395750003925 +24,277.3700585054987,0.997155492713726,0.0,61.437644873652154,0.0677791249981965 +25,277.16834263594376,0.996430316793953,0.0,61.392964679885495,0.0677298329974291 +26,278.3068472864164,1.000523282602216,0.0,61.645144186136534,0.0680080420061131 +27,278.4156319137255,1.0009143673113174,0.0,61.669240050471494,0.0680346250010188 +28,277.9544010343528,0.999256225451112,0.0,61.56707711650399,0.067921916997875 +29,276.82374129899574,0.9951914623992656,0.0,61.31663526395476,0.0676456250002957 +0,478.8738629620707,0.3431147812004327,14.220201487529048,87.79926012273296,0.0864906249989871 +1,478.90200611204955,0.3431349458648552,14.221037200843442,87.80442003630684,0.0864957080048043 +2,487.74552269105345,0.3494713561196944,14.483646203627334,89.42583701596179,0.0880929580016527 +3,399.3710335699146,0.2861507286146987,11.859357974809182,73.22279199996125,0.0721314170004916 +4,491.1808267997274,0.3519327634103611,14.585657861340524,90.05568379267353,0.0887134170043282 +5,483.7304803199704,0.3465945643563198,14.364419167211922,88.68969796806718,0.0873677909985417 +6,483.518014469227,0.3464423318384717,14.358109975083329,88.65074335822227,0.087329417001456 +7,485.3377441423682,0.3477461744511833,14.412147007810152,88.98438219567502,0.0876580830008606 +8,499.413915114863,0.3578317997001645,14.83014014312904,91.56518163438656,0.0902004160016076 +9,473.2155736942138,0.3390605973447913,14.052178089956351,86.76183952056161,0.0854686669990769 +10,391.64224025811114,0.2806130214412069,11.629850777507798,71.8057542643444,0.0707355000049574 +11,394.0454011504646,0.2823348945429649,11.70121285161399,72.2463624591609,0.071169540999108 +12,397.0732972059024,0.2845043925525931,11.791126491346358,72.80151289429132,0.0717164169982425 +13,394.9993326892937,0.2830183897940962,11.729539932577543,72.42126129953374,0.0713418329978594 +14,378.78252964338554,0.2713989942512912,11.24798053952574,69.44798708452487,0.0684128749999217 +15,384.479575923064,0.2754809476401223,11.417154829973958,70.49251360168908,0.0694418330022017 +16,390.4696084584311,0.2797728266957949,11.595029373059054,71.59075776449062,0.0705237079964717 +17,403.0395662041652,0.288779244951635,11.96829537410665,73.89540012484615,0.0727939999997033 +18,393.9042149535417,0.2822337341439276,11.697020315076117,72.22047663705172,0.0711440410013892 +19,387.7349368229936,0.2778134249985624,11.513823058273752,71.0893686412988,0.0700297920047887 +20,398.0775187183235,0.2852239207439624,11.820946937499777,72.98563216370505,0.0718977919968892 +21,391.24936055017025,0.2803315217698855,11.61818418001859,71.73372162622738,0.0706645410027704 +22,389.6303367203219,0.2791714855889576,11.57010712496458,71.43688125681884,0.0703721249956288 +23,388.1340397821256,0.2780993836509139,11.525674455754546,71.16254228311722,0.0701018750041839 +24,386.7157163168241,0.2770831499762293,11.483557215681506,70.90249937725069,0.0698457079997751 +25,393.89914332670446,0.2822301003057352,11.696869712671026,72.21954677823425,0.0711431250019813 +26,388.7795265014115,0.2785618771206674,11.54484224066766,71.28088922321079,0.0702184580004541 +27,378.82221127416574,0.2714274262771667,11.249158889042578,69.455262524035,0.0684200420000706 +28,392.96851579515817,0.281563302456526,11.6692346462538,72.0489206174866,0.0709750419991905 +29,375.2639478299834,0.2688779181967877,11.143495943044648,68.80287173413357,0.067777374999423 +0,454.3035083761031,1.3014348524909098,13.459576237603356,88.22358368464694,0.090134540994768 +1,444.8422739911043,1.2743314294505814,13.179269783528383,86.38625690170258,0.088257416995475 +2,455.5753429091931,1.3050782533395655,13.497256672696034,88.47056791059792,0.0903868749956018 +3,419.6566096594096,1.202182522959485,12.433098197975724,81.49532050377981,0.0832605410032556 +4,435.18530530497446,1.2466672899803264,12.893164341112325,84.51091944708739,0.0863414589985041 +5,434.93685971867296,1.245955572507318,12.88580368408884,84.46267249418028,0.0862921669977367 +6,438.8447567113363,1.2571504526973825,13.00158231342293,85.22156753022256,0.0870674999969196 +7,418.10714629014495,1.1977438039220134,12.387192498456614,81.19442207639754,0.0829531249983119 +8,430.42937583161984,1.2330430668376595,12.75226119124211,83.58734053088976,0.085397875001945 +9,448.2131743145597,1.2839879852207514,13.279138899783035,87.04086973496463,0.0889262089986004 +10,439.2591082362903,1.2583374378423693,13.01385823873819,85.30203262847219,0.087149708000652 +11,445.6432605229153,1.276626000744122,13.20300048138,86.5418046820226,0.088416334001522 +12,443.8860921648639,1.2715922730693427,13.15094113990136,86.20057093227965,0.0880677089953678 +13,431.57225975907176,1.236317065272878,12.786121227690554,83.80928316165615,0.0856246249968535 +14,426.859596067627,1.2228167848149134,12.646499906112131,82.89410625482151,0.0846896250004647 +15,460.8455878665688,1.3201758265306909,13.653397363856882,89.49402445113316,0.0914325000048847 +16,448.61450172342313,1.2851376604214158,13.291028961726749,87.11880561172545,0.0890058329969178 +17,446.24997941202497,1.278364057116996,13.220975643341562,86.6596266087732,0.0885367079972638 +18,440.1419993148403,1.2608666395751174,13.04001550929003,85.47348588277637,0.0873248749994672 +19,459.3093502042079,1.315774994931014,13.607883500207592,89.1956943932182,0.0911277080012951 +20,443.4385504379859,1.2703102085671665,13.137681893865697,86.11366045444791,0.0879789160026121 +21,442.1656725615023,1.2666638188720003,13.099970547807796,85.8664736161651,0.0877263750007841 +22,441.68348391262026,1.2652825019735825,13.085684823042577,85.77283487063022,0.0876307080034166 +23,435.0414455972906,1.2462551777381865,12.888902232923874,84.4829825750939,0.0863129170029424 +24,459.08064738870326,1.315119834208121,13.601107759047146,89.15128139263473,0.0910823329977574 +25,446.02715863284936,1.2777257465547136,13.214374168315857,86.616355871709,0.0884924999991199 +26,450.1188192756612,1.2894470510723803,13.33559713345909,87.410936935854,0.0893042919997242 +27,448.4937466626544,1.2847917356336875,13.287451371158928,87.09535555243103,0.0889818750001723 +28,435.6244398844741,1.2479252706830015,12.906174509958412,84.59619729682663,0.0864285839998046 +29,440.8499472673068,1.2628946849723075,13.060989768266232,85.61096601285958,0.0874653330029104 +0,310.5645000365186,0.0,0.0,62.906193325953055,0.0660357079977984 +1,288.3742824692979,0.0,0.0,58.41146802391626,0.0613173750025453 +2,321.0854574933501,0.0,0.0,65.037259122835,0.068272791999334 +3,321.1442400366122,0.0,0.0,65.04916578322343,0.0682852910031215 +4,320.22265380094257,0.0,0.0,64.86249447371847,0.0680893329990794 +5,319.2936180922495,0.0,0.0,64.67431424097813,0.0678917910045129 +6,321.08878720952856,0.0,0.0,65.03793357136217,0.0682735000009415 +7,320.00827793597637,0.0,0.0,64.81907170774105,0.0680437499977415 +8,320.43507321341815,0.0,0.0,64.90552095171516,0.0681344999975408 +9,317.3079830296693,0.0,0.0,64.2721152030753,0.0674695830020937 +10,320.68334814658476,0.0,0.0,64.95581012173277,0.0681872909990488 +11,325.38888014404125,0.0,0.0,65.90893614063914,0.0691878340003313 +12,295.5038000069898,0.0,0.0,59.85558288087539,0.0628333330023451 +13,298.2466145543028,0.0,0.0,60.41115192418272,0.0634165410010609 +14,342.3866146636323,0.0,0.0,69.35190136579169,0.0728020829992601 +15,299.69944448734907,0.0,0.0,60.70542896044151,0.0637254579996806 +16,292.9898605966174,0.0,0.0,59.34637349429057,0.0622987910028314 +17,323.37110492136594,0.0,0.0,65.50022697320047,0.0687587919965153 +18,316.76831626965384,0.0,0.0,64.16280334826533,0.0673548330014455 +19,317.739678797144,0.0,0.0,64.35955706266829,0.0675613749990589 +20,319.69611777139016,0.0,0.0,64.75584230560457,0.0679773750016465 +21,322.2084863736894,0.0,0.0,65.26473351816657,0.068511582998326 +22,322.89276972182176,0.0,0.0,65.40333809332657,0.0686570830002892 +23,295.41542632084173,0.0,0.0,59.83768240549876,0.0628145419977954 +24,322.6825089599613,0.0,0.0,65.36074885942217,0.068612374998338 +25,322.5780652279843,0.0,0.0,65.33959332620877,0.0685901670003659 +26,321.6707807541225,0.0,0.0,65.15581890090364,0.0683972499973606 +27,318.3269632325836,0.0,0.0,64.4785140852151,0.0676862500040442 +28,328.9750938995778,0.0,0.0,66.63533937020159,0.0699503750001895 +29,307.251251832783,0.0,0.0,62.235080458846376,0.0653312079957686 +0,297.4059709817293,0.9431835074740536,0.0,64.00173800716793,0.0684758749994216 +1,294.011382014694,0.9324180197543812,0.0,63.2712227690473,0.0676942920035799 +2,296.82434397453113,0.9413389547272478,0.0,63.87657192792039,0.0683419589986442 +3,295.5819955572358,0.937399011847616,0.0,63.609218661088235,0.0680559160027769 +4,296.9808780833277,0.941835381847681,0.0,63.91025805394978,0.0683780000035767 +5,289.32739877137334,0.9175633894663556,0.0,62.263229999502705,0.0666158339954563 +6,302.28069548595926,0.9586430483188196,0.0,65.05077827877705,0.0695982499964884 +7,274.08865489071906,0.8692357386952241,0.0,58.98385369717592,0.0631072079995647 +8,296.4859330936766,0.9402657295982494,0.0,63.80374593702406,0.0682640419981908 +9,296.35961479116827,0.939865127891348,0.0,63.776562249770045,0.0682349579947185 +10,294.26564294805104,0.9332243745096194,0.0,63.32593969886703,0.0677528340020217 +11,294.8192170865159,0.9349799613118638,0.0,63.44506880330504,0.0678802910042577 +12,298.78404079959876,0.9475538727362968,0.0,64.29829850710586,0.068793167003605 +13,298.6888503744389,0.9472519889550676,0.0,64.27781353623672,0.0687712500002817 +14,297.15551036552364,0.942389204919545,0.0,63.94783890525484,0.0684182080003665 +15,300.98587226643184,0.9545366885785584,0.0,64.77213243925932,0.0693001250037923 +16,299.0323297879458,0.9483412882616924,0.0,64.35173027490056,0.0688503339988528 +17,305.4248281977412,0.968614247314164,0.0,65.72739535346113,0.0703221669973572 +18,270.1974922131386,0.8568954334542849,0.0,58.14647584154076,0.0622112919954815 +19,305.92375154516304,0.970196516396485,0.0,65.83476361261862,0.0704370409948751 +20,294.97846999628473,0.935485010748213,0.0,63.47934001505731,0.0679169579962035 +21,294.30110968856326,0.9333368525631184,0.0,63.33357213821159,0.067760999998427 +22,296.6591147588,0.9408149522308754,0.0,63.841014615666545,0.0683039159994223 +23,297.9800016839759,0.9450039695493628,0.0,64.12526936227819,0.0686080419982317 +24,284.32545261547966,0.9017003820629098,0.0,61.18681163998317,0.0654641670043929 +25,296.21882492114406,0.9394186315315476,0.0,63.74626428249787,0.0682025420028367 +26,295.14442019120094,0.9360112997342424,0.0,63.51505248196644,0.0679551669963984 +27,296.4417755439799,0.9401256897985544,0.0,63.79424323633048,0.0682538749970262 +28,297.22988805085987,0.9426250838627336,0.0,63.963844976399784,0.0684353329997975 +29,271.09653932074855,0.8597466418598888,0.0,58.33995069763532,0.0624182920000748 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/mac_report.md new file mode 100644 index 000000000..0f16c88e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 521.44 ms | 78.82 ms | +| **Average Power** | 4.860 W | 4.414 W | +| **Total Energy** | 2258.08 J | 304.41 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.07% | 0.00e+00 | +6.228 | large | βœ… | +| `gpu_mj` | +80.99% | 2.11e-166 | +1.541 | large | βœ… | +| `ane_mj` | +86.38% | 1.05e-47 | +0.729 | medium | βœ… | +| `dram_mj` | +87.09% | 0.00e+00 | +20.546 | large | βœ… | +| `time_s` | +84.69% | 0.00e+00 | +75.359 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.228, large) +- **`gpu_mj`**: 81.0% lower energy (Cohen’s d = +1.541, large) +- **`ane_mj`**: 86.4% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.546, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +75.359, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..6bcc28fee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/with_smell.csv @@ -0,0 +1,892 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.9343348502491,0.9659333379641896,0.0,478.1370022922739,0.5167249579972122 +1,1749.9576772420037,0.9631941360465022,0.0,476.7810973430186,0.5152596249972703 +2,1765.8187969550952,0.9719242543216248,0.0,481.1025058892042,0.5199297919971286 +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453 +4,1751.8730274703044,0.9642483638900476,0.0,477.3029401255735,0.5158235830022022 +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217 +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765 +7,1753.9604561917197,0.9653973054501948,0.0,477.8716661978465,0.5164382080038195 +8,1755.9675055029504,0.966502005382356,0.0,478.4184926642661,0.517029165996064 +9,1753.8309770174317,0.9653260388229864,0.0,477.8363892173782,0.5164000840013614 +10,1754.0766355703215,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781 +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869 +12,1756.321002261384,0.96669657351921,0.0,478.51480389200896,0.5171332500030985 +13,1761.6994107051369,0.9696569030984088,0.0,479.9801670337124,0.5187168749980628 +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397 +15,1774.358559978593,0.976624624950258,0.0,483.42918935037767,0.5224442500039004 +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615 +17,1751.65354389843,0.9641275579459168,0.0,477.2431411832288,0.5157589579976047 +18,1750.447303023146,0.9634636309533716,0.0,476.914497321919,0.5154037909960607 +19,1744.4536070151348,0.9601646409702193,0.0,475.2814972802585,0.5136389999970561 +20,1753.692293957126,0.9652497062852384,0.0,477.798604611193,0.5163592499957304 +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802 +22,1758.8267386074654,0.968075755762536,0.0,479.19749910245525,0.5178710420004791 +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659 +24,1766.5958315849296,0.9723519419215564,0.0,481.3142112511703,0.5201585830000113 +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069 +26,1752.9806340260625,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014 +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911 +28,1751.2059468821633,0.9638811960898636,0.0,477.1211920644825,0.5156271669984562 +29,1757.8863946286374,0.967558181070272,0.0,478.9412996297846,0.5175941659981618 +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044 +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938 +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633 +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316 +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086 +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983 +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794 +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901 +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509 +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675 +10,2646.795163355197,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344 +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734 +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329 +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119 +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925 +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591 +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422 +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537 +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056 +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665 +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854 +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703 +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205 +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758 +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439 +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776 +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591 +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822 +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663 +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273 +0,1851.2929834808735,1.525707090391358,0.0,489.00607477143456,0.5257506659982027 +1,1815.007070744064,1.4958027614505225,0.0,479.4214050755753,0.5154457909957273 +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323 +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766 +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256 +5,1815.024824844166,1.4958173931466672,0.0,479.426094696764,0.5154508330015233 +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143 +7,1811.0336499636064,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081 +8,1817.0066970315177,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951 +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976 +10,1810.1798942357495,1.4918245378570545,0.0,478.1463402113843,0.5140749159982079 +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977 +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256 +13,1812.1079196707988,1.4934134825043668,0.0,478.6556146257886,0.5146224579948466 +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482 +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739 +16,1814.2052567911392,1.495141962082693,0.0,479.20961153597057,0.5152180829973076 +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969 +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826 +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299 +20,1817.835656233042,1.4981338851434334,0.0,480.1685561205276,0.5162490840011742 +21,1813.5350490943129,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173 +22,1814.531999481375,1.495411240713182,0.0,479.2959183290272,0.5153108750018873 +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478 +24,1821.465316194058,1.5011251987753895,0.0,481.1273053763877,0.5172798749990761 +25,1816.57387709804,1.4970940144206697,0.0,479.83526599976256,0.5158907500008354 +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959 +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901 +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062 +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325 +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145 +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091 +2,1779.3928443092848,1.2935973032110897,0.0,478.6310021881031,0.5164371669961838 +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093 +4,1773.9815157607254,1.289663332115503,0.0,477.17543288273623,0.5148666250024689 +5,1777.9932479026747,1.292579813372932,0.0,478.2545309479849,0.5160309589991812 +6,1778.2917123371087,1.2927967934449398,0.0,478.3348135746278,0.5161175829998683 +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995 +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622 +9,1754.4484513303544,1.275463028033475,0.0,471.9213203723859,0.5091975000032107 +10,1775.5038586790918,1.290770057198758,0.0,477.5849211635405,0.5153084579942515 +11,1786.1638599055125,1.2985197505184911,0.0,480.45230769184184,0.5184023340043495 +12,1780.7071642069795,1.2945527980477989,0.0,478.9845352776855,0.5168186250011786 +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725 +14,1780.113098568184,1.2941209194377807,0.0,478.8247401919788,0.5166462080014753 +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305 +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493 +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456 +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645 +19,1790.2618712334158,1.301498955711576,0.0,481.5546136132831,0.5195917090022704 +20,1815.5910112672468,1.3199129373937035,0.0,488.3677868356704,0.5269430419939454 +21,1782.178110375644,1.2956221583091028,0.0,479.380198574368,0.5172455409992835 +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016 +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714 +24,1787.1828714348917,1.299260559705491,0.0,480.72640709103166,0.5186980840007891 +25,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483 +26,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777 +27,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738 +28,1783.093470454418,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704 +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292 +1,2715.9020526639206,4.5839715944040265,91.47719784715092,550.9866445126663,0.5387826250007492 +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223 +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655 +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857 +5,2719.8013326503037,4.59055290269483,91.60853366113064,551.7777080908264,0.5395561670011375 +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514 +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546 +8,2686.408260218842,4.5341911884255115,90.48378592196204,545.0031129205282,0.532931624999037 +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732 +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318 +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728 +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426 +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253 +14,2678.044504222127,4.520074618988164,90.2020773230432,543.3063220338199,0.5312724169998546 +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908 +16,2692.3906558823523,4.544288434664978,90.68528538000552,546.2167870696205,0.534118417002901 +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387 +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994 +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183 +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407 +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541 +22,2669.225814940643,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802 +23,2704.503515961487,4.5647328415151005,91.09327155788225,548.6741747077011,0.5365213749973918 +24,2722.9180265552013,4.595813341418859,91.71351035743224,552.4100050895154,0.5401744590053568 +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108 +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303 +27,2689.5938418367864,4.5395678976606595,90.59108289890465,545.6493854636676,0.5335635829978855 +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969 +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076 +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069 +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925 +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788 +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137 +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639 +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815 +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394 +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472 +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863 +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402 +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608 +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669 +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245 +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812 +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655 +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166 +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059 +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509 +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761 +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521 +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396 +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608 +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393 +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749 +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709 +25,2647.220924751434,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588 +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705 +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554 +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974 +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549 +0,1786.9876176050948,0.9744578121988632,0.0,485.98563233904,0.5244097500035423 +1,1782.494248517345,0.9720075441793689,0.0,484.7636245333176,0.5230911249964265 +2,1789.6608931992605,0.9759155695225464,0.0,486.71265110360656,0.5251942500035511 +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507 +4,1774.29452682005,0.9675361741558348,0.0,482.53364437295994,0.5206848329980858 +5,1774.592693303347,0.9676987665857556,0.0,482.61473314240624,0.5207723329949658 +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435 +7,1782.7985214602406,0.9721734665077184,0.0,484.84637400348737,0.5231804169961833 +8,1756.4093657710655,0.9577832610774696,0.0,477.6696312056359,0.515436249996128 +9,1768.703196283028,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765 +10,1768.6684113239016,0.9644682109849976,0.0,481.0035770853799,0.5190337919993908 +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654 +12,1777.5417030532524,0.9693068838221228,0.0,483.4167400248056,0.5216377499964437 +13,1800.5370152626765,0.9818464008314552,0.0,489.6704998353564,0.5283859589981148 +14,1773.0453523522408,0.9668549899064512,0.0,482.193921345414,0.5203182500044932 +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211 +16,1769.166632213147,0.9647398945898208,0.0,481.1390722569855,0.5191800000029616 +17,1763.204154234821,0.96148851042308,0.0,479.517528491345,0.5174302500017802 +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578 +19,1767.0888376996136,0.9636068575861454,0.0,480.5739993540834,0.5185702500020852 +20,1767.2573750274971,0.9636987622609094,0.0,480.619834433777,0.5186197090006317 +21,1785.681222404281,0.9737454250526344,0.0,485.6303476736638,0.5240263750019949 +22,1765.3002646808288,0.9626315352427376,0.0,480.0875825591626,0.5180453749999288 +23,1766.7130081954772,0.9634019149257976,0.0,480.4717895024762,0.5184599589993013 +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092 +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044 +26,1761.720706069687,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842 +27,1768.10288660893,0.9641598260968948,0.0,480.84977809791,0.5188678330014227 +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913 +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169 +0,1751.7597276163842,2.1636114978065435,0.0,477.192837423917,0.5169033329948434 +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173 +2,1755.551400507329,2.168294621258601,0.0,478.2257183132816,0.5180221670016181 +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047 +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944 +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581 +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837 +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318 +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886 +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515 +10,1760.364557240052,2.174239387018135,0.0,479.5368592660305,0.5194424170040293 +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399 +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216 +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349 +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101 +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313 +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864 +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862 +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351 +19,1740.735333244333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869 +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783 +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092 +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061 +23,1780.1372456652791,2.1986607818846435,0.0,484.9230918322808,0.5252768749996903 +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918 +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964 +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957 +27,1746.5222472011149,2.1571426467036403,0.0,475.7661074329752,0.5153578749959706 +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571 +29,1754.4581827370755,2.166944379841335,0.0,477.9279173754673,0.5176995840010932 +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364 +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786 +2,1778.486234577878,1.5993880891754215,0.0,479.54986207109727,0.5181025829951977 +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965 +4,1767.9182652955085,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635 +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698 +6,1776.3588275952677,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941 +7,1769.0324619649873,1.5908863358186305,0.0,477.00075302295267,0.5153485419941717 +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501 +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905 +10,1781.685358726182,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195 +11,1782.0121818251405,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831 +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797 +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205 +14,1808.8365189834235,1.6266820217555849,0.0,487.7334928563829,0.5269441249984084 +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777 +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378 +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959 +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474 +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329 +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545 +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641 +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807 +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364 +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073 +25,1771.4579433126603,1.5930675649462802,0.0,477.6547582230597,0.516055125001003 +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122 +27,1771.2442582749284,1.5928753985423243,0.0,477.597140329607,0.5159928749999381 +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222 +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618 +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646 +1,1779.6926984637155,2.298914111764198,0.0,482.0722939582054,0.5188747089996468 +2,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378 +3,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604 +4,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856 +5,1776.1563189074311,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351 +6,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192 +7,1773.7140800868076,2.2911912446830485,0.0,480.4528423089714,0.5171316249980009 +8,1782.3990367731817,2.302410018296943,0.0,482.8053703585286,0.5196637499975623 +9,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193 +10,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539 +11,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419 +12,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821 +13,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162 +14,1772.853313724588,2.29007935163615,0.0,480.2196831713544,0.5168806660003611 +15,1770.9595755799237,2.2876331195711908,0.0,479.706718943124,0.5163285410017124 +16,1786.4787687097223,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075 +17,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552 +18,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846 +19,1791.298932109912,2.31390643843762,0.0,485.2161196775931,0.5222585410010652 +20,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781 +21,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464 +22,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138 +23,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602 +24,1774.9085456819907,2.292734192976961,0.0,480.7763918577341,0.5174798750012997 +25,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214 +26,1779.5730804224474,2.298759595423635,0.0,482.0398925533996,0.5188398340033018 +27,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901 +28,1792.9830205511932,2.3160818559613663,0.0,485.6722952739856,0.5227495420040214 +0,1756.762206346076,1.7661260064937123,0.0,477.9203619836382,0.5165056249970803 +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214 +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192 +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793 +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873 +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208 +6,1765.817171014456,1.7752292354514725,0.0,480.3837300914154,0.5191678749979474 +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429 +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212 +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823 +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864 +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192 +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042 +13,1755.3462952571251,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376 +14,1758.3116163303305,1.7676836750603675,0.0,478.34187297576966,0.5169611669989536 +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556 +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374 +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569 +18,1756.8116672700412,1.7661757310516548,0.0,477.9338176366573,0.5165201670024544 +19,1752.963015612889,1.7623065655168555,0.0,476.88680684231593,0.5153886249972857 +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859 +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751 +22,1757.216415420918,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844 +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327 +24,1755.7857633216242,1.765144358884768,0.0,477.6547244363272,0.5162185410008533 +25,1762.728840517084,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231 +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085 +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424 +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666 +29,1755.9440640749146,1.7653035034042843,0.0,477.6977895438538,0.5162650830025086 +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839 +1,1753.2505788590777,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426 +2,1752.8381169148636,0.8314540247964403,0.0,476.3898980473684,0.5165165830039768 +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984 +4,1765.114376950317,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311 +5,1756.9934111913135,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252 +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978 +7,1763.462414839216,0.8364936318112554,0.0,479.2773912825768,0.5196472919997177 +8,1753.3060095523142,0.8316759684048242,0.0,476.517062857228,0.5166544590028934 +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468 +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776 +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499 +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328 +13,1773.3545454320447,0.841185937230592,0.0,481.9658945956399,0.5225622500001919 +14,1776.3548905408898,0.8426091428263935,0.0,482.7813344738104,0.523446375002095 +15,1744.0009641467575,0.827262145257835,0.0,473.9881187469291,0.5139124999986961 +16,1748.8014619995813,0.8295392484439423,0.0,475.2928077884412,0.5153270839946344 +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871 +18,1750.578277165131,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152 +19,1747.6397256783089,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122 +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235 +21,1752.5626705211123,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282 +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452 +23,1783.0733219996505,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041 +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799 +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868 +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653 +27,1752.178208974687,0.8311409992480111,0.0,476.2105469291404,0.5163221250040806 +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269 +29,1752.354532351862,0.831224637765569,0.0,476.2584684541605,0.5163740829957533 +0,1747.0589457116464,3.0201243148830725,0.0331881792844293,476.8145717793967,0.5152042500048992 +1,1747.3293781548232,3.020591808895897,0.0331933165812735,476.8883793231577,0.5152840000009746 +2,1750.1044899098858,3.025389118401999,0.0332460342681538,477.6457743305661,0.5161023750042659 +3,1751.6777760699365,3.028108843341962,0.0332759213554061,478.07516211312054,0.5165663340012543 +4,1766.1522672194958,3.0531307596165367,0.0335508874683135,482.0256002572614,0.5208348329979344 +5,1766.7483783587693,3.0541612513183263,0.0335622115529486,482.1882933812131,0.5210106250015087 +6,1754.7747482092896,3.0334625498574375,0.0333347532951366,478.9204005912286,0.517479624999396 +7,1753.3064440845665,3.030924306371375,0.0333068605095755,478.51966494107194,0.5170466249983292 +8,1749.3128298275074,3.0240205830873874,0.0332309954185427,477.42971117820326,0.5158689160016365 +9,1757.5330439768445,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158 +10,1749.9246243251405,3.0250781864627907,0.033242617433657,477.59668466935074,0.5160493329967721 +11,1748.560030649437,3.022719226251378,0.0332166947939711,477.224254104984,0.5156469170033233 +12,1753.7423269355932,3.0316778129431237,0.0333151408015727,478.6386278961962,0.5171751659945585 +13,1756.9680215412786,3.0372540407715727,0.0333764180304568,479.51899784357346,0.5181264169950737 +14,1753.7127980950845,3.031626766715158,0.0333145798540127,478.63056876260094,0.5171664579975186 +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442 +16,1746.7611037466984,3.0196094382885876,0.0331825212998745,476.73328351529824,0.5151164169947151 +17,1749.0789930550138,3.023616351665171,0.0332265533150018,477.365891476632,0.5157999579969328 +18,1745.504313415313,3.0174368367013065,0.0331586465571572,476.3902750866777,0.5147457919956651 +19,1750.3038537106063,3.025733756723185,0.0332498215024525,477.7001855257362,0.5161611669973354 +20,1748.1413808301063,3.0219955102589178,0.0332087418709771,477.1099944603282,0.5155234579942771 +21,1757.5372861178564,3.0382381230737434,0.0333872321216894,479.6743638923129,0.5182942920000642 +22,1749.8696629689396,3.024983175284921,0.0332415733547793,477.5816843881149,0.5160331250008312 +23,1759.469025002054,3.0415775018557194,0.033423928591821,480.2015820786936,0.5188639580010204 +24,1751.8266953376512,3.028366278674916,0.0332787503151089,478.1158057771706,0.5166102500006673 +25,1755.287352510616,3.034348684076406,0.0333444910338066,479.06030268270024,0.5176307910005562 +26,1765.1312939975094,3.0513658128411953,0.0335314924488043,481.746952011972,0.5205337500010501 +27,1767.6126601371138,3.0556553270735236,0.0335786299678409,482.4241767479705,0.5212654999995721 +28,1751.5500471769017,3.027888039609773,0.0332734949407667,478.0403018139957,0.516528667001694 +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073 +1,1764.845139373689,0.1664885418827298,0.0,479.25391666362606,0.5172321659993031 +2,1769.8090308676667,0.1669568158623888,0.0,480.6018901414725,0.5186869589961134 +3,1761.667486286026,0.1661887746015269,0.0,478.39100656795546,0.5163008750023437 +4,1770.120524418555,0.1669862009375641,0.0,480.6864780188722,0.5187782499997411 +5,1758.7666359534974,0.1659151198024128,0.0,477.6032638632257,0.5154507080005715 +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002 +7,1766.3960797342909,0.1666348514899712,0.0,479.6750834990312,0.5176867080008378 +8,1777.8972580842958,0.1677198273729572,0.0,482.7982950757946,0.5210574169977917 +9,1769.0387471033746,0.1668841503248344,0.0,480.3927151250683,0.5184612080047373 +10,1764.9314380729104,0.1664966829622382,0.0,479.27735157509903,0.5172574579992215 +11,1772.566856441291,0.1672169782688663,0.0,481.3507936447587,0.5194952090023435 +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439 +13,1762.1909595977615,0.1662381570127317,0.0,478.5331587768496,0.5164542919956148 +14,1773.2691781297697,0.1672832325317695,0.0,481.5415131659517,0.5197010420015431 +15,1763.9601307223377,0.1664050536510261,0.0,479.0135874398439,0.5169727920001606 +16,1762.9672077460498,0.1663113852067893,0.0,478.7439534562638,0.5166817909994279 +17,1765.03607677191,0.1665065541651173,0.0,479.3057668197068,0.5172881249964121 +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674 +19,1759.353089729241,0.1659704435426248,0.0,477.7625187818,0.5156225829996401 +20,1767.829302824657,0.1667700561134161,0.0,480.06428352807984,0.518106750001607 +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435 +22,1767.7985939618377,0.166767159160205,0.0,480.05594435856625,0.5180977499985602 +23,1772.0661315525292,0.1671697418543195,0.0,481.2148189018443,0.519348459005414 +24,1759.33233396092,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604 +25,1759.9227696447715,0.1660241849029066,0.0,477.91721866150704,0.5157895419979468 +26,1767.522357592919,0.1667411001087618,0.0,479.98093077308187,0.51801679199707 +27,1756.276093432469,0.1656801718267677,0.0,476.92694262053374,0.5147207920017536 +28,1787.0935630557296,0.1685873705761791,0.0,485.2956049405893,0.5237526249984512 +29,1761.5507619170933,0.1661777632841301,0.0,478.3593093896971,0.516266665996227 +0,1776.691736185956,0.1001837341608155,0.0,477.44228243239314,0.5172290420014178 +1,1770.7935195244447,0.0998511467130299,0.0,475.8572815187299,0.5155119580012979 +2,1771.6266559565545,0.0998981254416041,0.0,476.0811664795379,0.5157544999965467 +3,1771.6970738633242,0.0999020961522841,0.0,476.1000895630688,0.5157749999998487 +4,1767.255164562743,0.0996516266693274,0.0,474.9064354971249,0.5144818750050035 +5,1778.5290421222858,0.1002873357962306,0.0,477.93601329290306,0.5177639169996837 +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503 +7,1775.7415239627014,0.100130153786217,0.0,477.1869362271816,0.5169524169978104 +8,1770.133281321143,0.0998139173348012,0.0,475.6798587118843,0.5153197499967064 +9,1767.617129727283,0.0996720370877929,0.0,475.0037047480587,0.5145872500070254 +10,1762.247909439489,0.0993692785805023,0.0,473.560858621814,0.5130241669976385 +11,1773.6424386464917,0.1000117909880923,0.0,476.6228585855853,0.5163413330010371 +12,1769.1378436654545,0.0997577867976686,0.0,475.41235928208937,0.5150299590022769 +13,1777.9878823036338,0.1002568209858636,0.0,477.7905898782973,0.5176063749968307 +14,1755.9015670313545,0.0990114223087807,0.0,471.85543491621286,0.5111766249974607 +15,1776.3105898766091,0.1001622421598373,0.0,477.3398587197316,0.5171180830002413 +16,1787.7577916465848,0.1008077246572515,0.0,480.4160131415751,0.5204505829970003 +17,1773.7231650386664,0.1000163429715617,0.0,476.6445518214728,0.5163648340021609 +18,1769.8345789266932,0.0997970741646162,0.0,475.599589777173,0.5152327920004609 +19,1774.2379885508392,0.1000453727356073,0.0,476.7828980003261,0.5165147090010578 +20,1766.4500819098491,0.0996062298315799,0.0,474.6900893006994,0.5142475000029663 +21,1771.0441351066002,0.0998652783737721,0.0,475.9246283032735,0.515584917004162 +22,1766.2073393898709,0.0995925421154749,0.0,474.62485820831506,0.5141768329995102 +23,1761.5407248569811,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116 +24,1766.0573458461463,0.0995840843098779,0.0,474.5845511261085,0.5141331670020008 +25,1775.480603344183,0.1001154410471693,0.0,477.1168202171266,0.5168764580012066 +26,1790.8488796480174,0.1009820243020892,0.0,481.24666714898984,0.5213504580024164 +27,1777.4756350505515,0.1002279364913943,0.0,477.6529360058218,0.5174572499963688 +28,1768.5382885241104,0.0997239792036601,0.0,475.25124355824306,0.5148554170009447 +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286 +1,1747.7432374054538,0.4984532476676833,0.0,475.82347022357055,0.5151742909947643 +2,1751.518133922168,0.4995298414075961,0.0,476.8511866076913,0.516286999998556 +3,1754.769163024236,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799 +4,1751.2478613919254,0.4994527601650134,0.0,476.77760485352184,0.5162073329993291 +5,1736.266881541672,0.4951802114863595,0.0,472.6990298848788,0.5117914579968783 +6,1748.792095154288,0.4987523800230881,0.0,476.1090219700399,0.5154834580025636 +7,1753.1379269695713,0.4999918034897532,0.0,477.2921756113184,0.5167644589964766 +8,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888 +9,1761.7996142862123,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684 +10,1740.7653737649098,0.4964631734285321,0.0,473.9237453548768,0.5131174580019433 +11,1742.9166639927869,0.497076717556646,0.0,474.5094345795743,0.5137515839960543 +12,1749.7232016130597,0.499017929921017,0.0,476.36251590260287,0.5157579160004389 +13,1753.2353196533288,0.5000195797090965,0.0,477.3186907903035,0.5167931669930113 +14,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666 +15,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121 +16,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543 +17,1757.0913484891291,0.5011193122414096,0.0,478.3684954656496,0.517929790999915 +18,1744.1792476012558,0.4974368041452388,0.0,474.85317323704504,0.5141237499992712 +19,1749.1235756856784,0.4988469176782046,0.0,476.1992676156142,0.5155811670047115 +20,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054 +21,1746.9655037563955,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537 +22,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729 +23,1748.172110645285,0.498575561549183,0.0,475.9402310548502,0.5153007080007228 +24,1751.4983453162597,0.4995241977325581,0.0,476.8457991555,0.5162811670015799 +25,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782 +26,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758 +27,1772.4144105029477,0.5054894221417285,0.0,482.5402023764941,0.5224464999992051 +28,1751.7315782126657,0.4995907153377694,0.0,476.9092968614347,0.5163499159971252 +0,2707.064349798109,3.6012385418086788,92.0649964253126,546.2211903089626,0.5340038330032257 +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182 +2,2725.020067211528,3.625125237224638,92.67565537015948,549.8442269534888,0.5375458330017864 +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456 +4,2738.164742265457,3.642611748185226,93.12269478462412,552.4965096946497,0.5401387919991976 +5,2721.689276555712,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198 +6,2720.5877475209177,3.619228871849861,92.52491588127285,548.9498902756719,0.5366714999981923 +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976 +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933 +9,2684.9247119572583,3.571785929387366,91.31204584294925,541.7539380490226,0.5296365000031074 +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256 +11,2721.140522061294,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162 +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359 +13,2693.7475289550293,3.5835230233438016,91.6121024764096,543.5341726425446,0.5313769159984076 +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352 +15,2691.344864372215,3.580326731279553,91.530389861693,543.0493720841699,0.5309029589989223 +16,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008 +17,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486 +18,2696.253071379015,3.586856174972084,91.69731388053631,544.0397315020158,0.5318711669970071 +19,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715 +20,2711.4054258427636,3.607013524721848,92.21263279404648,547.097116189524,0.5348601670048083 +21,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715 +22,2722.2352935902622,3.6214206211537783,92.580947546348,549.2823258807412,0.5369964999990771 +23,2705.6396482764453,3.599343245145054,92.01654351708792,545.9337194326031,0.5337227920026635 +24,2704.6099320015473,3.5979734018546403,91.98152372704315,545.7259471831561,0.5335196670057485 +25,2732.7517068573975,3.635410725519794,92.93860197370508,551.4042879142569,0.5390709999992396 +26,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095 +27,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125 +28,2711.9605221173633,3.607751975619275,92.23151115448908,547.2091214131422,0.5349696670018602 +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881 +1,1809.1855259194288,0.265466227826992,0.0,478.8678917214152,0.515494541003136 +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585 +3,1810.0879382553949,0.2655986410015069,0.0,479.1067485365934,0.5157516670005862 +4,1839.304281081116,0.2698856266144958,0.0,486.83993470922366,0.5240763330002665 +5,1809.758034772763,0.2655502334546707,0.0,479.0194273730442,0.5156576669978676 +6,1808.8649860767891,0.2654191942300088,0.0,478.78304899165727,0.5154032089994871 +7,1813.8231895913325,0.2661467235878039,0.0,480.09542101194984,0.5168159589957213 +8,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819 +9,1809.8633196014089,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656 +10,1813.954652607598,0.2661660134784905,0.0,480.13021756351213,0.5168534169933992 +11,1807.167211573315,0.2651700756146534,0.0,478.33367014938295,0.5149194590048864 +12,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542 +13,1823.9124415236115,0.2676271442598061,0.0,482.76591485165784,0.5196907080025994 +14,1819.837052677855,0.2670291524627728,0.0,481.6872123987844,0.5185295000046608 +15,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613 +16,1808.2260893946043,0.2653254473534387,0.0,478.6139413446843,0.5152211669992539 +17,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068 +18,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739 +19,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421 +20,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996 +21,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448 +22,1802.588046066788,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584 +23,1837.076846539877,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271 +24,1807.5499030880776,0.2652262288788654,0.0,478.4349636188634,0.5150284999981523 +25,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453 +26,1809.485601206097,0.2655102586095041,0.0,478.94731774921934,0.5155800420034211 +27,1807.857580198864,0.2652713750956679,0.0,478.5164017506981,0.5151161670000874 +28,1807.3931392937277,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981 +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224 +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637 +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822 +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785 +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257 +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757 +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788 +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315 +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518 +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946 +10,2618.9124733008675,4.199020794266546,93.62136762896692,547.6194959050658,0.5388713749998715 +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708 +12,2598.369879714636,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963 +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235 +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425 +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375 +16,2588.202161551629,4.149781562735098,92.52352972274171,541.1979122856604,0.5325523749997956 +17,2609.8641773866566,4.184513252268183,93.2979074725714,545.7274803078074,0.5370095840044087 +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034 +19,2571.5775359527493,4.123126548755723,91.9292295310576,537.7216719825263,0.529131666997273 +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198 +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871 +22,2590.805700040584,4.153955933725058,92.61660149833388,541.7423170526872,0.5330880830006208 +23,2581.167113924082,4.138501952752755,92.2720395385754,539.7268706702032,0.5311048330040649 +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174 +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983 +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351 +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567 +28,2612.5537766415023,4.188825608375719,93.39405576434504,546.2898805419278,0.5375629999980447 +29,2596.2320891691634,4.162656308793328,92.81058506085604,542.8769851675906,0.5342046250007115 +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213 +1,1779.2162506886075,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688 +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013 +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128 +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836 +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122 +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858 +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367 +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509 +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752 +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764 +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953 +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438 +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806 +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779 +15,1790.0668889243043,1.66955817952611,0.0,480.09815010452814,0.5182433750014752 +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756 +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821 +18,1792.1862688524077,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506 +19,1790.008024062706,1.6695032774932437,0.0,480.0823624759571,0.5182263329988928 +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355 +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276 +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134 +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887 +24,1787.3388646459289,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427 +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853 +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772 +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742 +28,1804.8606743706223,1.6833560357128678,0.0,484.0658616295923,0.522526332999405 +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485 +0,1845.824206071892,0.1677320580549854,0.0,486.1545970665696,0.5214718330025789 +1,1830.4651068256328,0.166336359960892,0.0,482.1093057106495,0.5171326670024428 +2,1849.9641160769513,0.1681082561907703,0.0,487.24496974332874,0.5226414170028875 +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669 +4,1822.3392648347449,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443 +5,1836.1359089329785,0.1668516719310995,0.0,483.602885925099,0.5187347499959287 +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701 +7,1845.3007813203665,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832 +8,1825.8569338770212,0.1659176102608928,0.0,480.8956015801718,0.5158307919991785 +9,1807.0185105123555,0.1642057421907525,0.0,475.9339231656772,0.5105086669937009 +10,1823.162968089531,0.1656728066526299,0.0,480.1860628019826,0.5150697079952806 +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444 +12,1857.7274384163825,0.1688137177558822,0.0,489.2896795436492,0.5248346669977764 +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564 +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571 +15,1830.059520329347,0.1662995038737752,0.0,482.00248202775015,0.5170180829954916 +16,1826.6731154100848,0.1659917775666616,0.0,481.11056809921206,0.5160613749976619 +17,1843.7639886261209,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808 +18,1825.188089979146,0.1658568316866715,0.0,480.71944096064885,0.5156418339975062 +19,1824.456265218254,0.1657903299727617,0.0,480.52669239305266,0.5154350829980103 +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028 +21,1827.3999209682072,0.1660578231801435,0.0,481.301994705328,0.5162667080003303 +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859 +23,1827.510683488826,0.1660678882911533,0.0,481.3311674230788,0.5162980000022799 +24,1835.150709439822,0.1667621457790216,0.0,483.3434033259165,0.5184564169976511 +25,1813.572750949637,0.1648013331651888,0.0,477.6601840459834,0.5123603339961846 +26,1842.1702642888456,0.1674000203813719,0.0,485.1922190733685,0.5204395420005312 +27,1831.9371559299911,0.166470126667938,0.0,482.4970151343517,0.5175485420040786 +28,1845.660352440013,0.1677171684968116,0.0,486.1114411711588,0.5214255419996334 +29,1853.0747226186224,0.1683909203986171,0.0,488.06424368335195,0.5235202080002637 +0,1750.3108252154525,2.609757505147961,0.0,479.15816963107625,0.5184650419978425 +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429 +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149 +3,1752.016519404531,2.612300738125388,0.0,479.625113726842,0.5189702910065535 +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639 +5,1742.483268674349,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369 +6,1745.190778674311,2.602123386855969,0.0,477.7565259380042,0.5169484170037322 +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536 +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203 +9,1735.1488806738737,2.587150664128651,0.0,475.007495653672,0.5139738750003744 +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756 +11,1734.3902782445691,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704 +12,1740.4614946593651,2.59507190532813,0.0,476.4618558487712,0.5155475409992505 +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972 +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954 +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097 +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292 +17,1746.9815770882103,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611 +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266 +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417 +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639 +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297 +22,1745.2933230781057,2.6022762831436204,0.0,477.7845980884589,0.5169787920021918 +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218 +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297 +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044 +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646 +27,1744.947146636668,2.601760125354311,0.0,477.6898301948601,0.5168762499961304 +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994 +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613 +0,2672.382616871309,3.0753543154939074,90.65609677847256,547.1456460435247,0.5367295840042061 +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645 +2,2668.042158872389,3.070359354759644,90.50885402291472,546.2569773772376,0.5358578330051387 +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605 +4,2673.3815259950325,3.0765038512920504,90.68998309460912,547.3501634559595,0.5369302079998306 +5,2660.8570324091256,3.062090774678085,90.26511066224964,544.7858891296837,0.5344147499999963 +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095 +7,2691.981040632199,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829 +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093 +9,2663.405459659043,3.065023482251948,90.35156178116613,545.3076560597814,0.5349265840050066 +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977 +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532 +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001 +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807 +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968 +15,2656.6049568069725,3.0571975236255113,90.1208661312216,543.915315942417,0.5335607499946491 +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822 +17,2683.2200521488594,3.087825940305148,91.02373858812568,549.3645107708115,0.5389062079993892 +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233 +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017 +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186 +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897 +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739 +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244 +24,2660.4190835585628,3.0615867870084155,90.25025398224808,544.6962231494972,0.5343267909993301 +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568 +26,2652.9553415843593,3.05299757865734,89.99705905781202,543.1680909506885,0.5328277499938849 +27,2692.647814864721,3.0986753263813163,91.3435596211536,551.2947580674934,0.5407997090005665 +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348 +29,2675.12895480308,3.0785147769326833,90.749261685233,547.707933356893,0.5372811670022202 +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037 +1,1782.8336566198657,1.7941300308884225,0.0,479.7304354814431,0.5178688749947469 +2,1795.0281902994725,1.80640183146052,0.0,483.0117786010824,0.5214110840024659 +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378 +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384 +5,1796.9891979642368,1.8083752644440696,0.0,483.5394526538505,0.5219807079993188 +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032 +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437 +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653 +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079 +10,1803.0189770789996,1.8144432493899736,0.0,485.1619644063301,0.5237322089960799 +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943 +12,1800.0309108242288,1.8114362501771968,0.0,484.35792622793593,0.5228642500005662 +13,1791.4015151729552,1.8027521770283184,0.0,482.03590155762765,0.5203576249987236 +14,1809.3940181194137,1.820858683906976,0.0,486.8773803135709,0.5255840000027092 +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398 +16,1782.9656266294744,1.794262837085196,0.0,479.765946382836,0.5179072090031696 +17,1797.0181746335738,1.8084044247151136,0.0,483.5472497863245,0.5219891250017099 +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482 +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603 +20,1817.2879807960328,1.8288026642375284,0.0,489.0015123875124,0.5278770000004442 +21,1799.0441654896515,1.8104432526358776,0.0,484.0924097186932,0.5225776250008494 +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759 +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128 +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152 +25,1779.0384404444324,1.7903107674990562,0.0,478.7092068873866,0.5167664590044296 +26,1782.7894773086882,1.7940855716486983,0.0,479.71854757473255,0.517856042002677 +27,1783.1825092184056,1.7944810938835989,0.0,479.8243058256533,0.5179702080058632 +28,1780.5486074656133,1.79183050322667,0.0,479.11556733499793,0.5172051249974174 +29,1787.7603534401137,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268 +0,1795.147924035491,2.682538176309839,0.0,479.4457429436733,0.5142721660013194 +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979 +2,1817.3031298206895,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046 +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751 +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264 +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576 +6,1809.3933002198744,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581 +7,1805.3675530191017,2.697809644766114,0.0,482.1751879910992,0.5171998750010971 +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467 +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286 +10,1799.7155993091633,2.689363777216903,0.0,480.6656716391247,0.5155807090050075 +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075 +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091 +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005 +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217 +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733 +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314 +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529 +18,1826.6656523216352,2.729635971553408,0.0,487.8634562985023,0.5233013329998357 +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408 +20,1807.306323455378,2.700706801953429,0.0,482.6929922454295,0.5177552919994923 +21,1833.0039600605849,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359 +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235 +23,1838.0546515121375,2.7466548615899486,0.0,490.9052152004653,0.5265640419966076 +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132 +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729 +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903 +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051 +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895 +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387 +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297 +1,1756.560303683826,1.7731543519587607,0.0,478.8520422563347,0.5189257919992087 +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679 +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372 +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144 +5,1746.06400151769,1.7625588922832085,0.0,475.99066840093514,0.5158249579981202 +6,1754.1136576433803,1.770684592699588,0.0,478.1850674586642,0.5182029999996303 +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129 +8,1745.2030860378886,1.7616898438215771,0.0,475.7559761248724,0.5155706250006915 +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393 +10,1747.4051663255143,1.763912726939895,0.0,476.35628039039096,0.5162211670030956 +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424 +12,1746.5747123718454,1.763074427771366,0.0,476.1298921639917,0.5159758329973556 +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304 +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058 +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449 +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621 +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053 +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674 +19,1748.336743535644,1.7648531046661042,0.0,476.6102356053953,0.5164963749994058 +20,1753.3933581542744,1.769957488613754,0.0,477.988708198654,0.517990207998082 +21,1757.4467487928955,1.7740491712254969,0.0,479.09369410850064,0.5191876669996418 +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899 +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545 +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244 +25,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401 +26,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632 +27,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313 +28,1747.8861163258769,1.764398220426472,0.0,476.48739111253,0.5163632500043605 +0,2670.570409785425,2.9727932568403896,91.95617793350104,548.196437429938,0.53703412500181 +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161 +2,2649.982550200963,2.949875512406015,91.24727287251416,543.9703023551407,0.5328940420004074 +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248 +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252 +5,2691.5962946236164,2.99619859692693,92.68016558808806,552.5124873344356,0.5412622919975547 +6,2666.77366683587,2.9685668444615825,91.82544407643525,547.417067992174,0.5362706249943585 +7,2661.481141542177,2.9626753751907864,91.6432057067442,546.3306545801257,0.5352063330064993 +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573 +9,2645.7442612379073,2.9451575851782787,91.10133519096404,543.1002953701787,0.5320417499970063 +10,2647.4012424367324,2.9470020834609416,91.15839028952776,543.4404291433817,0.5323749580056756 +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555 +12,2627.9855146860323,2.925389118559347,90.48984543139191,539.4549012786067,0.5284705829981249 +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745 +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839 +15,2687.243218261744,2.991352892051421,92.53027541368049,551.618917576943,0.5403869170040707 +16,2700.8745297979617,3.006526830498532,92.9996445433984,554.4170600240664,0.5431280839984538 +17,2651.924020997127,2.95203669537653,91.31412384687177,544.3688342080854,0.5332844589938759 +18,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431 +19,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277 +20,2647.5437980205056,2.9471607717608688,91.16329892873787,543.4696919790941,0.5324036249949131 +21,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085 +22,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703 +23,2656.7905403646746,2.9574539485248152,91.4816934863912,545.3678000358345,0.5342630839950289 +24,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377 +25,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278 +26,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112 +27,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322 +28,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103 +0,1761.0627122628562,0.1002730818552339,0.0,479.40560434987367,0.5189407500001835 +1,1773.2261221061888,0.1009656537792014,0.0,482.7167907183622,0.5225250000003143 +2,1774.1111385027095,0.1010160456936708,0.0,482.9577144614402,0.5227857920035603 +3,1747.8332966738471,0.0995198126712257,0.0,475.8042243811302,0.51504237500194 +4,1746.9785407537054,0.0994711437568538,0.0,475.5715383015183,0.5147904999976163 +5,1750.5248233346765,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402 +6,1746.6482342427255,0.099452336447164,0.0,475.4816205538911,0.514693167002406 +7,1772.610473858339,0.1009305994073606,0.0,482.5491957665912,0.5223435839943704 +8,1748.7226941545937,0.0995704540400808,0.0,476.04634076562667,0.5153044580001733 +9,1772.4744459499425,0.1009228541195305,0.0,482.5121655454757,0.5223035000017262 +10,1770.3282934230103,0.1008006544235695,0.0,481.92792879908586,0.5216710829990916 +11,1758.21465709453,0.1001109165518446,0.0,478.6302920343692,0.5181014999980107 +12,1757.855223569782,0.1000904507802411,0.0,478.532445180333,0.5179955840067123 +13,1756.2394557664416,0.0999984506396015,0.0,478.09259250793485,0.5175194580006064 +14,1747.016436775467,0.0994733015169754,0.0,475.5818545526595,0.5148016669991193 +15,1754.1526907543482,0.0998796324070574,0.0,477.5245225381418,0.5169045410002582 +16,1753.2227129170683,0.0998266804348467,0.0,477.2713591590023,0.5166304999947897 +17,1756.2227695819904,0.0999975005455885,0.0,478.088050108459,0.5175145410030382 +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174 +19,1748.2398194280586,0.0995429596546495,0.0,475.9148901088795,0.5151621670011082 +20,1763.74038297599,0.1004255456447003,0.0,480.1345337273122,0.5197297920021811 +21,1760.1897159033686,0.1002233743491896,0.0,479.16795276347585,0.5186834999985876 +22,1751.7277020054344,0.0997415560662067,0.0,476.8643795525346,0.5161899579979945 +23,1748.352370623307,0.099549368202815,0.0,475.9455293776589,0.5151953329987009 +24,1759.1921483115996,0.1001665738865547,0.0,478.89638975161847,0.5183895419977489 +25,1747.339389421523,0.099491690105234,0.0,475.66977039312377,0.5148968329958734 +26,1751.9406486544974,0.0997536810272451,0.0,476.922348991259,0.5162527080028667 +27,1754.9035218939098,0.0999223839523559,0.0,477.7289176762137,0.5171257919937489 +28,1752.4458666562616,0.099782447615563,0.0,477.0598820500069,0.516401583001425 +29,1750.364901254197,0.0996639596067907,0.0,476.4933908800666,0.5157883749998291 +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021 +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396 +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647 +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121 +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826 +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744 +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462 +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933 +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716 +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596 +10,2615.36164408698,2.86359540889274,88.30529098120404,541.2528299017616,0.5338564999983646 +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096 +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936 +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303 +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195 +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093 +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978 +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057 +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888 +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631 +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072 +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873 +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502 +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321 +24,2646.093256085373,2.89724387323626,89.34291571886699,547.6127809239,0.5401295409974409 +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246 +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397 +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437 +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415 +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615 +0,1832.0288573050368,0.3348434297708107,0.0,485.7573635685151,0.520800792000955 +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087 +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004 +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638 +4,1832.5450819984576,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844 +5,1811.56117568914,0.331102512325981,0.0,480.33041463130064,0.5149823329993524 +6,1861.757947821728,0.3402770726923634,0.0,493.6399493548115,0.5292520420043729 +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311 +8,1813.0148750103676,0.3313682077404579,0.0,480.7158589690824,0.5153955839996343 +9,1828.3792277749956,0.3341763799782493,0.0,484.78967443444634,0.5197632919953321 +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375 +11,1817.2384760499765,0.3321401634072298,0.0,481.83573505486834,0.5165962500032037 +12,1824.018140381943,0.333379295666833,0.0,483.63334422387464,0.5185235419994569 +13,1833.410144455411,0.3350958902738674,0.0,486.1236080202995,0.521193458000198 +14,1821.170110213187,0.3328587557277406,0.0,482.8781969342333,0.5177139169973088 +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314 +16,1818.3656082621744,0.3323461715245324,0.0,482.1345910306392,0.5169166659979965 +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685 +18,1805.5999711042289,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965 +19,1838.1848588994617,0.3359685739951129,0.0,487.38961029471034,0.52255079200404 +20,1814.558121289498,0.3316502698242645,0.0,481.1250464340605,0.5158342909999192 +21,1810.8972069332913,0.33098115748237,0.0,480.1543651596742,0.5147935829954804 +22,1833.8570420407632,0.335177570603104,0.0,486.24210167392306,0.5213205000036396 +23,1835.274389296927,0.3354366218808924,0.0,486.6179073626107,0.5217234170049778 +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233 +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785 +26,1843.4762342226047,0.3369356888166623,0.0,488.792603766332,0.524055000001681 +27,1812.032257571416,0.3311886128655741,0.0,480.45532068408846,0.5151162500042119 +28,1851.1542315714744,0.3383390111255961,0.0,490.82840343990233,0.5262376660029986 +29,1816.7635844920449,0.3320533665659065,0.0,481.7098188771606,0.5164612500011572 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..eecd7cb6d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/cleaned/mac/without_smell.csv @@ -0,0 +1,876 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.2976060090398,0.9378436735173552,0.0,59.34286692773609,0.0769311670010211 +1,255.2444208838569,0.9231838620144488,0.0,58.41525471712115,0.0757286250009201 +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.0805979579963604 +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538 +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.0820534579979721 +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388 +6,274.5216566791403,0.9929069647911036,0.0,62.827044151437065,0.0814480000044568 +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.083064166996337 +8,281.3432946979796,1.0175798885309817,0.0,64.38824467083968,0.0834719160047825 +9,271.4910013468641,0.9819455025017532,0.0,62.13344817554198,0.0805488330006483 +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.0789655840053455 +11,269.5141946577938,0.9747956653873808,0.0,61.68103606847738,0.0799623330021859 +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.0766440829975181 +13,269.12490022342575,0.9733876411174044,0.0,61.59194211898058,0.0798468329958268 +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.0748828750001848 +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.0800642079993849 +16,269.730891764629,0.975579428931684,0.0,61.730629382401375,0.0800266250007553 +17,268.35867106427986,0.9706162959421448,0.0,61.41658286392536,0.0796194999929866 +18,268.1440805449837,0.9698401516343884,0.0,61.367471663762174,0.0795558329991763 +19,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.0736840000026859 +20,267.1683200118613,0.9663109603821372,0.0,61.14415904486973,0.0792663340034778 +21,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673 +22,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.0803771249993587 +23,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.0804226670006755 +24,270.16990124801515,0.9771672656762832,0.0,61.831101121240685,0.0801568749957368 +25,266.0163051495714,0.9621442815337454,0.0,60.8805088487732,0.0789245420019142 +26,271.33244897442904,0.9813720404413124,0.0,62.097161869303726,0.0805017919992678 +27,271.5900102009636,0.982303603869786,0.0,62.15610734831233,0.0805782079987693 +28,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.082180834004248 +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.0838514580027549 +1,398.7176187759755,1.608272748003935,12.832676301781396,78.77185896994273,0.0833907080013887 +2,393.4009922947646,1.5868275319452692,12.661561348646623,77.72149015840266,0.082278750000114 +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.0802324579999549 +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.0815308750024996 +5,397.77390581907474,1.6044661747324025,12.80230301921896,78.58541618324745,0.0831933329973253 +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.0835334169969428 +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.0827721669993479 +8,402.1872645561368,1.6222679578734929,12.944346413865578,79.45733268667878,0.0841163750010309 +9,411.01636787259105,1.6578811477213755,13.228509991193476,81.20163704776988,0.0859629580008913 +10,398.47576527691933,1.60729720447833,12.824892277400007,78.72407766101153,0.083340124998358 +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.0853469160065287 +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.0847861250003916 +13,397.95758979573526,1.6052070848903608,12.808214864854335,78.62170534535913,0.0832317500025965 +14,397.9368723030194,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143 +15,378.44542169605904,1.5265025412950282,12.180218194083244,74.7668223871794,0.0791508329930366 +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.081899249998969 +17,394.47718603434674,1.591168481483079,12.696198508500403,77.93410624930665,0.0825038330003735 +18,390.30130111050465,1.574324575907918,12.561798178598597,77.10910579082322,0.0816304580002906 +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.0853198749973671 +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.0832003749965224 +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.082188499996846 +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.0817053749997285 +23,408.1975839921713,1.6465112631616992,13.137787787311058,80.64474957694073,0.0853734170013922 +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.0866518750044633 +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.0798403750013676 +26,374.92099637623625,1.5122863719377595,12.06678500942004,74.07052625886818,0.0784137090013246 +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.0841622919979272 +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.0840398750005988 +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.0819778340010088 +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.0776710830032243 +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.0761652920045889 +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.0773927499976707 +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.0778755829960573 +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986 +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.0779352500030654 +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.0773458750045392 +7,342.3226982986895,22.968494031768262,0.0,74.03884179294928,0.0776502919979975 +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.0789362499999697 +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.0777301670023007 +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.0775382089996128 +11,335.4773722078628,22.5091998270776,0.0,72.55830889817277,0.0760975419980241 +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.0786656250056694 +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.0751801669975975 +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.0794126249966211 +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.0779685840025194 +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.0783674590056762 +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854 +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.077208333001181 +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402 +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902 +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.0720434999966528 +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.0812008749999222 +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.0808140000008279 +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.0795359170006122 +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.0832596659965929 +26,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141 +27,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.0817928329997812 +28,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364 +0,243.54047775399584,0.0,0.0,58.53663370586776,0.0799515000035171 +1,243.291711687412,0.0,0.0,58.47684106584192,0.0798698330036131 +2,245.5951988714672,0.0,0.0,59.03050009937392,0.080626040995412 +3,244.14360606550724,0.0,0.0,58.681599755758846,0.0801494999977876 +4,243.31671713606323,0.0,0.0,58.48285129790621,0.0798780420009279 +5,241.55492443854592,0.0,0.0,58.05939227067864,0.0792996659947675 +6,244.21963070926464,0.0,0.0,58.69987280328379,0.0801744580021477 +7,245.1422220915524,0.0,0.0,58.92162400580759,0.080477333998715 +8,246.35114409687137,0.0,0.0,59.21219674860971,0.0808742090011946 +9,244.82669458259335,0.0,0.0,58.845784792604114,0.0803737499954877 +10,245.46624823405313,0.0,0.0,58.999505924204115,0.0805837080042692 +11,244.69279401281028,0.0,0.0,58.81360086704609,0.0803297919992473 +12,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065 +13,244.25085325559544,0.0,0.0,58.70737735765924,0.0801847080001607 +14,242.3843538378488,0.0,0.0,58.25875134798534,0.0795719579982687 +15,247.02788453109272,0.0,0.0,59.37485597995104,0.081096374997287 +16,244.8240292446239,0.0,0.0,58.845144160238355,0.080372874996101 +17,242.5058171758989,0.0,0.0,58.28794589910761,0.0796118329963064 +18,249.33936777338295,0.0,0.0,59.93043692123454,0.081855208001798 +19,234.16127478349617,0.0,0.0,56.2822775766509,0.076872416997503 +20,244.35937066953136,0.0,0.0,58.73346026662311,0.0802203330022166 +21,245.70321065155915,0.0,0.0,59.056461475755675,0.0806615000037709 +22,244.62806434791267,0.0,0.0,58.79804264559987,0.0803085420047864 +23,243.1429613426851,0.0,0.0,58.44108789444635,0.0798209999993559 +24,247.57986270663923,0.0,0.0,59.507527741842864,0.0812775829981546 +25,242.2868816000614,0.0,0.0,58.235323223295474,0.0795399589987937 +26,246.40584599254623,0.0,0.0,59.22534472655436,0.080892166995909 +27,243.29945488439853,0.0,0.0,58.47870219664816,0.0798723750049248 +0,365.5962922637533,0.31946547733638,13.09808457079158,71.3685876369473,0.0776209169998765 +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.0843391249945852 +2,381.68376621972993,0.3335230393391558,13.67444461290539,74.50904698836742,0.0810364999997546 +3,374.9568692135735,0.3276449398930212,13.433442535613873,73.19587957210095,0.0796082910019322 +4,383.4586629821924,0.3350739802360996,13.738033189680085,74.85552718474466,0.0814133340027183 +5,378.5011661164349,0.3307420186267344,13.560422763696112,73.88776696121248,0.080360792002466 +6,388.4279301626621,0.3394162269858983,13.916065306421832,75.82558510864969,0.0824683749960968 +7,388.868712974047,0.3398013919731275,13.931857070898229,75.91163096679668,0.0825619590032147 +8,387.4873009382955,0.3385942860348615,13.882365727429324,75.64196350018807,0.0822686669998802 +9,361.1088179961347,0.3155442310347209,12.93731347242356,70.49258121315667,0.0766681669992976 +10,384.98725849243414,0.3364096980884604,13.792797621626878,75.15392655296206,0.081737874999817 +11,387.3220545051752,0.3384498903400692,13.876445503942838,75.60970550197146,0.0822335830016527 +12,381.00905545019447,0.3329334633434065,13.650271997079669,74.37733571091702,0.080893250000372 +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574 +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.0836733749965787 +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.0806210000009741 +16,376.5386550083152,0.3290271364980035,13.490112596418143,73.504662293654,0.0799441249982919 +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.0815830829960759 +18,371.9656137717135,0.3250311200381977,13.326275921566106,72.61195221653337,0.0789732080011162 +19,373.64807162243585,0.3265012859336209,13.38655272327846,72.94038727757092,0.0793304160033585 +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.0774970830025267 +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.0814905410006758 +22,389.6713762032651,0.340502775431025,13.960613792672026,76.068320031291,0.0827323749981587 +23,385.0612435284915,0.3364743477180107,13.795448256438442,75.1683692802036,0.0817535829992266 +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.0754203329997835 +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.0827776250007445 +26,389.3864198446626,0.3402537747681428,13.950404765493856,76.0126932832031,0.0826718750031432 +27,385.34934147980306,0.3367260935685102,13.80576983630892,75.22460930320518,0.0818147499958286 +28,388.2126444619807,0.3392281059611854,13.908352344408604,75.78355887172884,0.082422667001083 +29,382.30646891442245,0.3340671696211311,13.696753954466375,74.63060569336069,0.0811687079985858 +0,261.69304748056817,0.0,0.0,60.19573731393214,0.0799580409948248 +1,250.04241406090983,0.0,0.0,57.51580952974925,0.0763982909993501 +2,265.34640271204813,0.0,0.0,61.03609747613698,0.0810742920002667 +3,260.32975890934574,0.0,0.0,59.88214793314248,0.0795414999956847 +4,256.60290463269945,0.0,0.0,59.02488121091149,0.0784027919944492 +5,254.2476553292837,0.0,0.0,58.48311684329771,0.0776831659968593 +6,267.4662730703839,0.0,0.0,61.52371898713432,0.0817220000026281 +7,261.4647674093651,0.0,0.0,60.143227370192946,0.0798882919989409 +8,246.01554802208992,0.0,0.0,56.589532838011,0.0751679170061834 +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688 +10,263.23716595979414,0.0,0.0,60.550921952010754,0.0804298330040182 +11,260.4273987454803,0.0,0.0,59.904607459614105,0.0795713330007856 +12,263.1834383636676,0.0,0.0,60.538563303991346,0.080413417003001 +13,264.8376041165323,0.0,0.0,60.91906147958976,0.0809188330022152 +14,262.7376459678526,0.0,0.0,60.43602025894914,0.0802772090028156 +15,265.9190191847479,0.0,0.0,61.16781312966357,0.0812492499971995 +16,262.16475454640056,0.0,0.0,60.30424136055219,0.0801021669976762 +17,270.0616666527359,0.0,0.0,62.120722353534894,0.0825150000018766 +18,267.46191030093564,0.0,0.0,61.522715444525154,0.0817206669962615 +19,262.00329030822877,0.0,0.0,60.26710067622695,0.0800528330000815 +20,253.51275965468895,0.0,0.0,58.314073044056784,0.0774586249972344 +21,264.0262048684438,0.0,0.0,60.732420006058504,0.0806709169992245 +22,263.8846528399279,0.0,0.0,60.69985961208996,0.0806276670045917 +23,264.5367741043955,0.0,0.0,60.849863292778615,0.0808269170011044 +24,263.01842955838407,0.0,0.0,60.50060728340553,0.0803629999936674 +25,262.9862473617866,0.0,0.0,60.493204598958165,0.0803531670026131 +26,263.65418646654734,0.0,0.0,60.64684676591282,0.0805572500030393 +27,248.40133983118992,0.0,0.0,57.13832272146015,0.0758968750014901 +28,269.71869832726696,0.0,0.0,62.04183133435922,0.0824102090045926 +29,263.8835596650258,0.0,0.0,60.69960815539335,0.0806273329944815 +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.0798695409976062 +1,222.282954626191,0.5425670898579795,0.0,63.921185273893215,0.0796238750044722 +2,181.99531463538943,0.4442296009406912,0.0,52.33579986082519,0.0651924580015474 +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.0797642079996876 +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.0648530830003437 +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477 +6,228.03587230478863,0.5566092992946786,0.0,65.57553307315432,0.0816846250017988 +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.0808889159961836 +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.0801839999985531 +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.078770958003588 +10,225.93084181352305,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981 +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.0814994160027708 +12,190.86070386116344,0.4658689949319016,0.0,54.885190965414665,0.0683681250011432 +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.0778178749969811 +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.0821365419978974 +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.0831774999969638 +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.0827088329970138 +17,208.47225322116213,0.5088567584345681,0.0,59.94968685307256,0.0746767500022542 +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.0824930000017047 +19,229.14404490940265,0.5593142209840491,0.0,65.89420665968329,0.082081583001127 +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.0812505829962901 +21,226.7383300922263,0.5534421482037561,0.0,65.20240308525501,0.0812198330022511 +22,190.32796262279587,0.4645686349297839,0.0,54.73199230266517,0.0681772920070216 +23,216.75046098615985,0.5290629101111453,0.0,62.3302240974693,0.0776420830006827 +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832 +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.0806313339999178 +26,190.4228763228689,0.4648003083395731,0.0,54.75928632625596,0.0682112909998977 +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.0820812920064781 +28,229.7988069023712,0.5609124195938885,0.0,66.08249443340499,0.0823161249936674 +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156 +0,241.774082389606,0.0,0.0,58.314702618296096,0.0794790410000132 +1,236.29470921743456,0.0,0.0,56.99310514220705,0.0776777919963933 +2,245.02596783164793,0.0,0.0,59.09904116536938,0.0805480420021922 +3,239.61731779511788,0.0,0.0,57.79450175680519,0.0787700420041801 +4,234.89514347109304,0.0,0.0,56.65553686571519,0.0772177090038894 +5,244.3573637645225,0.0,0.0,58.937777199610736,0.0803282499982742 +6,246.66217572690388,0.0,0.0,59.49368634772521,0.0810859170014737 +7,247.69936496973415,0.0,0.0,59.74385121923148,0.0814268749963957 +8,247.93347313702415,0.0,0.0,59.80031694136804,0.081503834000614 +9,244.9906017154224,0.0,0.0,59.0905110345544,0.080536416004179 +10,244.5686539902464,0.0,0.0,58.988739348065465,0.0803977079995093 +11,244.99022144221857,0.0,0.0,59.090419314554566,0.0805362909959512 +12,243.10761578902108,0.0,0.0,58.63634422210183,0.0799174170024343 +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349 +14,247.18260772680364,0.0,0.0,59.61921195000334,0.0812570000052801 +15,245.5469078363539,0.0,0.0,59.22468929587267,0.0807192920037778 +16,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146 +17,242.99404630361005,0.0,0.0,58.6089518287452,0.0798800830016261 +18,243.03942360273416,0.0,0.0,58.61989660693602,0.0798950000025797 +19,243.40129207930585,0.0,0.0,58.70717747835799,0.0800139579951064 +20,242.2193560611542,0.0,0.0,58.42210040669198,0.0796254170054453 +21,244.86537532136504,0.0,0.0,59.06030705298102,0.080495249996602 +22,229.17519487543,0.0,0.0,55.27591379755472,0.0753373749976162 +23,245.74083136710107,0.0,0.0,59.27146268413018,0.0807830410049064 +24,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226 +25,245.22724384220348,0.0,0.0,59.14758793507991,0.0806142080036806 +26,246.6794116137417,0.0,0.0,59.497843557651834,0.0810915830006706 +27,245.331815099925,0.0,0.0,59.17281000080416,0.0806485839930246 +28,247.67071860704505,0.0,0.0,59.73694185944898,0.0814174580009421 +0,242.90782385251904,0.8766974823241211,0.0,55.38849450826323,0.0747689999989233 +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.0778219589992659 +2,258.8651385625255,0.9342902655002208,0.0,59.02712427392467,0.0796807910010102 +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.081725957999879 +4,241.39105099810257,0.8712231796786377,0.0,55.04263588755393,0.07430212500185 +5,268.08165313176636,0.9675543036464884,0.0,61.12869868395136,0.0825177090009674 +6,261.2141409213791,0.9427682322504016,0.0,59.562750101820015,0.0804038329952163 +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.0795712500039371 +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.0776966249977704 +9,262.6748723911695,0.9480402715845252,0.0,59.89583001546517,0.0808534579991828 +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.0748128330014878 +11,259.4128304085643,0.9362669826552976,0.0,59.15201043990077,0.0798493749971385 +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.0795320000033825 +13,262.3333479240832,0.9468076491201768,0.0,59.81795468905688,0.0807483339958707 +14,263.7812174805347,0.9520332675244872,0.0,60.148101794672066,0.0811939999985043 +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.0804758339945692 +16,260.33751362128316,0.939604328615098,0.0,59.36285919000386,0.0801339999961783 +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235 +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179 +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.0806621669980813 +20,259.3887374833051,0.9361800270085772,0.0,59.14651670636333,0.0798419589991681 +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.0798660830041626 +22,263.0187002361503,0.9492812073488284,0.0,59.97423056428847,0.0809592910009087 +23,262.90255644081475,0.9488620237616412,0.0,59.94774714408369,0.080923540997901 +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067 +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.0796380419997149 +26,258.61634070403085,0.9333923098366672,0.0,58.970392717895145,0.0796042090005357 +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639 +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.0794995839969487 +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.0802607500008889 +0,252.0569260482816,0.0,0.0,59.22685631305648,0.080362166998384 +1,252.5636013837425,0.0,0.0,59.34591190800159,0.080523707998509 +2,255.97155373331972,0.0,0.0,60.14669253837193,0.0816102499957196 +3,253.97385574356483,0.0,0.0,59.6772851959471,0.0809733330024755 +4,252.33189155253675,0.0,0.0,59.2914660925491,0.080449833003513 +5,255.14612719979553,0.0,0.0,59.952738658728656,0.081347082996217 +6,244.04078157036597,0.0,0.0,57.34326975734617,0.077806415996747 +7,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253 +8,252.32235341535025,0.0,0.0,59.289224877084415,0.0804467920024762 +9,251.56057298405543,0.0,0.0,59.110226184789994,0.0802039170011994 +10,251.38231558091536,0.0,0.0,59.06834030699232,0.0801470840015099 +11,236.56595209719924,0.0,0.0,55.58687822265356,0.0754232500039506 +12,257.3785429826992,0.0,0.0,60.477298609839494,0.0820588339993264 +13,255.38228149183257,0.0,0.0,60.00822880748779,0.0814223749985103 +14,252.88574631214084,0.0,0.0,59.42160763152467,0.0806264160055434 +15,251.8723956183979,0.0,0.0,59.18349643627208,0.0803033339980174 +16,252.58816970012697,0.0,0.0,59.35168482671154,0.0805315410034381 +17,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807 +18,256.3833495792202,0.0,0.0,60.24345390802693,0.0817415409983368 +19,253.93595723964492,0.0,0.0,59.668380028049775,0.0809612499942886 +20,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426 +21,253.27297696815177,0.0,0.0,59.51259681711514,0.0807498750000377 +22,250.3815046876699,0.0,0.0,58.83317564042237,0.0798280000017257 +23,252.92717650013057,0.0,0.0,59.43134265380538,0.0806396250045509 +24,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173 +25,252.25818664902565,0.0,0.0,59.27414734714401,0.0804263340032775 +26,244.1120086467984,0.0,0.0,57.360006277495025,0.0778291250026086 +27,253.4064073264722,0.0,0.0,59.54394949916176,0.0807924159962567 +28,252.61770622229048,0.0,0.0,59.35862514524034,0.0805409579988918 +0,227.2823037447636,0.0,0.0,57.07730787818506,0.0794794169996748 +1,228.76466537890357,0.0,0.0,57.449572722321946,0.0799977910064626 +2,229.7965197297261,0.0,0.0,57.708701864789106,0.0803586250040098 +3,229.99490705767593,0.0,0.0,57.75852278973555,0.0804280000011203 +4,229.18670205564752,0.0,0.0,57.55555861272128,0.0801453749954816 +5,231.26160626838956,0.0,0.0,58.07662842157634,0.0808709580014692 +6,227.8381457495341,0.0,0.0,57.21689624346994,0.0796737920027226 +7,220.54535576053524,0.0,0.0,55.385461007929194,0.0771235419961158 +8,228.6866229862869,0.0,0.0,57.42997396959223,0.0799704999953974 +9,229.87968653815292,0.0,0.0,57.72958750987283,0.0803877079961239 +10,227.81550598444144,0.0,0.0,57.21121072893056,0.0796658749968628 +11,227.62605500780717,0.0,0.0,57.16363398607371,0.0795996249944437 +12,229.86336373993495,0.0,0.0,57.72548837252703,0.0803820000000996 +13,231.66171813641745,0.0,0.0,58.17710834412581,0.081010875001084 +14,230.9662314522403,0.0,0.0,58.002451070137006,0.0807676669937791 +15,231.48180120147975,0.0,0.0,58.131925881088705,0.0809479590025148 +16,229.71871471960463,0.0,0.0,57.68916272582404,0.0803314170043449 +17,231.9388627509407,0.0,0.0,58.246707552816034,0.0811077910038875 +18,221.67276777003045,0.0,0.0,55.668587504410795,0.0775177920004352 +19,231.92921431455932,0.0,0.0,58.24428454510795,0.0811044169968226 +20,229.2441321614661,0.0,0.0,57.569981010669885,0.0801654579991009 +21,228.92075580272544,0.0,0.0,57.48877164379768,0.0800523750003776 +22,229.27058667095508,0.0,0.0,57.57662452034042,0.0801747090008575 +23,230.96611135654717,0.0,0.0,58.002420910556886,0.0807676249969517 +24,231.36241133068287,0.0,0.0,58.1019435538211,0.0809062089974759 +25,229.37019641490616,0.0,0.0,57.601639472800365,0.0802095420003752 +26,230.27086205486523,0.0,0.0,57.82782325033272,0.0805245000010472 +27,228.54089874330737,0.0,0.0,57.39337830268453,0.0799195409999811 +28,229.6250615930292,0.0,0.0,57.66564365614186,0.0802986670023528 +0,245.52679852308864,0.8392357072842789,0.0,59.08219379281323,0.0801600000049802 +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229 +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.0804796250013168 +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.0806689580058446 +4,247.65389493149505,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214 +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083 +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.0797389169965754 +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.080351333002909 +8,252.1240294551156,0.861785717306247,0.0,60.66971449835979,0.0823138749983627 +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204 +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.0808115420004469 +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.0807958750010584 +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.0805811250029364 +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.0759737499975017 +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.0750240000052144 +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702 +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.0801142499985871 +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.0833885419997386 +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879 +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.0807840420020511 +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.0801257920029456 +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.0801382080026087 +22,242.797444696174,0.8299064967739063,0.0,58.42541737288301,0.0792689160007285 +23,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.0803952499991282 +24,248.27937873327463,0.8486443079480266,0.0,59.74455927954107,0.0810586669977055 +25,247.81495449698696,0.8470568584119051,0.0,59.63280283219813,0.0809070409959531 +26,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.0825096659973496 +27,248.93357471888788,0.8508804167312274,0.0,59.9019813378784,0.0812722499977098 +28,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.0796597500011557 +0,244.30085516419717,0.0,0.0,58.77237786122283,0.0794237919981242 +1,225.99531436860696,0.0,0.0,54.36854489113619,0.0734725419970345 +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879 +3,248.47192239445707,0.0,0.0,59.77582723178127,0.0807798329988145 +4,243.27721517189647,0.0,0.0,58.52611692864887,0.0790909999996074 +5,245.8384283162675,0.0,0.0,59.14227763182338,0.0799236669990932 +6,252.4730483757677,0.0,0.0,60.73839319531787,0.0820806249976158 +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987 +8,246.1321782239548,0.0,0.0,59.21294615469732,0.0800191669986816 +9,245.90750722117627,0.0,0.0,59.15889620443872,0.079946124998969 +10,250.79449374512456,0.0,0.0,60.3345769788476,0.0815349160038749 +11,249.24756673150785,0.0,0.0,59.96242691450618,0.0810320000018691 +12,248.5006329833621,0.0,0.0,59.782734246407195,0.0807891669974196 +13,241.8498643799761,0.0,0.0,58.18273376682212,0.0786269590025767 +14,246.26623584150497,0.0,0.0,59.24519690121452,0.0800627499993424 +15,253.02671313402087,0.0,0.0,60.87159041379928,0.0822606250003445 +16,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806 +17,252.45626002588983,0.0,0.0,60.73435435868744,0.0820751669962192 +18,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663 +19,225.67067614143417,0.0,0.0,54.29044544877944,0.0733670000045094 +20,246.5857465567506,0.0,0.0,59.322062798693686,0.0801666250044945 +21,246.7726084003519,0.0,0.0,59.367016856969904,0.0802273750014137 +22,246.30570906024255,0.0,0.0,59.25469312227967,0.0800755829986883 +23,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335 +24,246.2417577120216,0.0,0.0,59.23930810531011,0.0800547920007375 +25,245.9956844736978,0.0,0.0,59.18010933854943,0.0799747919954825 +26,246.54319742169463,0.0,0.0,59.31182659284212,0.0801527920048101 +27,245.51635537810407,0.0,0.0,59.06479533071602,0.0798189589986577 +28,232.80692876152213,0.0,0.0,56.00724064877602,0.0756870420009363 +0,248.82851645392185,0.0,0.0,60.371399972863664,0.0773350419985945 +1,240.3368936219519,0.0,0.0,58.3111411017608,0.0746958750023623 +2,248.97893642549755,0.0,0.0,60.407895244375624,0.0773817920053261 +3,251.12462953695908,0.0,0.0,60.92848869924618,0.0780486660005408 +4,249.99473921307967,0.0,0.0,60.654351869430606,0.0776974999971571 +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547 +6,251.56958945104645,0.0,0.0,61.036445991794814,0.078186958002334 +7,253.98636346091425,0.0,0.0,61.622809775468184,0.0789380830028676 +8,258.675926589324,0.0,0.0,62.76060336664463,0.0803955829978804 +9,253.03209606091505,0.0,0.0,61.39128302078818,0.0786414999965927 +10,245.9887712196412,0.0,0.0,59.682413847788496,0.0764524590049404 +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585 +12,253.69195862142328,0.0,0.0,61.551380533465895,0.0788465829973574 +13,249.9323994112021,0.0,0.0,60.639226830037956,0.0776781250024214 +14,249.64268574376183,0.0,0.0,60.56893577198762,0.0775880829969537 +15,248.90372320903617,0.0,0.0,60.389646824785515,0.0773584159978781 +16,249.89043626314705,0.0,0.0,60.62904562560264,0.0776650830011931 +17,251.38565561954871,0.0,0.0,60.99181950336761,0.0781297920038923 +18,248.0580477823997,0.0,0.0,60.18446692757648,0.0770955830012098 +19,242.71331647279524,0.0,0.0,58.88771478582841,0.075434459002281 +20,251.9422866197867,0.0,0.0,61.12687071546968,0.0783027909928932 +21,252.17301315190568,0.0,0.0,61.182850166512566,0.0783745000007911 +22,251.8146597287694,0.0,0.0,61.09590555844225,0.078263124996738 +23,248.1852757086486,0.0,0.0,60.2153352867692,0.0771351250004954 +24,252.43765573938865,0.0,0.0,61.24705841613956,0.0784567500013508 +25,247.58493442148287,0.0,0.0,60.069678975007925,0.0769485410055494 +26,252.21926527656947,0.0,0.0,61.19407197323097,0.0783888750011101 +27,249.8356029545924,0.0,0.0,60.61574183048396,0.0776480409986106 +28,254.86381530062064,0.0,0.0,61.83569934587096,0.0792107919987756 +0,258.05412357567263,0.0,0.0,60.88917522572051,0.0776646669983165 +1,257.9959768285465,0.0,0.0,60.87545520673569,0.0776471669960301 +2,256.0814273269359,0.0,0.0,60.42370757152421,0.077070958999684 +3,258.3119063629601,0.0,0.0,60.9500003777771,0.0777422500032116 +4,254.87501871078396,0.0,0.0,60.13904935872431,0.0767078749995562 +5,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612 +6,256.1942552713655,0.0,0.0,60.45032989549073,0.0771049160030088 +7,269.4083809346708,0.0,0.0,63.568269658742544,0.0810818750032922 +8,256.7634055100046,0.0,0.0,60.584623772023555,0.0772762089982279 +9,265.09209197392056,0.0,0.0,62.54981945452058,0.0797828330032643 +10,247.3756110807905,0.0,0.0,58.36952621007416,0.0744508329953532 +11,258.04927578522654,0.0,0.0,60.88803136505345,0.0776632079941919 +12,256.90531014005614,0.0,0.0,60.61810688697954,0.0773189169995021 +13,259.4555995489818,0.0,0.0,61.21986056773728,0.0780864589978591 +14,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601 +15,255.6555672710305,0.0,0.0,60.32322373810831,0.0769427910054219 +16,257.38764897090465,0.0,0.0,60.73191717291009,0.077464082998631 +17,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146 +18,236.34739083788008,0.0,0.0,55.7673618830953,0.071131750002678 +19,255.39654180892845,0.0,0.0,60.26210537064603,0.0768648340017534 +20,256.04875219815136,0.0,0.0,60.41599770967616,0.0770611250045476 +21,255.4578716622009,0.0,0.0,60.27657645962043,0.0768832920002751 +22,258.9686854110115,0.0,0.0,61.10497071495777,0.0779399160019238 +23,258.4434309763645,0.0,0.0,60.98103427532196,0.0777818340066005 +24,257.6428035065198,0.0,0.0,60.792122175695674,0.0775408749977941 +25,258.0723949714545,0.0,0.0,60.893486453938706,0.0776701660070102 +26,257.6979033528984,0.0,0.0,60.80512326304344,0.0775574579965905 +27,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646 +28,236.55450287180864,0.0,0.0,55.81623101469642,0.0711940830005914 +0,247.6358913639864,0.0,0.0,60.23755530694149,0.0770938330024364 +1,250.59815225213995,0.0,0.0,60.95812676005715,0.0780160419963067 +2,250.60497804678556,0.0,0.0,60.9597871380428,0.0780181669979356 +3,252.79538510278,0.0,0.0,61.4926047577078,0.0787000829950557 +4,249.1592469382651,0.0,0.0,60.608112317689475,0.0775680829974589 +5,251.2633310797192,0.0,0.0,61.11993184491222,0.0782231250050244 +6,246.2273696215814,0.0,0.0,59.894931683637864,0.0766553329958696 +7,248.6098367504889,0.0,0.0,60.47446801277843,0.0773970410009496 +8,247.39203882310005,0.0,0.0,60.17823805354388,0.0770179169994662 +9,255.71776095388975,0.0,0.0,62.20347415547271,0.0796098750070086 +10,249.22121548631523,0.0,0.0,60.62318619821583,0.0775873750026221 +11,249.92976133402135,0.0,0.0,60.79554033256047,0.0778079590018023 +12,247.14791645978391,0.0,0.0,60.11885516570433,0.0769419169955654 +13,238.7495165766193,0.0,0.0,58.07594016390296,0.0743273330008378 +14,250.1377439451952,0.0,0.0,60.84613220748805,0.0778727080032695 +15,250.0574405131458,0.0,0.0,60.826598357193696,0.0778477079948061 +16,252.51927631291608,0.0,0.0,61.42544115549913,0.0786141249991487 +17,247.5537152778006,0.0,0.0,60.21756593258521,0.0770682500005932 +18,246.7884238216119,0.0,0.0,60.03140840039478,0.0768299999981536 +19,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801 +20,242.33265448766724,0.0,0.0,58.94754026556956,0.0754428329964866 +21,255.49612352817607,0.0,0.0,62.14956074003047,0.0795408749982016 +22,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822 +23,240.24168874114216,0.0,0.0,58.43891179452095,0.0747918749984819 +24,253.03723326850667,0.0,0.0,61.55143444583822,0.0787753749973489 +25,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577 +26,252.68015295270183,0.0,0.0,61.46457447915958,0.0786642090024543 +27,247.46926179214807,0.0,0.0,60.197022579661535,0.0770419580003363 +28,247.49469226985136,0.0,0.0,60.20320855617205,0.0770498749989201 +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.0812097079979139 +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.0806707500014454 +2,387.06785099851174,1.270425839345776,15.004759237678492,78.69773037244646,0.0837934169976506 +3,384.2510321293888,1.2611805365729962,14.895564715740525,78.12502134662994,0.0831836249999469 +4,371.5677530253622,1.219551748597392,14.403894976677307,75.54628669689791,0.0804379170003812 +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.0769082499973592 +6,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.0817295420056325 +7,383.3779823279192,1.2583150311481424,14.861720773290225,77.94751490247413,0.0829946249941713 +8,392.08615035475583,1.2868967943871166,15.199294571545131,79.71803926311544,0.0848797910002758 +9,367.5730098278583,1.2064402877344769,14.249037992972063,74.73408485101137,0.0795731249963864 +10,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.0822060409991536 +11,382.579806971804,1.2556952770297831,14.83077935302744,77.78523175546657,0.0828218339956947 +12,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.0843364579995977 +13,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.0827404169976944 +14,380.74632391965866,1.2496774580881194,14.759704032013737,77.41245226859378,0.0824249169963877 +15,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.0817379159998381 +16,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.0794940830019186 +17,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.0817125419998774 +18,384.8167037344661,1.2630371718420337,14.917493083647802,78.24003237464706,0.0833060830045724 +19,378.67475235924377,1.242878190126144,14.679399164462836,76.99126518294923,0.0819764580010087 +20,383.49654619559766,1.2587041789441245,14.866316924286007,77.971621030809,0.0830202919969451 +21,382.5284125446302,1.2555265913378268,14.828787038233251,77.77478236071079,0.0828107080014888 +22,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.0843647500005317 +23,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.0826560839996091 +24,373.2033724819483,1.2249201438687207,14.46730007758462,75.87883702019211,0.0807919999933801 +25,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.0832666250062175 +26,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.0812299999961396 +27,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.0742695840017404 +28,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.0825761250016512 +0,245.4849858868351,0.03325453615373,0.0,59.824910540560325,0.077182166998682 +1,243.26148489011845,0.0329533303833809,0.0,59.2830413597024,0.0764830830012215 +2,227.93765961629927,0.0308774938521131,0.0,55.54861143995156,0.0716651670009014 +3,250.7231538165253,0.0339641227061128,0.0,61.101456748297075,0.078829083002347 +4,252.5889686193737,0.0342168746436431,0.0,61.55615748391402,0.0794157080017612 +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.0827996669977437 +6,226.94041043538476,0.0307424018471125,0.0,55.30558092295546,0.0713516250034445 +7,242.6599554225411,0.0328718444083637,0.0,59.13644809064636,0.07629395800177 +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.076669291993312 +9,247.36392063917748,0.0335090653805442,0.0,60.28280861959906,0.0777729170004022 +10,248.7334295032324,0.0336945854108957,0.0,60.61655915420145,0.0782035000011092 +11,247.311043310453,0.0335019023720472,0.0,60.26992236731305,0.0777562920047785 +12,226.72783872430568,0.0307136058960045,0.0,55.25377700691221,0.0712847909962874 +13,246.69360768372263,0.0334182616748472,0.0,60.119452753050254,0.0775621659995522 +14,247.48014585109556,0.0335248097874689,0.0,60.311132807656584,0.0778094590059481 +15,246.05219040943203,0.0333313723123045,0.0,59.963138789835845,0.0773604999994859 +16,249.95252500188107,0.0338597297482905,0.0,60.913653817174755,0.078586792005808 +17,250.6415207454208,0.0339530643112192,0.0,61.081562695883505,0.0788034170036553 +18,246.5275553318546,0.0333957674521612,0.0,60.07898564643816,0.0775099579986999 +19,244.4563283517981,0.0331151894272281,0.0,59.57422577958342,0.0768587499987916 +20,247.40791776784516,0.0335150254359042,0.0,60.29353075919174,0.0777867500000866 +21,250.543583961273,0.0339397973396468,0.0,61.05769541402468,0.0787726250055129 +22,245.99334947150876,0.0333234014456121,0.0,59.948799200656225,0.0773420000041369 +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.078443917002005 +24,244.25754136307833,0.0330882608186234,0.0,59.5257812127036,0.0767962500030989 +25,245.0430139869781,0.0331946645877781,0.0,59.717201593412845,0.0770432079953025 +26,249.4024129823822,0.0337852090195586,0.0,60.779591026186075,0.0784138330054702 +27,246.43412861712733,0.033383111435536,0.0,60.05621747252941,0.0774805839973851 +28,257.6022464065648,0.0348959965329944,0.0,62.77789776285696,0.0809919169987551 +29,247.07528191230236,0.0334699650382419,0.0,60.21246710379734,0.0776821670006029 +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.0830702079983893 +1,374.8739455288989,0.3746015080684854,13.247271512603714,76.14627018555758,0.0836669999989681 +2,360.3381183231657,0.3600762446906633,12.733605380424368,73.19368028439303,0.0804227919943514 +3,348.5626801398173,0.3483093642385529,12.317485698981551,70.8017944034004,0.0777946669986704 +4,364.61442878503067,0.3643494473687624,12.884721366040782,74.06230584695935,0.0813772089968551 +5,369.74521098479994,0.3694765008023982,13.06603261928481,75.10449598128749,0.0825223330029985 +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.082606374999159 +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.0820752500003436 +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.0797756669999216 +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.0821104580027167 +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.0825127500065718 +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.0837727909965906 +12,367.93805840787127,0.3676706615630981,13.002171577095016,74.73741811409886,0.0821189999987836 +13,378.27841319804594,0.3780035015605473,13.367578373368447,76.83780268085307,0.0844268330038175 +14,382.7117309698025,0.3824335974443884,13.524242673260645,77.73832035324112,0.0854162920004455 +15,372.41599349838015,0.3721453423403144,13.160412560943849,75.64699867935846,0.0831184170019696 +16,356.7682378530547,0.3565089586104289,12.607453172677896,72.46854831390174,0.0796260409988462 +17,368.93348814627194,0.3686653678787238,13.037348009529412,74.93961477971149,0.0823411669989582 +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.0823945420052041 +19,368.3876096681557,0.3681198861146177,13.018057790780574,74.82873321384412,0.0822193340063677 +20,370.1432358855347,0.3698742364408505,13.080097997771896,75.18534478924924,0.0826111669957754 +21,368.5427485912714,0.368274912291423,13.02354008012396,74.860245807602,0.0822539590008091 +22,380.3863269498703,0.3801098833983078,13.44206769472198,77.2659726616924,0.0848972919993684 +23,370.1045866985358,0.3698356153419234,13.078732215273476,75.17749417314008,0.0826025409987778 +24,361.6613717978691,0.3613985364985974,12.78036642708676,73.46246614644215,0.0807181249983841 +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.0820459999958984 +26,371.72020035590015,0.3714500548614554,13.135824667373289,75.50566569729222,0.0829631250016973 +27,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.0810689170029945 +28,360.0086099352188,0.3597469757710216,12.721961234084311,73.12674889309132,0.0803492499981075 +0,245.20605579923495,0.0,0.0,58.064741436243395,0.0789422499947249 +1,250.55095440543516,0.0,0.0,59.3304122801399,0.0806630000006407 +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149 +3,249.81764644337736,0.0,0.0,59.156765111960304,0.0804269170039333 +4,249.02622560509047,0.0,0.0,58.969356827150214,0.0801721250027185 +5,248.4707444057284,0.0,0.0,58.83781899824741,0.0799932919981074 +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263 +7,246.38859307336747,0.0,0.0,58.34476600919865,0.079322958998091 +8,246.47595340441205,0.0,0.0,58.36545291685823,0.0793510840012459 +9,251.11329706391197,0.0,0.0,59.46357490108985,0.0808440420005354 +10,250.43486224262665,0.0,0.0,59.302921680879294,0.0806256249998114 +11,251.25358918047456,0.0,0.0,59.49679604421048,0.0808892079949146 +12,249.02648340531616,0.0,0.0,58.96941787418838,0.080172207999567 +13,253.20619256589657,0.0,0.0,59.95917210720173,0.0815178340053535 +14,249.5875338986397,0.0,0.0,59.10227451070708,0.0803528339965851 +15,246.30614979515929,0.0,0.0,58.32524345859641,0.0792964170032064 +16,248.74706084391897,0.0,0.0,58.90325067156323,0.0800822500023059 +17,249.45383612969297,0.0,0.0,59.07061490768795,0.0803097910029464 +18,248.40447792783144,0.0,0.0,58.82212711049024,0.0799719580027158 +19,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705 +20,248.96720883475896,0.0,0.0,58.955381668590064,0.0801531249962863 +21,250.81174011459103,0.0,0.0,59.39216628015041,0.0807469580031465 +22,237.7471648094788,0.0,0.0,56.298477649202496,0.0765409160012495 +23,249.37748086472203,0.0,0.0,59.05253399731491,0.0802852089982479 +24,250.11596367984183,0.0,0.0,59.227406569589995,0.0805229580000741 +25,248.8819172109695,0.0,0.0,58.93518463036493,0.0801256659979117 +26,249.33903922826215,0.0,0.0,59.04343102604385,0.0802728330017998 +27,262.4534401956857,0.0,0.0,62.148918363143466,0.0844949160018586 +28,261.2161602290057,0.0,0.0,61.85593073233089,0.0840965829993365 +0,224.52516714856455,0.0,0.0,57.735973906146626,0.0753427089948672 +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632 +2,231.69330601434635,0.0,0.0,59.57923933499082,0.0777480830001877 +3,234.760649370358,0.0,0.0,60.36799748719698,0.078777374998026 +4,228.2324736502117,0.0,0.0,58.6892966634995,0.0765867500012973 +5,223.36952695819903,0.0,0.0,57.43880449425753,0.0749549169995589 +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515 +7,228.01604737457023,0.0,0.0,58.63364329527478,0.0765141249939915 +8,226.91454579476897,0.0,0.0,58.35039546485715,0.076144500002556 +9,223.1887361622084,0.0,0.0,57.392314682837515,0.0748942499994882 +10,228.57679477020545,0.0,0.0,58.777837807691775,0.0767022919972078 +11,233.5521132500369,0.0,0.0,60.05722604543105,0.0783718329985276 +12,231.26827613662832,0.0,0.0,59.46994417560664,0.0776054579982883 +13,232.72316419059683,0.0,0.0,59.844064278876445,0.0780936669980292 +14,226.37205419514888,0.0,0.0,58.21089537567897,0.075962458999129 +15,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212 +16,235.0194191984909,0.0,0.0,60.43453937305556,0.0788642090046778 +17,235.69725578504784,0.0,0.0,60.60884302004133,0.0790916670011938 +18,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004 +19,224.62400355737097,0.0,0.0,57.76138939249184,0.0753758749997359 +20,231.10611067541615,0.0,0.0,59.42824381321107,0.0775510410021524 +21,232.56050106737092,0.0,0.0,59.802235944185355,0.0780390830041142 +22,232.27069102387352,0.0,0.0,59.727712159962834,0.0779418329984764 +23,231.9585306176708,0.0,0.0,59.64744104694712,0.0778370830012136 +24,230.3707829163002,0.0,0.0,59.23915648348338,0.0773042910004733 +25,230.7023166464104,0.0,0.0,59.32440938868658,0.0774155420003808 +26,239.12095968349055,0.0,0.0,61.489238217841425,0.0802405409995117 +27,235.103850013608,0.0,0.0,60.45625050415228,0.0788925410015508 +28,229.96015861058865,0.0,0.0,59.13356567377203,0.0771664999992935 +0,242.1989277900244,0.0,0.0,58.23108794513989,0.0794612079989747 +1,242.4689300777569,0.0,0.0,58.29600370304932,0.0795497910003177 +2,245.1891581817424,0.0,0.0,58.950019158028326,0.0804422499932115 +3,244.62667452650356,0.0,0.0,58.81478307133387,0.0802577089998521 +4,230.49772748177529,0.0,0.0,55.41780701763689,0.0756222499985597 +5,248.5687694470221,0.0,0.0,59.76256792777146,0.0815510410029674 +6,245.56152502051543,0.0,0.0,59.03954608671583,0.0805644170031882 +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579 +8,245.84270436380183,0.0,0.0,59.107149107161334,0.0806566669998574 +9,247.49612431036985,0.0,0.0,59.50467540175467,0.0811991250011487 +10,245.79812410417784,0.0,0.0,59.09643082264013,0.0806420410008286 +11,243.7852944737544,0.0,0.0,58.61249284530364,0.0799816670041764 +12,241.62857108664963,0.0,0.0,58.0939589674959,0.0792740839970065 +13,248.07080308887888,0.0,0.0,59.642843521642384,0.0813876669999444 +14,245.79787110638867,0.0,0.0,59.09636999521763,0.0806419579967041 +15,246.7866989049236,0.0,0.0,59.33411059557655,0.0809663750042091 +16,243.67810491245837,0.0,0.0,58.58672161325243,0.0799464999945485 +17,244.35603522014415,0.0,0.0,58.749714157140794,0.0801689170039026 +18,240.2579794931515,0.0,0.0,57.764432159321714,0.0788244170034886 +19,243.21099669998037,0.0,0.0,58.47441632912548,0.0797932500063325 +20,261.55407699968373,0.0,0.0,62.884582517155906,0.0858112920031999 +21,239.347894129501,0.0,0.0,57.54562334240464,0.0785258340038126 +22,245.55783996400805,0.0,0.0,59.03866010075577,0.0805632080009672 +23,224.7037046013891,0.0,0.0,54.02476924087008,0.0737213330066879 +24,245.09403272066805,0.0,0.0,58.92714845773173,0.0804110410026623 +25,245.82682726665857,0.0,0.0,59.10333182915559,0.0806514580035582 +26,246.27298345658295,0.0,0.0,59.210599687728774,0.0807978340017143 +27,229.8491343612716,0.0,0.0,55.26186791672805,0.0754094580042874 +28,244.80002731204428,0.0,0.0,58.85646170877651,0.0803145829995628 +29,244.9462070527816,0.0,0.0,58.89160722084109,0.0803625420012394 +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328 +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.0816092919994844 +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.083558999998786 +3,360.8727014356981,1.3071714929106786,13.5385618908606,73.38834238769952,0.0766691250028088 +4,405.9071867253503,1.4702977009456415,15.228083331222717,82.54671378166245,0.0862369159949594 +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.0799180419999174 +6,399.0524005201552,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465 +7,389.3215008612753,1.410220184232304,14.60585190812029,79.17379034332791,0.0827132080012233 +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.0822733329987386 +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927 +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093 +11,387.03474113975176,1.4019369666122965,14.520061439913068,78.70874683980463,0.0822273750018212 +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.0788562090019695 +13,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.082806749996962 +14,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.0829413329993258 +15,393.57240572328834,1.4256180284931532,14.765329580821945,80.03826931397275,0.0836163329950068 +16,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.0819364579947432 +17,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.0825907089965767 +18,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.0801123339988407 +19,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.0808422499976586 +20,367.5496145188862,1.3313569478045033,13.789054102260929,74.74618292673854,0.0780876670032739 +21,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166 +22,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.0810130409954581 +23,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.0816602499980945 +24,379.5121562547591,1.374688276213875,14.237842860786564,77.17892750743613,0.0806291659973794 +25,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.0827884579994133 +26,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.0803707919985754 +27,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335 +28,390.5568650001384,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184 +0,228.1520204661302,0.0,0.0,57.746086091398226,0.0799198750028153 +1,227.8495358539531,0.0,0.0,57.66952616253846,0.0798139170001377 +2,229.0306925870703,0.0,0.0,57.968481123615135,0.0802276670001447 +3,230.2044726270147,0.0,0.0,58.265569017469915,0.0806388330020126 +4,229.10003753664316,0.0,0.0,57.98603257645722,0.0802519579956424 +5,230.7167820382236,0.0,0.0,58.39523634763275,0.0808182909968309 +6,230.54216782071205,0.0,0.0,58.3510408694748,0.0807571249970351 +7,228.80932881388665,0.0,0.0,57.91245316700242,0.0801501249952707 +8,230.55620182047025,0.0,0.0,58.35459292462026,0.0807620409977971 +9,230.03128580010983,0.0,0.0,58.22173481694031,0.0805781670060241 +10,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297 +11,230.31081241713733,0.0,0.0,58.29248399574981,0.0806760830018902 +12,232.7656686097756,0.0,0.0,58.91381681039013,0.0815359999978682 +13,229.0882616679938,0.0,0.0,57.98305206230952,0.0802478330006124 +14,231.4391589588723,0.0,0.0,58.578072509964315,0.0810713340033544 +15,231.1610539996254,0.0,0.0,58.50768315778455,0.0809739160031313 +16,223.1157480108247,0.0,0.0,56.47138765923167,0.0781557080044876 +17,229.29047568345513,0.0,0.0,58.03423314728023,0.0803186669945716 +18,226.68384051120097,0.0,0.0,57.37448453423561,0.0794055830047 +19,229.939339682268,0.0,0.0,58.19846292819781,0.0805459589973907 +20,229.9903656561629,0.0,0.0,58.211377783281776,0.0805638329984503 +21,229.92208836236088,0.0,0.0,58.1940965579044,0.0805399159944499 +22,234.3581505243959,0.0,0.0,59.31687963469814,0.0820938340038992 +23,232.28523543551043,0.0,0.0,58.79221746892648,0.0813677080004708 +24,224.9047315536089,0.0,0.0,56.92418574301216,0.0787823749997187 +25,229.36006045625183,0.0,0.0,58.051845300231406,0.080343041998276 +26,227.33044351249188,0.0,0.0,57.53814204865611,0.0796320829977048 +27,226.7574704574646,0.0,0.0,57.393120534947585,0.0794313750011497 +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467 +1,228.78073899886232,0.0,0.0,56.00141900241923,0.0778383330034557 +2,235.23590932049515,0.0,0.0,57.58152884687401,0.0800345829993602 +3,236.26866601830895,0.0,0.0,57.83432915172009,0.0803859589941566 +4,236.1306451621364,0.0,0.0,57.80054412317523,0.0803390000000945 +5,236.65994415723756,0.0,0.0,57.930107017901115,0.0805190840037539 +6,230.7082285871409,0.0,0.0,56.4732338611715,0.0784941249949042 +7,236.48396084260233,0.0,0.0,57.88702946083294,0.0804592089989455 +8,233.11602697824952,0.0,0.0,57.062619694803665,0.0793133330007549 +9,234.8972924876633,0.0,0.0,57.4986415233184,0.0799193750062841 +10,235.4089534558389,0.0,0.0,57.62388694560078,0.0800934580038301 +11,236.8091074367793,0.0,0.0,57.966619511714825,0.0805698339972877 +12,235.2139889440503,0.0,0.0,57.576163132123064,0.0800271250045625 +13,235.677400358321,0.0,0.0,57.68959792953932,0.0801847920010914 +14,235.25183085336997,0.0,0.0,57.58542615237964,0.0800400000007357 +15,224.63833749671065,0.0,0.0,54.98743345794819,0.0764289589933469 +16,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743 +17,236.4523617407738,0.0,0.0,57.87929456781116,0.080448458000319 +18,230.33752474602355,0.0,0.0,56.382492213849865,0.0783680000022286 +19,235.6896449605586,0.0,0.0,57.69259518841446,0.0801889579961425 +20,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569 +21,234.47784821362225,0.0,0.0,57.395969092756594,0.0797766670002602 +22,236.01075312636675,0.0,0.0,57.77119670450892,0.0802982089953729 +23,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387 +24,249.0360862322947,0.0,0.0,60.95956448452025,0.0847298330045305 +25,237.69685978979257,0.0,0.0,58.183925355331866,0.0808718749976833 +26,236.12660378259105,0.0,0.0,57.799554865992754,0.0803376249969005 +27,234.46707023916116,0.0,0.0,57.39333083803974,0.0797729999976581 +28,241.69022142718063,0.0,0.0,59.161428615711976,0.0822305410038097 +0,229.97339319686975,0.0,0.0,56.76642090692848,0.0792393329975311 +1,226.07553485511937,0.0,0.0,55.804277138088366,0.0778962920012418 +2,231.8659096318397,0.0,0.0,57.233567923491464,0.0798914159968262 +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506 +4,238.15693061363416,0.0,0.0,58.78643775779073,0.0820590419971267 +5,232.81398613818936,0.0,0.0,57.467590256524325,0.0802180840037181 +6,232.3516788377947,0.0,0.0,57.35347474760509,0.0800587920020916 +7,235.3009818299224,0.0,0.0,58.08147798617912,0.0810750000018742 +8,232.87529353460332,0.0,0.0,57.48272331788053,0.080239208000421 +9,234.6029875368596,0.0,0.0,57.90918571671333,0.0808344999968539 +10,233.90293845796447,0.0,0.0,57.73638624580215,0.080593291997502 +11,236.10309480251144,0.0,0.0,58.27947081475786,0.0813513750035781 +12,228.53955331278615,0.0,0.0,56.41249318841474,0.0787452909935382 +13,236.0381566565893,0.0,0.0,58.26344154253167,0.0813290000005508 +14,233.2262264846764,0.0,0.0,57.56934728457961,0.0803601250008796 +15,223.59820949155468,0.0,0.0,55.1927764233464,0.0770427079987712 +16,232.78762196853413,0.0,0.0,57.46108254912954,0.0802089999997406 +17,234.0781596831433,0.0,0.0,57.77963769190232,0.0806536659947596 +18,234.60528613661103,0.0,0.0,57.90975310096232,0.0808352919993922 +19,232.4469688391939,0.0,0.0,57.37699604392746,0.0800916250009322 +20,236.41351504810697,0.0,0.0,58.35609466273675,0.0814583329993183 +21,216.02874452302436,0.0,0.0,53.32433665094193,0.0744345830025849 +22,232.45519093886716,0.0,0.0,57.37902557945026,0.0800944579968927 +23,233.9956889809203,0.0,0.0,57.75928069960073,0.0806252499969559 +24,232.5895425232549,0.0,0.0,57.41218880099883,0.0801407500039204 +25,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317 +26,229.88862389489532,0.0,0.0,56.74549653037789,0.0792101249971892 +27,233.92301053494205,0.0,0.0,57.74134081882622,0.0806002080062171 +28,234.3584718660642,0.0,0.0,57.84882969337619,0.0807502499956172 +0,390.8727972970198,1.8664702076173023,14.049430290064786,79.44375920058373,0.0834474579969537 +1,386.2283609945746,1.8442923992621632,13.882491878082469,78.49979103041318,0.0824559169996064 +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.0830597499953 +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.0818107090017292 +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.0824191249994328 +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.0820837080027558 +6,363.3642991549768,1.735113427116142,13.060671978656051,73.85273696143435,0.0775746670042281 +7,388.22708634477254,1.8538365817817757,13.954333542866456,78.90602614456611,0.082882624999911 +8,375.0914257577759,1.7911120347870877,13.482188770942804,76.2362413352104,0.0800782919977791 +9,386.50588680771034,1.8456176223670837,13.892467193817684,78.55619734475168,0.0825151660028495 +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.0819437079990166 +11,382.40578027890945,1.826039061932629,13.745094029820152,77.72286261789608,0.0816398340029991 +12,399.92533106121743,1.909697274558687,14.374812212132664,81.2836603589434,0.0853800839977338 +13,392.779794759326,1.875576377128228,14.1179749114743,79.8313508883124,0.0838545830047223 +14,385.4919894836888,1.840776126202716,13.856023931780443,78.35012566255561,0.0822987089995876 +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.0750168340018717 +16,363.50267089671735,1.7357741708039116,13.065645576596715,73.88086061549012,0.0776042079960461 +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.0824202080038958 +18,383.1556137558722,1.8296196176916977,13.772045849533868,77.8752640912048,0.0817999159989995 +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.0846969580015866 +20,377.543333802351,1.8028202256580403,13.57031951677143,76.73458451391768,0.0806017499999143 +21,384.0859896272982,1.8340622876802744,13.805487038175158,78.06436028108223,0.0819985420021112 +22,377.9580697399782,1.804800645572044,13.585226677578657,76.81887838698462,0.0806902920012362 +23,377.9699719544116,1.804857480247668,13.585654487682444,76.82129747745074,0.0806928330057417 +24,393.94456555862206,1.8811383144403728,14.159841130514804,80.06808716554386,0.0841032499956782 +25,367.0360156994838,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779 +26,423.4076839939201,2.021828669878938,15.218855805997825,86.05638029430169,0.0903933329973369 +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.0836692079974454 +28,397.13519183039904,1.896373984256985,14.27452417240712,80.71657267537456,0.0847844169984455 +29,368.653767842532,1.7603713519134625,13.250795267130425,74.92780608780754,0.0787039160059066 +0,260.20760817827636,0.0668398685276846,0.0,63.29735549571737,0.0778534579949337 +1,264.69906999108105,0.0679935961960136,0.0,64.3899355976249,0.0791972920051193 +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.0786077919983654 +3,261.1013891414675,0.0670694552122957,0.0,63.51477408604411,0.078120874997694 +4,257.7910068686657,0.0662191129896392,0.0,62.7095000011884,0.0771304169975337 +5,259.7389946089577,0.0667194951474332,0.0,63.183361904619304,0.07771325000067 +6,258.06479595470574,0.0662894415501427,0.0,62.77610114798519,0.0772123339993413 +7,256.0824062134452,0.0657802225053802,0.0,62.29387071259507,0.0766192080045584 +8,245.48280118105225,0.0630574881019913,0.0,59.71544123258579,0.0734478329977719 +9,255.98353170352672,0.0657548244807415,0.0,62.26981878326222,0.0765896250013611 +10,265.5946591131205,0.0682236473447522,0.0,64.60779403548037,0.0794652500044321 +11,260.294366973363,0.0668621543728135,0.0,63.318460191054406,0.0778794160069082 +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.0770466250032768 +13,260.85629013818584,0.067006496310862,0.0,63.45515200638633,0.0780475419960566 +14,263.58442150290836,0.0677072749814817,0.0,64.1187894074632,0.078863791997719 +15,262.31742217161724,0.067381819206683,0.0,63.81058278872888,0.0784847090035327 +16,268.16277907116,0.0688833236761263,0.0,65.2325075212917,0.0802336249980726 +17,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.0772270000015851 +18,252.13699183642044,0.0647667587558233,0.0,61.33412054176475,0.07543875000556 +19,259.3735737404644,0.0666256290111647,0.0,63.09447067357302,0.0776039170013973 +20,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.0781142080013523 +21,260.63695006654126,0.066950154139877,0.0,63.40179597046354,0.0779819160015904 +22,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589 +23,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505 +24,257.15221136999554,0.0660550247546867,0.0,62.55410844268836,0.076939291000599 +25,263.19769031243703,0.067607934834944,0.0,64.02471428869198,0.0787480830040294 +26,259.31383057100317,0.0666102827051125,0.0,63.079937721741594,0.0775860419962555 +27,261.2983025863787,0.0671200366263495,0.0,63.56267468515301,0.078179791002185 +0,362.1477510943677,0.2358390787664502,14.28510991385356,76.17602244156343,0.0828109170033712 +1,336.858148535045,0.2193698985715243,13.287548142046615,70.85647723860235,0.0770280419965274 +2,362.74505428268986,0.2362280565614316,14.308670854578146,76.30166226934243,0.0829474999991362 +3,360.94585457223286,0.2350563756633761,14.237700468753069,75.9232093392705,0.0825360840026405 +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.0815027909993659 +5,349.6413415549495,0.2276946126043954,13.791787963466238,73.54535987121973,0.0799511250006617 +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.082421457998862 +7,359.44475760769,0.2340788262400065,14.178488903680394,75.60746087552211,0.0821928340010345 +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.0812284160056151 +9,347.2399143905892,0.2261307471145338,13.697062396651766,73.04023131799444,0.0794019999957527 +10,368.19860405248215,0.2397795356188831,14.523789014629491,77.44879000489925,0.084194542003388 +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.0862538340006722 +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242 +13,356.8769656271249,0.2324066200939505,14.07720098854786,75.06733829034602,0.0816056670009857 +14,360.27602202196147,0.23462016505291,14.211278568919123,75.78231331208995,0.0823829159999149 +15,355.8179236856387,0.2317169472322514,14.035426518067805,74.84457395601721,0.0813635000013164 +16,367.0209393602304,0.2390126128497174,14.47733540689717,77.20107395045873,0.0839252500009024 +17,364.3840903443813,0.2372954351484481,14.373323500420288,76.64642555294876,0.0833222919973195 +18,350.5090521147184,0.2282596859989792,13.826015266223887,73.72787857767031,0.0801495409978088 +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033 +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.083118957998522 +21,365.90504594881264,0.2382859169822019,14.4333184000648,76.96635118525121,0.0836700829968322 +22,351.0808508987014,0.2286320547298269,13.84857017220666,73.8481536777341,0.0802802920006797 +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.0797767499971087 +24,340.5454724450315,0.2217711700730505,13.43299658728192,71.63208793359534,0.0778712080063996 +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.0810339579984429 +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.0822699170021223 +27,360.8257711959278,0.2349781745624239,14.232963716352534,75.89795038366293,0.0825086250042659 +28,370.2476265409491,0.2411139069482411,14.604613792293463,77.87979194428189,0.0846630840023863 +29,362.5628409920885,0.2361093950083374,14.301483354790728,76.26333458769301,0.0829058339950279 +0,246.0739988250765,0.0,0.0,60.74658181579221,0.0778715830019791 +1,245.0826823466955,0.0,0.0,60.50186239055085,0.0775578749962733 +2,244.5910373393436,0.0,0.0,60.38049339664647,0.0774022910045459 +3,244.5508800746296,0.0,0.0,60.37058005115652,0.077389582998876 +4,244.58959003848383,0.0,0.0,60.38013611151879,0.077401832997566 +5,244.22606079392185,0.0,0.0,60.29039416762119,0.077286792002269 +6,242.8457992005612,0.0,0.0,59.94965855878557,0.0768499999976484 +7,244.85397754171655,0.0,0.0,60.44540362118208,0.0774854999981471 +8,241.9405926628893,0.0,0.0,59.72619649752176,0.0765635419957107 +9,245.51138657380295,0.0,0.0,60.607693630466905,0.0776935410031001 +10,244.7109876747656,0.0,0.0,60.41010470421792,0.0774402500028372 +11,248.3810623596752,0.0,0.0,61.31611059342773,0.0786016670026583 +12,241.60984521505156,0.0,0.0,59.644547168472904,0.0764588749952963 +13,245.731929101319,0.0,0.0,60.66213743499555,0.0777633329998934 +14,245.77880451553304,0.0,0.0,60.67370924346901,0.0777781670039985 +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489 +16,259.02748853123154,0.0,0.0,63.94432000020854,0.0819707919945358 +17,245.3989443932433,0.0,0.0,60.579935809024875,0.0776579580051475 +18,247.6429406685668,0.0,0.0,61.133895609670745,0.0783680839958833 +19,246.88414631211123,0.0,0.0,60.94657730836352,0.0781279590009944 +20,245.0546373862557,0.0,0.0,60.4949391256305,0.0775490000014542 +21,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792 +22,244.31098572658755,0.0,0.0,60.3113589968799,0.0773136670031817 +23,243.40301102024273,0.0,0.0,60.087213577010274,0.0770263329977751 +24,245.98617616377825,0.0,0.0,60.72490164435878,0.0778437909975764 +25,246.44029623831136,0.0,0.0,60.83700711829563,0.077987500000745 +26,250.5241978502783,0.0,0.0,61.84517159151716,0.0792798749971552 +27,245.67623416012847,0.0,0.0,60.648388411051904,0.0777457080039312 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/mac_report.md new file mode 100644 index 000000000..99df8502d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 520.34 ms | 78.33 ms | +| **Average Power** | 4.871 W | 4.426 W | +| **Total Energy** | 2281.01 J | 312.04 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.12% | 0.00e+00 | +6.230 | large | βœ… | +| `gpu_mj` | +81.23% | 4.98e-169 | +1.546 | large | βœ… | +| `ane_mj` | +86.55% | 2.91e-48 | +0.729 | medium | βœ… | +| `dram_mj` | +87.13% | 0.00e+00 | +20.514 | large | βœ… | +| `time_s` | +84.73% | 0.00e+00 | +74.836 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.1% lower energy (Cohen’s d = +6.230, large) +- **`gpu_mj`**: 81.2% lower energy (Cohen’s d = +1.546, large) +- **`ane_mj`**: 86.6% lower energy (Cohen’s d = +0.729, medium) +- **`dram_mj`**: 87.1% lower energy (Cohen’s d = +20.514, large) +- **`time_s`**: 84.7% lower time (Cohen’s d = +74.836, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/with_smell.csv new file mode 100644 index 000000000..15b55e866 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1754.9343348502491,0.9659333379641896,0.0,478.1370022922739,0.5167249579972122 +1,1749.9576772420037,0.9631941360465022,0.0,476.7810973430186,0.5152596249972703 +2,1765.8187969550952,0.9719242543216248,0.0,481.1025058892042,0.5199297919971286 +3,1744.1414360162792,0.9599928189430628,0.0,475.1964453768161,0.5135470839959453 +4,1751.8730274703044,0.9642483638900476,0.0,477.3029401255735,0.5158235830022022 +5,1770.1285132468035,0.9742963650956062,0.0,482.2767007223251,0.5211987500006217 +6,1761.33035229714,0.969453769674633,0.0,479.8796159889433,0.5186082090003765 +7,1753.9604561917197,0.9653973054501948,0.0,477.8716661978465,0.5164382080038195 +8,1755.9675055029504,0.966502005382356,0.0,478.4184926642661,0.517029165996064 +9,1753.8309770174317,0.9653260388229864,0.0,477.8363892173782,0.5164000840013614 +10,1754.0766355703215,0.9654612517373848,0.0,477.9033196100055,0.5164724159985781 +11,1756.588176151927,0.9668436286897564,0.0,478.5875962014294,0.5172119170019869 +12,1756.321002261384,0.96669657351921,0.0,478.51480389200896,0.5171332500030985 +13,1761.6994107051369,0.9696569030984088,0.0,479.9801670337124,0.5187168749980628 +14,1754.4680583884178,0.9656766947552406,0.0,478.0099639038441,0.5165876669998397 +15,1774.358559978593,0.976624624950258,0.0,483.42918935037767,0.5224442500039004 +16,1748.1307691525826,0.962188587637126,0.0,476.2833508803774,0.5147217080011615 +17,1751.65354389843,0.9641275579459168,0.0,477.2431411832288,0.5157589579976047 +18,1750.447303023146,0.9634636309533716,0.0,476.914497321919,0.5154037909960607 +19,1744.4536070151348,0.9601646409702193,0.0,475.2814972802585,0.5136389999970561 +20,1753.692293957126,0.9652497062852384,0.0,477.798604611193,0.5163592499957304 +21,1756.044916544988,0.9665446131909476,0.0,478.43958352951904,0.5170519589955802 +22,1758.8267386074654,0.968075755762536,0.0,479.19749910245525,0.5178710420004791 +23,1752.6821873344052,0.9646937335389036,0.0,477.52339810175727,0.5160618329973659 +24,1766.5958315849296,0.9723519419215564,0.0,481.3142112511703,0.5201585830000113 +25,1772.717739954104,0.9757215012653548,0.0,482.98214312635065,0.5219611249995069 +26,1752.9806340260625,0.9648580015706766,0.0,477.6047107774849,0.5161497079971014 +27,1751.227173545069,0.9638928794565556,0.0,477.126975330995,0.5156334170023911 +28,1751.2059468821633,0.9638811960898636,0.0,477.1211920644825,0.5156271669984562 +29,1757.8863946286374,0.967558181070272,0.0,478.9412996297846,0.5175941659981618 +0,2657.2302568272225,3.2206818339172196,88.19971397258719,547.7172043805472,0.5387941250010044 +1,2655.7550291576613,3.218893792047667,88.15074770097205,547.4131255101064,0.5384950000006938 +2,2631.4800438270404,3.189471424877165,87.3450039166882,542.409484193173,0.5335728749996633 +3,2669.88938949099,3.236025268494856,88.6199003215935,550.3265472234065,0.5413609579991316 +4,2657.1776492212534,3.2206180711475327,88.1979678025715,547.7063607245273,0.5387834580033086 +5,2629.639447924509,3.1872405403794315,87.28391021518256,542.030094398277,0.5331996659951983 +6,2682.5466727478065,3.2513664615086095,89.0400252844389,552.9355088603079,0.5439274160016794 +7,2626.5176171264575,3.1834567419246245,87.18028931791498,541.3866121735565,0.5325666669959901 +8,2667.8957102100285,3.2336088401005334,88.55372542316981,549.915603369597,0.540956708995509 +9,2636.6444724943553,3.1957309432416907,87.51642343523338,543.47399353504,0.5346200419953675 +10,2646.795163355197,3.2080340342415106,87.85334870855138,545.5662879481969,0.5366782500059344 +11,2640.0918077072843,3.199909267595471,87.63084858863014,544.1845698204548,0.5353190419991734 +12,2658.6541147687635,3.2224076133804846,88.24697516226348,548.0106947505187,0.539082834002329 +13,2646.495348756272,3.2076706455476565,87.8433971577582,545.5044891584483,0.5366174580049119 +14,2646.851676931325,3.2081025312216047,87.85522452689166,545.5779367158741,0.5366897089988925 +15,2627.7322775701255,3.184928964670564,87.22060675123868,541.6369820542878,0.5328129580011591 +16,2634.762163402664,3.1934495004943595,87.45394517499658,543.086005677822,0.5342383750030422 +17,2616.753659151691,3.1716223884674246,86.85620061750895,539.3740324387413,0.5305868750001537 +18,2606.2445885045313,3.158884925149107,86.50737987726043,537.20786758317,0.5284560000000056 +19,2616.0648480189943,3.170787518588769,86.83333735801952,539.2320523800025,0.5304472079951665 +20,2636.05594483369,3.1950176214132218,87.49688881974333,543.3526842415861,0.5345007089999854 +21,2619.521223253956,3.1749767998532894,86.94806257098227,539.9444920250501,0.5311480410018703 +22,2617.590015202315,3.172636089381002,86.88396123940265,539.5464249503566,0.5307564589966205 +23,2623.651619066763,3.1799830241829334,87.08516011017637,540.7958630501101,0.5319855420020758 +24,2680.8971894189067,3.249367213991731,88.98527505816938,552.5955118294687,0.5435929579980439 +25,2609.698088455142,3.1630707214404854,86.62200965278161,537.9197145649725,0.5291562499987776 +26,2652.297213840436,3.214702765339081,88.03597468829628,546.7003890304774,0.5377938749952591 +27,2644.209864140843,3.2049005360459684,87.7675365548422,545.0333974113175,0.5361540410012822 +28,2611.6697816859955,3.165460501759429,86.6874547825577,538.3261265804629,0.5295560409940663 +29,2654.1871229077806,3.216993419596578,88.09870520957712,547.0899434201431,0.5381770829990273 +0,1851.2929834808735,1.525707090391358,0.0,489.00607477143456,0.5257506659982027 +1,1815.007070744064,1.4958027614505225,0.0,479.4214050755753,0.5154457909957273 +2,1824.3835418159383,1.5035301976396394,0.0,481.8981342345893,0.5181086250013323 +3,1816.9370047177165,1.4973932789827893,0.0,479.9311836170838,0.5159938750002766 +4,1807.6972774020392,1.4897785374996202,0.0,477.4905743634894,0.5133698749996256 +5,1815.024824844166,1.4958173931466672,0.0,479.426094696764,0.5154508330015233 +6,1813.8409566037556,1.4948417311717122,0.0,479.1133841931024,0.5151146249991143 +7,1811.0336499636064,1.4925281440280254,0.0,478.3718538070269,0.5143173749966081 +8,1817.0066970315177,1.4974507145471547,0.0,479.9495923536358,0.5160136669946951 +9,1811.1938662876305,1.4926601831940254,0.0,478.41417382683176,0.5143628750010976 +10,1810.1798942357495,1.4918245378570545,0.0,478.1463402113843,0.5140749159982079 +11,1820.6221276923989,1.5004303013782752,0.0,480.9045830395303,0.5170404169984977 +12,1833.386465897124,1.5109497823447535,0.0,484.2761935724085,0.5206653749992256 +13,1812.1079196707988,1.4934134825043668,0.0,478.6556146257886,0.5146224579948466 +14,1817.8033770455752,1.498107282879162,0.0,480.16002979924787,0.5162399170003482 +15,1815.245345843485,1.4959991312374197,0.0,479.4843437741623,0.5155134589949739 +16,1814.2052567911392,1.495141962082693,0.0,479.20961153597057,0.5152180829973076 +17,1823.507045929918,1.502807850609789,0.0,481.66661398544414,0.5178597080011969 +18,1835.8032074173789,1.5129414928443867,0.0,484.9145589176576,0.5213517079973826 +19,1815.3267709568293,1.496066236160235,0.0,479.5058516475349,0.5155365829996299 +20,1817.835656233042,1.4981338851434334,0.0,480.1685561205276,0.5162490840011742 +21,1813.5350490943129,1.4945896234500682,0.0,479.0325808671185,0.5150277499997173 +22,1814.531999481375,1.495411240713182,0.0,479.2959183290272,0.5153108750018873 +23,1817.4332034128167,1.4978022114824598,0.0,480.06225102692264,0.5161347909961478 +24,1821.465316194058,1.5011251987753895,0.0,481.1273053763877,0.5172798749990761 +25,1816.57387709804,1.4970940144206697,0.0,479.83526599976256,0.5158907500008354 +26,1816.7858837805795,1.497268735602917,0.0,479.89126608001936,0.5159509580043959 +27,1851.948081561477,1.5262469767277709,0.0,489.17911434099193,0.5259367079997901 +28,1831.3319716804565,1.5092566109118646,0.0,483.7335133151516,0.5200819169986062 +29,1819.9536770921384,1.4998794108225963,0.0,480.728016495429,0.5168505830006325 +0,1798.1720573041905,1.3072495663211317,0.0,483.6823395388187,0.5218875000064145 +1,1778.4095800113162,1.2928824818335258,0.0,478.3665182784046,0.5161517919987091 +2,1779.3928443092848,1.2935973032110897,0.0,478.6310021881031,0.5164371669961838 +3,1788.721435880799,1.3003790776451396,0.0,481.14025872870167,0.5191446250028093 +4,1773.9815157607254,1.289663332115503,0.0,477.17543288273623,0.5148666250024689 +5,1777.9932479026747,1.292579813372932,0.0,478.2545309479849,0.5160309589991812 +6,1778.2917123371087,1.2927967934449398,0.0,478.3348135746278,0.5161175829998683 +7,1777.008977493155,1.2918642605643114,0.0,477.9897764087952,0.5157452919956995 +8,1807.2129482028497,1.3138221858090284,0.0,486.11420874934055,0.5245114580029622 +9,1754.4484513303544,1.275463028033475,0.0,471.9213203723859,0.5091975000032107 +10,1775.5038586790918,1.290770057198758,0.0,477.5849211635405,0.5153084579942515 +11,1786.1638599055125,1.2985197505184911,0.0,480.45230769184184,0.5184023340043495 +12,1780.7071642069795,1.2945527980477989,0.0,478.9845352776855,0.5168186250011786 +13,1775.8797060100978,1.2910432937105063,0.0,477.6860186728873,0.5154175410061725 +14,1780.113098568184,1.2941209194377807,0.0,478.8247401919788,0.5166462080014753 +15,1785.158912954736,1.2977891661118202,0.0,480.18199146137346,0.5181106660020305 +16,1777.3925771953193,1.292143132957116,0.0,478.09295919413296,0.5158566249956493 +17,1790.8697154837926,1.3019408512073205,0.0,481.71811494670857,0.5197681249992456 +18,1803.151834893606,1.3108698050339378,0.0,485.021827862557,0.5233327919995645 +19,1790.2618712334158,1.301498955711576,0.0,481.5546136132831,0.5195917090022704 +20,1815.5910112672468,1.3199129373937035,0.0,488.3677868356704,0.5269430419939454 +21,1782.178110375644,1.2956221583091028,0.0,479.380198574368,0.5172455409992835 +22,1787.922647963148,1.2997983683883751,0.0,480.9253963036988,0.5189127909980016 +23,1801.2898191339896,1.3095161418600751,0.0,484.5209724882278,0.5227923749989714 +24,1840.8703326220395,1.3382907014923673,0.0,495.16755955217593,0.5342799159989227 +25,1787.1828714348917,1.299260559705491,0.0,480.72640709103166,0.5186980840007891 +26,1795.5368124903796,1.3053337748783658,0.0,482.9734967049953,0.5211226670071483 +27,1806.5717961022324,1.3133560759047658,0.0,485.94174808476333,0.5243253749940777 +28,1786.9277584928166,1.2990750956496262,0.0,480.6577853903617,0.518624042000738 +29,1783.093470454418,1.2962876141319446,0.0,479.62641722881955,0.5175112080032704 +0,2687.8501392051385,4.536624830061914,90.5323513881473,545.295633066339,0.533217666001292 +1,2715.9020526639206,4.5839715944040265,91.47719784715092,550.9866445126663,0.5387826250007492 +2,2673.3710411979728,4.512186624010875,90.04466542327584,542.3581966375424,0.5303452920052223 +3,2703.820067538137,4.563579299119931,91.0702516015551,548.5355206081875,0.5363857920019655 +4,2705.407081577771,4.5662579035528355,91.1237055164882,548.8574849218985,0.5367006250016857 +5,2719.8013326503037,4.59055290269483,91.60853366113064,551.7777080908264,0.5395561670011375 +6,2670.1455514399586,4.506742556757318,89.93602425764236,541.7038277596462,0.529705417000514 +7,2681.5195141422946,4.525939832996414,90.31912284376668,544.0113121322969,0.5319617919958546 +8,2686.408260218842,4.5341911884255115,90.48378592196204,545.0031129205282,0.532931624999037 +9,2702.8992774628973,4.562025165183043,91.03923748754984,548.3487159944647,0.5362031249969732 +10,2673.7677934425333,4.512856272983414,90.0580288593896,542.4386874592636,0.5304240000041318 +11,2688.1582638770965,4.537144891064263,90.54272966432654,545.3581436340257,0.5332787919978728 +12,2691.1459936483657,4.542187660699427,90.64336258189886,545.9642771283349,0.5338715000034426 +13,2656.138394417006,4.483100905229939,89.46423424113277,538.8621360131899,0.5269266670002253 +14,2678.044504222127,4.520074618988164,90.2020773230432,543.3063220338199,0.5312724169998546 +15,2659.0881063671914,4.488079507377266,89.56358663986693,539.4605566698249,0.5275118330027908 +16,2692.3906558823523,4.544288434664978,90.68528538000552,546.2167870696205,0.534118417002901 +17,2691.348679635582,4.542529759490167,90.65018946511994,546.0053968998952,0.5339117089970387 +18,2666.9830718379812,4.501404839718101,89.82950540437447,541.0622420211162,0.5290780419963994 +19,2645.0410412408464,4.464370497893383,89.09045243590177,536.6107685960524,0.5247251660039183 +20,2680.2158340883634,4.523739447187379,90.27521220343048,543.7468289939123,0.5317031669983407 +21,2659.214756748915,4.488293271254235,89.56785248664701,539.4862507734778,0.5275369579976541 +22,2669.225814940643,4.505190201073849,89.90504563025314,541.5172368893692,0.5295229590046802 +23,2704.503515961487,4.5647328415151005,91.09327155788225,548.6741747077011,0.5365213749973918 +24,2722.9180265552013,4.595813341418859,91.71351035743224,552.4100050895154,0.5401744590053568 +25,2659.728082845366,4.489159676669146,89.58514237117693,539.5903914302245,0.527638792002108 +26,2715.307655172741,4.582968354536565,91.45717731038408,550.8660565559501,0.5386647079940303 +27,2689.5938418367864,4.5395678976606595,90.59108289890465,545.6493854636676,0.5335635829978855 +28,2707.2692433189036,4.569400909581777,91.18642697503635,549.2352696245097,0.5370700420025969 +29,2679.7924058632752,4.523024773786632,90.2609502651244,543.6609263021328,0.5316191669990076 +0,2673.158058917114,4.165419647708787,83.94664273890531,544.3598821864588,0.5358459170020069 +1,2687.7056371085996,4.188088254162213,84.40348828347878,547.3223399895053,0.5387620410037925 +2,2666.159993555215,4.1545149880096846,83.72687866964678,542.9348014572333,0.5344431249977788 +3,2634.213598200858,4.104734862798376,82.72364856558987,536.4292617068362,0.5280393339999137 +4,2701.800294002141,4.2100511008993236,84.84611049312427,550.1925652425285,0.5415873750025639 +5,2652.2567818234234,4.132850458626293,83.2902685169928,540.103561951928,0.5316561669969815 +6,2614.3387398209356,4.073765079580733,82.09950753122784,532.3819606016596,0.5240553339972394 +7,2639.0160205062334,4.1122181854401765,82.87446165657259,537.4072233472424,0.5290020000029472 +8,2647.3959472152146,4.125276115645056,83.13762107255641,539.1137052744205,0.5306817919990863 +9,2626.463490955262,4.09265834196379,82.48026771425411,534.8510357380904,0.526485791997402 +10,2657.5557862703176,4.141107575021921,83.45667604822403,541.1826472034695,0.5327183750050608 +11,2678.8116729006333,4.174229330581431,84.12418626712093,545.51117985542,0.5369792080018669 +12,2615.8421950634834,4.0761078224596545,82.1467213574732,532.6881230883766,0.5243567080033245 +13,2685.4360020934346,4.184551619935231,84.3322136953076,546.8601532342776,0.5383070829993812 +14,2661.006074609918,4.146483949528505,83.56502733767526,541.885261307334,0.5334099999963655 +15,2645.4202246610894,4.122197467333213,83.07557637794919,538.7113706301187,0.530285749999166 +16,2661.343642905499,4.147009961675884,83.57562817925836,541.9540034593364,0.5334776669988059 +17,2647.3003294066293,4.125127120228483,83.1346183342821,539.094233736311,0.5306626250021509 +18,2638.4261103379135,4.111298964297489,82.85593638531795,537.2870944874259,0.5288837499974761 +19,2639.055720329314,4.112280047260326,82.87570837180286,537.4153077891417,0.5290099580015521 +20,2637.2092940764005,4.109402873512116,82.81772403957079,537.0393029456761,0.5286398339958396 +21,2639.669740719435,4.113236837895497,82.89499078952296,537.5403464362623,0.5291330410036608 +22,2638.0058149458537,4.1106440435463245,82.84273761953439,537.2015058521628,0.5287994999962393 +23,2657.784845972612,4.14146450482682,83.46386933517923,541.2292927477308,0.5327642909978749 +24,2642.2511725151435,4.117259326085148,82.97605690231278,538.066027251692,0.5296505000005709 +25,2647.220924751434,4.125003388782911,83.13212474652012,539.0780638324765,0.5306467080008588 +26,2669.2722995917047,4.159364705246131,83.82461611621034,543.5685891009158,0.5350669999970705 +27,2667.51108981616,4.156620319152568,83.76930788356667,543.2099376763497,0.5347139579971554 +28,2644.681073525797,4.121045693067077,83.05236441108569,538.5608504528385,0.5301375840062974 +29,2660.6874234022303,4.145987414728836,83.55502055973677,541.8203714167805,0.5333461250047549 +0,1786.9876176050948,0.9744578121988632,0.0,485.98563233904,0.5244097500035423 +1,1782.494248517345,0.9720075441793689,0.0,484.7636245333176,0.5230911249964265 +2,1789.6608931992605,0.9759155695225464,0.0,486.71265110360656,0.5251942500035511 +3,1757.1659998786438,0.9581958593573018,0.0,477.8754039270571,0.5156582919953507 +4,1774.29452682005,0.9675361741558348,0.0,482.53364437295994,0.5206848329980858 +5,1774.592693303347,0.9676987665857556,0.0,482.61473314240624,0.5207723329949658 +6,1773.3727698210766,0.967033533119182,0.0,482.28296515526654,0.5204143340015435 +7,1782.7985214602406,0.9721734665077184,0.0,484.84637400348737,0.5231804169961833 +8,1756.4093657710655,0.9577832610774696,0.0,477.6696312056359,0.515436249996128 +9,1768.703196283028,0.9644871794853014,0.0,481.01303713434186,0.5190440000005765 +10,1768.6684113239016,0.9644682109849976,0.0,481.0035770853799,0.5190337919993908 +11,1779.504490507408,0.9703772066097822,0.0,483.950535834389,0.5222137500022654 +12,1777.5417030532524,0.9693068838221228,0.0,483.4167400248056,0.5216377499964437 +13,1800.5370152626765,0.9818464008314552,0.0,489.6704998353564,0.5283859589981148 +14,1773.0453523522408,0.9668549899064512,0.0,482.193921345414,0.5203182500044932 +15,1768.900981174923,0.9645950330770908,0.0,481.06682632392983,0.519102041995211 +16,1769.166632213147,0.9647398945898208,0.0,481.1390722569855,0.5191800000029616 +17,1763.204154234821,0.96148851042308,0.0,479.517528491345,0.5174302500017802 +18,1771.3954965865237,0.9659553111263268,0.0,481.74522982138154,0.5198340829956578 +19,1767.0888376996136,0.9636068575861454,0.0,480.5739993540834,0.5185702500020852 +20,1767.2573750274971,0.9636987622609094,0.0,480.619834433777,0.5186197090006317 +21,1785.681222404281,0.9737454250526344,0.0,485.6303476736638,0.5240263750019949 +22,1765.3002646808288,0.9626315352427376,0.0,480.0875825591626,0.5180453749999288 +23,1766.7130081954772,0.9634019149257976,0.0,480.4717895024762,0.5184599589993013 +24,1760.5667983320147,0.9600503403777368,0.0,478.8002783752831,0.5166562910017092 +25,1766.236221217194,0.9631419193941186,0.0,480.34212345507376,0.5183200409956044 +26,1761.720706069687,0.9606795749613756,0.0,479.11409285056465,0.5169949170012842 +27,1768.10288660893,0.9641598260968948,0.0,480.84977809791,0.5188678330014227 +28,1774.1884647492209,0.9674783377094716,0.0,482.50479994110646,0.5206537080011913 +29,1779.7001456472087,0.9704838988317078,0.0,484.00374582079274,0.5222711669994169 +0,1751.7597276163842,2.1636114978065435,0.0,477.192837423917,0.5169033329948434 +1,1745.561903408539,2.155956518926692,0.0,475.50450238973934,0.515074499999173 +2,1755.551400507329,2.168294621258601,0.0,478.2257183132816,0.5180221670016181 +3,1755.4356102341385,2.168151607829042,0.0,478.1941761513408,0.5179879999996047 +4,1755.2582529116012,2.167932552477893,0.0,478.1458626511243,0.5179356660009944 +5,1777.5037499482094,2.195408131693496,0.0,484.20570732243016,0.5244997919944581 +6,1759.7950712124805,2.173536010580334,0.0,479.3817268873795,0.5192743749939837 +7,1740.7323645120769,2.149991519434606,0.0,474.188898809454,0.513649416003318 +8,1747.5190222160466,2.1583737709548907,0.0,476.0376366216817,0.5156519999945886 +9,1756.439586774069,2.1693916267375015,0.0,478.4676670909049,0.5182842499998515 +10,1760.364557240052,2.174239387018135,0.0,479.5368592660305,0.5194424170040293 +11,1749.0142542489482,2.160220543184708,0.0,476.4449493399381,0.5160932080034399 +12,1757.185579477356,2.1703130078862207,0.0,478.67088124702866,0.5185043750025216 +13,1753.1326761480982,2.1653072367725006,0.0,477.56683917493183,0.5173084580019349 +14,1761.5785063732396,2.175738744641735,0.0,479.8675483566755,0.5198006250066101 +15,1759.8886909634932,2.173651641032684,0.0,479.4072296283778,0.5193019999933313 +16,1744.5668228570237,2.1547274875198386,0.0,475.2334347859139,0.5147808749970864 +17,1751.7886760415424,2.163647252222248,0.0,477.2007231978177,0.5169118749981862 +18,1754.5385279543257,2.1670436148180814,0.0,477.9498040312618,0.5177232919959351 +19,1740.735333244333,2.1499951861379456,0.0,474.1897075149783,0.5136502920067869 +20,1752.7776869870786,2.1648687870135124,0.0,477.47013739424176,0.5172037090014783 +21,1755.2290265923716,2.1678964548331496,0.0,478.137901176739,0.5179270419976092 +22,1757.0189549564705,2.170107208698398,0.0,478.62549144461894,0.5184552080027061 +23,1780.1372456652791,2.1986607818846435,0.0,484.9230918322808,0.5252768749996903 +24,1761.1651967645432,2.17522826286308,0.0,479.7549596370018,0.5196786670057918 +25,1759.5771922246654,2.1732669066183377,0.0,479.32237497354595,0.5192100839994964 +26,1743.5317832092846,2.1534491023353697,0.0,474.9514820166132,0.5144754590000957 +27,1746.5222472011149,2.1571426467036403,0.0,475.7661074329752,0.5153578749959706 +28,1738.2321697728296,2.1469035102748384,0.0,473.50782651230895,0.512911666999571 +29,1754.4581827370755,2.166944379841335,0.0,477.9279173754673,0.5176995840010932 +0,1775.5126657413036,1.5967139663809382,0.0,478.7480709198846,0.5172363329984364 +1,1775.0070612028924,1.596259277522039,0.0,478.6117400436914,0.5170890419976786 +2,1778.486234577878,1.5993880891754215,0.0,479.54986207109727,0.5181025829951977 +3,1773.9054521964044,1.5952686033803731,0.0,478.3147029135485,0.5167681249949965 +4,1767.9182652955085,1.5898843416240636,0.0,476.7003217636151,0.5150239579961635 +5,1786.6661938054838,1.6067443054363133,0.0,481.75550091332127,0.5204855409974698 +6,1776.3588275952677,1.5974749175563998,0.0,478.9762294473272,0.5174828340022941 +7,1769.0324619649873,1.5908863358186305,0.0,477.00075302295267,0.5153485419941717 +8,1775.2552139057666,1.5964824406084646,0.0,478.6786517757713,0.5171613330021501 +9,1777.8539053954712,1.5988194371706346,0.0,479.3793612449952,0.5179183750005905 +10,1781.685358726182,1.6022650532806884,0.0,480.41247180865975,0.5190345410010195 +11,1782.0121818251405,1.6025589644516485,0.0,480.50059617475256,0.5191297499986831 +12,1789.0516293471374,1.6088895214737722,0.0,482.39870818855275,0.521180457995797 +13,1768.7971784558893,1.590674745965015,0.0,476.9373113318437,0.5152799999996205 +14,1808.8365189834235,1.6266820217555849,0.0,487.7334928563829,0.5269441249984084 +15,1797.7783922912574,1.6167374769082972,0.0,484.75178682633776,0.5237227090037777 +16,1763.9779647754062,1.5863408395169931,0.0,475.6378617151784,0.513876083001378 +17,1780.6474021018207,1.6013316215622933,0.0,480.1325978650942,0.5187321669945959 +18,1774.9286825528252,1.5961887918039457,0.0,478.5906060758831,0.5170662089949474 +19,1778.508402904317,1.5994080250942804,0.0,479.55583952410177,0.5181090409969329 +20,1771.8283856255512,1.5934007027639616,0.0,477.7546440453945,0.5161630410002545 +21,1780.4857807279786,1.6011862758771516,0.0,480.08901838383264,0.5186850840036641 +22,1793.6520089886435,1.6130266310342836,0.0,483.6391515384461,0.5225206250033807 +23,1768.692625535085,1.590580721792676,0.0,476.9091197508373,0.5152495419970364 +24,1790.019936648973,1.6097603177358446,0.0,482.6598019344641,0.5214625419976073 +25,1771.4579433126603,1.5930675649462802,0.0,477.6547582230597,0.516055125001003 +26,1775.868522551646,1.597033987493752,0.0,478.84402391687667,0.5173399999985122 +27,1771.2442582749284,1.5928753985423243,0.0,477.597140329607,0.5159928749999381 +28,1797.5561220881275,1.6165375898872154,0.0,484.6918540345168,0.5236579580014222 +29,1771.974422602043,1.593532033440713,0.0,477.7940213599738,0.5162055839973618 +0,1795.080121367291,2.3187907813079054,0.0,486.2403451412186,0.5233609579954646 +1,1779.6926984637155,2.298914111764198,0.0,482.0722939582054,0.5188747089996468 +2,1815.206967652506,2.3447895905351,0.0,491.69218239786034,0.5292289999997593 +3,1778.7127427770808,2.2976482561707834,0.0,481.80684954398646,0.5185889999993378 +4,1778.7051695446603,2.297638473464534,0.0,481.8047981530195,0.5185867920008604 +5,1781.2344422536917,2.30090565589907,0.0,482.4899121044006,0.5193242089953856 +6,1776.1563189074311,2.2943460012844983,0.0,481.1143810519624,0.5178436670030351 +7,1776.2419225500996,2.2944565796008103,0.0,481.1375688441177,0.5178686250001192 +8,1773.7140800868076,2.2911912446830485,0.0,480.4528423089714,0.5171316249980009 +9,1782.3990367731817,2.302410018296943,0.0,482.8053703585286,0.5196637499975623 +10,1780.5187335949888,2.2999811408202455,0.0,482.29604531200187,0.5191155420034193 +11,1777.5224205297602,2.2961106600373196,0.0,481.4844223199996,0.5182419580014539 +12,1768.055444748717,2.283881714985425,0.0,478.9200657119437,0.5154818330047419 +13,1777.3892268957047,2.2959386074547634,0.0,481.44834364149233,0.5182031250005821 +14,1781.2107176085894,2.3008750096411688,0.0,482.48348571736335,0.5193172920044162 +15,1772.853313724588,2.29007935163615,0.0,480.2196831713544,0.5168806660003611 +16,1770.9595755799237,2.2876331195711908,0.0,479.706718943124,0.5163285410017124 +17,1786.4787687097223,2.3076800030135325,0.0,483.9104632406203,0.5208532079996075 +18,1763.9964363145286,2.2786384998072204,0.0,477.8205862856619,0.5142984170015552 +19,1795.3519416276438,2.3191419045287445,0.0,486.31397415400585,0.5234402080022846 +20,1791.298932109912,2.31390643843762,0.0,485.2161196775931,0.5222585410010652 +21,1774.3506127860628,2.2920134843911626,0.0,480.6252624008077,0.5173172080030781 +22,1777.8562672269466,2.2965419057709173,0.0,481.57485267535367,0.5183392920007464 +23,1777.8481211824924,2.2965313831359886,0.0,481.5726461245597,0.5183369169972138 +24,1781.717483114438,2.301529622863865,0.0,482.6207552640183,0.519465040997602 +25,1774.9085456819907,2.292734192976961,0.0,480.7763918577341,0.5174798750012997 +26,1776.865308398377,2.2952618368932156,0.0,481.3064277972165,0.5180503750016214 +27,1779.5730804224474,2.298759595423635,0.0,482.0398925533996,0.5188398340033018 +28,1777.118548815509,2.295588959642619,0.0,481.3750240154935,0.5181242079997901 +29,1792.9830205511932,2.3160818559613663,0.0,485.6722952739856,0.5227495420040214 +0,1756.762206346076,1.7661260064937123,0.0,477.9203619836382,0.5165056249970803 +1,1737.2024963244835,1.746462040349734,0.0,472.59921854143175,0.5107548750020214 +2,1745.8245097130402,1.755130010333867,0.0,474.9448039284589,0.5132898330048192 +3,1762.5196639368455,1.7719141521776365,0.0,479.4866560477672,0.518198375000793 +4,1754.595330933374,1.7639475813173395,0.0,477.33087191043927,0.5158685419955873 +5,1759.237319588572,1.768614312452708,0.0,478.5937069659762,0.5172333329974208 +6,1765.817171014456,1.7752292354514725,0.0,480.3837300914154,0.5191678749979474 +7,1777.7301747206948,1.7872057372142267,0.0,483.624616662763,0.522670417005429 +8,1777.4321406047927,1.7869061145327874,0.0,483.5435376345139,0.5225827920003212 +9,1750.3844466906353,1.7597142524441598,0.0,476.18531714253095,0.5146304999943823 +10,1750.895908925981,1.760228440848214,0.0,476.32445846500167,0.5147808749970864 +11,1752.491378563241,1.7618324145725786,0.0,476.75849980754566,0.5152499589967192 +12,1754.6504583242747,1.764003002545317,0.0,477.34586910386673,0.5158847499988042 +13,1755.3462952571251,1.7647025483910477,0.0,477.5351688495171,0.5160893330030376 +14,1758.3116163303305,1.7676836750603675,0.0,478.34187297576966,0.5169611669989536 +15,1756.9949093324376,1.7663599498211118,0.0,477.98366793083744,0.5165740419979556 +16,1767.5214805057878,1.7769426291622896,0.0,480.8473808951992,0.5196689590011374 +17,1727.3986897363202,1.7366059780349583,0.0,469.93213088636554,0.5078724580016569 +18,1756.8116672700412,1.7661757310516548,0.0,477.9338176366573,0.5165201670024544 +19,1752.963015612889,1.7623065655168555,0.0,476.88680684231593,0.5153886249972857 +20,1764.7681692091678,1.7741746423127505,0.0,480.0983532084805,0.518859457995859 +21,1745.3025614216867,1.754605279981589,0.0,474.8028099150179,0.5131363749969751 +22,1757.216415420918,1.7665826365695223,0.0,478.0439278052847,0.5166391669990844 +23,1770.0688667966224,1.7795035933955687,0.0,481.5403874807405,0.5204179159991327 +24,1755.7857633216242,1.765144358884768,0.0,477.6547244363272,0.5162185410008533 +25,1762.728840517084,1.7721244436997183,0.0,479.5435617271955,0.5182598750034231 +26,1771.145646571987,1.7805861125650204,0.0,481.83332125297215,0.5207345000017085 +27,1756.8595670096458,1.7662238861038948,0.0,477.94684857551056,0.5165342500040424 +28,1758.2892259249506,1.767661165310844,0.0,478.3357817526061,0.5169545839962666 +29,1755.9440640749146,1.7653035034042843,0.0,477.6977895438538,0.5162650830025086 +0,1752.373482100309,0.831233626527545,0.0,476.26361865522216,0.5163796670021839 +1,1753.2505788590777,0.8316496750052546,0.0,476.50199779101064,0.5166381249946426 +2,1752.8381169148636,0.8314540247964403,0.0,476.3898980473684,0.5165165830039768 +3,1752.9431786106506,0.8315038605279725,0.0,476.4184519281072,0.5165475419998984 +4,1765.114376950317,0.8372772355752489,0.0,479.7263648951946,0.5201340830026311 +5,1756.9934111913135,0.8334250774093588,0.0,477.5192323524662,0.5177410420001252 +6,1756.6034316596722,0.8332400916722034,0.0,477.41324292450565,0.5176261250016978 +7,1763.462414839216,0.8364936318112554,0.0,479.2773912825768,0.5196472919997177 +8,1753.3060095523142,0.8316759684048242,0.0,476.517062857228,0.5166544590028934 +9,1755.2444471139736,0.8325954610247673,0.0,477.0438953487507,0.5172256669975468 +10,1763.860454125097,0.8366824406710577,0.0,479.3855712068892,0.5197645840016776 +11,1759.238261513727,0.8344899160944743,0.0,478.12934232549,0.5184025420021499 +12,1748.4565865038344,0.8293756576843477,0.0,475.19907682682384,0.5152254580025328 +13,1773.3545454320447,0.841185937230592,0.0,481.9658945956399,0.5225622500001919 +14,1776.3548905408898,0.8426091428263935,0.0,482.7813344738104,0.523446375002095 +15,1744.0009641467575,0.827262145257835,0.0,473.9881187469291,0.5139124999986961 +16,1748.8014619995813,0.8295392484439423,0.0,475.2928077884412,0.5153270839946344 +17,1750.1488506947946,0.8301783786310312,0.0,475.65900382043566,0.5157241249980871 +18,1750.578277165131,0.8303820759169757,0.0,475.7757142173904,0.5158506660009152 +19,1747.6397256783089,0.8289881819588212,0.0,474.9770687351262,0.5149847499997122 +20,1762.187984626153,0.8358891092830492,0.0,478.93102405481585,0.5192717499958235 +21,1752.5626705211123,0.8313233675437882,0.0,476.31503666788893,0.5164354159933282 +22,1764.9995621069563,0.837222773464517,0.0,479.6951602842297,0.520100250003452 +23,1783.0733219996505,0.8457960126364461,0.0,484.6072834001782,0.5254261250011041 +24,1751.7065019429492,0.830917246292003,0.0,476.0823454354661,0.5161831250006799 +25,1745.6457182867375,0.8280423299402027,0.0,474.43513336253847,0.5143971669967868 +26,1752.6965776323325,0.8313868860201942,0.0,476.3514302141304,0.5164748749957653 +27,1752.178208974687,0.8311409992480111,0.0,476.2105469291404,0.5163221250040806 +28,1762.0314559656858,0.8358148603358786,0.0,478.888482378045,0.5192256250011269 +29,1752.354532351862,0.831224637765569,0.0,476.2584684541605,0.5163740829957533 +0,1747.0589457116464,3.0201243148830725,0.0331881792844293,476.8145717793967,0.5152042500048992 +1,1747.3293781548232,3.020591808895897,0.0331933165812735,476.8883793231577,0.5152840000009746 +2,1750.1044899098858,3.025389118401999,0.0332460342681538,477.6457743305661,0.5161023750042659 +3,1751.6777760699365,3.028108843341962,0.0332759213554061,478.07516211312054,0.5165663340012543 +4,1766.1522672194958,3.0531307596165367,0.0335508874683135,482.0256002572614,0.5208348329979344 +5,1766.7483783587693,3.0541612513183263,0.0335622115529486,482.1882933812131,0.5210106250015087 +6,1754.7747482092896,3.0334625498574375,0.0333347532951366,478.9204005912286,0.517479624999396 +7,1753.3064440845665,3.030924306371375,0.0333068605095755,478.51966494107194,0.5170466249983292 +8,1749.3128298275074,3.0240205830873874,0.0332309954185427,477.42971117820326,0.5158689160016365 +9,1757.5330439768445,3.038230789724603,0.0333871515354352,479.6732061095975,0.5182930410010158 +10,1749.9246243251405,3.0250781864627907,0.033242617433657,477.59668466935074,0.5160493329967721 +11,1748.560030649437,3.022719226251378,0.0332166947939711,477.224254104984,0.5156469170033233 +12,1753.7423269355932,3.0316778129431237,0.0333151408015727,478.6386278961962,0.5171751659945585 +13,1756.9680215412786,3.0372540407715727,0.0333764180304568,479.51899784357346,0.5181264169950737 +14,1753.7127980950845,3.031626766715158,0.0333145798540127,478.63056876260094,0.5171664579975186 +15,1754.327702153926,3.032689745559683,0.0333262609402163,478.79839092808754,0.5173477919961442 +16,1746.7611037466984,3.0196094382885876,0.0331825212998745,476.73328351529824,0.5151164169947151 +17,1749.0789930550138,3.023616351665171,0.0332265533150018,477.365891476632,0.5157999579969328 +18,1745.504313415313,3.0174368367013065,0.0331586465571572,476.3902750866777,0.5147457919956651 +19,1750.3038537106063,3.025733756723185,0.0332498215024525,477.7001855257362,0.5161611669973354 +20,1748.1413808301063,3.0219955102589178,0.0332087418709771,477.1099944603282,0.5155234579942771 +21,1757.5372861178564,3.0382381230737434,0.0333872321216894,479.6743638923129,0.5182942920000642 +22,1749.8696629689396,3.024983175284921,0.0332415733547793,477.5816843881149,0.5160331250008312 +23,1781.692526770394,3.07999505967033,0.0338460995568168,486.2669123327872,0.5254176250018645 +24,1759.469025002054,3.0415775018557194,0.033423928591821,480.2015820786936,0.5188639580010204 +25,1751.8266953376512,3.028366278674916,0.0332787503151089,478.1158057771706,0.5166102500006673 +26,1755.287352510616,3.034348684076406,0.0333444910338066,479.06030268270024,0.5176307910005562 +27,1765.1312939975094,3.0513658128411953,0.0335314924488043,481.746952011972,0.5205337500010501 +28,1767.6126601371138,3.0556553270735236,0.0335786299678409,482.4241767479705,0.5212654999995721 +29,1751.5500471769017,3.027888039609773,0.0332734949407667,478.0403018139957,0.516528667001694 +0,1769.4405246627896,0.166922052437907,0.0,480.50182014775913,0.5185789590032073 +1,1764.845139373689,0.1664885418827298,0.0,479.25391666362606,0.5172321659993031 +2,1769.8090308676667,0.1669568158623888,0.0,480.6018901414725,0.5186869589961134 +3,1761.667486286026,0.1661887746015269,0.0,478.39100656795546,0.5163008750023437 +4,1770.120524418555,0.1669862009375641,0.0,480.6864780188722,0.5187782499997411 +5,1758.7666359534974,0.1659151198024128,0.0,477.6032638632257,0.5154507080005715 +6,1763.4970787592622,0.1663613711519624,0.0,478.887842998039,0.5168370829997002 +7,1766.3960797342909,0.1666348514899712,0.0,479.6750834990312,0.5176867080008378 +8,1777.8972580842958,0.1677198273729572,0.0,482.7982950757946,0.5210574169977917 +9,1769.0387471033746,0.1668841503248344,0.0,480.3927151250683,0.5184612080047373 +10,1764.9314380729104,0.1664966829622382,0.0,479.27735157509903,0.5172574579992215 +11,1772.566856441291,0.1672169782688663,0.0,481.3507936447587,0.5194952090023435 +12,1754.57331486777,0.1655195384011707,0.0,476.46454324161,0.5142217500033439 +13,1762.1909595977615,0.1662381570127317,0.0,478.5331587768496,0.5164542919956148 +14,1773.2691781297697,0.1672832325317695,0.0,481.5415131659517,0.5197010420015431 +15,1763.9601307223377,0.1664050536510261,0.0,479.0135874398439,0.5169727920001606 +16,1762.9672077460498,0.1663113852067893,0.0,478.7439534562638,0.5166817909994279 +17,1765.03607677191,0.1665065541651173,0.0,479.3057668197068,0.5172881249964121 +18,1785.6370251313474,0.1684499665230885,0.0,484.9000736333626,0.5233257500003674 +19,1759.353089729241,0.1659704435426248,0.0,477.7625187818,0.5156225829996401 +20,1767.829302824657,0.1667700561134161,0.0,480.06428352807984,0.518106750001607 +21,1766.6443096032374,0.1666582685184745,0.0,479.74249175728073,0.5177594579945435 +22,1767.7985939618377,0.166767159160205,0.0,480.05594435856625,0.5180977499985602 +23,1772.0661315525292,0.1671697418543195,0.0,481.2148189018443,0.519348459005414 +24,1759.33233396092,0.1659684855251613,0.0,477.75688243272936,0.5156165000007604 +25,1759.9227696447715,0.1660241849029066,0.0,477.91721866150704,0.5157895419979468 +26,1767.522357592919,0.1667411001087618,0.0,479.98093077308187,0.51801679199707 +27,1756.276093432469,0.1656801718267677,0.0,476.92694262053374,0.5147207920017536 +28,1787.0935630557296,0.1685873705761791,0.0,485.2956049405893,0.5237526249984512 +29,1761.5507619170933,0.1661777632841301,0.0,478.3593093896971,0.516266665996227 +0,1776.691736185956,0.1001837341608155,0.0,477.44228243239314,0.5172290420014178 +1,1770.7935195244447,0.0998511467130299,0.0,475.8572815187299,0.5155119580012979 +2,1771.6266559565545,0.0998981254416041,0.0,476.0811664795379,0.5157544999965467 +3,1771.6970738633242,0.0999020961522841,0.0,476.1000895630688,0.5157749999998487 +4,1767.255164562743,0.0996516266693274,0.0,474.9064354971249,0.5144818750050035 +5,1778.5290421222858,0.1002873357962306,0.0,477.93601329290306,0.5177639169996837 +6,1784.650960969839,0.1006325373176234,0.0,479.5811286766872,0.5195461249968503 +7,1775.7415239627014,0.100130153786217,0.0,477.1869362271816,0.5169524169978104 +8,1770.133281321143,0.0998139173348012,0.0,475.6798587118843,0.5153197499967064 +9,1767.617129727283,0.0996720370877929,0.0,475.0037047480587,0.5145872500070254 +10,1762.247909439489,0.0993692785805023,0.0,473.560858621814,0.5130241669976385 +11,1773.6424386464917,0.1000117909880923,0.0,476.6228585855853,0.5163413330010371 +12,1769.1378436654545,0.0997577867976686,0.0,475.41235928208937,0.5150299590022769 +13,1777.9878823036338,0.1002568209858636,0.0,477.7905898782973,0.5176063749968307 +14,1755.9015670313545,0.0990114223087807,0.0,471.85543491621286,0.5111766249974607 +15,1776.3105898766091,0.1001622421598373,0.0,477.3398587197316,0.5171180830002413 +16,1787.7577916465848,0.1008077246572515,0.0,480.4160131415751,0.5204505829970003 +17,1773.7231650386664,0.1000163429715617,0.0,476.6445518214728,0.5163648340021609 +18,1769.8345789266932,0.0997970741646162,0.0,475.599589777173,0.5152327920004609 +19,1774.2379885508392,0.1000453727356073,0.0,476.7828980003261,0.5165147090010578 +20,1766.4500819098491,0.0996062298315799,0.0,474.6900893006994,0.5142475000029663 +21,1771.0441351066002,0.0998652783737721,0.0,475.9246283032735,0.515584917004162 +22,1766.2073393898709,0.0995925421154749,0.0,474.62485820831506,0.5141768329995102 +23,1761.5407248569811,0.0993294019993411,0.0,473.3708201281932,0.5128182920016116 +24,1766.0573458461463,0.0995840843098779,0.0,474.5845511261085,0.5141331670020008 +25,1775.480603344183,0.1001154410471693,0.0,477.1168202171266,0.5168764580012066 +26,1790.8488796480174,0.1009820243020892,0.0,481.24666714898984,0.5213504580024164 +27,1777.4756350505515,0.1002279364913943,0.0,477.6529360058218,0.5174572499963688 +28,1768.5382885241104,0.0997239792036601,0.0,475.25124355824306,0.5148554170009447 +29,1803.8391230015989,0.1017145155161324,0.0,484.7374761113821,0.5251321670002653 +0,1754.0937717713666,0.5002644087188991,0.0,477.5524045630611,0.5170462090027286 +1,1747.7432374054538,0.4984532476676833,0.0,475.82347022357055,0.5151742909947643 +2,1751.518133922168,0.4995298414075961,0.0,476.8511866076913,0.516286999998556 +3,1754.769163024236,0.5004570290971297,0.0,477.7362799761201,0.5172452909973799 +4,1751.2478613919254,0.4994527601650134,0.0,476.77760485352184,0.5162073329993291 +5,1736.266881541672,0.4951802114863595,0.0,472.6990298848788,0.5117914579968783 +6,1748.792095154288,0.4987523800230881,0.0,476.1090219700399,0.5154834580025636 +7,1799.850348084657,0.5133141025053685,0.0,490.0096422516248,0.5305336660021567 +8,1753.1379269695713,0.4999918034897532,0.0,477.2921756113184,0.5167644589964766 +9,1749.7158533916863,0.4990158342214145,0.0,476.36051534776226,0.5157557499987888 +10,1761.7996142862123,0.5024621012319267,0.0,479.65032183599726,0.5193176250031684 +11,1740.7653737649098,0.4964631734285321,0.0,473.9237453548768,0.5131174580019433 +12,1742.9166639927869,0.497076717556646,0.0,474.5094345795743,0.5137515839960543 +13,1749.7232016130597,0.499017929921017,0.0,476.36251590260287,0.5157579160004389 +14,1753.2353196533288,0.5000195797090965,0.0,477.3186907903035,0.5167931669930113 +15,1747.2711128554597,0.4983185985898259,0.0,475.69493421384783,0.5150351249976666 +16,1748.1742343484766,0.4985761672255376,0.0,475.9408092334982,0.5153013339950121 +17,1768.266335896843,0.5043063986776812,0.0,481.41088817771447,0.5212237909945543 +18,1757.0913484891291,0.5011193122414096,0.0,478.3684954656496,0.517929790999915 +19,1744.1792476012558,0.4974368041452388,0.0,474.85317323704504,0.5141237499992712 +20,1749.1235756856784,0.4988469176782046,0.0,476.1992676156142,0.5155811670047115 +21,1752.5556809693933,0.499825747971117,0.0,477.1336590132283,0.5165928330025054 +22,1746.9655037563955,0.4982314394209703,0.0,475.61173207125825,0.5149450419994537 +23,1752.0436941827002,0.4996797302545965,0.0,476.9942705010378,0.5164419169959729 +24,1748.172110645285,0.498575561549183,0.0,475.9402310548502,0.5153007080007228 +25,1751.4983453162597,0.4995241977325581,0.0,476.8457991555,0.5162811670015799 +26,1747.589019863644,0.4984092651003833,0.0,475.7814844648259,0.5151288329943782 +27,1762.3483557065445,0.5026186013042716,0.0,479.7997168050577,0.5194793750051758 +28,1772.4144105029477,0.5054894221417285,0.0,482.5402023764941,0.5224464999992051 +29,1751.7315782126657,0.4995907153377694,0.0,476.9092968614347,0.5163499159971252 +0,2707.064349798109,3.6012385418086788,92.0649964253126,546.2211903089626,0.5340038330032257 +1,2657.9668484559675,3.535923576483599,90.3952314321409,536.3144824664614,0.5243187090018182 +2,2725.020067211528,3.625125237224638,92.67565537015948,549.8442269534888,0.5375458330017864 +3,2714.4840100870024,3.611109000411365,92.31733287162758,547.7183012568387,0.5354674579939456 +4,2738.164742265457,3.642611748185226,93.12269478462412,552.4965096946497,0.5401387919991976 +5,2721.689276555712,3.6206942484728137,92.56237796327258,549.1721526317885,0.5368887910008198 +6,2720.5877475209177,3.619228871849861,92.52491588127285,548.9498902756719,0.5366714999981923 +7,2692.3593725613273,3.5816763430802045,91.56489243744856,543.2540757036744,0.5311030840020976 +8,2684.849938696684,3.5716864576670515,91.30950286684008,541.7388505837405,0.529621749999933 +9,2684.9247119572583,3.571785929387366,91.31204584294925,541.7539380490226,0.5296365000031074 +10,2738.5432520367744,3.643115284045768,93.13556758565154,552.5728839625345,0.5402134579999256 +11,2721.140522061294,3.619964234117804,92.5437152814746,549.0614270285532,0.5367805420028162 +12,2695.355153706975,3.585661664864423,91.66677645083956,543.8585530754085,0.5316940409975359 +13,2693.7475289550293,3.5835230233438016,91.6121024764096,543.5341726425446,0.5313769159984076 +14,2662.3036966471677,3.5416929350351563,90.54272401511172,537.1895552667675,0.5251742090040352 +15,2781.6217251628236,3.7004230675697793,94.60063045889038,561.2650950913014,0.5487112499977229 +16,2691.344864372215,3.580326731279553,91.530389861693,543.0493720841699,0.5309029589989223 +17,2698.6109582046543,3.58999289867588,91.77750364114912,544.5154969741629,0.5323362909985008 +18,2698.4664861846804,3.589800705901969,91.77259026847534,544.4863459572236,0.5323077920038486 +19,2696.253071379015,3.586856174972084,91.69731388053631,544.0397315020158,0.5318711669970071 +20,2674.1653895799946,3.55747268026507,90.94613027973942,539.5829627353899,0.5275140830053715 +21,2711.4054258427636,3.607013524721848,92.21263279404648,547.097116189524,0.5348601670048083 +22,2711.9374970173535,3.607721345066444,92.23072809007826,547.2044754956798,0.5349651249998715 +23,2722.2352935902622,3.6214206211537783,92.580947546348,549.2823258807412,0.5369964999990771 +24,2705.6396482764453,3.599343245145054,92.01654351708792,545.9337194326031,0.5337227920026635 +25,2704.6099320015473,3.5979734018546403,91.98152372704315,545.7259471831561,0.5335196670057485 +26,2732.7517068573975,3.635410725519794,92.93860197370508,551.4042879142569,0.5390709999992396 +27,2674.1979197151777,3.557515955474468,90.94723660245376,539.589526542845,0.5275204999998095 +28,2710.5983411811003,3.605939850802607,92.1851845191296,546.9342657036806,0.5347009590041125 +29,2711.9605221173633,3.607751975619275,92.23151115448908,547.2091214131422,0.5349696670018602 +0,1829.714124002379,0.2684784393539926,0.0,484.3015447896835,0.521343792002881 +1,1809.1855259194288,0.265466227826992,0.0,478.8678917214152,0.515494541003136 +2,1813.0085175449303,0.266027184761091,0.0,479.879787910913,0.5165838329994585 +3,1862.4952107043605,0.2732884885756843,0.0,492.97827232946247,0.5306841669953428 +4,1810.0879382553949,0.2655986410015069,0.0,479.1067485365934,0.5157516670005862 +5,1839.304281081116,0.2698856266144958,0.0,486.83993470922366,0.5240763330002665 +6,1809.758034772763,0.2655502334546707,0.0,479.0194273730442,0.5156576669978676 +7,1808.8649860767891,0.2654191942300088,0.0,478.78304899165727,0.5154032089994871 +8,1813.8231895913325,0.2661467235878039,0.0,480.09542101194984,0.5168159589957213 +9,1811.1642167471596,0.2657565659833326,0.0,479.3916254631841,0.516058332999819 +10,1809.8633196014089,0.2655656821557064,0.0,479.0472948986249,0.5156876659966656 +11,1813.954652607598,0.2661660134784905,0.0,480.13021756351213,0.5168534169933992 +12,1807.167211573315,0.2651700756146534,0.0,478.33367014938295,0.5149194590048864 +13,1809.579044581031,0.2655239697850048,0.0,478.97205099592554,0.5156066669951542 +14,1823.9124415236115,0.2676271442598061,0.0,482.76591485165784,0.5196907080025994 +15,1819.837052677855,0.2670291524627728,0.0,481.6872123987844,0.5185295000046608 +16,1841.2130745184631,0.2701657085553769,0.0,487.3451675203305,0.5246202090056613 +17,1808.2260893946043,0.2653254473534387,0.0,478.6139413446843,0.5152211669992539 +18,1841.558037704117,0.2702163258493596,0.0,487.4364747915136,0.5247184999971068 +19,1809.0259859767957,0.2654428181400628,0.0,478.8256635724058,0.5154490829954739 +20,1817.9728629006825,0.2667556153263047,0.0,481.1937855967379,0.5179983330017421 +21,1823.5731814233272,0.2675773637935221,0.0,482.67611711303965,0.5195940420016996 +22,1809.1998591549343,0.2654683309777787,0.0,478.8716855425406,0.5154986249981448 +23,1802.588046066788,0.2644981634330681,0.0,477.1216245628257,0.5136147090015584 +24,1837.076846539877,0.2695587896832232,0.0,486.2503617398243,0.5234416660023271 +25,1807.5499030880776,0.2652262288788654,0.0,478.4349636188634,0.5150284999981523 +26,1806.5600452731728,0.2650809846148343,0.0,478.17296112208425,0.5147464580004453 +27,1809.485601206097,0.2655102586095041,0.0,478.94731774921934,0.5155800420034211 +28,1807.857580198864,0.2652713750956679,0.0,478.5164017506981,0.5151161670000874 +29,1807.3931392937277,0.2652032265429801,0.0,478.39347028021825,0.5149838330034981 +0,2618.4886428197547,4.198341247690789,93.60621645851384,547.5308721588419,0.5387841670017224 +1,2605.644078001389,4.177746976093143,93.14704657897272,544.8450496341634,0.5361412499987637 +2,2594.933862843849,4.16057480382085,92.76417582598968,542.6055236151,0.5339374999966822 +3,2588.6199170627947,4.15045136903683,92.53846372404516,541.2852657443073,0.5326383330029785 +4,2602.269826825817,4.172336886601513,93.02642322366732,544.1394874030228,0.5354469589947257 +5,2592.9785214346575,4.157439716519999,92.6942759195299,542.1966580696723,0.5335351660032757 +6,2597.193556682996,4.164197873135303,92.84495577942472,543.0780298228137,0.5344024580044788 +7,2622.8873421771473,4.205393881277332,93.7634619769594,548.4506484206646,0.5396892500066315 +8,2619.283655456883,4.199615927401944,93.63463671735376,547.697110788052,0.5389477499993518 +9,2653.1881992616804,4.253976615629538,94.84666262207618,554.7866143039419,0.5459239999981946 +10,2618.9124733008675,4.199020794266546,93.62136762896692,547.6194959050658,0.5388713749998715 +11,2581.3848028224693,4.138850983207314,92.27982152159028,539.7723898259651,0.5311496249996708 +12,2598.369879714636,4.166083925044631,92.88700719279508,543.3240011686205,0.5346445000031963 +13,2577.819388610895,4.133134393375771,92.1523644347062,539.0268550464946,0.5304160000014235 +14,2594.3609908934964,4.159656292317886,92.7436966935196,542.4857350189295,0.5338196250013425 +15,2602.276504455357,4.172347593146913,93.02666193680358,544.1408837078478,0.5354483329938375 +16,2588.202161551629,4.149781562735098,92.52352972274171,541.1979122856604,0.5325523749997956 +17,2609.8641773866566,4.184513252268183,93.2979074725714,545.7274803078074,0.5370095840044087 +18,2605.9379084821217,4.178218087789759,93.15755048536046,544.9064901371892,0.536201709001034 +19,2571.5775359527493,4.123126548755723,91.9292295310576,537.7216719825263,0.529131666997273 +20,2625.503438850144,4.209588387371642,93.85698268483814,548.9976791274602,0.5402275419983198 +21,2587.9378992980905,4.149357859114201,92.51408282681022,541.1426545542377,0.5324980000004871 +22,2590.805700040584,4.153955933725058,92.61660149833388,541.7423170526872,0.5330880830006208 +23,2581.167113924082,4.138501952752755,92.2720395385754,539.7268706702032,0.5311048330040649 +24,2576.8520502315087,4.131583416009576,92.11778384334951,538.8245827823049,0.5302169589995174 +25,2583.3938034958605,4.1420721048329,92.35163964935434,540.1924756238875,0.5315630000040983 +26,2574.7213455950846,4.1281671609166715,92.04161501979812,538.3790484581086,0.529778542004351 +27,2588.6393570161317,4.15048253799308,92.5391586670937,541.2893306749054,0.5326423329970567 +28,2612.5537766415023,4.188825608375719,93.39405576434504,546.2898805419278,0.5375629999980447 +29,2596.2320891691634,4.162656308793328,92.81058506085604,542.8769851675906,0.5342046250007115 +0,1802.9941659864749,1.681615182139636,0.0,483.56526177607367,0.5219859589997213 +1,1779.2162506886075,1.6594380147816672,0.0,477.1879955306162,0.5151019999975688 +2,1779.6212444850328,1.6598157440775176,0.0,477.29661536693095,0.5152192500027013 +3,1781.9483024576202,1.6619861426790468,0.0,477.9207351887867,0.5158929579993128 +4,1775.7893470337342,1.6562418129733198,0.0,476.26889573860785,0.5141098749954836 +5,1786.3511357741895,1.6660925737974868,0.0,479.10158052120534,0.5171676250029122 +6,1775.1444346092962,1.6556403165599958,0.0,476.0959294299924,0.5139231659995858 +7,1786.472892937759,1.6662061341731416,0.0,479.1342359428286,0.5172028749948367 +8,1778.655245374635,1.6589147767862065,0.0,477.0375332126415,0.5149395830012509 +9,1777.1881143809255,1.6575464142037022,0.0,476.64404686841664,0.51451483299752 +10,1794.148200345462,1.6733647338557538,0.0,481.19276286756053,0.519424958001764 +11,1783.2366835279809,1.6631877889234838,0.0,478.266280582837,0.5162659580018953 +12,1784.8673111039714,1.6647086413698924,0.0,478.70361691232625,0.5167380420025438 +13,1792.50001900328,1.6718275093764852,0.0,480.7507185963021,0.5189477919993806 +14,1776.8688998470486,1.6572486894430491,0.0,476.55843313624325,0.5144224169998779 +15,1790.0668889243043,1.66955817952611,0.0,480.09815010452814,0.5182433750014752 +16,1797.152552994646,1.6761668311241078,0.0,481.9985339580484,0.5202947500001756 +17,1791.2587001162692,1.6706697570522386,0.0,480.4177953379417,0.5185884169986821 +18,1792.1862688524077,1.6715348811322794,0.0,480.6665704183983,0.5188569579986506 +19,1790.008024062706,1.6695032774932437,0.0,480.0823624759571,0.5182263329988928 +20,1795.15752082838,1.6743061060907498,0.0,481.463463867456,0.5197171670006355 +21,1779.65362671206,1.659845946307579,0.0,477.3053003202074,0.5152286250013276 +22,1794.294713103223,1.673501383259549,0.0,481.2320577701159,0.5194673750011134 +23,1779.0303024305967,1.6592645847064829,0.0,477.1381239781962,0.5150481660020887 +24,1787.3388646459289,1.6670138079855328,0.0,479.3664906243198,0.5174535830010427 +25,1786.329260901145,1.6660721715580826,0.0,479.0957136532423,0.517161291994853 +26,1787.5002024214516,1.6671642843752463,0.0,479.40976161494586,0.5175002920004772 +27,1782.956037518525,1.662926036223885,0.0,478.1910109765404,0.5161847080016742 +28,1804.8606743706223,1.6833560357128678,0.0,484.0658616295923,0.522526332999405 +29,1796.2041145617177,1.6752822423116618,0.0,481.7441615991415,0.5200201670013485 +0,1845.824206071892,0.1677320580549854,0.0,486.1545970665696,0.5214718330025789 +1,1830.4651068256328,0.166336359960892,0.0,482.1093057106495,0.5171326670024428 +2,1849.9641160769513,0.1681082561907703,0.0,487.24496974332874,0.5226414170028875 +3,1828.7591474660028,0.1661813375739239,0.0,481.659988824261,0.5166507089961669 +4,1822.3392648347449,0.1655979558398074,0.0,479.9691152060978,0.5148370000024443 +5,1836.1359089329785,0.1668516719310995,0.0,483.602885925099,0.5187347499959287 +6,1826.5178135686551,0.1659776651190098,0.0,481.069664580938,0.5160174999982701 +7,1845.3007813203665,0.1676844938771392,0.0,486.0167370535003,0.5213239579970832 +8,1825.8569338770212,0.1659176102608928,0.0,480.8956015801718,0.5158307919991785 +9,1807.0185105123555,0.1642057421907525,0.0,475.9339231656772,0.5105086669937009 +10,1823.162968089531,0.1656728066526299,0.0,480.1860628019826,0.5150697079952806 +11,1854.833631466652,0.1685507543633255,0.0,488.52750644666264,0.5240171249970444 +12,1857.7274384163825,0.1688137177558822,0.0,489.2896795436492,0.5248346669977764 +13,1862.589432110114,0.1692555324237241,0.0,490.5702351769219,0.5262082500048564 +14,1827.1143921034115,0.1660318768608956,0.0,481.22679189361975,0.516186041997571 +15,1830.059520329347,0.1662995038737752,0.0,482.00248202775015,0.5170180829954916 +16,1826.6731154100848,0.1659917775666616,0.0,481.11056809921206,0.5160613749976619 +17,1843.7639886261209,0.1675448438494921,0.0,485.6119754133678,0.5208897920019808 +18,1825.188089979146,0.1658568316866715,0.0,480.71944096064885,0.5156418339975062 +19,1824.456265218254,0.1657903299727617,0.0,480.52669239305266,0.5154350829980103 +20,1823.8436131713245,0.1657346576133003,0.0,480.36533162638955,0.5152620000008028 +21,1827.3999209682072,0.1660578231801435,0.0,481.301994705328,0.5162667080003303 +22,1828.929195469068,0.1661967900213609,0.0,481.7047761979124,0.5166987499978859 +23,1827.510683488826,0.1660678882911533,0.0,481.3311674230788,0.5162980000022799 +24,1835.150709439822,0.1667621457790216,0.0,483.3434033259165,0.5184564169976511 +25,1813.572750949637,0.1648013331651888,0.0,477.6601840459834,0.5123603339961846 +26,1842.1702642888456,0.1674000203813719,0.0,485.1922190733685,0.5204395420005312 +27,1831.9371559299911,0.166470126667938,0.0,482.4970151343517,0.5175485420040786 +28,1845.660352440013,0.1677171684968116,0.0,486.1114411711588,0.5214255419996334 +29,1853.0747226186224,0.1683909203986171,0.0,488.06424368335195,0.5235202080002637 +0,1750.3108252154525,2.609757505147961,0.0,479.15816963107625,0.5184650419978425 +1,1745.3642145878596,2.602381984169385,0.0,477.8040050678175,0.5169997909979429 +2,1742.12288288301,2.597549076995676,0.0,476.9166709186548,0.5160396659994149 +3,1752.016519404531,2.612300738125388,0.0,479.625113726842,0.5189702910065535 +4,1747.889285014327,2.6061469277448723,0.0,478.4952583619784,0.5177477500037639 +5,1742.483268674349,2.5980864212834134,0.0,477.01532870768926,0.5161464170014369 +6,1745.190778674311,2.602123386855969,0.0,477.7565259380042,0.5169484170037322 +7,1754.793097903389,2.6164406865686223,0.0,480.3852188762723,0.5197927500048536 +8,1750.881920770668,2.610609022998339,0.0,479.31451049178474,0.5186342079978203 +9,1735.1488806738737,2.587150664128651,0.0,475.007495653672,0.5139738750003744 +10,1734.904688250203,2.58678656707732,0.0,474.9406465014654,0.5139015419990756 +11,1734.3902782445691,2.5860195688084495,0.0,474.7998236526385,0.5137491670029704 +12,1740.4614946593651,2.59507190532813,0.0,476.4618558487712,0.5155475409992505 +13,1741.1728371957006,2.59613253495813,0.0,476.65659016840226,0.5157582499959972 +14,1752.914383042534,2.613639475413714,0.0,479.8709093256385,0.5192362500019954 +15,1737.9855206465136,2.5913801657413655,0.0,475.7840429946423,0.5148141249956097 +16,1742.750390525125,2.5984847066878167,0.0,477.0884549291823,0.5162255420000292 +17,1746.9815770882103,2.6047935123751347,0.0,478.2467678297988,0.5174788750009611 +18,1754.2353643395768,2.61560909178382,0.0,480.2325359414883,0.5196275420021266 +19,1735.6599147553063,2.587912628809548,0.0,475.1473943228402,0.514125250003417 +20,1744.2616874795365,2.6007380884943294,0.0,477.50218160676013,0.5166732079960639 +21,1739.7664748214256,2.594035613252369,0.0,476.27158996650235,0.5153416670000297 +22,1745.2933230781057,2.6022762831436204,0.0,477.7845980884589,0.5169787920021918 +23,1750.6001709384905,2.6101889269054013,0.0,479.2373797719519,0.5185507499991218 +24,1739.8233021500969,2.594120344230068,0.0,476.2871467912667,0.5153585000007297 +25,1749.8213094268729,2.60902762478344,0.0,479.02416172466206,0.5183200409956044 +26,1744.01214756226,2.600366018195406,0.0,477.4338685458514,0.5165992909969646 +27,1744.947146636668,2.601760125354311,0.0,477.6898301948601,0.5168762499961304 +28,1726.6596383960764,2.5744929901724993,0.0,472.6835142597483,0.5114592500030994 +29,1740.1566769615938,2.5946174144668497,0.0,476.37841016127896,0.5154572499959613 +0,2672.382616871309,3.0753543154939074,90.65609677847256,547.1456460435247,0.5367295840042061 +1,2639.0257262456407,3.03696750033897,89.52452022738355,540.3161309298724,0.5300300829985645 +2,2668.042158872389,3.070359354759644,90.50885402291472,546.2569773772376,0.5358578330051387 +3,2696.1434939659584,3.102698123020429,91.46214466990656,552.010466060852,0.5415017919949605 +4,2673.3815259950325,3.0765038512920504,90.68998309460912,547.3501634559595,0.5369302079998306 +5,2660.8570324091256,3.062090774678085,90.26511066224964,544.7858891296837,0.5344147499999963 +6,2698.0353091124884,3.104875207184301,91.52632132482418,552.3977977303548,0.5418817499958095 +7,2691.981040632199,3.0979080084828614,91.32094042397304,551.1582422048639,0.5406657920029829 +8,2674.183151781152,3.0774263551675025,90.7171769045029,547.5142889280618,0.5370912090002093 +9,2663.405459659043,3.065023482251948,90.35156178116613,545.3076560597814,0.5349265840050066 +10,2663.5876068177236,3.065233095593603,90.35774081793316,545.3449490073488,0.5349631670032977 +11,2679.6627577856493,3.0837322373666862,90.90306334498318,548.6361876219339,0.5381917500053532 +12,2663.5795158991223,3.065223784635928,90.35746634709388,545.3432924665311,0.5349615419982001 +13,2637.8766152873854,3.0356451135960905,89.4855385660065,540.0808610797914,0.5297992920022807 +14,2727.5071171168297,3.138791103568057,92.52610296604968,558.4318780782821,0.5478009590005968 +15,2656.6049568069725,3.0571975236255113,90.1208661312216,543.915315942417,0.5335607499946491 +16,2651.6997993211658,3.0515527117086405,89.95446689297644,542.9110302744242,0.5325755830053822 +17,2683.2200521488594,3.087825940305148,91.02373858812568,549.3645107708115,0.5389062079993892 +18,2637.856490096892,3.0356219537045974,89.48485585268335,540.0767406330092,0.5297952499968233 +19,2637.416674102907,3.035115817342766,89.46993583297372,539.9866923724609,0.5297069159933017 +20,2653.346607248535,3.0534478437283785,90.01033208903654,543.2481989798489,0.5329063329991186 +21,2641.957124101567,3.0403409271041864,89.62396298159297,540.916307552623,0.5306188340036897 +22,2660.7288228722828,3.0619432322753144,90.26076136881144,544.7596394117646,0.5343890000003739 +23,2642.324112046829,3.0407632535906974,89.63641243193447,540.9914449431797,0.5306925409968244 +24,2660.4190835585628,3.0615867870084155,90.25025398224808,544.6962231494972,0.5343267909993301 +25,2642.5658032207225,3.041041389659221,89.64461139951966,541.0409289776319,0.5307410829991568 +26,2652.9553415843593,3.05299757865734,89.99705905781202,543.1680909506885,0.5328277499938849 +27,2692.647814864721,3.0986753263813163,91.3435596211536,551.2947580674934,0.5407997090005665 +28,2646.477234771496,3.0455426305457207,89.77730015260863,541.8417584431778,0.5315266670004348 +29,2675.12895480308,3.0785147769326833,90.749261685233,547.707933356893,0.5372811670022202 +0,1786.816641048511,1.798138252266485,0.0,480.80218934214406,0.5190258329967037 +1,1782.8336566198657,1.7941300308884225,0.0,479.7304354814431,0.5178688749947469 +2,1795.0281902994725,1.80640183146052,0.0,483.0117786010824,0.5214110840024659 +3,1776.5294719352323,1.7877859016865922,0.0,478.03408582319827,0.5160376659987378 +4,1778.8308770630008,1.7901018889564302,0.0,478.65335508596104,0.5167061669999384 +5,1796.9891979642368,1.8083752644440696,0.0,483.5394526538505,0.5219807079993188 +6,1788.533080478114,1.7998655673838642,0.0,481.26405421214105,0.5195244159986032 +7,1802.5324156663664,1.813953605031379,0.0,485.0310389453348,0.5235908749964437 +8,1783.1182489759854,1.7944164264760196,0.0,479.8070144793935,0.5179515420022653 +9,1780.8469669108044,1.7921307531342423,0.0,479.1958508241727,0.5172917910022079 +10,1803.0189770789996,1.8144432493899736,0.0,485.1619644063301,0.5237322089960799 +11,1785.9333193618431,1.7972493336850452,0.0,480.5645023903401,0.5187692499966943 +12,1800.0309108242288,1.8114362501771968,0.0,484.35792622793593,0.5228642500005662 +13,1791.4015151729552,1.8027521770283184,0.0,482.03590155762765,0.5203576249987236 +14,1809.3940181194137,1.820858683906976,0.0,486.8773803135709,0.5255840000027092 +15,1782.4750476429078,1.7937691496965529,0.0,479.63393986052824,0.5177647079981398 +16,1782.9656266294744,1.794262837085196,0.0,479.765946382836,0.5179072090031696 +17,1797.0181746335738,1.8084044247151136,0.0,483.5472497863245,0.5219891250017099 +18,1785.9033374724231,1.7972191618246525,0.0,480.556434770114,0.5187605410028482 +19,1783.703211242511,1.795005095175095,0.0,479.9644179487629,0.5181214590047603 +20,1817.2879807960328,1.8288026642375284,0.0,489.0015123875124,0.5278770000004442 +21,1799.0441654896515,1.8104432526358776,0.0,484.0924097186932,0.5225776250008494 +22,1782.62408620486,1.7939191325952746,0.0,479.67404362116986,0.5178079999968759 +23,1773.5421286293551,1.784779630003451,0.0,477.230242178145,0.5151699170019128 +24,1780.2793658629266,1.7915595556578092,0.0,479.0431189656131,0.5171269170023152 +25,1779.0384404444324,1.7903107674990562,0.0,478.7092068873866,0.5167664590044296 +26,1782.7894773086882,1.7940855716486983,0.0,479.71854757473255,0.517856042002677 +27,1783.1825092184056,1.7944810938835989,0.0,479.8243058256533,0.5179702080058632 +28,1780.5486074656133,1.79183050322667,0.0,479.11556733499793,0.5172051249974174 +29,1787.7603534401137,1.7990879441998906,0.0,481.0561264130041,0.5192999579958268 +0,1795.147924035491,2.682538176309839,0.0,479.4457429436733,0.5142721660013194 +1,1798.013174284973,2.686819797381843,0.0,480.21099020613514,0.5150930000017979 +2,1817.3031298206895,2.7156453005345607,0.0,485.3629261214671,0.5206191670004046 +3,1791.725774326122,2.6774243652876284,0.0,478.53175970702466,0.5132917920054751 +4,1806.500707659442,2.6995029484441435,0.0,482.4778294398255,0.5175244999991264 +5,1803.0298283679308,2.6943163194871764,0.0,481.55083157056606,0.5165301660017576 +6,1809.3933002198744,2.7038254278721485,0.0,483.25037925068017,0.5183531669972581 +7,1805.3675530191017,2.697809644766114,0.0,482.1751879910992,0.5171998750010971 +8,1815.1018340205253,2.712355844583757,0.0,484.7750069387537,0.5199885420006467 +9,1794.8638752932004,2.682113714578899,0.0,479.3698795797373,0.5141907920042286 +10,1799.7155993091633,2.689363777216903,0.0,480.6656716391247,0.5155807090050075 +11,1801.77974018387,2.6924482788468493,0.0,481.2169596650104,0.5161720420001075 +12,1799.5033952376434,2.6890466749238837,0.0,480.608996455223,0.5155199169967091 +13,1799.9932496663882,2.6897786776676957,0.0,480.73982613080534,0.5156602499992005 +14,1801.5781512304152,2.692147039012335,0.0,481.163119552859,0.5161142910001217 +15,1798.893256244148,2.688134927696264,0.0,480.4460413365286,0.5153451249934733 +16,1799.251048630929,2.688669586552998,0.0,480.5416000558982,0.5154476249954314 +17,1798.4931396701047,2.6875370226598743,0.0,480.3391787289753,0.5152305000010529 +18,1826.6656523216352,2.729635971553408,0.0,487.8634562985023,0.5233013329998357 +19,1792.267552246784,2.6782339587121022,0.0,478.6764570404334,0.5134469999975408 +20,1807.306323455378,2.700706801953429,0.0,482.6929922454295,0.5177552919994923 +21,1833.0039600605849,2.7391074765225967,0.0,489.5562831804646,0.5251171250056359 +22,1804.6374227047208,2.696718591256939,0.0,481.9801857484779,0.5169907080053235 +23,1838.0546515121375,2.7466548615899486,0.0,490.9052152004653,0.5265640419966076 +24,1810.0543434631631,2.7048132426993123,0.0,483.4269298093573,0.5185425419986132 +25,1802.1788375157903,2.693044660802122,0.0,481.32355005471993,0.5162863750010729 +26,1826.6611423701695,2.7296292322107503,0.0,487.8622517866054,0.5233000409934903 +27,1815.059363185933,2.712292379265023,0.0,484.76366388419433,0.5199763749988051 +28,1814.1049581297495,2.7108661859332113,0.0,484.5087626389518,0.5197029580012895 +29,1799.3511118139418,2.6888191136782456,0.0,480.5683247990118,0.5154762909951387 +0,1744.58038605068,1.7610612612503056,0.0,475.5862232504835,0.5153866659966297 +1,1756.560303683826,1.7731543519587607,0.0,478.8520422563347,0.5189257919992087 +2,1755.239591025989,1.7718211626614624,0.0,478.4920056825191,0.5185356250003679 +3,1739.2559338704589,1.755686509506596,0.0,474.13473604845115,0.5138137080066372 +4,1747.5298457579584,1.7640385842063802,0.0,476.3902689763381,0.5162579999960144 +5,1746.06400151769,1.7625588922832085,0.0,475.99066840093514,0.5158249579981202 +6,1754.1136576433803,1.770684592699588,0.0,478.1850674586642,0.5182029999996303 +7,1743.828074684906,1.7603018428748287,0.0,475.38113730315894,0.5151644169964129 +8,1745.2030860378886,1.7616898438215771,0.0,475.7559761248724,0.5155706250006915 +9,1753.719590274181,1.7702868026156404,0.0,478.0776416195785,0.5180865840011393 +10,1747.4051663255143,1.763912726939895,0.0,476.35628039039096,0.5162211670030956 +11,1763.683879831864,1.7803452238132105,0.0,480.7939846875185,0.521030250005424 +12,1746.5747123718454,1.763074427771366,0.0,476.1298921639917,0.5159758329973556 +13,1750.7891711511495,1.7673287001182945,0.0,477.27878650553106,0.5172208750009304 +14,1746.97555312865,1.7634790552304291,0.0,476.2391644813799,0.5160942500006058 +15,1748.189215372549,1.7647041828193106,0.0,476.5700182772225,0.5164527919987449 +16,1750.0704220125792,1.7666031610290016,0.0,477.0828498831717,0.5170085410063621 +17,1749.63559252701,1.7661642237530764,0.0,476.9643119731657,0.5168800829997053 +18,1758.0945518831836,1.7747030940463342,0.0,479.27029028462607,0.519379042001674 +19,1748.336743535644,1.7648531046661042,0.0,476.6102356053953,0.5164963749994058 +20,1753.3933581542744,1.769957488613754,0.0,477.988708198654,0.517990207998082 +21,1757.4467487928955,1.7740491712254969,0.0,479.09369410850064,0.5191876669996418 +22,1747.1170153741016,1.763621853855466,0.0,476.27772819308086,0.5161360409983899 +23,1744.3720701966756,1.760850977457409,0.0,475.5294347235452,0.5153251250012545 +24,1745.079252810943,1.761564840754609,0.0,475.7222182211456,0.5155340419951244 +25,1770.162052819831,1.786884595448938,0.0,482.5599851822763,0.522944042000745 +26,1747.4794940186407,1.7639877567992526,0.0,476.3765426993906,0.5162431250064401 +27,1747.881319765739,1.7643933785537134,0.0,476.48608353281696,0.5163618329970632 +28,1747.3330930540744,1.7638399727995189,0.0,476.33663265433046,0.5161998750045313 +29,1747.8861163258769,1.764398220426472,0.0,476.48739111253,0.5163632500043605 +0,2670.570409785425,2.9727932568403896,91.95617793350104,548.196437429938,0.53703412500181 +1,2670.1093901969684,2.972280064632907,91.94030357229656,548.1018024803964,0.536941416998161 +2,2649.982550200963,2.949875512406015,91.24727287251416,543.9703023551407,0.5328940420004074 +3,2661.721079762972,2.962942466716336,91.651467537866,546.3799074578484,0.5352545830028248 +4,2660.837574935778,2.9619589775025545,91.62104567488238,546.1985476266508,0.5350769159995252 +5,2691.5962946236164,2.99619859692693,92.68016558808806,552.5124873344356,0.5412622919975547 +6,2666.77366683587,2.9685668444615825,91.82544407643525,547.417067992174,0.5362706249943585 +7,2661.481141542177,2.9626753751907864,91.6432057067442,546.3306545801257,0.5352063330064993 +8,2644.140116256491,2.9433719024768323,91.0460994103227,542.7710074544918,0.5317191670037573 +9,2645.7442612379073,2.9451575851782787,91.10133519096404,543.1002953701787,0.5320417499970063 +10,2647.4012424367324,2.9470020834609416,91.15839028952776,543.4404291433817,0.5323749580056756 +11,2658.4955937359973,2.959351959206821,91.54040386175706,545.7178017359814,0.5346059590010555 +12,2627.9855146860323,2.925389118559347,90.48984543139191,539.4549012786067,0.5284705829981249 +13,2672.1331163429904,2.974532811618548,92.00998685826812,548.5172191492541,0.5373483750008745 +14,2696.6097208558404,3.0017793820813714,92.85279369516871,553.5416091990951,0.5422704590018839 +15,2687.243218261744,2.991352892051421,92.53027541368049,551.618917576943,0.5403869170040707 +16,2700.8745297979617,3.006526830498532,92.9996445433984,554.4170600240664,0.5431280839984538 +17,2651.924020997127,2.95203669537653,91.31412384687177,544.3688342080854,0.5332844589938759 +18,2727.5859912015253,3.0362611719148456,93.91940456496148,559.9002062187241,0.548499583004741 +19,2680.5605877262074,2.9839140022467534,92.30017132792486,550.2471528637496,0.5390430840052431 +20,2658.2090353616804,2.959032971622843,91.5305367514347,545.6589789918439,0.5345483339988277 +21,2647.5437980205056,2.9471607717608688,91.16329892873787,543.4696919790941,0.5324036249949131 +22,2662.8472180427134,2.9641960477011393,91.69024403731726,546.6110734255179,0.5354810419958085 +23,2676.942866077893,2.9798868706340365,92.17560173994946,549.5045316948966,0.538315584002703 +24,2656.7905403646746,2.9574539485248152,91.4816934863912,545.3678000358345,0.5342630839950289 +25,2650.6590566633995,2.950628577684643,91.27056712770586,544.1091709770827,0.5330300829955377 +26,2635.4122073815015,2.9336562744766064,90.745569928473,540.9794019855063,0.5299640419980278 +27,2669.520937354973,2.9716250178180985,91.9200412814969,547.981008903715,0.5368230830063112 +28,2660.7279691580866,2.961836967869093,91.61727160161362,546.1760485018825,0.5350548749993322 +29,2659.5763501542456,2.960555022560134,91.57761772031516,545.9396520253587,0.5348232920005103 +0,1761.0627122628562,0.1002730818552339,0.0,479.40560434987367,0.5189407500001835 +1,1773.2261221061888,0.1009656537792014,0.0,482.7167907183622,0.5225250000003143 +2,1774.1111385027095,0.1010160456936708,0.0,482.9577144614402,0.5227857920035603 +3,1747.8332966738471,0.0995198126712257,0.0,475.8042243811302,0.51504237500194 +4,1746.9785407537054,0.0994711437568538,0.0,475.5715383015183,0.5147904999976163 +5,1750.5248233346765,0.0996730654039635,0.0,476.5369256963495,0.5158355000021402 +6,1746.6482342427255,0.099452336447164,0.0,475.4816205538911,0.514693167002406 +7,1772.610473858339,0.1009305994073606,0.0,482.5491957665912,0.5223435839943704 +8,1748.7226941545937,0.0995704540400808,0.0,476.04634076562667,0.5153044580001733 +9,1772.4744459499425,0.1009228541195305,0.0,482.5121655454757,0.5223035000017262 +10,1770.3282934230103,0.1008006544235695,0.0,481.92792879908586,0.5216710829990916 +11,1758.21465709453,0.1001109165518446,0.0,478.6302920343692,0.5181014999980107 +12,1757.855223569782,0.1000904507802411,0.0,478.532445180333,0.5179955840067123 +13,1756.2394557664416,0.0999984506396015,0.0,478.09259250793485,0.5175194580006064 +14,1747.016436775467,0.0994733015169754,0.0,475.5818545526595,0.5148016669991193 +15,1754.1526907543482,0.0998796324070574,0.0,477.5245225381418,0.5169045410002582 +16,1753.2227129170683,0.0998266804348467,0.0,477.2713591590023,0.5166304999947897 +17,1756.2227695819904,0.0999975005455885,0.0,478.088050108459,0.5175145410030382 +18,1752.1188111496306,0.0997638254146844,0.0,476.97084930760616,0.516305207995174 +19,1748.2398194280586,0.0995429596546495,0.0,475.9148901088795,0.5151621670011082 +20,1763.74038297599,0.1004255456447003,0.0,480.1345337273122,0.5197297920021811 +21,1760.1897159033686,0.1002233743491896,0.0,479.16795276347585,0.5186834999985876 +22,1751.7277020054344,0.0997415560662067,0.0,476.8643795525346,0.5161899579979945 +23,1748.352370623307,0.099549368202815,0.0,475.9455293776589,0.5151953329987009 +24,1759.1921483115996,0.1001665738865547,0.0,478.89638975161847,0.5183895419977489 +25,1747.339389421523,0.099491690105234,0.0,475.66977039312377,0.5148968329958734 +26,1751.9406486544974,0.0997536810272451,0.0,476.922348991259,0.5162527080028667 +27,1754.9035218939098,0.0999223839523559,0.0,477.7289176762137,0.5171257919937489 +28,1752.4458666562616,0.099782447615563,0.0,477.0598820500069,0.516401583001425 +29,1750.364901254197,0.0996639596067907,0.0,476.4933908800666,0.5157883749998291 +0,2600.848770700063,2.8477050643606265,87.81527710098118,538.249370013744,0.530894083000021 +1,2634.9149735248657,2.8850046180296447,88.96549124435602,545.2994193729287,0.5378477920021396 +2,2631.2590917431467,2.881001742821448,88.84205374374976,544.542829413519,0.5371015409982647 +3,2608.687578156372,2.856287882378866,88.0799472566134,539.8716224194008,0.5324941669969121 +4,2637.191165315122,2.8874968517041246,89.04234477580627,545.7704805168669,0.538312415999826 +5,2632.2141953938553,2.88204749893528,88.87430194391118,544.740489478988,0.5372964999987744 +6,2594.213485242155,2.840439999119299,87.59124276353931,536.8761882056302,0.5295396660003462 +7,2614.499626303109,2.8626515737738543,88.27618574009607,541.0744340894652,0.5336805420010933 +8,2598.6497381015606,2.8452973133456516,87.74102877898451,537.794277074809,0.5304452089985716 +9,2616.2495873675507,2.8645676301942755,88.33527157296766,541.4365910326505,0.5340377499960596 +10,2615.36164408698,2.86359540889274,88.30529098120404,541.2528299017616,0.5338564999983646 +11,2663.7990559965465,2.9166301969024504,89.94073583936394,551.2770215191783,0.5437437090004096 +12,2638.0917676316885,2.888482933558154,89.07275278832819,545.9568614533464,0.538496250002936 +13,2576.7836752567605,2.82135586061597,87.0027411901576,533.2690641199139,0.5259818339982303 +14,2668.54474913026,2.921826321538002,90.1009698223114,552.2591494953514,0.5447124159982195 +15,2618.31165380403,2.8668254150760277,88.40489535792588,541.8633386286143,0.5344586659994093 +16,2541.196333718686,2.7823907912636963,85.8011671910619,525.9042129301323,0.5187176249964978 +17,2621.886290597565,2.870739334030054,88.52558969590353,542.6031148216108,0.5351883330004057 +18,2595.717070839295,2.842086295654458,87.6420099543677,537.1873573937582,0.5298465829982888 +19,2622.3527143531123,2.8712500278103974,88.54133806689738,542.6996418843955,0.5352835410012631 +20,2604.9290232065473,2.852172588907799,87.95304309050562,539.0937841011195,0.5317269579973072 +21,2591.965462687989,2.837978608328564,87.51534034055061,536.4109567253582,0.5290807920027873 +22,2606.0694706312393,2.853421280467077,87.99154925347312,539.3298013254923,0.5319597499983502 +23,2610.929682730709,2.8587427934921505,88.15564986443236,540.3356291652896,0.5329518329963321 +24,2646.093256085373,2.89724387323626,89.34291571886699,547.6127809239,0.5401295409974409 +25,2620.8581135158865,2.869613568812353,88.49087423825999,542.390332105172,0.5349784580030246 +26,2603.73264883002,2.8508626621603126,87.91264860522266,538.8461927141382,0.5314827499969397 +27,2654.507289142156,2.9064565136701943,89.6270078401553,549.3540770896396,0.5418470419972437 +28,2627.1629223995724,2.876516790710589,88.70375033679632,543.6951213139608,0.5362654170021415 +29,2647.9789635077827,2.8993085602096804,89.40658490321015,548.0030307698646,0.5405144579999615 +0,1832.0288573050368,0.3348434297708107,0.0,485.7573635685151,0.520800792000955 +1,1821.855037508852,0.3329839412038916,0.0,483.0598035044855,0.5179086249991087 +2,1818.006657118434,0.3322805653351917,0.0,482.03941613176255,0.5168146250071004 +3,1817.065228562979,0.3321084986315828,0.0,481.7897989648372,0.5165469999992638 +4,1832.5450819984576,0.3349377811486223,0.0,485.8942391123064,0.5209475419978844 +5,1811.56117568914,0.331102512325981,0.0,480.33041463130064,0.5149823329993524 +6,1861.757947821728,0.3402770726923634,0.0,493.6399493548115,0.5292520420043729 +7,1821.582998523013,0.3329342201164281,0.0,482.9876731229022,0.517831290999311 +8,1813.0148750103676,0.3313682077404579,0.0,480.7158589690824,0.5153955839996343 +9,1828.3792277749956,0.3341763799782493,0.0,484.78967443444634,0.5197632919953321 +10,1811.5170600207716,0.3310944492206188,0.0,480.3187174843517,0.5149697919987375 +11,1817.2384760499765,0.3321401634072298,0.0,481.83573505486834,0.5165962500032037 +12,1824.018140381943,0.333379295666833,0.0,483.63334422387464,0.5185235419994569 +13,1833.410144455411,0.3350958902738674,0.0,486.1236080202995,0.521193458000198 +14,1821.170110213187,0.3328587557277406,0.0,482.8781969342333,0.5177139169973088 +15,1814.351019324002,0.3316124174006181,0.0,481.0701339230767,0.5157754169995314 +16,1818.3656082621744,0.3323461715245324,0.0,482.1345910306392,0.5169166659979965 +17,1820.1234422279413,0.3326674542116026,0.0,482.6006758247719,0.5174163750052685 +18,1805.5999711042289,0.3300129715249079,0.0,478.7498177911839,0.5132877089999965 +19,1838.1848588994617,0.3359685739951129,0.0,487.38961029471034,0.52255079200404 +20,1814.558121289498,0.3316502698242645,0.0,481.1250464340605,0.5158342909999192 +21,1810.8972069332913,0.33098115748237,0.0,480.1543651596742,0.5147935829954804 +22,1833.8570420407632,0.335177570603104,0.0,486.24210167392306,0.5213205000036396 +23,1835.274389296927,0.3354366218808924,0.0,486.6179073626107,0.5217234170049778 +24,1820.887957821545,0.3328071861936916,0.0,482.8033850111884,0.5176337080047233 +25,1812.3230565083363,0.3312417627452957,0.0,480.5324252146005,0.5151989169971785 +26,1843.4762342226047,0.3369356888166623,0.0,488.792603766332,0.524055000001681 +27,1812.032257571416,0.3311886128655741,0.0,480.45532068408846,0.5151162500042119 +28,1851.1542315714744,0.3383390111255961,0.0,490.82840343990233,0.5262376660029986 +29,1816.7635844920449,0.3320533665659065,0.0,481.7098188771606,0.5164612500011572 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/without_smell.csv new file mode 100644 index 000000000..d5dec5575 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n100/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.2976060090398,0.9378436735173552,0.0,59.34286692773609,0.0769311670010211 +1,255.2444208838569,0.9231838620144488,0.0,58.41525471712115,0.0757286250009201 +2,271.6565778521991,0.9825443698819872,0.0,62.17134202529126,0.0805979579963604 +3,281.010318201593,1.0163755584742078,0.0,64.31203964828177,0.0833731250022538 +4,276.562361563488,1.0002879128637008,0.0,63.294080003616926,0.0820534579979721 +5,274.2101672039858,0.9917803503262146,0.0,62.75575664995185,0.0813555839995388 +6,274.5216566791403,0.9929069647911036,0.0,62.827044151437065,0.0814480000044568 +7,279.96897079436485,1.0126091485453454,0.0,64.07371681312789,0.083064166996337 +8,281.3432946979796,1.0175798885309817,0.0,64.38824467083968,0.0834719160047825 +9,271.4910013468641,0.9819455025017532,0.0,62.13344817554198,0.0805488330006483 +10,266.1546378130474,0.9626446116959808,0.0,60.91216767110775,0.0789655840053455 +11,269.5141946577938,0.9747956653873808,0.0,61.68103606847738,0.0799623330021859 +12,258.3299852418828,0.9343439226758046,0.0,59.12141717621039,0.0766440829975181 +13,269.12490022342575,0.9733876411174044,0.0,61.59194211898058,0.0798468329958268 +14,252.39380832952128,0.9128735896178743,0.0,57.76286334306205,0.0748828750001848 +15,269.8575658026191,0.9760375914537234,0.0,61.75962001095112,0.0800642079993849 +16,269.730891764629,0.975579428931684,0.0,61.730629382401375,0.0800266250007553 +17,218.2457214537565,0.7893646697629007,0.0,49.947729966031815,0.0647514579977723 +18,268.35867106427986,0.9706162959421448,0.0,61.41658286392536,0.0796194999929866 +19,268.1440805449837,0.9698401516343884,0.0,61.367471663762174,0.0795558329991763 +20,248.3529828894049,0.8982584813909631,0.0,56.83807977077301,0.0736840000026859 +21,267.1683200118613,0.9663109603821372,0.0,61.14415904486973,0.0792663340034778 +22,269.2395010869689,0.9738021366328384,0.0,61.618169680043394,0.0798808339968673 +23,270.91225705631695,0.979852264234621,0.0,62.00099671967343,0.0803771249993587 +24,271.0657570274554,0.9804074524564986,0.0,62.03612673302328,0.0804226670006755 +25,270.16990124801515,0.9771672656762832,0.0,61.831101121240685,0.0801568749957368 +26,266.0163051495714,0.9621442815337454,0.0,60.8805088487732,0.0789245420019142 +27,271.33244897442904,0.9813720404413124,0.0,62.097161869303726,0.0805017919992678 +28,271.5900102009636,0.982303603869786,0.0,62.15610734831233,0.0805782079987693 +29,276.9916842265628,1.0018407137154304,0.0,63.39233481613155,0.082180834004248 +0,400.92061174484104,1.6171587700632244,12.903579352796145,79.20708892538835,0.0838514580027549 +1,398.7176187759755,1.608272748003935,12.832676301781396,78.77185896994273,0.0833907080013887 +2,393.4009922947646,1.5868275319452692,12.661561348646623,77.72149015840266,0.082278750000114 +3,383.6170164396825,1.547362755386955,12.346665319025076,75.78853828989023,0.0802324579999549 +4,389.8251629807127,1.5724040187457318,12.546473732908652,77.01503850148366,0.0815308750024996 +5,397.77390581907474,1.6044661747324025,12.80230301921896,78.58541618324745,0.0831933329973253 +6,399.3999560800827,1.6110250329280644,12.854637241905182,78.90666359195583,0.0835334169969428 +7,395.7601766177332,1.5963435695505206,12.737491398705195,78.18757775027653,0.0827721669993479 +8,402.1872645561368,1.6222679578734929,12.944346413865578,79.45733268667878,0.0841163750010309 +9,411.01636787259105,1.6578811477213755,13.228509991193476,81.20163704776988,0.0859629580008913 +10,398.47576527691933,1.60729720447833,12.824892277400007,78.72407766101153,0.083340124998358 +11,408.0708742685055,1.646000165116661,13.13370965082669,80.61971642060979,0.0853469160065287 +12,405.3895532921413,1.6351847527750234,13.047411673184042,80.08998653696001,0.0847861250003916 +13,397.95758979573526,1.6052070848903608,12.808214864854335,78.62170534535913,0.0832317500025965 +14,397.9368723030194,1.6051235185331878,12.807548074962726,78.61761233482342,0.0832274169952143 +15,378.44542169605904,1.5265025412950282,12.180218194083244,74.7668223871794,0.0791508329930366 +16,391.5864815368093,1.5795084969551971,12.603161548621676,77.36300992378476,0.081899249998969 +17,394.47718603434674,1.591168481483079,12.696198508500403,77.93410624930665,0.0825038330003735 +18,390.30130111050465,1.574324575907918,12.561798178598597,77.10910579082322,0.0816304580002906 +19,407.9415825639424,1.6454786523587592,13.1295484136126,80.59417316032173,0.0853198749973671 +20,397.80757586719625,1.6046019866912116,12.803386685473626,78.5920681398133,0.0832003749965224 +21,392.96947819373383,1.585086970865481,12.647673121697483,77.6362389271822,0.082188499996846 +22,390.6595032212386,1.575769424757937,12.57332686838104,77.17987328345646,0.0817053749997285 +23,408.1975839921713,1.6465112631616992,13.137787787311058,80.64474957694073,0.0853734170013922 +24,414.3103001797005,1.6711675973634978,13.334524787296242,81.85239627919965,0.0866518750044633 +25,381.74234235061425,1.539801044775587,12.286329169771872,75.41817200557094,0.0798403750013676 +26,374.92099637623625,1.5122863719377595,12.06678500942004,74.07052625886818,0.0784137090013246 +27,402.4068083890482,1.623153512829774,12.95141240445424,79.50070643047498,0.0841622919979272 +28,401.8214936118709,1.6207925792747733,12.932574122129962,79.38506987239568,0.0840398750005988 +29,391.9622167586124,1.581024067597764,12.615254539373826,77.43724131088216,0.0819778340010088 +0,342.4143558163426,22.97464388732165,0.0,74.05866582589358,0.0776710830032243 +1,335.7760493211137,22.529239875626008,0.0,72.62290790853656,0.0761652920045889 +2,341.1873197932309,22.892314641514485,0.0,73.7932778558848,0.0773927499976707 +3,343.31589768498696,23.03513376757867,0.0,74.25365469491692,0.0778755829960573 +4,323.4364226768475,21.701299916220275,0.0,69.95404700787338,0.0733662499987986 +5,343.57894075041355,23.05278291298555,0.0,74.31054663928006,0.0779352500030654 +6,340.9806705493116,22.87844929764678,0.0,73.74858297952042,0.0773458750045392 +7,342.3226982986895,22.968494031768262,0.0,74.03884179294928,0.0776502919979975 +8,347.991867104201,23.348872751968884,0.0,75.26499096265042,0.0789362499999697 +9,342.6748286808958,22.992120582453644,0.0,74.11500187753683,0.0777301670023007 +10,341.8285783996754,22.935340548204696,0.0,73.9319716811756,0.0775382089996128 +11,335.4773722078628,22.5091998270776,0.0,72.55830889817277,0.0760975419980241 +12,346.7988119862842,23.268823489995807,0.0,75.00695251073147,0.0786656250056694 +13,331.433108143719,22.237845764136868,0.0,71.68360024256154,0.0751801669975975 +14,350.091974780035,23.489781639571707,0.0,75.71921015621251,0.0794126249966211 +15,343.7258942820048,23.06264291154853,0.0,74.34233030226962,0.0779685840025194 +16,345.48434185317456,23.18062776252195,0.0,74.72265396228423,0.0783674590056762 +17,345.7758506438568,23.200186845084307,0.0,74.78570258085915,0.0784335829957854 +18,340.37431417243903,22.837765191998695,0.0,73.61743793982387,0.077208333001181 +19,338.8638501525627,22.73641905282022,0.0,73.29074909576718,0.0768657090011402 +20,343.6852962193971,23.059918942722213,0.0,74.33354960046559,0.0779593749975902 +21,317.60505568184874,21.31003834143328,0.0,68.69281700318751,0.0720434999966528 +22,357.97550683910896,24.018735343045087,0.0,77.42429014591897,0.0812008749999222 +23,356.2699615000434,23.90430002182354,0.0,77.05540837980368,0.0808140000008279 +24,350.6355097803409,23.526250680253575,0.0,75.8367679521068,0.0795359170006122 +25,367.0517236964975,24.627713461516414,0.0,79.38732849342684,0.0832596659965929 +26,404.5004296622107,27.140372960129103,0.0,87.48687558780871,0.0917542910028714 +27,374.12335666707185,25.10219195939788,0.0,80.91680789204189,0.0848637500021141 +28,360.5851642476922,24.193832994798537,0.0,77.98871667377752,0.0817928329997812 +29,347.03484840814104,23.284660596835764,0.0,75.05800335656228,0.0787191659983364 +0,243.54047775399584,0.0,0.0,58.53663370586776,0.0799515000035171 +1,243.291711687412,0.0,0.0,58.47684106584192,0.0798698330036131 +2,245.5951988714672,0.0,0.0,59.03050009937392,0.080626040995412 +3,244.14360606550724,0.0,0.0,58.681599755758846,0.0801494999977876 +4,243.31671713606323,0.0,0.0,58.48285129790621,0.0798780420009279 +5,241.55492443854592,0.0,0.0,58.05939227067864,0.0792996659947675 +6,244.21963070926464,0.0,0.0,58.69987280328379,0.0801744580021477 +7,245.1422220915524,0.0,0.0,58.92162400580759,0.080477333998715 +8,246.35114409687137,0.0,0.0,59.21219674860971,0.0808742090011946 +9,223.61325483398392,0.0,0.0,53.74698822433849,0.0734096250016591 +10,244.82669458259335,0.0,0.0,58.845784792604114,0.0803737499954877 +11,245.46624823405313,0.0,0.0,58.999505924204115,0.0805837080042692 +12,244.69279401281028,0.0,0.0,58.81360086704609,0.0803297919992473 +13,241.63082419202945,0.0,0.0,58.0776352999648,0.0793245829991065 +14,244.25085325559544,0.0,0.0,58.70737735765924,0.0801847080001607 +15,242.3843538378488,0.0,0.0,58.25875134798534,0.0795719579982687 +16,247.02788453109272,0.0,0.0,59.37485597995104,0.081096374997287 +17,244.8240292446239,0.0,0.0,58.845144160238355,0.080372874996101 +18,242.5058171758989,0.0,0.0,58.28794589910761,0.0796118329963064 +19,249.33936777338295,0.0,0.0,59.93043692123454,0.081855208001798 +20,234.16127478349617,0.0,0.0,56.2822775766509,0.076872416997503 +21,244.35937066953136,0.0,0.0,58.73346026662311,0.0802203330022166 +22,245.70321065155915,0.0,0.0,59.056461475755675,0.0806615000037709 +23,244.62806434791267,0.0,0.0,58.79804264559987,0.0803085420047864 +24,243.1429613426851,0.0,0.0,58.44108789444635,0.0798209999993559 +25,247.57986270663923,0.0,0.0,59.507527741842864,0.0812775829981546 +26,242.2868816000614,0.0,0.0,58.235323223295474,0.0795399589987937 +27,246.40584599254623,0.0,0.0,59.22534472655436,0.080892166995909 +28,225.71531849657757,0.0,0.0,54.25223372512112,0.0740997079992666 +29,243.29945488439853,0.0,0.0,58.47870219664816,0.0798723750049248 +0,365.5962922637533,0.31946547733638,13.09808457079158,71.3685876369473,0.0776209169998765 +1,397.2392053914885,0.3471156985245443,14.231743639506316,77.5456470503832,0.0843391249945852 +2,381.68376621972993,0.3335230393391558,13.67444461290539,74.50904698836742,0.0810364999997546 +3,374.9568692135735,0.3276449398930212,13.433442535613873,73.19587957210095,0.0796082910019322 +4,383.4586629821924,0.3350739802360996,13.738033189680085,74.85552718474466,0.0814133340027183 +5,378.5011661164349,0.3307420186267344,13.560422763696112,73.88776696121248,0.080360792002466 +6,388.4279301626621,0.3394162269858983,13.916065306421832,75.82558510864969,0.0824683749960968 +7,388.868712974047,0.3398013919731275,13.931857070898229,75.91163096679668,0.0825619590032147 +8,387.4873009382955,0.3385942860348615,13.882365727429324,75.64196350018807,0.0822686669998802 +9,361.1088179961347,0.3155442310347209,12.93731347242356,70.49258121315667,0.0766681669992976 +10,384.98725849243414,0.3364096980884604,13.792797621626878,75.15392655296206,0.081737874999817 +11,387.3220545051752,0.3384498903400692,13.876445503942838,75.60970550197146,0.0822335830016527 +12,381.00905545019447,0.3329334633434065,13.650271997079669,74.37733571091702,0.080893250000372 +13,389.17329129877953,0.3400675387091747,13.942769087076163,75.97108814762963,0.0826266250005574 +14,394.1035076922953,0.344375662086941,14.11940214556458,76.93352291022262,0.0836733749965787 +15,379.72675173367384,0.3318129602705993,13.60433137109457,74.12701532445189,0.0806210000009741 +16,376.5386550083152,0.3290271364980035,13.490112596418143,73.504662293654,0.0799441249982919 +17,384.2581846187013,0.33577261850638,13.76667735876158,75.0116029743253,0.0815830829960759 +18,371.9656137717135,0.3250311200381977,13.326275921566106,72.61195221653337,0.0789732080011162 +19,373.64807162243585,0.3265012859336209,13.38655272327846,72.94038727757092,0.0793304160033585 +20,365.013031307337,0.3189558120476555,13.077188293953876,71.25472841144624,0.0774970830025267 +21,383.8223097063111,0.3353917421411317,13.7510614277864,74.92651519432881,0.0814905410006758 +22,389.6713762032651,0.340502775431025,13.960613792672026,76.068320031291,0.0827323749981587 +23,385.0612435284915,0.3364743477180107,13.795448256438442,75.1683692802036,0.0817535829992266 +24,355.23149135254795,0.3104085034538168,12.72674864160649,69.34525967158267,0.0754203329997835 +25,389.8845047491482,0.3406890114899932,13.96824947108972,76.10992516686447,0.0827776250007445 +26,389.3864198446626,0.3402537747681428,13.950404765493856,76.0126932832031,0.0826718750031432 +27,385.34934147980306,0.3367260935685102,13.80576983630892,75.22460930320518,0.0818147499958286 +28,388.2126444619807,0.3392281059611854,13.908352344408604,75.78355887172884,0.082422667001083 +29,382.30646891442245,0.3340671696211311,13.696753954466375,74.63060569336069,0.0811687079985858 +0,261.69304748056817,0.0,0.0,60.19573731393214,0.0799580409948248 +1,250.04241406090983,0.0,0.0,57.51580952974925,0.0763982909993501 +2,265.34640271204813,0.0,0.0,61.03609747613698,0.0810742920002667 +3,260.32975890934574,0.0,0.0,59.88214793314248,0.0795414999956847 +4,256.60290463269945,0.0,0.0,59.02488121091149,0.0784027919944492 +5,254.2476553292837,0.0,0.0,58.48311684329771,0.0776831659968593 +6,267.4662730703839,0.0,0.0,61.52371898713432,0.0817220000026281 +7,261.4647674093651,0.0,0.0,60.143227370192946,0.0798882919989409 +8,246.01554802208992,0.0,0.0,56.589532838011,0.0751679170061834 +9,264.1344815492734,0.0,0.0,60.75732626436071,0.0807039999999688 +10,263.23716595979414,0.0,0.0,60.550921952010754,0.0804298330040182 +11,260.4273987454803,0.0,0.0,59.904607459614105,0.0795713330007856 +12,263.1834383636676,0.0,0.0,60.538563303991346,0.080413417003001 +13,264.8376041165323,0.0,0.0,60.91906147958976,0.0809188330022152 +14,262.7376459678526,0.0,0.0,60.43602025894914,0.0802772090028156 +15,265.9190191847479,0.0,0.0,61.16781312966357,0.0812492499971995 +16,262.16475454640056,0.0,0.0,60.30424136055219,0.0801021669976762 +17,270.0616666527359,0.0,0.0,62.120722353534894,0.0825150000018766 +18,267.46191030093564,0.0,0.0,61.522715444525154,0.0817206669962615 +19,262.00329030822877,0.0,0.0,60.26710067622695,0.0800528330000815 +20,253.51275965468895,0.0,0.0,58.314073044056784,0.0774586249972344 +21,264.0262048684438,0.0,0.0,60.732420006058504,0.0806709169992245 +22,263.8846528399279,0.0,0.0,60.69985961208996,0.0806276670045917 +23,264.5367741043955,0.0,0.0,60.849863292778615,0.0808269170011044 +24,263.01842955838407,0.0,0.0,60.50060728340553,0.0803629999936674 +25,262.9862473617866,0.0,0.0,60.493204598958165,0.0803531670026131 +26,263.65418646654734,0.0,0.0,60.64684676591282,0.0805572500030393 +27,248.40133983118992,0.0,0.0,57.13832272146015,0.0758968750014901 +28,269.71869832726696,0.0,0.0,62.04183133435922,0.0824102090045926 +29,263.8835596650258,0.0,0.0,60.69960815539335,0.0806273329944815 +0,222.96877107008976,0.5442410888057111,0.0,64.11840327492284,0.0798695409976062 +1,222.282954626191,0.5425670898579795,0.0,63.921185273893215,0.0796238750044722 +2,181.99531463538943,0.4442296009406912,0.0,52.33579986082519,0.0651924580015474 +3,222.6747169312317,0.5435233365216945,0.0,64.03384308396213,0.0797642079996876 +4,181.04789430462063,0.44191705703645,0.0,52.06335328210677,0.0648530830003437 +5,216.28285757735333,0.5279215440484597,0.0,62.195756908209155,0.0774745829985477 +6,228.03587230478863,0.5566092992946786,0.0,65.57553307315432,0.0816846250017988 +7,225.81452162597677,0.5511872381412095,0.0,64.93674649351125,0.0808889159961836 +8,223.84663434709512,0.5463838519532451,0.0,64.37084755824169,0.0801839999985531 +9,219.9018985547953,0.5367552062359611,0.0,63.236472734674166,0.078770958003588 +10,225.93084181352305,0.5514711623213376,0.0,64.97019631098259,0.0809305829970981 +11,227.51883136041133,0.555347261901843,0.0,65.42684929281089,0.0814994160027708 +12,190.86070386116344,0.4658689949319016,0.0,54.885190965414665,0.0683681250011432 +13,217.2412128408597,0.5302607788640359,0.0,62.471348009919225,0.0778178749969811 +14,229.29747185810032,0.559688718494219,0.0,65.93832714760018,0.0821365419978974 +15,232.20347485859816,0.5667819371071808,0.0,66.77399696543974,0.0831774999969638 +16,230.8951149542498,0.5635883812765823,0.0,66.39775616914736,0.0827088329970138 +17,208.47225322116213,0.5088567584345681,0.0,59.94968685307256,0.0746767500022542 +18,230.29258215990367,0.5621176681248602,0.0,66.22448777596009,0.0824930000017047 +19,229.14404490940265,0.5593142209840491,0.0,65.89420665968329,0.082081583001127 +20,226.8241736853617,0.5536516825271987,0.0,65.22708884773559,0.0812505829962901 +21,226.7383300922263,0.5534421482037561,0.0,65.20240308525501,0.0812198330022511 +22,190.32796262279587,0.4645686349297839,0.0,54.73199230266517,0.0681772920070216 +23,216.75046098615985,0.5290629101111453,0.0,62.3302240974693,0.0776420830006827 +24,227.06542074876592,0.554240538822312,0.0,65.29646348000362,0.0813369999959832 +25,225.09543972767355,0.5494320420507669,0.0,64.72996245410597,0.0806313339999178 +26,190.4228763228689,0.4648003083395731,0.0,54.75928632625596,0.0682112909998977 +27,229.14323255066827,0.5593122381099455,0.0,65.89397305232795,0.0820812920064781 +28,229.7988069023712,0.5609124195938885,0.0,66.08249443340499,0.0823161249936674 +29,226.1253285462026,0.5519458820349721,0.0,65.02612422724515,0.0810002500002156 +0,241.774082389606,0.0,0.0,58.314702618296096,0.0794790410000132 +1,236.29470921743456,0.0,0.0,56.99310514220705,0.0776777919963933 +2,245.02596783164793,0.0,0.0,59.09904116536938,0.0805480420021922 +3,239.61731779511788,0.0,0.0,57.79450175680519,0.0787700420041801 +4,234.89514347109304,0.0,0.0,56.65553686571519,0.0772177090038894 +5,244.3573637645225,0.0,0.0,58.937777199610736,0.0803282499982742 +6,246.66217572690388,0.0,0.0,59.49368634772521,0.0810859170014737 +7,247.69936496973415,0.0,0.0,59.74385121923148,0.0814268749963957 +8,247.93347313702415,0.0,0.0,59.80031694136804,0.081503834000614 +9,244.9906017154224,0.0,0.0,59.0905110345544,0.080536416004179 +10,244.5686539902464,0.0,0.0,58.988739348065465,0.0803977079995093 +11,244.99022144221857,0.0,0.0,59.090419314554566,0.0805362909959512 +12,243.10761578902108,0.0,0.0,58.63634422210183,0.0799174170024343 +13,247.61799186038243,0.0,0.0,59.72422443117351,0.0814001249964349 +14,226.95226404933985,0.0,0.0,54.73975397106182,0.0746066249994328 +15,247.18260772680364,0.0,0.0,59.61921195000334,0.0812570000052801 +16,245.5469078363539,0.0,0.0,59.22468929587267,0.0807192920037778 +17,246.62579966560577,0.0,0.0,59.48491262319668,0.0810739590015146 +18,242.99404630361005,0.0,0.0,58.6089518287452,0.0798800830016261 +19,243.03942360273416,0.0,0.0,58.61989660693602,0.0798950000025797 +20,243.40129207930585,0.0,0.0,58.70717747835799,0.0800139579951064 +21,242.2193560611542,0.0,0.0,58.42210040669198,0.0796254170054453 +22,244.86537532136504,0.0,0.0,59.06030705298102,0.080495249996602 +23,229.17519487543,0.0,0.0,55.27591379755472,0.0753373749976162 +24,245.74083136710107,0.0,0.0,59.27146268413018,0.0807830410049064 +25,244.8130288479063,0.0,0.0,59.047681344705374,0.0804780420003226 +26,245.22724384220348,0.0,0.0,59.14758793507991,0.0806142080036806 +27,246.6794116137417,0.0,0.0,59.497843557651834,0.0810915830006706 +28,245.331815099925,0.0,0.0,59.17281000080416,0.0806485839930246 +29,247.67071860704505,0.0,0.0,59.73694185944898,0.0814174580009421 +0,242.90782385251904,0.8766974823241211,0.0,55.38849450826323,0.0747689999989233 +1,252.8262075020909,0.9124946906494644,0.0,57.650110991389376,0.0778219589992659 +2,258.8651385625255,0.9342902655002208,0.0,59.02712427392467,0.0796807910010102 +3,265.50943051664234,0.9582706953423544,0.0,60.54217357359375,0.081725957999879 +4,241.39105099810257,0.8712231796786377,0.0,55.04263588755393,0.07430212500185 +5,268.08165313176636,0.9675543036464884,0.0,61.12869868395136,0.0825177090009674 +6,261.2141409213791,0.9427682322504016,0.0,59.562750101820015,0.0804038329952163 +7,258.509264266734,0.9330058519552142,0.0,58.945976861027646,0.0795712500039371 +8,252.4190252533188,0.9110250975886732,0.0,57.55726420122725,0.0776966249977704 +9,262.6748723911695,0.9480402715845252,0.0,59.89583001546517,0.0808534579991828 +10,243.05022751267248,0.8772114424277945,0.0,55.42096577338459,0.0748128330014878 +11,259.4128304085643,0.9362669826552976,0.0,59.15201043990077,0.0798493749971385 +12,258.38174975910295,0.9325456294476518,0.0,58.91690066046058,0.0795320000033825 +13,262.3333479240832,0.9468076491201768,0.0,59.81795468905688,0.0807483339958707 +14,263.7812174805347,0.9520332675244872,0.0,60.148101794672066,0.0811939999985043 +15,261.4480561277918,0.9436124737790887,0.0,59.616088075543146,0.0804758339945692 +16,260.33751362128316,0.939604328615098,0.0,59.36285919000386,0.0801339999961783 +17,259.63144712380875,0.9370560092119934,0.0,59.20186001057201,0.0799166669967235 +18,259.9144936048016,0.9380775742374896,0.0,59.26640102950425,0.0800037910012179 +19,262.0534105446716,0.9457973053945352,0.0,59.75412261581903,0.0806621669980813 +20,259.3887374833051,0.9361800270085772,0.0,59.14651670636333,0.0798419589991681 +21,259.46711100115215,0.9364628909554344,0.0,59.16438764643441,0.0798660830041626 +22,263.0187002361503,0.9492812073488284,0.0,59.97423056428847,0.0809592910009087 +23,262.90255644081475,0.9488620237616412,0.0,59.94774714408369,0.080923540997901 +24,259.5381779766367,0.9367193842930944,0.0,59.18059252908872,0.0798879579961067 +25,258.72625658100026,0.9337890157602484,0.0,58.99545603142426,0.0796380419997149 +26,258.61634070403085,0.9333923098366672,0.0,58.970392717895145,0.0796042090005357 +27,262.5734845484217,0.9476743448512254,0.0,59.87271128720777,0.0808222499981639 +28,258.2764373758836,0.9321655383507012,0.0,58.89288704794251,0.0794995839969487 +29,260.749296149042,0.941090524899868,0.0,59.45675494813809,0.0802607500008889 +0,252.0569260482816,0.0,0.0,59.22685631305648,0.080362166998384 +1,252.5636013837425,0.0,0.0,59.34591190800159,0.080523707998509 +2,255.97155373331972,0.0,0.0,60.14669253837193,0.0816102499957196 +3,234.60118746361675,0.0,0.0,55.1252093668655,0.0747968330033472 +4,253.97385574356483,0.0,0.0,59.6772851959471,0.0809733330024755 +5,252.33189155253675,0.0,0.0,59.2914660925491,0.080449833003513 +6,255.14612719979553,0.0,0.0,59.952738658728656,0.081347082996217 +7,244.04078157036597,0.0,0.0,57.34326975734617,0.077806415996747 +8,250.63124948787944,0.0,0.0,58.89185920698348,0.0799076250041253 +9,252.32235341535025,0.0,0.0,59.289224877084415,0.0804467920024762 +10,251.56057298405543,0.0,0.0,59.110226184789994,0.0802039170011994 +11,251.38231558091536,0.0,0.0,59.06834030699232,0.0801470840015099 +12,236.56595209719924,0.0,0.0,55.58687822265356,0.0754232500039506 +13,257.3785429826992,0.0,0.0,60.477298609839494,0.0820588339993264 +14,255.38228149183257,0.0,0.0,60.00822880748779,0.0814223749985103 +15,252.88574631214084,0.0,0.0,59.42160763152467,0.0806264160055434 +16,251.8723956183979,0.0,0.0,59.18349643627208,0.0803033339980174 +17,252.58816970012697,0.0,0.0,59.35168482671154,0.0805315410034381 +18,251.96845130903068,0.0,0.0,59.20606703838309,0.0803339589983807 +19,256.3833495792202,0.0,0.0,60.24345390802693,0.0817415409983368 +20,253.93595723964492,0.0,0.0,59.668380028049775,0.0809612499942886 +21,249.29862380548315,0.0,0.0,58.57872664979576,0.0794827499994426 +22,253.27297696815177,0.0,0.0,59.51259681711514,0.0807498750000377 +23,250.3815046876699,0.0,0.0,58.83317564042237,0.0798280000017257 +24,252.92717650013057,0.0,0.0,59.43134265380538,0.0806396250045509 +25,253.18214670026128,0.0,0.0,59.49125405415453,0.0807209159975173 +26,252.25818664902565,0.0,0.0,59.27414734714401,0.0804263340032775 +27,244.1120086467984,0.0,0.0,57.360006277495025,0.0778291250026086 +28,253.4064073264722,0.0,0.0,59.54394949916176,0.0807924159962567 +29,252.61770622229048,0.0,0.0,59.35862514524034,0.0805409579988918 +0,227.2823037447636,0.0,0.0,57.07730787818506,0.0794794169996748 +1,228.76466537890357,0.0,0.0,57.449572722321946,0.0799977910064626 +2,229.7965197297261,0.0,0.0,57.708701864789106,0.0803586250040098 +3,229.99490705767593,0.0,0.0,57.75852278973555,0.0804280000011203 +4,229.18670205564752,0.0,0.0,57.55555861272128,0.0801453749954816 +5,231.26160626838956,0.0,0.0,58.07662842157634,0.0808709580014692 +6,227.8381457495341,0.0,0.0,57.21689624346994,0.0796737920027226 +7,220.54535576053524,0.0,0.0,55.385461007929194,0.0771235419961158 +8,228.6866229862869,0.0,0.0,57.42997396959223,0.0799704999953974 +9,229.87968653815292,0.0,0.0,57.72958750987283,0.0803877079961239 +10,227.81550598444144,0.0,0.0,57.21121072893056,0.0796658749968628 +11,227.62605500780717,0.0,0.0,57.16363398607371,0.0795996249944437 +12,229.86336373993495,0.0,0.0,57.72548837252703,0.0803820000000996 +13,231.66171813641745,0.0,0.0,58.17710834412581,0.081010875001084 +14,230.9662314522403,0.0,0.0,58.002451070137006,0.0807676669937791 +15,231.48180120147975,0.0,0.0,58.131925881088705,0.0809479590025148 +16,229.71871471960463,0.0,0.0,57.68916272582404,0.0803314170043449 +17,231.9388627509407,0.0,0.0,58.246707552816034,0.0811077910038875 +18,221.67276777003045,0.0,0.0,55.668587504410795,0.0775177920004352 +19,231.92921431455932,0.0,0.0,58.24428454510795,0.0811044169968226 +20,229.2441321614661,0.0,0.0,57.569981010669885,0.0801654579991009 +21,228.92075580272544,0.0,0.0,57.48877164379768,0.0800523750003776 +22,229.27058667095508,0.0,0.0,57.57662452034042,0.0801747090008575 +23,230.96611135654717,0.0,0.0,58.002420910556886,0.0807676249969517 +24,215.5182335244439,0.0,0.0,54.12300194761942,0.0753655839944258 +25,231.36241133068287,0.0,0.0,58.1019435538211,0.0809062089974759 +26,229.37019641490616,0.0,0.0,57.601639472800365,0.0802095420003752 +27,230.27086205486523,0.0,0.0,57.82782325033272,0.0805245000010472 +28,228.54089874330737,0.0,0.0,57.39337830268453,0.0799195409999811 +29,229.6250615930292,0.0,0.0,57.66564365614186,0.0802986670023528 +0,245.52679852308864,0.8392357072842789,0.0,59.08219379281323,0.0801600000049802 +1,246.26969472564764,0.8417750024803378,0.0,59.26096017461578,0.080402542000229 +2,246.50579680245005,0.8425820235249182,0.0,59.31777445615424,0.0804796250013168 +3,247.08571604463523,0.8445642468028276,0.0,59.45732297491906,0.0806689580058446 +4,247.65389493149505,0.8465063403455532,0.0,59.59404636032694,0.0808544579995214 +5,243.77772330395572,0.8332571893080247,0.0,58.66130612728494,0.07958895900083 +6,244.23703850612645,0.8348271756430355,0.0,58.7718331652697,0.0797389169965754 +7,246.11284366318807,0.8412388695077525,0.0,59.223216413345774,0.080351333002909 +8,252.1240294551156,0.861785717306247,0.0,60.66971449835979,0.0823138749983627 +9,249.8666286413191,0.8540696904611672,0.0,60.126506208466175,0.0815768750035204 +10,247.52244498317268,0.8460570309788511,0.0,59.56241498091112,0.0808115420004469 +11,247.47445760540228,0.845893005213981,0.0,59.55086756706426,0.0807958750010584 +12,246.81668715232772,0.8436446785354379,0.0,59.39258536889483,0.0805811250029364 +13,232.70448612177128,0.7954077321635605,0.0,55.996704344314665,0.0759737499975017 +14,229.79544077510047,0.7854643176616778,0.0,55.29668796338212,0.0750240000052144 +15,244.65015511313172,0.8362392504550578,0.0,58.87124323203607,0.0798737919976702 +16,245.3866681263645,0.8387567272571934,0.0,59.04847359890642,0.0801142499985871 +17,255.4156904869251,0.8730369513498943,0.0,61.46180137503256,0.0833885419997386 +18,227.4619774661616,0.7774883014293191,0.0,54.735176420624065,0.0742621669996879 +19,247.43821361384772,0.8457691195441883,0.0,59.54214601591086,0.0807840420020511 +20,245.42202081322208,0.8388775663563784,0.0,59.05698067148904,0.0801257920029456 +21,245.46005051191904,0.8390075557558074,0.0,59.06613192520884,0.0801382080026087 +22,198.5005478535641,0.6784951731390624,0.0,47.76606018898999,0.064806791000592 +23,242.797444696174,0.8299064967739063,0.0,58.42541737288301,0.0792689160007285 +24,246.24735962478715,0.8416986588213944,0.0,59.25558558102617,0.0803952499991282 +25,248.27937873327463,0.8486443079480266,0.0,59.74455927954107,0.0810586669977055 +26,247.81495449698696,0.8470568584119051,0.0,59.63280283219813,0.0809070409959531 +27,252.72372926995976,0.8638355526044564,0.0,60.81402290335373,0.0825096659973496 +28,248.93357471888788,0.8508804167312274,0.0,59.9019813378784,0.0812722499977098 +29,243.99455323999783,0.8339983362045318,0.0,58.71348286879904,0.0796597500011557 +0,244.30085516419717,0.0,0.0,58.77237786122283,0.0794237919981242 +1,225.99531436860696,0.0,0.0,54.36854489113619,0.0734725419970345 +2,246.4988519375436,0.0,0.0,59.30115823251561,0.0801383750003879 +3,248.47192239445707,0.0,0.0,59.77582723178127,0.0807798329988145 +4,243.27721517189647,0.0,0.0,58.52611692864887,0.0790909999996074 +5,245.8384283162675,0.0,0.0,59.14227763182338,0.0799236669990932 +6,252.4730483757677,0.0,0.0,60.73839319531787,0.0820806249976158 +7,246.3764551131834,0.0,0.0,59.27171276698305,0.0800985829991987 +8,246.1321782239548,0.0,0.0,59.21294615469732,0.0800191669986816 +9,245.90750722117627,0.0,0.0,59.15889620443872,0.079946124998969 +10,250.79449374512456,0.0,0.0,60.3345769788476,0.0815349160038749 +11,249.24756673150785,0.0,0.0,59.96242691450618,0.0810320000018691 +12,248.5006329833621,0.0,0.0,59.782734246407195,0.0807891669974196 +13,201.25431595629993,0.0,0.0,48.41650961735576,0.0654290829988895 +14,241.8498643799761,0.0,0.0,58.18273376682212,0.0786269590025767 +15,246.26623584150497,0.0,0.0,59.24519690121452,0.0800627499993424 +16,253.02671313402087,0.0,0.0,60.87159041379928,0.0822606250003445 +17,254.4136956323178,0.0,0.0,61.205262023020715,0.0827115420033806 +18,252.45626002588983,0.0,0.0,60.73435435868744,0.0820751669962192 +19,248.73901644208024,0.0,0.0,59.84008305389389,0.0808666670054663 +20,225.67067614143417,0.0,0.0,54.29044544877944,0.0733670000045094 +21,246.5857465567506,0.0,0.0,59.322062798693686,0.0801666250044945 +22,246.7726084003519,0.0,0.0,59.367016856969904,0.0802273750014137 +23,246.30570906024255,0.0,0.0,59.25469312227967,0.0800755829986883 +24,245.74076493504523,0.0,0.0,59.11878238396375,0.0798919160006335 +25,246.2417577120216,0.0,0.0,59.23930810531011,0.0800547920007375 +26,245.9956844736978,0.0,0.0,59.18010933854943,0.0799747919954825 +27,246.54319742169463,0.0,0.0,59.31182659284212,0.0801527920048101 +28,245.51635537810407,0.0,0.0,59.06479533071602,0.0798189589986577 +29,232.80692876152213,0.0,0.0,56.00724064877602,0.0756870420009363 +0,248.82851645392185,0.0,0.0,60.371399972863664,0.0773350419985945 +1,240.3368936219519,0.0,0.0,58.3111411017608,0.0746958750023623 +2,248.97893642549755,0.0,0.0,60.407895244375624,0.0773817920053261 +3,251.12462953695908,0.0,0.0,60.92848869924618,0.0780486660005408 +4,249.99473921307967,0.0,0.0,60.654351869430606,0.0776974999971571 +5,250.5545910075268,0.0,0.0,60.79018451871761,0.0778714999978547 +6,251.56958945104645,0.0,0.0,61.036445991794814,0.078186958002334 +7,253.98636346091425,0.0,0.0,61.622809775468184,0.0789380830028676 +8,258.675926589324,0.0,0.0,62.76060336664463,0.0803955829978804 +9,253.03209606091505,0.0,0.0,61.39128302078818,0.0786414999965927 +10,245.9887712196412,0.0,0.0,59.682413847788496,0.0764524590049404 +11,251.58675179541757,0.0,0.0,61.04060996291544,0.078192291999585 +12,253.69195862142328,0.0,0.0,61.551380533465895,0.0788465829973574 +13,249.9323994112021,0.0,0.0,60.639226830037956,0.0776781250024214 +14,249.64268574376183,0.0,0.0,60.56893577198762,0.0775880829969537 +15,248.90372320903617,0.0,0.0,60.389646824785515,0.0773584159978781 +16,249.89043626314705,0.0,0.0,60.62904562560264,0.0776650830011931 +17,251.38565561954871,0.0,0.0,60.99181950336761,0.0781297920038923 +18,248.0580477823997,0.0,0.0,60.18446692757648,0.0770955830012098 +19,242.71331647279524,0.0,0.0,58.88771478582841,0.075434459002281 +20,251.9422866197867,0.0,0.0,61.12687071546968,0.0783027909928932 +21,252.17301315190568,0.0,0.0,61.182850166512566,0.0783745000007911 +22,251.8146597287694,0.0,0.0,61.09590555844225,0.078263124996738 +23,248.1852757086486,0.0,0.0,60.2153352867692,0.0771351250004954 +24,252.43765573938865,0.0,0.0,61.24705841613956,0.0784567500013508 +25,247.58493442148287,0.0,0.0,60.069678975007925,0.0769485410055494 +26,252.21926527656947,0.0,0.0,61.19407197323097,0.0783888750011101 +27,249.8356029545924,0.0,0.0,60.61574183048396,0.0776480409986106 +28,229.06746313872625,0.0,0.0,55.5769235576266,0.0711933749989839 +29,254.86381530062064,0.0,0.0,61.83569934587096,0.0792107919987756 +0,258.05412357567263,0.0,0.0,60.88917522572051,0.0776646669983165 +1,257.9959768285465,0.0,0.0,60.87545520673569,0.0776471669960301 +2,256.0814273269359,0.0,0.0,60.42370757152421,0.077070958999684 +3,258.3119063629601,0.0,0.0,60.9500003777771,0.0777422500032116 +4,254.87501871078396,0.0,0.0,60.13904935872431,0.0767078749995562 +5,218.53039916041607,0.0,0.0,51.56335261088469,0.0657694999972591 +6,256.2375895242391,0.0,0.0,60.46055483156204,0.0771179579969612 +7,256.1942552713655,0.0,0.0,60.45032989549073,0.0771049160030088 +8,269.4083809346708,0.0,0.0,63.568269658742544,0.0810818750032922 +9,256.7634055100046,0.0,0.0,60.584623772023555,0.0772762089982279 +10,265.09209197392056,0.0,0.0,62.54981945452058,0.0797828330032643 +11,247.3756110807905,0.0,0.0,58.36952621007416,0.0744508329953532 +12,258.04927578522654,0.0,0.0,60.88803136505345,0.0776632079941919 +13,256.90531014005614,0.0,0.0,60.61810688697954,0.0773189169995021 +14,259.4555995489818,0.0,0.0,61.21986056773728,0.0780864589978591 +15,259.6106553252205,0.0,0.0,61.25644676213068,0.0781331250036601 +16,255.6555672710305,0.0,0.0,60.32322373810831,0.0769427910054219 +17,257.38764897090465,0.0,0.0,60.73191717291009,0.077464082998631 +18,260.96699944384073,0.0,0.0,61.57648301483883,0.078541333998146 +19,236.34739083788008,0.0,0.0,55.7673618830953,0.071131750002678 +20,255.39654180892845,0.0,0.0,60.26210537064603,0.0768648340017534 +21,256.04875219815136,0.0,0.0,60.41599770967616,0.0770611250045476 +22,255.4578716622009,0.0,0.0,60.27657645962043,0.0768832920002751 +23,258.9686854110115,0.0,0.0,61.10497071495777,0.0779399160019238 +24,258.4434309763645,0.0,0.0,60.98103427532196,0.0777818340066005 +25,257.6428035065198,0.0,0.0,60.792122175695674,0.0775408749977941 +26,258.0723949714545,0.0,0.0,60.893486453938706,0.0776701660070102 +27,257.6979033528984,0.0,0.0,60.80512326304344,0.0775574579965905 +28,260.41847965721485,0.0,0.0,61.44705699776979,0.0783762499995646 +29,236.55450287180864,0.0,0.0,55.81623101469642,0.0711940830005914 +0,247.6358913639864,0.0,0.0,60.23755530694149,0.0770938330024364 +1,224.91484920266885,0.0,0.0,54.710650356753966,0.070020334002038 +2,250.59815225213995,0.0,0.0,60.95812676005715,0.0780160419963067 +3,250.60497804678556,0.0,0.0,60.9597871380428,0.0780181669979356 +4,252.79538510278,0.0,0.0,61.4926047577078,0.0787000829950557 +5,249.1592469382651,0.0,0.0,60.608112317689475,0.0775680829974589 +6,251.2633310797192,0.0,0.0,61.11993184491222,0.0782231250050244 +7,246.2273696215814,0.0,0.0,59.894931683637864,0.0766553329958696 +8,248.6098367504889,0.0,0.0,60.47446801277843,0.0773970410009496 +9,247.39203882310005,0.0,0.0,60.17823805354388,0.0770179169994662 +10,255.71776095388975,0.0,0.0,62.20347415547271,0.0796098750070086 +11,249.22121548631523,0.0,0.0,60.62318619821583,0.0775873750026221 +12,249.92976133402135,0.0,0.0,60.79554033256047,0.0778079590018023 +13,247.14791645978391,0.0,0.0,60.11885516570433,0.0769419169955654 +14,238.7495165766193,0.0,0.0,58.07594016390296,0.0743273330008378 +15,250.1377439451952,0.0,0.0,60.84613220748805,0.0778727080032695 +16,250.0574405131458,0.0,0.0,60.826598357193696,0.0778477079948061 +17,252.51927631291608,0.0,0.0,61.42544115549913,0.0786141249991487 +18,247.5537152778006,0.0,0.0,60.21756593258521,0.0770682500005932 +19,246.7884238216119,0.0,0.0,60.03140840039478,0.0768299999981536 +20,252.3361845579575,0.0,0.0,61.38090399388328,0.0785571250016801 +21,242.33265448766724,0.0,0.0,58.94754026556956,0.0754428329964866 +22,255.49612352817607,0.0,0.0,62.14956074003047,0.0795408749982016 +23,246.05659319801717,0.0,0.0,59.853390232586854,0.0766021669987822 +24,240.24168874114216,0.0,0.0,58.43891179452095,0.0747918749984819 +25,253.03723326850667,0.0,0.0,61.55143444583822,0.0787753749973489 +26,250.83156534101704,0.0,0.0,61.01490461149521,0.0780887079963577 +27,252.68015295270183,0.0,0.0,61.46457447915958,0.0786642090024543 +28,247.46926179214807,0.0,0.0,60.197022579661535,0.0770419580003363 +29,247.49469226985136,0.0,0.0,60.20320855617205,0.0770498749989201 +0,375.13289565277574,1.2312531836381355,14.54209841215852,76.27114315942181,0.0812097079979139 +1,372.64328106315486,1.223081823768006,14.445588026665366,75.76496054260187,0.0806707500014454 +2,387.06785099851174,1.270425839345776,15.004759237678492,78.69773037244646,0.0837934169976506 +3,384.2510321293888,1.2611805365729962,14.895564715740525,78.12502134662994,0.0831836249999469 +4,371.5677530253622,1.219551748597392,14.403894976677307,75.54628669689791,0.0804379170003812 +5,355.26312349058134,1.1660370415285648,13.771842895891426,72.2312675454992,0.0769082499973592 +6,310.8037935940057,1.020113577838926,12.048368473394882,63.191900551535625,0.0672835830046096 +7,377.5341705912262,1.2391345969906298,14.635184294186626,76.75936476493307,0.0817295420056325 +8,383.3779823279192,1.2583150311481424,14.861720773290225,77.94751490247413,0.0829946249941713 +9,392.08615035475583,1.2868967943871166,15.199294571545131,79.71803926311544,0.0848797910002758 +10,367.5730098278583,1.2064402877344769,14.249037992972063,74.73408485101137,0.0795731249963864 +11,379.73526762287406,1.2463589906898198,14.720510241390576,77.20688666651533,0.0822060409991536 +12,382.579806971804,1.2556952770297831,14.83077935302744,77.78523175546657,0.0828218339956947 +13,389.5763262601621,1.278659103311097,15.102000760728362,79.20774769700093,0.0843364579995977 +14,382.2037165391674,1.2544608810386937,14.816200135511057,77.70876592812664,0.0827404169976944 +15,380.74632391965866,1.2496774580881194,14.759704032013737,77.41245226859378,0.0824249169963877 +16,377.5728526745875,1.2392615584990454,14.63668381254278,76.76722951567059,0.0817379159998381 +17,367.20789027511165,1.20524190013121,14.234884063711858,74.65984959731712,0.0794940830019186 +18,377.4556422780202,1.2388768530370573,14.632140129113353,76.74339857191717,0.0817125419998774 +19,384.8167037344661,1.2630371718420337,14.917493083647802,78.24003237464706,0.0833060830045724 +20,378.67475235924377,1.242878190126144,14.679399164462836,76.99126518294923,0.0819764580010087 +21,383.49654619559766,1.2587041789441245,14.866316924286007,77.971621030809,0.0830202919969451 +22,382.5284125446302,1.2555265913378268,14.828787038233251,77.77478236071079,0.0828107080014888 +23,389.7070158106584,1.2790880497644248,15.107066966136586,79.23431919081249,0.0843647500005317 +24,381.81415619532726,1.2531822743925405,14.801098754311896,77.62956142993791,0.0826560839996091 +25,373.2033724819483,1.2249201438687207,14.46730007758462,75.87883702019211,0.0807919999933801 +26,384.63443496950606,1.26243893319185,14.910427400130768,78.20297391556,0.0832666250062175 +27,375.22663070293993,1.2315608388191943,14.54573206929697,76.29020115063766,0.0812299999961396 +28,343.0743046904643,1.1260311606091704,13.299341005032636,69.75306540854645,0.0742695840017404 +29,381.4448007182924,1.2519699837289824,14.7867806186369,77.55446493802236,0.0825761250016512 +0,245.4849858868351,0.03325453615373,0.0,59.824910540560325,0.077182166998682 +1,243.26148489011845,0.0329533303833809,0.0,59.2830413597024,0.0764830830012215 +2,227.93765961629927,0.0308774938521131,0.0,55.54861143995156,0.0716651670009014 +3,250.7231538165253,0.0339641227061128,0.0,61.101456748297075,0.078829083002347 +4,252.5889686193737,0.0342168746436431,0.0,61.55615748391402,0.0794157080017612 +5,263.35196166133625,0.0356748796615194,0.0,64.17910851107341,0.0827996669977437 +6,226.94041043538476,0.0307424018471125,0.0,55.30558092295546,0.0713516250034445 +7,242.6599554225411,0.0328718444083637,0.0,59.13644809064636,0.07629395800177 +8,243.85373972789893,0.0330335599739771,0.0,59.4273743931848,0.076669291993312 +9,247.36392063917748,0.0335090653805442,0.0,60.28280861959906,0.0777729170004022 +10,248.7334295032324,0.0336945854108957,0.0,60.61655915420145,0.0782035000011092 +11,247.311043310453,0.0335019023720472,0.0,60.26992236731305,0.0777562920047785 +12,226.72783872430568,0.0307136058960045,0.0,55.25377700691221,0.0712847909962874 +13,246.69360768372263,0.0334182616748472,0.0,60.119452753050254,0.0775621659995522 +14,247.48014585109556,0.0335248097874689,0.0,60.311132807656584,0.0778094590059481 +15,246.05219040943203,0.0333313723123045,0.0,59.963138789835845,0.0773604999994859 +16,249.95252500188107,0.0338597297482905,0.0,60.913653817174755,0.078586792005808 +17,250.6415207454208,0.0339530643112192,0.0,61.081562695883505,0.0788034170036553 +18,246.5275553318546,0.0333957674521612,0.0,60.07898564643816,0.0775099579986999 +19,244.4563283517981,0.0331151894272281,0.0,59.57422577958342,0.0768587499987916 +20,247.40791776784516,0.0335150254359042,0.0,60.29353075919174,0.0777867500000866 +21,250.543583961273,0.0339397973396468,0.0,61.05769541402468,0.0787726250055129 +22,245.99334947150876,0.0333234014456121,0.0,59.948799200656225,0.0773420000041369 +23,249.4980979022536,0.0337981709431392,0.0,60.802909526707424,0.078443917002005 +24,244.25754136307833,0.0330882608186234,0.0,59.5257812127036,0.0767962500030989 +25,245.0430139869781,0.0331946645877781,0.0,59.717201593412845,0.0770432079953025 +26,249.4024129823822,0.0337852090195586,0.0,60.779591026186075,0.0784138330054702 +27,246.43412861712733,0.033383111435536,0.0,60.05621747252941,0.0774805839973851 +28,257.6022464065648,0.0348959965329944,0.0,62.77789776285696,0.0809919169987551 +29,247.07528191230236,0.0334699650382419,0.0,60.21246710379734,0.0776821670006029 +0,372.1999907806733,0.3719294966013269,13.15277947071965,75.60312312732427,0.0830702079983893 +1,374.8739455288989,0.3746015080684854,13.247271512603714,76.14627018555758,0.0836669999989681 +2,360.3381183231657,0.3600762446906633,12.733605380424368,73.19368028439303,0.0804227919943514 +3,348.5626801398173,0.3483093642385529,12.317485698981551,70.8017944034004,0.0777946669986704 +4,364.61442878503067,0.3643494473687624,12.884721366040782,74.06230584695935,0.0813772089968551 +5,369.74521098479994,0.3694765008023982,13.06603261928481,75.10449598128749,0.0825223330029985 +6,370.1217651183437,0.3698527812774147,13.07933926517403,75.18098353966357,0.082606374999159 +7,367.7420344733176,0.3674747800877992,12.995244495832171,74.69760075239263,0.0820752500003436 +8,357.43864421849787,0.3571788777619437,12.6311439499451,72.60472460688237,0.0797756669999216 +9,367.8997855910099,0.3676324165607839,13.000819094740448,74.72964394817389,0.0821104580027167 +10,369.70227391665503,0.3694335949385179,13.06451531191668,75.09577438932055,0.0825127500065718 +11,375.3479470908132,0.3750751651525205,13.264021749484588,76.24255175282144,0.0837727909965906 +12,367.93805840787127,0.3676706615630981,13.002171577095016,74.73741811409886,0.0821189999987836 +13,378.27841319804594,0.3780035015605473,13.367578373368447,76.83780268085307,0.0844268330038175 +14,382.7117309698025,0.3824335974443884,13.524242673260645,77.73832035324112,0.0854162920004455 +15,372.41599349838015,0.3721453423403144,13.160412560943849,75.64699867935846,0.0831184170019696 +16,356.7682378530547,0.3565089586104289,12.607453172677896,72.46854831390174,0.0796260409988462 +17,368.93348814627194,0.3686653678787238,13.037348009529412,74.93961477971149,0.0823411669989582 +18,369.17263738293974,0.3689043433150742,13.045799049960351,74.98819196840964,0.0823945420052041 +19,368.3876096681557,0.3681198861146177,13.018057790780574,74.82873321384412,0.0822193340063677 +20,370.1432358855347,0.3698742364408505,13.080097997771896,75.18534478924924,0.0826111669957754 +21,368.5427485912714,0.368274912291423,13.02354008012396,74.860245807602,0.0822539590008091 +22,380.3863269498703,0.3801098833983078,13.44206769472198,77.2659726616924,0.0848972919993684 +23,370.1045866985358,0.3698356153419234,13.078732215273476,75.17749417314008,0.0826025409987778 +24,361.6613717978691,0.3613985364985974,12.78036642708676,73.46246614644215,0.0807181249983841 +25,367.61097844676897,0.3673438193054559,12.990613246347486,74.67097999699995,0.0820459999958984 +26,371.72020035590015,0.3714500548614554,13.135824667373289,75.50566569729222,0.0829631250016973 +27,331.3958353192039,0.3311549953226056,11.710844834590327,67.3147790492133,0.0739632500044535 +28,363.23311194428186,0.3629691343919968,12.835908479862432,73.78172586368225,0.0810689170029945 +29,360.0086099352188,0.3597469757710216,12.721961234084311,73.12674889309132,0.0803492499981075 +0,245.20605579923495,0.0,0.0,58.064741436243395,0.0789422499947249 +1,250.55095440543516,0.0,0.0,59.3304122801399,0.0806630000006407 +2,249.81311766159192,0.0,0.0,59.155692697404575,0.0804254589966149 +3,249.81764644337736,0.0,0.0,59.156765111960304,0.0804269170039333 +4,249.02622560509047,0.0,0.0,58.969356827150214,0.0801721250027185 +5,248.4707444057284,0.0,0.0,58.83781899824741,0.0799932919981074 +6,250.77834905281665,0.0,0.0,59.38425928388194,0.0807362080013263 +7,246.38859307336747,0.0,0.0,58.34476600919865,0.079322958998091 +8,246.47595340441205,0.0,0.0,58.36545291685823,0.0793510840012459 +9,251.11329706391197,0.0,0.0,59.46357490108985,0.0808440420005354 +10,250.43486224262665,0.0,0.0,59.302921680879294,0.0806256249998114 +11,251.25358918047456,0.0,0.0,59.49679604421048,0.0808892079949146 +12,249.02648340531616,0.0,0.0,58.96941787418838,0.080172207999567 +13,253.20619256589657,0.0,0.0,59.95917210720173,0.0815178340053535 +14,249.5875338986397,0.0,0.0,59.10227451070708,0.0803528339965851 +15,246.30614979515929,0.0,0.0,58.32524345859641,0.0792964170032064 +16,248.74706084391897,0.0,0.0,58.90325067156323,0.0800822500023059 +17,249.45383612969297,0.0,0.0,59.07061490768795,0.0803097910029464 +18,248.40447792783144,0.0,0.0,58.82212711049024,0.0799719580027158 +19,228.9579399496601,0.0,0.0,54.21719108698062,0.0737112909991992 +20,240.07082197850164,0.0,0.0,56.84871916858917,0.0772889999934705 +21,248.96720883475896,0.0,0.0,58.955381668590064,0.0801531249962863 +22,250.81174011459103,0.0,0.0,59.39216628015041,0.0807469580031465 +23,237.7471648094788,0.0,0.0,56.298477649202496,0.0765409160012495 +24,249.37748086472203,0.0,0.0,59.05253399731491,0.0802852089982479 +25,250.11596367984183,0.0,0.0,59.227406569589995,0.0805229580000741 +26,248.8819172109695,0.0,0.0,58.93518463036493,0.0801256659979117 +27,249.33903922826215,0.0,0.0,59.04343102604385,0.0802728330017998 +28,262.4534401956857,0.0,0.0,62.148918363143466,0.0844949160018586 +29,261.2161602290057,0.0,0.0,61.85593073233089,0.0840965829993365 +0,224.52516714856455,0.0,0.0,57.735973906146626,0.0753427089948672 +1,226.79521855584545,0.0,0.0,58.3197108229514,0.0761044579994632 +2,231.69330601434635,0.0,0.0,59.57923933499082,0.0777480830001877 +3,234.760649370358,0.0,0.0,60.36799748719698,0.078777374998026 +4,228.2324736502117,0.0,0.0,58.6892966634995,0.0765867500012973 +5,223.36952695819903,0.0,0.0,57.43880449425753,0.0749549169995589 +6,227.94378113460672,0.0,0.0,58.615060248225674,0.076489874998515 +7,228.01604737457023,0.0,0.0,58.63364329527478,0.0765141249939915 +8,210.18081054030137,0.0,0.0,54.047365589524595,0.070529249998799 +9,226.91454579476897,0.0,0.0,58.35039546485715,0.076144500002556 +10,223.1887361622084,0.0,0.0,57.392314682837515,0.0748942499994882 +11,228.57679477020545,0.0,0.0,58.777837807691775,0.0767022919972078 +12,233.5521132500369,0.0,0.0,60.05722604543105,0.0783718329985276 +13,231.26827613662832,0.0,0.0,59.46994417560664,0.0776054579982883 +14,232.72316419059683,0.0,0.0,59.844064278876445,0.0780936669980292 +15,226.37205419514888,0.0,0.0,58.21089537567897,0.075962458999129 +16,235.85594353154897,0.0,0.0,60.649649098520506,0.079144916999212 +17,235.0194191984909,0.0,0.0,60.43453937305556,0.0788642090046778 +18,235.69725578504784,0.0,0.0,60.60884302004133,0.0790916670011938 +19,228.5368114262151,0.0,0.0,58.76755621060125,0.0766888750004 +20,224.62400355737097,0.0,0.0,57.76138939249184,0.0753758749997359 +21,231.10611067541615,0.0,0.0,59.42824381321107,0.0775510410021524 +22,232.56050106737092,0.0,0.0,59.802235944185355,0.0780390830041142 +23,232.27069102387352,0.0,0.0,59.727712159962834,0.0779418329984764 +24,231.9585306176708,0.0,0.0,59.64744104694712,0.0778370830012136 +25,230.3707829163002,0.0,0.0,59.23915648348338,0.0773042910004733 +26,230.7023166464104,0.0,0.0,59.32440938868658,0.0774155420003808 +27,239.12095968349055,0.0,0.0,61.489238217841425,0.0802405409995117 +28,235.103850013608,0.0,0.0,60.45625050415228,0.0788925410015508 +29,229.96015861058865,0.0,0.0,59.13356567377203,0.0771664999992935 +0,242.1989277900244,0.0,0.0,58.23108794513989,0.0794612079989747 +1,242.4689300777569,0.0,0.0,58.29600370304932,0.0795497910003177 +2,245.1891581817424,0.0,0.0,58.950019158028326,0.0804422499932115 +3,244.62667452650356,0.0,0.0,58.81478307133387,0.0802577089998521 +4,230.49772748177529,0.0,0.0,55.41780701763689,0.0756222499985597 +5,248.5687694470221,0.0,0.0,59.76256792777146,0.0815510410029674 +6,245.56152502051543,0.0,0.0,59.03954608671583,0.0805644170031882 +7,248.22625184539208,0.0,0.0,59.68021755254367,0.0814386670026579 +8,245.84270436380183,0.0,0.0,59.107149107161334,0.0806566669998574 +9,247.49612431036985,0.0,0.0,59.50467540175467,0.0811991250011487 +10,245.79812410417784,0.0,0.0,59.09643082264013,0.0806420410008286 +11,243.7852944737544,0.0,0.0,58.61249284530364,0.0799816670041764 +12,241.62857108664963,0.0,0.0,58.0939589674959,0.0792740839970065 +13,248.07080308887888,0.0,0.0,59.642843521642384,0.0813876669999444 +14,245.79787110638867,0.0,0.0,59.09636999521763,0.0806419579967041 +15,246.7866989049236,0.0,0.0,59.33411059557655,0.0809663750042091 +16,243.67810491245837,0.0,0.0,58.58672161325243,0.0799464999945485 +17,244.35603522014415,0.0,0.0,58.749714157140794,0.0801689170039026 +18,240.2579794931515,0.0,0.0,57.764432159321714,0.0788244170034886 +19,243.21099669998037,0.0,0.0,58.47441632912548,0.0797932500063325 +20,261.55407699968373,0.0,0.0,62.884582517155906,0.0858112920031999 +21,239.347894129501,0.0,0.0,57.54562334240464,0.0785258340038126 +22,245.55783996400805,0.0,0.0,59.03866010075577,0.0805632080009672 +23,224.7037046013891,0.0,0.0,54.02476924087008,0.0737213330066879 +24,245.09403272066805,0.0,0.0,58.92714845773173,0.0804110410026623 +25,245.82682726665857,0.0,0.0,59.10333182915559,0.0806514580035582 +26,246.27298345658295,0.0,0.0,59.210599687728774,0.0807978340017143 +27,229.8491343612716,0.0,0.0,55.26186791672805,0.0754094580042874 +28,244.80002731204428,0.0,0.0,58.85646170877651,0.0803145829995628 +29,244.9462070527816,0.0,0.0,58.89160722084109,0.0803625420012394 +0,390.52920735789286,1.414594800261449,14.651160431279292,79.41939378610707,0.0829697910012328 +1,384.12549595459296,1.3913989504176718,14.410917700754458,78.11711250202072,0.0816092919994844 +2,393.30254594300726,1.4246405286421997,14.755205475222782,79.9833896794835,0.083558999998786 +3,360.8727014356981,1.3071714929106786,13.5385618908606,73.38834238769952,0.0766691250028088 +4,405.9071867253503,1.4702977009456415,15.228083331222717,82.54671378166245,0.0862369159949594 +5,376.1649778695818,1.362563956060581,14.11226954491316,76.49823353311547,0.0799180419999174 +6,399.0524005201552,1.445467944963046,14.970918001402978,81.15270033863959,0.0847805840021465 +7,389.3215008612753,1.410220184232304,14.60585190812029,79.17379034332791,0.0827132080012233 +8,387.25106011430057,1.4027205282277382,14.528176899501574,78.75273822764302,0.0822733329987386 +9,381.1097575229882,1.380475188957784,14.297778742777048,77.50382132291558,0.0809685839994927 +10,388.80943418261313,1.4083653502086892,14.586641127161425,79.06965466171641,0.0826044169953093 +11,387.03474113975176,1.4019369666122965,14.520061439913068,78.70874683980463,0.0822273750018212 +12,371.1670527931054,1.3444602171030986,13.924766534282094,75.48183790307397,0.0788562090019695 +13,424.3344458168445,1.537045858068777,15.919403529998048,86.29414603157562,0.0901518749960814 +14,389.76179221321985,1.4118150300090757,14.622369953665428,79.2633295419381,0.082806749996962 +15,390.39525883526056,1.4141096050953812,14.646135195630734,79.39215354321212,0.0829413329993258 +16,393.57240572328834,1.4256180284931532,14.765329580821945,80.03826931397275,0.0836163329950068 +17,385.66542844400936,1.3969769723715733,14.468690070991295,78.43027859171833,0.0819364579947432 +18,388.7449122184754,1.4081316354614892,14.584220510136852,79.05653324805218,0.0825907089965767 +19,377.0794878306152,1.3658765406542337,14.146578456775991,76.68421149673054,0.0801123339988407 +20,380.5151179921033,1.3783212553400894,14.275470144593784,77.38289333552217,0.0808422499976586 +21,367.5496145188862,1.3313569478045033,13.789054102260929,74.74618292673854,0.0780876670032739 +22,381.5729902475733,1.3821531341438618,14.315157460775712,77.5980259597911,0.081066999999166 +23,381.3190114597089,1.3812331592330984,14.305629149199946,77.5463759398011,0.0810130409954581 +24,384.3653493586524,1.392267759643243,14.4199160820193,78.16588993425634,0.0816602499980945 +25,379.5121562547591,1.374688276213875,14.237842860786564,77.17892750743613,0.0806291659973794 +26,389.6756938969837,1.411503160299553,14.619139874531085,79.24582028538919,0.0827884579994133 +27,378.29601973401833,1.3702831245216704,14.192218075403016,76.93160970528807,0.0803707919985754 +28,397.43538803515025,1.4396107199203374,14.910253884889208,80.82385898981322,0.0844370419945335 +29,390.5568650001384,1.4146949831829077,14.652198040108686,79.42501834155468,0.0829756669991184 +0,228.1520204661302,0.0,0.0,57.746086091398226,0.0799198750028153 +1,227.8495358539531,0.0,0.0,57.66952616253846,0.0798139170001377 +2,229.0306925870703,0.0,0.0,57.968481123615135,0.0802276670001447 +3,230.2044726270147,0.0,0.0,58.265569017469915,0.0806388330020126 +4,229.10003753664316,0.0,0.0,57.98603257645722,0.0802519579956424 +5,230.7167820382236,0.0,0.0,58.39523634763275,0.0808182909968309 +6,211.05486597292324,0.0,0.0,53.418735611373734,0.0739308750053169 +7,230.54216782071205,0.0,0.0,58.3510408694748,0.0807571249970351 +8,228.80932881388665,0.0,0.0,57.91245316700242,0.0801501249952707 +9,230.55620182047025,0.0,0.0,58.35459292462026,0.0807620409977971 +10,230.03128580010983,0.0,0.0,58.22173481694031,0.0805781670060241 +11,230.794814047148,0.0,0.0,58.41498652602709,0.0808456250015297 +12,230.31081241713733,0.0,0.0,58.29248399574981,0.0806760830018902 +13,232.7656686097756,0.0,0.0,58.91381681039013,0.0815359999978682 +14,229.0882616679938,0.0,0.0,57.98305206230952,0.0802478330006124 +15,211.45488911631423,0.0,0.0,53.51998288864797,0.074070999995456 +16,231.4391589588723,0.0,0.0,58.578072509964315,0.0810713340033544 +17,231.1610539996254,0.0,0.0,58.50768315778455,0.0809739160031313 +18,223.1157480108247,0.0,0.0,56.47138765923167,0.0781557080044876 +19,229.29047568345513,0.0,0.0,58.03423314728023,0.0803186669945716 +20,226.68384051120097,0.0,0.0,57.37448453423561,0.0794055830047 +21,229.939339682268,0.0,0.0,58.19846292819781,0.0805459589973907 +22,229.9903656561629,0.0,0.0,58.211377783281776,0.0805638329984503 +23,229.92208836236088,0.0,0.0,58.1940965579044,0.0805399159944499 +24,234.3581505243959,0.0,0.0,59.31687963469814,0.0820938340038992 +25,232.28523543551043,0.0,0.0,58.79221746892648,0.0813677080004708 +26,224.9047315536089,0.0,0.0,56.92418574301216,0.0787823749997187 +27,229.36006045625183,0.0,0.0,58.051845300231406,0.080343041998276 +28,227.33044351249188,0.0,0.0,57.53814204865611,0.0796320829977048 +29,226.7574704574646,0.0,0.0,57.393120534947585,0.0794313750011497 +0,232.53639750766993,0.0,0.0,56.92073680295655,0.0791161250017467 +1,228.78073899886232,0.0,0.0,56.00141900241923,0.0778383330034557 +2,235.23590932049515,0.0,0.0,57.58152884687401,0.0800345829993602 +3,236.26866601830895,0.0,0.0,57.83432915172009,0.0803859589941566 +4,236.1306451621364,0.0,0.0,57.80054412317523,0.0803390000000945 +5,236.65994415723756,0.0,0.0,57.930107017901115,0.0805190840037539 +6,230.7082285871409,0.0,0.0,56.4732338611715,0.0784941249949042 +7,217.65362425882617,0.0,0.0,53.27770101124752,0.0740525420042104 +8,236.48396084260233,0.0,0.0,57.88702946083294,0.0804592089989455 +9,233.11602697824952,0.0,0.0,57.062619694803665,0.0793133330007549 +10,234.8972924876633,0.0,0.0,57.4986415233184,0.0799193750062841 +11,235.4089534558389,0.0,0.0,57.62388694560078,0.0800934580038301 +12,236.8091074367793,0.0,0.0,57.966619511714825,0.0805698339972877 +13,235.2139889440503,0.0,0.0,57.576163132123064,0.0800271250045625 +14,235.677400358321,0.0,0.0,57.68959792953932,0.0801847920010914 +15,235.25183085336997,0.0,0.0,57.58542615237964,0.0800400000007357 +16,224.63833749671065,0.0,0.0,54.98743345794819,0.0764289589933469 +17,239.76396038372516,0.0,0.0,58.689914482683825,0.0815751670015743 +18,236.4523617407738,0.0,0.0,57.87929456781116,0.080448458000319 +19,230.33752474602355,0.0,0.0,56.382492213849865,0.0783680000022286 +20,235.6896449605586,0.0,0.0,57.69259518841446,0.0801889579961425 +21,235.99727993653536,0.0,0.0,57.767898709440146,0.0802936249965569 +22,234.47784821362225,0.0,0.0,57.395969092756594,0.0797766670002602 +23,236.01075312636675,0.0,0.0,57.77119670450892,0.0802982089953729 +24,233.78273255711173,0.0,0.0,57.225817255212355,0.07954016700387 +25,249.0360862322947,0.0,0.0,60.95956448452025,0.0847298330045305 +26,237.69685978979257,0.0,0.0,58.183925355331866,0.0808718749976833 +27,236.12660378259105,0.0,0.0,57.799554865992754,0.0803376249969005 +28,234.46707023916116,0.0,0.0,57.39333083803974,0.0797729999976581 +29,241.69022142718063,0.0,0.0,59.161428615711976,0.0822305410038097 +0,229.97339319686975,0.0,0.0,56.76642090692848,0.0792393329975311 +1,226.07553485511937,0.0,0.0,55.804277138088366,0.0778962920012418 +2,231.8659096318397,0.0,0.0,57.233567923491464,0.0798914159968262 +3,237.6686219503525,0.0,0.0,58.66590409636575,0.0818907909997506 +4,238.15693061363416,0.0,0.0,58.78643775779073,0.0820590419971267 +5,232.81398613818936,0.0,0.0,57.467590256524325,0.0802180840037181 +6,232.3516788377947,0.0,0.0,57.35347474760509,0.0800587920020916 +7,235.3009818299224,0.0,0.0,58.08147798617912,0.0810750000018742 +8,232.87529353460332,0.0,0.0,57.48272331788053,0.080239208000421 +9,234.6029875368596,0.0,0.0,57.90918571671333,0.0808344999968539 +10,233.90293845796447,0.0,0.0,57.73638624580215,0.080593291997502 +11,236.10309480251144,0.0,0.0,58.27947081475786,0.0813513750035781 +12,228.53955331278615,0.0,0.0,56.41249318841474,0.0787452909935382 +13,214.85514476600093,0.0,0.0,53.03464636609046,0.0740302089980105 +14,236.0381566565893,0.0,0.0,58.26344154253167,0.0813290000005508 +15,233.2262264846764,0.0,0.0,57.56934728457961,0.0803601250008796 +16,223.59820949155468,0.0,0.0,55.1927764233464,0.0770427079987712 +17,232.78762196853413,0.0,0.0,57.46108254912954,0.0802089999997406 +18,234.0781596831433,0.0,0.0,57.77963769190232,0.0806536659947596 +19,234.60528613661103,0.0,0.0,57.90975310096232,0.0808352919993922 +20,232.4469688391939,0.0,0.0,57.37699604392746,0.0800916250009322 +21,236.41351504810697,0.0,0.0,58.35609466273675,0.0814583329993183 +22,216.02874452302436,0.0,0.0,53.32433665094193,0.0744345830025849 +23,232.45519093886716,0.0,0.0,57.37902557945026,0.0800944579968927 +24,233.9956889809203,0.0,0.0,57.75928069960073,0.0806252499969559 +25,232.5895425232549,0.0,0.0,57.41218880099883,0.0801407500039204 +26,238.48053296517404,0.0,0.0,58.86631546467945,0.0821705420021317 +27,229.88862389489532,0.0,0.0,56.74549653037789,0.0792101249971892 +28,233.92301053494205,0.0,0.0,57.74134081882622,0.0806002080062171 +29,234.3584718660642,0.0,0.0,57.84882969337619,0.0807502499956172 +0,390.8727972970198,1.8664702076173023,14.049430290064786,79.44375920058373,0.0834474579969537 +1,386.2283609945746,1.8442923992621632,13.882491878082469,78.49979103041318,0.0824559169996064 +2,389.05675023245453,1.8577983384949643,13.98415476612573,79.07465291666747,0.0830597499953 +3,383.2061688149415,1.8298610249020475,13.773862987444502,77.8855392599217,0.0818107090017292 +4,386.0560251035696,1.8434694721910336,13.876297481583418,78.46476426180382,0.0824191249994328 +5,384.4849121793524,1.8359671965501287,13.819825806759152,78.14544012952457,0.0820837080027558 +6,363.3642991549768,1.735113427116142,13.060671978656051,73.85273696143435,0.0775746670042281 +7,388.22708634477254,1.8538365817817757,13.954333542866456,78.90602614456611,0.082882624999911 +8,375.0914257577759,1.7911120347870877,13.482188770942804,76.2362413352104,0.0800782919977791 +9,386.50588680771034,1.8456176223670837,13.892467193817684,78.55619734475168,0.0825151660028495 +10,383.82914393431906,1.832835814932067,13.796255043306832,78.01215714101761,0.0819437079990166 +11,382.40578027890945,1.826039061932629,13.745094029820152,77.72286261789608,0.0816398340029991 +12,399.92533106121743,1.909697274558687,14.374812212132664,81.2836603589434,0.0853800839977338 +13,392.779794759326,1.875576377128228,14.1179749114743,79.8313508883124,0.0838545830047223 +14,385.4919894836888,1.840776126202716,13.856023931780443,78.35012566255561,0.0822987089995876 +15,351.3832590532381,1.677902348318119,12.630028585521842,71.41762540750393,0.0750168340018717 +16,363.50267089671735,1.7357741708039116,13.065645576596715,73.88086061549012,0.0776042079960461 +17,386.06109796012026,1.8434936957637276,13.876479819021514,78.46579530514339,0.0824202080038958 +18,383.1556137558722,1.8296196176916977,13.772045849533868,77.8752640912048,0.0817999159989995 +19,396.7255287493226,1.894417787915675,14.25979934903799,80.63330984564719,0.0846969580015866 +20,377.543333802351,1.8028202256580403,13.57031951677143,76.73458451391768,0.0806017499999143 +21,384.0859896272982,1.8340622876802744,13.805487038175158,78.06436028108223,0.0819985420021112 +22,377.9580697399782,1.804800645572044,13.585226677578657,76.81887838698462,0.0806902920012362 +23,377.9699719544116,1.804857480247668,13.585654487682444,76.82129747745074,0.0806928330057417 +24,393.94456555862206,1.8811383144403728,14.159841130514804,80.06808716554386,0.0841032499956782 +25,367.0360156994838,1.7526463677263076,13.192647204339844,74.59900266995066,0.0783585419994779 +26,423.4076839939201,2.021828669878938,15.218855805997825,86.05638029430169,0.0903933329973369 +27,391.9114873311247,1.871430092308722,14.086764694832924,79.65486992899487,0.0836692079974454 +28,397.13519183039904,1.896373984256985,14.27452417240712,80.71657267537456,0.0847844169984455 +29,368.653767842532,1.7603713519134625,13.250795267130425,74.92780608780754,0.0787039160059066 +0,260.20760817827636,0.0668398685276846,0.0,63.29735549571737,0.0778534579949337 +1,264.69906999108105,0.0679935961960136,0.0,64.3899355976249,0.0791972920051193 +2,262.72879929625196,0.0674874901865533,0.0,63.91065320666597,0.0786077919983654 +3,261.1013891414675,0.0670694552122957,0.0,63.51477408604411,0.078120874997694 +4,257.7910068686657,0.0662191129896392,0.0,62.7095000011884,0.0771304169975337 +5,259.7389946089577,0.0667194951474332,0.0,63.183361904619304,0.07771325000067 +6,258.06479595470574,0.0662894415501427,0.0,62.77610114798519,0.0772123339993413 +7,256.0824062134452,0.0657802225053802,0.0,62.29387071259507,0.0766192080045584 +8,245.48280118105225,0.0630574881019913,0.0,59.71544123258579,0.0734478329977719 +9,255.98353170352672,0.0657548244807415,0.0,62.26981878326222,0.0765896250013611 +10,265.5946591131205,0.0682236473447522,0.0,64.60779403548037,0.0794652500044321 +11,260.294366973363,0.0668621543728135,0.0,63.318460191054406,0.0778794160069082 +12,257.5109510436375,0.0661471746836983,0.0,62.64137442546229,0.0770466250032768 +13,260.85629013818584,0.067006496310862,0.0,63.45515200638633,0.0780475419960566 +14,307.82568802659245,0.0790715869577684,0.0,74.8807928490067,0.0921006670032511 +15,263.58442150290836,0.0677072749814817,0.0,64.1187894074632,0.078863791997719 +16,262.31742217161724,0.067381819206683,0.0,63.81058278872888,0.0784847090035327 +17,268.16277907116,0.0688833236761263,0.0,65.2325075212917,0.0802336249980726 +18,206.91894566594263,0.0531515401145498,0.0,50.334508488478725,0.0619096250011352 +19,258.1138137564023,0.0663020328169541,0.0,62.78802507765553,0.0772270000015851 +20,252.13699183642044,0.0647667587558233,0.0,61.33412054176475,0.07543875000556 +21,259.3735737404644,0.0666256290111647,0.0,63.09447067357302,0.0776039170013973 +22,261.07910621124864,0.0670637313668761,0.0,63.509353604431666,0.0781142080013523 +23,260.63695006654126,0.066950154139877,0.0,63.40179597046354,0.0779819160015904 +24,263.1917042789601,0.0676063971946982,0.0,64.0232581433792,0.0787462919979589 +25,255.55989842619064,0.0656460052469023,0.0,62.166766968816475,0.0764628749966505 +26,257.15221136999554,0.0660550247546867,0.0,62.55410844268836,0.076939291000599 +27,263.19769031243703,0.067607934834944,0.0,64.02471428869198,0.0787480830040294 +28,259.31383057100317,0.0666102827051125,0.0,63.079937721741594,0.0775860419962555 +29,261.2983025863787,0.0671200366263495,0.0,63.56267468515301,0.078179791002185 +0,362.1477510943677,0.2358390787664502,14.28510991385356,76.17602244156343,0.0828109170033712 +1,336.858148535045,0.2193698985715243,13.287548142046615,70.85647723860235,0.0770280419965274 +2,362.74505428268986,0.2362280565614316,14.308670854578146,76.30166226934243,0.0829474999991362 +3,360.94585457223286,0.2350563756633761,14.237700468753069,75.9232093392705,0.0825360840026405 +4,356.42706947844863,0.2321136372080324,14.05945459660082,74.97270481819447,0.0815027909993659 +5,349.6413415549495,0.2276946126043954,13.791787963466238,73.54535987121973,0.0799511250006617 +6,360.4445734490732,0.2347299296812273,14.21792716926291,75.81776728703642,0.082421457998862 +7,359.44475760769,0.2340788262400065,14.178488903680394,75.60746087552211,0.0821928340010345 +8,355.22717590717775,0.2313322384733691,14.012124158958356,74.72031302689821,0.0812284160056151 +9,347.2399143905892,0.2261307471145338,13.697062396651766,73.04023131799444,0.0794019999957527 +10,368.19860405248215,0.2397795356188831,14.523789014629491,77.44879000489925,0.084194542003388 +11,377.20427616251,0.2456442397560303,14.879022522365265,79.34308944119779,0.0862538340006722 +12,351.4283357000541,0.2288583449530541,13.862276894299278,73.92124541983648,0.0803597499980242 +13,356.8769656271249,0.2324066200939505,14.07720098854786,75.06733829034602,0.0816056670009857 +14,360.27602202196147,0.23462016505291,14.211278568919123,75.78231331208995,0.0823829159999149 +15,355.8179236856387,0.2317169472322514,14.035426518067805,74.84457395601721,0.0813635000013164 +16,367.0209393602304,0.2390126128497174,14.47733540689717,77.20107395045873,0.0839252500009024 +17,364.3840903443813,0.2372954351484481,14.373323500420288,76.64642555294876,0.0833222919973195 +18,350.5090521147184,0.2282596859989792,13.826015266223887,73.72787857767031,0.0801495409978088 +19,368.46227232220554,0.2399512425579532,14.534189549224592,77.50425134621888,0.0842548340006033 +20,363.494872436282,0.236716355666013,14.338247828912788,76.4593828801222,0.083118957998522 +21,365.90504594881264,0.2382859169822019,14.4333184000648,76.96635118525121,0.0836700829968322 +22,351.0808508987014,0.2286320547298269,13.84857017220666,73.8481536777341,0.0802802920006797 +23,348.8787667922377,0.2271980060978383,13.761707797926206,73.38495596960178,0.0797767499971087 +24,340.5454724450315,0.2217711700730505,13.43299658728192,71.63208793359534,0.0778712080063996 +25,354.3767743837066,0.2307784371277278,13.978579620308084,74.54143519225607,0.0810339579984429 +26,359.78185610269213,0.2342983526578142,14.191785932416174,75.67836790847399,0.0822699170021223 +27,360.8257711959278,0.2349781745624239,14.232963716352534,75.89795038366293,0.0825086250042659 +28,370.2476265409491,0.2411139069482411,14.604613792293463,77.87979194428189,0.0846630840023863 +29,362.5628409920885,0.2361093950083374,14.301483354790728,76.26333458769301,0.0829058339950279 +0,246.0739988250765,0.0,0.0,60.74658181579221,0.0778715830019791 +1,245.0826823466955,0.0,0.0,60.50186239055085,0.0775578749962733 +2,244.5910373393436,0.0,0.0,60.38049339664647,0.0774022910045459 +3,244.5508800746296,0.0,0.0,60.37058005115652,0.077389582998876 +4,244.58959003848383,0.0,0.0,60.38013611151879,0.077401832997566 +5,244.22606079392185,0.0,0.0,60.29039416762119,0.077286792002269 +6,242.8457992005612,0.0,0.0,59.94965855878557,0.0768499999976484 +7,244.85397754171655,0.0,0.0,60.44540362118208,0.0774854999981471 +8,241.9405926628893,0.0,0.0,59.72619649752176,0.0765635419957107 +9,245.51138657380295,0.0,0.0,60.607693630466905,0.0776935410031001 +10,244.7109876747656,0.0,0.0,60.41010470421792,0.0774402500028372 +11,248.3810623596752,0.0,0.0,61.31611059342773,0.0786016670026583 +12,241.60984521505156,0.0,0.0,59.644547168472904,0.0764588749952963 +13,245.731929101319,0.0,0.0,60.66213743499555,0.0777633329998934 +14,245.77880451553304,0.0,0.0,60.67370924346901,0.0777781670039985 +15,246.9506358166758,0.0,0.0,60.96299111131795,0.0781490000008489 +16,259.02748853123154,0.0,0.0,63.94432000020854,0.0819707919945358 +17,245.3989443932433,0.0,0.0,60.579935809024875,0.0776579580051475 +18,223.20115090919603,0.0,0.0,55.100120450851726,0.0706333340058336 +19,247.6429406685668,0.0,0.0,61.133895609670745,0.0783680839958833 +20,246.88414631211123,0.0,0.0,60.94657730836352,0.0781279590009944 +21,245.0546373862557,0.0,0.0,60.4949391256305,0.0775490000014542 +22,246.33061905352753,0.0,0.0,60.80993187218833,0.0779527920021792 +23,244.31098572658755,0.0,0.0,60.3113589968799,0.0773136670031817 +24,243.40301102024273,0.0,0.0,60.087213577010274,0.0770263329977751 +25,245.98617616377825,0.0,0.0,60.72490164435878,0.0778437909975764 +26,246.44029623831136,0.0,0.0,60.83700711829563,0.077987500000745 +27,250.5241978502783,0.0,0.0,61.84517159151716,0.0792798749971552 +28,224.68990150640013,0.0,0.0,55.46763798780473,0.0711044580020825 +29,245.67623416012847,0.0,0.0,60.648388411051904,0.0777457080039312 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/mac_report.md new file mode 100644 index 000000000..0ec7f1294 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 892 samples (with smell) vs 874 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 650.62 ms | 125.11 ms | +| **Average Power** | 7.226 W | 3.505 W | +| **Total Energy** | 4193.45 J | 383.30 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.15% | 0.00e+00 | +95.218 | large | βœ… | +| `gpu_mj` | +83.82% | 0.00e+00 | +3.677 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.273 | small | βœ… | +| `dram_mj` | +87.81% | 0.00e+00 | +129.181 | large | βœ… | +| `time_s` | +81.05% | 0.00e+00 | +145.073 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.1% lower energy (Cohen’s d = +95.218, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.677, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.273, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +129.181, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +145.073, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..47d4d1d1a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/with_smell.csv @@ -0,0 +1,893 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944 +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237 +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636 +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309 +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115 +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606 +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372 +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534 +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623 +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886 +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754 +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207 +12,4327.235400242506,2.364463924465652,0.0,680.0997502174303,0.6709446249951725 +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574 +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149 +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999 +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457 +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501 +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202 +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666 +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456 +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212 +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304 +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887 +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787 +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945 +26,4338.812194020074,2.370789651798745,0.0,681.9192432258304,0.6727396249989397 +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578 +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274 +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904 +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145 +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862 +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175 +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131 +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066 +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478 +6,4417.676650902167,2.49145203457279,0.0,684.2191674146103,0.67062487500516 +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159 +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944 +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487 +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336 +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097 +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006 +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183 +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441 +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204 +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235 +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284 +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211 +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926 +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846 +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933 +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663 +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835 +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885 +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396 +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204 +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728 +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545 +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802 +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535 +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561 +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272 +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199 +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286 +5,4391.016889062863,1.7124603228688555,0.0,684.5811973068672,0.6757975419968716 +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228 +7,4344.730354172825,1.6944089565259697,0.0,677.3648981500287,0.6686738330026856 +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567 +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164 +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068 +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551 +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753 +13,4363.309510738167,1.7016546741477263,0.0,680.261480323997,0.6715332500025397 +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706 +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957 +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198 +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859 +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221 +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357 +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156 +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466 +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512 +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975 +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294 +25,4368.247362930842,1.703580395722884,0.0,681.0313158431011,0.6722932079937891 +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028 +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131 +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972 +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512 +0,5519.84217345951,4.72710642584526,111.62724174174592,771.4300036520476,0.698210457994719 +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258 +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211 +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729 +4,5448.99591016236,4.666434795034992,110.1945245170406,761.5288268726033,0.6892490419995738 +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845 +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203 +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498 +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937 +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837 +10,5462.674746967845,4.6781491367370425,110.4711503289476,763.4405237645086,0.6909792919977917 +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947 +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783 +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562 +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421 +15,5535.119945995178,4.74019007107577,111.93620267840356,773.5651610990581,0.7001429590018233 +16,5419.449013845381,4.641131295577101,109.59700045127067,757.3994765003574,0.6855116249935236 +17,5435.615181475974,4.654975748459343,109.92392731718992,759.6587923217901,0.6875565000009374 +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156 +19,5449.549965300805,4.6669092791819855,110.2057291212546,761.6062592962202,0.689319124998292 +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152 +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409 +22,5449.408975070284,4.666788537355728,110.20287788927168,761.5865550926165,0.6893012910004472 +23,5401.537331059038,4.6257920108410016,109.23477419885964,754.8962147977454,0.6832459579964052 +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586 +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554 +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894 +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058 +28,5425.496549978012,4.646310310848687,109.71929919761256,758.244654799714,0.6862765839978238 +29,5472.8253332894155,4.686841939958393,110.67642466787464,764.8591271587816,0.6922632499990868 +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348 +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363 +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453 +3,4330.179511549561,1.8300141626022992,0.0,677.2383321019491,0.6701198750015465 +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198 +5,4325.011416888251,1.8278300299586896,0.0,676.430044177803,0.6693200829977286 +6,4325.735138314875,1.828135888054634,0.0,676.5432339175277,0.6694320829992648 +7,4347.06876561683,1.8371518745739288,0.0,679.8798046377772,0.6727335830000811 +8,4327.957460643241,1.8290750826824616,0.0,676.8908042348878,0.6697760000024573 +9,4348.485786304246,1.8377507337943737,0.0,680.1014261027397,0.6729528750001919 +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608 +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531 +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221 +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238 +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096 +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013 +16,4330.573681242119,1.8301807460240551,0.0,677.2999800831567,0.6701808750003693 +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381 +18,4327.686065067118,1.8289603858790968,0.0,676.8483580760569,0.6697339999955148 +19,4330.916964261218,1.8303258237939384,0.0,677.3536694091241,0.6702339999974356 +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324 +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929 +22,4315.7473562602345,1.8239148661399016,0.0,674.9811488256646,0.6678864169953158 +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024 +24,4344.278884181038,1.8359728189422015,0.0,679.4434683045378,0.6723018330012565 +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992 +26,4314.834620808611,1.8235291272118217,0.0,674.8383973685347,0.6677451659998042 +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372 +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875 +29,4332.038357679215,1.8307997454480665,0.0,677.5290548881808,0.6704075419984292 +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002 +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979 +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341 +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482 +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519 +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996 +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411 +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611 +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564 +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847 +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614 +11,4321.626234797135,1.665251055725281,0.0,678.0902298913345,0.670513832999859 +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626 +13,4312.391545143513,1.66169265528538,0.0,676.6412492322067,0.6690810420041089 +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434 +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791 +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744 +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336 +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872 +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327 +20,4303.975665866741,1.658449766824167,0.0,675.3207450508007,0.6677752920004423 +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242 +22,4338.901909588244,1.671907886770183,0.0,680.8008914928187,0.6731942080004956 +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412 +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607 +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747 +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422 +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349 +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419 +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734 +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915 +1,4331.503324019295,2.405462702116385,0.0,676.3359297450568,0.6692004170035943 +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156 +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433 +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722 +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264 +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261 +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994 +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461 +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413 +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163 +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986 +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575 +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499 +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617 +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059 +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107 +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997 +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968 +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292 +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103 +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821 +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829 +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914 +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086 +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554 +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729 +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415 +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671 +29,4302.407659547652,2.389304677882228,0.0,671.7928319312199,0.6647052500047721 +0,4335.519852132827,1.998426580480376,0.0,678.132752976341,0.6699371249997057 +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514 +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133 +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932 +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202 +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873 +6,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265 +7,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114 +8,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809 +9,4319.72068635306,1.9911440690583215,0.0,675.6615541004571,0.667495791996771 +10,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105 +11,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653 +12,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835 +13,4331.440896987593,1.9965464155495631,0.0,677.4947503431518,0.6693068329987 +14,4331.623180642343,1.9966304378844304,0.0,677.5232619221168,0.6693349999986822 +15,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171 +16,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132 +17,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548 +18,4331.732931351392,1.9966810266815465,0.0,677.5404283872713,0.6693519589971402 +19,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524 +20,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489 +21,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182 +22,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922 +23,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994 +24,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739 +25,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682 +26,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981 +27,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206 +28,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657 +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207 +1,4376.520182243895,1.7528193218882475,0.0,681.9815484700583,0.6767852090051747 +2,4337.145668188113,1.73704962218323,0.0,675.845922230983,0.6706963329997961 +3,4341.215338897163,1.7386795466792917,0.0,676.4800882387582,0.6713256669972907 +4,4308.598732289321,1.725616424404978,0.0,671.3975288184906,0.6662818339973455 +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304 +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381 +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761 +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709 +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578 +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612 +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773 +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248 +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235 +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453 +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269 +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693 +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906 +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411 +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086 +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324 +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115 +22,4321.644617054854,1.730841369780742,0.0,673.4304344885379,0.6682992499991087 +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593 +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319 +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376 +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013 +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729 +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226 +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141 +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367 +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543 +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124 +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614 +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087 +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917 +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481 +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222 +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404 +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312 +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824 +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533 +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766 +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874 +14,4319.8312777558685,3.283845150135942,0.0,677.979989007148,0.6700942090028548 +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462 +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344 +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974 +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448 +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309 +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348 +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761 +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644 +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413 +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967 +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905 +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321 +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346 +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033 +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482 +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178 +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928 +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591 +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788 +4,4332.3764799353785,2.127886286805196,0.0,674.240718908165,0.6668309590022545 +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093 +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905 +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291 +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341 +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862 +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245 +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937 +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288 +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575 +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733 +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325 +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989 +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246 +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973 +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821 +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617 +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726 +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684 +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297 +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134 +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271 +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358 +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624 +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369 +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649 +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252 +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143 +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413 +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653 +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525 +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557 +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427 +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632 +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706 +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636 +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242 +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164 +12,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739 +13,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554 +14,4337.461148529906,2.628159462600572,0.0,676.6346241751016,0.6680622499989113 +15,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586 +16,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295 +17,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005 +18,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879 +19,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957 +20,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418 +21,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706 +22,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824 +23,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733 +24,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746 +25,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593 +26,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348 +27,4358.332696369016,2.640805974943643,0.0,679.8905408149211,0.671276916997158 +28,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551 +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242 +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093 +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832 +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005 +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286 +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888 +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056 +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718 +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019 +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522 +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947 +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863 +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808 +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149 +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736 +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961 +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928 +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731 +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366 +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125 +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944 +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427 +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008 +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724 +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941 +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141 +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581 +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955 +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355 +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641 +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826 +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989 +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705 +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731 +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786 +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694 +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159 +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917 +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899 +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922 +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615 +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488 +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839 +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955 +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446 +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393 +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975 +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217 +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491 +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536 +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475 +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606 +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018 +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269 +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302 +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841 +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071 +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335 +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998 +29,4298.143686713266,2.320919342687324,0.0,669.4526064028538,0.6634929580031894 +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043 +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336 +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125 +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834 +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116 +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327 +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987 +7,4337.0403644270955,2.031509830681979,0.0,678.790710966559,0.6709766249987297 +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983 +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326 +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708 +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113 +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485 +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637 +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956 +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545 +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394 +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118 +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574 +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509 +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263 +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787 +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361 +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064 +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606 +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084 +26,4347.693469734016,2.03649984376459,0.0,680.4580297640961,0.6726247499973397 +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489 +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278 +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626 +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824 +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309 +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063 +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915 +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849 +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294 +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797 +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292 +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422 +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556 +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638 +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283 +12,4356.767493437678,2.397615735537004,0.0,680.5232662699196,0.6708844999957364 +13,4341.809499462903,2.389384054186092,0.0,678.1868407131525,0.6685811670031399 +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968 +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453 +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709 +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409 +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754 +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893 +20,4375.239322141577,2.407781149971288,0.0,683.4085497335172,0.6737289170050644 +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018 +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538 +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116 +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911 +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852 +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635 +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468 +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446 +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469 +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449 +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021 +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229 +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491 +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962 +5,4345.360137259517,1.6675467938398043,0.0,679.7254241049811,0.6724117499979911 +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415 +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838 +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865 +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737 +10,4329.558075685815,1.6614826987404503,0.0,677.2535776605824,0.6699664999978268 +11,4307.3984058292945,1.6529788497487543,0.0,673.7872387345873,0.6665374580043135 +12,4349.584627244564,1.6691679562999129,0.0,680.3862423469704,0.6730654580023838 +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554 +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981 +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243 +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875 +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369 +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125 +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987 +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684 +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822 +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829 +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659 +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864 +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879 +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664 +27,4334.978371818408,1.6635627558938415,0.0,678.1014505574477,0.6708052499961923 +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682 +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487 +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649 +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086 +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261 +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379 +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596 +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012 +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358 +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984 +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149 +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144 +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066 +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439 +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846 +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843 +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685 +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386 +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428 +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229 +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533 +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505 +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795 +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432 +22,4392.603872271309,2.607442063569521,0.0,685.7572627187839,0.6731581249987357 +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675 +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446 +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581 +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689 +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216 +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154 +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794 +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029 +1,4354.354070461016,2.273796674817034,0.0,681.0021041077019,0.6721263750005164 +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739 +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867 +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185 +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036 +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834 +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246 +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938 +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276 +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405 +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806 +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341 +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212 +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047 +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004 +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738 +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917 +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045 +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948 +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894 +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339 +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831 +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966 +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685 +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241 +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349 +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466 +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023 +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449 +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299 +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385 +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045 +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057 +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268 +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344 +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375 +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743 +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125 +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514 +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048 +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856 +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496 +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685 +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462 +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559 +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298 +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533 +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415 +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282 +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979 +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028 +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217 +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957 +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171 +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815 +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784 +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544 +28,4332.967360737383,2.240071707660648,0.0,676.2341844648398,0.6700551249959972 +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539 +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088 +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537 +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334 +3,4348.094503970354,1.7675587619781763,0.0,678.475763277057,0.6687571250004112 +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395 +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458 +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595 +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057 +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031 +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331 +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702 +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254 +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906 +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986 +14,4346.65978133577,1.766975527974994,0.0,678.2518894551563,0.6685364579971065 +15,4367.501700837171,1.7754480479254011,0.0,681.5040582451767,0.6717420419954578 +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579 +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937 +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709 +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252 +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354 +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782 +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695 +23,4317.882204189577,1.755277056705152,0.0,673.7614422945209,0.6641103330039186 +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662 +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897 +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202 +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887 +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396 +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463 +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947 +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871 +3,4335.694701631531,2.062035021448992,0.0,673.6867966850125,0.6660807919979561 +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711 +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248 +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867 +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616 +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431 +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603 +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623 +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934 +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854 +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233 +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968 +15,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684 +16,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233 +17,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367 +18,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686 +19,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466 +20,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982 +21,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603 +22,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318 +23,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496 +24,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769 +25,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032 +26,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459 +27,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574 +28,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194 +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536 +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493 +2,5399.907734117013,5.218201322461614,113.57066190351168,759.8964129645852,0.6863256669967086 +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003 +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715 +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272 +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599 +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276 +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962 +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584 +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608 +11,5399.536300795058,5.2178423878376785,113.56284993147356,759.8441433957505,0.6862784580007428 +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153 +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151 +14,5409.343253817727,5.227319337769412,113.7691094086502,761.224216684217,0.687524916997063 +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099 +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416 +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084 +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481 +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695 +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285 +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882 +22,5438.732295420172,5.25571944075392,114.38721865640856,765.3599590697888,0.6912602500015055 +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235 +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406 +25,5438.364150832097,5.255363684198263,114.37947585290104,765.3081523046171,0.6912134590020287 +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145 +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306 +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348 +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703 +0,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479 +1,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886 +2,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246 +3,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568 +4,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654 +5,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804 +6,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281 +7,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404 +8,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845 +9,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495 +10,4503.148936965444,2.645955864784455,0.0,695.5179682039748,0.6692589580052299 +11,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871 +12,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482 +13,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759 +14,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602 +15,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186 +16,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621 +17,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419 +18,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636 +19,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363 +20,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023 +21,4462.746741007515,2.622216381848967,0.0,689.2777896895653,0.6632543750019977 +22,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533 +23,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954 +24,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133 +25,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709 +26,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768 +27,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695 +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011 +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471 +2,4382.027550348223,1.966185465922483,0.0,684.3325176731897,0.6720537090004655 +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344 +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364 +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557 +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387 +7,4368.331000730204,1.9600399188023856,0.0,682.1935547899488,0.6699531249978463 +8,4367.809372487584,1.9598058678162904,0.0,682.1120931458903,0.6698731249998673 +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433 +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591 +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015 +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553 +13,4356.402555742098,1.9546877080056264,0.0,680.330713286365,0.668123707997438 +14,4365.2036763306705,1.958636709965622,0.0,681.7051667651533,0.6694734999982757 +15,4360.810862240808,1.9566656846539945,0.0,681.0191497350809,0.6687997920016642 +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262 +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621 +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128 +19,4438.056671531104,1.9913253452300512,0.0,693.0824739711713,0.6806466670022928 +20,4374.899715425766,1.962987255672319,0.0,683.2193778852723,0.6709605420037406 +21,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819 +22,4370.521024384246,1.96102256727484,0.0,682.5355664235396,0.6702890000015032 +23,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454 +24,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797 +25,4382.123445150023,1.9662284932570664,0.0,684.3474933734551,0.6720684159954544 +26,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432 +27,4361.726697985227,1.9570766138207232,0.0,681.162173979806,0.6689402499978314 +28,4360.017283100929,1.9563096111804792,0.0,680.8952180608669,0.6686780840027495 +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424 +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305 +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748 +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677 +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616 +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506 +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521 +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271 +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755 +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792 +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214 +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096 +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535 +13,4363.96912667838,2.588947138539631,0.0,676.9432934681511,0.6655433749983786 +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162 +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428 +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266 +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628 +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434 +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379 +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164 +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172 +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261 +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249 +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646 +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692 +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895 +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225 +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484 +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813 +0,4389.025421830659,1.6062307124723365,0.0334631398431736,684.0535046741562,0.6730389170043054 +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023 +2,4354.233157511607,1.5934979533436806,0.0331978740279933,678.63094088024,0.667703667000751 +3,4357.945080142954,1.5948563879754634,0.0332261747494888,679.2094642290505,0.6682728750020033 +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661 +5,4408.816460337069,1.6134735444966395,0.0336140321770133,687.1380457625065,0.6760737910008174 +6,4345.096674030936,1.5901543180351092,0.0331282149590647,677.2069701932021,0.6663026250025723 +7,4424.448338877007,1.6191942685734702,0.0337332139286139,689.5743591287267,0.678470874998311 +8,4389.556078381045,1.6064249143206022,0.0334671857150125,684.1362103862865,0.6731202909941203 +9,4359.39441815639,1.5953867952996852,0.0332372249020767,679.4353514482535,0.6684951249990263 +10,4364.926572416989,1.5974113714243328,0.0332794035713402,680.2975678053377,0.6693434580010944 +11,4336.208818024484,1.586901671738146,0.0330604514945447,675.8217494514829,0.6649397090004641 +12,4360.874458026974,1.595928438436221,0.0332485091340879,679.6660237190256,0.668722082999011 +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759 +14,4406.642727210601,1.6126780337458744,0.0335974590363723,686.7992576215242,0.6757404580057482 +15,4401.9515346063135,1.6109612203499777,0.0335616920906245,686.0681097165467,0.6750210829995922 +16,4349.9085088683905,1.5919152822940132,0.0331649017144586,677.9569208469628,0.6670404999968014 +17,4371.0961810783265,1.5996692336974665,0.0333264423686972,681.2591349009085,0.6702895420021378 +18,4354.880661070511,1.5937349171346793,0.0332028107736391,678.7318578347315,0.6678029589966172 +19,4358.4390615102575,1.5950371679817958,0.0332299409996207,679.2864539142473,0.6683486250040005 +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141 +21,4353.926660820881,1.5933857862107526,0.033195537212724,678.5831717025042,0.6676566669993917 +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694 +23,4390.797833401572,1.606879353486394,0.0334766531976332,684.3297446660181,0.6733107089967234 +24,4370.716046913472,1.599530117809139,0.0333235441210237,681.199888921967,0.6702312499983236 +25,4326.591936832465,1.5833822275690632,0.0329871297410221,674.3229061659748,0.6634649999978137 +26,4357.462510925597,1.5946797844192484,0.0332224955087343,679.1342531895475,0.6681988750060555 +27,4363.351975051161,1.5968351235319895,0.0332673984069164,680.0521582341861,0.6691019999998389 +28,4369.617223686835,1.599127986710644,0.033315166389805,681.0286313403956,0.67006274999585 +29,4413.620958856811,1.6152318239183203,0.0336506629982983,687.8868530112147,0.6768105410010321 +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707 +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797 +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437 +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597 +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613 +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439 +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201 +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153 +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435 +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157 +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486 +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289 +12,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356 +13,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292 +14,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317 +15,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879 +16,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976 +17,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954 +18,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227 +19,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144 +20,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737 +21,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129 +22,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405 +23,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877 +24,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048 +25,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602 +26,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938 +27,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162 +28,4545.066951538386,2.715014642652162,0.0,682.9586223656848,0.6658834579939139 +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854 +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071 +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433 +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542 +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617 +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172 +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277 +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914 +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907 +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628 +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385 +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806 +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976 +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619 +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589 +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459 +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566 +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083 +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654 +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998 +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395 +21,4364.406018298075,2.093846030238117,0.0,678.904648566254,0.6681513339935918 +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177 +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178 +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715 +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321 +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689 +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114 +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263 +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523 +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006 +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721 +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177 +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329 +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873 +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295 +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759 +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249 +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635 +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924 +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713 +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727 +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946 +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714 +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466 +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588 +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919 +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543 +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764 +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398 +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131 +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727 +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806 +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098 +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595 +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957 +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162 +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392 +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415 +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..b0ed47c3e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/cleaned/mac/without_smell.csv @@ -0,0 +1,875 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.8360981389177,0.0,0.0,79.91504063021144,0.1259272919996874 +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777 +2,378.69492235952407,0.0,0.0,81.38913961900961,0.1282501250025234 +3,377.1005429822752,0.0,0.0,81.04647548997387,0.1277101669984404 +4,376.1059449323693,0.0,0.0,80.83271640642396,0.1273733330017421 +5,377.0002693980719,0.0,0.0,81.02492468413269,0.1276762080015032 +6,376.09511706560784,0.0,0.0,80.83038928053028,0.1273696659991401 +7,373.9279005486811,0.0,0.0,80.36461095273609,0.1266357089989469 +8,375.2913456412782,0.0,0.0,80.65764266890704,0.1270974580038455 +9,375.9660567759833,0.0,0.0,80.8026516339147,0.1273259579975274 +10,380.76937419502184,0.0,0.0,81.83498095488036,0.1289526659966213 +11,374.6659725434551,0.0,0.0,80.52323743829143,0.126885666999442 +12,367.4374331842578,0.0,0.0,78.96967924563978,0.1244376249960623 +13,367.6221062246298,0.0,0.0,79.00936918859718,0.1245001670031342 +14,373.8652749683743,0.0,0.0,80.35115145856713,0.1266145000045071 +15,374.382871422958,0.0,0.0,80.46239332536042,0.126789791000192 +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078 +17,373.0515349216383,0.0,0.0,80.17626238990805,0.1263389160012593 +18,373.3190099077397,0.0,0.0,80.23374813292452,0.1264295000000856 +19,372.9278900370712,0.0,0.0,80.14968862253218,0.1262970419993507 +20,374.2486437648836,0.0,0.0,80.43354510755047,0.1267443329998059 +21,375.006771060872,0.0,0.0,80.59648187986771,0.1270010829975945 +22,375.173975427608,0.0,0.0,80.63241745424612,0.1270577090035658 +23,379.6903796752694,0.0,0.0,81.6030833760348,0.1285872500011464 +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745 +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546 +26,377.5824609660864,0.0,0.0,81.15004933729386,0.1278733750004903 +27,377.7160744515755,0.0,0.0,81.17876555708816,0.1279186250030761 +28,375.568662234418,0.0,0.0,80.71724357080743,0.1271913749951636 +29,375.75431854819095,0.0,0.0,80.757144838954,0.1272542500009876 +0,384.9922799870706,0.0,0.0,81.6414086697934,0.1287048750018584 +1,382.1713775858955,0.0,0.0,81.0432085039104,0.127761832998658 +2,387.3060348462912,0.0,0.0,82.13206319935875,0.1294783750054193 +3,382.6248077427939,0.0,0.0,81.13936283911889,0.1279134170035831 +4,382.57595115897095,0.0,0.0,81.1290023188346,0.1278970839994144 +5,380.9924394855085,0.0,0.0,80.79320305638996,0.1273677080025663 +6,381.0339464626488,0.0,0.0,80.80200502011628,0.1273815839958842 +7,373.8850362618945,0.0,0.0,79.28600812983309,0.1249916669985395 +8,375.0913924440434,0.0,0.0,79.54182785191026,0.125394957998651 +9,379.9175739652012,0.0,0.0,80.5652672255431,0.1270083749986952 +10,380.5149594438619,0.0,0.0,80.6919487060091,0.1272080839989939 +11,383.2371466215314,0.0,0.0,81.26921533549904,0.1281181250014924 +12,380.5183216338946,0.0,0.0,80.69266169155388,0.1272092079962021 +13,380.6673860889716,0.0,0.0,80.72427227890252,0.1272590410007978 +14,361.8152226748145,0.0,0.0,76.72648516053064,0.1209566670004278 +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263 +17,380.8158283426864,0.0,0.0,80.7557509223179,0.1273086660003173 +18,365.9374543718208,0.0,0.0,77.6006450336018,0.1223347499981173 +19,378.25367465054006,0.0,0.0,80.21242097122808,0.1264521250050165 +20,384.7918642445624,0.0,0.0,81.59890853566469,0.1286378750010044 +21,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591 +22,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283 +23,382.10669117039305,0.0,0.0,81.02949111174972,0.1277402080013416 +24,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +25,363.2618803228803,0.0,0.0,77.03326317762489,0.1214402920013526 +26,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759 +27,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602 +28,380.0084340815053,0.0,0.0,80.58453500900934,0.1270387499971548 +0,390.2923708501913,0.4469127826171484,0.0,83.81333569389291,0.1297804999994696 +1,365.9657287665602,0.4190570310900451,0.0,78.58931090750231,0.121691375003138 +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035 +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715 +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.1247413749952102 +5,383.3887996646965,0.4390076980217611,0.0,82.33082829054258,0.1274849160035955 +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.1267657089993008 +7,372.53711365314894,0.4265817385264631,0.0,80.00048296365516,0.1238765000016428 +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.1270593330045812 +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.1271557080035563 +10,381.75469649055145,0.4371365325796854,0.0,81.97991280225177,0.1269415420028963 +11,381.439053481218,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572 +12,381.4226364679471,0.4367563000161465,0.0,81.90860457225888,0.1268311249950784 +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.1209846669953549 +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.1269026670051971 +15,384.03863484277593,0.4397518059505053,0.0,82.47037714671785,0.1277009999976144 +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.1271295830010785 +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.1265630839989171 +18,383.1444573623307,0.4387279085449043,0.0,82.27835700249821,0.1274036670001805 +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.1213963339978363 +20,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588 +21,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.1273649170034332 +22,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.1270068339945282 +23,381.2948250919911,0.436609946815457,0.0,81.88115771816032,0.1267886249988805 +24,375.600202278002,0.4300891948924535,0.0,80.65826593444629,0.1248950420049368 +25,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.1272384590047295 +26,380.0551779472132,0.4351904618438977,0.0,81.61494969041713,0.1263764160030405 +27,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.1245102920001954 +28,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.1261221669992664 +0,596.4459331278491,0.4886326329094673,23.45436637965443,115.49181302124482,0.1359050419996492 +1,554.2467896523963,0.454061387742615,21.79494661164552,107.3206522885938,0.1262896249972982 +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.128024291996553 +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.1317127079964848 +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885487,0.1296312500053318 +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371764,0.1249224590064841 +6,574.285027647265,0.4704775227960507,22.58292109421043,111.20072306658084,0.1308554999995976 +7,568.8810812926358,0.4660503913685354,22.3704187856897,110.15433893132028,0.1296241670061135 +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196 +9,573.1562154950751,0.4695527542238312,22.538532202743895,110.98214740904696,0.130598290998023 +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.1330455419956706 +11,542.9270608157159,0.444787808029728,21.349814785426947,105.12877548359786,0.1237103329985984 +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095 +13,560.8248965977349,0.4594504390173964,22.053621072835032,108.5943930506118,0.1277885000017704 +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.135394859954,0.130778625003586 +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902384,0.1249148339993553 +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.1294760829987353 +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373 +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913752,0.1291372500054421 +19,582.8598113728299,0.4775023324489214,22.92011195754823,112.86108700524863,0.1328093339980114 +20,575.8457576853292,0.4717561359701918,22.644294526569208,111.50293242324037,0.1312111249935696 +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062836,0.1310481670006993 +22,561.1286338518851,0.4596992728612786,22.065565097341377,108.65320670699792,0.127857708997908 +23,581.2049042884294,0.4761465656292358,22.85503515020332,112.54064183336725,0.13243225000042 +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.1302706669957842 +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.1308044999968842 +26,558.5815399432987,0.457612590508876,21.965404344426048,108.16000442813365,0.1272773329983465 +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.1308387090030009 +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.1301158330024918 +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332224,0.131808792000811 +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.1269404159975238 +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.1279510000022128 +2,415.0127574793532,1.4175777337453508,0.0,92.1425526934478,0.127556833998824 +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.1269669169996632 +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.1270766669986187 +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.1233426670005428 +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818 +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338908,0.1287382910013548 +8,416.11991185189385,1.421359490710763,0.0,92.3883668961996,0.1278971249994356 +9,411.9964417244347,1.4072747684146274,0.0,91.4728599469508,0.1266297499969368 +10,413.4103800010833,1.412104420953603,0.0,91.78678736198415,0.127064332998998 +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.1217907500031287 +12,368.7876480349551,1.259684549241063,0.0,81.87949570066912,0.1133492500011925 +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.126919041002111 +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.1270633339954656 +15,415.7098276987633,1.419958747832471,0.0,92.2973186091106,0.1277710830036085 +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.1279709580048802 +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.1204881249941536 +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976 +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.1281227910003508 +20,411.35644206336633,1.405088692799397,0.0,91.3307650319608,0.1264330419944599 +21,434.2858446220848,1.4834096839726385,0.0,96.42162945822147,0.1334805410006083 +22,425.7506982570446,1.454255800812937,0.0,94.52662705284092,0.1308572089983499 +23,425.9506550579292,1.4549388022473182,0.0,94.57102214607568,0.1309186670041526 +24,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.1300685829992289 +25,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162 +26,414.45965044482983,1.4156884611811038,0.0,92.01974997677176,0.1273868330026744 +27,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.1280377500006579 +28,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.1202185420042951 +0,391.0022498249037,0.0,0.0,82.00330714172952,0.1264092919955146 +1,388.85277091672145,0.0,0.0,81.5525056970287,0.1257143750044633 +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597 +3,392.66726186303595,0.0,0.0,82.35250332568698,0.1269475829976727 +4,399.7876812973492,0.0,0.0,83.84583985280774,0.1292495829984545 +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936 +6,394.38228386701905,0.0,0.0,82.71218789581523,0.1275020419998327 +7,392.0421898742136,0.0,0.0,82.22140952684555,0.1267454999979236 +8,396.18906710609906,0.0,0.0,83.09111717552949,0.1280861670020385 +9,394.03494844532105,0.0,0.0,82.63934265444013,0.1273897499995655 +10,392.7300279752369,0.0,0.0,82.36566700640546,0.1269678750031744 +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105 +12,394.3054687072889,0.0,0.0,82.6960777656579,0.1274772079996182 +13,373.9605683304472,0.0,0.0,78.42922478689076,0.1208997920039109 +14,394.4120553877859,0.0,0.0,82.71843175544166,0.1275116670003626 +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296 +16,390.35114282852976,0.0,0.0,81.86675312693883,0.1261987919933744 +17,396.3350882853156,0.0,0.0,83.12174160189497,0.1281333750011981 +18,343.90009686569954,0.0,0.0,72.12476470909637,0.1111813749957946 +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461 +20,395.20003402797175,0.0,0.0,82.88369130185403,0.1277664169974741 +21,392.31580638784453,0.0,0.0,82.27879400229646,0.126833959002397 +22,345.98874293694035,0.0,0.0,72.56280793101395,0.1118566250006551 +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976 +24,392.7198453431928,0.0,0.0,82.36353144451702,0.1269645830034278 +25,410.9331853581329,0.0,0.0,86.18334096221345,0.132852874994569 +26,396.49541525584135,0.0,0.0,83.1553663235251,0.1281852079991949 +27,395.588223713584,0.0,0.0,82.96510474137456,0.1278919169999426 +28,392.22867867129474,0.0,0.0,82.2605210616574,0.1268057909983326 +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405 +0,375.7903775249154,0.0,0.0,80.41439874522317,0.1264599169953726 +1,383.4508304762699,0.0,0.0,82.0536390106512,0.1290377909972448 +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519 +3,378.9841223881726,0.0,0.0,81.09781984454986,0.127534667000873 +4,377.41585176705246,0.0,0.0,80.76222972141316,0.1270069169986527 +5,378.5934796234818,0.0,0.0,81.01422722237132,0.1274032090004766 +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686 +7,381.4723549525934,0.0,0.0,81.63027021468451,0.1283719999992172 +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033 +9,376.8108781888688,0.0,0.0,80.63277300975706,0.1268033329979516 +10,377.2519165934144,0.0,0.0,80.72714966292916,0.126951749996806 +11,367.1828436771961,0.0,0.0,78.57249511905164,0.1235633340038475 +12,377.61655773184407,0.0,0.0,80.80517826519866,0.1270744580033351 +13,377.07560168009087,0.0,0.0,80.68942049637064,0.1268924169999081 +14,378.470650841746,0.0,0.0,80.98794341303869,0.1273618750055902 +15,378.9410339449637,0.0,0.0,81.08859946143005,0.1275201669996022 +16,378.1692783957104,0.0,0.0,80.92345351256293,0.1272604580008192 +17,360.8712520229351,0.0,0.0,77.22189415011354,0.1214393749978626 +18,376.8633777379917,0.0,0.0,80.64400725078504,0.1268209999980172 +19,378.58864776937514,0.0,0.0,81.01319326656494,0.1274015829985728 +20,377.4466793231688,0.0,0.0,80.76882642941354,0.1270172910008113 +21,377.031895147184,0.0,0.0,80.68006784985506,0.126877709000837 +22,374.3029586664954,0.0,0.0,80.09610987904745,0.1259593750000931 +23,376.47582842715946,0.0,0.0,80.56107658869635,0.1266905829979805 +24,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271 +25,378.17670742869615,0.0,0.0,80.92504323187597,0.1272629579980275 +26,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385 +27,376.6962243120295,0.0,0.0,80.60823852691433,0.1267647499989834 +28,356.6068604960436,0.0,0.0,76.30936817510647,0.1200043339995318 +0,376.57177593891714,0.0,0.0,79.74107126114866,0.1257639160030521 +1,380.690278713343,0.0,0.0,80.61318607221193,0.1271393749993876 +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998 +3,377.175622428229,0.0,0.0,79.86893895865455,0.1259655829999246 +4,380.9577662999694,0.0,0.0,80.66982798769662,0.1272287079991656 +5,381.55025850883186,0.0,0.0,80.79529135608311,0.1274265829997602 +6,386.5080296823765,0.0,0.0,81.84512570296262,0.1290823329982231 +7,378.1668532813673,0.0,0.0,80.07883735026734,0.1262966249996679 +8,364.021648680628,0.0,0.0,77.0835152360204,0.1215725420042872 +9,381.3288079055205,0.0,0.0,80.7483980160407,0.1273526250006398 +10,372.39002208305175,0.0,0.0,78.85556269804478,0.1243673330027377 +11,382.33663003234,0.0,0.0,80.96180969787187,0.1276892079986282 +12,380.7838498071915,0.0,0.0,80.63300024772721,0.1271706249972339 +13,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207 +14,359.0034919453096,0.0,0.0,76.02089392609103,0.1198966250012745 +15,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113 +16,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118 +17,382.58927200969583,0.0,0.0,81.01530797683783,0.1277735830008168 +18,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988 +19,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475 +20,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802 +21,380.5168592731632,0.0,0.0,80.57646358576704,0.1270814579984289 +22,379.91950137360783,0.0,0.0,80.44996988156394,0.1268819580000126 +23,380.7278329052986,0.0,0.0,80.62113837158283,0.1271519169968087 +24,381.2378568006439,0.0,0.0,80.7291386370892,0.1273222500021802 +25,381.37821343052354,0.0,0.0,80.75885989805546,0.1273691249953117 +26,358.5115594791486,0.0,0.0,75.91672461668911,0.1197323340020375 +27,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729 +28,378.77381981874754,0.0,0.0,80.2073657345035,0.1264993340009823 +0,373.7002810104703,0.0,0.0,80.05956189892107,0.1265379169999505 +1,377.3721755823788,0.0,0.0,80.84620907502472,0.127781249997497 +2,375.5968928291588,0.0,0.0,80.46588193401963,0.127180124996812 +3,376.8571996022623,0.0,0.0,80.73588335826284,0.127606874993944 +4,358.4247515000995,0.0,0.0,76.78701364964624,0.1213655000028666 +5,376.5106839164296,0.0,0.0,80.66164767954228,0.127489541999239 +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804 +7,374.2099647272519,0.0,0.0,80.1687538293157,0.1267105000006267 +8,375.82244863222303,0.0,0.0,80.51420381038605,0.1272565000035683 +9,375.6955792262256,0.0,0.0,80.48702398318585,0.1272135410035844 +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104 +11,367.9267647010967,0.0,0.0,78.82267445239606,0.1245829580002464 +12,374.54122384829685,0.0,0.0,80.23972102268834,0.1268226669999421 +13,375.0623514767027,0.0,0.0,80.35136463588229,0.1269991250010207 +14,374.88404796498406,0.0,0.0,80.31316583925673,0.126938749999681 +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875 +16,375.49242102266754,0.0,0.0,80.44350044948914,0.1271447500039357 +17,373.65007545091566,0.0,0.0,80.04880612669643,0.1265209169941954 +18,378.19699950514024,0.0,0.0,81.02291496810425,0.128060542003368 +19,372.4382495153243,0.0,0.0,79.7891909793948,0.1261105829980806 +20,363.61881019547434,0.0,0.0,77.8997611769015,0.1231242499998188 +21,384.24356897781905,0.0,0.0,82.31829987299409,0.1301079589975415 +22,368.9578241234784,0.0,0.0,79.04356314272411,0.1249320830029319 +23,378.87735844050263,0.0,0.0,81.16867145014876,0.1282909170040511 +24,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101 +25,377.9771021827879,0.0,0.0,80.97580533456942,0.1279860830036341 +26,376.3770485675717,0.0,0.0,80.63301835270623,0.1274442919966532 +27,376.4166725657793,0.0,0.0,80.64150718747139,0.1274577090007369 +28,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799 +0,403.1280711860908,0.0,0.0,84.25633205896268,0.1253158330000587 +1,387.8453998928396,0.0,0.0,81.06215651211087,0.1205650830015656 +2,419.1526392551472,0.0,0.0,87.60556875278897,0.1302972080011386 +3,406.2162918923644,0.0,0.0,84.90178983751325,0.1262758330049109 +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548 +5,414.97228218567807,0.0,0.0,86.73184752485783,0.1289977080014068 +6,409.33346783722465,0.0,0.0,85.55329944517618,0.1272448339950642 +7,387.6850922721412,0.0,0.0,81.02865119931684,0.1205152499969699 +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134 +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388 +10,409.103591653989,0.0,0.0,85.50525386013376,0.1271733750036219 +11,410.61660425324544,0.0,0.0,85.8214831209671,0.1276437080014147 +12,402.2978448831,0.0,0.0,84.08280947874876,0.1250577500031795 +13,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471 +14,406.7088823894727,0.0,0.0,85.00474438585651,0.1264289590035332 +15,409.91545590084,0.0,0.0,85.6749386537732,0.1274257499972009 +16,408.4102153116807,0.0,0.0,85.36033379250497,0.1269578329956857 +17,407.3196873856032,0.0,0.0,85.13240651671686,0.1266188329973374 +18,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295 +19,408.7449076956601,0.0,0.0,85.43028663046836,0.1270618750058929 +20,406.67349330879034,0.0,0.0,84.9973478428064,0.1264179580030031 +21,408.2432069034229,0.0,0.0,85.32542797247262,0.1269059169935644 +22,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104 +23,403.50310985493286,0.0,0.0,84.3347175271935,0.125432417000411 +24,408.1030049222433,0.0,0.0,85.29612486627406,0.1268623340001795 +25,395.15070496407816,0.0,0.0,82.58901175705402,0.1228360000022803 +26,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865 +27,405.9890985754069,0.0,0.0,84.85430498859458,0.1262052080055582 +28,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786 +0,371.9505742570301,0.0,0.0,79.28333129496517,0.1256908330033184 +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039 +2,380.42500161272574,0.0,0.0,81.08970256598367,0.1285545409991755 +3,379.724029315134,0.0,0.0,80.94028642646145,0.1283176659999299 +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309 +5,376.13581758750024,0.0,0.0,80.17543916220671,0.1271051250005257 +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614 +7,376.2810664428482,0.0,0.0,80.20639976266224,0.1271542079994105 +8,380.54867753629713,0.0,0.0,81.11606477618137,0.1285963339978479 +9,379.31836647407073,0.0,0.0,80.85381713820637,0.1281805830003577 +10,381.0452130124147,0.0,0.0,81.22190407144627,0.1287641249946318 +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587 +12,376.2243494820515,0.0,0.0,80.19431022737417,0.1271350420065573 +13,372.8399531157799,0.0,0.0,79.47290733970135,0.1259913750036503 +14,374.9296776697505,0.0,0.0,79.91834373796102,0.1266975420003291 +15,374.12192675589216,0.0,0.0,79.74616714316706,0.1264245839993236 +16,375.5840417938985,0.0,0.0,80.05782508637942,0.1269186670033377 +17,375.37479914772064,0.0,0.0,80.01322385388747,0.1268479589998605 +18,375.09391603623067,0.0,0.0,79.95335205821166,0.1267530420009279 +19,378.31259142851826,0.0,0.0,80.63943059960772,0.1278407079953467 +20,378.55623535736214,0.0,0.0,80.69136465661818,0.1279230410000309 +21,376.64345322012633,0.0,0.0,80.28364451749893,0.1272766670008422 +22,376.4232347180749,0.0,0.0,80.23670372035055,0.1272022499979357 +23,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102 +24,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959 +25,369.4433498371993,0.0,0.0,78.74890248085369,0.1248435829984373 +26,376.9355548460999,0.0,0.0,80.34590760186201,0.1273753749992465 +27,378.0333122323057,0.0,0.0,80.57990068738393,0.1277463329970487 +28,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645 +0,381.15527652293935,0.0,0.0,81.51934415933158,0.1286932079965481 +1,385.36513808692746,0.0,0.0,82.41972564382412,0.130114624997077 +2,378.5353754336696,0.0,0.0,80.95901446769543,0.127808625002217 +3,375.9680451234962,0.0,0.0,80.40992831825284,0.1269417919975239 +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456 +5,376.0794774873806,0.0,0.0,80.43376084473613,0.1269794160034507 +6,376.188694437082,0.0,0.0,80.45711955090954,0.127016291997279 +7,378.75676516528466,0.0,0.0,81.00636405679074,0.1278833749965997 +8,378.5499353289353,0.0,0.0,80.96212845610434,0.127813541002979 +9,376.9519574623808,0.0,0.0,80.62036194863003,0.1272740000058547 +10,375.52600605674576,0.0,0.0,80.31538749189194,0.1267925419961102 +11,378.15886475244446,0.0,0.0,80.87848848342348,0.1276814999946509 +12,375.0297909482362,0.0,0.0,80.20925979879881,0.1266250000044237 +13,371.8400015295662,0.0,0.0,79.5270456004583,0.1255480000036186 +14,380.5503420202996,0.0,0.0,81.38996417444876,0.1284889580056187 +15,378.3637191494406,0.0,0.0,80.92230158826523,0.1277506670012371 +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861 +17,374.23394884006944,0.0,0.0,80.03904957029572,0.1263562919994001 +18,377.2002516134433,0.0,0.0,80.67346570345106,0.1273578340042149 +19,364.2633868236725,0.0,0.0,77.90660191302786,0.122989832998428 +20,380.7449517375222,0.0,0.0,81.43158620487097,0.1285546660001273 +21,374.3580929740989,0.0,0.0,80.06560081859438,0.126398208005412 +22,378.7710821980925,0.0,0.0,81.00942610314478,0.1278882089973194 +23,384.0539539971067,0.0,0.0,82.13929697430812,0.1296719170059077 +24,381.7317073342197,0.0,0.0,81.64262793521807,0.1288878340055816 +25,377.330689419243,0.0,0.0,80.70136300682668,0.1274018750045797 +26,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793 +27,368.4089550234593,0.0,0.0,78.7932326948375,0.124389541997516 +28,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174 +0,382.11192345358336,0.0,0.0,83.48578836048895,0.1285898329952033 +1,383.063317719908,0.0,0.0,83.69365389802014,0.1289099999994505 +2,378.283444669349,0.0,0.0,82.64932252442081,0.1273014580001472 +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752 +4,379.91545010812285,0.0,0.0,83.0058915093224,0.1278506669987109 +5,377.47332413675264,0.0,0.0,82.47232320254791,0.1270288329978939 +6,378.7013227559976,0.0,0.0,82.74062268900902,0.1274420840054517 +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177 +8,377.4120387598971,0.0,0.0,82.45893325659827,0.1270082089977222 +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708 +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298 +11,373.0895357637535,0.0,0.0,81.51453045685822,0.1255535829986911 +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769 +13,383.83679006238367,0.0,0.0,83.86264613386297,0.1291702920061652 +14,382.0622747139288,0.0,0.0,83.47494084719048,0.1285731250027311 +15,379.26022195757537,0.0,0.0,82.8627338757944,0.1276301670004613 +16,378.4614914107541,0.0,0.0,82.68822309689409,0.127361375001783 +17,376.1883756534947,0.0,0.0,82.19158101539543,0.126596416994289 +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035 +19,376.2270029142905,0.0,0.0,82.2000204990174,0.1266094159946078 +20,376.0207293733377,0.0,0.0,82.15495278946071,0.1265399999974761 +21,377.7483179042934,0.0,0.0,82.53240526245817,0.1271213750005699 +22,378.4316510205191,0.0,0.0,82.68170341417591,0.1273513329942943 +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608 +24,374.7420925115319,0.0,0.0,81.87558959799095,0.1261097080059698 +25,384.3096389423701,0.0,0.0,83.96595660155066,0.1293294170027366 +26,378.8730519301984,0.0,0.0,82.7781429667409,0.1274998749941005 +27,376.8858236829585,0.0,0.0,82.34396306632436,0.1268311249950784 +28,376.7586678245342,0.0,0.0,82.31618139704467,0.1267883339969557 +0,356.33566462805965,0.0,0.0,78.6689939309365,0.1220669589965837 +1,365.621944433946,0.0,0.0,80.71914597073523,0.1252480830007698 +2,369.7227878911292,0.0,0.0,81.62449803360438,0.126652874998399 +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455 +4,381.5487589223497,0.0,0.0,84.2353431878597,0.1307040000028791 +5,374.4612274067481,0.0,0.0,82.67061355472525,0.128276082999946 +6,376.2095751151944,0.0,0.0,83.05660005262041,0.1288750000021536 +7,417.9745566255801,0.0,0.0,92.27714518215636,0.1431820840007276 +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442 +9,368.9749927454226,0.0,0.0,81.45940568496007,0.1263967090053483 +10,368.7472965391703,0.0,0.0,81.40913670195931,0.1263187090007704 +11,354.0226975037879,0.0,0.0,78.15835518571936,0.1212746249948395 +12,368.9847223569777,0.0,0.0,81.46155371230721,0.1264000419978401 +13,368.6611806740536,0.0,0.0,81.3901247165121,0.1262892090016976 +14,368.6304066460952,0.0,0.0,81.3833306679253,0.1262786669976776 +15,360.7548186281763,0.0,0.0,79.64462009953212,0.1235807920020306 +16,371.2739682072804,0.0,0.0,81.96695546066114,0.127184249999118 +17,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106 +18,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356 +19,369.8492877304773,0.0,0.0,81.65242567622282,0.1266962090012384 +20,368.8047051618492,0.0,0.0,81.42181092752081,0.1263383749974309 +21,366.89142369116024,0.0,0.0,80.99941164687931,0.1256829580015619 +22,351.5059977726157,0.0,0.0,77.60273795306252,0.1204125000003841 +23,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249 +24,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876 +25,371.2468431633174,0.0,0.0,81.96096700614838,0.1271749579973402 +26,392.0700979045949,0.0,0.0,86.55816190824662,0.1343082080056774 +27,371.75271404089193,0.0,0.0,82.07264921185542,0.1273482499964302 +28,351.3996928408619,0.0,0.0,77.57926878379007,0.1203760839998722 +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.1290693749979254 +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051 +2,379.3227523689651,0.739289559896991,0.0,82.73322256665416,0.1275123750019702 +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.1282127079975907 +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.1270318749957368 +5,377.3349727742443,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827 +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.1275647080037742 +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.1269037500023841 +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.127749125000264 +9,380.193747573396,0.7409871054761438,0.0,82.92319334919391,0.1278051670014974 +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.1276764170033857 +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.127789959005895 +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.127124749997165 +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.1266850829997565 +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841 +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.1375446250021923 +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.1272327080005197 +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.1276012079979409 +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.1282910420050029 +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.1266605839991825 +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.1268799999961629 +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.1255359169954317 +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.1272838750010123 +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.1268487090055714 +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.1266794170005596 +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.1264934169957996 +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865 +27,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.1270743339991895 +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.1257333750036195 +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832 +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.1277571250029723 +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.1318783749957219 +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.1273030829979688 +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225 +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.1280105410041869 +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.1272239169993554 +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.1272712909994879 +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.1268018749979091 +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.1302960419998271 +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.1214435000001685 +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.1277919170024688 +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.1277310000004945 +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639 +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.1275388750000274 +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.127049499998975 +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.1213214579984196 +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.1275617919964133 +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.1269967919943155 +20,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.1260682499996619 +21,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.1243212089975713 +22,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.1276745420036604 +23,386.3097856350467,0.8411936800693467,0.0,82.90804910763481,0.1275798329952522 +24,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.1271656670069205 +25,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733 +26,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888 +27,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.1284481249967939 +28,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.1226739999983692 +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808 +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.1277220839983783 +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.1272478329992736 +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.1273376659955829 +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101 +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.1282137920061359 +6,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888 +7,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.1262204169979668 +8,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019 +9,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021 +10,378.5886374541328,0.630207123850405,0.0,81.79425091658413,0.1265887500048848 +11,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.1284940410041599 +12,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.1273608750052517 +13,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241 +14,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344 +15,376.1731498918869,0.6261862491629446,0.0,81.2723837071485,0.1257810829993104 +16,377.5617067268463,0.6284976719651376,0.0,81.5723820561068,0.1262453749950509 +17,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.1282457499983138 +18,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.1276990840051439 +19,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.1275388750000274 +20,370.9409249040661,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327 +21,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.1235482500051148 +22,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773 +23,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.1300859159964602 +24,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122 +25,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.1262704169930657 +26,380.6645552301474,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738 +27,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.1272568749991478 +28,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.1275444999992032 +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.1260774999973364 +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.1270055420027347 +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.1273317499944823 +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.1277807910009869 +4,382.865699575474,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585 +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.126890708997962 +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899 +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.1271131670000613 +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.1269129170032101 +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.1268732919998001 +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.1278685830038739 +11,379.158248535522,0.8729402693636388,0.0,81.98923606869253,0.127998458003276 +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.1279381250060396 +13,380.905955104168,0.8769640337118894,0.0,82.3671603970936,0.1285884590033674 +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.128263375001552 +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538 +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952 +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.1270275829956517 +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.1267205830008606 +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.1267619579957681 +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377 +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698 +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.1286793750041397 +23,377.2149146660136,0.868466110096197,0.0,81.5690092636505,0.127342415995372 +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235 +25,377.792424091372,0.8697957164947907,0.0,81.69388998770303,0.1275373750031576 +26,372.2949335054875,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435 +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024 +28,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907 +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546 +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422 +2,386.7646891747356,0.0,0.0,80.34820506063755,0.1234175829958985 +3,400.02309949515256,0.0,0.0,83.10256578957589,0.1276483750043553 +4,400.4175651822858,0.0,0.0,83.18451383397155,0.1277742499951273 +5,396.0818362122956,0.0,0.0,82.2837903446803,0.126390707999235 +6,397.7300808589709,0.0,0.0,82.6262039686948,0.1269166670026607 +7,395.98168657862607,0.0,0.0,82.26298481737118,0.1263587499997811 +8,396.5324500295691,0.0,0.0,82.37740284966543,0.1265344999992521 +9,398.14478456222105,0.0,0.0,82.71235634795994,0.1270489999951678 +10,399.33118701966725,0.0,0.0,82.95882483539796,0.127427583996905 +11,397.223970778421,0.0,0.0,82.52106242482209,0.1267551660057506 +12,402.9354331958688,0.0,0.0,83.70758685778524,0.128577707997465 +13,397.41304479758514,0.0,0.0,82.56034149679698,0.1268154999997932 +14,398.0741427062589,0.0,0.0,82.69768089674226,0.1270264580016373 +15,396.5969559370069,0.0,0.0,82.39080359183116,0.1265550839962088 +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509 +17,396.8564054927456,0.0,0.0,82.44470278865771,0.1266378750005969 +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872 +19,397.34449316119225,0.0,0.0,82.54610027702614,0.1267936250005732 +20,397.6506894306738,0.0,0.0,82.60971084266905,0.1268913329986389 +21,397.0926148741081,0.0,0.0,82.49377396899592,0.1267132500070147 +22,396.0943744971357,0.0,0.0,82.2863951033608,0.1263947089973953 +23,397.0390803449771,0.0,0.0,82.48265246942572,0.1266961670044111 +24,396.6367801479797,0.0,0.0,82.39907684934194,0.1265677920018788 +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732 +26,394.427458763678,0.0,0.0,81.94010266529867,0.1258627920033177 +27,406.09638297638475,0.0,0.0,84.36425652867271,0.1295863750056014 +28,407.3996475439181,0.0,0.0,84.63500246709813,0.1300022499999613 +29,408.0202694203579,0.0,0.0,84.76393319730442,0.1302002919983351 +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395 +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.1276939169983961 +2,379.7503451515355,0.911076889913938,0.0,81.4232790874938,0.1268921250011772 +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.1268949169971165 +4,380.9400699708801,0.913931214609362,0.0,81.67837114268114,0.1272896669979673 +5,377.40880702846295,0.905459195820908,0.0,80.92122368577226,0.1261097089955001 +6,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.1234518330020364 +7,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277 +8,377.5661692958721,0.9058367310279496,0.0,80.95496414705343,0.1261622909951256 +9,380.5384223868755,0.9129676030252032,0.0,81.59225281851168,0.1271554579943767 +10,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.1257233749929582 +11,394.5627248223053,0.9466139657190548,0.0,84.59924071407701,0.1318416249996516 +12,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.126691417004622 +13,378.82859285824617,0.9088654706924336,0.0,81.22564373262378,0.1265841249987715 +14,379.1090329887456,0.9095382877817784,0.0,81.28577364509003,0.1266778329954831 +15,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.1235821249938453 +16,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205 +17,381.92828421094526,0.916302085809092,0.0,81.89025677990145,0.127619875005621 +18,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.1268732919998001 +19,383.9252904409535,0.92109319725482,0.0,82.31844018429187,0.1282871669973246 +20,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.1269927079993067 +21,379.801843560333,0.9112004421653628,0.0,81.43432099796371,0.1269093329974566 +22,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.1208661670025321 +23,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.127685334002308 +24,378.08752496595537,0.9070875399041048,0.0,81.06674939957796,0.1263364999977057 +25,375.8814036432744,0.901794730617417,0.0,80.59372907332693,0.1255993329978082 +26,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.1263170419988455 +27,378.28604288554345,0.9075638135693684,0.0,81.10931415344024,0.1264028340010554 +28,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943 +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298 +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315 +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.1230740000028163 +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065 +4,414.8404317742507,0.7109809081252971,0.0,85.55470261107743,0.1281313330036937 +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828 +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.1286632920018746 +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.126794959003746 +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.1242163330025505 +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521 +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514 +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.1251826670049922 +12,411.592562504149,0.7054144954368015,0.0,84.88487761756177,0.1271281669978634 +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.1268025829995167 +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.1264638749998994 +15,399.1943694562683,0.6841656540097638,0.0,82.32793369917492,0.1232987499970477 +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.1309235410008113 +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.1250162500000442 +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.1251117080028052 +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.1266198330049519 +20,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764 +21,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.1272145830007502 +22,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064 +23,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.1268779590027406 +24,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714 +25,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.1281818329953239 +26,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.1278080830015824 +27,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.1285623750009108 +28,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.1284708340026554 +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871 +1,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.1283866669982671 +2,378.1783407682509,1.2393798590279257,0.0,85.98616481418068,0.1276013329988927 +3,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.1280753750033909 +4,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.1272267079984885 +5,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.1250958329983404 +6,376.4828302874184,1.2338232702067742,0.0,85.60065769245378,0.1270292500048526 +7,372.3979185608552,1.2204360484279575,0.0,84.67187395444776,0.1256509580052807 +8,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935 +9,375.9752882211583,1.232159934825762,0.0,85.48525818101977,0.1268579999959911 +10,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.1262761250036419 +11,380.0242615418349,1.2454293779493255,0.0,86.40587062691674,0.1282241660010186 +12,380.4472152044884,1.2468154971271983,0.0,86.50203732771672,0.1283668749965727 +13,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619 +14,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671 +15,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.1262934999977005 +16,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.1261303330029477 +17,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.1253175000019837 +18,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.1270073749983566 +19,374.82881226544566,1.2284026619859605,0.0,85.22458468426919,0.1264711670010001 +20,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837 +21,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595 +22,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.1281118750048335 +23,378.32986245382807,1.2398764314253,0.0,86.02061620185799,0.1276524580025579 +24,377.6759852809123,1.2377335212926268,0.0,85.87194457184252,0.1274318329960806 +25,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.1273741659970255 +26,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.1267671660025371 +27,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.1263089579952065 +0,580.8490462076469,0.4375130425111193,22.313165168067087,110.42156095992172,0.1313430000009248 +1,577.9638128096457,0.4353397975853406,22.202329676852372,109.87306737519252,0.1306905840028775 +2,571.3580595604811,0.4303641447526656,21.948571382385943,108.61728914873044,0.129196875001071 +3,561.9166389561877,0.423252581634535,21.585881663361288,106.82244002637763,0.1270619579954655 +4,588.3427741262249,0.44315754468051,22.601034778706012,111.84614646898105,0.133037499996135 +5,579.4248575746424,0.4364403006240425,22.25845533182617,110.15081741134487,0.1310209590010345 +6,589.9617378100206,0.4443769970178033,22.66322684790797,112.15391747810868,0.1334035840045544 +7,568.8925810737016,0.4285070719020871,21.853860667006444,108.148592531596,0.1286393750051502 +8,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355672,0.1280307499982882 +9,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.1297934160029399 +10,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034755,0.1305069580048439 +11,550.8068744156343,0.4148843714817339,21.15910294556843,104.71043252550533,0.1245497909985715 +12,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.1323175419965991 +13,576.6522047657539,0.4343518547977751,22.151944594686533,109.6237258147308,0.1303939999997965 +14,578.589761320147,0.4358112809063045,22.226375326221532,109.99206251181424,0.1308321250035078 +15,570.777621784413,0.4299269414912433,21.92627401605341,108.50694577175148,0.1290656249984749 +16,559.7279309023393,0.4216039806321577,21.50180301224005,106.40635849646996,0.1265670420034439 +17,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.1261816249971161 +18,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.1294468749983934 +19,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198 +20,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.1363984580020769 +21,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.1297899169949232 +22,590.8758797423774,0.4450655563271861,22.69834337268649,112.32769925457674,0.1336102920031407 +23,580.168923511577,0.4370007535575931,22.287038431437253,110.29226710942024,0.1311892090016044 +24,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.1283416670048609 +25,596.6714126054211,0.4494309266974027,22.92097726156754,113.42945157647527,0.1349207919993205 +26,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.1315066250026575 +27,602.7321027138048,0.4539960215122233,23.15379709712339,114.58161127550808,0.1362912499971571 +28,575.0345324443498,0.4331333751536327,22.08980213283527,109.31620029838992,0.130028207997384 +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531 +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089 +2,386.8253353097512,0.0,0.0,87.22500746639305,0.1195789579942356 +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987 +4,410.1044494159173,0.0,0.0,92.47420061992683,0.1267752089988789 +5,408.0670027544839,0.0,0.0,92.01477802261016,0.1261453749975771 +6,408.1467946849229,0.0,0.0,92.03277025603695,0.1261700410032062 +7,408.5973928664444,0.0,0.0,92.1343753634586,0.1263093340021441 +8,386.5837986845974,0.0,0.0,87.17054352101684,0.1195042920007836 +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258 +10,407.3952218840771,0.0,0.0,91.86329856641038,0.1259377079986734 +11,409.46030100316216,0.0,0.0,92.32895198964506,0.1265760839960421 +12,415.01542067501595,0.0,0.0,93.58157251530466,0.1282933330003288 +13,409.88663100545983,0.0,0.0,92.42508488022676,0.1267078749951906 +14,386.8309963950141,0.0,0.0,87.22628398103481,0.119580708000285 +15,408.6011647578864,0.0,0.0,92.13522588494506,0.1263105000034556 +16,406.44537592628774,0.0,0.0,91.64911838430376,0.1256440829965868 +17,396.8252034977494,0.0,0.0,89.4798716072401,0.1226702079948154 +18,405.77534837085153,0.0,0.0,91.49803428202073,0.1254369579983176 +19,415.27138496028545,0.0,0.0,93.6392897449062,0.1283724590030033 +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354 +21,407.4975254542064,0.0,0.0,91.88636693565569,0.1259693330066511 +22,409.9073893301796,0.0,0.0,92.42976566212856,0.1267142919969046 +23,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338 +24,414.45147178217695,0.0,0.0,93.45440802555076,0.1281190000008791 +25,386.3541211550232,0.0,0.0,87.11875367582502,0.1194332919985754 +26,409.1427411144483,0.0,0.0,92.25734560522376,0.1264779170014662 +27,409.6813478367339,0.0,0.0,92.37879570449192,0.1266444159991806 +28,405.9621635490298,0.0,0.0,91.54015912190069,0.1254947080014972 +0,392.6923196485306,0.0,0.0,80.61026913897126,0.1246850840034312 +1,400.5184957667552,0.0,0.0,82.21679448121304,0.1271699999997508 +2,398.0520646223312,0.0,0.0,81.71049560950932,0.12638687499566 +3,399.9544786756752,0.0,0.0,82.10101536551342,0.1269909170005121 +4,403.1854443963641,0.0,0.0,82.7642547600517,0.128016791997652 +5,381.7259833976352,0.0,0.0,78.3591446009504,0.121203125003376 +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361 +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702 +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854 +9,402.8376890448656,0.0,0.0,82.69286896747012,0.127906375004386 +10,414.9605369904961,0.0,0.0,85.18139748389932,0.1317555419955169 +11,400.0866242774884,0.0,0.0,82.12814167278938,0.1270328750033513 +12,394.6405270092331,0.0,0.0,81.01018915733403,0.1253036659982171 +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246 +14,404.0993175654207,0.0,0.0,82.95185089685027,0.1283069589990191 +15,388.2460478319902,0.0,0.0,79.69755669245045,0.1232733330034534 +16,399.35397808432066,0.0,0.0,81.97774706647837,0.1268002500000875 +17,378.67151729069445,0.0,0.0,77.73213632338405,0.1202332910033874 +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858 +19,402.932305515202,0.0,0.0,82.71229144852506,0.1279364170040935 +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364 +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568 +22,404.07320215275104,0.0,0.0,82.94649003202395,0.1282986670048558 +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844 +24,403.0031686498588,0.0,0.0,82.72683794223248,0.1279589170007966 +25,400.56206556674624,0.0,0.0,82.22573831109683,0.1271838339962414 +26,401.1814598637611,0.0,0.0,82.35288503255603,0.127380500001891 +27,401.3059963273414,0.0,0.0,82.37844936713687,0.1274200420011766 +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624 +29,402.8306027222338,0.0,0.0,82.69141431621779,0.1279041250018053 +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.1279306249998626 +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.1298666250004316 +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.1268119170053978 +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.1270387500044307 +4,411.469987685372,0.7956876725847174,0.0,84.27658598793131,0.126604999997653 +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.1283349580044159 +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466 +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.1262690420044236 +8,428.2287649279869,0.8280952669625078,0.0,87.70909035911228,0.1317615000007208 +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.1220044580040848 +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.1273247919962159 +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.127753875000053 +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.1249797920027049 +13,412.5154149354085,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701 +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551 +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.1267970419939956 +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.1263662080018548 +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802 +18,412.5823102935587,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206 +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921 +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597 +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937 +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952 +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472 +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135 +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.1276210409996565 +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.1273774169967509 +27,403.1514038574026,0.7796014577856469,0.0,82.57278773712977,0.1240454589933506 +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.1270551250054268 +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.1296990409973659 +0,366.2560098974747,0.0,0.0,80.782447497649,0.1274277500051539 +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433 +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269 +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301 +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036 +5,365.55697252599737,0.0,0.0,80.62826586449009,0.1271845410010428 +6,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953 +7,367.84473766973,0.0,0.0,81.13286172808361,0.1279804999940097 +8,366.06882597778775,0.0,0.0,80.7411616900284,0.1273626249967492 +9,365.15554103083457,0.0,0.0,80.53972501381307,0.1270448750001378 +10,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692 +11,365.718411986348,0.0,0.0,80.66387340232536,0.1272407090000342 +12,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072 +13,366.3053517052931,0.0,0.0,80.7933304644586,0.1274449170014122 +14,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047 +15,364.87015348468304,0.0,0.0,80.4767791403244,0.1269455829969956 +16,365.9639167863109,0.0,0.0,80.71802262603086,0.1273261250025825 +17,367.16306638263006,0.0,0.0,80.98251040695109,0.1277433329960331 +18,365.2581738498211,0.0,0.0,80.56236199474246,0.1270805829990422 +19,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815 +20,366.7016354671544,0.0,0.0,80.88073591671505,0.1275827920035226 +21,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122 +22,364.065011256822,0.0,0.0,80.29919472397987,0.1266654580031172 +23,365.0026092698173,0.0,0.0,80.50599395788157,0.126991666998947 +24,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237 +25,363.3076529841561,0.0,0.0,80.13214967012348,0.1264019579975865 +26,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376 +27,366.2285868981014,0.0,0.0,80.77639900438956,0.1274182089982787 +28,366.2516985482337,0.0,0.0,80.78149657443056,0.1274262500010081 +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.1263446250013657 +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.1269560419968911 +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.1267198330024257 +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.1260341660017729 +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786 +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.1269434159985394 +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936 +7,373.7075999076504,0.701202608833154,0.0,80.83864361833646,0.1267825000031734 +8,370.2519987370816,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832 +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.1285800419937004 +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545 +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.1268734170007519 +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.1245892920051119 +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285 +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.1260856660010176 +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992 +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.1266507079999428 +17,373.544619672528,0.7008968024591752,0.0,80.8033885120792,0.1267272080003749 +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.1260830000028363 +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762 +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.1277539160000742 +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999 +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.1266689580006641 +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.1274090419974527 +24,373.3273559434392,0.7004891417809348,0.0,80.75639105960205,0.1266535000031581 +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481 +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.1265395829977933 +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.1265127079968806 +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.1282391249987995 +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.1254270000063115 +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837 +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799 +2,392.782657800016,0.0,0.0,82.10768031039964,0.1270926669967593 +3,394.0904615657848,0.0,0.0,82.3810649198677,0.1275158330026897 +4,386.1846502784042,0.0,0.0,80.72842620762319,0.1249577499984297 +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858 +6,390.5682958318153,0.0,0.0,81.64478786602623,0.1263761659938609 +7,391.0349677496118,0.0,0.0,81.742341431275,0.1265271670054062 +8,394.99521491133027,0.0,0.0,82.57019546568124,0.1278085840021958 +9,389.8935329590793,0.0,0.0,81.50373475907328,0.1261578330013435 +10,386.8460219423448,0.0,0.0,80.86668000287307,0.1251717499981168 +11,395.2454142765718,0.0,0.0,82.62249739166286,0.1278895409996039 +12,405.8558215300987,0.0,0.0,84.84050755437045,0.1313227499995264 +13,394.8692730303716,0.0,0.0,82.54386844870608,0.1277678329934133 +14,390.91198968003886,0.0,0.0,81.71663397240133,0.126487374996941 +15,384.1205680557549,0.0,0.0,80.29694839182318,0.1242898750060703 +16,397.6399258501084,0.0,0.0,83.12304849002524,0.1286643330022343 +17,394.5017605534564,0.0,0.0,82.46704327232571,0.1276489169977139 +18,389.40123755570465,0.0,0.0,81.40082483472742,0.125998540999717 +19,390.4691426421824,0.0,0.0,81.62406078392506,0.1263440830007312 +20,383.5958221737522,0.0,0.0,80.1872549869132,0.1241200830045272 +21,405.63909868024984,0.0,0.0,84.7952035927062,0.1312526249967049 +22,392.9889501493175,0.0,0.0,82.15080386977927,0.1271594170029857 +23,393.90245582749657,0.0,0.0,82.34176401197539,0.1274549999943701 +24,388.23392583418934,0.0,0.0,81.15680882294728,0.1256208339982549 +25,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692 +26,375.36074051247016,0.0,0.0,78.46578526581658,0.1214554580001276 +27,394.00032031549273,0.0,0.0,82.36222170259528,0.127486666002369 +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.1265818329993635 +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.1273689170047873 +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.1272704590010107 +3,390.0256092913664,1.0581449340672937,0.0,81.74169615669842,0.1245831669948529 +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.1276017079944722 +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.1207954999990761 +6,402.8359437074606,1.092899550541648,0.0,84.42649027934232,0.1286750829967786 +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859 +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.1266689580006641 +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494 +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.127547208998294 +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.1202903329976834 +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.1262500839948188 +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602 +14,399.0628659124927,1.0826631377023963,0.0,83.63572738751013,0.1274698750057723 +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.1271318750004866 +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.1265424590019392 +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.1203042499982984 +18,402.568664946258,1.0921744195235483,0.0,84.37047390819413,0.1285897080015274 +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.1271081250015413 +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.1269394580012885 +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.1268292910026502 +22,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.1216482500021811 +23,405.61921819575144,1.100450613163548,0.0,85.00980986688407,0.129564125003526 +24,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.1270289169988245 +25,395.58876147911013,1.0732378437754575,0.0,82.90762343165412,0.1263601659957203 +26,397.43884404649145,1.0782571436615285,0.0,83.29536434785305,0.1269511249993229 +27,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.1271508339996216 +28,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/mac_report.md new file mode 100644 index 000000000..2c0845c14 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 655.51 ms | 123.73 ms | +| **Average Power** | 7.179 W | 3.544 W | +| **Total Energy** | 4235.28 J | 394.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +91.17% | 0.00e+00 | +89.445 | large | βœ… | +| `gpu_mj` | +83.80% | 0.00e+00 | +3.683 | large | βœ… | +| `ane_mj` | +100.00% | 0.00e+00 | +0.272 | small | βœ… | +| `dram_mj` | +87.83% | 0.00e+00 | +117.690 | large | βœ… | +| `time_s` | +81.06% | 0.00e+00 | +134.006 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 91.2% lower energy (Cohen’s d = +89.445, large) +- **`gpu_mj`**: 83.8% lower energy (Cohen’s d = +3.683, large) +- **`ane_mj`**: 100.0% lower energy (Cohen’s d = +0.272, small) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +117.690, large) +- **`time_s`**: 81.1% lower time (Cohen’s d = +134.006, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/with_smell.csv new file mode 100644 index 000000000..5567cf072 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4298.324586146077,2.34866663806101,0.0,675.5559166546752,0.666461957996944 +1,4386.990791615231,2.397115133407328,0.0,689.4913416118936,0.6802097920008237 +2,4314.322225328852,2.3574079791773657,0.0,678.0702218416924,0.6689424170035636 +3,4320.785126850016,2.3609394019174617,0.0,679.0859783937804,0.6699445000049309 +4,4316.092062346529,2.358375043687017,0.0,678.3483822841725,0.6692168330046115 +5,4324.958738322495,2.363219923508882,0.0,679.7419334915267,0.6705916249993606 +6,4338.561200090624,2.370652505090384,0.0,681.8797951965608,0.6727007079971372 +7,4313.949226812134,2.35720416740031,0.0,678.011598685199,0.6688845829994534 +8,4369.91905173871,2.3877868881578013,0.0,686.8082229571636,0.6775627919996623 +9,4322.818863117996,2.36205066478919,0.0,679.4056151595047,0.6702598339979886 +10,4317.2954232396205,2.35903257746012,0.0,678.5375112238108,0.6694034159954754 +11,4328.716359179343,2.365273141819432,0.0,680.3325084822034,0.6711742499974207 +12,4327.235400242506,2.364463924465652,0.0,680.0997502174303,0.6709446249951725 +13,4348.149681125506,2.3758917896220573,0.0,683.3867905304459,0.674187416996574 +14,4333.099578385659,2.3676681961041557,0.0,681.0214070540715,0.6718538749992149 +15,4346.979638150608,2.375252461240693,0.0,683.2028980768653,0.6740060000010999 +16,4316.435767323145,2.35856284905065,0.0,678.4024014551038,0.669270124999457 +17,4332.924101282284,2.3675723128803137,0.0,680.9938277977714,0.6718266669995501 +18,4326.004087331245,2.363791117306087,0.0,679.9062281355622,0.6707537080001202 +19,4354.886149742676,2.3795726933747634,0.0,684.4455428746397,0.6752319170045666 +20,4306.127370941402,2.352930192375129,0.0,676.7822589955617,0.6676717919981456 +21,4337.617971975319,2.3701371116243717,0.0,681.7315506139848,0.6725544590008212 +22,4341.152002730764,2.372068157074022,0.0,682.28698456008,0.6731024160035304 +23,4367.9377173689945,2.3867042584401683,0.0,686.4968220544382,0.6772555830029887 +24,4337.825696425971,2.370250615264541,0.0,681.7641980976402,0.6725866670021787 +25,4313.800353776128,2.3571228210231423,0.0,677.988200717389,0.6688615000020945 +26,4338.812194020074,2.370789651798745,0.0,681.9192432258304,0.6727396249989397 +27,4312.218351039484,2.356258391877691,0.0,677.739561675017,0.6686162080004578 +28,4308.521464833542,2.3542383598576357,0.0,677.1585321832766,0.6680430000051274 +29,4335.538818517061,2.369001032143879,0.0,681.4047757527085,0.6722320830012904 +0,4459.5610091822355,2.5150736977002492,0.0,690.7063060204271,0.6769831249985145 +1,4426.857021083713,2.496629518977919,0.0,685.6410426985092,0.6720185000012862 +2,4382.096714354068,2.4713858974813334,0.0,678.7084710723069,0.6652236669979175 +3,4405.997731201146,2.4848654347489263,0.0,682.4103114603151,0.6688519579984131 +4,4434.534363155629,2.5009593355391373,0.0,686.8301257879948,0.6731839579952066 +5,4508.661591420469,2.542765119047526,0.0,698.3111087602919,0.6844368330057478 +6,4417.676650902167,2.49145203457279,0.0,684.2191674146103,0.67062487500516 +7,4441.321865669631,2.5047873062768153,0.0,687.881388631781,0.67421433400159 +8,4488.969648701046,2.531659387544298,0.0,695.2611787366654,0.6814474999991944 +9,4469.66032219995,2.520769441403138,0.0,692.270509127739,0.6785162500018487 +10,4437.025225139686,2.502364115392536,0.0,687.2159157965342,0.6735620830004336 +11,4457.31223434689,2.5138054485544745,0.0,690.3580109850202,0.6766417500039097 +12,4384.7036727319055,2.472856152610391,0.0,679.1122423375498,0.6656194160023006 +13,4413.516435463956,2.489105783808676,0.0,683.5748243880973,0.6699933339987183 +14,4425.455280873639,2.495838974813121,0.0,685.4239381896781,0.6718057089965441 +15,4456.375729504962,2.513277284752958,0.0,690.2129631207556,0.6764995839985204 +16,4460.908133199345,2.5158334397860727,0.0,690.9149514569832,0.6771876249986235 +17,4419.527987940163,2.492496139380473,0.0,684.5059064375947,0.6709059170025284 +18,4419.9397006307345,2.4927283343783517,0.0,684.5696733758788,0.6709684169982211 +19,4410.844690025743,2.4875989905021676,0.0,683.1610187649752,0.6695877500023926 +20,4423.770269180167,2.494888673072245,0.0,685.1629599902537,0.6715499159981846 +21,4435.222200105335,2.5013472572688658,0.0,686.9366594395577,0.6732883750009933 +22,4429.481831298017,2.4981098420675356,0.0,686.0475788942005,0.6724169590015663 +23,4456.3466329368575,2.513260875063085,0.0,690.2084565823247,0.6764951669974835 +24,4405.202032174738,2.484416681679177,0.0,682.2870719006135,0.6687311670029885 +25,4415.936199536094,2.490470466332346,0.0,683.9496026006311,0.6703606659939396 +26,4416.292742781535,2.4906715472317567,0.0,684.0048247777665,0.6704147909986204 +27,4422.136876349898,2.493967482996145,0.0,684.909976630288,0.6713019589951728 +28,4430.8585920505975,2.4988862984832485,0.0,686.2608145314596,0.6726259580027545 +29,4428.806615859681,2.497729038534241,0.0,685.943000089197,0.672314458002802 +0,4365.871975336225,1.7026540141784747,0.0,680.6609811974655,0.671927625000535 +1,4401.740248761848,1.716642344591,0.0,686.2530219906139,0.6774479160012561 +2,4382.3174979665255,1.7090676321864988,0.0,683.224919314085,0.6744586659988272 +3,4369.221999416928,1.703960495903277,0.0,681.1832664799218,0.6724432089977199 +4,4366.362539084882,1.7028453299890571,0.0,680.7374625062137,0.6720031250006286 +5,4391.016889062863,1.7124603228688555,0.0,684.5811973068672,0.6757975419968716 +6,4358.197303689572,1.6996609556186966,0.0,679.4644620226271,0.6707464580031228 +7,4344.730354172825,1.6944089565259697,0.0,677.3648981500287,0.6686738330026856 +8,4341.138576337993,1.693008192833616,0.0,676.8049222645444,0.6681210419992567 +9,4358.578494459232,1.6998096168707433,0.0,679.5238915443277,0.6708051250025164 +10,4363.328464069257,1.7016620657903228,0.0,680.2644352418255,0.6715361670067068 +11,4349.108612846212,1.6961164412500904,0.0,678.0474902785655,0.6693476669970551 +12,4361.97832862776,1.7011355241184332,0.0,680.0539424652277,0.6713283749995753 +13,4363.309510738167,1.7016546741477263,0.0,680.261480323997,0.6715332500025397 +14,4332.586464835557,1.6896729399765502,0.0,675.4716058870962,0.6668048330029706 +15,4337.37785615621,1.6915415430211873,0.0,676.2186074336464,0.6675422499974957 +16,4348.047071902495,1.6957024490489343,0.0,677.8819908080328,0.6691842910004198 +17,4355.601272770992,1.6986485250001575,0.0,679.0597279941807,0.6703469169951859 +18,4342.518489939411,1.6935463477419472,0.0,677.0200576031926,0.6683334170011221 +19,4329.186630619755,1.6883470327104235,0.0,674.9415549588258,0.6662815829986357 +20,4377.93626990169,1.707358989424236,0.0,682.5418642427711,0.67378437500156 +21,4353.607342345028,1.6978709086012025,0.0,678.748864403163,0.6700400420013466 +22,4351.52785883947,1.6970599272077582,0.0,678.4246626649368,0.6697199999980512 +23,4358.339982972328,1.6997165993606331,0.0,679.4867064267565,0.6707684169959975 +24,4340.545949390721,1.692777073218478,0.0,676.712528799575,0.6680298340070294 +25,4368.247362930842,1.703580395722884,0.0,681.0313158431011,0.6722932079937891 +26,4370.011443217426,1.7042683724657322,0.0,681.3063446633597,0.672564708002028 +27,4409.230825797347,1.719563607772801,0.0,687.4208399072915,0.6786007499977131 +28,4343.254062662983,1.693833215029304,0.0,677.1347370199501,0.6684466250007972 +29,4337.080321147453,1.6914255068250093,0.0,676.1722202578096,0.6674964580015512 +0,5519.84217345951,4.72710642584526,111.62724174174592,771.4300036520476,0.698210457994719 +1,5506.5306196541005,4.715706619554766,111.3580434589147,769.5696366926267,0.6965266659972258 +2,5484.447700017819,4.696795152879866,110.9114626815774,766.4834204131879,0.6937333750029211 +3,5465.242122921156,4.680347797311944,110.52307012795204,763.799329465614,0.6913040419967729 +4,5448.99591016236,4.666434795034992,110.1945245170406,761.5288268726033,0.6892490419995738 +5,5442.0461360896625,4.660483117315803,110.0539798989003,760.5575555808152,0.6883699579993845 +6,5404.328375074235,4.628182217242643,109.29121721574413,755.2862794095905,0.6835989999963203 +7,5414.837350473571,4.637181939259716,109.50373922280446,756.7549697590482,0.6849282909970498 +8,5447.795224150921,4.665406546331182,110.17024315836348,761.3610240287751,0.6890971660031937 +9,5447.082730832096,4.664796378206813,110.1558344739409,761.261448949222,0.6890070419976837 +10,5462.674746967845,4.6781491367370425,110.4711503289476,763.4405237645086,0.6909792919977917 +11,5445.905105721958,4.663787878497866,110.13201947367104,761.096869000291,0.6888580829981947 +12,5440.649135749839,4.659286748094407,110.0257284942865,760.362316669378,0.6881932500036783 +13,5404.703231762331,4.6285032386420575,109.2987979067903,755.3386678089649,0.6836464160005562 +14,5410.787987894806,4.633714128538842,109.42184934963866,756.189047819478,0.6844160830005421 +15,5535.119945995178,4.74019007107577,111.93620267840356,773.5651610990581,0.7001429590018233 +16,5419.449013845381,4.641131295577101,109.59700045127067,757.3994765003574,0.6855116249935236 +17,5435.615181475974,4.654975748459343,109.92392731718992,759.6587923217901,0.6875565000009374 +18,5520.117228557755,4.727341978725491,111.6328041547605,771.4684441995806,0.6982452499942156 +19,5449.549965300805,4.6669092791819855,110.2057291212546,761.6062592962202,0.689319124998292 +20,5450.2212936203105,4.667484194245363,110.21930532982265,761.7000813280272,0.6894040420011152 +21,5479.125519767146,4.692237321030356,110.8038327380454,765.7396148112895,0.6930601670028409 +22,5449.408975070284,4.666788537355728,110.20287788927168,761.5865550926165,0.6893012910004472 +23,5401.537331059038,4.6257920108410016,109.23477419885964,754.8962147977454,0.6832459579964052 +24,5428.360389682284,4.648762858338857,109.7772143547733,758.6448930319134,0.686638833998586 +25,5423.497388261687,4.644598260051115,109.67887034092132,757.9652603384844,0.6860237079963554 +26,5439.028799304912,4.657899117328863,109.992960584923,760.1358652400894,0.6879882919965894 +27,5402.778533859611,4.6268549574887485,109.25987492469858,755.0696800981816,0.6834029590027058 +28,5425.496549978012,4.646310310848687,109.71929919761256,758.244654799714,0.6862765839978238 +29,5472.8253332894155,4.686841939958393,110.67642466787464,764.8591271587816,0.6922632499990868 +0,4319.289765826592,1.8254119541148643,0.0,675.5351802555263,0.6684346249967348 +1,4352.448749074268,1.8394255553521544,0.0,680.7212318843227,0.6735661659986363 +2,4376.829120766304,1.849729152551054,0.0,684.5343122004392,0.6773391669994453 +3,4330.179511549561,1.8300141626022992,0.0,677.2383321019491,0.6701198750015465 +4,4310.66218590011,1.821765778843762,0.0,674.1858302288351,0.6670994579981198 +5,4325.011416888251,1.8278300299586896,0.0,676.430044177803,0.6693200829977286 +6,4325.735138314875,1.828135888054634,0.0,676.5432339175277,0.6694320829992648 +7,4347.06876561683,1.8371518745739288,0.0,679.8798046377772,0.6727335830000811 +8,4327.957460643241,1.8290750826824616,0.0,676.8908042348878,0.6697760000024573 +9,4348.485786304246,1.8377507337943737,0.0,680.1014261027397,0.6729528750001919 +10,4383.086028420811,1.8523734377570833,0.0,685.5128900383214,0.6783074589984608 +11,4330.842382203359,1.8302943040332005,0.0,677.3420048053048,0.6702224580003531 +12,4337.304451966587,1.8330252945510048,0.0,678.3526699143846,0.6712225000010221 +13,4316.722008708338,1.8243267723389136,0.0,675.1335840761136,0.6680372499977238 +14,4344.111956519706,1.8359022722169327,0.0,679.4173608855173,0.6722759999975096 +15,4328.966308884005,1.8295014406575965,0.0,677.0485876935404,0.669932124998013 +16,4330.573681242119,1.8301807460240551,0.0,677.2999800831567,0.6701808750003693 +17,4371.366206613537,1.8474204237230736,0.0,683.6799146265353,0.6764937500047381 +18,4327.686065067118,1.8289603858790968,0.0,676.8483580760569,0.6697339999955148 +19,4330.916964261218,1.8303258237939384,0.0,677.3536694091241,0.6702339999974356 +20,4324.388396143734,1.8275667298384473,0.0,676.3326039842137,0.6692236669987324 +21,4336.148055024984,1.8325365797586783,0.0,678.1718098983298,0.671043541005929 +22,4315.7473562602345,1.8239148661399016,0.0,674.9811488256646,0.6678864169953158 +23,4364.8955232319495,1.8446857929304157,0.0,682.6679023510125,0.6754923749977024 +24,4344.278884181038,1.8359728189422015,0.0,679.4434683045378,0.6723018330012565 +25,4356.507572628897,1.841140889455201,0.0,681.3560302540211,0.674194291997992 +26,4314.834620808611,1.8235291272118217,0.0,674.8383973685347,0.6677451659998042 +27,4362.184256020569,1.8435399611277865,0.0,682.2438612508175,0.6750727909966372 +28,4324.733023249692,1.8277123756443632,0.0,676.3865035248249,0.669277000000875 +29,4332.038357679215,1.8307997454480665,0.0,677.5290548881808,0.6704075419984292 +0,4337.254079439231,1.6712729288293031,0.0,680.5423366192922,0.6729385419967002 +1,4349.354222159726,1.6759354735161824,0.0,682.4409248157895,0.674815917001979 +2,4321.136396164294,1.665062306338787,0.0,678.0133711411542,0.6704378330032341 +3,4317.7016217057935,1.663738785635599,0.0,677.4744335108159,0.6699049169983482 +4,4333.543222965376,1.669843025518606,0.0,679.9600799911764,0.6723627910032519 +5,4299.8848105559455,1.656873438665505,0.0,674.6788642245937,0.6671405829983996 +6,4318.773143762031,1.6641516749366254,0.0,677.6425620341939,0.6700711669982411 +7,4333.700867206943,1.6699037705311166,0.0,679.9848153602708,0.672387250000611 +8,4369.361604669405,1.6836449127495607,0.0,685.5802084716212,0.6779201250028564 +9,4335.564883714424,1.6706220315024098,0.0,680.2772912277812,0.6726764579943847 +10,4336.533816837319,1.6709953902377943,0.0,680.4293229048299,0.6728267910002614 +11,4321.626234797135,1.665251055725281,0.0,678.0902298913345,0.670513832999859 +12,4339.109775214032,1.6719879835749474,0.0,680.8335069117186,0.6732264590027626 +13,4312.391545143513,1.66169265528538,0.0,676.6412492322067,0.6690810420041089 +14,4309.1270218457785,1.660434737415431,0.0,676.1290250755635,0.6685745409995434 +15,4323.7714316398615,1.6660776638382933,0.0,678.426824714953,0.6708466670024791 +16,4365.080891728177,1.6819954268020627,0.0,684.9085377938,0.6772559589953744 +17,4305.991145670247,1.6592263911059144,0.0,675.6369864583284,0.6680879999985336 +18,4317.303357089854,1.6635853224400057,0.0,677.4119432975704,0.6698431249969872 +19,4307.279659793664,1.6597228939008717,0.0,675.839162396435,0.6682879169966327 +20,4303.975665866741,1.658449766824167,0.0,675.3207450508007,0.6677752920004423 +21,4316.510856167055,1.663279948276056,0.0,677.28759493801,0.6697201659990242 +22,4338.901909588244,1.671907886770183,0.0,680.8008914928187,0.6731942080004956 +23,4350.208217166831,1.676264543178828,0.0,682.5749219824187,0.6749484169995412 +24,4352.857748036645,1.6772854861846365,0.0,682.990649974384,0.6753595000045607 +25,4318.728297755329,1.6641343944371212,0.0,677.6355254147958,0.6700642089999747 +26,4307.455557011805,1.6597906723278557,0.0,675.8667617719028,0.668315208000422 +27,4315.44094543445,1.6628676798659248,0.0,677.1197192414046,0.6695541660010349 +28,4303.342420509143,1.6582057585636232,0.0,675.2213848871073,0.6676770420017419 +29,4297.0886503610045,1.6557959950219268,0.0,674.2401291729286,0.6667067499947734 +0,4332.58371365921,2.4060626871073127,0.0,676.5046255250061,0.6693673330009915 +1,4331.503324019295,2.405462702116385,0.0,676.3359297450568,0.6692004170035943 +2,4350.059072645651,2.415767475746139,0.0,679.2332885972894,0.6720672079973156 +3,4322.327526661576,2.40036700285101,0.0,674.9031889682756,0.6677827919993433 +4,4326.0145062339625,2.402414534892752,0.0,675.4788867273454,0.6683524160034722 +5,4362.596876971952,2.422730236343853,0.0,681.1909847853467,0.6740042500023264 +6,4325.22430505349,2.401975703539154,0.0,675.3555019784254,0.6682303329944261 +7,4311.28678919562,2.394235625314961,0.0,673.1792499843899,0.6660770410016994 +8,4307.970640987334,2.392394031246341,0.0,672.6614551187628,0.6655647090010461 +9,4337.06737992598,2.4085526521764025,0.0,677.2047207035985,0.6700600420008413 +10,4329.655918280066,2.4044367614050497,0.0,676.0474694150532,0.6689150000020163 +11,4323.590231617601,2.4010682350672363,0.0,675.1003520930714,0.6679778750039986 +12,4320.7654549478775,2.3994995199093494,0.0,674.6592816811788,0.6675414579949575 +13,4324.107234857322,2.401355348320302,0.0,675.1810787693915,0.6680577499937499 +14,4306.829829097011,2.3917604912841095,0.0,672.4833247993821,0.6653884580009617 +15,4319.394604970456,2.3987382302959728,0.0,674.4452324182178,0.6673296670051059 +16,4329.7395190654615,2.404483188374186,0.0,676.0605231312086,0.6689279159982107 +17,4354.7628092046925,2.4183796549382017,0.0,679.9677463134577,0.6727939170013997 +18,4322.831856512374,2.400647078047751,0.0,674.9819367777593,0.6678607089997968 +19,4306.705502315277,2.39169144748708,0.0,672.4639119851174,0.6653692499967292 +20,4329.030226168632,2.404089288732291,0.0,675.9497716818959,0.6688183330043103 +21,4307.017270725094,2.391864585362181,0.0,672.5125925843332,0.6654174170034821 +22,4293.861327863387,2.384558546904464,0.0,670.4583781046385,0.6633848749988829 +23,4309.194775380104,2.393073843635692,0.0,672.8525957022355,0.6657538330036914 +24,4354.490420446147,2.41822838620997,0.0,679.9252145893698,0.6727518339976086 +25,4275.350887789215,2.374278934985141,0.0,667.5680938866554,0.6605250840002554 +26,4311.080207926462,2.3941209022036656,0.0,673.1469936695974,0.6660451249990729 +27,4308.664024143173,2.3927790955519357,0.0,672.7697223660192,0.6656718340018415 +28,4313.886103787923,2.3956791320688815,0.0,673.5851159667005,0.666478624996671 +29,4302.407659547652,2.389304677882228,0.0,671.7928319312199,0.6647052500047721 +0,4335.519852132827,1.998426580480376,0.0,678.132752976341,0.6699371249997057 +1,4331.921408259013,1.9967679037516195,0.0,677.5699086730496,0.6693810829965514 +2,4350.730917348134,2.0054380111923673,0.0,680.5119651312767,0.6722875829946133 +3,4328.056822657964,1.9949865509148013,0.0,676.9654362770892,0.6687839160003932 +4,4355.864195195424,2.007804158562208,0.0,681.3148778054425,0.6730807920030202 +5,4351.232732949868,2.0056693194716986,0.0,680.5904557407297,0.6723651249994873 +6,4442.778222222504,2.0478665519432595,0.0,694.9093832927462,0.6865109999998822 +7,4341.772161436582,2.001308537322498,0.0,679.1106969981009,0.670903250000265 +8,4327.920383360535,1.9949236602055196,0.0,676.944095363073,0.6687628330037114 +9,4344.395287088693,2.0025176481571627,0.0,679.5209886079973,0.6713085829978809 +10,4319.72068635306,1.9911440690583215,0.0,675.6615541004571,0.667495791996771 +11,4319.176805846711,1.9908933712648476,0.0,675.5764839825382,0.6674117500006105 +12,4344.049066553329,2.0023580603005326,0.0,679.4668351286475,0.6712550839947653 +13,4320.446844110383,1.9914787862348884,0.0,675.7751347957055,0.6676080000033835 +14,4331.440896987593,1.9965464155495631,0.0,677.4947503431518,0.6693068329987 +15,4331.623180642343,1.9966304378844304,0.0,677.5232619221168,0.6693349999986822 +16,4319.566443896243,1.99107297211123,0.0,675.6374285364107,0.667471958004171 +17,4338.182887724405,1.999654087513554,0.0,678.5492870295993,0.670348624997132 +18,4322.328979303685,1.9923463428663044,0.0,676.0695256792993,0.6678988330022548 +19,4331.732931351392,1.9966810266815465,0.0,677.5404283872713,0.6693519589971402 +20,4317.770056454693,1.9902449402870257,0.0,675.3564497373974,0.6671943749970524 +21,4342.2680426204615,2.0015371101747563,0.0,679.1882593859673,0.6709798750016489 +22,4325.429652267266,1.993775575687081,0.0,676.5545120164828,0.6683779579980182 +23,4327.734863914915,1.994838146356208,0.0,676.9150776635399,0.668734165999922 +24,4362.47593988768,2.0108517945521234,0.0,682.3490422846872,0.6741024580041994 +25,4339.640872229763,2.000326134947036,0.0,678.7773351253609,0.6705739169992739 +26,4327.754822133625,1.9948473459530565,0.0,676.9181993934038,0.6687372500018682 +27,4321.052204219479,1.9917578226074668,0.0,675.8698211381337,0.6677015420063981 +28,4374.789111129667,2.0165274619551656,0.0,684.2749854234528,0.6760051250021206 +29,4340.623729721767,2.000779176013352,0.0,678.9310670605307,0.6707257909947657 +0,4360.146666135477,1.7462616426803412,0.0,679.4301068213205,0.674253207995207 +1,4376.520182243895,1.7528193218882475,0.0,681.9815484700583,0.6767852090051747 +2,4337.145668188113,1.73704962218323,0.0,675.845922230983,0.6706963329997961 +3,4341.215338897163,1.7386795466792917,0.0,676.4800882387582,0.6713256669972907 +4,4308.598732289321,1.725616424404978,0.0,671.3975288184906,0.6662818339973455 +5,4348.292258162062,1.7415138900183866,0.0,677.5828658240769,0.6724200419994304 +6,4311.747709970245,1.726877606507076,0.0,671.8882256702146,0.6667687919980381 +7,4306.280975347587,1.7246881505751448,0.0,671.0363588930063,0.6659234159960761 +8,4323.279866387675,1.7314962957281423,0.0,673.6852510609957,0.6685521250037709 +9,4294.274601565868,1.719879534808721,0.0,669.165437466347,0.6640667500032578 +10,4344.090293075072,1.7398309809290466,0.0,676.9280847337783,0.6717702499954612 +11,4335.575899967733,1.73642092176532,0.0,675.6013094068453,0.6704535839962773 +12,4343.066140409669,1.7394208024069042,0.0,676.7684937364709,0.6716118749973248 +13,4311.251661161372,1.726678936353487,0.0,671.8109276981489,0.6666920829957235 +14,4342.320861210378,1.7391223141727998,0.0,676.6523588527709,0.6714966250001453 +15,4308.135288271203,1.7254308126413518,0.0,671.3253115646121,0.6662101670008269 +16,4318.364153378066,1.7295275268466326,0.0,672.9192485223283,0.6677919590001693 +17,4313.870918315717,1.7277279626021849,0.0,672.2190796032193,0.6670971249986906 +18,4316.866585143321,1.72892774290222,0.0,672.6858864307253,0.6675603750045411 +19,4300.695700981408,1.7224512188532706,0.0,670.1660203815263,0.6650597090047086 +20,4352.139903565255,1.7430548922132016,0.0,678.1824342164904,0.6730150419971324 +21,4306.033090002182,1.724588871192223,0.0,670.9977315761741,0.6658850829990115 +22,4321.644617054854,1.730841369780742,0.0,673.4304344885379,0.6682992499991087 +23,4323.045722596532,1.7314025199098837,0.0,673.6487650541686,0.6685159170010593 +24,4336.681422280947,1.7368636892588285,0.0,675.773580020858,0.6706245419991319 +25,4337.414039838985,1.737157106439102,0.0,675.8877418745368,0.6707378339997376 +26,4315.615557161916,1.7284266996242923,0.0,672.4909420538208,0.6673669160009013 +27,4331.95646847958,1.734971320442236,0.0,675.0373029843714,0.6698938750050729 +28,4351.439890797971,1.742774533422891,0.0,678.0733530809987,0.6729067920023226 +29,4318.289787120437,1.7294977427698228,0.0,672.9076602253664,0.6677804589999141 +0,4306.9700341748585,3.2740683024669837,0.0,675.961469018515,0.6680991670000367 +1,4306.272460180176,3.273538021344409,0.0,675.851987610831,0.6679909590020543 +2,4303.185336778297,3.2711912548715305,0.0,675.3674761205681,0.6675120830041124 +3,4282.719525688505,3.2556335744507976,0.0,672.1554501210509,0.6643374170016614 +4,4316.036910381311,3.2809607516259955,0.0,677.3844784453956,0.6695056249955087 +5,4294.130818640494,3.264308200057156,0.0,673.9464062424126,0.666107541997917 +6,4276.059379047963,3.250570670638476,0.0,671.1101671329417,0.6633042920002481 +7,4292.520779546339,3.263084282100431,0.0,673.6937171401839,0.6658577919952222 +8,4286.785178957942,3.258724198809143,0.0,672.7935379031162,0.6649680830014404 +9,4294.796694704344,3.2648143850774196,0.0,674.050912788484,0.6662108329983312 +10,4305.607112738036,3.273032238171285,0.0,675.747564029792,0.6678877500016824 +11,4299.216376065424,3.268174134167034,0.0,674.7445638428734,0.6668964159980533 +12,4295.916256904463,3.2656654527846394,0.0,674.2266235325675,0.6663845000002766 +13,4295.478158682667,3.2653324197033857,0.0,674.1578657944755,0.6663165420031874 +14,4319.8312777558685,3.283845150135942,0.0,677.979989007148,0.6700942090028548 +15,4265.151726937065,3.242278902238125,0.0,669.3982553977958,0.6616122920022462 +16,4276.686846265034,3.2510476580588543,0.0,671.2086455663755,0.6634016250027344 +17,4299.618753671808,3.268480013185516,0.0,674.8077153753321,0.6669588329968974 +18,4303.942006740275,3.2717664595091955,0.0,675.4862324005056,0.6676294579956448 +19,4289.792248441328,3.261010109971921,0.0,673.2654852557334,0.6654345409988309 +20,4275.650013315842,3.2502594793933506,0.0,671.0459188425068,0.6632407910001348 +21,4326.895677929745,3.2892153590070743,0.0,679.0887179468381,0.671190041997761 +22,4278.935099028814,3.252756732663836,0.0,671.5614997141571,0.6637503750025644 +23,4290.464042488559,3.2615207937190505,0.0,673.3709206052811,0.6655387499995413 +24,4292.318246650916,3.2629303208404616,0.0,673.6619304241333,0.6658263749995967 +25,4290.3651902754345,3.2614456483395724,0.0,673.3554061515772,0.665523415998905 +26,4293.871607225367,3.2641111529750617,0.0,673.9057240626983,0.666067333004321 +27,4303.54044143831,3.271461197987499,0.0,675.4232083559292,0.6675671670018346 +28,4328.639477548016,3.2905409589092636,0.0,679.3624002205217,0.6714605409943033 +29,4325.602321796796,3.2882321767965896,0.0,678.8857309502592,0.6709894160012482 +0,4320.924762932058,2.122261671381168,0.0,672.4585067802923,0.6650683330008178 +1,4363.123080914601,2.1429877607635563,0.0,679.02576250819,0.6715634160063928 +2,4327.156975276962,2.1253226794091167,0.0,673.4284158708981,0.6660275829999591 +3,4347.934264917428,2.135527635028206,0.0,676.6619517302655,0.6692255829984788 +4,4332.3764799353785,2.127886286805196,0.0,674.240718908165,0.6668309590022545 +5,4390.517534470866,2.156442796891388,0.0,683.2891168462572,0.6757799170009093 +6,4337.391050866111,2.1303492391287384,0.0,675.0211284420576,0.6676027920038905 +7,4379.535229594067,2.1510487375216436,0.0,681.5799585656471,0.6740895420007291 +8,4320.354654382489,2.121981657358786,0.0,672.3697817121691,0.6649805830020341 +9,4334.729459259929,2.1290419740962325,0.0,674.6069092608984,0.6671931250020862 +10,4321.864392740979,2.122723179145864,0.0,672.6047398421715,0.6652129589929245 +11,4304.5036873830795,2.1141963101095675,0.0,669.9029214486237,0.6625408330000937 +12,4397.448443280274,2.1598469760708614,0.0,684.3677629334532,0.6768467090005288 +13,4350.5823233644705,2.1368282531259677,0.0,677.0740647678359,0.6696331670027575 +14,4373.997373752413,2.148328769033602,0.0,680.7181110505064,0.6732371660036733 +15,4336.534530164131,2.1299285511611643,0.0,674.8878295155821,0.6674709580038325 +16,4371.149813040921,2.1469301635760907,0.0,680.2749497993678,0.672798874998989 +17,4331.039996031363,2.12722986052621,0.0,674.0327240876721,0.6666252499999246 +18,4336.601936154941,2.1299616582293424,0.0,674.898319800513,0.6674813330027973 +19,4337.85774723738,2.13057846131502,0.0,675.0937596407389,0.6676746250013821 +20,4342.8300943901495,2.133020675044278,0.0,675.867597956608,0.6684399590012617 +21,4362.689415028865,2.1427747618019968,0.0,678.9582717903546,0.6714966669969726 +22,4363.723783617067,2.143282801383628,0.0,679.1192488946655,0.6716558749976684 +23,4339.90347863414,2.13158324097944,0.0,675.4121334972198,0.6679894999979297 +24,4331.40653525436,2.127409889614126,0.0,674.0897679919509,0.6666816670040134 +25,4305.61412893217,2.114741713620909,0.0,670.0757376643502,0.6627117500029271 +26,4324.218996366075,2.123879664226952,0.0,672.971182982162,0.6655753750019358 +27,4345.929958171694,2.1345432014595747,0.0,676.3500247249799,0.668917084003624 +28,4327.372193657241,2.1254283858827314,0.0,673.4619099580611,0.6660607089943369 +29,4344.687680248395,2.133933045308642,0.0,676.156691028343,0.6687258750025649 +0,4353.084240621755,2.637625824582901,0.0,679.0717929897675,0.670468541997252 +1,4332.421267595777,2.625105692131204,0.0,675.8484135728678,0.6672860000035143 +2,4335.358896530846,2.626885663644247,0.0,676.3066773779789,0.6677384580034413 +3,4338.114732643894,2.6285554830408624,0.0,676.736581893267,0.6681629160011653 +4,4354.914069655388,2.638734556701761,0.0,679.3572423893306,0.6707503750003525 +5,4357.297665541364,2.640178827870592,0.0,679.7290782286072,0.6711175000018557 +6,4326.084755904008,2.621266265657437,0.0,674.8599313570456,0.6663100410005427 +7,4341.046148164207,2.630331689714468,0.0,677.1938764190198,0.6686144170016632 +8,4336.428558917761,2.6275337947116357,0.0,676.4735424131641,0.6679032090032706 +9,4354.3649060463395,2.6384018068542785,0.0,679.2715740456856,0.6706657920003636 +10,4335.853152182965,2.627185143599127,0.0,676.3837801982614,0.6678145839978242 +11,4372.535525682093,2.6494117696647135,0.0,682.1061516862102,0.6734644579992164 +12,4419.158622070723,2.6776616900106394,0.0,689.3792545965366,0.6806454170000507 +13,4335.447897087197,2.626939590964017,0.0,676.3205612736347,0.6677521660021739 +14,4310.8582578057985,2.6120402083652254,0.0,672.4846303536749,0.6639648330019554 +15,4337.461148529906,2.628159462600572,0.0,676.6346241751016,0.6680622499989113 +16,4335.320479781366,2.6268623861230855,0.0,676.3006844475625,0.6677325409982586 +17,4317.930056456083,2.616325160761087,0.0,673.5878157559462,0.6650540420014295 +18,4320.109128915894,2.617645506859607,0.0,673.927746379969,0.6653896659991005 +19,4342.576233281463,2.631258800653747,0.0,677.432566411349,0.6688500829986879 +20,4356.617299436268,2.6397665796553547,0.0,679.622942577345,0.6710127089972957 +21,4335.633215327314,2.627051879205843,0.0,676.3494705211094,0.6677807089945418 +22,4331.872370136237,2.6247731035493382,0.0,675.7627867479746,0.6672014579962706 +23,4324.020654363201,2.6200155828707845,0.0,674.5379359494796,0.6659921249956824 +24,4385.950055958006,2.6575399173238416,0.0,684.1987896006281,0.6755305840051733 +25,4361.60279842958,2.642787398956411,0.0,680.4006697136005,0.6717805830048746 +26,4343.981881268235,2.6321105125033792,0.0,677.65184447856,0.6690665830028593 +27,4388.285496167173,2.6589550099494295,0.0,684.5631132577398,0.675890291997348 +28,4358.332696369016,2.640805974943643,0.0,679.8905408149211,0.671276916997158 +29,4337.337789130145,2.6280847165307675,0.0,676.6153803736618,0.6680432499997551 +0,4328.158016331651,2.7312244206333096,0.0,676.4110431002591,0.668451958001242 +1,4334.646401208803,2.7353188264198067,0.0,677.4250576455297,0.6694540410026093 +2,4325.587210014652,2.729602148764488,0.0,676.0092736232832,0.6680549160009832 +3,4360.255437263628,2.7514790554128092,0.0,681.4272763088211,0.6734091670005 +4,4310.237390243219,2.7199158567081763,0.0,673.6103807076786,0.6656842499942286 +5,4324.015972503866,2.7286106410044018,0.0,675.7637182624072,0.6678122500015888 +6,4355.028841610339,2.748180884312962,0.0,680.6104560808247,0.6726019580019056 +7,4349.720506818349,2.7448311328570134,0.0,679.7808615373199,0.6717821249985718 +8,4328.917470040265,2.731703663421461,0.0,676.5297316678418,0.6685692500032019 +9,4332.216702283995,2.733785598424623,0.0,677.0453406439907,0.6690787919942522 +10,4341.451525095314,2.7396131059895783,0.0,678.4885726394677,0.6705050419986947 +11,4332.847460956902,2.734183629985502,0.0,677.1439165578728,0.669176208000863 +12,4316.08098544846,2.7236033768653947,0.0,674.5236265534444,0.6665867500050808 +13,4342.591910005906,2.740332730158793,0.0,678.666793708107,0.6706811660042149 +14,4315.333944096332,2.7231319667236074,0.0,674.4068778075979,0.6664713749996736 +15,4370.477409976234,2.757929490307832,0.0,683.0247815752616,0.6749878749978961 +16,4349.2025150189165,2.744504261276318,0.0,679.6999089999935,0.6717021250005928 +17,4315.7405158809825,2.7233885282407213,0.0,674.4704174574704,0.6665341670013731 +18,4347.401949576058,2.743368039287674,0.0,679.4185139250498,0.6714240410001366 +19,4323.488805727205,2.728277979680871,0.0,675.681331845843,0.6677308329963125 +20,4336.425113847005,2.7364412584974755,0.0,677.7030375313017,0.6697287499991944 +21,4320.766383231861,2.7265600325138526,0.0,675.2558675645283,0.6673103749999427 +22,4309.050327862111,2.7191667773649857,0.0,673.4248648137577,0.665500916999008 +23,4325.1010552712505,2.7292953675188927,0.0,675.9332966289472,0.6679798330005724 +24,4330.763890676833,2.7328688216976436,0.0,676.8182930614116,0.6688544159987941 +25,4347.089270269873,2.7431707273240953,0.0,679.3696479328992,0.6713757499965141 +26,4289.83201579061,2.707039326598407,0.0,670.4213981043957,0.6625327910005581 +27,4326.16779467973,2.729968518709745,0.0,676.1000082677745,0.6681445830035955 +28,4305.426541304698,2.716880036838549,0.0,672.8585340014299,0.664941249997355 +29,4350.9766369649515,2.74562379646101,0.0,679.9771714454902,0.6719761249987641 +0,4353.464654492353,2.3507916581642525,0.0,678.0690624284917,0.672032708003826 +1,4322.178623623377,2.3338977710603417,0.0,673.1961413639908,0.6672031670022989 +2,4308.806564758945,2.3266771027132243,0.0,671.1133911554673,0.6651389580001705 +3,4329.00892253956,2.337586008128803,0.0,674.259987001838,0.6682575419981731 +4,4313.097194156805,2.3289939644767292,0.0,671.7816733821377,0.6658012909974786 +5,4307.196230500553,2.32580755152999,0.0,670.8625753277432,0.6648903750028694 +6,4312.2739435066915,2.328549424113029,0.0,671.6534488895167,0.6656742079940159 +7,4308.588740160131,2.326559481395384,0.0,671.0794641264886,0.6651053329987917 +8,4332.389657399854,2.3394115434067433,0.0,674.7865496132222,0.6687794170065899 +9,4332.896293071482,2.3396851174460696,0.0,674.8654600907656,0.6688576250016922 +10,4311.020984104871,2.327872848846298,0.0,671.4582955865086,0.6654807919985615 +11,4333.292529765019,2.3398990780470506,0.0,674.9271754978284,0.668918791001488 +12,4317.959518357646,2.3316195310260825,0.0,672.5389992992519,0.6665518749941839 +13,4309.7439910973,2.3271832958699954,0.0,671.2593989558725,0.6652836659995955 +14,4308.1566021194085,2.32632613472051,0.0,671.0121569448831,0.6650386250039446 +15,4323.842673920811,2.334796327926753,0.0,673.455323673844,0.6674600420010393 +16,4345.2010924016,2.3463294850742247,0.0,676.7819804733381,0.6707570840007975 +17,4312.708782941311,2.328784229491428,0.0,671.7211768237346,0.6657413329958217 +18,4362.202202827167,2.3555097751971066,0.0,679.4299695857825,0.6733814999970491 +19,4298.580689789388,2.321155316392746,0.0,669.5206713326561,0.6635604170005536 +20,4321.771043837531,2.333677685396016,0.0,673.1326592261566,0.6671402499996475 +21,4337.920834248338,2.342398278209294,0.0,675.648051933198,0.669633249999606 +22,4309.553970309887,2.3270806881041395,0.0,671.2298024787241,0.6652543329983018 +23,4353.594222040798,2.3508616222816228,0.0,678.0892430784035,0.6720527090001269 +24,4314.440315154614,2.329719225363893,0.0,671.9908697046053,0.6660086249976302 +25,4333.70659406514,2.340122665231034,0.0,674.9916676239972,0.6689827090012841 +26,4298.66031800894,2.3211983141816632,0.0,669.5330737377424,0.663572708996071 +27,4316.782941665989,2.330984201032285,0.0,672.3557429006124,0.6663702499936335 +28,4306.816182421227,2.325602332485967,0.0,670.8033813603453,0.6648317079961998 +29,4298.143686713266,2.320919342687324,0.0,669.4526064028538,0.6634929580031894 +0,4308.102054212148,2.0179548584554863,0.0,674.2615725416347,0.6664996249965043 +1,4344.50494244896,2.0350063080857157,0.0,679.9589929738206,0.6721314580063336 +2,4319.220014694317,2.0231626140027745,0.0,676.001645878763,0.6682196670008125 +3,4342.779386586689,2.034198041755905,0.0,679.6889260175222,0.6718645000000834 +4,4358.305097047724,2.041470428171447,0.0,682.1188568359087,0.6742664580015116 +5,4324.487989408787,2.025630182095525,0.0,676.8261372372293,0.6690346670002327 +6,4340.905163996958,2.0333201385555677,0.0,679.3955912137636,0.6715745420005987 +7,4337.0403644270955,2.031509830681979,0.0,678.790710966559,0.6709766249987297 +8,4334.736300974539,2.0304305860448357,0.0,678.4301017174728,0.6706201670021983 +9,4334.920518487179,2.0305168752320384,0.0,678.4589336226132,0.6706486670009326 +10,4317.022596966058,2.022133323209521,0.0,675.65772776486,0.6678797079948708 +11,4347.010998783234,2.036180168057386,0.0,680.3512161532072,0.6725191660007113 +12,4366.1669320433575,2.0451529844169056,0.0,683.349313580088,0.6754827500044485 +13,4347.248548893261,2.0362914387266096,0.0,680.3883951496025,0.6725559170008637 +14,4326.125204851408,2.0263970689554927,0.0,677.0823780237844,0.6692879580004956 +15,4358.840782194303,2.0417213480499776,0.0,682.202696982863,0.6743493329995545 +16,4334.38913819706,2.0302679717880996,0.0,678.375767229263,0.670566458000394 +17,4330.465634670958,2.0284301664383113,0.0,677.7616992187814,0.6699594590027118 +18,4379.153194256296,2.051235869779418,0.0,685.3817950466246,0.6774918340015574 +19,4314.435206996932,2.0209213658108305,0.0,675.2527750484647,0.6674794170030509 +20,4373.092592960674,2.0483970280630976,0.0,684.4332496062632,0.6765542080029263 +21,4335.565279828449,2.0308188874092776,0.0,678.5598452979655,0.6707484170037787 +22,4330.130862970415,2.028273356276648,0.0,677.7093040595188,0.6699076670047361 +23,4393.075074651345,2.0577570073542715,0.0,687.5607102277829,0.6796456660013064 +24,4334.660616646641,2.0303951348054574,0.0,678.4182563541775,0.6706084580000606 +25,4339.30403576525,2.0325701552790507,0.0,679.1449984409445,0.6713268339954084 +26,4347.693469734016,2.03649984376459,0.0,680.4580297640961,0.6726247499973397 +27,4356.369468620447,2.0405637619087087,0.0,681.8159113971033,0.6739670000024489 +28,4323.658474035085,2.025241629420249,0.0,676.6963096859594,0.6689063339945278 +29,4328.590054650415,2.027551627404823,0.0,677.4681519633624,0.6696692909972626 +0,4352.7108654247895,2.3953832925224128,0.0,679.8896245276115,0.6702598330011824 +1,4353.83081882286,2.3959996251346825,0.0,680.0645602673941,0.6704322909936309 +2,4377.667829614132,2.4091176058961996,0.0,683.7878804735379,0.6741028749966063 +3,4357.276732033212,2.3978959796564423,0.0,680.6028088924868,0.670962915995915 +4,4340.29989561195,2.388553289185912,0.0,677.9510419139347,0.668348708000849 +5,4348.967036986012,2.393322989329855,0.0,679.3048418047905,0.6696833329988294 +6,4353.057758863061,2.3955741948754548,0.0,679.9438089788166,0.6703132499969797 +7,4404.514293989114,2.423891748772987,0.0,687.9812746933994,0.6782368749991292 +8,4363.9182706841275,2.4015509503661705,0.0,681.6402114122646,0.6719856249983422 +9,4372.756154061854,2.4064146132279585,0.0,683.0206810545355,0.6733465420038556 +10,4366.575966764367,2.403013533336654,0.0,682.0553412120536,0.6723948750004638 +11,4337.917119292063,2.387242000023148,0.0,677.5788543399035,0.6679817920012283 +12,4356.767493437678,2.397615735537004,0.0,680.5232662699196,0.6708844999957364 +13,4341.809499462903,2.389384054186092,0.0,678.1868407131525,0.6685811670031399 +14,4342.835561736078,2.3899487166463933,0.0,678.347110741468,0.6687391670056968 +15,4348.181800656283,2.392890858172268,0.0,679.1821885778954,0.669562417002453 +16,4345.98843020928,2.391683802825496,0.0,678.8395860353032,0.6692246669990709 +17,4366.479640299335,2.40296052296861,0.0,682.0402951025904,0.6723800420004409 +18,4350.7699517836645,2.394315169173097,0.0,679.5864555169641,0.6699609580027754 +19,4411.281921417619,2.427616108642839,0.0,689.0383721697925,0.6792790000035893 +20,4375.239322141577,2.407781149971288,0.0,683.4085497335172,0.6737289170050644 +21,4362.198694264533,2.4006046332885917,0.0,681.3716150817453,0.671720833001018 +22,4342.44320978076,2.3897327975680045,0.0,678.2858257097186,0.6686787500002538 +23,4367.802533259263,2.403688537254874,0.0,682.2469298241751,0.6725837499980116 +24,4349.043075958734,2.3933648350876986,0.0,679.3167190257251,0.6696950419936911 +25,4371.508209059654,2.4057278442923047,0.0,682.8257531382991,0.6731543749992852 +26,4381.123756678903,2.4110194712410555,0.0,684.3276932539196,0.6746350419998635 +27,4348.70917070194,2.393181080389043,0.0,679.26456331709,0.6696436250058468 +28,4380.730593006541,2.4108031054586454,0.0,684.2662814326789,0.6745745000007446 +29,4360.594393997713,2.3997217549688177,0.0,681.1210247853162,0.67147379200469 +0,4341.410025777803,1.666030925067465,0.0,679.107525676,0.6718005000002449 +1,4367.231961158753,1.675940180962282,0.0,683.1467365638454,0.6757962499978021 +2,4357.841358687681,1.672336505191294,0.0,681.6778062460752,0.6743431249997229 +3,4336.2977704592595,1.6640690796285496,0.0,678.3078382381893,0.6710094169975491 +4,4330.561891962218,1.6618679166649597,0.0,677.4106001909709,0.6701218330053962 +5,4345.360137259517,1.6675467938398043,0.0,679.7254241049811,0.6724117499979911 +6,4331.24017376044,1.662128209621634,0.0,677.5167008059705,0.6702267920045415 +7,4372.229509783031,1.6778580073155032,0.0,683.9284809419454,0.6765695830035838 +8,4413.244701656469,1.693597727280443,0.0,690.3443055940542,0.6829163750007865 +9,4355.566611436066,1.6714635631643024,0.0,681.321977617033,0.6739911249969737 +10,4329.558075685815,1.6614826987404503,0.0,677.2535776605824,0.6699664999978268 +11,4307.3984058292945,1.6529788497487543,0.0,673.7872387345873,0.6665374580043135 +12,4349.584627244564,1.6691679562999129,0.0,680.3862423469704,0.6730654580023838 +13,4322.219269336075,1.6586664067387389,0.0,676.1056007148447,0.6688308749944554 +14,4338.644411338892,1.664969611080838,0.0,678.6749128687712,0.6713725419976981 +15,4346.0117554069775,1.6677968545294328,0.0,679.8273538432874,0.6725125829980243 +16,4338.894013142475,1.6650653966254547,0.0,678.7139569724678,0.6714111659966875 +17,4384.87391196579,1.6827103398388967,0.0,685.906388725131,0.6785262089979369 +18,4330.257625097203,1.6617511532163156,0.0,677.3630050740345,0.6700747499999125 +19,4340.413744610087,1.6656485987666498,0.0,678.9516818292618,0.671646332993987 +20,4355.47829694734,1.671429672177624,0.0,681.3081629730431,0.6739774589950684 +21,4338.841241614819,1.665045145371481,0.0,678.705702156323,0.6714030000002822 +22,4338.363564088581,1.6648618349893247,0.0,678.6309811783485,0.6713290830011829 +23,4310.190141028523,1.6540501876663658,0.0,674.223937496564,0.6669694579977659 +24,4382.855765271754,1.681935869152271,0.0,685.5906989838487,0.67821391599864 +25,4310.463983130146,1.6541552755081452,0.0,674.2667734026302,0.6670118330002879 +26,4321.599426595342,1.6584285399699683,0.0,676.0086414625586,0.6687349589992664 +27,4334.978371818408,1.6635627558938415,0.0,678.1014505574477,0.6708052499961923 +28,4321.7230125999195,1.6584759665213211,0.0,676.027973473421,0.6687540830025682 +29,4338.666215306751,1.664977978427974,0.0,678.6783235668107,0.671375915997487 +0,4381.29948951487,2.600731801511087,0.0,683.9924637974159,0.6714257500061649 +1,4400.073518702976,2.6118760327760016,0.0,686.9233966200884,0.6743028339988086 +2,4355.236083613629,2.5852606088329178,0.0,679.9235401230574,0.6674315830023261 +3,4363.5371661848485,2.5901881170942467,0.0,681.2194747957868,0.6687037079973379 +4,4402.796495691147,2.6134923872080296,0.0,687.3484978357118,0.6747201250036596 +5,4393.989697118286,2.608264686802532,0.0,685.9736126290659,0.6733705000006012 +6,4382.0719297905825,2.601190320723166,0.0,684.1130543501927,0.6715441249980358 +7,4393.514709116215,2.6079827347457782,0.0,685.8994592381397,0.6732977089995984 +8,4339.11135991412,2.5756890007252657,0.0,677.4062071907449,0.6649604999984149 +9,4351.736039827353,2.5831829888931184,0.0,679.3771260788902,0.6668952079999144 +10,4365.224521738429,2.5911897284333376,0.0,681.4828985779678,0.6689622920021066 +11,4345.4613577784085,2.5794583484780738,0.0,678.3975456497334,0.6659336250013439 +12,4352.842911748336,2.5838400261515817,0.0,679.549926877866,0.6670648340004846 +13,4420.416885651397,2.6239518202219827,0.0,690.0993287183815,0.6774204159955843 +14,4385.0499442231985,2.602958064941245,0.0,684.5779710795474,0.6720005000024685 +15,4388.3607523474075,2.6049233549192388,0.0,685.0948423437598,0.6725078750023386 +16,4451.046149645221,2.642133298369334,0.0,694.8810574711348,0.6821142920016428 +17,4374.316798559101,2.596586888233131,0.0,682.9023516053135,0.6703556659995229 +18,4405.877284583328,2.6153211381676047,0.0,687.82945933808,0.6751922499970533 +19,4340.023279976311,2.576230314897431,0.0,677.5485728180244,0.6651002500002505 +20,4380.374792758805,2.6001829031155292,0.0,683.8481035193842,0.6712840420004795 +21,4370.903489972564,2.5945607541579276,0.0,682.369478343535,0.6698325830002432 +22,4392.603872271309,2.607442063569521,0.0,685.7572627187839,0.6731581249987357 +23,4366.222628815973,2.5917822030687954,0.0,681.6387194070932,0.6691152499988675 +24,4370.563903371487,2.594359176138689,0.0,682.3164633244752,0.669780542004446 +25,4383.400657668101,2.60197905129383,0.0,684.3204904902774,0.6717477499987581 +26,4382.203800990482,2.6012685992394147,0.0,684.133641599966,0.671564334006689 +27,4372.392089374062,2.5954443841888013,0.0,682.6018730416548,0.6700607080056216 +28,4435.942371839525,2.633167721978988,0.0,692.5231108804737,0.6797996669993154 +29,4355.406017212526,2.5853614811234005,0.0,679.9500695354543,0.6674576250006794 +0,4283.3499819657045,2.236719106547085,0.0,669.8973724108519,0.6611663750009029 +1,4354.354070461016,2.273796674817034,0.0,681.0021041077019,0.6721263750005164 +2,4351.848520178659,2.272488303515937,0.0,680.610246903023,0.6717396250023739 +3,4328.059831224237,2.260066107027654,0.0,676.8897990547823,0.6680676670002867 +4,4315.003002082361,2.253247971844791,0.0,674.8477675675149,0.6660522499951185 +5,4358.046529242934,2.2757248369196947,0.0,681.5795886574485,0.6726963330002036 +6,4350.052362914657,2.271550369588597,0.0,680.3293356917849,0.6714623750012834 +7,4340.672340582663,2.266652223217615,0.0,678.8623408536757,0.6700144999995246 +8,4353.515107894238,2.273358577624256,0.0,680.8708939984646,0.6719968749966938 +9,4317.517188213443,2.2545608526928382,0.0,675.240975381505,0.6664403329996276 +10,4331.806281607474,2.262022462961491,0.0,677.4757276569665,0.6686459589982405 +11,4351.441730208922,2.2722758821864883,0.0,680.5466267148533,0.6716768339974806 +12,4334.966961231463,2.2636729357303316,0.0,677.9700442512343,0.669133832998341 +13,4355.266460061378,2.2742731148138446,0.0,681.1447978867466,0.6722672090036212 +14,4347.783542605086,2.2703656161229437,0.0,679.9745020288217,0.6711121660046047 +15,4341.417365203267,2.267041267029297,0.0,678.9788594752746,0.6701294999948004 +16,4327.848743038593,2.25995587905656,0.0,676.8567857774398,0.6680350839960738 +17,4328.111386921063,2.2600930288558088,0.0,676.8978621423148,0.6680756249988917 +18,4333.722828373225,2.26302326298661,0.0,677.7754672644896,0.6689417919988045 +19,4354.176184478048,2.2737037846776422,0.0,680.9742835109538,0.672098916998948 +20,4340.957659112539,2.2668012134728857,0.0,678.9069634351292,0.6700585409998894 +21,4334.183065746333,2.2632635939729435,0.0,677.8474463948966,0.6690128330010339 +22,4320.460845419451,2.256097998698541,0.0,675.701350610213,0.6668947080033831 +23,4370.406384533997,2.28217901988398,0.0,683.5126164552521,0.6746041669975966 +24,4334.259997612679,2.2633037669627956,0.0,677.8594782053573,0.6690247079968685 +25,4396.485480096635,2.295797241969968,0.0,687.5912739700054,0.6786296659993241 +26,4326.788696060417,2.259402333971544,0.0,676.6909990244774,0.6678714579975349 +27,4346.266231851323,2.2695732928321086,0.0,679.7372012032165,0.6708779580003466 +28,4339.988323733827,2.2662950370055537,0.0,678.7553635831633,0.6699089169997023 +29,4352.242897344365,2.2726942430131607,0.0,680.6719257824416,0.6718005000002449 +0,4376.001665088288,2.2623197237682313,0.0,682.9504288497948,0.6767099999997299 +1,4340.0221316597135,2.243718906319548,0.0,677.3352029734206,0.6711460829974385 +2,4352.921083830012,2.250387449008556,0.0,679.3483066215978,0.6731407920015045 +3,4311.881985633929,2.2291709211366935,0.0,672.9434485210561,0.6667944580040057 +4,4320.059251958274,2.233398431157922,0.0,674.2196517701512,0.668059000003268 +5,4332.888416674965,2.2400308948997876,0.0,676.2218638842254,0.6700429169941344 +6,4294.391222528854,2.2201284889383572,0.0,670.2137136905554,0.6640896660028375 +7,4321.464117222783,2.2341247230198498,0.0,674.4389051910371,0.6682762500058743 +8,4327.73185317039,2.2373650377507075,0.0,675.4170933365046,0.669245500001125 +9,4296.662073182334,2.2213024807729775,0.0,670.5681190464813,0.6644408329957514 +10,4324.375696369258,2.235629960776712,0.0,674.8933072637279,0.668726500000048 +11,4311.0785190886545,2.228755542361301,0.0,672.8180537283532,0.6666702090005856 +12,4301.585031417103,2.223847567901865,0.0,671.3364314684048,0.6652021249974496 +13,4296.694942863466,2.221319473848765,0.0,670.5732489263451,0.6644459160015685 +14,4307.192096009969,2.2267463265842675,0.0,672.2115104700507,0.6660692080040462 +15,4301.5041991205335,2.223805778955507,0.0,671.3238161963295,0.6651896249968559 +16,4314.744528705827,2.2306508080625504,0.0,673.3901976697484,0.6672371250024298 +17,4341.56091338671,2.2445144307544065,0.0,677.5753563647556,0.6713840419979533 +18,4349.3811661156815,2.248557370713674,0.0,678.7958414933547,0.6725933749985415 +19,4322.11589055874,2.2344616789413076,0.0,674.5406256457744,0.6683770409945282 +20,4319.487496049773,2.2331028429091098,0.0,674.1304194131292,0.6679705830028979 +21,4295.04139223966,2.2204646158124137,0.0,670.3151838719684,0.664190209005028 +22,4293.075815956662,2.2194484457252144,0.0,670.008421839376,0.6638862499967217 +23,4324.780937757176,2.2358394638013768,0.0,674.9565521618902,0.6687891670007957 +24,4305.175065158131,2.2257035553449493,0.0,671.8967180657753,0.6657572920012171 +25,4347.362247029691,2.247513623288857,0.0,678.4807543976183,0.6722811669969815 +26,4302.159483935889,2.2241445502531256,0.0,671.4260846779063,0.6652909590047784 +27,4318.686719621804,2.232688854879403,0.0,674.0054444595642,0.6678467500023544 +28,4332.967360737383,2.240071707660648,0.0,676.2341844648398,0.6700551249959972 +29,4315.006696928346,2.2307863446519174,0.0,673.4311135362639,0.6672776670020539 +0,4337.128755695517,1.7631010381575154,0.0,676.7646701938961,0.6670705419965088 +1,4335.295800653481,1.7623559173369114,0.0,676.4786562698515,0.6667886249997537 +2,4398.610156950841,1.78809405277307,0.0,686.358215275761,0.6765266669972334 +3,4348.094503970354,1.7675587619781763,0.0,678.475763277057,0.6687571250004112 +4,4328.7577470800525,1.7596981108266243,0.0,675.4584597482424,0.6657830420008395 +5,4306.640404435346,1.750707114253843,0.0,672.0072741958526,0.6623812920006458 +6,4379.694928311775,1.7804047585120384,0.0,683.4066869277153,0.6736174170000595 +7,4329.512763274224,1.7600050350409495,0.0,675.5762723183599,0.6658991669974057 +8,4337.995381047512,1.7634533329921545,0.0,676.8998982338187,0.6672038329998031 +9,4349.790922173461,1.7682483787415988,0.0,678.7404720211148,0.6690180419973331 +10,4334.652939723237,1.762094585742359,0.0,676.3783443838217,0.6666897500035702 +11,4325.764228859817,1.7584812055007424,0.0,674.9913517869265,0.6653226249982254 +12,4328.711149006114,1.759679168084279,0.0,675.4511885944636,0.6657758750006906 +13,4350.124676735768,1.768384054449755,0.0,678.7925510136946,0.6690693749987986 +14,4346.65978133577,1.766975527974994,0.0,678.2518894551563,0.6685364579971065 +15,4367.501700837171,1.7754480479254011,0.0,681.5040582451767,0.6717420419954578 +16,4346.057556395398,1.7667307154556102,0.0,678.1579184005459,0.6684438330048579 +17,4327.627254555175,1.759238550445433,0.0,675.2820579294696,0.6656091670010937 +18,4339.556348190217,1.7640878870819356,0.0,677.1434712225453,0.6674439169946709 +19,4357.583001645028,1.7714159636069744,0.0,679.9563464834017,0.6702165000024252 +20,4334.129008866459,1.7618816008185674,0.0,676.2965903217535,0.6666091670049354 +21,4385.089758900402,1.7825978295383489,0.0,684.2484951722296,0.6744471669953782 +22,4361.651747436346,1.773069963368741,0.0,680.5912327315787,0.6708422919982695 +23,4317.882204189577,1.755277056705152,0.0,673.7614422945209,0.6641103330039186 +24,4317.579332911451,1.7551539354664314,0.0,673.7141823231901,0.6640637499949662 +25,4331.614182307949,1.7608592900766338,0.0,675.9041773079064,0.6662223750026897 +26,4339.896058402907,1.76422598384189,0.0,677.1964795335738,0.6674961660028202 +27,4338.252473410856,1.7635578444877191,0.0,676.9400148727955,0.6672433749990887 +28,4355.503799110241,1.7705707398762265,0.0,679.6319081517349,0.6698967089978396 +29,4419.641433587555,1.7966435489399235,0.0,689.6399313138453,0.679761375002272 +0,4406.409701805097,2.095666726846697,0.0,684.6746003065597,0.6769445419995463 +1,4337.160912990231,2.0627323443415255,0.0,673.9146188222894,0.6663060419959947 +2,4343.892844349507,2.065934017701874,0.0,674.9606364930511,0.667340250001871 +3,4335.694701631531,2.062035021448992,0.0,673.6867966850125,0.6660807919979561 +4,4333.761177270659,2.0611154467968738,0.0,673.3863627470561,0.6657837499951711 +5,4333.821661396468,2.06114421274887,0.0,673.3957608619535,0.6657930420042248 +6,4332.584901534647,2.060556015856862,0.0,673.2035912451064,0.6656030420053867 +7,4343.563853186136,2.06577755112678,0.0,674.9095173487751,0.6672897079988616 +8,4350.4750691571135,2.069064491364429,0.0,675.9833925335141,0.6683514590040431 +9,4331.512227107231,2.0600458571883764,0.0,673.0369174710928,0.6654382499982603 +10,4348.955963481184,2.0683420121954343,0.0,675.7473515972697,0.6681180829982623 +11,4377.713344853861,2.0820188809780333,0.0,680.2157169853393,0.6725360000054934 +12,4329.536119181286,2.059106030002683,0.0,672.729866834425,0.6651346660000854 +13,4350.215505793044,2.0689410443083447,0.0,675.9430611856425,0.6683115830019233 +14,4326.076452703208,2.057460629684795,0.0,672.192298627342,0.6646031670024968 +15,4422.4905613437695,2.103314704351033,0.0,687.1732685699118,0.6794149999986985 +16,4327.0398235434395,2.057918804106175,0.0,672.3419886447529,0.6647511670016684 +17,4341.8798549002695,2.06497664984556,0.0,674.6478551495429,0.6670309999972233 +18,4372.764137735577,2.07966506247636,0.0,679.446701701954,0.6717756669968367 +19,4331.673871644345,2.0601227345331834,0.0,673.0620340436155,0.6654630830016686 +20,4332.109992188062,2.0603301513133316,0.0,673.1297991129492,0.6655300829952466 +21,4333.678724453537,2.0610762326436127,0.0,673.3735511036939,0.6657710829967982 +22,4333.49158315336,2.0609872291640134,0.0,673.3444728055848,0.6657423329961603 +23,4352.325047085292,2.0699443317451127,0.0,676.2708449004678,0.668635665999318 +24,4323.1350796817605,2.0560617271792547,0.0,671.7352636410159,0.6641512919959496 +25,4379.178469132822,2.082715686860804,0.0,680.4433702105233,0.6727610829984769 +26,4329.96275575588,2.05930893625388,0.0,672.7961582702998,0.6652002089977032 +27,4327.575203849442,2.058173428339831,0.0,672.4251768459939,0.6648334159981459 +28,4335.999816824012,2.0621801327300595,0.0,673.73420594484,0.6661276660015574 +29,4338.3206422672265,2.0632839058672174,0.0,674.0948193104251,0.6664842079990194 +0,5432.766828239197,5.2499547110093365,114.26175316891022,764.5204748904871,0.6905020420017536 +1,5399.448778821557,5.217757810970748,113.56100917252895,759.8318269568421,0.6862673340001493 +2,5399.907734117013,5.218201322461614,113.57066190351168,759.8964129645852,0.6863256669967086 +3,5399.657269001486,5.2179592854747945,113.56539413036542,759.8611665210842,0.6862938330014003 +4,5364.254239242844,5.1837475644969535,112.82079890373306,754.8791118923175,0.6817941250046715 +5,5404.756950039968,5.222887362703041,113.67265043539038,760.5788138438193,0.686942000000272 +6,5445.907775090192,5.262653466175656,114.5381330823071,766.3697210011084,0.6921722500046599 +7,5481.055430132032,5.296618405773042,115.27735727723878,771.3158382878286,0.6966394999981276 +8,5447.738686785228,5.264422767856123,114.57664075009156,766.6273741496468,0.6924049579974962 +9,5444.624331938387,5.261413210770967,114.51113975289424,766.1891097952652,0.6920091249994584 +10,5424.635404783343,5.242096909224549,114.09073336828207,763.376188761789,0.6894685420047608 +11,5399.536300795058,5.2178423878376785,113.56284993147356,759.8441433957505,0.6862784580007428 +12,5403.383026605541,5.221559671669139,113.64375412798374,760.3854698940861,0.6867673749948153 +13,5398.950476360376,5.217276276342759,113.55052889339623,759.7617038600287,0.6862039999978151 +14,5409.343253817727,5.227319337769412,113.7691094086502,761.224216684217,0.687524916997063 +15,5444.888557997141,5.261668545646508,114.516696945695,766.2262927332235,0.6920427080040099 +16,5450.726172550089,5.267309724992546,114.63947344139828,767.0477849841056,0.6927846659964416 +17,5423.045115473114,5.240560133007188,114.05728646169148,763.1523969486838,0.6892664170009084 +18,5424.1049778455135,5.241584331105674,114.07957744833178,763.3015449813314,0.6894011249969481 +19,5403.414498018147,5.221590084071529,113.64441603358226,760.3898986759705,0.6867713749961695 +20,5367.394164626741,5.186781831672883,112.8868376995302,755.3209746339945,0.6821932080056285 +21,5402.169741182553,5.220387213191976,113.61823635335656,760.2147315618353,0.6866131670030882 +22,5438.732295420172,5.25571944075392,114.38721865640856,765.3599590697888,0.6912602500015055 +23,5395.806286596521,5.2142378882828755,113.48440040931582,759.3192410179068,0.6858043749962235 +24,5422.060973208618,5.239609107041756,114.03658801759032,763.013904549654,0.6891413329940406 +25,5438.364150832097,5.255363684198263,114.37947585290104,765.3081523046171,0.6912134590020287 +26,5386.876606785383,5.20560869139767,113.29659171022826,758.0626210918784,0.6846694170017145 +27,5440.014102019136,5.256958114675623,114.41417756590192,765.5403399734316,0.6914231670016306 +28,5375.751135725107,5.1948575914422115,113.0626012099238,756.4970007206579,0.6832553749991348 +29,5397.684735949719,5.216053127983566,113.52390788738754,759.5835838540653,0.6860431250024703 +0,4595.378147494374,2.7001478144444446,0.0,709.7629052500422,0.6829660829971544 +1,4511.745519921628,2.6510070366218565,0.0,696.845723069487,0.6705365840025479 +2,4461.021706467666,2.621202787734813,0.0,689.0113555709004,0.6629979999997886 +3,4462.009687855483,2.621783304876037,0.0,689.1639507475415,0.6631448340049246 +4,4471.7173107801755,2.627487300495603,0.0,690.6633073682493,0.6645875829999568 +5,4606.5699898098865,2.7067239062475346,0.0,711.4915017359026,0.684629416995449 +6,4471.932907247699,2.627613980457927,0.0,690.6966065593583,0.6646196249930654 +7,4493.125064914874,2.6400660478116404,0.0,693.9697664412219,0.6677692079974804 +8,4469.196065555016,2.6260058696827535,0.0,690.2738973396463,0.6642128749954281 +9,4443.629220384472,2.6109833277082437,0.0,686.325060546701,0.6604131249987404 +10,4520.1175304901335,2.6559262544345152,0.0,698.1387923998373,0.6717808340035845 +11,4460.814803293174,2.621081215769139,0.0,688.9793990716702,0.6629672500057495 +12,4503.148936965444,2.645955864784455,0.0,695.5179682039748,0.6692589580052299 +13,4471.0567949914575,2.6270991952720353,0.0,690.5612897344188,0.6644894170021871 +14,4463.9318085732875,2.6229127026946055,0.0,689.460825115901,0.6634304999970482 +15,4477.34799840299,2.630795774442813,0.0,691.532975342778,0.6654244169985759 +16,4448.216133440679,2.613678501612597,0.0,687.0335160061669,0.6610948329980602 +17,4466.0740138166075,2.624171417564239,0.0,689.7916918625189,0.6637488749984186 +18,4471.54349186902,2.627385168149145,0.0,690.6364607820906,0.66456174999621 +19,4464.788858895684,2.6234162874879807,0.0,689.593197797157,0.6635578749992419 +20,4502.951850689574,2.645840061022509,0.0,695.4875279391573,0.6692296670007636 +21,4461.94351913298,2.6217444255225395,0.0,689.1537308911527,0.6631349999952363 +22,4469.679680803127,2.626290031859033,0.0,690.3485924251225,0.664284749997023 +23,4462.746741007515,2.622216381848967,0.0,689.2777896895653,0.6632543750019977 +24,4501.713513076244,2.6451124398142305,0.0,695.2962648757255,0.6690456249998533 +25,4448.419113958295,2.613797768707366,0.0,687.0648666452805,0.6611250000059954 +26,4464.040024016184,2.622976287819104,0.0,689.4775391500192,0.6634465829993133 +27,4452.939865048027,2.616454067227922,0.0,687.7631032918358,0.661796874999709 +28,4490.191136946321,2.638342133274521,0.0,693.5166169566925,0.6673331669953768 +29,4462.008564151978,2.6217826446114265,0.0,689.1637771898846,0.6631446669998695 +0,4380.426529807769,1.9654670990749192,0.0,684.0824894831096,0.6718081670042011 +1,4405.643448056987,1.9767817559517409,0.0,688.0205653977796,0.6756755829992471 +2,4382.027550348223,1.966185465922483,0.0,684.3325176731897,0.6720537090004655 +3,4409.404609507115,1.9784693630909616,0.0,688.6079384927609,0.6762524170044344 +4,4388.6370106825125,1.969151085078812,0.0,685.3647039337865,0.6730673749989364 +5,4361.388995865623,1.9569250892144203,0.0,681.1094357121715,0.6688884579998557 +6,4378.365556995259,1.9645423548228444,0.0,683.7606314624934,0.6714920840022387 +7,4368.331000730204,1.9600399188023856,0.0,682.1935547899488,0.6699531249978463 +8,4367.809372487584,1.9598058678162904,0.0,682.1120931458903,0.6698731249998673 +9,4362.9044367829,1.957605057076735,0.0,681.3460991028941,0.6691208749980433 +10,4407.049673080535,1.9774127193976228,0.0,688.2401727598336,0.6758912500008591 +11,4356.236293297408,1.9546131071961783,0.0,680.3047484114156,0.6680982090038015 +12,4367.261930157964,1.9595602342278289,0.0,682.0266001672621,0.6697891660005553 +13,4356.402555742098,1.9546877080056264,0.0,680.330713286365,0.668123707997438 +14,4365.2036763306705,1.958636709965622,0.0,681.7051667651533,0.6694734999982757 +15,4360.810862240808,1.9566656846539945,0.0,681.0191497350809,0.6687997920016642 +16,4372.079929972909,1.9617220374347044,0.0,682.7790176054518,0.6705280829992262 +17,4448.653869012126,1.996080234474196,0.0,694.737417202163,0.6822719159972621 +18,4372.276903306263,1.9618104180075708,0.0,682.8097785387367,0.6705582919967128 +19,4438.056671531104,1.9913253452300512,0.0,693.0824739711713,0.6806466670022928 +20,4475.827721362907,2.00827295415278,0.0,698.9811036191074,0.6864394590011216 +21,4374.899715425766,1.962987255672319,0.0,683.2193778852723,0.6709605420037406 +22,4365.687545254395,1.9588538186063849,0.0,681.7807316115612,0.6695477090033819 +23,4370.521024384246,1.96102256727484,0.0,682.5355664235396,0.6702890000015032 +24,4369.5247730580495,1.9605755561925344,0.0,682.3799838375202,0.6701362089952454 +25,4383.523964868523,1.966856896772017,0.0,684.5662097493791,0.6722832079976797 +26,4382.123445150023,1.9662284932570664,0.0,684.3474933734551,0.6720684159954544 +27,4400.176953473869,1.9743289776258677,0.0,687.1668738228338,0.6748372090005432 +28,4361.726697985227,1.9570766138207232,0.0,681.162173979806,0.6689402499978314 +29,4360.017283100929,1.9563096111804792,0.0,680.8952180608669,0.6686780840027495 +0,4389.701260774518,2.6042128594929372,0.0,680.9348880686982,0.669467750005424 +1,4415.426293560704,2.6194743675575753,0.0,684.9253811068813,0.6733910420007305 +2,4432.024517487439,2.6293213493057412,0.0,687.5001143473153,0.6759224159977748 +3,4377.413714664615,2.596923209539543,0.0,679.0288315199869,0.6675937919935677 +4,4414.482629522227,2.6189145340112696,0.0,684.7789989892287,0.6732471249997616 +5,4359.1439929525495,2.586084603129793,0.0,676.1948138568221,0.6648074999975506 +6,4371.622236294917,2.59348738519755,0.0,678.1304515526158,0.666710541001521 +7,4390.225820859822,2.604524057462588,0.0,681.0162583583268,0.6695477499961271 +8,4377.345410404161,2.596882687685579,0.0,679.0182360941973,0.6675833749977755 +9,4404.577183266304,2.61303807705298,0.0,683.2424561730196,0.6717364580035792 +10,4374.415794486212,2.595144677968364,0.0,678.5637911174972,0.6671365830043214 +11,4380.433489471716,2.5987147064816463,0.0,679.4972620345278,0.6680543340044096 +12,4358.454956971787,2.585675828988876,0.0,676.0879299003606,0.6647024159974535 +13,4363.96912667838,2.588947138539631,0.0,676.9432934681511,0.6655433749983786 +14,4360.123445116164,2.586665668165478,0.0,676.3467474645504,0.6649568749999162 +15,4360.186280841253,2.5867029457826995,0.0,676.3564946056174,0.6649664579963428 +16,4399.632108831395,2.610104386200344,0.0,682.4753712378977,0.6709822909979266 +17,4396.038603016253,2.6079725203856747,0.0,681.9179429905877,0.6704342500015628 +18,4358.763686860886,2.5858589845841062,0.0,676.135820392216,0.6647494999997434 +19,4358.0582583938585,2.5854404855163677,0.0,676.0263936167477,0.6646419160024379 +20,4374.630267424229,2.59527191514238,0.0,678.5970603760107,0.6671692919990164 +21,4440.88959053858,2.634580599507212,0.0,688.8752734224306,0.677274417001172 +22,4387.765574774819,2.6030645038138385,0.0,680.6346225036312,0.669172540998261 +23,4393.930526906568,2.60672189338682,0.0,681.5909360977461,0.6701127499982249 +24,4385.929620797626,2.6019753146702476,0.0,680.349827470509,0.6688925419948646 +25,4373.320230933655,2.5944947292537544,0.0,678.3938461939784,0.6669695000018692 +26,4364.048354937445,2.588994141111978,0.0,676.9555834356256,0.6655554579992895 +27,4386.297632560371,2.602193639542045,0.0,680.4069138264103,0.6689486670002225 +28,4363.601934594813,2.588729299946724,0.0,676.8863342617108,0.6654873750012484 +29,4365.547456076731,2.589883490576256,0.0,677.1881255167018,0.6657840840052813 +0,4389.025421830659,1.6062307124723365,0.0334631398431736,684.0535046741562,0.6730389170043054 +1,4390.751911121623,1.606862547528499,0.0334763030735104,684.3225874286995,0.6733036670048023 +2,4354.233157511607,1.5934979533436806,0.0331978740279933,678.63094088024,0.667703667000751 +3,4357.945080142954,1.5948563879754634,0.0332261747494888,679.2094642290505,0.6682728750020033 +4,4355.256712950203,1.5938725390485649,0.0332056778968451,678.7904675673076,0.6678606249988661 +5,4408.816460337069,1.6134735444966395,0.0336140321770133,687.1380457625065,0.6760737910008174 +6,4345.096674030936,1.5901543180351092,0.0331282149590647,677.2069701932021,0.6663026250025723 +7,4424.448338877007,1.6191942685734702,0.0337332139286139,689.5743591287267,0.678470874998311 +8,4389.556078381045,1.6064249143206022,0.0334671857150125,684.1362103862865,0.6731202909941203 +9,4359.39441815639,1.5953867952996852,0.0332372249020767,679.4353514482535,0.6684951249990263 +10,4364.926572416989,1.5974113714243328,0.0332794035713402,680.2975678053377,0.6693434580010944 +11,4336.208818024484,1.586901671738146,0.0330604514945447,675.8217494514829,0.6649397090004641 +12,4360.874458026974,1.595928438436221,0.0332485091340879,679.6660237190256,0.668722082999011 +13,4369.55825894303,1.5991064076644208,0.0333147168263421,681.0194413640852,0.6700537079959759 +14,4406.642727210601,1.6126780337458744,0.0335974590363723,686.7992576215242,0.6757404580057482 +15,4401.9515346063135,1.6109612203499777,0.0335616920906245,686.0681097165467,0.6750210829995922 +16,4349.9085088683905,1.5919152822940132,0.0331649017144586,677.9569208469628,0.6670404999968014 +17,4371.0961810783265,1.5996692336974665,0.0333264423686972,681.2591349009085,0.6702895420021378 +18,4354.880661070511,1.5937349171346793,0.0332028107736391,678.7318578347315,0.6678029589966172 +19,4358.4390615102575,1.5950371679817958,0.0332299409996207,679.2864539142473,0.6683486250040005 +20,4359.074063939745,1.5952695567940514,0.0332347824332094,679.3854224996667,0.6684460000033141 +21,4353.926660820881,1.5933857862107526,0.033195537212724,678.5831717025042,0.6676566669993917 +22,4405.829754476088,1.6123805139894192,0.0335912607081129,686.6725513952439,0.6756157919953694 +23,4390.797833401572,1.606879353486394,0.0334766531976332,684.3297446660181,0.6733107089967234 +24,4370.716046913472,1.599530117809139,0.0333235441210237,681.199888921967,0.6702312499983236 +25,4326.591936832465,1.5833822275690632,0.0329871297410221,674.3229061659748,0.6634649999978137 +26,4357.462510925597,1.5946797844192484,0.0332224955087343,679.1342531895475,0.6681988750060555 +27,4363.351975051161,1.5968351235319895,0.0332673984069164,680.0521582341861,0.6691019999998389 +28,4369.617223686835,1.599127986710644,0.033315166389805,681.0286313403956,0.67006274999585 +29,4413.620958856811,1.6152318239183203,0.0336506629982983,687.8868530112147,0.6768105410010321 +0,4577.473572086136,2.734372872188525,0.0,687.8281613979598,0.6706312500027707 +1,4512.290327911022,2.6954353902376584,0.0,678.0334852979535,0.6610814579980797 +2,4547.168389125674,2.7162699451330594,0.0,683.2743921738978,0.6661913330026437 +3,4567.703551328303,2.728536709663448,0.0,686.3600818320481,0.6691998750029597 +4,4605.129561564672,2.750893292501771,0.0,691.9838529809028,0.6746830420015613 +5,4566.467547717577,2.7277983777670705,0.0,686.174355343919,0.6690187920030439 +6,4610.66172593053,2.7541979538893835,0.0,692.8151365228819,0.6754935419958201 +7,4543.630445424574,2.7141565397518432,0.0,682.7427676275764,0.665673000003153 +8,4640.525796411528,2.772037380571022,0.0,697.3026225492496,0.6798688329945435 +9,4542.504791572471,2.7134841257426325,0.0,682.5736227035766,0.665508083999157 +10,4565.85124890328,2.7274302291076764,0.0,686.0817479976103,0.6689285000029486 +11,4561.160628714353,2.7246282676334355,0.0,685.3769180057911,0.6682412919981289 +12,4818.831734850124,2.8785491743233154,0.0,724.0955343752076,0.7059918749946519 +13,4564.1755593307,2.7264292489736976,0.0,685.8299526656153,0.6686829999962356 +14,4560.215273646685,2.724063555852819,0.0,685.2348654460499,0.6681027910017292 +15,4585.537754504071,2.739190045088101,0.0,689.039915366247,0.6718127079948317 +16,4600.7671376163935,2.7482873804165764,0.0,691.3283389738137,0.6740439169952879 +17,4545.273426553459,2.715137981360974,0.0,682.9896480674734,0.6659137079986976 +18,4567.281495950077,2.728284593128288,0.0,686.2966622250877,0.6691380409974954 +19,4658.677677669221,2.7828804823188715,0.0,700.0301915706265,0.6825282080026227 +20,4547.54493802598,2.71649487818441,0.0,683.3309738086564,0.6662464999972144 +21,4560.298041068516,2.7241129973164107,0.0,685.247302385922,0.6681149169962737 +22,4541.763638547519,2.7130413949013388,0.0,682.4622543003647,0.6653995000015129 +23,4557.878925597954,2.7226679286309827,0.0,684.8837971203815,0.6677605000004405 +24,4547.794646496953,2.7166440425778755,0.0,683.3684959299248,0.6662830839995877 +25,4567.771527643748,2.7285773155981365,0.0,686.3702962053995,0.669209833999048 +26,4540.775063581927,2.712450865534982,0.0,682.3137073584155,0.6652546669938602 +27,4533.354762265419,2.7080183176887083,0.0,681.1987053532315,0.6641675419959938 +28,4588.423858422745,2.7409140712648252,0.0,689.473592048531,0.6722355419988162 +29,4545.066951538386,2.715014642652162,0.0,682.9586223656848,0.6658834579939139 +0,4380.128143165533,2.10138879977024,0.0,681.3503017921697,0.6705582499998854 +1,4350.119849804401,2.08699216809459,0.0,676.6823653598126,0.6659642500017071 +2,4367.362044247771,2.0952641987527096,0.0,679.3644728241524,0.6686038749976433 +3,4385.158379687939,2.103802081378193,0.0,682.1327796240055,0.6713283339995542 +4,4379.53481634148,2.101104148202542,0.0,681.2580069100528,0.6704674169959617 +5,4414.992750390435,2.1181152727719748,0.0,686.7736615383036,0.6758957080019172 +6,4344.828062989165,2.084453406400675,0.0,675.8592021039141,0.6651541250030277 +7,4341.3965551405145,2.0828071230217904,0.0,675.3254143169224,0.6646287919938914 +8,4399.509587987827,2.1106871467002226,0.0,684.3651800896102,0.6735253750011907 +9,4372.188421705249,2.097579677935307,0.0,680.1152393838812,0.6693427500067628 +10,4381.871661583215,2.10222526161687,0.0,681.6215145880604,0.6708251669988385 +11,4405.364490799886,2.1134960661635036,0.0,685.2759387860617,0.6744217079976806 +12,4370.243774506617,2.096646723530974,0.0,679.8127400248762,0.6690450419991976 +13,4411.071880095241,2.1162342152653517,0.0,686.1637510353228,0.675295458000619 +14,4355.484031467839,2.089565661585886,0.0,677.516789987538,0.6667854580009589 +15,4431.744772384478,2.1261521406993924,0.0,689.3795202867697,0.6784602920015459 +16,4352.832014252881,2.0882933428111476,0.0,677.1042557714812,0.6663794580017566 +17,4377.9739213040975,2.100355300853341,0.0,681.0152020719237,0.6702284579951083 +18,4352.108320515641,2.087946147052441,0.0,676.9916816800034,0.6662686669951654 +19,4350.152510126051,2.0870078370503533,0.0,676.6874458321836,0.6659692500033998 +20,4390.697019686909,2.1064592721450786,0.0,682.9943420969447,0.6721762500019395 +21,4364.406018298075,2.093846030238117,0.0,678.904648566254,0.6681513339935918 +22,4382.623123069413,2.1025857790946567,0.0,681.7384080883579,0.6709402089982177 +23,4376.427729982067,2.0996135076865157,0.0,680.7746844684517,0.6699917500009178 +24,4360.729009551625,2.0920819665523305,0.0,678.3326719168961,0.6675884170035715 +25,4363.072654624847,2.0932063422204696,0.0,678.6972373418655,0.6679472079995321 +26,4435.29276640862,2.127854308914635,0.0,689.9314280666547,0.6790034579971689 +27,4383.56509870232,2.1030376967052717,0.0,681.8849369936282,0.6710844170011114 +28,4367.292098941517,2.095230642135562,0.0,679.3535924905258,0.6685931669999263 +29,4368.828492238344,2.09596773464986,0.0,679.592585963376,0.668828375004523 +0,4325.569297550288,2.200628795485385,0.0,674.3593543741199,0.6668089579980006 +1,4357.059213614013,2.2166492569068437,0.0,679.2686548627411,0.671663291999721 +2,4323.520498594683,2.19958647118823,0.0,674.0399451482114,0.6664931250052177 +3,4354.314680619662,2.2152529786548807,0.0,678.8407802014387,0.6712402079938329 +4,4352.077493569462,2.2141148121142717,0.0,678.4920011365325,0.6708953339984873 +5,4307.477684852261,2.1914247067004484,0.0,671.5388589850995,0.6640200420006295 +6,4317.92440411191,2.196739464051384,0.0,673.1675100066552,0.6656304579955759 +7,4348.6004715146255,2.2123458808291474,0.0,677.9499309055985,0.6703593330021249 +8,4321.477369172663,2.1985470312602775,0.0,673.7214198066532,0.6661781660004635 +9,4309.721092908161,2.192566038171114,0.0,671.8886079092543,0.6643658749962924 +10,4313.893297529628,2.1946886428501924,0.0,672.5390576006839,0.6650090419934713 +11,4359.2866702776355,2.2177824731235947,0.0,679.6159169534046,0.6720066660054727 +12,4313.354061780624,2.1944143072344193,0.0,672.4549903608504,0.6649259160039946 +13,4323.873493469302,2.1997660569565554,0.0,674.0949773022171,0.6665475409972714 +14,4331.200531860756,2.2034936799723264,0.0,675.2372678400046,0.667677041994466 +15,4331.752190222409,2.203774335579118,0.0,675.3232717740556,0.6677620829941588 +16,4316.235631961171,2.195880303009614,0.0,672.9042292177189,0.6653701250033919 +17,4325.784184908932,2.2007381192013376,0.0,674.3928554673795,0.6668420839996543 +18,4329.559867014626,2.2026589934707883,0.0,674.9814870143438,0.6674241249929764 +19,4309.599462249976,2.192504158702678,0.0,671.8696456024494,0.6643471249990398 +20,4300.703394598191,2.187978293713718,0.0,670.4827422781809,0.6629757499977131 +21,4314.315488986149,2.1949034323062193,0.0,672.6048775514134,0.6650741249977727 +22,4313.175138153923,2.194323280028975,0.0,672.4270960391821,0.6648983339982806 +23,4316.762425745972,2.1961483087892866,0.0,672.9863567464139,0.6654513329995098 +24,4326.333683117873,2.201017675832727,0.0,674.4785226320743,0.666926792000595 +25,4324.472999730331,2.200071055131441,0.0,674.1884407580817,0.6666399579989957 +26,4328.942521640742,2.2023449196661447,0.0,674.8852424279967,0.6673289579994162 +27,4317.714388483604,2.196632618823078,0.0,673.1347684196477,0.6655980829964392 +28,4316.54781738011,2.1960391270106165,0.0,672.9528991483292,0.6654182500060415 +29,4298.75054438032,2.1869847832351894,0.0,670.1782915292683,0.6626747080008499 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/without_smell.csv new file mode 100644 index 000000000..d9b6b578a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign1/results/n1000/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.8360981389177,0.0,0.0,79.91504063021144,0.1259272919996874 +1,381.8268399751352,0.0,0.0,82.0622515754731,0.1293107909950777 +2,378.69492235952407,0.0,0.0,81.38913961900961,0.1282501250025234 +3,377.1005429822752,0.0,0.0,81.04647548997387,0.1277101669984404 +4,376.1059449323693,0.0,0.0,80.83271640642396,0.1273733330017421 +5,377.0002693980719,0.0,0.0,81.02492468413269,0.1276762080015032 +6,376.09511706560784,0.0,0.0,80.83038928053028,0.1273696659991401 +7,373.9279005486811,0.0,0.0,80.36461095273609,0.1266357089989469 +8,375.2913456412782,0.0,0.0,80.65764266890704,0.1270974580038455 +9,375.9660567759833,0.0,0.0,80.8026516339147,0.1273259579975274 +10,380.76937419502184,0.0,0.0,81.83498095488036,0.1289526659966213 +11,374.6659725434551,0.0,0.0,80.52323743829143,0.126885666999442 +12,367.4374331842578,0.0,0.0,78.96967924563978,0.1244376249960623 +13,367.6221062246298,0.0,0.0,79.00936918859718,0.1245001670031342 +14,373.8652749683743,0.0,0.0,80.35115145856713,0.1266145000045071 +15,374.382871422958,0.0,0.0,80.46239332536042,0.126789791000192 +16,375.6328853036798,0.0,0.0,80.7310463974161,0.1272131250007078 +17,373.0515349216383,0.0,0.0,80.17626238990805,0.1263389160012593 +18,373.3190099077397,0.0,0.0,80.23374813292452,0.1264295000000856 +19,372.9278900370712,0.0,0.0,80.14968862253218,0.1262970419993507 +20,374.2486437648836,0.0,0.0,80.43354510755047,0.1267443329998059 +21,375.006771060872,0.0,0.0,80.59648187986771,0.1270010829975945 +22,375.173975427608,0.0,0.0,80.63241745424612,0.1270577090035658 +23,379.6903796752694,0.0,0.0,81.6030833760348,0.1285872500011464 +24,375.5708768393117,0.0,0.0,80.71771953384852,0.1271921250008745 +25,376.1684465051145,0.0,0.0,80.84614924887896,0.1273944999993546 +26,377.5824609660864,0.0,0.0,81.15004933729386,0.1278733750004903 +27,377.7160744515755,0.0,0.0,81.17876555708816,0.1279186250030761 +28,375.568662234418,0.0,0.0,80.71724357080743,0.1271913749951636 +29,375.75431854819095,0.0,0.0,80.757144838954,0.1272542500009876 +0,384.9922799870706,0.0,0.0,81.6414086697934,0.1287048750018584 +1,382.1713775858955,0.0,0.0,81.0432085039104,0.127761832998658 +2,387.3060348462912,0.0,0.0,82.13206319935875,0.1294783750054193 +3,382.6248077427939,0.0,0.0,81.13936283911889,0.1279134170035831 +4,382.57595115897095,0.0,0.0,81.1290023188346,0.1278970839994144 +5,380.9924394855085,0.0,0.0,80.79320305638996,0.1273677080025663 +6,381.0339464626488,0.0,0.0,80.80200502011628,0.1273815839958842 +7,373.8850362618945,0.0,0.0,79.28600812983309,0.1249916669985395 +8,375.0913924440434,0.0,0.0,79.54182785191026,0.125394957998651 +9,379.9175739652012,0.0,0.0,80.5652672255431,0.1270083749986952 +10,380.5149594438619,0.0,0.0,80.6919487060091,0.1272080839989939 +11,383.2371466215314,0.0,0.0,81.26921533549904,0.1281181250014924 +12,380.5183216338946,0.0,0.0,80.69266169155388,0.1272092079962021 +13,380.6673860889716,0.0,0.0,80.72427227890252,0.1272590410007978 +14,361.8152226748145,0.0,0.0,76.72648516053064,0.1209566670004278 +15,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +16,380.5179477428493,0.0,0.0,80.69258240427148,0.1272090830025263 +17,380.8158283426864,0.0,0.0,80.7557509223179,0.1273086660003173 +18,365.9374543718208,0.0,0.0,77.6006450336018,0.1223347499981173 +19,378.25367465054006,0.0,0.0,80.21242097122808,0.1264521250050165 +20,356.6132616527771,0.0,0.0,75.62335803886796,0.1192176250042393 +21,384.7918642445624,0.0,0.0,81.59890853566469,0.1286378750010044 +22,380.5077295415131,0.0,0.0,80.69041553393531,0.12720566700591 +23,383.7435463378665,0.0,0.0,81.37660238802117,0.1282874169992283 +24,382.10669117039305,0.0,0.0,81.02949111174972,0.1277402080013416 +25,382.2867931309956,0.0,0.0,81.06768350814862,0.1278004170017084 +26,363.2618803228803,0.0,0.0,77.03326317762489,0.1214402920013526 +27,378.3778127457374,0.0,0.0,80.23874567821139,0.1264936250008759 +28,383.1464121294845,0.0,0.0,81.24997419189508,0.1280877919998602 +29,380.0084340815053,0.0,0.0,80.58453500900934,0.1270387499971548 +0,390.2923708501913,0.4469127826171484,0.0,83.81333569389291,0.1297804999994696 +1,365.9657287665602,0.4190570310900451,0.0,78.58931090750231,0.121691375003138 +2,385.5064629144986,0.4414325744638846,0.0,82.78558588791928,0.1281890839964035 +3,383.1150096237612,0.4386941887702718,0.0,82.2720332478402,0.1273938750018715 +4,375.13807536719554,0.4295600264047865,0.0,80.55902649037459,0.1247413749952102 +5,383.3887996646965,0.4390076980217611,0.0,82.33082829054258,0.1274849160035955 +6,381.2259091931742,0.4365310331640328,0.0,81.86635837337784,0.1267657089993008 +7,372.53711365314894,0.4265817385264631,0.0,80.00048296365516,0.1238765000016428 +8,382.10893252225594,0.4375421582655974,0.0,82.05598321934819,0.1270593330045812 +9,382.39876363587337,0.4378740356968514,0.0,82.11822300222491,0.1271557080035563 +10,381.75469649055145,0.4371365325796854,0.0,81.97991280225177,0.1269415420028963 +11,381.439053481218,0.4367750986748731,0.0,81.91213004379543,0.1268365840005572 +12,381.4226364679471,0.4367563000161465,0.0,81.90860457225888,0.1268311249950784 +13,363.8404268617468,0.4166234078395762,0.0,78.13291294714513,0.1209846669953549 +14,381.63778666959325,0.4370026624420605,0.0,81.95480700259564,0.1269026670051971 +15,384.03863484277593,0.4397518059505053,0.0,82.47037714671785,0.1277009999976144 +16,382.3201972167614,0.4377840715069055,0.0,82.1013512564489,0.1271295830010785 +17,380.616549606845,0.4358332726934718,0.0,81.73550144820648,0.1265630839989171 +18,383.1444573623307,0.4387279085449043,0.0,82.27835700249821,0.1274036670001805 +19,365.0784440553923,0.4180410264000793,0.0,78.39877095103026,0.1213963339978363 +20,337.2567860558492,0.3861832307518752,0.0,72.42420896715937,0.1121450420032488 +21,390.46266073377785,0.4471077767584878,0.0,83.84990459516871,0.1298371250013588 +22,383.0279234600802,0.4385944688611858,0.0,82.25333192950546,0.1273649170034332 +23,381.9510508443386,0.4373613724104996,0.0,82.02207891821523,0.1270068339945282 +24,381.2948250919911,0.436609946815457,0.0,81.88115771816032,0.1267886249988805 +25,375.600202278002,0.4300891948924535,0.0,80.65826593444629,0.1248950420049368 +26,382.64762293629394,0.4381589974607435,0.0,82.17166429302252,0.1272384590047295 +27,380.0551779472132,0.4351904618438977,0.0,81.61494969041713,0.1263764160030405 +28,374.44313329201606,0.4287642678407653,0.0,80.409791153522,0.1245102920001954 +29,379.2905681139203,0.4343149286955839,0.0,81.45075355075643,0.1261221669992664 +0,596.4459331278491,0.4886326329094673,23.45436637965443,115.49181302124482,0.1359050419996492 +1,554.2467896523963,0.454061387742615,21.79494661164552,107.3206522885938,0.1262896249972982 +2,561.8597160149025,0.4602982049393548,22.094313837089032,108.7947685817375,0.128024291996553 +3,578.047053073734,0.4735595261883244,22.73085725703957,111.92917658265468,0.1317127079964848 +4,568.9121664239593,0.4660758575654181,22.37164116314007,110.16035804885487,0.1296312500053318 +5,548.2467135468028,0.4491458827114073,21.55900237014755,106.15883756371764,0.1249224590064841 +6,574.285027647265,0.4704775227960507,22.58292109421043,111.20072306658084,0.1308554999995976 +7,568.8810812926358,0.4660503913685354,22.3704187856897,110.15433893132028,0.1296241670061135 +8,581.4331164691322,0.4763335262781819,22.86400926135273,112.58483131817884,0.132484249996196 +9,573.1562154950751,0.4695527542238312,22.538532202743895,110.98214740904696,0.130598290998023 +10,583.8964565002159,0.4783515940665353,22.960876515193696,113.0618160547261,0.1330455419956706 +11,542.9270608157159,0.444787808029728,21.349814785426947,105.12877548359786,0.1237103329985984 +12,564.993609313329,0.4628656170862312,22.2175496201391,109.40159478130994,0.1287383749950095 +13,560.8248965977349,0.4594504390173964,22.053621072835032,108.5943930506118,0.1277885000017704 +14,573.9476466490644,0.4702011266362514,22.56965407854007,111.135394859954,0.130778625003586 +15,548.2132497074549,0.4491184677806992,21.55768645347356,106.15235784902384,0.1249148339993553 +16,568.2311855811712,0.4655179705153254,22.34486258473562,110.02849745965798,0.1294760829987353 +17,569.4581948227624,0.4665231861149672,22.393112933518424,110.26608734674474,0.1297556670033373 +18,566.7441505316564,0.4642997312565504,22.286387100314418,109.74055790913752,0.1291372500054421 +19,582.8598113728299,0.4775023324489214,22.92011195754823,112.86108700524863,0.1328093339980114 +20,575.8457576853292,0.4717561359701918,22.644294526569208,111.50293242324037,0.1312111249935696 +21,575.1305845711598,0.4711702372284064,22.616171386963508,111.36445107062836,0.1310481670006993 +22,561.1286338518851,0.4596992728612786,22.065565097341377,108.65320670699792,0.127857708997908 +23,581.2049042884294,0.4761465656292358,22.85503515020332,112.54064183336725,0.13243225000042 +24,571.7183733013259,0.4683748157422062,22.4819911556259,110.7037332350686,0.1302706669957842 +25,574.0612041322552,0.470294157519549,22.574119560938353,111.15738337372768,0.1308044999968842 +26,558.5815399432987,0.457612590508876,21.965404344426048,108.16000442813365,0.1272773329983465 +27,574.211337065327,0.4704171524907589,22.580023319556428,111.18645411370866,0.1308387090030009 +28,571.0388539527394,0.4678181260072767,22.45527004834928,110.57215563986276,0.1301158330024918 +29,578.4687365725639,0.4739049863664284,22.747439345588564,112.01082856332224,0.131808792000811 +0,413.0072096269986,1.4107272937812247,0.0,91.6972740957796,0.1269404159975238 +1,416.2951969601929,1.4219582199355971,0.0,92.4272842958138,0.1279510000022128 +2,415.0127574793532,1.4175777337453508,0.0,92.1425526934478,0.127556833998824 +3,413.0934320082623,1.411021807445268,0.0,91.71641748394242,0.1269669169996632 +4,413.4505093068436,1.4122414924274098,0.0,91.79569700778164,0.1270766669986187 +5,401.3017471664815,1.370744419404052,0.0,89.09838726126338,0.1233426670005428 +6,415.17299164786726,1.4181250527985056,0.0,92.17812843190286,0.1276060829986818 +7,418.85668894968217,1.4307076232829092,0.0,92.99599551338908,0.1287382910013548 +8,416.11991185189385,1.421359490710763,0.0,92.3883668961996,0.1278971249994356 +9,411.9964417244347,1.4072747684146274,0.0,91.4728599469508,0.1266297499969368 +10,413.4103800010833,1.412104420953603,0.0,91.78678736198415,0.127064332998998 +11,396.2525049402136,1.353497495729422,0.0,87.97733722241243,0.1217907500031287 +12,368.7876480349551,1.259684549241063,0.0,81.87949570066912,0.1133492500011925 +13,412.9376649737701,1.410489746982624,0.0,91.68183355387056,0.126919041002111 +14,413.4071296914159,1.412093318724745,0.0,91.78606571710844,0.1270633339954656 +15,415.7098276987633,1.419958747832471,0.0,92.2973186091106,0.1277710830036085 +16,416.36013135422826,1.4221800192646052,0.0,92.44170125219934,0.1279709580048802 +17,392.0143470933253,1.3390210294339349,0.0,87.03636691320577,0.1204881249941536 +18,416.4180185498556,1.4223777471611854,0.0,92.45455356547706,0.1279887500058976 +19,416.8541278587761,1.4238673853341408,0.0,92.55138004671916,0.1281227910003508 +20,411.35644206336633,1.405088692799397,0.0,91.3307650319608,0.1264330419944599 +21,434.2858446220848,1.4834096839726385,0.0,96.42162945822147,0.1334805410006083 +22,425.7506982570446,1.454255800812937,0.0,94.52662705284092,0.1308572089983499 +23,343.1229552610153,1.1720205043073066,0.0,76.18133277997494,0.1054610419960226 +24,425.9506550579292,1.4549388022473182,0.0,94.57102214607568,0.1309186670041526 +25,423.1848627760689,1.4454915612064811,0.0,93.95695147842127,0.1300685829992289 +26,413.7155371406136,1.4131467599142624,0.0,91.85453939442706,0.1271581250039162 +27,414.45965044482983,1.4156884611811038,0.0,92.01974997677176,0.1273868330026744 +28,416.577442567405,1.4229222989452677,0.0,92.4899494314424,0.1280377500006579 +29,391.13724489124553,1.3360250720097848,0.0,86.841629680636,0.1202185420042951 +0,391.0022498249037,0.0,0.0,82.00330714172952,0.1264092919955146 +1,388.85277091672145,0.0,0.0,81.5525056970287,0.1257143750044633 +2,381.74472404346903,0.0,0.0,80.06176401667737,0.1234163749977597 +3,392.66726186303595,0.0,0.0,82.35250332568698,0.1269475829976727 +4,399.7876812973492,0.0,0.0,83.84583985280774,0.1292495829984545 +5,384.44104316633167,0.0,0.0,80.62725202929938,0.1242880830031936 +6,394.38228386701905,0.0,0.0,82.71218789581523,0.1275020419998327 +7,392.0421898742136,0.0,0.0,82.22140952684555,0.1267454999979236 +8,396.18906710609906,0.0,0.0,83.09111717552949,0.1280861670020385 +9,394.03494844532105,0.0,0.0,82.63934265444013,0.1273897499995655 +10,392.7300279752369,0.0,0.0,82.36566700640546,0.1269678750031744 +11,394.56722610240735,0.0,0.0,82.75097507655093,0.1275618330037105 +12,394.3054687072889,0.0,0.0,82.6960777656579,0.1274772079996182 +13,373.9605683304472,0.0,0.0,78.42922478689076,0.1208997920039109 +14,394.4120553877859,0.0,0.0,82.71843175544166,0.1275116670003626 +15,345.62697490492934,0.0,0.0,72.48693579714173,0.1117396670015296 +16,390.35114282852976,0.0,0.0,81.86675312693883,0.1261987919933744 +17,396.3350882853156,0.0,0.0,83.12174160189497,0.1281333750011981 +18,343.90009686569954,0.0,0.0,72.12476470909637,0.1111813749957946 +19,391.0384643812334,0.0,0.0,82.01090227292643,0.1264210000008461 +20,395.20003402797175,0.0,0.0,82.88369130185403,0.1277664169974741 +21,392.31580638784453,0.0,0.0,82.27879400229646,0.126833959002397 +22,345.98874293694035,0.0,0.0,72.56280793101395,0.1118566250006551 +23,391.0902745692909,0.0,0.0,82.02176821235837,0.1264377500046976 +24,392.7198453431928,0.0,0.0,82.36353144451702,0.1269645830034278 +25,410.9331853581329,0.0,0.0,86.18334096221345,0.132852874994569 +26,396.49541525584135,0.0,0.0,83.1553663235251,0.1281852079991949 +27,395.588223713584,0.0,0.0,82.96510474137456,0.1278919169999426 +28,392.22867867129474,0.0,0.0,82.2605210616574,0.1268057909983326 +29,394.0684595625691,0.0,0.0,82.6463708043845,0.1274005839950405 +0,375.7903775249154,0.0,0.0,80.41439874522317,0.1264599169953726 +1,383.4508304762699,0.0,0.0,82.0536390106512,0.1290377909972448 +2,376.1037582773654,0.0,0.0,80.48145827174051,0.126565375001519 +3,378.9841223881726,0.0,0.0,81.09781984454986,0.127534667000873 +4,377.41585176705246,0.0,0.0,80.76222972141316,0.1270069169986527 +5,378.5934796234818,0.0,0.0,81.01422722237132,0.1274032090004766 +6,371.1963832179937,0.0,0.0,79.43134193450003,0.1249139589999686 +7,381.4723549525934,0.0,0.0,81.63027021468451,0.1283719999992172 +8,379.93739319762295,0.0,0.0,81.30180776858403,0.1278554590026033 +9,376.8108781888688,0.0,0.0,80.63277300975706,0.1268033329979516 +10,377.2519165934144,0.0,0.0,80.72714966292916,0.126951749996806 +11,367.1828436771961,0.0,0.0,78.57249511905164,0.1235633340038475 +12,377.61655773184407,0.0,0.0,80.80517826519866,0.1270744580033351 +13,377.07560168009087,0.0,0.0,80.68942049637064,0.1268924169999081 +14,378.470650841746,0.0,0.0,80.98794341303869,0.1273618750055902 +15,378.9410339449637,0.0,0.0,81.08859946143005,0.1275201669996022 +16,378.1692783957104,0.0,0.0,80.92345351256293,0.1272604580008192 +17,360.8712520229351,0.0,0.0,77.22189415011354,0.1214393749978626 +18,376.8633777379917,0.0,0.0,80.64400725078504,0.1268209999980172 +19,378.58864776937514,0.0,0.0,81.01319326656494,0.1274015829985728 +20,377.4466793231688,0.0,0.0,80.76882642941354,0.1270172910008113 +21,377.031895147184,0.0,0.0,80.68006784985506,0.126877709000837 +22,374.3029586664954,0.0,0.0,80.09610987904745,0.1259593750000931 +23,347.9967234803297,0.0,0.0,74.46690750383311,0.1171068749972619 +24,376.47582842715946,0.0,0.0,80.56107658869635,0.1266905829979805 +25,378.12197917183966,0.0,0.0,80.91333207551675,0.1272445409995271 +26,378.17670742869615,0.0,0.0,80.92504323187597,0.1272629579980275 +27,379.35755353744975,0.0,0.0,81.17772939822082,0.1276603329970385 +28,376.6962243120295,0.0,0.0,80.60823852691433,0.1267647499989834 +29,356.6068604960436,0.0,0.0,76.30936817510647,0.1200043339995318 +0,376.57177593891714,0.0,0.0,79.74107126114866,0.1257639160030521 +1,380.690278713343,0.0,0.0,80.61318607221193,0.1271393749993876 +2,383.849116295926,0.0,0.0,81.28208668789696,0.1281943339999998 +3,321.82332515261595,0.0,0.0,68.14779636766306,0.1074795410022488 +4,377.175622428229,0.0,0.0,79.86893895865455,0.1259655829999246 +5,380.9577662999694,0.0,0.0,80.66982798769662,0.1272287079991656 +6,381.55025850883186,0.0,0.0,80.79529135608311,0.1274265829997602 +7,386.5080296823765,0.0,0.0,81.84512570296262,0.1290823329982231 +8,378.1668532813673,0.0,0.0,80.07883735026734,0.1262966249996679 +9,364.021648680628,0.0,0.0,77.0835152360204,0.1215725420042872 +10,381.3288079055205,0.0,0.0,80.7483980160407,0.1273526250006398 +11,372.39002208305175,0.0,0.0,78.85556269804478,0.1243673330027377 +12,382.33663003234,0.0,0.0,80.96180969787187,0.1276892079986282 +13,380.7838498071915,0.0,0.0,80.63300024772721,0.1271706249972339 +14,374.52294312491887,0.0,0.0,79.30722004376555,0.1250796660024207 +15,359.0034919453096,0.0,0.0,76.02089392609103,0.1198966250012745 +16,379.99722678356534,0.0,0.0,80.46642864945426,0.1269079160047113 +17,379.1418641633633,0.0,0.0,80.28530107694411,0.1266222500053118 +18,382.58927200969583,0.0,0.0,81.01530797683783,0.1277735830008168 +19,377.303501937692,0.0,0.0,79.89601812318169,0.1260082910011988 +20,379.6446508726636,0.0,0.0,80.39176882991234,0.1267901660030475 +21,362.21660074358863,0.0,0.0,76.70128675960746,0.1209697089943802 +22,380.5168592731632,0.0,0.0,80.57646358576704,0.1270814579984289 +23,379.91950137360783,0.0,0.0,80.44996988156394,0.1268819580000126 +24,380.7278329052986,0.0,0.0,80.62113837158283,0.1271519169968087 +25,381.2378568006439,0.0,0.0,80.7291386370892,0.1273222500021802 +26,381.37821343052354,0.0,0.0,80.75885989805546,0.1273691249953117 +27,358.5115594791486,0.0,0.0,75.91672461668911,0.1197323340020375 +28,379.36082052776175,0.0,0.0,80.33166624866482,0.1266953750018729 +29,378.77381981874754,0.0,0.0,80.2073657345035,0.1264993340009823 +0,373.7002810104703,0.0,0.0,80.05956189892107,0.1265379169999505 +1,377.3721755823788,0.0,0.0,80.84620907502472,0.127781249997497 +2,375.5968928291588,0.0,0.0,80.46588193401963,0.127180124996812 +3,376.8571996022623,0.0,0.0,80.73588335826284,0.127606874993944 +4,358.4247515000995,0.0,0.0,76.78701364964624,0.1213655000028666 +5,376.5106839164296,0.0,0.0,80.66164767954228,0.127489541999239 +6,373.5288674694652,0.0,0.0,80.02283917299937,0.12647987499804 +7,374.2099647272519,0.0,0.0,80.1687538293157,0.1267105000006267 +8,375.82244863222303,0.0,0.0,80.51420381038605,0.1272565000035683 +9,375.6955792262256,0.0,0.0,80.48702398318585,0.1272135410035844 +10,378.9298999868846,0.0,0.0,81.17992767177498,0.1283087079937104 +11,367.9267647010967,0.0,0.0,78.82267445239606,0.1245829580002464 +12,374.54122384829685,0.0,0.0,80.23972102268834,0.1268226669999421 +13,375.0623514767027,0.0,0.0,80.35136463588229,0.1269991250010207 +14,374.88404796498406,0.0,0.0,80.31316583925673,0.126938749999681 +15,375.918677893981,0.0,0.0,80.53481945594396,0.1272890840045875 +16,375.49242102266754,0.0,0.0,80.44350044948914,0.1271447500039357 +17,373.65007545091566,0.0,0.0,80.04880612669643,0.1265209169941954 +18,378.19699950514024,0.0,0.0,81.02291496810425,0.128060542003368 +19,372.4382495153243,0.0,0.0,79.7891909793948,0.1261105829980806 +20,363.61881019547434,0.0,0.0,77.8997611769015,0.1231242499998188 +21,384.24356897781905,0.0,0.0,82.31829987299409,0.1301079589975415 +22,368.9578241234784,0.0,0.0,79.04356314272411,0.1249320830029319 +23,378.87735844050263,0.0,0.0,81.16867145014876,0.1282909170040511 +24,329.8612412749815,0.0,0.0,70.66771904078234,0.1116936659964267 +25,382.7609018593844,0.0,0.0,82.0006611502646,0.1296059160013101 +26,377.9771021827879,0.0,0.0,80.97580533456942,0.1279860830036341 +27,376.3770485675717,0.0,0.0,80.63301835270623,0.1274442919966532 +28,376.4166725657793,0.0,0.0,80.64150718747139,0.1274577090007369 +29,374.1499159502624,0.0,0.0,80.15588929850684,0.1266901670023799 +0,403.1280711860908,0.0,0.0,84.25633205896268,0.1253158330000587 +1,387.8453998928396,0.0,0.0,81.06215651211087,0.1205650830015656 +2,419.1526392551472,0.0,0.0,87.60556875278897,0.1302972080011386 +3,406.2162918923644,0.0,0.0,84.90178983751325,0.1262758330049109 +4,420.8669780974,0.0,0.0,87.96387647948596,0.1308301249955548 +5,414.97228218567807,0.0,0.0,86.73184752485783,0.1289977080014068 +6,409.33346783722465,0.0,0.0,85.55329944517618,0.1272448339950642 +7,387.6850922721412,0.0,0.0,81.02865119931684,0.1205152499969699 +8,415.76618651492635,0.0,0.0,86.8977785814359,0.1292444999999134 +9,417.91762120430434,0.0,0.0,87.34744212150659,0.1299132920030388 +10,443.8168553412664,0.0,0.0,92.7605468579152,0.137964292000106 +11,409.103591653989,0.0,0.0,85.50525386013376,0.1271733750036219 +12,410.61660425324544,0.0,0.0,85.8214831209671,0.1276437080014147 +13,402.2978448831,0.0,0.0,84.08280947874876,0.1250577500031795 +14,408.9604397440374,0.0,0.0,85.4753342000509,0.127128874999471 +15,406.7088823894727,0.0,0.0,85.00474438585651,0.1264289590035332 +16,409.91545590084,0.0,0.0,85.6749386537732,0.1274257499972009 +17,408.4102153116807,0.0,0.0,85.36033379250497,0.1269578329956857 +18,407.3196873856032,0.0,0.0,85.13240651671686,0.1266188329973374 +19,410.2911637004949,0.0,0.0,85.75346397460171,0.1275425420026295 +20,408.7449076956601,0.0,0.0,85.43028663046836,0.1270618750058929 +21,406.67349330879034,0.0,0.0,84.9973478428064,0.1264179580030031 +22,408.2432069034229,0.0,0.0,85.32542797247262,0.1269059169935644 +23,410.4475852927387,0.0,0.0,85.7861570827212,0.1275911670018104 +24,403.50310985493286,0.0,0.0,84.3347175271935,0.125432417000411 +25,408.1030049222433,0.0,0.0,85.29612486627406,0.1268623340001795 +26,395.15070496407816,0.0,0.0,82.58901175705402,0.1228360000022803 +27,404.9224303542579,0.0,0.0,84.63136454296041,0.1258736250019865 +28,405.9890985754069,0.0,0.0,84.85430498859458,0.1262052080055582 +29,405.89768722662245,0.0,0.0,84.83519943503073,0.1261767920004786 +0,371.9505742570301,0.0,0.0,79.28333129496517,0.1256908330033184 +1,378.90296178336786,0.0,0.0,80.76527132057922,0.128040208001039 +2,380.42500161272574,0.0,0.0,81.08970256598367,0.1285545409991755 +3,379.724029315134,0.0,0.0,80.94028642646145,0.1283176659999299 +4,379.9385778952912,0.0,0.0,80.98601864825851,0.12839016700309 +5,376.13581758750024,0.0,0.0,80.17543916220671,0.1271051250005257 +6,374.5648258513344,0.0,0.0,79.8405735459111,0.126574250003614 +7,376.2810664428482,0.0,0.0,80.20639976266224,0.1271542079994105 +8,380.54867753629713,0.0,0.0,81.11606477618137,0.1285963339978479 +9,379.31836647407073,0.0,0.0,80.85381713820637,0.1281805830003577 +10,381.0452130124147,0.0,0.0,81.22190407144627,0.1287641249946318 +11,375.8075894342783,0.0,0.0,80.10547550785772,0.1269942090002587 +12,376.2243494820515,0.0,0.0,80.19431022737417,0.1271350420065573 +13,329.24711978815566,0.0,0.0,70.18085273351087,0.1112603329966077 +14,372.8399531157799,0.0,0.0,79.47290733970135,0.1259913750036503 +15,374.9296776697505,0.0,0.0,79.91834373796102,0.1266975420003291 +16,374.12192675589216,0.0,0.0,79.74616714316706,0.1264245839993236 +17,375.5840417938985,0.0,0.0,80.05782508637942,0.1269186670033377 +18,375.37479914772064,0.0,0.0,80.01322385388747,0.1268479589998605 +19,375.09391603623067,0.0,0.0,79.95335205821166,0.1267530420009279 +20,378.31259142851826,0.0,0.0,80.63943059960772,0.1278407079953467 +21,378.55623535736214,0.0,0.0,80.69136465661818,0.1279230410000309 +22,376.64345322012633,0.0,0.0,80.28364451749893,0.1272766670008422 +23,376.4232347180749,0.0,0.0,80.23670372035055,0.1272022499979357 +24,376.19710070725216,0.0,0.0,80.1885019996436,0.1271258340057102 +25,375.24101441526466,0.0,0.0,79.98470689491597,0.1268027499972959 +26,369.4433498371993,0.0,0.0,78.74890248085369,0.1248435829984373 +27,376.9355548460999,0.0,0.0,80.34590760186201,0.1273753749992465 +28,378.0333122323057,0.0,0.0,80.57990068738393,0.1277463329970487 +29,376.1556682460244,0.0,0.0,80.17967044035258,0.1271118330041645 +0,381.15527652293935,0.0,0.0,81.51934415933158,0.1286932079965481 +1,385.36513808692746,0.0,0.0,82.41972564382412,0.130114624997077 +2,378.5353754336696,0.0,0.0,80.95901446769543,0.127808625002217 +3,375.9680451234962,0.0,0.0,80.40992831825284,0.1269417919975239 +4,378.33409882951184,0.0,0.0,80.9159665610385,0.1277406660010456 +5,376.0794774873806,0.0,0.0,80.43376084473613,0.1269794160034507 +6,376.188694437082,0.0,0.0,80.45711955090954,0.127016291997279 +7,378.75676516528466,0.0,0.0,81.00636405679074,0.1278833749965997 +8,378.5499353289353,0.0,0.0,80.96212845610434,0.127813541002979 +9,376.9519574623808,0.0,0.0,80.62036194863003,0.1272740000058547 +10,375.52600605674576,0.0,0.0,80.31538749189194,0.1267925419961102 +11,378.15886475244446,0.0,0.0,80.87848848342348,0.1276814999946509 +12,375.0297909482362,0.0,0.0,80.20925979879881,0.1266250000044237 +13,371.8400015295662,0.0,0.0,79.5270456004583,0.1255480000036186 +14,380.5503420202996,0.0,0.0,81.38996417444876,0.1284889580056187 +15,378.3637191494406,0.0,0.0,80.92230158826523,0.1277506670012371 +16,376.9870036571698,0.0,0.0,80.62785743141737,0.1272858329975861 +17,374.23394884006944,0.0,0.0,80.03904957029572,0.1263562919994001 +18,377.2002516134433,0.0,0.0,80.67346570345106,0.1273578340042149 +19,364.2633868236725,0.0,0.0,77.90660191302786,0.122989832998428 +20,380.7449517375222,0.0,0.0,81.43158620487097,0.1285546660001273 +21,374.3580929740989,0.0,0.0,80.06560081859438,0.126398208005412 +22,378.7710821980925,0.0,0.0,81.00942610314478,0.1278882089973194 +23,384.0539539971067,0.0,0.0,82.13929697430812,0.1296719170059077 +24,381.7317073342197,0.0,0.0,81.64262793521807,0.1288878340055816 +25,358.74814021678975,0.0,0.0,76.72703202651994,0.1211276659960276 +26,377.330689419243,0.0,0.0,80.70136300682668,0.1274018750045797 +27,376.49597453488855,0.0,0.0,80.52283888785513,0.1271200420014793 +28,368.4089550234593,0.0,0.0,78.7932326948375,0.124389541997516 +29,368.3183732958839,0.0,0.0,78.77385958503265,0.124358957997174 +0,382.11192345358336,0.0,0.0,83.48578836048895,0.1285898329952033 +1,383.063317719908,0.0,0.0,83.69365389802014,0.1289099999994505 +2,378.283444669349,0.0,0.0,82.64932252442081,0.1273014580001472 +3,378.5424663084672,0.0,0.0,82.70591491114551,0.1273886249982752 +4,379.91545010812285,0.0,0.0,83.0058915093224,0.1278506669987109 +5,377.47332413675264,0.0,0.0,82.47232320254791,0.1270288329978939 +6,378.7013227559976,0.0,0.0,82.74062268900902,0.1274420840054517 +7,371.8073092458929,0.0,0.0,81.2343829787769,0.12512208300177 +8,377.4120387598971,0.0,0.0,82.45893325659827,0.1270082089977222 +9,378.25880452054855,0.0,0.0,82.64393901733384,0.127293165998708 +10,377.1228053048038,0.0,0.0,82.3957400361396,0.1269108749984298 +11,373.0895357637535,0.0,0.0,81.51453045685822,0.1255535829986911 +12,376.85883007567696,0.0,0.0,82.33806536346226,0.1268220409983769 +13,383.83679006238367,0.0,0.0,83.86264613386297,0.1291702920061652 +14,382.0622747139288,0.0,0.0,83.47494084719048,0.1285731250027311 +15,379.26022195757537,0.0,0.0,82.8627338757944,0.1276301670004613 +16,378.4614914107541,0.0,0.0,82.68822309689409,0.127361375001783 +17,376.1883756534947,0.0,0.0,82.19158101539543,0.126596416994289 +18,373.1687782638382,0.0,0.0,81.53184376792015,0.1255802500018035 +19,376.2270029142905,0.0,0.0,82.2000204990174,0.1266094159946078 +20,376.0207293733377,0.0,0.0,82.15495278946071,0.1265399999974761 +21,377.7483179042934,0.0,0.0,82.53240526245817,0.1271213750005699 +22,378.4316510205191,0.0,0.0,82.68170341417591,0.1273513329942943 +23,378.53912332545906,0.0,0.0,82.70518451893636,0.1273875000042608 +24,363.8453956857787,0.0,0.0,79.4948229451185,0.122442708001472 +25,374.7420925115319,0.0,0.0,81.87558959799095,0.1261097080059698 +26,384.3096389423701,0.0,0.0,83.96595660155066,0.1293294170027366 +27,378.8730519301984,0.0,0.0,82.7781429667409,0.1274998749941005 +28,376.8858236829585,0.0,0.0,82.34396306632436,0.1268311249950784 +29,376.7586678245342,0.0,0.0,82.31618139704467,0.1267883339969557 +0,356.33566462805965,0.0,0.0,78.6689939309365,0.1220669589965837 +1,365.621944433946,0.0,0.0,80.71914597073523,0.1252480830007698 +2,369.7227878911292,0.0,0.0,81.62449803360438,0.126652874998399 +3,368.88984603315726,0.0,0.0,81.44060766148007,0.1263675410009455 +4,381.5487589223497,0.0,0.0,84.2353431878597,0.1307040000028791 +5,374.4612274067481,0.0,0.0,82.67061355472525,0.128276082999946 +6,376.2095751151944,0.0,0.0,83.05660005262041,0.1288750000021536 +7,417.9745566255801,0.0,0.0,92.27714518215636,0.1431820840007276 +8,372.6591200383785,0.0,0.0,82.27275842065343,0.1276587499960442 +9,368.9749927454226,0.0,0.0,81.45940568496007,0.1263967090053483 +10,368.7472965391703,0.0,0.0,81.40913670195931,0.1263187090007704 +11,354.0226975037879,0.0,0.0,78.15835518571936,0.1212746249948395 +12,368.9847223569777,0.0,0.0,81.46155371230721,0.1264000419978401 +13,368.6611806740536,0.0,0.0,81.3901247165121,0.1262892090016976 +14,368.6304066460952,0.0,0.0,81.3833306679253,0.1262786669976776 +15,360.7548186281763,0.0,0.0,79.64462009953212,0.1235807920020306 +16,371.2739682072804,0.0,0.0,81.96695546066114,0.127184249999118 +17,300.1849544333428,0.0,0.0,66.27248042410939,0.1028318750031758 +18,368.7402408753223,0.0,0.0,81.40757900781993,0.1263162920004106 +19,364.68415722507456,0.0,0.0,80.51210866415458,0.1249268329993356 +20,369.8492877304773,0.0,0.0,81.65242567622282,0.1266962090012384 +21,368.8047051618492,0.0,0.0,81.42181092752081,0.1263383749974309 +22,366.89142369116024,0.0,0.0,80.99941164687931,0.1256829580015619 +23,351.5059977726157,0.0,0.0,77.60273795306252,0.1204125000003841 +24,373.0993064216162,0.0,0.0,82.36993931874723,0.1278095410016249 +25,370.29701434336874,0.0,0.0,81.751271247095,0.126849583000876 +26,371.2468431633174,0.0,0.0,81.96096700614838,0.1271749579973402 +27,392.0700979045949,0.0,0.0,86.55816190824662,0.1343082080056774 +28,371.75271404089193,0.0,0.0,82.07264921185542,0.1273482499964302 +29,351.3996928408619,0.0,0.0,77.57926878379007,0.1203760839998722 +0,383.9545030041101,0.7483167138634322,0.0,83.74344316053501,0.1290693749979254 +1,380.5712962296334,0.7417229373717164,0.0,83.00553962768936,0.1279320829999051 +2,379.3227523689651,0.739289559896991,0.0,82.73322256665416,0.1275123750019702 +3,381.40609713820413,0.7433499412686473,0.0,83.18761615470044,0.1282127079975907 +4,377.8933649477449,0.7365037233212605,0.0,82.42146212804288,0.1270318749957368 +5,377.3349727742443,0.7354154324090517,0.0,82.29967248141297,0.1268441670035827 +6,379.478432147369,0.7395929754821154,0.0,82.7671775289531,0.1275647080037742 +7,377.5122197834027,0.735760881930799,0.0,82.3383314233467,0.1269037500023841 +8,380.0270342943452,0.7406621859032241,0.0,82.88683189516989,0.127749125000264 +9,380.193747573396,0.7409871054761438,0.0,82.92319334919391,0.1278051670014974 +10,379.8107431500959,0.7402406404413634,0.0,82.83965712575622,0.1276764170033857 +11,380.1485069545946,0.7408989327605493,0.0,82.91332602074876,0.127789959005895 +12,378.1696487293581,0.7370421927751486,0.0,82.4817217551098,0.127124749997165 +13,376.8617310030964,0.7344930972774735,0.0,82.19645479532454,0.1266850829997565 +14,377.38604101189975,0.7355149629927175,0.0,82.31081085854865,0.126861333999841 +15,409.16660621043746,0.7974544061507464,0.0,89.24239763377898,0.1375446250021923 +16,378.49080129962533,0.7376681102579515,0.0,82.5517676115944,0.1272327080005197 +17,379.5870120263693,0.739804594665142,0.0,82.79085963934453,0.1276012079979409 +18,381.6391244917863,0.7438041051399095,0.0,83.23844122065715,0.1282910420050029 +19,376.7888515799983,0.7343510572962405,0.0,82.180559230152,0.1266605839991825 +20,377.4415684624742,0.7356231844591099,0.0,82.32292182446949,0.1268799999961629 +21,373.44320153344626,0.727830477829183,0.0,81.45084710979312,0.1255359169954317 +22,378.64301246702775,0.7379647656161066,0.0,82.58496604303883,0.1272838750010123 +23,377.3484842839751,0.7354417659680592,0.0,82.3026194460619,0.1268487090055714 +24,376.84487583582137,0.7344602470223307,0.0,82.19277855313538,0.1266794170005596 +25,376.29156456901205,0.7333818586568273,0.0,82.07209709150493,0.1264934169957996 +26,379.8661486341485,0.7403486241983759,0.0,82.85174148983643,0.1276950419996865 +27,330.59219602187005,0.6443150524876986,0.0,72.10471178294154,0.1111312089997227 +28,378.01967163799566,0.7367498915694458,0.0,82.44901059290798,0.1270743339991895 +29,323.76578983555265,0.6310105755122394,0.0,70.61581985959697,0.1088364579991321 +0,380.718739039475,0.8290191164521274,0.0,81.70812411752168,0.1257333750036195 +1,385.49185126773415,0.8394126192573255,0.0,82.732507754002,0.1273097079974832 +2,386.846623126437,0.8423626494347988,0.0,83.02326272829377,0.1277571250029723 +3,399.32570515585775,0.8695359837032004,0.0,85.70146655378743,0.1318783749957219 +4,385.47179087039615,0.8393689375280814,0.0,82.72820248276771,0.1273030829979688 +5,380.5954758354475,0.8287507095101634,0.0,81.68166992932171,0.1256926670030225 +6,387.6139629073988,0.8440335399952068,0.0,83.18794570192759,0.1280105410041869 +7,385.23207743578854,0.8388469589665284,0.0,82.67675627574104,0.1272239169993554 +8,385.3755251845919,0.8391593179701069,0.0,82.70754237913374,0.1272712909994879 +9,383.9541407017457,0.8360642380928179,0.0,82.40249130642813,0.1268018749979091 +10,394.5344250130931,0.8591029200703185,0.0,84.6731838021306,0.1302960419998271 +11,367.7290630532556,0.8007339583948602,0.0,78.92033893939742,0.1214435000001685 +12,386.9519727694939,0.842592049406615,0.0,83.04587238951598,0.1277919170024688 +13,386.76751701797167,0.842190395039569,0.0,83.00628533509993,0.1277310000004945 +14,389.79625873536,0.8487855124452574,0.0,83.65630010660458,0.1287312499989639 +15,386.1857654511051,0.840923624795543,0.0,82.88143245984871,0.1275388750000274 +16,384.70394542270975,0.8376969458729853,0.0,82.56341098524143,0.127049499998975 +17,367.3595217360487,0.7999292782337094,0.0,78.8410296627144,0.1213214579984196 +18,386.25515776612383,0.8410747273018984,0.0,82.8963251228751,0.1275617919964133 +19,384.5443463896712,0.8373494172756537,0.0,82.52915856668842,0.1269967919943155 +20,339.5262861430443,0.7393221107548216,0.0,72.86758723599522,0.1121294580007088 +21,381.7327354125574,0.8312271043736552,0.0,81.92574340706746,0.1260682499996619 +22,376.44272194280825,0.8197080435998786,0.0,80.79042477720404,0.1243212089975713 +23,386.59656306590654,0.8418181409849023,0.0,82.96959597547198,0.1276745420036604 +24,386.3097856350467,0.8411936800693467,0.0,82.90804910763481,0.1275798329952522 +25,385.05569734841544,0.8384628894443328,0.0,82.63890238363345,0.1271656670069205 +26,385.4779740076497,0.839382401375424,0.0,82.72952947956179,0.1273051249954733 +27,384.01041275862553,0.8361867710970855,0.0,82.41456815932875,0.1268204589941888 +28,388.9389605532855,0.846918736506588,0.0,83.47231067008931,0.1284481249967939 +29,371.45499825295536,0.8088472220471984,0.0,79.71998220497187,0.1226739999983692 +0,382.2958550247492,0.6363782412362217,0.0,82.59519699413276,0.1278283330029808 +1,381.97809640969257,0.6358492931298545,0.0,82.52654509780112,0.1277220839983783 +2,380.5597552098989,0.6334882906069809,0.0,82.22011182299026,0.1272478329992736 +3,380.82841851267926,0.6339355135571146,0.0,82.27815665430761,0.1273376659955829 +4,376.7383916839739,0.627127163307824,0.0,81.39450445879442,0.1259700829978101 +5,383.4486462387653,0.6382972033061627,0.0,82.84425807121039,0.1282137920061359 +6,394.616409505073,0.6568873121251435,0.0,85.2570585105581,0.131947958994715 +7,382.8685735518281,0.6373316013215992,0.0,82.71893309784545,0.1280198329986888 +8,377.48706491144566,0.6283734215277262,0.0,81.55625565723015,0.1262204169979668 +9,381.2172121703717,0.6345827081861803,0.0,82.3621557045853,0.127467667000019 +10,377.71186368099495,0.628747626593561,0.0,81.6048235357748,0.1262955830025021 +11,378.5886374541328,0.630207123850405,0.0,81.79425091658413,0.1265887500048848 +12,384.2867861706764,0.6396923898057518,0.0,83.02533859268337,0.1284940410041599 +13,380.8978296360755,0.6340510568674816,0.0,82.29315295974789,0.1273608750052517 +14,379.0602973204849,0.6309922594260744,0.0,81.89615324972102,0.126746458998241 +15,379.1474013908543,0.6311372548121809,0.0,81.91497212457043,0.1267755840017344 +16,376.1731498918869,0.6261862491629446,0.0,81.2723837071485,0.1257810829993104 +17,377.5617067268463,0.6284976719651376,0.0,81.5723820561068,0.1262453749950509 +18,383.5442229208476,0.6384563023914582,0.0,82.86490745775453,0.1282457499983138 +19,381.9093103911899,0.6357347903830917,0.0,82.51168384656337,0.1276990840051439 +20,381.43017374632535,0.6349372087944789,0.0,82.4081661519571,0.1275388750000274 +21,370.9409249040661,0.6174765702801169,0.0,80.1419590689878,0.1240315830000327 +22,369.4954222035849,0.6150703541149565,0.0,79.8296575393412,0.1235482500051148 +23,379.72236293625485,0.6320943486760857,0.0,82.03919283343302,0.1269678339958773 +24,389.0476024699843,0.6476173512291662,0.0,84.053915164796,0.1300859159964602 +25,382.10893643234783,0.6360670923615392,0.0,82.5548131454503,0.1277658330000122 +26,377.6365997636065,0.6286223405912497,0.0,81.58856273147482,0.1262704169930657 +27,380.6645552301474,0.6336627430675312,0.0,82.24275391602801,0.1272828750006738 +28,380.58679709483806,0.6335333051342145,0.0,82.22595423478805,0.1272568749991478 +29,381.4469964163775,0.6349652121877669,0.0,82.41180069763332,0.1275444999992032 +0,373.4679684774317,0.8598394740470402,0.0,80.75876906241815,0.1260774999973364 +1,376.217023324055,0.8661686537169423,0.0,81.35322509141436,0.1270055420027347 +2,377.1833197368303,0.8683933687379428,0.0,81.5621771714637,0.1273317499944823 +3,378.51347327307474,0.8714557960772109,0.0,81.84980977002112,0.1277807910009869 +4,382.865699575474,0.8814759752910939,0.0,82.79093583310966,0.1292500409981585 +5,375.876863906177,0.8653855008908706,0.0,81.27966896828869,0.126890708997962 +6,375.1596359908969,0.8637342190528043,0.0,81.12457549719032,0.1266485830055899 +7,376.53583111378606,0.8669026484511146,0.0,81.42216413529314,0.1271131670000613 +8,375.94264867034286,0.8655369578879761,0.0,81.29389427547838,0.1269129170032101 +9,375.8252711087258,0.8652667182172029,0.0,81.26851253409266,0.1268732919998001 +10,378.7735315782241,0.8720545312170218,0.0,81.90604481661413,0.1278685830038739 +11,379.158248535522,0.8729402693636388,0.0,81.98923606869253,0.127998458003276 +12,378.9795295578257,0.872528802665675,0.0,81.95058985036839,0.1279381250060396 +13,380.905955104168,0.8769640337118894,0.0,82.3671603970936,0.1285884590033674 +14,379.9429881850501,0.8747469842213144,0.0,82.15892828724806,0.128263375001552 +15,377.3140272564953,0.8686942981199751,0.0,81.59044138496074,0.1273758750030538 +16,374.7936786871426,0.862891671466015,0.0,81.04544083538494,0.1265250409996952 +17,376.2823133627069,0.8663189717019728,0.0,81.36734341908529,0.1270275829956517 +18,375.37291506103014,0.8642252538374908,0.0,81.17069499504433,0.1267205830008606 +19,375.49547646408945,0.8645074283243005,0.0,81.19719769107468,0.1267619579957681 +20,374.25826226896214,0.8616589762678664,0.0,80.92966230946652,0.1263442919953377 +21,374.6344599210041,0.8625251003228643,0.0,81.01101134570904,0.1264712909978698 +22,381.1752673455372,0.8775840742923906,0.0,82.42539651623146,0.1286793750041397 +23,377.2149146660136,0.868466110096197,0.0,81.5690092636505,0.127342415995372 +24,380.61787726065177,0.8763007888760247,0.0,82.30486640135585,0.1284912080009235 +25,377.792424091372,0.8697957164947907,0.0,81.69388998770303,0.1275373750031576 +26,372.2949335054875,0.8571387825327792,0.0,80.50511180557872,0.1256814999942435 +27,383.4238301968208,0.8827609656528239,0.0,82.91162608169985,0.1294384579960024 +28,347.61244727258975,0.800312018868975,0.0,75.16776731069372,0.1173490420042071 +29,379.3691845025126,0.8734259095957962,0.0,82.0348488935744,0.1280696670000907 +0,409.7432016519503,0.0,0.0,85.12186275014173,0.1307500839975546 +1,393.07600901568975,0.0,0.0,81.6593465246277,0.1254315409969422 +2,386.7646891747356,0.0,0.0,80.34820506063755,0.1234175829958985 +3,400.02309949515256,0.0,0.0,83.10256578957589,0.1276483750043553 +4,400.4175651822858,0.0,0.0,83.18451383397155,0.1277742499951273 +5,396.0818362122956,0.0,0.0,82.2837903446803,0.126390707999235 +6,397.7300808589709,0.0,0.0,82.6262039686948,0.1269166670026607 +7,395.98168657862607,0.0,0.0,82.26298481737118,0.1263587499997811 +8,396.5324500295691,0.0,0.0,82.37740284966543,0.1265344999992521 +9,398.14478456222105,0.0,0.0,82.71235634795994,0.1270489999951678 +10,399.33118701966725,0.0,0.0,82.95882483539796,0.127427583996905 +11,397.223970778421,0.0,0.0,82.52106242482209,0.1267551660057506 +12,402.9354331958688,0.0,0.0,83.70758685778524,0.128577707997465 +13,397.41304479758514,0.0,0.0,82.56034149679698,0.1268154999997932 +14,398.0741427062589,0.0,0.0,82.69768089674226,0.1270264580016373 +15,396.5969559370069,0.0,0.0,82.39080359183116,0.1265550839962088 +16,397.6237921301951,0.0,0.0,82.60412307864888,0.1268827500025509 +17,396.8564054927456,0.0,0.0,82.44470278865771,0.1266378750005969 +18,401.5578727472503,0.0,0.0,83.42140636482142,0.1281381250009872 +19,397.34449316119225,0.0,0.0,82.54610027702614,0.1267936250005732 +20,397.6506894306738,0.0,0.0,82.60971084266905,0.1268913329986389 +21,397.0926148741081,0.0,0.0,82.49377396899592,0.1267132500070147 +22,396.0943744971357,0.0,0.0,82.2863951033608,0.1263947089973953 +23,397.0390803449771,0.0,0.0,82.48265246942572,0.1266961670044111 +24,396.6367801479797,0.0,0.0,82.39907684934194,0.1265677920018788 +25,397.0900012730987,0.0,0.0,82.49323100797669,0.1267124160003732 +26,394.427458763678,0.0,0.0,81.94010266529867,0.1258627920033177 +27,406.09638297638475,0.0,0.0,84.36425652867271,0.1295863750056014 +28,407.3996475439181,0.0,0.0,84.63500246709813,0.1300022499999613 +29,408.0202694203579,0.0,0.0,84.76393319730442,0.1302002919983351 +0,381.07748589154943,0.9142608955990612,0.0,81.70783485483462,0.1273355840021395 +1,382.1498698476569,0.9168337023179968,0.0,81.93776754419727,0.1276939169983961 +2,379.7503451515355,0.911076889913938,0.0,81.4232790874938,0.1268921250011772 +3,379.7587007640026,0.9110969362562706,0.0,81.42507063653262,0.1268949169971165 +4,380.9400699708801,0.913931214609362,0.0,81.67837114268114,0.1272896669979673 +5,312.09731859928553,0.7487673362520624,0.0,66.91761416208246,0.1042861250025453 +6,377.40880702846295,0.905459195820908,0.0,80.92122368577226,0.1261097089955001 +7,369.45457562223146,0.8863758256442376,0.0,79.21573582516834,0.1234518330020364 +8,379.7615677832445,0.9111038146567978,0.0,81.42568536173529,0.1268958750006277 +9,377.5661692958721,0.9058367310279496,0.0,80.95496414705343,0.1261622909951256 +10,380.5384223868755,0.9129676030252032,0.0,81.59225281851168,0.1271554579943767 +11,376.2526243984716,0.9026853437674368,0.0,80.67332350040093,0.1257233749929582 +12,394.5627248223053,0.9466139657190548,0.0,84.59924071407701,0.1318416249996516 +13,379.1496858831548,0.9096358200502204,0.0,81.29449014004376,0.126691417004622 +14,378.82859285824617,0.9088654706924336,0.0,81.22564373262378,0.1265841249987715 +15,379.1090329887456,0.9095382877817784,0.0,81.28577364509003,0.1266778329954831 +16,369.844500756352,0.8873113133482764,0.0,79.29934070775522,0.1235821249938453 +17,358.16984667652713,0.8593021023872608,0.0,76.79614715038741,0.1196810839974205 +18,381.92828421094526,0.916302085809092,0.0,81.89025677990145,0.127619875005621 +19,379.69398358636266,0.910941670235631,0.0,81.41119445476214,0.1268732919998001 +20,383.9252904409535,0.92109319725482,0.0,82.31844018429187,0.1282871669973246 +21,380.05136011409303,0.9117990690492724,0.0,81.48782050429239,0.1269927079993067 +22,379.801843560333,0.9112004421653628,0.0,81.43432099796371,0.1269093329974566 +23,361.7164472257748,0.8678109183486689,0.0,77.55658318427177,0.1208661670025321 +24,382.12418349614495,0.9167720769855974,0.0,81.93226006541654,0.127685334002308 +25,378.08752496595537,0.9070875399041048,0.0,81.06674939957796,0.1263364999977057 +26,375.8814036432744,0.901794730617417,0.0,80.59372907332693,0.1255993329978082 +27,378.0292929694226,0.906947832786068,0.0,81.05426372269564,0.1263170419988455 +28,378.28604288554345,0.9075638135693684,0.0,81.10931415344024,0.1264028340010554 +29,358.05400217579785,0.8590241744043489,0.0,76.7713086236183,0.1196423750006943 +0,412.98932313149817,0.7078083559749826,0.0,85.17293883565624,0.1275595830011298 +1,408.2563289084672,0.6996966381357881,0.0,84.19682878900649,0.1260977079946315 +2,398.46671461601534,0.6829185511251386,0.0,82.17786565205834,0.1230740000028163 +3,411.4529401838479,0.7051752014903131,0.0,84.85608257933434,0.1270850419969065 +4,414.8404317742507,0.7109809081252971,0.0,85.55470261107743,0.1281313330036937 +5,408.47783711053495,0.7000762735102615,0.0,84.24251157906812,0.1261661250027828 +6,416.5627123071881,0.7139326661593856,0.0,85.90989749451272,0.1286632920018746 +7,410.51376198822584,0.7035655759204067,0.0,84.66239096908893,0.126794959003746 +8,402.16515358274376,0.6892571798937093,0.0,82.940613980543,0.1242163330025505 +9,400.6119058664099,0.68659512145553,0.0,82.62027961514877,0.1237365829947521 +10,411.9733874589612,0.7060671783757598,0.0,84.96341713121643,0.1272457920058514 +11,405.293774860722,0.6946192175038898,0.0,83.58584583963474,0.1251826670049922 +12,411.592562504149,0.7054144954368015,0.0,84.88487761756177,0.1271281669978634 +13,410.53844558140497,0.7036078802913168,0.0,84.66748159505512,0.1268025829995167 +14,409.4418381434523,0.7017284420968333,0.0,84.44132253231894,0.1264638749998994 +15,399.1943694562683,0.6841656540097638,0.0,82.32793369917492,0.1232987499970477 +16,423.8805372970304,0.7264744375448983,0.0,87.41909065123609,0.1309235410008113 +17,404.75498001196144,0.6936957953359333,0.0,83.47472737209064,0.1250162500000442 +18,405.0640366505944,0.6942254769984887,0.0,83.53846573215148,0.1251117080028052 +19,409.94677073595705,0.7025938288953806,0.0,84.54545741041079,0.1266198330049519 +20,359.6831412166489,0.6164487036276526,0.0,74.17932733652752,0.1110949579961015 +21,406.9939295012353,0.6975330547234099,0.0,83.93647758505033,0.1257077920017764 +22,411.8723445926467,0.7058940044434491,0.0,84.94257853469503,0.1272145830007502 +23,413.7026806563289,0.7090309551769286,0.0,85.32005827295708,0.1277799169984064 +24,410.7824843577903,0.7040261300508933,0.0,84.71781098279082,0.1268779590027406 +25,412.9742164051753,0.7077824650704874,0.0,85.16982329681531,0.1275549170022714 +26,415.0039315041089,0.7112611247520025,0.0,85.5884220118243,0.1281818329953239 +27,413.7938714419469,0.7091872439631833,0.0,85.33886502356972,0.1278080830015824 +28,416.23598151252776,0.7133726933618773,0.0,85.84251410121257,0.1285623750009108 +29,415.939606641908,0.712864746550238,0.0,85.78139116821198,0.1284708340026554 +0,377.1820290803233,1.236114710006374,0.0,85.75963406990168,0.1272651670005871 +1,396.406509388618,1.2991178784215116,0.0,90.1306917272438,0.1337517080028192 +2,380.5058737324628,1.247007734995671,0.0,86.51537447929425,0.1283866669982671 +3,378.1783407682509,1.2393798590279257,0.0,85.98616481418068,0.1276013329988927 +4,379.5832823507744,1.2439841848519624,0.0,86.30560547337804,0.1280753750033909 +5,377.06804624597976,1.235741161302148,0.0,85.73371786655714,0.1272267079984885 +6,370.7526672996835,1.2150441709555615,0.0,84.29779423899801,0.1250958329983404 +7,376.4828302874184,1.2338232702067742,0.0,85.60065769245378,0.1270292500048526 +8,372.3979185608552,1.2204360484279575,0.0,84.67187395444776,0.1256509580052807 +9,375.7664684012465,1.2314755828915962,0.0,85.43777895358724,0.1267875420016935 +10,375.9752882211583,1.232159934825762,0.0,85.48525818101977,0.1268579999959911 +11,374.2507567137714,1.2265082372373377,0.0,85.09315256724989,0.1262761250036419 +12,380.0242615418349,1.2454293779493255,0.0,86.40587062691674,0.1282241660010186 +13,380.4472152044884,1.2468154971271983,0.0,86.50203732771672,0.1283668749965727 +14,377.21006020626527,1.2362065746352362,0.0,85.76600748888247,0.1272746249960619 +15,375.37784381471806,1.2302019682147536,0.0,85.34941763262898,0.1266564159959671 +16,374.30225183744705,1.2266769989358317,0.0,85.10486098022379,0.1262934999977005 +17,373.8186657972894,1.2250921731177775,0.0,84.994908334955,0.1261303330029477 +18,371.4096326908021,1.217197201909626,0.0,84.44716803518945,0.1253175000019837 +19,376.4179982557576,1.2336108003067343,0.0,85.58591687533479,0.1270073749983566 +20,374.82881226544566,1.2284026619859605,0.0,85.22458468426919,0.1264711670010001 +21,376.9076333315407,1.2352154502450847,0.0,85.6972448859225,0.1271725830010837 +22,378.6972458282743,1.2410804336267625,0.0,86.10414792215944,0.1277764170008595 +23,379.69145919861137,1.244338705965334,0.0,86.33020157332466,0.1281118750048335 +24,352.75184196457076,1.1560512092727298,0.0,80.20495822170533,0.1190221659999224 +25,378.32986245382807,1.2398764314253,0.0,86.02061620185799,0.1276524580025579 +26,377.6759852809123,1.2377335212926268,0.0,85.87194457184252,0.1274318329960806 +27,377.50507476213335,1.2371734071035372,0.0,85.83308475769675,0.1273741659970255 +28,375.70607905129725,1.231277672710186,0.0,85.42404826613641,0.1267671660025371 +29,374.34806546424096,1.2268271410254132,0.0,85.11527759492529,0.1263089579952065 +0,580.8490462076469,0.4375130425111193,22.313165168067087,110.42156095992172,0.1313430000009248 +1,577.9638128096457,0.4353397975853406,22.202329676852372,109.87306737519252,0.1306905840028775 +2,571.3580595604811,0.4303641447526656,21.948571382385943,108.61728914873044,0.129196875001071 +3,509.83055091581105,0.3840197671884549,19.585008126611203,96.92068124194776,0.1152841250004712 +4,561.9166389561877,0.423252581634535,21.585881663361288,106.82244002637763,0.1270619579954655 +5,588.3427741262249,0.44315754468051,22.601034778706012,111.84614646898105,0.133037499996135 +6,579.4248575746424,0.4364403006240425,22.25845533182617,110.15081741134487,0.1310209590010345 +7,589.9617378100206,0.4443769970178033,22.66322684790797,112.15391747810868,0.1334035840045544 +8,568.8925810737016,0.4285070719020871,21.853860667006444,108.148592531596,0.1286393750051502 +9,566.2010082092825,0.4264796979385058,21.750464594863796,107.63691453355672,0.1280307499982882 +10,573.9961923270304,0.4323512660207077,22.049914567056092,109.11880798568784,0.1297934160029399 +11,577.1517483234071,0.434728126090984,22.171134430640183,109.71869090034755,0.1305069580048439 +12,550.8068744156343,0.4148843714817339,21.15910294556843,104.71043252550533,0.1245497909985715 +13,585.1588441311965,0.4407593124575904,22.478724935337112,111.24086955179648,0.1323175419965991 +14,576.6522047657539,0.4343518547977751,22.151944594686533,109.6237258147308,0.1303939999997965 +15,578.589761320147,0.4358112809063045,22.226375326221532,109.99206251181424,0.1308321250035078 +16,570.777621784413,0.4299269414912433,21.92627401605341,108.50694577175148,0.1290656249984749 +17,559.7279309023393,0.4216039806321577,21.50180301224005,106.40635849646996,0.1265670420034439 +18,558.0234692978677,0.4203201286790822,21.43632656263319,106.0823340150822,0.1261816249971161 +19,572.4636552907116,0.4311969128442697,21.991042555057753,108.82746700323452,0.1294468749983934 +20,589.0921823257316,0.4437220215675596,22.62982309994554,111.98861175101254,0.1332069580021198 +21,603.2062175688262,0.4543531391386952,23.172010096073453,114.67174227031222,0.1363984580020769 +22,573.9807183735716,0.4323396105716687,22.049320139155103,109.115866329665,0.1297899169949232 +23,590.8758797423774,0.4450655563271861,22.69834337268649,112.32769925457674,0.1336102920031407 +24,580.168923511577,0.4370007535575931,22.287038431437253,110.29226710942024,0.1311892090016044 +25,567.5760022837,0.4275153849984414,21.80328463492051,107.8983060138374,0.1283416670048609 +26,596.6714126054211,0.4494309266974027,22.92097726156754,113.42945157647527,0.1349207919993205 +27,581.5726586284954,0.4380580892386836,22.340962551172865,110.55912236862468,0.1315066250026575 +28,602.7321027138048,0.4539960215122233,23.15379709712339,114.58161127550808,0.1362912499971571 +29,575.0345324443498,0.4331333751536327,22.08980213283527,109.31620029838992,0.130028207997384 +0,408.9962262664038,0.0,0.0,92.22430806205357,0.1264326250020531 +1,408.3315912866297,0.0,0.0,92.07443992834716,0.1262271670057089 +2,386.8253353097512,0.0,0.0,87.22500746639305,0.1195789579942356 +3,408.41677576919375,0.0,0.0,92.09364812504327,0.126253500005987 +4,410.1044494159173,0.0,0.0,92.47420061992683,0.1267752089988789 +5,408.0670027544839,0.0,0.0,92.01477802261016,0.1261453749975771 +6,408.1467946849229,0.0,0.0,92.03277025603695,0.1261700410032062 +7,408.5973928664444,0.0,0.0,92.1343753634586,0.1263093340021441 +8,386.5837986845974,0.0,0.0,87.17054352101684,0.1195042920007836 +9,409.48146044469627,0.0,0.0,92.33372321913114,0.1265826249946258 +10,407.3952218840771,0.0,0.0,91.86329856641038,0.1259377079986734 +11,409.46030100316216,0.0,0.0,92.32895198964506,0.1265760839960421 +12,415.01542067501595,0.0,0.0,93.58157251530466,0.1282933330003288 +13,409.88663100545983,0.0,0.0,92.42508488022676,0.1267078749951906 +14,386.8309963950141,0.0,0.0,87.22628398103481,0.119580708000285 +15,408.6011647578864,0.0,0.0,92.13522588494506,0.1263105000034556 +16,406.44537592628774,0.0,0.0,91.64911838430376,0.1256440829965868 +17,396.8252034977494,0.0,0.0,89.4798716072401,0.1226702079948154 +18,405.77534837085153,0.0,0.0,91.49803428202073,0.1254369579983176 +19,415.27138496028545,0.0,0.0,93.6392897449062,0.1283724590030033 +20,386.2670475021751,0.0,0.0,87.09911949128092,0.1194063750008354 +21,361.9479179930077,0.0,0.0,81.61541390277617,0.1118886249969364 +22,407.4975254542064,0.0,0.0,91.88636693565569,0.1259693330066511 +23,409.9073893301796,0.0,0.0,92.42976566212856,0.1267142919969046 +24,410.7303983241888,0.0,0.0,92.61534545511154,0.1269687080057338 +25,414.45147178217695,0.0,0.0,93.45440802555076,0.1281190000008791 +26,386.3541211550232,0.0,0.0,87.11875367582502,0.1194332919985754 +27,409.1427411144483,0.0,0.0,92.25734560522376,0.1264779170014662 +28,409.6813478367339,0.0,0.0,92.37879570449192,0.1266444159991806 +29,405.9621635490298,0.0,0.0,91.54015912190069,0.1254947080014972 +0,392.6923196485306,0.0,0.0,80.61026913897126,0.1246850840034312 +1,400.5184957667552,0.0,0.0,82.21679448121304,0.1271699999997508 +2,398.0520646223312,0.0,0.0,81.71049560950932,0.12638687499566 +3,399.9544786756752,0.0,0.0,82.10101536551342,0.1269909170005121 +4,403.1854443963641,0.0,0.0,82.7642547600517,0.128016791997652 +5,381.7259833976352,0.0,0.0,78.3591446009504,0.121203125003376 +6,401.6000783728319,0.0,0.0,82.43881732354902,0.1275134169991361 +7,402.39545260740823,0.0,0.0,82.60208848498345,0.1277659589977702 +8,399.54084576275824,0.0,0.0,82.01610649725541,0.1268595829969854 +9,402.8376890448656,0.0,0.0,82.69286896747012,0.127906375004386 +10,414.9605369904961,0.0,0.0,85.18139748389932,0.1317555419955169 +11,400.0866242774884,0.0,0.0,82.12814167278938,0.1270328750033513 +12,394.6405270092331,0.0,0.0,81.01018915733403,0.1253036659982171 +13,400.0064449881728,0.0,0.0,82.1116827970546,0.12700741700246 +14,404.0993175654207,0.0,0.0,82.95185089685027,0.1283069589990191 +15,388.2460478319902,0.0,0.0,79.69755669245045,0.1232733330034534 +16,399.35397808432066,0.0,0.0,81.97774706647837,0.1268002500000875 +17,378.67151729069445,0.0,0.0,77.73213632338405,0.1202332910033874 +18,401.68130957217824,0.0,0.0,82.45549213106155,0.1275392089955858 +19,402.932305515202,0.0,0.0,82.71229144852506,0.1279364170040935 +20,412.2750852029493,0.0,0.0,84.63013895267154,0.1309028749965364 +21,397.8178225633283,0.0,0.0,81.66241136014895,0.1263124999968568 +22,404.07320215275104,0.0,0.0,82.94649003202395,0.1282986670048558 +23,388.3529976403705,0.0,0.0,79.71951091056607,0.1233072910035844 +24,403.0031686498588,0.0,0.0,82.72683794223248,0.1279589170007966 +25,400.56206556674624,0.0,0.0,82.22573831109683,0.1271838339962414 +26,401.1814598637611,0.0,0.0,82.35288503255603,0.127380500001891 +27,401.3059963273414,0.0,0.0,82.37844936713687,0.1274200420011766 +28,400.4161378903073,0.0,0.0,82.19578287605523,0.1271374999996624 +29,402.8306027222338,0.0,0.0,82.69141431621779,0.1279041250018053 +0,415.7783080782846,0.8040189665521579,0.0,85.15900887398273,0.1279306249998626 +1,422.0703652356464,0.8161863480505611,0.0,86.44773736435526,0.1298666250004316 +2,412.1424740692448,0.7969881055242829,0.0,84.41432351011363,0.1268119170053978 +3,412.8796880127735,0.7984137065753416,0.0,84.56531842143826,0.1270387500044307 +4,411.469987685372,0.7956876725847174,0.0,84.27658598793131,0.126604999997653 +5,417.09240227999413,0.8065601204350865,0.0,85.42815942274959,0.1283349580044159 +6,423.1217497992159,0.8182194823286746,0.0,86.66308016997878,0.1301901250044466 +7,410.3781142890649,0.7935762422800385,0.0,84.05295032816075,0.1262690420044236 +8,428.2287649279869,0.8280952669625078,0.0,87.70909035911228,0.1317615000007208 +9,396.51809038688754,0.7667741656019097,0.0,81.21416370666894,0.1220044580040848 +10,413.8093329307429,0.8002114245699645,0.0,84.75572671903541,0.1273247919962159 +11,415.2038653608061,0.8029081273595478,0.0,85.04135248949876,0.127753875000053 +12,406.1880137216275,0.7854735580790476,0.0,83.19474102653912,0.1249797920027049 +13,412.5154149354085,0.7977092867979858,0.0,84.49070862668667,0.1269266669987701 +14,414.41438118510587,0.8013814477836227,0.0,84.8796516777487,0.1275109589987551 +15,412.0941298430406,0.7968946189858169,0.0,84.40442172758111,0.1267970419939956 +16,410.6939066492969,0.7941869115770788,0.0,84.11763038453893,0.1263662080018548 +17,411.3194040682454,0.7953964787396575,0.0,84.24574370650872,0.1265586669978802 +18,412.5823102935587,0.7978386469297728,0.0,84.5044100206451,0.1269472499989206 +19,412.33449554725235,0.7973594305965721,0.0,84.45365302402026,0.1268710000003921 +20,412.1220248573652,0.7969485614839066,0.0,84.41013513717044,0.1268056249973597 +21,408.4131984224167,0.7897765500070906,0.0,83.65049958825101,0.125664457998937 +22,413.2637309924356,0.7991563567656478,0.0,84.64397745409487,0.1271569160016952 +23,423.52014813900183,0.8189898924612073,0.0,86.74467944318287,0.130312707995472 +24,416.4831582301618,0.8053819835246059,0.0,85.3033750883145,0.1281474999996135 +25,414.7721509379288,0.8020732916372808,0.0,84.95292947258199,0.1276210409996565 +26,413.9803657361021,0.8005421624096729,0.0,84.79075736855785,0.1273774169967509 +27,403.1514038574026,0.7796014577856469,0.0,82.57278773712977,0.1240454589933506 +28,412.93290724944114,0.7985166202551437,0.0,84.5762186953573,0.1270551250054268 +29,421.5257122781883,0.8151331153554523,0.0,86.33618246806499,0.1296990409973659 +0,366.2560098974747,0.0,0.0,80.782447497649,0.1274277500051539 +1,365.89170187996734,0.0,0.0,80.70209470478835,0.1273010000004433 +2,364.4120767633234,0.0,0.0,80.37574446050172,0.1267862089953269 +3,368.47179868647106,0.0,0.0,81.27116805560814,0.1281986669928301 +4,363.8536378653771,0.0,0.0,80.25257361897307,0.1265919169964036 +5,365.55697252599737,0.0,0.0,80.62826586449009,0.1271845410010428 +6,378.0393748010996,0.0,0.0,83.38141933961053,0.1315274170046905 +7,365.74355857140546,0.0,0.0,80.6694198032915,0.1272494579970953 +8,367.84473766973,0.0,0.0,81.13286172808361,0.1279804999940097 +9,366.06882597778775,0.0,0.0,80.7411616900284,0.1273626249967492 +10,365.15554103083457,0.0,0.0,80.53972501381307,0.1270448750001378 +11,367.1380376617663,0.0,0.0,80.9769900024404,0.1277346250062692 +12,365.718411986348,0.0,0.0,80.66387340232536,0.1272407090000342 +13,365.05853593432187,0.0,0.0,80.51832929905542,0.1270111249978072 +14,366.3053517052931,0.0,0.0,80.7933304644586,0.1274449170014122 +15,365.14751907167664,0.0,0.0,80.53795566811773,0.1270420840010047 +16,364.87015348468304,0.0,0.0,80.4767791403244,0.1269455829969956 +17,365.9639167863109,0.0,0.0,80.71802262603086,0.1273261250025825 +18,367.16306638263006,0.0,0.0,80.98251040695109,0.1277433329960331 +19,365.2581738498211,0.0,0.0,80.56236199474246,0.1270805829990422 +20,368.58413204647815,0.0,0.0,81.29594461493215,0.1282377500028815 +21,366.7016354671544,0.0,0.0,80.88073591671505,0.1275827920035226 +22,364.2557879222322,0.0,0.0,80.34127295762192,0.1267318329992122 +23,364.065011256822,0.0,0.0,80.29919472397987,0.1266654580031172 +24,365.0026092698173,0.0,0.0,80.50599395788157,0.126991666998947 +25,363.38262140802976,0.0,0.0,80.14868491487552,0.126428041003237 +26,363.3076529841561,0.0,0.0,80.13214967012348,0.1264019579975865 +27,363.3028616666555,0.0,0.0,80.13109288376646,0.1264002910029376 +28,366.2285868981014,0.0,0.0,80.77639900438956,0.1274182089982787 +29,366.2516985482337,0.0,0.0,80.78149657443056,0.1274262500010081 +0,372.41690745418873,0.6987808306413477,0.0,80.55944718965252,0.1263446250013657 +1,374.2191370831581,0.7021624266213653,0.0,80.94929689763454,0.1269560419968911 +2,373.5228809248077,0.7008560131719944,0.0,80.79868608997135,0.1267198330024257 +3,371.501789929257,0.6970637588022156,0.0,80.36149333619828,0.1260341660017729 +4,370.3486573602652,0.6949000897574668,0.0,80.11205320489653,0.1256429589993786 +5,374.18192034157033,0.7020925953514097,0.0,80.94124634979823,0.1269434159985394 +6,370.5881491675757,0.6953494578733997,0.0,80.16385892911909,0.1257242080027936 +7,373.7075999076504,0.701202608833154,0.0,80.83864361833646,0.1267825000031734 +8,370.2519987370816,0.6947187252929516,0.0,80.09114447305885,0.1256101669932832 +9,379.0060843435642,0.7111443684073311,0.0,81.98478647210231,0.1285800419937004 +10,375.18915124501297,0.7039825032295632,0.0,81.15912572946537,0.1272851250032545 +11,373.9755893616761,0.7017054482304501,0.0,80.89661381742475,0.1268734170007519 +12,367.24283941599487,0.6890725185611054,0.0,79.44021749697316,0.1245892920051119 +13,372.5727632508238,0.6990732691446837,0.0,80.59316117139426,0.1263974999965285 +14,371.65359274993415,0.6973485925436577,0.0,80.3943305975331,0.1260856660010176 +15,373.81703058021776,0.7014079380079139,0.0,80.86231513891236,0.1268196250020992 +16,373.319126157621,0.7004736999026127,0.0,80.75461083162978,0.1266507079999428 +17,373.544619672528,0.7008968024591752,0.0,80.8033885120792,0.1267272080003749 +18,371.64573438003544,0.6973338475679721,0.0,80.39263071247908,0.1260830000028363 +19,373.9364094859971,0.7016319334529968,0.0,80.88813861379548,0.12686012499762 +20,376.57097253955624,0.7065752701331917,0.0,81.45803471392652,0.1277539160000742 +21,370.5016864025152,0.695187224307793,0.0,80.14515571662699,0.1256948750014999 +22,373.37292036397986,0.7005746361368457,0.0,80.76624733749064,0.1266689580006641 +23,375.5544124008384,0.7046678574354545,0.0,81.23813727863025,0.1274090419974527 +24,373.3273559434392,0.7004891417809348,0.0,80.75639105960205,0.1266535000031581 +25,372.41346757829376,0.6987743762637749,0.0,80.55870309212376,0.1263434580032481 +26,372.9915710309908,0.6998590950367054,0.0,80.68375567066019,0.1265395829977933 +27,372.91235353576593,0.699710456062463,0.0,80.66661972034395,0.1265127079968806 +28,378.0011879901325,0.7092588409393122,0.0,81.76741209114643,0.1282391249987995 +29,369.71209066552785,0.6937056740507581,0.0,79.97435413699455,0.1254270000063115 +0,392.97761719784035,0.0,0.0,82.14843481824815,0.1271557500003837 +1,393.8083216259164,0.0,0.0,82.32208610416524,0.1274245409949799 +2,392.782657800016,0.0,0.0,82.10768031039964,0.1270926669967593 +3,394.0904615657848,0.0,0.0,82.3810649198677,0.1275158330026897 +4,386.1846502784042,0.0,0.0,80.72842620762319,0.1249577499984297 +5,387.8018925343955,0.0,0.0,81.06649614910978,0.1254810410027858 +6,390.5682958318153,0.0,0.0,81.64478786602623,0.1263761659938609 +7,391.0349677496118,0.0,0.0,81.742341431275,0.1265271670054062 +8,394.99521491133027,0.0,0.0,82.57019546568124,0.1278085840021958 +9,389.8935329590793,0.0,0.0,81.50373475907328,0.1261578330013435 +10,386.8460219423448,0.0,0.0,80.86668000287307,0.1251717499981168 +11,395.2454142765718,0.0,0.0,82.62249739166286,0.1278895409996039 +12,405.8558215300987,0.0,0.0,84.84050755437045,0.1313227499995264 +13,394.8692730303716,0.0,0.0,82.54386844870608,0.1277678329934133 +14,390.91198968003886,0.0,0.0,81.71663397240133,0.126487374996941 +15,344.4968582488303,0.0,0.0,72.01396839529932,0.1114688329980708 +16,384.1205680557549,0.0,0.0,80.29694839182318,0.1242898750060703 +17,397.6399258501084,0.0,0.0,83.12304849002524,0.1286643330022343 +18,394.5017605534564,0.0,0.0,82.46704327232571,0.1276489169977139 +19,344.61906365958396,0.0,0.0,72.03951433679929,0.1115083749973564 +20,389.40123755570465,0.0,0.0,81.40082483472742,0.125998540999717 +21,390.4691426421824,0.0,0.0,81.62406078392506,0.1263440830007312 +22,383.5958221737522,0.0,0.0,80.1872549869132,0.1241200830045272 +23,405.63909868024984,0.0,0.0,84.7952035927062,0.1312526249967049 +24,392.9889501493175,0.0,0.0,82.15080386977927,0.1271594170029857 +25,393.90245582749657,0.0,0.0,82.34176401197539,0.1274549999943701 +26,388.23392583418934,0.0,0.0,81.15680882294728,0.1256208339982549 +27,391.1639970277912,0.0,0.0,81.76931384085839,0.1265689170031692 +28,375.36074051247016,0.0,0.0,78.46578526581658,0.1214554580001276 +29,394.00032031549273,0.0,0.0,82.36222170259528,0.127486666002369 +0,396.28272206978374,1.075120568565755,0.0,83.05306392170458,0.1265818329993635 +1,398.7468022997525,1.0818056526996254,0.0,83.56948667104606,0.1273689170047873 +2,398.4385652895779,1.0809694013791007,0.0,83.50488625653553,0.1272704590010107 +3,390.0256092913664,1.0581449340672937,0.0,81.74169615669842,0.1245831669948529 +4,399.47558813639074,1.083782858869394,0.0,83.7222258476607,0.1276017079944722 +5,378.16777035970983,1.0259744511666566,0.0,79.25652635262422,0.1207954999990761 +6,402.8359437074606,1.092899550541648,0.0,84.42649027934232,0.1286750829967786 +7,402.4778762471618,1.0919281085128596,0.0,84.3514463826184,0.1285607079989859 +8,396.55547947783856,1.0758605632294052,0.0,83.11022850947155,0.1266689580006641 +9,396.6259221126875,1.0760516750831708,0.0,83.12499190017495,0.1266914590014494 +10,399.3049711525487,1.0833199726054734,0.0,83.68646788377282,0.127547208998294 +11,376.5862720540822,1.0216838241399433,0.0,78.92507541481062,0.1202903329976834 +12,395.2441338660123,1.072302864240135,0.0,82.83539626255043,0.1262500839948188 +13,398.5322216572024,1.081223492414623,0.0,83.52451478902962,0.1273003750029602 +14,399.0628659124927,1.0826631377023963,0.0,83.63572738751013,0.1274698750057723 +15,398.004708047494,1.0797923406121075,0.0,83.4139583122853,0.1271318750004866 +16,396.15945608043654,1.0747861462122907,0.0,83.02722979489945,0.1265424590019392 +17,376.62984123582095,1.0218020279394888,0.0,78.93420665832551,0.1203042499982984 +18,402.568664946258,1.0921744195235483,0.0,84.37047390819413,0.1285897080015274 +19,397.9303552433974,1.0795906204144736,0.0,83.39837542701808,0.1271081250015413 +20,397.40231882300645,1.078158050219263,0.0,83.28770937943806,0.1269394580012885 +21,397.05742511220944,1.07722234875716,0.0,83.2154264414906,0.1268292910026502 +22,350.76980647561356,0.9516433918795788,0.0,73.51445202269747,0.112043959001312 +23,380.8374274856039,1.033217268294983,0.0,79.81603397578743,0.1216482500021811 +24,405.61921819575144,1.100450613163548,0.0,85.00980986688407,0.129564125003526 +25,397.6823831435901,1.07891786863882,0.0,83.34640535234885,0.1270289169988245 +26,395.58876147911013,1.0732378437754575,0.0,82.90762343165412,0.1263601659957203 +27,397.43884404649145,1.0782571436615285,0.0,83.29536434785305,0.1269511249993229 +28,398.0640619342796,1.079953368537257,0.0,83.42639771950311,0.1271508339996216 +29,374.88398411686927,1.0170654931530154,0.0,78.56830934607044,0.1197465830045985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/campaign2-interpretation.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/campaign2-interpretation.md new file mode 100644 index 000000000..33592dd90 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/campaign2-interpretation.md @@ -0,0 +1,363 @@ +# Interpretation of the measurements β€” rule "FetchType.LAZY on JPA collections" (S6904) + +*Campaign 2, run on 5 August 2026. Internal working document. Companion to +`campaign1/campaign1-interpretation.md`, whose conclusions this campaign +was designed to refine, not replace.* + +*Context note: SonarQube already ships a built-in rule under the identifier S6904, so the +four historical PRs this harness was built to support (#122, #125, #155, #325) are being +closed as duplicates rather than merged. This document is kept regardless, as independent +evidence that the underlying code smell has a real, measurable cost β€” useful to justify why +the built-in rule matters and to inform its configuration (severity, default scope), even +though no new rule will be shipped from this work.* + +--- + +## Summary + +**Campaign 2 confirms campaign 1's headline finding and adds one genuine complication.** +Six collection sizes were measured this time β€” 10, 30, 50, 100, 500 and 1000 β€” instead of +three, specifically to locate the relevance threshold that campaign 1 left open. At every +size, the effect is large, robust, and points the same way across all 30 phases +(sign test p β‰ˆ 1.9 Γ— 10⁻⁹ at each of the six sizes independently). + +**What is confirmed.** At the three sizes shared with campaign 1 (10, 100, 1000), the +relative gap reproduces within 0.6 percentage points despite the two campaigns running on +different days: 81.0% β†’ 81.30% at N=10, 86.3% β†’ 86.67% at N=100, 90.7% β†’ 90.13% at N=1000. +Absolute joule levels drift more than that between sessions (up to Β±15% at N=100), which +is exactly the reason campaign 1 argued for reporting relative, paired figures rather than +absolute totals β€” campaign 2 is a direct demonstration of that argument. + +**What is new, and not entirely clean.** The extra sizes do not simply fill in a smooth +curve between the three original points. Energy per hydrated row goes 0.33 β†’ 0.36 β†’ 0.47 +Β΅J from N=10 to N=30 to N=50, then **drops to 0.38 Β΅J at N=100** before resuming its climb +to 0.66 and 0.94 Β΅J at N=500 and N=1000. Fitted on energy *per read*, a single exponent +across all six points looks excellent (N^1.22, RΒ² = 0.995) simply because per-read values +span two orders of magnitude on the back of N itself β€” that fit hides the kink. Fitted on +energy *per row* instead, which divides out that trivial NΒΉ factor, the same six points +give RΒ² = 0.85: the local step from N=50 to N=100 is actually sub-linear (exponent β‰ˆ ++0.68), the opposite of what an averaged curve suggests. This is discussed in Β§ 4 and Β§ 6 +rather than smoothed over. + +**Also new**: the relative percentage gap is already 81% at N=10 and 84% at N=30 β€” large +from the smallest size tested. What grows with collection size is not "whether the effect +exists" but its **absolute magnitude** and its **share of average power** (EAGER overtakes +LAZY in average power draw somewhere between N=50 and N=100, a crossover campaign 1 could +only bracket, not locate). + +**Conclusion, updated from campaign 1**: there is no single clean scaling law. The coarse +trend holds (energy per row roughly triples from N=10 to N=1000, energy per read grows by +two orders of magnitude), but the fine-grained data shows a local anomaly around N=50–100 +whose cause is not established. + +--- + +## 1. What was measured + +Same scenario, same machine, same protocol as campaign 1 β€” see that document's Β§ 1 for the +full description. The only change is scope: **six** collection sizes instead of three, each +still measured over 30 phases Γ— 30 iterations = 900 runs per variant, with the same +60-second cooldown and randomised variant order. + +| | Campaign 1 | Campaign 2 | +|---|---|---| +| Date | 2026-08-04 | 2026-08-05 | +| Sizes | 10, 100, 1000 | 10, 30, 50, 100, 500, 1000 | +| Runs per variant per size | 900 | 900 | +| Rows hydrated per run (target) | β‰ˆ 5,000,000 | β‰ˆ 5,000,000 (same `CONFIGS`, unchanged) | +| Level 1 (JPA) | single run | **not re-run**; campaign 2 covers level 2 only | + +Level 1 figures quoted below are therefore still the single campaign-1 run +(`level1-jpa/results/level1-20260802-120143.txt`); nothing in this document changes them. +`ane_mj` is again **excluded from every total**, for the same reason as campaign 1 (see Β§ 5 +here and Β§ 4 of the campaign 1 document). + +--- + +## 2. Results + +### Level 2 β€” energy cost, all six sizes + +Means over 900 runs per variant, outliers removed at 3Οƒ, totals = CPU + GPU + DRAM: + +| N | EAGER | LAZY | Gap | Relative gap | Ratio | +|---:|---:|---:|---:|---:|---:| +| 10 | 2,049.0 mJ | 383.1 mJ | 1,665.9 mJ | +81.30% | x5.35 | +| 30 | 2,150.3 mJ | 345.6 mJ | 1,804.7 mJ | +83.93% | x6.22 | +| 50 | 2,743.9 mJ | 389.8 mJ | 2,354.0 mJ | +85.79% | x7.04 | +| 100 | 2,175.2 mJ | 290.0 mJ | 1,885.2 mJ | +86.67% | x7.50 | +| 500 | 3,787.8 mJ | 488.5 mJ | 3,299.3 mJ | +87.10% | x7.75 | +| 1000 | 5,192.2 mJ | 512.7 mJ | 4,679.5 mJ | +90.13% | x10.13 | + +**The relative gap climbs smoothly and monotonically** from 81.3% to 90.1% across the six +sizes β€” this part of the curve is clean. **The absolute EAGER mean does not climb +smoothly**: 2,743.9 mJ at N=50 is higher than 2,175.2 mJ at N=100, a reversal that recurs at +the phase level (Β§ 4) and is not an artefact of a single bad phase. + +### The correct statistic: at the phase level + +As in campaign 1, the 900 runs within a phase are not independent (they share thermal and +system state), so the valid unit of analysis is the phase, n = 30 pairs: + +| N | Gap per phase | 95% CI | Relative gap | Phases same direction | r(EAGER, LAZY) | +|---:|---:|---:|---:|:---:|---:| +| 10 | 1,665.9 mJ | [1,557.4, 1,774.5] | 81.30% | **30 / 30** | +0.885 | +| 30 | 1,831.3 mJ | [1,709.4, 1,953.3] | 84.13% | **30 / 30** | +0.966 | +| 50 | 2,354.0 mJ | [2,223.4, 2,484.6] | 85.79% | **30 / 30** | +0.969 | +| 100 | 1,877.1 mJ | [1,856.6, 1,897.7] | 86.25% | **30 / 30** | **+0.101** | +| 500 | 3,299.3 mJ | [3,141.4, 3,457.2] | 87.10% | **30 / 30** | +0.981 | +| 1000 | 4,675.7 mJ | [4,525.2, 4,826.2] | 90.02% | **30 / 30** | +0.732 | + +All 30 phases point the same way at every one of the six sizes. **Sign test at each size: +p = 2 Γ— 0.5³⁰ β‰ˆ 1.9 Γ— 10⁻⁹.** Six independent confirmations of the same result, at six +different sizes, each with the maximum significance a 30-phase design can produce. + +**One entry does not fit the pattern**: at N=100, the correlation between a phase's EAGER +mean and its LAZY mean is +0.101, an order of magnitude weaker than at every other size +(+0.73 to +0.97). At every other size, whatever perturbs a phase (thermal state, system +load) perturbs both variants together, which is what produces the strong positive +correlation and is why the relative gap stays stable despite that perturbation (see Β§ 4). +At N=100 this coupling is essentially absent β€” investigated in Β§ 4. + +Distributions remain **strictly disjoint** on `cpu_mj`, `dram_mj` and `time_s` at all six +sizes (checked directly on the pooled 900-sample raw values, not just phase means): the +highest LAZY value is always below the lowest EAGER value. + +Breakdown of the gap by component: + +| N | CPU | DRAM | GPU | +|---:|---:|---:|---:| +| 10 | 76.4% | 23.5% | 0.1% | +| 30 | 77.3% | 22.6% | 0.1% | +| 50 | 81.5% | 18.4% | 0.1% | +| 100 | 78.0% | 21.9% | 0.1% | +| 500 | 84.2% | 15.7% | 0.1% | +| 1000 | 87.1% | 12.9% | 0.1% | + +Same reading as campaign 1: CPU dominates and its share grows with size, GPU is +negligible. The N=100 row is again slightly out of trend (78.0% sits below both its +neighbours, 81.5% at N=50 and 84.2% at N=500) β€” consistent with the same anomaly. + +--- + +## 3. Consistency with campaign 1 + +The three sizes tested in both campaigns give a direct check on reproducibility, run on two +different days: + +| N | Relative gap, campaign 1 | Relative gap, campaign 2 | Ξ” | EAGER mean drift | LAZY mean drift | +|---:|---:|---:|---:|---:|---:| +| 10 | 81.0% | 81.30% | +0.3 pt | +0.1% | βˆ’1.4% | +| 100 | 86.3% | 86.67% | +0.4 pt | βˆ’13.4% | βˆ’15.6% | +| 1000 | 90.7% | 90.13% | βˆ’0.6 pt | +3.0% | +9.6% | + +**The relative gap is remarkably stable** β€” never moving by more than 0.6 percentage +points between two independent measurement sessions. **The absolute joule levels are not**: +at N=100 both variants' absolute means shifted by 13-16% between campaigns (same machine, +same code, different day β€” almost certainly ambient temperature or background system load). +This is precisely why campaign 1 warned against quoting absolute joule figures as if they +were portable constants, and why every headline number in both documents is a relative +comparison or a per-row normalisation, never a bare joule total. + +Energy per hydrated row at the shared sizes: 0.33 β†’ 0.33 Β΅J (N=10), 0.43 β†’ 0.38 Β΅J (N=100), +0.92 β†’ 0.94 Β΅J (N=1000). N=10 and N=1000 reproduce closely; N=100 is the one point where +the two campaigns disagree by more than rounding β€” consistent with it being the same +anomalous size in both the correlation breakdown above and the scaling analysis below. + +--- + +## 4. The number to publish, and the complication + +### Energy per hydrated row and per parent read + +| N | Β΅J / hydrated row | Range (incl. / excl. high-regime phases) | Β΅J / parent read | +|---:|---:|---:|---:| +| 10 | 0.33 | 0.30 – 0.33 | 3.3 | +| 30 | 0.36 | 0.34 – 0.36 | 10.8 | +| 50 | 0.47 | 0.47 (no high-regime phases at this size) | 23.5 | +| 100 | 0.38 | 0.38 (no meaningful spread) | 37.7 | +| 500 | 0.66 | 0.61 – 0.66 | 329.9 | +| 1000 | 0.94 | 0.90 – 0.94 | 935.9 | + +**Energy per row is not monotonic in N.** It rises from N=10 through N=50, dips at N=100, +then resumes rising through N=500 and N=1000. This is not a rounding effect nor the product +of a single outlier phase: excluding every phase flagged as high-regime at N=100 changes +the figure by under 1%, and the EAGER-only mean (not just the EAGER-minus-LAZY gap) is +itself lower at N=100 (2,175.2 mJ) than at N=50 (2,743.9 mJ). Whatever is happening at +N=100 affects the EAGER variant's own absolute cost, not only its difference from LAZY. + +### Scaling exponent β€” coarse view versus fine view + +Campaign 1, with only three points, fitted **N^1.10–1.12** between 10 and 100 and +**N^1.32–1.37** between 100 and 1000, and reported an overall picture of smooth +super-linear growth. Campaign 2's coarse view (using only the shared points, 10 β†’ 100 β†’ +1000) is close: **N^1.05** and **N^1.40** β€” a reasonable, if not exact, reproduction, well +within what a single-day measurement session can be expected to drift. + +The fine view, using all six points, breaks the smooth picture: + +| Step | Energy per read | Exponent | +|---|---:|---:| +| N=10 β†’ 30 | x3.25 | +1.07 | +| N=30 β†’ 50 | x2.17 | +1.52 | +| **N=50 β†’ 100** | **x1.60** | **+0.68** | +| N=100 β†’ 500 | x8.75 | +1.35 | +| N=500 β†’ 1000 | x2.84 | +1.50 | + +Four of the five steps are super-linear, consistent with campaign 1's reading. **One step, +N=50 β†’ 100, is sub-linear** (exponent below 1, meaning energy per read grows slower than +collection size there β€” the opposite of the rule's expected direction, though the smell is +still far more expensive than LAZY in absolute terms at both sizes). A single exponent +fitted across all six points on **energy per read** gives **N^1.22** with RΒ² = 0.995 β€” an +excellent-looking fit that is, on its own, misleading: energy per read spans almost three +orders of magnitude (3.3 Β΅J to 936 Β΅J) driven mostly by the trivial fact that N itself +grows by a factor of 100, so a log-log fit on that quantity looks clean even with the kink +present, because the kink is a small wobble relative to the dominant NΒΉ trend. + +Fitting the **same six points on energy per hydrated row** instead β€” which divides out +that trivial NΒΉ factor and isolates exactly the part of the cost that is not simple +proportionality β€” gives exponent β‰ˆ **N^0.22** (i.e. total exponent on energy-per-read of +1 + 0.22 β‰ˆ 1.22, the same headline number) but with **RΒ² = 0.85**, visibly below 1. That +weaker fit is the honest signal that no single power law actually describes the residual, +size-dependent part of the cost: the curve has a genuine kink around N=50–100. Quoting only +the RΒ² = 0.995 energy-per-read fit would hide exactly the anomaly this campaign was +designed to surface; both numbers belong together wherever the exponent is cited. + +**What this does not do**: it does not overturn the case for the rule. Even at its lowest +point (N=100), energy per row (0.38 Β΅J) is still higher than at N=10 (0.33 Β΅J) and the +relative gap keeps climbing smoothly through the same range (86.67% at N=100, up from +85.79% at N=50). The kink is in the second-order shape of the curve, not in the sign or the +overall order of magnitude of the effect. + +--- + +## 5. Quality control + +### The N=100 anomaly + +Three independent signals converge on N=100 as an outlier among the six sizes: + +1. Phase-level correlation between EAGER and LAZY collapses to +0.101, versus +0.73 to + +0.97 everywhere else. +2. EAGER's own per-phase `total_mj` mean is unusually flat at N=100 (coefficient of + variation 1.25%, versus 9–17% at the other five sizes) β€” every other size shows + noticeably more phase-to-phase spread on the EAGER side. +3. Energy per row dips at N=100 rather than continuing to climb from N=50. + +A plausible reading is that whatever produces the shared, correlated phase-to-phase +variation at other sizes (ambient temperature, background load, core scheduling) happened, +by chance, to leave the EAGER runs at N=100 largely undisturbed while still perturbing +LAZY β€” which would simultaneously explain the low correlation, the flat EAGER phases, and +the depressed gap. **This is a hypothesis, not a finding**: nothing in the collected data +identifies a mechanism, and it was not reproduced by re-running N=100 within this campaign. +It should be treated as an open question, not folded into the headline scaling narrative. + +### Bimodality, the other five sizes + +As in campaign 1, several sizes show a subset of phases sitting well above the rest, and +in every one of those cases **both variants are affected together**: + +| N | High-regime phases (of 30) | Affects | +|---:|---|---| +| 10 | 5, 7-11, 13, 16 | EAGER and LAZY together | +| 30 | 26-30 | EAGER and LAZY together | +| 50 | none detected | β€” | +| 500 | 3-10 | EAGER and LAZY together | +| 1000 | 6-11, 15, 24 | EAGER and LAZY together | + +This is the same paired-cancellation pattern documented in campaign 1 Β§ 4: because both +variants are measured within the same phase in randomised order, a shared perturbation +moves both means together and the *relative* gap barely shifts (see the stability of the +percentages in Β§ 3). N=100 is the one size where this cancellation mechanism does not +appear to operate, which is consistent with β€” and adds weight to β€” treating it as the +outlier. + +### `ane_mj`, again excluded + +Excluded from every total in this document, as in campaign 1. At N=100 specifically, +`ane_mj` was measured as exactly zero for every one of the 1,800 samples (both variants) β€” +not just small, but identically zero, which is itself consistent with `ane_mj` being an +unreliable counter on this hardware rather than a real physical measurement (see campaign 1 +Β§ 4 for the same conclusion at other sizes, where `ane_mj` varied by two orders of magnitude +across sizes with no plausible mechanism). + +### Average power: locating the crossover + +Campaign 1 observed that LAZY draws *more* average power than EAGER at N=10 (a short, +intense burst) but *less* at N=1000 (sustained EAGER memory pressure), and could not say +where the crossover sits. Campaign 2's intermediate sizes locate it, using EnergyTracer's +own reported average power (raw data type): + +| N | EAGER | LAZY | Higher average power | +|---:|---:|---:|:---:| +| 10 | 4.373 W | 5.938 W | LAZY | +| 30 | 4.329 W | 4.613 W | LAZY | +| 50 | 5.623 W | 6.479 W | LAZY | +| 100 | 4.258 W | 3.585 W | **EAGER** | +| 500 | 6.242 W | 4.652 W | EAGER | +| 1000 | 7.826 W | 4.087 W | EAGER | + +**The crossover sits between N=50 and N=100** β€” the same interval where the energy-per-row +anomaly and the correlation collapse occur. That three unrelated statistics all shift +character in the same narrow interval is worth flagging to a reviewer even without a +confirmed mechanism: something about the system's behaviour changes around a collection of +roughly fifty to a hundred elements, on top of the average trend the rule is concerned +with. + +--- + +## 6. What not to claim + +Everything in campaign 1's Β§ 5 still holds (the percentage is not a production figure, the +tool's p-values are not reusable, the absolute yearly saving is modest, level 1 and level 2 +are consistent despite different-looking ratios). Two additions specific to campaign 2: + +### Do not present a single clean exponent as if the curve were smooth + +**N^1.22 is a legitimate summary statistic for energy per read**, and on that metric alone +the fit looks excellent (RΒ² = 0.995) β€” but that is because per-read values are dominated by +the trivial NΒΉ scaling. The same exponent, measured on energy *per row* (RΒ² = 0.85), shows +the fit is visibly imperfect once the trivial factor is removed. Quoting N^1.22 with only +the per-read RΒ² would overstate how well-behaved the relationship is; a reviewer who reruns +the six points and fits their own curve on a per-row basis will find the same kink β€” better +to have already named it. + +### The relevance threshold is not "N β‰ˆ 100" + +Campaign 1 tentatively suggested the rule becomes clearly relevant "around a hundred +elements". With six points, that framing does not survive: the **relative** gap is already +81% at N=10, the smallest size tested β€” there is no size threshold below which the smell +stops mattering in relative terms. What actually grows with N is the **absolute** energy +wasted per parent read (3.3 Β΅J at N=10 versus 936 Β΅J at N=1000, roughly 280 times more) and, +independently, the crossover in average power (between N=50 and N=100). The more accurate +statement is that the relative overhead is present at every size tested; its absolute +weight becomes material as the collection and the read rate grow β€” a statement about +magnitude, not a threshold. + +### The N=100 finding should be disclosed, not smoothed away + +It would be tempting to quietly drop N=100 from a plot or fit and present a cleaner curve +through the remaining five points. That would hide a real observation, and it is disclosed +throughout this document (Β§ 4, Β§ 5) rather than omitted. + +--- + +## Sources + +- Consolidated report: `level2-energytracer/campaign2/consolidated-report/REPORT.md` +- Consolidated data: `level2-energytracer/campaign2/consolidated-report/data/all_measurements.csv` β€” 10,800 + measurements (6 sizes Γ— 2 variants Γ— 900) +- Plots: `level2-energytracer/campaign2/consolidated-report/plots/` (including `scaling_overhead.png`) +- Raw EnergyTracer reports: `level2-energytracer/campaign2/consolidated-report/reports-source/` +- Companion document: `level2-energytracer/campaign1/campaign1-interpretation.md` +- Level 1 (unchanged, not re-run for campaign 2): `level1-jpa/results/level1-20260802-120143.txt` + +Every figure in this document was recomputed independently from the raw +`all_measurements.csv`, using 3Οƒ outlier removal and phase-level aggregation, rather than +taken from `ET-analyzer`'s own per-sample statistics β€” for the same reason given in +campaign 1 Β§ 2 (900 runs within a phase are not independent samples). + +--- + +*Internal analysis, kept as evidence that the code smell targeted by S6904 has a real, +measurable cost.* diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/REPORT.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/REPORT.md new file mode 100644 index 000000000..ba2071001 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/REPORT.md @@ -0,0 +1,811 @@ +# FetchType LAZY on JPA collections - consolidated energy report + +Aggregated across every measurement phase of the campaign. Regenerated by `4-aggregate_report.py`; EnergyTracer's own per-size reports are reproduced verbatim at the end. + +| | | +|---|---| +| Profiler | `mac` | +| Data type | `raw` | +| Collection sizes | 10, 30, 50, 100, 500, 1000 | +| Significance level | Ξ± = 0.05 | +| Host | `M-NGY9VPYVMH` - Darwin 25.5.0 - arm64 | + +## Sample sizes + +| Collection size | Phases | Samples EAGER | Samples LAZY | +|---:|---:|---:|---:| +| 10 | 30 | 900 | 900 | +| 30 | 30 | 900 | 900 | +| 50 | 30 | 900 | 900 | +| 100 | 30 | 900 | 900 | +| 500 | 30 | 900 | 900 | +| 1000 | 30 | 900 | 900 | + +## Effect versus collection size + +An overhead that grows with the number of children is the core argument for the rule: it shows the cost is caused by hydrating the collection, not by incidental noise. + +![scaling](plots/scaling_overhead.png) + +| Collection size | Ξ” cpu_mj | Ξ” dram_mj | Ξ” time_s | +|---:|---:|---:|---:| +| 10 | +79.93% | +86.12% | +86.15% | +| 30 | +83.37% | +85.83% | +84.47% | +| 50 | +85.36% | +87.74% | +87.71% | +| 100 | +86.36% | +87.79% | +84.43% | +| 500 | +87.22% | +86.52% | +82.21% | +| 1000 | +90.61% | +87.31% | +81.02% | + +## Collection size N = 10 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 1592.9822 mJ | 319.7844 mJ | +79.93% | 0.00e+00 | +5.793 (large) | 2.25e-295 | +1.000 (large) | significant | +| `gpu_mj` | 1.4033 mJ | 0.1276 mJ | +90.91% | 1.99e-139 | +1.403 (large) | 8.06e-213 | +0.838 (large) | significant | +| `ane_mj` | 13.2244 mJ | 1.8867 mJ | +85.73% | 4.05e-28 | +0.536 (medium) | 0.0025 | +0.056 (negligible) | significant but negligible | +| `dram_mj` | 454.6222 mJ | 63.1164 mJ | +86.12% | 0.00e+00 | +28.295 (large) | 3.27e-295 | +1.000 (large) | significant | +| `time_s` | 0.4785 s | 0.0663 s | +86.15% | 0.00e+00 | +109.558 (large) | 5.42e-290 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n10/cpu_mj_box.png) +![cpu_mj_violin](plots/n10/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n10/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n10/gpu_mj_box.png) +![gpu_mj_violin](plots/n10/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n10/gpu_mj_per_phase.png) +![ane_mj_box](plots/n10/ane_mj_box.png) +![ane_mj_violin](plots/n10/ane_mj_violin.png) +![ane_mj_per_phase](plots/n10/ane_mj_per_phase.png) +![dram_mj_box](plots/n10/dram_mj_box.png) +![dram_mj_violin](plots/n10/dram_mj_violin.png) +![dram_mj_per_phase](plots/n10/dram_mj_per_phase.png) +![time_s_box](plots/n10/time_s_box.png) +![time_s_violin](plots/n10/time_s_violin.png) +![time_s_per_phase](plots/n10/time_s_per_phase.png) + +## Collection size N = 30 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 1672.4042 mJ | 278.0389 mJ | +83.37% | 0.00e+00 | +6.288 (large) | 9.58e-292 | +1.000 (large) | significant | +| `gpu_mj` | 1.8800 mJ | 0.3178 mJ | +83.10% | 1.39e-224 | +1.934 (large) | 3.00e-252 | +0.916 (large) | significant | +| `ane_mj` | 14.5200 mJ | 1.8900 mJ | +86.98% | 5.53e-29 | +0.545 (medium) | 0.1160 | +0.028 (negligible) | borderline | +| `dram_mj` | 474.4535 mJ | 67.2211 mJ | +85.83% | 0.00e+00 | +28.185 (large) | 2.15e-294 | +1.000 (large) | significant | +| `time_s` | 0.4961 s | 0.0770 s | +84.47% | 0.00e+00 | +111.097 (large) | 3.74e-290 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n30/cpu_mj_box.png) +![cpu_mj_violin](plots/n30/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n30/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n30/gpu_mj_box.png) +![gpu_mj_violin](plots/n30/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n30/gpu_mj_per_phase.png) +![ane_mj_box](plots/n30/ane_mj_box.png) +![ane_mj_violin](plots/n30/ane_mj_violin.png) +![ane_mj_per_phase](plots/n30/ane_mj_per_phase.png) +![dram_mj_box](plots/n30/dram_mj_box.png) +![dram_mj_violin](plots/n30/dram_mj_violin.png) +![dram_mj_per_phase](plots/n30/dram_mj_per_phase.png) +![time_s_box](plots/n30/time_s_box.png) +![time_s_violin](plots/n30/time_s_violin.png) +![time_s_per_phase](plots/n30/time_s_per_phase.png) + +## Collection size N = 50 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 2247.0589 mJ | 328.8922 mJ | +85.36% | 0.00e+00 | +7.194 (large) | 2.25e-295 | +1.000 (large) | significant | +| `gpu_mj` | 3.4100 mJ | 0.4144 mJ | +87.85% | 0.00e+00 | +3.974 (large) | 8.94e-287 | +0.985 (large) | significant | +| `ane_mj` | 65.5611 mJ | 7.9433 mJ | +87.88% | 7.64e-279 | +2.465 (large) | 1.76e-125 | +0.647 (large) | significant | +| `dram_mj` | 493.3900 mJ | 60.4972 mJ | +87.74% | 0.00e+00 | +31.039 (large) | 2.15e-294 | +1.000 (large) | significant | +| `time_s` | 0.5046 s | 0.0620 s | +87.71% | 0.00e+00 | +113.485 (large) | 2.81e-292 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n50/cpu_mj_box.png) +![cpu_mj_violin](plots/n50/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n50/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n50/gpu_mj_box.png) +![gpu_mj_violin](plots/n50/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n50/gpu_mj_per_phase.png) +![ane_mj_box](plots/n50/ane_mj_box.png) +![ane_mj_violin](plots/n50/ane_mj_violin.png) +![ane_mj_per_phase](plots/n50/ane_mj_per_phase.png) +![dram_mj_box](plots/n50/dram_mj_box.png) +![dram_mj_violin](plots/n50/dram_mj_violin.png) +![dram_mj_per_phase](plots/n50/dram_mj_per_phase.png) +![time_s_box](plots/n50/time_s_box.png) +![time_s_violin](plots/n50/time_s_violin.png) +![time_s_per_phase](plots/n50/time_s_per_phase.png) + +## Collection size N = 100 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 1702.9672 mJ | 232.3034 mJ | +86.36% | 0.00e+00 | +81.417 (large) | 8.08e-289 | +1.000 (large) | significant | +| `gpu_mj` | 1.5889 mJ | 0.2867 mJ | +81.96% | 0.00e+00 | +2.519 (large) | 1.65e-256 | +0.921 (large) | significant | +| `ane_mj` | 0.0000 mJ | 0.0000 mJ | +nan% | 1.0000 | +0.000 (negligible) | 1.0000 | +0.000 (negligible) | not significant | +| `dram_mj` | 470.5136 mJ | 57.4355 mJ | +87.79% | 0.00e+00 | +170.568 (large) | 7.45e-288 | +1.000 (large) | significant | +| `time_s` | 0.5119 s | 0.0797 s | +84.43% | 0.00e+00 | +221.489 (large) | 1.75e-290 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n100/cpu_mj_box.png) +![cpu_mj_violin](plots/n100/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n100/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n100/gpu_mj_box.png) +![gpu_mj_violin](plots/n100/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n100/gpu_mj_per_phase.png) +![ane_mj_box](plots/n100/ane_mj_box.png) +![ane_mj_violin](plots/n100/ane_mj_violin.png) +![ane_mj_per_phase](plots/n100/ane_mj_per_phase.png) +![dram_mj_box](plots/n100/dram_mj_box.png) +![dram_mj_violin](plots/n100/dram_mj_violin.png) +![dram_mj_per_phase](plots/n100/dram_mj_per_phase.png) +![time_s_box](plots/n100/time_s_box.png) +![time_s_violin](plots/n100/time_s_violin.png) +![time_s_per_phase](plots/n100/time_s_per_phase.png) + +## Collection size N = 500 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 3185.1278 mJ | 407.1578 mJ | +87.22% | 0.00e+00 | +8.263 (large) | 2.25e-295 | +1.000 (large) | significant | +| `gpu_mj` | 2.7822 mJ | 0.4244 mJ | +84.75% | 3.81e-273 | +2.269 (large) | 8.26e-279 | +0.967 (large) | significant | +| `ane_mj` | 28.0478 mJ | 5.1622 mJ | +81.59% | 2.97e-43 | +0.684 (medium) | 1.01e-05 | +0.096 (negligible) | significant but negligible | +| `dram_mj` | 599.8467 mJ | 80.8667 mJ | +86.52% | 0.00e+00 | +19.310 (large) | 2.25e-295 | +1.000 (large) | significant | +| `time_s` | 0.6141 s | 0.1093 s | +82.21% | 0.00e+00 | +92.123 (large) | 1.93e-290 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n500/cpu_mj_box.png) +![cpu_mj_violin](plots/n500/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n500/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n500/gpu_mj_box.png) +![gpu_mj_violin](plots/n500/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n500/gpu_mj_per_phase.png) +![ane_mj_box](plots/n500/ane_mj_box.png) +![ane_mj_violin](plots/n500/ane_mj_violin.png) +![ane_mj_per_phase](plots/n500/ane_mj_per_phase.png) +![dram_mj_box](plots/n500/dram_mj_box.png) +![dram_mj_violin](plots/n500/dram_mj_violin.png) +![dram_mj_per_phase](plots/n500/dram_mj_per_phase.png) +![time_s_box](plots/n500/time_s_box.png) +![time_s_violin](plots/n500/time_s_violin.png) +![time_s_per_phase](plots/n500/time_s_per_phase.png) + +## Collection size N = 1000 + +| Metric | Mean EAGER | Mean LAZY | Ξ” mean | Welch p | Cohen's d | Mann-Whitney p | Cliff's Ξ΄ | Verdict | +|---|---:|---:|---:|---:|---:|---:|---:|:---:| +| `cpu_mj` | 4500.1731 mJ | 422.5982 mJ | +90.61% | 0.00e+00 | +12.775 (large) | 6.41e-292 | +1.000 (large) | significant | +| `gpu_mj` | 2.8011 mJ | 0.4189 mJ | +85.05% | 1.48e-302 | +2.504 (large) | 2.18e-298 | +1.000 (large) | significant | +| `ane_mj` | 22.0711 mJ | 4.1422 mJ | +81.23% | 1.02e-31 | +0.573 (medium) | 6.79e-04 | +0.067 (negligible) | significant but negligible | +| `dram_mj` | 689.2260 mJ | 87.4400 mJ | +87.31% | 0.00e+00 | +24.607 (large) | 3.27e-295 | +1.000 (large) | significant | +| `time_s` | 0.6708 s | 0.1273 s | +81.02% | 0.00e+00 | +97.082 (large) | 5.79e-290 | +1.000 (large) | significant | + +> Ξ” mean = (EAGER βˆ’ LAZY) / EAGER Γ— 100, EnergyTracer's convention: positive means the smell costs more. + +> Shapiro-Wilk rejects normality for `cpu_mj`, `gpu_mj`, `ane_mj`, `dram_mj`, `time_s`. For those metrics the Mann-Whitney result and Cliff's Ξ΄ carry more weight than the Welch t-test and Cohen's d. + +![cpu_mj_box](plots/n1000/cpu_mj_box.png) +![cpu_mj_violin](plots/n1000/cpu_mj_violin.png) +![cpu_mj_per_phase](plots/n1000/cpu_mj_per_phase.png) +![gpu_mj_box](plots/n1000/gpu_mj_box.png) +![gpu_mj_violin](plots/n1000/gpu_mj_violin.png) +![gpu_mj_per_phase](plots/n1000/gpu_mj_per_phase.png) +![ane_mj_box](plots/n1000/ane_mj_box.png) +![ane_mj_violin](plots/n1000/ane_mj_violin.png) +![ane_mj_per_phase](plots/n1000/ane_mj_per_phase.png) +![dram_mj_box](plots/n1000/dram_mj_box.png) +![dram_mj_violin](plots/n1000/dram_mj_violin.png) +![dram_mj_per_phase](plots/n1000/dram_mj_per_phase.png) +![time_s_box](plots/n1000/time_s_box.png) +![time_s_violin](plots/n1000/time_s_violin.png) +![time_s_per_phase](plots/n1000/time_s_per_phase.png) + +## EnergyTracer reports, verbatim + +Unmodified output of `ET-analyzer`, kept so every number above can be traced back to the tool itself. + +
N = 10 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 890 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 473.04 ms | 65.11 ms | +| **Average Power** | 4.361 W | 5.933 W | +| **Total Energy** | 1835.92 J | 337.99 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.86% | 0.00e+00 | +5.782 | large | βœ… | +| `gpu_mj` | +90.68% | 4.91e-137 | +1.397 | large | βœ… | +| `ane_mj` | +85.47% | 8.58e-28 | +0.535 | medium | βœ… | +| `dram_mj` | +86.08% | 0.00e+00 | +28.390 | large | βœ… | +| `time_s` | +86.12% | 0.00e+00 | +111.194 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.782, large) +- **`gpu_mj`**: 90.7% lower energy (Cohen’s d = +1.397, large) +- **`ane_mj`**: 85.5% lower energy (Cohen’s d = +0.535, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.390, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +111.194, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 10 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 471.54 ms | 64.80 ms | +| **Average Power** | 4.373 W | 5.938 W | +| **Total Energy** | 1856.01 J | 346.36 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.93% | 0.00e+00 | +5.793 | large | βœ… | +| `gpu_mj` | +90.91% | 1.99e-139 | +1.403 | large | βœ… | +| `ane_mj` | +85.73% | 4.05e-28 | +0.536 | medium | βœ… | +| `dram_mj` | +86.12% | 0.00e+00 | +28.295 | large | βœ… | +| `time_s` | +86.15% | 0.00e+00 | +109.558 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.793, large) +- **`gpu_mj`**: 90.9% lower energy (Cohen’s d = +1.403, large) +- **`ane_mj`**: 85.7% lower energy (Cohen’s d = +0.536, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.295, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +109.558, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 30 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 898 samples (with smell) vs 881 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 490.02 ms | 75.55 ms | +| **Average Power** | 4.325 W | 4.612 W | +| **Total Energy** | 1903.20 J | 307.00 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.33% | 0.00e+00 | +6.279 | large | βœ… | +| `gpu_mj` | +83.08% | 8.41e-224 | +1.932 | large | βœ… | +| `ane_mj` | +86.82% | 6.94e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.80% | 0.00e+00 | +28.191 | large | βœ… | +| `time_s` | +84.45% | 0.00e+00 | +112.566 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.3% lower energy (Cohen’s d = +6.279, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.932, large) +- **`ane_mj`**: 86.8% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.191, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +112.566, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 30 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 489.50 ms | 75.33 ms | +| **Average Power** | 4.329 W | 4.613 W | +| **Total Energy** | 1907.29 J | 312.72 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.37% | 0.00e+00 | +6.288 | large | βœ… | +| `gpu_mj` | +83.10% | 1.39e-224 | +1.934 | large | βœ… | +| `ane_mj` | +86.98% | 5.53e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.83% | 0.00e+00 | +28.185 | large | βœ… | +| `time_s` | +84.47% | 0.00e+00 | +111.097 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.4% lower energy (Cohen’s d = +6.288, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.934, large) +- **`ane_mj`**: 87.0% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.185, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +111.097, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 50 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 890 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 500.03 ms | 61.56 ms | +| **Average Power** | 5.624 W | 6.458 W | +| **Total Energy** | 2505.74 J | 353.85 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.38% | 0.00e+00 | +7.249 | large | βœ… | +| `gpu_mj` | +87.81% | 0.00e+00 | +3.995 | large | βœ… | +| `ane_mj` | +87.93% | 1.45e-279 | +2.494 | large | βœ… | +| `dram_mj` | +87.72% | 0.00e+00 | +31.230 | large | βœ… | +| `time_s` | +87.70% | 0.00e+00 | +115.051 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.249, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.995, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.494, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.230, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +115.051, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 50 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 499.59 ms | 61.33 ms | +| **Average Power** | 5.623 W | 6.479 W | +| **Total Energy** | 2528.48 J | 357.61 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.36% | 0.00e+00 | +7.194 | large | βœ… | +| `gpu_mj` | +87.85% | 0.00e+00 | +3.974 | large | βœ… | +| `ane_mj` | +87.88% | 7.64e-279 | +2.465 | large | βœ… | +| `dram_mj` | +87.74% | 0.00e+00 | +31.039 | large | βœ… | +| `time_s` | +87.71% | 0.00e+00 | +113.485 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.194, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.974, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.465, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.039, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +113.485, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 100 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 887 samples (with smell) vs 872 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 505.49 ms | 77.68 ms | +| **Average Power** | 4.241 W | 3.619 W | +| **Total Energy** | 1901.70 J | 245.10 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.32% | 0.00e+00 | +84.860 | large | βœ… | +| `gpu_mj` | +81.92% | 0.00e+00 | +2.516 | large | βœ… | +| `dram_mj` | +87.77% | 0.00e+00 | +177.673 | large | βœ… | +| `time_s` | +84.39% | 0.00e+00 | +250.581 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.3% lower energy (Cohen’s d = +84.860, large) +- **`gpu_mj`**: 81.9% lower energy (Cohen’s d = +2.516, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +177.673, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +250.581, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 100 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 504.53 ms | 78.18 ms | +| **Average Power** | 4.258 W | 3.585 W | +| **Total Energy** | 1933.48 J | 252.27 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.36% | 0.00e+00 | +81.417 | large | βœ… | +| `gpu_mj` | +81.96% | 0.00e+00 | +2.519 | large | βœ… | +| `dram_mj` | +87.79% | 0.00e+00 | +170.568 | large | βœ… | +| `time_s` | +84.43% | 0.00e+00 | +221.489 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.4% lower energy (Cohen’s d = +81.417, large) +- **`gpu_mj`**: 82.0% lower energy (Cohen’s d = +2.519, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +170.568, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +221.489, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 500 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 875 samples (with smell) vs 877 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 613.25 ms | 108.37 ms | +| **Average Power** | 6.227 W | 4.551 W | +| **Total Energy** | 3341.35 J | 432.52 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.24% | 0.00e+00 | +8.245 | large | βœ… | +| `gpu_mj` | +84.73% | 1.53e-265 | +2.269 | large | βœ… | +| `ane_mj` | +81.57% | 7.15e-43 | +0.691 | medium | βœ… | +| `dram_mj` | +86.54% | 0.00e+00 | +19.272 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.465 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.245, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.691, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.272, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.465, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 500 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 611.35 ms | 106.11 ms | +| **Average Power** | 6.242 W | 4.652 W | +| **Total Energy** | 3434.22 J | 444.25 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.22% | 0.00e+00 | +8.263 | large | βœ… | +| `gpu_mj` | +84.75% | 3.81e-273 | +2.269 | large | βœ… | +| `ane_mj` | +81.59% | 2.97e-43 | +0.684 | medium | βœ… | +| `dram_mj` | +86.52% | 0.00e+00 | +19.310 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.123 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.263, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.684, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.310, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.123, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 1000 - cleaned_mac_report.md + +## Energy Report β€” `mac` (cleaned) + +> 883 samples (with smell) vs 876 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 667.61 ms | 125.92 ms | +| **Average Power** | 7.811 W | 4.028 W | +| **Total Energy** | 4604.63 J | 444.29 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.58% | 0.00e+00 | +12.693 | large | βœ… | +| `gpu_mj` | +85.03% | 2.06e-296 | +2.501 | large | βœ… | +| `ane_mj` | +81.14% | 2.51e-31 | +0.575 | medium | βœ… | +| `dram_mj` | +87.28% | 0.00e+00 | +24.469 | large | βœ… | +| `time_s` | +81.01% | 0.00e+00 | +98.450 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.693, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.501, large) +- **`ane_mj`**: 81.1% lower energy (Cohen’s d = +0.575, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.469, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +98.450, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +
N = 1000 - raw_mac_report.md + +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 665.57 ms | 123.63 ms | +| **Average Power** | 7.826 W | 4.087 W | +| **Total Energy** | 4687.65 J | 454.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.61% | 0.00e+00 | +12.775 | large | βœ… | +| `gpu_mj` | +85.05% | 1.48e-302 | +2.504 | large | βœ… | +| `ane_mj` | +81.23% | 1.02e-31 | +0.573 | medium | βœ… | +| `dram_mj` | +87.31% | 0.00e+00 | +24.607 | large | βœ… | +| `time_s` | +81.02% | 0.00e+00 | +97.082 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.775, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.504, large) +- **`ane_mj`**: 81.2% lower energy (Cohen’s d = +0.573, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.607, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +97.082, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. + + +
+ +## How to read this, and what not to claim + +- A result is worth quoting only when Welch **and** Mann-Whitney agree and Cliff's Ξ΄ is at least small. Large sample sizes make tiny differences "significant" without making them relevant. +- Check the per-phase plots before trusting anything: a visible trend means the machine drifted during the campaign and the run should be repeated. +- These figures measure the client side only - no database engine, no network. They are a lower bound on the real saving. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/all_measurements.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/all_measurements.csv new file mode 100644 index 000000000..23b807c7f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/all_measurements.csv @@ -0,0 +1,10801 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,290.8686257733098,0.0,0.0,61.83024365562761,0.0671084160021564,10,mac,phase-19,without +1,288.43744237162144,0.0,0.0,61.31344449346887,0.0665474999987054,10,mac,phase-19,without +2,286.20184035980265,0.0,0.0,60.83822026899203,0.0660317080000822,10,mac,phase-19,without +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035,10,mac,phase-19,without +4,285.997408337104,0.0,0.0,60.79476394316497,0.065984542001388,10,mac,phase-19,without +5,287.0887483871877,0.0,0.0,61.02675122274326,0.066236333001143,10,mac,phase-19,without +6,290.61850144546,0.0,0.0,61.777074469387486,0.0670507079994422,10,mac,phase-19,without +7,288.4390677341846,0.0,0.0,61.313789998464614,0.0665478749979229,10,mac,phase-19,without +8,262.4570511731341,0.0,0.0,55.79076595156614,0.0605533750022004,10,mac,phase-19,without +9,287.0845961195109,0.0,0.0,61.02586857092235,0.0662353750012698,10,mac,phase-19,without +10,289.1576572076416,0.0,0.0,61.46654130367703,0.0667136660013056,10,mac,phase-19,without +11,287.9375491452288,0.0,0.0,61.20718167496282,0.0664321659969573,10,mac,phase-19,without +12,287.8124003118045,0.0,0.0,61.18057865841791,0.0664032919994497,10,mac,phase-19,without +13,291.3011551411478,0.0,0.0,61.922186869271,0.0672082079981919,10,mac,phase-19,without +14,290.86863009377606,0.0,0.0,61.83024457403358,0.0671084169989626,10,mac,phase-19,without +15,291.96195960819887,0.0,0.0,62.06265475609747,0.0673606670025037,10,mac,phase-19,without +16,288.20917165594705,0.0,0.0,61.264920752099144,0.0664948340017872,10,mac,phase-19,without +17,288.4121603590863,0.0,0.0,61.30807026999944,0.0665416670017293,10,mac,phase-19,without +18,291.91970008694614,0.0,0.0,62.05367160609675,0.067350917001022,10,mac,phase-19,without +19,289.8069063826763,0.0,0.0,61.604552870166486,0.0668634590001602,10,mac,phase-19,without +20,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013,10,mac,phase-19,without +21,288.0397695006966,0.0,0.0,61.22891076131008,0.0664557499985676,10,mac,phase-19,without +22,286.4039275203915,0.0,0.0,60.881178145062925,0.0660783329985861,10,mac,phase-19,without +23,286.55978061458836,0.0,0.0,60.91430799797523,0.0661142909993941,10,mac,phase-19,without +24,288.72260523938814,0.0,0.0,61.374061858262614,0.0666132919977826,10,mac,phase-19,without +25,289.4366783433925,0.0,0.0,61.52585311416426,0.0667780409967235,10,mac,phase-19,without +26,279.95357387673477,0.0,0.0,59.51001982095035,0.0645901249990856,10,mac,phase-19,without +27,286.3918304829023,0.0,0.0,60.87860666533224,0.0660755420030909,10,mac,phase-19,without +28,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207,10,mac,phase-19,without +29,287.6597979585023,0.0,0.0,61.14813981884897,0.0663680840007145,10,mac,phase-19,without +0,1386.7005541149863,0.0998895877817119,0.0,439.2811105347087,0.4755048749975685,10,mac,phase-19,with +1,1389.776976809194,0.1001111948142143,0.0,440.255664394643,0.4765597919977153,10,mac,phase-19,with +2,1385.844628906725,0.0998279320652189,0.0,439.009969245478,0.4752113750000717,10,mac,phase-19,with +3,1385.5003865740737,0.0998031349130122,0.0,438.90091963579016,0.4750933329996769,10,mac,phase-19,with +4,1389.920116092038,0.1001215057093215,0.0,440.3010082743598,0.4766088750002382,10,mac,phase-19,with +5,1395.4414636433553,0.1005192304590982,0.0,442.0500691489612,0.4785021659990889,10,mac,phase-19,with +6,1383.25911358358,0.0996416870543074,0.0,438.1909257691591,0.4743247919977875,10,mac,phase-19,with +7,1394.1143187941695,0.1004236309069682,0.0,441.62965418521094,0.4780470830010017,10,mac,phase-19,with +8,1391.919461157872,0.1002655265318898,0.0,440.93436384507424,0.4772944579999603,10,mac,phase-19,with +9,1385.5401236639073,0.0998059973345432,0.0,438.91350761154297,0.4751069589983672,10,mac,phase-19,with +10,1389.6626327917504,0.1001029581572562,0.0,440.21944232289394,0.4765205830008199,10,mac,phase-19,with +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.4732225410007231,10,mac,phase-19,with +12,1384.9940492190317,0.0997666614079548,0.0,438.7405213183826,0.4749197080018348,10,mac,phase-19,with +13,1374.9844398051246,0.0990456292029527,0.0,435.56966202485194,0.4714873750017432,10,mac,phase-19,with +14,1387.592932719944,0.0999538693821843,0.0,439.5637995863861,0.475810875002935,10,mac,phase-19,with +15,1390.2901178414663,0.1001481584153576,0.0,440.41821799127104,0.4767357500022626,10,mac,phase-19,with +16,1383.923900638318,0.0996895743250403,0.0,438.401518023419,0.4745527499981108,10,mac,phase-19,with +17,1383.3757643872302,0.0996500898783031,0.0,438.22787858815104,0.474364792000415,10,mac,phase-19,with +18,1391.7060864361836,0.1002501562971774,0.0,440.8667706762208,0.4772212909992959,10,mac,phase-19,with +19,1392.4171721955554,0.1003013786488022,0.0,441.09202950454926,0.4774651250008901,10,mac,phase-19,with +20,1405.4888679186208,0.1012429851791452,0.0,445.23290115615447,0.4819474590003665,10,mac,phase-19,with +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863,10,mac,phase-19,with +22,1391.9551883778888,0.1002681001064582,0.0,440.94568156816786,0.4773067089990945,10,mac,phase-19,with +23,1388.182261289353,0.0999963210763814,0.0,439.7504879869002,0.4760129580026841,10,mac,phase-19,with +24,1375.0170057848686,0.0990479750607392,0.0,435.5799783254442,0.4714985419996083,10,mac,phase-19,with +25,1388.4195727452525,0.1000134155698071,0.0,439.82566387082176,0.4760943330002192,10,mac,phase-19,with +26,1387.2079850901775,0.0999261400646032,0.0,439.4418552907703,0.4756788750019041,10,mac,phase-19,with +27,1395.1198253223383,0.1004960615642666,0.0,441.9481800724568,0.4783918749999429,10,mac,phase-19,with +28,1386.186074535617,0.0998525277596669,0.0,439.11813291109553,0.4753284580001491,10,mac,phase-19,with +29,1391.5517690909974,0.1002390402015269,0.0,440.817885792915,0.477168374996836,10,mac,phase-19,with +0,313.9495430059727,0.0,0.0,64.80389868724639,0.0682134160015266,10,mac,phase-26,without +1,308.3794199438781,0.0,0.0,63.65414166853778,0.0670031669978925,10,mac,phase-26,without +2,305.034770594531,0.0,0.0,62.96375583295359,0.0662764580010843,10,mac,phase-26,without +3,308.9656537375239,0.0,0.0,63.77514912408851,0.0671305409996421,10,mac,phase-26,without +4,308.0823679620422,0.0,0.0,63.592825680142255,0.0669386250010575,10,mac,phase-26,without +5,309.16222020810307,0.0,0.0,63.81572339447207,0.0671732499977224,10,mac,phase-26,without +6,305.2121586167888,0.0,0.0,63.00037138369676,0.0663150000000314,10,mac,phase-26,without +7,305.6986801043409,0.0,0.0,63.100796722388495,0.0664207090012496,10,mac,phase-26,without +8,307.5666990894399,0.0,0.0,63.48638388361557,0.0668265829990559,10,mac,phase-26,without +9,305.4478414091471,0.0,0.0,63.04901985010978,0.0663662080005451,10,mac,phase-26,without +10,304.1035409753827,0.0,0.0,62.77153605994154,0.0660741249994316,10,mac,phase-26,without +11,309.41132839650345,0.0,0.0,63.86714306417025,0.0672273750024032,10,mac,phase-26,without +12,308.8985360500407,0.0,0.0,63.76129502582119,0.0671159579978848,10,mac,phase-26,without +13,307.0985920540554,0.0,0.0,63.38975956428898,0.066724874999636,10,mac,phase-26,without +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564,10,mac,phase-26,without +15,282.07808492211666,0.0,0.0,58.22515128438192,0.0612885419977828,10,mac,phase-26,without +16,307.8050697237094,0.0,0.0,63.53558716094896,0.0668783750006696,10,mac,phase-26,without +17,307.06369159998235,0.0,0.0,63.38255558664265,0.0667172920002485,10,mac,phase-26,without +18,306.8525537307586,0.0,0.0,63.338973560833,0.0666714170001796,10,mac,phase-26,without +19,308.0434357367305,0.0,0.0,63.584789484387315,0.0669301659982011,10,mac,phase-26,without +20,307.850325708721,0.0,0.0,63.54492867563824,0.0668882079989998,10,mac,phase-26,without +21,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821,10,mac,phase-26,without +22,307.0828700483037,0.0,0.0,63.38651430628306,0.0667214589993818,10,mac,phase-26,without +23,304.66063198848303,0.0,0.0,62.886528008096214,0.066195167000842,10,mac,phase-26,without +24,309.76916966813064,0.0,0.0,63.94100687454759,0.0673051249978016,10,mac,phase-26,without +25,310.62733522529624,0.0,0.0,64.11814512832865,0.0674915829986275,10,mac,phase-26,without +26,284.30241259877437,0.0,0.0,58.6842859084531,0.0617718329995113,10,mac,phase-26,without +27,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051,10,mac,phase-26,without +28,305.0623853492818,0.0,0.0,62.96945593288687,0.0662824579994776,10,mac,phase-26,without +29,302.2746382953192,0.0,0.0,62.3940230912878,0.0656767500004207,10,mac,phase-26,without +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491,10,mac,phase-26,with +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846,10,mac,phase-26,with +2,1429.4735844199126,2.1692569511193316,0.0,450.1708771330563,0.4782339589983166,10,mac,phase-26,with +3,1426.3045481635716,2.1644478703483796,0.0,449.1728818942968,0.4771737500013842,10,mac,phase-26,with +4,1432.4783415347592,2.1738167347549635,0.0,451.1171374632262,0.4792392079980345,10,mac,phase-26,with +5,1436.4295181245916,2.1798127303270483,0.0,452.3614449135624,0.4805610839975998,10,mac,phase-26,with +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.4785199159996409,10,mac,phase-26,with +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575,10,mac,phase-26,with +8,1422.6951236106663,2.158970490852691,0.0,448.03619924787614,0.4759662079995905,10,mac,phase-26,with +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833,10,mac,phase-26,with +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044,10,mac,phase-26,with +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324,10,mac,phase-26,with +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295,10,mac,phase-26,with +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374,10,mac,phase-26,with +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455,10,mac,phase-26,with +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.4791691659993375,10,mac,phase-26,with +16,1432.7423778229895,2.174217415508938,0.0,451.2002879661548,0.4793275419979181,10,mac,phase-26,with +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342,10,mac,phase-26,with +18,1421.4663687712782,2.157105828920064,0.0,447.649238866196,0.475555124998209,10,mac,phase-26,with +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355,10,mac,phase-26,with +20,1425.254760753872,2.1628547953447503,0.0,448.8422820677744,0.4768225410007289,10,mac,phase-26,with +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392,10,mac,phase-26,with +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321,10,mac,phase-26,with +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.4788790829989011,10,mac,phase-26,with +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149,10,mac,phase-26,with +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.4772504579996166,10,mac,phase-26,with +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.4783681660010188,10,mac,phase-26,with +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.4748786250020202,10,mac,phase-26,with +28,1436.3390958497594,2.1796755125775538,0.0,452.3329690639789,0.4805308329996478,10,mac,phase-26,with +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702,10,mac,phase-26,with +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777,10,mac,phase-21,without +1,290.6954782073229,0.0,0.0,60.92238606686448,0.0665466250029567,10,mac,phase-21,without +2,291.28719908778197,0.0,0.0,61.046395728609,0.0666820830010692,10,mac,phase-21,without +3,283.328160416027,0.0,0.0,59.378383451046346,0.0648600829990755,10,mac,phase-21,without +4,288.3902924835214,0.0,0.0,60.43927771069976,0.0660189170012017,10,mac,phase-21,without +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556,10,mac,phase-21,without +6,291.3215994250469,0.0,0.0,61.053605165235275,0.0666899579991877,10,mac,phase-21,without +7,291.49342205874245,0.0,0.0,61.08961482348515,0.066729292000673,10,mac,phase-21,without +8,288.8664369502698,0.0,0.0,60.53906549276548,0.0661279170017223,10,mac,phase-21,without +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085,10,mac,phase-21,without +10,288.4387063150821,0.0,0.0,60.44942401966714,0.0660299999981361,10,mac,phase-21,without +11,286.7470829842217,0.0,0.0,60.0949027513009,0.0656427499998244,10,mac,phase-21,without +12,287.64586027491015,0.0,0.0,60.28326363475572,0.0658485000021755,10,mac,phase-21,without +13,288.1433001809692,0.0,0.0,60.387514399813654,0.065962374999799,10,mac,phase-21,without +14,287.9949615223732,0.0,0.0,60.3564263860497,0.0659284169996681,10,mac,phase-21,without +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948,10,mac,phase-21,without +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169,10,mac,phase-21,without +17,289.2799662185982,0.0,0.0,60.62573072020697,0.0662225829983071,10,mac,phase-21,without +18,261.67377851069205,0.0,0.0,54.840175211235795,0.0599029159966448,10,mac,phase-21,without +19,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857,10,mac,phase-21,without +20,292.3219396351502,0.0,0.0,61.26325105602778,0.0669189580003148,10,mac,phase-21,without +21,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514,10,mac,phase-21,without +22,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968,10,mac,phase-21,without +23,291.10992044223104,0.0,0.0,61.00924262890388,0.066641499997786,10,mac,phase-21,without +24,289.47799864820206,0.0,0.0,60.66723328572497,0.0662679170018236,10,mac,phase-21,without +25,289.12507512691684,0.0,0.0,60.593269482956494,0.0661871250013064,10,mac,phase-21,without +26,289.32820096574676,0.0,0.0,60.63583949763187,0.0662336249988584,10,mac,phase-21,without +27,292.50923477110916,0.0,0.0,61.30250335761741,0.0669618339998123,10,mac,phase-21,without +28,289.02405823299785,0.0,0.0,60.572098908689014,0.0661639999998442,10,mac,phase-21,without +29,263.541225849374,0.0,0.0,55.231544724199395,0.0603304159994877,10,mac,phase-21,without +0,1381.9094842887912,1.232925439914284,0.0333223091868725,441.0874067066318,0.4757015830000455,10,mac,phase-21,with +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.4761970830004429,10,mac,phase-21,with +2,1377.8662199972532,1.2293180810662478,0.0332248130017904,439.7968497047006,0.4743097499995201,10,mac,phase-21,with +3,1382.9158230323503,1.233823284999083,0.0333465752702454,441.40861685223945,0.4760479999968083,10,mac,phase-21,with +4,1386.128503523028,1.2366896055159518,0.033424043392323,442.43406238417987,0.4771539169996686,10,mac,phase-21,with +5,1376.9074533923183,1.2284626793546278,0.0332016940366115,439.4908239626273,0.4739797089969215,10,mac,phase-21,with +6,1390.6754208710522,1.2407463184449117,0.0335336842822949,443.8853788447377,0.4787191249997704,10,mac,phase-21,with +7,1380.57996803777,1.231739259178643,0.0332902502480714,440.66304253372147,0.4752439170006255,10,mac,phase-21,with +8,1381.657961329704,1.2327010337151032,0.0333162441544622,441.0071238726168,0.4756149999993795,10,mac,phase-21,with +9,1374.6571707641597,1.226455000320077,0.0331474324410831,438.7725632226178,0.47320508300254,10,mac,phase-21,with +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.9536166278275,0.4809496670022781,10,mac,phase-21,with +11,1363.870814864897,1.2168315244387933,0.0328873384983457,435.32969970260285,0.4694920420006383,10,mac,phase-21,with +12,1392.8155520129008,1.2426557214554106,0.0335852897690651,444.5684806731154,0.4794558329995197,10,mac,phase-21,with +13,1383.647032868345,1.234475662900069,0.0333642071054072,441.6420094542761,0.4762997079997149,10,mac,phase-21,with +14,1381.6147495768726,1.232662480633317,0.0333152021792788,440.993331247114,0.4756001250025292,10,mac,phase-21,with +15,1377.525609644332,1.229014192009845,0.0332165997840498,439.6881313414681,0.4741925000016636,10,mac,phase-21,with +16,1385.5815166921095,1.2362015894868232,0.0334108537699141,442.2594713523535,0.4769656249991385,10,mac,phase-21,with +17,1383.6618018467698,1.234488839630838,0.0333645632332658,441.6467235187406,0.4763047919987002,10,mac,phase-21,with +18,1374.955298503026,1.2267209868248166,0.0331546212655355,438.8677216918945,0.4733077089986182,10,mac,phase-21,with +19,1371.61443522941,1.2237403029463525,0.0330740622417933,437.8013618946179,0.4721576669981004,10,mac,phase-21,with +20,1375.2341748666422,1.2269697974504057,0.0331613458770379,438.9567353743518,0.4734037079979316,10,mac,phase-21,with +21,1379.3660443310175,1.2306562089230462,0.0332609786195417,440.2755739868747,0.4748260419983126,10,mac,phase-21,with +22,1373.8068562416304,1.2256963584418106,0.0331269286065354,438.5011539647093,0.4729123750003055,10,mac,phase-21,with +23,1383.064340779556,1.2339557910068135,0.0333501565136976,441.456021771816,0.4760991250004736,10,mac,phase-21,with +24,1410.7851087655586,1.2586879753158997,0.0340185939274567,450.3041278177449,0.4856415829999605,10,mac,phase-21,with +25,1389.1312954040106,1.2393686655722889,0.0334964504208726,443.3925142210916,0.4781875830012723,10,mac,phase-21,with +26,1378.0240598523594,1.229458904162844,0.0332286190314282,439.8472301190153,0.4743640839988075,10,mac,phase-21,with +27,1384.5515748746504,1.2352826859820614,0.0333860185400557,441.93072741471747,0.4766110829987156,10,mac,phase-21,with +28,1384.6750399681143,1.2353928402695915,0.0333889956829619,441.9701358553671,0.4766535840026336,10,mac,phase-21,with +29,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.4761708330006513,10,mac,phase-21,with +0,297.8349870577906,0.0,0.0,62.26538914028103,0.0661593750010069,10,mac,phase-28,without +1,297.48685086603774,0.0,0.0,62.192607780147874,0.0660820420016534,10,mac,phase-28,without +2,295.90878769905953,0.0,0.0,61.86269785871619,0.0657314999989466,10,mac,phase-28,without +3,268.1761314081655,0.0,0.0,56.064908106395634,0.0595711250025488,10,mac,phase-28,without +4,300.2289979376498,0.0,0.0,62.76588110904888,0.0666911670014087,10,mac,phase-28,without +5,297.55137488588906,0.0,0.0,62.20609717319946,0.0660963750015071,10,mac,phase-28,without +6,295.72984193562934,0.0,0.0,61.82528745336033,0.0656917500018607,10,mac,phase-28,without +7,296.86091429487476,0.0,0.0,62.06174946640304,0.0659430000014253,10,mac,phase-28,without +8,297.5283032487058,0.0,0.0,62.201273816207355,0.0660912499988626,10,mac,phase-28,without +9,297.3067796489023,0.0,0.0,62.15496208741491,0.0660420420026639,10,mac,phase-28,without +10,294.7674017488792,0.0,0.0,61.624079686119025,0.0654779589967802,10,mac,phase-28,without +11,294.9677264979095,0.0,0.0,61.665959582688664,0.0655224580004869,10,mac,phase-28,without +12,291.51804808384634,0.0,0.0,60.94476973530921,0.064756166000734,10,mac,phase-28,without +13,298.35756724728503,0.0,0.0,62.3746397665332,0.0662754580007458,10,mac,phase-28,without +14,290.0624738641291,0.0,0.0,60.640467355966294,0.0644328329981362,10,mac,phase-28,without +15,292.77630024929647,0.0,0.0,61.2078199615177,0.0650356670012115,10,mac,phase-28,without +16,297.2189949149903,0.0,0.0,62.13660980895493,0.0660225419997004,10,mac,phase-28,without +17,294.33335357686957,0.0,0.0,61.533337565447475,0.0653815419973398,10,mac,phase-28,without +18,295.53495085809004,0.0,0.0,61.78454352027568,0.0656484580031246,10,mac,phase-28,without +19,292.72958977705207,0.0,0.0,61.19805466913229,0.0650252910018025,10,mac,phase-28,without +20,295.4385362100208,0.0,0.0,61.76438707176652,0.0656270409999706,10,mac,phase-28,without +21,295.95718184808175,0.0,0.0,61.872815140606896,0.0657422500007669,10,mac,phase-28,without +22,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504,10,mac,phase-28,without +23,297.1503427630479,0.0,0.0,62.12225738851488,0.0660072919999947,10,mac,phase-28,without +24,298.31724030194476,0.0,0.0,62.36620901442696,0.0662665000018023,10,mac,phase-28,without +25,299.6462019297127,0.0,0.0,62.64404176242917,0.0665617080012452,10,mac,phase-28,without +26,273.66342822977543,0.0,0.0,57.212082504209,0.0607900420000078,10,mac,phase-28,without +27,295.93523566460374,0.0,0.0,61.8682270709919,0.065737375000026,10,mac,phase-28,without +28,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278,10,mac,phase-28,without +29,296.78419945940794,0.0,0.0,62.04571146116275,0.065925959002925,10,mac,phase-28,without +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.4776932919994578,10,mac,phase-28,with +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947,10,mac,phase-28,with +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.471633417000703,10,mac,phase-28,with +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077,10,mac,phase-28,with +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674,10,mac,phase-28,with +5,1542.8219147718562,2.402400988433286,0.0,466.8551520808284,0.4908737080004357,10,mac,phase-28,with +6,1494.696902023256,2.327463254474083,0.0,452.2926092944422,0.4755619579991617,10,mac,phase-28,with +7,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.4757614579975779,10,mac,phase-28,with +8,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.4753305420017568,10,mac,phase-28,with +9,1496.9221576047012,2.3309283052081926,0.0,452.9659676535291,0.4762699589991825,10,mac,phase-28,with +10,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.4777056249986344,10,mac,phase-28,with +11,1500.131823380298,2.335926227624257,0.0,453.93720677675384,0.4772911660002137,10,mac,phase-28,with +12,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286,10,mac,phase-28,with +13,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.4754105419997358,10,mac,phase-28,with +14,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702,10,mac,phase-28,with +15,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234,10,mac,phase-28,with +16,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261,10,mac,phase-28,with +17,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572,10,mac,phase-28,with +18,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218,10,mac,phase-28,with +19,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491,10,mac,phase-28,with +20,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127,10,mac,phase-28,with +21,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458,10,mac,phase-28,with +22,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.4765544590009085,10,mac,phase-28,with +23,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.4758864580035151,10,mac,phase-28,with +24,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.4770657910012232,10,mac,phase-28,with +25,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.4747234590031439,10,mac,phase-28,with +26,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.4790385420019447,10,mac,phase-28,with +27,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.4746996670000953,10,mac,phase-28,with +28,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353,10,mac,phase-28,with +29,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.4753105830022832,10,mac,phase-28,with +0,277.4237413479984,0.0,0.0,58.43349005665485,0.0632725420000497,10,mac,phase-17,without +1,292.6972536911697,0.0,0.0,61.650534954464696,0.0667560000001685,10,mac,phase-17,without +2,291.40709000891684,0.0,0.0,61.37878904572572,0.0664617500005988,10,mac,phase-17,without +3,289.27526607180926,0.0,0.0,60.929765064482325,0.065975541001535,10,mac,phase-17,without +4,293.90739872205074,0.0,0.0,61.90542661328777,0.0670319999990169,10,mac,phase-17,without +5,254.53182670092016,0.0,0.0,53.61178856705561,0.058051541000168,10,mac,phase-17,without +6,290.4961927970452,0.0,0.0,61.18692766099379,0.0662540000012086,10,mac,phase-17,without +7,292.38028776435414,0.0,0.0,61.58377273273529,0.066683708999335,10,mac,phase-17,without +8,289.7393040716505,0.0,0.0,61.02750493244705,0.066081375000067,10,mac,phase-17,without +9,290.32610603159867,0.0,0.0,61.15110245270702,0.0662152080003579,10,mac,phase-17,without +10,291.71309885989376,0.0,0.0,61.44324338933713,0.0665315420010301,10,mac,phase-17,without +11,294.01993782201987,0.0,0.0,61.92913061333867,0.0670576669981528,10,mac,phase-17,without +12,289.9026298051295,0.0,0.0,61.06190607121357,0.0661186249999445,10,mac,phase-17,without +13,288.43671886620615,0.0,0.0,60.75314269048304,0.0657842920008988,10,mac,phase-17,without +14,291.84774065261695,0.0,0.0,61.47160285784574,0.0665622500018798,10,mac,phase-17,without +15,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555,10,mac,phase-17,without +16,308.0001822067488,0.0,0.0,64.87377575176583,0.0702461670007323,10,mac,phase-17,without +17,297.17117303800103,0.0,0.0,62.59287219062579,0.0677763749990845,10,mac,phase-17,without +18,290.83837006338433,0.0,0.0,61.25900012239558,0.0663320409985317,10,mac,phase-17,without +19,297.87343862204426,0.0,0.0,62.74078970057979,0.0679365420000976,10,mac,phase-17,without +20,292.22755518415335,0.0,0.0,61.55160281943542,0.0666488749993732,10,mac,phase-17,without +21,289.24202214867086,0.0,0.0,60.922762929615594,0.0659679589989536,10,mac,phase-17,without +22,290.14122568247194,0.0,0.0,61.11216128642516,0.0661730419997184,10,mac,phase-17,without +23,291.32615497134736,0.0,0.0,61.3617417782854,0.066443290997995,10,mac,phase-17,without +24,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187,10,mac,phase-17,without +25,291.91150125700455,0.0,0.0,61.48503269129974,0.066576791999978,10,mac,phase-17,without +26,294.6469332621997,0.0,0.0,62.06119404684761,0.0672006669992697,10,mac,phase-17,without +27,298.06946458808636,0.0,0.0,62.782078457201386,0.0679812500020489,10,mac,phase-17,without +28,274.1955917727861,0.0,0.0,57.75354808345529,0.0625362920000043,10,mac,phase-17,without +29,288.7392551319019,0.0,0.0,60.81686560686869,0.0658532920024299,10,mac,phase-17,without +0,1447.352143928246,0.1670342924325731,0.0,440.8703114465335,0.4786405830018339,10,mac,phase-17,with +1,1472.891086509974,0.1699816603012087,0.0,448.6495941990104,0.4870863329997519,10,mac,phase-17,with +2,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.4763764579984126,10,mac,phase-17,with +3,1442.1423750135714,0.166433049626494,0.0,439.2833911841685,0.4769177079979272,10,mac,phase-17,with +4,1442.9420675541187,0.1665253395907811,0.0,439.5269813159078,0.4771821670001372,10,mac,phase-17,with +5,1437.1418858973352,0.1658559591341414,0.0,437.7602185386529,0.4752640420010721,10,mac,phase-17,with +6,1439.2019047977624,0.1660936993419229,0.0,438.3877100430714,0.4759452920006879,10,mac,phase-17,with +7,1437.048774549541,0.1658452134506105,0.0,437.73185638154155,0.4752332499992917,10,mac,phase-17,with +8,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179,10,mac,phase-17,with +9,1443.399553534289,0.1665781365879156,0.0,439.6663337101445,0.4773334580022492,10,mac,phase-17,with +10,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901,10,mac,phase-17,with +11,1432.716058127496,0.165345188474033,0.0,436.41209045836274,0.4738004169994383,10,mac,phase-17,with +12,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.4786068749999685,10,mac,phase-17,with +13,1441.7816532347647,0.1663914198770645,0.0,439.17351362352423,0.4767984169993724,10,mac,phase-17,with +14,1448.9938602988364,0.1672237576801888,0.0,441.3703860210905,0.4791834999996354,10,mac,phase-17,with +15,1443.4076182206436,0.1665790673076334,0.0,439.6687902517676,0.4773361250008747,10,mac,phase-17,with +16,1440.843745147536,0.1662831788975806,0.0,438.8878223822743,0.4764882499985106,10,mac,phase-17,with +17,1442.4172972021684,0.1664647775190038,0.0,439.3671337836588,0.4770086249991436,10,mac,phase-17,with +18,1441.4691835270078,0.1663553587451826,0.0,439.0783338720352,0.4766950830016867,10,mac,phase-17,with +19,1441.9596812033676,0.1664119655168341,0.0,439.227741785132,0.4768572909997601,10,mac,phase-17,with +20,1439.0480618235515,0.1660759448151819,0.0,438.3408487451912,0.4758944159984821,10,mac,phase-17,with +21,1443.1939296256437,0.1665544061887644,0.0,439.6036996946248,0.4772654580010567,10,mac,phase-17,with +22,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519,10,mac,phase-17,with +23,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837,10,mac,phase-17,with +24,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415,10,mac,phase-17,with +25,1433.4711454001133,0.1654323306866836,0.0,436.6420936144327,0.4740501250016677,10,mac,phase-17,with +26,1457.45165533711,0.1681998448167466,0.0,443.9466704093212,0.4819805000006454,10,mac,phase-17,with +27,1442.1242317326914,0.1664309557683429,0.0,439.27786465496433,0.476911707999534,10,mac,phase-17,with +28,1437.1829592656563,0.1658606992805142,0.0,437.7727296809894,0.4752776249988528,10,mac,phase-17,with +29,1453.654038845132,0.1677615740155951,0.0,442.7898984567618,0.4807246250020398,10,mac,phase-17,with +0,420.8661640891317,0.3104241498772484,10.623404240243612,71.60450390501863,0.0698542089994589,10,mac,phase-10,without +1,414.7342996681472,0.3059013847740801,10.468625167824074,70.56125275455447,0.0688364589987031,10,mac,phase-10,without +2,408.0288084577771,0.3009555217275851,10.299366743566248,69.42040701182964,0.0677235000002838,10,mac,phase-10,without +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.0672056660005182,10,mac,phase-10,without +4,376.92038266158966,0.2780104445135475,9.514135212241404,64.12774253445829,0.0625602090003667,10,mac,phase-10,without +5,393.8408701476979,0.2904907253998756,9.941238158129076,67.0065273255713,0.0653686250007012,10,mac,phase-10,without +6,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695,10,mac,phase-10,without +7,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465,10,mac,phase-10,without +8,415.36741054416126,0.3063683572281143,10.484606002917692,70.66896773395172,0.0689415410015499,10,mac,phase-10,without +9,413.5893054085112,0.3050568553250778,10.43972349334711,70.3664479616513,0.0686464159989554,10,mac,phase-10,without +10,415.22381858036624,0.3062624460927139,10.480981488506211,70.64453756538603,0.0689177080021181,10,mac,phase-10,without +11,408.53514892789457,0.3013289903582241,10.312147670037003,69.50655377596371,0.0678075409996381,10,mac,phase-10,without +12,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465,10,mac,phase-10,without +13,401.6223100288431,0.2962301909735771,10.137655424429084,68.33043071790512,0.066660167001828,10,mac,phase-10,without +14,406.60442049183155,0.2999049159503756,10.263412679190637,69.17806727921999,0.0674870840011863,10,mac,phase-10,without +15,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.0673156250013562,10,mac,phase-10,without +16,409.57821959330414,0.3020983425946351,10.338476613238624,69.68401769182915,0.0679806670013931,10,mac,phase-10,without +17,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.0697001250009634,10,mac,phase-10,without +18,402.4366746389332,0.2968308532822815,10.158211423438075,68.46898349044626,0.0667953330012096,10,mac,phase-10,without +19,401.3386386128404,0.2960209594751322,10.130495057593414,68.28216798559717,0.0666130839999823,10,mac,phase-10,without +20,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.0668373749977035,10,mac,phase-10,without +21,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.0695724580000387,10,mac,phase-10,without +22,387.29202689790424,0.2856604033831452,9.775933804667638,65.8923330470455,0.0642816660001699,10,mac,phase-10,without +23,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.0681323340031667,10,mac,phase-10,without +24,407.4549346245413,0.3005322415686667,10.284881155905484,69.32277038850579,0.0676282499989611,10,mac,phase-10,without +25,408.27633635683975,0.3011380943461365,10.305614784290006,69.46252042917548,0.0677645840005425,10,mac,phase-10,without +26,417.85495624498935,0.3082031311428376,10.547396043554889,71.09218891694786,0.0693544169989763,10,mac,phase-10,without +27,406.94080393314306,0.3001530269954341,10.271903590510414,69.23529822694681,0.0675429160000931,10,mac,phase-10,without +28,390.6549455763897,0.2881408384025166,9.860819803108344,66.46448672484716,0.0648398339981213,10,mac,phase-10,without +29,401.5595483973625,0.2961838989982185,10.136071210161257,68.31975270225574,0.0666497499987599,10,mac,phase-10,without +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235,10,mac,phase-10,with +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195,10,mac,phase-10,with +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.4886344999977154,10,mac,phase-10,with +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134,10,mac,phase-10,with +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859,10,mac,phase-10,with +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844,10,mac,phase-10,with +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769,10,mac,phase-10,with +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.4936091669987945,10,mac,phase-10,with +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017,10,mac,phase-10,with +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253,10,mac,phase-10,with +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.4851672910008346,10,mac,phase-10,with +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426,10,mac,phase-10,with +12,2188.706010784058,2.983740150116864,75.78699981296833,491.554613397586,0.4860802499970305,10,mac,phase-10,with +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227,10,mac,phase-10,with +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.4898277079992112,10,mac,phase-10,with +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.4867344580015924,10,mac,phase-10,with +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.4993912499994621,10,mac,phase-10,with +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378,10,mac,phase-10,with +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.4859611249994486,10,mac,phase-10,with +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.4922967499987862,10,mac,phase-10,with +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.4873433749999094,10,mac,phase-10,with +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008,10,mac,phase-10,with +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.487996292002208,10,mac,phase-10,with +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986,10,mac,phase-10,with +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196,10,mac,phase-10,with +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232,10,mac,phase-10,with +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.4884874160015897,10,mac,phase-10,with +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.4907508750002307,10,mac,phase-10,with +28,2240.945048917429,3.05495470095834,77.59584940434183,503.2868150123256,0.4976817919996392,10,mac,phase-10,with +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876,10,mac,phase-10,with +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.0674112920023617,10,mac,phase-11,without +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.0708057499978167,10,mac,phase-11,without +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.0681188330017903,10,mac,phase-11,without +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.0692457080003805,10,mac,phase-11,without +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.0679880419993423,10,mac,phase-11,without +5,404.8936371581969,1.612985331957557,11.290897323702897,72.24115156958844,0.070075582996651,10,mac,phase-11,without +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.0647352500018314,10,mac,phase-11,without +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.0662939590001769,10,mac,phase-11,without +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.0675850420011556,10,mac,phase-11,without +9,386.0565356160226,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909,10,mac,phase-11,without +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.0684275000021443,10,mac,phase-11,without +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.0697700000018812,10,mac,phase-11,without +12,398.195304750097,1.586301010616593,11.104107074316149,71.046034624424,0.068916291998903,10,mac,phase-11,without +13,393.1222593641649,1.5660913875331202,10.96263971273184,70.14090150547273,0.0680382919999829,10,mac,phase-11,without +14,400.10034307722657,1.5938901614366543,11.157231130056582,71.38593169838633,0.0692459999991115,10,mac,phase-11,without +15,396.1694089205137,1.5782303966150315,11.047612776305222,70.68457414626897,0.0685656669993477,10,mac,phase-11,without +16,400.56234267245264,1.595730641261678,11.170114488831745,71.46836169906025,0.0693259590007073,10,mac,phase-11,without +17,391.1936238724376,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276,10,mac,phase-11,without +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.0678528750031546,10,mac,phase-11,without +19,390.2371352451378,1.554597843407482,10.882184903852377,69.62613745473936,0.0675389589996484,10,mac,phase-11,without +20,399.1241054106431,1.5900010980081565,11.130007686057096,71.21175130440785,0.0690770410001277,10,mac,phase-11,without +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.0679149580028024,10,mac,phase-11,without +22,388.3292021584939,1.5469971606585198,10.828980124609638,69.28572389757838,0.0672087499988265,10,mac,phase-11,without +23,392.8437098823672,1.5649817227048024,10.954872058933615,70.09120268709806,0.0679900830000406,10,mac,phase-11,without +24,401.12472845982575,1.597971032175946,11.18579722523162,71.5687026112844,0.0694232919995556,10,mac,phase-11,without +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019,10,mac,phase-11,without +26,387.2337999468269,1.5426333783269082,10.798433648288356,69.09028215698174,0.0670191670033091,10,mac,phase-11,without +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.0678187920020718,10,mac,phase-11,without +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.065910666999116,10,mac,phase-11,without +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.0686019579989078,10,mac,phase-11,without +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.4849021669979265,10,mac,phase-11,with +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063,10,mac,phase-11,with +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135,10,mac,phase-11,with +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.4895718750012747,10,mac,phase-11,with +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.6778526944505,0.4906171659968095,10,mac,phase-11,with +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154,10,mac,phase-11,with +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.4871125419995223,10,mac,phase-11,with +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639,10,mac,phase-11,with +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739,10,mac,phase-11,with +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.4879217089983285,10,mac,phase-11,with +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891,10,mac,phase-11,with +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944,10,mac,phase-11,with +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.4859462909989815,10,mac,phase-11,with +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574,10,mac,phase-11,with +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318,10,mac,phase-11,with +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.4878895000001648,10,mac,phase-11,with +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959,10,mac,phase-11,with +17,2227.261152610207,3.99574426756604,74.82031141017409,495.37239557149974,0.488344417000917,10,mac,phase-11,with +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.4923834159999387,10,mac,phase-11,with +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123,10,mac,phase-11,with +20,2227.782798769239,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098,10,mac,phase-11,with +21,2221.6883752224203,3.9857466104544903,74.63310528076033,494.1329360310955,0.4871225419992697,10,mac,phase-11,with +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.4864686250002705,10,mac,phase-11,with +23,2217.6434795297237,3.9784899990068143,74.49722523140261,493.23329762686984,0.4862356670018926,10,mac,phase-11,with +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311,10,mac,phase-11,with +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591,10,mac,phase-11,with +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985,10,mac,phase-11,with +27,2251.464964761066,4.039166316903047,75.63338928400955,500.7556441380552,0.4936512920030509,10,mac,phase-11,with +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068,10,mac,phase-11,with +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304,10,mac,phase-11,with +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.0670402079995255,10,mac,phase-29,without +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.0656716659977973,10,mac,phase-29,without +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.0659436669993738,10,mac,phase-29,without +3,298.06491667401536,0.7076724986042197,0.0,63.11764713741445,0.0662419580003188,10,mac,phase-29,without +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.0680570420008734,10,mac,phase-29,without +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566,10,mac,phase-29,without +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484,10,mac,phase-29,without +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987,10,mac,phase-29,without +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.0652717080010916,10,mac,phase-29,without +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.0657346249972761,10,mac,phase-29,without +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.0652146250031364,10,mac,phase-29,without +11,299.57754690862345,0.7112638196812994,0.0,63.43795877443208,0.0665781249990686,10,mac,phase-29,without +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.0657091670000227,10,mac,phase-29,without +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.0662325840021367,10,mac,phase-29,without +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.0625667919994157,10,mac,phase-29,without +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462,10,mac,phase-29,without +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.0657192079997912,10,mac,phase-29,without +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.0652280419999442,10,mac,phase-29,without +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.0655310830006783,10,mac,phase-29,without +19,295.06703650881764,0.7005548633900702,0.0,62.48282186331435,0.0655757090025872,10,mac,phase-29,without +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.0662343750009313,10,mac,phase-29,without +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.0647040420008124,10,mac,phase-29,without +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.0638219169995863,10,mac,phase-29,without +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051,10,mac,phase-29,without +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.0650090830022236,10,mac,phase-29,without +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.0664734580022923,10,mac,phase-29,without +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.0635219579999102,10,mac,phase-29,without +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474,10,mac,phase-29,without +28,296.9865061319233,0.7051121117886252,0.0,62.88928501809976,0.06600229200194,10,mac,phase-29,without +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.0648245409975061,10,mac,phase-29,without +0,1409.9511145646975,0.7683839360010437,0.0,445.2951949112135,0.4760072919998492,10,mac,phase-29,with +1,1399.6801275675623,0.7627865352585996,0.0,442.0513794983424,0.4725397500005783,10,mac,phase-29,with +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818,10,mac,phase-29,with +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.4716822500013222,10,mac,phase-29,with +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.472294041999703,10,mac,phase-29,with +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029,10,mac,phase-29,with +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.474087958002201,10,mac,phase-29,with +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738,10,mac,phase-29,with +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.4762599170026078,10,mac,phase-29,with +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575,10,mac,phase-29,with +10,1410.2225082204634,0.7685318379554227,0.0,445.3809073090361,0.4760989159985911,10,mac,phase-29,with +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956,10,mac,phase-29,with +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474,10,mac,phase-29,with +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319,10,mac,phase-29,with +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.4767237919986655,10,mac,phase-29,with +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965,10,mac,phase-29,with +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252,10,mac,phase-29,with +17,1403.882638711802,0.7650767863323724,0.0,443.3786297836606,0.4739585409988649,10,mac,phase-29,with +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.4729575839992321,10,mac,phase-29,with +19,1405.5357040683705,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616,10,mac,phase-29,with +20,1402.830378107766,0.764503333723785,0.0,443.046301530623,0.4736032920009165,10,mac,phase-29,with +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547,10,mac,phase-29,with +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724,10,mac,phase-29,with +23,1412.2901343112185,0.7696586363652266,0.0,446.033911483135,0.4767969579988858,10,mac,phase-29,with +24,1413.507409993883,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596,10,mac,phase-29,with +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379,10,mac,phase-29,with +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.4757148329990741,10,mac,phase-29,with +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383,10,mac,phase-29,with +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697,10,mac,phase-29,with +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.4738867079977353,10,mac,phase-29,with +0,294.3279990372017,0.0666126511343672,0.0,61.28363904361788,0.0662047499972686,10,mac,phase-16,without +1,293.0398507223221,0.0663211159267448,0.0,61.01542665260526,0.0659149999992223,10,mac,phase-16,without +2,295.58817487391934,0.0668978555785717,0.0,61.54602713228603,0.0664882079981907,10,mac,phase-16,without +3,295.0835897351759,0.066783657289844,0.0,61.44096470665652,0.0663747090002289,10,mac,phase-16,without +4,294.112381481635,0.0665638523212934,0.0,61.238744135589954,0.0661562500026775,10,mac,phase-16,without +5,294.789060556393,0.0667169991074783,0.0,61.37963917888006,0.0663084589978098,10,mac,phase-16,without +6,294.5386151968499,0.0666603180257666,0.0,61.32749258370531,0.0662521250014833,10,mac,phase-16,without +7,292.0345615545926,0.0660935977265118,0.0,60.806109908390894,0.0656888750017969,10,mac,phase-16,without +8,295.10748548573775,0.0667890654035844,0.0,61.44594017129767,0.066380083997501,10,mac,phase-16,without +9,298.56736520414785,0.0675721093593182,0.0,62.166340610572824,0.0671583330004068,10,mac,phase-16,without +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.0666939999973692,10,mac,phase-16,without +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.0664290829990932,10,mac,phase-16,without +12,294.3600482591372,0.066619904551123,0.0,61.290312187033216,0.0662119589978829,10,mac,phase-16,without +13,292.5965765500129,0.0662207936064304,0.0,60.92313011791601,0.0658152920004795,10,mac,phase-16,without +14,296.05627397750055,0.0670037963058731,0.0,61.64349260140331,0.0665934999997261,10,mac,phase-16,without +15,328.7910592886891,0.0744123705530585,0.0,68.45938090881384,0.0739567080017877,10,mac,phase-16,without +16,277.83269848101855,0.0628794157476561,0.0,57.849062487843625,0.0624943749971862,10,mac,phase-16,without +17,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.0674349580003763,10,mac,phase-16,without +18,295.0785838430391,0.0667825243505803,0.0,61.43992240253389,0.0663735829984943,10,mac,phase-16,without +19,293.1674829950254,0.0663500018094433,0.0,61.042001664687874,0.0659437089998391,10,mac,phase-16,without +20,292.4674638570015,0.0661915726733057,0.0,60.8962468594413,0.0657862500011106,10,mac,phase-16,without +21,294.72663371914854,0.0667028705939003,0.0,61.36664094638829,0.0662944169998809,10,mac,phase-16,without +22,294.5726961110385,0.066668031257449,0.0,61.3345887568531,0.0662597910013573,10,mac,phase-16,without +23,292.5643406218039,0.0662134979340961,0.0,60.91641809936848,0.0658080410030379,10,mac,phase-16,without +24,295.7811948568304,0.0669415400830214,0.0,61.58621687637975,0.0665316250015166,10,mac,phase-16,without +25,298.4484465539857,0.0675451955536914,0.0,62.14157990939614,0.0671315840008901,10,mac,phase-16,without +26,300.4471681677118,0.067997548527263,0.0,62.55774464508201,0.0675811670007533,10,mac,phase-16,without +27,268.4016522482285,0.0607449705212693,0.0,55.88537287956778,0.0603730000002542,10,mac,phase-16,without +28,293.7845093668818,0.0664896479273241,0.0,61.17047609313823,0.0660824999977194,10,mac,phase-16,without +29,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178,10,mac,phase-16,without +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.4768898330003139,10,mac,phase-16,with +1,1810.3407727008257,0.3624635693430848,0.0,450.5751679270311,0.475776458002656,10,mac,phase-16,with +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.474959334002051,10,mac,phase-16,with +3,1803.924867023314,0.3611789868448571,0.0,448.978315101507,0.4740902909979922,10,mac,phase-16,with +4,1814.9485005797917,0.3633861213392375,0.0,451.7219839266121,0.47698741700151,10,mac,phase-16,with +5,1838.3950575707256,0.3680805539366213,0.0,457.55759041176,0.4831494169993675,10,mac,phase-16,with +6,1810.9882621843371,0.3625932086645014,0.0,450.7363213889448,0.4759466249997786,10,mac,phase-16,with +7,1809.528084290628,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517,10,mac,phase-16,with +8,1816.3105392978791,0.3636588265794807,0.0,452.06098133162,0.4773453749985492,10,mac,phase-16,with +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575,10,mac,phase-16,with +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.4773302499997953,10,mac,phase-16,with +11,1812.3434823164148,0.3628645486982265,0.0,451.0736217181408,0.476302791001217,10,mac,phase-16,with +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062,10,mac,phase-16,with +13,1890.5448082241376,0.3785218946207775,0.0,470.5371260949556,0.4968549160003022,10,mac,phase-16,with +14,1863.8205427908624,0.3731712044175371,0.0,463.8857317459456,0.4898314999991271,10,mac,phase-16,with +15,1888.8672721415512,0.3781860209966702,0.0,470.1196046462245,0.496414042001561,10,mac,phase-16,with +16,1882.4233044209063,0.3768958199605018,0.0,468.51576746726386,0.494720499998948,10,mac,phase-16,with +17,1887.059090550134,0.3778239897351924,0.0,469.6695668762747,0.4959388329989451,10,mac,phase-16,with +18,1881.9700309632929,0.3768050662649475,0.0,468.40295237335386,0.4946013750013662,10,mac,phase-16,with +19,1886.6865178361625,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411,10,mac,phase-16,with +20,1849.6913781590397,0.3703422853976963,0.0,460.36912822982725,0.4861182080021535,10,mac,phase-16,with +21,1814.6577320581712,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264,10,mac,phase-16,with +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.4750594580000324,10,mac,phase-16,with +23,1807.75034288652,0.3619449175782984,0.0,449.9304366332412,0.4750956659991061,10,mac,phase-16,with +24,1811.4627790990735,0.3626882156914782,0.0,450.85442376047934,0.4760713329997088,10,mac,phase-16,with +25,1819.489476926938,0.3642953084491503,0.0,452.85218615760743,0.4781808330008061,10,mac,phase-16,with +26,1813.531285204246,0.3631023687158118,0.0,451.369253620001,0.4766149580027559,10,mac,phase-16,with +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.476694042001327,10,mac,phase-16,with +28,1801.3705887684314,0.3606675732881824,0.0,448.3425815584188,0.4734190000017406,10,mac,phase-16,with +29,1829.2969259130637,0.3662589403903112,0.0,455.2931591724651,0.4807583330002671,10,mac,phase-16,with +0,286.58077105611767,0.0,0.0,60.48994734420278,0.0664554579998366,10,mac,phase-20,without +1,284.29575202691694,0.0,0.0,60.00763766149979,0.0659255829996254,10,mac,phase-20,without +2,286.7606315278459,0.0,0.0,60.52791133747437,0.0664971659971342,10,mac,phase-20,without +3,285.07881009993866,0.0,0.0,60.17292140133334,0.0661071670001547,10,mac,phase-20,without +4,285.97901379987127,0.0,0.0,60.3629316180248,0.0663159159994393,10,mac,phase-20,without +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403,10,mac,phase-20,without +6,287.5501581793354,0.0,0.0,60.69456043050126,0.0666802500018093,10,mac,phase-20,without +7,286.76045473612015,0.0,0.0,60.52787402121571,0.0664971250007511,10,mac,phase-20,without +8,287.0916105357109,0.0,0.0,60.59777262887927,0.0665739169999142,10,mac,phase-20,without +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215,10,mac,phase-20,without +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624,10,mac,phase-20,without +11,287.78823570039054,0.0,0.0,60.74481256939876,0.0667354580000392,10,mac,phase-20,without +12,288.3114732547224,0.0,0.0,60.85525477385442,0.0668567920001805,10,mac,phase-20,without +13,287.04471347517006,0.0,0.0,60.58787384637458,0.0665630420007801,10,mac,phase-20,without +14,284.5945650282986,0.0,0.0,60.070709523065126,0.0659948749998875,10,mac,phase-20,without +15,284.649724611494,0.0,0.0,60.08235231497584,0.066007666002406,10,mac,phase-20,without +16,296.0487686832776,0.0,0.0,62.48840200608166,0.0686509999977715,10,mac,phase-20,without +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049,10,mac,phase-20,without +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078,10,mac,phase-20,without +19,282.8897370651235,0.0,0.0,59.71086348962979,0.0655995409979368,10,mac,phase-20,without +20,286.2961587022398,0.0,0.0,60.429872879903805,0.0663894589997653,10,mac,phase-20,without +21,260.0656021616251,0.0,0.0,54.893266295646235,0.0603068330019596,10,mac,phase-20,without +22,283.4221384206483,0.0,0.0,59.82323994057936,0.0657229999997071,10,mac,phase-20,without +23,271.9089975438187,0.0,0.0,57.39310730174492,0.0630532079994736,10,mac,phase-20,without +24,286.22194706122224,0.0,0.0,60.41420868079884,0.0663722499994037,10,mac,phase-20,without +25,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015,10,mac,phase-20,without +26,288.2345706895805,0.0,0.0,60.83902258877472,0.066838958999142,10,mac,phase-20,without +27,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547,10,mac,phase-20,without +28,286.87814802674137,0.0,0.0,60.55271609602139,0.0665244169977086,10,mac,phase-20,without +29,283.17741121511045,0.0,0.0,59.771584221592626,0.065666250000504,10,mac,phase-20,without +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.4753916670015314,10,mac,phase-20,with +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214,10,mac,phase-20,with +2,1410.4888534886547,2.57675488667884,0.0,450.2293538360664,0.4780275000011897,10,mac,phase-20,with +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321,10,mac,phase-20,with +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.4748084160019061,10,mac,phase-20,with +5,1402.588873689239,2.562322789961124,0.0,447.7076729368437,0.4753501250015688,10,mac,phase-20,with +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.4769594579993281,10,mac,phase-20,with +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915,10,mac,phase-20,with +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.4754808749967196,10,mac,phase-20,with +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.4759253749980416,10,mac,phase-20,with +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982,10,mac,phase-20,with +11,1405.115976126432,2.5669394330051785,0.0,448.5143263850866,0.476206583000021,10,mac,phase-20,with +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345,10,mac,phase-20,with +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.4764153750002151,10,mac,phase-20,with +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.4748462499992456,10,mac,phase-20,with +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462,10,mac,phase-20,with +16,1407.7395911650067,2.571732390322558,0.0,449.3517867454507,0.4770957499968062,10,mac,phase-20,with +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.4743893330014543,10,mac,phase-20,with +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309,10,mac,phase-20,with +19,1391.8015679961811,2.5426159751288515,0.0,444.26435492705934,0.4716942089980875,10,mac,phase-20,with +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645,10,mac,phase-20,with +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289,10,mac,phase-20,with +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583,10,mac,phase-20,with +23,1402.136811455346,2.561496939003574,0.0,447.5633742513517,0.4751969169992662,10,mac,phase-20,with +24,1407.9788382191025,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483,10,mac,phase-20,with +25,1407.0144704711065,2.570407701873714,0.0,449.1203275455708,0.4768499999991036,10,mac,phase-20,with +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.4770084999981918,10,mac,phase-20,with +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.4770505419983237,10,mac,phase-20,with +28,1401.8344944047062,2.560944650387017,0.0,447.4668743676224,0.4750944590014114,10,mac,phase-20,with +29,1405.6258237574764,2.5678708493517206,0.0,448.6770702230915,0.4763793749989418,10,mac,phase-20,with +0,294.81448863624877,0.0,0.0,61.91171740072288,0.0671278330009954,10,mac,phase-18,without +1,263.1998512879779,0.0,0.0,55.27257119631946,0.0599293330014916,10,mac,phase-18,without +2,296.9928397015734,0.0,0.0,62.36917611036704,0.0676238330015621,10,mac,phase-18,without +3,291.39142074467475,0.0,0.0,61.19286530859214,0.0663484169999719,10,mac,phase-18,without +4,292.5078607995772,0.0,0.0,61.42732027548915,0.0666026250000868,10,mac,phase-18,without +5,291.9049011262528,0.0,0.0,61.30069736400479,0.0664653339990763,10,mac,phase-18,without +6,291.0495909115414,0.0,0.0,61.1210802612358,0.0662705840004491,10,mac,phase-18,without +7,297.18077517649056,0.0,0.0,62.408642990256375,0.0676666250001289,10,mac,phase-18,without +8,293.1889644158855,0.0,0.0,61.57035359386013,0.0667577089989208,10,mac,phase-18,without +9,290.06599953169535,0.0,0.0,60.91452382017178,0.0660466250010358,10,mac,phase-18,without +10,290.5013403480997,0.0,0.0,61.005946388047946,0.0661457499991229,10,mac,phase-18,without +11,293.391717947307,0.0,0.0,61.612932299531735,0.0668038749972765,10,mac,phase-18,without +12,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234,10,mac,phase-18,without +13,294.85419962422475,0.0,0.0,61.92005679909045,0.0671368750008696,10,mac,phase-18,without +14,288.935650518899,0.0,0.0,60.6771479402815,0.0657892499984882,10,mac,phase-18,without +15,288.040264791619,0.0,0.0,60.489114888146126,0.0655853749995003,10,mac,phase-18,without +16,291.310167374162,0.0,0.0,61.17580191480743,0.0663299160005408,10,mac,phase-18,without +17,291.8930036442997,0.0,0.0,61.29819886556306,0.0664626249999855,10,mac,phase-18,without +18,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544,10,mac,phase-18,without +19,291.953940380838,0.0,0.0,61.31099571971134,0.0664765000001352,10,mac,phase-18,without +20,290.492192146893,0.0,0.0,61.004025244855654,0.0661436669979593,10,mac,phase-18,without +21,291.2743036344979,0.0,0.0,61.16827044739114,0.0663217500004975,10,mac,phase-18,without +22,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666,10,mac,phase-18,without +23,301.8341063464249,0.0,0.0,63.38585318673492,0.0687261659986688,10,mac,phase-18,without +24,293.4286796545365,0.0,0.0,61.62069434264986,0.0668122909992234,10,mac,phase-18,without +25,291.57880285799905,0.0,0.0,61.23221598128041,0.0663910830007807,10,mac,phase-18,without +26,290.63986327224137,0.0,0.0,61.03503651917635,0.066177290998894,10,mac,phase-18,without +27,292.83779754454514,0.0,0.0,61.49660774710921,0.0666777500009629,10,mac,phase-18,without +28,291.7103778938751,0.0,0.0,61.25984703997034,0.0664210420000017,10,mac,phase-18,without +29,292.0681281288885,0.0,0.0,61.33497540816094,0.0665024999980232,10,mac,phase-18,without +0,1393.914644610329,0.1001279555078772,0.0,442.7991952410027,0.4769412079986068,10,mac,phase-18,with +1,1395.233719300143,0.1002227075447856,0.0,443.2182203322239,0.4773925420013256,10,mac,phase-18,with +2,1395.0142778015193,0.1002069445791724,0.0,443.1485112439603,0.4773174579968327,10,mac,phase-18,with +3,1395.110604219539,0.100213863917695,0.0,443.1791108653535,0.4773504170007072,10,mac,phase-18,with +4,1393.8152786855164,0.1001208178348948,0.0,442.76763007185,0.4769072089984547,10,mac,phase-18,with +5,1393.8315956415768,0.1001219899177456,0.0,442.77281341291064,0.4769127920008031,10,mac,phase-18,with +6,1387.1687683245957,0.0996433843734744,0.0,440.6562601609618,0.4746330420020967,10,mac,phase-18,with +7,1391.1876039682206,0.0999320661791174,0.0,441.93290733278377,0.4760081249987706,10,mac,phase-18,with +8,1392.3965925792977,0.1000189104908029,0.0,442.3169618271607,0.4764217919982911,10,mac,phase-18,with +9,1388.5243727459326,0.0997407604213628,0.0,441.08688950340695,0.4750968750013271,10,mac,phase-18,with +10,1392.8408268551927,0.1000508208161473,0.0,442.458079922609,0.4765737909983727,10,mac,phase-18,with +11,1386.1762985767418,0.0995720930880716,0.0,440.3409863331489,0.4742934589994547,10,mac,phase-18,with +12,1389.0087958741594,0.0997755576003849,0.0,441.24077422810245,0.4752626250010507,10,mac,phase-18,with +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.4757032500019704,10,mac,phase-18,with +14,1390.0111294314313,0.0998475574249184,0.0,441.559181452131,0.4756055830002879,10,mac,phase-18,with +15,1390.948925844576,0.0999149214044087,0.0,441.8570874240971,0.4759264589993108,10,mac,phase-18,with +16,1396.212671944328,0.1002930278668945,0.0,443.5292002366967,0.4777274999978544,10,mac,phase-18,with +17,1390.1526335855483,0.0998577219796151,0.0,441.60413250118455,0.4756539999980305,10,mac,phase-18,with +18,1399.6301828713626,0.100538515195242,0.0,444.61482703175864,0.4788968339998973,10,mac,phase-18,with +19,1386.9895127650243,0.0996305080522716,0.0,440.5993167764959,0.4745717080004397,10,mac,phase-18,with +20,1392.3554334243463,0.1000159539381534,0.0,442.30388696582713,0.4764077090003411,10,mac,phase-18,with +21,1399.1193305515217,0.1005018195492425,0.0,444.4525466532669,0.4787220409998554,10,mac,phase-18,with +22,1394.742232204257,0.100187402945426,0.0,443.0620916256557,0.4772243749976042,10,mac,phase-18,with +23,1397.4406575579208,0.1003812367750637,0.0,443.91928943159024,0.4781476670032134,10,mac,phase-18,with +24,1395.8205537077984,0.100264861151312,0.0,443.4046376314855,0.4775933329983672,10,mac,phase-18,with +25,1378.0424206880402,0.0989878187449506,0.0,437.7571304297536,0.4715103749986156,10,mac,phase-18,with +26,1388.8359963638768,0.0997631450314057,0.0,441.1858817105535,0.4752034999983152,10,mac,phase-18,with +27,1396.3338376479594,0.1003017314659486,0.0,443.5676904529135,0.4777689580005244,10,mac,phase-18,with +28,1390.4448949140815,0.0998787157538129,0.0,441.6969739686122,0.4757540000027802,10,mac,phase-18,with +29,1392.3996350206342,0.1000191290360574,0.0,442.31792830712465,0.4764228329986508,10,mac,phase-18,with +0,290.8292506484409,0.0,0.0,60.364491781569754,0.0643369169993093,10,mac,phase-27,without +1,298.573843284156,0.0,0.0,61.97195869718392,0.066050166999048,10,mac,phase-27,without +2,297.01505218375894,0.0,0.0,61.64841616368942,0.0657053329996415,10,mac,phase-27,without +3,294.3421743552695,0.0,0.0,61.09363389419194,0.0651140419977309,10,mac,phase-27,without +4,296.3946304128305,0.0,0.0,61.519641479544646,0.0655680839990964,10,mac,phase-27,without +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186,10,mac,phase-27,without +6,295.0897326586194,0.0,0.0,61.24879702499188,0.0652794159977929,10,mac,phase-27,without +7,296.7668048214944,0.0,0.0,61.59688996463688,0.0656504159996984,10,mac,phase-27,without +8,294.83998000542607,0.0,0.0,61.196958387896395,0.0652241659990977,10,mac,phase-27,without +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097,10,mac,phase-27,without +10,296.16597000453845,0.0,0.0,61.47218074680768,0.0655175000028975,10,mac,phase-27,without +11,296.4579116370621,0.0,0.0,61.532776124466146,0.0655820829997537,10,mac,phase-27,without +12,291.6238980614277,0.0,0.0,60.52942872351605,0.0645127079988014,10,mac,phase-27,without +13,293.1612172147117,0.0,0.0,60.84851454169682,0.0648527919984189,10,mac,phase-27,without +14,300.82349771584455,0.0,0.0,62.43889675843551,0.0665478330010955,10,mac,phase-27,without +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836,10,mac,phase-27,without +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348,10,mac,phase-27,without +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185,10,mac,phase-27,without +18,296.53155816102924,0.0,0.0,61.54806219002126,0.0655983750002633,10,mac,phase-27,without +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737,10,mac,phase-27,without +20,295.3240436061412,0.0,0.0,61.29743058311739,0.0653312499998719,10,mac,phase-27,without +21,296.04222377263164,0.0,0.0,61.44649599060698,0.0654901250018156,10,mac,phase-27,without +22,295.47999775871773,0.0,0.0,61.3298004122887,0.0653657500006374,10,mac,phase-27,without +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412,10,mac,phase-27,without +24,296.91447306566766,0.0,0.0,61.627539971443,0.065683083001204,10,mac,phase-27,without +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114,10,mac,phase-27,without +26,294.6706544772291,0.0,0.0,61.1618131972649,0.0651867079977819,10,mac,phase-27,without +27,297.56861257061263,0.0,0.0,61.763313105273966,0.065827791000629,10,mac,phase-27,without +28,295.9380689842249,0.0,0.0,61.42487763256778,0.0654670839976461,10,mac,phase-27,without +29,299.8657403365678,0.0,0.0,62.240104727299766,0.0663359589998435,10,mac,phase-27,without +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169,10,mac,phase-27,with +1,1429.6826668576923,1.2845914437858772,0.0,452.24379828861754,0.4819986250004149,10,mac,phase-27,with +2,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.4741008329983742,10,mac,phase-27,with +3,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305,10,mac,phase-27,with +4,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.4755443329995614,10,mac,phase-27,with +5,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.4754301249995478,10,mac,phase-27,with +6,1411.741753318708,1.2684712623217371,0.0,446.5686459826368,0.4759500830004981,10,mac,phase-27,with +7,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337,10,mac,phase-27,with +8,1411.2333039163964,1.2680144128634985,0.0,446.4078109286284,0.4757786660011334,10,mac,phase-27,with +9,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134,10,mac,phase-27,with +10,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352,10,mac,phase-27,with +11,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.4737324160014395,10,mac,phase-27,with +12,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283,10,mac,phase-27,with +13,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.4766884999989997,10,mac,phase-27,with +14,1413.72623564537,1.2702543496293404,0.0,447.1963865616136,0.4766191250018892,10,mac,phase-27,with +15,1409.9204124898235,1.2668347601109735,0.0,445.9925110727528,0.4753360419999808,10,mac,phase-27,with +16,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.4740017920012178,10,mac,phase-27,with +17,1414.1821574059145,1.2706640022090403,0.0,447.3406058303301,0.476772833000723,10,mac,phase-27,with +18,1407.8358224333165,1.26496172449792,0.0,445.3331039561361,0.4746332499998971,10,mac,phase-27,with +19,1408.264307266331,1.265346724584332,0.0,445.4686442497156,0.4747777080010564,10,mac,phase-27,with +20,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618,10,mac,phase-27,with +21,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096,10,mac,phase-27,with +22,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007,10,mac,phase-27,with +23,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.4757349160026933,10,mac,phase-27,with +24,1407.3231699892026,1.264501098543216,0.0,445.1709393766091,0.474460416000511,10,mac,phase-27,with +25,1412.2315426385103,1.2689113454143433,0.0,446.7235783935022,0.4761152089995448,10,mac,phase-27,with +26,1409.2195337686403,1.2662050100068178,0.0,445.7708058913476,0.4750997499977529,10,mac,phase-27,with +27,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464,10,mac,phase-27,with +28,1411.5918379108589,1.2683365610662214,0.0,446.5212240511556,0.4758995410011266,10,mac,phase-27,with +29,1408.3419226332817,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236,10,mac,phase-27,with +0,383.74185203632027,0.0,0.0,62.59426372619671,0.0645047500001965,10,mac,phase-5,without +1,364.4592504386134,0.0,0.0,59.44897153737439,0.0612634579993027,10,mac,phase-5,without +2,367.0024684410071,0.0,0.0,59.86380994374133,0.0616909579985076,10,mac,phase-5,without +3,363.22606038870725,0.0,0.0,59.247819062608514,0.0610561659996164,10,mac,phase-5,without +4,364.2802852301499,0.0,0.0,59.41977952874429,0.0612333749995741,10,mac,phase-5,without +5,373.0382773407889,0.0,0.0,60.84834423956817,0.0627055420009128,10,mac,phase-5,without +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924,10,mac,phase-5,without +7,362.2655390037368,0.0,0.0,59.091143087427675,0.0608947079999779,10,mac,phase-5,without +8,363.1591395605432,0.0,0.0,59.23690323483354,0.0610449170017091,10,mac,phase-5,without +9,363.29274327911173,0.0,0.0,59.258696079034664,0.0610673750015848,10,mac,phase-5,without +10,385.39643100578286,0.0,0.0,62.86415128685964,0.0647828750006738,10,mac,phase-5,without +11,389.0226196484065,0.0,0.0,63.45563904617717,0.0653924159996677,10,mac,phase-5,without +12,370.3688919214851,0.0,0.0,60.41292596544427,0.0622568340004363,10,mac,phase-5,without +13,361.7680498665672,0.0,0.0,59.009994872585665,0.0608110829998622,10,mac,phase-5,without +14,361.96288119943176,0.0,0.0,59.0417748928434,0.0608438330018543,10,mac,phase-5,without +15,366.6343711085224,0.0,0.0,59.80376754444557,0.0616290830002981,10,mac,phase-5,without +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306,10,mac,phase-5,without +17,377.4274313949519,0.0,0.0,61.56428352256089,0.0634433330014871,10,mac,phase-5,without +18,377.1091573073862,0.0,0.0,61.51236806932433,0.0633898329979274,10,mac,phase-5,without +19,381.72165648548935,0.0,0.0,62.264738415323826,0.0641651670011924,10,mac,phase-5,without +20,368.2465631130819,0.0,0.0,60.06674113196323,0.0619000830010918,10,mac,phase-5,without +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972,10,mac,phase-5,without +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232,10,mac,phase-5,without +23,392.46761814592367,0.0,0.0,64.01757187509762,0.0659715000001597,10,mac,phase-5,without +24,412.7283443458175,0.0,0.0,67.32241139758052,0.0693772089980484,10,mac,phase-5,without +25,410.7339260421147,0.0,0.0,66.99709075658224,0.0690419590027886,10,mac,phase-5,without +26,401.0741534363522,0.0,0.0,65.42143162320484,0.0674182080001628,10,mac,phase-5,without +27,375.99669130166257,0.0,0.0,61.3309075635724,0.063202834000549,10,mac,phase-5,without +28,391.0668672136462,0.0,0.0,63.78908761463861,0.0657360420009354,10,mac,phase-5,without +29,388.5424838873128,0.0,0.0,63.37732143683954,0.0653117080000811,10,mac,phase-5,without +0,2136.203094366269,0.93457425106257,0.0,450.030879538451,0.4746758750006847,10,mac,phase-5,with +1,2134.504400315829,0.9338310840274872,0.0,449.673018069379,0.4742984160002379,10,mac,phase-5,with +2,2140.0647600968737,0.9362637034220164,0.0,450.84441118710873,0.4755339580005966,10,mac,phase-5,with +3,2130.118633912307,0.9319123412063032,0.0,448.74907487444943,0.4733238749977317,10,mac,phase-5,with +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922,10,mac,phase-5,with +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985,10,mac,phase-5,with +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567,10,mac,phase-5,with +7,2140.343781207982,0.9363857732507852,0.0,450.90319216929765,0.4755959579997579,10,mac,phase-5,with +8,2123.4230632247763,0.9289830748002958,0.0,447.3385284832996,0.4718360829974699,10,mac,phase-5,with +9,2124.5554614297384,0.9294784912740844,0.0,447.5770892088742,0.4720877079998899,10,mac,phase-5,with +10,2127.025585853203,0.930559153823998,0.0,448.0974668217487,0.4726365829992573,10,mac,phase-5,with +11,2136.577936722176,0.93473824203092,0.0,450.109847046532,0.4747591669984103,10,mac,phase-5,with +12,2128.1066081569707,0.9310320936922108,0.0,448.3252042590027,0.4728767919987149,10,mac,phase-5,with +13,2126.8684474597603,0.9304904068510382,0.0,448.0643626990196,0.472601665998809,10,mac,phase-5,with +14,2134.9276258433156,0.9340162423026646,0.0,449.7621783916723,0.474392459000228,10,mac,phase-5,with +15,2129.032364221914,0.9314371056423116,0.0,448.5202319776889,0.4730825000006007,10,mac,phase-5,with +16,2132.6545758265033,0.9330217984584944,0.0,449.2833181648528,0.4738873749993217,10,mac,phase-5,with +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.4739143330007209,10,mac,phase-5,with +18,2131.381163955856,0.932464689469914,0.0,449.0150502901017,0.4736044159981247,10,mac,phase-5,with +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959,10,mac,phase-5,with +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707,10,mac,phase-5,with +21,2132.5525666154294,0.9329771701259671,0.0,449.261828028872,0.4738647080012015,10,mac,phase-5,with +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.4754727910003566,10,mac,phase-5,with +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205,10,mac,phase-5,with +24,2127.013772451134,0.9305539855413472,0.0,448.0949781090709,0.4726339579974592,10,mac,phase-5,with +25,2158.107187960308,0.9441571422772864,0.0,454.64538390445193,0.4795430830017722,10,mac,phase-5,with +26,2129.987750526841,0.9318550806198584,0.0,448.7215018570554,0.4732947920019796,10,mac,phase-5,with +27,2133.861040626745,0.9335496185614108,0.0,449.53748239512504,0.4741554579995863,10,mac,phase-5,with +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.4748490419988229,10,mac,phase-5,with +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905,10,mac,phase-5,with +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991,10,mac,phase-2,without +1,318.08177249086094,0.0,0.0,62.64785256127891,0.0671876249980414,10,mac,phase-2,without +2,310.1933592166472,0.0,0.0,61.0941887097623,0.0655213749996619,10,mac,phase-2,without +3,315.03036618576886,0.0,0.0,62.04686228507105,0.0665430840017506,10,mac,phase-2,without +4,280.5797515507548,0.0,0.0,55.26163529957376,0.0592661659975419,10,mac,phase-2,without +5,311.7761737775847,0.0,0.0,61.40593223555111,0.0658557089991518,10,mac,phase-2,without +6,315.1471407328176,0.0,0.0,62.0698616369331,0.0665677500001038,10,mac,phase-2,without +7,312.72657075974973,0.0,0.0,61.59311784366412,0.0660564589998102,10,mac,phase-2,without +8,318.0087848553162,0.0,0.0,62.63347726842702,0.0671722080005565,10,mac,phase-2,without +9,314.2111452727458,0.0,0.0,61.88551248318745,0.0663700419972883,10,mac,phase-2,without +10,315.1433912094317,0.0,0.0,62.069123148882,0.0665669579975656,10,mac,phase-2,without +11,321.5192175326141,0.0,0.0,63.324875166116904,0.0679137080005602,10,mac,phase-2,without +12,314.53405774919537,0.0,0.0,61.94911176791349,0.0664382499999192,10,mac,phase-2,without +13,316.86685034021673,0.0,0.0,62.40856735115521,0.0669310000012046,10,mac,phase-2,without +14,313.09228540351353,0.0,0.0,61.665147236931766,0.0661337079982331,10,mac,phase-2,without +15,289.9330212891863,0.0,0.0,57.10381021877937,0.0612418339987925,10,mac,phase-2,without +16,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857,10,mac,phase-2,without +17,320.05180460179605,0.0,0.0,63.03586058909003,0.0676037500015809,10,mac,phase-2,without +18,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105,10,mac,phase-2,without +19,308.3140681413278,0.0,0.0,60.7240525988988,0.0651244170003337,10,mac,phase-2,without +20,318.47412193661944,0.0,0.0,62.7251278167514,0.0672704999997222,10,mac,phase-2,without +21,314.1099463592385,0.0,0.0,61.86558083302366,0.0663486660014314,10,mac,phase-2,without +22,313.33807251384695,0.0,0.0,61.71355628133896,0.0661856250007986,10,mac,phase-2,without +23,319.77228609333065,0.0,0.0,62.98080797111271,0.0675447079993318,10,mac,phase-2,without +24,319.76577652708306,0.0,0.0,62.97952587832467,0.0675433329997758,10,mac,phase-2,without +25,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282,10,mac,phase-2,without +26,316.8561983070633,0.0,0.0,62.40646937805463,0.0669287499986239,10,mac,phase-2,without +27,316.30781807684326,0.0,0.0,62.29846305143831,0.0668129170007887,10,mac,phase-2,without +28,298.70140513017805,0.0,0.0,58.83078883113269,0.063093958000536,10,mac,phase-2,without +29,314.0071803907631,0.0,0.0,61.84534054326751,0.0663269590004347,10,mac,phase-2,without +0,1392.7279603943014,0.1339966768870043,0.0,442.3565295732231,0.4786749999984749,10,mac,phase-2,with +1,1389.1204843918358,0.1336495956119625,0.0,441.21072751399134,0.477435125001648,10,mac,phase-2,with +2,1380.2402990351388,0.1327952181873855,0.0,438.3902140411066,0.4743830410006922,10,mac,phase-2,with +3,1385.5556798078874,0.1333066198251725,0.0,440.0784786978509,0.4762099159997888,10,mac,phase-2,with +4,1388.581612791723,0.1335977498777364,0.0,441.03957178387736,0.4772499169994262,10,mac,phase-2,with +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197,10,mac,phase-2,with +6,1384.9009121834042,0.1332436235413978,0.0,439.87051221603974,0.4759848749999946,10,mac,phase-2,with +7,1390.9897468626043,0.1338294404678393,0.0,441.80444034445446,0.4780775829967751,10,mac,phase-2,with +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852,10,mac,phase-2,with +9,1380.9355617432616,0.1328621105706084,0.0,438.6110425212212,0.4746219999979075,10,mac,phase-2,with +10,1384.2770555996944,0.1331836012603434,0.0,439.6723636607087,0.4757704580006248,10,mac,phase-2,with +11,1383.5134214083396,0.1331101307428348,0.0,439.4298191147835,0.4755079999995359,10,mac,phase-2,with +12,1386.532682809284,0.1334006189112961,0.0,440.3887931809163,0.4765457080029591,10,mac,phase-2,with +13,1387.365540957909,0.1334807495810375,0.0,440.65332455440017,0.4768319579998206,10,mac,phase-2,with +14,1393.2604077165302,0.1340479045307545,0.0,442.52564483215343,0.4788580000022193,10,mac,phase-2,with +15,1382.1245980610845,0.1329765097352817,0.0,438.9887027635988,0.4750306669993733,10,mac,phase-2,with +16,1390.2715743685353,0.1337603438959504,0.0,441.57633528650655,0.4778307499982475,10,mac,phase-2,with +17,1386.3423517986607,0.1333823068477364,0.0,440.3283404810899,0.4764802919999056,10,mac,phase-2,with +18,1386.152867472149,0.1333640762450654,0.0,440.26815670402226,0.4764151669987768,10,mac,phase-2,with +19,1387.0355487415052,0.133449000480241,0.0,440.5485128353957,0.476718541001901,10,mac,phase-2,with +20,1385.5385891202095,0.1333049755016437,0.0,440.0730503748014,0.4762040419991535,10,mac,phase-2,with +21,1379.320279536285,0.132706701578957,0.0,438.097998587532,0.4740668339982221,10,mac,phase-2,with +22,1393.496567010398,0.1340706258097797,0.0,442.6006534545353,0.478939167001954,10,mac,phase-2,with +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452,10,mac,phase-2,with +24,1384.7716816940174,0.1332311900607593,0.0,439.82946618808177,0.4759404590004124,10,mac,phase-2,with +25,1385.4854869535443,0.1332998664537384,0.0,440.0561841304042,0.4761857909979881,10,mac,phase-2,with +26,1384.3494335214364,0.1331905648607515,0.0,439.695352246556,0.4757953340013046,10,mac,phase-2,with +27,1381.87219185281,0.1329522253135596,0.0,438.9085338163886,0.474943916000484,10,mac,phase-2,with +28,1389.2910566489743,0.1336660066529379,0.0,441.26490446301153,0.4774937500005762,10,mac,phase-2,with +29,1379.96219569416,0.1327684614017231,0.0,438.3018832024386,0.4742874580006173,10,mac,phase-2,with +0,306.0668998752621,0.0,0.0,63.04902793670779,0.068127957998513,10,mac,phase-3,without +1,300.7286555299586,0.0,0.0,61.9493627426042,0.0669397090023267,10,mac,phase-3,without +2,300.4778195906402,0.0,0.0,61.89769115658147,0.0668838749988935,10,mac,phase-3,without +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118,10,mac,phase-3,without +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179,10,mac,phase-3,without +5,297.42271046689245,0.0,0.0,61.26834619777878,0.0662038330010545,10,mac,phase-3,without +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164,10,mac,phase-3,without +7,297.3940705820903,0.0,0.0,61.262446452011666,0.0661974579998059,10,mac,phase-3,without +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933,10,mac,phase-3,without +9,297.44798094483,0.0,0.0,61.273551854026195,0.0662094580002303,10,mac,phase-3,without +10,298.42342154358175,0.0,0.0,61.47449021615016,0.0664265830018848,10,mac,phase-3,without +11,300.40818538367824,0.0,0.0,61.88334668136418,0.0668683750009222,10,mac,phase-3,without +12,287.1913505952546,0.0,0.0,59.16071125051626,0.0639264169985835,10,mac,phase-3,without +13,300.26405153963907,0.0,0.0,61.85365546430296,0.0668362920005165,10,mac,phase-3,without +14,299.59316404372277,0.0,0.0,61.71545429165196,0.0666869579981721,10,mac,phase-3,without +15,298.97750323449446,0.0,0.0,61.58862968050848,0.0665499169990653,10,mac,phase-3,without +16,296.72543384649464,0.0,0.0,61.12470893044608,0.0660486249980749,10,mac,phase-3,without +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845,10,mac,phase-3,without +18,299.21560732706087,0.0,0.0,61.637678537441985,0.0666029169988178,10,mac,phase-3,without +19,299.2517362517928,0.0,0.0,61.645121006999055,0.0666109589983534,10,mac,phase-3,without +20,299.28430709765047,0.0,0.0,61.651830521066856,0.0666182089989888,10,mac,phase-3,without +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801,10,mac,phase-3,without +22,299.9649209102408,0.0,0.0,61.79203529100965,0.0667697079989011,10,mac,phase-3,without +23,277.6619440694328,0.0,0.0,57.19767696451,0.0618052499994519,10,mac,phase-3,without +24,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303,10,mac,phase-3,without +25,294.287490544277,0.0,0.0,60.622498611616194,0.0655059590026212,10,mac,phase-3,without +26,297.6716730062533,0.0,0.0,61.31963186802196,0.0662592500011669,10,mac,phase-3,without +27,300.53416490752846,0.0,0.0,61.90929815315653,0.0668964169999526,10,mac,phase-3,without +28,298.0200327621039,0.0,0.0,61.39139312017827,0.0663367919987649,10,mac,phase-3,without +29,302.28587426265807,0.0,0.0,62.27014596817204,0.0672863330000836,10,mac,phase-3,without +0,1398.8862502594493,0.1670631105953912,0.0,440.94637410547574,0.4769608329988841,10,mac,phase-3,with +1,1396.9275519023229,0.1668291914756637,0.0,440.32896798086693,0.4762929999997141,10,mac,phase-3,with +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.4758985420012322,10,mac,phase-3,with +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526,10,mac,phase-3,with +4,1397.991833947257,0.1669562942111038,0.0,440.6644429407875,0.4766558750015974,10,mac,phase-3,with +5,1392.2824223679588,0.1662744431614349,0.0,438.8647652802912,0.4747092079996946,10,mac,phase-3,with +6,1389.60246999989,0.1659543877039064,0.0,438.0200109056906,0.4737954579977668,10,mac,phase-3,with +7,1396.1068221654489,0.1667311751696382,0.0,440.0702637427432,0.4760131659968465,10,mac,phase-3,with +8,1391.825623572621,0.16621988959952,0.0,438.7207766089732,0.4745534590001625,10,mac,phase-3,with +9,1396.1552182260154,0.1667369549079245,0.0,440.08551878397606,0.4760296669992385,10,mac,phase-3,with +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643,10,mac,phase-3,with +11,1398.5840366906104,0.1670270184979351,0.0,440.8511126234501,0.4768577909999294,10,mac,phase-3,with +12,1403.2547089972113,0.1675848172781918,0.0,442.3233667240595,0.4784502920010709,10,mac,phase-3,with +13,1396.9105644487831,0.166827162735422,0.0,440.323613323873,0.4762872079991211,10,mac,phase-3,with +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.4752887499998905,10,mac,phase-3,with +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325,10,mac,phase-3,with +16,1395.3931497605902,0.1666459442712148,0.0,439.8453053094444,0.4757698339999479,10,mac,phase-3,with +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465,10,mac,phase-3,with +18,1396.185647230651,0.1667405889161691,0.0,440.0951103853369,0.4760400419982034,10,mac,phase-3,with +19,1397.077863860132,0.1668471426015874,0.0,440.37634818262984,0.4763442499970551,10,mac,phase-3,with +20,1394.4525370705426,0.1665336108475102,0.0,439.5488124709186,0.475449124998704,10,mac,phase-3,with +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357,10,mac,phase-3,with +22,1389.5461345505648,0.1659476597977601,0.0,438.00225327020814,0.4737762500008102,10,mac,phase-3,with +23,1395.138839516903,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239,10,mac,phase-3,with +24,1396.723593957756,0.1668048336348145,0.0,440.26467789572945,0.4762234589979925,10,mac,phase-3,with +25,1404.0633375129448,0.1676813883861925,0.0,442.57825650651665,0.4787260000011883,10,mac,phase-3,with +26,1391.7788171546058,0.1662142997055683,0.0,438.70602264287703,0.4745374999984051,10,mac,phase-3,with +27,1397.919124008101,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545,10,mac,phase-3,with +28,1400.2760860285289,0.1672290928450245,0.0,441.38446765515783,0.4774347080019652,10,mac,phase-3,with +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.4754571249977743,10,mac,phase-3,with +0,293.67115678659405,0.0,0.0,62.04987345007068,0.0673019999994721,10,mac,phase-4,without +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785,10,mac,phase-4,without +2,285.0587315110757,0.0,0.0,60.2301513354047,0.0653282499988563,10,mac,phase-4,without +3,286.6679492796594,0.0,0.0,60.57016347683127,0.0656970420022844,10,mac,phase-4,without +4,286.0261550443838,0.0,0.0,60.43455856582949,0.0655499589993269,10,mac,phase-4,without +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652,10,mac,phase-4,without +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397,10,mac,phase-4,without +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792,10,mac,phase-4,without +8,287.5655527060979,0.0,0.0,60.75981839435294,0.0659027500005322,10,mac,phase-4,without +9,293.549524682601,0.0,0.0,62.024173763581814,0.0672741249982209,10,mac,phase-4,without +10,289.02568331421605,0.0,0.0,61.0683298615521,0.0662373749983089,10,mac,phase-4,without +11,288.31625511165714,0.0,0.0,60.91843454778562,0.066074792001018,10,mac,phase-4,without +12,290.2920010978938,0.0,0.0,61.33589055455497,0.0665275829996971,10,mac,phase-4,without +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743,10,mac,phase-4,without +14,287.41810186435026,0.0,0.0,60.72866345843529,0.0658689579977362,10,mac,phase-4,without +15,292.14320891111277,0.0,0.0,61.72703285057382,0.0669518329996208,10,mac,phase-4,without +16,292.1922981075429,0.0,0.0,61.737404922722774,0.0669630830016103,10,mac,phase-4,without +17,288.63587590704464,0.0,0.0,60.985967328746526,0.0661480410017247,10,mac,phase-4,without +18,295.0554718814619,0.0,0.0,62.34236583301857,0.0676192499995522,10,mac,phase-4,without +19,264.9125288646573,0.0,0.0,55.97345367946792,0.0607112500001676,10,mac,phase-4,without +20,293.5444325057386,0.0,0.0,62.02309783588993,0.0672729580001032,10,mac,phase-4,without +21,287.13229806847863,0.0,0.0,60.66827588221081,0.0658034589978342,10,mac,phase-4,without +22,287.2797445448048,0.0,0.0,60.69942989575715,0.065837250000186,10,mac,phase-4,without +23,288.50715313623,0.0,0.0,60.95876945297762,0.0661185409990139,10,mac,phase-4,without +24,290.43508843893454,0.0,0.0,61.36612352500068,0.0665603749985166,10,mac,phase-4,without +25,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395,10,mac,phase-4,without +26,291.1197931641799,0.0,0.0,61.51079500727027,0.0667172920002485,10,mac,phase-4,without +27,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767,10,mac,phase-4,without +28,295.1683770157897,0.0,0.0,62.36622159527169,0.0676451250001264,10,mac,phase-4,without +29,292.2999321462241,0.0,0.0,61.76014695347638,0.0669877500004076,10,mac,phase-4,without +0,1381.5516209493485,0.0999506803686798,0.0,439.3165571138039,0.4754871660006756,10,mac,phase-4,with +1,1381.107557064519,0.0999185538185438,0.0,439.17535021710626,0.4753343330012285,10,mac,phase-4,with +2,1376.128171163972,0.0995583117537298,0.0,437.59196626156063,0.4736205830013205,10,mac,phase-4,with +3,1380.7211189424895,0.0998905963013352,0.0,439.0524676098022,0.475201332999859,10,mac,phase-4,with +4,1380.2241479000502,0.0998546420937167,0.0,438.89443688258285,0.4750302909997117,10,mac,phase-4,with +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.4739347079994331,10,mac,phase-4,with +6,1377.0907565492023,0.0996279516156849,0.0,437.8980566681405,0.4739518749993294,10,mac,phase-4,with +7,1379.9166477647204,0.0998323954781913,0.0,438.7966555918104,0.474924459002068,10,mac,phase-4,with +8,1388.2125966734,0.1004325798832855,0.0,441.4346661136675,0.4777796669986855,10,mac,phase-4,with +9,1385.2603140533952,0.100218992021612,0.0,440.4958762656587,0.4767635829994106,10,mac,phase-4,with +10,1378.254188068791,0.0997121220297193,0.0,438.2680136946266,0.4743522919998213,10,mac,phase-4,with +11,1384.9526889767828,0.100196736366999,0.0,440.398055245083,0.4766577080008574,10,mac,phase-4,with +12,1382.3441125519096,0.1000080145092658,0.0,439.56855977306,0.475759917000687,10,mac,phase-4,with +13,1382.6810342874294,0.1000323896800416,0.0,439.67569677367646,0.475875874999474,10,mac,phase-4,with +14,1381.2961766373749,0.0999321998194256,0.0,439.235328939649,0.475399250000919,10,mac,phase-4,with +15,1385.2699982500696,0.1002196926411413,0.0,440.49895572203,0.4767669159991783,10,mac,phase-4,with +16,1373.3594263151476,0.0993580022414315,0.0,436.71153918517217,0.4726676670034067,10,mac,phase-4,with +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.4784245000009832,10,mac,phase-4,with +18,1380.847269195503,0.0998997228539925,0.0,439.0925818509153,0.4752447499995469,10,mac,phase-4,with +19,1378.9612042113365,0.0997632723040974,0.0,438.4928362006096,0.4745956250008021,10,mac,phase-4,with +20,1377.5675078746096,0.0996624429937981,0.0,438.0496577720742,0.4741159580007661,10,mac,phase-4,with +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.4762315420011873,10,mac,phase-4,with +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.476905750001606,10,mac,phase-4,with +23,1380.1145854309248,0.0998467156122404,0.0,438.85959735433414,0.4749925830001302,10,mac,phase-4,with +24,1386.322655687205,0.1002958489174913,0.0,440.8336879420138,0.4771292080004059,10,mac,phase-4,with +25,1383.0889008435486,0.1000618974734281,0.0,439.8053933615413,0.4760162500024307,10,mac,phase-4,with +26,1382.3496824807823,0.1000084174751572,0.0,439.5703309424747,0.4757618339972396,10,mac,phase-4,with +27,1398.4333502809254,0.1011720175282218,0.0,444.6847410423778,0.481297333000839,10,mac,phase-4,with +28,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028,10,mac,phase-4,with +29,1385.4469985267924,0.1002324980244622,0.0,440.5552396501865,0.4768278339979588,10,mac,phase-4,with +0,307.3038765802161,0.0341752531784048,0.0,65.54813559618044,0.0683769580027728,10,mac,phase-22,without +1,306.5168191461492,0.0340877245491713,0.0,65.38025568531074,0.068201832997147,10,mac,phase-22,without +2,302.24090759958057,0.0336122005782451,0.0,64.46820070907424,0.0672504169997409,10,mac,phase-22,without +3,303.4871256541917,0.033750792443749,0.0,64.73401990711072,0.0675277080008527,10,mac,phase-22,without +4,304.6267982623654,0.0338775353939463,0.0,64.97711288558907,0.0677812920002907,10,mac,phase-22,without +5,302.72534844932665,0.0336660752279055,0.0,64.57153228712284,0.0673582079980406,10,mac,phase-22,without +6,299.83123330715557,0.0333442207859381,0.0,63.954215467429314,0.0667142499987676,10,mac,phase-22,without +7,303.47121147155804,0.0337490226280647,0.0,64.73062540062816,0.0675241669996467,10,mac,phase-22,without +8,268.726454855754,0.0298850594812893,0.0,57.31954408511301,0.05979324999862,10,mac,phase-22,without +9,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.0687065410020295,10,mac,phase-22,without +10,323.66148900094566,0.0359943826735927,0.0,69.03722596795083,0.0720166249993781,10,mac,phase-22,without +11,300.6248433571947,0.0334324781313606,0.0,64.12349305594968,0.066890833000798,10,mac,phase-22,without +12,299.8791735922619,0.0333495522233387,0.0,63.96444116436369,0.0667249170001014,10,mac,phase-22,without +13,304.57567604979374,0.0338718500945055,0.0,64.9662084812616,0.0677699170009873,10,mac,phase-22,without +14,297.66087840557225,0.0331028556945698,0.0,63.491277222185005,0.0662313329994503,10,mac,phase-22,without +15,298.37977587069827,0.0331828042560829,0.0,63.64461856316718,0.0663912920026632,10,mac,phase-22,without +16,301.49691869899425,0.0335294615990874,0.0,64.3095073470497,0.0670848750014556,10,mac,phase-22,without +17,299.4083997940281,0.0332971974859906,0.0,63.86402477813011,0.0666201670028385,10,mac,phase-22,without +18,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.0666383749994565,10,mac,phase-22,without +19,295.95793110997283,0.0329134709864293,0.0,63.128037351971514,0.0658524169994052,10,mac,phase-22,without +20,295.3365950794061,0.0328443722285816,0.0,62.995505934419576,0.0657141660012712,10,mac,phase-22,without +21,299.7063333060147,0.033330330661256,0.0,63.927574208289165,0.066686458998447,10,mac,phase-22,without +22,270.8829494812265,0.0301248831718445,0.0,57.77952592359791,0.0602730830032669,10,mac,phase-22,without +23,301.37520062531866,0.0335159253364455,0.0,64.28354479530263,0.0670577919991046,10,mac,phase-22,without +24,296.03002353793846,0.0329214883827778,0.0,63.14341471816793,0.065868457997567,10,mac,phase-22,without +25,297.14348113691625,0.0330453159627353,0.0,63.3809160165264,0.0661162090000289,10,mac,phase-22,without +26,303.5991091517296,0.033763246124525,0.0,64.75790606683913,0.0675526250015536,10,mac,phase-22,without +27,302.87515563749326,0.0336827352799703,0.0,64.60348626698311,0.0673915409970504,10,mac,phase-22,without +28,305.92283069102797,0.0340216671142157,0.0,65.2535575250658,0.068069666998781,10,mac,phase-22,without +29,290.278120361013,0.032281819435166,0.0,61.91652967664846,0.0645886249985778,10,mac,phase-22,without +0,1437.887930994931,1.712970905880436,0.0,453.8701147286732,0.481649749999633,10,mac,phase-22,with +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.4807219579997763,10,mac,phase-22,with +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.4827039170013449,10,mac,phase-22,with +3,1409.294103322443,1.678906780412161,0.0,444.8444573276378,0.4720716669980902,10,mac,phase-22,with +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454,10,mac,phase-22,with +5,1427.6852831409622,1.700816384961202,0.0,450.6496433329554,0.4782321659986337,10,mac,phase-22,with +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.475717875000555,10,mac,phase-22,with +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874,10,mac,phase-22,with +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.4759302920028858,10,mac,phase-22,with +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.4766364589995646,10,mac,phase-22,with +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318,10,mac,phase-22,with +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285,10,mac,phase-22,with +12,1432.068880750474,1.7060386105646854,0.0,452.0333283247176,0.4797005410000565,10,mac,phase-22,with +13,1432.8993036323643,1.70702790201473,0.0,452.2954517632362,0.4799787080009992,10,mac,phase-22,with +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.4781303749987273,10,mac,phase-22,with +15,1421.5099863905457,1.6934596894631586,0.0,448.7004075238365,0.4761636250004812,10,mac,phase-22,with +16,1424.2936899173185,1.6967759445406032,0.0,449.57908507014065,0.4770960830028343,10,mac,phase-22,with +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928,10,mac,phase-22,with +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.475372958000662,10,mac,phase-22,with +19,1423.7101814554428,1.6960808048172755,0.0,449.3949003038402,0.4769006249989616,10,mac,phase-22,with +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.4777400829989346,10,mac,phase-22,with +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789,10,mac,phase-22,with +22,1429.3195086264966,1.702763254845861,0.0,451.1654875045515,0.4787795829979586,10,mac,phase-22,with +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727,10,mac,phase-22,with +24,1429.1426302590603,1.702552537799862,0.0,451.1096557507752,0.4787203339983534,10,mac,phase-22,with +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349,10,mac,phase-22,with +26,1429.5686590813752,1.703060070384259,0.0,451.2441319824019,0.4788630410002952,10,mac,phase-22,with +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045,10,mac,phase-22,with +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.478106791000755,10,mac,phase-22,with +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.4814269579983374,10,mac,phase-22,with +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463,10,mac,phase-25,without +1,295.9081762405739,0.0,0.0,60.860775024151074,0.0636946249978791,10,mac,phase-25,without +2,308.44623652276385,0.0,0.0,63.439534677798584,0.0663934590011194,10,mac,phase-25,without +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023,10,mac,phase-25,without +4,280.77218532111357,0.0,0.0,57.74768720812555,0.0604365830004098,10,mac,phase-25,without +5,312.04164307210647,0.0,0.0,64.179018229419,0.067167375000281,10,mac,phase-25,without +6,301.9526595528672,0.0,0.0,62.10397128753395,0.0649957079986052,10,mac,phase-25,without +7,311.28555013052846,0.0,0.0,64.02350916914445,0.067004624997935,10,mac,phase-25,without +8,313.4765936255198,0.0,0.0,64.47415100983623,0.0674762499984353,10,mac,phase-25,without +9,311.56042418797625,0.0,0.0,64.0800437616753,0.0670637920011358,10,mac,phase-25,without +10,309.8811870761772,0.0,0.0,63.73466745821582,0.0667023339992738,10,mac,phase-25,without +11,318.13877646307776,0.0,0.0,65.43304327298002,0.0684797909998451,10,mac,phase-25,without +12,308.99326684329253,0.0,0.0,63.55204488178166,0.0665112079987011,10,mac,phase-25,without +13,310.2603949888832,0.0,0.0,63.8126608673733,0.0667839590023504,10,mac,phase-25,without +14,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439,10,mac,phase-25,without +15,285.62465270443886,0.0,0.0,58.74571615575587,0.0614810830011265,10,mac,phase-25,without +16,298.20878469344336,0.0,0.0,61.3339515860414,0.0641898339999897,10,mac,phase-25,without +17,295.5945893229462,0.0,0.0,60.79627818230397,0.0636271250004938,10,mac,phase-25,without +18,310.5683652227515,0.0,0.0,63.87600250042894,0.0668502500011527,10,mac,phase-25,without +19,309.63263576797266,0.0,0.0,63.68354678475968,0.0666488330025458,10,mac,phase-25,without +20,299.539786989639,0.0,0.0,61.60770485752767,0.0644763339987548,10,mac,phase-25,without +21,309.8449875242504,0.0,0.0,63.727222132392846,0.0666945419980038,10,mac,phase-25,without +22,307.9365578666852,0.0,0.0,63.334706759840024,0.0662837499985471,10,mac,phase-25,without +23,309.15257829195724,0.0,0.0,63.584811189083936,0.0665454999980283,10,mac,phase-25,without +24,309.6756087808788,0.0,0.0,63.69238523898497,0.0666580830002203,10,mac,phase-25,without +25,311.4467942171909,0.0,0.0,64.05667297085827,0.0670393330001388,10,mac,phase-25,without +26,320.30833809941186,0.0,0.0,65.87926684249236,0.0689467920019524,10,mac,phase-25,without +27,301.0930039690129,0.0,0.0,61.92716202950021,0.0648106660009943,10,mac,phase-25,without +28,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098,10,mac,phase-25,without +29,307.7433743808223,0.0,0.0,63.29497383721228,0.0662421669985633,10,mac,phase-25,without +0,1433.797396939961,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367,10,mac,phase-25,with +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.4802329169979202,10,mac,phase-25,with +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418,10,mac,phase-25,with +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.4777907079987926,10,mac,phase-25,with +4,1456.870261103736,2.422621340465356,0.0,459.9279319836243,0.4831794579986308,10,mac,phase-25,with +5,1446.022167683568,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192,10,mac,phase-25,with +6,1436.2791326006184,2.3883804690111443,0.0,453.4273976515741,0.4763502909991075,10,mac,phase-25,with +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637,10,mac,phase-25,with +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.4756194999972649,10,mac,phase-25,with +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.4778836250006861,10,mac,phase-25,with +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.477050915997097,10,mac,phase-25,with +11,1439.3127778105872,2.393425100521093,0.0,454.3851069308725,0.4773564169991005,10,mac,phase-25,with +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.4774322919984115,10,mac,phase-25,with +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.4832142499981273,10,mac,phase-25,with +14,1457.2685173856205,2.4232835985903427,0.0,460.0536598490472,0.4833115420005924,10,mac,phase-25,with +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105,10,mac,phase-25,with +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717,10,mac,phase-25,with +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.4813035830011358,10,mac,phase-25,with +18,1436.3550154988843,2.3885066542546927,0.0,453.4513535695472,0.4763754580017121,10,mac,phase-25,with +19,1439.5605226171017,2.393837073962569,0.0,454.463318944366,0.4774385829987295,10,mac,phase-25,with +20,1434.5232971346488,2.385460700117666,0.0,452.8730876376165,0.4757679579997784,10,mac,phase-25,with +21,1437.706317098976,2.3907537260641667,0.0,453.8779539107096,0.4768236250019981,10,mac,phase-25,with +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702,10,mac,phase-25,with +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.478918374999921,10,mac,phase-25,with +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.480683041998418,10,mac,phase-25,with +25,1444.3381928638455,2.401781834869899,0.0,455.9716097338424,0.4790231250008219,10,mac,phase-25,with +26,1444.1479836100018,2.401465536974459,0.0,455.9115614569984,0.4789600410003913,10,mac,phase-25,with +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177,10,mac,phase-25,with +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.4783567919985216,10,mac,phase-25,with +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.4797304159983468,10,mac,phase-25,with +0,402.8566838230884,0.0,0.0,64.17794938679597,0.0643441669999447,10,mac,phase-13,without +1,406.5856091369493,0.0,0.0,64.77199384396874,0.0649397500019404,10,mac,phase-13,without +2,419.6410268736935,0.0,0.0,66.85181521066646,0.0670249579998198,10,mac,phase-13,without +3,416.5238481001115,0.0,0.0,66.35522635017634,0.0665270829995279,10,mac,phase-13,without +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256,10,mac,phase-13,without +5,408.52624583201094,0.0,0.0,65.08115114132792,0.0652497080009197,10,mac,phase-13,without +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631,10,mac,phase-13,without +7,398.433567589202,0.0,0.0,63.47331535392751,0.0636377080008969,10,mac,phase-13,without +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156,10,mac,phase-13,without +9,399.1061018410703,0.0,0.0,63.58045486758207,0.0637451250004232,10,mac,phase-13,without +10,407.1626636492206,0.0,0.0,64.8639227526082,0.065031917001761,10,mac,phase-13,without +11,403.12407719483,0.0,0.0,64.22054706226494,0.0643868750012188,10,mac,phase-13,without +12,405.14375858076954,0.0,0.0,64.54229674389913,0.0647094579981057,10,mac,phase-13,without +13,411.2615056472048,0.0,0.0,65.51689758175769,0.0656865830023889,10,mac,phase-13,without +14,387.70201403694654,0.0,0.0,61.76370216299734,0.0619236669990641,10,mac,phase-13,without +15,407.9614565575172,0.0,0.0,64.99117617273937,0.065159500001755,10,mac,phase-13,without +16,401.69709645656513,0.0,0.0,63.99321883047987,0.0641589580009167,10,mac,phase-13,without +17,395.9197957340157,0.0,0.0,63.0728535287417,0.0632362090000242,10,mac,phase-13,without +18,418.61084115270194,0.0,0.0,66.68769926145752,0.0668604169986792,10,mac,phase-13,without +19,431.31721002849616,0.0,0.0,68.71191464957502,0.0688898750013322,10,mac,phase-13,without +20,431.41112451451176,0.0,0.0,68.72687589850602,0.0689048749991343,10,mac,phase-13,without +21,433.23750482741,0.0,0.0,69.01783133747224,0.0691965839978365,10,mac,phase-13,without +22,422.7931668797661,0.0,0.0,67.35397364539821,0.0675284169992664,10,mac,phase-13,without +23,418.71727759903746,0.0,0.0,66.70465534817552,0.0668774170007964,10,mac,phase-13,without +24,414.85347853863453,0.0,0.0,66.08912453908962,0.0662602919983328,10,mac,phase-13,without +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213,10,mac,phase-13,without +26,419.92251367752954,0.0,0.0,66.89665807060912,0.0670699170004809,10,mac,phase-13,without +27,411.78142883652066,0.0,0.0,65.5997250622708,0.0657696250018489,10,mac,phase-13,without +28,414.074507863208,0.0,0.0,65.96502894234565,0.0661358750003273,10,mac,phase-13,without +29,411.9209982982526,0.0,0.0,65.62195947517905,0.0657919170007517,10,mac,phase-13,without +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.4773925419976876,10,mac,phase-13,with +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012,10,mac,phase-13,with +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.4768721250002272,10,mac,phase-13,with +3,1591.7771157613092,0.1653828771258944,0.0,448.02221413404817,0.4742466669995338,10,mac,phase-13,with +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.4763908750028349,10,mac,phase-13,with +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756,10,mac,phase-13,with +6,1599.923316021195,0.1662292531814889,0.0,450.3150468686536,0.476673707998998,10,mac,phase-13,with +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078,10,mac,phase-13,with +8,1599.6205389249687,0.166197795167169,0.0,450.229827107861,0.4765834999998333,10,mac,phase-13,with +9,1592.539445588393,0.1654620818706251,0.0,448.2367797875235,0.4744737920009356,10,mac,phase-13,with +10,1607.448160004806,0.1670110713993855,0.0,452.43299242093553,0.4789156250008091,10,mac,phase-13,with +11,1594.297518282129,0.1656447425694174,0.0,448.7316076205518,0.4749975839986291,10,mac,phase-13,with +12,1602.677410191569,0.1665153987814363,0.0,451.0902152989111,0.4774942500007455,10,mac,phase-13,with +13,1605.1480233851848,0.1667720912003558,0.0,451.785595061764,0.4782303329993738,10,mac,phase-13,with +14,1601.3632290921896,0.1663788576481786,0.0,450.7203253689159,0.4771027089991548,10,mac,phase-13,with +15,1595.800220143318,0.1658008706823329,0.0,449.15455867844,0.475445291998767,10,mac,phase-13,with +16,1611.70677521292,0.1674535341215318,0.0,453.63162393522987,0.4801844169996911,10,mac,phase-13,with +17,1598.0024596834728,0.1660296795448708,0.0,449.7744018870551,0.4761014169998816,10,mac,phase-13,with +18,1595.2047318950506,0.1657390004878076,0.0,448.9869523214708,0.4752678750010091,10,mac,phase-13,with +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831,10,mac,phase-13,with +20,1594.7083993859603,0.1656874324023315,0.0,448.8472543779161,0.4751200000027893,10,mac,phase-13,with +21,1594.7913334840082,0.1656960491110473,0.0,448.8705970418272,0.4751447090020519,10,mac,phase-13,with +22,1611.819356688242,0.1674652311412436,0.0,453.66331116162905,0.4802179590005835,10,mac,phase-13,with +23,1625.5004557649995,0.1688866735688013,0.0,457.513998697883,0.4842940419985098,10,mac,phase-13,with +24,1613.805663465247,0.1676716049648041,0.0,454.2223778496544,0.4808097499990253,10,mac,phase-13,with +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.4764814170011959,10,mac,phase-13,with +26,1601.7627822219915,0.1664203705242697,0.0,450.83278375024673,0.477221749999444,10,mac,phase-13,with +27,1637.621652666843,0.1701460448702147,0.0,460.9256355534117,0.4879053750009916,10,mac,phase-13,with +28,1623.030399742511,0.1686300390389941,0.0,456.81877575663515,0.4835581250008545,10,mac,phase-13,with +29,1635.1585880735686,0.1698901367377575,0.0,460.2323804225851,0.4871715409972239,10,mac,phase-13,with +0,277.0817190299852,0.0640133346494132,0.0,58.60420787153782,0.0635513330016692,10,mac,phase-14,without +1,288.5771340743512,0.0666690849195682,0.0,61.03554724386474,0.0661879159997624,10,mac,phase-14,without +2,284.2115382937321,0.0656605147958258,0.0,60.112201295578544,0.0651866250009334,10,mac,phase-14,without +3,297.3390372598521,0.0686933203788499,0.0,62.88873480683714,0.068197542001144,10,mac,phase-14,without +4,291.41856385470135,0.0673255316748761,0.0,61.636524248349104,0.0668396250002842,10,mac,phase-14,without +5,291.05396160811534,0.0672412987427781,0.0,61.55940899901342,0.0667560000001685,10,mac,phase-14,without +6,289.502541450472,0.0668828789304544,0.0,61.23127566083103,0.0664001670011202,10,mac,phase-14,without +7,289.43169196955876,0.0668665107934755,0.0,61.21629063142683,0.066383916997438,10,mac,phase-14,without +8,290.80853034409404,0.0671845975150962,0.0,61.507499025070594,0.0666997080006694,10,mac,phase-14,without +9,287.9576568837414,0.0665259690155345,0.0,60.90452463372189,0.0660458330021356,10,mac,phase-14,without +10,289.9919433911143,0.0669959439508176,0.0,61.33478668697358,0.0665124160004779,10,mac,phase-14,without +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527,10,mac,phase-14,without +12,291.42765003308125,0.067327630826633,0.0,61.63844602178257,0.066841709001892,10,mac,phase-14,without +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.0670270000009622,10,mac,phase-14,without +14,300.5995644999648,0.0694465899272183,0.0,63.57835307836844,0.0689453749982931,10,mac,phase-14,without +15,266.9962083179432,0.0616833102270863,0.0,56.471070512897555,0.0612381249993632,10,mac,phase-14,without +16,291.6814349928997,0.0673862619828808,0.0,61.69212284532741,0.0668999170011375,10,mac,phase-14,without +17,286.80898867365397,0.0662605957430181,0.0,60.66157540273309,0.0657823750007082,10,mac,phase-14,without +18,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.0661455829977057,10,mac,phase-14,without +19,288.819116611153,0.0667249893984412,0.0,61.086727794272974,0.0662434170008055,10,mac,phase-14,without +20,289.1462928838217,0.0668005759232578,0.0,61.15592725774257,0.066318457997113,10,mac,phase-14,without +21,289.21804924415596,0.0668171535737913,0.0,61.171104096806005,0.0663349160022335,10,mac,phase-14,without +22,286.12120386579073,0.0661016989409242,0.0,60.51610538041618,0.0656246250000549,10,mac,phase-14,without +23,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.0658500409990665,10,mac,phase-14,without +24,293.57075258583023,0.0678227451971422,0.0,62.09172322798373,0.0673332499973184,10,mac,phase-14,without +25,290.89918277237905,0.0672055406659071,0.0,61.52667247963799,0.0667204999990644,10,mac,phase-14,without +26,268.12761977449935,0.0619446967250778,0.0,56.71036985180875,0.0614976249999017,10,mac,phase-14,without +27,293.55167774327595,0.0678183383951197,0.0,62.08768880073215,0.0673288750003848,10,mac,phase-14,without +28,292.7548937535296,0.0676342598483376,0.0,61.91916489115313,0.0671461249985441,10,mac,phase-14,without +29,291.560990905484,0.067358436156979,0.0,61.66664830171436,0.0668722920017899,10,mac,phase-14,without +0,1390.0603241936417,0.1674892551502086,0.0,445.0524487851344,0.4788548329997866,10,mac,phase-14,with +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209,10,mac,phase-14,with +2,1377.5902576361257,0.1659867288763194,0.0,441.05993597015606,0.4745590829988941,10,mac,phase-14,with +3,1377.444387682713,0.1659691529125856,0.0,441.01323311932254,0.4745088329982536,10,mac,phase-14,with +4,1378.2936033553765,0.1660714754506803,0.0,441.2851245675478,0.4748013749995152,10,mac,phase-14,with +5,1380.196807079257,0.1663007936813814,0.0,441.8944689701668,0.4754570000004605,10,mac,phase-14,with +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.4774362499993003,10,mac,phase-14,with +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.4752448340004775,10,mac,phase-14,with +8,1386.7012048240165,0.167084512714656,0.0,443.976967185384,0.4776976670000294,10,mac,phase-14,with +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507,10,mac,phase-14,with +10,1384.5611750681394,0.1668266591642937,0.0,443.29179873136127,0.4769604590001108,10,mac,phase-14,with +11,1382.8663723350817,0.1666224513019111,0.0,442.7491775994384,0.4763766249998298,10,mac,phase-14,with +12,1379.409399632061,0.1662059184557993,0.0,441.64236652075,0.4751857500014012,10,mac,phase-14,with +13,1383.6672056307757,0.1667189442165428,0.0,443.0055785721975,0.4766525000013644,10,mac,phase-14,with +14,1383.0517940967477,0.1666447928882506,0.0,442.8085436626597,0.4764405000023544,10,mac,phase-14,with +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795,10,mac,phase-14,with +16,1380.578780242162,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149,10,mac,phase-14,with +17,1385.9641130782545,0.1669957000600349,0.0,443.74097419952494,0.4774437500018393,10,mac,phase-14,with +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388,10,mac,phase-14,with +19,1390.5397849329893,0.1675470256805298,0.0,445.20595663830386,0.4790199999988545,10,mac,phase-14,with +20,1385.4222432134395,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751,10,mac,phase-14,with +21,1384.7365557380076,0.1668477908930775,0.0,443.3479499610856,0.4770208749978337,10,mac,phase-14,with +22,1380.1324588315383,0.1662930403199675,0.0,441.8738667382177,0.4754348329988715,10,mac,phase-14,with +23,1382.8147242197429,0.1666162281875488,0.0,442.7326415399548,0.4763588330024504,10,mac,phase-14,with +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962,10,mac,phase-14,with +25,1381.048562774172,0.1664034222683774,0.0,442.16717365153266,0.4757504170011088,10,mac,phase-14,with +26,1385.5867380781835,0.1669502299055574,0.0,443.6201509050472,0.4773137500014854,10,mac,phase-14,with +27,1384.5037182668846,0.1668197361576601,0.0,443.27340291813454,0.4769406659979722,10,mac,phase-14,with +28,1386.1163925964613,0.1670140483163193,0.0,443.7897291861239,0.4774962080009572,10,mac,phase-14,with +29,1382.6472045469038,0.1665960436353114,0.0,442.6790071477496,0.4763011249997362,10,mac,phase-14,with +0,304.0021500506418,0.0,0.0,61.69661938658387,0.0663851249992149,10,mac,phase-15,without +1,305.42786409538843,0.0,0.0,61.9859651585075,0.0666964589981944,10,mac,phase-15,without +2,290.13486062560406,0.0,0.0,58.882281141154934,0.0633569170022383,10,mac,phase-15,without +3,303.37572867394005,0.0,0.0,61.56948843949174,0.0662483330015675,10,mac,phase-15,without +4,308.55938487552186,0.0,0.0,62.621500945477706,0.0673802909986989,10,mac,phase-15,without +5,272.2552769884333,0.0,0.0,55.253655928243255,0.0594525420019635,10,mac,phase-15,without +6,304.0319159755279,0.0,0.0,61.70266032063018,0.0663916250014153,10,mac,phase-15,without +7,301.5311990280158,0.0,0.0,61.195144891286894,0.0658455419979873,10,mac,phase-15,without +8,303.576648579458,0.0,0.0,61.61026472655373,0.0662922079973213,10,mac,phase-15,without +9,304.6514683093002,0.0,0.0,61.82839720940037,0.0665269170021929,10,mac,phase-15,without +10,305.5965360870756,0.0,0.0,62.020196796904024,0.0667332919983891,10,mac,phase-15,without +11,305.52402631491094,0.0,0.0,62.00548108580032,0.0667174579975835,10,mac,phase-15,without +12,300.96240445270587,0.0,0.0,61.079709186584786,0.0657213339982263,10,mac,phase-15,without +13,320.16981350821686,0.0,0.0,64.97781387335388,0.0699156670016236,10,mac,phase-15,without +14,301.8660655871914,0.0,0.0,61.26310537986669,0.0659186670018243,10,mac,phase-15,without +15,287.22066306535396,0.0,0.0,58.29085066060698,0.0627205419987149,10,mac,phase-15,without +16,292.31368435492743,0.0,0.0,59.324468995142574,0.0638327079977898,10,mac,phase-15,without +17,309.2938015925228,0.0,0.0,62.77054932770923,0.0675406660011503,10,mac,phase-15,without +18,303.66251638073777,0.0,0.0,61.6276914225565,0.0663109589986561,10,mac,phase-15,without +19,306.26130972564454,0.0,0.0,62.155111257706984,0.0668784590016002,10,mac,phase-15,without +20,305.7980284517102,0.0,0.0,62.061089263381945,0.0667772920023708,10,mac,phase-15,without +21,303.91189522869655,0.0,0.0,61.678302353640426,0.0663654160016449,10,mac,phase-15,without +22,304.868796110589,0.0,0.0,61.87250344560959,0.0665743749996181,10,mac,phase-15,without +23,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686,10,mac,phase-15,without +24,300.68706516189695,0.0,0.0,61.02382963631062,0.065661207998346,10,mac,phase-15,without +25,307.1498955536229,0.0,0.0,62.33544794812829,0.0670725000018137,10,mac,phase-15,without +26,305.11646226256136,0.0,0.0,61.92276678851894,0.0666284580001956,10,mac,phase-15,without +27,314.2194880610785,0.0,0.0,63.77020739992188,0.0686162909987615,10,mac,phase-15,without +28,310.6552121120229,0.0,0.0,63.04684482968675,0.067837958002201,10,mac,phase-15,without +29,300.9196606054273,0.0,0.0,61.07103440952738,0.0657119999996211,10,mac,phase-15,without +0,1359.9830388133907,0.0994430417383292,0.0,439.27306303877975,0.4735101670012227,10,mac,phase-15,with +1,1367.2100374254069,0.0999714856263093,0.0,441.6073758399505,0.4760264169999573,10,mac,phase-15,with +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355,10,mac,phase-15,with +3,1360.6509298042945,0.0994918784589276,0.0,439.4887911125696,0.4737427090003621,10,mac,phase-15,with +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.4758644579997053,10,mac,phase-15,with +5,1368.671233865174,0.1000783294724461,0.0,442.0793407229522,0.4765351669993833,10,mac,phase-15,with +6,1378.0276760639613,0.1007624799695789,0.0,445.1014615189534,0.479792833000829,10,mac,phase-15,with +7,1372.258883992279,0.1003406613039104,0.0,443.2381478664736,0.4777842919975228,10,mac,phase-15,with +8,1369.9006263898757,0.1001682236319008,0.0,442.4764331899832,0.4769632089992228,10,mac,phase-15,with +9,1362.872281559501,0.0996543054664741,0.0,440.20628534723863,0.4745161249993543,10,mac,phase-15,with +10,1370.0406398939213,0.1001784615307049,0.0,442.52165740163406,0.4770119580025493,10,mac,phase-15,with +11,1363.8435384826207,0.0997253245453802,0.0,440.5200002917932,0.474854291001975,10,mac,phase-15,with +12,1375.0565775890122,0.1005452308854206,0.0,444.14179989786464,0.478758375000325,10,mac,phase-15,with +13,1372.584870820952,0.1003644977201632,0.0,443.3434412625342,0.4778977919995668,10,mac,phase-15,with +14,1360.2762345172491,0.0994644804414484,0.0,439.3677649366916,0.47361224999986,10,mac,phase-15,with +15,1368.435239510169,0.1000610733774619,0.0,442.003114799375,0.4764529999993101,10,mac,phase-15,with +16,1368.283016589219,0.1000499427163804,0.0,441.95394695915786,0.4763999999995576,10,mac,phase-15,with +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.4763121670002874,10,mac,phase-15,with +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.4779738329998508,10,mac,phase-15,with +19,1366.9728453928535,0.0999541419561899,0.0,441.53076306780974,0.4759438330002012,10,mac,phase-15,with +20,1372.0063748964212,0.1003221976379366,0.0,443.156587699312,0.4776963750009599,10,mac,phase-15,with +21,1367.3190577628875,0.0999794572801175,0.0,441.6425892920392,0.4760643750014424,10,mac,phase-15,with +22,1370.7449121584284,0.1002299584789725,0.0,442.7491365877813,0.4772571670000616,10,mac,phase-15,with +23,1359.658367419681,0.0994193015077274,0.0,439.1681945268015,0.4733971249988826,10,mac,phase-15,with +24,1367.1400292419053,0.0999663665722364,0.0,441.58476327175896,0.4760020419998909,10,mac,phase-15,with +25,1366.998694566532,0.0999560320683337,0.0,441.5391123231862,0.4759528329996101,10,mac,phase-15,with +26,1365.0601270460802,0.0998142824690026,0.0,440.91295709307434,0.4752778750007564,10,mac,phase-15,with +27,1366.017143931724,0.0998842603050398,0.0,441.2220725207958,0.4756110829985118,10,mac,phase-15,with +28,1365.7311285567905,0.0998633466332838,0.0,441.1296898614259,0.4755115000007208,10,mac,phase-15,with +29,1365.9570675778948,0.0998798674742537,0.0,441.2026679229371,0.475590165999165,10,mac,phase-15,with +0,294.47160668958014,0.0,0.0,62.234392802682095,0.067439792001096,10,mac,phase-12,without +1,258.53801295899865,0.0,0.0,54.64009394249207,0.0592102920018078,10,mac,phase-12,without +2,287.84062620984656,0.0,0.0,60.832984196664334,0.0659211669990327,10,mac,phase-12,without +3,284.1358833944333,0.0,0.0,60.0500142451661,0.0650727079992066,10,mac,phase-12,without +4,289.6685259247307,0.0,0.0,61.219297261407206,0.0663397919997805,10,mac,phase-12,without +5,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185,10,mac,phase-12,without +6,288.79942156630415,0.0,0.0,61.035618493063815,0.0661407500010682,10,mac,phase-12,without +7,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289,10,mac,phase-12,without +8,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556,10,mac,phase-12,without +9,286.70698999914885,0.0,0.0,60.59339858083863,0.0656615420011803,10,mac,phase-12,without +10,286.97661747524285,0.0,0.0,60.65038235067053,0.065723291998438,10,mac,phase-12,without +11,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184,10,mac,phase-12,without +12,294.88587239836045,0.0,0.0,62.321944791597936,0.0675346669995633,10,mac,phase-12,without +13,293.9449008440537,0.0,0.0,62.123077423754864,0.0673191659989242,10,mac,phase-12,without +14,290.6658900109148,0.0,0.0,61.43008277314009,0.0665682079998077,10,mac,phase-12,without +15,290.4495723431128,0.0,0.0,61.38436563640324,0.066518666997581,10,mac,phase-12,without +16,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483,10,mac,phase-12,without +17,288.1284442887526,0.0,0.0,60.89381241565535,0.0659870830022555,10,mac,phase-12,without +18,289.94870708075484,0.0,0.0,61.27851147331694,0.0664039589973981,10,mac,phase-12,without +19,291.0404953723931,0.0,0.0,61.509252841434005,0.0666539999983797,10,mac,phase-12,without +20,291.41564654265915,0.0,0.0,61.588538262372175,0.0667399169979034,10,mac,phase-12,without +21,287.7964160316246,0.0,0.0,60.823640702979915,0.0659110419983335,10,mac,phase-12,without +22,288.7233713242801,0.0,0.0,61.01954583774717,0.0661233329992683,10,mac,phase-12,without +23,288.51996957968584,0.0,0.0,60.97655838570675,0.0660767499975918,10,mac,phase-12,without +24,262.07373536090887,0.0,0.0,55.387342681599485,0.0600200420012697,10,mac,phase-12,without +25,291.0746976794727,0.0,0.0,61.51648124568486,0.0666618329996708,10,mac,phase-12,without +26,294.25819707384346,0.0,0.0,62.18929026120812,0.0673909170000115,10,mac,phase-12,without +27,289.8793855364252,0.0,0.0,61.26386087841579,0.0663880829997651,10,mac,phase-12,without +28,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384,10,mac,phase-12,without +29,294.18505925226117,0.0,0.0,62.17383312437835,0.067374166999798,10,mac,phase-12,without +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229,10,mac,phase-12,with +1,1405.501159477378,0.2322484329432426,0.0,441.90241119586415,0.4740041670011123,10,mac,phase-12,with +2,1411.600628024097,0.2332563239735772,0.0,443.82013985772505,0.4760612079990096,10,mac,phase-12,with +3,1414.8127689086136,0.2337871059525115,0.0,444.83006631164307,0.4771445000005769,10,mac,phase-12,with +4,1415.084203187349,0.2338319584134706,0.0,444.91540772985934,0.4772360409988323,10,mac,phase-12,with +5,1423.4112588293244,0.2352079413579451,0.0,447.5335101352102,0.4800443340027414,10,mac,phase-12,with +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879,10,mac,phase-12,with +7,1412.981778742787,0.2334845486804094,0.0,444.2543862677677,0.4765269999988959,10,mac,phase-12,with +8,1412.4140739457582,0.233390739757809,0.0,444.0758946906084,0.4763355420000152,10,mac,phase-12,with +9,1414.3226536148504,0.2337061181083035,0.0,444.6759695834992,0.4769792090010014,10,mac,phase-12,with +10,1417.9660986792762,0.2343081698398312,0.0,445.82150201381614,0.4782079579999845,10,mac,phase-12,with +11,1412.6123694385958,0.2334235065877477,0.0,444.1382406060304,0.4764024169999175,10,mac,phase-12,with +12,1419.2150504322765,0.2345145496677667,0.0,446.21418386071224,0.4786291660020652,10,mac,phase-12,with +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844,10,mac,phase-12,with +14,1414.5234190879785,0.2337392930837979,0.0,444.73909208330065,0.477046916999825,10,mac,phase-12,with +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688,10,mac,phase-12,with +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.4748752910018083,10,mac,phase-12,with +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377,10,mac,phase-12,with +18,1411.6060661381266,0.2332572225807772,0.0,443.82184965048174,0.4760630419987137,10,mac,phase-12,with +19,1418.1162102203814,0.2343329746362936,0.0,445.8686984543992,0.4782585829998425,10,mac,phase-12,with +20,1413.9969775450247,0.2336523026017462,0.0,444.5735740503797,0.4768693750011152,10,mac,phase-12,with +21,1402.71835094593,0.2317885948874347,0.0,441.0274707579634,0.4730656669999007,10,mac,phase-12,with +22,1402.7010521628758,0.2317857363944131,0.0,441.0220318624555,0.4730598329988424,10,mac,phase-12,with +23,1404.320403583212,0.2320533219650272,0.0,441.53117075031395,0.4736059579990979,10,mac,phase-12,with +24,1409.4916535304808,0.2329078318944659,0.0,443.1570590003417,0.4753499580001517,10,mac,phase-12,with +25,1413.038612086046,0.2334939399603966,0.0,444.2722551903604,0.4765461669994693,10,mac,phase-12,with +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.4761061250028433,10,mac,phase-12,with +27,1413.9134577072468,0.233638501580443,0.0,444.54731464998866,0.476841208001133,10,mac,phase-12,with +28,1409.1224903257444,0.2328468304678771,0.0,443.0409907145222,0.4752254579980217,10,mac,phase-12,with +29,1407.2538188427316,0.2325380466431972,0.0,442.45346332010627,0.4745952500015846,10,mac,phase-12,with +0,314.6829641824899,0.0,0.0,64.05854106490267,0.0667974999996658,10,mac,phase-24,without +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907,10,mac,phase-24,without +2,310.02771031968734,0.0,0.0,63.11089278177239,0.0658093330021074,10,mac,phase-24,without +3,314.78759077177864,0.0,0.0,64.07983941095024,0.0668197090017201,10,mac,phase-24,without +4,311.8347742078282,0.0,0.0,63.47874833628613,0.0661929170018993,10,mac,phase-24,without +5,311.64849188371505,0.0,0.0,63.44082771373234,0.0661533750026137,10,mac,phase-24,without +6,315.306780557249,0.0,0.0,64.18552845032812,0.0669299170003796,10,mac,phase-24,without +7,314.38931348373785,0.0,0.0,63.99876396386509,0.0667351670017524,10,mac,phase-24,without +8,312.3494508567321,0.0,0.0,63.58351865753504,0.0663021670006855,10,mac,phase-24,without +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392,10,mac,phase-24,without +10,314.334543400109,0.0,0.0,63.98761467378393,0.0667235410001012,10,mac,phase-24,without +11,318.13946192397856,0.0,0.0,64.76216416407206,0.0675312079983996,10,mac,phase-24,without +12,313.69208088661816,0.0,0.0,63.856831580997095,0.0665871659984986,10,mac,phase-24,without +13,285.36582773445474,0.0,0.0,58.09058854500483,0.0605743749983958,10,mac,phase-24,without +14,311.3874224274277,0.0,0.0,63.387683024029094,0.0660979579988634,10,mac,phase-24,without +15,303.1555450520987,0.0,0.0,61.71195819965332,0.0643505840016587,10,mac,phase-24,without +16,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163,10,mac,phase-24,without +17,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255,10,mac,phase-24,without +18,314.2731072568001,0.0,0.0,63.97510840507234,0.0667104999993171,10,mac,phase-24,without +19,317.19392672743055,0.0,0.0,64.56968598091483,0.0673305000018444,10,mac,phase-24,without +20,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844,10,mac,phase-24,without +21,317.1024579588047,0.0,0.0,64.5510661109565,0.0673110839998116,10,mac,phase-24,without +22,319.67701426612115,0.0,0.0,65.07515651211497,0.0678575829988403,10,mac,phase-24,without +23,322.2403866640997,0.0,0.0,65.59697025709202,0.0684017079984187,10,mac,phase-24,without +24,297.71060994609485,0.0,0.0,60.60355819462029,0.0631947920010134,10,mac,phase-24,without +25,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223,10,mac,phase-24,without +26,323.27052670543793,0.0,0.0,65.80667105329528,0.0686203749974083,10,mac,phase-24,without +27,313.1624892222485,0.0,0.0,63.74902507972117,0.0664747500013618,10,mac,phase-24,without +28,304.77808852402086,0.0,0.0,62.04225179497307,0.0646950000009383,10,mac,phase-24,without +29,306.854070382832,0.0,0.0,62.46484972460084,0.0651356670023233,10,mac,phase-24,without +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664,10,mac,phase-24,with +1,1470.0650690266311,1.8938036315963045,0.0,459.2811985840966,0.4863042079996376,10,mac,phase-24,with +2,1448.4887603472594,1.8660080648595936,0.0,452.54027730103815,0.4791666669989354,10,mac,phase-24,with +3,1453.1077990562935,1.8719585173027935,0.0,453.9833682765936,0.4806946660028188,10,mac,phase-24,with +4,1457.5307279874908,1.877656332351035,0.0,455.36519017248935,0.4821577910006454,10,mac,phase-24,with +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206,10,mac,phase-24,with +6,1458.6824685027595,1.8791400560422025,0.0,455.7250196626634,0.4825387919991044,10,mac,phase-24,with +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952,10,mac,phase-24,with +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148,10,mac,phase-24,with +9,1454.2838469735757,1.873473554877392,0.0,454.3507919426761,0.4810837080003693,10,mac,phase-24,with +10,1443.39889680046,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695,10,mac,phase-24,with +11,1435.4034897523384,1.849151033497376,0.0,448.45214617728334,0.4748379999982717,10,mac,phase-24,with +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432,10,mac,phase-24,with +13,1440.5007836697584,1.8557175957098335,0.0,450.0446547738438,0.4765242079993186,10,mac,phase-24,with +14,1436.810538132051,1.8509636562087617,0.0,448.891739553057,0.4753034579989617,10,mac,phase-24,with +15,1432.6827260690825,1.845646023921523,0.0,447.60211876568223,0.4739379590027965,10,mac,phase-24,with +16,1439.107087588519,1.8539221740270784,0.0,449.6092329546741,0.4760631669996655,10,mac,phase-24,with +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986,10,mac,phase-24,with +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.4766195830015931,10,mac,phase-24,with +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.4770321659998444,10,mac,phase-24,with +20,1449.866335125129,1.867782718357654,0.0,452.97066246455887,0.4796223749981436,10,mac,phase-24,with +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.4822667920016101,10,mac,phase-24,with +22,1451.9393114765087,1.870453219293409,0.0,453.61830662899615,0.4803081249992829,10,mac,phase-24,with +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702,10,mac,phase-24,with +24,1439.3600043065803,1.8542479926654816,0.0,449.68824979267697,0.4761468329998024,10,mac,phase-24,with +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217,10,mac,phase-24,with +26,1439.6413879935462,1.854610483727596,0.0,449.7761603482943,0.4762399160026689,10,mac,phase-24,with +27,1445.2852070324934,1.8618811040676244,0.0,451.5394156132572,0.478106916998513,10,mac,phase-24,with +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994,10,mac,phase-24,with +29,1453.8891033023608,1.8729650284088384,0.0,454.227465193222,0.4809531249993597,10,mac,phase-24,with +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.0660744170018006,10,mac,phase-23,without +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.0642834580030466,10,mac,phase-23,without +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.0620629580007516,10,mac,phase-23,without +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.0629158750016358,10,mac,phase-23,without +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.0626865000012912,10,mac,phase-23,without +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.0653167079981358,10,mac,phase-23,without +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.0633302079986606,10,mac,phase-23,without +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.0622254999980214,10,mac,phase-23,without +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872,10,mac,phase-23,without +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.0600536249985452,10,mac,phase-23,without +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.0623513749997073,10,mac,phase-23,without +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.0628564999969967,10,mac,phase-23,without +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.0647904580000613,10,mac,phase-23,without +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.0672497919986199,10,mac,phase-23,without +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.0654726659995503,10,mac,phase-23,without +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676,10,mac,phase-23,without +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.0630650829989463,10,mac,phase-23,without +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.0631177499999466,10,mac,phase-23,without +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361,10,mac,phase-23,without +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547,10,mac,phase-23,without +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.0673107919974427,10,mac,phase-23,without +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.065431292001449,10,mac,phase-23,without +22,313.0482616575098,0.8417886858098309,0.0,61.32106811245461,0.0621510420023696,10,mac,phase-23,without +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.0619104159995913,10,mac,phase-23,without +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.0631872090016258,10,mac,phase-23,without +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.0637677079976128,10,mac,phase-23,without +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.0652594999992288,10,mac,phase-23,without +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.0675664160007727,10,mac,phase-23,without +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.0667341249973105,10,mac,phase-23,without +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.0626280420001421,10,mac,phase-23,without +0,1654.6480123452643,0.8802219605314963,0.0,471.798970844882,0.4858740839990787,10,mac,phase-23,with +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205,10,mac,phase-23,with +2,1623.088033571781,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473,10,mac,phase-23,with +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468,10,mac,phase-23,with +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022,10,mac,phase-23,with +5,1622.4651082793391,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894,10,mac,phase-23,with +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085,10,mac,phase-23,with +7,1631.325248725041,0.8678149660736794,0.0,465.1488218154921,0.4790255419975437,10,mac,phase-23,with +8,1609.854086984751,0.8563929669893303,0.0,459.02663030628105,0.4727207079995423,10,mac,phase-23,with +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.482218458000716,10,mac,phase-23,with +10,1634.9563714903925,0.869746611943738,0.0,466.1841840018436,0.4800917920001666,10,mac,phase-23,with +11,1655.6029712356135,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199,10,mac,phase-23,with +12,1699.2689617515464,0.9039589361747356,0.0,484.52198978965833,0.4989766670005338,10,mac,phase-23,with +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.4832517079994431,10,mac,phase-23,with +14,1722.6778540568937,0.916411748449703,0.0,491.1966971690408,0.505850499997905,10,mac,phase-23,with +15,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.4705873329985479,10,mac,phase-23,with +16,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844,10,mac,phase-23,with +17,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.4723213329998543,10,mac,phase-23,with +18,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.4728038749999541,10,mac,phase-23,with +19,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575,10,mac,phase-23,with +20,1625.835995757708,0.8648948519631798,0.0,463.5836406522643,0.4774136670021107,10,mac,phase-23,with +21,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766,10,mac,phase-23,with +22,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042,10,mac,phase-23,with +23,1610.983721176818,0.85699389771043,0.0,459.34872917279046,0.4730524159967899,10,mac,phase-23,with +24,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.4798239160008961,10,mac,phase-23,with +25,1615.5939308560737,0.8594463877699828,0.0,460.6632638447108,0.4744061669989605,10,mac,phase-23,with +26,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914,10,mac,phase-23,with +27,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.4746511670018662,10,mac,phase-23,with +28,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.4717144589994859,10,mac,phase-23,with +29,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752,10,mac,phase-23,with +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.0686401659986586,10,mac,phase-8,without +1,397.75286598810527,0.269594419037943,12.435042578125124,70.53263988080185,0.0683966249998775,10,mac,phase-8,without +2,365.9092588508725,0.2480110201480115,11.439508304327031,64.88588314622352,0.0629208749996905,10,mac,phase-8,without +3,398.012860314751,0.2697706415757017,12.443170842679242,70.57874410224296,0.0684413329981907,10,mac,phase-8,without +4,406.01920064322974,0.2751972892608521,12.693474967156805,71.99849080287044,0.0698180840008717,10,mac,phase-8,without +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.0682153339985234,10,mac,phase-8,without +6,389.3137678245606,0.2638744507834012,12.171209042384383,69.03615318620736,0.0669454580020101,10,mac,phase-8,without +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.0680102080004871,10,mac,phase-8,without +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404,10,mac,phase-8,without +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956,10,mac,phase-8,without +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.0672688339982414,10,mac,phase-8,without +11,398.1340122908051,0.2698527576316564,12.446958445760156,70.60022771538212,0.0684621660002449,10,mac,phase-8,without +12,372.80412745844734,0.2526843192127068,11.655064223686104,66.10853501402443,0.0641065000017988,10,mac,phase-8,without +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454,10,mac,phase-8,without +14,392.7996098404614,0.2662371328241711,12.280187751514893,69.65428987512377,0.067544875000749,10,mac,phase-8,without +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.0673702909989515,10,mac,phase-8,without +16,390.4700645317705,0.2646581815008187,12.207358621725266,69.2411967351517,0.0671442919992841,10,mac,phase-8,without +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.0669481250006356,10,mac,phase-8,without +18,394.8335415578033,0.2676157190936564,12.3437750431949,70.01496250787785,0.0678946250009175,10,mac,phase-8,without +19,391.70268238960193,0.2654936422195048,12.24589424737466,69.45977414567795,0.0673562499978288,10,mac,phase-8,without +20,391.0290628243883,0.26503706706728,12.224834718478292,69.34032267147714,0.0672404159995494,10,mac,phase-8,without +21,399.5914937296824,0.2708406294872032,12.492524035097247,70.85867968958954,0.0687127909986884,10,mac,phase-8,without +22,398.602883706492,0.2701705557614111,12.461616884495088,70.68337165107918,0.0685427919997891,10,mac,phase-8,without +23,385.2929159598488,0.261149142394204,12.04550419293266,68.32314437888363,0.0662540419980359,10,mac,phase-8,without +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.067253500001243,10,mac,phase-8,without +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269,10,mac,phase-8,without +26,384.6154175220648,0.2606899381662728,12.024323397919336,68.20300507275113,0.0661375409981701,10,mac,phase-8,without +27,394.1247912258336,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858,10,mac,phase-8,without +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.0678507080010604,10,mac,phase-8,without +29,396.5473885388564,0.2687773539194146,12.397355449533,70.31887521916686,0.0681893340006354,10,mac,phase-8,without +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.3553411613795,0.4887512500026787,10,mac,phase-8,with +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773,10,mac,phase-8,with +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.4905316670010506,10,mac,phase-8,with +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.4856883339998603,10,mac,phase-8,with +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.4145019481052,0.4907829580006364,10,mac,phase-8,with +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843,10,mac,phase-8,with +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.4852944170015689,10,mac,phase-8,with +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511,10,mac,phase-8,with +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992,10,mac,phase-8,with +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.4860352499999862,10,mac,phase-8,with +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606,10,mac,phase-8,with +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815,10,mac,phase-8,with +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729,10,mac,phase-8,with +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.4838942089991178,10,mac,phase-8,with +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.4922301250007876,10,mac,phase-8,with +15,2172.904363612247,4.054051068508988,84.66600867869597,497.2745947009123,0.4906449160007469,10,mac,phase-8,with +16,2175.837068669918,4.059522701900578,84.78027989836993,497.9457515835403,0.4913071250011853,10,mac,phase-8,with +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261,10,mac,phase-8,with +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433,10,mac,phase-8,with +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023,10,mac,phase-8,with +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.4882758749990898,10,mac,phase-8,with +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164,10,mac,phase-8,with +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.4890841250016819,10,mac,phase-8,with +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.4890738750000309,10,mac,phase-8,with +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.4872862500014889,10,mac,phase-8,with +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.4908622500006458,10,mac,phase-8,with +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539,10,mac,phase-8,with +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.491627374998643,10,mac,phase-8,with +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118,10,mac,phase-8,with +29,2161.072808854291,4.031976591596034,84.20499873523288,494.5669138220523,0.487973333998525,10,mac,phase-8,with +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341,10,mac,phase-1,without +1,290.22725500807564,0.0,0.0,61.57760130550795,0.0669092079988331,10,mac,phase-1,without +2,287.38755742396035,0.0,0.0,60.97510184122435,0.0662545419982052,10,mac,phase-1,without +3,284.85600928125524,0.0,0.0,60.43798253376007,0.0656709169998066,10,mac,phase-1,without +4,288.39804257958247,0.0,0.0,61.18949677128115,0.0664875000002211,10,mac,phase-1,without +5,289.7942165918819,0.0,0.0,61.485723418499695,0.0668093749991385,10,mac,phase-1,without +6,287.9792792941568,0.0,0.0,61.10064764292961,0.0663909579998289,10,mac,phase-1,without +7,293.9906938530544,0.0,0.0,62.37609122240881,0.0677768339992326,10,mac,phase-1,without +8,287.754807039453,0.0,0.0,61.05302129920833,0.0663392079986806,10,mac,phase-1,without +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141,10,mac,phase-1,without +10,288.1126656850648,0.0,0.0,61.128948272374934,0.0664217089979501,10,mac,phase-1,without +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543,10,mac,phase-1,without +12,283.96806213484086,0.0,0.0,60.249586528840595,0.0654662090018973,10,mac,phase-1,without +13,287.49473153180446,0.0,0.0,60.99784100293028,0.0662792499970237,10,mac,phase-1,without +14,290.36370810703596,0.0,0.0,61.60655259929476,0.0669406659981177,10,mac,phase-1,without +15,286.7884182291257,0.0,0.0,60.84798230358821,0.066116416001023,10,mac,phase-1,without +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447,10,mac,phase-1,without +17,285.94203855646913,0.0,0.0,60.66840568169417,0.0659212909995403,10,mac,phase-1,without +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269,10,mac,phase-1,without +19,287.0410893992396,0.0,0.0,60.90159161941293,0.066174667001178,10,mac,phase-1,without +20,297.4148868126718,0.0,0.0,63.10260324091163,0.0685662500000034,10,mac,phase-1,without +21,302.4373178414097,0.0,0.0,64.1682138964768,0.0697241249981743,10,mac,phase-1,without +22,290.7853645972282,0.0,0.0,61.69601557974508,0.0670378750000963,10,mac,phase-1,without +23,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381,10,mac,phase-1,without +24,286.4050846775788,0.0,0.0,60.76665031220264,0.0660280419979244,10,mac,phase-1,without +25,284.29446863504063,0.0,0.0,60.318840291145825,0.0655414590000873,10,mac,phase-1,without +26,285.6671457104221,0.0,0.0,60.6100815864084,0.0658579169976292,10,mac,phase-1,without +27,287.5579915240894,0.0,0.0,61.01126289393568,0.0662938340028631,10,mac,phase-1,without +28,286.0333109264343,0.0,0.0,60.68777096703847,0.0659423329998389,10,mac,phase-1,without +29,284.3069393158575,0.0,0.0,60.32148619913034,0.0655443340001511,10,mac,phase-1,without +0,1398.2044033134116,0.4026120084407769,0.0,442.1350872693799,0.4791000420009368,10,mac,phase-1,with +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.4714275830010592,10,mac,phase-1,with +2,1392.2357928925342,0.4008933511232521,0.0,440.2477150918514,0.477054875002068,10,mac,phase-1,with +3,1393.0715489932206,0.4011340065248991,0.0,440.5119948320934,0.4773412499998812,10,mac,phase-1,with +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332,10,mac,phase-1,with +5,1391.353584643174,0.4006393198569392,0.0,439.96874642289544,0.4767525829993246,10,mac,phase-1,with +6,1389.8013619275412,0.4001923583800569,0.0,439.4779082276992,0.4762207079984364,10,mac,phase-1,with +7,1393.9126545251288,0.4013762022916337,0.0,440.7779661499291,0.4776294580005924,10,mac,phase-1,with +8,1395.2987708038715,0.4017753335328132,0.0,441.21627877461776,0.4781044160008605,10,mac,phase-1,with +9,1393.131376142637,0.4011512337119461,0.0,440.5309131546688,0.4773617499995453,10,mac,phase-1,with +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505,10,mac,phase-1,with +11,1391.779428467707,0.4007619412970313,0.0,440.1034052010233,0.4768985000009706,10,mac,phase-1,with +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.4760606250019918,10,mac,phase-1,with +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828,10,mac,phase-1,with +14,1397.3508945928966,0.4023662411843057,0.0,441.8651938605651,0.4788075840006058,10,mac,phase-1,with +15,1387.6137807153643,0.3995624458555543,0.0,438.7861592903746,0.4754711249988759,10,mac,phase-1,with +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016,10,mac,phase-1,with +17,1387.905133100111,0.3996463405768904,0.0,438.8782896768552,0.4755709579985705,10,mac,phase-1,with +18,1389.2666881497526,0.4000383994288292,0.0,439.308835639426,0.4760375000005297,10,mac,phase-1,with +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.4764104999994742,10,mac,phase-1,with +20,1387.9581516296382,0.3996616072264639,0.0,438.89505500252847,0.4755891249988053,10,mac,phase-1,with +21,1383.6377091625147,0.3984175387519839,0.0,437.5288604728037,0.4741087090005749,10,mac,phase-1,with +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973,10,mac,phase-1,with +23,1385.2003855818612,0.3988675103657516,0.0,438.0230042999896,0.4746441660026903,10,mac,phase-1,with +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586,10,mac,phase-1,with +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256,10,mac,phase-1,with +26,1388.7087868377796,0.3998777521249065,0.0,439.1324181251682,0.4758463329999358,10,mac,phase-1,with +27,1386.871413337013,0.3993486816730853,0.0,438.5514105906599,0.4752167500009818,10,mac,phase-1,with +28,1388.1705847108346,0.3997227771879352,0.0,438.9622298152176,0.4756619159998081,10,mac,phase-1,with +29,1389.9437563946433,0.4002333607701617,0.0,439.5229356857659,0.4762695000026724,10,mac,phase-1,with +0,297.9231929631541,0.0,0.0,61.89344237000005,0.0660346250006114,10,mac,phase-30,without +1,297.04079661120556,0.0,0.0,61.71012482693256,0.0658390419994248,10,mac,phase-30,without +2,296.8676586574506,0.0,0.0,61.674155475717534,0.0658006660014507,10,mac,phase-30,without +3,297.3197636713215,0.0,0.0,61.7680801391279,0.0659008750008069,10,mac,phase-30,without +4,298.48470477937286,0.0,0.0,62.01009625951951,0.0661590839990822,10,mac,phase-30,without +5,295.20155767320017,0.0,0.0,61.3280235608919,0.0654313750019355,10,mac,phase-30,without +6,292.8541974051702,0.0,0.0,60.84036026074424,0.0649110829981509,10,mac,phase-30,without +7,297.2970205991458,0.0,0.0,61.76335527359118,0.0658958340027311,10,mac,phase-30,without +8,297.0774535309563,0.0,0.0,61.71774028958751,0.0658471669994469,10,mac,phase-30,without +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461,10,mac,phase-30,without +10,296.545267260386,0.0,0.0,61.607178772237894,0.0657292080031766,10,mac,phase-30,without +11,296.86935500896175,0.0,0.0,61.67450789216907,0.0658010419974743,10,mac,phase-30,without +12,298.61459885910585,0.0,0.0,62.03708171056209,0.0661878749997413,10,mac,phase-30,without +13,299.2832616828819,0.0,0.0,62.17599618558742,0.0663360840007953,10,mac,phase-30,without +14,298.81874969918397,0.0,0.0,62.079493978400286,0.0662331249986891,10,mac,phase-30,without +15,296.9749991387711,0.0,0.0,61.6964554243335,0.0658244580008613,10,mac,phase-30,without +16,293.1703898391526,0.0,0.0,60.906049131744425,0.0649811669973132,10,mac,phase-30,without +17,299.0945225408772,0.0,0.0,62.13678569280086,0.0662942500021017,10,mac,phase-30,without +18,255.6130228481359,0.0,0.0,53.10351886779507,0.0566565829976752,10,mac,phase-30,without +19,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645,10,mac,phase-30,without +20,290.72809607604245,0.0,0.0,60.39866343016743,0.064439833000506,10,mac,phase-30,without +21,298.5279351289336,0.0,0.0,62.01907734998971,0.0661686659987026,10,mac,phase-30,without +22,299.2761152689181,0.0,0.0,62.1745115205084,0.0663344999993569,10,mac,phase-30,without +23,293.40781389038244,0.0,0.0,60.95537389792288,0.0650337919978483,10,mac,phase-30,without +24,296.0600830227514,0.0,0.0,61.50638191130139,0.0656216669995046,10,mac,phase-30,without +25,300.42752152616026,0.0,0.0,62.41371578023145,0.0665897090002545,10,mac,phase-30,without +26,295.4047700896462,0.0,0.0,61.37024087153856,0.065476416999445,10,mac,phase-30,without +27,298.3017901501356,0.0,0.0,61.972095807286415,0.0661185410026519,10,mac,phase-30,without +28,297.4477809202034,0.0,0.0,61.794675679197255,0.0659292500022274,10,mac,phase-30,without +29,298.01661959689955,0.0,0.0,61.91285172149777,0.0660553329980757,10,mac,phase-30,without +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.478538583000045,10,mac,phase-30,with +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992,10,mac,phase-30,with +2,1422.4471328985585,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801,10,mac,phase-30,with +3,1423.230797457382,1.773392083348801,0.0,447.9989925274923,0.4765795829989656,10,mac,phase-30,with +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372,10,mac,phase-30,with +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273,10,mac,phase-30,with +6,1420.5758147951883,1.7700838881896082,0.0,447.1632675277483,0.4756905419999384,10,mac,phase-30,with +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.4768262920006236,10,mac,phase-30,with +8,1422.3049082362418,1.772238395122154,0.0,447.70754476019846,0.4762695419994998,10,mac,phase-30,with +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838,10,mac,phase-30,with +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386,10,mac,phase-30,with +11,1413.1080871694985,1.7607788555303492,0.0,444.8126055980349,0.473189916996489,10,mac,phase-30,with +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.4762493330017605,10,mac,phase-30,with +13,1417.3294075206245,1.7660387586362547,0.0,446.1413762147323,0.4746034580020932,10,mac,phase-30,with +14,1412.745867489083,1.7603275179715854,0.0,444.69858751172745,0.473068625000451,10,mac,phase-30,with +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.4747444590029772,10,mac,phase-30,with +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.4726464579980529,10,mac,phase-30,with +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762,10,mac,phase-30,with +18,1417.1746163233452,1.7658458837460278,0.0,446.0926516504824,0.4745516250004584,10,mac,phase-30,with +19,1419.5263625778225,1.768776236431752,0.0,446.8329250865043,0.4753391249978449,10,mac,phase-30,with +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183,10,mac,phase-30,with +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.4743509159998211,10,mac,phase-30,with +22,1422.353809629749,1.7722993278565111,0.0,447.72293774850624,0.4762859170004958,10,mac,phase-30,with +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447,10,mac,phase-30,with +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.4749628339995979,10,mac,phase-30,with +25,1354.1542849217951,1.6873204913801607,0.0,426.2553596054523,0.4534487910023017,10,mac,phase-30,with +26,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732,10,mac,phase-30,with +27,1420.870713330435,1.7704513414015055,0.0,447.25609452876904,0.4757892910020018,10,mac,phase-30,with +28,1412.149219754377,1.7595840753963088,0.0,444.51077708455057,0.4728688329996657,10,mac,phase-30,with +29,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899,10,mac,phase-30,with +0,301.527059904683,0.0,0.0,61.86818404371384,0.0670472090023395,10,mac,phase-6,without +1,297.30471380754034,0.0,0.0,61.001831002242675,0.0661083329978282,10,mac,phase-6,without +2,298.56993893852353,0.0,0.0,61.26143351116889,0.0663896669975656,10,mac,phase-6,without +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497,10,mac,phase-6,without +4,299.1821205786761,0.0,0.0,61.38704268997068,0.0665257910004584,10,mac,phase-6,without +5,298.54745277190455,0.0,0.0,61.256819735227,0.0663846669995109,10,mac,phase-6,without +6,295.84086380274124,0.0,0.0,60.701474073952625,0.0657828330004122,10,mac,phase-6,without +7,287.0708821292312,0.0,0.0,58.902024165847415,0.0638327499982551,10,mac,phase-6,without +8,311.42434548185787,0.0,0.0,63.89893738908661,0.0692479579993232,10,mac,phase-6,without +9,276.3402948730035,0.0,0.0,56.70029160003628,0.0614467090017569,10,mac,phase-6,without +10,302.1443009237354,0.0,0.0,61.99483132034014,0.0671844580028846,10,mac,phase-6,without +11,299.5947418972884,0.0,0.0,61.47170551157061,0.0666175410005962,10,mac,phase-6,without +12,297.7119024745538,0.0,0.0,61.08537913685875,0.0661988749998272,10,mac,phase-6,without +13,296.81133114888826,0.0,0.0,60.90059733804315,0.065998624999338,10,mac,phase-6,without +14,295.8635388716868,0.0,0.0,60.70612660941386,0.0657878750025702,10,mac,phase-6,without +15,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043,10,mac,phase-6,without +16,293.46651256772094,0.0,0.0,60.21429790064635,0.0652548750003916,10,mac,phase-6,without +17,288.92730480664824,0.0,0.0,59.28293027724474,0.0642455420020269,10,mac,phase-6,without +18,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284,10,mac,phase-6,without +19,294.5672108564634,0.0,0.0,60.440142321793985,0.0654996250013937,10,mac,phase-6,without +20,292.01034831569035,0.0,0.0,59.915517957078485,0.0649310839980898,10,mac,phase-6,without +21,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666,10,mac,phase-6,without +22,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717,10,mac,phase-6,without +23,297.67255166251954,0.0,0.0,61.07730502476422,0.066190124998684,10,mac,phase-6,without +24,298.30198018653,0.0,0.0,61.20645296849487,0.0663300839987641,10,mac,phase-6,without +25,297.6101525252016,0.0,0.0,61.06450179140608,0.0661762499985343,10,mac,phase-6,without +26,300.59875411481113,0.0,0.0,61.67771160825551,0.0668407919984019,10,mac,phase-6,without +27,296.54093489263096,0.0,0.0,60.84511666127687,0.0659384999999019,10,mac,phase-6,without +28,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473,10,mac,phase-6,without +29,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701,10,mac,phase-6,without +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.476325583000289,10,mac,phase-6,with +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.4740477499981352,10,mac,phase-6,with +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.4740115000022342,10,mac,phase-6,with +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.4766071250014647,10,mac,phase-6,with +4,1454.6356824641823,2.689847088670102,0.0,448.5656251243478,0.4807450420012173,10,mac,phase-6,with +5,1439.3908464616345,2.6616570214023705,0.0,443.8645790316128,0.4757067499995173,10,mac,phase-6,with +6,1436.1552645979718,2.655673928480174,0.0,442.86682349817494,0.4746374169990304,10,mac,phase-6,with +7,1470.199358514414,2.718626740659527,0.0,453.3649918392344,0.4858887079972191,10,mac,phase-6,with +8,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.4803635419993952,10,mac,phase-6,with +9,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.4781675829981395,10,mac,phase-6,with +10,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721,10,mac,phase-6,with +11,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456,10,mac,phase-6,with +12,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.4740057079980033,10,mac,phase-6,with +13,1436.1856465993965,2.6557301095150985,0.0,442.8761923880117,0.4746474579987989,10,mac,phase-6,with +14,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595,10,mac,phase-6,with +15,1444.9948689388625,2.672019728523426,0.0,445.5926899778878,0.4775588330012397,10,mac,phase-6,with +16,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.4783999579994997,10,mac,phase-6,with +17,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.4758022089990845,10,mac,phase-6,with +18,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605,10,mac,phase-6,with +19,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591,10,mac,phase-6,with +20,1443.300048842662,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269,10,mac,phase-6,with +21,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.4735740840005746,10,mac,phase-6,with +22,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895,10,mac,phase-6,with +23,1437.235978521874,2.657672336216858,0.0,443.2000829683638,0.4749945839976135,10,mac,phase-6,with +24,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872,10,mac,phase-6,with +25,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404,10,mac,phase-6,with +26,1439.6581239725597,2.6621512589927825,0.0,443.9469993277839,0.4757950830025947,10,mac,phase-6,with +27,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.4762523329991381,10,mac,phase-6,with +28,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.4755676250024407,10,mac,phase-6,with +29,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993,10,mac,phase-6,with +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.0667561670015857,10,mac,phase-7,without +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.0679194580006878,10,mac,phase-7,without +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.0679882910008018,10,mac,phase-7,without +3,396.7437451725483,0.2682967000321544,11.972740238934891,70.15958705840839,0.0680203750016517,10,mac,phase-7,without +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.0677365830015332,10,mac,phase-7,without +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.0680572919991391,10,mac,phase-7,without +6,391.36719129553967,0.2646608225160031,11.81048920477664,69.20880508793482,0.0670985830001882,10,mac,phase-7,without +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.0676863749977201,10,mac,phase-7,without +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.0701520839975273,10,mac,phase-7,without +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.0696812919995863,10,mac,phase-7,without +10,387.301056942086,0.2619111120487479,11.687783375175377,68.48975580074759,0.0664014579997456,10,mac,phase-7,without +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.0675194590003229,10,mac,phase-7,without +12,389.3096996228947,0.2632694502944342,11.74839921938913,68.84496125199456,0.066745833002642,10,mac,phase-7,without +13,387.9621023426623,0.2623581419054352,11.707732082530049,68.60665410827131,0.0665147920008166,10,mac,phase-7,without +14,395.11252609217826,0.2671935932998669,11.923514101006564,69.87112464791521,0.0677407080002012,10,mac,phase-7,without +15,394.7183334237559,0.2669270217574004,11.911618345923996,69.80141618956021,0.0676731249986914,10,mac,phase-7,without +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.0671810830026515,10,mac,phase-7,without +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.0674895829979504,10,mac,phase-7,without +18,386.8565570909318,0.2616105204334281,11.674369474341727,68.41115109334145,0.0663252500016824,10,mac,phase-7,without +19,384.0741050620474,0.2597288960690092,11.590401987079536,67.91910632204592,0.0658482079998066,10,mac,phase-7,without +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.0685538329998962,10,mac,phase-7,without +21,396.65893159557254,0.2682393451195757,11.970180775961063,70.14458874876905,0.0680058340003597,10,mac,phase-7,without +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.0646796670007461,10,mac,phase-7,without +23,393.0382653515496,0.2657908810492305,11.86091806682191,69.50431539437378,0.0673850830025912,10,mac,phase-7,without +24,406.135881200921,0.2746481022491435,12.256171562868031,71.82047873815104,0.069630624999263,10,mac,phase-7,without +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.0686014579987386,10,mac,phase-7,without +26,394.0356603064191,0.2664653662258117,11.891016967826848,69.68069326804977,0.0675560829986352,10,mac,phase-7,without +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.0676258750027045,10,mac,phase-7,without +28,413.12105234795297,0.2793718020949808,12.46696666848852,73.0557262478375,0.0708282089981366,10,mac,phase-7,without +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.0648108750028768,10,mac,phase-7,without +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.4842013329980545,10,mac,phase-7,with +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.1584645269379,0.4918910000014875,10,mac,phase-7,with +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971,10,mac,phase-7,with +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.4927279170005931,10,mac,phase-7,with +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.4888514999984181,10,mac,phase-7,with +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332,10,mac,phase-7,with +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907,10,mac,phase-7,with +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.0218930859032,0.4848583329985558,10,mac,phase-7,with +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093,10,mac,phase-7,with +9,2138.1194142937725,3.137493734289595,83.68851708094563,490.505862543885,0.4833643750025658,10,mac,phase-7,with +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087,10,mac,phase-7,with +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907,10,mac,phase-7,with +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461,10,mac,phase-7,with +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.491482666999218,10,mac,phase-7,with +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267,10,mac,phase-7,with +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832,10,mac,phase-7,with +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.2405760248656,0.4919719160025124,10,mac,phase-7,with +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296,10,mac,phase-7,with +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.5229983322752,0.4863375830027507,10,mac,phase-7,with +19,2153.784005153057,3.1604800817043612,84.30164765304055,494.099475510244,0.4869056669995188,10,mac,phase-7,with +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.3799390701532,0.4921092500007944,10,mac,phase-7,with +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702,10,mac,phase-7,with +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.3444832533918,0.4861616670023068,10,mac,phase-7,with +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.488861125002586,10,mac,phase-7,with +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051,10,mac,phase-7,with +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191,10,mac,phase-7,with +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902,10,mac,phase-7,with +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.4874809579996508,10,mac,phase-7,with +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169,10,mac,phase-7,with +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.5549762121397,0.4893254170019645,10,mac,phase-7,with +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065,10,mac,phase-9,without +1,399.29583877571366,1.158366767779374,11.41331962370854,71.40990427251671,0.0692834579967893,10,mac,phase-9,without +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.0633901660003175,10,mac,phase-9,without +3,394.21772121323113,1.1436350274103977,11.268168652425976,70.50173580741745,0.0684023329995398,10,mac,phase-9,without +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.0680647919980401,10,mac,phase-9,without +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.0679784999992989,10,mac,phase-9,without +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.0698598329981905,10,mac,phase-9,without +7,392.2752796374332,1.1379999579925535,11.212646644926632,70.15435035154096,0.0680652919982094,10,mac,phase-9,without +8,387.9996905257891,1.125596371832494,11.09043484011428,69.38970574590904,0.0673234170026262,10,mac,phase-9,without +9,391.1295975243385,1.134676306811221,11.179898905345851,69.94945703165645,0.0678664999977627,10,mac,phase-9,without +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751,10,mac,phase-9,without +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.0683444170026632,10,mac,phase-9,without +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992,10,mac,phase-9,without +13,389.43280747798,1.1297538783490886,11.13139850726308,69.64600379469677,0.0675720830004138,10,mac,phase-9,without +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.0660507920001691,10,mac,phase-9,without +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.0690730419992178,10,mac,phase-9,without +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.0675779160010279,10,mac,phase-9,without +17,405.877194445587,1.1774594378114298,11.601438578436149,72.58691122508108,0.0704254160009441,10,mac,phase-9,without +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.0655020420017535,10,mac,phase-9,without +19,383.6916774964104,1.1130987231124532,10.967296242431525,68.61926246010889,0.0665759160001471,10,mac,phase-9,without +20,388.806541361944,1.1279370653844794,11.113497555994131,69.53400261899613,0.0674634169990895,10,mac,phase-9,without +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.0680769159989722,10,mac,phase-9,without +22,405.6771703448896,1.176879163116574,11.595721166001535,72.5511389968335,0.0703907089991844,10,mac,phase-9,without +23,389.3441979604815,1.129496820021875,11.12886572668612,69.63015690487794,0.0675567079997563,10,mac,phase-9,without +24,393.09269449425614,1.1403712980208796,11.236011318735136,70.30053648975775,0.0682071250012086,10,mac,phase-9,without +25,372.8068790690931,1.0815216628284272,10.65616932492715,66.67262956730539,0.0646872500001336,10,mac,phase-9,without +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459,10,mac,phase-9,without +27,390.2598296133434,1.1321530893219862,11.15503779184898,69.79390809467303,0.0677155830017,10,mac,phase-9,without +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.0690524580022611,10,mac,phase-9,without +29,379.8298414684538,1.101895444533057,10.85691099760512,67.92861328650847,0.0659058329983963,10,mac,phase-9,without +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333,10,mac,phase-9,with +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.4903181249974295,10,mac,phase-9,with +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615,10,mac,phase-9,with +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.4902185419996385,10,mac,phase-9,with +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641,10,mac,phase-9,with +5,2241.1490127200236,3.2378173610171124,78.62783844069976,506.4968821271085,0.4995985829991696,10,mac,phase-9,with +6,2198.850910485615,3.1767087381743906,77.14386377861389,496.9375637685223,0.4901694590007537,10,mac,phase-9,with +7,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346,10,mac,phase-9,with +8,2165.6159983890375,3.128693824945763,75.97785951736712,489.4265150791473,0.4827607080005691,10,mac,phase-9,with +9,2184.636400493825,3.156172849231463,76.6451659281788,493.7251022360924,0.4870007499994244,10,mac,phase-9,with +10,2175.6821728479604,3.143236559158055,76.33101833660666,491.701457954188,0.4850046669998846,10,mac,phase-9,with +11,2191.358148507132,3.1658838467110355,76.88098983539325,495.2442089049758,0.4884991670005547,10,mac,phase-9,with +12,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945,10,mac,phase-9,with +13,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.4890770419988257,10,mac,phase-9,with +14,2198.6882921444367,3.1764738013249003,77.13815852270048,496.9008122262037,0.4901332080007705,10,mac,phase-9,with +15,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969,10,mac,phase-9,with +16,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284,10,mac,phase-9,with +17,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624,10,mac,phase-9,with +18,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123,10,mac,phase-9,with +19,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.4924210420031158,10,mac,phase-9,with +20,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198,10,mac,phase-9,with +21,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.4888335839968931,10,mac,phase-9,with +22,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969,10,mac,phase-9,with +23,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.4810711249992891,10,mac,phase-9,with +24,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.4882775419973768,10,mac,phase-9,with +25,2188.6791289765147,3.1620134320721585,76.78699987147863,494.6387538318352,0.4879019580002932,10,mac,phase-9,with +26,2180.3695654537623,3.150008496709209,76.49546949376993,492.76080283784785,0.4860495840002841,10,mac,phase-9,with +27,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838,10,mac,phase-9,with +28,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016,10,mac,phase-9,with +29,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.4924800839980889,10,mac,phase-9,with +0,230.37705684275676,0.1002220374895983,0.0,57.32700544405026,0.0798094169986143,100,mac,phase-19,without +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.0802579999981389,100,mac,phase-19,without +2,230.45222653474644,0.1002547389217284,0.0,57.345710663228665,0.0798354580001614,100,mac,phase-19,without +3,234.36824654926497,0.1019583439164435,0.0,58.320172720205726,0.0811920829983137,100,mac,phase-19,without +4,233.63132613550113,0.1016377578895741,0.0,58.13679751283642,0.0809367920010117,100,mac,phase-19,without +5,230.04329489624553,0.1000768394270209,0.0,57.24395215225599,0.0796937920022173,100,mac,phase-19,without +6,229.48124985739312,0.0998323302743879,0.0,57.10409291694992,0.0794990829999733,100,mac,phase-19,without +7,226.653234646772,0.0986020452349646,0.0,56.400369874399765,0.0785193750016333,100,mac,phase-19,without +8,228.51640718827412,0.0994125901341099,0.0,56.8640015567109,0.079164833001414,100,mac,phase-19,without +9,230.26363694955552,0.1001726958887277,0.0,57.29878204835227,0.0797701249975944,100,mac,phase-19,without +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.0796512080014508,100,mac,phase-19,without +11,230.75483929485844,0.1003863860041437,0.0,57.42101279437023,0.0799402919983549,100,mac,phase-19,without +12,237.0613136942452,0.1031299218507447,0.0,58.99031529862598,0.082125041000836,100,mac,phase-19,without +13,217.22370668195057,0.0944998723964402,0.0,54.05392701076379,0.0752527080003346,100,mac,phase-19,without +14,232.80949090029833,0.1012802309601065,0.0,57.93229210918096,0.0806520840014854,100,mac,phase-19,without +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.0799674589979986,100,mac,phase-19,without +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.079922290999093,100,mac,phase-19,without +17,232.13462926046583,0.1009866426597154,0.0,57.76435960135722,0.080418291996466,100,mac,phase-19,without +18,230.06325854563016,0.1000855243092938,0.0,57.24891990491609,0.0797007080000185,100,mac,phase-19,without +19,232.48498623238729,0.1011390601358993,0.0,57.85154239773443,0.0805396659998223,100,mac,phase-19,without +20,232.0403330344357,0.100945620519621,0.0,57.74089493722326,0.0803856249985983,100,mac,phase-19,without +21,229.7789294389717,0.0999618312524528,0.0,57.17816747640304,0.0796022079994145,100,mac,phase-19,without +22,211.1731746677069,0.091867680394884,0.0,52.54831318587369,0.0731566249996831,100,mac,phase-19,without +23,230.30609579896037,0.100191166965905,0.0,57.30934750449767,0.0797848339971096,100,mac,phase-19,without +24,232.81899066563767,0.1012843636886474,0.0,57.93465602990636,0.0806553750007879,100,mac,phase-19,without +25,233.0890051681689,0.101401829394505,0.0,58.001846413656885,0.0807489159997203,100,mac,phase-19,without +26,234.19324993623465,0.101882214299406,0.0,58.27662657926024,0.0811314590027905,100,mac,phase-19,without +27,218.84922050226433,0.0952070274806834,0.0,54.45841971895093,0.0758158339995134,100,mac,phase-19,without +28,225.17289320878123,0.0979580451894349,0.0,56.03200184835682,0.0780065410035604,100,mac,phase-19,without +29,239.13076194741328,0.1040302038634338,0.0,59.50527660988416,0.0828419589997793,100,mac,phase-19,without +0,1696.056708219553,2.13210562208661,0.0,468.996608558364,0.5107068340003025,100,mac,phase-19,with +1,1698.1034097991303,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625,100,mac,phase-19,with +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451,100,mac,phase-19,with +3,1690.6943979681755,2.1253646848414536,0.0,467.5138130187185,0.50909216600121,100,mac,phase-19,with +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757,100,mac,phase-19,with +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803,100,mac,phase-19,with +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638,100,mac,phase-19,with +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929,100,mac,phase-19,with +8,1698.1573760274025,2.1347463625887086,0.0,469.577488945685,0.5113393749998068,100,mac,phase-19,with +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113,100,mac,phase-19,with +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842,100,mac,phase-19,with +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512,100,mac,phase-19,with +12,1697.0918900604795,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553,100,mac,phase-19,with +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115,100,mac,phase-19,with +14,1697.2283266475597,2.133578458593306,0.0,469.3205865636963,0.5110596249978698,100,mac,phase-19,with +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593,100,mac,phase-19,with +16,1695.755878881392,2.131727450814344,0.0,468.9134226963178,0.5106162500014761,100,mac,phase-19,with +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632,100,mac,phase-19,with +18,1690.365619098878,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368,100,mac,phase-19,with +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195,100,mac,phase-19,with +20,1722.8095641598518,2.165736522681356,0.0,476.3943557235645,0.5187624999998661,100,mac,phase-19,with +21,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764,100,mac,phase-19,with +22,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929,100,mac,phase-19,with +23,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595,100,mac,phase-19,with +24,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202,100,mac,phase-19,with +25,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783,100,mac,phase-19,with +26,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809,100,mac,phase-19,with +27,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155,100,mac,phase-19,with +28,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467,100,mac,phase-19,with +29,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275,100,mac,phase-19,with +0,231.5143790184337,0.0,0.0,56.43350933210195,0.07974941700013,100,mac,phase-26,without +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043,100,mac,phase-26,without +2,232.4218146090488,0.0,0.0,56.654704123926024,0.0800620000009075,100,mac,phase-26,without +3,230.38631370178572,0.0,0.0,56.15853425347324,0.0793608340027276,100,mac,phase-26,without +4,231.63461351252136,0.0,0.0,56.46281746610602,0.0797908339991408,100,mac,phase-26,without +5,235.2815330550488,0.0,0.0,57.351783710488874,0.0810470830001577,100,mac,phase-26,without +6,233.1955921220685,0.0,0.0,56.843318674292625,0.0803285420006432,100,mac,phase-26,without +7,232.45447362177313,0.0,0.0,56.662665023405225,0.0800732500028971,100,mac,phase-26,without +8,230.41134935946187,0.0,0.0,56.16463689827264,0.0793694579988368,100,mac,phase-26,without +9,231.09162631947495,0.0,0.0,56.3304599298013,0.0796037920008529,100,mac,phase-26,without +10,230.3859508211676,0.0,0.0,56.15844579837669,0.0793607090017758,100,mac,phase-26,without +11,231.53022371058705,0.0,0.0,56.43737160444242,0.0797548749978886,100,mac,phase-26,without +12,231.62904551287176,0.0,0.0,56.461460220990105,0.0797889159985061,100,mac,phase-26,without +13,232.76678951884415,0.0,0.0,56.738794558713785,0.0801808329997584,100,mac,phase-26,without +14,232.42798352675112,0.0,0.0,56.656207847695576,0.0800641249988984,100,mac,phase-26,without +15,212.8962049068824,0.0,0.0,51.89517824905821,0.0733360419981181,100,mac,phase-26,without +16,231.8744757845807,0.0,0.0,56.52128584213549,0.079873459002556,100,mac,phase-26,without +17,232.59188239161537,0.0,0.0,56.69615952654616,0.0801205829993705,100,mac,phase-26,without +18,222.8084544625911,0.0,0.0,54.31136954644485,0.0767504999967059,100,mac,phase-26,without +19,231.10819677286457,0.0,0.0,56.33449911233486,0.0796095000005152,100,mac,phase-26,without +20,231.5256282331062,0.0,0.0,56.43625141950013,0.0797532920005323,100,mac,phase-26,without +21,233.51710189953573,0.0,0.0,56.92168929258419,0.0804392919999372,100,mac,phase-26,without +22,232.29395967478635,0.0,0.0,56.62353844576622,0.0800179580000985,100,mac,phase-26,without +23,230.4144962399048,0.0,0.0,56.165403975927155,0.079370542000106,100,mac,phase-26,without +24,230.3471199864287,0.0,0.0,56.14898046717825,0.0793473330013512,100,mac,phase-26,without +25,233.2193011110168,0.0,0.0,56.84909793281966,0.0803367090011306,100,mac,phase-26,without +26,231.8840296201605,0.0,0.0,56.523614667116625,0.0798767499982204,100,mac,phase-26,without +27,232.6371201920523,0.0,0.0,56.7071866076456,0.0801361659978283,100,mac,phase-26,without +28,230.12782273774823,0.0,0.0,56.09552498254536,0.0792717920012364,100,mac,phase-26,without +29,233.83401619952215,0.0,0.0,56.998939725933454,0.080548459001875,100,mac,phase-26,without +0,1707.9951880275323,2.0066518754973948,0.0,471.1953045647133,0.5138533329991333,100,mac,phase-26,with +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253,100,mac,phase-26,with +2,1693.5739088739952,1.989708919765806,0.0,467.2168161763406,0.5095146659987222,100,mac,phase-26,with +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224,100,mac,phase-26,with +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637,100,mac,phase-26,with +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599,100,mac,phase-26,with +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382,100,mac,phase-26,with +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533,100,mac,phase-26,with +8,1700.851719406768,1.998259313969181,0.0,469.2245912418632,0.5117042079982639,100,mac,phase-26,with +9,1698.8143105967222,1.9958656478520331,0.0,468.6625185431216,0.5110912500022096,100,mac,phase-26,with +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894,100,mac,phase-26,with +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684,100,mac,phase-26,with +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475,100,mac,phase-26,with +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241,100,mac,phase-26,with +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905,100,mac,phase-26,with +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494,100,mac,phase-26,with +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538,100,mac,phase-26,with +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385,100,mac,phase-26,with +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468,100,mac,phase-26,with +19,1699.5277018289198,1.9967037812754096,0.0,468.8593262398208,0.5113058749993797,100,mac,phase-26,with +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675,100,mac,phase-26,with +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391,100,mac,phase-26,with +22,1697.8531494743247,1.994736419981584,0.0,468.3973570186755,0.510802083001181,100,mac,phase-26,with +23,1697.3617679212994,1.994159116414293,0.0,468.2617965193497,0.5106542500034266,100,mac,phase-26,with +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853,100,mac,phase-26,with +25,1699.613843927194,1.9968049860119763,0.0,468.88309079871226,0.511331790999975,100,mac,phase-26,with +26,1698.3545027196003,1.995325438871667,0.0,468.5356684710486,0.5109529159999511,100,mac,phase-26,with +27,1698.6356511649765,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842,100,mac,phase-26,with +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118,100,mac,phase-26,with +29,1744.0226240557995,2.0489789983032693,0.0,481.1344184515794,0.5246922500009532,100,mac,phase-26,with +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887,100,mac,phase-21,without +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.0796174999995855,100,mac,phase-21,without +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.0796333750004123,100,mac,phase-21,without +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.0792222920026688,100,mac,phase-21,without +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.0796523749995685,100,mac,phase-21,without +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398,100,mac,phase-21,without +6,242.56584621915377,0.8435312498927311,0.0,63.60225624191192,0.0801713749970076,100,mac,phase-21,without +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.079640541000117,100,mac,phase-21,without +8,238.9652650419552,0.8310101023854332,0.0,62.65816171986166,0.0789813330011384,100,mac,phase-21,without +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.0791503330001432,100,mac,phase-21,without +10,240.76927408882528,0.8372836072083226,0.0,63.131183983507526,0.0795775830010825,100,mac,phase-21,without +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.0801001669969991,100,mac,phase-21,without +12,241.2736644165797,0.8390376422888429,0.0,63.26343822857876,0.0797442909970413,100,mac,phase-21,without +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.0799174999992828,100,mac,phase-21,without +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.0786007089991471,100,mac,phase-21,without +15,239.97114719201255,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209,100,mac,phase-21,without +16,241.24731757307185,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015,100,mac,phase-21,without +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.0798793750000186,100,mac,phase-21,without +18,243.9540875360528,0.8483589078315926,0.0,63.96626165050208,0.0806302079981833,100,mac,phase-21,without +19,221.8673952599436,0.7715516596882167,0.0,58.17499514049154,0.0733302500011632,100,mac,phase-21,without +20,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842,100,mac,phase-21,without +21,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.0790053750024526,100,mac,phase-21,without +22,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.0793227089998254,100,mac,phase-21,without +23,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263,100,mac,phase-21,without +24,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.0781720000013592,100,mac,phase-21,without +25,239.45074845867185,0.8326983880187502,0.0,62.78545845661377,0.0791417920008825,100,mac,phase-21,without +26,240.48108950298655,0.8362814351891312,0.0,63.0556202132605,0.0794823340002039,100,mac,phase-21,without +27,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.0798562079980911,100,mac,phase-21,without +28,225.32123524538264,0.7835625095471646,0.0,59.08061321985621,0.0744717919988033,100,mac,phase-21,without +29,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.0802619999994931,100,mac,phase-21,without +0,1740.8475467300475,0.8670057698492718,0.0,476.0195140230136,0.5090652500002761,100,mac,phase-21,with +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093,100,mac,phase-21,with +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814,100,mac,phase-21,with +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254,100,mac,phase-21,with +4,1743.64428559599,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949,100,mac,phase-21,with +5,1742.4530932244463,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856,100,mac,phase-21,with +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411,100,mac,phase-21,with +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279,100,mac,phase-21,with +8,1738.451339551393,0.8658123710053869,0.0,475.3642921577653,0.5083645419981622,100,mac,phase-21,with +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625,100,mac,phase-21,with +10,1757.4058468687897,0.875252409129174,0.0,480.5472361661138,0.513907291002397,100,mac,phase-21,with +11,1739.8851866112857,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523,100,mac,phase-21,with +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187,100,mac,phase-21,with +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124,100,mac,phase-21,with +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298,100,mac,phase-21,with +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439,100,mac,phase-21,with +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813,100,mac,phase-21,with +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888,100,mac,phase-21,with +18,1733.1724702832205,0.8631833009743076,0.0,473.92083159262467,0.506820875001722,100,mac,phase-21,with +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895,100,mac,phase-21,with +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733,100,mac,phase-21,with +21,1753.020803602176,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888,100,mac,phase-21,with +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614,100,mac,phase-21,with +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498,100,mac,phase-21,with +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713,100,mac,phase-21,with +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178,100,mac,phase-21,with +26,1731.9024812868108,0.8625507999896003,0.0,473.5735642250594,0.5064494999969611,100,mac,phase-21,with +27,1736.6560000323225,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919,100,mac,phase-21,with +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532,100,mac,phase-21,with +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277,100,mac,phase-21,with +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552,100,mac,phase-28,without +1,224.81426846497675,0.0,0.0,54.81441236053592,0.0781784999999217,100,mac,phase-28,without +2,226.5529604006259,0.0,0.0,55.23834175513952,0.0787831250017916,100,mac,phase-28,without +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438,100,mac,phase-28,without +4,231.3919661313005,0.0,0.0,56.418192381824795,0.080465874998481,100,mac,phase-28,without +5,230.0666493794804,0.0,0.0,56.09505248755288,0.0800049999998009,100,mac,phase-28,without +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661,100,mac,phase-28,without +7,233.63006128224424,0.0,0.0,56.96388670693858,0.0812441659982141,100,mac,phase-28,without +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709,100,mac,phase-28,without +9,229.45976573945956,0.0,0.0,55.94708158550068,0.0797939580006641,100,mac,phase-28,without +10,230.95702356067633,0.0,0.0,56.312144302305065,0.0803146250000281,100,mac,phase-28,without +11,225.23255524946725,0.0,0.0,54.916399411654055,0.0783239579977816,100,mac,phase-28,without +12,228.58460950675445,0.0,0.0,55.733700224313345,0.0794896249972225,100,mac,phase-28,without +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901,100,mac,phase-28,without +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385,100,mac,phase-28,without +15,229.41974814640807,0.0,0.0,55.937324460820925,0.0797800420004932,100,mac,phase-28,without +16,227.88570495852065,0.0,0.0,55.56329270361139,0.0792465829981665,100,mac,phase-28,without +17,215.252720952998,0.0,0.0,52.48310744957511,0.0748535000020638,100,mac,phase-28,without +18,230.7855627294707,0.0,0.0,56.27033857187008,0.0802550000007613,100,mac,phase-28,without +19,231.2199071705155,0.0,0.0,56.37624081491051,0.0804060420014138,100,mac,phase-28,without +20,228.32004939956545,0.0,0.0,55.669194946651814,0.079397624998819,100,mac,phase-28,without +21,229.05094560519663,0.0,0.0,55.84740270135428,0.0796517920025507,100,mac,phase-28,without +22,228.0491398436106,0.0,0.0,55.60314154081637,0.0793034169983002,100,mac,phase-28,without +23,229.22600099912444,0.0,0.0,55.8900848612288,0.0797126670004217,100,mac,phase-28,without +24,229.4193886869974,0.0,0.0,55.93723681711175,0.0797799169995414,100,mac,phase-28,without +25,228.67255850144625,0.0,0.0,55.75514402543258,0.0795202090012026,100,mac,phase-28,without +26,230.46097335054304,0.0,0.0,56.19119690445779,0.0801421249998384,100,mac,phase-28,without +27,235.15859470850617,0.0,0.0,57.33657506923012,0.0817757089971564,100,mac,phase-28,without +28,229.769617397626,0.0,0.0,56.022629888894855,0.0799017080025805,100,mac,phase-28,without +29,230.28699632438577,0.0,0.0,56.148777673160055,0.0800816250011848,100,mac,phase-28,without +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516,100,mac,phase-28,with +1,1708.5795885529983,1.966259571752885,0.0,469.8693847821005,0.5122209580003982,100,mac,phase-28,with +2,1714.6152742499144,1.9732055313401136,0.0,471.5292336671909,0.5140304169981391,100,mac,phase-28,with +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946,100,mac,phase-28,with +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964,100,mac,phase-28,with +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978,100,mac,phase-28,with +6,1709.5649903497754,1.9673935872403203,0.0,470.14037604239456,0.5125163749980857,100,mac,phase-28,with +7,1713.8351537921171,1.972307756763184,0.0,471.3146959763412,0.5137965419999091,100,mac,phase-28,with +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049,100,mac,phase-28,with +9,1713.8143061036951,1.9722837649238905,0.0,471.3089627400327,0.5137902919996122,100,mac,phase-28,with +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476,100,mac,phase-28,with +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156,100,mac,phase-28,with +12,1709.076183799929,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007,100,mac,phase-28,with +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221,100,mac,phase-28,with +14,1704.6249223381478,1.9617084812739085,0.0,468.7818284318785,0.5110353749987553,100,mac,phase-28,with +15,1705.365015246795,1.962560191533918,0.0,468.98535831248665,0.5112572500001988,100,mac,phase-28,with +16,1701.6139625675005,1.95824342263171,0.0,467.95379687600814,0.510132709001482,100,mac,phase-28,with +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774,100,mac,phase-28,with +18,1707.2698000702223,1.964752247096495,0.0,469.5091852849744,0.5118282920011552,100,mac,phase-28,with +19,1713.4863002655777,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812,100,mac,phase-28,with +20,1688.421819469822,1.9430617022064345,0.0,464.3258803289579,0.5061777909977536,100,mac,phase-28,with +21,1707.8000251380013,1.9653624382293453,0.0,469.6550002812804,0.5119872499999474,100,mac,phase-28,with +22,1709.2365675547344,1.9670156332552335,0.0,470.05005785195834,0.5124179159975029,100,mac,phase-28,with +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883,100,mac,phase-28,with +24,1702.1062448464766,1.9588099486217936,0.0,468.0891773833673,0.5102802920009708,100,mac,phase-28,with +25,1709.7403911188364,1.967595441133092,0.0,470.188612280262,0.5125689589985996,100,mac,phase-28,with +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112,100,mac,phase-28,with +27,1713.4480806178635,1.971862307022976,0.0,471.20824858842275,0.5136805000001914,100,mac,phase-28,with +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611,100,mac,phase-28,with +29,1707.9331701381714,1.9655156635357751,0.0,469.6916159354389,0.5120271659980062,100,mac,phase-28,with +0,250.52289280398944,0.0,0.0,59.092548476657214,0.0806277090014191,100,mac,phase-17,without +1,248.85123961316407,0.0,0.0,58.69824420326574,0.0800897080007416,100,mac,phase-17,without +2,244.3419790590411,0.0,0.0,57.6346140698836,0.0786384580023877,100,mac,phase-17,without +3,252.30082937497212,0.0,0.0,59.5119225379787,0.0811999159996048,100,mac,phase-17,without +4,250.19896865042335,0.0,0.0,59.01614227068889,0.0805234580002434,100,mac,phase-17,without +5,253.6747113428116,0.0,0.0,59.83598947604204,0.0816420829978596,100,mac,phase-17,without +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064,100,mac,phase-17,without +7,252.90957722267183,0.0,0.0,59.65551205707467,0.0813958340004319,100,mac,phase-17,without +8,251.272752152766,0.0,0.0,59.26942293081308,0.0808690420017228,100,mac,phase-17,without +9,249.41985231096191,0.0,0.0,58.832366770002,0.0802727089976542,100,mac,phase-17,without +10,250.0490483597647,0.0,0.0,58.98077954617207,0.0804752080002799,100,mac,phase-17,without +11,251.42707217541096,0.0,0.0,59.30582345021072,0.0809187080012634,100,mac,phase-17,without +12,240.21308724761124,0.0,0.0,56.66070411382744,0.0773096250013622,100,mac,phase-17,without +13,248.47915764070973,0.0,0.0,58.61047868312323,0.0799699579984007,100,mac,phase-17,without +14,250.05034404295012,0.0,0.0,58.98108516782839,0.0804756249999627,100,mac,phase-17,without +15,249.42062599741175,0.0,0.0,58.83254926471747,0.0802729579991137,100,mac,phase-17,without +16,247.92867519320183,0.0,0.0,58.48063262254641,0.0797927919993526,100,mac,phase-17,without +17,248.99960632515408,0.0,0.0,58.73324047455442,0.0801374580005358,100,mac,phase-17,without +18,247.65887149478823,0.0,0.0,58.41699217855648,0.0797059590004209,100,mac,phase-17,without +19,249.7995685662133,0.0,0.0,58.92193304065166,0.0803949159999319,100,mac,phase-17,without +20,243.1112872649154,0.0,0.0,57.34432237761458,0.0782423749988083,100,mac,phase-17,without +21,248.4247855184506,0.0,0.0,58.5976535587028,0.0799524590001965,100,mac,phase-17,without +22,250.2673260892368,0.0,0.0,59.03226620739428,0.0805454580004152,100,mac,phase-17,without +23,246.058297611157,0.0,0.0,58.039453867584825,0.0791908339997462,100,mac,phase-17,without +24,248.9287911192123,0.0,0.0,58.71653680750362,0.0801146669982699,100,mac,phase-17,without +25,247.1768707710309,0.0,0.0,58.30329937062335,0.0795508330011216,100,mac,phase-17,without +26,248.9422544277273,0.0,0.0,58.71971249018146,0.0801189999983762,100,mac,phase-17,without +27,251.83799359197425,0.0,0.0,59.40275029572405,0.08105095800056,100,mac,phase-17,without +28,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028,100,mac,phase-17,without +29,248.2156956504442,0.0,0.0,58.548334101215886,0.0798851660001673,100,mac,phase-17,without +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787,100,mac,phase-17,with +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475,100,mac,phase-17,with +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321,100,mac,phase-17,with +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932,100,mac,phase-17,with +4,1765.9374046561293,1.4666423640474469,0.0,474.2921408643437,0.5136094170011347,100,mac,phase-17,with +5,1760.7687938821498,1.4623497410448405,0.0,472.9039651210689,0.5121061660029227,100,mac,phase-17,with +6,1765.694572073473,1.4664406872767095,0.0,474.22692134682507,0.5135387909976998,100,mac,phase-17,with +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474,100,mac,phase-17,with +8,1775.629506989212,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826,100,mac,phase-17,with +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419,100,mac,phase-17,with +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038,100,mac,phase-17,with +11,1770.4399845493308,1.470381836579976,0.0,475.5014352885564,0.514918958000635,100,mac,phase-17,with +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858,100,mac,phase-17,with +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353,100,mac,phase-17,with +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058,100,mac,phase-17,with +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538,100,mac,phase-17,with +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251,100,mac,phase-17,with +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272,100,mac,phase-17,with +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988,100,mac,phase-17,with +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226,100,mac,phase-17,with +20,1769.5408755153906,1.46963511056602,0.0,475.2599542782705,0.5146574589998636,100,mac,phase-17,with +21,1767.2834912096223,1.4677603128262782,0.0,474.6536702546616,0.51400091600226,100,mac,phase-17,with +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654,100,mac,phase-17,with +23,1761.1276686756316,1.462647792931686,0.0,473.0003510369309,0.5122105419977743,100,mac,phase-17,with +24,1753.0491242413011,1.455938418366093,0.0,470.8306307938895,0.5098609590022534,100,mac,phase-17,with +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936,100,mac,phase-17,with +26,1760.151335689559,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767,100,mac,phase-17,with +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245,100,mac,phase-17,with +28,1777.3232973655329,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984,100,mac,phase-17,with +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584,100,mac,phase-17,with +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987,100,mac,phase-10,without +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.0773468749976018,100,mac,phase-10,without +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888,100,mac,phase-10,without +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.0805877500024507,100,mac,phase-10,without +4,230.5488593174952,0.8730367524402673,0.0,57.25106395810215,0.0799453340005129,100,mac,phase-10,without +5,231.88767512675335,0.8781065472320985,0.0,57.58352550118184,0.0804095829989819,100,mac,phase-10,without +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.0736084160016616,100,mac,phase-10,without +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.0800470840003981,100,mac,phase-10,without +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.0799534170000697,100,mac,phase-10,without +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.0799360419987351,100,mac,phase-10,without +10,233.5648652940369,0.8844576897239966,0.0,58.00001388382362,0.0809911670003202,100,mac,phase-10,without +11,240.11716945213135,0.909269794022053,0.0,59.62711533875386,0.0832632500023464,100,mac,phase-10,without +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.0759962089978216,100,mac,phase-10,without +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.0802892920000886,100,mac,phase-10,without +14,218.27767539201488,0.8265685348372249,0.0,54.20382122682572,0.0756901670029037,100,mac,phase-10,without +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.0803171670013398,100,mac,phase-10,without +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995,100,mac,phase-10,without +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.079914791000192,100,mac,phase-10,without +18,230.85646606210256,0.874201590098262,0.0,57.32745042759757,0.0800519999975222,100,mac,phase-10,without +19,232.308354026224,0.8796995637462603,0.0,57.6879906225913,0.0805554580001626,100,mac,phase-10,without +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418,100,mac,phase-10,without +21,229.6469381758771,0.869621379634839,0.0,57.02709431836155,0.0796325829978741,100,mac,phase-10,without +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.0763502500012691,100,mac,phase-10,without +23,225.7957025466795,0.8550376152364794,0.0,56.07073592223835,0.0782971249973343,100,mac,phase-10,without +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.0806615000001329,100,mac,phase-10,without +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.0789183339984447,100,mac,phase-10,without +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.0803770000020449,100,mac,phase-10,without +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.0772449169999163,100,mac,phase-10,without +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.0793845000007422,100,mac,phase-10,without +29,229.30784864573525,0.8683373237385839,0.0,56.94288988362637,0.0795150000012654,100,mac,phase-10,without +0,1691.7368270144957,0.9352332949595424,0.0,471.9254008744063,0.5151577079996059,100,mac,phase-10,with +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978,100,mac,phase-10,with +2,1691.7194485071643,0.935223687697696,0.0,471.9205529814552,0.5151524159991823,100,mac,phase-10,with +3,1689.084378366222,0.933766956786002,0.0,471.1854761581936,0.5143500000012864,100,mac,phase-10,with +4,1693.5933387749658,0.9362596198483492,0.0,472.4432917441903,0.515723041997262,100,mac,phase-10,with +5,1693.8493466310365,0.9364011472224332,0.0,472.51470746806285,0.5158009999977367,100,mac,phase-10,with +6,1686.4976048238766,0.9323369254095548,0.0,470.46387211112864,0.5135622909983795,100,mac,phase-10,with +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559,100,mac,phase-10,with +8,1688.5101028010365,0.933449483275662,0.0,471.02527675720825,0.5141751249975641,100,mac,phase-10,with +9,1699.7612240655442,0.9396693769637156,0.0,474.1638795400121,0.5176012500014622,100,mac,phase-10,with +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392,100,mac,phase-10,with +11,1692.366929218863,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073,100,mac,phase-10,with +12,1689.6277292335435,0.9340673343706531,0.0,471.33704883296286,0.5145154579986411,100,mac,phase-10,with +13,1697.3383739763035,0.9383299664620526,0.0,473.488003433655,0.5168634580004436,100,mac,phase-10,with +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696,100,mac,phase-10,with +15,1694.925927355849,0.9369963072511552,0.0,472.8150294696991,0.516128834002302,100,mac,phase-10,with +16,1671.365031052581,0.923971270300939,0.0,466.2425027886417,0.5089542089990573,100,mac,phase-10,with +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399,100,mac,phase-10,with +18,1690.4551425000311,0.9345247485636612,0.0,471.5678633019989,0.5147674170002574,100,mac,phase-10,with +19,1684.268371406136,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615,100,mac,phase-10,with +20,1696.6806343047017,0.937966351962164,0.0,473.3045209597648,0.5166631669999333,100,mac,phase-10,with +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752,100,mac,phase-10,with +22,1680.6578390184325,0.9291085607320204,0.0,468.8348162350971,0.5117840000020806,100,mac,phase-10,with +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838,100,mac,phase-10,with +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711,100,mac,phase-10,with +25,1690.4400890135123,0.9345164266299107,0.0,471.56366399478605,0.5147628330014413,100,mac,phase-10,with +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478,100,mac,phase-10,with +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382,100,mac,phase-10,with +28,1682.6264145623704,0.930196837207968,0.0,469.3839683182635,0.5123834590012848,100,mac,phase-10,with +29,1679.3658889613605,0.9283943392943216,0.0,468.4744149960525,0.5113905830003205,100,mac,phase-10,with +0,230.518560530242,0.8053050149528105,0.0,57.34442793976471,0.080327292002039,100,mac,phase-11,without +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.0802637079978012,100,mac,phase-11,without +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285,100,mac,phase-11,without +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.0799302919986075,100,mac,phase-11,without +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.0747683330009749,100,mac,phase-11,without +5,232.19999083317265,0.811179007277459,0.0,57.762705143215726,0.0809132089998456,100,mac,phase-11,without +6,228.9162862924588,0.7997075503666682,0.0,56.94584181569317,0.0797689579994767,100,mac,phase-11,without +7,229.74181621161017,0.8025914976824808,0.0,57.151202897473325,0.0800566249999974,100,mac,phase-11,without +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.0797927080020599,100,mac,phase-11,without +9,229.8543330351777,0.8029845695552058,0.0,57.17919289041028,0.0800958330000867,100,mac,phase-11,without +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.0801922499995271,100,mac,phase-11,without +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447,100,mac,phase-11,without +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.0796882089998689,100,mac,phase-11,without +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.0825952499981212,100,mac,phase-11,without +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.0810012080000888,100,mac,phase-11,without +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.0809156670002266,100,mac,phase-11,without +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.0799027920002117,100,mac,phase-11,without +17,229.4390584890892,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617,100,mac,phase-11,without +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.0801350420006201,100,mac,phase-11,without +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.0804691659977834,100,mac,phase-11,without +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.0799565829984203,100,mac,phase-11,without +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.0798089579984662,100,mac,phase-11,without +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.0805384579980454,100,mac,phase-11,without +23,209.77332001183171,0.7328325589932985,0.0,52.18378513831446,0.0730983339999511,100,mac,phase-11,without +24,229.24403659660769,0.8008525295951359,0.0,57.027373878253634,0.0798831669999344,100,mac,phase-11,without +25,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.0800860000017564,100,mac,phase-11,without +26,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434,100,mac,phase-11,without +27,227.427249190088,0.7945056740265084,0.0,56.575424871304286,0.0792500829993514,100,mac,phase-11,without +28,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.079899625001417,100,mac,phase-11,without +29,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.0798307090008165,100,mac,phase-11,without +0,1706.4500436920816,0.9036096252071272,0.0,472.01889458967855,0.5143917909990705,100,mac,phase-11,with +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102,100,mac,phase-11,with +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231,100,mac,phase-11,with +3,1697.45142476899,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798,100,mac,phase-11,with +4,1707.4593666243693,0.9041440879181388,0.0,472.2980820739788,0.5146960410020256,100,mac,phase-11,with +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587,100,mac,phase-11,with +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588,100,mac,phase-11,with +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391,100,mac,phase-11,with +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746,100,mac,phase-11,with +9,1692.1716258741417,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998,100,mac,phase-11,with +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885,100,mac,phase-11,with +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757,100,mac,phase-11,with +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119,100,mac,phase-11,with +13,1699.6750602015395,0.9000220954606203,0.0,470.1448753472811,0.512349542001175,100,mac,phase-11,with +14,1701.1311258658325,0.9007931200529032,0.0,470.54763574911647,0.5127884579997044,100,mac,phase-11,with +15,1700.9127306150654,0.9006774740945451,0.0,470.4872257270172,0.5127226250006061,100,mac,phase-11,with +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582,100,mac,phase-11,with +17,1691.921847883786,0.8959165681394461,0.0,468.0002695199536,0.5100124159980624,100,mac,phase-11,with +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093,100,mac,phase-11,with +19,1696.5682995533305,0.8983769849955858,0.0,469.2855183843608,0.5114130410001962,100,mac,phase-11,with +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749,100,mac,phase-11,with +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367,100,mac,phase-11,with +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291,100,mac,phase-11,with +23,1723.2436212518203,0.912502260758186,0.0,476.6641439160539,0.5194540419979603,100,mac,phase-11,with +24,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214,100,mac,phase-11,with +25,1699.7398857679125,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216,100,mac,phase-11,with +26,1704.6099874632089,0.902635267636287,0.0,471.5099190645256,0.5138371249995544,100,mac,phase-11,with +27,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361,100,mac,phase-11,with +28,1701.2077050215437,0.9008336707050868,0.0,470.56881820831654,0.5128115419975074,100,mac,phase-11,with +29,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599,100,mac,phase-11,with +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.0789188749986351,100,mac,phase-29,without +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.0791977920016506,100,mac,phase-29,without +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.0790694999996048,100,mac,phase-29,without +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.0798704169974371,100,mac,phase-29,without +4,232.7516641096096,1.0435784766268297,0.0,58.70970526571582,0.0802916249995178,100,mac,phase-29,without +5,230.0622758174019,1.0315201837343737,0.0,58.03132904621767,0.0793638750001264,100,mac,phase-29,without +6,230.98301627009252,1.0356484675112625,0.0,58.26357830127876,0.0796814999994239,100,mac,phase-29,without +7,226.34355984443872,1.0148467392504483,0.0,57.09331333073491,0.0780810409996775,100,mac,phase-29,without +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.0827262089987925,100,mac,phase-29,without +9,232.50767840573172,1.0424845285764657,0.0,58.64816186572117,0.0802074580024054,100,mac,phase-29,without +10,230.61547089220113,1.0340005203439735,0.0,58.170867983222266,0.0795547090019681,100,mac,phase-29,without +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.0818103749988949,100,mac,phase-29,without +12,223.25292728760996,1.0009894049632495,0.0,56.31372652438411,0.0770148750016233,100,mac,phase-29,without +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.079476541999611,100,mac,phase-29,without +14,231.05210405201868,1.035958233383364,0.0,58.281005129696354,0.0797053329988557,100,mac,phase-29,without +15,230.8566737288988,1.0350819909742357,0.0,58.23170942771182,0.0796379160019569,100,mac,phase-29,without +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.0801497499996912,100,mac,phase-29,without +17,235.03425108209285,1.0538128121991437,0.0,59.28546917662278,0.0810790420000557,100,mac,phase-29,without +18,212.5300383012911,0.9529116556754448,0.0,53.608965403160504,0.0733158330003789,100,mac,phase-29,without +19,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.0816356670002278,100,mac,phase-29,without +20,233.53797138226943,1.0471040082224985,0.0,58.90804484967861,0.0805628749985771,100,mac,phase-29,without +21,230.25214908541847,1.032371510218104,0.0,58.07922302646367,0.0794293749968346,100,mac,phase-29,without +22,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.0800244170022779,100,mac,phase-29,without +23,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.0798051670026325,100,mac,phase-29,without +24,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.0763507919982657,100,mac,phase-29,without +25,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.0793419999972684,100,mac,phase-29,without +26,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.0790835829975549,100,mac,phase-29,without +27,236.30393803482497,1.059505652166557,0.0,59.60573733478951,0.0815170419991773,100,mac,phase-29,without +28,233.44375945039985,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887,100,mac,phase-29,without +29,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058,100,mac,phase-29,without +0,1697.203423819641,0.4319175559316277,0.0,469.49438329767935,0.5124109589996806,100,mac,phase-29,with +1,1702.970913758122,0.433385311725145,0.0,471.08983384523265,0.5141522500016436,100,mac,phase-29,with +2,1698.55258888602,0.4322609019736166,0.0,469.8676004453214,0.5128182920016116,100,mac,phase-29,with +3,1752.3333375660038,0.4459474460849607,0.0,484.74487389435234,0.529055499999231,100,mac,phase-29,with +4,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953,100,mac,phase-29,with +5,1704.3090392776437,0.4337258483372035,0.0,471.45999714254026,0.5145562500001688,100,mac,phase-29,with +6,1696.1240599722423,0.4316428710067762,0.0,469.19580078436576,0.5120850829989649,100,mac,phase-29,with +7,1698.2136390256214,0.4321746433712405,0.0,469.7738373445384,0.5127159579969884,100,mac,phase-29,with +8,1701.9096344739723,0.4331152291009071,0.0,470.7962540326861,0.5138318339995749,100,mac,phase-29,with +9,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588,100,mac,phase-29,with +10,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589,100,mac,phase-29,with +11,1705.7160285840569,0.4340839099425002,0.0,471.84921010749775,0.5149810410002829,100,mac,phase-29,with +12,1727.832226093905,0.4397122122667182,0.0,477.9671747339228,0.5216582499997457,100,mac,phase-29,with +13,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364,100,mac,phase-29,with +14,1702.5864245755272,0.4332874639211059,0.0,470.9834732822422,0.5140361669982667,100,mac,phase-29,with +15,1699.7292450503628,0.4325603466056166,0.0,470.1930967603053,0.5131735420000041,100,mac,phase-29,with +16,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262,100,mac,phase-29,with +17,1691.5910504622384,0.4304892754146995,0.0,467.9418423757784,0.5107165000008536,100,mac,phase-29,with +18,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608,100,mac,phase-29,with +19,1697.6634011631045,0.4320346145512275,0.0,469.6216260171843,0.5125498330016853,100,mac,phase-29,with +20,1697.9111266140835,0.4320976576548574,0.0,469.6901538708301,0.5126246250001714,100,mac,phase-29,with +21,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183,100,mac,phase-29,with +22,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172,100,mac,phase-29,with +23,1695.7074127257792,0.4315368393679918,0.0,469.0805443930072,0.5119592909977655,100,mac,phase-29,with +24,1695.3634979136232,0.4314493172459938,0.0,468.9854078463953,0.5118554580003547,100,mac,phase-29,with +25,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883,100,mac,phase-29,with +26,1698.0149108307794,0.4321240694712552,0.0,469.7188635152545,0.5126559589989483,100,mac,phase-29,with +27,1693.4629920169104,0.4309656616921448,0.0,468.45967425936146,0.5112816670007305,100,mac,phase-29,with +28,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756,100,mac,phase-29,with +29,1714.7917125952802,0.4363935607489505,0.0,474.3598005341093,0.5177211250011169,100,mac,phase-29,with +0,212.6893336470748,0.6736489116377261,0.0,53.279504829529245,0.0732918749999953,100,mac,phase-16,without +1,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.0793974170010187,100,mac,phase-16,without +2,231.44524097492229,0.7330543192410438,0.0,57.97793252179165,0.0797550839997711,100,mac,phase-16,without +3,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.0800826669983507,100,mac,phase-16,without +4,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.0800887080004031,100,mac,phase-16,without +5,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297,100,mac,phase-16,without +6,232.4248898509369,0.7361571518457545,0.0,58.22333837325513,0.0800926669980981,100,mac,phase-16,without +7,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.0803107920000911,100,mac,phase-16,without +8,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.0799042079997889,100,mac,phase-16,without +9,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.0808812920004129,100,mac,phase-16,without +10,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859,100,mac,phase-16,without +11,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.0794993339986831,100,mac,phase-16,without +12,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.0802035840024473,100,mac,phase-16,without +13,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.0801895829972636,100,mac,phase-16,without +14,232.42766991836817,0.7361659571269938,0.0,58.22403479095315,0.0800936249979713,100,mac,phase-16,without +15,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.0797295000011217,100,mac,phase-16,without +16,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.0799505420000059,100,mac,phase-16,without +17,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.0796424159998423,100,mac,phase-16,without +18,239.55219725510383,0.7587314050694335,0.0,60.008756582764285,0.0825487079964659,100,mac,phase-16,without +19,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.0812833330019202,100,mac,phase-16,without +20,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.0804598750000877,100,mac,phase-16,without +21,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.0804541249999601,100,mac,phase-16,without +22,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.0794215829992026,100,mac,phase-16,without +23,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.080049083000631,100,mac,phase-16,without +24,232.1192158874564,0.7351889935968963,0.0,58.14676585720907,0.0799873329997353,100,mac,phase-16,without +25,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.0798464580002473,100,mac,phase-16,without +26,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.0792702500002633,100,mac,phase-16,without +27,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.0836044580028101,100,mac,phase-16,without +28,212.9931909855094,0.6746113161072859,0.0,53.35562227393988,0.0733965829967928,100,mac,phase-16,without +29,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.0798420829996757,100,mac,phase-16,without +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922,100,mac,phase-16,with +1,1684.9120118880196,0.9001310708543041,0.0,468.9682879150925,0.5117798330029473,100,mac,phase-16,with +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045,100,mac,phase-16,with +3,1683.044204417893,0.8991332314856176,0.0,468.4484136040067,0.5112124999977823,100,mac,phase-16,with +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105,100,mac,phase-16,with +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793,100,mac,phase-16,with +6,1709.3699343703154,0.9131972344281464,0.0,475.77575913706426,0.5192087499999616,100,mac,phase-16,with +7,1681.6389594309271,0.898382507016918,0.0,468.05728615581427,0.5107856670001638,100,mac,phase-16,with +8,1686.120547663472,0.9007767072994408,0.0,469.3046645030087,0.5121469170007913,100,mac,phase-16,with +9,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845,100,mac,phase-16,with +10,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436,100,mac,phase-16,with +11,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695,100,mac,phase-16,with +12,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919,100,mac,phase-16,with +13,1697.2951611645233,0.906746524563556,0.0,472.4149392976128,0.5155411250016186,100,mac,phase-16,with +14,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666,100,mac,phase-16,with +15,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893,100,mac,phase-16,with +16,1677.7029249314749,0.8962797580757781,0.0,466.9617539574804,0.5095901249987946,100,mac,phase-16,with +17,1688.7147098689277,0.902162587385458,0.0,470.0267080278236,0.5129348750015197,100,mac,phase-16,with +18,1680.573640225599,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004,100,mac,phase-16,with +19,1683.2713703277295,0.8992545904006469,0.0,468.511641598737,0.5112814999993134,100,mac,phase-16,with +20,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354,100,mac,phase-16,with +21,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451,100,mac,phase-16,with +22,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416,100,mac,phase-16,with +23,1681.8592675604157,0.8985002022978081,0.0,468.118605397158,0.5108525840005314,100,mac,phase-16,with +24,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924,100,mac,phase-16,with +25,1702.0110496161594,0.909265895125372,0.0,473.7275313603189,0.5169735419985955,100,mac,phase-16,with +26,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375,100,mac,phase-16,with +27,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133,100,mac,phase-16,with +28,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034,100,mac,phase-16,with +29,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037,100,mac,phase-16,with +0,226.42116177213327,0.0,0.0,56.03535537217832,0.0791302920006273,100,mac,phase-20,without +1,224.91178830861125,0.0,0.0,55.661811319335285,0.0786027920003107,100,mac,phase-20,without +2,228.6300203842071,0.0,0.0,56.582010006072565,0.0799022499995771,100,mac,phase-20,without +3,229.0332362707683,0.0,0.0,56.68179902454736,0.0800431669995305,100,mac,phase-20,without +4,228.41553770137455,0.0,0.0,56.52892921954344,0.0798272920001181,100,mac,phase-20,without +5,244.43862004235896,0.0,0.0,60.494367370763285,0.0854270830022869,100,mac,phase-20,without +6,231.42689083939575,0.0,0.0,57.27418748921862,0.0808797079989744,100,mac,phase-20,without +7,219.32257694174305,0.0,0.0,54.27857733739913,0.0766494589988724,100,mac,phase-20,without +8,226.24316157257405,0.0,0.0,55.99130337473889,0.0790680840000277,100,mac,phase-20,without +9,229.2636968600091,0.0,0.0,56.73883406895891,0.0801237090017821,100,mac,phase-20,without +10,230.3898811711504,0.0,0.0,57.01754537666294,0.080517291000433,100,mac,phase-20,without +11,230.30606873637544,0.0,0.0,56.99680323608533,0.0804879999996046,100,mac,phase-20,without +12,228.31634253998695,0.0,0.0,56.504380117878,0.0797926250015734,100,mac,phase-20,without +13,228.8224476250095,0.0,0.0,56.62963244885686,0.0799695000023348,100,mac,phase-20,without +14,224.49235988305836,0.0,0.0,55.5580099754366,0.0784562089975224,100,mac,phase-20,without +15,216.08373905100171,0.0,0.0,53.477020491828235,0.075517541001318,100,mac,phase-20,without +16,226.49722560636775,0.0,0.0,56.05417986697792,0.0791568749991711,100,mac,phase-20,without +17,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319,100,mac,phase-20,without +18,227.09393887275,0.0,0.0,56.20185616929578,0.0793654159970174,100,mac,phase-20,without +19,228.4411698641868,0.0,0.0,56.53527274035617,0.0798362499990616,100,mac,phase-20,without +20,228.40921978706487,0.0,0.0,56.52736564407734,0.0798250839980028,100,mac,phase-20,without +21,228.2586401211186,0.0,0.0,56.490099758560795,0.0797724590011057,100,mac,phase-20,without +22,229.08092389643008,0.0,0.0,56.693600894257315,0.0800598330024513,100,mac,phase-20,without +23,228.80122768941447,0.0,0.0,56.62438087862935,0.0799620840007264,100,mac,phase-20,without +24,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063,100,mac,phase-20,without +25,233.76201033495235,0.0,0.0,57.85208952693407,0.0816957919996639,100,mac,phase-20,without +26,228.461082144718,0.0,0.0,56.540200688376146,0.0798432089977723,100,mac,phase-20,without +27,227.8610268005468,0.0,0.0,56.39169727910804,0.0796335000013641,100,mac,phase-20,without +28,227.20291135293743,0.0,0.0,56.228824989724494,0.0794034999998984,100,mac,phase-20,without +29,228.72158427175552,0.0,0.0,56.60467049830692,0.0799342499994963,100,mac,phase-20,without +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231,100,mac,phase-20,with +1,1684.3804086585617,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504,100,mac,phase-20,with +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881,100,mac,phase-20,with +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921,100,mac,phase-20,with +4,1687.8337375501524,0.9008719984551876,0.0,468.55353608541475,0.5111366669989366,100,mac,phase-20,with +5,1681.843830358663,0.8976749183506088,0.0,466.890699199911,0.5093227079996723,100,mac,phase-20,with +6,1686.948083015424,0.900399285205718,0.0,468.3076726719962,0.5108684590013581,100,mac,phase-20,with +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708,100,mac,phase-20,with +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256,100,mac,phase-20,with +9,1710.9085274184995,0.9131880409658696,0.0,474.95924664013734,0.5181245420026244,100,mac,phase-20,with +10,1689.3941238414432,0.9017048460783412,0.0,468.9867093880794,0.5116092080024828,100,mac,phase-20,with +11,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164,100,mac,phase-20,with +12,1692.884875635795,0.9035680156993332,0.0,469.9557646098421,0.512666333001107,100,mac,phase-20,with +13,1689.6578805301597,0.9018456247640516,0.0,469.059929946725,0.51168908299951,100,mac,phase-20,with +14,1688.3434987592047,0.9011440807041184,0.0,468.69504908621974,0.5112910409989126,100,mac,phase-20,with +15,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817,100,mac,phase-20,with +16,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927,100,mac,phase-20,with +17,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944,100,mac,phase-20,with +18,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707,100,mac,phase-20,with +19,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894,100,mac,phase-20,with +20,1685.8418700821012,0.8998088501209175,0.0,468.0005808240016,0.5105334580002818,100,mac,phase-20,with +21,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062,100,mac,phase-20,with +22,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702,100,mac,phase-20,with +23,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496,100,mac,phase-20,with +24,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146,100,mac,phase-20,with +25,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888,100,mac,phase-20,with +26,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105,100,mac,phase-20,with +27,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763,100,mac,phase-20,with +28,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561,100,mac,phase-20,with +29,1684.6551746223745,0.8991754579291524,0.0,467.6711465073736,0.5101740840000275,100,mac,phase-20,with +0,233.25053223547215,0.0,0.0,56.63698268361321,0.0794133329982287,100,mac,phase-18,without +1,221.60881151463116,0.0,0.0,53.81018555455842,0.0754497499983699,100,mac,phase-18,without +2,238.10873630723785,0.0,0.0,57.81663281023447,0.0810673750020214,100,mac,phase-18,without +3,231.07861771633884,0.0,0.0,56.10960688801906,0.0786738750030053,100,mac,phase-18,without +4,229.07742623183637,0.0,0.0,55.6236853925005,0.077992541999265,100,mac,phase-18,without +5,234.276462541354,0.0,0.0,56.886095071104634,0.0797626249986933,100,mac,phase-18,without +6,236.55130141861645,0.0,0.0,57.43846255710658,0.0805371249989548,100,mac,phase-18,without +7,235.73072929591643,0.0,0.0,57.23921444110614,0.0802577499998733,100,mac,phase-18,without +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205,100,mac,phase-18,without +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879,100,mac,phase-18,without +10,233.68327444202225,0.0,0.0,56.74205945503127,0.0795606659994518,100,mac,phase-18,without +11,230.57134184737788,0.0,0.0,55.98643214397538,0.0785011659972951,100,mac,phase-18,without +12,233.56836056947228,0.0,0.0,56.71415651758738,0.0795215420002932,100,mac,phase-18,without +13,237.12197023826567,0.0,0.0,57.577030129693824,0.080731417001516,100,mac,phase-18,without +14,234.29359506112613,0.0,0.0,56.890255122601026,0.0797684579993074,100,mac,phase-18,without +15,234.53138547652537,0.0,0.0,56.9479944619724,0.0798494169976038,100,mac,phase-18,without +16,234.16852151095043,0.0,0.0,56.859885251940554,0.079725874998985,100,mac,phase-18,without +17,234.93438883615585,0.0,0.0,57.04585016280221,0.0799866250017657,100,mac,phase-18,without +18,234.65144234374125,0.0,0.0,56.977146201282,0.079890291999618,100,mac,phase-18,without +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866,100,mac,phase-18,without +20,229.93275390578643,0.0,0.0,55.83137271562917,0.0782837500009918,100,mac,phase-18,without +21,234.6409155169552,0.0,0.0,56.974590118341126,0.0798867079975025,100,mac,phase-18,without +22,237.23517173824405,0.0,0.0,57.60451727552191,0.0807699580000189,100,mac,phase-18,without +23,235.77833496092907,0.0,0.0,57.250773862639385,0.0802739579994522,100,mac,phase-18,without +24,233.97001868432088,0.0,0.0,56.81168557133654,0.0796582919974753,100,mac,phase-18,without +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417,100,mac,phase-18,without +26,186.94272839226807,0.0,0.0,45.39270272743291,0.063647208000475,100,mac,phase-18,without +27,231.6775567969512,0.0,0.0,56.255038934891886,0.0788777920024585,100,mac,phase-18,without +28,234.7314802516568,0.0,0.0,56.99658069329023,0.0799175419997482,100,mac,phase-18,without +29,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256,100,mac,phase-18,without +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961,100,mac,phase-18,with +1,1694.9927135001717,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363,100,mac,phase-18,with +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444,100,mac,phase-18,with +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167,100,mac,phase-18,with +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291,100,mac,phase-18,with +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369,100,mac,phase-18,with +6,1688.8411757749657,1.7647243216039348,0.0,469.3167794907069,0.5113532079994911,100,mac,phase-18,with +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479,100,mac,phase-18,with +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306,100,mac,phase-18,with +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447,100,mac,phase-18,with +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125,100,mac,phase-18,with +11,1682.606935383067,1.758209963827656,0.0,467.58432905944926,0.5094655829998374,100,mac,phase-18,with +12,1688.212838993708,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873,100,mac,phase-18,with +13,1684.5242856987225,1.7602134646799608,0.0,468.1171468804538,0.5100461250003718,100,mac,phase-18,with +14,1691.2586095165043,1.7672503756703288,0.0,469.9885668881752,0.5120851669998956,100,mac,phase-18,with +15,1684.9852883959743,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345,100,mac,phase-18,with +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871,100,mac,phase-18,with +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087,100,mac,phase-18,with +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969,100,mac,phase-18,with +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531,100,mac,phase-18,with +20,1716.313368140092,1.7934308966981107,0.0,476.9511035652806,0.5196713340010319,100,mac,phase-18,with +21,1697.7310531269818,1.77401363963112,0.0,471.78721227548374,0.5140449159989657,100,mac,phase-18,with +22,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576,100,mac,phase-18,with +23,1684.149156241156,1.759821479875816,0.0,468.0129011103703,0.5099325419978413,100,mac,phase-18,with +24,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992,100,mac,phase-18,with +25,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528,100,mac,phase-18,with +26,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477,100,mac,phase-18,with +27,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427,100,mac,phase-18,with +28,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625,100,mac,phase-18,with +29,1683.942460695321,1.7596054970693007,0.0,467.9554619092792,0.509869958001218,100,mac,phase-18,with +0,228.4317049341564,0.0,0.0,55.90521754742971,0.07943662499747,100,mac,phase-27,without +1,224.63081830801715,0.0,0.0,54.975007821206816,0.0781148749993008,100,mac,phase-27,without +2,229.29176212320093,0.0,0.0,56.115703584254696,0.0797357080009533,100,mac,phase-27,without +3,230.26313272867944,0.0,0.0,56.35343190237108,0.0800735000011627,100,mac,phase-27,without +4,230.50408894930908,0.0,0.0,56.412402306403166,0.0801572919990576,100,mac,phase-27,without +5,231.4912756090507,0.0,0.0,56.654001365468474,0.080500583997491,100,mac,phase-27,without +6,231.25858687418443,0.0,0.0,56.597054303994305,0.0804196669996599,100,mac,phase-27,without +7,215.66143327236227,0.0,0.0,52.7798859933087,0.0749957910011289,100,mac,phase-27,without +8,233.34570857816615,0.0,0.0,57.10784589022658,0.081145459000254,100,mac,phase-27,without +9,234.07839758501584,0.0,0.0,57.28716048376931,0.0814002499973867,100,mac,phase-27,without +10,232.5652090520479,0.0,0.0,56.91683039254912,0.0808740419997775,100,mac,phase-27,without +11,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632,100,mac,phase-27,without +12,229.16762905823128,0.0,0.0,56.08532388716335,0.079692540999531,100,mac,phase-27,without +13,231.3745703445235,0.0,0.0,56.62543951060597,0.0804599999974016,100,mac,phase-27,without +14,230.06686980122603,0.0,0.0,56.305399508361056,0.0800052499980665,100,mac,phase-27,without +15,232.03033867738873,0.0,0.0,56.78592892830791,0.0806880419986555,100,mac,phase-27,without +16,235.10392526784705,0.0,0.0,57.53814293047527,0.0817568750026112,100,mac,phase-27,without +17,233.6283588093202,0.0,0.0,57.177020275047866,0.0812437499989755,100,mac,phase-27,without +18,228.53918224908057,0.0,0.0,55.93152100068275,0.0794739999982994,100,mac,phase-27,without +19,230.63636872152335,0.0,0.0,56.44477578732998,0.0802032920000783,100,mac,phase-27,without +20,230.2772722892251,0.0,0.0,56.35689234674573,0.0800784170023689,100,mac,phase-27,without +21,230.43650836221164,0.0,0.0,56.3958629760823,0.0801337909979338,100,mac,phase-27,without +22,228.8680844073801,0.0,0.0,56.01201484770305,0.0795883750033681,100,mac,phase-27,without +23,222.30861533511248,0.0,0.0,54.40668363684307,0.0773073340023984,100,mac,phase-27,without +24,229.35538580934664,0.0,0.0,56.131274522694135,0.0797578329984389,100,mac,phase-27,without +25,231.67831058690103,0.0,0.0,56.69977535786903,0.0805656250013271,100,mac,phase-27,without +26,217.02748644269255,0.0,0.0,53.114206921704714,0.0754708329986897,100,mac,phase-27,without +27,229.4719703058166,0.0,0.0,56.15980682139448,0.079798375001701,100,mac,phase-27,without +28,230.24671853567145,0.0,0.0,56.349414775977685,0.0800677920015004,100,mac,phase-27,without +29,232.43436710389943,0.0,0.0,56.88480879739587,0.080828541998926,100,mac,phase-27,without +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942,100,mac,phase-27,with +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453,100,mac,phase-27,with +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553,100,mac,phase-27,with +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522,100,mac,phase-27,with +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363,100,mac,phase-27,with +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014,100,mac,phase-27,with +6,1702.066685738554,2.7700300963980387,0.0,474.5094928986423,0.5151506249967497,100,mac,phase-27,with +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673,100,mac,phase-27,with +8,1700.0186079028213,2.766696950116356,0.0,473.9385209247512,0.5145307500024501,100,mac,phase-27,with +9,1682.723315235478,2.738549709108719,0.0,469.1168646278044,0.5092961250011285,100,mac,phase-27,with +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456,100,mac,phase-27,with +11,1697.882008804488,2.763219739819069,0.0,473.34287061141595,0.5138840830004483,100,mac,phase-27,with +12,1695.3888533669428,2.7591622515579655,0.0,472.6478179837488,0.5131295000028331,100,mac,phase-27,with +13,1721.269774292272,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763,100,mac,phase-27,with +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644,100,mac,phase-27,with +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555,100,mac,phase-27,with +16,1693.919391580334,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454,100,mac,phase-27,with +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678,100,mac,phase-27,with +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103,100,mac,phase-27,with +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901,100,mac,phase-27,with +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161,100,mac,phase-27,with +21,1699.9142571169934,2.7665271243276557,0.0,473.9094295625374,0.5144991670022137,100,mac,phase-27,with +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584,100,mac,phase-27,with +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284,100,mac,phase-27,with +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527,100,mac,phase-27,with +25,1750.7250904090572,2.8492192647833674,0.0,488.07469285168577,0.5298776670024381,100,mac,phase-27,with +26,1694.6464141966617,2.75795396820241,0.0,472.44083758917907,0.5129047920017911,100,mac,phase-27,with +27,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241,100,mac,phase-27,with +28,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143,100,mac,phase-27,with +29,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524,100,mac,phase-27,with +0,211.7681052623423,0.0,0.0,51.544369107950445,0.0730265000020153,100,mac,phase-5,without +1,231.74900516849095,0.0,0.0,56.40772130442817,0.0799167500008479,100,mac,phase-5,without +2,231.44620836593853,0.0,0.0,56.3340205451182,0.0798123329986992,100,mac,phase-5,without +3,233.38067208769257,0.0,0.0,56.80486912723355,0.0804794169998786,100,mac,phase-5,without +4,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277,100,mac,phase-5,without +5,230.28251252118744,0.0,0.0,56.05077690898644,0.0794110419992648,100,mac,phase-5,without +6,231.06523660858215,0.0,0.0,56.24129199727312,0.0796809580024273,100,mac,phase-5,without +7,232.49512115383507,0.0,0.0,56.58932597855168,0.0801740419992711,100,mac,phase-5,without +8,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101,100,mac,phase-5,without +9,224.10794249743364,0.0,0.0,54.54788620694715,0.0772817920005763,100,mac,phase-5,without +10,233.06518831792772,0.0,0.0,56.72808035936796,0.0803706250007962,100,mac,phase-5,without +11,230.32105483741717,0.0,0.0,56.06015811099304,0.0794243330019526,100,mac,phase-5,without +12,231.99791348728908,0.0,0.0,56.46830560366566,0.0800025839998852,100,mac,phase-5,without +13,231.9559841150949,0.0,0.0,56.4580999920408,0.0799881249986356,100,mac,phase-5,without +14,231.27282163561787,0.0,0.0,56.291818204898,0.0797525420020974,100,mac,phase-5,without +15,232.3729636964068,0.0,0.0,56.55959284632588,0.0801319169986527,100,mac,phase-5,without +16,230.21448714015344,0.0,0.0,56.03421952729583,0.0793875840026885,100,mac,phase-5,without +17,232.06509211751913,0.0,0.0,56.48465688616146,0.0800257500013685,100,mac,phase-5,without +18,233.97236945534013,0.0,0.0,56.94888830085012,0.0806834590002836,100,mac,phase-5,without +19,214.36216993645792,0.0,0.0,52.17576460014163,0.0739210419997107,100,mac,phase-5,without +20,232.36365799337193,0.0,0.0,56.557327837667266,0.0801287080030306,100,mac,phase-5,without +21,232.1677971782116,0.0,0.0,56.509655303893105,0.0800611670019861,100,mac,phase-5,without +22,231.68605456379217,0.0,0.0,56.392399123592,0.0798950419994071,100,mac,phase-5,without +23,230.5801127299852,0.0,0.0,56.123212817075014,0.0795136669985367,100,mac,phase-5,without +24,231.682548612676,0.0,0.0,56.39154577488691,0.079893833000824,100,mac,phase-5,without +25,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836,100,mac,phase-5,without +26,224.88571357316405,0.0,0.0,54.73719573190735,0.0775499999981548,100,mac,phase-5,without +27,230.4003201673142,0.0,0.0,56.07945129688906,0.0794516670030134,100,mac,phase-5,without +28,232.91258211809028,0.0,0.0,56.69093600147309,0.0803180000002612,100,mac,phase-5,without +29,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247,100,mac,phase-5,without +0,1713.159064065179,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777,100,mac,phase-5,with +1,1728.2893886349443,2.1460685837030025,0.0,476.2595639739648,0.5165718749994994,100,mac,phase-5,with +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307,100,mac,phase-5,with +3,1714.3446896304945,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393,100,mac,phase-5,with +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168,100,mac,phase-5,with +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578,100,mac,phase-5,with +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113,100,mac,phase-5,with +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508,100,mac,phase-5,with +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844,100,mac,phase-5,with +9,1748.2277475268788,2.1708266397958953,0.0,481.7539182034547,0.5225312910006323,100,mac,phase-5,with +10,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575,100,mac,phase-5,with +11,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702,100,mac,phase-5,with +12,1729.394162260291,2.147440414129695,0.0,476.5640031544385,0.5169020829998772,100,mac,phase-5,with +13,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946,100,mac,phase-5,with +14,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174,100,mac,phase-5,with +15,1724.1615030085018,2.1409428647590096,0.0,475.1220548151909,0.5153380830015521,100,mac,phase-5,with +16,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531,100,mac,phase-5,with +17,1717.9330827404174,2.133208849176126,0.0,473.4057075757582,0.5134764579997864,100,mac,phase-5,with +18,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229,100,mac,phase-5,with +19,1715.88106060893,2.130660791970888,0.0,472.8402379431644,0.5128631249972386,100,mac,phase-5,with +20,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654,100,mac,phase-5,with +21,1716.739788843288,2.131727100482537,0.0,473.076875127398,0.5131197919981787,100,mac,phase-5,with +22,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105,100,mac,phase-5,with +23,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427,100,mac,phase-5,with +24,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432,100,mac,phase-5,with +25,1720.854010688215,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171,100,mac,phase-5,with +26,1712.4761217310593,2.1264327776098213,0.0,471.9019490686296,0.511845416000142,100,mac,phase-5,with +27,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266,100,mac,phase-5,with +28,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126,100,mac,phase-5,with +29,1710.078379417596,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527,100,mac,phase-5,with +0,227.44231616412424,0.0,0.0,55.812647893416646,0.0788156249982421,100,mac,phase-2,without +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113,100,mac,phase-2,without +2,232.46123844002852,0.0,0.0,57.04425398375972,0.0805548329990415,100,mac,phase-2,without +3,231.72020051948184,0.0,0.0,56.86240880546275,0.0802980410007876,100,mac,phase-2,without +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412,100,mac,phase-2,without +5,228.2878413970284,0.0,0.0,56.02013347879481,0.0791086250028456,100,mac,phase-2,without +6,233.16163633716695,0.0,0.0,57.216126403446424,0.0807975420029833,100,mac,phase-2,without +7,233.40656160322865,0.0,0.0,57.2762292368393,0.0808824159976211,100,mac,phase-2,without +8,229.68887379156396,0.0,0.0,56.36393637810691,0.0795941249998577,100,mac,phase-2,without +9,231.72140676401816,0.0,0.0,56.86270480887458,0.0802984590009145,100,mac,phase-2,without +10,230.73183059687105,0.0,0.0,56.619870198709755,0.0799555410012544,100,mac,phase-2,without +11,230.14337967589475,0.0,0.0,56.47546873196024,0.0797516250022454,100,mac,phase-2,without +12,228.8957740192038,0.0,0.0,56.16931560970449,0.079319291999127,100,mac,phase-2,without +13,231.420685462694,0.0,0.0,56.78891004461117,0.0801942499965662,100,mac,phase-2,without +14,226.5801978801324,0.0,0.0,55.60109049706921,0.0785168750007869,100,mac,phase-2,without +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736,100,mac,phase-2,without +16,231.71876053022535,0.0,0.0,56.86205544284009,0.0802975420010625,100,mac,phase-2,without +17,230.5897102165952,0.0,0.0,56.584994917466624,0.0799062920013966,100,mac,phase-2,without +18,230.15408003990945,0.0,0.0,56.47809452147538,0.0797553330012306,100,mac,phase-2,without +19,231.50172891975,0.0,0.0,56.8087975044692,0.0802223339996999,100,mac,phase-2,without +20,231.60729837620207,0.0,0.0,56.834703461639485,0.080258917001629,100,mac,phase-2,without +21,232.95806964037587,0.0,0.0,57.166172654458805,0.0807270000004791,100,mac,phase-2,without +22,230.15576242448788,0.0,0.0,56.478507366102015,0.0797559159982483,100,mac,phase-2,without +23,231.49847956893817,0.0,0.0,56.808000138016894,0.0802212080016033,100,mac,phase-2,without +24,212.7223396474506,0.0,0.0,52.20047545259599,0.0737147090003418,100,mac,phase-2,without +25,232.94869093924265,0.0,0.0,57.163871191156474,0.0807237499975599,100,mac,phase-2,without +26,232.1919025824176,0.0,0.0,56.97816097327938,0.0804614999979094,100,mac,phase-2,without +27,231.04902374637277,0.0,0.0,56.69770703165235,0.0800654579979891,100,mac,phase-2,without +28,233.78796274238013,0.0,0.0,57.36982223151427,0.0810145830000692,100,mac,phase-2,without +29,229.2454318904766,0.0,0.0,56.2551190432152,0.0794404590014892,100,mac,phase-2,without +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402,100,mac,phase-2,with +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579,100,mac,phase-2,with +2,1726.3235530469292,2.147168598317076,0.0,474.0210175878432,0.5159650419991522,100,mac,phase-2,with +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943,100,mac,phase-2,with +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624,100,mac,phase-2,with +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454,100,mac,phase-2,with +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892,100,mac,phase-2,with +7,1703.9014336143955,2.119280390067656,0.0,467.8642598635299,0.5092635000000882,100,mac,phase-2,with +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641,100,mac,phase-2,with +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499,100,mac,phase-2,with +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533,100,mac,phase-2,with +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063,100,mac,phase-2,with +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957,100,mac,phase-2,with +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029,100,mac,phase-2,with +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525,100,mac,phase-2,with +15,1729.2027639938808,2.1507497064600507,0.0,474.8116031652197,0.516825582999445,100,mac,phase-2,with +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779,100,mac,phase-2,with +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395,100,mac,phase-2,with +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429,100,mac,phase-2,with +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318,100,mac,phase-2,with +20,1713.5996964840365,2.131342906074672,0.0,470.52724874889134,0.5121621250000317,100,mac,phase-2,with +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474,100,mac,phase-2,with +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845,100,mac,phase-2,with +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164,100,mac,phase-2,with +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658,100,mac,phase-2,with +25,1748.3943619242975,2.1746198531396734,0.0,480.08131101578823,0.5225615840026876,100,mac,phase-2,with +26,1699.874186562006,2.114271376320903,0.0,466.7584418130943,0.508059832998697,100,mac,phase-2,with +27,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921,100,mac,phase-2,with +28,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897,100,mac,phase-2,with +29,1702.7397365525153,2.1178354932245216,0.0,467.5452763088947,0.5089162910007872,100,mac,phase-2,with +0,233.03169757350443,0.0,0.0,57.14590514588489,0.080589625002176,100,mac,phase-3,without +1,230.56252454563105,0.0,0.0,56.540394697697366,0.0797357080009533,100,mac,phase-3,without +2,229.26155447947497,0.0,0.0,56.2213603655772,0.0792857919987,100,mac,phase-3,without +3,228.48962291036645,0.0,0.0,56.03206110420322,0.0790188339997257,100,mac,phase-3,without +4,230.6690331650355,0.0,0.0,56.56651359707923,0.0797725420015922,100,mac,phase-3,without +5,220.39776413510504,0.0,0.0,54.04771048220629,0.0762204169986944,100,mac,phase-3,without +6,220.29306275915428,0.0,0.0,54.022034769584245,0.0761842079991765,100,mac,phase-3,without +7,231.44915659141645,0.0,0.0,56.757821731510106,0.0800423330001649,100,mac,phase-3,without +8,233.91712382953764,0.0,0.0,57.36303648624681,0.0808958330017048,100,mac,phase-3,without +9,232.205545892069,0.0,0.0,56.94330959294072,0.080303915998229,100,mac,phase-3,without +10,230.29842747184577,0.0,0.0,56.47563069140557,0.0796443750004982,100,mac,phase-3,without +11,227.92781120901137,0.0,0.0,55.89428912498413,0.0788245420008024,100,mac,phase-3,without +12,229.44806166938773,0.0,0.0,56.26709715715861,0.0793502919987076,100,mac,phase-3,without +13,229.2592643478582,0.0,0.0,56.22079876110234,0.0792849999997997,100,mac,phase-3,without +14,229.88360367044356,0.0,0.0,56.37390426597064,0.0795009159992332,100,mac,phase-3,without +15,229.66167746902968,0.0,0.0,56.31948173981888,0.0794241670009796,100,mac,phase-3,without +16,233.4874835436179,0.0,0.0,57.25767664343713,0.0807472499982395,100,mac,phase-3,without +17,213.5309742305619,0.0,0.0,52.363781091364665,0.0738456670005689,100,mac,phase-3,without +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171,100,mac,phase-3,without +19,231.8804855552513,0.0,0.0,56.86359568548564,0.0801915000010922,100,mac,phase-3,without +20,230.5933690691165,0.0,0.0,56.54795863956332,0.0797463749986491,100,mac,phase-3,without +21,232.7323000327177,0.0,0.0,57.07248447545736,0.0804860839998582,100,mac,phase-3,without +22,231.33204741758416,0.0,0.0,56.729103279002494,0.0800018329973681,100,mac,phase-3,without +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533,100,mac,phase-3,without +24,229.07625018644575,0.0,0.0,56.17591855803412,0.0792217079979309,100,mac,phase-3,without +25,230.23830565490223,0.0,0.0,56.460887136412715,0.0796235830021032,100,mac,phase-3,without +26,212.0825304729018,0.0,0.0,52.008582075753125,0.073344749998796,100,mac,phase-3,without +27,231.3146979161939,0.0,0.0,56.724848694878965,0.0799958329989749,100,mac,phase-3,without +28,227.2761174880526,0.0,0.0,55.734475554770874,0.0785991659977298,100,mac,phase-3,without +29,231.517470276152,0.0,0.0,56.77457416213956,0.0800659580017963,100,mac,phase-3,without +0,1715.2126246543712,1.878141390259372,0.0,473.25809210624993,0.5145006249986182,100,mac,phase-3,with +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795,100,mac,phase-3,with +2,1708.659320247143,1.870965584721755,0.0,471.44991725015507,0.5125348750007106,100,mac,phase-3,with +3,1714.9127245161242,1.877813002481384,0.0,473.1753442502645,0.5144106660009129,100,mac,phase-3,with +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142,100,mac,phase-3,with +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918,100,mac,phase-3,with +6,1705.8313331065865,1.8678689658982608,0.0,470.6696246033992,0.5116865829986637,100,mac,phase-3,with +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889,100,mac,phase-3,with +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202,100,mac,phase-3,with +9,1701.5545581455729,1.8631859382924425,0.0,469.4895852722259,0.5104037080018315,100,mac,phase-3,with +10,1696.2627985811607,1.8573915122706384,0.0,468.02949338662467,0.5088163750006061,100,mac,phase-3,with +11,1708.47193391554,1.8707603984840295,0.0,471.3982139822882,0.512478666001698,100,mac,phase-3,with +12,1702.070178101452,1.8637505372038896,0.0,469.6318541157872,0.5105583750009828,100,mac,phase-3,with +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232,100,mac,phase-3,with +14,1713.0868103835694,1.8758136440006232,0.0,472.6715416159428,0.5138629590001074,100,mac,phase-3,with +15,1700.5874961044965,1.8621270146230455,0.0,469.2227554168893,0.5101136250013951,100,mac,phase-3,with +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033,100,mac,phase-3,with +17,1700.0421524930027,1.861529868593488,0.0,469.07228528076257,0.5099500420001277,100,mac,phase-3,with +18,1701.0918613432752,1.8626792897271016,0.0,469.36191888105583,0.5102649159998691,100,mac,phase-3,with +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436,100,mac,phase-3,with +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308,100,mac,phase-3,with +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339,100,mac,phase-3,with +22,1703.169756399106,1.8649545649045784,0.0,469.93524759586614,0.5108882079985051,100,mac,phase-3,with +23,1698.6667036618285,1.8600237653017555,0.0,468.69277414594774,0.5095374580014322,100,mac,phase-3,with +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047,100,mac,phase-3,with +25,1725.2339947819305,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259,100,mac,phase-3,with +26,1695.9577611438835,1.8570574991994344,0.0,467.9453280572003,0.5087248750023718,100,mac,phase-3,with +27,1697.33251321659,1.8585628395473195,0.0,468.32464694378984,0.5091372499991849,100,mac,phase-3,with +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549,100,mac,phase-3,with +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464,100,mac,phase-3,with +0,219.4740765737124,0.0,0.0,54.50948419192974,0.0763789999982691,100,mac,phase-4,without +1,224.61151246000796,0.0,0.0,55.78543889511322,0.0781668750023527,100,mac,phase-4,without +2,228.51035754085143,0.0,0.0,56.75377209244936,0.0795237089987495,100,mac,phase-4,without +3,229.6376006964406,0.0,0.0,57.03373883808645,0.079915999998775,100,mac,phase-4,without +4,230.7343159231135,0.0,0.0,57.30612354175918,0.0802976669983763,100,mac,phase-4,without +5,226.04921290785495,0.0,0.0,56.14251209053602,0.0786672079993877,100,mac,phase-4,without +6,230.46205301041525,0.0,0.0,57.23850320514603,0.0802029169972229,100,mac,phase-4,without +7,231.10774857892207,0.0,0.0,57.39887081180731,0.0804276250019029,100,mac,phase-4,without +8,236.0373364930903,0.0,0.0,58.62320353790871,0.0821431669974117,100,mac,phase-4,without +9,230.05844876046567,0.0,0.0,57.138262393903645,0.0800624590010556,100,mac,phase-4,without +10,229.0068702685671,0.0,0.0,56.87708803529338,0.079696500000864,100,mac,phase-4,without +11,231.19179807051853,0.0,0.0,57.419745689173425,0.0804568749990721,100,mac,phase-4,without +12,231.6291686756857,0.0,0.0,57.52837285125362,0.0806090839978423,100,mac,phase-4,without +13,228.26024347869043,0.0,0.0,56.69165273543744,0.0794366670015733,100,mac,phase-4,without +14,229.64203161645344,0.0,0.0,57.03483931960193,0.0799175419997482,100,mac,phase-4,without +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065,100,mac,phase-4,without +16,230.78484044554267,0.0,0.0,57.318672019919575,0.0803152499975112,100,mac,phase-4,without +17,228.86259822421837,0.0,0.0,56.84125603707502,0.0796462920006888,100,mac,phase-4,without +18,215.11787003326216,0.0,0.0,53.42755882169722,0.0748630000016419,100,mac,phase-4,without +19,233.46328968448563,0.0,0.0,57.98390268737843,0.0812473750011122,100,mac,phase-4,without +20,230.21050220418272,0.0,0.0,57.17602701246824,0.0801153749998775,100,mac,phase-4,without +21,228.4539624795744,0.0,0.0,56.73976558311954,0.079504082998028,100,mac,phase-4,without +22,229.74487946877807,0.0,0.0,57.06038303514221,0.0799533339995832,100,mac,phase-4,without +23,229.0921151390923,0.0,0.0,56.89825980188594,0.0797261660009098,100,mac,phase-4,without +24,229.87753688321,0.0,0.0,57.093330376112064,0.0799995000015769,100,mac,phase-4,without +25,230.25444357048204,0.0,0.0,57.18694047090059,0.0801306670000485,100,mac,phase-4,without +26,230.96970050207184,0.0,0.0,57.36458462375144,0.0803795829997398,100,mac,phase-4,without +27,231.0153171132757,0.0,0.0,57.37591415289732,0.0803954580005665,100,mac,phase-4,without +28,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631,100,mac,phase-4,without +29,229.60838883425131,0.0,0.0,57.0264836598664,0.0799058340016927,100,mac,phase-4,without +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695,100,mac,phase-4,with +1,1781.4314907183507,1.865233779826259,0.0,474.9351511882611,0.512870540998847,100,mac,phase-4,with +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603,100,mac,phase-4,with +3,1776.1253612297892,1.8596780388315792,0.0,473.5205206374909,0.511342916997819,100,mac,phase-4,with +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071,100,mac,phase-4,with +5,1779.3196350329554,1.863022578001748,0.0,474.37212392369514,0.5122625419971882,100,mac,phase-4,with +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342,100,mac,phase-4,with +7,1775.9211500186464,1.8594642210949857,0.0,473.4660772963107,0.5112841250011115,100,mac,phase-4,with +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882,100,mac,phase-4,with +9,1828.1563779527191,1.9141567041611,0.0,487.39215079702007,0.5263225419985247,100,mac,phase-4,with +10,1797.5348509506605,1.8820946760383848,0.0,479.2283568862738,0.5175066660012817,100,mac,phase-4,with +11,1782.1034613760824,1.8659373613989343,0.0,475.1143006462038,0.5130639999988489,100,mac,phase-4,with +12,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154,100,mac,phase-4,with +13,1779.8063525884374,1.863532191776092,0.0,474.5018843309874,0.5124026670018793,100,mac,phase-4,with +14,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311,100,mac,phase-4,with +15,1800.139363767342,1.8848217106231984,0.0,479.92272806743193,0.518256499999552,100,mac,phase-4,with +16,1768.3179047798128,1.8515033031872992,0.0,471.4390285740661,0.5090951659985876,100,mac,phase-4,with +17,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909,100,mac,phase-4,with +18,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675,100,mac,phase-4,with +19,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749,100,mac,phase-4,with +20,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233,100,mac,phase-4,with +21,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352,100,mac,phase-4,with +22,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055,100,mac,phase-4,with +23,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763,100,mac,phase-4,with +24,1776.934675683587,1.8605254251417416,0.0,473.7362863767159,0.5115759170003003,100,mac,phase-4,with +25,1775.9308478967102,1.8594743751816576,0.0,473.46866278062953,0.5112869170006888,100,mac,phase-4,with +26,1774.2983217244705,1.857765051540093,0.0,473.03342624839615,0.5108169160012039,100,mac,phase-4,with +27,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252,100,mac,phase-4,with +28,1781.2621633934934,1.8650564869874289,0.0,474.890007999174,0.5128217920027964,100,mac,phase-4,with +29,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208,100,mac,phase-4,with +0,232.09826942958523,0.0,0.0,56.551862602132445,0.080378708000353,100,mac,phase-22,without +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795,100,mac,phase-22,without +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539,100,mac,phase-22,without +3,229.08763101285805,0.0,0.0,55.81830603358978,0.0793360839998058,100,mac,phase-22,without +4,230.24289431199097,0.0,0.0,56.09979150749018,0.0797361669974634,100,mac,phase-22,without +5,230.65509338121083,0.0,0.0,56.20022579846761,0.0798789170003146,100,mac,phase-22,without +6,229.2921654886054,0.0,0.0,55.86814184493939,0.0794069170005968,100,mac,phase-22,without +7,231.28662566367748,0.0,0.0,56.354101684550855,0.0800976250029634,100,mac,phase-22,without +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006,100,mac,phase-22,without +9,232.53862219376708,0.0,0.0,56.65915667665391,0.080531208001048,100,mac,phase-22,without +10,229.66092988839787,0.0,0.0,55.95799306925431,0.0795346250015427,100,mac,phase-22,without +11,230.27249179749467,0.0,0.0,56.107003077562155,0.0797464169991144,100,mac,phase-22,without +12,231.61833400897208,0.0,0.0,56.43492402249065,0.0802125000009255,100,mac,phase-22,without +13,230.59806408551117,0.0,0.0,56.18633033555602,0.0798591669990855,100,mac,phase-22,without +14,230.8875418936153,0.0,0.0,56.25686299945956,0.0799594170021009,100,mac,phase-22,without +15,231.22706975553947,0.0,0.0,56.33959060033449,0.0800770000023476,100,mac,phase-22,without +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293,100,mac,phase-22,without +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725,100,mac,phase-22,without +18,232.0170568313989,0.0,0.0,56.532074760949975,0.0803505830008362,100,mac,phase-22,without +19,230.92965116248496,0.0,0.0,56.26712312588466,0.0799740000002202,100,mac,phase-22,without +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622,100,mac,phase-22,without +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255,100,mac,phase-22,without +22,230.93169844780863,0.0,0.0,56.267621956826474,0.079974709002272,100,mac,phase-22,without +23,230.3377015469545,0.0,0.0,56.1228917474813,0.079768999999942,100,mac,phase-22,without +24,231.03432517839207,0.0,0.0,56.2926274546336,0.0800102499997592,100,mac,phase-22,without +25,231.1403216955104,0.0,0.0,56.318454017180194,0.0800469579990021,100,mac,phase-22,without +26,232.6395683748504,0.0,0.0,56.68375270047117,0.0805661670019617,100,mac,phase-22,without +27,211.57097564534644,0.0,0.0,51.55028848211487,0.0732698339998023,100,mac,phase-22,without +28,232.01200359601728,0.0,0.0,56.53084351578086,0.0803488329984247,100,mac,phase-22,without +29,231.3346313210155,0.0,0.0,56.365798494460634,0.0801142499985871,100,mac,phase-22,without +0,1733.253563906018,2.0984102566650487,0.0,473.074934530376,0.5129103750005015,100,mac,phase-22,with +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176,100,mac,phase-22,with +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007,100,mac,phase-22,with +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304,100,mac,phase-22,with +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974,100,mac,phase-22,with +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383,100,mac,phase-22,with +6,1723.4772484529751,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127,100,mac,phase-22,with +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419,100,mac,phase-22,with +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738,0.5151641660013411,100,mac,phase-22,with +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893,100,mac,phase-22,with +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816,100,mac,phase-22,with +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324,100,mac,phase-22,with +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498,100,mac,phase-22,with +13,1732.2086720593063,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571,100,mac,phase-22,with +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222,100,mac,phase-22,with +15,1732.4094537173592,2.097388311858747,0.0,472.8445427512664,0.5126605830009794,100,mac,phase-22,with +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996,100,mac,phase-22,with +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384,100,mac,phase-22,with +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215,100,mac,phase-22,with +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757,100,mac,phase-22,with +20,1780.438908568486,2.155536469047305,0.0,485.95372174410915,0.5268736250000075,100,mac,phase-22,with +21,1738.3252572752317,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475,100,mac,phase-22,with +22,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968,100,mac,phase-22,with +23,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178,100,mac,phase-22,with +24,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871,100,mac,phase-22,with +25,1726.5571530732716,2.090303065964912,0.0,471.2472134269785,0.5109287500017672,100,mac,phase-22,with +26,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585,100,mac,phase-22,with +27,1724.678430716105,2.0880285399833696,0.0,470.7344341806953,0.5103727919995436,100,mac,phase-22,with +28,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824,100,mac,phase-22,with +29,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853,100,mac,phase-22,with +0,231.66268036286448,0.0672070439114779,0.0,59.881476125126845,0.0804943750008533,100,mac,phase-25,without +1,231.99748654195568,0.0673041736414144,0.0,59.968018714500296,0.0806107079988578,100,mac,phase-25,without +2,232.69804026717333,0.0675074094189652,0.0,60.14910179229807,0.0808541249971313,100,mac,phase-25,without +3,232.398368697592,0.0674204724971256,0.0,60.071640994938925,0.0807500000009895,100,mac,phase-25,without +4,218.63578046305977,0.0634278446368029,0.0,56.51420957139142,0.0759679999973741,100,mac,phase-25,without +5,236.23653928270616,0.0685339539549481,0.0,61.06375297385877,0.0820836250022694,100,mac,phase-25,without +6,224.8190391019204,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951,100,mac,phase-25,without +7,232.2963206294109,0.0673908676035424,0.0,60.045263034756346,0.0807145420003507,100,mac,phase-25,without +8,235.48322320982325,0.0683154114330789,0.0,60.869031586873376,0.0818218750027881,100,mac,phase-25,without +9,233.22039698135623,0.0676589489356995,0.0,60.284123501708265,0.0810356250003678,100,mac,phase-25,without +10,222.17847558987393,0.0644556064954667,0.0,57.42994538746088,0.0771989579989167,100,mac,phase-25,without +11,235.83937549829105,0.06841873382602,0.0,60.96109183898384,0.0819456249992072,100,mac,phase-25,without +12,229.9330033409012,0.0667052519120688,0.0,59.434379453653314,0.0798933750011201,100,mac,phase-25,without +13,228.71740877714217,0.0663525990070038,0.0,59.1201657152404,0.0794710000009217,100,mac,phase-25,without +14,231.33051329738623,0.0671106798077708,0.0,59.79561570872386,0.0803789589990628,100,mac,phase-25,without +15,229.53188230999976,0.0665888837568899,0.0,59.330695427388974,0.0797539999985019,100,mac,phase-25,without +16,229.48139935482175,0.0665742382810623,0.0,59.31764630842652,0.0797364590034703,100,mac,phase-25,without +17,230.42646205313747,0.0668484079063352,0.0,59.56193144454467,0.0800648339973122,100,mac,phase-25,without +18,231.01585022398584,0.0670193937406399,0.0,59.71427982291018,0.0802696249993459,100,mac,phase-25,without +19,230.07786450510628,0.0667472771990444,0.0,59.471823984348624,0.0799437089990533,100,mac,phase-25,without +20,228.97666749951748,0.0664278118652502,0.0,59.187180371937934,0.0795610829991346,100,mac,phase-25,without +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.0809936670011666,100,mac,phase-25,without +22,229.52001057054088,0.0665854396781377,0.0,59.32762675322075,0.0797498749998339,100,mac,phase-25,without +23,211.52748423357997,0.0613656757277574,0.0,54.6768170734319,0.0734981249988777,100,mac,phase-25,without +24,231.32547392448515,0.0671092178487047,0.0,59.794313103195904,0.0803772079998452,100,mac,phase-25,without +25,230.29359350566224,0.0668098617654952,0.0,59.52758683305629,0.0800186669985123,100,mac,phase-25,without +26,231.8720547369228,0.0672677849541406,0.0,59.93559639413931,0.0805671249981969,100,mac,phase-25,without +27,231.05506295725297,0.067030769642371,0.0,59.724415751352595,0.08028325000123,100,mac,phase-25,without +28,229.7340616961576,0.0666475374807535,0.0,59.38295589535144,0.0798242499986372,100,mac,phase-25,without +29,228.61583845949133,0.066323132712356,0.0,59.09391124670925,0.0794357080012559,100,mac,phase-25,without +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037,100,mac,phase-25,with +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928,100,mac,phase-25,with +2,1699.015023621691,1.6596805935544503,0.0,467.7311848755153,0.5085318749988801,100,mac,phase-25,with +3,1726.676996415299,1.686702155333886,0.0,475.34640141619576,0.5168113750005432,100,mac,phase-25,with +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602,100,mac,phase-25,with +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556,100,mac,phase-25,with +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734,100,mac,phase-25,with +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054,100,mac,phase-25,with +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878,100,mac,phase-25,with +9,1707.556617845926,1.6680244386499228,0.0,470.0826473003213,0.5110884579989943,100,mac,phase-25,with +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489,100,mac,phase-25,with +11,1706.9871143093417,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469,100,mac,phase-25,with +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288,100,mac,phase-25,with +13,1700.5875280107632,1.661216692400863,0.0,468.16408825241115,0.5090025409990631,100,mac,phase-25,with +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047,100,mac,phase-25,with +15,1701.9577670717792,1.662555208627312,0.0,468.54130889534906,0.5094126670010155,100,mac,phase-25,with +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634,100,mac,phase-25,with +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211,100,mac,phase-25,with +18,1700.088466524394,1.6607291848436008,0.0,468.0266988726236,0.5088531669971417,100,mac,phase-25,with +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262,100,mac,phase-25,with +20,1700.4806187224335,1.6611122582030222,0.0,468.1346566067757,0.508970541999588,100,mac,phase-25,with +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707,100,mac,phase-25,with +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749,100,mac,phase-25,with +23,1732.7583505809405,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043,100,mac,phase-25,with +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133,100,mac,phase-25,with +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451,100,mac,phase-25,with +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454,100,mac,phase-25,with +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582,100,mac,phase-25,with +28,1703.033989709958,1.663606515297409,0.0,468.83758814111593,0.5097347910013923,100,mac,phase-25,with +29,1702.9419746789297,1.663516630535244,0.0,468.8122568174425,0.5097072499993374,100,mac,phase-25,with +0,217.31809402608985,0.662843859774566,0.0,54.132248548256214,0.0751640829985262,100,mac,phase-13,without +1,229.9303272649387,0.7013125450346716,0.0,57.273857844498174,0.0795262920000823,100,mac,phase-13,without +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.0799910829991858,100,mac,phase-13,without +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.0798349590004363,100,mac,phase-13,without +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546,100,mac,phase-13,without +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.0802340410009492,100,mac,phase-13,without +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.074771250001504,100,mac,phase-13,without +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.0808146669987763,100,mac,phase-13,without +8,234.6474003152265,0.7157001316804293,0.0,58.44884408723506,0.0811577919994306,100,mac,phase-13,without +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.0792908749972411,100,mac,phase-13,without +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438,100,mac,phase-13,without +11,229.3134040808069,0.6994308621201081,0.0,57.120187073142155,0.0793129160010721,100,mac,phase-13,without +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.0796832499981974,100,mac,phase-13,without +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.0801722920004976,100,mac,phase-13,without +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.0801286669993714,100,mac,phase-13,without +15,242.73663270778175,0.7403731716577222,0.0,60.463809018713974,0.083955624999362,100,mac,phase-13,without +16,225.1590403972453,0.6867596003401816,0.0,56.08536736111483,0.0778760409993992,100,mac,phase-13,without +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.0797353329980978,100,mac,phase-13,without +18,230.14114558595097,0.7019555638787175,0.0,57.32637105009526,0.0795992079983989,100,mac,phase-13,without +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.0801895000004151,100,mac,phase-13,without +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758,100,mac,phase-13,without +21,231.5017183127908,0.7061054589061156,0.0,57.66527914399945,0.0800697910017333,100,mac,phase-13,without +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.0792922079999698,100,mac,phase-13,without +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.0770003340003313,100,mac,phase-13,without +24,234.9810967368232,0.7167179421166722,0.0,58.53196527286156,0.081273208001221,100,mac,phase-13,without +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.0736666250013513,100,mac,phase-13,without +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.080062208999152,100,mac,phase-13,without +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205,100,mac,phase-13,without +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416,100,mac,phase-13,without +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.0792593750011292,100,mac,phase-13,without +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339,100,mac,phase-13,with +1,1714.765226996136,0.8643137448752406,0.0,469.821006012376,0.5111364580006921,100,mac,phase-13,with +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871,100,mac,phase-13,with +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353,100,mac,phase-13,with +4,1715.331632824615,0.8645992372184634,0.0,469.97619306186704,0.511305291998724,100,mac,phase-13,with +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863,100,mac,phase-13,with +6,1714.1556313455656,0.8640064830464437,0.0,469.6539855728995,0.5109547499996552,100,mac,phase-13,with +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976,100,mac,phase-13,with +8,1706.9988473425583,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914,100,mac,phase-13,with +9,1714.837774733343,0.8643503119839272,0.0,469.8408830488016,0.5111580829980085,100,mac,phase-13,with +10,1711.608911909124,0.8627228294135127,0.0,468.9562210808144,0.5101956250000512,100,mac,phase-13,with +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073,100,mac,phase-13,with +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134,100,mac,phase-13,with +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773,100,mac,phase-13,with +14,1723.523935681039,0.8687285021752712,0.0,472.220766201658,0.5137472499991418,100,mac,phase-13,with +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045,100,mac,phase-13,with +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471,100,mac,phase-13,with +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021,100,mac,phase-13,with +18,1711.1150571741512,0.8624739058706925,0.0,468.8209119873269,0.5100484169997799,100,mac,phase-13,with +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914,100,mac,phase-13,with +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916,100,mac,phase-13,with +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258,100,mac,phase-13,with +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475,100,mac,phase-13,with +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923,100,mac,phase-13,with +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017,100,mac,phase-13,with +25,1734.4994753767116,0.8742606354766979,0.0,475.2279061996989,0.5170188340016466,100,mac,phase-13,with +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984,100,mac,phase-13,with +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638,100,mac,phase-13,with +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264,100,mac,phase-13,with +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878,100,mac,phase-13,with +0,228.51614058990577,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781,100,mac,phase-14,without +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.0799711670006217,100,mac,phase-14,without +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.0796211670021875,100,mac,phase-14,without +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.0794739169978129,100,mac,phase-14,without +4,229.52454429292905,0.803352641538617,0.0,56.83719938885715,0.0798063750007713,100,mac,phase-14,without +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.0803199590009171,100,mac,phase-14,without +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.0803647499997168,100,mac,phase-14,without +7,230.02868718081663,0.8051171784074085,0.0,56.962040372324154,0.0799816670005384,100,mac,phase-14,without +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.0793937079979514,100,mac,phase-14,without +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.0795502499968279,100,mac,phase-14,without +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844,100,mac,phase-14,without +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.0796230419982748,100,mac,phase-14,without +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532,100,mac,phase-14,without +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.0812716660002479,100,mac,phase-14,without +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.0813294170002336,100,mac,phase-14,without +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.0794567499979166,100,mac,phase-14,without +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.079882500001986,100,mac,phase-14,without +17,230.13929307294055,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928,100,mac,phase-14,without +18,233.4668454975468,0.8171509832202308,0.0,57.81343206283133,0.0811771249973389,100,mac,phase-14,without +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.0776905000020633,100,mac,phase-14,without +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.0788508750010805,100,mac,phase-14,without +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.0794899579996126,100,mac,phase-14,without +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.0768046659977699,100,mac,phase-14,without +23,231.4062996484221,0.8099389224970295,0.0,57.30317876666483,0.080460667002626,100,mac,phase-14,without +24,216.33236918131308,0.7571790666984853,0.0,53.570418968917835,0.0752194160013459,100,mac,phase-14,without +25,232.7924193674008,0.81479044258679,0.0,57.64642381301539,0.0809426250016258,100,mac,phase-14,without +26,221.0030247376175,0.7735267017212804,0.0,54.72701414678058,0.0768434169985994,100,mac,phase-14,without +27,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.0776983750001818,100,mac,phase-14,without +28,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.0798696249985368,100,mac,phase-14,without +29,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.079886333001923,100,mac,phase-14,without +0,1704.031251704515,1.508941838063347,0.0,474.7466342955749,0.5159355420000793,100,mac,phase-14,with +1,1703.1359158085138,1.508149006481623,0.0,474.4971918614849,0.5156644579983549,100,mac,phase-14,with +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892,100,mac,phase-14,with +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993,100,mac,phase-14,with +4,1699.9833977413236,1.505357410727686,0.0,473.6188938018352,0.5147099590030848,100,mac,phase-14,with +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734,100,mac,phase-14,with +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086,100,mac,phase-14,with +7,1715.943482298202,1.5194902731988489,0.0,478.0654063988733,0.5195422500000859,100,mac,phase-14,with +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202,100,mac,phase-14,with +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601,100,mac,phase-14,with +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236,100,mac,phase-14,with +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794,100,mac,phase-14,with +12,1698.53539461143,1.504075185121696,0.0,473.21547713228824,0.5142715419970045,100,mac,phase-14,with +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858,100,mac,phase-14,with +14,1697.3195518477353,1.5029985405397317,0.0,472.8767408213671,0.5139034170024388,100,mac,phase-14,with +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179,100,mac,phase-14,with +16,1690.2733048896132,1.4967589972063555,0.0,470.91364183216854,0.511770000000979,100,mac,phase-14,with +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182,100,mac,phase-14,with +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302,100,mac,phase-14,with +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851,100,mac,phase-14,with +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124,100,mac,phase-14,with +21,1690.6414282331857,1.497084975215344,0.0,471.016201757752,0.5118814580018807,100,mac,phase-14,with +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229,100,mac,phase-14,with +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126,100,mac,phase-14,with +24,1690.3525720618825,1.4968291893184444,0.0,470.9357258304563,0.511794000001828,100,mac,phase-14,with +25,1680.0227915903563,1.4876820343493653,0.0,468.0578276070737,0.5086664159971406,100,mac,phase-14,with +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605,100,mac,phase-14,with +27,1688.493922067436,1.4951833305725255,0.0,470.4179020943516,0.5112312499986729,100,mac,phase-14,with +28,1697.0385398110468,1.5027497007260635,0.0,472.7984502862135,0.5138183339986426,100,mac,phase-14,with +29,1689.9230695070262,1.4964488592194929,0.0,470.8160655295461,0.5116639580010087,100,mac,phase-14,with +0,241.9872343116464,0.0,0.0,57.15813260782817,0.0795744579991151,100,mac,phase-15,without +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178,100,mac,phase-15,without +2,242.65575313120232,0.0,0.0,57.31603881906987,0.0797942920034984,100,mac,phase-15,without +3,243.91080493823523,0.0,0.0,57.61248593463834,0.0802070000027015,100,mac,phase-15,without +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623,100,mac,phase-15,without +5,243.5832631360067,0.0,0.0,57.5351195486815,0.0800992920012504,100,mac,phase-15,without +6,244.43005848717624,0.0,0.0,57.73513522765531,0.0803777500004798,100,mac,phase-15,without +7,245.45361291465915,0.0,0.0,57.97690194672964,0.0807143329984683,100,mac,phase-15,without +8,244.62937278860463,0.0,0.0,57.782213881635094,0.0804432920012914,100,mac,phase-15,without +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736,100,mac,phase-15,without +10,196.29494977021145,0.0,0.0,46.36547378678283,0.0645491249997576,100,mac,phase-15,without +11,238.4692861580264,0.0,0.0,56.327182381697185,0.078417625001748,100,mac,phase-15,without +12,241.07885838454743,0.0,0.0,56.94357140650459,0.0792757500021252,100,mac,phase-15,without +13,242.28411354448383,0.0,0.0,57.22825640013194,0.0796720830003323,100,mac,phase-15,without +14,246.60273699779663,0.0,0.0,58.24832860654358,0.0810922079981537,100,mac,phase-15,without +15,241.59570345181905,0.0,0.0,57.065651808707806,0.0794457080010033,100,mac,phase-15,without +16,231.5265209579827,0.0,0.0,54.687279784777374,0.0761345840001013,100,mac,phase-15,without +17,248.01263127655392,0.0,0.0,58.58134999247521,0.0815558339963899,100,mac,phase-15,without +18,243.81577315917053,0.0,0.0,57.590039134726815,0.0801757499975792,100,mac,phase-15,without +19,244.07033057552212,0.0,0.0,57.65016638318072,0.0802594580018194,100,mac,phase-15,without +20,242.9038483716201,0.0,0.0,57.3746396815968,0.0798758750024717,100,mac,phase-15,without +21,243.88077489357264,0.0,0.0,57.60539274528096,0.0801971250002679,100,mac,phase-15,without +22,242.48862493919952,0.0,0.0,57.27656262360784,0.0797393339998961,100,mac,phase-15,without +23,243.75697815249185,0.0,0.0,57.57615157244288,0.0801564159992267,100,mac,phase-15,without +24,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107,100,mac,phase-15,without +25,247.45054804601023,0.0,0.0,58.44858419629822,0.0813709999965794,100,mac,phase-15,without +26,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359,100,mac,phase-15,without +27,243.3441601704367,0.0,0.0,57.478642689264305,0.0800206659987452,100,mac,phase-15,without +28,242.30248736229245,0.0,0.0,57.23259635268276,0.0796781249991909,100,mac,phase-15,without +29,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873,100,mac,phase-15,without +0,1662.7812272807057,2.154162194272734,0.0,465.3321749197454,0.5084949170013715,100,mac,phase-15,with +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157,100,mac,phase-15,with +2,1674.2807447957823,2.1690600205633683,0.0,468.55033459585,0.5120115829995484,100,mac,phase-15,with +3,1676.0206591942217,2.171314110131433,0.0,469.0372526208532,0.512543666001875,100,mac,phase-15,with +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335,100,mac,phase-15,with +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408,100,mac,phase-15,with +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195,100,mac,phase-15,with +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926,100,mac,phase-15,with +8,1676.5832374996228,2.1720429401764987,0.0,469.1946911233573,0.5127157080023608,100,mac,phase-15,with +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787,100,mac,phase-15,with +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531,100,mac,phase-15,with +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761,100,mac,phase-15,with +12,1674.719334293978,2.169628220937727,0.0,468.6730746182557,0.5121457079985703,100,mac,phase-15,with +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101,100,mac,phase-15,with +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844,100,mac,phase-15,with +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353,100,mac,phase-15,with +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996,100,mac,phase-15,with +17,1671.4410196159442,2.165381106870954,0.0,467.7556326396163,0.511143167001137,100,mac,phase-15,with +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402,100,mac,phase-15,with +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448,100,mac,phase-15,with +20,1673.6356021221727,2.1682242269336345,0.0,468.369790313464,0.5118142920000537,100,mac,phase-15,with +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956,100,mac,phase-15,with +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397,100,mac,phase-15,with +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555,100,mac,phase-15,with +24,1668.7934039933843,2.1619510744737207,0.0,467.0146928720848,0.5103335000021616,100,mac,phase-15,with +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461,100,mac,phase-15,with +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556,100,mac,phase-15,with +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112,100,mac,phase-15,with +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633,100,mac,phase-15,with +29,1665.1493914950968,2.157230192477653,0.0,465.9949097319805,0.5092191250005271,100,mac,phase-15,with +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.0795444169998518,100,mac,phase-12,without +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.0758981670005596,100,mac,phase-12,without +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.0805557909989147,100,mac,phase-12,without +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.0807310410018544,100,mac,phase-12,without +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.0746782089991029,100,mac,phase-12,without +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.0837202080001588,100,mac,phase-12,without +6,246.7651896921608,0.8144065666407948,0.0,66.67511152107028,0.0849927500021294,100,mac,phase-12,without +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164,100,mac,phase-12,without +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.0833640839991858,100,mac,phase-12,without +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.0810425419986131,100,mac,phase-12,without +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.0838655829975323,100,mac,phase-12,without +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.0809435420014779,100,mac,phase-12,without +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884,100,mac,phase-12,without +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.0840073340004892,100,mac,phase-12,without +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.0828537080014939,100,mac,phase-12,without +15,220.82130434738664,0.7287831826646424,0.0,59.66516230250094,0.0760569590020168,100,mac,phase-12,without +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.0821004999997967,100,mac,phase-12,without +17,192.67871910188725,0.6359033633725651,0.0,52.06113187958871,0.0663638750011159,100,mac,phase-12,without +18,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.0811298329972487,100,mac,phase-12,without +19,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.0812817919977533,100,mac,phase-12,without +20,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.080107333997148,100,mac,phase-12,without +21,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.0805614580021938,100,mac,phase-12,without +22,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.0783772499999031,100,mac,phase-12,without +23,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.0739163329999428,100,mac,phase-12,without +24,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.0811356670019449,100,mac,phase-12,without +25,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.0798642080007994,100,mac,phase-12,without +26,230.1259904385399,0.7594917176189435,0.0,62.17925670767264,0.0792617500010237,100,mac,phase-12,without +27,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.0804298330003803,100,mac,phase-12,without +28,238.17642466410143,0.786060807472282,0.0,64.35445654218726,0.0820345419997465,100,mac,phase-12,without +29,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.0799495419996674,100,mac,phase-12,without +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022,100,mac,phase-12,with +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477,100,mac,phase-12,with +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489,100,mac,phase-12,with +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622,100,mac,phase-12,with +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736,100,mac,phase-12,with +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334,100,mac,phase-12,with +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919,100,mac,phase-12,with +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642,100,mac,phase-12,with +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257,100,mac,phase-12,with +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721,100,mac,phase-12,with +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471,100,mac,phase-12,with +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143,100,mac,phase-12,with +12,1709.5432022817854,1.65666515528454,0.0,475.6995660174179,0.5180120000004536,100,mac,phase-12,with +13,1684.754023901845,1.632642733391156,0.0,468.8016991594605,0.5105005830009759,100,mac,phase-12,with +14,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683,100,mac,phase-12,with +15,1680.4535893809157,1.6284753160284955,0.0,467.6050550310395,0.5091974999995728,100,mac,phase-12,with +16,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277,100,mac,phase-12,with +17,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582,100,mac,phase-12,with +18,1693.226188437825,1.6408528445821813,0.0,471.159173944312,0.5130677500019374,100,mac,phase-12,with +19,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046,100,mac,phase-12,with +20,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097,100,mac,phase-12,with +21,1681.29431533333,1.629290037404738,0.0,467.8389964547891,0.5094522500003222,100,mac,phase-12,with +22,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562,100,mac,phase-12,with +23,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328,100,mac,phase-12,with +24,1686.877702600274,1.6347007243772926,0.0,469.392636571194,0.5111440830005449,100,mac,phase-12,with +25,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942,100,mac,phase-12,with +26,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622,100,mac,phase-12,with +27,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196,100,mac,phase-12,with +28,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728,100,mac,phase-12,with +29,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667,100,mac,phase-12,with +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463,100,mac,phase-24,without +1,222.34524711035735,0.0,0.0,53.789566230930056,0.0762266249985259,100,mac,phase-24,without +2,234.88450207831713,0.0,0.0,56.82305174209469,0.0805254580009204,100,mac,phase-24,without +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092,100,mac,phase-24,without +4,231.14880819995636,0.0,0.0,55.91931597126064,0.0792447500025446,100,mac,phase-24,without +5,189.5080321108016,0.0,0.0,45.84561611725291,0.0649690419995749,100,mac,phase-24,without +6,226.3184260321476,0.0,0.0,54.75075417417805,0.0775887499985401,100,mac,phase-24,without +7,233.75602738491304,0.0,0.0,56.550052138776614,0.0801385830018261,100,mac,phase-24,without +8,234.5266979302004,0.0,0.0,56.73649207791049,0.0804027919984946,100,mac,phase-24,without +9,232.1996204913718,0.0,0.0,56.1735275547325,0.0796049999989918,100,mac,phase-24,without +10,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767,100,mac,phase-24,without +11,232.00807659282628,0.0,0.0,56.12718942360155,0.0795393330008664,100,mac,phase-24,without +12,235.28654971516897,0.0,0.0,56.92031475208247,0.0806632919993717,100,mac,phase-24,without +13,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185,100,mac,phase-24,without +14,232.4236148875455,0.0,0.0,56.22771608165147,0.0796817920017929,100,mac,phase-24,without +15,237.5479969606639,0.0,0.0,57.467402076728234,0.0814385839985334,100,mac,phase-24,without +16,236.38512621563677,0.0,0.0,57.186081410914305,0.0810399170004529,100,mac,phase-24,without +17,233.71664925617893,0.0,0.0,56.5405258165767,0.0801250829972559,100,mac,phase-24,without +18,235.04529604296468,0.0,0.0,56.86195087631657,0.0805805829986638,100,mac,phase-24,without +19,233.1673012201283,0.0,0.0,56.40762802382869,0.0799367500003427,100,mac,phase-24,without +20,237.1459493238121,0.0,0.0,57.37013906674045,0.0813007500000821,100,mac,phase-24,without +21,233.21457829256337,0.0,0.0,56.419065251527506,0.0799529579999216,100,mac,phase-24,without +22,215.0150838520788,0.0,0.0,52.01625959546593,0.0737136249990726,100,mac,phase-24,without +23,232.95108619602212,0.0,0.0,56.35532147574445,0.0798626249998051,100,mac,phase-24,without +24,232.76695704397656,0.0,0.0,56.31077711355224,0.0797994999993534,100,mac,phase-24,without +25,232.50881162889073,0.0,0.0,56.24832680223491,0.0797110000021348,100,mac,phase-24,without +26,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835,100,mac,phase-24,without +27,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423,100,mac,phase-24,without +28,233.43504906083848,0.0,0.0,56.47240134549057,0.0800285419973079,100,mac,phase-24,without +29,220.28603711570713,0.0,0.0,53.291403963779565,0.0755206659996474,100,mac,phase-24,without +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285,100,mac,phase-24,with +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228,100,mac,phase-24,with +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163,100,mac,phase-24,with +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576,100,mac,phase-24,with +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558,100,mac,phase-24,with +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698,100,mac,phase-24,with +6,1705.732973585949,1.300279235547624,0.0,470.9678072139933,0.5133861249996698,100,mac,phase-24,with +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658,100,mac,phase-24,with +8,1690.866381337352,1.2889464410812284,0.0,466.86301094137,0.5089116250019288,100,mac,phase-24,with +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358,100,mac,phase-24,with +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521,100,mac,phase-24,with +11,1704.729298359376,1.2995141345168324,0.0,470.69068369704553,0.513084041998809,100,mac,phase-24,with +12,1708.1326598617934,1.302108514974491,0.0,471.6303816033247,0.5141083749986137,100,mac,phase-24,with +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769,100,mac,phase-24,with +14,1710.3444845159795,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929,100,mac,phase-24,with +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019,100,mac,phase-24,with +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924,100,mac,phase-24,with +17,1689.277667739587,1.2877353656465649,0.0,466.4243532082916,0.5084334589992068,100,mac,phase-24,with +18,1706.946246334542,1.3012041126453189,0.0,471.3028024417377,0.5137512920009613,100,mac,phase-24,with +19,1708.998869357254,1.3027688259598698,0.0,471.869549628439,0.5143690839977353,100,mac,phase-24,with +20,1700.2184297275633,1.2960755020303545,0.0,469.4451933764304,0.5117263749998529,100,mac,phase-24,with +21,1704.764045228913,1.2995406220349015,0.0,470.7002776119237,0.5130945000018983,100,mac,phase-24,with +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248,100,mac,phase-24,with +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265,100,mac,phase-24,with +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966,100,mac,phase-24,with +25,1700.2915250526698,1.2961312225533927,0.0,469.4653756356212,0.5117483750000247,100,mac,phase-24,with +26,1705.0802389809708,1.29978165634483,0.0,470.7875814750531,0.5131896669990965,100,mac,phase-24,with +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194,100,mac,phase-24,with +28,1718.6114560769083,1.3100964951232272,0.0,474.5236689771976,0.5172622499994759,100,mac,phase-24,with +29,1692.044212804571,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484,100,mac,phase-24,with +0,235.05822270976108,0.0,0.0,56.90602555177452,0.0796164580024196,100,mac,phase-23,without +1,234.8477444205732,0.0,0.0,56.85507016393681,0.0795451670019247,100,mac,phase-23,without +2,236.67440697832672,0.0,0.0,57.29729296723922,0.0801638750017446,100,mac,phase-23,without +3,237.84588865760452,0.0,0.0,57.58090085640774,0.0805606670000997,100,mac,phase-23,without +4,238.03791455643773,0.0,0.0,57.62738904380077,0.0806257080002978,100,mac,phase-23,without +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256,100,mac,phase-23,without +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836,100,mac,phase-23,without +7,235.89399490105237,0.0,0.0,57.10836041640851,0.0798995420009305,100,mac,phase-23,without +8,237.1091452658675,0.0,0.0,57.40254020264302,0.0803111249988433,100,mac,phase-23,without +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639,100,mac,phase-23,without +10,240.1701486799902,0.0,0.0,58.14358868199451,0.0813479159987764,100,mac,phase-23,without +11,237.3678477706916,0.0,0.0,57.46517035095314,0.0803987500003131,100,mac,phase-23,without +12,233.8212985099349,0.0,0.0,56.606574465530976,0.0791974999992817,100,mac,phase-23,without +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732,100,mac,phase-23,without +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766,100,mac,phase-23,without +15,239.42184376859217,0.0,0.0,57.962429061549685,0.0810944580007344,100,mac,phase-23,without +16,235.06720385039952,0.0,0.0,56.908199825929934,0.0796195000002626,100,mac,phase-23,without +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046,100,mac,phase-23,without +18,235.1504876044873,0.0,0.0,56.92836226646714,0.0796477090007101,100,mac,phase-23,without +19,233.54008410112257,0.0,0.0,56.53849433564263,0.0791022500015969,100,mac,phase-23,without +20,217.5081550780071,0.0,0.0,52.65727141088613,0.0736720830027479,100,mac,phase-23,without +21,236.13485910454932,0.0,0.0,57.166672031125465,0.0799811249999038,100,mac,phase-23,without +22,236.4991092645872,0.0,0.0,57.25485456171471,0.0801044999971054,100,mac,phase-23,without +23,233.79657231308929,0.0,0.0,56.60058841844326,0.0791891250009939,100,mac,phase-23,without +24,225.861185687578,0.0,0.0,54.679484324024344,0.076501333998749,100,mac,phase-23,without +25,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449,100,mac,phase-23,without +26,226.48622570091325,0.0,0.0,54.8308023360458,0.0767130410022218,100,mac,phase-23,without +27,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544,100,mac,phase-23,without +28,236.39749713231657,0.0,0.0,57.230254943251225,0.0800700830004643,100,mac,phase-23,without +29,240.4058491717482,0.0,0.0,58.20065019659257,0.0814277499994204,100,mac,phase-23,without +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829,100,mac,phase-23,with +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254,100,mac,phase-23,with +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306,100,mac,phase-23,with +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439,100,mac,phase-23,with +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705,100,mac,phase-23,with +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659,100,mac,phase-23,with +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573,100,mac,phase-23,with +7,1692.6743412442531,1.2348953116578076,0.0,469.0599651361846,0.5122992920005345,100,mac,phase-23,with +8,1692.9432102016283,1.2350914657595289,0.0,469.13447188606534,0.5123806670017075,100,mac,phase-23,with +9,1690.9101016469,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765,100,mac,phase-23,with +10,1675.4391953781826,1.2223213626664713,0.0,464.283903538232,0.5070829590003996,100,mac,phase-23,with +11,1692.3177755698923,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009,100,mac,phase-23,with +12,1692.9842335608655,1.235121394466283,0.0,469.1458399413283,0.5123930829977326,100,mac,phase-23,with +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145,100,mac,phase-23,with +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459,100,mac,phase-23,with +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755,100,mac,phase-23,with +16,1699.368532235995,1.2397790774653328,0.0,470.9150041810212,0.5143253339992953,100,mac,phase-23,with +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365,100,mac,phase-23,with +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959,100,mac,phase-23,with +19,1687.3626306301558,1.2310201382860588,0.0,467.5880276614127,0.5106916670010833,100,mac,phase-23,with +20,1680.005011470021,1.2256523665981305,0.0,465.54914486946274,0.5084648339980049,100,mac,phase-23,with +21,1684.214949163509,1.2287237384464431,0.0,466.7157681115221,0.5097390000009909,100,mac,phase-23,with +22,1684.449402886166,1.228894784817181,0.0,466.780737995153,0.50980995899954,100,mac,phase-23,with +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316,100,mac,phase-23,with +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298,100,mac,phase-23,with +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991,100,mac,phase-23,with +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632,100,mac,phase-23,with +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746,100,mac,phase-23,with +28,1690.2974702999934,1.233161258796036,0.0,468.40130624647264,0.5115799159975722,100,mac,phase-23,with +29,1691.2523507598814,1.2338578945128875,0.0,468.6659148509223,0.5118689170012658,100,mac,phase-23,with +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.0828468750005413,100,mac,phase-8,without +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248,100,mac,phase-8,without +2,403.3808155336163,0.7147755199259882,0.0,62.70780619042996,0.0643259160024172,100,mac,phase-8,without +3,491.6841117381172,0.8712456147475667,0.0,76.43504797073845,0.078407375000097,100,mac,phase-8,without +4,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.0797451670005102,100,mac,phase-8,without +5,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.0737165410027955,100,mac,phase-8,without +6,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.0807009579984878,100,mac,phase-8,without +7,514.8391200881973,0.9122754121374724,0.0,80.03462365713747,0.0820998339986545,100,mac,phase-8,without +8,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.0751145000031101,100,mac,phase-8,without +9,484.3581431807236,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234,100,mac,phase-8,without +10,500.5286831836258,0.8869178602040666,0.0,77.80998612021061,0.07981779200054,100,mac,phase-8,without +11,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.0795732500009762,100,mac,phase-8,without +12,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.0803536249986791,100,mac,phase-8,without +13,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.0794982500010519,100,mac,phase-8,without +14,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.0762340840010438,100,mac,phase-8,without +15,497.8429106725408,0.8821587730856716,0.0,77.39246774647758,0.0793894999987969,100,mac,phase-8,without +16,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.0771708750035031,100,mac,phase-8,without +17,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.0793507089983904,100,mac,phase-8,without +18,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752,100,mac,phase-8,without +19,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.075234249998175,100,mac,phase-8,without +20,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.0774600000004284,100,mac,phase-8,without +21,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.0747904170020774,100,mac,phase-8,without +22,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.0744944590005616,100,mac,phase-8,without +23,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.0777760000019043,100,mac,phase-8,without +24,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.0794401249986549,100,mac,phase-8,without +25,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.0787942500028293,100,mac,phase-8,without +26,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.0799686249993101,100,mac,phase-8,without +27,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.0792666669985919,100,mac,phase-8,without +28,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.0759735419997014,100,mac,phase-8,without +29,509.0607510322008,0.902036361128414,0.0,79.13634383591972,0.0811783749995811,100,mac,phase-8,without +0,1732.06870553443,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916,100,mac,phase-8,with +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742,100,mac,phase-8,with +2,1714.7743044983763,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323,100,mac,phase-8,with +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244,100,mac,phase-8,with +4,1718.4740985032197,0.8668385565940498,0.0,470.1265571743345,0.51150675000099,100,mac,phase-8,with +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666,100,mac,phase-8,with +6,1723.3339429500195,0.8692899758788708,0.0,471.4560749949214,0.512953290999576,100,mac,phase-8,with +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181,100,mac,phase-8,with +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825,100,mac,phase-8,with +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474,100,mac,phase-8,with +10,1722.9278508751695,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269,100,mac,phase-8,with +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256,100,mac,phase-8,with +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189,100,mac,phase-8,with +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964,100,mac,phase-8,with +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105,100,mac,phase-8,with +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909,100,mac,phase-8,with +16,1717.170141592041,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535,100,mac,phase-8,with +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987,100,mac,phase-8,with +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623,100,mac,phase-8,with +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693,100,mac,phase-8,with +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156,100,mac,phase-8,with +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148,100,mac,phase-8,with +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023,100,mac,phase-8,with +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228,100,mac,phase-8,with +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297,100,mac,phase-8,with +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899,100,mac,phase-8,with +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371,100,mac,phase-8,with +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394,100,mac,phase-8,with +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368,100,mac,phase-8,with +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232,100,mac,phase-8,with +0,238.41283703560313,0.0695081157538201,0.0,61.79271490514612,0.0831266669993056,100,mac,phase-1,without +1,234.37913907907773,0.0683321105186815,0.0,60.7472462511079,0.0817202500002167,100,mac,phase-1,without +2,229.3925259214554,0.0668782874406575,0.0,59.45479753474456,0.0799815830032457,100,mac,phase-1,without +3,221.67814600297828,0.0646291970854164,0.0,57.455356208935186,0.0772918340007891,100,mac,phase-1,without +4,231.8804534306275,0.0676036307377922,0.0,60.09962772589734,0.0808490409981459,100,mac,phase-1,without +5,229.33420950258335,0.0668612855692663,0.0,59.439682871077736,0.0799612499977229,100,mac,phase-1,without +6,223.15663158869825,0.0650602424456846,0.0,57.838555534213626,0.0778073330002371,100,mac,phase-1,without +7,235.0478747510722,0.0685270771869015,0.0,60.920571619155446,0.081953416000033,100,mac,phase-1,without +8,231.3115035490765,0.0674377561367569,0.0,59.95216520557696,0.0806506670014641,100,mac,phase-1,without +9,229.6267523252653,0.0669465750219432,0.0,59.51550519450753,0.0800632499995117,100,mac,phase-1,without +10,232.2332285257856,0.0677064806197625,0.0,60.19106127096891,0.0809720420002122,100,mac,phase-1,without +11,230.43757777224496,0.0671829672805378,0.0,59.72565791239818,0.0803459580019989,100,mac,phase-1,without +12,231.26095387219027,0.0674230186216298,0.0,59.93906355462891,0.0806330420018639,100,mac,phase-1,without +13,226.7150679276371,0.0660976874424598,0.0,58.76084413634677,0.0790480420000676,100,mac,phase-1,without +14,229.0763215445606,0.0667860995756736,0.0,59.37284252277387,0.0798713330004829,100,mac,phase-1,without +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.0792341249980381,100,mac,phase-1,without +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.0806579169984615,100,mac,phase-1,without +17,230.3895405214245,0.0671689622511441,0.0,59.71320744126716,0.0803292090022296,100,mac,phase-1,without +18,227.8955154857735,0.0664418412494966,0.0,59.06679687080252,0.0794596250016184,100,mac,phase-1,without +19,221.77446141446887,0.0646572773803116,0.0,57.48031959109704,0.0773254159976204,100,mac,phase-1,without +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.0797048750027897,100,mac,phase-1,without +21,228.23203436741105,0.0665399517106154,0.0,59.15401707073714,0.0795769579999614,100,mac,phase-1,without +22,215.52590171771973,0.0628355398593935,0.0,55.86079493500083,0.075146750001295,100,mac,phase-1,without +23,236.72832386273487,0.0690170040416136,0.0,61.356116592994546,0.0825393329978396,100,mac,phase-1,without +24,220.5298408730013,0.0642944142486884,0.0,57.15773426708401,0.0768914580003183,100,mac,phase-1,without +25,228.89658839783272,0.0667336992413506,0.0,59.32625862556073,0.0798086659997352,100,mac,phase-1,without +26,229.44773620070688,0.0668943837319845,0.0,59.46910713773422,0.0800008330006676,100,mac,phase-1,without +27,229.6753890074541,0.0669607548126688,0.0,59.52811102846259,0.0800802080011635,100,mac,phase-1,without +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.079968000001827,100,mac,phase-1,without +29,220.42790404735163,0.0642646950575369,0.0,57.13131390615032,0.0768559160023869,100,mac,phase-1,without +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989,100,mac,phase-1,with +1,1672.6596167167916,1.2258528268930255,0.0,466.5860908414723,0.5084176670025045,100,mac,phase-1,with +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325,100,mac,phase-1,with +3,1688.6244236034297,1.237553057745254,0.0,471.0394516817949,0.5132702920018346,100,mac,phase-1,with +4,1677.695815207165,1.2295437381187877,0.0,467.9909314574833,0.5099484580023272,100,mac,phase-1,with +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074,100,mac,phase-1,with +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681,100,mac,phase-1,with +7,1682.5739653539526,1.2331188194369973,0.0,469.3516847062496,0.5114312090008752,100,mac,phase-1,with +8,1682.5384603989162,1.2330927986919125,0.0,469.3417806480596,0.5114204169985896,100,mac,phase-1,with +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372,100,mac,phase-1,with +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728,100,mac,phase-1,with +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108,100,mac,phase-1,with +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387,100,mac,phase-1,with +13,1688.8170195135012,1.2376942067503771,0.0,471.0931760450152,0.5133288329998322,100,mac,phase-1,with +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376,100,mac,phase-1,with +15,1680.177795933706,1.2313627233202695,0.0,468.6832765545771,0.5107028750026075,100,mac,phase-1,with +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091,100,mac,phase-1,with +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639,100,mac,phase-1,with +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985,100,mac,phase-1,with +19,1676.2396122854952,1.2284765213041895,0.0,467.5847256628893,0.5095058340011747,100,mac,phase-1,with +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945,100,mac,phase-1,with +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434,100,mac,phase-1,with +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412,100,mac,phase-1,with +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696,100,mac,phase-1,with +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816,100,mac,phase-1,with +25,1681.8361980700215,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372,100,mac,phase-1,with +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078,100,mac,phase-1,with +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441,100,mac,phase-1,with +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516,100,mac,phase-1,with +29,1685.436887323359,1.235216987500778,0.0,470.1502928371205,0.5123014160017192,100,mac,phase-1,with +0,240.68532811369528,0.0,0.0,56.67665791391861,0.0791760419997444,100,mac,phase-30,without +1,237.4792714962241,0.0,0.0,55.92169467795753,0.0781213749978633,100,mac,phase-30,without +2,229.61777289781264,0.0,0.0,54.070466477863675,0.0755352500018489,100,mac,phase-30,without +3,237.8056781604508,0.0,0.0,55.99855702346976,0.0782287500005622,100,mac,phase-30,without +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688,100,mac,phase-30,without +5,243.35345135751976,0.0,0.0,57.30494842729374,0.0800537499999336,100,mac,phase-30,without +6,243.4134889068341,0.0,0.0,57.319086088575986,0.0800735000011627,100,mac,phase-30,without +7,244.52633573416657,0.0,0.0,57.58113961480306,0.080439583001862,100,mac,phase-30,without +8,247.25107666319172,0.0,0.0,58.222762478767,0.0813359160019899,100,mac,phase-30,without +9,243.32786471626991,0.0,0.0,57.29892327684254,0.0800453329975425,100,mac,phase-30,without +10,244.4880849635703,0.0,0.0,57.57213231112975,0.0804269999971438,100,mac,phase-30,without +11,241.4227502834867,0.0,0.0,56.85030632191656,0.0794186249986523,100,mac,phase-30,without +12,245.31417120068048,0.0,0.0,57.766659362009946,0.0806987500000104,100,mac,phase-30,without +13,243.4813784481399,0.0,0.0,57.335072739439504,0.0800958330000867,100,mac,phase-30,without +14,243.02235721302517,0.0,0.0,57.22698227243133,0.0799448329998995,100,mac,phase-30,without +15,243.41158898109776,0.0,0.0,57.318638693456954,0.0800728750000416,100,mac,phase-30,without +16,242.4810070275498,0.0,0.0,57.099504957905,0.0797667500009993,100,mac,phase-30,without +17,242.8655512932365,0.0,0.0,57.1900575643721,0.0798932499965303,100,mac,phase-30,without +18,227.67858753326496,0.0,0.0,53.61382648904712,0.0748973340014345,100,mac,phase-30,without +19,244.21563610620777,0.0,0.0,57.50797596720637,0.0803373749986349,100,mac,phase-30,without +20,244.89530368100628,0.0,0.0,57.668024304734615,0.0805609589988307,100,mac,phase-30,without +21,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072,100,mac,phase-30,without +22,245.05122194988175,0.0,0.0,57.7047399884734,0.0806122499998309,100,mac,phase-30,without +23,242.19943853992356,0.0,0.0,57.03320112053526,0.0796741250014747,100,mac,phase-30,without +24,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844,100,mac,phase-30,without +25,245.99079585749843,0.0,0.0,57.92599115224054,0.0809213329994236,100,mac,phase-30,without +26,245.43513393916336,0.0,0.0,57.79514370629074,0.0807385420011996,100,mac,phase-30,without +27,240.29419641988633,0.0,0.0,56.584554097773946,0.0790473749984812,100,mac,phase-30,without +28,244.3516705522685,0.0,0.0,57.54000940199992,0.0803821250010514,100,mac,phase-30,without +29,241.889751197847,0.0,0.0,56.96027584634135,0.0795722500006377,100,mac,phase-30,without +0,1687.6458569919555,2.580242062394627,0.0,472.3853552412604,0.5138203749993409,100,mac,phase-30,with +1,1687.0327514894282,2.579304685278597,0.0,472.21374218665426,0.5136337090007146,100,mac,phase-30,with +2,1686.205052807527,2.578039216610996,0.0,471.9820628125352,0.5133817079986329,100,mac,phase-30,with +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591,100,mac,phase-30,with +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687,100,mac,phase-30,with +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105,100,mac,phase-30,with +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369,100,mac,phase-30,with +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193,100,mac,phase-30,with +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238,100,mac,phase-30,with +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068,100,mac,phase-30,with +10,1674.4885384554077,2.560125835654476,0.0,468.7025182496253,0.5098145000010845,100,mac,phase-30,with +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899,100,mac,phase-30,with +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134,100,mac,phase-30,with +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728,100,mac,phase-30,with +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324,100,mac,phase-30,with +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712,100,mac,phase-30,with +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159,100,mac,phase-30,with +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711,100,mac,phase-30,with +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754,100,mac,phase-30,with +19,1677.22863718545,2.564315173108823,0.0,469.4694934456504,0.5106487500015646,100,mac,phase-30,with +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355,100,mac,phase-30,with +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079,100,mac,phase-30,with +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851,100,mac,phase-30,with +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817,100,mac,phase-30,with +24,1676.759911976087,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167,100,mac,phase-30,with +25,1671.2162151657417,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102,100,mac,phase-30,with +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082,100,mac,phase-30,with +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854,100,mac,phase-30,with +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082,100,mac,phase-30,with +29,1673.131765055717,2.5580514645531487,0.0,468.3227466987758,0.509401416999026,100,mac,phase-30,with +0,232.9169939317484,0.0,0.0,56.31584657411337,0.0802987909992225,100,mac,phase-6,without +1,237.47883911982245,0.0,0.0,57.41883253219986,0.0818715000023075,100,mac,phase-6,without +2,235.63126033438007,0.0,0.0,56.97211560674853,0.0812345420017663,100,mac,phase-6,without +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643,100,mac,phase-6,without +4,233.22591381073585,0.0,0.0,56.39053878190413,0.0804052919993409,100,mac,phase-6,without +5,232.05152169027792,0.0,0.0,56.10658832660616,0.080000417001429,100,mac,phase-6,without +6,231.51224545439288,0.0,0.0,55.976199395989674,0.0798144999971555,100,mac,phase-6,without +7,230.47563320063983,0.0,0.0,55.72556205238602,0.079457124997134,100,mac,phase-6,without +8,237.39157949081192,0.0,0.0,57.39773445860497,0.0818414169989409,100,mac,phase-6,without +9,238.7171669043764,0.0,0.0,57.71824167511468,0.0822984170008567,100,mac,phase-6,without +10,233.33565330551497,0.0,0.0,56.41707215092448,0.0804431249998742,100,mac,phase-6,without +11,213.50066847479712,0.0,0.0,51.62126939016117,0.0736049580009421,100,mac,phase-6,without +12,231.42716131362363,0.0,0.0,55.95562732292378,0.0797851669994997,100,mac,phase-6,without +13,235.6416532820299,0.0,0.0,56.97462846609562,0.0812381249997997,100,mac,phase-6,without +14,231.260615912246,0.0,0.0,55.91535913504585,0.0797277500023483,100,mac,phase-6,without +15,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142,100,mac,phase-6,without +16,231.26617350593335,0.0,0.0,55.916702878102704,0.0797296659984567,100,mac,phase-6,without +17,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022,100,mac,phase-6,without +18,237.3270376003675,0.0,0.0,57.38212919452134,0.0818191660000593,100,mac,phase-6,without +19,234.63030260863508,0.0,0.0,56.7300989949132,0.0808894590009003,100,mac,phase-6,without +20,231.03231320527357,0.0,0.0,55.860158954066,0.0796490419998008,100,mac,phase-6,without +21,233.7110410932738,0.0,0.0,56.50783530523265,0.0805725409991282,100,mac,phase-6,without +22,231.71746496061323,0.0,0.0,56.02581840416606,0.079885250001098,100,mac,phase-6,without +23,227.65827556405924,0.0,0.0,55.04436710079492,0.0784858330007409,100,mac,phase-6,without +24,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255,100,mac,phase-6,without +25,231.77136734596337,0.0,0.0,56.03885119499903,0.0799038330005714,100,mac,phase-6,without +26,233.1512226176164,0.0,0.0,56.372479568185334,0.0803795419997186,100,mac,phase-6,without +27,230.73777754985747,0.0,0.0,55.78894463646289,0.0795475000013539,100,mac,phase-6,without +28,232.8224856404988,0.0,0.0,56.29299588237056,0.0802662089990917,100,mac,phase-6,without +29,237.8312655240404,0.0,0.0,57.50404396728485,0.0819929999997839,100,mac,phase-6,without +0,1700.6486549674398,2.245545305325342,0.0,471.7991233293258,0.5144435829970462,100,mac,phase-6,with +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695,100,mac,phase-6,with +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564,100,mac,phase-6,with +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469,100,mac,phase-6,with +4,1710.1798343752505,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836,100,mac,phase-6,with +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368,100,mac,phase-6,with +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275,100,mac,phase-6,with +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373,100,mac,phase-6,with +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759,100,mac,phase-6,with +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611,100,mac,phase-6,with +10,1701.928274758921,2.247234921935432,0.0,472.1541193445534,0.5148306660012167,100,mac,phase-6,with +11,1688.930690823444,2.230072844688242,0.0,468.5482900697967,0.5108989170003042,100,mac,phase-6,with +12,1689.5541088888797,2.230896009135527,0.0,468.7212406059824,0.5110874999991211,100,mac,phase-6,with +13,1689.9560382136613,2.2314267187007863,0.0,468.8327450619548,0.5112090829970839,100,mac,phase-6,with +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964,100,mac,phase-6,with +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932,100,mac,phase-6,with +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191,100,mac,phase-6,with +17,1694.2118484628922,2.237046112628863,0.0,470.0134048877091,0.5124964590031595,100,mac,phase-6,with +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352,0.5130589580003289,100,mac,phase-6,with +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098,100,mac,phase-6,with +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675,100,mac,phase-6,with +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118,100,mac,phase-6,with +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824,100,mac,phase-6,with +23,1685.693758534626,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166,100,mac,phase-6,with +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946,100,mac,phase-6,with +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076,100,mac,phase-6,with +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012,100,mac,phase-6,with +27,1689.4828952994171,2.2308019783426145,0.0,468.7014843153579,0.5110659579986532,100,mac,phase-6,with +28,1692.212939042672,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244,100,mac,phase-6,with +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817,100,mac,phase-6,with +0,231.07091032445197,0.96752185957394,0.0,58.35157697913175,0.0799369160013157,100,mac,phase-7,without +1,227.65017155015877,0.9531988124393016,0.0,57.48774906745996,0.0787535419985943,100,mac,phase-7,without +2,230.5149398910295,0.9651939441004702,0.0,58.211179594197326,0.0797445829994103,100,mac,phase-7,without +3,234.6926746579278,0.9826866250476328,0.0,59.26616921407965,0.0811898329993709,100,mac,phase-7,without +4,232.3701460779587,0.9729619168727698,0.0,58.67966871070601,0.0803863749970332,100,mac,phase-7,without +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.0770988340009353,100,mac,phase-7,without +6,237.3139072923828,0.9936620432398358,0.0,59.928100469878366,0.0820966249993944,100,mac,phase-7,without +7,230.30332002617052,0.9643078661217072,0.0,58.157739925754,0.0796713749987247,100,mac,phase-7,without +8,230.46507591515575,0.9649851576002768,0.0,58.19858760837532,0.0797273330026655,100,mac,phase-7,without +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019,100,mac,phase-7,without +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.0795147079988964,100,mac,phase-7,without +11,230.5961184668456,0.9655338486194806,0.0,58.23167935294729,0.0797726660020998,100,mac,phase-7,without +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.0827171670025563,100,mac,phase-7,without +13,214.01309135748147,0.8960987076764312,0.0,54.04402205951994,0.0740359160008665,100,mac,phase-7,without +14,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.0808671250015322,100,mac,phase-7,without +15,231.6784328857628,0.9700656300443432,0.0,58.50499265336401,0.0801470830010657,100,mac,phase-7,without +16,230.71487857136052,0.9660311115462684,0.0,58.26166945153184,0.0798137499987206,100,mac,phase-7,without +17,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.0800940830013132,100,mac,phase-7,without +18,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.0797144999996817,100,mac,phase-7,without +19,231.78587024977804,0.9705154832866824,0.0,58.5321234575313,0.0801842499968188,100,mac,phase-7,without +20,231.19713702261603,0.9680503860317448,0.0,58.38345259205248,0.0799805829992692,100,mac,phase-7,without +21,230.582873431562,0.9654783900541868,0.0,58.228334627750776,0.0797680840005341,100,mac,phase-7,without +22,231.6367610464117,0.9698911450109644,0.0,58.49446940083367,0.0801326670007256,100,mac,phase-7,without +23,232.1529848272166,0.9720526364408436,0.0,58.62482969431156,0.080311250003433,100,mac,phase-7,without +24,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.0799320830010401,100,mac,phase-7,without +25,232.75243664028173,0.9745626137118352,0.0,58.77620728903447,0.0805186249999678,100,mac,phase-7,without +26,232.66162348649672,0.9741823680491488,0.0,58.75327454199867,0.0804872090011485,100,mac,phase-7,without +27,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.0794731249989126,100,mac,phase-7,without +28,230.7071720615588,0.965998843457292,0.0,58.259723351958755,0.0798110840005392,100,mac,phase-7,without +29,230.77582537158145,0.9662863031729516,0.0,58.27706014653421,0.0798348339994845,100,mac,phase-7,without +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931,100,mac,phase-7,with +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782,100,mac,phase-7,with +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094,100,mac,phase-7,with +3,1677.138960668916,0.7677832068506811,0.0,468.280992421798,0.5116080420011713,100,mac,phase-7,with +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182,100,mac,phase-7,with +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746,100,mac,phase-7,with +6,1665.3088555742995,0.7623674623954318,0.0,464.9778592383964,0.5079992909995781,100,mac,phase-7,with +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733,100,mac,phase-7,with +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189,100,mac,phase-7,with +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731,100,mac,phase-7,with +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449,100,mac,phase-7,with +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992,100,mac,phase-7,with +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349,100,mac,phase-7,with +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844,100,mac,phase-7,with +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853,100,mac,phase-7,with +15,1664.589709954197,0.7620382422512794,0.0,464.777063578302,0.507779916999425,100,mac,phase-7,with +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326,100,mac,phase-7,with +17,1674.663941097445,0.7666501591377807,0.0,467.5899318428168,0.5108530420002353,100,mac,phase-7,with +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989,100,mac,phase-7,with +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774,100,mac,phase-7,with +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128,100,mac,phase-7,with +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219,100,mac,phase-7,with +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212,100,mac,phase-7,with +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154,100,mac,phase-7,with +24,1672.187420124346,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954,100,mac,phase-7,with +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098,100,mac,phase-7,with +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352,100,mac,phase-7,with +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691,100,mac,phase-7,with +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941,100,mac,phase-7,with +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253,100,mac,phase-7,with +0,243.0955342560187,0.0,0.0,57.8043656552693,0.0804041249975853,100,mac,phase-9,without +1,240.37357538885556,0.0,0.0,57.15712585245829,0.0795038340002065,100,mac,phase-9,without +2,240.57790726684237,0.0,0.0,57.205712819003466,0.0795714170017163,100,mac,phase-9,without +3,241.00357775344693,0.0,0.0,57.306930690124176,0.0797122080002736,100,mac,phase-9,without +4,228.7827823794463,0.0,0.0,54.40101418878283,0.0756701660029648,100,mac,phase-9,without +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123,100,mac,phase-9,without +6,239.8171358810357,0.0,0.0,57.024813126626064,0.0793197909988521,100,mac,phase-9,without +7,243.10473150771745,0.0,0.0,57.80655261975568,0.0804071669990662,100,mac,phase-9,without +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972,100,mac,phase-9,without +9,241.96893194067064,0.0,0.0,57.53647701476525,0.0800314999978581,100,mac,phase-9,without +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959,100,mac,phase-9,without +11,226.9116656193993,0.0,0.0,53.95609150555676,0.0750512920021719,100,mac,phase-9,without +12,241.0369623717528,0.0,0.0,57.314869037036715,0.0797232500008249,100,mac,phase-9,without +13,259.1807637955834,0.0,0.0,61.629184950282394,0.0857243329992343,100,mac,phase-9,without +14,245.7031080501689,0.0,0.0,58.42440645335082,0.0812665830017067,100,mac,phase-9,without +15,240.7667441033004,0.0,0.0,57.25061530385252,0.0796338750005816,100,mac,phase-9,without +16,239.96490559435284,0.0,0.0,57.059950483498945,0.0793686659999366,100,mac,phase-9,without +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382,100,mac,phase-9,without +18,244.9626238231499,0.0,0.0,58.2483307341832,0.0810216669997316,100,mac,phase-9,without +19,244.61392358457164,0.0,0.0,58.16541519994048,0.0809063339984277,100,mac,phase-9,without +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304,100,mac,phase-9,without +21,240.89272099625768,0.0,0.0,57.280570664434954,0.079675542001496,100,mac,phase-9,without +22,232.55651691475,0.0,0.0,55.29835001040627,0.076918333001231,100,mac,phase-9,without +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555,100,mac,phase-9,without +24,242.54275309588132,0.0,0.0,57.67292282804619,0.080221291998896,100,mac,phase-9,without +25,242.09024671523045,0.0,0.0,57.5653237955566,0.0800716249977995,100,mac,phase-9,without +26,234.0747792582066,0.0,0.0,55.65936935998167,0.0774205000016081,100,mac,phase-9,without +27,240.0650594382712,0.0,0.0,57.08376552162113,0.0794017919979523,100,mac,phase-9,without +28,237.81349047900775,0.0,0.0,56.548377178031686,0.0786570829986885,100,mac,phase-9,without +29,243.5262478163098,0.0,0.0,57.90678269146844,0.0805465839985117,100,mac,phase-9,without +0,1682.686158652221,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038,100,mac,phase-9,with +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148,100,mac,phase-9,with +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852,100,mac,phase-9,with +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037,100,mac,phase-9,with +4,1681.3039830173152,2.5037288286533763,0.0,471.3352977567602,0.5120100000021921,100,mac,phase-9,with +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298,100,mac,phase-9,with +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512,100,mac,phase-9,with +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499,100,mac,phase-9,with +8,1673.0168005136268,2.491387896881146,0.0,469.0120762141986,0.5094862920013838,100,mac,phase-9,with +9,1674.6516856505996,2.493822500671014,0.0,469.4703984929874,0.5099841660012316,100,mac,phase-9,with +10,1674.632669554008,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829,100,mac,phase-9,with +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715,100,mac,phase-9,with +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677,100,mac,phase-9,with +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509,100,mac,phase-9,with +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898,100,mac,phase-9,with +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368,100,mac,phase-9,with +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927,100,mac,phase-9,with +17,1674.9585800219634,2.4942795151625616,0.0,469.5564329944028,0.5100776250001218,100,mac,phase-9,with +18,1677.512503132874,2.498082712551933,0.0,470.27239758027656,0.5108553749996645,100,mac,phase-9,with +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581,100,mac,phase-9,with +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195,100,mac,phase-9,with +21,1692.7334251702798,2.520749084420836,0.0,474.5394176391704,0.5154906250027125,100,mac,phase-9,with +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146,100,mac,phase-9,with +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418,100,mac,phase-9,with +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472,100,mac,phase-9,with +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981,100,mac,phase-9,with +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635,100,mac,phase-9,with +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165,100,mac,phase-9,with +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868,100,mac,phase-9,with +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495,100,mac,phase-9,with +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612,1000,mac,phase-19,without +1,383.59709143073366,0.0,0.0,82.02532419427872,0.1296549590006179,1000,mac,phase-19,without +2,366.3914775833742,0.0,0.0,78.34621378046563,0.1238395000000309,1000,mac,phase-19,without +3,374.1168748582736,0.0,0.0,79.99815074807854,0.1264506670013361,1000,mac,phase-19,without +4,367.66885289590334,0.0,0.0,78.61935746812284,0.1242712499988556,1000,mac,phase-19,without +5,383.9118124443024,0.0,0.0,82.09262161061848,0.1297613339993404,1000,mac,phase-19,without +6,375.5611654777607,0.0,0.0,80.30698626571066,0.1269388340006116,1000,mac,phase-19,without +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152,1000,mac,phase-19,without +8,374.86182356292346,0.0,0.0,80.1574446018956,0.1267024579974531,1000,mac,phase-19,without +9,377.0421871072083,0.0,0.0,80.62367604779706,0.1274394159991061,1000,mac,phase-19,without +10,375.6765508526328,0.0,0.0,80.33165934846492,0.1269778339992626,1000,mac,phase-19,without +11,375.1464674630339,0.0,0.0,80.21831056962074,0.1267986669990932,1000,mac,phase-19,without +12,378.4867262518033,0.0,0.0,80.93256470804418,0.1279276669993123,1000,mac,phase-19,without +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779,1000,mac,phase-19,without +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733,1000,mac,phase-19,without +15,375.683823091228,0.0,0.0,80.33321438561643,0.1269802919996436,1000,mac,phase-19,without +16,373.6414012930972,0.0,0.0,79.8964792959204,0.1262899579996883,1000,mac,phase-19,without +17,314.9850723569249,0.0,0.0,67.3538805522994,0.1064642500023183,1000,mac,phase-19,without +18,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284,1000,mac,phase-19,without +19,383.49859372980546,0.0,0.0,82.00426223622037,0.1296216669979912,1000,mac,phase-19,without +20,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624,1000,mac,phase-19,without +21,374.5009986985629,0.0,0.0,80.08028870802231,0.1265805000002728,1000,mac,phase-19,without +22,332.15382500117937,0.0,0.0,71.02510886220082,0.1122672499986947,1000,mac,phase-19,without +23,381.9548202102259,0.0,0.0,81.67415409344545,0.1290998750009748,1000,mac,phase-19,without +24,370.0998334750992,0.0,0.0,79.13917884991385,0.1250929159978113,1000,mac,phase-19,without +25,377.0426841466608,0.0,0.0,80.62378233072553,0.1274395839973294,1000,mac,phase-19,without +26,378.23080739815214,0.0,0.0,80.87784107377504,0.1278411669991328,1000,mac,phase-19,without +27,377.1951733191553,0.0,0.0,80.65638939185659,0.1274911249965953,1000,mac,phase-19,without +28,374.3644119900847,0.0,0.0,80.05108210220116,0.1265343339982791,1000,mac,phase-19,without +29,379.98685748159807,0.0,0.0,81.25334073374067,0.1284347079999861,1000,mac,phase-19,without +0,4220.528551913251,1.8985583643147872,0.0,669.9579463127654,0.6673571669998637,1000,mac,phase-19,with +1,4206.953299792034,1.8924516864081216,0.0,667.8030389546134,0.6652106250003271,1000,mac,phase-19,with +2,4215.018030714928,1.8960795169419695,0.0,669.0832176100137,0.6664858339972852,1000,mac,phase-19,with +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112,1000,mac,phase-19,with +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162,1000,mac,phase-19,with +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398,1000,mac,phase-19,with +6,4233.671377624534,1.9044705199554777,0.0,672.0442111997277,0.6694353329985461,1000,mac,phase-19,with +7,4228.464944991696,1.902128463480386,0.0,671.217752884991,0.6686120829981519,1000,mac,phase-19,with +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751,1000,mac,phase-19,with +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449,1000,mac,phase-19,with +10,4221.611053511575,1.899045315756675,0.0,670.1297803706974,0.6675283339973248,1000,mac,phase-19,with +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534,1000,mac,phase-19,with +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175,1000,mac,phase-19,with +13,4230.499504402044,1.9030436876611256,0.0,671.54071462484,0.6689337909992901,1000,mac,phase-19,with +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926,1000,mac,phase-19,with +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654,1000,mac,phase-19,with +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086,1000,mac,phase-19,with +17,4230.842860190899,1.9031981424875408,0.0,671.5952182104279,0.6689880830017501,1000,mac,phase-19,with +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248,1000,mac,phase-19,with +19,4227.523423400034,1.9017049303444185,0.0,671.0682977008356,0.6684632079995936,1000,mac,phase-19,with +20,4219.778073043047,1.8982207696465505,0.0,669.8388168538721,0.6672385000019858,1000,mac,phase-19,with +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676,1000,mac,phase-19,with +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166,1000,mac,phase-19,with +23,4221.082448049655,1.8988075284016537,0.0,670.0458706363308,0.6674447500008682,1000,mac,phase-19,with +24,4206.322456585602,1.8921679085278371,0.0,667.7029002127881,0.665110874997481,1000,mac,phase-19,with +25,4242.370638791378,1.9083837869428983,0.0,673.4251138696396,0.670810874999006,1000,mac,phase-19,with +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935,1000,mac,phase-19,with +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882,1000,mac,phase-19,with +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524,1000,mac,phase-19,with +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065,1000,mac,phase-19,with +0,380.3526569408623,0.0,0.0,80.10239659227442,0.1271814169995195,1000,mac,phase-26,without +1,387.17328681307646,0.0,0.0,81.53882352150227,0.1294620829976338,1000,mac,phase-26,without +2,385.3726788755025,0.0,0.0,81.15961488843315,0.1288599999970756,1000,mac,phase-26,without +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086,1000,mac,phase-26,without +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787,1000,mac,phase-26,without +5,394.2382781455051,0.0,0.0,83.02671305586976,0.1318244579997554,1000,mac,phase-26,without +6,373.8768198704676,0.0,0.0,78.73858314227304,0.1250160419986059,1000,mac,phase-26,without +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807,1000,mac,phase-26,without +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013,1000,mac,phase-26,without +9,380.0052443470086,0.0,0.0,80.02923138397054,0.127065250002488,1000,mac,phase-26,without +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719,1000,mac,phase-26,without +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198,1000,mac,phase-26,without +12,382.215942515876,0.0,0.0,80.49480515672312,0.1278044579994457,1000,mac,phase-26,without +13,361.8984704460614,0.0,0.0,76.21593875263807,0.1210107500010053,1000,mac,phase-26,without +14,378.8783985966985,0.0,0.0,79.79191729258059,0.1266884579999896,1000,mac,phase-26,without +15,380.88423856576446,0.0,0.0,80.21434786003091,0.1273591659992234,1000,mac,phase-26,without +16,379.1726048879838,0.0,0.0,79.85387723579232,0.1267868340000859,1000,mac,phase-26,without +17,378.95814974542776,0.0,0.0,79.80871291114045,0.126715124999464,1000,mac,phase-26,without +18,380.36461647596656,0.0,0.0,80.10491527436194,0.1271854160004295,1000,mac,phase-26,without +19,364.3920344346489,0.0,0.0,76.74108416150293,0.1218445419981435,1000,mac,phase-26,without +20,380.7520317589275,0.0,0.0,80.18650506235302,0.1273149590015236,1000,mac,phase-26,without +21,382.7415458800854,0.0,0.0,80.60549740078093,0.1279802080025547,1000,mac,phase-26,without +22,380.34679830413467,0.0,0.0,80.10116276142276,0.1271794580025016,1000,mac,phase-26,without +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071,1000,mac,phase-26,without +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658,1000,mac,phase-26,without +25,363.53484190384074,0.0,0.0,76.56055912820624,0.1215579159979824,1000,mac,phase-26,without +26,380.69109765029833,0.0,0.0,80.17367231872328,0.1272945839991734,1000,mac,phase-26,without +27,379.47166496381067,0.0,0.0,79.91685938764968,0.1268868329971155,1000,mac,phase-26,without +28,379.2726654116168,0.0,0.0,79.87495001549036,0.1268202920000476,1000,mac,phase-26,without +29,384.0864564464969,0.0,0.0,80.88873601527702,0.1284299159997317,1000,mac,phase-26,without +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575,1000,mac,phase-26,with +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671,1000,mac,phase-26,with +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872,1000,mac,phase-26,with +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984,1000,mac,phase-26,with +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695,1000,mac,phase-26,with +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884,1000,mac,phase-26,with +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729,1000,mac,phase-26,with +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931,1000,mac,phase-26,with +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438,1000,mac,phase-26,with +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557,1000,mac,phase-26,with +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739,1000,mac,phase-26,with +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657,1000,mac,phase-26,with +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443,1000,mac,phase-26,with +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984,1000,mac,phase-26,with +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266,1000,mac,phase-26,with +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819,1000,mac,phase-26,with +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884,1000,mac,phase-26,with +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955,1000,mac,phase-26,with +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664,1000,mac,phase-26,with +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512,1000,mac,phase-26,with +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685,1000,mac,phase-26,with +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929,1000,mac,phase-26,with +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905,1000,mac,phase-26,with +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121,1000,mac,phase-26,with +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751,1000,mac,phase-26,with +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741,1000,mac,phase-26,with +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306,1000,mac,phase-26,with +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247,1000,mac,phase-26,with +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952,1000,mac,phase-26,with +29,4766.67763709578,2.552409740466019,0.0,712.716714378895,0.701130875000672,1000,mac,phase-26,with +0,381.4033142582579,0.0,0.0,82.61925110554331,0.1332604589988477,1000,mac,phase-21,without +1,362.55955683134994,0.0,0.0,78.5373329144196,0.1266765420004958,1000,mac,phase-21,without +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517,1000,mac,phase-21,without +3,364.8477942397509,0.0,0.0,79.0330088930131,0.1274760409978625,1000,mac,phase-21,without +4,344.4926161941541,0.0,0.0,74.62368809432583,0.1203640410021762,1000,mac,phase-21,without +5,363.3133567014207,0.0,0.0,78.70062038052308,0.1269399160009925,1000,mac,phase-21,without +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374,1000,mac,phase-21,without +7,363.50917225752414,0.0,0.0,78.74303777438224,0.1270083330018678,1000,mac,phase-21,without +8,364.4152638869781,0.0,0.0,78.93931454770832,0.1273249170008057,1000,mac,phase-21,without +9,362.471785151328,0.0,0.0,78.51831989014688,0.1266458750033052,1000,mac,phase-21,without +10,344.8277210316543,0.0,0.0,74.69627821004087,0.1204811249990598,1000,mac,phase-21,without +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794,1000,mac,phase-21,without +12,363.5227671803984,0.0,0.0,78.74598269464046,0.1270130830016569,1000,mac,phase-21,without +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383,1000,mac,phase-21,without +14,363.0369275435488,0.0,0.0,78.6407405390185,0.1268433330005791,1000,mac,phase-21,without +15,363.51000797351264,0.0,0.0,78.74321880644601,0.1270086249969608,1000,mac,phase-21,without +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366,1000,mac,phase-21,without +17,361.4334449521908,0.0,0.0,78.29339554775532,0.1262830839987145,1000,mac,phase-21,without +18,363.57273639099617,0.0,0.0,78.75680698117282,0.1270305420002841,1000,mac,phase-21,without +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433,1000,mac,phase-21,without +20,366.3633906583192,0.0,0.0,79.36131605868071,0.1280055829993216,1000,mac,phase-21,without +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325,1000,mac,phase-21,without +22,346.6831905324902,0.0,0.0,75.09820838441907,0.1211294169988832,1000,mac,phase-21,without +23,365.82126518573983,0.0,0.0,79.24388131473557,0.1278161670015833,1000,mac,phase-21,without +24,364.1797368434446,0.0,0.0,78.88829488630428,0.1272426249997806,1000,mac,phase-21,without +25,363.9925075577076,0.0,0.0,78.84773744279413,0.1271772079999209,1000,mac,phase-21,without +26,362.5031479127712,0.0,0.0,78.52511366399774,0.1266568329992878,1000,mac,phase-21,without +27,362.4386307071827,0.0,0.0,78.511138003562,0.1266342910021194,1000,mac,phase-21,without +28,363.69341924406274,0.0,0.0,78.78294919485816,0.1270727080009237,1000,mac,phase-21,without +29,367.1670423932719,0.0,0.0,79.53540239199062,0.1282863749984244,1000,mac,phase-21,without +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437,1000,mac,phase-21,with +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811,1000,mac,phase-21,with +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996,1000,mac,phase-21,with +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752,1000,mac,phase-21,with +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475,1000,mac,phase-21,with +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028,1000,mac,phase-21,with +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979,1000,mac,phase-21,with +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447,1000,mac,phase-21,with +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314,1000,mac,phase-21,with +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629,1000,mac,phase-21,with +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477,1000,mac,phase-21,with +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285,1000,mac,phase-21,with +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075,1000,mac,phase-21,with +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229,1000,mac,phase-21,with +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999,1000,mac,phase-21,with +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096,1000,mac,phase-21,with +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847,1000,mac,phase-21,with +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059,1000,mac,phase-21,with +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166,1000,mac,phase-21,with +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332,1000,mac,phase-21,with +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261,1000,mac,phase-21,with +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364,1000,mac,phase-21,with +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932,1000,mac,phase-21,with +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939,1000,mac,phase-21,with +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151,1000,mac,phase-21,with +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543,1000,mac,phase-21,with +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614,1000,mac,phase-21,with +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847,1000,mac,phase-21,with +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008,1000,mac,phase-21,with +29,4236.218136169378,2.099183099819649,0.0,670.8389420423648,0.6676307919988176,1000,mac,phase-21,with +0,392.35717841459865,1.1193729478414245,0.0,83.85120991103034,0.127699874999962,1000,mac,phase-28,without +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.1266927500000747,1000,mac,phase-28,without +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.1210532080003758,1000,mac,phase-28,without +3,347.0769311623034,0.9901909508391123,0.0,74.17430395376623,0.1129625840003427,1000,mac,phase-28,without +4,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.1250622500010649,1000,mac,phase-28,without +5,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.1264222079989849,1000,mac,phase-28,without +6,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.1273698340010014,1000,mac,phase-28,without +7,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.1269118330019409,1000,mac,phase-28,without +8,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.1256257500026549,1000,mac,phase-28,without +9,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.1276837919976969,1000,mac,phase-28,without +10,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.1263573749965871,1000,mac,phase-28,without +11,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.1259465830007684,1000,mac,phase-28,without +12,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134,1000,mac,phase-28,without +13,381.0208254600399,1.087030970881068,0.0,81.42850181872728,0.1240102499978093,1000,mac,phase-28,without +14,385.7221262916305,1.1004435175606295,0.0,82.433223497269,0.1255403750001278,1000,mac,phase-28,without +15,343.1331262252372,0.9789394973141547,0.0,73.33146779880578,0.1116789999978209,1000,mac,phase-28,without +16,388.1155996030598,1.107271962211548,0.0,82.94473607839231,0.1263193750019127,1000,mac,phase-28,without +17,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.126625500000955,1000,mac,phase-28,without +18,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.1266295829991577,1000,mac,phase-28,without +19,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009,1000,mac,phase-28,without +20,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.1265432920008606,1000,mac,phase-28,without +21,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.1272836249991087,1000,mac,phase-28,without +22,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.1268063340030494,1000,mac,phase-28,without +23,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.1266531250003026,1000,mac,phase-28,without +24,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.1270766249981534,1000,mac,phase-28,without +25,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.1264769169974897,1000,mac,phase-28,without +26,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.1222288329990988,1000,mac,phase-28,without +27,406.8875185658029,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041,1000,mac,phase-28,without +28,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.1266736659999878,1000,mac,phase-28,without +29,391.19795385274,1.116065745408526,0.0,83.60347038332958,0.1273225840013765,1000,mac,phase-28,without +0,4252.8818824273885,2.916330819811958,0.0,674.9126980010802,0.6707283750001807,1000,mac,phase-28,with +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045,1000,mac,phase-28,with +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782,1000,mac,phase-28,with +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198,1000,mac,phase-28,with +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159,1000,mac,phase-28,with +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758,1000,mac,phase-28,with +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135,1000,mac,phase-28,with +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865,1000,mac,phase-28,with +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883,1000,mac,phase-28,with +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335,1000,mac,phase-28,with +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151,1000,mac,phase-28,with +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731,1000,mac,phase-28,with +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696,1000,mac,phase-28,with +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756,1000,mac,phase-28,with +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148,1000,mac,phase-28,with +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991,1000,mac,phase-28,with +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702,1000,mac,phase-28,with +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562,1000,mac,phase-28,with +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955,1000,mac,phase-28,with +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849,1000,mac,phase-28,with +20,4236.875066042591,2.905354457608498,0.0,672.3724902240174,0.6682039160004933,1000,mac,phase-28,with +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241,1000,mac,phase-28,with +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549,1000,mac,phase-28,with +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001,1000,mac,phase-28,with +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152,1000,mac,phase-28,with +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356,1000,mac,phase-28,with +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508,1000,mac,phase-28,with +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006,1000,mac,phase-28,with +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678,1000,mac,phase-28,with +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801,1000,mac,phase-28,with +0,305.3505916825048,0.9489872136384976,0.0,66.5128391206041,0.1058808339985262,1000,mac,phase-17,without +1,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.1275194589979946,1000,mac,phase-17,without +2,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944,1000,mac,phase-17,without +3,365.1552719264768,1.1348518505941692,0.0,79.53976352840897,0.1266182079998543,1000,mac,phase-17,without +4,368.1911850271189,1.1442870467021975,0.0,80.20105977327462,0.1276709160010796,1000,mac,phase-17,without +5,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.1273849159988458,1000,mac,phase-17,without +6,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688,1000,mac,phase-17,without +7,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.1250703330006217,1000,mac,phase-17,without +8,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.1285071249985776,1000,mac,phase-17,without +9,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042,1000,mac,phase-17,without +10,362.3793921728516,1.1262248019997214,0.0,78.93510891662754,0.1256556670014106,1000,mac,phase-17,without +11,367.18182008164734,1.1411500806925057,0.0,79.98119536147766,0.1273209169994515,1000,mac,phase-17,without +12,368.02740499563134,1.143778041119878,0.0,80.16538447025499,0.1276141249982174,1000,mac,phase-17,without +13,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.1275358330021845,1000,mac,phase-17,without +14,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604,1000,mac,phase-17,without +15,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.1268808749991876,1000,mac,phase-17,without +16,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.126675041999988,1000,mac,phase-17,without +17,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412,1000,mac,phase-17,without +18,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.1292150410008616,1000,mac,phase-17,without +19,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.1270570420019794,1000,mac,phase-17,without +20,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.1263232079982117,1000,mac,phase-17,without +21,363.1997428984131,1.128774338075507,0.0,79.11380140099804,0.1259401250026712,1000,mac,phase-17,without +22,367.0620167726892,1.140777748653696,0.0,79.95509926593404,0.1272793749994889,1000,mac,phase-17,without +23,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.1281139159982558,1000,mac,phase-17,without +24,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.1295731249992968,1000,mac,phase-17,without +25,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.1270090419966436,1000,mac,phase-17,without +26,364.5013486503741,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141,1000,mac,phase-17,without +27,363.1987825501328,1.1287713534464825,0.0,79.11359221361668,0.1259397920002811,1000,mac,phase-17,without +28,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.1270736670012411,1000,mac,phase-17,without +29,365.7796380252842,1.1367922936800423,0.0,79.6757657599865,0.1268347080003877,1000,mac,phase-17,without +0,4233.7459268513485,1.8343208499560768,0.0,671.7282952539152,0.6684168749998207,1000,mac,phase-17,with +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618,1000,mac,phase-17,with +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474,1000,mac,phase-17,with +3,4217.2807193634335,1.82718710269874,0.0,669.1159170082785,0.6658173750001879,1000,mac,phase-17,with +4,4233.164257526582,1.8340688347929952,0.0,671.6360073011949,0.6683250419991964,1000,mac,phase-17,with +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054,1000,mac,phase-17,with +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184,1000,mac,phase-17,with +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005,1000,mac,phase-17,with +8,4236.48775285413,1.8355087787290232,0.0,672.1633147705684,0.6688497499999357,1000,mac,phase-17,with +9,4259.023032178145,1.845272456908542,0.0,675.7387737199081,0.6724075830024958,1000,mac,phase-17,with +10,4220.165585871843,1.828437005474472,0.0,669.5736314047516,0.6662728330011305,1000,mac,phase-17,with +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739,1000,mac,phase-17,with +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104,1000,mac,phase-17,with +13,4233.0040582703405,1.833999426557133,0.0,671.6105900052222,0.668299750002916,1000,mac,phase-17,with +14,4226.978850104824,1.831388933354592,0.0,670.6546273944516,0.667348500002845,1000,mac,phase-17,with +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113,1000,mac,phase-17,with +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328,1000,mac,phase-17,with +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272,1000,mac,phase-17,with +18,4233.944921816377,1.834407066894857,0.0,671.7598678968967,0.6684482919990842,1000,mac,phase-17,with +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066,1000,mac,phase-17,with +20,4249.650576202317,1.8412117287239056,0.0,674.2517350586942,0.670927874998597,1000,mac,phase-17,with +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719,1000,mac,phase-17,with +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693,1000,mac,phase-17,with +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316,1000,mac,phase-17,with +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798,1000,mac,phase-17,with +25,4220.752005679336,1.828691078840776,0.0,669.6666730714923,0.6663654160001897,1000,mac,phase-17,with +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681,1000,mac,phase-17,with +27,4221.91720018277,1.829195913237745,0.0,669.8515434276624,0.6665493750006135,1000,mac,phase-17,with +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876,1000,mac,phase-17,with +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709,1000,mac,phase-17,with +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.1308225419998052,1000,mac,phase-10,without +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984025,0.129822625000088,1000,mac,phase-10,without +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.1305599580009584,1000,mac,phase-10,without +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.7164511012418,0.1303684579979744,1000,mac,phase-10,without +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478836,0.133669083003042,1000,mac,phase-10,without +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.1280587090004701,1000,mac,phase-10,without +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.131149834000098,1000,mac,phase-10,without +7,597.649025563058,0.5265920154749121,20.602912605455938,108.41213118589752,0.1288186250021681,1000,mac,phase-10,without +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518,1000,mac,phase-10,without +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390812,0.1328884159993322,1000,mac,phase-10,without +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.1274853749964677,1000,mac,phase-10,without +11,617.1983607546819,0.5438170478591833,21.276841997490543,111.95833472800936,0.1330323330003011,1000,mac,phase-10,without +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332355,0.1315104169989354,1000,mac,phase-10,without +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224584,0.132710166999459,1000,mac,phase-10,without +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480084,0.123739458998898,1000,mac,phase-10,without +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.1226190000015776,1000,mac,phase-10,without +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105,1000,mac,phase-10,without +17,609.4197285876301,0.5369632500359095,21.00868715765496,110.54730910114289,0.131355708999763,1000,mac,phase-10,without +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206,1000,mac,phase-10,without +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864,1000,mac,phase-10,without +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176743,0.1294865419986308,1000,mac,phase-10,without +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163,1000,mac,phase-10,without +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.128652208000858,1000,mac,phase-10,without +23,598.978231220104,0.5277631862724634,20.648734662910133,108.6532459738434,0.1291051250009331,1000,mac,phase-10,without +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.1315287079996778,1000,mac,phase-10,without +25,599.235721308217,0.5279900622793916,20.6576111866812,108.69995407176977,0.129160624997894,1000,mac,phase-10,without +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.1330622909990779,1000,mac,phase-10,without +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.129972374998033,1000,mac,phase-10,without +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964276,0.129170708998572,1000,mac,phase-10,without +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398,1000,mac,phase-10,without +0,5371.099961810868,5.280857460896809,106.01822699977645,756.2655808083043,0.6856771669990849,1000,mac,phase-10,with +1,5363.880609010041,5.273759404004894,105.87572676900965,755.2490761672071,0.6847555409985944,1000,mac,phase-10,with +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719,1000,mac,phase-10,with +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525,1000,mac,phase-10,with +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345,1000,mac,phase-10,with +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059,1000,mac,phase-10,with +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297,1000,mac,phase-10,with +7,5372.151900565224,5.281891725509057,106.03899084376413,756.4136966651483,0.6858114579990797,1000,mac,phase-10,with +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158,1000,mac,phase-10,with +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337,1000,mac,phase-10,with +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927,1000,mac,phase-10,with +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227,1000,mac,phase-10,with +12,5366.100043041169,5.27594154822965,105.91953538597753,755.5615785556473,0.6850388749990088,1000,mac,phase-10,with +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364,1000,mac,phase-10,with +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973,1000,mac,phase-10,with +15,5366.646735355581,5.276479055296713,105.93032635064031,755.6385543303717,0.685108665998996,1000,mac,phase-10,with +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709,1000,mac,phase-10,with +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213,1000,mac,phase-10,with +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005,1000,mac,phase-10,with +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962,1000,mac,phase-10,with +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437,1000,mac,phase-10,with +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114,1000,mac,phase-10,with +22,5365.320631859079,5.275175232319444,105.90415086656505,755.4518353271649,0.6849393749980663,1000,mac,phase-10,with +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881,1000,mac,phase-10,with +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078,1000,mac,phase-10,with +25,5378.330406530226,5.287966423346458,106.16094616996811,757.2836472219007,0.6866002089991525,1000,mac,phase-10,with +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997,1000,mac,phase-10,with +27,5403.673998780062,5.3128842053967,106.66119430074896,760.8520944019692,0.6898355839985015,1000,mac,phase-10,with +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381,1000,mac,phase-10,with +29,5330.02779723041,5.240475370021187,105.20751818802027,750.4825075789203,0.6804338750007446,1000,mac,phase-10,with +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.1297699579990876,1000,mac,phase-11,without +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.1281011659993964,1000,mac,phase-11,without +2,596.3705986768317,0.4998356696738266,17.56089319454044,107.19808995604669,0.1292779169998539,1000,mac,phase-11,without +3,588.5562142436058,0.4932862051547235,17.330788674435954,105.79344813218304,0.1275839580011961,1000,mac,phase-11,without +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.1278309170011198,1000,mac,phase-11,without +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598812,0.1344743330009805,1000,mac,phase-11,without +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338,1000,mac,phase-11,without +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092,1000,mac,phase-11,without +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083,1000,mac,phase-11,without +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.1300877080029749,1000,mac,phase-11,without +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.1316869169968413,1000,mac,phase-11,without +11,593.7434442190689,0.4976337745592017,17.48353327951329,106.72585685046349,0.1287084169998706,1000,mac,phase-11,without +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.1180163749995699,1000,mac,phase-11,without +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336,1000,mac,phase-11,without +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383,1000,mac,phase-11,without +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.1267631670016271,1000,mac,phase-11,without +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053044,0.1299459580004622,1000,mac,phase-11,without +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988683,0.1310292080015642,1000,mac,phase-11,without +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111336,0.1308710830016934,1000,mac,phase-11,without +19,592.0333350469189,0.4962004819636689,17.433176932990236,106.41846336514152,0.1283377090003341,1000,mac,phase-11,without +20,640.5170945999755,0.5368361411968281,18.86084309404856,115.13345774867972,0.1388477500004228,1000,mac,phase-11,without +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.1314542500003881,1000,mac,phase-11,without +22,527.3991446022711,0.4420286734667299,15.52994072779778,94.80041616949802,0.1143266669969307,1000,mac,phase-11,without +23,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.1336179169993556,1000,mac,phase-11,without +24,576.81763141262,0.4834477549974464,16.985131125576952,103.68342852178569,0.1250393329974031,1000,mac,phase-11,without +25,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.1294262920018809,1000,mac,phase-11,without +26,588.7255561438179,0.4934281355622321,17.33577516275309,105.82388747358006,0.1276206670008832,1000,mac,phase-11,without +27,574.9945015603392,0.4819197364589087,16.931446740922993,103.35571947922062,0.1246441250004863,1000,mac,phase-11,without +28,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.1329680839990032,1000,mac,phase-11,without +29,594.1982164073472,0.4980149324529366,17.496924626846507,106.80760251340648,0.1288069999973231,1000,mac,phase-11,without +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682,1000,mac,phase-11,with +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186,1000,mac,phase-11,with +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859,1000,mac,phase-11,with +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746,1000,mac,phase-11,with +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048,1000,mac,phase-11,with +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973,1000,mac,phase-11,with +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401,1000,mac,phase-11,with +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178,1000,mac,phase-11,with +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143,1000,mac,phase-11,with +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177,1000,mac,phase-11,with +10,5419.407102652684,4.659793684661683,94.0004423869882,754.4842925683155,0.6892624579995754,1000,mac,phase-11,with +11,5393.631146430152,4.637630625908802,93.55335449675025,750.8957904079389,0.6859841660007078,1000,mac,phase-11,with +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406,1000,mac,phase-11,with +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715,1000,mac,phase-11,with +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774,1000,mac,phase-11,with +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974,1000,mac,phase-11,with +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185,1000,mac,phase-11,with +17,5448.457186507701,4.684771951605358,94.50432052015412,758.5286154160444,0.6929571670007135,1000,mac,phase-11,with +18,5396.272993802559,4.639902177661347,93.59917774217568,751.2635856866639,0.6863201670021226,1000,mac,phase-11,with +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951,1000,mac,phase-11,with +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026,1000,mac,phase-11,with +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316,1000,mac,phase-11,with +22,5408.767675900578,4.650645537521451,93.81589990798668,753.0030824996963,0.6879092919989489,1000,mac,phase-11,with +23,5393.128921742544,4.637198795750398,93.54464333297923,750.8258712025788,0.6859202910018212,1000,mac,phase-11,with +24,5398.73039199595,4.642015133629659,93.64180168847167,751.6057021400655,0.686632708999241,1000,mac,phase-11,with +25,5350.694712888532,4.6007123951744475,92.80861551128883,744.9182242143605,0.6805233340019186,1000,mac,phase-11,with +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455,1000,mac,phase-11,with +27,5407.841192231741,4.649848914815828,93.7998299075078,752.8740983945686,0.6877914579999924,1000,mac,phase-11,with +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925,1000,mac,phase-11,with +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382,1000,mac,phase-11,with +0,364.8766742429042,0.8046531454405679,0.0,80.39826011527006,0.1268683750022319,1000,mac,phase-29,without +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.1270218329991621,1000,mac,phase-29,without +2,366.4414736680069,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891,1000,mac,phase-29,without +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623,1000,mac,phase-29,without +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.1270766669986187,1000,mac,phase-29,without +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.1276734169987321,1000,mac,phase-29,without +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.126081708996935,1000,mac,phase-29,without +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.1280686669997521,1000,mac,phase-29,without +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.1271314580008038,1000,mac,phase-29,without +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.1226394589975825,1000,mac,phase-29,without +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565,1000,mac,phase-29,without +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.1250696669994795,1000,mac,phase-29,without +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885,1000,mac,phase-29,without +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.1254135829985898,1000,mac,phase-29,without +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.1274225419983849,1000,mac,phase-29,without +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.1204695409978739,1000,mac,phase-29,without +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874,1000,mac,phase-29,without +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.1267092080015572,1000,mac,phase-29,without +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.1264430000010179,1000,mac,phase-29,without +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.1262780420001945,1000,mac,phase-29,without +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.1269816249987343,1000,mac,phase-29,without +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.1207254170003579,1000,mac,phase-29,without +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.1275093339972954,1000,mac,phase-29,without +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.1266951249999692,1000,mac,phase-29,without +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.1258205420017475,1000,mac,phase-29,without +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.1262950420023116,1000,mac,phase-29,without +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248,1000,mac,phase-29,without +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.1196737499994924,1000,mac,phase-29,without +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.1269724580015463,1000,mac,phase-29,without +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645,1000,mac,phase-29,without +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754,1000,mac,phase-29,with +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034,1000,mac,phase-29,with +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907,1000,mac,phase-29,with +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888,1000,mac,phase-29,with +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375,1000,mac,phase-29,with +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376,1000,mac,phase-29,with +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414,1000,mac,phase-29,with +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597,1000,mac,phase-29,with +8,4249.175090223917,1.6719688560820003,0.0,674.1044033951409,0.6699446659986279,1000,mac,phase-29,with +9,4241.42578773114,1.6689196542606657,0.0,672.8750262048151,0.6687228750015493,1000,mac,phase-29,with +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961,1000,mac,phase-29,with +11,4233.126786808715,1.6656541566560097,0.0,671.5584428805699,0.6674144159987918,1000,mac,phase-29,with +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814,1000,mac,phase-29,with +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955,1000,mac,phase-29,with +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012,1000,mac,phase-29,with +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068,1000,mac,phase-29,with +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584,1000,mac,phase-29,with +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977,1000,mac,phase-29,with +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389,1000,mac,phase-29,with +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907,1000,mac,phase-29,with +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867,1000,mac,phase-29,with +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752,1000,mac,phase-29,with +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945,1000,mac,phase-29,with +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916,1000,mac,phase-29,with +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299,1000,mac,phase-29,with +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818,1000,mac,phase-29,with +26,4236.9941789942895,1.6671759012655485,0.0,672.1719798722437,0.6680241670001124,1000,mac,phase-29,with +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245,1000,mac,phase-29,with +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405,1000,mac,phase-29,with +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837,1000,mac,phase-29,with +0,369.9041744801996,0.7311672810929373,0.0,80.96015894283615,0.1263925839994044,1000,mac,phase-16,without +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.1239147499982209,1000,mac,phase-16,without +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.1276219589999527,1000,mac,phase-16,without +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.1270622920019377,1000,mac,phase-16,without +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696,1000,mac,phase-16,without +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.126509249999799,1000,mac,phase-16,without +6,372.7495863983696,0.7367916352887809,0.0,81.5829283437941,0.1273648330025025,1000,mac,phase-16,without +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.1227005830005509,1000,mac,phase-16,without +8,376.1469165837081,0.7435069330495576,0.0,82.32649495039648,0.1285256669980299,1000,mac,phase-16,without +9,375.5150076768029,0.7422578768094935,0.0,82.18819035945118,0.1283097499981522,1000,mac,phase-16,without +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718,1000,mac,phase-16,without +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.1265221249996102,1000,mac,phase-16,without +12,372.6448394186792,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737,1000,mac,phase-16,without +13,352.6584027037055,0.697078603727001,0.0,77.18561266722611,0.1204998749999504,1000,mac,phase-16,without +14,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.1269626670000434,1000,mac,phase-16,without +15,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.1278689999999187,1000,mac,phase-16,without +16,371.6252751140856,0.7345692769550659,0.0,81.33685266647912,0.1269806669988611,1000,mac,phase-16,without +17,372.5041183310883,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274,1000,mac,phase-16,without +18,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.1287318750000849,1000,mac,phase-16,without +19,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.1274127080032485,1000,mac,phase-16,without +20,371.5436924157741,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037,1000,mac,phase-16,without +21,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.1269673329989018,1000,mac,phase-16,without +22,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.1263547090020438,1000,mac,phase-16,without +23,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.1277858329995069,1000,mac,phase-16,without +24,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187,1000,mac,phase-16,without +25,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782,1000,mac,phase-16,without +26,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.1278468330019677,1000,mac,phase-16,without +27,370.9710506631292,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306,1000,mac,phase-16,without +28,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.1266328330020769,1000,mac,phase-16,without +29,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.1273535420004918,1000,mac,phase-16,without +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203,1000,mac,phase-16,with +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171,1000,mac,phase-16,with +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709,1000,mac,phase-16,with +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271,1000,mac,phase-16,with +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992,1000,mac,phase-16,with +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234,1000,mac,phase-16,with +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881,1000,mac,phase-16,with +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039,1000,mac,phase-16,with +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999,1000,mac,phase-16,with +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505,1000,mac,phase-16,with +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424,1000,mac,phase-16,with +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857,1000,mac,phase-16,with +12,4724.174633692797,2.151358301301202,0.0,707.7621818006551,0.69712887499918,1000,mac,phase-16,with +13,4713.35774514804,2.146432360841879,0.0,706.1416268401905,0.6955326669994975,1000,mac,phase-16,with +14,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828,1000,mac,phase-16,with +15,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863,1000,mac,phase-16,with +16,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767,1000,mac,phase-16,with +17,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978,1000,mac,phase-16,with +18,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894,1000,mac,phase-16,with +19,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856,1000,mac,phase-16,with +20,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611,1000,mac,phase-16,with +21,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634,1000,mac,phase-16,with +22,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011,1000,mac,phase-16,with +23,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656,1000,mac,phase-16,with +24,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471,1000,mac,phase-16,with +25,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497,1000,mac,phase-16,with +26,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462,1000,mac,phase-16,with +27,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372,1000,mac,phase-16,with +28,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194,1000,mac,phase-16,with +29,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452,1000,mac,phase-16,with +0,369.7851773109551,0.0,0.0,80.6080421172184,0.1269397500000195,1000,mac,phase-20,without +1,374.92032490521166,0.0,0.0,81.72743310137321,0.1287025419987912,1000,mac,phase-20,without +2,370.56236276808175,0.0,0.0,80.7774577723199,0.1272065420016588,1000,mac,phase-20,without +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313,1000,mac,phase-20,without +4,367.7597386710104,0.0,0.0,80.16652457348731,0.1262444580024748,1000,mac,phase-20,without +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078,1000,mac,phase-20,without +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382,1000,mac,phase-20,without +7,368.1525174790658,0.0,0.0,80.25214490833339,0.1263792909994663,1000,mac,phase-20,without +8,368.5888759246009,0.0,0.0,80.34726499998142,0.1265290840019588,1000,mac,phase-20,without +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434,1000,mac,phase-20,without +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949,1000,mac,phase-20,without +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178,1000,mac,phase-20,without +12,371.52986822542886,0.0,0.0,80.98836054895796,0.1275386669985891,1000,mac,phase-20,without +13,323.38193430333433,0.0,0.0,70.49277845539667,0.1110104580002371,1000,mac,phase-20,without +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533,1000,mac,phase-20,without +15,370.7117773569245,0.0,0.0,80.81002808127047,0.127257832999021,1000,mac,phase-20,without +16,366.30344520570907,0.0,0.0,79.8490727874539,0.1257445419978466,1000,mac,phase-20,without +17,369.4200698015571,0.0,0.0,80.52845374185712,0.126814415998524,1000,mac,phase-20,without +18,370.4960902757074,0.0,0.0,80.76301128775451,0.1271837919994141,1000,mac,phase-20,without +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574,1000,mac,phase-20,without +20,373.687726585192,0.0,0.0,81.45874375580162,0.1282794159997138,1000,mac,phase-20,without +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511,1000,mac,phase-20,without +22,371.68098115026265,0.0,0.0,81.02130107160961,0.1275905410002451,1000,mac,phase-20,without +23,370.3033407611029,0.0,0.0,80.72099456576393,0.1271176250011194,1000,mac,phase-20,without +24,369.25851641569744,0.0,0.0,80.49323734344371,0.1267589579983905,1000,mac,phase-20,without +25,370.04164746358737,0.0,0.0,80.66394905490458,0.127027791000728,1000,mac,phase-20,without +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348,1000,mac,phase-20,without +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206,1000,mac,phase-20,without +28,366.14965808656615,0.0,0.0,79.8155493275167,0.1256917499995324,1000,mac,phase-20,without +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539,1000,mac,phase-20,without +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385,1000,mac,phase-20,with +1,4235.03031838744,2.499742443800431,0.0,671.8641090950546,0.6674069170003349,1000,mac,phase-20,with +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319,1000,mac,phase-20,with +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128,1000,mac,phase-20,with +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237,1000,mac,phase-20,with +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381,1000,mac,phase-20,with +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611,1000,mac,phase-20,with +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384,1000,mac,phase-20,with +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259,1000,mac,phase-20,with +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215,1000,mac,phase-20,with +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887,1000,mac,phase-20,with +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787,1000,mac,phase-20,with +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297,1000,mac,phase-20,with +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471,1000,mac,phase-20,with +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294,1000,mac,phase-20,with +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329,1000,mac,phase-20,with +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508,1000,mac,phase-20,with +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221,1000,mac,phase-20,with +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391,1000,mac,phase-20,with +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437,1000,mac,phase-20,with +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421,1000,mac,phase-20,with +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773,1000,mac,phase-20,with +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718,1000,mac,phase-20,with +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409,1000,mac,phase-20,with +24,4223.243286387955,2.492785104192349,0.0,669.9941617374582,0.6655493750004098,1000,mac,phase-20,with +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896,1000,mac,phase-20,with +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204,1000,mac,phase-20,with +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584,1000,mac,phase-20,with +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693,1000,mac,phase-20,with +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033,1000,mac,phase-20,with +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.1272624580014962,1000,mac,phase-18,without +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.1269249159995524,1000,mac,phase-18,without +2,367.4705435091116,0.4339677566877226,0.0,80.11712431157956,0.1269625000022642,1000,mac,phase-18,without +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.1263709169979847,1000,mac,phase-18,without +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.127091250000376,1000,mac,phase-18,without +5,353.7846134202577,0.417805230238313,0.0,77.13327327476549,0.1222339580017433,1000,mac,phase-18,without +6,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.1266598339971096,1000,mac,phase-18,without +7,367.1217775287856,0.4335558782589219,0.0,80.04108521703175,0.1268420000014885,1000,mac,phase-18,without +8,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.1299451669983682,1000,mac,phase-18,without +9,370.55613254945854,0.4376117117680742,0.0,80.78985448025985,0.128028582999832,1000,mac,phase-18,without +10,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.1267745839977578,1000,mac,phase-18,without +11,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448,1000,mac,phase-18,without +12,364.356853467442,0.4302906154684544,0.0,79.43826747109927,0.125886707999598,1000,mac,phase-18,without +13,366.21742300664187,0.4324878723733961,0.0,79.8439148997039,0.1265295420016627,1000,mac,phase-18,without +14,367.6326256151,0.4341591690585301,0.0,80.15246198003634,0.1270184999993944,1000,mac,phase-18,without +15,367.63057643996024,0.4341567490660867,0.0,80.15201521220062,0.1270177920014248,1000,mac,phase-18,without +16,368.71896362732775,0.4354420900395404,0.0,80.3893089303767,0.1273938340018503,1000,mac,phase-18,without +17,367.2385171663555,0.4336937430198602,0.0,80.06653717289728,0.1268823339996743,1000,mac,phase-18,without +18,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.1265819590007595,1000,mac,phase-18,without +19,367.5113042606,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143,1000,mac,phase-18,without +20,368.5741258840442,0.4352710425592818,0.0,80.35773093402126,0.1273437919990101,1000,mac,phase-18,without +21,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212,1000,mac,phase-18,without +22,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.1267945420004252,1000,mac,phase-18,without +23,368.7505580598764,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056,1000,mac,phase-18,without +24,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.1274272090013255,1000,mac,phase-18,without +25,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.1273582089997944,1000,mac,phase-18,without +26,357.5469937001284,0.4222484482287126,0.0,77.95355967299311,0.1235338750011578,1000,mac,phase-18,without +27,367.53795807863906,0.4340473705507183,0.0,80.13182225551724,0.1269857919978676,1000,mac,phase-18,without +28,363.3688037875811,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172,1000,mac,phase-18,without +29,366.4730872800551,0.4327898014753557,0.0,79.89965565698876,0.1266178750011022,1000,mac,phase-18,without +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636,1000,mac,phase-18,with +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234,1000,mac,phase-18,with +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285,1000,mac,phase-18,with +3,4361.984865902042,2.435313583419511,0.0,683.8834075438763,0.6773193749977509,1000,mac,phase-18,with +4,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504,1000,mac,phase-18,with +5,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946,1000,mac,phase-18,with +6,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274,1000,mac,phase-18,with +7,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965,1000,mac,phase-18,with +8,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027,1000,mac,phase-18,with +9,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538,1000,mac,phase-18,with +10,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695,1000,mac,phase-18,with +11,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498,1000,mac,phase-18,with +12,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783,1000,mac,phase-18,with +13,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614,1000,mac,phase-18,with +14,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265,1000,mac,phase-18,with +15,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494,1000,mac,phase-18,with +16,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688,1000,mac,phase-18,with +17,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763,1000,mac,phase-18,with +18,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674,1000,mac,phase-18,with +19,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219,1000,mac,phase-18,with +20,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243,1000,mac,phase-18,with +21,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514,1000,mac,phase-18,with +22,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831,1000,mac,phase-18,with +23,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491,1000,mac,phase-18,with +24,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778,1000,mac,phase-18,with +25,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625,1000,mac,phase-18,with +26,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292,1000,mac,phase-18,with +27,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944,1000,mac,phase-18,with +28,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629,1000,mac,phase-18,with +29,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866,1000,mac,phase-18,with +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277,1000,mac,phase-27,without +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.1244781660025182,1000,mac,phase-27,without +2,362.381369627801,0.9030269478496196,0.0,79.29914419820177,0.126015500001813,1000,mac,phase-27,without +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.1223343749988998,1000,mac,phase-27,without +4,365.53192544718695,0.9108778945153712,0.0,79.98857362577574,0.1271110829984536,1000,mac,phase-27,without +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.1269080830024904,1000,mac,phase-27,without +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.1264884590018482,1000,mac,phase-27,without +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.1262647080002352,1000,mac,phase-27,without +8,366.083701130626,0.9122528777597512,0.0,80.10931752475443,0.1273029590010992,1000,mac,phase-27,without +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.1199655410018749,1000,mac,phase-27,without +10,364.2674620465664,0.9077269474164552,0.0,79.71187378979317,0.126671374997386,1000,mac,phase-27,without +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.1241264589989441,1000,mac,phase-27,without +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474,1000,mac,phase-27,without +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.1250427089980803,1000,mac,phase-27,without +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496,1000,mac,phase-27,without +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.1217608330007351,1000,mac,phase-27,without +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.1264975830017647,1000,mac,phase-27,without +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924,1000,mac,phase-27,without +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957,1000,mac,phase-27,without +19,364.75057778178666,0.9089308352661044,0.0,79.8175929783679,0.1268393749996903,1000,mac,phase-27,without +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226,1000,mac,phase-27,without +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.1196454169985372,1000,mac,phase-27,without +22,367.629021552613,0.916103699300466,0.0,80.44747670523722,0.1278403329997672,1000,mac,phase-27,without +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.1261047499974665,1000,mac,phase-27,without +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.1269116660005238,1000,mac,phase-27,without +25,364.2674620570281,0.9077269474425252,0.0,79.71187379208249,0.126671375001024,1000,mac,phase-27,without +26,370.1547160771413,0.9223975389093508,0.0,81.00016906496558,0.1287186250010563,1000,mac,phase-27,without +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.1204572079986974,1000,mac,phase-27,without +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.1272289589978754,1000,mac,phase-27,without +29,365.1832510520659,0.9100090243106396,0.0,79.91227394964912,0.1269898339996871,1000,mac,phase-27,without +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416,1000,mac,phase-27,with +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251,1000,mac,phase-27,with +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694,1000,mac,phase-27,with +3,4252.917010990448,1.8079994850813177,0.0,673.0110675855475,0.6701307500006806,1000,mac,phase-27,with +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295,1000,mac,phase-27,with +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529,1000,mac,phase-27,with +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722,1000,mac,phase-27,with +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746,1000,mac,phase-27,with +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708,1000,mac,phase-27,with +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747,1000,mac,phase-27,with +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627,1000,mac,phase-27,with +11,4218.894760122639,1.7935359505492905,0.0,667.6271507776164,0.6647698749984556,1000,mac,phase-27,with +12,4301.269696958708,1.828555172179607,0.0,680.6627317774496,0.677749667000171,1000,mac,phase-27,with +13,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405,1000,mac,phase-27,with +14,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344,1000,mac,phase-27,with +15,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605,1000,mac,phase-27,with +16,4236.082134553483,1.8008426447642405,0.0,670.3470000445554,0.6674780839966843,1000,mac,phase-27,with +17,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561,1000,mac,phase-27,with +18,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166,1000,mac,phase-27,with +19,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142,1000,mac,phase-27,with +20,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264,1000,mac,phase-27,with +21,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589,1000,mac,phase-27,with +22,4223.751874950823,1.7956008065259397,0.0,668.3957742958872,0.6655352090019733,1000,mac,phase-27,with +23,4240.11870444225,1.802558670790971,0.0,670.9857748438761,0.6681141250010114,1000,mac,phase-27,with +24,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789,1000,mac,phase-27,with +25,4245.349196909234,1.8047822570172225,0.0,671.8134842278367,0.6689382919976197,1000,mac,phase-27,with +26,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449,1000,mac,phase-27,with +27,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376,1000,mac,phase-27,with +28,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237,1000,mac,phase-27,with +29,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428,1000,mac,phase-27,with +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392,1000,mac,phase-5,without +1,363.05448090538937,0.0,0.0,79.35981489298555,0.1272270419976848,1000,mac,phase-5,without +2,362.5024300899116,0.0,0.0,79.23914250679553,0.1270335840017651,1000,mac,phase-5,without +3,363.9394521290133,0.0,0.0,79.55326010902385,0.1275371669980813,1000,mac,phase-5,without +4,363.6331643510986,0.0,0.0,79.48630888644514,0.1274298330026795,1000,mac,phase-5,without +5,361.9330179821863,0.0,0.0,79.11467512836181,0.1268340419992455,1000,mac,phase-5,without +6,367.93805246242096,0.0,0.0,80.42731124729627,0.1289384170013363,1000,mac,phase-5,without +7,364.20709368215694,0.0,0.0,79.61176368144136,0.1276309579989174,1000,mac,phase-5,without +8,364.8000479429753,0.0,0.0,79.74137712199497,0.1278387499987729,1000,mac,phase-5,without +9,346.9887368845201,0.0,0.0,75.84801559378747,0.1215970410012232,1000,mac,phase-5,without +10,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772,1000,mac,phase-5,without +11,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003,1000,mac,phase-5,without +12,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107,1000,mac,phase-5,without +13,363.7586055346067,0.0,0.0,79.51372898350148,0.127473791999364,1000,mac,phase-5,without +14,362.0657101640452,0.0,0.0,79.14368021587322,0.1268805420004355,1000,mac,phase-5,without +15,356.5336590933504,0.0,0.0,77.93443319637895,0.1249419169980683,1000,mac,phase-5,without +16,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913,1000,mac,phase-5,without +17,364.2592916495958,0.0,0.0,79.62317359717468,0.127649250000104,1000,mac,phase-5,without +18,363.8922479704996,0.0,0.0,79.54294178635095,0.1275206250029441,1000,mac,phase-5,without +19,364.0480086058659,0.0,0.0,79.57698939033439,0.1275752090004971,1000,mac,phase-5,without +20,362.696591566812,0.0,0.0,79.2815841227969,0.1271016250029788,1000,mac,phase-5,without +21,362.9481816283438,0.0,0.0,79.33657901133893,0.1271897909973631,1000,mac,phase-5,without +22,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978,1000,mac,phase-5,without +23,362.2359756302134,0.0,0.0,79.18089842027075,0.1269402090001676,1000,mac,phase-5,without +24,363.4732460078574,0.0,0.0,79.45135245212167,0.1273737919982522,1000,mac,phase-5,without +25,363.7713268548058,0.0,0.0,79.51650972763022,0.1274782499967841,1000,mac,phase-5,without +26,363.4419763123466,0.0,0.0,79.44451723212573,0.1273628339986316,1000,mac,phase-5,without +27,363.1935936838931,0.0,0.0,79.39022345404717,0.1272757920014555,1000,mac,phase-5,without +28,363.6311440010843,0.0,0.0,79.48586725960514,0.1274291250010719,1000,mac,phase-5,without +29,364.6958917231345,0.0,0.0,79.71860968966385,0.1278022500009683,1000,mac,phase-5,without +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123,1000,mac,phase-5,with +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618,1000,mac,phase-5,with +2,4259.939212365175,1.800396943474364,0.0,670.4811580235084,0.6678189169979305,1000,mac,phase-5,with +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758,1000,mac,phase-5,with +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047,1000,mac,phase-5,with +5,4269.997117263699,1.8046477602898936,0.0,672.0641936931438,0.6693956669987529,1000,mac,phase-5,with +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345,1000,mac,phase-5,with +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504,1000,mac,phase-5,with +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013,1000,mac,phase-5,with +9,4296.453269566179,1.8158290409061095,0.0,676.2281854189235,0.6735431250017427,1000,mac,phase-5,with +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246,1000,mac,phase-5,with +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127,1000,mac,phase-5,with +12,4258.273787900644,1.799693077769701,0.0,670.2190332212722,0.6675578329995915,1000,mac,phase-5,with +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711,1000,mac,phase-5,with +14,4308.839199102784,1.8210637610671545,0.0,678.1776339826014,0.675484833001974,1000,mac,phase-5,with +15,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011,1000,mac,phase-5,with +16,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155,1000,mac,phase-5,with +17,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318,1000,mac,phase-5,with +18,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518,1000,mac,phase-5,with +19,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639,1000,mac,phase-5,with +20,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803,1000,mac,phase-5,with +21,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353,1000,mac,phase-5,with +22,4280.57356799962,1.8091177324252912,0.0,673.7288444272706,0.6710537079998176,1000,mac,phase-5,with +23,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939,1000,mac,phase-5,with +24,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774,1000,mac,phase-5,with +25,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006,1000,mac,phase-5,with +26,4258.146210229622,1.7996391590545475,0.0,670.198953492351,0.6675378330000967,1000,mac,phase-5,with +27,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034,1000,mac,phase-5,with +28,4263.6413570172435,1.8019615972366845,0.0,671.0638466746244,0.6683992920006858,1000,mac,phase-5,with +29,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724,1000,mac,phase-5,with +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.1283158750011352,1000,mac,phase-2,without +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.1281986249996407,1000,mac,phase-2,without +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687,1000,mac,phase-2,without +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156,1000,mac,phase-2,without +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992,1000,mac,phase-2,without +5,365.6555120565184,0.8698118310585068,0.0,85.27501374492822,0.1265472909981326,1000,mac,phase-2,without +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.126757792000717,1000,mac,phase-2,without +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424,1000,mac,phase-2,without +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.1266237919990089,1000,mac,phase-2,without +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.126802790997317,1000,mac,phase-2,without +10,366.241235094044,0.8712051338010197,0.0,85.41161100226151,0.126749999999447,1000,mac,phase-2,without +11,324.8559755248956,0.7727589536731277,0.0,75.76009895818471,0.1124272499982907,1000,mac,phase-2,without +12,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.1259749579985509,1000,mac,phase-2,without +13,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.1282745000025897,1000,mac,phase-2,without +14,326.7121034467617,0.7771742625449043,0.0,76.19296904719081,0.1130696250002074,1000,mac,phase-2,without +15,365.4347097682464,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312,1000,mac,phase-2,without +16,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.1260847909979929,1000,mac,phase-2,without +17,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.1271165419966564,1000,mac,phase-2,without +18,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071,1000,mac,phase-2,without +19,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.1272964579984545,1000,mac,phase-2,without +20,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.1278989170023123,1000,mac,phase-2,without +21,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.1252903750028053,1000,mac,phase-2,without +22,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.1290519159992982,1000,mac,phase-2,without +23,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.127279833999637,1000,mac,phase-2,without +24,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.1260045829985756,1000,mac,phase-2,without +25,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.1285861670003214,1000,mac,phase-2,without +26,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498,1000,mac,phase-2,without +27,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.1242197499996109,1000,mac,phase-2,without +28,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.1280166249998728,1000,mac,phase-2,without +29,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.1299367089995939,1000,mac,phase-2,without +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055,1000,mac,phase-2,with +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373,1000,mac,phase-2,with +2,4316.2545227606615,1.6630872731619033,0.0,683.460988156352,0.678783667000971,1000,mac,phase-2,with +3,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072,1000,mac,phase-2,with +4,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403,1000,mac,phase-2,with +5,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909,1000,mac,phase-2,with +6,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192,1000,mac,phase-2,with +7,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766,1000,mac,phase-2,with +8,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976,1000,mac,phase-2,with +9,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494,1000,mac,phase-2,with +10,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305,1000,mac,phase-2,with +11,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639,1000,mac,phase-2,with +12,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842,1000,mac,phase-2,with +13,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747,1000,mac,phase-2,with +14,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965,1000,mac,phase-2,with +15,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545,1000,mac,phase-2,with +16,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915,1000,mac,phase-2,with +17,4227.847230305918,1.629023238670687,0.0,669.462060349217,0.6648805420009012,1000,mac,phase-2,with +18,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213,1000,mac,phase-2,with +19,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505,1000,mac,phase-2,with +20,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857,1000,mac,phase-2,with +21,4215.308450834855,1.6241919469919075,0.0,667.4765966648173,0.6629086659995664,1000,mac,phase-2,with +22,4231.468303978479,1.6304184672208717,0.0,670.0354423352385,0.6654500000004191,1000,mac,phase-2,with +23,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565,1000,mac,phase-2,with +24,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735,1000,mac,phase-2,with +25,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721,1000,mac,phase-2,with +26,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212,1000,mac,phase-2,with +27,4228.263999257775,1.629183823069969,0.0,669.5280539828562,0.6649460840017127,1000,mac,phase-2,with +28,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414,1000,mac,phase-2,with +29,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668,1000,mac,phase-2,with +0,387.6502443930199,0.0,0.0,86.02535538551267,0.1311169590007921,1000,mac,phase-3,without +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788,1000,mac,phase-3,without +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028,1000,mac,phase-3,without +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004,1000,mac,phase-3,without +4,377.59806480196255,0.0,0.0,83.79462721178557,0.1277169579989276,1000,mac,phase-3,without +5,378.2879220367919,0.0,0.0,83.94771679356664,0.1279502920006052,1000,mac,phase-3,without +6,358.1112551934011,0.0,0.0,79.47021430052544,0.1211258330004056,1000,mac,phase-3,without +7,375.73853630594704,0.0,0.0,83.38197017871778,0.1270880000010947,1000,mac,phase-3,without +8,366.0266051541871,0.0,0.0,81.22674819474109,0.1238030829990748,1000,mac,phase-3,without +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211,1000,mac,phase-3,without +10,368.7047238020264,0.0,0.0,81.82106255872576,0.124708917002863,1000,mac,phase-3,without +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617,1000,mac,phase-3,without +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764,1000,mac,phase-3,without +13,376.62154905599033,0.0,0.0,83.57792384244205,0.1273866659976192,1000,mac,phase-3,without +14,373.9790358237752,0.0,0.0,82.99151084980181,0.126492874998803,1000,mac,phase-3,without +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924,1000,mac,phase-3,without +16,375.11520378706575,0.0,0.0,83.24364342093624,0.1268771670002024,1000,mac,phase-3,without +17,375.4187381278567,0.0,0.0,83.31100220611935,0.1269798329994955,1000,mac,phase-3,without +18,376.0866668397095,0.0,0.0,83.45922552247323,0.1272057500027585,1000,mac,phase-3,without +19,375.7424773478016,0.0,0.0,83.38284475452687,0.1270893330001854,1000,mac,phase-3,without +20,377.3000739401179,0.0,0.0,83.72849860703786,0.1276161669993598,1000,mac,phase-3,without +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222,1000,mac,phase-3,without +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624,1000,mac,phase-3,without +23,370.4305938208771,0.0,0.0,82.20405878759003,0.1252926669985754,1000,mac,phase-3,without +24,378.135167384867,0.0,0.0,83.91381826413529,0.1278986249999434,1000,mac,phase-3,without +25,331.56981324082483,0.0,0.0,73.58027353706892,0.1121485830008168,1000,mac,phase-3,without +26,373.97989913536014,0.0,0.0,82.99170243148396,0.1264931670011719,1000,mac,phase-3,without +27,375.5505517329566,0.0,0.0,83.34025360576987,0.1270244170009391,1000,mac,phase-3,without +28,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871,1000,mac,phase-3,without +29,376.9114124413168,0.0,0.0,83.64224883925715,0.1274847079985193,1000,mac,phase-3,without +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888,1000,mac,phase-3,with +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896,1000,mac,phase-3,with +2,4296.3093777503855,1.8312061917425837,0.0,673.4510480068589,0.6612518339970848,1000,mac,phase-3,with +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919,1000,mac,phase-3,with +4,4281.318895847793,1.824816832675615,0.0,671.1012740823575,0.6589446250000037,1000,mac,phase-3,with +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367,1000,mac,phase-3,with +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265,1000,mac,phase-3,with +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202,1000,mac,phase-3,with +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616,1000,mac,phase-3,with +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722,1000,mac,phase-3,with +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922,1000,mac,phase-3,with +11,4294.81365551898,1.8305686734517777,0.0,673.2165919619837,0.6610216250010126,1000,mac,phase-3,with +12,4367.050740155173,1.8613581220292663,0.0,684.5398315324722,0.6721397500004969,1000,mac,phase-3,with +13,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633,1000,mac,phase-3,with +14,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174,1000,mac,phase-3,with +15,4304.474772925574,1.8346865095894,0.0,674.7309823539053,0.6625085830019088,1000,mac,phase-3,with +16,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507,1000,mac,phase-3,with +17,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669,1000,mac,phase-3,with +18,4304.719237909603,1.8347907073445096,0.0,674.7693024992254,0.66254620899781,1000,mac,phase-3,with +19,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735,1000,mac,phase-3,with +20,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411,1000,mac,phase-3,with +21,4289.335939610233,1.828233919036592,0.0,672.3579541882391,0.6601785410020966,1000,mac,phase-3,with +22,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537,1000,mac,phase-3,with +23,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059,1000,mac,phase-3,with +24,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462,1000,mac,phase-3,with +25,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423,1000,mac,phase-3,with +26,4296.307207702341,1.831205266807932,0.0,673.450707849528,0.6612515000015264,1000,mac,phase-3,with +27,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959,1000,mac,phase-3,with +28,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385,1000,mac,phase-3,with +29,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169,1000,mac,phase-3,with +0,365.0774252251925,0.0,0.0,78.66773310494989,0.1270807500004593,1000,mac,phase-4,without +1,367.5883720326905,0.0,0.0,79.20879776588075,0.1279547920021286,1000,mac,phase-4,without +2,350.57697332024804,0.0,0.0,75.54314198662561,0.1220332500015501,1000,mac,phase-4,without +3,361.880120821408,0.0,0.0,77.97877051205046,0.1259677919988462,1000,mac,phase-4,without +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142,1000,mac,phase-4,without +5,364.4711468988576,0.0,0.0,78.53709084041105,0.1268697090017667,1000,mac,phase-4,without +6,369.5311022105454,0.0,0.0,79.62742178524363,0.1286310420000518,1000,mac,phase-4,without +7,362.71598461213733,0.0,0.0,78.15888438669123,0.1262587499986693,1000,mac,phase-4,without +8,364.6465054066651,0.0,0.0,78.57487749972414,0.1269307500006107,1000,mac,phase-4,without +9,357.7011552221953,0.0,0.0,77.07827728048227,0.1245131249997939,1000,mac,phase-4,without +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524,1000,mac,phase-4,without +11,363.63528023405354,0.0,0.0,78.35697634645797,0.1265787500014994,1000,mac,phase-4,without +12,364.8904548594365,0.0,0.0,78.62744429546584,0.1270156669997959,1000,mac,phase-4,without +13,363.9725956478543,0.0,0.0,78.42966185674032,0.1266961670007731,1000,mac,phase-4,without +14,364.7223961358544,0.0,0.0,78.59123061064388,0.1269571670018194,1000,mac,phase-4,without +15,365.02679214761287,0.0,0.0,78.65682257157232,0.1270631250008591,1000,mac,phase-4,without +16,361.9313514452685,0.0,0.0,77.98980980609107,0.1259856249998847,1000,mac,phase-4,without +17,345.0865750669766,0.0,0.0,74.36005819512079,0.1201220830007514,1000,mac,phase-4,without +18,364.1344290208866,0.0,0.0,78.46453408853974,0.1267525000002933,1000,mac,phase-4,without +19,364.22934916661006,0.0,0.0,78.48498770241478,0.1267855410005722,1000,mac,phase-4,without +20,363.6205571430931,0.0,0.0,78.3538037805579,0.1265736250024929,1000,mac,phase-4,without +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022,1000,mac,phase-4,without +22,362.8233554694112,0.0,0.0,78.18202090886338,0.1262961249994987,1000,mac,phase-4,without +23,351.26608593148893,0.0,0.0,75.69163357562735,0.1222731250018114,1000,mac,phase-4,without +24,365.8098711297876,0.0,0.0,78.82556225283807,0.1273357089994533,1000,mac,phase-4,without +25,362.3659829171635,0.0,0.0,78.08346520702132,0.1261369169988029,1000,mac,phase-4,without +26,362.8579468409589,0.0,0.0,78.1894747380969,0.1263081659999443,1000,mac,phase-4,without +27,372.2966479317493,0.0,0.0,80.22334801253913,0.1295937079994473,1000,mac,phase-4,without +28,364.5761218333096,0.0,0.0,78.55971108355833,0.1269062499995925,1000,mac,phase-4,without +29,346.7069542397634,0.0,0.0,74.70922126981647,0.120686124999338,1000,mac,phase-4,without +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083,1000,mac,phase-4,with +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339,1000,mac,phase-4,with +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718,1000,mac,phase-4,with +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503,1000,mac,phase-4,with +4,4332.218872799026,3.001398692530848,0.0,676.281823175923,0.6688972499978263,1000,mac,phase-4,with +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471,1000,mac,phase-4,with +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487,1000,mac,phase-4,with +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688,1000,mac,phase-4,with +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175,1000,mac,phase-4,with +9,4403.067309093179,3.0504831017688643,0.0,687.3416313418977,0.6798362919980718,1000,mac,phase-4,with +10,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898,1000,mac,phase-4,with +11,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943,1000,mac,phase-4,with +12,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758,1000,mac,phase-4,with +13,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134,1000,mac,phase-4,with +14,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097,1000,mac,phase-4,with +15,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611,1000,mac,phase-4,with +16,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152,1000,mac,phase-4,with +17,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642,1000,mac,phase-4,with +18,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146,1000,mac,phase-4,with +19,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455,1000,mac,phase-4,with +20,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713,1000,mac,phase-4,with +21,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074,1000,mac,phase-4,with +22,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953,1000,mac,phase-4,with +23,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337,1000,mac,phase-4,with +24,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074,1000,mac,phase-4,with +25,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496,1000,mac,phase-4,with +26,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735,1000,mac,phase-4,with +27,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393,1000,mac,phase-4,with +28,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164,1000,mac,phase-4,with +29,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869,1000,mac,phase-4,with +0,317.8188162702387,0.0,0.0,68.6825576445368,0.110928750000312,1000,mac,phase-22,without +1,361.5172471330565,0.0,0.0,78.12605136820386,0.1261808749986812,1000,mac,phase-22,without +2,365.5671462435493,0.0,0.0,79.00125892317271,0.1275944170010916,1000,mac,phase-22,without +3,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753,1000,mac,phase-22,without +4,363.29860543222503,0.0,0.0,78.511013610226,0.126802624999982,1000,mac,phase-22,without +5,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168,1000,mac,phase-22,without +6,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412,1000,mac,phase-22,without +7,361.5755026402199,0.0,0.0,78.13864073366628,0.1262012080005661,1000,mac,phase-22,without +8,320.61966160542903,0.0,0.0,69.28783716651473,0.1119063330006611,1000,mac,phase-22,without +9,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971,1000,mac,phase-22,without +10,363.8756795742305,0.0,0.0,78.63572280299373,0.1270040420022269,1000,mac,phase-22,without +11,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991,1000,mac,phase-22,without +12,364.5024111287863,0.0,0.0,78.77116326126676,0.1272227910012588,1000,mac,phase-22,without +13,363.3991207344049,0.0,0.0,78.53273557155335,0.1268377079977654,1000,mac,phase-22,without +14,362.13132653995166,0.0,0.0,78.25875762127396,0.1263952080007584,1000,mac,phase-22,without +15,364.4982367205501,0.0,0.0,78.77026114654089,0.1272213340016605,1000,mac,phase-22,without +16,360.4311471743661,0.0,0.0,77.89133863503122,0.1258017919972189,1000,mac,phase-22,without +17,362.40422461795254,0.0,0.0,78.31773253721299,0.1264904580020811,1000,mac,phase-22,without +18,361.2869669971778,0.0,0.0,78.0762864458733,0.1261004999978467,1000,mac,phase-22,without +19,363.55037360229466,0.0,0.0,78.56542222598009,0.1268904999997175,1000,mac,phase-22,without +20,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709,1000,mac,phase-22,without +21,363.6459953773748,0.0,0.0,78.58608666667018,0.1269238750028307,1000,mac,phase-22,without +22,366.4062541016947,0.0,0.0,79.18259517794013,0.1278872920011053,1000,mac,phase-22,without +23,362.061848555091,0.0,0.0,78.24374301088613,0.1263709580016438,1000,mac,phase-22,without +24,362.24270905991347,0.0,0.0,78.28282805372238,0.1264340839989017,1000,mac,phase-22,without +25,362.0681746289213,0.0,0.0,78.24511011348758,0.1263731660001212,1000,mac,phase-22,without +26,362.6975363200963,0.0,0.0,78.38111896010236,0.1265928329994494,1000,mac,phase-22,without +27,358.52527861331754,0.0,0.0,77.47946897657832,0.125136584003485,1000,mac,phase-22,without +28,355.4742151019403,0.0,0.0,76.82011580184641,0.1240716669999528,1000,mac,phase-22,without +29,363.61639058594017,0.0,0.0,78.57968889318992,0.1269135420006932,1000,mac,phase-22,without +0,4233.805184421818,2.86436991299503,0.0,671.3616783283818,0.6663879580009962,1000,mac,phase-22,with +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342,1000,mac,phase-22,with +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766,1000,mac,phase-22,with +3,4232.574753845726,2.863537468381105,0.0,671.1665668623015,0.6661942920000001,1000,mac,phase-22,with +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978,1000,mac,phase-22,with +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734,1000,mac,phase-22,with +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708,1000,mac,phase-22,with +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662,1000,mac,phase-22,with +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107,1000,mac,phase-22,with +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705,1000,mac,phase-22,with +10,4212.616188554973,2.850034552815756,0.0,668.0017032686884,0.6630528750029043,1000,mac,phase-22,with +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905,1000,mac,phase-22,with +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128,1000,mac,phase-22,with +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049,1000,mac,phase-22,with +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436,1000,mac,phase-22,with +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658,1000,mac,phase-22,with +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247,1000,mac,phase-22,with +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384,1000,mac,phase-22,with +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947,1000,mac,phase-22,with +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966,1000,mac,phase-22,with +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179,1000,mac,phase-22,with +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067,1000,mac,phase-22,with +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647,1000,mac,phase-22,with +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332,1000,mac,phase-22,with +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924,1000,mac,phase-22,with +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472,1000,mac,phase-22,with +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219,1000,mac,phase-22,with +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785,1000,mac,phase-22,with +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212,1000,mac,phase-22,with +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668,1000,mac,phase-22,with +0,395.6846676399492,0.0,0.0,81.77438952733165,0.1266846669968799,1000,mac,phase-25,without +1,396.35098819705064,0.0,0.0,81.91209503184734,0.1268979999986186,1000,mac,phase-25,without +2,396.2011939034781,0.0,0.0,81.88113771175549,0.1268500410005799,1000,mac,phase-25,without +3,386.0664705823485,0.0,0.0,79.78663954088394,0.1236052499989455,1000,mac,phase-25,without +4,386.5682950767456,0.0,0.0,79.89034937610185,0.1237659170001279,1000,mac,phase-25,without +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057,1000,mac,phase-25,without +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384,1000,mac,phase-25,without +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581,1000,mac,phase-25,without +8,398.01523257383474,0.0,0.0,82.25603701157462,0.1274308339998242,1000,mac,phase-25,without +9,397.0782147101372,0.0,0.0,82.06238769926466,0.1271308329996827,1000,mac,phase-25,without +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144,1000,mac,phase-25,without +11,396.4767043441066,0.0,0.0,81.93807622854256,0.1269382499995117,1000,mac,phase-25,without +12,396.02576599844105,0.0,0.0,81.84488280724774,0.1267938749988388,1000,mac,phase-25,without +13,399.8958961197486,0.0,0.0,82.64470537795509,0.1280329580004036,1000,mac,phase-25,without +14,396.5793855518793,0.0,0.0,81.9592968968379,0.1269711250024556,1000,mac,phase-25,without +15,401.0316391948003,0.0,0.0,82.87942434540003,0.128396584001166,1000,mac,phase-25,without +16,480.5304403215797,0.0,0.0,99.30908781725496,0.1538493750013003,1000,mac,phase-25,without +17,401.0917611744532,0.0,0.0,82.89184948740166,0.1284158329981437,1000,mac,phase-25,without +18,395.6790705523099,0.0,0.0,81.7732328021354,0.1266828750012791,1000,mac,phase-25,without +19,395.4228251241656,0.0,0.0,81.72027569975218,0.1266008339989639,1000,mac,phase-25,without +20,389.6295971968901,0.0,0.0,80.52301506296472,0.1247460410013445,1000,mac,phase-25,without +21,397.2721267874588,0.0,0.0,82.10246264540683,0.1271929169997747,1000,mac,phase-25,without +22,377.60744195350105,0.0,0.0,78.0384497354916,0.1208969589970365,1000,mac,phase-25,without +23,403.68586149940114,0.0,0.0,83.42796065822493,0.1292463749996386,1000,mac,phase-25,without +24,397.46993997509657,0.0,0.0,82.14334381665871,0.1272562500016647,1000,mac,phase-25,without +25,396.65291621411296,0.0,0.0,81.97449315160198,0.1269946669999626,1000,mac,phase-25,without +26,396.9833419725365,0.0,0.0,82.0427807727533,0.1271004580012231,1000,mac,phase-25,without +27,398.6449814389623,0.0,0.0,82.38618440724828,0.1276324579994252,1000,mac,phase-25,without +28,376.2813037352024,0.0,0.0,77.76438265101989,0.1204723749979166,1000,mac,phase-25,without +29,400.714743939528,0.0,0.0,82.81393301312637,0.1282951250032056,1000,mac,phase-25,without +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494,1000,mac,phase-25,with +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887,1000,mac,phase-25,with +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709,1000,mac,phase-25,with +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783,1000,mac,phase-25,with +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572,1000,mac,phase-25,with +5,4241.797005501357,1.7569867632493603,0.0,670.3401762201004,0.6658014579988958,1000,mac,phase-25,with +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688,1000,mac,phase-25,with +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704,1000,mac,phase-25,with +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198,1000,mac,phase-25,with +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689,1000,mac,phase-25,with +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537,1000,mac,phase-25,with +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878,1000,mac,phase-25,with +12,4249.790443577442,1.7602977102075297,0.0,671.6033961906878,0.6670561249993625,1000,mac,phase-25,with +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807,1000,mac,phase-25,with +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101,1000,mac,phase-25,with +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622,1000,mac,phase-25,with +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319,1000,mac,phase-25,with +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364,1000,mac,phase-25,with +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109,1000,mac,phase-25,with +19,4259.435815226876,1.7642929014655495,0.0,673.1276747270732,0.6685700829984853,1000,mac,phase-25,with +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986,1000,mac,phase-25,with +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958,1000,mac,phase-25,with +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543,1000,mac,phase-25,with +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503,1000,mac,phase-25,with +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133,1000,mac,phase-25,with +25,4247.644486345279,1.7594088372967045,0.0,671.2642660184275,0.6667192909990263,1000,mac,phase-25,with +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146,1000,mac,phase-25,with +27,4250.709990274736,1.7606785939163063,0.0,671.7487141053139,0.6672004590000142,1000,mac,phase-25,with +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455,1000,mac,phase-25,with +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169,1000,mac,phase-25,with +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.1266642499977024,1000,mac,phase-13,without +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.127472290998412,1000,mac,phase-13,without +2,362.06830888108055,0.9323075821841325,0.0,78.97977089074149,0.1258273749990621,1000,mac,phase-13,without +3,368.62949009525886,0.9492022919502712,0.0,80.4109941609301,0.1281075419974513,1000,mac,phase-13,without +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.1265159579997998,1000,mac,phase-13,without +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.126595959001861,1000,mac,phase-13,without +6,364.5455978038035,0.938686475860447,0.0,79.52015431217787,0.1266882919990166,1000,mac,phase-13,without +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.126838874999521,1000,mac,phase-13,without +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.1260080419997393,1000,mac,phase-13,without +9,367.5248896744274,0.9463580017366168,0.0,80.17004214711623,0.1277236669993726,1000,mac,phase-13,without +10,364.9063615290765,0.9396154242058252,0.0,79.59884950772204,0.1268136660000891,1000,mac,phase-13,without +11,363.7304249899235,0.936587447095628,0.0,79.3423365896725,0.1264049999990675,1000,mac,phase-13,without +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.1258190410007955,1000,mac,phase-13,without +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.126164040997537,1000,mac,phase-13,without +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.1199694579991046,1000,mac,phase-13,without +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.1276645409998309,1000,mac,phase-13,without +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.1269337920020916,1000,mac,phase-13,without +17,365.2405141303859,0.9404758502529708,0.0,79.67173988571597,0.1269297920007375,1000,mac,phase-13,without +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482,1000,mac,phase-13,without +19,364.44404506429737,0.9384249826926916,0.0,79.4980021052523,0.1266529999993508,1000,mac,phase-13,without +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.1197223750023113,1000,mac,phase-13,without +21,363.56424934911365,0.9361595532256008,0.0,79.3060878661116,0.1263472499995259,1000,mac,phase-13,without +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.1264897919973009,1000,mac,phase-13,without +23,365.373837350975,0.9408191508025844,0.0,79.70082234656178,0.1269761250005103,1000,mac,phase-13,without +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.1266297080001095,1000,mac,phase-13,without +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164,1000,mac,phase-13,without +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.1203132499977073,1000,mac,phase-13,without +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905,1000,mac,phase-13,without +28,364.4625099886328,0.9384725289389112,0.0,79.50202995153919,0.1266594170010648,1000,mac,phase-13,without +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.1263581659986812,1000,mac,phase-13,without +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987,1000,mac,phase-13,with +1,4232.037816623077,1.633116390355264,0.0,670.8442184708318,0.6674780419998569,1000,mac,phase-13,with +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916,1000,mac,phase-13,with +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375,1000,mac,phase-13,with +4,4243.973240627595,1.637722194323049,0.0,672.7361699455987,0.6693605000000389,1000,mac,phase-13,with +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998,1000,mac,phase-13,with +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657,1000,mac,phase-13,with +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266,1000,mac,phase-13,with +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238,1000,mac,phase-13,with +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002,1000,mac,phase-13,with +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034,1000,mac,phase-13,with +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991,1000,mac,phase-13,with +12,4237.355510600818,1.635168454531022,0.0,671.6871561796002,0.6683167499977571,1000,mac,phase-13,with +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947,1000,mac,phase-13,with +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404,1000,mac,phase-13,with +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294,1000,mac,phase-13,with +16,4265.879642022094,1.646175734844482,0.0,676.208677366321,0.6728155829987372,1000,mac,phase-13,with +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048,1000,mac,phase-13,with +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143,1000,mac,phase-13,with +19,4242.011171658709,1.636965044427198,0.0,672.4251513108294,0.6690510420012288,1000,mac,phase-13,with +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099,1000,mac,phase-13,with +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737,1000,mac,phase-13,with +22,4208.176472784298,1.6239084500183545,0.0,667.0618220810089,0.6637146249995567,1000,mac,phase-13,with +23,4214.574135928659,1.6263772674046235,0.0,668.0759518024544,0.6647236659991904,1000,mac,phase-13,with +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738,1000,mac,phase-13,with +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659,1000,mac,phase-13,with +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104,1000,mac,phase-13,with +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474,1000,mac,phase-13,with +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761,1000,mac,phase-13,with +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561,1000,mac,phase-13,with +0,369.911488017962,0.937586825790073,0.0,81.70399481884921,0.1261905419996765,1000,mac,phase-14,without +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.1273650000002817,1000,mac,phase-14,without +2,358.4963540466036,0.908653744302064,0.0,79.182683432037,0.1222964160006085,1000,mac,phase-14,without +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.1275479169999016,1000,mac,phase-14,without +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467,1000,mac,phase-14,without +5,373.2398182137489,0.94602289399701,0.0,82.43913790545372,0.1273259589979716,1000,mac,phase-14,without +6,372.4002203609801,0.9438948284699412,0.0,82.25369219523775,0.1270395409992488,1000,mac,phase-14,without +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.1270712080004159,1000,mac,phase-14,without +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.1210473329992964,1000,mac,phase-14,without +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482,1000,mac,phase-14,without +10,374.8352147805899,0.9500666256772444,0.0,82.79152023758844,0.1278702079980576,1000,mac,phase-14,without +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.1311800829971616,1000,mac,phase-14,without +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.1267409579995728,1000,mac,phase-14,without +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.1219887500010372,1000,mac,phase-14,without +14,373.0092159450698,0.9454384037713364,0.0,82.38820375721647,0.1272472920027212,1000,mac,phase-14,without +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.1268485420005163,1000,mac,phase-14,without +16,371.0299297507992,0.940421655926711,0.0,81.95103001647053,0.1265720839983259,1000,mac,phase-14,without +17,372.40693906507727,0.9439118578638692,0.0,82.25517618528004,0.1270418329986569,1000,mac,phase-14,without +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.1277537079986359,1000,mac,phase-14,without +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.1282872920019144,1000,mac,phase-14,without +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.1205967499990947,1000,mac,phase-14,without +21,371.27811733858584,0.9410507183380468,0.0,82.0058483123155,0.1266567499988014,1000,mac,phase-14,without +22,326.0047805771626,0.8262997968824616,0.0,72.00612515690023,0.1112123339989921,1000,mac,phase-14,without +23,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.124332957999286,1000,mac,phase-14,without +24,371.9971566406658,0.9428732131744948,0.0,82.16466571949168,0.1269020409999939,1000,mac,phase-14,without +25,369.4635977484595,0.9364515920120275,0.0,81.60506730390526,0.1260377500002505,1000,mac,phase-14,without +26,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.1198882499993487,1000,mac,phase-14,without +27,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.1274375840002903,1000,mac,phase-14,without +28,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.127153334000468,1000,mac,phase-14,without +29,371.3744862190492,0.9412949772909728,0.0,82.0271337353562,0.1266896250017453,1000,mac,phase-14,without +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179,1000,mac,phase-14,with +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888,1000,mac,phase-14,with +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684,1000,mac,phase-14,with +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505,1000,mac,phase-14,with +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456,1000,mac,phase-14,with +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906,1000,mac,phase-14,with +6,4351.687882995867,3.278171278302327,0.0,685.6785264482053,0.6781866250021267,1000,mac,phase-14,with +7,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492,1000,mac,phase-14,with +8,4279.214199576053,3.223576106541973,0.0,674.2591301611349,0.6668920000010985,1000,mac,phase-14,with +9,4289.831616235325,3.23157431580652,0.0,675.9320751896751,0.6685466659982922,1000,mac,phase-14,with +10,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947,1000,mac,phase-14,with +11,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687,1000,mac,phase-14,with +12,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766,1000,mac,phase-14,with +13,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288,1000,mac,phase-14,with +14,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154,1000,mac,phase-14,with +15,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639,1000,mac,phase-14,with +16,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175,1000,mac,phase-14,with +17,4306.362254109225,3.244027015482428,0.0,678.5367434754947,0.6711228750027658,1000,mac,phase-14,with +18,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187,1000,mac,phase-14,with +19,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203,1000,mac,phase-14,with +20,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345,1000,mac,phase-14,with +21,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055,1000,mac,phase-14,with +22,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631,1000,mac,phase-14,with +23,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103,1000,mac,phase-14,with +24,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301,1000,mac,phase-14,with +25,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826,1000,mac,phase-14,with +26,4277.992096765777,3.222655483914731,0.0,674.0665681767628,0.6667015419989184,1000,mac,phase-14,with +27,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038,1000,mac,phase-14,with +28,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906,1000,mac,phase-14,with +29,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585,1000,mac,phase-14,with +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.126946249998582,1000,mac,phase-15,without +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.1295307910004339,1000,mac,phase-15,without +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878,1000,mac,phase-15,without +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836749,0.127710290998948,1000,mac,phase-15,without +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596,1000,mac,phase-15,without +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.1245412919997761,1000,mac,phase-15,without +6,680.491389862858,0.7190504713912117,0.0,102.58453391847954,0.1142339580001134,1000,mac,phase-15,without +7,773.1125247644942,0.8169198518182477,0.0,116.54723219273669,0.129782250001881,1000,mac,phase-15,without +8,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971,1000,mac,phase-15,without +9,741.2949626305472,0.7832993925563833,0.0,111.750713338044,0.1244410420003987,1000,mac,phase-15,without +10,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.1315446250009699,1000,mac,phase-15,without +11,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268,1000,mac,phase-15,without +12,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.1252313749973836,1000,mac,phase-15,without +13,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.1264663750007457,1000,mac,phase-15,without +14,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.1290887920004024,1000,mac,phase-15,without +15,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.1260320420005882,1000,mac,phase-15,without +16,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.1289440420005121,1000,mac,phase-15,without +17,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.1285882080010196,1000,mac,phase-15,without +18,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.1219281670018972,1000,mac,phase-15,without +19,790.462774080707,0.8352532284566974,0.0,119.16279392648885,0.1326948329988226,1000,mac,phase-15,without +20,751.1743926154271,0.7937386264593074,0.0,113.24004404152788,0.1260995000011462,1000,mac,phase-15,without +21,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.1307220839989895,1000,mac,phase-15,without +22,774.9388388883993,0.8188496514472585,0.0,116.82255027314224,0.1300888330006273,1000,mac,phase-15,without +23,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128,1000,mac,phase-15,without +24,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.1206704579999495,1000,mac,phase-15,without +25,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.1268399170003249,1000,mac,phase-15,without +26,756.88342996767,0.7997711583332929,0.0,114.1006852555498,0.1270578749972628,1000,mac,phase-15,without +27,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334,1000,mac,phase-15,without +28,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802,1000,mac,phase-15,without +29,760.1081492584486,0.8031786017788388,0.0,114.586813853781,0.1275992080009018,1000,mac,phase-15,without +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615,1000,mac,phase-15,with +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135,1000,mac,phase-15,with +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816,1000,mac,phase-15,with +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988,1000,mac,phase-15,with +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868,1000,mac,phase-15,with +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682,1000,mac,phase-15,with +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318,1000,mac,phase-15,with +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657,1000,mac,phase-15,with +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435,1000,mac,phase-15,with +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166,1000,mac,phase-15,with +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583,1000,mac,phase-15,with +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683,1000,mac,phase-15,with +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049,1000,mac,phase-15,with +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155,1000,mac,phase-15,with +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538,1000,mac,phase-15,with +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964,1000,mac,phase-15,with +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264,1000,mac,phase-15,with +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035,1000,mac,phase-15,with +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506,1000,mac,phase-15,with +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285,1000,mac,phase-15,with +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116,1000,mac,phase-15,with +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129,1000,mac,phase-15,with +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858,1000,mac,phase-15,with +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954,1000,mac,phase-15,with +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173,1000,mac,phase-15,with +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859,1000,mac,phase-15,with +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842,1000,mac,phase-15,with +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256,1000,mac,phase-15,with +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392,1000,mac,phase-15,with +29,4394.9357444520365,2.1957352998409876,0.0,690.0441263390903,0.6867462920017715,1000,mac,phase-15,with +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888,1000,mac,phase-12,without +1,414.74347979123286,0.0,0.0,83.8936897077914,0.128032249998796,1000,mac,phase-12,without +2,413.8073026522728,0.0,0.0,83.70432119873855,0.1277432499991846,1000,mac,phase-12,without +3,414.58259013722255,0.0,0.0,83.86114518962916,0.1279825829988112,1000,mac,phase-12,without +4,405.3386539625768,0.0,0.0,81.99129562983686,0.1251289589999942,1000,mac,phase-12,without +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936,1000,mac,phase-12,without +6,413.9982892718827,0.0,0.0,83.74295368600988,0.127802208000503,1000,mac,phase-12,without +7,409.3646465046534,0.0,0.0,82.80566736935371,0.1263717920010094,1000,mac,phase-12,without +8,412.4757866594092,0.0,0.0,83.43498413862977,0.1273322080014622,1000,mac,phase-12,without +9,412.46337016487814,0.0,0.0,83.43247254871889,0.1273283750015252,1000,mac,phase-12,without +10,410.6350162053592,0.0,0.0,83.06263584909651,0.1267639580000832,1000,mac,phase-12,without +11,412.46282918595386,0.0,0.0,83.43236312031262,0.1273282080001081,1000,mac,phase-12,without +12,413.48687415937496,0.0,0.0,83.63950540327329,0.1276443329988978,1000,mac,phase-12,without +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001,1000,mac,phase-12,without +14,409.1943076028259,0.0,0.0,82.77121147150024,0.1263192079968575,1000,mac,phase-12,without +15,363.8779890686815,0.0,0.0,73.60469445303713,0.1123299579994636,1000,mac,phase-12,without +16,406.66274208677544,0.0,0.0,82.25913019180082,0.1255377079978643,1000,mac,phase-12,without +17,361.25707207713594,0.0,0.0,73.07453929074433,0.1115208749979501,1000,mac,phase-12,without +18,411.9619420265209,0.0,0.0,83.3310444161506,0.1271735830014222,1000,mac,phase-12,without +19,411.5208471033168,0.0,0.0,83.24182039595,0.1270374160012579,1000,mac,phase-12,without +20,411.8797430808043,0.0,0.0,83.31441733656462,0.1271482080010173,1000,mac,phase-12,without +21,410.98729740297114,0.0,0.0,83.13389476194843,0.1268727080023381,1000,mac,phase-12,without +22,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163,1000,mac,phase-12,without +23,430.42633868348526,0.0,0.0,87.06599490786343,0.1328735839997534,1000,mac,phase-12,without +24,394.2393637064164,0.0,0.0,79.7461478261975,0.1217025830010243,1000,mac,phase-12,without +25,398.69146909006815,0.0,0.0,80.64671303288978,0.1230769579997286,1000,mac,phase-12,without +26,393.4677205138221,0.0,0.0,79.59006099730456,0.121464375002688,1000,mac,phase-12,without +27,399.4925386960174,0.0,0.0,80.80875219258839,0.1233242499984044,1000,mac,phase-12,without +28,418.3888499209973,0.0,0.0,84.63106971600862,0.1291575840004952,1000,mac,phase-12,without +29,409.7174654168141,0.0,0.0,82.87703505029891,0.1264807079969614,1000,mac,phase-12,without +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583,1000,mac,phase-12,with +1,4531.796465296956,3.541325533545661,10.727122004526665,704.2080541561381,0.6902903339978366,1000,mac,phase-12,with +2,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217,1000,mac,phase-12,with +3,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334,1000,mac,phase-12,with +4,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716,1000,mac,phase-12,with +5,4423.116844673827,3.4563989666894583,10.469868714632144,687.3200352983833,0.6737360840015754,1000,mac,phase-12,with +6,4372.552212189364,3.41688575697609,10.350178215306212,679.4626609163522,0.6660340000016731,1000,mac,phase-12,with +7,4367.830293810635,3.4131958626372865,10.33900105963916,678.7289093061835,0.6653147500001069,1000,mac,phase-12,with +8,4402.0599576700315,3.4399442798617175,10.420025391425783,684.0479489332786,0.6705286659998819,1000,mac,phase-12,with +9,4377.090584625613,3.420432221234205,10.36092090315604,680.1678908283396,0.6667252919978637,1000,mac,phase-12,with +10,4383.548140369233,3.4254784114623615,10.37620645025492,681.1713478016708,0.6677089170007093,1000,mac,phase-12,with +11,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672,1000,mac,phase-12,with +12,4356.017836464776,3.403965139869143,10.311040035331771,676.8933397553377,0.6635154579998925,1000,mac,phase-12,with +13,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577,1000,mac,phase-12,with +14,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067,1000,mac,phase-12,with +15,4402.389306963763,3.440201646465068,10.420804987350497,684.099127406772,0.670578833000036,1000,mac,phase-12,with +16,4315.28000684407,3.372130983741042,10.214610358516552,670.5629787280001,0.6573102080001263,1000,mac,phase-12,with +17,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107,1000,mac,phase-12,with +18,4374.957761226749,3.4187655484216073,10.355872340849915,679.8364656579744,0.6664004169979307,1000,mac,phase-12,with +19,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159,1000,mac,phase-12,with +20,4380.030910237862,3.4227299083098126,10.367880887307392,680.624795941763,0.6671731669994188,1000,mac,phase-12,with +21,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498,1000,mac,phase-12,with +22,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315,1000,mac,phase-12,with +23,4376.213328707104,3.419746698658895,10.35884436875316,680.0315716692378,0.666591667002649,1000,mac,phase-12,with +24,4380.196677962882,3.422859445786119,10.368273272672516,680.6505550348669,0.6671984169988718,1000,mac,phase-12,with +25,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699,1000,mac,phase-12,with +26,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136,1000,mac,phase-12,with +27,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095,1000,mac,phase-12,with +28,4405.482821650499,3.4426190415604627,10.428127582202569,684.5798369829262,0.6710500420012977,1000,mac,phase-12,with +29,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227,1000,mac,phase-12,with +0,492.1706690195863,0.0,0.0,92.06965491809224,0.1276172920006502,1000,mac,phase-24,without +1,486.08444962833966,0.0,0.0,90.9311146628915,0.1260391670002718,1000,mac,phase-24,without +2,486.6206809901031,0.0,0.0,91.03142668784857,0.1261782090004999,1000,mac,phase-24,without +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815,1000,mac,phase-24,without +4,491.069285551624,0.0,0.0,91.86362070636284,0.1273317090017371,1000,mac,phase-24,without +5,491.66914718394423,0.0,0.0,91.97583595396456,0.1274872499998309,1000,mac,phase-24,without +6,489.3934208087073,0.0,0.0,91.55011911376064,0.126897165999253,1000,mac,phase-24,without +7,484.9412836048319,0.0,0.0,90.71726424895256,0.1257427500022458,1000,mac,phase-24,without +8,489.216660608546,0.0,0.0,91.5170528388757,0.1268513329996494,1000,mac,phase-24,without +9,486.77108895533576,0.0,0.0,91.05956328827516,0.1262172090027888,1000,mac,phase-24,without +10,481.332938877034,0.0,0.0,90.04225642173755,0.124807125001098,1000,mac,phase-24,without +11,494.5105077458341,0.0,0.0,92.50736516303382,0.1282240000000456,1000,mac,phase-24,without +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553,1000,mac,phase-24,without +13,431.9192625401392,0.0,0.0,80.79851148741447,0.1119944159981969,1000,mac,phase-24,without +14,482.32457080883734,0.0,0.0,90.22775957240025,0.125064249998104,1000,mac,phase-24,without +15,487.23500493783496,0.0,0.0,91.1463473798684,0.1263375000016822,1000,mac,phase-24,without +16,490.8859305301352,0.0,0.0,91.8293207477944,0.1272841659992991,1000,mac,phase-24,without +17,492.7372712254749,0.0,0.0,92.17564837291538,0.1277642090026347,1000,mac,phase-24,without +18,491.3188354948492,0.0,0.0,91.91030365316124,0.127396416002739,1000,mac,phase-24,without +19,487.494200264288,0.0,0.0,91.19483467455105,0.1264047080003365,1000,mac,phase-24,without +20,491.90504470972667,0.0,0.0,92.019964962786,0.1275484170000709,1000,mac,phase-24,without +21,489.6739895004024,0.0,0.0,91.6026046929534,0.1269699160002346,1000,mac,phase-24,without +22,497.94691303592106,0.0,0.0,93.1502085284202,0.129115042000194,1000,mac,phase-24,without +23,489.3804086070156,0.0,0.0,91.54768494001787,0.1268937920031021,1000,mac,phase-24,without +24,489.13647389090073,0.0,0.0,91.50205242563018,0.1268305410012544,1000,mac,phase-24,without +25,488.2921993203388,0.0,0.0,91.34411520331948,0.1266116250008053,1000,mac,phase-24,without +26,488.2168333511135,0.0,0.0,91.33001660050562,0.1265920829973765,1000,mac,phase-24,without +27,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081,1000,mac,phase-24,without +28,480.867734774439,0.0,0.0,89.95523136338183,0.1246864999993704,1000,mac,phase-24,without +29,492.06428817424865,0.0,0.0,92.04975440728032,0.1275897080013237,1000,mac,phase-24,without +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697,1000,mac,phase-24,with +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935,1000,mac,phase-24,with +2,4294.070878255385,2.008405265665155,0.0,675.7279516330415,0.6701891660013644,1000,mac,phase-24,with +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936,1000,mac,phase-24,with +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585,1000,mac,phase-24,with +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677,1000,mac,phase-24,with +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344,1000,mac,phase-24,with +7,4270.762102767754,1.9975033805419675,0.0,672.0600123833451,0.6665512920008041,1000,mac,phase-24,with +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336,1000,mac,phase-24,with +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748,1000,mac,phase-24,with +10,4261.827183417434,1.993324376613004,0.0,670.6539865114453,0.6651567909975711,1000,mac,phase-24,with +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531,1000,mac,phase-24,with +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177,1000,mac,phase-24,with +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957,1000,mac,phase-24,with +14,4268.013923464058,1.9962180133598648,0.0,671.6275505949264,0.6661223750015779,1000,mac,phase-24,with +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092,1000,mac,phase-24,with +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146,1000,mac,phase-24,with +17,4363.564209013365,2.0409084020548467,0.0,686.6636318713531,0.6810352089996741,1000,mac,phase-24,with +18,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839,1000,mac,phase-24,with +19,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792,1000,mac,phase-24,with +20,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211,1000,mac,phase-24,with +21,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756,1000,mac,phase-24,with +22,4251.740304272998,1.988606582761394,0.0,669.0666847700711,0.6635825000012119,1000,mac,phase-24,with +23,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028,1000,mac,phase-24,with +24,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502,1000,mac,phase-24,with +25,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149,1000,mac,phase-24,with +26,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017,1000,mac,phase-24,with +27,4263.9447802230125,1.994314810328576,0.0,670.9872179350494,0.6654872910003178,1000,mac,phase-24,with +28,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692,1000,mac,phase-24,with +29,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221,1000,mac,phase-24,with +0,361.1273800704231,0.0,0.0,78.14745763956928,0.1268132500008505,1000,mac,phase-23,without +1,362.07910759150786,0.0,0.0,78.3534101378924,0.1271474580025824,1000,mac,phase-23,without +2,315.9812070935933,0.0,0.0,68.37788924071934,0.1109597499998926,1000,mac,phase-23,without +3,357.35440047061826,0.0,0.0,77.33099015545547,0.1254883330002485,1000,mac,phase-23,without +4,363.2426363907271,0.0,0.0,78.60519613520911,0.1275560419999237,1000,mac,phase-23,without +5,362.3479798378803,0.0,0.0,78.41159371422422,0.1272418750013457,1000,mac,phase-23,without +6,352.9112606909941,0.0,0.0,76.36950095004781,0.123928082997736,1000,mac,phase-23,without +7,360.94382237042606,0.0,0.0,78.10773601120054,0.1267487920013081,1000,mac,phase-23,without +8,360.55380282733665,0.0,0.0,78.02333633007905,0.1266118329986056,1000,mac,phase-23,without +9,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646,1000,mac,phase-23,without +10,364.2208248292936,0.0,0.0,78.81687473889593,0.1278995419997954,1000,mac,phase-23,without +11,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028,1000,mac,phase-23,without +12,374.00840463719953,0.0,0.0,80.93489325713479,0.1313365419991896,1000,mac,phase-23,without +13,360.17292159439404,0.0,0.0,77.94091416643339,0.1264780829988012,1000,mac,phase-23,without +14,360.17102501617666,0.0,0.0,77.94050374957197,0.126477416997659,1000,mac,phase-23,without +15,362.5744923942769,0.0,0.0,78.46061071316345,0.1273214169996208,1000,mac,phase-23,without +16,360.86337170818086,0.0,0.0,78.09032660092915,0.1267205410003953,1000,mac,phase-23,without +17,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175,1000,mac,phase-23,without +18,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644,1000,mac,phase-23,without +19,361.46791779675897,0.0,0.0,78.2211495250705,0.1269328330017742,1000,mac,phase-23,without +20,362.3516590767534,0.0,0.0,78.4123898963468,0.1272431670004152,1000,mac,phase-23,without +21,360.9834510950976,0.0,0.0,78.1163116115385,0.126762707997841,1000,mac,phase-23,without +22,364.26057316947674,0.0,0.0,78.82547622386255,0.1279135000004316,1000,mac,phase-23,without +23,364.3102884882237,0.0,0.0,78.83623454898611,0.1279309579986147,1000,mac,phase-23,without +24,362.5480314767952,0.0,0.0,78.45488460779974,0.127312125001481,1000,mac,phase-23,without +25,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774,1000,mac,phase-23,without +26,360.08998204684286,0.0,0.0,77.92296616487883,0.1264489580025838,1000,mac,phase-23,without +27,362.7770357881926,0.0,0.0,78.50444081902006,0.1273925420027808,1000,mac,phase-23,without +28,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133,1000,mac,phase-23,without +29,369.760449773745,0.0,0.0,80.0156417933386,0.1298448330016981,1000,mac,phase-23,without +0,4282.915524281316,1.9366110579895248,0.0,675.6769201633797,0.6687819170001603,1000,mac,phase-23,with +1,4391.654228983149,1.9857795687301991,0.0,692.8316440142122,0.6857615839981008,1000,mac,phase-23,with +2,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549,1000,mac,phase-23,with +3,4262.6173435256915,1.927432805211586,0.0,672.4746594183043,0.6656123339998885,1000,mac,phase-23,with +4,4282.052840567513,1.9362209772582504,0.0,675.540822341344,0.6686472080000385,1000,mac,phase-23,with +5,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313,1000,mac,phase-23,with +6,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988,1000,mac,phase-23,with +7,4289.356664180724,1.9395235559560455,0.0,676.6930806608025,0.6697877080005128,1000,mac,phase-23,with +8,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468,1000,mac,phase-23,with +9,4270.16291377157,1.9308446947747024,0.0,673.6650559217393,0.6667905829999654,1000,mac,phase-23,with +10,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788,1000,mac,phase-23,with +11,4291.628771306302,1.9405509373646648,0.0,677.051530491575,0.6701424999992014,1000,mac,phase-23,with +12,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963,1000,mac,phase-23,with +13,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255,1000,mac,phase-23,with +14,4277.141731638064,1.934000315233552,0.0,674.766041018382,0.6678803329996299,1000,mac,phase-23,with +15,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693,1000,mac,phase-23,with +16,4245.205514749945,1.9195596776759711,0.0,669.7277523698441,0.6628934580003261,1000,mac,phase-23,with +17,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677,1000,mac,phase-23,with +18,4243.843590196685,1.9189438546145456,0.0,669.5128938272403,0.6626807920001738,1000,mac,phase-23,with +19,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941,1000,mac,phase-23,with +20,4297.038595942507,1.9429971042696297,0.0,677.904989689659,0.6709872499995981,1000,mac,phase-23,with +21,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116,1000,mac,phase-23,with +22,4266.908322293752,1.9293730622362015,0.0,673.1516084036514,0.6662823750011739,1000,mac,phase-23,with +23,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164,1000,mac,phase-23,with +24,4269.309579982598,1.9304588418101711,0.0,673.5304331529419,0.6666573340007744,1000,mac,phase-23,with +25,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687,1000,mac,phase-23,with +26,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072,1000,mac,phase-23,with +27,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284,1000,mac,phase-23,with +28,4260.173921548421,1.926327960160664,0.0,672.0891827898483,0.6652307910007949,1000,mac,phase-23,with +29,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389,1000,mac,phase-23,with +0,581.4317776280168,0.5649808642284244,22.03425370490855,108.27692092095334,0.1290291250006703,1000,mac,phase-8,without +1,520.8723160480156,0.5061348598351681,19.739259533571555,96.99925725546927,0.1155900000012479,1000,mac,phase-8,without +2,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199,1000,mac,phase-8,without +3,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056125,0.1326433750000433,1000,mac,phase-8,without +4,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.1309582920002867,1000,mac,phase-8,without +5,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.1296407499976339,1000,mac,phase-8,without +6,595.3991361810349,0.5785530331567643,22.56356829311381,110.8779871779258,0.1321287079990725,1000,mac,phase-8,without +7,575.798831243909,0.5595072952927381,21.820784516416783,107.22792753316124,0.1277790829990408,1000,mac,phase-8,without +8,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995,1000,mac,phase-8,without +9,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.1333778750013152,1000,mac,phase-8,without +10,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.1294329999982437,1000,mac,phase-8,without +11,599.6841637858541,0.5827168210551312,22.72595602115012,111.6759648822128,0.1330796250003914,1000,mac,phase-8,without +12,575.4691302135833,0.55918692275684,21.80828998751676,107.16652907892852,0.1277059170024586,1000,mac,phase-8,without +13,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468507,0.1305355839976982,1000,mac,phase-8,without +14,582.9858553137769,0.5664909711537129,22.09314787499481,108.56632847169394,0.129374000000098,1000,mac,phase-8,without +15,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141,1000,mac,phase-8,without +16,601.3137204179325,0.5843002713406603,22.78771058228575,111.97942847222774,0.1334412500000326,1000,mac,phase-8,without +17,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170692,0.128728833002242,1000,mac,phase-8,without +18,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534,1000,mac,phase-8,without +19,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.1294090000010328,1000,mac,phase-8,without +20,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.1289375830019707,1000,mac,phase-8,without +21,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666796,0.1290653750002093,1000,mac,phase-8,without +22,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853932,0.122686833001353,1000,mac,phase-8,without +23,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881,1000,mac,phase-8,without +24,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684628,0.1276108329984708,1000,mac,phase-8,without +25,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817,1000,mac,phase-8,without +26,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.1288575420003326,1000,mac,phase-8,without +27,596.8328621274222,0.5799461935505104,22.617901548469906,111.14498226985664,0.1324468749990046,1000,mac,phase-8,without +28,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.1291972090002673,1000,mac,phase-8,without +29,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.132729291999567,1000,mac,phase-8,without +0,5266.955267504172,5.9290178909972,113.8768911131194,750.0704477186123,0.680035332999978,1000,mac,phase-8,with +1,5288.670973052095,5.95346328689863,114.34640659417592,753.1629951498295,0.6828391250019195,1000,mac,phase-8,with +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001,1000,mac,phase-8,with +3,5398.076602054193,6.076621335293567,116.7118667639066,768.7435203224738,0.6969648749982298,1000,mac,phase-8,with +4,5305.467876791607,5.972371581677469,114.70957261344768,755.5550528887501,0.6850078330026008,1000,mac,phase-8,with +5,5313.715786732026,5.981656263835639,114.88790075456384,756.7296429863577,0.686072749998857,1000,mac,phase-8,with +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053,1000,mac,phase-8,with +7,5302.962655734788,5.969551451315166,114.6554072045896,755.1982827655415,0.6846843749990512,1000,mac,phase-8,with +8,5282.032111733405,5.945989912712749,114.20286770897448,752.2175506892748,0.6819819579977775,1000,mac,phase-8,with +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789,1000,mac,phase-8,with +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687,1000,mac,phase-8,with +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497,1000,mac,phase-8,with +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034,1000,mac,phase-8,with +13,5321.700680193805,5.990644868026885,115.0605422138348,757.8667767400492,0.6871037080018141,1000,mac,phase-8,with +14,5331.095193216626,6.001220282656504,115.26366107135787,759.2046553114891,0.6883166670013452,1000,mac,phase-8,with +15,5357.676119786506,6.031142463724653,115.83836754349365,762.9900619611441,0.6917486249985814,1000,mac,phase-8,with +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533,1000,mac,phase-8,with +17,5283.988405148097,5.948192114566884,114.24516474793823,752.4961476780284,0.6822345420005149,1000,mac,phase-8,with +18,5247.942934153031,5.907615684435091,113.46582526864717,747.3628892404057,0.6775805830002355,1000,mac,phase-8,with +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738,1000,mac,phase-8,with +20,5257.917355280346,5.918843902316692,113.68148232494296,748.7833528936396,0.678868415998295,1000,mac,phase-8,with +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691,1000,mac,phase-8,with +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859,1000,mac,phase-8,with +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158,1000,mac,phase-8,with +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561,1000,mac,phase-8,with +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575,1000,mac,phase-8,with +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268,1000,mac,phase-8,with +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813,1000,mac,phase-8,with +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286,1000,mac,phase-8,with +29,5284.043589125742,5.9482542352370125,114.24635788125612,752.5040064633639,0.6822416670001985,1000,mac,phase-8,with +0,330.44415841729904,0.0,0.0,71.46026132650186,0.1117680830029712,1000,mac,phase-1,without +1,376.19058039632665,0.0,0.0,81.35316209688087,0.127241165999294,1000,mac,phase-1,without +2,373.3111818811339,0.0,0.0,80.73047724947932,0.1262672500015469,1000,mac,phase-1,without +3,375.9587422141797,0.0,0.0,81.30302588881162,0.1271627499991154,1000,mac,phase-1,without +4,358.0380640968126,0.0,0.0,77.42758639685981,0.1211013329993875,1000,mac,phase-1,without +5,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658,1000,mac,phase-1,without +6,375.96440985647655,0.0,0.0,81.304251545823,0.127164666999306,1000,mac,phase-1,without +7,375.1544485619503,0.0,0.0,81.12909321938014,0.126890708997962,1000,mac,phase-1,without +8,372.8164561803528,0.0,0.0,80.62349025345529,0.1260999160003848,1000,mac,phase-1,without +9,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354,1000,mac,phase-1,without +10,341.7689728538709,0.0,0.0,73.9093111235619,0.1155985420009528,1000,mac,phase-1,without +11,376.4109650344787,0.0,0.0,81.40082141671914,0.1273157079995144,1000,mac,phase-1,without +12,377.2984136638453,0.0,0.0,81.59273678079191,0.1276158750006288,1000,mac,phase-1,without +13,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929,1000,mac,phase-1,without +14,331.6252896252523,0.0,0.0,71.71568706979686,0.1121675840004172,1000,mac,phase-1,without +15,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419,1000,mac,phase-1,without +16,355.2765537051657,0.0,0.0,76.83039546696682,0.1201672909992339,1000,mac,phase-1,without +17,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539,1000,mac,phase-1,without +18,377.2072553916621,0.0,0.0,81.57302333213093,0.1275850419988273,1000,mac,phase-1,without +19,375.10048919039974,0.0,0.0,81.11742422571268,0.1268724580004345,1000,mac,phase-1,without +20,372.6835400780478,0.0,0.0,80.5947464576784,0.1260549590006121,1000,mac,phase-1,without +21,376.0683787140708,0.0,0.0,81.32673534995224,0.1271998330012138,1000,mac,phase-1,without +22,374.1239784649677,0.0,0.0,80.90624872192488,0.1265421669995703,1000,mac,phase-1,without +23,376.20314854727656,0.0,0.0,81.35588002464081,0.1272454169993579,1000,mac,phase-1,without +24,374.47284738731366,0.0,0.0,80.98169343391177,0.1266601669994997,1000,mac,phase-1,without +25,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582,1000,mac,phase-1,without +26,377.63409948635586,0.0,0.0,81.66533057913625,0.127729416002694,1000,mac,phase-1,without +27,377.7004998759669,0.0,0.0,81.67969000741759,0.127751874999376,1000,mac,phase-1,without +28,370.2482309866334,0.0,0.0,80.0680982490467,0.1252312499964318,1000,mac,phase-1,without +29,376.1321921537387,0.0,0.0,81.3405353369051,0.127221416998509,1000,mac,phase-1,without +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929,1000,mac,phase-1,with +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168,1000,mac,phase-1,with +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774,1000,mac,phase-1,with +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706,1000,mac,phase-1,with +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299,1000,mac,phase-1,with +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821,1000,mac,phase-1,with +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113,1000,mac,phase-1,with +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128,1000,mac,phase-1,with +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182,1000,mac,phase-1,with +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069,1000,mac,phase-1,with +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556,1000,mac,phase-1,with +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651,1000,mac,phase-1,with +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213,1000,mac,phase-1,with +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805,1000,mac,phase-1,with +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555,1000,mac,phase-1,with +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695,1000,mac,phase-1,with +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733,1000,mac,phase-1,with +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352,1000,mac,phase-1,with +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509,1000,mac,phase-1,with +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757,1000,mac,phase-1,with +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149,1000,mac,phase-1,with +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264,1000,mac,phase-1,with +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836,1000,mac,phase-1,with +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148,1000,mac,phase-1,with +24,4215.132051569963,2.019137723673603,0.0,667.6063729307034,0.6637141249993874,1000,mac,phase-1,with +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339,1000,mac,phase-1,with +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552,1000,mac,phase-1,with +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064,1000,mac,phase-1,with +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687,1000,mac,phase-1,with +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651,1000,mac,phase-1,with +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892,1000,mac,phase-30,without +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.1231860420011798,1000,mac,phase-30,without +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.1267482919975009,1000,mac,phase-30,without +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.1252969589986605,1000,mac,phase-30,without +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.1273789999977452,1000,mac,phase-30,without +5,364.7452495438632,0.775049957456472,0.0,79.9986347392028,0.1277264160016784,1000,mac,phase-30,without +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789,1000,mac,phase-30,without +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.1272880409997014,1000,mac,phase-30,without +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.1274361249998037,1000,mac,phase-30,without +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.1269027079979423,1000,mac,phase-30,without +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.1268887499973061,1000,mac,phase-30,without +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329,1000,mac,phase-30,without +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.1277072500015492,1000,mac,phase-30,without +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.127331707997655,1000,mac,phase-30,without +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511,1000,mac,phase-30,without +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.1237031659984495,1000,mac,phase-30,without +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.1275474169997323,1000,mac,phase-30,without +17,363.6220179678712,0.7726631941298076,0.0,79.75227925496361,0.127333083000849,1000,mac,phase-30,without +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.1279127499983587,1000,mac,phase-30,without +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.1260935409991361,1000,mac,phase-30,without +20,362.955814476415,0.7712475732591968,0.0,79.6061625616232,0.1270997920000809,1000,mac,phase-30,without +21,341.77800196980706,0.7262466782433077,0.0,74.96128757172228,0.1196837499992398,1000,mac,phase-30,without +22,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.1263032079987169,1000,mac,phase-30,without +23,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.1252500000009604,1000,mac,phase-30,without +24,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.126944709001691,1000,mac,phase-30,without +25,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.1269748750019061,1000,mac,phase-30,without +26,362.2602175158703,0.7697694939823556,0.0,79.45359907452662,0.1268562080003903,1000,mac,phase-30,without +27,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.1222566659998847,1000,mac,phase-30,without +28,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758,1000,mac,phase-30,without +29,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.1265295829980459,1000,mac,phase-30,without +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041,1000,mac,phase-30,with +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858,1000,mac,phase-30,with +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505,1000,mac,phase-30,with +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749,1000,mac,phase-30,with +4,4183.686687295611,2.242821512366286,0.0,665.4913184560963,0.6601848330028588,1000,mac,phase-30,with +5,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599,1000,mac,phase-30,with +6,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206,1000,mac,phase-30,with +7,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374,1000,mac,phase-30,with +8,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374,1000,mac,phase-30,with +9,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463,1000,mac,phase-30,with +10,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212,1000,mac,phase-30,with +11,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746,1000,mac,phase-30,with +12,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392,1000,mac,phase-30,with +13,4208.039275310504,2.255876626757966,0.0,669.3650396778748,0.6640276660000382,1000,mac,phase-30,with +14,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421,1000,mac,phase-30,with +15,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857,1000,mac,phase-30,with +16,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983,1000,mac,phase-30,with +17,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557,1000,mac,phase-30,with +18,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472,1000,mac,phase-30,with +19,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811,1000,mac,phase-30,with +20,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253,1000,mac,phase-30,with +21,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509,1000,mac,phase-30,with +22,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295,1000,mac,phase-30,with +23,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041,1000,mac,phase-30,with +24,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841,1000,mac,phase-30,with +25,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323,1000,mac,phase-30,with +26,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186,1000,mac,phase-30,with +27,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896,1000,mac,phase-30,with +28,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796,1000,mac,phase-30,with +29,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598,1000,mac,phase-30,with +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.1291073329994105,1000,mac,phase-6,without +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893635,0.1292414579984324,1000,mac,phase-6,without +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.1296916249993955,1000,mac,phase-6,without +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185,1000,mac,phase-6,without +4,570.7923075604117,0.4995848181471686,22.61453943479517,108.6430451197376,0.1289150839984358,1000,mac,phase-6,without +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.1188811249994614,1000,mac,phase-6,without +6,546.1066178825615,0.4779787179506606,21.636503299233237,103.944438530337,0.1233397500000137,1000,mac,phase-6,without +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137712,0.1353968750008789,1000,mac,phase-6,without +8,564.8324897164598,0.4943684995767823,22.378414080842347,107.50866970796427,0.1275690420006867,1000,mac,phase-6,without +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427,1000,mac,phase-6,without +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.1266568329992878,1000,mac,phase-6,without +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681,1000,mac,phase-6,without +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.127020125000854,1000,mac,phase-6,without +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.1180574170030013,1000,mac,phase-6,without +14,565.4239499832644,0.4948861739846519,22.40184747570525,107.62124663586232,0.127702625002712,1000,mac,phase-6,without +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.1330269160025636,1000,mac,phase-6,without +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177,1000,mac,phase-6,without +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.1327920000003359,1000,mac,phase-6,without +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.1297199580003507,1000,mac,phase-6,without +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.1315104159984912,1000,mac,phase-6,without +20,573.9317008573986,0.5023325658105368,22.73892081235696,109.2405886449314,0.1296241250020102,1000,mac,phase-6,without +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.1326278329979686,1000,mac,phase-6,without +22,569.2309991369702,0.4982182860925752,22.55268108379057,108.34586994893202,0.1285624580013973,1000,mac,phase-6,without +23,586.1692027690232,0.5130434147237337,23.22376523982768,111.56984125525462,0.1323879999981727,1000,mac,phase-6,without +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.9929550276332,0.1352632499983883,1000,mac,phase-6,without +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.1295764169990434,1000,mac,phase-6,without +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880932,0.1320039999991422,1000,mac,phase-6,without +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889296,0.1308776250007213,1000,mac,phase-6,without +28,569.554032432905,0.4985010203345533,22.56547952047745,108.40735522208752,0.1286354160001792,1000,mac,phase-6,without +29,569.8029068334558,0.4987188471526337,22.575339814442557,108.45472529412608,0.1286916249991918,1000,mac,phase-6,without +0,5614.990553964228,5.7756058115323325,109.76989542380524,759.4420867094653,0.6870545829988259,1000,mac,phase-6,with +1,5608.692244635915,5.769127340801201,109.64676703210608,758.5902239800331,0.6862839170025836,1000,mac,phase-6,with +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555,1000,mac,phase-6,with +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757,1000,mac,phase-6,with +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752,1000,mac,phase-6,with +5,5554.87393461145,5.713769572848289,108.59464945390276,751.3111574748722,0.679698667001503,1000,mac,phase-6,with +6,5565.841836903626,5.7250512089632934,108.80906575185728,752.794594806341,0.6810407080010918,1000,mac,phase-6,with +7,5597.4321653440575,5.75754517004395,109.4266388387544,757.0672689489005,0.684906124999543,1000,mac,phase-6,with +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146,1000,mac,phase-6,with +9,5600.578598587723,5.760781606143541,109.48814983236971,757.492832234412,0.68529112500255,1000,mac,phase-6,with +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432,1000,mac,phase-6,with +11,5601.160557946362,5.761380212289274,109.4995268092898,757.5715437523492,0.6853623339993646,1000,mac,phase-6,with +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837,1000,mac,phase-6,with +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055,1000,mac,phase-6,with +14,5770.126400037058,5.935179275733913,112.80271363360175,780.4246136670234,0.7060371250008757,1000,mac,phase-6,with +15,5876.410462417555,6.044503564431901,114.88050705116817,794.799809732352,0.7190421250015788,1000,mac,phase-6,with +16,5596.661223842662,5.756752175973343,109.41156736763207,756.9629971042867,0.6848117920017103,1000,mac,phase-6,with +17,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294,1000,mac,phase-6,with +18,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648,1000,mac,phase-6,with +19,5610.2365140437805,5.77071578360995,109.67695662722264,758.7990904367581,0.6864728750006179,1000,mac,phase-6,with +20,5580.16526722144,5.739784357058483,109.08908072837164,754.7318760367998,0.6827933340027812,1000,mac,phase-6,with +21,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064,1000,mac,phase-6,with +22,5583.60488260023,5.743322361687386,109.1563232672146,755.1970929691598,0.6832142079983896,1000,mac,phase-6,with +23,5543.578786923836,5.702151330573483,108.37383569321165,749.7834593519398,0.6783165840024594,1000,mac,phase-6,with +24,5576.76786301207,5.736289771037868,109.02266339406076,754.2723682749679,0.6823776249984803,1000,mac,phase-6,with +25,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237,1000,mac,phase-6,with +26,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617,1000,mac,phase-6,with +27,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385,1000,mac,phase-6,with +28,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194,1000,mac,phase-6,with +29,5630.7145475367815,5.791779585608233,110.07729062127092,761.568797765411,0.6889785830026085,1000,mac,phase-6,with +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.1331702499992388,1000,mac,phase-7,without +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.1268256250004924,1000,mac,phase-7,without +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767624,0.1291754999983823,1000,mac,phase-7,without +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172,1000,mac,phase-7,without +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089052,0.1295549999995273,1000,mac,phase-7,without +5,574.3023135305887,0.5387451346440795,22.86299665145812,110.67845359844308,0.1315277499998046,1000,mac,phase-7,without +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967,1000,mac,phase-7,without +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.1310482090011646,1000,mac,phase-7,without +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084652,0.1287392910016933,1000,mac,phase-7,without +9,581.0269266320039,0.5450534020938123,23.13070375135616,111.97440829264757,0.1330678330014052,1000,mac,phase-7,without +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799497,0.1282551250005781,1000,mac,phase-7,without +11,534.6144979163302,0.5015145383830489,21.28302322263064,103.0298929790676,0.1224383750013657,1000,mac,phase-7,without +12,564.9127401658633,0.5299369044707911,22.4891973834792,108.86891281221816,0.1293773329998657,1000,mac,phase-7,without +13,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.1315748749984777,1000,mac,phase-7,without +14,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557429,0.1303790419988217,1000,mac,phase-7,without +15,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969,1000,mac,phase-7,without +16,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.1300272909975319,1000,mac,phase-7,without +17,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.1332790000014938,1000,mac,phase-7,without +18,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.1304998750019876,1000,mac,phase-7,without +19,577.1835894549931,0.5414480201266352,22.97770035412408,111.2337276347656,0.1321876250003697,1000,mac,phase-7,without +20,572.4775221883025,0.5370333228783325,22.79035163964923,110.32678326881744,0.1311098330006643,1000,mac,phase-7,without +21,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821,1000,mac,phase-7,without +22,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.1276652909982658,1000,mac,phase-7,without +23,550.3919260419447,0.516315127619085,21.91112322833492,106.07048903024578,0.126051750001352,1000,mac,phase-7,without +24,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.1295552080009656,1000,mac,phase-7,without +25,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.1292686669985414,1000,mac,phase-7,without +26,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367843,0.1345588340009271,1000,mac,phase-7,without +27,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156,1000,mac,phase-7,without +28,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.1282280839986924,1000,mac,phase-7,without +29,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544232,0.131837541997811,1000,mac,phase-7,without +0,5280.146632019839,4.743466790750807,114.64491567504768,752.2737473782265,0.6850735419975535,1000,mac,phase-7,with +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585,1000,mac,phase-7,with +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048,1000,mac,phase-7,with +3,5269.918567599515,4.734278317912334,114.42283934559951,750.8165332351111,0.6837465000025986,1000,mac,phase-7,with +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337,1000,mac,phase-7,with +5,5263.781853767582,4.728765346342646,114.28959625808425,749.9422225326506,0.6829502910004521,1000,mac,phase-7,with +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321,1000,mac,phase-7,with +7,5262.373654944431,4.727500278378077,114.25902081263072,749.7415934441852,0.6827675839995209,1000,mac,phase-7,with +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202,1000,mac,phase-7,with +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963,1000,mac,phase-7,with +10,5299.006038748264,4.76040930688607,115.0543995861478,754.9606872610865,0.6875204589996429,1000,mac,phase-7,with +11,5278.689930447888,4.742158149909533,114.61328711612336,752.0662079997371,0.6848845419990539,1000,mac,phase-7,with +12,5264.9964191743065,4.729856462001642,114.31596744781432,750.1152642554716,0.6831078750001325,1000,mac,phase-7,with +13,5280.20732793269,4.743521317465122,114.64623353197392,752.2823948543278,0.68508141699931,1000,mac,phase-7,with +14,5175.084273188565,4.649083084235549,112.36375454293244,737.3052891336941,0.6714422080003715,1000,mac,phase-7,with +15,5301.849427752589,4.76296369074227,115.11613652554556,755.3657909543374,0.6878893749999406,1000,mac,phase-7,with +16,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437,1000,mac,phase-7,with +17,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943,1000,mac,phase-7,with +18,5232.454106576423,4.700621785417813,113.60939413770376,745.4788916028814,0.6788856669991219,1000,mac,phase-7,with +19,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411,1000,mac,phase-7,with +20,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461,1000,mac,phase-7,with +21,5283.768793744757,4.746720792022038,114.72356167760309,752.7898044812416,0.6855434999997669,1000,mac,phase-7,with +22,5270.446525563299,4.734752613654982,114.4343026060838,750.8917525317619,0.6838150000003225,1000,mac,phase-7,with +23,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389,1000,mac,phase-7,with +24,5253.691243355732,4.719700356537864,114.07050439181651,748.5045917551598,0.6816410829997039,1000,mac,phase-7,with +25,5232.72739613028,4.70086729752445,113.615327923267,745.5178277482438,0.6789211249997607,1000,mac,phase-7,with +26,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278,1000,mac,phase-7,with +27,5286.654257518006,4.749312974121929,114.78621216328492,753.20090265652,0.6859178749982675,1000,mac,phase-7,with +28,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178,1000,mac,phase-7,with +29,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675,1000,mac,phase-7,with +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.1294090000010328,1000,mac,phase-9,without +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437,1000,mac,phase-9,without +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.1238124416234,0.1290127909996954,1000,mac,phase-9,without +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285,1000,mac,phase-9,without +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.1289722090004943,1000,mac,phase-9,without +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688,1000,mac,phase-9,without +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894872,0.1277482500008773,1000,mac,phase-9,without +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.129827667002246,1000,mac,phase-9,without +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167936,0.1300582920011948,1000,mac,phase-9,without +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276,1000,mac,phase-9,without +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.1253202499974577,1000,mac,phase-9,without +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.1305465419973188,1000,mac,phase-9,without +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.3348248818242,0.1280713749983988,1000,mac,phase-9,without +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971,1000,mac,phase-9,without +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.1339217910026491,1000,mac,phase-9,without +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.1294104999979026,1000,mac,phase-9,without +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.7237311424572,0.1285354159990674,1000,mac,phase-9,without +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.1304550839995499,1000,mac,phase-9,without +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479164,0.1318872500014549,1000,mac,phase-9,without +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596356,0.130042582997703,1000,mac,phase-9,without +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.1289919999981066,1000,mac,phase-9,without +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381303,0.1297635419978178,1000,mac,phase-9,without +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451525,0.1310055829999328,1000,mac,phase-9,without +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.1341233749990351,1000,mac,phase-9,without +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.1344618750008521,1000,mac,phase-9,without +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.1300322079987381,1000,mac,phase-9,without +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.1317313330000615,1000,mac,phase-9,without +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.1302883750031469,1000,mac,phase-9,without +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921,1000,mac,phase-9,without +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.1309345000008761,1000,mac,phase-9,without +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924,1000,mac,phase-9,with +1,5273.426802443005,4.4973222381334175,113.86553636992608,749.9201548342323,0.6835363749996759,1000,mac,phase-9,with +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748,1000,mac,phase-9,with +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018,1000,mac,phase-9,with +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096,1000,mac,phase-9,with +5,5253.551246024907,4.480371821407624,113.43637693015744,747.0937042348667,0.6809601250024571,1000,mac,phase-9,with +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886,1000,mac,phase-9,with +7,5300.365365947626,4.520296179984014,114.44720254211376,753.7510170934825,0.687028125001234,1000,mac,phase-9,with +8,5279.4904036420885,4.502493442653253,113.99646360732456,750.7824436116101,0.6843223329997272,1000,mac,phase-9,with +9,5247.4468174506055,4.475165798188416,113.30456813487412,746.2256095038477,0.6801688749983441,1000,mac,phase-9,with +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533,1000,mac,phase-9,with +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705,1000,mac,phase-9,with +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357,1000,mac,phase-9,with +13,5277.8400593125725,4.501085983987045,113.96082883902017,750.547752485425,0.6841084169973328,1000,mac,phase-9,with +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567,1000,mac,phase-9,with +15,5321.702899266701,4.538493410494227,114.90792945977236,756.7853715824855,0.6897938750007597,1000,mac,phase-9,with +16,5253.426202615801,4.480265180977107,113.4336769524426,747.0759221405605,0.6809439169992402,1000,mac,phase-9,with +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378,1000,mac,phase-9,with +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265,1000,mac,phase-9,with +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317,1000,mac,phase-9,with +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039,1000,mac,phase-9,with +21,5253.3349120036255,4.480187325852603,113.43170577603108,747.0629399427254,0.6809320840002329,1000,mac,phase-9,with +22,5313.903441611766,4.531841820234043,114.73952104859232,755.6762312243596,0.6887829170009354,1000,mac,phase-9,with +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552,1000,mac,phase-9,with +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096,1000,mac,phase-9,with +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999,1000,mac,phase-9,with +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763,1000,mac,phase-9,with +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127,1000,mac,phase-9,with +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852,1000,mac,phase-9,with +29,5275.819074951675,4.49936243339088,113.91719109133356,750.2603536152749,0.6838464590000513,1000,mac,phase-9,with +0,254.7701558196424,0.0,0.0,63.11246118665094,0.0760953749995678,30,mac,phase-19,without +1,253.09222999705185,0.0,0.0,62.69680014498916,0.0755942079995293,30,mac,phase-19,without +2,263.90234613131526,0.0,0.0,65.374715981528,0.0788229999998293,30,mac,phase-19,without +3,259.7544057697603,0.0,0.0,64.3471751997949,0.0775840829992375,30,mac,phase-19,without +4,258.13381843399344,0.0,0.0,63.9457182277288,0.0771000419990741,30,mac,phase-19,without +5,258.38938416388623,0.0,0.0,64.00902777101736,0.0771763749980891,30,mac,phase-19,without +6,257.3555370297845,0.0,0.0,63.75291991994662,0.0768675830004212,30,mac,phase-19,without +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052,30,mac,phase-19,without +8,245.76644644425735,0.0,0.0,60.88203409183789,0.0734061250004742,30,mac,phase-19,without +9,256.3932541903437,0.0,0.0,63.51454020015801,0.0765801660018041,30,mac,phase-19,without +10,256.7573565822389,0.0,0.0,63.6047367853998,0.0766889169972273,30,mac,phase-19,without +11,256.6365493698801,0.0,0.0,63.57481004426902,0.0766528340027434,30,mac,phase-19,without +12,254.0235434990149,0.0,0.0,62.92750804347181,0.0758723750004719,30,mac,phase-19,without +13,259.3886326959798,0.0,0.0,64.25656474800229,0.0774748330004513,30,mac,phase-19,without +14,257.7577233561085,0.0,0.0,63.8525507767409,0.0769877089987858,30,mac,phase-19,without +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107,30,mac,phase-19,without +16,258.37473651085224,0.0,0.0,64.00539920851713,0.0771720000011555,30,mac,phase-19,without +17,257.275184131123,0.0,0.0,63.733014648147055,0.0768435829995723,30,mac,phase-19,without +18,251.4304885893039,0.0,0.0,62.28514835727747,0.0750978750002104,30,mac,phase-19,without +19,260.1250602942841,0.0,0.0,64.43899489985908,0.0776947910017042,30,mac,phase-19,without +20,258.7400910767803,0.0,0.0,64.09590598623336,0.0772811249989899,30,mac,phase-19,without +21,257.76525643655174,0.0,0.0,63.8544168950292,0.0769899589977285,30,mac,phase-19,without +22,234.9518673671031,0.0,0.0,58.203012681103864,0.0701759999974456,30,mac,phase-19,without +23,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708,30,mac,phase-19,without +24,254.9226321277627,0.0,0.0,63.150233095402065,0.0761409169972466,30,mac,phase-19,without +25,261.7944753894208,0.0,0.0,64.85254763745215,0.0781934159967931,30,mac,phase-19,without +26,259.7657053965152,0.0,0.0,64.34997437873601,0.0775874579994706,30,mac,phase-19,without +27,255.6566859729138,0.0,0.0,63.33207521369086,0.0763601660000858,30,mac,phase-19,without +28,259.06303605935,0.0,0.0,64.17590692909216,0.0773775829984515,30,mac,phase-19,without +29,258.87526808998655,0.0,0.0,64.12939245945022,0.0773215000008349,30,mac,phase-19,without +0,1510.9616102840157,1.973479398690429,0.0,456.5315675637193,0.4877955420015496,30,mac,phase-19,with +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732,30,mac,phase-19,with +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151,30,mac,phase-19,with +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.4873141669995675,30,mac,phase-19,with +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508,30,mac,phase-19,with +5,1541.501322781938,2.013367568612397,0.0,465.7590308723345,0.4976549159982824,30,mac,phase-19,with +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.4959944170004746,30,mac,phase-19,with +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.4905059580014494,30,mac,phase-19,with +8,1540.251215198586,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841,30,mac,phase-19,with +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.4978336249987478,30,mac,phase-19,with +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284,30,mac,phase-19,with +11,1545.29644513748,2.0183244091655883,0.0,466.9057133203061,0.4988801250001415,30,mac,phase-19,with +12,1538.6722489839171,2.009672492033502,0.0,464.9042364904169,0.4967415840001195,30,mac,phase-19,with +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.4967219999998633,30,mac,phase-19,with +14,1519.289578347493,1.984356626340929,0.0,459.04783289353486,0.4904841249990568,30,mac,phase-19,with +15,1518.7244091137609,1.9836184541518056,0.0,458.87706906045105,0.490301666999585,30,mac,phase-19,with +16,1541.7541618243265,2.0136978037672426,0.0,465.8354252714888,0.4977365420018032,30,mac,phase-19,with +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.4974016669984848,30,mac,phase-19,with +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905,30,mac,phase-19,with +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.4971792910000658,30,mac,phase-19,with +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.4981023750005988,30,mac,phase-19,with +21,1539.6550675608858,2.010956159468265,0.0,465.2011915569919,0.4970588750002207,30,mac,phase-19,with +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936,30,mac,phase-19,with +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943,30,mac,phase-19,with +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205,30,mac,phase-19,with +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.4967334999964805,30,mac,phase-19,with +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164,30,mac,phase-19,with +27,1543.166248570158,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906,30,mac,phase-19,with +28,1517.437899341542,1.9819381331466872,0.0,458.488354801267,0.4898863329981395,30,mac,phase-19,with +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185,30,mac,phase-19,with +0,388.73038558373344,0.3723471126280971,12.795200779401885,75.75571255106195,0.0790761250027571,30,mac,phase-26,without +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.081851082999492,30,mac,phase-26,without +2,386.16305637510675,0.3698879850336271,12.710696212973732,75.25539186411433,0.0785538749987608,30,mac,phase-26,without +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597,30,mac,phase-26,without +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908,30,mac,phase-26,without +5,374.82924555374433,0.3590318444001382,12.337639743932025,73.04666070613722,0.0762483340004109,30,mac,phase-26,without +6,356.617671661771,0.3415878081051446,11.738199223976787,69.4975922308467,0.0725437080000119,30,mac,phase-26,without +7,391.64449222473655,0.3751384025141154,12.891119650030513,76.32361316605368,0.0796689169983437,30,mac,phase-26,without +8,394.2085425197358,0.3775943893867201,12.975516289834564,76.82329485886179,0.0801905000007536,30,mac,phase-26,without +9,394.23025605863455,0.3776151877956269,12.976230998795184,76.82752638969211,0.0801949170017906,30,mac,phase-26,without +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.0770093749997613,30,mac,phase-26,without +11,390.7969073771063,0.3743265396332436,12.8632210892151,76.15843597265447,0.0794965000022784,30,mac,phase-26,without +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.0793902500008698,30,mac,phase-26,without +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.0770231249989592,30,mac,phase-26,without +14,361.2965867125136,0.3460695275024076,11.89220739962819,70.40941841367166,0.0734955000007175,30,mac,phase-26,without +15,395.7865466718811,0.3791058876167443,13.027456865375395,77.13081604420672,0.0805115000002842,30,mac,phase-26,without +16,391.401769634818,0.3749059096118946,12.883130348481467,76.27631142831092,0.0796195420007279,30,mac,phase-26,without +17,381.2733721004155,0.3652043794065282,12.549750492333423,74.30249101016456,0.0775592080026399,30,mac,phase-26,without +18,379.5206519126656,0.3635255286519786,12.492059075495265,73.96092119301164,0.077202667001984,30,mac,phase-26,without +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.0731172079977113,30,mac,phase-26,without +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.0759907499996188,30,mac,phase-26,without +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.078528041998652,30,mac,phase-26,without +22,386.9403832051992,0.3706325509628345,12.736282205813769,75.40687718680215,0.0787120000022696,30,mac,phase-26,without +23,390.2086362678317,0.3737630615592258,12.843857933580669,76.04379379723157,0.079376833000424,30,mac,phase-26,without +24,376.20897175435175,0.3603534212206434,12.383053929218477,73.31554151743637,0.0765289999981178,30,mac,phase-26,without +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.0730223749997094,30,mac,phase-26,without +26,382.8300756539037,0.3666954747642755,12.60098995099056,74.60586113840442,0.0778758750020642,30,mac,phase-26,without +27,379.2515063336283,0.3632677263732072,12.48320005173385,73.90847014756707,0.0771479169998201,30,mac,phase-26,without +28,386.50532596295153,0.3702158294664286,12.721962139846369,75.32209330416975,0.078623499997775,30,mac,phase-26,without +29,385.28085865824175,0.3690429680634499,12.681658357089464,75.08346932054555,0.0783744170003046,30,mac,phase-26,without +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.4960967090009944,30,mac,phase-26,with +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625,30,mac,phase-26,with +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175,30,mac,phase-26,with +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248,30,mac,phase-26,with +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133,30,mac,phase-26,with +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024,30,mac,phase-26,with +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.9361560538288,0.4992987500008894,30,mac,phase-26,with +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069,30,mac,phase-26,with +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808,30,mac,phase-26,with +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982,30,mac,phase-26,with +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676,30,mac,phase-26,with +11,2383.245600577661,3.968493333370142,85.35567744523615,511.86949844919224,0.5002108339976985,30,mac,phase-26,with +12,2393.684776374659,3.985876266772484,85.72955537116485,514.1116071425375,0.5024018750009418,30,mac,phase-26,with +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633,30,mac,phase-26,with +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925,30,mac,phase-26,with +15,2396.267721266653,3.990177292055761,85.82206325663266,514.6663677203255,0.5029439999998431,30,mac,phase-26,with +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309,30,mac,phase-26,with +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842,30,mac,phase-26,with +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849,30,mac,phase-26,with +19,2370.2641685954413,3.946877128029598,84.89074889536992,509.0813682303509,0.4974862080016464,30,mac,phase-26,with +20,2385.3405815094175,3.9719818189291622,85.43070895546808,512.3194549448798,0.5006505419987661,30,mac,phase-26,with +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261,30,mac,phase-26,with +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995,30,mac,phase-26,with +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786,30,mac,phase-26,with +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882,30,mac,phase-26,with +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378,30,mac,phase-26,with +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566,30,mac,phase-26,with +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169,30,mac,phase-26,with +28,2422.427310738474,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318,30,mac,phase-26,with +29,2386.7347881131845,3.974303400729649,85.48064231069353,512.6189003041125,0.5009431670005142,30,mac,phase-26,with +0,243.61769021404157,0.0,0.0,60.71178863926628,0.0740814170021622,30,mac,phase-21,without +1,251.461612143386,0.0,0.0,62.666566758453214,0.0764666659997601,30,mac,phase-21,without +2,254.063240155725,0.0,0.0,63.31491659653083,0.0772577920033654,30,mac,phase-21,without +3,232.2594398453139,0.0,0.0,57.881207267723845,0.0706275000011373,30,mac,phase-21,without +4,252.81360526435807,0.0,0.0,63.00349598773077,0.0768777919984131,30,mac,phase-21,without +5,252.19796606709363,0.0,0.0,62.850072987990785,0.0766905829987081,30,mac,phase-21,without +6,255.2020225366119,0.0,0.0,63.598711731251065,0.0776040829987323,30,mac,phase-21,without +7,255.2195634669661,0.0,0.0,63.60308309383669,0.0776094169996213,30,mac,phase-21,without +8,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134,30,mac,phase-21,without +9,251.7152386884793,0.0,0.0,62.72977284658861,0.0765437909976753,30,mac,phase-21,without +10,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569,30,mac,phase-21,without +11,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293,30,mac,phase-21,without +12,256.09101607265075,0.0,0.0,63.82025716834245,0.0778744159979396,30,mac,phase-21,without +13,258.54822246754117,0.0,0.0,64.43261579943601,0.0786216250016877,30,mac,phase-21,without +14,251.91734740702609,0.0,0.0,62.78014021437615,0.0766052500002842,30,mac,phase-21,without +15,256.0914304298579,0.0,0.0,63.82036043000281,0.0778745419993356,30,mac,phase-21,without +16,256.1073238132674,0.0,0.0,63.82432120860419,0.0778793749996111,30,mac,phase-21,without +17,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663,30,mac,phase-21,without +18,252.78893813177984,0.0,0.0,62.99734870943538,0.0768702909990679,30,mac,phase-21,without +19,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129,30,mac,phase-21,without +20,254.19532983990769,0.0,0.0,63.34783457133176,0.0772979590001341,30,mac,phase-21,without +21,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895,30,mac,phase-21,without +22,254.8345312291614,0.0,0.0,63.50712948792096,0.0774923329990997,30,mac,phase-21,without +23,256.2513343634823,0.0,0.0,63.86020997381984,0.0779231669985165,30,mac,phase-21,without +24,256.51962110224747,0.0,0.0,63.927069518232734,0.0780047499974898,30,mac,phase-21,without +25,254.42100073848025,0.0,0.0,63.404073852987096,0.0773665829983656,30,mac,phase-21,without +26,252.18371695261897,0.0,0.0,62.84652197646316,0.0766862500022398,30,mac,phase-21,without +27,253.7606969687288,0.0,0.0,63.23952002739407,0.077165792001324,30,mac,phase-21,without +28,252.71604495264393,0.0,0.0,62.97918305290586,0.0768481249979231,30,mac,phase-21,without +29,253.57256771842907,0.0,0.0,63.192636472792486,0.077108583998779,30,mac,phase-21,without +0,1550.0754940354375,0.8369738088744263,0.0,464.9222113535663,0.4976810830012255,30,mac,phase-21,with +1,1538.0192823716247,0.8304639753626484,0.0,461.3061290344438,0.4938102080013777,30,mac,phase-21,with +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189,30,mac,phase-21,with +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839,30,mac,phase-21,with +4,1528.3809066387753,0.8252596688114338,0.0,458.4152408313752,0.4907156250010303,30,mac,phase-21,with +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.4982283329991332,30,mac,phase-21,with +6,1548.695597204981,0.8362287241927542,0.0,464.50833171459107,0.4972380409999459,30,mac,phase-21,with +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205,30,mac,phase-21,with +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483,30,mac,phase-21,with +9,1527.96653767238,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396,30,mac,phase-21,with +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764,30,mac,phase-21,with +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.4892915000018547,30,mac,phase-21,with +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.4895386659991345,30,mac,phase-21,with +13,1526.3592753499977,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508,30,mac,phase-21,with +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895,30,mac,phase-21,with +15,1545.9810991200077,0.8347630124838054,0.0,463.6941581745042,0.4963664999995671,30,mac,phase-21,with +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642,30,mac,phase-21,with +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.4972027500007243,30,mac,phase-21,with +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156,30,mac,phase-21,with +19,1529.9212051478569,0.826091363470765,0.0,458.8772305807405,0.4912101669979165,30,mac,phase-21,with +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.4959058749991527,30,mac,phase-21,with +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002,30,mac,phase-21,with +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318,30,mac,phase-21,with +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.4974249170008988,30,mac,phase-21,with +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943,30,mac,phase-21,with +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.4972544580014073,30,mac,phase-21,with +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859,30,mac,phase-21,with +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.4976514579975628,30,mac,phase-21,with +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.4981981669989181,30,mac,phase-21,with +29,1549.708881169605,0.8367758537632858,0.0,464.8122512484299,0.497563375000027,30,mac,phase-21,with +0,405.8431369282208,0.3014184050465412,12.492118342484432,76.292347410669,0.0778078330004063,30,mac,phase-28,without +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.077850457997556,30,mac,phase-28,without +2,374.8841940857946,0.2784252968123578,11.539181745667715,70.47253623761678,0.0718724159996782,30,mac,phase-28,without +3,395.92910555470706,0.2940552855250341,12.186957944537523,74.42866004733642,0.0759071249995031,30,mac,phase-28,without +4,396.96491328086944,0.2948245766238508,12.21884078674404,74.6233761721258,0.0761057090021495,30,mac,phase-28,without +5,403.6617775393808,0.2997983163768301,12.424974667617516,75.88228496737989,0.0773896249993413,30,mac,phase-28,without +6,410.7431055614168,0.3050575961423297,12.642942595676551,77.21346711246967,0.0787472499978321,30,mac,phase-28,without +7,408.4530767282583,0.3033567990224727,12.57245400393137,76.7829764636881,0.0783082080015447,30,mac,phase-28,without +8,412.0644822883901,0.3060389784284131,12.6836154393109,77.46186587332501,0.0790005829985602,30,mac,phase-28,without +9,414.61052649200695,0.3079299173484124,12.76198435232865,77.94048352440929,0.0794887080010084,30,mac,phase-28,without +10,401.4493414263137,0.2981551471230255,12.356874430765387,75.46638057180579,0.0769654590003483,30,mac,phase-28,without +11,418.55140908310005,0.3108567982957502,12.883287307146093,78.68130961307988,0.080244249998941,30,mac,phase-28,without +12,371.5974824961197,0.2759842665840136,11.438014603981898,69.85468436426478,0.0712422910000896,30,mac,phase-28,without +13,412.4000411444283,0.3062881969219223,12.69394416131967,77.52494584312656,0.0790649160007888,30,mac,phase-28,without +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549,30,mac,phase-28,without +15,411.7995528547654,0.3058422161819515,12.67546073731866,77.4120631624984,0.0789497909972851,30,mac,phase-28,without +16,409.77163159678435,0.304336085523276,12.613039988909108,77.03084475800254,0.0785609999984444,30,mac,phase-28,without +17,420.8577378253096,0.3125697013061385,12.954277620798852,79.11486439726484,0.0806864169971959,30,mac,phase-28,without +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.0790608339993923,30,mac,phase-28,without +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.076155833001394,30,mac,phase-28,without +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.0787210829985269,30,mac,phase-28,without +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.0815035830019041,30,mac,phase-28,without +22,410.9195773893686,0.305188661206826,12.64837451446068,77.24664113657218,0.0787810829970112,30,mac,phase-28,without +23,408.3198556922807,0.303257856183407,12.568353372934537,76.7579329317557,0.0782826670001668,30,mac,phase-28,without +24,402.4147283665603,0.2988721369284571,12.386589674923831,75.64785865811392,0.0771505420016183,30,mac,phase-28,without +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.0792156669995165,30,mac,phase-28,without +26,382.7631322481759,0.2842769590884291,11.781700637776003,71.95365697816015,0.0733829580021847,30,mac,phase-28,without +27,386.7318315968666,0.2872244994530284,11.903859810664404,72.69971219488876,0.0741438330005621,30,mac,phase-28,without +28,399.2001692552227,0.2964846941159436,12.28764343391633,75.0435703551244,0.0765342500017141,30,mac,phase-28,without +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.075706124996941,30,mac,phase-28,without +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305,30,mac,phase-28,with +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298,30,mac,phase-28,with +2,2349.795445683046,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945,30,mac,phase-28,with +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512,30,mac,phase-28,with +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063,30,mac,phase-28,with +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291,30,mac,phase-28,with +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763,30,mac,phase-28,with +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418,30,mac,phase-28,with +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142,30,mac,phase-28,with +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085,30,mac,phase-28,with +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949,30,mac,phase-28,with +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573,30,mac,phase-28,with +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898,30,mac,phase-28,with +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496,30,mac,phase-28,with +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966,30,mac,phase-28,with +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723,30,mac,phase-28,with +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122,30,mac,phase-28,with +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662,30,mac,phase-28,with +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014,30,mac,phase-28,with +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694,30,mac,phase-28,with +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.4982014580018585,30,mac,phase-28,with +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375,30,mac,phase-28,with +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518,30,mac,phase-28,with +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471,30,mac,phase-28,with +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199,30,mac,phase-28,with +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108,30,mac,phase-28,with +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048,30,mac,phase-28,with +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745,30,mac,phase-28,with +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778,30,mac,phase-28,with +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413,30,mac,phase-28,with +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185,30,mac,phase-17,without +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.0771942079991276,30,mac,phase-17,without +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.0778375420013617,30,mac,phase-17,without +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.0770157910010311,30,mac,phase-17,without +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.0775850829995761,30,mac,phase-17,without +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.0741231249994598,30,mac,phase-17,without +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.078746458999376,30,mac,phase-17,without +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.0746817090002878,30,mac,phase-17,without +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.0783254170019063,30,mac,phase-17,without +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.0784614170006534,30,mac,phase-17,without +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.0773908750015834,30,mac,phase-17,without +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.0808109999998123,30,mac,phase-17,without +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595,30,mac,phase-17,without +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.0778277089993935,30,mac,phase-17,without +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.0793734999970183,30,mac,phase-17,without +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.0783875000015541,30,mac,phase-17,without +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.0790057079975667,30,mac,phase-17,without +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.0785369580007682,30,mac,phase-17,without +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.0782466659984493,30,mac,phase-17,without +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.0789429169999493,30,mac,phase-17,without +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107,30,mac,phase-17,without +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.0796699590027856,30,mac,phase-17,without +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185,30,mac,phase-17,without +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641,30,mac,phase-17,without +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732,30,mac,phase-17,without +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.0785001250005734,30,mac,phase-17,without +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594,30,mac,phase-17,without +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134,30,mac,phase-17,without +28,255.42040166006765,0.5993439225500219,0.0,68.29191028611638,0.0778273750001972,30,mac,phase-17,without +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.0758569999998144,30,mac,phase-17,without +0,1550.1230309870657,1.3179917364115763,0.0,458.9576724119213,0.4902429590001702,30,mac,phase-17,with +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.4978254169982392,30,mac,phase-17,with +2,1573.7945638369015,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331,30,mac,phase-17,with +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943,30,mac,phase-17,with +4,1559.3314125989507,1.3258211606750565,0.0,461.68407367607153,0.4931552080015535,30,mac,phase-17,with +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.4910096250023343,30,mac,phase-17,with +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715,30,mac,phase-17,with +7,1575.5656502813997,1.3396243173824207,0.0,466.49067792049345,0.498289458999352,30,mac,phase-17,with +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.4987434999966353,30,mac,phase-17,with +9,1578.9038743347269,1.3424626415854837,0.0,467.47905336610495,0.4993452079979761,30,mac,phase-17,with +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413,30,mac,phase-17,with +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208,30,mac,phase-17,with +12,1553.4810203833467,1.3208468660927597,0.0,459.9518999451511,0.4913049589995353,30,mac,phase-17,with +13,1572.2751115779795,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662,30,mac,phase-17,with +14,1570.6119266223695,1.335412415025928,0.0,465.0239882224038,0.4967227910019574,30,mac,phase-17,with +15,1573.5109085929755,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935,30,mac,phase-17,with +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629,30,mac,phase-17,with +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.4892259999978705,30,mac,phase-17,with +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967,30,mac,phase-17,with +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979,30,mac,phase-17,with +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978,30,mac,phase-17,with +21,1569.630277542812,1.3345777681307784,0.0,464.7333433073403,0.4964123339996149,30,mac,phase-17,with +22,1574.2479082049676,1.3385039074970495,0.0,466.10052318816014,0.4978727089983294,30,mac,phase-17,with +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383,30,mac,phase-17,with +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.4985292919991479,30,mac,phase-17,with +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484,30,mac,phase-17,with +26,1553.7065716648651,1.3210386410159338,0.0,460.0186807677736,0.4913762920004956,30,mac,phase-17,with +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761,30,mac,phase-17,with +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531,30,mac,phase-17,with +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107,30,mac,phase-17,with +0,261.6846194438566,0.0,0.0,70.7870578236059,0.0761451660000602,30,mac,phase-10,without +1,264.8513555634606,0.0,0.0,71.64367650179537,0.0770666249991336,30,mac,phase-10,without +2,269.77737005954486,0.0,0.0,72.97618917951907,0.0784999999996216,30,mac,phase-10,without +3,266.95043658088093,0.0,0.0,72.21148889242174,0.0776774170008138,30,mac,phase-10,without +4,245.5969253936852,0.0,0.0,66.43525246569763,0.0714639580000948,30,mac,phase-10,without +5,264.9049123942919,0.0,0.0,71.65816390456655,0.0770822090016736,30,mac,phase-10,without +6,268.0374194355293,0.0,0.0,72.50552343808509,0.0779937080005765,30,mac,phase-10,without +7,249.4505628149961,0.0,0.0,67.47768153758304,0.0725852920004399,30,mac,phase-10,without +8,261.54973419510105,0.0,0.0,70.7505706585463,0.0761059169999498,30,mac,phase-10,without +9,243.2800464083468,0.0,0.0,65.80852458595446,0.0707897909996972,30,mac,phase-10,without +10,270.3172100512772,0.0,0.0,73.12221871993097,0.0786570830023265,30,mac,phase-10,without +11,272.70482912023755,0.0,0.0,73.76808216217084,0.0793518339996808,30,mac,phase-10,without +12,270.90029688215856,0.0,0.0,73.2799467564564,0.0788267499992798,30,mac,phase-10,without +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053,30,mac,phase-10,without +14,264.864243015556,0.0,0.0,71.64716262497149,0.0770703749985841,30,mac,phase-10,without +15,267.43801192267176,0.0,0.0,72.34338057174956,0.0778192920006404,30,mac,phase-10,without +16,268.4402228149727,0.0,0.0,72.61448385835281,0.0781109159979678,30,mac,phase-10,without +17,245.10605773741895,0.0,0.0,66.30247019808976,0.0713211250003951,30,mac,phase-10,without +18,270.45009515394486,0.0,0.0,73.15816483501571,0.0786957499985874,30,mac,phase-10,without +19,269.58577658088814,0.0,0.0,72.92436214176223,0.0784442500007571,30,mac,phase-10,without +20,264.0393016153403,0.0,0.0,71.42401166286199,0.0768303329969057,30,mac,phase-10,without +21,264.65732548978616,0.0,0.0,71.59119035234609,0.0770101659982174,30,mac,phase-10,without +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325,30,mac,phase-10,without +23,267.9255872644627,0.0,0.0,72.47527225107741,0.0779611670004669,30,mac,phase-10,without +24,268.883125097681,0.0,0.0,72.73429124161788,0.0782397920011135,30,mac,phase-10,without +25,266.39670220014995,0.0,0.0,72.06170084713644,0.0775162909994833,30,mac,phase-10,without +26,270.10857762340623,0.0,0.0,73.06578255732055,0.0785963749985967,30,mac,phase-10,without +27,269.86486039771097,0.0,0.0,72.99985577345161,0.078525457996875,30,mac,phase-10,without +28,266.2155630292543,0.0,0.0,72.01270175429117,0.0774635830020997,30,mac,phase-10,without +29,267.78210693862854,0.0,0.0,72.43646007272716,0.077919416999066,30,mac,phase-10,without +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919,30,mac,phase-10,with +1,1537.0330531240645,0.8380038018079471,0.0,481.5169845188464,0.4986462920023768,30,mac,phase-10,with +2,1534.554664825174,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392,30,mac,phase-10,with +3,1535.092545630475,0.8369458202285922,0.0,480.9090683033491,0.498016749999806,30,mac,phase-10,with +4,1531.808106737977,0.8351551155504301,0.0,479.8801293952771,0.4969512079987908,30,mac,phase-10,with +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388,30,mac,phase-10,with +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.4978598749985394,30,mac,phase-10,with +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567,30,mac,phase-10,with +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.4900122919971181,30,mac,phase-10,with +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.4971287920016038,30,mac,phase-10,with +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442,30,mac,phase-10,with +11,1542.3129650510032,0.8408824557568605,0.0,483.171059077892,0.5003592079992814,30,mac,phase-10,with +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785,30,mac,phase-10,with +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.4977900420017249,30,mac,phase-10,with +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406,30,mac,phase-10,with +15,1515.0810186523638,0.8260353615019213,0.0,474.639918719004,0.4915245840020361,30,mac,phase-10,with +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891,30,mac,phase-10,with +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457,30,mac,phase-10,with +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533,30,mac,phase-10,with +19,1532.7389950049983,0.8356626439378236,0.0,480.1717552066734,0.4972532079991651,30,mac,phase-10,with +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.491781249998894,30,mac,phase-10,with +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092,30,mac,phase-10,with +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712,30,mac,phase-10,with +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.4898963329978869,30,mac,phase-10,with +24,1538.518645991316,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767,30,mac,phase-10,with +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646,30,mac,phase-10,with +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.4983793329993204,30,mac,phase-10,with +27,1537.739437027721,0.8383889284619229,0.0,481.73827829422095,0.498875458000839,30,mac,phase-10,with +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.4930752500004018,30,mac,phase-10,with +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.4973596250019909,30,mac,phase-10,with +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878,30,mac,phase-11,without +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405,30,mac,phase-11,without +2,255.3331764989173,0.0,0.0,70.37239576741659,0.0769770410006458,30,mac,phase-11,without +3,259.2942335745159,0.0,0.0,71.46410300265921,0.078171207998821,30,mac,phase-11,without +4,258.6612396991297,0.0,0.0,71.28964351357979,0.0779803750010614,30,mac,phase-11,without +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063,30,mac,phase-11,without +6,257.37410271121684,0.0,0.0,70.9348955925995,0.0775923330002115,30,mac,phase-11,without +7,256.01136788270634,0.0,0.0,70.55931214514888,0.0771815000007336,30,mac,phase-11,without +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919,30,mac,phase-11,without +9,259.045318948124,0.0,0.0,71.39549962396424,0.0780961660020693,30,mac,phase-11,without +10,238.6136802942901,0.0,0.0,65.7643341748063,0.0719365000004472,30,mac,phase-11,without +11,258.8377308561513,0.0,0.0,71.33828625449453,0.0780335829986142,30,mac,phase-11,without +12,256.8371626413573,0.0,0.0,70.78690950000609,0.0774304580008902,30,mac,phase-11,without +13,257.99811414343014,0.0,0.0,71.1068794298479,0.0777804579993244,30,mac,phase-11,without +14,258.1165610601165,0.0,0.0,71.13952459336632,0.0778161670023109,30,mac,phase-11,without +15,256.135891547354,0.0,0.0,70.5936321216249,0.0772190410025359,30,mac,phase-11,without +16,256.2543384519732,0.0,0.0,70.62627728181748,0.0772547500018845,30,mac,phase-11,without +17,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197,30,mac,phase-11,without +18,253.0893623898181,0.0,0.0,69.75397799390524,0.0763005829976464,30,mac,phase-11,without +19,253.0000819108746,0.0,0.0,69.72937139446263,0.0762736670003505,30,mac,phase-11,without +20,240.37099932043577,0.0,0.0,66.24866900231768,0.0724662909997277,30,mac,phase-11,without +21,247.79459427718265,0.0,0.0,68.29468656053892,0.0747043330011365,30,mac,phase-11,without +22,256.24618193564646,0.0,0.0,70.62402926374595,0.0772522910010593,30,mac,phase-11,without +23,254.47628482944975,0.0,0.0,70.13622779065612,0.0767187080018629,30,mac,phase-11,without +24,257.38833929398254,0.0,0.0,70.93881933823452,0.0775966250002966,30,mac,phase-11,without +25,256.62086741918284,0.0,0.0,70.7272963577338,0.0773652499992749,30,mac,phase-11,without +26,257.5863909862953,0.0,0.0,70.99340437988461,0.0776563330000499,30,mac,phase-11,without +27,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218,30,mac,phase-11,without +28,256.10728569098626,0.0,0.0,70.5857480594236,0.0772104169991507,30,mac,phase-11,without +29,261.6339654918951,0.0,0.0,72.1089566904453,0.0788765830002375,30,mac,phase-11,without +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553,30,mac,phase-11,with +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.4946381670015398,30,mac,phase-11,with +2,1513.015531420153,1.7770758373213904,0.0,472.4389022330719,0.489482125001814,30,mac,phase-11,with +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.4983768749989394,30,mac,phase-11,with +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381,30,mac,phase-11,with +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.4987627919981605,30,mac,phase-11,with +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078,30,mac,phase-11,with +7,1540.8432585109908,1.8097602218460391,0.0,481.1281063855878,0.498484791998635,30,mac,phase-11,with +8,1521.949062973098,1.7875685009689248,0.0,475.2283962946275,0.4923722499988798,30,mac,phase-11,with +9,1537.8767464620305,1.806275976791144,0.0,480.20181338543824,0.4975250829993456,30,mac,phase-11,with +10,1540.0165314743188,1.8087892095791984,0.0,480.8699609762772,0.4982173339994915,30,mac,phase-11,with +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.4885295409985701,30,mac,phase-11,with +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686,30,mac,phase-11,with +13,1514.3150598492307,1.7786021670405965,0.0,472.8446798154592,0.4899025410013564,30,mac,phase-11,with +14,1541.9176562329635,1.81102212973247,0.0,481.4635869340618,0.4988323750003474,30,mac,phase-11,with +15,1515.38856114981,1.779863022056937,0.0,473.1798804564702,0.4902498339979502,30,mac,phase-11,with +16,1539.5401197356418,1.8082296516818483,0.0,480.7212014730485,0.4980632080005307,30,mac,phase-11,with +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.4996198750013718,30,mac,phase-11,with +18,1541.4078889281657,1.8104233948608175,0.0,481.3044121596648,0.4986674579995451,30,mac,phase-11,with +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968,30,mac,phase-11,with +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977,30,mac,phase-11,with +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.4975674579982296,30,mac,phase-11,with +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822,30,mac,phase-11,with +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.4915245830015919,30,mac,phase-11,with +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001,30,mac,phase-11,with +25,1541.7235658764823,1.810794165593571,0.0,481.40298224557984,0.498769583999092,30,mac,phase-11,with +26,1538.245614273331,1.8067092215669016,0.0,480.31699231137856,0.4976444170024479,30,mac,phase-11,with +27,1538.7954354415915,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098,30,mac,phase-11,with +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118,30,mac,phase-11,with +29,1539.4867990582093,1.8081670251684203,0.0,480.70455209847864,0.4980459580001479,30,mac,phase-11,with +0,406.90110086989495,1.1695525766824268,9.356420613459417,76.36490353632317,0.080162875001406,30,mac,phase-29,without +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242,30,mac,phase-29,without +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.0784781250004016,30,mac,phase-29,without +3,401.51109823696424,1.1540601352656,9.2324810821248,75.35333824381271,0.0791009999993548,30,mac,phase-29,without +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.0736787080022622,30,mac,phase-29,without +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.0781110829993849,30,mac,phase-29,without +6,396.616846417644,1.1399926264434777,9.11994101154782,74.43481266778001,0.0781367919989861,30,mac,phase-29,without +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764,30,mac,phase-29,without +8,399.3405038898903,1.147821213311038,9.182569706488303,74.94597333972072,0.0786733749991981,30,mac,phase-29,without +9,383.8921206281695,1.1034180489777463,8.827344391821972,72.0467079038411,0.0756299160020717,30,mac,phase-29,without +10,396.6972136294903,1.1402236252770876,9.1217890022167,74.44989553279808,0.0781526250029855,30,mac,phase-29,without +11,396.0940256882952,1.1384898870066815,9.107919096053454,74.33669262220099,0.0780337920004967,30,mac,phase-29,without +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.0781155000004218,30,mac,phase-29,without +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.0828537080014939,30,mac,phase-29,without +14,396.0908481484921,1.138480753829464,9.107846030635711,74.33609627945324,0.0780331659989315,30,mac,phase-29,without +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.075443792000442,30,mac,phase-29,without +16,374.5642575893283,1.0766070469217317,8.612856375373852,70.29610718136011,0.0737922500011336,30,mac,phase-29,without +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.0755845000021508,30,mac,phase-29,without +18,381.37974870457487,1.0961967584711765,8.76957406776941,71.57520011194151,0.0751349579986708,30,mac,phase-29,without +19,408.4651216412204,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255,30,mac,phase-29,without +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.0777786670005298,30,mac,phase-29,without +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.0736387079996347,30,mac,phase-29,without +22,400.4768776142425,1.1510874832094211,9.20869986567537,75.1592415507328,0.0788972500013187,30,mac,phase-29,without +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.0792267500000889,30,mac,phase-29,without +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.0778149590005341,30,mac,phase-29,without +25,389.6991971410489,1.120109282508721,8.96087426006977,73.13654726968709,0.0767739580005582,30,mac,phase-29,without +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.0779693330005102,30,mac,phase-29,without +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.0744205830014834,30,mac,phase-29,without +28,405.3831898437398,1.165189657171963,9.321517257375705,76.08003055652229,0.0798638340020261,30,mac,phase-29,without +29,398.0772319408369,1.1441902008613116,9.153521606890491,74.70888958565034,0.078424499999528,30,mac,phase-29,without +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597,30,mac,phase-29,with +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385,30,mac,phase-29,with +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235,30,mac,phase-29,with +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116,30,mac,phase-29,with +4,2392.7939583178036,3.094216164570146,88.53450767657158,515.4365249625881,0.5038726669990865,30,mac,phase-29,with +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987,30,mac,phase-29,with +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502,30,mac,phase-29,with +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484,30,mac,phase-29,with +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611,30,mac,phase-29,with +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628,30,mac,phase-29,with +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102,30,mac,phase-29,with +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241,30,mac,phase-29,with +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865,30,mac,phase-29,with +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589,30,mac,phase-29,with +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126,30,mac,phase-29,with +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535,30,mac,phase-29,with +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978,30,mac,phase-29,with +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702,30,mac,phase-29,with +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992,30,mac,phase-29,with +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001,30,mac,phase-29,with +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963,30,mac,phase-29,with +21,2390.42113626185,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558,30,mac,phase-29,with +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539,30,mac,phase-29,with +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549,30,mac,phase-29,with +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028,30,mac,phase-29,with +25,2377.367853522984,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472,30,mac,phase-29,with +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107,30,mac,phase-29,with +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148,30,mac,phase-29,with +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216,30,mac,phase-29,with +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105,30,mac,phase-29,with +0,255.4535357322803,0.0,0.0,63.94788166253961,0.0773206670019135,30,mac,phase-16,without +1,253.46435879218197,0.0,0.0,63.44992945684153,0.0767185829972731,30,mac,phase-16,without +2,231.36937798580223,0.0,0.0,57.91887578051573,0.0700308750019758,30,mac,phase-16,without +3,256.5681585689286,0.0,0.0,64.22690606144654,0.077658041001996,30,mac,phase-16,without +4,259.27963304187745,0.0,0.0,64.90567156856736,0.0784787499978847,30,mac,phase-16,without +5,257.07130386219023,0.0,0.0,64.35285881281608,0.0778103330012527,30,mac,phase-16,without +6,257.34139440968914,0.0,0.0,64.42047078898278,0.0778920839984493,30,mac,phase-16,without +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725,30,mac,phase-16,without +8,256.468082553313,0.0,0.0,64.2018539548648,0.0776277499971911,30,mac,phase-16,without +9,255.38512022018003,0.0,0.0,63.93075515435044,0.0772999589971732,30,mac,phase-16,without +10,254.8657300539408,0.0,0.0,63.800735811333155,0.0771427500003483,30,mac,phase-16,without +11,256.0687333702568,0.0,0.0,64.10188456423998,0.0775068750008358,30,mac,phase-16,without +12,233.89707419467393,0.0,0.0,58.55163593229996,0.0707959579995076,30,mac,phase-16,without +13,255.41444162612115,0.0,0.0,63.93809520463366,0.0773088339992682,30,mac,phase-16,without +14,256.2091457030477,0.0,0.0,64.13703409237446,0.0775493750006717,30,mac,phase-16,without +15,255.03298592111852,0.0,0.0,63.84260510224348,0.0771933750002062,30,mac,phase-16,without +16,238.25646746995207,0.0,0.0,59.64292623090094,0.0721154589991783,30,mac,phase-16,without +17,253.54145012996145,0.0,0.0,63.469227791199664,0.0767419170006178,30,mac,phase-16,without +18,254.73825878542036,0.0,0.0,63.768825829851195,0.0771041670013801,30,mac,phase-16,without +19,257.11687012908976,0.0,0.0,64.36426545173828,0.0778241249972779,30,mac,phase-16,without +20,251.6776795914633,0.0,0.0,63.002668667246425,0.0761777910011005,30,mac,phase-16,without +21,257.5273697281309,0.0,0.0,64.46702613464193,0.0779483750011422,30,mac,phase-16,without +22,237.10632196795063,0.0,0.0,59.355009415634115,0.0717673330000252,30,mac,phase-16,without +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745,30,mac,phase-16,without +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247,30,mac,phase-16,without +25,254.1629811907558,0.0,0.0,63.624816143544585,0.0769300419997307,30,mac,phase-16,without +26,254.68470717332065,0.0,0.0,63.7554202132737,0.077087958001357,30,mac,phase-16,without +27,254.7956626434966,0.0,0.0,63.78319578215078,0.0771215419990767,30,mac,phase-16,without +28,255.26521799895795,0.0,0.0,63.90073993834724,0.0772636669971689,30,mac,phase-16,without +29,237.74451089433737,0.0,0.0,59.51476774438824,0.0719605000012961,30,mac,phase-16,without +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723,30,mac,phase-16,with +1,1532.1004752886363,1.944206307094024,0.0,458.2065881380069,0.4896357500001613,30,mac,phase-16,with +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.4978175420001207,30,mac,phase-16,with +3,1559.2145772362046,1.9786135857731335,0.0,466.3156255961936,0.4983009999996284,30,mac,phase-16,with +4,1530.2639789041189,1.9418758281787545,0.0,457.6573456072133,0.4890488339988224,30,mac,phase-16,with +5,1553.2082118735125,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419,30,mac,phase-16,with +6,1559.180676984456,1.9785705669996752,0.0,466.3054870191607,0.4982901660005154,30,mac,phase-16,with +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907,30,mac,phase-16,with +8,1558.6548663303993,1.977903323299642,0.0,466.1482323810427,0.4981221250018279,30,mac,phase-16,with +9,1553.3620584498417,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574,30,mac,phase-16,with +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101,30,mac,phase-16,with +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699,30,mac,phase-16,with +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511,30,mac,phase-16,with +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693,30,mac,phase-16,with +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.494713000000047,30,mac,phase-16,with +15,1555.7903386278183,1.974268292232144,0.0,465.2915356523383,0.4972066660011478,30,mac,phase-16,with +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439,30,mac,phase-16,with +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097,30,mac,phase-16,with +18,1553.613947922776,1.97150649390123,0.0,464.64064063892545,0.4965111250021436,30,mac,phase-16,with +19,1556.3417074494223,1.9749679687597528,0.0,465.45643399329424,0.4973828749971289,30,mac,phase-16,with +20,1559.243258216998,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102,30,mac,phase-16,with +21,1546.4155414555316,1.9623718532687304,0.0,462.48780711358813,0.4942106249982316,30,mac,phase-16,with +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894,30,mac,phase-16,with +23,1528.3264357327582,1.939417122816551,0.0,457.07788292820584,0.488429624998389,30,mac,phase-16,with +24,1559.6077970344063,1.979112574203768,0.0,466.4332261746338,0.498426666999876,30,mac,phase-16,with +25,1535.5840315256837,1.9486268735754144,0.0,459.24841825535833,0.4907490410005266,30,mac,phase-16,with +26,1533.0749182963104,1.94544285670156,0.0,458.4980156344947,0.4899471669996273,30,mac,phase-16,with +27,1555.842230984777,1.974334142644252,0.0,465.3070551435309,0.4972232500003883,30,mac,phase-16,with +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.4883499999996274,30,mac,phase-16,with +29,1555.619285336731,1.974051228865383,0.0,465.240378599545,0.4971519999999145,30,mac,phase-16,with +0,256.736730168257,0.0,0.0,62.78061796370678,0.0759414589992957,30,mac,phase-20,without +1,246.83770108103627,0.0,0.0,60.35997810072678,0.0730133750003005,30,mac,phase-20,without +2,249.48762015903063,0.0,0.0,61.00797091874418,0.073797207998723,30,mac,phase-20,without +3,261.96853136599685,0.0,0.0,64.05996631422177,0.077488999999332,30,mac,phase-20,without +4,260.9436089466303,0.0,0.0,63.809338899864194,0.0771858330008399,30,mac,phase-20,without +5,259.1546474245066,0.0,0.0,63.37187866657925,0.0766566670026804,30,mac,phase-20,without +6,261.2578738137402,0.0,0.0,63.88618704912788,0.0772787909991166,30,mac,phase-20,without +7,260.56553299065286,0.0,0.0,63.71688682984707,0.0770739999970828,30,mac,phase-20,without +8,260.5077801721833,0.0,0.0,63.70276435648577,0.0770569169981172,30,mac,phase-20,without +9,260.269297511551,0.0,0.0,63.64444746198333,0.0769863750028889,30,mac,phase-20,without +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342,30,mac,phase-20,without +11,268.07593877521344,0.0,0.0,65.55342933003354,0.0792955409997375,30,mac,phase-20,without +12,261.1346195586505,0.0,0.0,63.85604730910659,0.0772423329981393,30,mac,phase-20,without +13,259.16746372829186,0.0,0.0,63.375012676547826,0.0766604580021521,30,mac,phase-20,without +14,260.80992855999216,0.0,0.0,63.776649626002715,0.0771462910015543,30,mac,phase-20,without +15,259.6238641522187,0.0,0.0,63.48661766830046,0.0767954589973669,30,mac,phase-20,without +16,250.8287784191757,0.0,0.0,61.33592845058567,0.0741939159997855,30,mac,phase-20,without +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235,30,mac,phase-20,without +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625,30,mac,phase-20,without +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357,30,mac,phase-20,without +20,260.7072425967597,0.0,0.0,63.75153951330592,0.0771159169999009,30,mac,phase-20,without +21,240.3277041436231,0.0,0.0,58.768068636098214,0.0710877500023343,30,mac,phase-20,without +22,260.39015821218334,0.0,0.0,63.6740018988115,0.0770221250022586,30,mac,phase-20,without +23,262.73187065656884,0.0,0.0,64.24662800593482,0.0777147919980052,30,mac,phase-20,without +24,262.80286575413186,0.0,0.0,64.26398865430983,0.0777357919978385,30,mac,phase-20,without +25,259.5470914101739,0.0,0.0,63.46784419484701,0.0767727499987813,30,mac,phase-20,without +26,259.2690272739524,0.0,0.0,63.39984832104239,0.0766904999982216,30,mac,phase-20,without +27,263.9649879020873,0.0,0.0,64.54816593798147,0.0780795419996138,30,mac,phase-20,without +28,259.8130390424965,0.0,0.0,63.53287718288986,0.0768514159972255,30,mac,phase-20,without +29,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653,30,mac,phase-20,without +0,1625.5597601283662,2.2574452413660273,0.0,464.3365675145092,0.4921481670025969,30,mac,phase-20,with +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114,30,mac,phase-20,with +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426,30,mac,phase-20,with +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874,30,mac,phase-20,with +4,1619.196275230912,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753,30,mac,phase-20,with +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.4969209160008176,30,mac,phase-20,with +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.496066374998918,30,mac,phase-20,with +7,1645.2563032830217,2.2847981992248796,0.0,469.96282959644697,0.4981114160000288,30,mac,phase-20,with +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988,30,mac,phase-20,with +9,1617.3511432498,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262,30,mac,phase-20,with +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978,30,mac,phase-20,with +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753,30,mac,phase-20,with +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172,30,mac,phase-20,with +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.4932250419988122,30,mac,phase-20,with +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461,30,mac,phase-20,with +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823,30,mac,phase-20,with +16,1618.5698106059183,2.247738167732763,0.0,462.3399081187963,0.4900319170010334,30,mac,phase-20,with +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.4884982080002373,30,mac,phase-20,with +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.4902859590001753,30,mac,phase-20,with +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689,30,mac,phase-20,with +20,1625.9434583893585,2.257978090317289,0.0,464.44616984217527,0.4922643339996284,30,mac,phase-20,with +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012,30,mac,phase-20,with +22,1643.0470201217047,2.2817301263790366,0.0,469.3317540832881,0.4974425420004991,30,mac,phase-20,with +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037,30,mac,phase-20,with +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533,30,mac,phase-20,with +25,1644.857744860965,2.284244713690023,0.0,469.8489825056227,0.4979907499982801,30,mac,phase-20,with +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.4965811670008406,30,mac,phase-20,with +27,1642.3811937703597,2.2808054808721243,0.0,469.141562661153,0.4972409589972812,30,mac,phase-20,with +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.4972591670011752,30,mac,phase-20,with +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.4894498749999911,30,mac,phase-20,with +0,252.8448031031451,0.0,0.0,63.327795876031466,0.0765359580000222,30,mac,phase-18,without +1,250.71246289168695,0.0,0.0,62.793727530579304,0.0758905000002414,30,mac,phase-18,without +2,255.849573327428,0.0,0.0,64.08037403101984,0.0774454999991576,30,mac,phase-18,without +3,259.473357102869,0.0,0.0,64.98799102141685,0.078542416998971,30,mac,phase-18,without +4,255.35499678935537,0.0,0.0,63.956501830904415,0.0772957920016779,30,mac,phase-18,without +5,253.22472132458208,0.0,0.0,63.42295062424645,0.0766509589993802,30,mac,phase-18,without +6,253.2219661176063,0.0,0.0,63.42226055198546,0.0766501250000146,30,mac,phase-18,without +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966,30,mac,phase-18,without +8,254.19074916093857,0.0,0.0,63.664903050717285,0.0769433749992458,30,mac,phase-18,without +9,255.66691023668932,0.0,0.0,64.0346240263434,0.077390207999997,30,mac,phase-18,without +10,245.0917868305501,0.0,0.0,61.38596663568849,0.0741891249999753,30,mac,phase-18,without +11,254.09728348032925,0.0,0.0,63.64149353044874,0.0769150829983118,30,mac,phase-18,without +12,258.4168897008931,0.0,0.0,64.72338699886663,0.0782226250012172,30,mac,phase-18,without +13,241.31589833068384,0.0,0.0,60.44025332366666,0.0730461659986758,30,mac,phase-18,without +14,236.296204735648,0.0,0.0,59.18301517819063,0.0715267080013291,30,mac,phase-18,without +15,254.9943518084654,0.0,0.0,63.86617428035477,0.0771866249997401,30,mac,phase-18,without +16,257.59167485304476,0.0,0.0,64.5167027530485,0.0779728330016951,30,mac,phase-18,without +17,255.1975237091272,0.0,0.0,63.917060944802486,0.0772481250023702,30,mac,phase-18,without +18,254.1328005774134,0.0,0.0,63.65038918282778,0.0769258340005762,30,mac,phase-18,without +19,254.61044282269503,0.0,0.0,63.770020000783035,0.0770704159986053,30,mac,phase-18,without +20,252.7502373251944,0.0,0.0,63.30411082413631,0.076507333000336,30,mac,phase-18,without +21,256.13602257519875,0.0,0.0,64.1521184341835,0.0775322080007754,30,mac,phase-18,without +22,233.69544263395284,0.0,0.0,58.53162535535499,0.0707394589990144,30,mac,phase-18,without +23,257.93167227093824,0.0,0.0,64.6018588915749,0.078075749999698,30,mac,phase-18,without +24,256.7664632982533,0.0,0.0,64.31001933201313,0.0777230419989791,30,mac,phase-18,without +25,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739,30,mac,phase-18,without +26,255.20371797321877,0.0,0.0,63.918612367205384,0.0772500000020954,30,mac,phase-18,without +27,253.60793655700468,0.0,0.0,63.51893114556863,0.0767669580018264,30,mac,phase-18,without +28,254.7793397817627,0.0,0.0,63.81232212452318,0.0771215409986325,30,mac,phase-18,without +29,254.67445023433228,0.0,0.0,63.78605136962657,0.0770897910006169,30,mac,phase-18,without +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501,30,mac,phase-18,with +1,1551.185722359366,1.974412823748249,0.0,466.16221414937473,0.4965388329983398,30,mac,phase-18,with +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298,30,mac,phase-18,with +3,1547.1130708458957,1.969228985824172,0.0,464.9383012293342,0.4952351660031127,30,mac,phase-18,with +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.4957658749990514,30,mac,phase-18,with +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.4897414169972762,30,mac,phase-18,with +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082,30,mac,phase-18,with +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806,30,mac,phase-18,with +8,1541.253365057029,1.9617705119056952,0.0,463.17734289570063,0.4933594579997589,30,mac,phase-18,with +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013,30,mac,phase-18,with +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192,30,mac,phase-18,with +11,1550.8496334220874,1.9739850359610631,0.0,466.0612127277562,0.4964312500014785,30,mac,phase-18,with +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.4899619159987196,30,mac,phase-18,with +13,1555.5371906072128,1.9799515510501056,0.0,467.4699170530165,0.4979317500001343,30,mac,phase-18,with +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.4902642919987556,30,mac,phase-18,with +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985,30,mac,phase-18,with +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.4972455840033944,30,mac,phase-18,with +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555,30,mac,phase-18,with +18,1523.894748786755,1.939675752991576,0.0,457.9607328673332,0.4878029169994988,30,mac,phase-18,with +19,1528.9590068812288,1.946121748451934,0.0,459.4826433209397,0.489423999999417,30,mac,phase-18,with +20,1532.1890914847395,1.9502331326472857,0.0,460.4533480979099,0.4904579590001958,30,mac,phase-18,with +21,1551.723309101243,1.9750970862074375,0.0,466.32376967575607,0.4967109159988467,30,mac,phase-18,with +22,1555.211904441731,1.9795375134740387,0.0,467.3721620795485,0.4978276250003546,30,mac,phase-18,with +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.4974748340027872,30,mac,phase-18,with +24,1553.889544716052,1.9778543597662952,0.0,466.9747666363473,0.4974043340007483,30,mac,phase-18,with +25,1553.1610005454645,1.9769270388579467,0.0,466.7558245981558,0.4971711250000226,30,mac,phase-18,with +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.4899513749987818,30,mac,phase-18,with +27,1556.0137313297807,1.9805581116315465,0.0,467.6131270343634,0.4980842920012946,30,mac,phase-18,with +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549,30,mac,phase-18,with +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403,30,mac,phase-18,with +0,346.01329874466325,0.3045891714301613,11.452552845774065,68.01476198035502,0.0710032919996592,30,mac,phase-27,without +1,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.0775276669992308,30,mac,phase-27,without +2,389.8002261465144,0.3431340018895373,12.901838471046604,76.62182262193369,0.0799885419983184,30,mac,phase-27,without +3,389.79007528132496,0.3431250662687719,12.901502491705823,76.61982729781678,0.0799864590007928,30,mac,phase-27,without +4,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.0766496670003107,30,mac,phase-27,without +5,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.0783959170003072,30,mac,phase-27,without +6,368.8117548208933,0.3246582348775469,12.207149631395763,72.49618384815624,0.0756816249995608,30,mac,phase-27,without +7,379.99108210302904,0.334499191992103,12.577169618903074,74.69366957183661,0.0779756669980997,30,mac,phase-27,without +8,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.0752130000000761,30,mac,phase-27,without +9,388.8351277233648,0.3422844434184549,12.869895072533906,76.43211621534098,0.0797904999999445,30,mac,phase-27,without +10,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.0803932499984512,30,mac,phase-27,without +11,381.6621806372591,0.3359702294342069,12.63248062672618,75.02215223265841,0.0783185830005095,30,mac,phase-27,without +12,366.6756700911541,0.322777878601368,12.136448235411438,72.07630029168548,0.0752432919980492,30,mac,phase-27,without +13,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.0785939159977715,30,mac,phase-27,without +14,384.18386223037226,0.3381900195689896,12.715944735794013,75.51783136975538,0.0788360419974196,30,mac,phase-27,without +15,378.7553163563533,0.3334113700320011,12.536267513203242,74.45075892814586,0.0777220829986617,30,mac,phase-27,without +16,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.0786690409986476,30,mac,phase-27,without +17,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.0785877500020433,30,mac,phase-27,without +18,381.6906108958314,0.3359952560702742,12.63342162824231,75.02774068049223,0.0783244170015677,30,mac,phase-27,without +19,388.1719679438419,0.341700676006903,12.847945417859556,76.30176095234145,0.0796544170007109,30,mac,phase-27,without +20,378.5252623152303,0.3332088576718577,12.528653048461848,74.40553791812582,0.0776748750031401,30,mac,phase-27,without +21,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513,30,mac,phase-27,without +22,383.54607720273344,0.3376285890869132,12.694834949667936,75.39246394310773,0.0787051659972348,30,mac,phase-27,without +23,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758,30,mac,phase-27,without +24,373.0230141252263,0.3283653293355865,12.346536383018057,73.32397804063648,0.0765457919987966,30,mac,phase-27,without +25,383.6628342422502,0.3377313681709948,12.698699443229406,75.41541451258315,0.0787291250017006,30,mac,phase-27,without +26,383.9716733361366,0.3380032335705427,12.708921582252408,75.4761220563022,0.0787925000004179,30,mac,phase-27,without +27,388.3768470521449,0.3418810273346346,12.85472662778226,76.3420334038239,0.0796964590008428,30,mac,phase-27,without +28,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.0767264999994949,30,mac,phase-27,without +29,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.071810417000961,30,mac,phase-27,without +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612,30,mac,phase-27,with +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576,30,mac,phase-27,with +2,2756.6629408744075,3.785901382924392,84.37621951682796,523.1457293569697,0.5001827079977375,30,mac,phase-27,with +3,2741.474911483684,3.765042691561858,83.91134276933079,520.2634209705171,0.4974269160011317,30,mac,phase-27,with +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654,30,mac,phase-27,with +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.497821582997858,30,mac,phase-27,with +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554,30,mac,phase-27,with +7,2774.160435980272,3.809931811141341,84.91178462569788,526.4663166160612,0.5033575410016056,30,mac,phase-27,with +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454,30,mac,phase-27,with +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631,30,mac,phase-27,with +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016,30,mac,phase-27,with +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793,30,mac,phase-27,with +12,2770.4892187897412,3.8048898939622178,84.79941563674055,525.7696113474226,0.5026914169975498,30,mac,phase-27,with +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978,30,mac,phase-27,with +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901,30,mac,phase-27,with +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394,30,mac,phase-27,with +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222,30,mac,phase-27,with +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375,30,mac,phase-27,with +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477,30,mac,phase-27,with +19,2745.556043502129,3.7706475709700102,84.0362584730099,521.0379178285604,0.4981674170012411,30,mac,phase-27,with +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818,30,mac,phase-27,with +21,2757.1403582791954,3.786557050756037,84.39083235728454,523.2363312483842,0.5002693329988688,30,mac,phase-27,with +22,2771.5646135441475,3.806366802302199,84.83233142870031,525.9736943946457,0.5028865419990325,30,mac,phase-27,with +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276,30,mac,phase-27,with +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584,30,mac,phase-27,with +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005,30,mac,phase-27,with +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075,30,mac,phase-27,with +27,2829.818723513932,3.886370894288026,86.61537914834967,537.0288685315742,0.5134564589970978,30,mac,phase-27,with +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049,30,mac,phase-27,with +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177,30,mac,phase-27,with +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.0759556669981975,30,mac,phase-5,without +1,250.9902886146916,0.9006828538804723,0.0,65.11603447313637,0.0766364589981094,30,mac,phase-5,without +2,251.08826581851417,0.901034446717156,0.0,65.14145333303291,0.0766663750000589,30,mac,phase-5,without +3,251.6577197956367,0.9030779418503708,0.0,65.28919046266385,0.0768402499998046,30,mac,phase-5,without +4,254.8982707317584,0.9147067131522432,0.0,66.12990755826587,0.0778297079996264,30,mac,phase-5,without +5,256.4147688442029,0.9201486920246515,0.0,66.5233424752637,0.0782927500004007,30,mac,phase-5,without +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.0775765830003365,30,mac,phase-5,without +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.0764232500005164,30,mac,phase-5,without +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.0776412500017613,30,mac,phase-5,without +9,254.6710622884788,0.913891371848608,0.0,66.07096140179567,0.0777603330025158,30,mac,phase-5,without +10,253.76932556597777,0.9106554745190588,0.0,65.83701800967418,0.0774850000016158,30,mac,phase-5,without +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.0757235410019347,30,mac,phase-5,without +12,251.66945440127165,0.9031200516792044,0.0,65.29223484732618,0.076843833001476,30,mac,phase-5,without +13,251.2764451718155,0.9017097314778068,0.0,65.1902739201733,0.0767238329972315,30,mac,phase-5,without +14,233.39411648723728,0.8375386955283635,0.0,60.55094569153206,0.0712637079996056,30,mac,phase-5,without +15,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.0771029589996032,30,mac,phase-5,without +16,250.18161649107023,0.8977809204225009,0.0,64.90623543202673,0.076389542002289,30,mac,phase-5,without +17,253.47757189478065,0.9096085115841412,0.0,65.76132646712013,0.0773959170001035,30,mac,phase-5,without +18,248.6101232868392,0.8921415907422459,0.0,64.49853278255051,0.0759097080008359,30,mac,phase-5,without +19,251.7260870200961,0.903323278780249,0.0,65.30692741403874,0.0768611249986861,30,mac,phase-5,without +20,251.30523965227655,0.9018130609531456,0.0,65.19774425853853,0.07673262499884,30,mac,phase-5,without +21,252.35899561673511,0.905594481878236,0.0,65.47112698615987,0.0770543750004435,30,mac,phase-5,without +22,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.0770828749991778,30,mac,phase-5,without +23,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.0753380000023753,30,mac,phase-5,without +24,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.0723041249984817,30,mac,phase-5,without +25,253.50431617204092,0.9097044838709604,0.0,65.76826490800424,0.0774040830001467,30,mac,phase-5,without +26,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.0766381670000555,30,mac,phase-5,without +27,252.60531086151025,0.906478388259008,0.0,65.53503014376236,0.0771295839986123,30,mac,phase-5,without +28,253.74831266909396,0.9105800693867008,0.0,65.83156649788296,0.077478584000346,30,mac,phase-5,without +29,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.0768664999995962,30,mac,phase-5,without +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.4868028330020024,30,mac,phase-5,with +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.4948589999985415,30,mac,phase-5,with +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249,30,mac,phase-5,with +3,1533.950680078919,1.341716280054159,0.0,466.5818363888339,0.4973159999972267,30,mac,phase-5,with +4,1509.4877083165245,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007,30,mac,phase-5,with +5,1530.701332361488,1.3388741399588795,0.0,465.5934821707004,0.4962625420012045,30,mac,phase-5,with +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036,30,mac,phase-5,with +7,1511.6775444702157,1.3222344094554814,0.0,459.80701588814367,0.4900949160000891,30,mac,phase-5,with +8,1506.085294324647,1.3173429790073663,0.0,458.1060209498117,0.4882818750011211,30,mac,phase-5,with +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001,30,mac,phase-5,with +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716,30,mac,phase-5,with +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.4969967500001075,30,mac,phase-5,with +12,1535.0179028145485,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828,30,mac,phase-5,with +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468,30,mac,phase-5,with +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.4962089580003521,30,mac,phase-5,with +15,1529.1070527547115,1.3374796551614545,0.0,465.1085500823957,0.4957456670017564,30,mac,phase-5,with +16,1511.511884356299,1.3220895098347285,0.0,459.7566270450269,0.4900412079987291,30,mac,phase-5,with +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.4965184579996275,30,mac,phase-5,with +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.4970040829975914,30,mac,phase-5,with +19,1531.0605422535905,1.339188333737369,0.0,465.7027430571701,0.4963790000001609,30,mac,phase-5,with +20,1529.8004113116283,1.3380861221592606,0.0,465.3194489808829,0.4959704579996469,30,mac,phase-5,with +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173,30,mac,phase-5,with +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.4973219999992579,30,mac,phase-5,with +23,1508.4587853165551,1.319419024571127,0.0,458.82796579460944,0.4890513749996898,30,mac,phase-5,with +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.4990502090004156,30,mac,phase-5,with +25,1507.4511944376345,1.318537704784618,0.0,458.52148683885093,0.4887247080005181,30,mac,phase-5,with +26,1531.4239932863045,1.3395062371575557,0.0,465.81329397154,0.4964968330023112,30,mac,phase-5,with +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.4958281660001375,30,mac,phase-5,with +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602,30,mac,phase-5,with +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631,30,mac,phase-5,with +0,249.7923844146721,0.0,0.0,64.11304733285456,0.0759544579996145,30,mac,phase-2,without +1,251.5237567706763,0.0,0.0,64.55743060767458,0.0764809169995714,30,mac,phase-2,without +2,236.44843625054185,0.0,0.0,60.68811833728591,0.0718969589979678,30,mac,phase-2,without +3,254.81671512475305,0.0,0.0,65.40261888398953,0.0774822080020385,30,mac,phase-2,without +4,254.0024857747179,0.0,0.0,65.19363443083687,0.0772346249977999,30,mac,phase-2,without +5,250.58400715096883,0.0,0.0,64.3162294518006,0.0761951670028793,30,mac,phase-2,without +6,253.13741623502708,0.0,0.0,64.97160106310882,0.0769715829992492,30,mac,phase-2,without +7,247.96660298643684,0.0,0.0,63.64443252138948,0.0753992919999291,30,mac,phase-2,without +8,251.19145867599536,0.0,0.0,64.47214120414525,0.0763798750012938,30,mac,phase-2,without +9,256.62427379017913,0.0,0.0,65.86655654383826,0.0780318329998408,30,mac,phase-2,without +10,252.7525020227826,0.0,0.0,64.87280692586343,0.0768545419996371,30,mac,phase-2,without +11,252.65411359951872,0.0,0.0,64.84755402773163,0.0768246249972435,30,mac,phase-2,without +12,234.1139962204404,0.0,0.0,60.08894849271152,0.071187124998687,30,mac,phase-2,without +13,257.1501948549435,0.0,0.0,66.00154225286055,0.0781917500025883,30,mac,phase-2,without +14,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418,30,mac,phase-2,without +15,251.44934635326925,0.0,0.0,64.53833203257409,0.0764582909978344,30,mac,phase-2,without +16,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126,30,mac,phase-2,without +17,251.21776837388165,0.0,0.0,64.4788939917046,0.0763878750003641,30,mac,phase-2,without +18,251.416600645554,0.0,0.0,64.52992734436225,0.0764483339989965,30,mac,phase-2,without +19,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213,30,mac,phase-2,without +20,252.05912958228944,0.0,0.0,64.69484225251759,0.0766437079983006,30,mac,phase-2,without +21,255.11256441560653,0.0,0.0,65.47855314288348,0.0775721669997437,30,mac,phase-2,without +22,244.42520870193505,0.0,0.0,62.73547935246641,0.0743224589969031,30,mac,phase-2,without +23,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758,30,mac,phase-2,without +24,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994,30,mac,phase-2,without +25,252.46364123963497,0.0,0.0,64.7986663746775,0.0767667079999228,30,mac,phase-2,without +26,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086,30,mac,phase-2,without +27,255.64108684697413,0.0,0.0,65.61420653255007,0.0777328750009473,30,mac,phase-2,without +28,250.51795663338612,0.0,0.0,64.29927657323282,0.0761750829988159,30,mac,phase-2,without +29,252.8123829029725,0.0,0.0,64.88817627235069,0.0768727499998931,30,mac,phase-2,without +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.4967214579992287,30,mac,phase-2,with +1,1525.822451852758,0.9878217819888808,0.0,458.15174248644286,0.4879074999989825,30,mac,phase-2,with +2,1551.4175283280858,1.004392107077032,0.0,465.8370592623274,0.4960919580007612,30,mac,phase-2,with +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014,30,mac,phase-2,with +4,1517.1578055606185,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886,30,mac,phase-2,with +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844,30,mac,phase-2,with +6,1536.6455705433632,0.994828699719478,0.0,461.4015509298939,0.4913683750019118,30,mac,phase-2,with +7,1523.3509920954475,0.986221751933866,0.0,457.4096485469271,0.4871172089988249,30,mac,phase-2,with +8,1523.3483839474748,0.986220063411473,0.0,457.4088654102411,0.4871163749994593,30,mac,phase-2,with +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242,30,mac,phase-2,with +10,1552.6602304699818,1.0051966359675315,0.0,466.2101997617412,0.4964893329997721,30,mac,phase-2,with +11,1535.8703964688004,0.9943268498255036,0.0,461.16879294906863,0.4911204999989422,30,mac,phase-2,with +12,1528.3973744832786,0.9894887942013932,0.0,458.9249027506061,0.4887308750003285,30,mac,phase-2,with +13,1531.9027936882028,0.9917582125347134,0.0,459.9774589736001,0.4898517919973528,30,mac,phase-2,with +14,1541.5801558574808,0.9980233642444684,0.0,462.8832363365845,0.4929462920008518,30,mac,phase-2,with +15,1553.6147007694765,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625,30,mac,phase-2,with +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.4965233750008337,30,mac,phase-2,with +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.4948284999991301,30,mac,phase-2,with +18,1572.9461018499128,1.0183297666220117,0.0,472.3013457592889,0.5029760830002488,30,mac,phase-2,with +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299,30,mac,phase-2,with +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069,30,mac,phase-2,with +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.4948044160009885,30,mac,phase-2,with +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.496583374999318,30,mac,phase-2,with +23,1551.7935835191104,1.0046355662740525,0.0,465.9499756379054,0.4962122079996334,30,mac,phase-2,with +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908,30,mac,phase-2,with +25,1528.5850111774257,0.9896102707292512,0.0,458.9812435642267,0.4887908750024508,30,mac,phase-2,with +26,1549.1668012392042,1.0029349799774732,0.0,465.161243713552,0.495372249999491,30,mac,phase-2,with +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072,30,mac,phase-2,with +28,1551.2523048367275,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879,30,mac,phase-2,with +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.4966570830001728,30,mac,phase-2,with +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645,30,mac,phase-3,without +1,247.59900572459188,0.0,0.0,63.63541223539677,0.0749709170013375,30,mac,phase-3,without +2,252.59749193776693,0.0,0.0,64.92007301098222,0.0764844170007563,30,mac,phase-3,without +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751,30,mac,phase-3,without +4,255.00742611955113,0.0,0.0,65.53945011497832,0.0772141250017739,30,mac,phase-3,without +5,254.3331440184321,0.0,0.0,65.36615289457113,0.0770099579967791,30,mac,phase-3,without +6,239.8215196985124,0.0,0.0,61.63652081022233,0.0726159590012684,30,mac,phase-3,without +7,252.36520681402695,0.0,0.0,64.86037341904694,0.0764140829996904,30,mac,phase-3,without +8,252.1722820871298,0.0,0.0,64.81078984139654,0.0763556669990066,30,mac,phase-3,without +9,253.17365705842755,0.0,0.0,65.06815318950152,0.0766588750011578,30,mac,phase-3,without +10,254.7703291078643,0.0,0.0,65.47851381988168,0.0771423340011097,30,mac,phase-3,without +11,257.12521884407045,0.0,0.0,66.08374395274846,0.0778553750024002,30,mac,phase-3,without +12,257.5769881962842,0.0,0.0,66.19985317895198,0.0779921670000476,30,mac,phase-3,without +13,230.86734014931577,0.0,0.0,59.33520742176434,0.0699047080015589,30,mac,phase-3,without +14,252.49634648493628,0.0,0.0,64.89407762151053,0.0764537909999489,30,mac,phase-3,without +15,256.16553921217854,0.0,0.0,65.83709672243897,0.0775647920017945,30,mac,phase-3,without +16,252.85330477462892,0.0,0.0,64.98581945968536,0.0765618749974237,30,mac,phase-3,without +17,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322,30,mac,phase-3,without +18,253.6318929035833,0.0,0.0,65.1859243688412,0.0767976249990169,30,mac,phase-3,without +19,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254,30,mac,phase-3,without +20,245.8200036875109,0.0,0.0,63.17819098094965,0.0744322499995178,30,mac,phase-3,without +21,253.09219510207856,0.0,0.0,65.04721665480663,0.0766342089991667,30,mac,phase-3,without +22,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297,30,mac,phase-3,without +23,237.6873493714192,0.0,0.0,61.08801776535877,0.0719697499989706,30,mac,phase-3,without +24,252.67647692470263,0.0,0.0,64.94037293985049,0.0765083329970366,30,mac,phase-3,without +25,252.3727763729606,0.0,0.0,64.86231887113699,0.0764163749990984,30,mac,phase-3,without +26,255.234202497438,0.0,0.0,65.59773390432493,0.0772827910004707,30,mac,phase-3,without +27,252.58785824967035,0.0,0.0,64.91759705712458,0.0764815000002272,30,mac,phase-3,without +28,254.14255755018047,0.0,0.0,65.31717027269754,0.0769522500013408,30,mac,phase-3,without +29,253.90256744879193,0.0,0.0,65.25549042471276,0.0768795829972077,30,mac,phase-3,without +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.4906970419979188,30,mac,phase-3,with +1,1543.8582876666146,1.819236842272884,0.0,468.7903825967997,0.498959583001124,30,mac,phase-3,with +2,1514.9563025535929,1.785179599744556,0.0,460.0143357489906,0.4896187500016822,30,mac,phase-3,with +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.4886332080022839,30,mac,phase-3,with +4,1513.8533631439177,1.783879928638143,0.0,459.6794297592549,0.4892622909974307,30,mac,phase-3,with +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127,30,mac,phase-3,with +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044,30,mac,phase-3,with +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288,0.488077041998622,30,mac,phase-3,with +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.4968368750014633,30,mac,phase-3,with +9,1536.988103258224,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808,30,mac,phase-3,with +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314,30,mac,phase-3,with +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129,30,mac,phase-3,with +12,1537.6380057586473,1.8119070464576217,0.0,466.9016028047741,0.496949249998579,30,mac,phase-3,with +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181,30,mac,phase-3,with +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273,30,mac,phase-3,with +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.4968635410004935,30,mac,phase-3,with +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761,30,mac,phase-3,with +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.4962564160014153,30,mac,phase-3,with +18,1534.6338380789523,1.8083670243150929,0.0,465.9893915434169,0.4959783330014033,30,mac,phase-3,with +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864,30,mac,phase-3,with +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.4974886670024716,30,mac,phase-3,with +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.4904405839988612,30,mac,phase-3,with +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546,30,mac,phase-3,with +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.4959463339982903,30,mac,phase-3,with +24,1536.071073078166,1.8100606194348392,0.0,466.4258059154776,0.4964428330022201,30,mac,phase-3,with +25,1534.2024633575504,1.807858705130444,0.0,465.85840522018754,0.495838916998764,30,mac,phase-3,with +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429,30,mac,phase-3,with +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.4879782079988217,30,mac,phase-3,with +28,1533.3456392419216,1.806849048991048,0.0,465.59823179093394,0.4955620000000635,30,mac,phase-3,with +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.4960916669988364,30,mac,phase-3,with +0,253.53427688728465,0.0,0.0,64.57760820245201,0.076206000001548,30,mac,phase-4,without +1,258.26881641088414,0.0,0.0,65.78354075771735,0.0776290829999197,30,mac,phase-4,without +2,255.5581794818601,0.0,0.0,65.09311557446122,0.0768143340028473,30,mac,phase-4,without +3,258.37666645619265,0.0,0.0,65.81101119704435,0.0776614999995217,30,mac,phase-4,without +4,251.4109813828545,0.0,0.0,64.03678450450256,0.0755677910019585,30,mac,phase-4,without +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029,30,mac,phase-4,without +6,257.9566378142825,0.0,0.0,65.70402587969754,0.0775352499986183,30,mac,phase-4,without +7,257.22664634671185,0.0,0.0,65.51809006240816,0.0773158330011938,30,mac,phase-4,without +8,253.8991312230035,0.0,0.0,64.67054009565513,0.0763156659995729,30,mac,phase-4,without +9,251.0245017908568,0.0,0.0,63.938344451438795,0.0754516249980952,30,mac,phase-4,without +10,254.54456469819945,0.0,0.0,64.83493818254766,0.0765096670002094,30,mac,phase-4,without +11,255.85774223615337,0.0,0.0,65.16941707663403,0.0769043750005948,30,mac,phase-4,without +12,255.93204323154933,0.0,0.0,65.188342251678,0.0769267080031568,30,mac,phase-4,without +13,259.880176018943,0.0,0.0,66.19396948049216,0.0781134169992583,30,mac,phase-4,without +14,255.01172304341273,0.0,0.0,64.95392788664633,0.0766500829995493,30,mac,phase-4,without +15,257.21028768275835,0.0,0.0,65.51392335404637,0.0773109159999876,30,mac,phase-4,without +16,258.4208884003968,0.0,0.0,65.8222749497086,0.0776747919990157,30,mac,phase-4,without +17,234.06796061376548,0.0,0.0,59.61935103545283,0.0703549169993493,30,mac,phase-4,without +18,254.56563433542095,0.0,0.0,64.84030482091373,0.0765160000009927,30,mac,phase-4,without +19,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036,30,mac,phase-4,without +20,253.8269129094721,0.0,0.0,64.65214539962614,0.0762939589985762,30,mac,phase-4,without +21,253.50017554675208,0.0,0.0,64.56892226445922,0.076195749999897,30,mac,phase-4,without +22,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575,30,mac,phase-4,without +23,256.791646381911,0.0,0.0,65.40729140575363,0.077185082998767,30,mac,phase-4,without +24,258.8575518455188,0.0,0.0,65.93349731073064,0.0778060420016117,30,mac,phase-4,without +25,254.13770416501097,0.0,0.0,64.73130690859188,0.0763873750001948,30,mac,phase-4,without +26,255.17931863433267,0.0,0.0,64.99661608857218,0.0767004580011416,30,mac,phase-4,without +27,255.7738762440398,0.0,0.0,65.14805560533038,0.0768791670016071,30,mac,phase-4,without +28,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329,30,mac,phase-4,without +29,254.6501956683362,0.0,0.0,64.86184340217827,0.076541417001863,30,mac,phase-4,without +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601,30,mac,phase-4,with +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.4905383750010514,30,mac,phase-4,with +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.4949191670020809,30,mac,phase-4,with +3,1543.9666529760673,2.517118054369295,0.0,468.6538201495045,0.4970376669989491,30,mac,phase-4,with +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.4911096249998081,30,mac,phase-4,with +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.4892612080002436,30,mac,phase-4,with +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668,30,mac,phase-4,with +7,1541.4305863957322,2.5129835227301953,0.0,467.8840254853926,0.4962212500031455,30,mac,phase-4,with +8,1518.9797912579406,2.4763821481685406,0.0,461.0693375603401,0.4889938330015866,30,mac,phase-4,with +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282,30,mac,phase-4,with +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875,30,mac,phase-4,with +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.4909694169982685,30,mac,phase-4,with +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736,30,mac,phase-4,with +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168,30,mac,phase-4,with +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129,30,mac,phase-4,with +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858,30,mac,phase-4,with +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407,30,mac,phase-4,with +17,1539.709287220718,2.5101773007032837,0.0,467.36154436027533,0.4956671250001818,30,mac,phase-4,with +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.4965505419968394,30,mac,phase-4,with +19,1509.6842072989823,2.461227622542033,0.0,458.247766949026,0.4860013750003418,30,mac,phase-4,with +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097,30,mac,phase-4,with +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844,30,mac,phase-4,with +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.4907778749984572,30,mac,phase-4,with +23,1518.3726327778963,2.4753923019377058,0.0,460.8850413901084,0.4887983750013518,30,mac,phase-4,with +24,1542.6089226370732,2.514904556077308,0.0,468.24169628084707,0.4966005829992355,30,mac,phase-4,with +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.4952879160009615,30,mac,phase-4,with +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364,30,mac,phase-4,with +27,1524.6620618997297,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219,30,mac,phase-4,with +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333,30,mac,phase-4,with +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925,30,mac,phase-4,with +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.0754009170013887,30,mac,phase-22,without +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.0771903749991906,30,mac,phase-22,without +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.0770712499979708,30,mac,phase-22,without +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.0776679580012569,30,mac,phase-22,without +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.0779796249989885,30,mac,phase-22,without +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.0773913749981147,30,mac,phase-22,without +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.0775697919998492,30,mac,phase-22,without +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.0763929170025221,30,mac,phase-22,without +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.077310500000749,30,mac,phase-22,without +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.078158500000427,30,mac,phase-22,without +10,235.2985150178381,0.7924561386611128,0.0,58.42840068512897,0.0703293330006999,30,mac,phase-22,without +11,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.0771376249977038,30,mac,phase-22,without +12,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673,30,mac,phase-22,without +13,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.0769387920008739,30,mac,phase-22,without +14,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766,30,mac,phase-22,without +15,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.0772323329983919,30,mac,phase-22,without +16,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.0768300420022569,30,mac,phase-22,without +17,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.0776397079971502,30,mac,phase-22,without +18,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665,30,mac,phase-22,without +19,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.0771370830007072,30,mac,phase-22,without +20,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.0776909169981081,30,mac,phase-22,without +21,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.0772428750024118,30,mac,phase-22,without +22,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409,30,mac,phase-22,without +23,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.0776754579965199,30,mac,phase-22,without +24,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.0769548329990357,30,mac,phase-22,without +25,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.0770484999993641,30,mac,phase-22,without +26,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.0768427919974783,30,mac,phase-22,without +27,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.076798707999842,30,mac,phase-22,without +28,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.0777810409999801,30,mac,phase-22,without +29,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901,30,mac,phase-22,without +0,1543.037293902987,0.9050268700391154,0.0,464.4128623848868,0.4969528340006945,30,mac,phase-22,with +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.4968073750023904,30,mac,phase-22,with +2,1522.6647565357837,0.8930779082084145,0.0,458.2812747491697,0.490391625000484,30,mac,phase-22,with +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.4955040000022563,30,mac,phase-22,with +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488,30,mac,phase-22,with +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.4876558750002004,30,mac,phase-22,with +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299,30,mac,phase-22,with +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.4911422499972104,30,mac,phase-22,with +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522,30,mac,phase-22,with +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697,30,mac,phase-22,with +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.4891653750019031,30,mac,phase-22,with +11,1540.3509525440622,0.9034512690335336,0.0,463.60434564665206,0.4960876669974823,30,mac,phase-22,with +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175,30,mac,phase-22,with +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979,30,mac,phase-22,with +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759,30,mac,phase-22,with +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943,30,mac,phase-22,with +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511,30,mac,phase-22,with +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.4970722079997358,30,mac,phase-22,with +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232,30,mac,phase-22,with +19,1517.3107069267537,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729,30,mac,phase-22,with +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.4969016249997366,30,mac,phase-22,with +21,1542.9237006680555,0.904960244993646,0.0,464.378673866184,0.4969162499983213,30,mac,phase-22,with +22,1543.855845753035,0.9055069695297376,0.0,464.65922454942654,0.4972164579994569,30,mac,phase-22,with +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416,30,mac,phase-22,with +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507,30,mac,phase-22,with +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.4953368749993387,30,mac,phase-22,with +26,1524.4368065343,0.8941172562980861,0.0,458.8146142966661,0.4909623339990503,30,mac,phase-22,with +27,1540.8696144444589,0.903755476169796,0.0,463.7604489752787,0.4962547080031072,30,mac,phase-22,with +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629,30,mac,phase-22,with +29,1542.3754109042263,0.9046386604338992,0.0,464.2136533448767,0.4967396669999289,30,mac,phase-22,with +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.0750980420016276,30,mac,phase-25,without +1,246.76674350378295,0.5470832863281573,0.0,65.48908751045883,0.0748969999986002,30,mac,phase-25,without +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.0753702500005601,30,mac,phase-25,without +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.0801031660012085,30,mac,phase-25,without +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.0787539170014497,30,mac,phase-25,without +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.0802945840005122,30,mac,phase-25,without +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732,30,mac,phase-25,without +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008,30,mac,phase-25,without +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956,30,mac,phase-25,without +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.0795499999985622,30,mac,phase-25,without +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.0788625000022875,30,mac,phase-25,without +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.0737082090017793,30,mac,phase-25,without +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.0777287089986202,30,mac,phase-25,without +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.0809930830000666,30,mac,phase-25,without +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.0782412090011348,30,mac,phase-25,without +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.0782246669987216,30,mac,phase-25,without +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.0764459579986578,30,mac,phase-25,without +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.0785907919998862,30,mac,phase-25,without +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.0798172499999054,30,mac,phase-25,without +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879,30,mac,phase-25,without +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.0777190000007976,30,mac,phase-25,without +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.0745992910015047,30,mac,phase-25,without +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.0789691250029136,30,mac,phase-25,without +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.077969292000489,30,mac,phase-25,without +24,251.71874980934945,0.5580619127228665,0.0,66.80329367006078,0.0764000000017404,30,mac,phase-25,without +25,232.25845891939952,0.51491833615412,0.0,61.6387537690373,0.0704935419998946,30,mac,phase-25,without +26,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.0773807089972251,30,mac,phase-25,without +27,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.0778139169997302,30,mac,phase-25,without +28,252.35079120270456,0.5594631521186721,0.0,66.9710302683234,0.0765918329998385,30,mac,phase-25,without +29,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.0767333750009129,30,mac,phase-25,without +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744,30,mac,phase-25,with +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192,30,mac,phase-25,with +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263,30,mac,phase-25,with +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.4983404999984486,30,mac,phase-25,with +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052,30,mac,phase-25,with +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.4975258750018838,30,mac,phase-25,with +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626,30,mac,phase-25,with +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.4973339589996612,30,mac,phase-25,with +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957,30,mac,phase-25,with +9,1548.8857390933792,0.8386499063790712,0.0,465.2494220628536,0.4981867919996148,30,mac,phase-25,with +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573,30,mac,phase-25,with +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854,30,mac,phase-25,with +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442,30,mac,phase-25,with +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.4890400419972138,30,mac,phase-25,with +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909,30,mac,phase-25,with +15,1548.8552953072,0.8386334224785583,0.0,465.240277454205,0.4981769999976677,30,mac,phase-25,with +16,1525.425523355913,0.8259472858853377,0.0,458.20251631775,0.4906410000003234,30,mac,phase-25,with +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796,30,mac,phase-25,with +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922,30,mac,phase-25,with +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205,30,mac,phase-25,with +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.4976440419995924,30,mac,phase-25,with +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.4966249170029186,30,mac,phase-25,with +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363,30,mac,phase-25,with +23,1523.6436512727455,0.8249824846621034,0.0,457.6672831911485,0.4900678750018414,30,mac,phase-25,with +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.4941007919987896,30,mac,phase-25,with +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.4961650840014044,30,mac,phase-25,with +26,1546.018290686647,0.8370973158443685,0.0,464.3881069378219,0.49726450000162,30,mac,phase-25,with +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.4886809999989054,30,mac,phase-25,with +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.4892711669999698,30,mac,phase-25,with +29,1544.979353159271,0.8365347792814213,0.0,464.0760341541612,0.4969303340003534,30,mac,phase-25,with +0,236.6567212800667,0.8267216295202227,0.0,59.860769841186496,0.0703788339997117,30,mac,phase-13,without +1,261.95098582591453,0.915083014270888,0.0,66.25878862591058,0.0779010410005867,30,mac,phase-13,without +2,245.40833969424455,0.8572939800419981,0.0,62.07443448081875,0.072981459001312,30,mac,phase-13,without +3,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.0765551250005955,30,mac,phase-13,without +4,258.9009587470573,0.9044282424855152,0.0,65.48730422441415,0.0769939999991038,30,mac,phase-13,without +5,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227,30,mac,phase-13,without +6,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.0774625839985674,30,mac,phase-13,without +7,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.0775410830028704,30,mac,phase-13,without +8,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.0770794579984794,30,mac,phase-13,without +9,258.61457516789665,0.9034278081942309,0.0,65.41486537110077,0.0769088330016529,30,mac,phase-13,without +10,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.0707159580015286,30,mac,phase-13,without +11,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.0780311669986986,30,mac,phase-13,without +12,260.6072019459684,0.9103887246139408,0.0,65.91888728223164,0.077501415998995,30,mac,phase-13,without +13,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548,30,mac,phase-13,without +14,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.0768012089974945,30,mac,phase-13,without +15,260.0306551965286,0.9083746526466904,0.0,65.77305355275111,0.0773299579996091,30,mac,phase-13,without +16,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.0772179580017109,30,mac,phase-13,without +17,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619,30,mac,phase-13,without +18,260.3005048322299,0.9093173283051116,0.0,65.84131025320345,0.0774102080031298,30,mac,phase-13,without +19,264.0587854421345,0.9224462682025656,0.0,66.79194275318578,0.0785278750008728,30,mac,phase-13,without +20,263.0532231845429,0.9189335005799792,0.0,66.5375923568096,0.0782288330010487,30,mac,phase-13,without +21,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.0775990420006564,30,mac,phase-13,without +22,258.78481075864437,0.9040224984452576,0.0,65.45792535038811,0.0769594589983171,30,mac,phase-13,without +23,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.0775372499992954,30,mac,phase-13,without +24,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.077450917000533,30,mac,phase-13,without +25,252.4247090150945,0.8818045210774421,0.0,63.84917921134812,0.0750680420023854,30,mac,phase-13,without +26,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.0768218749981315,30,mac,phase-13,without +27,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.0772714170016115,30,mac,phase-13,without +28,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766,30,mac,phase-13,without +29,251.73803334741703,0.8794057317091811,0.0,63.67548909227589,0.0748638330005633,30,mac,phase-13,without +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892,30,mac,phase-13,with +1,1550.91288162991,0.8958868617275533,0.0,462.0121726923871,0.4923814169997058,30,mac,phase-13,with +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.4911964169987186,30,mac,phase-13,with +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874,30,mac,phase-13,with +4,1565.1120060356702,0.904089004577632,0.0,466.2420481384795,0.4968893330005812,30,mac,phase-13,with +5,1571.375161858294,0.9077069247592892,0.0,468.10782297586456,0.498877750000247,30,mac,phase-13,with +6,1570.1072269824244,0.9069745005140124,0.0,467.730109079893,0.4984752080017642,30,mac,phase-13,with +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487,30,mac,phase-13,with +8,1565.5201723263629,0.90432478237119,0.0,466.36363961986854,0.4970189170016965,30,mac,phase-13,with +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015,30,mac,phase-13,with +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518,30,mac,phase-13,with +11,1560.722599431774,0.9015534580915664,0.0,464.93445742470254,0.4954957909976656,30,mac,phase-13,with +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.4871506659983424,30,mac,phase-13,with +13,1570.2996305808672,0.9070856427051928,0.0,467.78742551952234,0.4985362919978797,30,mac,phase-13,with +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609,30,mac,phase-13,with +15,1547.5227554628375,0.8939285508974267,0.0,461.00226454428775,0.4913051250005082,30,mac,phase-13,with +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.4915737500014074,30,mac,phase-13,with +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721,30,mac,phase-13,with +18,1564.0133771354122,0.90345438015139,0.0,465.9147699714058,0.49654054200073,30,mac,phase-13,with +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579,30,mac,phase-13,with +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017,30,mac,phase-13,with +21,1554.6354429575945,0.898037204164546,0.0,463.1211122513755,0.4935632499982603,30,mac,phase-13,with +22,1566.8541179900308,0.9050953378346812,0.0,466.7610179263,0.4974424160027411,30,mac,phase-13,with +23,1563.1480932062543,0.902954547753982,0.0,465.6570045528313,0.496265833000507,30,mac,phase-13,with +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334,30,mac,phase-13,with +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029,30,mac,phase-13,with +26,1544.107301583785,0.8919556094812306,0.0,459.98481134876505,0.4902207919985812,30,mac,phase-13,with +27,1567.236953417524,0.905316483221864,0.0,466.8750634215273,0.4975639580006827,30,mac,phase-13,with +28,1564.9869329670676,0.9040167559553888,0.0,466.2047892564012,0.4968496249966847,30,mac,phase-13,with +29,1569.5676911434848,0.9066628369284802,0.0,467.5693830145243,0.4983039170001575,30,mac,phase-13,with +0,259.3603261187444,0.0,0.0,65.0750093613154,0.0772384160009096,30,mac,phase-14,without +1,259.0137620395562,0.0,0.0,64.98805442477995,0.0771352080009819,30,mac,phase-14,without +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189,30,mac,phase-14,without +3,242.06494915581175,0.0,0.0,60.73549901826075,0.0720877919993654,30,mac,phase-14,without +4,235.64265081788608,0.0,0.0,59.124107134560184,0.0701752089989895,30,mac,phase-14,without +5,264.44449718901984,0.0,0.0,66.35065735630297,0.0787525000014284,30,mac,phase-14,without +6,258.4949635864557,0.0,0.0,64.85788488536977,0.0769807079996098,30,mac,phase-14,without +7,260.75512162880096,0.0,0.0,65.42497164055966,0.0776537910023762,30,mac,phase-14,without +8,258.54729338873193,0.0,0.0,64.87101473612205,0.0769962919985118,30,mac,phase-14,without +9,258.4187119612678,0.0,0.0,64.83875291057171,0.0769579999978304,30,mac,phase-14,without +10,256.03319274883137,0.0,0.0,64.24021231107454,0.076247583998338,30,mac,phase-14,without +11,259.9925953597714,0.0,0.0,65.23364937921801,0.0774267080014396,30,mac,phase-14,without +12,260.68391024286916,0.0,0.0,65.40710429100974,0.0776325840015488,30,mac,phase-14,without +13,266.00341096992025,0.0,0.0,66.74179786111225,0.0792167500003415,30,mac,phase-14,without +14,262.4791342007781,0.0,0.0,65.85753638914451,0.0781672080011048,30,mac,phase-14,without +15,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304,30,mac,phase-14,without +16,259.2768012481966,0.0,0.0,65.0540524870928,0.0772135420011181,30,mac,phase-14,without +17,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263,30,mac,phase-14,without +18,249.63999413559765,0.0,0.0,62.63612171699325,0.0743436669981747,30,mac,phase-14,without +19,256.52512449555974,0.0,0.0,64.36364083810693,0.0763940830001956,30,mac,phase-14,without +20,257.38978857591655,0.0,0.0,64.58059006841385,0.0766515830000571,30,mac,phase-14,without +21,260.0975303138043,0.0,0.0,65.25997816750345,0.077457957999286,30,mac,phase-14,without +22,258.5177705738045,0.0,0.0,64.86360729071002,0.0769875000005413,30,mac,phase-14,without +23,248.91608058597623,0.0,0.0,62.45448761079295,0.0741280830006871,30,mac,phase-14,without +24,261.7960764426832,0.0,0.0,65.68615323788339,0.0779637910018209,30,mac,phase-14,without +25,259.62770375529885,0.0,0.0,65.14209596034219,0.0773180420001153,30,mac,phase-14,without +26,260.6953808942086,0.0,0.0,65.40998234392734,0.077636000001803,30,mac,phase-14,without +27,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981,30,mac,phase-14,without +28,258.4513106522235,0.0,0.0,64.84693211111042,0.0769677080024848,30,mac,phase-14,without +29,259.19789015504335,0.0,0.0,65.03425323636505,0.0771900420004385,30,mac,phase-14,without +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481,30,mac,phase-14,with +1,1517.480332834304,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702,30,mac,phase-14,with +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304,30,mac,phase-14,with +3,1542.4872208574875,0.5718522026949577,0.0,467.2705263315093,0.498356000000058,30,mac,phase-14,with +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855,30,mac,phase-14,with +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593,30,mac,phase-14,with +6,1541.2370366249845,0.5713887171000923,0.0,466.8918040727872,0.4979520829983812,30,mac,phase-14,with +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821,30,mac,phase-14,with +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392,30,mac,phase-14,with +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442,30,mac,phase-14,with +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468,30,mac,phase-14,with +11,1517.2779873087345,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378,30,mac,phase-14,with +12,1518.0660902189236,0.5627984632803773,0.0,459.8725560839836,0.4904658750019735,30,mac,phase-14,with +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126,30,mac,phase-14,with +14,1517.2394279134517,0.5624919915936906,0.0,459.622132660468,0.4901987919984094,30,mac,phase-14,with +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855,30,mac,phase-14,with +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978,30,mac,phase-14,with +17,1518.3874690557575,0.5629176092890171,0.0,459.96991239021986,0.4905697079993842,30,mac,phase-14,with +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193,30,mac,phase-14,with +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163,30,mac,phase-14,with +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935,30,mac,phase-14,with +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.4913474580025649,30,mac,phase-14,with +22,1526.217818035968,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091,30,mac,phase-14,with +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.490669708000496,30,mac,phase-14,with +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.4942520420008804,30,mac,phase-14,with +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378,30,mac,phase-14,with +26,1534.423317940434,0.5688626410421411,0.0,464.8277027480224,0.4957506659993669,30,mac,phase-14,with +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833,30,mac,phase-14,with +28,1517.56235434898,0.5626117113495291,0.0,459.71995778566526,0.4903031250032654,30,mac,phase-14,with +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216,30,mac,phase-14,with +0,237.2903027127171,0.3735384536996727,0.0,63.37702431104448,0.0720150829984049,30,mac,phase-15,without +1,254.30572604705935,0.4003238505266577,0.0,67.92161330602293,0.0771790830003738,30,mac,phase-15,without +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.076375916996767,30,mac,phase-15,without +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.0744619170000078,30,mac,phase-15,without +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.0772538749988598,30,mac,phase-15,without +5,254.06793847194996,0.3999495292750097,0.0,67.85810346699333,0.0771069170004921,30,mac,phase-15,without +6,236.36440535324107,0.3720809214533507,0.0,63.129729673251845,0.0717340829978638,30,mac,phase-15,without +7,253.92130730041657,0.3997187049199788,0.0,67.81894026808975,0.077062415999535,30,mac,phase-15,without +8,255.6341646934731,0.4024150565816184,0.0,68.27642126668127,0.0775822499999776,30,mac,phase-15,without +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.0774064999968686,30,mac,phase-15,without +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.073707874998945,30,mac,phase-15,without +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.0794006249998346,30,mac,phase-15,without +12,242.49408311058815,0.3817301583795169,0.0,64.76688353839138,0.073594375000539,30,mac,phase-15,without +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.0757026249993941,30,mac,phase-15,without +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.078668625003047,30,mac,phase-15,without +15,240.73660801776333,0.3789635702758966,0.0,64.29748575681046,0.0730610000027809,30,mac,phase-15,without +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.0800764999985403,30,mac,phase-15,without +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.0802019589973497,30,mac,phase-15,without +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.0784857090002333,30,mac,phase-15,without +19,255.1599602642359,0.4016685718445272,0.0,68.14976768962146,0.0774383339994528,30,mac,phase-15,without +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.0785644589996081,30,mac,phase-15,without +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.0799249170013354,30,mac,phase-15,without +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.0784903749990917,30,mac,phase-15,without +23,254.37094085870467,0.400426510600086,0.0,67.93903129848127,0.0771988750020682,30,mac,phase-15,without +24,257.3998773220497,0.4051946120772132,0.0,68.74801918243385,0.07811812500222,30,mac,phase-15,without +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.0782012919989938,30,mac,phase-15,without +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.0796113340002193,30,mac,phase-15,without +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.0793126249991473,30,mac,phase-15,without +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.0785715840029297,30,mac,phase-15,without +29,253.68324295352303,0.3993439479787848,0.0,67.75535650706716,0.0769901660023606,30,mac,phase-15,without +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253,30,mac,phase-15,with +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469,30,mac,phase-15,with +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869,30,mac,phase-15,with +3,1547.1728294886957,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128,30,mac,phase-15,with +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.4916307919993414,30,mac,phase-15,with +5,1522.8403915260485,1.286963146171359,0.0,460.69980727431664,0.4899240839986305,30,mac,phase-15,with +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.4981920840000384,30,mac,phase-15,with +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766,30,mac,phase-15,with +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749,30,mac,phase-15,with +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258,30,mac,phase-15,with +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.4905591249989811,30,mac,phase-15,with +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.490846832999523,30,mac,phase-15,with +12,1548.5445027423802,1.3086858716943923,0.0,468.4759860186004,0.4981935410032747,30,mac,phase-15,with +13,1548.346997027624,1.3085189582230503,0.0,468.41623527569254,0.4981299999999464,30,mac,phase-15,with +14,1526.1627930048307,1.289770931073685,0.0,461.7049222748644,0.4909929579989693,30,mac,phase-15,with +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149,30,mac,phase-15,with +16,1549.442548959939,1.3094448168812869,0.0,468.7476689353755,0.4984824579987617,30,mac,phase-15,with +17,1525.4153728060248,1.289139280996684,0.0,461.4788077434539,0.4907524999980523,30,mac,phase-15,with +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293,30,mac,phase-15,with +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.4897483750028186,30,mac,phase-15,with +20,1553.0553234008996,1.312497998020176,0.0,469.8406294964019,0.4996447500016074,30,mac,phase-15,with +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527,30,mac,phase-15,with +22,1549.7637440107094,1.3097162610821198,0.0,468.844838999166,0.4985857920000853,30,mac,phase-15,with +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.4968075409997254,30,mac,phase-15,with +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552,30,mac,phase-15,with +25,1525.1998637277711,1.2889571527559822,0.0,461.4136105032376,0.4906831670014071,30,mac,phase-15,with +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956,30,mac,phase-15,with +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903,30,mac,phase-15,with +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556,30,mac,phase-15,with +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313,30,mac,phase-15,with +0,251.53573576786724,0.0,0.0,62.72152708777785,0.0744095830013975,30,mac,phase-12,without +1,261.23641907506607,0.0,0.0,65.1404345601695,0.0772792499992647,30,mac,phase-12,without +2,259.69001833656097,0.0,0.0,64.75483282643327,0.076821792001283,30,mac,phase-12,without +3,261.4181167235588,0.0,0.0,65.18574165717872,0.0773330000010901,30,mac,phase-12,without +4,260.86401158116945,0.0,0.0,65.04757313574873,0.0771690839974326,30,mac,phase-12,without +5,249.72157861361,0.0,0.0,62.269159130020775,0.073872917000699,30,mac,phase-12,without +6,260.1970815239249,0.0,0.0,64.88127123227001,0.0769717920011316,30,mac,phase-12,without +7,259.727625526503,0.0,0.0,64.764210342417,0.0768329170023207,30,mac,phase-12,without +8,261.2393769415889,0.0,0.0,65.14117211702067,0.0772801249986514,30,mac,phase-12,without +9,267.88415944731423,0.0,0.0,66.79807746549119,0.0792457919997104,30,mac,phase-12,without +10,260.33046618014515,0.0,0.0,64.91453127503361,0.0770112499994866,30,mac,phase-12,without +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019,30,mac,phase-12,without +12,262.63957446676875,0.0,0.0,65.49031744516148,0.0776943329983623,30,mac,phase-12,without +13,258.95505728780233,0.0,0.0,64.57156710004472,0.0766043750008975,30,mac,phase-12,without +14,259.6273385675486,0.0,0.0,64.73920335407234,0.0768032500018307,30,mac,phase-12,without +15,261.7203838407915,0.0,0.0,65.26111327435025,0.0774224169981607,30,mac,phase-12,without +16,262.19885205972054,0.0,0.0,65.38042140073868,0.0775639580024289,30,mac,phase-12,without +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099,30,mac,phase-12,without +18,260.1817276561712,0.0,0.0,64.8774426787276,0.0769672500027809,30,mac,phase-12,without +19,238.90592081951175,0.0,0.0,59.57222793162153,0.0706734170016716,30,mac,phase-12,without +20,244.5389668999695,0.0,0.0,60.97685241268609,0.0723397910005587,30,mac,phase-12,without +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988,30,mac,phase-12,without +22,259.8796025059062,0.0,0.0,64.80210646163543,0.0768778750025376,30,mac,phase-12,without +23,259.9752413748415,0.0,0.0,64.82595442856649,0.0769061669998336,30,mac,phase-12,without +24,260.9768297690729,0.0,0.0,65.07570484040285,0.0772024580001016,30,mac,phase-12,without +25,261.8691223893613,0.0,0.0,65.29820187678934,0.0774664170021424,30,mac,phase-12,without +26,259.81227464687464,0.0,0.0,64.78531796786092,0.0768579579998913,30,mac,phase-12,without +27,259.9996074518044,0.0,0.0,64.83203021557779,0.0769133750000037,30,mac,phase-12,without +28,259.53803797523506,0.0,0.0,64.71693586391773,0.0767768330006219,30,mac,phase-12,without +29,238.99902099587555,0.0,0.0,59.5954428645449,0.0707009580000885,30,mac,phase-12,without +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903,30,mac,phase-12,with +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644,30,mac,phase-12,with +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.4977449159996467,30,mac,phase-12,with +3,1546.2059346063345,2.2033334416620187,0.0,467.473911872625,0.496353624999756,30,mac,phase-12,with +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.4969734580008662,30,mac,phase-12,with +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.4907893749987124,30,mac,phase-12,with +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513,30,mac,phase-12,with +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531,30,mac,phase-12,with +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.4975908330015954,30,mac,phase-12,with +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121,30,mac,phase-12,with +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.4914072920000762,30,mac,phase-12,with +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572,30,mac,phase-12,with +12,1543.267588495252,2.199146317486109,0.0,466.5855436933028,0.4954103750023932,30,mac,phase-12,with +13,1529.337507111068,2.179296041742173,0.0,462.3739768562977,0.4909386250001262,30,mac,phase-12,with +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619,30,mac,phase-12,with +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023,30,mac,phase-12,with +16,1530.0441213304557,2.180302962427888,0.0,462.5876118617835,0.4911654579991591,30,mac,phase-12,with +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.4971690409984148,30,mac,phase-12,with +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865,30,mac,phase-12,with +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.4974212920024001,30,mac,phase-12,with +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434,30,mac,phase-12,with +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.4969887080005719,30,mac,phase-12,with +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.4965708330018969,30,mac,phase-12,with +23,1529.565952029954,2.1796215742718923,0.0,462.44304400801985,0.4910119589985697,30,mac,phase-12,with +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.4924065839986724,30,mac,phase-12,with +25,1550.7246888389986,2.209772637174495,0.0,468.840094520522,0.4978042080001614,30,mac,phase-12,with +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.4911967079970054,30,mac,phase-12,with +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781,30,mac,phase-12,with +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396,30,mac,phase-12,with +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681,30,mac,phase-12,with +0,255.65537390140065,0.0,0.0,64.03179678521767,0.0776107909987331,30,mac,phase-24,without +1,252.3971302607853,0.0,0.0,63.2157325989312,0.0766216669981076,30,mac,phase-24,without +2,254.03647687991125,0.0,0.0,63.626325609258025,0.0771193330001551,30,mac,phase-24,without +3,252.92870751153595,0.0,0.0,63.34887216872111,0.0767830410004535,30,mac,phase-24,without +4,256.21770129194005,0.0,0.0,64.172638077338,0.0777815000001282,30,mac,phase-24,without +5,261.83806978347053,0.0,0.0,65.58032330458661,0.0794877080006699,30,mac,phase-24,without +6,257.89026530262356,0.0,0.0,64.59155076126875,0.0782892499992158,30,mac,phase-24,without +7,254.00381288625172,0.0,0.0,63.61814454045324,0.0771094170013384,30,mac,phase-24,without +8,255.43041857262065,0.0,0.0,63.97545416398356,0.0775424999992537,30,mac,phase-24,without +9,254.5701162116187,0.0,0.0,63.75998165068225,0.0772813330004282,30,mac,phase-24,without +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248,30,mac,phase-24,without +11,250.66526969948472,0.0,0.0,62.78196841932783,0.0760959159997582,30,mac,phase-24,without +12,253.81728616949164,0.0,0.0,63.57142680227183,0.0770527919994492,30,mac,phase-24,without +13,252.96713941908897,0.0,0.0,63.35849787717756,0.0767947079984878,30,mac,phase-24,without +14,239.62560934353888,0.0,0.0,60.01695989358342,0.072744542001601,30,mac,phase-24,without +15,251.76288345726073,0.0,0.0,63.05687827165771,0.0764291250015958,30,mac,phase-24,without +16,257.5634672163916,0.0,0.0,64.50970046284525,0.0781900420006422,30,mac,phase-24,without +17,255.07685287249387,0.0,0.0,63.88689961214584,0.0774351660002139,30,mac,phase-24,without +18,253.78612756335775,0.0,0.0,63.56362277489847,0.0770433329998923,30,mac,phase-24,without +19,261.432764118169,0.0,0.0,65.47880988986569,0.0793646669990266,30,mac,phase-24,without +20,253.1580604236211,0.0,0.0,63.40631621472186,0.0768526669999118,30,mac,phase-24,without +21,255.3783986189558,0.0,0.0,63.96242517479779,0.0775267079989134,30,mac,phase-24,without +22,255.35575189540887,0.0,0.0,63.95675304525136,0.0775198330011335,30,mac,phase-24,without +23,249.2891719762051,0.0,0.0,62.437309089742904,0.0756781659983971,30,mac,phase-24,without +24,253.92571378551105,0.0,0.0,63.59858373220023,0.0770857080024143,30,mac,phase-24,without +25,232.28381259426416,0.0,0.0,58.17812337583731,0.0705157499978668,30,mac,phase-24,without +26,253.67358237649097,0.0,0.0,63.53543455250894,0.077009167001961,30,mac,phase-24,without +27,253.70103185415508,0.0,0.0,63.542309586461194,0.0770174999997834,30,mac,phase-24,without +28,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622,30,mac,phase-24,without +29,254.50876744267657,0.0,0.0,63.74461615358363,0.0772627089972957,30,mac,phase-24,without +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143,30,mac,phase-24,with +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629,30,mac,phase-24,with +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.4905859169994073,30,mac,phase-24,with +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484,30,mac,phase-24,with +4,1572.3927908809335,1.7548657145168245,0.0,461.7945683087953,0.4925914999985252,30,mac,phase-24,with +5,1564.3827924950483,1.7459261724238786,0.0,459.44211937350633,0.490082166998036,30,mac,phase-24,with +6,1587.637379706137,1.7718794062714578,0.0,466.2717373446797,0.4973672500018438,30,mac,phase-24,with +7,1586.1069069337875,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081,30,mac,phase-24,with +8,1565.879611148776,1.747596693779299,0.0,459.88171864414875,0.4905510830030835,30,mac,phase-24,with +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.4896888329967623,30,mac,phase-24,with +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949,30,mac,phase-24,with +11,1565.9028878075114,1.7476226716460257,0.0,459.8885547442853,0.4905583750005462,30,mac,phase-24,with +12,1583.3814014098812,1.7671295305170396,0.0,465.0218030588897,0.496033957999316,30,mac,phase-24,with +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357,30,mac,phase-24,with +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462,30,mac,phase-24,with +15,1611.7074099564163,1.798742713632422,0.0,473.3408420194601,0.5049077910007327,30,mac,phase-24,with +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.4980673339996428,30,mac,phase-24,with +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919,30,mac,phase-24,with +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489,30,mac,phase-24,with +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508,30,mac,phase-24,with +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334,30,mac,phase-24,with +21,1627.0202327275636,1.8158325577409689,0.0,477.83805061911875,0.5097049169999082,30,mac,phase-24,with +22,1572.3998421997237,1.754873584126542,0.0,461.79663920401657,0.4925937090010848,30,mac,phase-24,with +23,1585.7182708706089,1.7697375888340936,0.0,465.7081160654547,0.4967660410002281,30,mac,phase-24,with +24,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159,30,mac,phase-24,with +25,1590.2483692515932,1.774793395740791,0.0,467.03855642258145,0.4981852079981763,30,mac,phase-24,with +26,1591.9827363009797,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986,30,mac,phase-24,with +27,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312,30,mac,phase-24,with +28,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873,30,mac,phase-24,with +29,1587.966697298727,1.7722469404879555,0.0,466.3684543204815,0.4974704170017503,30,mac,phase-24,with +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292,30,mac,phase-23,without +1,242.77578502676263,0.4671759814498319,0.0,63.69165880432708,0.0724429590009094,30,mac,phase-23,without +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993,30,mac,phase-23,without +3,258.51333715491046,0.4974599175527462,0.0,67.82036875969108,0.0771389580004324,30,mac,phase-23,without +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.0854656670016993,30,mac,phase-23,without +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141,30,mac,phase-23,without +6,243.74387927163863,0.4690388953270789,0.0,63.94563606292509,0.0727318329991248,30,mac,phase-23,without +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.074225792002835,30,mac,phase-23,without +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.0776544169966655,30,mac,phase-23,without +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708,30,mac,phase-23,without +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.0730839579991879,30,mac,phase-23,without +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632,30,mac,phase-23,without +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.0799434170003223,30,mac,phase-23,without +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.0794488749997981,30,mac,phase-23,without +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.0797305839987529,30,mac,phase-23,without +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.0777837919995363,30,mac,phase-23,without +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.0775734999988344,30,mac,phase-23,without +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.0781226660001266,30,mac,phase-23,without +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.078081875002681,30,mac,phase-23,without +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.0791336250003951,30,mac,phase-23,without +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488,30,mac,phase-23,without +21,257.9793695450014,0.4964323980981425,0.0,67.6802836073801,0.0769796250024228,30,mac,phase-23,without +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.0782561670021095,30,mac,phase-23,without +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.0792537500019534,30,mac,phase-23,without +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041,30,mac,phase-23,without +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.0780591249967983,30,mac,phase-23,without +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.0775096249999478,30,mac,phase-23,without +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.0782039170007919,30,mac,phase-23,without +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.0776473750011064,30,mac,phase-23,without +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.0781980419997125,30,mac,phase-23,without +0,1552.5755589394023,1.275546910247925,0.0,466.24596271957057,0.4975988330006657,30,mac,phase-23,with +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.496548333998362,30,mac,phase-23,with +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.4974576250024256,30,mac,phase-23,with +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449,30,mac,phase-23,with +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334,30,mac,phase-23,with +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.4977821669999684,30,mac,phase-23,with +6,1537.704995292508,1.2633297260959353,0.0,461.7802604071722,0.4928328329988289,30,mac,phase-23,with +7,1550.9853290718895,1.2742404277502393,0.0,465.7684089855479,0.4970891660013876,30,mac,phase-23,with +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838,30,mac,phase-23,with +9,1551.9411325247231,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125,30,mac,phase-23,with +10,1520.1867380960591,1.2489372807742254,0.0,456.5194428935261,0.4872182500002964,30,mac,phase-23,with +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.4970620829990366,30,mac,phase-23,with +12,1524.5508959441925,1.25252273465244,0.0,457.83002064006297,0.4886169579986017,30,mac,phase-23,with +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.4979272499986109,30,mac,phase-23,with +14,1552.3800325555055,1.275386271963099,0.0,466.1872451991433,0.4975361670003622,30,mac,phase-23,with +15,1533.394787700758,1.2597885960397988,0.0,460.4858841840212,0.4914514160009275,30,mac,phase-23,with +16,1553.2691400031183,1.2761167344846496,0.0,466.454248473468,0.4978211250017921,30,mac,phase-23,with +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.4989104170017526,30,mac,phase-23,with +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086,30,mac,phase-23,with +19,1554.660720229109,1.277260012727956,0.0,466.872146757666,0.4982671249999839,30,mac,phase-23,with +20,1560.0134398376556,1.28165763764147,0.0,468.4795943905267,0.4999826660023245,30,mac,phase-23,with +21,1528.100442701547,1.2554389298566315,0.0,458.89596672917406,0.4897545839994563,30,mac,phase-23,with +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346,30,mac,phase-23,with +23,1528.2429267943644,1.2555559902749194,0.0,458.9387553925956,0.4898002500012808,30,mac,phase-23,with +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.4974483750011131,30,mac,phase-23,with +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.4978840000003401,30,mac,phase-23,with +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246,30,mac,phase-23,with +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913,30,mac,phase-23,with +28,1526.2605989035876,1.2539273724587885,0.0,458.343452722436,0.489164915998117,30,mac,phase-23,with +29,1549.6854059286077,1.2731724520633707,0.0,465.3780357673742,0.496672542001761,30,mac,phase-23,with +0,254.55862726842625,0.0,0.0,64.64502264360112,0.0770675419989856,30,mac,phase-8,without +1,249.45099505649355,0.0,0.0,63.34794226750606,0.075521208000282,30,mac,phase-8,without +2,260.34668630262985,0.0,0.0,66.11489703498854,0.0788198749978619,30,mac,phase-8,without +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234,30,mac,phase-8,without +4,254.45815813069177,0.0,0.0,64.61950856162512,0.0770371250000607,30,mac,phase-8,without +5,255.8519102420228,0.0,0.0,64.97345113966061,0.0774590830005763,30,mac,phase-8,without +6,248.69707187526592,0.0,0.0,63.15648389249447,0.0752929580012278,30,mac,phase-8,without +7,255.1022546097663,0.0,0.0,64.78307650635061,0.0772321250005916,30,mac,phase-8,without +8,252.78860060747465,0.0,0.0,64.1955253517402,0.0765316670003812,30,mac,phase-8,without +9,254.73506346907223,0.0,0.0,64.68982851919962,0.0771209580016147,30,mac,phase-8,without +10,253.83333170049056,0.0,0.0,64.46083423515617,0.0768479590005881,30,mac,phase-8,without +11,253.7371268072013,0.0,0.0,64.43640305569922,0.0768188330002885,30,mac,phase-8,without +12,240.22252605510252,0.0,0.0,61.00437766723181,0.0727272919975803,30,mac,phase-8,without +13,258.0346838423428,0.0,0.0,65.52776528855703,0.0781199170014588,30,mac,phase-8,without +14,254.20038081866608,0.0,0.0,64.5540461557671,0.0769590830022934,30,mac,phase-8,without +15,254.6882723304369,0.0,0.0,64.67794593541505,0.0771067919995402,30,mac,phase-8,without +16,255.76066324322383,0.0,0.0,64.95027901476814,0.0774314580012287,30,mac,phase-8,without +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999,30,mac,phase-8,without +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448,30,mac,phase-8,without +19,253.6951515285212,0.0,0.0,64.4257434568875,0.0768061249982565,30,mac,phase-8,without +20,253.3447531357101,0.0,0.0,64.3367599787763,0.076700041998265,30,mac,phase-8,without +21,255.2514405716164,0.0,0.0,64.82096219887414,0.0772772910022467,30,mac,phase-8,without +22,236.06342334742243,0.0,0.0,59.94817583427829,0.0714681249992281,30,mac,phase-8,without +23,256.95678343157175,0.0,0.0,65.25403307523722,0.0777935830010392,30,mac,phase-8,without +24,255.03110341882655,0.0,0.0,64.76500770075256,0.0772105840005679,30,mac,phase-8,without +25,255.734925804407,0.0,0.0,64.94374300641141,0.0774236659999587,30,mac,phase-8,without +26,256.5582165256291,0.0,0.0,65.15281722984973,0.0776729169992904,30,mac,phase-8,without +27,256.4007696213289,0.0,0.0,65.11283367555865,0.0776252499999827,30,mac,phase-8,without +28,240.76863068541655,0.0,0.0,61.143060636146465,0.0728926249976211,30,mac,phase-8,without +29,253.9838950248202,0.0,0.0,64.49906970811983,0.0768935419982881,30,mac,phase-8,without +0,1526.770791456814,1.689345447459375,0.0,462.4831595574077,0.4918107500016049,30,mac,phase-8,with +1,1530.8290010789997,1.6938357861457298,0.0,463.71245580718977,0.4931180000021413,30,mac,phase-8,with +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.4902934160018048,30,mac,phase-8,with +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388,30,mac,phase-8,with +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.4919111670023994,30,mac,phase-8,with +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108,30,mac,phase-8,with +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786,30,mac,phase-8,with +7,1541.6151929447517,1.705770520701691,0.0,466.9797649026864,0.4965924999996787,30,mac,phase-8,with +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964,30,mac,phase-8,with +9,1541.711816984989,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112,30,mac,phase-8,with +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.4913567079966014,30,mac,phase-8,with +11,1522.1852241350612,1.684271596608698,0.0,461.0941182715813,0.4903336250026768,30,mac,phase-8,with +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.4971137079992331,30,mac,phase-8,with +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119,30,mac,phase-8,with +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.4966302089997043,30,mac,phase-8,with +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702,30,mac,phase-8,with +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.4984741250009392,30,mac,phase-8,with +17,1542.471615652947,1.706718137600892,0.0,467.2391889643854,0.4968683750012133,30,mac,phase-8,with +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831,30,mac,phase-8,with +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757,30,mac,phase-8,with +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121,30,mac,phase-8,with +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.497358874999918,30,mac,phase-8,with +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191,30,mac,phase-8,with +23,1544.7746825942847,1.709266441298024,0.0,467.9368245765296,0.4976102500004344,30,mac,phase-8,with +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246,30,mac,phase-8,with +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499,30,mac,phase-8,with +26,1542.6620170112014,1.7069288134073437,0.0,467.29686456457506,0.4969297080024262,30,mac,phase-8,with +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994,30,mac,phase-8,with +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048,30,mac,phase-8,with +29,1542.809736148168,1.7070922620749058,0.0,467.3416110409772,0.4969772920012474,30,mac,phase-8,with +0,252.31231985583565,0.7304738829883385,0.0,65.27780245250334,0.0762640409993764,30,mac,phase-1,without +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.0785115409998979,30,mac,phase-1,without +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844,30,mac,phase-1,without +3,254.08107578790057,0.7355946397333613,0.0,65.7354118961722,0.0767986660030146,30,mac,phase-1,without +4,254.8141653450625,0.7377170203436471,0.0,65.925075545255,0.0770202499988954,30,mac,phase-1,without +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552,30,mac,phase-1,without +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.076410500001657,30,mac,phase-1,without +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283,30,mac,phase-1,without +8,255.1343891608784,0.7386441060059645,0.0,66.00792329126028,0.0771170410007471,30,mac,phase-1,without +9,254.33927029643831,0.7363421432453802,0.0,65.80221152820079,0.0768767079971439,30,mac,phase-1,without +10,254.15483004207024,0.7358081669858593,0.0,65.75449346791815,0.0768209589987236,30,mac,phase-1,without +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.0783152080002764,30,mac,phase-1,without +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539,30,mac,phase-1,without +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.0761889579989656,30,mac,phase-1,without +14,254.008843365794,0.7353855183639252,0.0,65.71672405015805,0.076776832996984,30,mac,phase-1,without +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.0768490000009478,30,mac,phase-1,without +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.0778543330015963,30,mac,phase-1,without +17,255.57027480120905,0.7399060462727463,0.0,66.1206948623736,0.0772487920003186,30,mac,phase-1,without +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.0767076669981179,30,mac,phase-1,without +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801,30,mac,phase-1,without +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.0753446670023549,30,mac,phase-1,without +21,220.4004131405646,0.6380851545061746,0.0,57.02160971632452,0.0666183329994964,30,mac,phase-1,without +22,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.0774812499985273,30,mac,phase-1,without +23,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745,30,mac,phase-1,without +24,252.95552999281617,0.7323360520913219,0.0,65.44421265506995,0.0764584579992515,30,mac,phase-1,without +25,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.0769151659987983,30,mac,phase-1,without +26,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.0767502079979749,30,mac,phase-1,without +27,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.0767220839989022,30,mac,phase-1,without +28,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.0763839579994964,30,mac,phase-1,without +29,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787,30,mac,phase-1,without +0,1541.6676935631915,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725,30,mac,phase-1,with +1,1539.9339925655115,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675,30,mac,phase-1,with +2,1537.4033292502131,1.4726085529216604,0.0,466.3483540093277,0.4953739999982645,30,mac,phase-1,with +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.496548333998362,30,mac,phase-1,with +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737,30,mac,phase-1,with +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737,30,mac,phase-1,with +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.4963964589987881,30,mac,phase-1,with +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326,30,mac,phase-1,with +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491,30,mac,phase-1,with +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484,30,mac,phase-1,with +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793,30,mac,phase-1,with +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.4901659580027626,30,mac,phase-1,with +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843,30,mac,phase-1,with +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972,30,mac,phase-1,with +14,1541.2718674655523,1.476314049296506,0.0,467.5218173385799,0.4966204999982437,30,mac,phase-1,with +15,1540.4087008558995,1.4754872613562258,0.0,467.2599886304011,0.4963423750014044,30,mac,phase-1,with +16,1531.2747826396396,1.4667382975475476,0.0,464.4893508642619,0.4933992920014134,30,mac,phase-1,with +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.4963049580001097,30,mac,phase-1,with +18,1522.1950456773989,1.4580412314917617,0.0,461.73514817286826,0.4904736669996055,30,mac,phase-1,with +19,1538.037096059261,1.4732156092521662,0.0,466.54059771181096,0.4955782090000866,30,mac,phase-1,with +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977,30,mac,phase-1,with +21,1559.845791710162,1.4941051644733354,0.0,473.1559400402603,0.5026052920002257,30,mac,phase-1,with +22,1514.2267569754815,1.450408771049312,0.0,459.3180867227526,0.4879061669998918,30,mac,phase-1,with +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.4904113750017131,30,mac,phase-1,with +24,1521.4884764967403,1.4573644410888318,0.0,461.52082095754054,0.490246000001207,30,mac,phase-1,with +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.4877654580013768,30,mac,phase-1,with +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.488684291998652,30,mac,phase-1,with +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.4885777920026157,30,mac,phase-1,with +28,1545.923787001248,1.4807699109207355,0.0,468.9329076993075,0.4981194169995433,30,mac,phase-1,with +29,1523.710854713787,1.4594931558561175,0.0,462.1949462204351,0.4909620830003405,30,mac,phase-1,with +0,381.3081659044242,0.198030727553583,9.967546620197012,73.07333846727214,0.0762857089976023,30,mac,phase-30,without +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957,30,mac,phase-30,without +2,387.4458082495051,0.2012182852503272,10.12798702426647,74.24954725737075,0.077513624997664,30,mac,phase-30,without +3,381.1904880655916,0.1979696120828831,9.964470474838452,73.05078685858389,0.0762621659996511,30,mac,phase-30,without +4,377.4216778769259,0.1960122970017792,9.865952282422889,72.32853759365653,0.0755081659990537,30,mac,phase-30,without +5,395.2054385543479,0.2052482152969867,10.330826836614998,75.7365914445881,0.0790660410020791,30,mac,phase-30,without +6,382.2245416168645,0.198506643270249,9.991501044602536,73.2489513667219,0.0764690420000988,30,mac,phase-30,without +7,388.2468053820079,0.2016342796063401,10.148925406852452,74.40304917473951,0.0776738749991636,30,mac,phase-30,without +8,361.77536742490526,0.1878864541287485,9.456951524480342,69.3301015735082,0.072377915999823,30,mac,phase-30,without +9,396.6091653952728,0.2059772346898327,10.367520812721578,76.00559960054827,0.0793468750016472,30,mac,phase-30,without +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.0757492079974326,30,mac,phase-30,without +11,389.1548487153577,0.2021058679383836,10.17266201956531,74.57706526926356,0.0778555409997352,30,mac,phase-30,without +12,398.0607921145172,0.2067311306748985,10.405466910636562,76.28378721903758,0.07963729200128,30,mac,phase-30,without +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.0798584579970338,30,mac,phase-30,without +14,394.0549717448149,0.2046507253933082,10.300753178129844,75.51611767013073,0.0788358749996405,30,mac,phase-30,without +15,389.67822848863034,0.2023776829335914,10.186343374324103,74.67736500249524,0.0779602500006149,30,mac,phase-30,without +16,390.66458707880736,0.2028899439516008,10.21212717889724,74.8663893181407,0.0781575839973811,30,mac,phase-30,without +17,382.3307530923388,0.1985618037353096,9.994277454677253,73.26930557832927,0.0764902910013916,30,mac,phase-30,without +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962,30,mac,phase-30,without +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.0725337920011952,30,mac,phase-30,without +20,388.52755176123173,0.2017800840099879,10.156264228502726,74.45685099968554,0.0777300420013489,30,mac,phase-30,without +21,389.50432339303006,0.2022873660831109,10.18179742618325,74.64403808466793,0.0779254580011183,30,mac,phase-30,without +22,381.15924792662696,0.1979533876534027,9.963653845221272,73.04480004410561,0.0762559159993543,30,mac,phase-30,without +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.0780157500012137,30,mac,phase-30,without +24,385.52849854792015,0.2002225388459725,10.07786778858062,73.88211683416388,0.0771300419983163,30,mac,phase-30,without +25,377.8184326260527,0.196218349844743,9.876323608852063,72.40457109271017,0.0755875419999938,30,mac,phase-30,without +26,373.01390441782655,0.1937231391419509,9.750731336811532,71.4838383433799,0.0746263330001966,30,mac,phase-30,without +27,392.390082348607,0.2037860723700893,10.257232309294496,75.19706070456296,0.0785027919991989,30,mac,phase-30,without +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.078830000002199,30,mac,phase-30,without +29,389.200049447067,0.2021293427406216,10.17384358461129,74.58572747128939,0.0778645840000535,30,mac,phase-30,without +0,2388.293804473947,3.948256730756337,88.5680980195934,516.2847572505955,0.5047006250024424,30,mac,phase-30,with +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839,30,mac,phase-30,with +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086,30,mac,phase-30,with +3,2411.1969694915374,3.9861195662529263,89.41744484636862,521.2358042990056,0.5095405829997617,30,mac,phase-30,with +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725,30,mac,phase-30,with +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035,30,mac,phase-30,with +6,2372.850397511069,3.922726146800221,87.99539076762868,512.9463088570119,0.5014370829994732,30,mac,phase-30,with +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908,30,mac,phase-30,with +8,2354.685839084009,3.892697035668036,87.32177163909569,509.0196208504898,0.4975985000019136,30,mac,phase-30,with +9,2376.2567192107217,3.928357377159141,88.12171167237496,513.6826638098775,0.5021569159980572,30,mac,phase-30,with +10,2377.0903590593543,3.929735525918403,88.15262658564419,513.8628742789912,0.502333082997211,30,mac,phase-30,with +11,2387.2517582095043,3.946534050669975,88.52945450952055,516.0594949308281,0.5044804170029238,30,mac,phase-30,with +12,2356.9182072270733,3.896387520703783,87.4045573500247,509.5021986818592,0.4980702499997278,30,mac,phase-30,with +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117,30,mac,phase-30,with +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978,30,mac,phase-30,with +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944,30,mac,phase-30,with +16,2396.136077101009,3.9612213440824777,88.85892286259592,517.9800452473951,0.5063578749977751,30,mac,phase-30,with +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.4989800420007668,30,mac,phase-30,with +18,2405.715621948096,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489,30,mac,phase-30,with +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676,30,mac,phase-30,with +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362,30,mac,phase-30,with +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782,30,mac,phase-30,with +22,2396.5872071287085,3.961967138910976,88.87565268387587,518.077567401664,0.5064532090000284,30,mac,phase-30,with +23,2363.0508100276948,3.906525758402701,87.63198036010125,510.8279021368955,0.4993662080014474,30,mac,phase-30,with +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441,30,mac,phase-30,with +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081,30,mac,phase-30,with +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673,30,mac,phase-30,with +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922,30,mac,phase-30,with +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745,30,mac,phase-30,with +29,2355.1391363948715,3.893446413385005,87.33858183245853,509.11761151297134,0.4976942920002329,30,mac,phase-30,with +0,251.2126028110106,0.0,0.0,63.04752093895013,0.074755040997843,30,mac,phase-6,without +1,251.92782659925052,0.0,0.0,63.22702262899478,0.0749678749998565,30,mac,phase-6,without +2,258.018691325029,0.0,0.0,64.75566377612596,0.0767803749986342,30,mac,phase-6,without +3,260.54003040902114,0.0,0.0,65.38845121160259,0.0775306670002464,30,mac,phase-6,without +4,259.9749090575512,0.0,0.0,65.24662114479398,0.0773625000001629,30,mac,phase-6,without +5,257.4462911868574,0.0,0.0,64.61200693211013,0.0766100420005386,30,mac,phase-6,without +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752,30,mac,phase-6,without +7,258.55804789756263,0.0,0.0,64.89102758518595,0.0769408749983995,30,mac,phase-6,without +8,261.25119137299276,0.0,0.0,65.56693324341647,0.077742292000039,30,mac,phase-6,without +9,260.1166102987462,0.0,0.0,65.28218429676703,0.0774046670012467,30,mac,phase-6,without +10,237.00576584766733,0.0,0.0,59.48199181779978,0.0705274159990949,30,mac,phase-6,without +11,261.5736560314424,0.0,0.0,65.64786308960325,0.0778382499993313,30,mac,phase-6,without +12,258.20715696601536,0.0,0.0,64.80296351870814,0.0768364579998888,30,mac,phase-6,without +13,256.72603004324225,0.0,0.0,64.43124100307053,0.0763957089984614,30,mac,phase-6,without +14,259.4536150402221,0.0,0.0,65.1157905451141,0.0772073749976698,30,mac,phase-6,without +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666,30,mac,phase-6,without +16,258.93344008202195,0.0,0.0,64.98524079879539,0.0770525830012047,30,mac,phase-6,without +17,259.39424550343654,0.0,0.0,65.10089040845003,0.0771897080012422,30,mac,phase-6,without +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765,30,mac,phase-6,without +19,247.2062185079991,0.0,0.0,62.042027602202104,0.0735628340007679,30,mac,phase-6,without +20,240.2339275243244,0.0,0.0,60.29217247205807,0.0714880420018744,30,mac,phase-6,without +21,261.37664806550475,0.0,0.0,65.59841945612862,0.077779625000403,30,mac,phase-6,without +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121,30,mac,phase-6,without +23,259.09586538480823,0.0,0.0,65.02600512575927,0.0771009170020988,30,mac,phase-6,without +24,259.9893288635479,0.0,0.0,65.25024012334178,0.0773667909998039,30,mac,phase-6,without +25,257.87783357147384,0.0,0.0,64.72031231657613,0.0767384589998982,30,mac,phase-6,without +26,259.9124613012882,0.0,0.0,65.23094845888362,0.0773439169970515,30,mac,phase-6,without +27,259.9603447479832,0.0,0.0,65.24296589978566,0.0773581659996125,30,mac,phase-6,without +28,257.0997419885865,0.0,0.0,64.52503252242737,0.0765069170010974,30,mac,phase-6,without +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405,30,mac,phase-6,without +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976,30,mac,phase-6,with +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595,30,mac,phase-6,with +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.4905380419986613,30,mac,phase-6,with +3,1542.6536762485855,0.7725528459014843,0.0,473.2725912500832,0.4981489999991026,30,mac,phase-6,with +4,1543.401933683681,0.7729275692887551,0.0,473.5021500555895,0.4983906249981373,30,mac,phase-6,with +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.4949968340006307,30,mac,phase-6,with +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.498344999999972,30,mac,phase-6,with +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.4981494999992719,30,mac,phase-6,with +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449,30,mac,phase-6,with +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929,30,mac,phase-6,with +10,1537.626197619399,0.7700351110511502,0.0,471.7302049874221,0.49652554199929,30,mac,phase-6,with +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289,30,mac,phase-6,with +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177,30,mac,phase-6,with +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.4986532499970053,30,mac,phase-6,with +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.4899813329975586,30,mac,phase-6,with +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.4892707910003082,30,mac,phase-6,with +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.4929174160024558,30,mac,phase-6,with +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781,30,mac,phase-6,with +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552,30,mac,phase-6,with +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.4907241250002698,30,mac,phase-6,with +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491,30,mac,phase-6,with +21,1516.8447946320175,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654,30,mac,phase-6,with +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525,30,mac,phase-6,with +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571,30,mac,phase-6,with +24,1541.3760009365585,0.7719129928264602,0.0,472.8806116923837,0.4977364170008513,30,mac,phase-6,with +25,1542.692772983568,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102,30,mac,phase-6,with +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.4900904159985657,30,mac,phase-6,with +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.4966319170016504,30,mac,phase-6,with +28,1518.901438072084,0.760657849971867,0.0,465.98561330885246,0.4904790000000503,30,mac,phase-6,with +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882,30,mac,phase-6,with +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.076847208001709,30,mac,phase-7,without +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.0770459590021346,30,mac,phase-7,without +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.0773680829988734,30,mac,phase-7,without +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.076017999999749,30,mac,phase-7,without +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.0762255000008735,30,mac,phase-7,without +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.077563791997818,30,mac,phase-7,without +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.0770248330009053,30,mac,phase-7,without +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.0733274169979267,30,mac,phase-7,without +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.0775150410008791,30,mac,phase-7,without +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.0773663330000999,30,mac,phase-7,without +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.075760417003039,30,mac,phase-7,without +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.0773687500004598,30,mac,phase-7,without +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887,30,mac,phase-7,without +13,248.11253105893135,0.76910270012068,0.0,68.17326333869708,0.071188792000612,30,mac,phase-7,without +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.0754453750014363,30,mac,phase-7,without +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.0776007089989434,30,mac,phase-7,without +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.0776465839990123,30,mac,phase-7,without +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.0784323340012633,30,mac,phase-7,without +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.075241750000714,30,mac,phase-7,without +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392,30,mac,phase-7,without +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.0780122500000288,30,mac,phase-7,without +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.0768742920008662,30,mac,phase-7,without +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.078040291002253,30,mac,phase-7,without +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483,30,mac,phase-7,without +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.0799040839992812,30,mac,phase-7,without +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.0787826250016223,30,mac,phase-7,without +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.0793842499988386,30,mac,phase-7,without +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.0794322090005152,30,mac,phase-7,without +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.0823663330011186,30,mac,phase-7,without +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.0802108749994658,30,mac,phase-7,without +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.4996582499989017,30,mac,phase-7,with +1,1533.5334001790511,1.8921445940257144,0.0,474.4635558317462,0.493004457999632,30,mac,phase-7,with +2,1543.8059871684454,1.9048193880252269,0.0,477.6418160183257,0.4963069170007657,30,mac,phase-7,with +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377,30,mac,phase-7,with +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006,30,mac,phase-7,with +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134,30,mac,phase-7,with +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524,30,mac,phase-7,with +7,1522.6814694210657,1.87875497882981,0.0,471.1060510949909,0.4895157499995548,30,mac,phase-7,with +8,1546.9721730979702,1.908725974989378,0.0,478.62140983374,0.4973247910020291,30,mac,phase-7,with +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562,30,mac,phase-7,with +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276,30,mac,phase-7,with +11,1522.9656993374065,1.879105674875688,0.0,471.1939896666353,0.4896071250004752,30,mac,phase-7,with +12,1544.25585273976,1.9053744530200296,0.0,477.7810010002682,0.49645154099926,30,mac,phase-7,with +13,1546.7443256761674,1.908444846278796,0.0,478.55091557654094,0.4972515419976844,30,mac,phase-7,with +14,1550.8537971977223,1.9135153027311336,0.0,479.8223547708087,0.4985726659979264,30,mac,phase-7,with +15,1523.3470075656658,1.8795761506427464,0.0,471.3119635287153,0.4897297089992207,30,mac,phase-7,with +16,1517.6756261895746,1.8725785374116448,0.0,469.55728131973046,0.4879064580018166,30,mac,phase-7,with +17,1526.438800689855,1.883390948315296,0.0,472.26854077667593,0.4907236670005659,30,mac,phase-7,with +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595,30,mac,phase-7,with +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093,30,mac,phase-7,with +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216,30,mac,phase-7,with +21,1532.4807276685026,1.890845757886976,0.0,474.1378669733079,0.4926660419987456,30,mac,phase-7,with +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.4991075840007397,30,mac,phase-7,with +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354,30,mac,phase-7,with +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.4886628750027739,30,mac,phase-7,with +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164,30,mac,phase-7,with +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348,30,mac,phase-7,with +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517,30,mac,phase-7,with +28,1550.5286132950594,1.913114075758564,0.0,479.72174534766935,0.498468124998908,30,mac,phase-7,with +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037,30,mac,phase-7,with +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.0761317500000586,30,mac,phase-9,without +1,256.12393460719073,0.9064551362425152,0.0,65.29834222191452,0.0772571669986064,30,mac,phase-9,without +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.0767200000009324,30,mac,phase-9,without +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752,30,mac,phase-9,without +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.0765427500009536,30,mac,phase-9,without +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.076881291999598,30,mac,phase-9,without +6,253.37879933322745,0.8967397538336794,0.0,64.59847485950024,0.0764291250015958,30,mac,phase-9,without +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.0785475830016366,30,mac,phase-9,without +8,256.86308778885234,0.9090710932362056,0.0,65.4867880127563,0.0774801250008749,30,mac,phase-9,without +9,255.65027029969852,0.9047787780956692,0.0,65.17758234800283,0.0771142910016351,30,mac,phase-9,without +10,254.2089816160017,0.8996778743782993,0.0,64.8101283579923,0.0766795410017948,30,mac,phase-9,without +11,258.8750074470721,0.9161915324512973,0.0,65.99972335621382,0.0780870000016875,30,mac,phase-9,without +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.0775150420013233,30,mac,phase-9,without +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.0773265410025487,30,mac,phase-9,without +14,253.7441622806205,0.898032819711201,0.0,64.69162349401059,0.0765393330002552,30,mac,phase-9,without +15,251.5744948659375,0.890354091149602,0.0,64.13847064022133,0.0758848750010656,30,mac,phase-9,without +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.0769605839996074,30,mac,phase-9,without +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.0773543750001408,30,mac,phase-9,without +18,257.3632704895553,0.9108413033448676,0.0,65.6143087039173,0.0776310000001103,30,mac,phase-9,without +19,254.9952406394763,0.90246054492933,0.0,65.01058369953878,0.0769167079997714,30,mac,phase-9,without +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.0762424999993527,30,mac,phase-9,without +21,237.13135670060404,0.8392379906824367,0.0,60.45621821767923,0.0715282499986642,30,mac,phase-9,without +22,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.0779090830001223,30,mac,phase-9,without +23,239.82482771688112,0.8487705267211679,0.0,61.14291386935821,0.0723407080004108,30,mac,phase-9,without +24,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.0773496250003518,30,mac,phase-9,without +25,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142,30,mac,phase-9,without +26,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496,30,mac,phase-9,without +27,254.63913044761705,0.9012002257288844,0.0,64.91979403861778,0.0768092910002451,30,mac,phase-9,without +28,255.21888157057143,0.903252038590304,0.0,65.06760055770893,0.0769841670007736,30,mac,phase-9,without +29,255.8472502804252,0.9054759152669394,0.0,65.22780204422952,0.0771737079994636,30,mac,phase-9,without +0,1562.7525821795537,1.3534612562180337,0.0,463.1808508779323,0.4898252499988302,30,mac,phase-9,with +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384,30,mac,phase-9,with +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099,30,mac,phase-9,with +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248,30,mac,phase-9,with +4,1587.2227722401722,1.3746542809853626,0.0,470.4335174757469,0.4974951250005688,30,mac,phase-9,with +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653,30,mac,phase-9,with +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598,30,mac,phase-9,with +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184,30,mac,phase-9,with +8,1564.261785807479,1.35476834005295,0.0,463.62816047031566,0.4902982909989077,30,mac,phase-9,with +9,1583.7046608844691,1.3716073319869715,0.0,469.3907920758341,0.4963924170006066,30,mac,phase-9,with +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031,30,mac,phase-9,with +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.4984325410005112,30,mac,phase-9,with +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.491652000000613,30,mac,phase-9,with +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357,30,mac,phase-9,with +14,1582.78900463182,1.3708143048142083,0.0,469.1194027036136,0.4961054160012281,30,mac,phase-9,with +15,1586.2664412042632,1.3738260263915247,0.0,470.1500725926704,0.4971953749991371,30,mac,phase-9,with +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225,30,mac,phase-9,with +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.4955564580013742,30,mac,phase-9,with +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672,30,mac,phase-9,with +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756,30,mac,phase-9,with +20,1562.7080469921625,1.3534226853966762,0.0,463.1676511902626,0.4898112910013878,30,mac,phase-9,with +21,1563.4943568701915,1.354103688882084,0.0,463.40070387084194,0.4900577499975043,30,mac,phase-9,with +22,1565.315558919256,1.3556809868121988,0.0,463.9404859990722,0.4906285830002161,30,mac,phase-9,with +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271,30,mac,phase-9,with +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.4963112500008719,30,mac,phase-9,with +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042,30,mac,phase-9,with +26,1585.4583311232377,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681,30,mac,phase-9,with +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.4942537500028265,30,mac,phase-9,with +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749,30,mac,phase-9,with +29,1529.1152277892556,1.3243287777642476,0.0,453.2111483124429,0.4792820420007047,30,mac,phase-9,with +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.0626812500013329,50,mac,phase-19,without +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.0595197920010832,50,mac,phase-19,without +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.0632364579978457,50,mac,phase-19,without +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282,50,mac,phase-19,without +4,360.278246721321,1.1641760490899935,10.648786801970235,64.88569450075113,0.0639529170002788,50,mac,phase-19,without +5,351.330385453154,1.1352626026807866,10.384313806874252,63.274195061179135,0.0623645839987148,50,mac,phase-19,without +6,354.42246275922594,1.1452541088969477,10.475706701969138,63.83107459881516,0.062913458001276,50,mac,phase-19,without +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553,50,mac,phase-19,without +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.0629884580012003,50,mac,phase-19,without +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.10978890296269,0.0612169169980916,50,mac,phase-19,without +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.0612827920012932,50,mac,phase-19,without +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.55417587441491,0.0596836670010816,50,mac,phase-19,without +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.0632213749995571,50,mac,phase-19,without +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.0578171670022129,50,mac,phase-19,without +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.0632325830010813,50,mac,phase-19,without +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.0619718330017349,50,mac,phase-19,without +16,356.72656097066806,1.1526993986887202,10.543809205652703,64.24604001515073,0.0633224579978559,50,mac,phase-19,without +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.0598752080004487,50,mac,phase-19,without +18,351.34986607256644,1.1353255508902549,10.384889597849094,63.277703498148014,0.0623680419994343,50,mac,phase-19,without +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.063180832999933,50,mac,phase-19,without +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.0622285000026749,50,mac,phase-19,without +21,351.2292135769868,1.1349356834838955,10.381323457749753,63.25597412358772,0.0623466249999182,50,mac,phase-19,without +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.0580599590030033,50,mac,phase-19,without +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.0631387080029526,50,mac,phase-19,without +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.0646871669996471,50,mac,phase-19,without +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.0642974580005102,50,mac,phase-19,without +26,347.6089907752034,1.1232375676066255,10.2743201036959,62.60397619454575,0.0617039999997359,50,mac,phase-19,without +27,359.7827304146522,1.1625748749380511,10.634140767815705,64.79645258845903,0.0638649580032506,50,mac,phase-19,without +28,357.17747694959303,1.1541564546936098,10.557136982638609,64.32724946012914,0.0634024999999383,50,mac,phase-19,without +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.063656832997367,50,mac,phase-19,without +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664,50,mac,phase-19,with +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817,50,mac,phase-19,with +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246,50,mac,phase-19,with +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286,50,mac,phase-19,with +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.1346176915523,0.5108064580017526,50,mac,phase-19,with +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325,50,mac,phase-19,with +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404,50,mac,phase-19,with +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.9411894195198,0.509611458001018,50,mac,phase-19,with +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942,50,mac,phase-19,with +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001,50,mac,phase-19,with +10,2442.064002544568,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774,50,mac,phase-19,with +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285,50,mac,phase-19,with +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915,50,mac,phase-19,with +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681,50,mac,phase-19,with +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428,50,mac,phase-19,with +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787236,0.5053130829983274,50,mac,phase-19,with +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368,50,mac,phase-19,with +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215,50,mac,phase-19,with +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688,50,mac,phase-19,with +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261,50,mac,phase-19,with +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151,50,mac,phase-19,with +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867,50,mac,phase-19,with +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316,50,mac,phase-19,with +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.4320289082005,0.5040950420006993,50,mac,phase-19,with +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234,50,mac,phase-19,with +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785,50,mac,phase-19,with +26,2406.404834514243,3.097979270904169,78.14158352461473,500.9168823241752,0.5015765830030432,50,mac,phase-19,with +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403,50,mac,phase-19,with +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163,50,mac,phase-19,with +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277,50,mac,phase-19,with +0,245.1615255437683,0.0,0.0,54.62988385920401,0.0630969579979137,50,mac,phase-26,without +1,241.02349681651853,0.0,0.0,53.7077977844241,0.062031957997533,50,mac,phase-26,without +2,241.0796768893551,0.0,0.0,53.72031651405535,0.0620464170024206,50,mac,phase-26,without +3,239.89379555329384,0.0,0.0,53.456063958454976,0.0617412079991481,50,mac,phase-26,without +4,238.74985015186837,0.0,0.0,53.20115607973081,0.0614467920022434,50,mac,phase-26,without +5,242.9289988271171,0.0,0.0,54.132405003283566,0.0625223749993892,50,mac,phase-26,without +6,222.20890597794013,0.0,0.0,49.51530098016318,0.0571896670007845,50,mac,phase-26,without +7,239.96163203488717,0.0,0.0,53.471180111377585,0.0617586670014134,50,mac,phase-26,without +8,237.5137840474237,0.0,0.0,52.92572074142338,0.0611286669991386,50,mac,phase-26,without +9,240.0446801289891,0.0,0.0,53.48968590149068,0.0617800410000199,50,mac,phase-26,without +10,239.2075238922962,0.0,0.0,53.30314052949111,0.0615645830002904,50,mac,phase-26,without +11,241.35311704054809,0.0,0.0,53.781247786484734,0.0621167919998697,50,mac,phase-26,without +12,237.1938775091375,0.0,0.0,52.85443526139705,0.0610463329976482,50,mac,phase-26,without +13,236.38327460023032,0.0,0.0,52.67380682603668,0.0608377089993155,50,mac,phase-26,without +14,236.86118776917695,0.0,0.0,52.78030127232645,0.0609607089972996,50,mac,phase-26,without +15,228.8396288104752,0.0,0.0,50.9928395843162,0.0588962090005225,50,mac,phase-26,without +16,234.1374673466227,0.0,0.0,52.173368638753345,0.0602597080032865,50,mac,phase-26,without +17,238.49162938758172,0.0,0.0,53.14361617687808,0.061380334002024,50,mac,phase-26,without +18,221.11886761338675,0.0,0.0,49.27240532544921,0.0569091249999473,50,mac,phase-26,without +19,238.6339309293796,0.0,0.0,53.17532554352589,0.0614169579966983,50,mac,phase-26,without +20,240.64174911522755,0.0,0.0,53.622732101549154,0.0619337080024706,50,mac,phase-26,without +21,238.3167792135448,0.0,0.0,53.10465392666686,0.0613353330008976,50,mac,phase-26,without +22,237.09123886601097,0.0,0.0,52.83156406600441,0.0610199170005216,50,mac,phase-26,without +23,236.7632388971176,0.0,0.0,52.758475108972014,0.0609355000015057,50,mac,phase-26,without +24,235.63175807428223,0.0,0.0,52.50634473980698,0.0606442919997789,50,mac,phase-26,without +25,226.50542703780656,0.0,0.0,50.47270425124547,0.0582954580022487,50,mac,phase-26,without +26,236.4643838585177,0.0,0.0,52.6918805810858,0.0608585840018349,50,mac,phase-26,without +27,237.71679612865097,0.0,0.0,52.97095837157298,0.061180916000012,50,mac,phase-26,without +28,237.03425063747616,0.0,0.0,52.818865253255176,0.0610052500014717,50,mac,phase-26,without +29,237.04752730136903,0.0,0.0,52.82182372157477,0.0610086670021701,50,mac,phase-26,without +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.4955833330022869,50,mac,phase-26,with +1,1562.7387326973612,1.926641438972196,2.092731218193937,449.07354505974337,0.4933393750034156,50,mac,phase-26,with +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927,50,mac,phase-26,with +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056,50,mac,phase-26,with +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994,50,mac,phase-26,with +5,1567.5576911020446,1.932582550407452,2.099184494408094,450.458336188937,0.4948606670004665,50,mac,phase-26,with +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495,50,mac,phase-26,with +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.4934135000003152,50,mac,phase-26,with +8,1572.8194619481285,1.9390695885427025,2.1062307599687973,451.9703753018757,0.4965217499993741,50,mac,phase-26,with +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045,50,mac,phase-26,with +10,1561.3753115790362,1.9249605286764608,2.0909054018382247,448.68174805477713,0.4929089580000436,50,mac,phase-26,with +11,1564.2604044990444,1.9285174505461704,2.0947689549035986,449.5108174816151,0.4938197500014212,50,mac,phase-26,with +12,1566.0254582717266,1.9306935185409744,2.0971326149669207,450.018028916473,0.494376958002249,50,mac,phase-26,with +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921,50,mac,phase-26,with +14,1568.229238167961,1.933410475369152,2.10008379221132,450.6513140778545,0.4950726669994765,50,mac,phase-26,with +15,1568.8164427249465,1.9341344176436792,2.1008701433026173,450.82005503663623,0.4952580409990332,50,mac,phase-26,with +16,1563.710683035462,1.927839719758886,2.0940327990484455,449.35284778311006,0.4936462090008717,50,mac,phase-26,with +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454,50,mac,phase-26,with +18,1560.7671180085997,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284,50,mac,phase-26,with +19,1563.612085984862,1.9277181631867784,2.093900763461501,449.32451462279414,0.4936150829998951,50,mac,phase-26,with +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719,50,mac,phase-26,with +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155,50,mac,phase-26,with +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.4957214999994903,50,mac,phase-26,with +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.4943114170018816,50,mac,phase-26,with +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.4936536669993074,50,mac,phase-26,with +25,1556.033423900803,1.9183747175310144,2.083751848352654,447.146686315548,0.4912225830012175,50,mac,phase-26,with +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.493544416000077,50,mac,phase-26,with +27,1574.1810331293302,1.9407482181209723,2.1080540989934704,452.3616407030591,0.4969515829980082,50,mac,phase-26,with +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807,50,mac,phase-26,with +29,1607.7780546805436,1.9821687144536408,2.1530453277686097,462.0161870810133,0.5075577919997158,50,mac,phase-26,with +0,356.01103457289975,0.2302788063214099,9.967782616483888,63.58984751704077,0.0625623749983788,50,mac,phase-21,without +1,351.19450650439023,0.2271633289161644,9.832926951656832,62.72953068499227,0.0617159590001392,50,mac,phase-21,without +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.070130166997842,50,mac,phase-21,without +3,372.26214494736774,0.2407905206645328,10.422789680193349,66.49258234922029,0.0654182079997554,50,mac,phase-21,without +4,374.1580309147266,0.2420168375903794,10.475871684269285,66.83122100888622,0.0657513750011276,50,mac,phase-21,without +5,405.53899035120986,0.2623150002271732,11.3544921526905,72.43641363416084,0.0712660000026517,50,mac,phase-21,without +6,333.0413416768214,0.2154213076822906,9.324665175390583,59.48705539283827,0.0585258749997592,50,mac,phase-21,without +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.0645243750004738,50,mac,phase-21,without +8,366.1896728586104,0.2368626603225164,10.25276943967464,65.40793177191775,0.0643510829977458,50,mac,phase-21,without +9,352.4134565857517,0.2279517830438238,9.867055751754089,62.947256660530215,0.0619301670012646,50,mac,phase-21,without +10,360.33604592969425,0.2330763557113158,10.088876540075528,64.36237079856764,0.0633224159973906,50,mac,phase-21,without +11,359.41703628607354,0.2324819122160889,10.063145628782136,64.1982194733857,0.0631609169977309,50,mac,phase-21,without +12,358.8771446574472,0.2321326938275855,10.04802946139406,64.10178530981754,0.0630660409988195,50,mac,phase-21,without +13,358.17342362709223,0.2316775055802666,10.028326312974398,63.976088326665064,0.0629423750033311,50,mac,phase-21,without +14,354.21164807047495,0.22911490819565,9.917402454754566,63.268445363170216,0.0622461659986584,50,mac,phase-21,without +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.0628698330001498,50,mac,phase-21,without +16,345.8859837170851,0.2237296143060058,9.684296162102823,61.781334921929904,0.0607830840017413,50,mac,phase-21,without +17,349.5224448786402,0.2260817884079173,9.78611169822842,62.43087099892917,0.0614221249998081,50,mac,phase-21,without +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.0565261669980827,50,mac,phase-21,without +19,360.3958018453322,0.2331150076619224,10.090549617366072,64.3730442586423,0.0633329169977514,50,mac,phase-21,without +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.0621866250003222,50,mac,phase-21,without +21,366.208166991892,0.2368746228925562,10.253287248063508,65.41123515018734,0.064354333000665,50,mac,phase-21,without +22,359.1301384857916,0.2322963379597616,10.05511291454397,64.14697446803133,0.0631104999993112,50,mac,phase-21,without +23,365.57154258781645,0.2364628347916018,10.235462705979335,65.29752280745234,0.0642424580000806,50,mac,phase-21,without +24,349.0676830815694,0.2257876345935119,9.773379040262016,62.349642524179785,0.0613422089991217,50,mac,phase-21,without +25,357.242315974124,0.2310752367232367,10.00225667530582,63.809776083716656,0.0627787500015983,50,mac,phase-21,without +26,354.99835934867855,0.2296237770690029,9.939429207415412,63.40896586776896,0.0623844159999862,50,mac,phase-21,without +27,365.0418539985884,0.236120216040484,10.220632208609526,65.20291108660797,0.0641493749972141,50,mac,phase-21,without +28,374.2950808651228,0.2421054856824856,10.479708880256164,66.85570054632068,0.0657754590029071,50,mac,phase-21,without +29,373.26936300344295,0.2414420200539734,10.450990296621994,66.67248925204723,0.0655952080014685,50,mac,phase-21,without +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109,50,mac,phase-21,with +1,2362.707427351115,3.053665668998252,75.27949714443517,505.7135884006235,0.5069546670019918,50,mac,phase-21,with +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826,50,mac,phase-21,with +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.8357095856616,0.5080795419999049,50,mac,phase-21,with +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101,50,mac,phase-21,with +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.7861271535494,0.5090322920004837,50,mac,phase-21,with +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142,50,mac,phase-21,with +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332,50,mac,phase-21,with +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337,50,mac,phase-21,with +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512,50,mac,phase-21,with +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.7341297606933,0.508980167000118,50,mac,phase-21,with +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.0986054113508,0.5083430830018187,50,mac,phase-21,with +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818,50,mac,phase-21,with +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084,50,mac,phase-21,with +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371,50,mac,phase-21,with +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821,50,mac,phase-21,with +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582,50,mac,phase-21,with +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027,50,mac,phase-21,with +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168,50,mac,phase-21,with +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.1857207289548,0.5074279579966969,50,mac,phase-21,with +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884,50,mac,phase-21,with +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119,50,mac,phase-21,with +22,2355.571678502875,3.044443117349149,75.05214119725946,504.1862536514308,0.5054235839998,50,mac,phase-21,with +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808,50,mac,phase-21,with +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835,50,mac,phase-21,with +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.6577049757748,0.5119109170009324,50,mac,phase-21,with +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616,50,mac,phase-21,with +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251,50,mac,phase-21,with +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333,50,mac,phase-21,with +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061,50,mac,phase-21,with +0,250.10934507332675,0.0,0.0,55.11416653061159,0.0635523749988351,50,mac,phase-28,without +1,239.838881397826,0.0,0.0,52.85096422926539,0.0609426669980166,50,mac,phase-28,without +2,241.89828862855623,0.0,0.0,53.304775793305645,0.0614659590028168,50,mac,phase-28,without +3,226.9506637505054,0.0,0.0,50.01091291695259,0.0576677919998473,50,mac,phase-28,without +4,240.77109914478743,0.0,0.0,53.05638799755266,0.0611795420009002,50,mac,phase-28,without +5,241.309764565714,0.0,0.0,53.17508846316111,0.0613164160022279,50,mac,phase-28,without +6,232.6059540307432,0.0,0.0,51.257114294164616,0.0591047919988341,50,mac,phase-28,without +7,229.17355489939848,0.0,0.0,50.50074984377193,0.058232625000528,50,mac,phase-28,without +8,237.4643088347507,0.0,0.0,52.32770274280641,0.0603392919983889,50,mac,phase-28,without +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362,50,mac,phase-28,without +10,246.9017604503701,0.0,0.0,54.40734226933166,0.0627373329989495,50,mac,phase-28,without +11,227.72021219973772,0.0,0.0,50.18049083245163,0.0578633330005686,50,mac,phase-28,without +12,241.19055480567744,0.0,0.0,53.1488193664794,0.061286124997423,50,mac,phase-28,without +13,239.55814760206837,0.0,0.0,52.789101650057795,0.0608713330002501,50,mac,phase-28,without +14,237.7916072840164,0.0,0.0,52.3998263223262,0.0604224579983565,50,mac,phase-28,without +15,240.87981688341813,0.0,0.0,53.08034506940843,0.0612071670002478,50,mac,phase-28,without +16,240.89932900283105,0.0,0.0,53.084644765600814,0.0612121249978372,50,mac,phase-28,without +17,240.4998774005804,0.0,0.0,52.99662149673451,0.0611106249998556,50,mac,phase-28,without +18,241.5399942998725,0.0,0.0,53.225821952967294,0.0613749170006485,50,mac,phase-28,without +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666,50,mac,phase-28,without +20,241.08921611249076,0.0,0.0,53.12648834317978,0.0612603750014386,50,mac,phase-28,without +21,240.12551449843392,0.0,0.0,52.91412678097035,0.0610154999994847,50,mac,phase-28,without +22,242.95922422123857,0.0,0.0,53.538563862744645,0.061735540999507,50,mac,phase-28,without +23,218.386555036205,0.0,0.0,48.123723480956784,0.0554916660003073,50,mac,phase-28,without +24,240.68271211186973,0.0,0.0,53.03691100579953,0.0611570830005803,50,mac,phase-28,without +25,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842,50,mac,phase-28,without +26,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115,50,mac,phase-28,without +27,241.06396210591663,0.0,0.0,53.12092336309683,0.0612539579997246,50,mac,phase-28,without +28,240.81127256853603,0.0,0.0,53.06524062465436,0.0611897500020859,50,mac,phase-28,without +29,238.5282000000232,0.0,0.0,52.562142103063344,0.0606096250012342,50,mac,phase-28,without +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734,50,mac,phase-28,with +1,1498.847619915133,2.2333049533939846,0.0,456.1275370484073,0.4971277910008211,50,mac,phase-28,with +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.4964403749982011,50,mac,phase-28,with +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377,50,mac,phase-28,with +4,1497.800909311091,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296,50,mac,phase-28,with +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.4962088749998656,50,mac,phase-28,with +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006,50,mac,phase-28,with +7,1487.434284612173,2.216298916270418,0.0,452.654244332006,0.4933422920003067,50,mac,phase-28,with +8,1508.8235499563525,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729,50,mac,phase-28,with +9,1496.828313791734,2.230296157631237,0.0,455.5130241944155,0.4964580410014605,50,mac,phase-28,with +10,1497.546140555687,2.231365730045613,0.0,455.73147238722646,0.4966961249992891,50,mac,phase-28,with +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964,50,mac,phase-28,with +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341,50,mac,phase-28,with +13,1547.3486576230418,2.3055722114651913,0.0,470.8873155476072,0.5132142920010665,50,mac,phase-28,with +14,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.4960290000017266,50,mac,phase-28,with +15,1494.2857789928514,2.2265077434621947,0.0,454.73928300801,0.4956147500015504,50,mac,phase-28,with +16,1492.916332152243,2.224467247569281,0.0,454.3225345632543,0.4951605409987678,50,mac,phase-28,with +17,1501.7675380811677,2.2376556743192237,0.0,457.0161230952874,0.4980962500012538,50,mac,phase-28,with +18,1493.492579873052,2.22532586513131,0.0,454.4978975889082,0.4953516670029785,50,mac,phase-28,with +19,1494.308895111859,2.226542186818809,0.0,454.74631767803857,0.4956224170018686,50,mac,phase-28,with +20,1491.9323097299357,2.223001039716801,0.0,454.0230780221598,0.4948341669987712,50,mac,phase-28,with +21,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469,50,mac,phase-28,with +22,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.4962799999993876,50,mac,phase-28,with +23,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.4968130000015662,50,mac,phase-28,with +24,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199,50,mac,phase-28,with +25,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731,50,mac,phase-28,with +26,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.495579041999008,50,mac,phase-28,with +27,1494.5827579360664,2.22695024644657,0.0,454.82965928917696,0.4957132499985164,50,mac,phase-28,with +28,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.4949876249993394,50,mac,phase-28,with +29,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.4940982500011159,50,mac,phase-28,with +0,352.49020382752724,0.3393570846515136,10.68974816652268,63.3579677044376,0.0637874170024588,50,mac,phase-17,without +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375,50,mac,phase-17,without +2,345.6512964466877,0.3327729820416748,10.48234893431276,62.12871574718069,0.0625498330009577,50,mac,phase-17,without +3,348.5358761098863,0.335550087715304,10.569827763032078,62.64720137644727,0.0630718329994124,50,mac,phase-17,without +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.0638328329987416,50,mac,phase-17,without +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.0629714159986178,50,mac,phase-17,without +6,333.6775775330467,0.3212453812776034,10.119229510244509,59.976512684528565,0.0603830420004669,50,mac,phase-17,without +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.0620619170003919,50,mac,phase-17,without +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463,50,mac,phase-17,without +9,317.4674720822513,0.3056392337366432,9.62763586270426,57.06284493863128,0.057449625001027,50,mac,phase-17,without +10,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.0615481249988079,50,mac,phase-17,without +11,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.0638772080019407,50,mac,phase-17,without +12,347.3698925446688,0.3344275464953006,10.534467714601972,62.43762293067263,0.0628608340011851,50,mac,phase-17,without +13,348.5754810580413,0.3355882170579005,10.571028837323867,62.65432012471003,0.0630789999995613,50,mac,phase-17,without +14,346.10834760015814,0.3332130043324907,10.496209636473456,62.21086790887602,0.0626325420016655,50,mac,phase-17,without +15,353.50238182134535,0.3403315508051847,10.720443850363315,63.53990053532798,0.0639705829999002,50,mac,phase-17,without +16,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.0620592500017664,50,mac,phase-17,without +17,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.0616400409999187,50,mac,phase-17,without +18,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.0625483750009152,50,mac,phase-17,without +19,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.0630281250014377,50,mac,phase-17,without +20,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407,50,mac,phase-17,without +21,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.0618219999996654,50,mac,phase-17,without +22,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.0640606250017299,50,mac,phase-17,without +23,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.061287207998248,50,mac,phase-17,without +24,345.3885786449535,0.3325200526089857,10.47438165718305,62.08149382209764,0.0625022909989638,50,mac,phase-17,without +25,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502,50,mac,phase-17,without +26,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.0597877090003748,50,mac,phase-17,without +27,347.5174813223003,0.334569636393858,10.538943546406529,62.46415111473329,0.0628875419970427,50,mac,phase-17,without +28,346.21679562001196,0.3333174117839722,10.499498471195126,62.23036078006762,0.0626521669983048,50,mac,phase-17,without +29,349.8149219362817,0.336781478710197,10.608616579371208,62.87710207519379,0.0633032919977267,50,mac,phase-17,without +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887,50,mac,phase-17,with +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971,50,mac,phase-17,with +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208,50,mac,phase-17,with +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851,50,mac,phase-17,with +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478,50,mac,phase-17,with +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485,50,mac,phase-17,with +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799,50,mac,phase-17,with +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703,50,mac,phase-17,with +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879,50,mac,phase-17,with +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654,50,mac,phase-17,with +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245,50,mac,phase-17,with +11,2434.911182100675,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574,50,mac,phase-17,with +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438,50,mac,phase-17,with +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585,50,mac,phase-17,with +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624,50,mac,phase-17,with +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299,50,mac,phase-17,with +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.5810589754782,0.5055243339993467,50,mac,phase-17,with +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575,50,mac,phase-17,with +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045,50,mac,phase-17,with +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954,50,mac,phase-17,with +20,2450.440055490727,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001,50,mac,phase-17,with +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975,50,mac,phase-17,with +22,2443.288889685493,5.003412429886074,75.68075489973373,505.7754127800068,0.505718665997847,50,mac,phase-17,with +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681,50,mac,phase-17,with +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135,50,mac,phase-17,with +25,2480.855628025912,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902,50,mac,phase-17,with +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095,50,mac,phase-17,with +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126,50,mac,phase-17,with +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983,50,mac,phase-17,with +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049,50,mac,phase-17,with +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.0610695840005064,50,mac,phase-10,without +1,348.61418586415783,0.328045719266169,8.988452707893032,60.78687178002113,0.0609865000005811,50,mac,phase-10,without +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.0629059159982716,50,mac,phase-10,without +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471,50,mac,phase-10,without +4,358.8403201050791,0.337668504850926,9.252117032915374,62.5699739488766,0.0627754579982138,50,mac,phase-10,without +5,342.5880675551526,0.3223751459067964,8.833078997846224,59.736114536529385,0.059932291998848,50,mac,phase-10,without +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.0610672920010983,50,mac,phase-10,without +7,345.5035960299564,0.3251186562811295,8.908251182102951,60.24448700889331,0.0604423340009816,50,mac,phase-10,without +8,376.33157594924216,0.3541277650788013,9.703100763159156,65.61987486910189,0.0658353750004607,50,mac,phase-10,without +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.0568824580004729,50,mac,phase-10,without +10,374.6764809907141,0.3525703218130366,9.660426817677203,65.33128063195569,0.0655458330002147,50,mac,phase-10,without +11,345.8784849508381,0.32547142650874,8.917917086339479,60.30985533206954,0.0605079169981763,50,mac,phase-10,without +12,362.25983335779995,0.3408862645693045,9.340283649198945,63.16622482469214,0.0633736670024518,50,mac,phase-10,without +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.061856042000727,50,mac,phase-10,without +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.064390874998935,50,mac,phase-10,without +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.062227124999481,50,mac,phase-10,without +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.0621582500025397,50,mac,phase-10,without +17,360.4265799552419,0.3391611743250606,9.29301617650666,62.846565602433735,0.06305295799757,50,mac,phase-10,without +18,349.90653892523665,0.3292618226453718,9.021773940483188,61.0122157361874,0.0612125840016233,50,mac,phase-10,without +19,360.72001805303375,0.3394372993817952,9.300582003061187,62.89773157544665,0.0631042920031177,50,mac,phase-10,without +20,358.5747544990663,0.3374186077905959,9.245269853462329,62.52366802359742,0.0627290000011271,50,mac,phase-10,without +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.0568161250012053,50,mac,phase-10,without +22,362.4810980291357,0.3410944744792845,9.345988600732396,63.20480612101142,0.0634123750023718,50,mac,phase-10,without +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079,50,mac,phase-10,without +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.0637672089978877,50,mac,phase-10,without +25,332.0330087474858,0.3124428425213943,8.560933885086206,57.895658719214374,0.0580857919994741,50,mac,phase-10,without +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.0603039170018746,50,mac,phase-10,without +27,366.3288499695804,0.3447152065207306,9.44519665866802,63.875727768291384,0.0640855000019655,50,mac,phase-10,without +28,354.5207373187578,0.3336037802943049,9.140743580063956,61.8167804885347,0.0620197909993294,50,mac,phase-10,without +29,361.6341438543446,0.3402974911586943,9.324151257748223,63.057125111706064,0.0632642089985893,50,mac,phase-10,without +0,2413.455554111883,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306,50,mac,phase-10,with +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237,50,mac,phase-10,with +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544,50,mac,phase-10,with +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555,50,mac,phase-10,with +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645,50,mac,phase-10,with +5,2400.607102267664,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602,50,mac,phase-10,with +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546,50,mac,phase-10,with +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905,50,mac,phase-10,with +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967,50,mac,phase-10,with +9,2419.322533895495,4.473549974361046,80.79097714890844,502.7068321934972,0.5066046669999196,50,mac,phase-10,with +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114,50,mac,phase-10,with +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656,50,mac,phase-10,with +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344,50,mac,phase-10,with +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755,50,mac,phase-10,with +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583,50,mac,phase-10,with +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172,50,mac,phase-10,with +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128,50,mac,phase-10,with +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602,50,mac,phase-10,with +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134,50,mac,phase-10,with +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.9287563027167,0.5128748340030143,50,mac,phase-10,with +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.2933673761707,0.5071957499967539,50,mac,phase-10,with +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831,50,mac,phase-10,with +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194,50,mac,phase-10,with +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012,50,mac,phase-10,with +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208,50,mac,phase-10,with +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382,50,mac,phase-10,with +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622,50,mac,phase-10,with +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875,50,mac,phase-10,with +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928,50,mac,phase-10,with +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759,50,mac,phase-10,with +0,378.2830151197381,0.2429563359792794,9.718253439171178,64.97346585045874,0.0655562920001102,50,mac,phase-11,without +1,353.2040927683805,0.2268491283033914,9.073965132135658,60.66593831199269,0.0612101250007981,50,mac,phase-11,without +2,357.24886858454886,0.2294469290844887,9.177877163379549,61.36066446373754,0.0619110829975397,50,mac,phase-11,without +3,348.1538269708763,0.2236055407648531,8.944221630594125,59.79851033025787,0.0603349160010111,50,mac,phase-11,without +4,358.26397198427844,0.230098890163313,9.203955606532524,61.53501748367458,0.0620870000020659,50,mac,phase-11,without +5,356.8740379487522,0.2292061900762698,9.168247603050794,61.29628397468245,0.0618461250014661,50,mac,phase-11,without +6,349.28482212183866,0.2243319345676548,8.973277382706195,59.99276878723571,0.0605309169986867,50,mac,phase-11,without +7,362.52080833113473,0.2328328891015637,9.313315564062547,62.266166914018186,0.0628247080021537,50,mac,phase-11,without +8,368.1793617620893,0.2364671559165634,9.45868623666254,63.23807369654383,0.0638053330003458,50,mac,phase-11,without +9,372.0570396746568,0.2389576362714559,9.558305450858237,63.90409930002364,0.0644773329986492,50,mac,phase-11,without +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.0619698750015231,50,mac,phase-11,without +11,363.9811926115906,0.2337708366163073,9.350833464652291,62.517000877961046,0.0630777920014225,50,mac,phase-11,without +12,354.28483392042943,0.2275432459347652,9.101729837390607,60.851565198554354,0.0613974170009896,50,mac,phase-11,without +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.0630681250004272,50,mac,phase-11,without +14,356.9596353834419,0.2292611659495451,9.170446637981808,61.31098609393551,0.0618609590019332,50,mac,phase-11,without +15,378.40779325868374,0.2430364760813639,9.72145904325456,64.99489760347333,0.0655779160006204,50,mac,phase-11,without +16,387.2890894266006,0.2487405840890177,9.94962336356071,66.52033905923446,0.0671170409987098,50,mac,phase-11,without +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.0630379169997468,50,mac,phase-11,without +18,365.2316744876873,0.234573972053749,9.382958882149962,62.731782240659754,0.0632944999997562,50,mac,phase-11,without +19,373.77107717779,0.2400584952972319,9.602339811889276,64.19850045663115,0.0647743749977962,50,mac,phase-11,without +20,344.6805585467942,0.2213747967545242,8.85499187018097,59.20194564635276,0.05973300000187,50,mac,phase-11,without +21,362.17699331162976,0.2326120702065701,9.304482808262808,62.20711363238563,0.0627651249997143,50,mac,phase-11,without +22,356.0515201334432,0.2286779191608498,9.147116766433992,61.155009238444414,0.0617035830000531,50,mac,phase-11,without +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.0631745829996361,50,mac,phase-11,without +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986,50,mac,phase-11,without +25,373.78310260490974,0.2400662187571674,9.6026487502867,64.20056593048821,0.0647764589994039,50,mac,phase-11,without +26,367.3291981816165,0.2359211292110574,9.436845168442298,63.0920505547285,0.0636579999991227,50,mac,phase-11,without +27,372.0101555478638,0.2389275244366498,9.557100977465993,63.89604653505835,0.0644692079986271,50,mac,phase-11,without +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603,50,mac,phase-11,without +29,358.8888493859939,0.2305002243969132,9.22000897587653,61.64234572443166,0.0621952910005347,50,mac,phase-11,without +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731,50,mac,phase-11,with +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064,50,mac,phase-11,with +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738,50,mac,phase-11,with +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141,50,mac,phase-11,with +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031,50,mac,phase-11,with +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806,50,mac,phase-11,with +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741,50,mac,phase-11,with +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907,50,mac,phase-11,with +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344,50,mac,phase-11,with +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595,50,mac,phase-11,with +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087,50,mac,phase-11,with +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484,50,mac,phase-11,with +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554,50,mac,phase-11,with +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421,50,mac,phase-11,with +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195,50,mac,phase-11,with +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687,50,mac,phase-11,with +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761,50,mac,phase-11,with +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689,50,mac,phase-11,with +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782,50,mac,phase-11,with +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762,50,mac,phase-11,with +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611,50,mac,phase-11,with +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179,50,mac,phase-11,with +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539,50,mac,phase-11,with +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082,50,mac,phase-11,with +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504,50,mac,phase-11,with +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451,50,mac,phase-11,with +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206,50,mac,phase-11,with +27,2420.701363746525,3.272075332025206,80.19923415841373,498.3237176579205,0.5071317910005746,50,mac,phase-11,with +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987,50,mac,phase-11,with +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072,50,mac,phase-11,with +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057,50,mac,phase-29,without +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.0611507499997969,50,mac,phase-29,without +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.0614833750005345,50,mac,phase-29,without +3,232.13575724922015,0.7657034323778565,0.0,52.259259259788706,0.0585086249993764,50,mac,phase-29,without +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.0618704159969638,50,mac,phase-29,without +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.0566604589985217,50,mac,phase-29,without +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.0621952089968544,50,mac,phase-29,without +7,244.0876652220984,0.8051269880882851,0.0,54.949916937025456,0.0615210420000948,50,mac,phase-29,without +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702,50,mac,phase-29,without +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.059902625001996,50,mac,phase-29,without +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.0606438329996308,50,mac,phase-29,without +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.0611773339987848,50,mac,phase-29,without +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.0575685409967263,50,mac,phase-29,without +13,243.28010263868015,0.8024632302540302,0.0,54.76811546483757,0.0613174999998591,50,mac,phase-29,without +14,241.72548654155145,0.7973353047000047,0.0,54.41813454577533,0.0609256669995375,50,mac,phase-29,without +15,242.0336340586369,0.7983517341131507,0.0,54.48750585322254,0.0610033339980873,50,mac,phase-29,without +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.0621428749982442,50,mac,phase-29,without +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.0613224580010864,50,mac,phase-29,without +18,250.56832102039976,0.8265035327775692,0.0,56.4088661120691,0.0631544579991896,50,mac,phase-29,without +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.0616879589979362,50,mac,phase-29,without +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.0614238340021984,50,mac,phase-29,without +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.0608379170007538,50,mac,phase-29,without +22,249.0137049377049,0.821375607271154,0.0,56.05888519625626,0.0627626250025059,50,mac,phase-29,without +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.061630124997464,50,mac,phase-29,without +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.0607461250001506,50,mac,phase-29,without +25,242.13265613002585,0.7986783599671,0.0,54.50979806775457,0.0610282920024474,50,mac,phase-29,without +26,233.01622352722865,0.7686076641909685,0.0,52.4574730810336,0.0587305420012853,50,mac,phase-29,without +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.0629959580001013,50,mac,phase-29,without +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.0622290829996927,50,mac,phase-29,without +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.0632171249999373,50,mac,phase-29,without +0,1554.8732723619028,0.9499760332133208,0.0,468.60960609794233,0.5065087910006696,50,mac,phase-29,with +1,1540.449502109736,0.941163587664418,0.0,464.2625526007479,0.5018101659989043,50,mac,phase-29,with +2,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.499439874998643,50,mac,phase-29,with +3,1530.7264696366958,0.935223137092834,0.0,461.33221319736504,0.4986428330012131,50,mac,phase-29,with +4,1527.4287557774685,0.9332083432274132,0.0,460.3383441663225,0.4975685839999642,50,mac,phase-29,with +5,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.4973773329984396,50,mac,phase-29,with +6,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467,50,mac,phase-29,with +7,1528.059338805915,0.93359360855715,0.0,460.52839004969127,0.497773999999481,50,mac,phase-29,with +8,1545.3676850578215,0.944168434432761,0.0,465.744800585189,0.5034122920005757,50,mac,phase-29,with +9,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942,50,mac,phase-29,with +10,1528.570586995457,0.9339059642556632,0.0,460.6824706535437,0.4979405419981049,50,mac,phase-29,with +11,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875,50,mac,phase-29,with +12,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752,50,mac,phase-29,with +13,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.4964012499985983,50,mac,phase-29,with +14,1528.2171779672317,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772,50,mac,phase-29,with +15,1519.295356383413,0.9282391057787768,0.0,457.88709032201666,0.4949190829975123,50,mac,phase-29,with +16,1522.767283641807,0.9303603382567937,0.0,458.9334640001012,0.4960500830020464,50,mac,phase-29,with +17,1521.815908034937,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944,50,mac,phase-29,with +18,1523.6480572437645,0.9308984617343912,0.0,459.19891262412176,0.4963370000004943,50,mac,phase-29,with +19,1522.5087831425035,0.930202403019706,0.0,458.8555568038635,0.495965874997637,50,mac,phase-29,with +20,1523.130669481421,0.9305823549603914,0.0,459.0429816683188,0.4961684580011933,50,mac,phase-29,with +21,1519.5053818912152,0.9283674244027588,0.0,457.9503880661037,0.4949874999983876,50,mac,phase-29,with +22,1526.9093204634178,0.9328909854671869,0.0,460.1817961168851,0.4973993749990768,50,mac,phase-29,with +23,1529.5480557755704,0.9345031652821568,0.0,460.97706138846974,0.4982589579994965,50,mac,phase-29,with +24,1524.9894245219973,0.9317179926818372,0.0,459.6031755329121,0.4967739580024499,50,mac,phase-29,with +25,1540.853307819904,0.9414102995692096,0.0,464.38425205892594,0.5019417080002313,50,mac,phase-29,with +26,1520.174211377246,0.9287760570504024,0.0,458.151960713577,0.495205374998477,50,mac,phase-29,with +27,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.4972079580002173,50,mac,phase-29,with +28,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.4952220829982252,50,mac,phase-29,with +29,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.495454833999247,50,mac,phase-29,with +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.0634840419988904,50,mac,phase-16,without +1,347.5338735270447,0.2657494731615711,9.998823927704114,61.52100303690372,0.0620952919998671,50,mac,phase-16,without +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.0612300419998064,50,mac,phase-16,without +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.0624869169987505,50,mac,phase-16,without +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.0628582499994081,50,mac,phase-16,without +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.0631118750025052,50,mac,phase-16,without +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.0606008330032636,50,mac,phase-16,without +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822,50,mac,phase-16,without +8,349.36704941119723,0.2671512517003993,10.051565845227524,61.845514768642445,0.0624228329979814,50,mac,phase-16,without +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.0633064590001595,50,mac,phase-16,without +10,347.2269851313199,0.2655148041531791,9.989994506263365,61.46667716146096,0.0620404590008547,50,mac,phase-16,without +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.0602130829975067,50,mac,phase-16,without +12,350.48943947996935,0.2680095121238534,10.083857893659983,62.04420205667207,0.0626233750008395,50,mac,phase-16,without +13,317.649151194063,0.2428974583781785,9.139016871478969,56.230761614548335,0.0567556669993791,50,mac,phase-16,without +14,360.8859284017174,0.2759594176270062,10.382973088216112,63.88460518065195,0.0644809580007859,50,mac,phase-16,without +15,353.76099420840256,0.2705111789014739,10.177983106167956,62.62333791569122,0.0632079170027282,50,mac,phase-16,without +16,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.0618185419989458,50,mac,phase-16,without +17,355.1032874398208,0.2715375931484005,10.21660194220857,62.86095281385472,0.0634477499988861,50,mac,phase-16,without +18,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587,50,mac,phase-16,without +19,344.7340828392565,0.2636085512057017,9.918271739114529,61.025379604119955,0.0615950419996806,50,mac,phase-16,without +20,349.0872158684356,0.2669372707845043,10.043514813266976,61.79597818661276,0.0623728339996887,50,mac,phase-16,without +21,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.0648655000004509,50,mac,phase-16,without +22,351.9040263790746,0.2690912073248515,10.12455667559754,62.29461449570313,0.062876125000912,50,mac,phase-16,without +23,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.0622356249987205,50,mac,phase-16,without +24,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.0632546249980805,50,mac,phase-16,without +25,326.03476636272546,0.2493097047315813,9.380277640525748,57.715196645361075,0.0582539589995576,50,mac,phase-16,without +26,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.062940374999016,50,mac,phase-16,without +27,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.063144416999421,50,mac,phase-16,without +28,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.0632301670011656,50,mac,phase-16,without +29,353.3169846035595,0.2701716571237312,10.165208599280389,62.544738624143775,0.0631285839990596,50,mac,phase-16,without +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798,50,mac,phase-16,with +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374,50,mac,phase-16,with +2,2403.6605833088347,2.971356629736184,84.43326872587426,501.95895424812943,0.5054153749988473,50,mac,phase-16,with +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712,50,mac,phase-16,with +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205,50,mac,phase-16,with +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399,50,mac,phase-16,with +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625,50,mac,phase-16,with +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132,50,mac,phase-16,with +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868,50,mac,phase-16,with +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569,50,mac,phase-16,with +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995,50,mac,phase-16,with +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116,50,mac,phase-16,with +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444,50,mac,phase-16,with +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508,50,mac,phase-16,with +14,2396.948743680305,2.963059589248669,84.19750226078521,500.5573137567836,0.5040040830026555,50,mac,phase-16,with +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352,50,mac,phase-16,with +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.4983195829991018,50,mac,phase-16,with +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919,50,mac,phase-16,with +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.0250495374422,0.5085025830012455,50,mac,phase-16,with +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087,50,mac,phase-16,with +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.0684085629751,0.5055255830011447,50,mac,phase-16,with +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335,50,mac,phase-16,with +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108,50,mac,phase-16,with +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.2673499536931,0.5077396660017257,50,mac,phase-16,with +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774,50,mac,phase-16,with +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248,50,mac,phase-16,with +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372,50,mac,phase-16,with +27,2387.906760572858,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619,50,mac,phase-16,with +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972,50,mac,phase-16,with +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049,50,mac,phase-16,with +0,329.80854336715817,0.2333393777612803,10.666942983372811,62.50161904320008,0.0632824170024832,50,mac,phase-20,without +1,335.5288092279848,0.2373864629670399,10.851952592778972,63.58565972331428,0.0643799999998009,50,mac,phase-20,without +2,321.7799299616298,0.2276591378341832,10.407274872419803,60.9801262055848,0.0617419170011999,50,mac,phase-20,without +3,329.7051746137013,0.2332662444204476,10.663599744934748,62.48202975547704,0.0632625829966855,50,mac,phase-20,without +4,331.94620271569426,0.2348517706700889,10.736080944918353,62.90672428663097,0.0636925830003747,50,mac,phase-20,without +5,333.0858280497938,0.2356580550180469,10.77293965796786,63.12269330840544,0.0639112500030023,50,mac,phase-20,without +6,312.36717422581074,0.2209996179078911,10.10283967578931,59.19632622532799,0.0599358330000541,50,mac,phase-20,without +7,327.8797790820893,0.2319747780043082,10.604561280196949,62.13610125115399,0.0629123329999856,50,mac,phase-20,without +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.063090290997934,50,mac,phase-20,without +9,331.0710760494818,0.2342326189959948,10.707776868388336,62.7408800882129,0.063524667002639,50,mac,phase-20,without +10,310.75220077947944,0.2198570250107495,10.050606857634266,58.89027455645078,0.0596259579979232,50,mac,phase-20,without +11,341.9923928625649,0.2419594451220895,11.061003205581237,64.81056565770255,0.065620208002656,50,mac,phase-20,without +12,327.95947629563574,0.2320311637426167,10.607138913948194,62.15120457391521,0.0629276250001567,50,mac,phase-20,without +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519,50,mac,phase-20,without +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.0625667500025883,50,mac,phase-20,without +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.0641760830003477,50,mac,phase-20,without +16,327.93276637308287,0.2320122664859086,10.606275039355824,62.14614280872553,0.0629225000011501,50,mac,phase-20,without +17,324.008361361325,0.2292357519233146,10.479348659351526,61.40243355088785,0.0621694999972533,50,mac,phase-20,without +18,324.96622889461435,0.2299134427190519,10.510328810013805,61.58395787117464,0.0623532919998979,50,mac,phase-20,without +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.063567208002496,50,mac,phase-20,without +20,327.4695771381485,0.2316845603362684,10.59129418680084,62.058364375786184,0.0628336250010761,50,mac,phase-20,without +21,416.4333992141598,0.2946264194965756,13.468636319843457,78.91779093658275,0.0799036669995985,50,mac,phase-20,without +22,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.0607522499994956,50,mac,phase-20,without +23,329.8941037233372,0.2333999116700384,10.669710247773184,62.517833483046005,0.0632988340003066,50,mac,phase-20,without +24,323.0526671214134,0.2285595987315437,10.448438799156284,61.22132108880636,0.0619861249979294,50,mac,phase-20,without +25,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.0633283329989353,50,mac,phase-20,without +26,315.26661635015887,0.2230509717456147,10.1966158512281,59.745796003289655,0.0604921669983014,50,mac,phase-20,without +27,333.9946170348847,0.236301022765736,10.802332469290793,63.29491681225073,0.0640856249992793,50,mac,phase-20,without +28,316.09592705316356,0.2236377086488927,10.22343810966367,59.90295767381056,0.0606512920021486,50,mac,phase-20,without +29,325.3592739458097,0.2301915218941447,10.523041000875187,61.65844336450306,0.0624287079990608,50,mac,phase-20,without +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896,50,mac,phase-20,with +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294,50,mac,phase-20,with +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021,50,mac,phase-20,with +3,2357.806900571939,4.149006707691834,79.90183885458144,503.6024190118531,0.5101947919974918,50,mac,phase-20,with +4,2346.305810578593,4.128768366919913,79.51208758229639,501.1459087944486,0.5077061250012775,50,mac,phase-20,with +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982,50,mac,phase-20,with +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412,50,mac,phase-20,with +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624,50,mac,phase-20,with +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255,50,mac,phase-20,with +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223,50,mac,phase-20,with +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191,50,mac,phase-20,with +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826,50,mac,phase-20,with +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185,50,mac,phase-20,with +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488,50,mac,phase-20,with +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016,50,mac,phase-20,with +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732,50,mac,phase-20,with +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316,50,mac,phase-20,with +17,2343.330793546818,4.123533262375373,79.41126960122897,500.5104768710625,0.5070623749998049,50,mac,phase-20,with +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544,50,mac,phase-20,with +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428,50,mac,phase-20,with +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128,50,mac,phase-20,with +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923,50,mac,phase-20,with +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731,50,mac,phase-20,with +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271,50,mac,phase-20,with +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.9930627480395,0.509577458997228,50,mac,phase-20,with +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235,50,mac,phase-20,with +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313,50,mac,phase-20,with +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421,50,mac,phase-20,with +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664,50,mac,phase-20,with +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945,50,mac,phase-20,with +0,344.373267273601,0.2352735575751715,10.587310090882715,63.08692393837098,0.0634621249992051,50,mac,phase-18,without +1,342.4823762323536,0.233981713217497,10.529177094787368,62.74052510132029,0.0631136660012998,50,mac,phase-18,without +2,345.31927445296463,0.235919863475576,10.616393856400922,63.260226249093755,0.0636364580022927,50,mac,phase-18,without +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.0636334160008118,50,mac,phase-18,without +4,328.0017047540005,0.2240886134372441,10.083987604675986,60.08776106024389,0.0604451250001147,50,mac,phase-18,without +5,318.0521033356242,0.2172911110042328,9.77809999519048,58.26505933642072,0.0586115830010385,50,mac,phase-18,without +6,346.70889830534406,0.2368692453774554,10.659116041985495,63.51479622478341,0.0638925419989391,50,mac,phase-18,without +7,314.29836506293805,0.2147265816358156,9.6626961736117,57.57739910434655,0.057919833001506,50,mac,phase-18,without +8,346.87417673892634,0.2369821625192743,10.664197313367344,63.54507414981113,0.0639229999978852,50,mac,phase-18,without +9,339.65000365733727,0.2320466548508062,10.44209946828628,62.221653022137616,0.0625917079996725,50,mac,phase-18,without +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.0635079589992528,50,mac,phase-18,without +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.0616562089999206,50,mac,phase-18,without +12,348.17607141497996,0.2378716084232734,10.704222379047303,63.783572715783464,0.0641629170022497,50,mac,phase-18,without +13,341.54157300846134,0.2333389626253396,10.50025331814028,62.56817612110891,0.0629402919985295,50,mac,phase-18,without +14,339.28033302634714,0.2317940983002566,10.43073442351155,62.15393178708312,0.0625235840016102,50,mac,phase-18,without +15,319.2664966692951,0.2181207765650074,9.815434945425334,58.48752823035984,0.0588353749990346,50,mac,phase-18,without +16,353.3388710465269,0.2413987992705141,10.862945967173138,64.72936374725073,0.0651143329996557,50,mac,phase-18,without +17,341.457685719264,0.2332816513795479,10.497674312079658,62.55280851991593,0.0629248330005793,50,mac,phase-18,without +18,422.2055693438154,0.2884480758741662,12.980163414337484,77.3452912022586,0.0778052919995389,50,mac,phase-18,without +19,314.12879430577607,0.2146107320066789,9.657482940300552,57.54633485379091,0.0578885840004659,50,mac,phase-18,without +20,342.5287288615394,0.2340133810297458,10.530602146338564,62.74901659897613,0.0631222080010047,50,mac,phase-18,without +21,341.5811371692552,0.2333659926005062,10.50146966702278,62.57542401587859,0.0629475829991861,50,mac,phase-18,without +22,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.0638293329975567,50,mac,phase-18,without +23,338.38881272636,0.2311850174784813,10.403325786531662,61.99061111530136,0.0623592920019291,50,mac,phase-18,without +24,344.76916932805335,0.2355440352621875,10.599481586798438,63.15945059816086,0.063535083001625,50,mac,phase-18,without +25,344.2170292735118,0.235166816798222,10.58250675591999,63.0583021614661,0.0634333329981018,50,mac,phase-18,without +26,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.063504041001579,50,mac,phase-18,without +27,334.4460499034867,0.2284913477771234,10.282110649970557,61.2683228253801,0.0616327079987968,50,mac,phase-18,without +28,341.1402445342186,0.2330647776439127,10.487914993976077,62.494655376803465,0.0628663339994091,50,mac,phase-18,without +29,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462,50,mac,phase-18,without +0,2451.1992010427684,3.900210881276232,77.23750950356437,510.1942524609636,0.5080816660010896,50,mac,phase-18,with +1,2446.842754857934,3.893279148103931,77.10023748851974,509.2874988182109,0.5071786669977882,50,mac,phase-18,with +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055,50,mac,phase-18,with +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268,50,mac,phase-18,with +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444,50,mac,phase-18,with +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424,50,mac,phase-18,with +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.5791434498134,0.5034856669990404,50,mac,phase-18,with +7,2429.938186012844,3.866381544953255,76.56757298851875,505.7689704744408,0.5036747079975612,50,mac,phase-18,with +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405,50,mac,phase-18,with +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.430282300252,0.5063249999984691,50,mac,phase-18,with +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838,50,mac,phase-18,with +11,2416.368502129658,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795,50,mac,phase-18,with +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131,50,mac,phase-18,with +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048,50,mac,phase-18,with +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614,50,mac,phase-18,with +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951,50,mac,phase-18,with +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134,50,mac,phase-18,with +17,2475.655192815794,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459,50,mac,phase-18,with +18,2453.373007356547,3.9036697201315897,77.30600633799054,510.6467099710596,0.5085322499980975,50,mac,phase-18,with +19,2459.984671943299,3.914189830514144,77.51434048975445,512.0228662907604,0.5099027079995722,50,mac,phase-18,with +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151,50,mac,phase-18,with +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142,50,mac,phase-18,with +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269,50,mac,phase-18,with +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548,50,mac,phase-18,with +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.057604634152,0.5079455839986622,50,mac,phase-18,with +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254,50,mac,phase-18,with +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.1553403373048,0.500076040996646,50,mac,phase-18,with +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147,50,mac,phase-18,with +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387,50,mac,phase-18,with +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264,50,mac,phase-18,with +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.0610715000002528,50,mac,phase-27,without +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.0585037499986356,50,mac,phase-27,without +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.0611541670004953,50,mac,phase-27,without +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.0613001669989898,50,mac,phase-27,without +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.0593751670021447,50,mac,phase-27,without +5,234.91751197548183,0.5667089121020564,0.0,53.77067501297747,0.0606549160002032,50,mac,phase-27,without +6,236.52417105423336,0.5705847747867131,0.0,54.13842598417459,0.0610697500014794,50,mac,phase-27,without +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.060860749999847,50,mac,phase-27,without +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.0579030840017367,50,mac,phase-27,without +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.061600166001881,50,mac,phase-27,without +10,211.58113691439135,0.5104128462529662,0.0,48.42917182388438,0.0546295419990201,50,mac,phase-27,without +11,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.0624751249997643,50,mac,phase-27,without +12,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.0611307920007675,50,mac,phase-27,without +13,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.0609432919991377,50,mac,phase-27,without +14,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.0610500000002502,50,mac,phase-27,without +15,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.0608165829980862,50,mac,phase-27,without +16,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.0616963329994177,50,mac,phase-27,without +17,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.0619737499982875,50,mac,phase-27,without +18,236.8819409910412,0.5714478497016745,0.0,54.22031656287064,0.0611621250027383,50,mac,phase-27,without +19,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.0610076659977494,50,mac,phase-27,without +20,235.3475795194772,0.5677463958891886,0.0,53.8691139158389,0.0607659580018662,50,mac,phase-27,without +21,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.061068625000189,50,mac,phase-27,without +22,238.7517986631784,0.5759586458456127,0.0,54.64831151464549,0.0616449160006595,50,mac,phase-27,without +23,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.0616773340007057,50,mac,phase-27,without +24,237.2802187825453,0.5724086447145267,0.0,54.31147905438421,0.0612649589966167,50,mac,phase-27,without +25,236.2441867895784,0.5699093480094838,0.0,54.074339902311614,0.0609974590006459,50,mac,phase-27,without +26,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.0610905829998955,50,mac,phase-27,without +27,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.0587892079965968,50,mac,phase-27,without +28,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.0620941250017494,50,mac,phase-27,without +29,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.0597400420010671,50,mac,phase-27,without +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667,50,mac,phase-27,with +1,1498.841889417395,1.2033252607887024,0.0,459.93765523479294,0.499227249998512,50,mac,phase-27,with +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.4965378329980012,50,mac,phase-27,with +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442,50,mac,phase-27,with +4,1524.1527316288148,1.2236457335616362,0.0,467.70459149466984,0.5076576670035138,50,mac,phase-27,with +5,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427,50,mac,phase-27,with +6,1489.3145129999891,1.1956763334448297,0.0,457.0140652278015,0.4960539159983455,50,mac,phase-27,with +7,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085,50,mac,phase-27,with +8,1491.8328382512898,1.1976981373530124,0.0,457.7868436104848,0.4968927080008143,50,mac,phase-27,with +9,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469,50,mac,phase-27,with +10,1511.818683773937,1.213743507412005,0.0,463.91974061081095,0.5035495000010997,50,mac,phase-27,with +11,1488.9657450555078,1.195396329742831,0.0,456.9070415905932,0.4959377500017581,50,mac,phase-27,with +12,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.4984247499996854,50,mac,phase-27,with +13,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.4980667499985429,50,mac,phase-27,with +14,1496.3713521590184,1.2013418228345636,0.0,459.1795411723221,0.4984043749973352,50,mac,phase-27,with +15,1507.25952887442,1.210083250584936,0.0,462.5207091124644,0.5020309579995228,50,mac,phase-27,with +16,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.4936328750009124,50,mac,phase-27,with +17,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439,50,mac,phase-27,with +18,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.4978450419985165,50,mac,phase-27,with +19,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462,50,mac,phase-27,with +20,1489.0232905879304,1.1954425294075846,0.0,456.9247001291211,0.4959569169986935,50,mac,phase-27,with +21,1493.38228955567,1.1989420937089743,0.0,458.262311373208,0.4974087919981684,50,mac,phase-27,with +22,1495.050954155259,1.2002817588722223,0.0,458.7743611689384,0.4979645830026129,50,mac,phase-27,with +23,1482.5875601832554,1.1902756889141006,0.0,454.949818873834,0.4938133340001513,50,mac,phase-27,with +24,1491.5192214979224,1.1974463543169245,0.0,457.6906065389133,0.4967882499986444,50,mac,phase-27,with +25,1491.476438384669,1.197412006463908,0.0,457.6774780262048,0.4967739999992773,50,mac,phase-27,with +26,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.4969653329972061,50,mac,phase-27,with +27,1493.5562982454917,1.1990817942694787,0.0,458.3157080318896,0.4974667499991483,50,mac,phase-27,with +28,1494.5570718752197,1.1998852520574457,0.0,458.622807453068,0.4978000830014935,50,mac,phase-27,with +29,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.4966979169985279,50,mac,phase-27,with +0,341.6843896416646,0.2265596975932227,10.162820720610275,60.03831986220403,0.0603289999999105,50,mac,phase-5,without +1,355.1767007392971,0.2355060059841886,10.56412655414789,62.40909158580999,0.0627112499969371,50,mac,phase-5,without +2,361.3328929961324,0.2395879748956073,10.747232016745816,63.490813347335944,0.0637982089974684,50,mac,phase-5,without +3,325.33522572126685,0.2157191039167252,9.676542661407389,57.165562537932175,0.0574423340003704,50,mac,phase-5,without +4,359.5754915168495,0.2384226996891111,10.69496110034013,63.18201541761446,0.0634879159988486,50,mac,phase-5,without +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.0637705829976766,50,mac,phase-5,without +6,362.5121173216168,0.2403698798192021,10.782306037604211,63.69801815208857,0.0640064170002006,50,mac,phase-5,without +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.0625325840010191,50,mac,phase-5,without +8,366.4686706564167,0.2429933403992532,10.899986983623648,64.39323520580211,0.0647050000006856,50,mac,phase-5,without +9,326.0245413625624,0.2161761664808124,9.6970451821393,57.28668411741529,0.0575640419992851,50,mac,phase-5,without +10,353.9262046474312,0.2346768430929258,10.526932675882676,62.18936341962535,0.0624904579999565,50,mac,phase-5,without +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.0648867500021879,50,mac,phase-5,without +12,362.23199716425125,0.2401841413422145,10.773974340207907,63.64879745568685,0.0639569579980161,50,mac,phase-5,without +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.0621640839999599,50,mac,phase-5,without +14,349.1769734349746,0.2315277838443518,10.385674875303785,61.35486271875324,0.0616519169998355,50,mac,phase-5,without +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.0615940830030012,50,mac,phase-5,without +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.0619958749994111,50,mac,phase-5,without +17,355.15546194816227,0.2354919232392854,10.563494842447945,62.40535965841063,0.0627075000011245,50,mac,phase-5,without +18,351.3492284590744,0.2329681348123066,10.450284904437757,61.736555725261255,0.0620354580023558,50,mac,phase-5,without +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.0613407090022519,50,mac,phase-5,without +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604,50,mac,phase-5,without +21,323.2755250958313,0.2143533840741516,9.61528037132623,56.80364677965019,0.0570786659991426,50,mac,phase-5,without +22,346.4812920955575,0.2297403660764329,10.305496421142848,60.88119701025472,0.0611759580024227,50,mac,phase-5,without +23,362.6600753923095,0.2404679859568216,10.786706798634572,63.72401627855775,0.0640325409985962,50,mac,phase-5,without +24,355.4261350672641,0.2356713976954484,10.571545553767258,62.45292038929383,0.0627552910009399,50,mac,phase-5,without +25,358.8557392353121,0.2379454555884422,10.673553293538694,63.05554573093719,0.063360833999468,50,mac,phase-5,without +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057,50,mac,phase-5,without +27,349.93779309502264,0.2320322583750268,10.408304161394062,61.48854846938211,0.0617862500002956,50,mac,phase-5,without +28,343.8514567140059,0.2279966086007427,10.227276442947606,60.41910127919684,0.060711624999385,50,mac,phase-5,without +29,341.386570501989,0.2263622235023134,10.153962597103774,59.98598922811306,0.0602764160030346,50,mac,phase-5,without +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763,50,mac,phase-5,with +1,2430.8668931937323,3.146003063189218,86.86280036574021,500.4462977991102,0.5033938749984372,50,mac,phase-5,with +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439,50,mac,phase-5,with +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242,50,mac,phase-5,with +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859,50,mac,phase-5,with +5,2473.312006736001,3.200935094883456,88.37950267241374,509.184538461882,0.5121835829995689,50,mac,phase-5,with +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638,50,mac,phase-5,with +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033,50,mac,phase-5,with +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118,50,mac,phase-5,with +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504,50,mac,phase-5,with +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.286500197256,0.5052449159993557,50,mac,phase-5,with +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.0612560700477,0.50703012500162,50,mac,phase-5,with +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356,50,mac,phase-5,with +13,2442.717957764811,3.161340589709926,87.28627754535931,502.88609464943573,0.505848042001162,50,mac,phase-5,with +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.0360862137909,0.5059989170003973,50,mac,phase-5,with +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502,50,mac,phase-5,with +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592,50,mac,phase-5,with +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984,50,mac,phase-5,with +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331,50,mac,phase-5,with +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831,50,mac,phase-5,with +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758,50,mac,phase-5,with +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022,50,mac,phase-5,with +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.3419776453141,0.5073124999980791,50,mac,phase-5,with +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608,50,mac,phase-5,with +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987,50,mac,phase-5,with +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.0199192304263,0.5039708750009595,50,mac,phase-5,with +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441,50,mac,phase-5,with +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.7483898208496,0.5067154160024074,50,mac,phase-5,with +28,2460.460343865354,3.18430260428048,87.92027085292314,506.5387469040696,0.5095222080017265,50,mac,phase-5,with +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324,50,mac,phase-5,with +0,350.0910376507284,0.236639364962833,11.25727264751763,63.11509919794418,0.0630889589992875,50,mac,phase-2,without +1,356.37546692202835,0.2408872410635572,11.459350182023508,64.24806843795162,0.0642214590006915,50,mac,phase-2,without +2,332.9498947627177,0.2250530381748767,10.706094530319138,60.024860324642134,0.0600000000013096,50,mac,phase-2,without +3,344.6223300836617,0.2329428650623437,11.08142486653721,62.12918986734226,0.0621034579999104,50,mac,phase-2,without +4,354.8452791425179,0.2398529310542318,11.410146577294173,63.97220318260727,0.0639457079996645,50,mac,phase-2,without +5,360.7172223274056,0.2438219926894398,11.598960509369068,65.03080862159774,0.0650038749990926,50,mac,phase-2,without +6,345.0863790001193,0.2332565327347271,11.096346485809166,62.212849516533666,0.0621870830000261,50,mac,phase-2,without +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.0630313330002536,50,mac,phase-2,without +8,348.98767498943727,0.2358935616962206,11.22179372069164,62.91618281240628,0.0628901249983755,50,mac,phase-2,without +9,350.3400508932428,0.2368076821410486,11.265279736138456,63.1599917939054,0.0631338330022117,50,mac,phase-2,without +10,345.9441911217454,0.2338363593909055,11.123929668167364,62.36749756897438,0.0623416670023289,50,mac,phase-2,without +11,351.08109746493335,0.237308582681975,11.289108290442528,63.29358912389249,0.0632673750005778,50,mac,phase-2,without +12,329.7454850782693,0.2228870602112674,10.603055864336008,59.447163059205174,0.0594225419990834,50,mac,phase-2,without +13,345.43644252185425,0.2334931535006739,11.10760287367492,62.27595965510834,0.0622501670004567,50,mac,phase-2,without +14,335.9221662007163,0.2270621053886649,10.80166872777506,60.56070725151963,0.0605356249980104,50,mac,phase-2,without +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.0625607500005571,50,mac,phase-2,without +16,343.85677837624013,0.232425400601939,11.056808342920815,61.99117470340289,0.0619654999973136,50,mac,phase-2,without +17,355.4441283707007,0.2402577151984264,11.429402737296574,64.08016489649461,0.0640536249993601,50,mac,phase-2,without +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.23394875574533,0.0592094160019769,50,mac,phase-2,without +19,343.34116662973724,0.2320768797226883,11.04022870680789,61.89821920603703,0.061872582999058,50,mac,phase-2,without +20,348.2829310492102,0.2354171994345762,11.199132487387695,62.78913019205054,0.0627631249990372,50,mac,phase-2,without +21,343.4116854085347,0.2321245459501489,11.0424962573428,61.91093246984688,0.0618852909974521,50,mac,phase-2,without +22,353.14099187217386,0.2387009408174215,11.355344756028764,63.664950929446555,0.0636385830002836,50,mac,phase-2,without +23,348.2216627188161,0.2353757859242673,11.197162387540146,62.77808461722959,0.0627520839989301,50,mac,phase-2,without +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.0587976249989878,50,mac,phase-2,without +25,328.22177318395427,0.2218571274901197,10.554060493458554,59.17246528915051,0.0591479579998122,50,mac,phase-2,without +26,344.13585700434845,0.2326140400763266,11.065782192202397,62.0414875460717,0.0620157920020574,50,mac,phase-2,without +27,347.5217742944843,0.2349027056837959,11.174657284672003,62.6519073588067,0.0626259589989786,50,mac,phase-2,without +28,341.68127822516465,0.2309549003066968,10.986854543161437,61.59897126751471,0.0615734589991916,50,mac,phase-2,without +29,354.82354305874037,0.2398382388384687,11.409447647601445,63.968284558774464,0.0639417909987969,50,mac,phase-2,without +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533,50,mac,phase-2,with +1,2427.481988160699,4.084415548016843,85.00271374110463,501.1109173993124,0.5075136669984204,50,mac,phase-2,with +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661,50,mac,phase-2,with +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051,50,mac,phase-2,with +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116,50,mac,phase-2,with +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043,50,mac,phase-2,with +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739,50,mac,phase-2,with +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679,50,mac,phase-2,with +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423,50,mac,phase-2,with +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579,50,mac,phase-2,with +10,2395.320511638591,4.030301517348542,83.87652092252418,494.4717468169917,0.5007896669994807,50,mac,phase-2,with +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515,50,mac,phase-2,with +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875,50,mac,phase-2,with +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489,50,mac,phase-2,with +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053,50,mac,phase-2,with +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869,50,mac,phase-2,with +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392,50,mac,phase-2,with +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.4682684869635,0.5078755840004305,50,mac,phase-2,with +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414,50,mac,phase-2,with +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279,50,mac,phase-2,with +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696,50,mac,phase-2,with +21,2427.790497267815,4.08493463709761,85.01351675074451,501.1746036727624,0.5075781669984281,50,mac,phase-2,with +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145,50,mac,phase-2,with +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996,50,mac,phase-2,with +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155,50,mac,phase-2,with +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793,50,mac,phase-2,with +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597,50,mac,phase-2,with +27,2413.707893578892,4.061239628959905,84.5203886715508,498.2674980841955,0.5046339170003193,50,mac,phase-2,with +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983,50,mac,phase-2,with +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103,50,mac,phase-2,with +0,377.80027211049406,0.3116878218896733,10.909073766138569,64.90033091347199,0.0646291250013746,50,mac,phase-3,without +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.062719665998884,50,mac,phase-3,without +2,365.138799454798,0.3012420199003742,10.543470696513095,62.72528281036681,0.062463166002999,50,mac,phase-3,without +3,372.9749204140684,0.3077068735655527,10.769740574794348,64.07140900687176,0.063803666998865,50,mac,phase-3,without +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.0574257089974707,50,mac,phase-3,without +5,353.0611685087077,0.2912778913354449,10.194726196740575,60.65052981806932,0.0603970830015896,50,mac,phase-3,without +6,358.20146127741265,0.2955186682094338,10.343153387330185,61.533553802719894,0.0612764170000446,50,mac,phase-3,without +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.0627197499998146,50,mac,phase-3,without +8,370.3431490069413,0.3055356440610937,10.69374754213828,63.61931077449885,0.0633534579974366,50,mac,phase-3,without +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.96508971696144,0.0636977919966739,50,mac,phase-3,without +10,376.0095517358092,0.3102104652692531,10.85736628442386,64.59271243495337,0.0643227920008939,50,mac,phase-3,without +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.0631544160023622,50,mac,phase-3,without +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.0602364999976998,50,mac,phase-3,without +13,356.8106779834024,0.2943712624301605,10.30299418505562,61.29463842156898,0.0610384999999951,50,mac,phase-3,without +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.0637497499992605,50,mac,phase-3,without +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.0652685829991241,50,mac,phase-3,without +16,368.50737025878874,0.3040211139727838,10.640738989047431,63.30395195388854,0.0630394170002546,50,mac,phase-3,without +17,375.27104536938856,0.3096011924396825,10.83604173538889,64.46584829244057,0.0641964579990599,50,mac,phase-3,without +18,361.6927852373143,0.2983990344794049,10.443966206779171,62.133310068267214,0.0618736670003272,50,mac,phase-3,without +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.0602696669993747,50,mac,phase-3,without +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.0596034159971168,50,mac,phase-3,without +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.0610374579991912,50,mac,phase-3,without +22,365.3711704842491,0.3014337275972355,10.550180465903242,62.76520061302437,0.0625029169968911,50,mac,phase-3,without +23,360.55117343559215,0.2974571968943376,10.411001891301815,61.93719855333208,0.0616783749974274,50,mac,phase-3,without +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.0590651249985967,50,mac,phase-3,without +25,363.9940309949737,0.3002975780506703,10.510415231773464,62.52862902966181,0.062267334000353,50,mac,phase-3,without +26,358.9745505884595,0.2961564722060808,10.365476527212827,61.66635876824394,0.0614086669993412,50,mac,phase-3,without +27,374.9619557919834,0.3093461914133147,10.827116699466018,64.41275141206133,0.0641435830002592,50,mac,phase-3,without +28,361.3880799001845,0.2981476504814062,10.435167766849217,62.0809663335728,0.0618215419999614,50,mac,phase-3,without +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.063004916999489,50,mac,phase-3,without +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566,50,mac,phase-3,with +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745,50,mac,phase-3,with +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915,50,mac,phase-3,with +3,2787.134152130027,3.892829766007092,84.81750278308672,513.8535291129361,0.5036684170008812,50,mac,phase-3,with +4,2786.490857621769,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919,50,mac,phase-3,with +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812,50,mac,phase-3,with +6,2781.0252087558233,3.884297318228151,84.6315966539371,512.7272460061159,0.5025644579982327,50,mac,phase-3,with +7,2806.3717189238073,3.91969914815834,85.40293652470417,517.4002875569009,0.5071448749986303,50,mac,phase-3,with +8,2787.611657926017,3.8934967051189577,84.83203414288847,513.9415650757024,0.5037547079991782,50,mac,phase-3,with +9,2778.4739606086464,3.880733953787939,84.5539575863457,512.256881900008,0.5021034169985796,50,mac,phase-3,with +10,2803.5843657274604,3.915806012450171,85.3181123560118,516.8863936434227,0.5066411669977242,50,mac,phase-3,with +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174,50,mac,phase-3,with +12,2812.886462833527,3.9287983832957263,85.60119189367214,518.6013865950359,0.5083221670029161,50,mac,phase-3,with +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987,50,mac,phase-3,with +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392,50,mac,phase-3,with +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828,50,mac,phase-3,with +16,2785.3977311460985,3.890404482212485,84.7646603709178,513.5333916520481,0.5033546249978826,50,mac,phase-3,with +17,2790.556261375991,3.8976094744847183,84.92164371949332,514.4844506319829,0.5042868329983321,50,mac,phase-3,with +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193,50,mac,phase-3,with +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849,50,mac,phase-3,with +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448,50,mac,phase-3,with +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673,50,mac,phase-3,with +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759,50,mac,phase-3,with +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572,50,mac,phase-3,with +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778,50,mac,phase-3,with +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124,50,mac,phase-3,with +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425,50,mac,phase-3,with +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436,50,mac,phase-3,with +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288,50,mac,phase-3,with +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019,50,mac,phase-3,with +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452,50,mac,phase-4,without +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.0633994999989226,50,mac,phase-4,without +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.0633070830008364,50,mac,phase-4,without +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.0625170000021171,50,mac,phase-4,without +4,341.2276327610607,1.1792449629834103,10.514934253268745,61.61554931588319,0.0613077500020153,50,mac,phase-4,without +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.0623294999968493,50,mac,phase-4,without +6,346.9583356729764,1.1990496384973743,10.691525943268257,62.65034361148781,0.0623373750022437,50,mac,phase-4,without +7,349.52325272198976,1.2079137081685354,10.770563897836109,63.11349125180597,0.0627982089972647,50,mac,phase-4,without +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.0630362500014598,50,mac,phase-4,without +9,349.6454613517626,1.208336047678166,10.774329758463644,63.13555849118416,0.062820166000165,50,mac,phase-4,without +10,380.9826285174108,1.3166338318735518,11.739985000872505,68.79411771539309,0.0684504579985514,50,mac,phase-4,without +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.0568042079976294,50,mac,phase-4,without +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.0622269169980427,50,mac,phase-4,without +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.0617767499970796,50,mac,phase-4,without +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.0641705000016372,50,mac,phase-4,without +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.0611342090014659,50,mac,phase-4,without +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687,50,mac,phase-4,without +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.0623579169987351,50,mac,phase-4,without +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578,50,mac,phase-4,without +19,357.74395683758917,1.2363235524770289,11.02388500958684,64.59790561692476,0.0642752079984347,50,mac,phase-4,without +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.0639412499986065,50,mac,phase-4,without +21,350.5608098293886,1.2114993907898617,10.802536234542933,63.300843168770264,0.0629846250012633,50,mac,phase-4,without +22,352.93602165071184,1.2197078601733349,10.8757284198789,63.729735694056735,0.0634113750020333,50,mac,phase-4,without +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.0570584579982096,50,mac,phase-4,without +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.0630519169972103,50,mac,phase-4,without +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.0629439170006662,50,mac,phase-4,without +26,347.9465017031017,1.202464631017727,10.7219762932414,62.82877697067623,0.0625149170009535,50,mac,phase-4,without +27,352.52809188308873,1.2182981000087545,10.863158058411392,63.65607572545742,0.0633380830004171,50,mac,phase-4,without +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023,50,mac,phase-4,without +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.0611057499991147,50,mac,phase-4,without +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292,50,mac,phase-4,with +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295,50,mac,phase-4,with +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367,50,mac,phase-4,with +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.9658028211997,0.5026861250007642,50,mac,phase-4,with +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364,50,mac,phase-4,with +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283,50,mac,phase-4,with +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152,50,mac,phase-4,with +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727,50,mac,phase-4,with +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829,50,mac,phase-4,with +9,2374.217426084276,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384,50,mac,phase-4,with +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447,50,mac,phase-4,with +11,2408.4701102273693,3.561420707157979,88.32323353751788,509.96152697257344,0.5137638340020203,50,mac,phase-4,with +12,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732,50,mac,phase-4,with +13,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935,50,mac,phase-4,with +14,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878,50,mac,phase-4,with +15,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826,50,mac,phase-4,with +16,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144,50,mac,phase-4,with +17,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896,50,mac,phase-4,with +18,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942,50,mac,phase-4,with +19,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896,50,mac,phase-4,with +20,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372,50,mac,phase-4,with +21,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246,50,mac,phase-4,with +22,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155,50,mac,phase-4,with +23,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018,50,mac,phase-4,with +24,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907,50,mac,phase-4,with +25,2359.7523495532514,3.489381431713207,86.53665950648752,499.6461888172197,0.5033715839999786,50,mac,phase-4,with +26,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014,50,mac,phase-4,with +27,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501,50,mac,phase-4,with +28,2369.1011810593163,3.503205610793547,86.87949914767998,501.625679602676,0.5053658340002585,50,mac,phase-4,with +29,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.498477000001003,50,mac,phase-4,with +0,330.77706061011514,0.2608137674828426,10.33474553650764,61.4542439631448,0.0611662920018716,50,mac,phase-22,without +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.0624705829977756,50,mac,phase-22,without +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886,50,mac,phase-22,without +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.0622007080019102,50,mac,phase-22,without +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.0638947090010333,50,mac,phase-22,without +5,339.8455414183246,0.2679641564504826,10.618079699350377,63.13905436364497,0.0628432080011407,50,mac,phase-22,without +6,345.3511691216465,0.2723052782350849,10.79009665006524,64.16193118414189,0.0638612919974548,50,mac,phase-22,without +7,342.53413726212943,0.2700840822094456,10.702081757549283,63.638561870600626,0.0633403749998251,50,mac,phase-22,without +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.0631592919999093,50,mac,phase-22,without +9,311.5008417190181,0.2456146987731268,9.732482438885151,57.872963398418015,0.0576017919993319,50,mac,phase-22,without +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.0591447920014616,50,mac,phase-22,without +11,313.26424396705994,0.2470051204155804,9.787577896467376,58.20058149792115,0.0579278750010416,50,mac,phase-22,without +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.0641434579993074,50,mac,phase-22,without +13,340.49019830223455,0.2684724607153436,10.638221255845492,63.258823556052846,0.062962415999209,50,mac,phase-22,without +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.0633342080000147,50,mac,phase-22,without +15,339.41178997419223,0.2676221486096528,10.604527638657494,63.058468766149446,0.0627629999980854,50,mac,phase-22,without +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.063857832999929,50,mac,phase-22,without +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.0636132500003441,50,mac,phase-22,without +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.0645286670005589,50,mac,phase-22,without +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.0640427080033987,50,mac,phase-22,without +20,341.9755514445675,0.2696436439539266,10.684629391674344,63.53478360664397,0.0632370830026047,50,mac,phase-22,without +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.0615041249984642,50,mac,phase-22,without +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.0586524169993936,50,mac,phase-22,without +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.0636538750004547,50,mac,phase-22,without +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.0640091250024852,50,mac,phase-22,without +25,343.06680876474195,0.2705040873366781,10.718724460715867,63.73752557870477,0.0634388750004291,50,mac,phase-22,without +26,345.3649158389056,0.272316117357702,10.79052615029894,64.16448515240853,0.0638638339987665,50,mac,phase-22,without +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.0640631250025762,50,mac,phase-22,without +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.0625225420008064,50,mac,phase-22,without +29,339.69705314558837,0.2678470752182837,10.613440355524494,63.11146709830811,0.0628157499995722,50,mac,phase-22,without +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618,50,mac,phase-22,with +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904,50,mac,phase-22,with +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659,50,mac,phase-22,with +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492,50,mac,phase-22,with +4,2340.690922537716,4.507878606273955,80.50737273871486,493.7629700072072,0.5085929999986547,50,mac,phase-22,with +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951,50,mac,phase-22,with +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227,50,mac,phase-22,with +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618,50,mac,phase-22,with +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373,50,mac,phase-22,with +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693,50,mac,phase-22,with +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235,50,mac,phase-22,with +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706,50,mac,phase-22,with +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046,50,mac,phase-22,with +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578,50,mac,phase-22,with +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701,50,mac,phase-22,with +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975,50,mac,phase-22,with +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283,50,mac,phase-22,with +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956,50,mac,phase-22,with +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957,50,mac,phase-22,with +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134,50,mac,phase-22,with +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105,50,mac,phase-22,with +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781,50,mac,phase-22,with +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063,50,mac,phase-22,with +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187,50,mac,phase-22,with +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935,50,mac,phase-22,with +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673,50,mac,phase-22,with +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902,50,mac,phase-22,with +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685,50,mac,phase-22,with +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548,50,mac,phase-22,with +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566,50,mac,phase-22,with +0,246.26397969829708,0.0,0.0,54.43476538811038,0.0630743330002587,50,mac,phase-25,without +1,242.4809969916464,0.0,0.0,53.59856605292504,0.0621054169969284,50,mac,phase-25,without +2,239.1234239616921,0.0,0.0,52.85640026650788,0.0612454589972912,50,mac,phase-25,without +3,235.2940732640157,0.0,0.0,52.009951642262514,0.060264666997682,50,mac,phase-25,without +4,238.8820026774676,0.0,0.0,52.80303594184067,0.0611836249991029,50,mac,phase-25,without +5,234.2631621094942,0.0,0.0,51.782076632278866,0.0600006249987927,50,mac,phase-25,without +6,239.56428704081335,0.0,0.0,52.95384967144987,0.0613583750018733,50,mac,phase-25,without +7,240.1634400598459,0.0,0.0,53.08628785450275,0.0615118329988035,50,mac,phase-25,without +8,240.7378668708275,0.0,0.0,53.213260498763326,0.0616589579985884,50,mac,phase-25,without +9,239.34922398149791,0.0,0.0,52.906311630393986,0.0613032920009573,50,mac,phase-25,without +10,242.8128624545116,0.0,0.0,53.67192237013237,0.0621904159997939,50,mac,phase-25,without +11,232.12976143215943,0.0,0.0,51.31050476256479,0.0594542079998063,50,mac,phase-25,without +12,245.03915532867256,0.0,0.0,54.164027348045266,0.0627606250018288,50,mac,phase-25,without +13,216.43592117453937,0.0,0.0,47.841501648473,0.0554346249991795,50,mac,phase-25,without +14,236.2355085499188,0.0,0.0,52.218048697215536,0.0605057920001854,50,mac,phase-25,without +15,239.34987210662737,0.0,0.0,52.906454893486725,0.0613034580019302,50,mac,phase-25,without +16,238.92934287039128,0.0,0.0,52.81350012867948,0.0611957500004791,50,mac,phase-25,without +17,238.7121636534104,0.0,0.0,52.7654943271895,0.0611401249989285,50,mac,phase-25,without +18,240.5050741873832,0.0,0.0,53.161803460170496,0.0615993339997658,50,mac,phase-25,without +19,239.09170116971927,0.0,0.0,52.84938818646023,0.0612373340009071,50,mac,phase-25,without +20,242.39574953227935,0.0,0.0,53.57972275535363,0.0620835830013675,50,mac,phase-25,without +21,239.42991118529753,0.0,0.0,52.92414691842122,0.0613239580015942,50,mac,phase-25,without +22,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058,50,mac,phase-25,without +23,241.4102263831343,0.0,0.0,53.36188041611268,0.0618311660000472,50,mac,phase-25,without +24,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936,50,mac,phase-25,without +25,226.55614444164797,0.0,0.0,50.07849944204095,0.0580266659999324,50,mac,phase-25,without +26,244.4723732267422,0.0,0.0,54.038744508132766,0.0626154580022557,50,mac,phase-25,without +27,238.2831737209998,0.0,0.0,52.670669390334176,0.0610302500026591,50,mac,phase-25,without +28,242.49953873943076,0.0,0.0,53.602664564172066,0.0621101659999112,50,mac,phase-25,without +29,238.44536412992605,0.0,0.0,52.70652033722831,0.0610717910021776,50,mac,phase-25,without +0,1562.658112747968,2.9298349145681235,0.0,472.7254566807824,0.5100129999991623,50,mac,phase-25,with +1,1531.1537366320806,2.87076721424838,0.0,463.19495191756414,0.4997307500016177,50,mac,phase-25,with +2,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.4992337080002471,50,mac,phase-25,with +3,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331,50,mac,phase-25,with +4,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553,50,mac,phase-25,with +5,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.4967933749976509,50,mac,phase-25,with +6,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.4938749159991857,50,mac,phase-25,with +7,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974,50,mac,phase-25,with +8,1529.549117610166,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789,50,mac,phase-25,with +9,1534.5397925705695,2.87711574616994,0.0,464.2192801610941,0.5008358750019397,50,mac,phase-25,with +10,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685,50,mac,phase-25,with +11,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412,50,mac,phase-25,with +12,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775,50,mac,phase-25,with +13,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.4971924999990733,50,mac,phase-25,with +14,1530.105222825464,2.868801350868558,0.0,462.8777621471175,0.4993885410003713,50,mac,phase-25,with +15,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475,50,mac,phase-25,with +16,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071,50,mac,phase-25,with +17,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474,50,mac,phase-25,with +18,1523.8910085724551,2.8571502918579252,0.0,460.997877323495,0.4973603750004258,50,mac,phase-25,with +19,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.4989415420022851,50,mac,phase-25,with +20,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.4979109579981013,50,mac,phase-25,with +21,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227,50,mac,phase-25,with +22,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.4972158750024391,50,mac,phase-25,with +23,1523.679466818539,2.856753671246252,0.0,460.93388304898826,0.4972913329984294,50,mac,phase-25,with +24,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626,50,mac,phase-25,with +25,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481,50,mac,phase-25,with +26,1518.296859631195,2.84666179616479,0.0,459.30557073933295,0.4955345829985162,50,mac,phase-25,with +27,1517.123367010836,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685,50,mac,phase-25,with +28,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821,50,mac,phase-25,with +29,1513.0786858616543,2.8368782180579974,0.0,457.7270017880555,0.49383150000358,50,mac,phase-25,with +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893,50,mac,phase-13,without +1,348.55779789257946,0.2332158846538,10.361448589618831,61.6356266585043,0.0617304580009658,50,mac,phase-13,without +2,358.33485910912873,0.2397576002450679,10.652087668030877,63.36450863619653,0.0634620000018912,50,mac,phase-13,without +3,346.03077541432424,0.2315250839132354,10.286328728145175,61.188772177069374,0.0612829159981629,50,mac,phase-13,without +4,319.4310664622174,0.2137275344327587,9.49560902979828,56.485134100086235,0.0565720409977075,50,mac,phase-13,without +5,354.87217509222506,0.2374407594767325,10.549153742466258,62.75220071885074,0.06284874999983,50,mac,phase-13,without +6,354.41904767108167,0.2371375772985635,10.535683791407608,62.672074000334646,0.0627684999999473,50,mac,phase-13,without +7,358.9152630876629,0.2401459416568189,10.669341122181528,63.46714172358787,0.0635647909984982,50,mac,phase-13,without +8,339.35785444139424,0.2270603117080634,10.087965277315387,60.00879666570248,0.0601011250000738,50,mac,phase-13,without +9,340.8776918175967,0.2280772168536777,10.1331449202134,60.27755016847198,0.0603702920016075,50,mac,phase-13,without +10,354.0640272849366,0.2369000373728308,10.525130231850056,62.60929559139101,0.0627056250013993,50,mac,phase-13,without +11,354.00708848272853,0.2368619402962244,10.523437633160828,62.59922707828788,0.0626955409970833,50,mac,phase-13,without +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.0627899579994846,50,mac,phase-13,without +13,343.10921309321594,0.2295703012476115,10.199480526858167,60.67215104401161,0.0607655000021623,50,mac,phase-13,without +14,340.4605604865636,0.2277981192320727,10.120745011596377,60.20378865419067,0.0602964169993356,50,mac,phase-13,without +15,356.3056669698578,0.2383998918743074,10.591766624701371,63.00568570963839,0.0631026249975548,50,mac,phase-13,without +16,320.99748703681513,0.2147756078434052,9.542173434185576,56.762124930042816,0.0568494580002152,50,mac,phase-13,without +17,354.8119444278913,0.2374004598542572,10.547363287810573,62.74155010433942,0.0628380829984962,50,mac,phase-13,without +18,351.575824142101,0.2352352101887504,10.451164338385912,62.16930554988405,0.0622649580000143,50,mac,phase-13,without +19,343.1440347346409,0.2295935999945026,10.200515656898617,60.6783085699757,0.0607716670019726,50,mac,phase-13,without +20,356.72044373402287,0.2386774140831734,10.60409653998099,63.079030864838685,0.0631760830001439,50,mac,phase-13,without +21,350.96718789534884,0.2348279789014951,10.43307163405214,62.061680138252285,0.0621571669980767,50,mac,phase-13,without +22,352.7963997956422,0.2360518828684281,10.487447938868735,62.3851404723703,0.0624811250017955,50,mac,phase-13,without +23,353.666658527277,0.2366341626544579,10.513317797933777,62.539028701535315,0.0626352500003122,50,mac,phase-13,without +24,364.4598431575399,0.2438557543588969,10.83416280080242,64.44759222342276,0.0645467499998631,50,mac,phase-13,without +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554,50,mac,phase-13,without +26,338.0789340735709,0.2262046012727008,10.04994728511571,59.78264462207094,0.0598746250034309,50,mac,phase-13,without +27,355.0131047850516,0.2375350538611509,10.553343107259709,62.77712137758989,0.0628737090009963,50,mac,phase-13,without +28,329.98898622367545,0.2207917132064354,9.809460401028776,58.35209563312938,0.058441875000426,50,mac,phase-13,without +29,353.84475877944084,0.2367533274188573,10.518612118180664,62.5705222464123,0.0626667920005275,50,mac,phase-13,without +0,2466.661303363247,4.117564460939943,84.82182789536282,519.4993828219228,0.520018874998641,50,mac,phase-13,with +1,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337,50,mac,phase-13,with +2,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345,50,mac,phase-13,with +3,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745,50,mac,phase-13,with +4,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228,50,mac,phase-13,with +5,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257,0.501494084001024,50,mac,phase-13,with +6,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946,50,mac,phase-13,with +7,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837,50,mac,phase-13,with +8,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348,50,mac,phase-13,with +9,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026,50,mac,phase-13,with +10,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378,50,mac,phase-13,with +11,2378.356060681969,3.970157709764441,81.78524882114748,500.90156438194686,0.5014024589982,50,mac,phase-13,with +12,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271,50,mac,phase-13,with +13,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075,50,mac,phase-13,with +14,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049,50,mac,phase-13,with +15,2390.123657190451,3.989801199978495,82.189904719557,503.37991806395354,0.5038832909995108,50,mac,phase-13,with +16,2371.816282415134,3.959240946065576,81.56036348895087,499.5242326952735,0.5000237499989453,50,mac,phase-13,with +17,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303,50,mac,phase-13,with +18,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822,50,mac,phase-13,with +19,2397.1812542605517,4.0015823516249975,82.43259644347495,504.8663066966872,0.5053711660002591,50,mac,phase-13,with +20,2413.429795818861,4.028705823003649,82.99133995387517,508.2883846689603,0.5087966660030361,50,mac,phase-13,with +21,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703,50,mac,phase-13,with +22,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542,50,mac,phase-13,with +23,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094,50,mac,phase-13,with +24,2386.9390568875947,3.984485189624151,82.08039490625751,502.7092147575803,0.5032119169991347,50,mac,phase-13,with +25,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828,50,mac,phase-13,with +26,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.4999481250015378,50,mac,phase-13,with +27,2394.9224057847664,3.997811686315634,82.35492073810207,504.3905744234892,0.5048949580013868,50,mac,phase-13,with +28,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275,50,mac,phase-13,with +29,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585,50,mac,phase-13,with +0,377.1528286364101,0.2364171040077792,5.944201472195592,62.00882899404038,0.0626814159986679,50,mac,phase-14,without +1,380.0216765811429,0.2382154326200412,5.989416591589608,62.48050489862795,0.0631582079986401,50,mac,phase-14,without +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744,50,mac,phase-14,without +3,384.3681985530305,0.2409400367037891,6.057920922838127,63.19512962687955,0.06388058399898,50,mac,phase-14,without +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.0627903750028053,50,mac,phase-14,without +5,381.03628983828423,0.2388514398556451,6.005407630656221,62.64732051070922,0.0633268329984275,50,mac,phase-14,without +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.0620384590001776,50,mac,phase-14,without +7,375.29157816409594,0.2352503848077972,5.914866818024616,61.702815215302245,0.0623720830008096,50,mac,phase-14,without +8,373.864807786008,0.2343560181339712,5.892379884511276,61.46823561342445,0.0621349590001045,50,mac,phase-14,without +9,366.9212068192651,0.2300034429779578,5.782943709160084,60.32661732964724,0.0609809580018918,50,mac,phase-14,without +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666,50,mac,phase-14,without +11,376.9342197202937,0.2362800696733281,5.940756037500822,61.97288684574722,0.0626450839990866,50,mac,phase-14,without +12,379.717825115604,0.2380249642526397,5.984627672637799,62.430547766835225,0.0631077090001781,50,mac,phase-14,without +13,366.6025595729651,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667,50,mac,phase-14,without +14,363.89742763866343,0.2281079961915146,5.7352867613866545,59.82946871537442,0.0604784169991035,50,mac,phase-14,without +15,369.6993006425364,0.2317448826450931,5.82672847793377,60.78337207662728,0.0614426669999375,50,mac,phase-14,without +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.0611225419997936,50,mac,phase-14,without +17,350.4494712628639,0.2196781856219259,5.523337238494139,57.61844982883658,0.0582434160023694,50,mac,phase-14,without +18,349.70537539320884,0.2192117513882387,5.5116097491900025,57.49611079268662,0.0581197499996051,50,mac,phase-14,without +19,355.4250143168058,0.2227970896586048,5.601755397130637,58.436493801885504,0.0590703329980897,50,mac,phase-14,without +20,355.92618062609483,0.2231112442359329,5.609654140789172,58.51889205959614,0.0591536249994533,50,mac,phase-14,without +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.0605397500003164,50,mac,phase-14,without +22,374.2340939261083,0.2345875040281864,5.898200101280116,61.52895105653575,0.0621963330013386,50,mac,phase-14,without +23,349.4985417056227,0.2190820983199927,5.50834990061696,57.46210464507238,0.0580853749997913,50,mac,phase-14,without +24,363.71014915375633,0.2279906012426161,5.732335116957206,59.79867769734903,0.060447292002209,50,mac,phase-14,without +25,352.26058825141075,0.2208134788000246,5.551881752686334,57.9162210109779,0.0585444169992115,50,mac,phase-14,without +26,380.4172990516413,0.2384634273628986,5.995651887981451,62.5455503768974,0.0632239590013341,50,mac,phase-14,without +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.0632881659985287,50,mac,phase-14,without +28,452.555119381187,0.2836828007225136,7.132596132451771,74.40594601807642,0.0752130000000761,50,mac,phase-14,without +29,366.6672421192952,0.2298442459778871,5.778941041729735,60.28486223077155,0.0609387500007869,50,mac,phase-14,without +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542,50,mac,phase-14,with +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952,50,mac,phase-14,with +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867,50,mac,phase-14,with +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424,50,mac,phase-14,with +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363,50,mac,phase-14,with +5,2400.453980450238,4.138080849367165,83.32893452314363,495.8688979092475,0.5058198340011586,50,mac,phase-14,with +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694,50,mac,phase-14,with +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958,50,mac,phase-14,with +8,2403.58097828726,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683,50,mac,phase-14,with +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267,50,mac,phase-14,with +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853,50,mac,phase-14,with +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238,50,mac,phase-14,with +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056,50,mac,phase-14,with +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391,50,mac,phase-14,with +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556,50,mac,phase-14,with +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674,50,mac,phase-14,with +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163,50,mac,phase-14,with +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075,50,mac,phase-14,with +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524,50,mac,phase-14,with +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076,50,mac,phase-14,with +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709,50,mac,phase-14,with +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594,50,mac,phase-14,with +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088,50,mac,phase-14,with +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206,50,mac,phase-14,with +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243,50,mac,phase-14,with +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182,50,mac,phase-14,with +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494,50,mac,phase-14,with +27,2425.97045586115,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935,50,mac,phase-14,with +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056,50,mac,phase-14,with +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254,50,mac,phase-14,with +0,353.42379519516624,0.3071766447857553,10.170960016239452,63.756219162198995,0.0638574579970736,50,mac,phase-15,without +1,344.73567152495644,0.2996254025808409,9.920929996565622,62.188916891223435,0.0622876669985998,50,mac,phase-15,without +2,351.2821477228619,0.3053152418643898,10.109326897287575,63.369874644742254,0.0634705000011308,50,mac,phase-15,without +3,345.7318892341187,0.3004912605607984,9.949599516346437,62.36863052528573,0.0624676660008844,50,mac,phase-15,without +4,351.83422142570913,0.3057950741507853,10.125214677437114,63.46946650151855,0.063570250000339,50,mac,phase-15,without +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.0641249580003204,50,mac,phase-15,without +6,366.573482495449,0.3186056342307138,10.54938655563919,66.12836941588593,0.0662333750005927,50,mac,phase-15,without +7,348.3338361205126,0.3027527305731157,10.024479301198722,62.83801119006447,0.0629377919976832,50,mac,phase-15,without +8,338.34369848808836,0.2940698489997871,9.736979444659616,61.035830881289144,0.0611327499973413,50,mac,phase-15,without +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.0620771249996323,50,mac,phase-15,without +10,351.68294492465503,0.3056635928847798,10.120861186629378,63.442176834307645,0.0635429169997223,50,mac,phase-15,without +11,347.70289474870646,0.3022043508197352,10.006321838253456,62.724191925696154,0.0628237919991079,50,mac,phase-15,without +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049,50,mac,phase-15,without +13,345.35761370997443,0.300165960732957,9.938828477602357,62.301112738795965,0.0624000410025473,50,mac,phase-15,without +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.0660244169994257,50,mac,phase-15,without +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.0636525410009198,50,mac,phase-15,without +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.0592579170006501,50,mac,phase-15,without +17,347.8889892534473,0.3023660939914075,10.011677334382162,62.75776261954993,0.0628574160000425,50,mac,phase-15,without +18,342.946615110539,0.29807045253451,9.869443872809333,61.86617837049608,0.0619644159996823,50,mac,phase-15,without +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.0605625409989443,50,mac,phase-15,without +20,326.0613287092618,0.2833946845372627,9.38351288801159,58.820141190622984,0.0589135420013917,50,mac,phase-15,without +21,345.1205513106695,0.2999599190532134,9.932006208650844,62.258347643489195,0.0623572080003214,50,mac,phase-15,without +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113,50,mac,phase-15,without +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.0601117920014075,50,mac,phase-15,without +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.0609711670003889,50,mac,phase-15,without +25,345.27367635482636,0.3000930069718432,9.936412897512144,62.28597078037814,0.0623848750001343,50,mac,phase-15,without +26,358.1507803712324,0.3112850819257451,10.306994934874671,64.60894811525466,0.0647115410029073,50,mac,phase-15,without +27,318.84747151039136,0.2771247941664435,9.175909851288909,57.51879061143516,0.0576101250007923,50,mac,phase-15,without +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.0628379999980097,50,mac,phase-15,without +29,346.3464648714801,0.3010254161123439,9.967286000164275,62.47949747753983,0.0625787089993537,50,mac,phase-15,without +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.3002329485451,0.5093542920003529,50,mac,phase-15,with +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653,50,mac,phase-15,with +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335,50,mac,phase-15,with +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.9709386136346,0.5059579579974525,50,mac,phase-15,with +4,2399.17808339922,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849,50,mac,phase-15,with +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149,50,mac,phase-15,with +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775,50,mac,phase-15,with +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634,50,mac,phase-15,with +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.3990756228805,0.509455125000386,50,mac,phase-15,with +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049,50,mac,phase-15,with +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456,50,mac,phase-15,with +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895,50,mac,phase-15,with +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751,50,mac,phase-15,with +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829,50,mac,phase-15,with +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234,50,mac,phase-15,with +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.7341684884317,0.5016358749999199,50,mac,phase-15,with +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729,50,mac,phase-15,with +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007,50,mac,phase-15,with +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672,50,mac,phase-15,with +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455,50,mac,phase-15,with +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208,50,mac,phase-15,with +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947,50,mac,phase-15,with +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.4623838303456,0.5095197080008802,50,mac,phase-15,with +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746,50,mac,phase-15,with +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.8791917610883,0.506884500002343,50,mac,phase-15,with +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028,50,mac,phase-15,with +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497,50,mac,phase-15,with +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293,50,mac,phase-15,with +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212,50,mac,phase-15,with +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411,50,mac,phase-15,with +0,361.4635469396571,0.1704534315475134,7.124953438686063,62.82913486841347,0.0632451250021404,50,mac,phase-12,without +1,355.6449183357349,0.1677095719776171,7.010260108664397,61.81774823094969,0.0622270419989945,50,mac,phase-12,without +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846,50,mac,phase-12,without +3,359.06288961197356,0.1693213664113805,7.077633115995706,62.41185565923486,0.0628250829977332,50,mac,phase-12,without +4,356.22239586901475,0.1679818899693552,7.02164300071905,61.91812464270435,0.0623280830004659,50,mac,phase-12,without +5,358.4918360781341,0.1690520777506998,7.066376849979254,62.31259585890797,0.0627251660007459,50,mac,phase-12,without +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.0637023749986838,50,mac,phase-12,without +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.0603141669998876,50,mac,phase-12,without +8,331.99176104587264,0.1565555791030239,6.5440232065064015,57.706386457374634,0.0580884590017376,50,mac,phase-12,without +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839,50,mac,phase-12,without +10,355.5541882946238,0.1676667868973987,7.008471692311268,61.80197765038118,0.0622111670018057,50,mac,phase-12,without +11,353.1251946264822,0.1665213593447525,6.960592820610656,61.379773054475784,0.0617861669998092,50,mac,phase-12,without +12,349.0251905083527,0.1645879423315819,6.879775989460126,60.66711554342111,0.061068791001162,50,mac,phase-12,without +13,360.0216334165911,0.1697734760994959,7.09653130095893,62.578503290274206,0.0629928339985781,50,mac,phase-12,without +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.0626576660033606,50,mac,phase-12,without +15,358.13035037901693,0.1688816138729684,7.059251459890081,62.249762873576174,0.0626619169997866,50,mac,phase-12,without +16,362.65327374016647,0.1710144646515922,7.148404622436555,63.03593167057689,0.0634532910007692,50,mac,phase-12,without +17,356.01021613514007,0.1678818335070923,7.017460640596461,61.88124383071425,0.0622909580015402,50,mac,phase-12,without +18,356.18572663045944,0.1679645980526546,7.020920198600964,61.911750842208505,0.0623216669991961,50,mac,phase-12,without +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.0622395829996094,50,mac,phase-12,without +20,344.49440292303365,0.1624513830628282,6.790467812026222,59.8795797969585,0.0602760410001792,50,mac,phase-12,without +21,361.4361650173394,0.1704405192008579,7.124413702595863,62.82437537743625,0.0632403339986922,50,mac,phase-12,without +22,356.7505848359848,0.1682309652154978,7.032054346007811,62.00993377843252,0.0624205000021902,50,mac,phase-12,without +23,339.33422020631144,0.16001802329827,6.688753373867688,58.98264338774234,0.0593731659973855,50,mac,phase-12,without +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.0574885409987473,50,mac,phase-12,without +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.0593831249971117,50,mac,phase-12,without +26,340.30344013425093,0.1604750731558289,6.7078580579136515,59.15111196523856,0.0595427500011283,50,mac,phase-12,without +27,342.4523851103312,0.1614884396445964,6.750216777144131,59.52463885299824,0.0599187500010884,50,mac,phase-12,without +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.0670434999992721,50,mac,phase-12,without +29,331.530252230005,0.1563379478590988,6.5349262205103305,57.62616758086382,0.0580077089980477,50,mac,phase-12,without +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472,50,mac,phase-12,with +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257,50,mac,phase-12,with +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665,50,mac,phase-12,with +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586,50,mac,phase-12,with +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182,50,mac,phase-12,with +5,2469.989166352668,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784,50,mac,phase-12,with +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424,50,mac,phase-12,with +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046,50,mac,phase-12,with +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.4442793542444,0.5079350840023835,50,mac,phase-12,with +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228,50,mac,phase-12,with +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109,50,mac,phase-12,with +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367,50,mac,phase-12,with +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832,50,mac,phase-12,with +13,2470.881336761855,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803,50,mac,phase-12,with +14,2547.5194825611934,4.865732743169632,81.99787643947133,515.5963421582637,0.5212308749978547,50,mac,phase-12,with +15,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149,50,mac,phase-12,with +16,2459.7036085349296,4.698005439592715,79.17131702074202,497.8231538700816,0.5032634579984006,50,mac,phase-12,with +17,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562,50,mac,phase-12,with +18,2454.901026991713,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756,50,mac,phase-12,with +19,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631,50,mac,phase-12,with +20,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852,50,mac,phase-12,with +21,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367,50,mac,phase-12,with +22,2476.252506411417,4.729613643106841,79.70398202784979,501.1725104776664,0.5066494169986981,50,mac,phase-12,with +23,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254,50,mac,phase-12,with +24,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172,50,mac,phase-12,with +25,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842,50,mac,phase-12,with +26,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839,50,mac,phase-12,with +27,2498.7167098677137,4.772520011852896,80.42704498847873,505.7190747771163,0.5112456669994572,50,mac,phase-12,with +28,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802,50,mac,phase-12,with +29,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411,50,mac,phase-12,with +0,353.39992586587454,1.1889836975204853,9.545840542950184,63.42378752202132,0.0643312920001335,50,mac,phase-24,without +1,352.47862696982486,1.1858840665138777,9.52095493401142,63.25844434804028,0.064163582999754,50,mac,phase-24,without +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.0613242500003252,50,mac,phase-24,without +3,347.78700620443374,1.170099511405862,9.39422750585849,62.41645107984983,0.0633095420016616,50,mac,phase-24,without +4,349.67239785603925,1.1764427496838772,9.445154647461983,62.75481753313711,0.0636527499991643,50,mac,phase-24,without +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.058231708000676,50,mac,phase-24,without +6,343.4510799857494,1.155511660050104,9.277107899259406,61.6382934089584,0.0625202499977604,50,mac,phase-24,without +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.0598008329980075,50,mac,phase-24,without +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774,50,mac,phase-24,without +9,350.0937884628729,1.1778604821878835,9.456537014137009,62.8304434355651,0.0637294580010348,50,mac,phase-24,without +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.0639502499980153,50,mac,phase-24,without +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.0675257500006409,50,mac,phase-24,without +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.0621744999989459,50,mac,phase-24,without +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.0641838340015965,50,mac,phase-24,without +14,350.38540207791414,1.1788415911493797,9.464413917513587,62.882778590739754,0.0637825419980799,50,mac,phase-24,without +15,348.5869825268699,1.1727909630337834,9.415836017499805,62.56002079954495,0.0634551660004945,50,mac,phase-24,without +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.062153541999578,50,mac,phase-24,without +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.0602440830007253,50,mac,phase-24,without +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.0638145829980203,50,mac,phase-24,without +19,346.13004814041824,1.1645248183134325,9.34947068417356,62.1190810226051,0.0630079170005046,50,mac,phase-24,without +20,348.3924269467375,1.172136397494551,9.410580791313391,62.525104403495035,0.063419750000321,50,mac,phase-24,without +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.064945041998726,50,mac,phase-24,without +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.0636446669996075,50,mac,phase-24,without +23,350.6754061403116,1.179817284909248,9.472247344557106,62.934824883587595,0.0638353329995879,50,mac,phase-24,without +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047,50,mac,phase-24,without +25,354.05204084193906,1.191177682348156,9.563455106852338,63.54082094125735,0.0644500000016705,50,mac,phase-24,without +26,348.6677854950157,1.173062817680049,9.418018621945537,62.57452230310432,0.0634698750000097,50,mac,phase-24,without +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.0643432079996273,50,mac,phase-24,without +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307,50,mac,phase-24,without +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.0573486249995767,50,mac,phase-24,without +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552,50,mac,phase-24,with +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887,50,mac,phase-24,with +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551,50,mac,phase-24,with +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776,50,mac,phase-24,with +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338,50,mac,phase-24,with +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639,50,mac,phase-24,with +6,2337.365944846139,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552,50,mac,phase-24,with +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931,50,mac,phase-24,with +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839,50,mac,phase-24,with +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006,50,mac,phase-24,with +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587,50,mac,phase-24,with +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081,50,mac,phase-24,with +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149,50,mac,phase-24,with +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471,50,mac,phase-24,with +14,2353.790095061217,3.1273854940882333,76.58767454671397,495.2913601116121,0.5069090830002096,50,mac,phase-24,with +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043,50,mac,phase-24,with +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.8088451449525,0.5064152499980992,50,mac,phase-24,with +17,2369.900043850338,3.148790130066317,77.11186041928363,498.6812624074177,0.5103784999992058,50,mac,phase-24,with +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193,50,mac,phase-24,with +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772,50,mac,phase-24,with +20,2361.406654310874,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665,50,mac,phase-24,with +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113,50,mac,phase-24,with +22,2365.186005455824,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555,50,mac,phase-24,with +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592,50,mac,phase-24,with +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598,50,mac,phase-24,with +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374,50,mac,phase-24,with +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287,50,mac,phase-24,with +27,2323.0195285501377,3.08650188957586,75.58646116812372,488.8165279799557,0.5002823750000971,50,mac,phase-24,with +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055,50,mac,phase-24,with +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038,50,mac,phase-24,with +0,336.97433817066894,0.3673290773835455,10.452181929186342,62.212188287776854,0.0631597079991479,50,mac,phase-23,without +1,330.7703056824168,0.3605661839764725,10.259746871330536,61.066800068015304,0.0619968749997497,50,mac,phase-23,without +2,334.2737986243397,0.3643852725069603,10.368417299516231,61.713614789133366,0.0626535410010546,50,mac,phase-23,without +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.0619690830026229,50,mac,phase-23,without +4,339.2787336454407,0.3698410534238279,10.523659065605283,62.6376256844174,0.0635916249993897,50,mac,phase-23,without +5,326.52765323109134,0.3559413522487369,10.12814938671406,60.28352174903609,0.0612016669983859,50,mac,phase-23,without +6,347.80605915722936,0.3791365227162345,10.7881574191074,64.21194016548591,0.06518991700068,50,mac,phase-23,without +7,312.5587912483423,0.3407141714133153,9.694866877487971,57.70459103118241,0.0585834580015216,50,mac,phase-23,without +8,375.7459972937605,0.4095932980112343,11.65479111613785,69.37021038135724,0.0704267500004789,50,mac,phase-23,without +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.0596813330012082,50,mac,phase-23,without +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925,50,mac,phase-23,without +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.0633084999972197,50,mac,phase-23,without +12,337.0256901842581,0.3673850552003606,10.453774752519353,62.22166889438835,0.0631693329996778,50,mac,phase-23,without +13,317.6766526799566,0.3462930511821943,9.853611365456985,58.64945039567527,0.0595427080006629,50,mac,phase-23,without +14,328.40589370391314,0.3579887851296248,10.186408158688415,60.630282426953734,0.0615537089979625,50,mac,phase-23,without +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.0640058329991006,50,mac,phase-23,without +16,331.6672985956367,0.3615439782530971,10.287569563019948,61.23240286232,0.0621649999993678,50,mac,phase-23,without +17,337.1901926729352,0.3675643761175589,10.458877247708722,62.252039337001115,0.0632001659978414,50,mac,phase-23,without +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.0598262499988777,50,mac,phase-23,without +19,401.922184598819,0.4381274433244484,12.466717250959304,74.20285699213157,0.0753330000006826,50,mac,phase-23,without +20,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.0641347500022675,50,mac,phase-23,without +21,337.3818197078384,0.3677732649674187,10.464821084982006,62.28741751220919,0.0632360829986282,50,mac,phase-23,without +22,338.1547675106831,0.3686158401166896,10.488796177865805,62.43011910339933,0.0633809579994704,50,mac,phase-23,without +23,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.0613165419999859,50,mac,phase-23,without +24,335.28106096612464,0.3654832693119979,10.399660299514125,61.8995755207502,0.0628423339985602,50,mac,phase-23,without +25,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.0611921659983636,50,mac,phase-23,without +26,330.93325561554514,0.3607438124834998,10.264801209757769,61.09688387788729,0.0620274169996264,50,mac,phase-23,without +27,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.0632555420015705,50,mac,phase-23,without +28,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.0624289170009433,50,mac,phase-23,without +29,344.64868676424874,0.3756947333670336,10.690222867625591,63.6290262057076,0.0645981249981559,50,mac,phase-23,without +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767,50,mac,phase-23,with +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903,50,mac,phase-23,with +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114,50,mac,phase-23,with +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558,50,mac,phase-23,with +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153,50,mac,phase-23,with +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502,50,mac,phase-23,with +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542,50,mac,phase-23,with +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336,50,mac,phase-23,with +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.8935984536096,0.5130170830016141,50,mac,phase-23,with +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846,50,mac,phase-23,with +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546,50,mac,phase-23,with +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943,50,mac,phase-23,with +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843,50,mac,phase-23,with +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183,50,mac,phase-23,with +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798,50,mac,phase-23,with +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369,50,mac,phase-23,with +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819,50,mac,phase-23,with +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662,50,mac,phase-23,with +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346,50,mac,phase-23,with +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835,50,mac,phase-23,with +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325,50,mac,phase-23,with +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111,50,mac,phase-23,with +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748,50,mac,phase-23,with +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375,50,mac,phase-23,with +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.9742481356192,0.5100448750017677,50,mac,phase-23,with +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458,50,mac,phase-23,with +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488,50,mac,phase-23,with +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479,50,mac,phase-23,with +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.6574274029951,0.5066679999981716,50,mac,phase-23,with +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148,50,mac,phase-23,with +0,355.6184613008034,1.350364386940586,9.688864476298706,63.33208974751349,0.0633423750005022,50,mac,phase-8,without +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.0620757910000975,50,mac,phase-8,without +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.0616344580012082,50,mac,phase-8,without +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.0619627089981804,50,mac,phase-8,without +4,346.1149788313074,1.314277496986168,9.429941040875756,61.639614608651286,0.0616496250004274,50,mac,phase-8,without +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.0632156659994507,50,mac,phase-8,without +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.059909499999776,50,mac,phase-8,without +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.0650283340000896,50,mac,phase-8,without +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.0629628749993571,50,mac,phase-8,without +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.062907957999414,50,mac,phase-8,without +10,355.0965683959524,1.3483826405769976,9.67464544613996,63.239145843061195,0.0632494160017813,50,mac,phase-8,without +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.8239970686508,0.0608338750025723,50,mac,phase-8,without +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.0635719999991124,50,mac,phase-8,without +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.0622212499984016,50,mac,phase-8,without +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.0643149170027754,50,mac,phase-8,without +15,362.2671094199502,1.3756108198972858,9.870007632763024,64.5161474531827,0.0645266249994165,50,mac,phase-8,without +16,347.40601521064906,1.3191798565052175,9.465115470424935,61.86953527009471,0.0618795830014278,50,mac,phase-8,without +17,352.59402676578674,1.3388799193688503,9.6064634214715,62.79346821839908,0.0628036659982171,50,mac,phase-8,without +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.0598259170001256,50,mac,phase-8,without +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.0626170420000562,50,mac,phase-8,without +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.0627399590011918,50,mac,phase-8,without +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.0636519170002429,50,mac,phase-8,without +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.0601820419979048,50,mac,phase-8,without +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.0630970829988655,50,mac,phase-8,without +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284,50,mac,phase-8,without +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.0654218749987194,50,mac,phase-8,without +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.0600325829982466,50,mac,phase-8,without +27,355.2156405220305,1.3488347845909645,9.677889579440173,63.260351397316235,0.0632706249998591,50,mac,phase-8,without +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.0624030420003691,50,mac,phase-8,without +29,347.1143112188389,1.3180721899329368,9.45716796276882,61.81758570785473,0.0618276250024791,50,mac,phase-8,without +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184,50,mac,phase-8,with +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056,50,mac,phase-8,with +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889,50,mac,phase-8,with +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905,50,mac,phase-8,with +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046,50,mac,phase-8,with +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422,50,mac,phase-8,with +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449,50,mac,phase-8,with +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683,50,mac,phase-8,with +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593,50,mac,phase-8,with +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301,50,mac,phase-8,with +10,2398.899124274176,3.010699789112236,85.65606323089648,496.23611139444426,0.5013167500001146,50,mac,phase-8,with +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011,50,mac,phase-8,with +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.1014435686768,0.4971397500012244,50,mac,phase-8,with +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381,50,mac,phase-8,with +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393,50,mac,phase-8,with +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535,50,mac,phase-8,with +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158,50,mac,phase-8,with +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682,50,mac,phase-8,with +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018,50,mac,phase-8,with +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.3395799506389,0.5074827079988609,50,mac,phase-8,with +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256,50,mac,phase-8,with +21,2413.457682465012,3.028971273574173,86.17589700311575,499.2476937619672,0.5043591659996309,50,mac,phase-8,with +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458,50,mac,phase-8,with +23,2440.0641737605915,3.062363322836291,87.12591915190285,504.75151076067624,0.5099193329988339,50,mac,phase-8,with +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291,50,mac,phase-8,with +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119,50,mac,phase-8,with +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032,50,mac,phase-8,with +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706,50,mac,phase-8,with +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758,50,mac,phase-8,with +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817,50,mac,phase-8,with +0,393.6707450554323,0.3406635038555142,11.684758182244138,66.53158230298193,0.0646891249998589,50,mac,phase-1,without +1,373.5110006248911,0.3232182421468424,11.086385705636696,63.12452269127834,0.0613764169975183,50,mac,phase-1,without +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.0637857080000685,50,mac,phase-1,without +3,390.9730568158952,0.3383290557423807,11.60468661196366,66.07566458648697,0.0642458330003137,50,mac,phase-1,without +4,408.3709649248352,0.3533843587096185,12.121083503739916,69.0159652559885,0.0671047080031712,50,mac,phase-1,without +5,401.99100267653665,0.3478634498758537,11.931716330741784,67.93773176075425,0.0660563339988584,50,mac,phase-1,without +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.0639412919990718,50,mac,phase-1,without +7,383.0780350607198,0.3314970881453096,11.37035012338412,64.74138131477898,0.0629484999990381,50,mac,phase-1,without +8,386.1588591424435,0.3341630833700618,11.46179375959312,65.26205018217308,0.0634547499976179,50,mac,phase-1,without +9,361.0748654835688,0.3124566160293949,10.717261929808243,61.02277711054082,0.0593328750001092,50,mac,phase-1,without +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331,50,mac,phase-1,without +11,339.917840818384,0.2941483565406576,10.089288629344557,57.44717403239043,0.0558562910009641,50,mac,phase-1,without +12,384.8334749313357,0.3330161603767183,11.422454300921435,65.03805612157308,0.0632369589984591,50,mac,phase-1,without +13,403.7246257549707,0.349363642917074,11.98317295205564,68.23071946170457,0.0663412079993577,50,mac,phase-1,without +14,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.0640180000009422,50,mac,phase-1,without +15,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.0618219169991789,50,mac,phase-1,without +16,374.7899823012124,0.3243250106448705,11.12434786511906,63.34067457894322,0.0615865829968242,50,mac,phase-1,without +17,399.8438036989407,0.3460053683791456,11.867984135404695,67.57484844444714,0.0657035000003816,50,mac,phase-1,without +18,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.0624640830028511,50,mac,phase-1,without +19,390.02142447908176,0.3375055594315349,11.576440688501648,65.91483575697877,0.0640894579992163,50,mac,phase-1,without +20,398.35714556030706,0.3447188867776973,11.82385781647502,67.32359858768429,0.0654592079990834,50,mac,phase-1,without +21,394.6685243299055,0.3415269334803613,11.714373818376393,66.70021010871457,0.0648530830003437,50,mac,phase-1,without +22,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.0662763340005767,50,mac,phase-1,without +23,374.6576210026007,0.3242104716187268,11.120419176522333,63.31830510713735,0.061564833002194,50,mac,phase-1,without +24,387.9335659886732,0.3356988283044939,11.514469810844142,65.56198116786766,0.0637463750026654,50,mac,phase-1,without +25,384.9361629864913,0.3331050216220935,11.425502241637808,65.05541072279487,0.0632538329991803,50,mac,phase-1,without +26,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.0623021250030433,50,mac,phase-1,without +27,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.0612962499981222,50,mac,phase-1,without +28,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.0624532500005443,50,mac,phase-1,without +29,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.0630722080022678,50,mac,phase-1,without +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713,50,mac,phase-1,with +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006,50,mac,phase-1,with +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059,50,mac,phase-1,with +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968,50,mac,phase-1,with +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581,50,mac,phase-1,with +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476,50,mac,phase-1,with +6,2441.8114041555423,3.618640059947563,85.3731006735777,503.0244742591923,0.5088992080018215,50,mac,phase-1,with +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948,50,mac,phase-1,with +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731,50,mac,phase-1,with +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782,50,mac,phase-1,with +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501,50,mac,phase-1,with +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053,50,mac,phase-1,with +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794,50,mac,phase-1,with +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086,50,mac,phase-1,with +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143,50,mac,phase-1,with +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084,50,mac,phase-1,with +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.4943381562488,0.5113979170018865,50,mac,phase-1,with +17,2419.5950410391,3.585716542012196,84.59634952821366,498.4478004187879,0.5042690839982242,50,mac,phase-1,with +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158,50,mac,phase-1,with +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739,50,mac,phase-1,with +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313,50,mac,phase-1,with +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094,50,mac,phase-1,with +22,2415.987574562841,3.580370460540182,84.47022160607762,497.7046455934235,0.5035172499992768,50,mac,phase-1,with +23,2406.058253789995,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208,50,mac,phase-1,with +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778,50,mac,phase-1,with +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196,50,mac,phase-1,with +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.2896519401702,0.5071441250001953,50,mac,phase-1,with +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398,50,mac,phase-1,with +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694,50,mac,phase-1,with +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691,50,mac,phase-1,with +0,240.42885516643568,0.0,0.0,53.41728600341795,0.0619687500002328,50,mac,phase-30,without +1,228.54878409089892,0.0,0.0,50.77783095987262,0.0589067500004603,50,mac,phase-30,without +2,213.1201140526296,0.0,0.0,47.34996586640836,0.0549301249993732,50,mac,phase-30,without +3,237.0842698478049,0.0,0.0,52.67420268921069,0.0611067079989879,50,mac,phase-30,without +4,238.04340130189988,0.0,0.0,52.88729774039662,0.0613539170008152,50,mac,phase-30,without +5,237.9774440222685,0.0,0.0,52.872643680393544,0.0613369170023361,50,mac,phase-30,without +6,233.25082854773103,0.0,0.0,51.82250778694279,0.0601186670028255,50,mac,phase-30,without +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123,50,mac,phase-30,without +8,239.07317300806952,0.0,0.0,53.11608729108766,0.0616193330024543,50,mac,phase-30,without +9,234.15515335358452,0.0,0.0,52.02342616989155,0.0603517499985173,50,mac,phase-30,without +10,235.7027246756318,0.0,0.0,52.3672578612385,0.060750625001674,50,mac,phase-30,without +11,231.79378555125,0.0,0.0,51.49878922825138,0.0597431250025692,50,mac,phase-30,without +12,238.1722430460066,0.0,0.0,52.91592315763018,0.0613871250025113,50,mac,phase-30,without +13,238.895348273858,0.0,0.0,53.076579076987144,0.0615734999992128,50,mac,phase-30,without +14,245.18230748969597,0.0,0.0,54.473384374303734,0.0631939169979887,50,mac,phase-30,without +15,239.73953556253844,0.0,0.0,53.26413640578063,0.0617910829969332,50,mac,phase-30,without +16,237.05193913270705,0.0,0.0,52.6670196118971,0.0610983749975275,50,mac,phase-30,without +17,238.06603239878575,0.0,0.0,52.89232580482793,0.0613597499977913,50,mac,phase-30,without +18,238.4611281800858,0.0,0.0,52.98010621843028,0.061461582998163,50,mac,phase-30,without +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632,50,mac,phase-30,without +20,236.73621713579013,0.0,0.0,52.59687407052601,0.0610169999999925,50,mac,phase-30,without +21,239.5788481011822,0.0,0.0,53.22843566564073,0.0617496669983665,50,mac,phase-30,without +22,240.51291579071105,0.0,0.0,53.43596217440181,0.0619904160012083,50,mac,phase-30,without +23,237.5108932275132,0.0,0.0,52.76898774765905,0.0612166670034639,50,mac,phase-30,without +24,237.61047320422924,0.0,0.0,52.79111193110106,0.0612423330021556,50,mac,phase-30,without +25,235.96202604191544,0.0,0.0,52.42486814780024,0.0608174580011109,50,mac,phase-30,without +26,250.0384126471728,0.0,0.0,55.55228964081196,0.0644455420006124,50,mac,phase-30,without +27,216.35622292125151,0.0,0.0,48.068948423030825,0.0557642080020741,50,mac,phase-30,without +28,237.4518847231131,0.0,0.0,52.75587753194059,0.0612014580001414,50,mac,phase-30,without +29,235.66344128962425,0.0,0.0,52.35853007411787,0.0607405000009748,50,mac,phase-30,without +0,1521.3288350694506,1.7571209502823384,0.0,461.5145757491573,0.503729125000973,50,mac,phase-30,with +1,1495.508336847177,1.7272985099740834,0.0,453.6815971005006,0.495179667002958,50,mac,phase-30,with +2,1500.021420887732,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655,50,mac,phase-30,with +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.4942111669988662,50,mac,phase-30,with +4,1500.8048946803583,1.7334159860374627,0.0,455.2883757173012,0.4969334170018555,50,mac,phase-30,with +5,1504.431192242494,1.737604326698274,0.0,456.3884595008659,0.4981341249986144,50,mac,phase-30,with +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176,50,mac,phase-30,with +7,1501.5407983498535,1.7342659480741058,0.0,455.5116215153104,0.4971770830015884,50,mac,phase-30,with +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.4967821669997647,50,mac,phase-30,with +9,1494.8181096605138,1.7265013038591517,0.0,453.47220784823634,0.4949511250015348,50,mac,phase-30,with +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753,50,mac,phase-30,with +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.4975821669977449,50,mac,phase-30,with +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215,50,mac,phase-30,with +13,1495.377338579858,1.727147208168287,0.0,453.6418570992782,0.4951362920000974,50,mac,phase-30,with +14,1493.8437393132476,1.7253759149813177,0.0,453.1766201310545,0.4946284999969066,50,mac,phase-30,with +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.4986748330011323,50,mac,phase-30,with +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988,50,mac,phase-30,with +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807,50,mac,phase-30,with +18,1510.2273283587142,1.7442988111290731,0.0,458.1467915846323,0.5000532909980393,50,mac,phase-30,with +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.498009249997267,50,mac,phase-30,with +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538,50,mac,phase-30,with +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508,50,mac,phase-30,with +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381,50,mac,phase-30,with +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588,50,mac,phase-30,with +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561,50,mac,phase-30,with +25,1492.5965513345484,1.723935424223635,0.0,452.79826969320027,0.4942155419994378,50,mac,phase-30,with +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.4946941249982046,50,mac,phase-30,with +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.493535375000647,50,mac,phase-30,with +28,1487.032962421571,1.7175095296948537,0.0,451.1104837802367,0.4923733750001702,50,mac,phase-30,with +29,1498.2415539693543,1.730455350859723,0.0,454.5107535008094,0.4960846659996605,50,mac,phase-30,with +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.0633080840016191,50,mac,phase-6,without +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.0627279159998579,50,mac,phase-6,without +2,365.8669906637541,0.2818969397389996,11.45206317689686,66.06959525132802,0.0661166249992675,50,mac,phase-6,without +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.0625610419992881,50,mac,phase-6,without +4,345.2937631135986,0.2660454690271394,10.80809717922754,62.35440680323581,0.0623987920007493,50,mac,phase-6,without +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.0622929999990446,50,mac,phase-6,without +6,352.2442682349835,0.2714007652778453,11.025656089412466,63.609554361995,0.0636548330003279,50,mac,phase-6,without +7,336.95937238273893,0.2596239024426381,10.547221036732171,60.84935213499331,0.0608926660024735,50,mac,phase-6,without +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.0629278330015949,50,mac,phase-6,without +9,337.41659112344763,0.259976185012769,10.561532516143744,60.93191836236774,0.0609752910022507,50,mac,phase-6,without +10,334.9993053726752,0.2581136899722047,10.485868655120818,60.49539608723549,0.0605384580012469,50,mac,phase-6,without +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.0598098330010543,50,mac,phase-6,without +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.061172333000286,50,mac,phase-6,without +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.0605532500012486,50,mac,phase-6,without +14,352.943817073241,0.2719397608192168,11.047552783280684,63.73588144200393,0.0637812500026484,50,mac,phase-6,without +15,345.08740182486946,0.2658864696714779,10.801637830403791,62.31714132925264,0.0623615000004065,50,mac,phase-6,without +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.0611053329994319,50,mac,phase-6,without +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.0642670829984126,50,mac,phase-6,without +18,352.07434056761844,0.2712698376712845,11.020337155395934,63.57886820420732,0.0636241249994782,50,mac,phase-6,without +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.0631787919992348,50,mac,phase-6,without +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.0635585829986666,50,mac,phase-6,without +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.0643522919999668,50,mac,phase-6,without +22,345.28015583657924,0.2660349847532152,10.807671255599368,62.35194955153482,0.0623963329999242,50,mac,phase-6,without +23,344.455645883133,0.26539970789416,10.781863133200252,62.20305653769376,0.0622473340008582,50,mac,phase-6,without +24,346.3271743070028,0.2668417022494483,10.84044415388384,62.54102396471446,0.0625855420003063,50,mac,phase-6,without +25,339.3314757733539,0.2614515849163855,10.621470637228162,61.277715214777864,0.0613213340002403,50,mac,phase-6,without +26,351.40222764763104,0.2707519812367377,10.999299237742472,63.45749560236042,0.063502666002023,50,mac,phase-6,without +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.0622202090016799,50,mac,phase-6,without +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.0623814999999012,50,mac,phase-6,without +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.0635208330022578,50,mac,phase-6,without +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.0407597657533,0.5058008339983644,50,mac,phase-6,with +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779,50,mac,phase-6,with +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403,50,mac,phase-6,with +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998,50,mac,phase-6,with +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058,50,mac,phase-6,with +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037,50,mac,phase-6,with +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125,50,mac,phase-6,with +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338,50,mac,phase-6,with +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.4043978970143,0.5051622499995574,50,mac,phase-6,with +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222,50,mac,phase-6,with +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.4935359189019,0.5092656669985445,50,mac,phase-6,with +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208,50,mac,phase-6,with +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372,50,mac,phase-6,with +13,2398.9191436633346,3.949302447235029,88.77633652398067,502.2915339403542,0.5040455000016664,50,mac,phase-6,with +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032,50,mac,phase-6,with +15,2410.4932406132943,3.968356699034115,89.20465689005259,504.7149465536247,0.5064773749982123,50,mac,phase-6,with +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413,50,mac,phase-6,with +17,2373.612793217755,3.907641004826973,87.83982931018615,496.99282863912794,0.4987282920010329,50,mac,phase-6,with +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098,50,mac,phase-6,with +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619,50,mac,phase-6,with +20,2393.140126541887,3.93978854322512,88.56247355569073,501.0815092580857,0.5028312499998719,50,mac,phase-6,with +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148,50,mac,phase-6,with +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179,0.5074979160017392,50,mac,phase-6,with +23,2411.814549757005,3.970531949270705,89.25355432184146,504.991605480774,0.5067549999985204,50,mac,phase-6,with +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327,50,mac,phase-6,with +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187,50,mac,phase-6,with +26,2412.5966695833,3.97181954070628,89.28249807890167,505.15536763520623,0.5069193339986668,50,mac,phase-6,with +27,2417.6673365095417,3.980167299051456,89.47014726859365,506.2170762280991,0.5079847500019241,50,mac,phase-6,with +28,2397.318028700774,3.946666557127332,88.71708437240011,501.95628858926193,0.5037090839978191,50,mac,phase-6,with +29,2408.678545967045,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665,50,mac,phase-6,with +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.0593550839985255,50,mac,phase-7,without +1,359.1743921729426,0.2932833904515045,9.450242581215146,59.406180088121424,0.0579962080009863,50,mac,phase-7,without +2,369.50288557151976,0.3017171085232877,9.721995719083717,61.1144765375504,0.0596639590003178,50,mac,phase-7,without +3,367.9933193312075,0.3004844741408879,9.68227750009528,60.86479959542653,0.0594202079992101,50,mac,phase-7,without +4,368.5615394097468,0.3009484535191182,9.697227946727144,60.95878119615029,0.0595119589997921,50,mac,phase-7,without +5,348.39381726937063,0.2844805258051475,9.166594720388083,57.62311094919821,0.056255458999658,50,mac,phase-7,without +6,365.2779196413032,0.2982672179977979,9.610832579929044,60.41568204555396,0.0589817500003846,50,mac,phase-7,without +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.0610690840003371,50,mac,phase-7,without +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.0594197909995273,50,mac,phase-7,without +9,361.874829413902,0.2954884290260495,9.521293824172709,59.85282290160982,0.0584322499998961,50,mac,phase-7,without +10,366.4269936562932,0.2992054929147739,9.641065882809384,60.605734842625886,0.0591672920018027,50,mac,phase-7,without +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.0612499999988358,50,mac,phase-7,without +12,372.0247519362511,0.3037763352772872,9.788348581157033,61.53158435672162,0.060071167001297,50,mac,phase-7,without +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.0578553330014983,50,mac,phase-7,without +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.0580023749971587,50,mac,phase-7,without +15,374.3120558659924,0.3056440303750618,9.848529867640885,61.90989637485975,0.0604404999976395,50,mac,phase-7,without +16,367.8761650716482,0.3003888119801155,9.679195052692611,60.84542269330562,0.0594012909969023,50,mac,phase-7,without +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.0573772919997281,50,mac,phase-7,without +18,350.9303921671755,0.2865517627930121,9.233334578885946,58.04265150796235,0.0566650420005316,50,mac,phase-7,without +19,373.7742933228857,0.3052049210584259,9.834380789660392,61.82095234327895,0.0603536670023459,50,mac,phase-7,without +20,375.95244447471293,0.3069834875950296,9.891690155839845,62.18121087619322,0.0607053750027262,50,mac,phase-7,without +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.0602809169977263,50,mac,phase-7,without +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292,50,mac,phase-7,without +23,366.183655668,0.2990067955917256,9.63466341351116,60.56548759596843,0.0591280000007827,50,mac,phase-7,without +24,382.3439433397997,0.3122024578169295,10.059856974101065,63.238342288918055,0.0617374159992323,50,mac,phase-7,without +25,366.5838826179828,0.2993336003957399,9.645193790529396,60.63168372460376,0.0591926250017422,50,mac,phase-7,without +26,361.2944833317239,0.2950145481750603,9.506024330085278,59.756835702570555,0.0583385410027403,50,mac,phase-7,without +27,363.4254185231531,0.2967545605796025,9.562091396453855,60.10928488184614,0.058682625000074,50,mac,phase-7,without +28,370.6326000446566,0.3026395754311295,9.75171965278084,61.30132733454991,0.0598463749993243,50,mac,phase-7,without +29,390.4818932754045,0.3188474904262965,10.273974691513995,64.58433056079316,0.0630514580007002,50,mac,phase-7,without +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876,50,mac,phase-7,with +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299,50,mac,phase-7,with +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715,50,mac,phase-7,with +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753,50,mac,phase-7,with +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591,50,mac,phase-7,with +5,2569.226557781062,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354,50,mac,phase-7,with +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132,50,mac,phase-7,with +7,2536.397739459655,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457,50,mac,phase-7,with +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515,50,mac,phase-7,with +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187,50,mac,phase-7,with +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992,50,mac,phase-7,with +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.0401821950901,0.5058779999999388,50,mac,phase-7,with +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219,50,mac,phase-7,with +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024,50,mac,phase-7,with +14,2717.7183010787217,4.573731420434627,86.29815718866575,543.2458358441811,0.542000666999229,50,mac,phase-7,with +15,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052,50,mac,phase-7,with +16,2522.4157528639216,4.245050776489145,80.09653945716727,504.2067286617571,0.5030510409997078,50,mac,phase-7,with +17,2532.4287624670173,4.2619019772249285,80.414491570275,506.2082332948864,0.5050479580022511,50,mac,phase-7,with +18,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621,50,mac,phase-7,with +19,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573,50,mac,phase-7,with +20,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543,50,mac,phase-7,with +21,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337,50,mac,phase-7,with +22,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537,50,mac,phase-7,with +23,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612,50,mac,phase-7,with +24,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669,50,mac,phase-7,with +25,2557.594577302347,4.304254298283186,81.21360435675406,511.2386384363951,0.5100668329978362,50,mac,phase-7,with +26,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346,50,mac,phase-7,with +27,2521.414791373941,4.243366227720586,80.06475502536362,504.0066460553087,0.5028514170007838,50,mac,phase-7,with +28,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381,50,mac,phase-7,with +29,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018,50,mac,phase-7,with +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.0633631250020698,50,mac,phase-9,without +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774,50,mac,phase-9,without +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.0619897500000661,50,mac,phase-9,without +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.0622673330035468,50,mac,phase-9,without +4,344.6413629741717,1.1293182672630917,9.864927216974651,62.4778723741728,0.0624052500024845,50,mac,phase-9,without +5,350.37501142418506,1.148106244065371,10.029045720218097,63.51728956138127,0.0634434590028831,50,mac,phase-9,without +6,331.7819094104552,1.0871805050072745,9.496841470210605,60.146662644667146,0.0600767500000074,50,mac,phase-9,without +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.0627374579999013,50,mac,phase-9,without +8,344.36385060606943,1.1284089167893565,9.856983773130557,62.42756389649351,0.062355000001844,50,mac,phase-9,without +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.0639817500014032,50,mac,phase-9,without +10,333.26358795573077,1.0920356582974986,9.539252662186971,60.4152668605175,0.0603450419985165,50,mac,phase-9,without +11,344.4812065706353,1.1287934679454126,9.860342940581988,62.44883862368592,0.0623762499999429,50,mac,phase-9,without +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.059838374996616,50,mac,phase-9,without +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.0641008340026019,50,mac,phase-9,without +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.0602028339999378,50,mac,phase-9,without +15,332.94188901480146,1.0909815175889794,9.530044433056672,60.3569480760256,0.0602867910019995,50,mac,phase-9,without +16,331.5582427131216,1.0864475956289643,9.490439291229483,60.106115511120066,0.0600362499972106,50,mac,phase-9,without +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.0640001250030763,50,mac,phase-9,without +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.0596638749993871,50,mac,phase-9,without +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.0622371659992495,50,mac,phase-9,without +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.062508709001122,50,mac,phase-9,without +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.0640984580022632,50,mac,phase-9,without +22,353.40509298276,1.1580351928887662,10.115778008469515,64.06659405364027,0.0639921250003681,50,mac,phase-9,without +23,374.3218432757152,1.2265750454292903,10.714493779191155,67.85846060154398,0.0677795839983446,50,mac,phase-9,without +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.0640302499996323,50,mac,phase-9,without +25,352.0352477660601,1.1535464942218625,10.07656790540862,63.81826340092126,0.0637440829996194,50,mac,phase-9,without +26,353.2720858728606,1.1575993561755262,10.111970846592095,64.04248202841661,0.0639680410022265,50,mac,phase-9,without +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.0626107079988287,50,mac,phase-9,without +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.0622674580008606,50,mac,phase-9,without +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.0635365420021116,50,mac,phase-9,without +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081,50,mac,phase-9,with +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.6595778983575,0.5096410420010216,50,mac,phase-9,with +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707,50,mac,phase-9,with +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663,50,mac,phase-9,with +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053,50,mac,phase-9,with +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341,50,mac,phase-9,with +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594,50,mac,phase-9,with +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114,50,mac,phase-9,with +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416,50,mac,phase-9,with +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249,50,mac,phase-9,with +10,2437.183217540223,4.046977031692036,79.90271180753945,501.5575832004443,0.5075140840017411,50,mac,phase-9,with +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847,50,mac,phase-9,with +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441,50,mac,phase-9,with +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.5243528486659,0.5064685830002418,50,mac,phase-9,with +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114,50,mac,phase-9,with +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727,50,mac,phase-9,with +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319,50,mac,phase-9,with +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087,50,mac,phase-9,with +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663,50,mac,phase-9,with +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326,50,mac,phase-9,with +20,2401.802815837927,3.988227376749909,78.74277027318622,494.2765102623276,0.5001465409986849,50,mac,phase-9,with +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738,50,mac,phase-9,with +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097,50,mac,phase-9,with +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266,50,mac,phase-9,with +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476,50,mac,phase-9,with +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851,50,mac,phase-9,with +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238,50,mac,phase-9,with +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105,50,mac,phase-9,with +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783,50,mac,phase-9,with +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012,50,mac,phase-9,with +0,355.0041249267728,0.0,0.0,73.82307578403244,0.1089681670018762,500,mac,phase-19,without +1,353.4402104749345,0.0,0.0,73.49785991471933,0.1084881249989848,500,mac,phase-19,without +2,350.8823752799278,0.0,0.0,72.96595831644073,0.1077030000014929,500,mac,phase-19,without +3,350.97739756413245,0.0,0.0,72.98571819187727,0.1077321669981756,500,mac,phase-19,without +4,352.6420323212576,0.0,0.0,73.33187883959745,0.1082431249997171,500,mac,phase-19,without +5,354.0361270375474,0.0,0.0,73.62178071020813,0.1086710410017985,500,mac,phase-19,without +6,334.5734779261205,0.0,0.0,69.57452458154408,0.102696999998443,500,mac,phase-19,without +7,353.746994323176,0.0,0.0,73.56165558831248,0.1085822919994825,500,mac,phase-19,without +8,351.5615043409446,0.0,0.0,73.10718314347316,0.1079114579988527,500,mac,phase-19,without +9,344.2555939822133,0.0,0.0,71.58791974281488,0.1056689159995585,500,mac,phase-19,without +10,353.00555848573197,0.0,0.0,73.40747407273736,0.1083547089983767,500,mac,phase-19,without +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889,500,mac,phase-19,without +12,354.5682479676913,0.0,0.0,73.73243520967453,0.1088343749979685,500,mac,phase-19,without +13,340.24380070376134,0.0,0.0,70.75366769212076,0.1044374999983119,500,mac,phase-19,without +14,357.4707397539094,0.0,0.0,74.33600811503362,0.1097252919971651,500,mac,phase-19,without +15,353.83101804782274,0.0,0.0,73.57912831428018,0.108608082999126,500,mac,phase-19,without +16,353.14374430898687,0.0,0.0,73.43620980222931,0.1083971250009199,500,mac,phase-19,without +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538,500,mac,phase-19,without +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631,500,mac,phase-19,without +19,356.9293892674415,0.0,0.0,74.22343433016144,0.1095591249977587,500,mac,phase-19,without +20,337.23407287000106,0.0,0.0,70.12779506033984,0.1035136669997882,500,mac,phase-19,without +21,353.29401357030446,0.0,0.0,73.46745828157741,0.1084432500028924,500,mac,phase-19,without +22,353.32387845566024,0.0,0.0,73.47366868179559,0.1084524170000804,500,mac,phase-19,without +23,354.1508333805749,0.0,0.0,73.64563388390287,0.1087062500009778,500,mac,phase-19,without +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099,500,mac,phase-19,without +25,352.473707948533,0.0,0.0,73.29687580145946,0.1081914579990552,500,mac,phase-19,without +26,360.93358193698526,0.0,0.0,75.0561058349181,0.1107882079995761,500,mac,phase-19,without +27,338.47464045384555,0.0,0.0,70.38577097759506,0.1038944579995586,500,mac,phase-19,without +28,355.80325111504544,0.0,0.0,73.98925400286308,0.1092134579994308,500,mac,phase-19,without +29,354.60680161162924,0.0,0.0,73.7404524364568,0.108846209001058,500,mac,phase-19,without +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375,500,mac,phase-19,with +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712,500,mac,phase-19,with +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556,500,mac,phase-19,with +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808,500,mac,phase-19,with +4,2897.009265067062,2.535967566748408,0.0,577.366405361154,0.6108203750009125,500,mac,phase-19,with +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125,500,mac,phase-19,with +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013,500,mac,phase-19,with +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129,500,mac,phase-19,with +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921,500,mac,phase-19,with +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624,500,mac,phase-19,with +10,2892.0727798560765,2.531646294276225,0.0,576.3825767087042,0.6097795409987157,500,mac,phase-19,with +11,2929.9184866037235,2.5647754547556207,0.0,583.9251275478487,0.6177591250016121,500,mac,phase-19,with +12,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565,500,mac,phase-19,with +13,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538,500,mac,phase-19,with +14,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249,500,mac,phase-19,with +15,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274,500,mac,phase-19,with +16,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156,500,mac,phase-19,with +17,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747,500,mac,phase-19,with +18,2904.8236489370047,2.542808077853171,0.0,578.9237917249135,0.6124679999993532,500,mac,phase-19,with +19,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813,500,mac,phase-19,with +20,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951,500,mac,phase-19,with +21,2887.1623848924046,2.527347860537005,0.0,575.4039477746288,0.608744207998825,500,mac,phase-19,with +22,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676,500,mac,phase-19,with +23,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325,500,mac,phase-19,with +24,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941,500,mac,phase-19,with +25,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643,500,mac,phase-19,with +26,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333,500,mac,phase-19,with +27,2890.892017617972,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591,500,mac,phase-19,with +28,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687,500,mac,phase-19,with +29,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141,500,mac,phase-19,with +0,351.7954310298514,0.0,0.0,73.25457676290097,0.1086488340006326,500,mac,phase-26,without +1,355.551001689785,0.0,0.0,74.0366015276662,0.1098087079990364,500,mac,phase-26,without +2,353.76569761686557,0.0,0.0,73.6648465737376,0.1092573329988226,500,mac,phase-26,without +3,351.52425260491015,0.0,0.0,73.19810911439244,0.1085650829991209,500,mac,phase-26,without +4,352.8167204788052,0.0,0.0,73.46724048657845,0.1089642500010086,500,mac,phase-26,without +5,351.8967485585963,0.0,0.0,73.27567417358975,0.108680125002138,500,mac,phase-26,without +6,333.8565823831006,0.0,0.0,69.51915938870556,0.1031085829999938,500,mac,phase-26,without +7,354.3529740261682,0.0,0.0,73.78713549795803,0.1094387080011074,500,mac,phase-26,without +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363,500,mac,phase-26,without +9,354.08719643537285,0.0,0.0,73.73179246843152,0.1093566249983268,500,mac,phase-26,without +10,352.01722479777135,0.0,0.0,73.30076101421447,0.1087173329979123,500,mac,phase-26,without +11,352.19504125685603,0.0,0.0,73.33778784373752,0.1087722500014933,500,mac,phase-26,without +12,404.253122170483,0.0,0.0,84.17787372334351,0.1248499169996648,500,mac,phase-26,without +13,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644,500,mac,phase-26,without +14,353.63739856928817,0.0,0.0,73.63813078495703,0.1092177089994947,500,mac,phase-26,without +15,349.80761818700586,0.0,0.0,72.84065328453109,0.1080349160001787,500,mac,phase-26,without +16,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222,500,mac,phase-26,without +17,343.3340886156128,0.0,0.0,71.49266628104358,0.106035624998185,500,mac,phase-26,without +18,352.7287560959643,0.0,0.0,73.44892360959012,0.1089370829977269,500,mac,phase-26,without +19,352.0274792749238,0.0,0.0,73.30289631023446,0.108720500000345,500,mac,phase-26,without +20,330.632971611579,0.0,0.0,68.84790495534112,0.102112999997189,500,mac,phase-26,without +21,344.06923077621286,0.0,0.0,71.64574538067167,0.1062626669991004,500,mac,phase-26,without +22,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678,500,mac,phase-26,without +23,353.40008547212716,0.0,0.0,73.58871493426808,0.1091444169978785,500,mac,phase-26,without +24,352.96917436413725,0.0,0.0,73.49898605192921,0.1090113340032985,500,mac,phase-26,without +25,351.45126682709304,0.0,0.0,73.18291124144665,0.1085425420023966,500,mac,phase-26,without +26,352.4323511146662,0.0,0.0,73.38720301989446,0.1088455410026654,500,mac,phase-26,without +27,336.2224182777831,0.0,0.0,70.01179883728538,0.1038392499976907,500,mac,phase-26,without +28,350.4310523596511,0.0,0.0,72.97047136182381,0.1082274580003286,500,mac,phase-26,without +29,349.8513332379995,0.0,0.0,72.84975609621154,0.1080484169979172,500,mac,phase-26,without +0,2862.093422249503,1.6155676119463367,0.0,571.7460807910495,0.6039815000003728,500,mac,phase-26,with +1,2896.950584654971,1.635243455574937,0.0,578.7093216964283,0.6113373329972092,500,mac,phase-26,with +2,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016,500,mac,phase-26,with +3,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356,500,mac,phase-26,with +4,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268,500,mac,phase-26,with +5,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356,500,mac,phase-26,with +6,2884.313628671702,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567,500,mac,phase-26,with +7,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811,500,mac,phase-26,with +8,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459,500,mac,phase-26,with +9,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387,500,mac,phase-26,with +10,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671,500,mac,phase-26,with +11,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383,500,mac,phase-26,with +12,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422,500,mac,phase-26,with +13,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622,500,mac,phase-26,with +14,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879,500,mac,phase-26,with +15,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377,500,mac,phase-26,with +16,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079,500,mac,phase-26,with +17,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865,500,mac,phase-26,with +18,2895.925838535033,1.6346650165103809,0.0,578.5046132919696,0.6111210829985794,500,mac,phase-26,with +19,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398,500,mac,phase-26,with +20,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964,500,mac,phase-26,with +21,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497,500,mac,phase-26,with +22,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405,500,mac,phase-26,with +23,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144,500,mac,phase-26,with +24,2894.0532612962406,1.6336080016993535,0.0,578.1305379075203,0.61072591699849,500,mac,phase-26,with +25,2894.1069651130647,1.6336383159254455,0.0,578.1412660502684,0.610737250000966,500,mac,phase-26,with +26,2887.702792283546,1.630023348599695,0.0,576.8619364911697,0.6093857910018414,500,mac,phase-26,with +27,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123,500,mac,phase-26,with +28,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185,500,mac,phase-26,with +29,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258,500,mac,phase-26,with +0,371.4568880575053,0.0,0.0,76.70321474475051,0.1102369580003141,500,mac,phase-21,without +1,369.29752302591254,0.0,0.0,76.25732116986836,0.1095961249993706,500,mac,phase-21,without +2,361.783124260732,0.0,0.0,74.7056510819143,0.1073660830006701,500,mac,phase-21,without +3,357.0969638630331,0.0,0.0,73.73799217217456,0.1059753749977971,500,mac,phase-21,without +4,366.1550707681201,0.0,0.0,75.60842705024373,0.1086635420033417,500,mac,phase-21,without +5,364.0291189051167,0.0,0.0,75.16943305786498,0.1080326250012149,500,mac,phase-21,without +6,349.3712628459299,0.0,0.0,72.14268966676815,0.1036826250019657,500,mac,phase-21,without +7,361.1163602890243,0.0,0.0,74.5679690473358,0.1071682080000755,500,mac,phase-21,without +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093,500,mac,phase-21,without +9,365.2454143175718,0.0,0.0,75.42058944024481,0.1083935839997138,500,mac,phase-21,without +10,378.791854453436,0.0,0.0,78.21783332015166,0.1124137500009965,500,mac,phase-21,without +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268,500,mac,phase-21,without +12,369.4220575227252,0.0,0.0,76.28303666084257,0.1096330830005172,500,mac,phase-21,without +13,345.8947934099548,0.0,0.0,71.42482336714019,0.1026509160001296,500,mac,phase-21,without +14,353.18188420676984,0.0,0.0,72.92955597063431,0.1048134999982721,500,mac,phase-21,without +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518,500,mac,phase-21,without +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049,500,mac,phase-21,without +17,364.24294838058665,0.0,0.0,75.21358732906856,0.1080960830004187,500,mac,phase-21,without +18,368.872529440838,0.0,0.0,76.16956300662206,0.109469999999419,500,mac,phase-21,without +19,371.3581850954161,0.0,0.0,76.68283328262,0.1102076660026796,500,mac,phase-21,without +20,357.45863551761073,0.0,0.0,73.81267480555692,0.1060827080000308,500,mac,phase-21,without +21,361.21646839471185,0.0,0.0,74.58864066166066,0.1071979170010308,500,mac,phase-21,without +22,365.8029418804323,0.0,0.0,75.53571493059131,0.1085590410002623,500,mac,phase-21,without +23,363.99401755379665,0.0,0.0,75.1621848775924,0.1080222080017847,500,mac,phase-21,without +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562,500,mac,phase-21,without +25,362.63591832244185,0.0,0.0,74.88174701162083,0.1076191659994947,500,mac,phase-21,without +26,366.9264345364295,0.0,0.0,75.76770820148677,0.1088924590003443,500,mac,phase-21,without +27,371.6140000532096,0.0,0.0,76.73565725835823,0.1102835839992621,500,mac,phase-21,without +28,365.9034711798288,0.0,0.0,75.55647351843196,0.1085888749985315,500,mac,phase-21,without +29,368.29253324875754,0.0,0.0,76.04979790358432,0.1092978750020847,500,mac,phase-21,without +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346,500,mac,phase-21,with +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122,500,mac,phase-21,with +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938,500,mac,phase-21,with +3,2875.852308278687,1.3273726080466577,0.0,572.9272019481385,0.6067970830008562,500,mac,phase-21,with +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447,500,mac,phase-21,with +5,2887.2685299862255,1.332641856379874,0.0,575.201541259963,0.6092058750000433,500,mac,phase-21,with +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371,500,mac,phase-21,with +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983,500,mac,phase-21,with +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988,500,mac,phase-21,with +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336,500,mac,phase-21,with +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573,500,mac,phase-21,with +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017,500,mac,phase-21,with +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408,500,mac,phase-21,with +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017,500,mac,phase-21,with +14,2885.526801565024,1.3318379477124145,0.0,574.8545541813708,0.6088383749993227,500,mac,phase-21,with +15,2889.1212408691845,1.3334969898891955,0.0,575.570638260924,0.6095967920009571,500,mac,phase-21,with +16,2872.3532493423795,1.3257575894406517,0.0,572.2301195423212,0.6060587909996684,500,mac,phase-21,with +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522,500,mac,phase-21,with +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246,500,mac,phase-21,with +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503,500,mac,phase-21,with +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753,500,mac,phase-21,with +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069,500,mac,phase-21,with +22,2881.77754512887,1.3301074484515285,0.0,574.1076274378909,0.6080472920002649,500,mac,phase-21,with +23,2921.4931000362635,1.34843848010628,0.0,582.0197589758731,0.6164271670022572,500,mac,phase-21,with +24,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095,500,mac,phase-21,with +25,2893.6888300427822,1.3356051971627023,0.0,576.4805932253515,0.6105605410011776,500,mac,phase-21,with +26,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662,500,mac,phase-21,with +27,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984,500,mac,phase-21,with +28,2892.5888965608005,1.3350975140767345,0.0,576.2614645133705,0.6103284580021864,500,mac,phase-21,with +29,2898.673296586618,1.3379058175168723,0.0,577.4735984857201,0.6116122500025085,500,mac,phase-21,with +0,363.8555760220334,0.0,0.0,75.37472069721154,0.1118581669979903,500,mac,phase-28,without +1,356.073044172833,0.0,0.0,73.76252563107049,0.1094656249988474,500,mac,phase-28,without +2,354.0995230742944,0.0,0.0,73.353699680899,0.1088589159990078,500,mac,phase-28,without +3,352.099036026975,0.0,0.0,72.93928758338875,0.1082439170022553,500,mac,phase-28,without +4,352.917119453682,0.0,0.0,73.10875814769673,0.1084954159996414,500,mac,phase-28,without +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692,500,mac,phase-28,without +6,352.16463583615,0.0,0.0,72.9528769513144,0.1082640839995292,500,mac,phase-28,without +7,337.48447844835925,0.0,0.0,69.91180011804681,0.1037510419992031,500,mac,phase-28,without +8,405.16068508681326,0.0,0.0,83.93130540910039,0.1245563750017026,500,mac,phase-28,without +9,355.01452131885316,0.0,0.0,73.54324669258992,0.1091402089987241,500,mac,phase-28,without +10,352.03099657689336,0.0,0.0,72.92519283018375,0.1082229999992705,500,mac,phase-28,without +11,352.0968663843558,0.0,0.0,72.938838129767,0.1082432500006689,500,mac,phase-28,without +12,352.44085313693654,0.0,0.0,73.01009691239383,0.1083490000019082,500,mac,phase-28,without +13,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927,500,mac,phase-28,without +14,333.25363011232423,0.0,0.0,69.0353561862886,0.1024503750013536,500,mac,phase-28,without +15,352.36373178750216,0.0,0.0,72.99412079286597,0.1083252909993461,500,mac,phase-28,without +16,352.425535562288,0.0,0.0,73.00692379100454,0.1083442910021403,500,mac,phase-28,without +17,351.4065898823191,0.0,0.0,72.7958434858105,0.1080310420002206,500,mac,phase-28,without +18,352.9674049543168,0.0,0.0,73.1191750708257,0.1085108750012295,500,mac,phase-28,without +19,352.3824388133895,0.0,0.0,72.99799605806528,0.1083310419999179,500,mac,phase-28,without +20,359.6312333359141,0.0,0.0,74.49962444727453,0.1105594999971799,500,mac,phase-28,without +21,334.32625072049933,0.0,0.0,69.25755555351878,0.1027801249983895,500,mac,phase-28,without +22,349.209436738063,0.0,0.0,72.34069090470156,0.1073555830007535,500,mac,phase-28,without +23,356.1634468203862,0.0,0.0,73.7812530458984,0.1094934169996122,500,mac,phase-28,without +24,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359,500,mac,phase-28,without +25,354.11606046939625,0.0,0.0,73.35712549492798,0.1088640000016312,500,mac,phase-28,without +26,351.1624910291874,0.0,0.0,72.7452770410731,0.1079559999998309,500,mac,phase-28,without +27,354.5463838131862,0.0,0.0,73.44626938603518,0.1089962919977551,500,mac,phase-28,without +28,397.0313202491415,0.0,0.0,82.24726194662468,0.1220572079982957,500,mac,phase-28,without +29,355.7000551949418,0.0,0.0,73.68525887501565,0.1093509589991299,500,mac,phase-28,without +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902,500,mac,phase-28,with +1,2891.2179356716797,1.8025049474262345,0.0,577.6694559288594,0.610794749998604,500,mac,phase-28,with +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615,500,mac,phase-28,with +3,2890.2822721394496,1.8019216160470384,0.0,577.4825090242601,0.6105970829994476,500,mac,phase-28,with +4,2888.0888706578953,1.8005541587642735,0.0,577.044264288417,0.6101337079999212,500,mac,phase-28,with +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195,500,mac,phase-28,with +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254,500,mac,phase-28,with +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625,500,mac,phase-28,with +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879,500,mac,phase-28,with +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803,500,mac,phase-28,with +10,2881.393286312906,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755,500,mac,phase-28,with +11,2888.1411383469012,1.8005867446053,0.0,577.0547074470245,0.6101447500004724,500,mac,phase-28,with +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915,500,mac,phase-28,with +13,2877.2999624761123,1.7938279067806189,0.0,574.8886250878775,0.607854458001384,500,mac,phase-28,with +14,2922.8568793298064,1.822229974644518,0.0,583.9909618740375,0.6174787499985541,500,mac,phase-28,with +15,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717,500,mac,phase-28,with +16,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456,500,mac,phase-28,with +17,2905.045772924987,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403,500,mac,phase-28,with +18,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848,500,mac,phase-28,with +19,2891.0660697041267,1.8024102678953409,0.0,577.6391128925327,0.6107626670018362,500,mac,phase-28,with +20,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701,500,mac,phase-28,with +21,2882.54195887732,1.797095984337481,0.0,575.9359834248971,0.6089618749974761,500,mac,phase-28,with +22,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447,500,mac,phase-28,with +23,2878.608193025542,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499,500,mac,phase-28,with +24,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453,500,mac,phase-28,with +25,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866,500,mac,phase-28,with +26,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225,500,mac,phase-28,with +27,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195,500,mac,phase-28,with +28,2882.0064778239716,1.7967621432817775,0.0,575.828993548786,0.6088487500019255,500,mac,phase-28,with +29,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754,500,mac,phase-28,with +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.1093853339989436,500,mac,phase-17,without +1,362.3638254849227,0.4978892903062966,0.0,76.17706141686338,0.1088726670022879,500,mac,phase-17,without +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.1107375419996969,500,mac,phase-17,without +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139,500,mac,phase-17,without +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.1103431670017016,500,mac,phase-17,without +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.1093056250028894,500,mac,phase-17,without +6,360.5148000962549,0.4953487223086766,0.0,75.78835451322753,0.1083171249993029,500,mac,phase-17,without +7,358.84675249219504,0.4930568184833677,0.0,75.43769322795526,0.1078159579992643,500,mac,phase-17,without +8,361.4683657469591,0.4966589251813122,0.0,75.98881555274077,0.1086036249980679,500,mac,phase-17,without +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.1112682079983642,500,mac,phase-17,without +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.1089509580015146,500,mac,phase-17,without +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.1114148329979798,500,mac,phase-17,without +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.1090389169985428,500,mac,phase-17,without +13,360.0388493468535,0.4946947641479163,0.0,75.6882989146312,0.108174124998186,500,mac,phase-17,without +14,357.3634303624893,0.4910187281704991,0.0,75.12586541008638,0.1073702920002688,500,mac,phase-17,without +15,410.0131251531342,0.5633596113673182,0.0,86.19402053919968,0.123188959001709,500,mac,phase-17,without +16,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.1093028750001394,500,mac,phase-17,without +17,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.1070279170016874,500,mac,phase-17,without +18,346.93966636378417,0.4766964363338611,0.0,72.93455475908077,0.1042384590000438,500,mac,phase-17,without +19,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.109053791999031,500,mac,phase-17,without +20,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.108166958001675,500,mac,phase-17,without +21,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.1082546659999934,500,mac,phase-17,without +22,359.93511539136995,0.4945522332939955,0.0,75.66649169398131,0.1081429580008261,500,mac,phase-17,without +23,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.1078082080020976,500,mac,phase-17,without +24,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.1084412910022365,500,mac,phase-17,without +25,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169,500,mac,phase-17,without +26,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.1088503329992818,500,mac,phase-17,without +27,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.1085732499996083,500,mac,phase-17,without +28,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.1122939589986344,500,mac,phase-17,without +29,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.110120666999137,500,mac,phase-17,without +0,2884.6844519453502,1.803721085721138,0.0,577.4579653693895,0.6114691249968018,500,mac,phase-17,with +1,2878.9248167003684,1.800119729763321,0.0,576.304997928672,0.6102482499991311,500,mac,phase-17,with +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427,500,mac,phase-17,with +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472,500,mac,phase-17,with +4,2882.651347302002,1.8024498362046744,0.0,577.0509771908595,0.6110381660000712,500,mac,phase-17,with +5,2883.2398715165705,1.8028178256860057,0.0,577.1687883418456,0.6111629160004668,500,mac,phase-17,with +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607,500,mac,phase-17,with +7,2872.177626013424,1.7959008800713845,0.0,574.9543410124832,0.6088180419974378,500,mac,phase-17,with +8,2883.9494831095662,1.8032615280785136,0.0,577.3108388411359,0.6113133329999982,500,mac,phase-17,with +9,2895.4779954549176,1.810470018695324,0.0,579.6186237630511,0.6137570419996337,500,mac,phase-17,with +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427,500,mac,phase-17,with +11,2881.051089801741,1.8014492351878608,0.0,576.7306366282913,0.6106989579966466,500,mac,phase-17,with +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899,500,mac,phase-17,with +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684,500,mac,phase-17,with +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046,500,mac,phase-17,with +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056,500,mac,phase-17,with +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859,500,mac,phase-17,with +17,2876.165985025137,1.798394701273215,0.0,575.752733252062,0.6096634579989768,500,mac,phase-17,with +18,2874.9411706166497,1.797628855437566,0.0,575.5075491260119,0.6094038330011244,500,mac,phase-17,with +19,2924.685426053381,1.8287326950149667,0.0,585.4653857670138,0.6199481670009845,500,mac,phase-17,with +20,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265,500,mac,phase-17,with +21,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629,500,mac,phase-17,with +22,2881.6203519457463,1.80180518057792,0.0,576.8445918857607,0.6108196249988396,500,mac,phase-17,with +23,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016,500,mac,phase-17,with +24,2881.1031818804754,1.8014818070626624,0.0,576.7410644536909,0.6107100000008359,500,mac,phase-17,with +25,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997,500,mac,phase-17,with +26,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505,500,mac,phase-17,with +27,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135,500,mac,phase-17,with +28,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412,500,mac,phase-17,with +29,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503,500,mac,phase-17,with +0,537.586585590763,1.4050178341513406,20.03823053944412,97.1469473898927,0.112041666998266,500,mac,phase-10,without +1,551.1176123306176,1.440382060851645,20.542591772622274,99.59213106459949,0.1148617500002728,500,mac,phase-10,without +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217444,0.1084056660001806,500,mac,phase-10,without +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.1091209999976854,500,mac,phase-10,without +4,539.1167749298061,1.4090170844462884,20.09526746626968,97.4234669817148,0.1123605829998268,500,mac,phase-10,without +5,550.2607540984404,1.4381426056088673,20.510652875231223,99.43728873067025,0.1146831670012034,500,mac,phase-10,without +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.1111136250001436,500,mac,phase-10,without +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.1117185420007444,500,mac,phase-10,without +8,537.9854272547229,1.406060233024167,20.053097132892287,97.2190218262424,0.1121247919982124,500,mac,phase-10,without +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031,500,mac,phase-10,without +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.1059001670000725,500,mac,phase-10,without +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823145,0.1097277499975462,500,mac,phase-10,without +12,533.816683809472,1.395164948350829,19.897709620527294,96.46569071454304,0.1112559590001183,500,mac,phase-10,without +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914947,0.1127309580006112,500,mac,phase-10,without +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.1122200829995563,500,mac,phase-10,without +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.1117655419984657,500,mac,phase-10,without +16,541.3640875617663,1.41489058354662,20.17903475105775,97.82957749093774,0.1128289589978521,500,mac,phase-10,without +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913888,0.1121329170018725,500,mac,phase-10,without +18,543.8858800536349,1.421481453780502,20.27303311463145,98.28528908996614,0.113354541001172,500,mac,phase-10,without +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446,500,mac,phase-10,without +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748584,0.11043866700129,500,mac,phase-10,without +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454,500,mac,phase-10,without +22,549.6611889257908,1.436575602668526,20.488304428534455,99.3289416702238,0.1145582080025633,500,mac,phase-10,without +23,535.2031318006688,1.3987885211965203,19.949388671350377,96.71623489415944,0.1115449169992643,500,mac,phase-10,without +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321024,0.1154080420019454,500,mac,phase-10,without +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.1097549170008278,500,mac,phase-10,without +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.1108595000005152,500,mac,phase-10,without +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.1113768329996673,500,mac,phase-10,without +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221069,0.1109710000018822,500,mac,phase-10,without +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.1128227090011932,500,mac,phase-10,without +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467,500,mac,phase-10,with +1,3903.728343298676,4.398604694153814,104.4335387233186,657.7913383530023,0.6261754590013879,500,mac,phase-10,with +2,3896.366740257168,4.390309859358135,104.23659923657875,656.550883513103,0.6249946249990899,500,mac,phase-10,with +3,3867.204522235971,4.357450741663593,103.45644412404316,651.63695182151,0.620316874999844,500,mac,phase-10,with +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219,500,mac,phase-10,with +5,3883.288345022032,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649,500,mac,phase-10,with +6,3913.1526881477103,4.40922376491048,104.68566120628368,659.3793721161582,0.6276871660011238,500,mac,phase-10,with +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447,500,mac,phase-10,with +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342,500,mac,phase-10,with +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838,500,mac,phase-10,with +10,3932.1188059921474,4.430594220957613,105.1930476400088,662.5752266795704,0.6307294159996673,500,mac,phase-10,with +11,3893.858755217265,4.387483936599365,104.16950497956373,656.1282796096323,0.6245923329988727,500,mac,phase-10,with +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107,500,mac,phase-10,with +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145,500,mac,phase-10,with +14,3880.918548161949,4.372903297146174,103.82332525194025,653.9478112550415,0.6225166660005925,500,mac,phase-10,with +15,3906.1908620137183,4.401379386813467,104.4994166535864,658.2062810280139,0.6265704580000602,500,mac,phase-10,with +16,3930.222044592053,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943,500,mac,phase-10,with +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557,500,mac,phase-10,with +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798,500,mac,phase-10,with +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723,500,mac,phase-10,with +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463,500,mac,phase-10,with +21,3891.139591523075,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553,500,mac,phase-10,with +22,3941.683689330291,4.4413716462931685,105.4489298445666,664.1869416502057,0.6322636660006538,500,mac,phase-10,with +23,3892.6048936178126,4.386071122737294,104.13596135347484,655.9169997184408,0.6243912079989968,500,mac,phase-10,with +24,3895.8038444594863,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387,500,mac,phase-10,with +25,3904.985839441688,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816,500,mac,phase-10,with +26,3869.997206323634,4.360597454820098,103.53115472277416,652.1075284708238,0.6207648339986918,500,mac,phase-10,with +27,3899.157859558534,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278,500,mac,phase-10,with +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943,500,mac,phase-10,with +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187,500,mac,phase-10,with +0,369.6457899010592,0.9711657824905524,0.0,82.75002236324673,0.1110664580010052,500,mac,phase-11,without +1,359.12051672685783,0.9435128632975972,0.0,80.3938029382194,0.1079039579999516,500,mac,phase-11,without +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.105773584000417,500,mac,phase-11,without +3,374.8716803818042,0.9848956994992136,0.0,83.9199059814675,0.1126366669996059,500,mac,phase-11,without +4,376.96633455222275,0.9903989583270936,0.0,84.38882158711202,0.1132660420007596,500,mac,phase-11,without +5,368.643464389488,0.9685323851508564,0.0,82.52563874854367,0.1107652919999964,500,mac,phase-11,without +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.1074476249996223,500,mac,phase-11,without +7,361.0118775242784,0.9484820119771764,0.0,80.81720867571043,0.108472249998158,500,mac,phase-11,without +8,364.70279545437313,0.9581791147107104,0.0,81.64346870517811,0.1095812499988824,500,mac,phase-11,without +9,363.31662114091176,0.9545372361919228,0.0,81.33315553897383,0.1091647499997634,500,mac,phase-11,without +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.1110747499988065,500,mac,phase-11,without +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.1074340419982036,500,mac,phase-11,without +12,372.4174462680742,0.9784477207622896,0.0,83.37049372426266,0.1118992499978048,500,mac,phase-11,without +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.1098165830007928,500,mac,phase-11,without +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.1094639580005605,500,mac,phase-11,without +15,364.7247080018868,0.9582366852740276,0.0,81.64837411421111,0.1095878340020135,500,mac,phase-11,without +16,363.90181967276175,0.9560747210101548,0.0,81.46415984883079,0.1093405829997209,500,mac,phase-11,without +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.1090366669996001,500,mac,phase-11,without +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.1087789999983215,500,mac,phase-11,without +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.1085855829987849,500,mac,phase-11,without +20,360.06169081323577,0.94598559825909,0.0,80.60449701028317,0.1081867499997315,500,mac,phase-11,without +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.1089155000008759,500,mac,phase-11,without +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.1085442080002394,500,mac,phase-11,without +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745,500,mac,phase-11,without +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.1076402500002586,500,mac,phase-11,without +25,415.10096515168647,1.0905895986047207,0.0,92.9257551086988,0.1247242500030552,500,mac,phase-11,without +26,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.1124117920007847,500,mac,phase-11,without +27,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958,500,mac,phase-11,without +28,385.6766545760032,1.0132834737003162,0.0,86.33874012115454,0.1158832080000138,500,mac,phase-11,without +29,374.6998646691671,0.9844442902161484,0.0,83.88144279738285,0.1125850420030474,500,mac,phase-11,without +0,2916.763315644649,1.67067423255281,0.0,579.3229968800124,0.6117394579996471,500,mac,phase-11,with +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503,500,mac,phase-11,with +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236,500,mac,phase-11,with +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066,500,mac,phase-11,with +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468,500,mac,phase-11,with +5,2911.317883364726,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165,500,mac,phase-11,with +6,2904.907730762028,1.6638835477999545,0.0,576.9682590351122,0.6092529589986952,500,mac,phase-11,with +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608,500,mac,phase-11,with +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151,500,mac,phase-11,with +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957,500,mac,phase-11,with +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525,500,mac,phase-11,with +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145,500,mac,phase-11,with +12,2910.385942948952,1.6670213779735783,0.0,578.0563330261181,0.6104019170015818,500,mac,phase-11,with +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145,500,mac,phase-11,with +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146,500,mac,phase-11,with +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738,500,mac,phase-11,with +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285,500,mac,phase-11,with +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401,500,mac,phase-11,with +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839,500,mac,phase-11,with +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941,500,mac,phase-11,with +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607,500,mac,phase-11,with +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747,500,mac,phase-11,with +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453,500,mac,phase-11,with +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695,500,mac,phase-11,with +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931,500,mac,phase-11,with +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845,500,mac,phase-11,with +26,2919.6262939438634,1.6723140996092831,0.0,579.8916371805151,0.6123399170028279,500,mac,phase-11,with +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624,500,mac,phase-11,with +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778,500,mac,phase-11,with +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547,500,mac,phase-11,with +0,357.96048293355267,0.0,0.0,74.32044363142623,0.1103388750016165,500,mac,phase-29,without +1,336.02149904696915,0.0,0.0,69.76542962007161,0.1035763330000918,500,mac,phase-29,without +2,351.0183178122401,0.0,0.0,72.87909796290356,0.1081989999984216,500,mac,phase-29,without +3,347.93106372332824,0.0,0.0,72.23811633384071,0.1072473750027711,500,mac,phase-29,without +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292,500,mac,phase-29,without +5,350.19713174353114,0.0,0.0,72.70860173262069,0.1079458749991317,500,mac,phase-29,without +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659,500,mac,phase-29,without +7,355.219004525288,0.0,0.0,73.75125261391933,0.1094938329988508,500,mac,phase-29,without +8,332.0804839475747,0.0,0.0,68.94718848869086,0.1023615420017449,500,mac,phase-29,without +9,347.71262254057837,0.0,0.0,72.19276315553373,0.107180041999527,500,mac,phase-29,without +10,347.69072425564144,0.0,0.0,72.18821659151654,0.1071732920026988,500,mac,phase-29,without +11,349.79985125658436,0.0,0.0,72.6261175941649,0.107823416001338,500,mac,phase-29,without +12,352.3465418754639,0.0,0.0,73.1548663963679,0.1086084159978781,500,mac,phase-29,without +13,350.4592364960211,0.0,0.0,72.76302042521861,0.108026666999649,500,mac,phase-29,without +14,352.43184142678575,0.0,0.0,73.17257645319833,0.1086347090022172,500,mac,phase-29,without +15,333.343418635852,0.0,0.0,69.20940141661261,0.1027508329971169,500,mac,phase-29,without +16,396.5160813956773,0.0,0.0,82.32543110573395,0.1222233750013401,500,mac,phase-29,without +17,352.97632387457793,0.0,0.0,73.28562294575474,0.1088025419994664,500,mac,phase-29,without +18,350.7025476533563,0.0,0.0,72.81353715546054,0.1081016660027671,500,mac,phase-29,without +19,350.1848297681744,0.0,0.0,72.70604757284707,0.1079420829992159,500,mac,phase-29,without +20,350.68254396824653,0.0,0.0,72.80938395190176,0.1080955000034009,500,mac,phase-29,without +21,353.57487727944215,0.0,0.0,73.40989575436771,0.1089870420000806,500,mac,phase-29,without +22,350.58089369750513,0.0,0.0,72.78827912727185,0.1080641670014301,500,mac,phase-29,without +23,354.39984608014447,0.0,0.0,73.58117736273917,0.109241333000682,500,mac,phase-29,without +24,350.82717976651696,0.0,0.0,72.83941351439523,0.1081400830007623,500,mac,phase-29,without +25,349.56127013115605,0.0,0.0,72.57658292224077,0.1077498749982623,500,mac,phase-29,without +26,399.81461348479326,0.0,0.0,83.01027867937269,0.1232401249981194,500,mac,phase-29,without +27,357.78056653953445,0.0,0.0,74.28308904381807,0.110283417001483,500,mac,phase-29,without +28,363.9649435656808,0.0,0.0,75.56710129120493,0.1121897089979029,500,mac,phase-29,without +29,352.905762706687,0.0,0.0,73.27097290042619,0.1087807920011982,500,mac,phase-29,without +0,2916.2755902573767,2.778202283975463,0.0,582.3513655012664,0.6122291249994305,500,mac,phase-29,with +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344,500,mac,phase-29,with +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462,500,mac,phase-29,with +3,2936.678307023689,2.7976390184558526,0.0,586.4255860613846,0.6165123750033672,500,mac,phase-29,with +4,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494,500,mac,phase-29,with +5,2910.084396408831,2.772304216951885,0.0,581.1150453798662,0.6109293750014331,500,mac,phase-29,with +6,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939,500,mac,phase-29,with +7,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087,500,mac,phase-29,with +8,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651,500,mac,phase-29,with +9,2915.6827503916365,2.777637512568216,0.0,582.2329812489377,0.6121046669977659,500,mac,phase-29,with +10,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618,500,mac,phase-29,with +11,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109,500,mac,phase-29,with +12,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725,500,mac,phase-29,with +13,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288,500,mac,phase-29,with +14,2910.23364716231,2.772446401313879,0.0,581.1448492778177,0.6109607079997659,500,mac,phase-29,with +15,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568,500,mac,phase-29,with +16,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962,500,mac,phase-29,with +17,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443,500,mac,phase-29,with +18,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258,500,mac,phase-29,with +19,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842,500,mac,phase-29,with +20,2907.473272598668,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353,500,mac,phase-29,with +21,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615,500,mac,phase-29,with +22,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745,500,mac,phase-29,with +23,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742,500,mac,phase-29,with +24,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454,500,mac,phase-29,with +25,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221,500,mac,phase-29,with +26,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285,500,mac,phase-29,with +27,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206,500,mac,phase-29,with +28,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614,500,mac,phase-29,with +29,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375,500,mac,phase-29,with +0,355.31751000520677,0.0,0.0,73.78324951983832,0.1092719590014894,500,mac,phase-16,without +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213,500,mac,phase-16,without +2,351.03910799377473,0.0,0.0,72.89482045494073,0.1079562080012692,500,mac,phase-16,without +3,352.04523324830114,0.0,0.0,73.10374680563434,0.1082656250000582,500,mac,phase-16,without +4,347.36078088160747,0.0,0.0,72.13099959193667,0.1068250000025727,500,mac,phase-16,without +5,353.3662284867774,0.0,0.0,73.37805729850474,0.1086718749975261,500,mac,phase-16,without +6,350.7655636148851,0.0,0.0,72.83801775708868,0.1078720840014284,500,mac,phase-16,without +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843,500,mac,phase-16,without +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115,500,mac,phase-16,without +9,354.39078102596784,0.0,0.0,73.59081015620703,0.1089869589995942,500,mac,phase-16,without +10,354.1366069121032,0.0,0.0,73.53802977939847,0.1089087920008751,500,mac,phase-16,without +11,336.51778199022067,0.0,0.0,69.87940300516897,0.1034904169973742,500,mac,phase-16,without +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387,500,mac,phase-16,without +13,354.1658720356466,0.0,0.0,73.54410681149463,0.1089177920002839,500,mac,phase-16,without +14,348.69315700606205,0.0,0.0,72.40767337602198,0.1072347500012256,500,mac,phase-16,without +15,355.05290449197474,0.0,0.0,73.72830301690117,0.1091905840003164,500,mac,phase-16,without +16,398.8938216060945,0.0,0.0,82.83206299361113,0.1226731250026205,500,mac,phase-16,without +17,353.3356074134523,0.0,0.0,73.3716986974505,0.1086624579984345,500,mac,phase-16,without +18,330.53766821951785,0.0,0.0,68.63760598116552,0.1016513329996087,500,mac,phase-16,without +19,346.2550728954724,0.0,0.0,71.90139444741146,0.1064849579997826,500,mac,phase-16,without +20,349.15137082892227,0.0,0.0,72.50282349914717,0.1073756660007347,500,mac,phase-16,without +21,341.4818789010037,0.0,0.0,70.91021964295189,0.1050170419985079,500,mac,phase-16,without +22,354.0638505605011,0.0,0.0,73.52292160180167,0.1088864170014858,500,mac,phase-16,without +23,352.4121301159214,0.0,0.0,73.1799345598806,0.1083784579968778,500,mac,phase-16,without +24,354.6372291574377,0.0,0.0,73.64198619866458,0.1090627500016125,500,mac,phase-16,without +25,333.33858460150753,0.0,0.0,69.21922863267379,0.1025127079992671,500,mac,phase-16,without +26,353.2686780710232,0.0,0.0,73.3578005240321,0.108641874998284,500,mac,phase-16,without +27,355.6745152674338,0.0,0.0,73.85738323855767,0.1093817500004661,500,mac,phase-16,without +28,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042,500,mac,phase-16,without +29,351.7074649321256,0.0,0.0,73.03360772368504,0.108161750002182,500,mac,phase-16,without +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562,500,mac,phase-16,with +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794,500,mac,phase-16,with +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635,500,mac,phase-16,with +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166,500,mac,phase-16,with +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775,500,mac,phase-16,with +5,2933.95348805359,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838,500,mac,phase-16,with +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928,500,mac,phase-16,with +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211,500,mac,phase-16,with +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087,500,mac,phase-16,with +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981,500,mac,phase-16,with +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659,500,mac,phase-16,with +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679,500,mac,phase-16,with +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196,500,mac,phase-16,with +13,2934.7404678341923,2.498502015864287,0.0,583.0171170618786,0.6106430830004683,500,mac,phase-16,with +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203,500,mac,phase-16,with +15,2960.0932313018448,2.5200861836385533,0.0,588.0537106647776,0.6159183329982625,500,mac,phase-16,with +16,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892,500,mac,phase-16,with +17,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375,500,mac,phase-16,with +18,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906,500,mac,phase-16,with +19,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768,500,mac,phase-16,with +20,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191,500,mac,phase-16,with +21,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664,500,mac,phase-16,with +22,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131,500,mac,phase-16,with +23,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699,500,mac,phase-16,with +24,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191,500,mac,phase-16,with +25,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552,500,mac,phase-16,with +26,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684,500,mac,phase-16,with +27,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217,500,mac,phase-16,with +28,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517,500,mac,phase-16,with +29,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705,500,mac,phase-16,with +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539,500,mac,phase-20,without +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583,500,mac,phase-20,without +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.1141362080015824,500,mac,phase-20,without +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.1098308750006253,500,mac,phase-20,without +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.1079319579985167,500,mac,phase-20,without +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.1088161250008852,500,mac,phase-20,without +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.1078220839990535,500,mac,phase-20,without +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.1108167080019484,500,mac,phase-20,without +8,415.29796425727784,0.942830467347616,0.0,88.73920358675761,0.1238900839998677,500,mac,phase-20,without +9,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.1067202500016719,500,mac,phase-20,without +10,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.1076291249992209,500,mac,phase-20,without +11,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.1080912920006085,500,mac,phase-20,without +12,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.108578249997663,500,mac,phase-20,without +13,415.5291183662658,0.9433552451104836,0.0,88.78859566979871,0.1239590410004893,500,mac,phase-20,without +14,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.1104635410010814,500,mac,phase-20,without +15,365.2556929987476,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758,500,mac,phase-20,without +16,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786,500,mac,phase-20,without +17,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.1080684169974119,500,mac,phase-20,without +18,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803,500,mac,phase-20,without +19,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.1084587080003984,500,mac,phase-20,without +20,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.1087163339980179,500,mac,phase-20,without +21,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.1086105000031238,500,mac,phase-20,without +22,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.1072365830004855,500,mac,phase-20,without +23,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.1085144579992629,500,mac,phase-20,without +24,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.1087537499988684,500,mac,phase-20,without +25,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.1100431670020043,500,mac,phase-20,without +26,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223,500,mac,phase-20,without +27,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241,500,mac,phase-20,without +28,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.1068625410007371,500,mac,phase-20,without +29,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.1084712920019228,500,mac,phase-20,without +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527,500,mac,phase-20,with +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256,500,mac,phase-20,with +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887,500,mac,phase-20,with +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624,500,mac,phase-20,with +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048,500,mac,phase-20,with +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276,500,mac,phase-20,with +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462,500,mac,phase-20,with +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564,500,mac,phase-20,with +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943,500,mac,phase-20,with +9,2911.6807159487107,2.395513992598981,0.0,578.1173768805539,0.6088341670001682,500,mac,phase-20,with +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115,500,mac,phase-20,with +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415,500,mac,phase-20,with +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134,500,mac,phase-20,with +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991,500,mac,phase-20,with +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045,500,mac,phase-20,with +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869,500,mac,phase-20,with +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593,500,mac,phase-20,with +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571,500,mac,phase-20,with +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506,500,mac,phase-20,with +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875,500,mac,phase-20,with +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202,500,mac,phase-20,with +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929,500,mac,phase-20,with +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303,500,mac,phase-20,with +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345,500,mac,phase-20,with +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896,500,mac,phase-20,with +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476,500,mac,phase-20,with +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539,500,mac,phase-20,with +27,2900.4514699927317,2.386275405529134,0.0,575.8877978676978,0.6064861250015383,500,mac,phase-20,with +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997,500,mac,phase-20,with +29,2973.5114011729834,2.4463836744344314,0.0,590.3939267635094,0.6217630000028294,500,mac,phase-20,with +0,356.466325968142,0.0,0.0,73.92875082637863,0.1092395420018874,500,mac,phase-18,without +1,351.7245436332654,0.0,0.0,72.94533663218813,0.1077864170001703,500,mac,phase-18,without +2,353.4256006327688,0.0,0.0,73.29812456725101,0.1083077080002112,500,mac,phase-18,without +3,353.35122991135097,0.0,0.0,73.28270057308399,0.1082849170015833,500,mac,phase-18,without +4,354.96295784666904,0.0,0.0,73.61696225293952,0.1087788330005423,500,mac,phase-18,without +5,350.3303576515806,0.0,0.0,72.6561917101098,0.107359166999231,500,mac,phase-18,without +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967,500,mac,phase-18,without +7,355.0087791611787,0.0,0.0,73.62646528954114,0.1087928749984712,500,mac,phase-18,without +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658,500,mac,phase-18,without +9,356.2385833502526,0.0,0.0,73.88151851851684,0.1091697499978181,500,mac,phase-18,without +10,353.36836150001716,0.0,0.0,73.28625355090404,0.1082901669979037,500,mac,phase-18,without +11,344.9872006619987,0.0,0.0,71.54805640269699,0.105721749998338,500,mac,phase-18,without +12,335.41512274852306,0.0,0.0,69.56287095485956,0.1027883750030014,500,mac,phase-18,without +13,354.6641076704996,0.0,0.0,73.55498270929414,0.1086872499981836,500,mac,phase-18,without +14,355.37234762367643,0.0,0.0,73.70186697636058,0.1089042909989075,500,mac,phase-18,without +15,352.9861603805139,0.0,0.0,73.20698757465065,0.1081730409969168,500,mac,phase-18,without +16,354.41080472393486,0.0,0.0,73.50244935885966,0.1086096250000991,500,mac,phase-18,without +17,354.4234494781258,0.0,0.0,73.50507179698002,0.1086135000005015,500,mac,phase-18,without +18,350.7823055918313,0.0,0.0,72.74992271421108,0.1074976669988245,500,mac,phase-18,without +19,338.18622604515986,0.0,0.0,70.13757939211467,0.1036375830008182,500,mac,phase-18,without +20,349.4839750006073,0.0,0.0,72.48065756410699,0.1070997919996443,500,mac,phase-18,without +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016,500,mac,phase-18,without +22,350.7968527716273,0.0,0.0,72.7529397027792,0.1075021249998826,500,mac,phase-18,without +23,354.93835033342356,0.0,0.0,73.611858817965,0.1087712919979821,500,mac,phase-18,without +24,351.8900120547612,0.0,0.0,72.97965368491161,0.1078371250005147,500,mac,phase-18,without +25,353.8877459607927,0.0,0.0,73.39397044191605,0.1084493330017721,500,mac,phase-18,without +26,338.342449918055,0.0,0.0,70.16997918679662,0.1036854579979262,500,mac,phase-18,without +27,357.2478532784631,0.0,0.0,74.09083440504997,0.1094790420029312,500,mac,phase-18,without +28,354.8509236948433,0.0,0.0,73.59372711320542,0.1087444999975559,500,mac,phase-18,without +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413,500,mac,phase-18,without +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217,500,mac,phase-18,with +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801,500,mac,phase-18,with +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909,500,mac,phase-18,with +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121,500,mac,phase-18,with +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203,500,mac,phase-18,with +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098,500,mac,phase-18,with +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605,500,mac,phase-18,with +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971,500,mac,phase-18,with +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547,500,mac,phase-18,with +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134,500,mac,phase-18,with +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695,500,mac,phase-18,with +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172,500,mac,phase-18,with +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701,500,mac,phase-18,with +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134,500,mac,phase-18,with +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964,500,mac,phase-18,with +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188,500,mac,phase-18,with +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913,500,mac,phase-18,with +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462,500,mac,phase-18,with +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725,500,mac,phase-18,with +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809,500,mac,phase-18,with +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217,500,mac,phase-18,with +21,2959.5925028935953,2.819144749413765,0.0,590.7976357988317,0.6212104999976873,500,mac,phase-18,with +22,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129,500,mac,phase-18,with +23,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713,500,mac,phase-18,with +24,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781,500,mac,phase-18,with +25,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903,500,mac,phase-18,with +26,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854,500,mac,phase-18,with +27,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921,500,mac,phase-18,with +28,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723,500,mac,phase-18,with +29,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385,500,mac,phase-18,with +0,372.783325595462,0.9128559578339812,0.0,76.71370993797419,0.1098833750002086,500,mac,phase-27,without +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.1083453339997504,500,mac,phase-27,without +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.1077917500006151,500,mac,phase-27,without +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.1125241670015384,500,mac,phase-27,without +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.106433916997048,500,mac,phase-27,without +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.1089840000022377,500,mac,phase-27,without +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.1079727910000656,500,mac,phase-27,without +7,349.09480260671245,0.8548485099203007,0.0,71.83893588922824,0.1029008340010477,500,mac,phase-27,without +8,368.7968106124073,0.9030939494408668,0.0,75.89333967708617,0.1087082910016761,500,mac,phase-27,without +9,370.3373070063856,0.9068662515120998,0.0,76.21035276596128,0.1091623749998689,500,mac,phase-27,without +10,368.9456615170731,0.9034584492074164,0.0,75.9239711574677,0.1087521669978741,500,mac,phase-27,without +11,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.1080825829994864,500,mac,phase-27,without +12,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496,500,mac,phase-27,without +13,368.16721356507986,0.9015522189603804,0.0,75.76377721559642,0.1085227080002368,500,mac,phase-27,without +14,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.1060791250019974,500,mac,phase-27,without +15,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.1052611670020269,500,mac,phase-27,without +16,368.1332915981502,0.9014691522900468,0.0,75.75679653874505,0.1085127090009336,500,mac,phase-27,without +17,369.6513056658199,0.9051864005965116,0.0,76.0691830723513,0.1089601660023618,500,mac,phase-27,without +18,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.1087312500021653,500,mac,phase-27,without +19,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.1087735000000975,500,mac,phase-27,without +20,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.1081318750002537,500,mac,phase-27,without +21,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.1091148750019783,500,mac,phase-27,without +22,370.9635115163816,0.9083996744914116,0.0,76.33921708966713,0.1093469580009696,500,mac,phase-27,without +23,367.1765929975245,0.8991264294334446,0.0,75.55992105127724,0.1082307079996098,500,mac,phase-27,without +24,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.1100110000006679,500,mac,phase-27,without +25,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.1075496660014323,500,mac,phase-27,without +26,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.1073167909999028,500,mac,phase-27,without +27,371.7753182833393,0.9103875923861928,0.0,76.50627581941745,0.109586250000575,500,mac,phase-27,without +28,369.53200373193727,0.904894259093262,0.0,76.04463236602264,0.108925000000454,500,mac,phase-27,without +29,367.425238752588,0.8997353025866021,0.0,75.611088947,0.1083039999975881,500,mac,phase-27,without +0,3011.160313901874,2.5761328304088797,0.0,592.341068570989,0.6206386250014475,500,mac,phase-27,with +1,2961.1375400963516,2.533336932338099,0.0,582.5008275343196,0.6103282920012134,500,mac,phase-27,with +2,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373,500,mac,phase-27,with +3,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715,500,mac,phase-27,with +4,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253,500,mac,phase-27,with +5,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257,500,mac,phase-27,with +6,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351,500,mac,phase-27,with +7,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131,500,mac,phase-27,with +8,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213,500,mac,phase-27,with +9,2955.905773306222,2.528861007849166,0.0,581.4716593705813,0.6092499580008734,500,mac,phase-27,with +10,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297,500,mac,phase-27,with +11,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951,500,mac,phase-27,with +12,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527,500,mac,phase-27,with +13,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587,500,mac,phase-27,with +14,3009.9004890583597,2.575055014616423,0.0,592.0932418476579,0.620378958999936,500,mac,phase-27,with +15,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875,500,mac,phase-27,with +16,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105,500,mac,phase-27,with +17,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127,500,mac,phase-27,with +18,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394,500,mac,phase-27,with +19,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971,500,mac,phase-27,with +20,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966,500,mac,phase-27,with +21,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951,500,mac,phase-27,with +22,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086,500,mac,phase-27,with +23,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334,500,mac,phase-27,with +24,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168,500,mac,phase-27,with +25,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722,500,mac,phase-27,with +26,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954,500,mac,phase-27,with +27,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092,500,mac,phase-27,with +28,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243,500,mac,phase-27,with +29,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267,500,mac,phase-27,with +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.1093273749975196,500,mac,phase-5,without +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297068,0.1149548330031393,500,mac,phase-5,without +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279236,0.1123761250019015,500,mac,phase-5,without +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.1126610829996934,500,mac,phase-5,without +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958,500,mac,phase-5,without +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126876,0.1119830829993588,500,mac,phase-5,without +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.1098542079998878,500,mac,phase-5,without +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.6683569356906,0.1112435000031837,500,mac,phase-5,without +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419237,0.1138349580032809,500,mac,phase-5,without +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.1120877499997732,500,mac,phase-5,without +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875492,0.1131611669989069,500,mac,phase-5,without +11,513.552572917201,0.5900642354468032,20.980061704775224,94.9019978676942,0.1103523749989108,500,mac,phase-5,without +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.551863476102,0.111108041000989,500,mac,phase-5,without +13,571.0766273014697,0.6561585147086973,23.330080522975905,105.53216111564883,0.1227131659979932,500,mac,phase-5,without +14,520.6179409055757,0.598182237731416,21.268701786005906,96.20764323513608,0.1118705839980975,500,mac,phase-5,without +15,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.1148837079999793,500,mac,phase-5,without +16,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496596,0.1101848340003925,500,mac,phase-5,without +17,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.1123124999976425,500,mac,phase-5,without +18,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739272,0.1124144159985007,500,mac,phase-5,without +19,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.1129014580001239,500,mac,phase-5,without +20,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.1130966669988993,500,mac,phase-5,without +21,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.1092158749997906,500,mac,phase-5,without +22,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128129,0.1146049589988251,500,mac,phase-5,without +23,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.1106439169998338,500,mac,phase-5,without +24,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798,500,mac,phase-5,without +25,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312756,0.1119207500014454,500,mac,phase-5,without +26,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.104731792001985,500,mac,phase-5,without +27,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.1137661669999943,500,mac,phase-5,without +28,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617624,0.1135343749992898,500,mac,phase-5,without +29,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.111408125001617,500,mac,phase-5,without +0,4178.899201105131,5.488284972494792,106.22806997967332,659.321559768019,0.6223265419976087,500,mac,phase-5,with +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206,500,mac,phase-5,with +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914,500,mac,phase-5,with +3,4220.901846967973,5.543448420809863,107.29578178350656,665.9484843842789,0.6285816249983327,500,mac,phase-5,with +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172,500,mac,phase-5,with +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912,500,mac,phase-5,with +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368,500,mac,phase-5,with +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697,500,mac,phase-5,with +8,4225.91204815074,5.550028481858783,107.42314163983296,666.7389637664328,0.6293277500008116,500,mac,phase-5,with +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834,500,mac,phase-5,with +10,4439.673079154838,5.830767833948093,112.85697018358567,700.4648924373064,0.6611612920023617,500,mac,phase-5,with +11,4255.092473689515,5.5883520889305,108.16491121526325,671.3428756473014,0.6336733329990238,500,mac,phase-5,with +12,4192.928435888898,5.506710025297929,106.5846946462786,661.5350079788633,0.6244157920009457,500,mac,phase-5,with +13,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666,500,mac,phase-5,with +14,4163.911680836073,5.468601372027502,105.84708559231544,656.9569190420027,0.6200945830023556,500,mac,phase-5,with +15,4176.033033663473,5.484520741068836,106.1552116930974,658.8693531228598,0.6218997089999903,500,mac,phase-5,with +16,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769,500,mac,phase-5,with +17,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779,500,mac,phase-5,with +18,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807,500,mac,phase-5,with +19,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965,500,mac,phase-5,with +20,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122,500,mac,phase-5,with +21,4177.193318685504,5.486044581330055,106.18470626393656,659.0524159089396,0.6220724999984668,500,mac,phase-5,with +22,4240.824025130627,5.56961286885411,107.80220570860396,669.0916857270402,0.6315484590013511,500,mac,phase-5,with +23,4186.504453143061,5.498273198691004,106.4213963096036,660.5214706523857,0.6234591249994992,500,mac,phase-5,with +24,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181,500,mac,phase-5,with +25,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926,500,mac,phase-5,with +26,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411,500,mac,phase-5,with +27,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244,500,mac,phase-5,with +28,4209.1590568276115,5.528026230524569,106.99727878720144,664.095777645307,0.6268328749974899,500,mac,phase-5,with +29,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153,500,mac,phase-5,with +0,411.9106270133148,0.0669283657508026,0.0,79.67821942633053,0.1092553339985897,500,mac,phase-2,without +1,409.7639893685133,0.0665795741926254,0.0,79.2629830763206,0.1086859589995583,500,mac,phase-2,without +2,408.6489630946226,0.0663984016726984,0.0,79.0472971913475,0.1083902089994808,500,mac,phase-2,without +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.1070329169997421,500,mac,phase-2,without +4,406.4680772704537,0.0660440453766274,0.0,78.62543602087497,0.1078117500001099,500,mac,phase-2,without +5,409.1637451782701,0.066482044874201,0.0,79.1468744227363,0.1085267499984183,500,mac,phase-2,without +6,411.117003532524,0.0667994156361238,0.0,79.52470431480539,0.1090448329996434,500,mac,phase-2,without +7,408.04856056941446,0.0663008466275756,0.0,78.93115791012883,0.1082309580015135,500,mac,phase-2,without +8,406.718009040155,0.0660846549744341,0.0,78.67378174706386,0.1078780419993563,500,mac,phase-2,without +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.1085171250015264,500,mac,phase-2,without +10,434.73755799887095,0.0706373479565961,0.0,84.0937627423277,0.11530995800058,500,mac,phase-2,without +11,465.2579892959261,0.0755963911440289,0.0,89.99750365696646,0.1234052090003388,500,mac,phase-2,without +12,412.8927512188439,0.0670879439790143,0.0,79.8681973070166,0.1095158330026606,500,mac,phase-2,without +13,411.1630334709524,0.0668068947064672,0.0,79.5336081480492,0.1090570419983123,500,mac,phase-2,without +14,405.92375972203575,0.0659556031719937,0.0,78.5201455762586,0.107667375003075,500,mac,phase-2,without +15,411.4063674703926,0.0668464322805089,0.0,79.58067762994595,0.1091215840024233,500,mac,phase-2,without +16,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.1056415409984765,500,mac,phase-2,without +17,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794,500,mac,phase-2,without +18,416.45131938035576,0.067666149870884,0.0,80.55655142128744,0.1104597089979506,500,mac,phase-2,without +19,390.2780465829524,0.06341344489121,0.0,75.4937061429856,0.1035174999997252,500,mac,phase-2,without +20,411.7770990939091,0.0669066697690972,0.0,79.6523903601103,0.1092199170016101,500,mac,phase-2,without +21,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.1082832499996584,500,mac,phase-2,without +22,407.79329023407206,0.0662593696050161,0.0,78.88177951477175,0.1081632499990519,500,mac,phase-2,without +23,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.1083763749993522,500,mac,phase-2,without +24,407.6768863974922,0.0662404559911434,0.0,78.85926285745624,0.108132375000423,500,mac,phase-2,without +25,408.8302439287478,0.0664278566786494,0.0,79.08236337593212,0.1084382919980271,500,mac,phase-2,without +26,400.83356580406127,0.0651285345363654,0.0,77.53552036554309,0.1063172499998472,500,mac,phase-2,without +27,407.19320440622545,0.0661618660177472,0.0,78.7657014941281,0.1080040830020152,500,mac,phase-2,without +28,408.4123814834321,0.0663599612451754,0.0,79.00153386238134,0.1083274580014403,500,mac,phase-2,without +29,404.7000282651971,0.0657567679365012,0.0,78.28343222840476,0.107342791998235,500,mac,phase-2,without +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901,500,mac,phase-2,with +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142,500,mac,phase-2,with +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616,500,mac,phase-2,with +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762,500,mac,phase-2,with +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902,500,mac,phase-2,with +5,2966.9573755043743,2.297635795126894,0.0,585.8295502339719,0.6165655409968167,500,mac,phase-2,with +6,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627,500,mac,phase-2,with +7,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874,500,mac,phase-2,with +8,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908,500,mac,phase-2,with +9,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865,500,mac,phase-2,with +10,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068,500,mac,phase-2,with +11,2967.8171338738516,2.298301598963909,0.0,585.999310629945,0.6167442080004548,500,mac,phase-2,with +12,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236,500,mac,phase-2,with +13,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381,500,mac,phase-2,with +14,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771,500,mac,phase-2,with +15,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913,500,mac,phase-2,with +16,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114,500,mac,phase-2,with +17,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037,500,mac,phase-2,with +18,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645,500,mac,phase-2,with +19,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216,500,mac,phase-2,with +20,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751,500,mac,phase-2,with +21,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859,500,mac,phase-2,with +22,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738,500,mac,phase-2,with +23,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113,500,mac,phase-2,with +24,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915,500,mac,phase-2,with +25,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869,500,mac,phase-2,with +26,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682,500,mac,phase-2,with +27,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566,500,mac,phase-2,with +28,2920.540539483107,2.261690221786506,0.0,576.6644862549181,0.6069196249991364,500,mac,phase-2,with +29,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783,500,mac,phase-2,with +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.1125474159998702,500,mac,phase-3,without +1,531.6083156995155,0.4598403719365596,20.10159340179818,95.84387180792008,0.1101422920000914,500,mac,phase-3,without +2,539.1055697078513,0.4663254850732108,20.38508549034322,97.19555467454497,0.1116956250007206,500,mac,phase-3,without +3,559.2132189145998,0.4837185705779671,21.145411799551137,100.82077063903628,0.1158616669999901,500,mac,phase-3,without +4,539.8532858167908,0.4669722583524913,20.41335872226605,97.33036070518357,0.1118505420017754,500,mac,phase-3,without +5,543.1984920844951,0.4698658566069157,20.53985030310232,97.93346925564144,0.1125436250003986,500,mac,phase-3,without +6,539.2855617453997,0.4664811779076673,20.391891491392315,97.22800550961236,0.1117329169974254,500,mac,phase-3,without +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.1105710419979004,500,mac,phase-3,without +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358164,0.1126799999983632,500,mac,phase-3,without +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.1101741250022314,500,mac,phase-3,without +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.4618670014884,0.1120016669992765,500,mac,phase-3,without +11,540.2482576395201,0.4673139083690628,20.428293708704743,97.4015703300661,0.1119323749990144,500,mac,phase-3,without +12,536.8670548817402,0.4643891732063245,20.300441000162188,96.79197195828964,0.1112318339983176,500,mac,phase-3,without +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.1116492920009477,500,mac,phase-3,without +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.1090459580009337,500,mac,phase-3,without +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541893,0.1114379159989766,500,mac,phase-3,without +16,548.9821147845478,0.4748686813088457,20.75854521150097,98.97620086137228,0.1137419160004356,500,mac,phase-3,without +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697708,0.1134956250025425,500,mac,phase-3,without +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.1120829160026914,500,mac,phase-3,without +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.1114866669995535,500,mac,phase-3,without +20,532.0847357354425,0.4602524745317389,20.119608172387444,95.9297657631153,0.1102410000021336,500,mac,phase-3,without +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.1081512079981621,500,mac,phase-3,without +22,554.8095819519035,0.479909431407269,20.978898001517763,100.02683720331508,0.114949291000812,500,mac,phase-3,without +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018736,0.1116149580011551,500,mac,phase-3,without +24,545.6371112170256,0.4719752583897657,20.632061295324043,98.37312885580974,0.1130488749986398,500,mac,phase-3,without +25,531.4940855078803,0.4597415629972396,20.097274039593614,95.82327720185324,0.1101186249979946,500,mac,phase-3,without +26,539.73040643437,0.4668659678765017,20.408712310029937,97.30820673311658,0.1118250830004399,500,mac,phase-3,without +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.1107058749985299,500,mac,phase-3,without +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.1125420829994254,500,mac,phase-3,without +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.1122179589983716,500,mac,phase-3,without +0,3918.98590650998,5.811744006176802,104.04357804161344,658.8981264933894,0.6259630829990783,500,mac,phase-3,with +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426,500,mac,phase-3,with +2,3895.8175551975046,5.777386003855434,103.42849081614756,655.0028373451503,0.622262500000943,500,mac,phase-3,with +3,3895.0135710260497,5.776193718325202,103.40714616427016,654.8676636862141,0.6221340830015833,500,mac,phase-3,with +4,3989.9385038992486,5.916964678676485,105.9272699659612,670.8273690589139,0.6372960420012532,500,mac,phase-3,with +5,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738,500,mac,phase-3,with +6,3919.633892088269,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375,500,mac,phase-3,with +7,3916.25597151212,5.807695590658208,103.97110209712828,658.4391432006579,0.6255270420006127,500,mac,phase-3,with +8,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078,500,mac,phase-3,with +9,3902.03785350188,5.786610528324133,103.59363100994068,656.0486545531619,0.6232560420030495,500,mac,phase-3,with +10,3910.647659587238,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752,500,mac,phase-3,with +11,3934.942942332293,5.835407833888616,104.46721495725885,661.5809789604639,0.6285118330015393,500,mac,phase-3,with +12,3885.9065565334263,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964,500,mac,phase-3,with +13,3895.060006851172,5.776262581325674,103.40837897028432,654.8754709299515,0.6221414999999979,500,mac,phase-3,with +14,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226,500,mac,phase-3,with +15,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504,500,mac,phase-3,with +16,3888.3659841602007,5.766335537141401,103.23066205859465,653.7500065585541,0.6210722920004628,500,mac,phase-3,with +17,3914.404354325165,5.804949695331016,103.92194425836848,658.1278312631894,0.625231291000091,500,mac,phase-3,with +18,3953.712874083537,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388,500,mac,phase-3,with +19,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325,500,mac,phase-3,with +20,3938.661296366054,5.840922046566098,104.56593204053677,662.2061449000541,0.6291057500020543,500,mac,phase-3,with +21,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758,500,mac,phase-3,with +22,3916.1808364849194,5.807584167561926,103.96910736755976,658.4265107672076,0.6255150409997441,500,mac,phase-3,with +23,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244,500,mac,phase-3,with +24,3892.105981516816,5.771881846247623,103.32995374173188,654.3788113846371,0.6216696659976151,500,mac,phase-3,with +25,3870.0916956217825,5.7392352899310515,102.74550533411048,650.6775549682176,0.618153416999121,500,mac,phase-3,with +26,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036,500,mac,phase-3,with +27,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518,500,mac,phase-3,with +28,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333,500,mac,phase-3,with +29,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414,500,mac,phase-3,with +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.1099223329983942,500,mac,phase-4,without +1,564.308332268748,0.4792136753465044,19.990056171597043,98.44418073546764,0.1151113749983778,500,mac,phase-4,without +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578128,0.1094470829993952,500,mac,phase-4,without +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924892,0.1137343750015134,500,mac,phase-4,without +4,551.1749149853679,0.4680607066477709,19.524818048735582,96.1530423084992,0.1124323330004699,500,mac,phase-4,without +5,548.5636364583718,0.4658431948572852,19.43231612833247,95.69750202925374,0.1118996670011256,500,mac,phase-4,without +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083,500,mac,phase-4,without +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377804,0.1143951250014652,500,mac,phase-4,without +8,533.602080044307,0.4531377605617067,18.902318012002624,93.08744281253348,0.1088477089979278,500,mac,phase-4,without +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393835,0.115234083001269,500,mac,phase-4,without +10,542.0632066445227,0.4603229948455245,19.20204492784188,94.56349522683776,0.1105736659992544,500,mac,phase-4,without +11,542.1635024143241,0.4604081665534718,19.205597804801968,94.5809919291275,0.1105941249988973,500,mac,phase-4,without +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865,500,mac,phase-4,without +13,545.9905515906022,0.4636581173279407,19.341167179965527,95.24862467393984,0.1113747919989691,500,mac,phase-4,without +14,541.7711140282568,0.4600749482224672,19.19169784013721,94.5125393634154,0.1105140830004529,500,mac,phase-4,without +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213731,0.1131512499996461,500,mac,phase-4,without +16,548.961128120956,0.4661807469181963,19.44639687144476,95.76684486690948,0.1119807499999296,500,mac,phase-4,without +17,550.204670187255,0.467236769539098,19.490448100773804,95.98378208531756,0.1122344159994099,500,mac,phase-4,without +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602,500,mac,phase-4,without +19,536.4276274869267,0.4555372306694755,19.00241019364098,93.58036252895798,0.1094240829988848,500,mac,phase-4,without +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.1141973749981843,500,mac,phase-4,without +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.1122670840013597,500,mac,phase-4,without +22,543.2377147988591,0.4613203934965441,19.24365070014155,94.7683894068615,0.1108132500012288,500,mac,phase-4,without +23,545.5227906275,0.463260892198532,19.32459721742448,95.16702328306988,0.1112793749998672,500,mac,phase-4,without +24,546.4460568464966,0.4640449348447745,19.357302996382025,95.32808804382654,0.1114677089972246,500,mac,phase-4,without +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472688,0.1121792079975421,500,mac,phase-4,without +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.1124135829995793,500,mac,phase-4,without +27,544.6440567149677,0.4625146666268074,19.293468950718253,95.01372722990702,0.1111001249992114,500,mac,phase-4,without +28,547.1235913519002,0.4646203007962273,19.38130397607119,95.44628464928212,0.1116059170017251,500,mac,phase-4,without +29,561.8191989819761,0.4770998899519389,19.901881123709455,98.00994882155548,0.1146036249992903,500,mac,phase-4,without +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368,500,mac,phase-4,with +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331,500,mac,phase-4,with +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703,500,mac,phase-4,with +3,3935.267962817907,4.790650299087921,105.05929606950852,659.6356950282599,0.6278394580003805,500,mac,phase-4,with +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595,500,mac,phase-4,with +5,3923.989045361744,4.776919760330386,104.75818439437823,657.7451054608762,0.6260399999991932,500,mac,phase-4,with +6,3898.694465671203,4.7461270705047545,104.0828985531672,653.5051889387316,0.6220044590008911,500,mac,phase-4,with +7,3894.514781749232,4.741038877217773,103.971314118566,652.8045838630626,0.6213376249979774,500,mac,phase-4,with +8,3918.225926213384,4.769903951309849,104.60432721194184,656.7790825265099,0.6251205420012411,500,mac,phase-4,with +9,3904.976514887927,4.753774605880575,104.25060953875165,654.5581957327869,0.6230067079995933,500,mac,phase-4,with +10,3900.61585011822,4.748466093174299,104.13419348387832,653.8272543678459,0.622310999999172,500,mac,phase-4,with +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011,500,mac,phase-4,with +12,3890.512694027786,4.736166883005214,103.86447094478568,652.1337477368717,0.620699125000101,500,mac,phase-4,with +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967,500,mac,phase-4,with +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517,500,mac,phase-4,with +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265,500,mac,phase-4,with +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703,500,mac,phase-4,with +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107,500,mac,phase-4,with +18,3901.9553617383385,4.750096765292231,104.1699542374576,654.0517853748532,0.6225247080001282,500,mac,phase-4,with +19,3916.8843211021353,4.76827073065291,104.56851056872397,656.5542006052852,0.6249065000010887,500,mac,phase-4,with +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055,500,mac,phase-4,with +21,3945.550802306459,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603,500,mac,phase-4,with +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766,500,mac,phase-4,with +23,3902.181791517138,4.750372412566515,104.17599920145868,654.0897398841586,0.6225608329987153,500,mac,phase-4,with +24,3924.885099333542,4.778010583437871,104.78210622140676,657.89530341183,0.6261829579998448,500,mac,phase-4,with +25,3922.3157590073897,4.774882763142472,104.71351290359992,657.4646266173096,0.6257730409997748,500,mac,phase-4,with +26,3926.91669945643,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049,500,mac,phase-4,with +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414,500,mac,phase-4,with +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465,500,mac,phase-4,with +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341,500,mac,phase-4,with +0,350.4356841019941,0.0,0.0,74.02446695872452,0.1093239590009034,500,mac,phase-22,without +1,346.4714390348405,0.0,0.0,73.18707755660988,0.108087249998789,500,mac,phase-22,without +2,345.72749858615435,0.0,0.0,73.02993090271205,0.1078551659993536,500,mac,phase-22,without +3,397.1397798880135,0.0,0.0,83.89003131815507,0.1238940410003124,500,mac,phase-22,without +4,349.2921261580012,0.0,0.0,73.78290689198242,0.1089672079979209,500,mac,phase-22,without +5,346.26975989888166,0.0,0.0,73.14447575772542,0.1080243329997756,500,mac,phase-22,without +6,350.39080418180447,0.0,0.0,74.01498672506138,0.1093099579993577,500,mac,phase-22,without +7,349.6472676163195,0.0,0.0,73.85792538564502,0.1090779999976803,500,mac,phase-22,without +8,361.78815498173515,0.0,0.0,76.42251214550602,0.1128655419997812,500,mac,phase-22,without +9,353.5460632089863,0.0,0.0,74.68148953342224,0.1102942910001729,500,mac,phase-22,without +10,342.0485443957291,0.0,0.0,72.25280506973742,0.1067074580023472,500,mac,phase-22,without +11,350.28796278914035,0.0,0.0,73.99326296912378,0.109277874998952,500,mac,phase-22,without +12,345.76957050704704,0.0,0.0,73.03881798715949,0.1078682910010684,500,mac,phase-22,without +13,356.1562593262886,0.0,0.0,75.23285568991444,0.1111085829979856,500,mac,phase-22,without +14,399.69388332935665,0.0,0.0,84.4295487085925,0.1246908339999208,500,mac,phase-22,without +15,352.1317801069439,0.0,0.0,74.38274269482416,0.1098530829985975,500,mac,phase-22,without +16,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226,500,mac,phase-22,without +17,345.3318911540231,0.0,0.0,72.94636455768223,0.1077317499984928,500,mac,phase-22,without +18,349.3621113945349,0.0,0.0,73.79769026041323,0.1089890410003135,500,mac,phase-22,without +19,349.9381648592711,0.0,0.0,73.9193732185175,0.1091687499974796,500,mac,phase-22,without +20,332.77482680217906,0.0,0.0,70.29386643211716,0.1038143749974551,500,mac,phase-22,without +21,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219,500,mac,phase-22,without +22,347.0243842208858,0.0,0.0,73.3038792252507,0.1082597500026167,500,mac,phase-22,without +23,348.0907413848161,0.0,0.0,73.52913174441076,0.1085924170001817,500,mac,phase-22,without +24,346.1256479612438,0.0,0.0,73.11403419640622,0.1079793749995587,500,mac,phase-22,without +25,348.0938122335487,0.0,0.0,73.52978041676593,0.1085933750000549,500,mac,phase-22,without +26,349.7563885449727,0.0,0.0,73.88097560268639,0.1091120419987419,500,mac,phase-22,without +27,330.1607584718866,0.0,0.0,69.74168232666726,0.1029988750015036,500,mac,phase-22,without +28,351.14262369975336,0.0,0.0,74.1737977183195,0.1095444999991741,500,mac,phase-22,without +29,346.8602380368698,0.0,0.0,73.26920571930842,0.108208542002103,500,mac,phase-22,without +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527,500,mac,phase-22,with +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564,500,mac,phase-22,with +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987,500,mac,phase-22,with +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384,500,mac,phase-22,with +4,2893.026344318771,1.8327376373551,0.0,574.8798130845488,0.6091410410008393,500,mac,phase-22,with +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858,500,mac,phase-22,with +6,2890.589531602901,1.8311939119105216,0.0,574.3955885141876,0.608627958001307,500,mac,phase-22,with +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217,500,mac,phase-22,with +8,2885.062076872394,1.827692258929286,0.0,573.2972154736007,0.6074641250015702,500,mac,phase-22,with +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232,500,mac,phase-22,with +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973,500,mac,phase-22,with +11,2877.88322905155,1.823144445315372,0.0,571.8706903741963,0.6059525829987251,500,mac,phase-22,with +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582,500,mac,phase-22,with +13,2899.5976737820447,1.8369005869453976,0.0,576.1856168360363,0.6105246670013003,500,mac,phase-22,with +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935,500,mac,phase-22,with +15,2893.7573506004273,1.8332007312111809,0.0,575.0250729973689,0.6092949579979177,500,mac,phase-22,with +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482,500,mac,phase-22,with +17,2903.462655182409,1.8393490599411704,0.0,576.9536360382741,0.6113384579984995,500,mac,phase-22,with +18,2896.517124134783,1.834949052942479,0.0,575.5734738429754,0.6098760419990867,500,mac,phase-22,with +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857,500,mac,phase-22,with +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489,500,mac,phase-22,with +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384,500,mac,phase-22,with +22,2893.456165583078,1.8330099299354896,0.0,574.9652238408559,0.6092315419991792,500,mac,phase-22,with +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818,500,mac,phase-22,with +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026,500,mac,phase-22,with +25,2893.683735625488,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463,500,mac,phase-22,with +26,2885.7042275061403,1.8280990625650808,0.0,573.4248186795049,0.6075993330014171,500,mac,phase-22,with +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378,500,mac,phase-22,with +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905,500,mac,phase-22,with +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568,500,mac,phase-22,with +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.1093228749996342,500,mac,phase-25,without +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.1089070000016363,500,mac,phase-25,without +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.1054213329989579,500,mac,phase-25,without +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395,500,mac,phase-25,without +4,354.3888189098163,0.9011582323003428,0.0,81.1376171378568,0.1093122500024037,500,mac,phase-25,without +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214,500,mac,phase-25,without +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.1027426660002674,500,mac,phase-25,without +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695,500,mac,phase-25,without +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098,500,mac,phase-25,without +9,369.5021486200632,0.9395891893710402,0.0,84.59782664299996,0.113973999999871,500,mac,phase-25,without +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.1095547080003598,500,mac,phase-25,without +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.1115347920022031,500,mac,phase-25,without +12,362.8293302804259,0.9226212015041912,0.0,83.07007929098847,0.1119157499997527,500,mac,phase-25,without +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.1091690419998485,500,mac,phase-25,without +14,356.00332808847406,0.905263689808702,0.0,81.50726036759092,0.1098102500000095,500,mac,phase-25,without +15,355.7832782663517,0.9047041357309752,0.0,81.4568797763704,0.1097423749997688,500,mac,phase-25,without +16,359.8954688249249,0.91516082673507,0.0,82.39836925159092,0.1110107919994334,500,mac,phase-25,without +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.1094131669997295,500,mac,phase-25,without +18,355.96537090717135,0.905167170323378,0.0,81.49857003911599,0.109798541998316,500,mac,phase-25,without +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.1092755830031819,500,mac,phase-25,without +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574,500,mac,phase-25,without +21,354.52849339615904,0.9015134038139284,0.0,81.16959572858,0.1093553329992573,500,mac,phase-25,without +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.1082306659991445,500,mac,phase-25,without +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.1068390000000363,500,mac,phase-25,without +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.1068899999991117,500,mac,phase-25,without +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.1085886250002658,500,mac,phase-25,without +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.1092238750024989,500,mac,phase-25,without +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.1091210000013234,500,mac,phase-25,without +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.1081110839986649,500,mac,phase-25,without +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092,500,mac,phase-25,without +0,2966.6029811713843,1.7742228601436734,0.0,591.4644861652034,0.6251297919989156,500,mac,phase-25,with +1,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265,500,mac,phase-25,with +2,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777,500,mac,phase-25,with +3,2883.2836595675476,1.724392449394602,0.0,574.8527521202967,0.6075725420014351,500,mac,phase-25,with +4,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583,500,mac,phase-25,with +5,2895.5215166664366,1.7317114893746155,0.0,577.2926666982493,0.6101513329995214,500,mac,phase-25,with +6,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914,500,mac,phase-25,with +7,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713,500,mac,phase-25,with +8,2892.0002968654867,1.729605569335403,0.0,576.590625854408,0.6094093330029864,500,mac,phase-25,with +9,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046,500,mac,phase-25,with +10,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127,500,mac,phase-25,with +11,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929,500,mac,phase-25,with +12,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064,500,mac,phase-25,with +13,2929.81050511024,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686,500,mac,phase-25,with +14,2896.032852824472,1.7320173018835905,0.0,577.3946140029238,0.6102590829977999,500,mac,phase-25,with +15,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724,500,mac,phase-25,with +16,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483,500,mac,phase-25,with +17,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001,500,mac,phase-25,with +18,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563,500,mac,phase-25,with +19,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858,500,mac,phase-25,with +20,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492,500,mac,phase-25,with +21,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169,500,mac,phase-25,with +22,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306,500,mac,phase-25,with +23,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008,500,mac,phase-25,with +24,2892.911846698592,1.7301507358313315,0.0,576.7723654930026,0.6096014169997943,500,mac,phase-25,with +25,2888.988239731408,1.727804161915112,0.0,575.9900989768936,0.6087746250013879,500,mac,phase-25,with +26,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271,500,mac,phase-25,with +27,2895.1272397065154,1.731475685932106,0.0,577.2140579929434,0.6100682500000403,500,mac,phase-25,with +28,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418,500,mac,phase-25,with +29,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198,500,mac,phase-25,with +0,352.72069606426135,0.9034682471999864,0.0,74.95440273066554,0.1094220830018457,500,mac,phase-13,without +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334,500,mac,phase-13,without +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.1084641250017739,500,mac,phase-13,without +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.1104006250025122,500,mac,phase-13,without +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.1071309159997326,500,mac,phase-13,without +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.1081715000000258,500,mac,phase-13,without +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.1083696669993514,500,mac,phase-13,without +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.108185165998293,500,mac,phase-13,without +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.1072509999976318,500,mac,phase-13,without +9,397.1924653152403,1.017379429229816,0.0,84.40481190647361,0.1232182499988994,500,mac,phase-13,without +10,355.586244105474,0.9108081387769468,0.0,75.56334188371707,0.1103110419971926,500,mac,phase-13,without +11,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.1079684579999593,500,mac,phase-13,without +12,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.1077727500014589,500,mac,phase-13,without +13,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.1088582079974003,500,mac,phase-13,without +14,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852,500,mac,phase-13,without +15,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.1082003749979776,500,mac,phase-13,without +16,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.1086762089980766,500,mac,phase-13,without +17,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.104039959001966,500,mac,phase-13,without +18,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.1092145830007211,500,mac,phase-13,without +19,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.1081076670016045,500,mac,phase-13,without +20,360.0307626207023,0.9221924476576192,0.0,76.50781787974321,0.1116898339969338,500,mac,phase-13,without +21,351.99272624691093,0.9016036057932448,0.0,74.79970655469884,0.1091962499995133,500,mac,phase-13,without +22,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802,500,mac,phase-13,without +23,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.1087829999996756,500,mac,phase-13,without +24,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903,500,mac,phase-13,without +25,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807,500,mac,phase-13,without +26,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.108505915999558,500,mac,phase-13,without +27,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257,500,mac,phase-13,without +28,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.1078266250005981,500,mac,phase-13,without +29,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.1082103750013629,500,mac,phase-13,without +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472,500,mac,phase-13,with +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569,500,mac,phase-13,with +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239,500,mac,phase-13,with +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394,500,mac,phase-13,with +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282,500,mac,phase-13,with +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405,500,mac,phase-13,with +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909,500,mac,phase-13,with +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421,500,mac,phase-13,with +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795,500,mac,phase-13,with +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559,500,mac,phase-13,with +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654,500,mac,phase-13,with +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195,500,mac,phase-13,with +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255,500,mac,phase-13,with +13,2895.9775494362375,1.2657535699498177,0.0,576.1177301540012,0.6104503339993244,500,mac,phase-13,with +14,2957.7576947981343,1.2927560028792655,0.0,588.4081006789415,0.6234731250006007,500,mac,phase-13,with +15,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398,500,mac,phase-13,with +16,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095,500,mac,phase-13,with +17,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925,500,mac,phase-13,with +18,2892.9834865033354,1.264444945907924,0.0,575.522099590091,0.609819208002591,500,mac,phase-13,with +19,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311,500,mac,phase-13,with +20,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305,500,mac,phase-13,with +21,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842,500,mac,phase-13,with +22,2887.0621846104905,1.2618569047778825,0.0,574.3441322378487,0.608571042001131,500,mac,phase-13,with +23,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829,500,mac,phase-13,with +24,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487,500,mac,phase-13,with +25,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155,500,mac,phase-13,with +26,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769,500,mac,phase-13,with +27,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812,500,mac,phase-13,with +28,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479,500,mac,phase-13,with +29,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126,500,mac,phase-13,with +0,349.5570979228151,0.0,0.0,73.44896139887625,0.1089127500017639,500,mac,phase-14,without +1,347.24183407513084,0.0,0.0,72.96247800034911,0.1081913749985687,500,mac,phase-14,without +2,344.7376100562334,0.0,0.0,72.43629027768198,0.1074111250018177,500,mac,phase-14,without +3,351.6277678281301,0.0,0.0,73.88405070145102,0.1095579159991757,500,mac,phase-14,without +4,349.9146892287216,0.0,0.0,73.52409850860788,0.1090241659985622,500,mac,phase-14,without +5,346.9369301696893,0.0,0.0,72.89841157081808,0.1080963750027876,500,mac,phase-14,without +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817,500,mac,phase-14,without +7,349.49852426123,0.0,0.0,73.4366538970852,0.1088944999974046,500,mac,phase-14,without +8,346.91740668224895,0.0,0.0,72.8943092942976,0.1080902920002699,500,mac,phase-14,without +9,346.9200802047294,0.0,0.0,72.89487105502462,0.1080911249991913,500,mac,phase-14,without +10,345.9247293954029,0.0,0.0,72.68572787467728,0.1077810000024328,500,mac,phase-14,without +11,348.7487013459444,0.0,0.0,73.27910105467957,0.1086608750010782,500,mac,phase-14,without +12,396.09105260708606,0.0,0.0,83.22667914985942,0.1234115000006568,500,mac,phase-14,without +13,346.2514323292838,0.0,0.0,72.75437471755963,0.1078827919991454,500,mac,phase-14,without +14,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314,500,mac,phase-14,without +15,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937,500,mac,phase-14,without +16,347.9824296464449,0.0,0.0,73.11809199260635,0.1084221249984693,500,mac,phase-14,without +17,357.2821339838763,0.0,0.0,75.07214650604604,0.1113196670012257,500,mac,phase-14,without +18,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021,500,mac,phase-14,without +19,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659,500,mac,phase-14,without +20,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366,500,mac,phase-14,without +21,337.4620408760736,0.0,0.0,70.90754718236538,0.1051442499992845,500,mac,phase-14,without +22,344.88858884112295,0.0,0.0,72.46801395032172,0.1074581659995601,500,mac,phase-14,without +23,347.06143366416603,0.0,0.0,72.92457225361979,0.1081351670000003,500,mac,phase-14,without +24,350.9464166897125,0.0,0.0,73.74088515349878,0.1093456249982409,500,mac,phase-14,without +25,349.12528336836505,0.0,0.0,73.35822849506813,0.1087782080030592,500,mac,phase-14,without +26,349.5365024599655,0.0,0.0,73.44463387880921,0.1089063330000499,500,mac,phase-14,without +27,347.7287463838418,0.0,0.0,73.06478804806281,0.1083430840008077,500,mac,phase-14,without +28,347.93963719702685,0.0,0.0,73.1091004401986,0.1084087920025922,500,mac,phase-14,without +29,349.69617582957653,0.0,0.0,73.47818445818719,0.1089560830005211,500,mac,phase-14,without +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732,500,mac,phase-14,with +1,2896.197005839203,2.303364416405272,0.0,578.6118178196027,0.6105097500003467,500,mac,phase-14,with +2,2891.913463676345,2.299957687313914,0.0,577.7560375972763,0.6096067920007044,500,mac,phase-14,with +3,2930.8278672154415,2.330906566902171,0.0,585.5304858567439,0.6178098329983186,500,mac,phase-14,with +4,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047,500,mac,phase-14,with +5,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838,500,mac,phase-14,with +6,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925,500,mac,phase-14,with +7,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505,500,mac,phase-14,with +8,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595,500,mac,phase-14,with +9,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481,500,mac,phase-14,with +10,2883.2526825801706,2.293069711476986,0.0,576.0257581018926,0.6077811249997467,500,mac,phase-14,with +11,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576,500,mac,phase-14,with +12,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386,500,mac,phase-14,with +13,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493,500,mac,phase-14,with +14,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134,500,mac,phase-14,with +15,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784,500,mac,phase-14,with +16,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753,500,mac,phase-14,with +17,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699,500,mac,phase-14,with +18,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159,500,mac,phase-14,with +19,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282,500,mac,phase-14,with +20,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848,500,mac,phase-14,with +21,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501,500,mac,phase-14,with +22,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107,500,mac,phase-14,with +23,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373,500,mac,phase-14,with +24,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919,500,mac,phase-14,with +25,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884,500,mac,phase-14,with +26,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782,500,mac,phase-14,with +27,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034,500,mac,phase-14,with +28,2898.382757621868,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129,500,mac,phase-14,with +29,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197,500,mac,phase-14,with +0,350.2437335737623,0.0,0.0,73.26884233321877,0.1097303749993443,500,mac,phase-15,without +1,348.89690052127264,0.0,0.0,72.9870931137106,0.1093084159983845,500,mac,phase-15,without +2,344.6200794331875,0.0,0.0,72.09240835577674,0.1079685000004246,500,mac,phase-15,without +3,348.24483274191084,0.0,0.0,72.8506845309527,0.109104125000158,500,mac,phase-15,without +4,345.50688280525327,0.0,0.0,72.27792218577584,0.108246332998533,500,mac,phase-15,without +5,349.28976713270595,0.0,0.0,73.06927840084587,0.1094315000009373,500,mac,phase-15,without +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958,500,mac,phase-15,without +7,346.57482729959054,0.0,0.0,72.50132962829542,0.1085809169999265,500,mac,phase-15,without +8,346.00907053653475,0.0,0.0,72.3829767811272,0.1084036669999477,500,mac,phase-15,without +9,345.64931945621555,0.0,0.0,72.30771906012771,0.1082909579999977,500,mac,phase-15,without +10,346.6860092861362,0.0,0.0,72.5245882184189,0.1086157500030822,500,mac,phase-15,without +11,356.34736331255743,0.0,0.0,74.54568426391941,0.1116426250009681,500,mac,phase-15,without +12,349.03401953271384,0.0,0.0,73.01577757046779,0.1093513749983685,500,mac,phase-15,without +13,344.75839219546305,0.0,0.0,72.12134253789166,0.1080118329991819,500,mac,phase-15,without +14,344.37390740929675,0.0,0.0,72.04091067722797,0.1078913749988714,500,mac,phase-15,without +15,338.3729501588257,0.0,0.0,70.78554720177965,0.106011291998584,500,mac,phase-15,without +16,343.2693938159089,0.0,0.0,71.80985320332805,0.1075453340017702,500,mac,phase-15,without +17,393.3508368048623,0.0,0.0,82.28658411507446,0.1232357089975266,500,mac,phase-15,without +18,340.6583170286766,0.0,0.0,71.26363194337405,0.1067272910004248,500,mac,phase-15,without +19,394.2611769502774,0.0,0.0,82.47702169379554,0.123520916000416,500,mac,phase-15,without +20,350.23469104240684,0.0,0.0,73.26695069108311,0.1097275419997458,500,mac,phase-15,without +21,348.4636090527246,0.0,0.0,72.89645119424085,0.1091726670019852,500,mac,phase-15,without +22,344.2709700068494,0.0,0.0,72.01937680356475,0.1078591250006866,500,mac,phase-15,without +23,346.28117640365764,0.0,0.0,72.43989966072517,0.108488917001523,500,mac,phase-15,without +24,348.48262613381,0.0,0.0,72.90042945104354,0.1091786249999131,500,mac,phase-15,without +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156,500,mac,phase-15,without +26,338.7078270988537,0.0,0.0,70.85560140508998,0.1061162080004578,500,mac,phase-15,without +27,391.2020495267679,0.0,0.0,81.83707098694545,0.1225624999970023,500,mac,phase-15,without +28,348.54553126622045,0.0,0.0,72.91358881918269,0.1091983330006769,500,mac,phase-15,without +29,344.56861072035196,0.0,0.0,72.08164141651599,0.1079523749976942,500,mac,phase-15,without +0,2880.5533097361076,1.825887494790604,0.0,573.3286733642497,0.6070650420006132,500,mac,phase-15,with +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006,500,mac,phase-15,with +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765,500,mac,phase-15,with +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952,500,mac,phase-15,with +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557,500,mac,phase-15,with +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265,500,mac,phase-15,with +6,2887.4259199457047,1.830243815153036,0.0,574.6965579580532,0.6085134170025412,500,mac,phase-15,with +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313,500,mac,phase-15,with +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573,500,mac,phase-15,with +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542,500,mac,phase-15,with +10,2889.5760202011456,1.8316066926098376,0.0,575.124501479489,0.6089665419967787,500,mac,phase-15,with +11,2886.0018121415305,1.8293411203054568,0.0,574.4131117759134,0.6082132920018921,500,mac,phase-15,with +12,2885.7890726205305,1.8292062717575304,0.0,574.3707693318646,0.6081684580021829,500,mac,phase-15,with +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014,500,mac,phase-15,with +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828,500,mac,phase-15,with +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965,500,mac,phase-15,with +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266,500,mac,phase-15,with +17,2884.020161092751,1.8280850172308232,0.0,574.0186954104786,0.6077956670014828,500,mac,phase-15,with +18,2897.609582545234,1.8366989021423303,0.0,576.7234552726918,0.6106595829987782,500,mac,phase-15,with +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742,500,mac,phase-15,with +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978,500,mac,phase-15,with +21,2887.338331075706,1.830188295464553,0.0,574.6791247758696,0.6084949579999375,500,mac,phase-15,with +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784,500,mac,phase-15,with +23,2886.9599134100326,1.829948429019025,0.0,574.6038067119739,0.6084152079965861,500,mac,phase-15,with +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548,500,mac,phase-15,with +25,2884.892258368299,1.8286378108570625,0.0,574.1922726091175,0.6079794580000453,500,mac,phase-15,with +26,2922.417689909578,1.852423941096783,0.0,581.66111750439,0.6158877919988299,500,mac,phase-15,with +27,2884.9082776565983,1.8286479649542224,0.0,574.1954609956258,0.6079828340007225,500,mac,phase-15,with +28,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738,500,mac,phase-15,with +29,2886.107584019245,1.8294081656012915,0.0,574.4341639988056,0.6082355830003507,500,mac,phase-15,with +0,403.80530111655503,0.0,0.0,85.20626977676426,0.1254480830029933,500,mac,phase-12,without +1,351.73175655141023,0.0,0.0,74.21831970730892,0.1092706669987819,500,mac,phase-12,without +2,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061,500,mac,phase-12,without +3,328.1519445206855,0.0,0.0,69.24278367640527,0.1019452500004263,500,mac,phase-12,without +4,349.2189998358078,0.0,0.0,73.68810718656938,0.1084900419991754,500,mac,phase-12,without +5,347.0344361100074,0.0,0.0,73.22714611040125,0.1078113750008924,500,mac,phase-12,without +6,348.8421177226201,0.0,0.0,73.60858193288522,0.1083729580022918,500,mac,phase-12,without +7,349.7607123637488,0.0,0.0,73.802413025719,0.1086583329997665,500,mac,phase-12,without +8,348.86438286229674,0.0,0.0,73.61328006213873,0.1083798749968991,500,mac,phase-12,without +9,349.5485351074402,0.0,0.0,73.7576418637468,0.1085924170001817,500,mac,phase-12,without +10,349.2062562033976,0.0,0.0,73.6854181743695,0.1084860830014804,500,mac,phase-12,without +11,348.9237973941225,0.0,0.0,73.62581702144415,0.1083983329990587,500,mac,phase-12,without +12,348.52452136305044,0.0,0.0,73.54156646523587,0.1082742920007149,500,mac,phase-12,without +13,349.0319010610443,0.0,0.0,73.6486277923333,0.1084319170004164,500,mac,phase-12,without +14,353.06652971176385,0.0,0.0,74.49996792162754,0.1096853340022789,500,mac,phase-12,without +15,345.82868949784233,0.0,0.0,72.97272356856122,0.1074367920009535,500,mac,phase-12,without +16,338.35479420348673,0.0,0.0,71.39566963446653,0.1051149160011846,500,mac,phase-12,without +17,337.7432057089416,0.0,0.0,71.26661938645225,0.1049249169991526,500,mac,phase-12,without +18,351.2683696181278,0.0,0.0,74.1205412186682,0.1091267090014298,500,mac,phase-12,without +19,349.83072674614044,0.0,0.0,73.81718664146358,0.1086800840021169,500,mac,phase-12,without +20,351.41952290191574,0.0,0.0,74.15243581599138,0.1091736670023237,500,mac,phase-12,without +21,347.59841378933527,0.0,0.0,73.34615008127537,0.1079865829997288,500,mac,phase-12,without +22,349.5599332493968,0.0,0.0,73.76004696629455,0.1085959580013877,500,mac,phase-12,without +23,340.3002223481199,0.0,0.0,71.80617111838608,0.105719291997957,500,mac,phase-12,without +24,350.65422853504253,0.0,0.0,73.99095235328762,0.1089359170000534,500,mac,phase-12,without +25,349.36518956692623,0.0,0.0,73.71895443308603,0.1085354579990962,500,mac,phase-12,without +26,347.2503698208989,0.0,0.0,73.27270991546585,0.1078784579985949,500,mac,phase-12,without +27,348.0902365247607,0.0,0.0,73.44992876016128,0.1081393749991548,500,mac,phase-12,without +28,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439,500,mac,phase-12,without +29,348.35848065329765,0.0,0.0,73.50653049748111,0.1082227090009837,500,mac,phase-12,without +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959,500,mac,phase-12,with +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716,500,mac,phase-12,with +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105,500,mac,phase-12,with +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413,500,mac,phase-12,with +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463,500,mac,phase-12,with +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355,500,mac,phase-12,with +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888,500,mac,phase-12,with +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446,500,mac,phase-12,with +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244,500,mac,phase-12,with +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718,500,mac,phase-12,with +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669,500,mac,phase-12,with +11,2923.2033739341073,2.15396766984184,0.0,582.5472874576939,0.6160578330018325,500,mac,phase-12,with +12,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169,500,mac,phase-12,with +13,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923,500,mac,phase-12,with +14,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987,500,mac,phase-12,with +15,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699,500,mac,phase-12,with +16,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191,500,mac,phase-12,with +17,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126,500,mac,phase-12,with +18,2890.736802936653,2.130044618540409,0.0,576.0772234736866,0.6092155839978659,500,mac,phase-12,with +19,2899.8549367525866,2.136763331861536,0.0,577.8943204873644,0.6111372079976718,500,mac,phase-12,with +20,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774,500,mac,phase-12,with +21,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751,500,mac,phase-12,with +22,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521,500,mac,phase-12,with +23,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356,500,mac,phase-12,with +24,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575,500,mac,phase-12,with +25,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191,500,mac,phase-12,with +26,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396,500,mac,phase-12,with +27,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963,500,mac,phase-12,with +28,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486,500,mac,phase-12,with +29,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595,500,mac,phase-12,with +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219,500,mac,phase-24,without +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.1019022909968043,500,mac,phase-24,without +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134,500,mac,phase-24,without +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.1075519169971812,500,mac,phase-24,without +4,407.89391497730094,0.868260994398697,0.0,86.71284800581769,0.1239151669979037,500,mac,phase-24,without +5,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.1092284160004055,500,mac,phase-24,without +6,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.1055996670002059,500,mac,phase-24,without +7,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.1072167499987699,500,mac,phase-24,without +8,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.1087792079997598,500,mac,phase-24,without +9,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.1089186249992053,500,mac,phase-24,without +10,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.1087490000027173,500,mac,phase-24,without +11,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.1089228750024631,500,mac,phase-24,without +12,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.1083967079975991,500,mac,phase-24,without +13,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.1076077499965322,500,mac,phase-24,without +14,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.1083305419997486,500,mac,phase-24,without +15,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.1090984170004958,500,mac,phase-24,without +16,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.108379416000389,500,mac,phase-24,without +17,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.1077096250010072,500,mac,phase-24,without +18,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.108017208000092,500,mac,phase-24,without +19,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.1086980000000039,500,mac,phase-24,without +20,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.1092419999986304,500,mac,phase-24,without +21,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.110597749997396,500,mac,phase-24,without +22,405.9576962196502,0.8641394736744057,0.0,86.30123352304825,0.123326958000689,500,mac,phase-24,without +23,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.1104769160010619,500,mac,phase-24,without +24,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.1082216249997145,500,mac,phase-24,without +25,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.1076850419995025,500,mac,phase-24,without +26,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.1083025000007182,500,mac,phase-24,without +27,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.1082828329999756,500,mac,phase-24,without +28,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.1102724999982456,500,mac,phase-24,without +29,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.1092242089980572,500,mac,phase-24,without +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118,500,mac,phase-24,with +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383,500,mac,phase-24,with +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707,500,mac,phase-24,with +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253,500,mac,phase-24,with +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816,500,mac,phase-24,with +5,2959.9483484575985,0.7817513006203682,0.0,587.2311835138305,0.6225438329965982,500,mac,phase-24,with +6,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121,500,mac,phase-24,with +7,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468,500,mac,phase-24,with +8,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847,500,mac,phase-24,with +9,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303,500,mac,phase-24,with +10,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009,500,mac,phase-24,with +11,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886,500,mac,phase-24,with +12,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326,500,mac,phase-24,with +13,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613,500,mac,phase-24,with +14,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585,500,mac,phase-24,with +15,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853,500,mac,phase-24,with +16,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831,500,mac,phase-24,with +17,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403,500,mac,phase-24,with +18,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213,500,mac,phase-24,with +19,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625,500,mac,phase-24,with +20,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838,500,mac,phase-24,with +21,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121,500,mac,phase-24,with +22,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417,500,mac,phase-24,with +23,2895.520515500325,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469,500,mac,phase-24,with +24,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353,500,mac,phase-24,with +25,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964,500,mac,phase-24,with +26,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662,500,mac,phase-24,with +27,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742,500,mac,phase-24,with +28,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383,500,mac,phase-24,with +29,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062,500,mac,phase-24,with +0,340.64918730588545,0.0,0.0,71.49545654085841,0.1037612910004099,500,mac,phase-23,without +1,359.87735697665374,0.0,0.0,75.53106507974576,0.1096181659995636,500,mac,phase-23,without +2,357.04781740694864,0.0,0.0,74.93720127241826,0.1087562919965421,500,mac,phase-23,without +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077,500,mac,phase-23,without +4,361.7094135366254,0.0,0.0,75.91557713803003,0.110176207999757,500,mac,phase-23,without +5,353.73252394336674,0.0,0.0,74.2413874305585,0.1077464580012019,500,mac,phase-23,without +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035,500,mac,phase-23,without +7,338.8384735800955,0.0,0.0,71.1154239169323,0.1032097499992232,500,mac,phase-23,without +8,355.53448516285744,0.0,0.0,74.61958307833125,0.1082953330005693,500,mac,phase-23,without +9,355.65390787855864,0.0,0.0,74.64464751969373,0.1083317090015043,500,mac,phase-23,without +10,356.53813036938084,0.0,0.0,74.83022814932919,0.1086010420003731,500,mac,phase-23,without +11,354.8124958061129,0.0,0.0,74.46805194130923,0.1080754159993375,500,mac,phase-23,without +12,356.29587060954617,0.0,0.0,74.77938266730163,0.1085272499985876,500,mac,phase-23,without +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865,500,mac,phase-23,without +14,336.2974250979103,0.0,0.0,70.58210862338031,0.102435749999131,500,mac,phase-23,without +15,357.04535515580596,0.0,0.0,74.9366844951115,0.1087555419981072,500,mac,phase-23,without +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161,500,mac,phase-23,without +17,356.4013372564373,0.0,0.0,74.80151800873296,0.1085593749994586,500,mac,phase-23,without +18,358.36306935886296,0.0,0.0,75.21324637181236,0.1091569159980281,500,mac,phase-23,without +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413,500,mac,phase-23,without +20,358.2503538344796,0.0,0.0,75.18958963586425,0.1091225829986797,500,mac,phase-23,without +21,336.7975356102561,0.0,0.0,70.68707182521217,0.1025880829984089,500,mac,phase-23,without +22,351.84930825701434,0.0,0.0,73.84613809406216,0.1071728329989127,500,mac,phase-23,without +23,355.9800156634005,0.0,0.0,74.71309102646735,0.1084310410005855,500,mac,phase-23,without +24,353.9434572371491,0.0,0.0,74.28565811342115,0.107810708002944,500,mac,phase-23,without +25,356.2458047328008,0.0,0.0,74.76887484033942,0.1085119999988819,500,mac,phase-23,without +26,404.1946903107813,0.0,0.0,84.83238766458936,0.1231171670006006,500,mac,phase-23,without +27,361.9292404971096,0.0,0.0,75.96171442379344,0.1102431670005898,500,mac,phase-23,without +28,349.61795580865146,0.0,0.0,73.37782180873364,0.1064931660002912,500,mac,phase-23,without +29,356.15757387973906,0.0,0.0,74.75035694757553,0.1084851249979692,500,mac,phase-23,without +0,2919.8438339372997,1.8030529009870455,0.0,578.746591348305,0.6114040419997764,500,mac,phase-23,with +1,2940.8832996175584,1.816045126526332,0.0,582.9168551496465,0.6158096250001108,500,mac,phase-23,with +2,2918.2461827418515,1.802066324380024,0.0,578.4299185273882,0.6110694999988482,500,mac,phase-23,with +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858,500,mac,phase-23,with +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065,500,mac,phase-23,with +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882,500,mac,phase-23,with +6,2918.686534688,1.8023382491469344,0.0,578.5172013419226,0.61116170799869,500,mac,phase-23,with +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931,500,mac,phase-23,with +8,2928.492909138035,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707,500,mac,phase-23,with +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285,500,mac,phase-23,with +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552,500,mac,phase-23,with +11,2901.6572096881105,1.7918223532329065,0.0,575.1417934923327,0.6075958329965943,500,mac,phase-23,with +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582,500,mac,phase-23,with +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802,500,mac,phase-23,with +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459,500,mac,phase-23,with +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779,500,mac,phase-23,with +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259,500,mac,phase-23,with +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319,500,mac,phase-23,with +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815,500,mac,phase-23,with +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445,500,mac,phase-23,with +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325,500,mac,phase-23,with +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322,500,mac,phase-23,with +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245,500,mac,phase-23,with +23,2956.03202168321,1.8253997183538984,0.0,585.9195058931133,0.6189817089980352,500,mac,phase-23,with +24,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916,500,mac,phase-23,with +25,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485,500,mac,phase-23,with +26,2885.41686295252,1.781793664727619,0.0,571.9227701985892,0.6041951670013077,500,mac,phase-23,with +27,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423,500,mac,phase-23,with +28,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737,500,mac,phase-23,with +29,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253,500,mac,phase-23,with +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.112606250000681,500,mac,phase-8,without +1,532.8827144907617,0.4343244694909029,20.07915432031021,96.28639392867557,0.111914875000366,500,mac,phase-8,without +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782764,0.1119704580014513,500,mac,phase-8,without +3,541.410961550333,0.4412753918592055,20.40050080826019,97.82735994909464,0.1137059590000717,500,mac,phase-8,without +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.1066040840014466,500,mac,phase-8,without +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.1111882910008716,500,mac,phase-8,without +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.1162620830000378,500,mac,phase-8,without +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032647,0.1119292080002196,500,mac,phase-8,without +8,530.81126187005,0.4326361382012946,20.001101466075237,95.91210386893316,0.1114798330017947,500,mac,phase-8,without +9,539.3258148522472,0.4395758992526152,20.32193195775552,97.45059551123364,0.1132680410009925,500,mac,phase-8,without +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.4540377854172,0.1132720419991528,500,mac,phase-8,without +11,530.2759930276953,0.4321998689253943,19.980932401858617,95.81538632638356,0.1113674169973819,500,mac,phase-8,without +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647,500,mac,phase-8,without +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.1108480830007465,500,mac,phase-8,without +14,530.8965736635557,0.4327056713245281,20.00431603584934,95.92751882748384,0.1114977500001259,500,mac,phase-8,without +15,538.9450995668178,0.4392655983930176,20.30758651032335,97.38180419759053,0.113188084000285,500,mac,phase-8,without +16,533.1491585277918,0.4345416339097989,20.08919399844532,96.33453760984928,0.1119708330006687,500,mac,phase-8,without +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.1070651660011208,500,mac,phase-8,without +18,514.0279683439179,0.4189569647944158,19.368702757034143,92.87953634903896,0.1079550419999577,500,mac,phase-8,without +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129492,0.1120103749999543,500,mac,phase-8,without +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.112965249998524,500,mac,phase-8,without +21,531.0947711170215,0.4328672115687322,20.011784165600623,95.96333105700664,0.111539375000575,500,mac,phase-8,without +22,541.2827962393301,0.4411709311041561,20.395671507199836,97.80420180324448,0.1136790419986937,500,mac,phase-8,without +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547,500,mac,phase-8,without +24,500.526534169196,0.4079526610783415,18.85996533139102,90.4399668636754,0.1051195000000007,500,mac,phase-8,without +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.4115216807082,0.1132226250010717,500,mac,phase-8,without +26,531.2782888578109,0.4330167871568365,20.018699160096823,95.9964908143079,0.1115779169995221,500,mac,phase-8,without +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.114608040999883,500,mac,phase-8,without +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.1120559580012923,500,mac,phase-8,without +29,534.66053966854,0.4357734806075874,20.146143218858462,96.60762854700516,0.112288249998528,500,mac,phase-8,without +0,3932.41265398972,4.478944969047389,106.51806719621725,662.7828265851253,0.6318551250005839,500,mac,phase-8,with +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532,500,mac,phase-8,with +2,3908.699448921323,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069,500,mac,phase-8,with +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925,500,mac,phase-8,with +4,3869.162738242476,4.406904489866914,104.8048037702936,652.1224606396295,0.6216922079984215,500,mac,phase-8,with +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051,500,mac,phase-8,with +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978,500,mac,phase-8,with +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778,500,mac,phase-8,with +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074,500,mac,phase-8,with +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706,500,mac,phase-8,with +10,3894.38802258755,4.435635620180903,105.48808621527964,656.3740198554913,0.6257453749967681,500,mac,phase-8,with +11,3910.956019959519,4.4545062614400495,105.93686695439756,659.1664491082828,0.6284075000003213,500,mac,phase-8,with +12,3903.508961494342,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862,500,mac,phase-8,with +13,3851.845836610113,4.3871808605659375,104.33573730804557,649.2038083969791,0.6189097499991476,500,mac,phase-8,with +14,3886.53331843636,4.426689258052392,105.27532423473473,655.0501600581138,0.6244832910015248,500,mac,phase-8,with +15,3901.3203334792697,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713,500,mac,phase-8,with +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272,500,mac,phase-8,with +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295,500,mac,phase-8,with +18,3870.832218570019,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032,500,mac,phase-8,with +19,3910.039595065132,4.453462470507768,105.91204356553436,659.0119915944615,0.6282602499995846,500,mac,phase-8,with +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754,500,mac,phase-8,with +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134,500,mac,phase-8,with +22,3893.81000588388,4.434977269891977,105.47242935840843,656.2765988627368,0.6256524999989779,500,mac,phase-8,with +23,3910.340138863701,4.453804784311792,105.92018445697892,659.062646316093,0.6283085409995692,500,mac,phase-8,with +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367,500,mac,phase-8,with +25,3905.901941366857,4.448749759801594,105.79996609212364,658.314616711693,0.6275954170014302,500,mac,phase-8,with +26,3892.3977655668273,4.43336875440296,105.43417571561324,656.0385748526666,0.6254255829990143,500,mac,phase-8,with +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478,500,mac,phase-8,with +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464,500,mac,phase-8,with +29,3882.8875904046654,4.422536841543025,105.176571652636,654.4356960782576,0.6238975000014761,500,mac,phase-8,with +0,350.06159203288655,0.0,0.0,73.32729560385845,0.1087225420014874,500,mac,phase-1,without +1,348.15467995134566,0.0,0.0,72.9278553079902,0.1081302909988153,500,mac,phase-1,without +2,349.6879634578959,0.0,0.0,73.24903173947592,0.1086064999981317,500,mac,phase-1,without +3,345.65050696371725,0.0,0.0,72.40330695111199,0.1073525419997167,500,mac,phase-1,without +4,340.1390654644476,0.0,0.0,71.24882697039375,0.1056407920004858,500,mac,phase-1,without +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063,500,mac,phase-1,without +6,350.6147227766598,0.0,0.0,73.44315973314124,0.1088943340000696,500,mac,phase-1,without +7,344.5928124845704,0.0,0.0,72.18175200907858,0.1070240420012851,500,mac,phase-1,without +8,347.23235425746674,0.0,0.0,72.73465602438603,0.1078438339973217,500,mac,phase-1,without +9,350.3030715703917,0.0,0.0,73.37787824940402,0.1087975410009676,500,mac,phase-1,without +10,348.65723454798535,0.0,0.0,73.03312526705905,0.1082863749979878,500,mac,phase-1,without +11,348.17815851859984,0.0,0.0,72.93277335635823,0.108137582999916,500,mac,phase-1,without +12,352.10694777546087,0.0,0.0,73.7557356514507,0.1093577909996383,500,mac,phase-1,without +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034,500,mac,phase-1,without +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177,500,mac,phase-1,without +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136,500,mac,phase-1,without +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447,500,mac,phase-1,without +17,349.51704839988264,0.0,0.0,73.21323021406631,0.1085534169978927,500,mac,phase-1,without +18,339.98330586077833,0.0,0.0,71.21620005341305,0.1055924159991263,500,mac,phase-1,without +19,350.75907473976633,0.0,0.0,73.47339709511014,0.1089391670029726,500,mac,phase-1,without +20,347.3249194409645,0.0,0.0,72.75404562532324,0.1078725830011535,500,mac,phase-1,without +21,398.16710519859527,0.0,0.0,83.40394286925121,0.1236632090003695,500,mac,phase-1,without +22,353.67980870531187,0.0,0.0,74.08520235380207,0.1098462920017482,500,mac,phase-1,without +23,397.841502728058,0.0,0.0,83.33573901841518,0.1235620830011612,500,mac,phase-1,without +24,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113,500,mac,phase-1,without +25,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702,500,mac,phase-1,without +26,349.00389754202627,0.0,0.0,73.1057406593714,0.1083940419994178,500,mac,phase-1,without +27,349.8933590281963,0.0,0.0,73.29205588734567,0.1086702919965318,500,mac,phase-1,without +28,348.0918976573909,0.0,0.0,72.91470431990045,0.108110791999934,500,mac,phase-1,without +29,348.4616335231562,0.0,0.0,72.99215277966113,0.1082256250010686,500,mac,phase-1,without +0,2951.495904520558,2.2148803831535737,0.033558793684145,582.077276451496,0.6138243749992398,500,mac,phase-1,with +1,2934.3258093471427,2.201995490811955,0.0333635680426053,578.6910876989903,0.6102534999990894,500,mac,phase-1,with +2,2958.2731076379414,2.219966175146153,0.033635851138578,583.4138379986367,0.6152338339998096,500,mac,phase-1,with +3,2935.405490800975,2.202805712255422,0.0333758441250821,578.9040163495498,0.6104780419991584,500,mac,phase-1,with +4,2932.144611632538,2.2003586625099203,0.0333387676137866,578.2609242611298,0.6097998750010447,500,mac,phase-1,with +5,2944.56143397673,2.2096765735356927,0.0334799480838741,580.7096995147969,0.6123822089975874,500,mac,phase-1,with +6,2943.7381974341965,2.2090587951183283,0.0334705878048231,580.5473454746576,0.612210999999661,500,mac,phase-1,with +7,2933.019134274525,2.201014927369172,0.033348711020745,578.4333926548225,0.6099817499998608,500,mac,phase-1,with +8,2934.32941563607,2.2019981970662945,0.033363609046459,578.6917989108315,0.6102542500011623,500,mac,phase-1,with +9,2925.5930077164485,2.195442166108989,0.0332642752440755,576.9688541084912,0.6084373340017919,500,mac,phase-1,with +10,2917.215217792331,2.189155251555359,0.0331690189629599,575.316633912541,0.6066950000022189,500,mac,phase-1,with +11,2923.9008598754463,2.194172333732569,0.0332450353595843,576.6351383119911,0.6080854169995291,500,mac,phase-1,with +12,2924.1478899759636,2.1943577116363113,0.0332478441157016,576.6838561868458,0.608136791997822,500,mac,phase-1,with +13,2930.0543738836395,2.198790092965551,0.0333150014085689,577.8486994316285,0.6093651670016698,500,mac,phase-1,with +14,2933.8690140150657,2.201652699545132,0.0333583742355323,578.6010011153077,0.6101584999996703,500,mac,phase-1,with +15,2982.76855070272,2.23834820177805,0.0339143666936068,588.2446903006103,0.6203281659982167,500,mac,phase-1,with +16,2921.9182046353953,2.1926844969407173,0.0332224923778896,576.2441302944961,0.6076730829990993,500,mac,phase-1,with +17,2933.0884565591487,2.2010669486401797,0.0333494992218209,578.4470640024837,0.6099961669970071,500,mac,phase-1,with +18,2923.955156023265,2.19421307899415,0.0332456527120325,576.645846290205,0.608096709001984,500,mac,phase-1,with +19,2920.4111839350135,2.1915535888540183,0.033205357406879,575.9469242223173,0.6073596669994004,500,mac,phase-1,with +20,2923.425629243495,2.193815708130423,0.03323963194137,576.5414160230634,0.6079865829997289,500,mac,phase-1,with +21,2927.2629120147917,2.1966953063442443,0.033283262217337,577.2981831597108,0.6087846250011353,500,mac,phase-1,with +22,2927.0900125724725,2.196565558041878,0.0332812963339678,577.2640849126723,0.6087486670003273,500,mac,phase-1,with +23,2935.697195491655,2.2030246151500767,0.0333791608356072,578.9615446936073,0.610538707998785,500,mac,phase-1,with +24,2924.6337375033436,2.194722304436847,0.0332533682490431,576.7796722796531,0.6082378339997376,500,mac,phase-1,with +25,2924.4710510312407,2.1946002202167354,0.0332515184881323,576.7475881766557,0.6082039999964763,500,mac,phase-1,with +26,2911.763322173297,2.1850640052693304,0.0331070303828686,574.2414419908566,0.6055611659976421,500,mac,phase-1,with +27,2927.3087935001095,2.1967297370211165,0.0332837838942593,577.3072316459284,0.6087941670011787,500,mac,phase-1,with +28,2926.9894358421257,2.19649008261035,0.0332801527668234,577.2442497405534,0.6087277499973425,500,mac,phase-1,with +29,2917.142890252357,2.1891009750614616,0.0331681965918403,575.3023698854705,0.6066799580003135,500,mac,phase-1,with +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.1091742919998068,500,mac,phase-30,without +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111,500,mac,phase-30,without +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464,500,mac,phase-30,without +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.1080349999974714,500,mac,phase-30,without +4,352.95630957691594,0.902188806075616,0.0,74.88167090427612,0.1085900830003083,500,mac,phase-30,without +5,355.88853599161115,0.9096838466130364,0.0,75.503759268882,0.1094922079973912,500,mac,phase-30,without +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448,500,mac,phase-30,without +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.1080987919995095,500,mac,phase-30,without +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.1078200419979111,500,mac,phase-30,without +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.1075920420007605,500,mac,phase-30,without +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.1079821250023087,500,mac,phase-30,without +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.1082636669998464,500,mac,phase-30,without +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.106822749999992,500,mac,phase-30,without +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.1075403750000987,500,mac,phase-30,without +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614,500,mac,phase-30,without +15,356.18445481047524,0.9104402423442992,0.0,75.56654011457682,0.1095832499995594,500,mac,phase-30,without +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.1081861250022484,500,mac,phase-30,without +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.1078271250007674,500,mac,phase-30,without +18,353.32834195736103,0.9031397550741976,0.0,74.96059967115839,0.1087045420026697,500,mac,phase-30,without +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.107993666002585,500,mac,phase-30,without +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.1081487080009537,500,mac,phase-30,without +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.1078684999993129,500,mac,phase-30,without +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.1099669169998378,500,mac,phase-30,without +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.1078520410010241,500,mac,phase-30,without +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.1094752499993774,500,mac,phase-30,without +25,352.68558102305303,0.9014967989796868,0.0,74.82423431531402,0.1085067910025827,500,mac,phase-30,without +26,353.91150762756075,0.904630380189732,0.0,75.08432155574776,0.1088839580006606,500,mac,phase-30,without +27,358.5786109780503,0.916559925817226,0.0,76.07447384282976,0.110319832998357,500,mac,phase-30,without +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.108140459000424,500,mac,phase-30,without +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.1086507079999137,500,mac,phase-30,without +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153,500,mac,phase-30,with +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463,500,mac,phase-30,with +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461,500,mac,phase-30,with +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329,500,mac,phase-30,with +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703,500,mac,phase-30,with +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084,500,mac,phase-30,with +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313,500,mac,phase-30,with +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481,500,mac,phase-30,with +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714,500,mac,phase-30,with +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226,500,mac,phase-30,with +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025,500,mac,phase-30,with +11,2887.674248714824,2.131296944146192,0.0,576.88214005382,0.6101675410027383,500,mac,phase-30,with +12,2878.129996539094,2.12425264699067,0.0,574.975446934678,0.6081508339993889,500,mac,phase-30,with +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829,500,mac,phase-30,with +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129,500,mac,phase-30,with +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895,500,mac,phase-30,with +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531,500,mac,phase-30,with +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873,500,mac,phase-30,with +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236,500,mac,phase-30,with +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326,500,mac,phase-30,with +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912,500,mac,phase-30,with +21,2877.9582412967975,2.124125880121724,0.0,574.9411347085722,0.6081145419993845,500,mac,phase-30,with +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427,500,mac,phase-30,with +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106,500,mac,phase-30,with +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583,500,mac,phase-30,with +25,3027.270938994274,2.234328648479853,0.0,604.7699246502577,0.639664417001768,500,mac,phase-30,with +26,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333,500,mac,phase-30,with +27,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665,500,mac,phase-30,with +28,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394,500,mac,phase-30,with +29,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021,500,mac,phase-30,with +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.1125216660002479,500,mac,phase-6,without +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568808,0.1101577499975974,500,mac,phase-6,without +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097,500,mac,phase-6,without +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.112258417000703,500,mac,phase-6,without +4,625.393215626768,2.0118871276612262,21.409515849074182,109.17334677648466,0.1277901670000574,500,mac,phase-6,without +5,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070756,0.1136530000003404,500,mac,phase-6,without +6,581.2750486108054,1.8699591852123023,19.899188310561104,101.4717474843506,0.1187752500009082,500,mac,phase-6,without +7,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.1096269589979783,500,mac,phase-6,without +8,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.1114606659975834,500,mac,phase-6,without +9,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713872,0.1128588749998016,500,mac,phase-6,without +10,530.8233484268193,1.70765629539432,18.172040577403703,92.66451897271818,0.1084661660024721,500,mac,phase-6,without +11,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788,500,mac,phase-6,without +12,561.3068844925039,1.8057216921458392,19.215604422080258,97.98595446436669,0.1146950410002318,500,mac,phase-6,without +13,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393,500,mac,phase-6,without +14,552.9138385846918,1.7787213016685075,18.928279512095063,96.52080119997412,0.1129800420021638,500,mac,phase-6,without +15,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.1120357909967424,500,mac,phase-6,without +16,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.1092452910015708,500,mac,phase-6,without +17,560.2365478283398,1.802278423969773,19.178962851300977,97.79910844032202,0.114476332997583,500,mac,phase-6,without +18,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733424,0.1063855409993266,500,mac,phase-6,without +19,545.8038038438997,1.7558483522747603,18.684876805338963,95.27962002155115,0.1115272080023714,500,mac,phase-6,without +20,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.1126457079990359,500,mac,phase-6,without +21,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697,500,mac,phase-6,without +22,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.1090439170002355,500,mac,phase-6,without +23,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.112828207998973,500,mac,phase-6,without +24,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.1119214999998803,500,mac,phase-6,without +25,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654147,0.1058321659984358,500,mac,phase-6,without +26,548.6950850466077,1.7651495907417427,18.78385602223288,95.784343829684,0.1121180000009189,500,mac,phase-6,without +27,546.7342628234665,1.75884163457625,18.716729847188773,95.4420479441754,0.1117173339989676,500,mac,phase-6,without +28,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.1114615829974354,500,mac,phase-6,without +29,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651888,0.1148124999999709,500,mac,phase-6,without +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121,500,mac,phase-6,with +1,3980.12865087621,4.269844255224866,105.04484031018048,671.0660693934268,0.6250826669966045,500,mac,phase-6,with +2,3971.13262941209,4.260193408747831,104.8074144073978,669.5493031545323,0.6236698339998838,500,mac,phase-6,with +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611,500,mac,phase-6,with +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523,500,mac,phase-6,with +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475,500,mac,phase-6,with +6,3990.206595708371,4.280655778826397,105.31082068378376,672.765252364458,0.6266654169994581,500,mac,phase-6,with +7,4021.568777932776,4.314300830368314,106.13854152210796,678.0530453478076,0.6315908750002563,500,mac,phase-6,with +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759,500,mac,phase-6,with +9,3997.3794308539345,4.288350728318347,105.50012846464432,673.9746218873453,0.6277919169988309,500,mac,phase-6,with +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202,500,mac,phase-6,with +11,3968.9393336960334,4.25784046191252,104.74952823876971,669.1795044710481,0.6233253749996948,500,mac,phase-6,with +12,3979.600159699821,4.269277294904891,105.0308922004336,670.9769636062633,0.6249996669976099,500,mac,phase-6,with +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161,500,mac,phase-6,with +14,4107.520756463168,4.406509297467087,108.40701388846765,692.5449026339484,0.645089707999432,500,mac,phase-6,with +15,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824,500,mac,phase-6,with +16,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711,500,mac,phase-6,with +17,3976.313797783479,4.265751717020369,104.94415747575891,670.4228694632716,0.6244835409997904,500,mac,phase-6,with +18,3991.684352559485,4.282241102356066,105.34982211968163,673.0144082507576,0.6268974999984493,500,mac,phase-6,with +19,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932,500,mac,phase-6,with +20,3945.661844046774,4.23286859186177,104.13518121697432,665.2548239256503,0.6196696250008245,500,mac,phase-6,with +21,3953.734597793666,4.2415289654912565,104.34823994009348,666.6159234280282,0.6209374579993892,500,mac,phase-6,with +22,3949.024607959405,4.236476133083047,104.22393236780093,665.8217997596224,0.6201977499986242,500,mac,phase-6,with +23,3953.6438628657106,4.241431625921392,104.34584523458176,666.6006251457864,0.620923208000022,500,mac,phase-6,with +24,3980.280939138054,4.270007628627338,105.04885955115223,671.0917458210638,0.6251065840006049,500,mac,phase-6,with +25,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405,500,mac,phase-6,with +26,3931.6565666482784,4.217843863143608,103.76554941436892,662.8934765223435,0.6174700840019796,500,mac,phase-6,with +27,3941.93640780823,4.228871979210103,104.03685830103603,664.6267000450754,0.6190845419987454,500,mac,phase-6,with +28,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492,500,mac,phase-6,with +29,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411,500,mac,phase-6,with +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951331,0.1165232500025013,500,mac,phase-7,without +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.109883916000399,500,mac,phase-7,without +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729285,0.1088155409997853,500,mac,phase-7,without +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658149,0.1146176250003918,500,mac,phase-7,without +4,553.11275808707,0.4312899385275857,15.327380892288048,94.31979194107126,0.110460084000806,500,mac,phase-7,without +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839276,0.1107872500033408,500,mac,phase-7,without +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067,500,mac,phase-7,without +7,547.9159557125065,0.4272377293823527,15.183371613434383,93.43360497184838,0.1094222499996249,500,mac,phase-7,without +8,557.4791708931641,0.4346946510083453,15.448379135835042,95.06437637051738,0.1113320840013329,500,mac,phase-7,without +9,533.7877060177743,0.4162212199034948,14.791861815031895,91.02437909120276,0.1066007499975967,500,mac,phase-7,without +10,552.6339298454541,0.4309165719764217,15.314112019469755,94.23813954838208,0.1103644590002659,500,mac,phase-7,without +11,536.8584659497922,0.418615646433979,14.876956050192176,91.54802175475405,0.1072139999996579,500,mac,phase-7,without +12,537.1480562614719,0.4188414546184701,14.884980925671789,91.5974042677162,0.107271832999686,500,mac,phase-7,without +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.1069220419994962,500,mac,phase-7,without +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073804,0.112219291000656,500,mac,phase-7,without +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.111232209001173,500,mac,phase-7,without +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326,500,mac,phase-7,without +17,561.6544679972243,0.4379503409287378,15.564081346852063,95.77637071233858,0.1121659169984923,500,mac,phase-7,without +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.1104156669971416,500,mac,phase-7,without +19,562.1610470070955,0.4383453461547649,15.578119224884723,95.86275531676898,0.1122670840013597,500,mac,phase-7,without +20,529.2493757437318,0.4126824546946085,14.66609954376224,90.25047836129016,0.1056944170013594,500,mac,phase-7,without +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.1101329169978271,500,mac,phase-7,without +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.1124342920011258,500,mac,phase-7,without +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.1112789590006286,500,mac,phase-7,without +24,556.7222241829976,0.4341044214478748,15.427403285301398,94.93529770586986,0.1111809169997286,500,mac,phase-7,without +25,558.98491731835,0.4358687575059111,15.49010507444084,95.32114442994656,0.1116327909985557,500,mac,phase-7,without +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225053,0.1109062089999497,500,mac,phase-7,without +27,561.1524807485683,0.4375589161307214,15.550170711722563,95.6907691199724,0.1120656669991149,500,mac,phase-7,without +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.1134994999993068,500,mac,phase-7,without +29,557.0070174500534,0.4343264891345185,15.43529522924212,94.98386220072588,0.1112377919998834,500,mac,phase-7,without +0,3910.189399402901,5.064969011966773,108.26371263078975,658.2793607329183,0.6260335840015614,500,mac,phase-7,with +1,3891.337220217528,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194,500,mac,phase-7,with +2,3907.058080336083,5.060912933751627,108.17701395894105,657.752203988575,0.6255322500001057,500,mac,phase-7,with +3,3951.59134928142,5.118598023697437,109.41003275653271,665.2493681456768,0.632662166000955,500,mac,phase-7,with +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164,500,mac,phase-7,with +5,3922.660266933899,5.081122847790299,108.60900087151764,660.3788280137984,0.6280302089980978,500,mac,phase-7,with +6,3930.0888097662346,5.090745230597534,108.81467930402228,661.6294212529888,0.6292195419991913,500,mac,phase-7,with +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145,500,mac,phase-7,with +8,3942.416276003112,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765,500,mac,phase-7,with +9,3854.415707263761,4.992723912429943,106.71947362819004,648.8898742766679,0.6171040410008573,500,mac,phase-7,with +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072,500,mac,phase-7,with +11,3887.387947176371,5.035433703786343,107.63239541843308,654.4407422256527,0.6223830000017188,500,mac,phase-7,with +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194,500,mac,phase-7,with +13,3942.922980650436,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838,500,mac,phase-7,with +14,3923.878487924429,5.082700840807135,108.64273047225252,660.5839151983221,0.6282252499986498,500,mac,phase-7,with +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408,500,mac,phase-7,with +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367,500,mac,phase-7,with +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995,500,mac,phase-7,with +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112,500,mac,phase-7,with +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427,500,mac,phase-7,with +20,3869.410472914197,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875,500,mac,phase-7,with +21,3881.1130856960726,5.027305714140381,107.45865963975064,653.3843709397581,0.6213783750026778,500,mac,phase-7,with +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678,500,mac,phase-7,with +23,3928.4846375733423,5.088667305050476,108.77026364545392,661.3593592846852,0.6289627090009162,500,mac,phase-7,with +24,3922.13378131762,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337,500,mac,phase-7,with +25,3911.223882566581,5.066309004645449,108.29235497429649,658.4535157024397,0.626199207999889,500,mac,phase-7,with +26,3896.116177201257,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608,500,mac,phase-7,with +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889,500,mac,phase-7,with +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519,500,mac,phase-7,with +29,3903.2857744554663,5.056026568811887,108.07256790835407,657.1171372820976,0.6249282919998222,500,mac,phase-7,with +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857528,0.1129105830004846,500,mac,phase-9,without +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.1122849579987814,500,mac,phase-9,without +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641608,0.1091614580000168,500,mac,phase-9,without +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344536,0.1082465830004366,500,mac,phase-9,without +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.1150248750018363,500,mac,phase-9,without +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.1116048340009001,500,mac,phase-9,without +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.0514827035298,0.1169229170009202,500,mac,phase-9,without +7,582.6423693083759,0.5656378805250903,20.6457826391658,101.92087559711472,0.1191075409988116,500,mac,phase-9,without +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.1106570830015698,500,mac,phase-9,without +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.1162444999972649,500,mac,phase-9,without +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.1113215000004856,500,mac,phase-9,without +11,538.6854559697524,0.5229638550765147,19.088180710292782,94.23154963659948,0.1101215830021828,500,mac,phase-9,without +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.111878332998458,500,mac,phase-9,without +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187356,0.1090952919985284,500,mac,phase-9,without +14,539.7671454695724,0.5240139753360329,19.1265100997652,94.42076818086144,0.1103427090019977,500,mac,phase-9,without +15,553.593014338471,0.5374363345316143,19.61642621040392,96.83930952841526,0.1131690830006846,500,mac,phase-9,without +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.1101606249976612,500,mac,phase-9,without +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968148,0.1123614160023862,500,mac,phase-9,without +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534612,0.1132802920001267,500,mac,phase-9,without +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355836,0.1092215419994317,500,mac,phase-9,without +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538245,0.1131127090011432,500,mac,phase-9,without +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992972,0.1152214579997235,500,mac,phase-9,without +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937,500,mac,phase-9,without +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.1151998329987691,500,mac,phase-9,without +24,536.9986247763089,0.5213262542576872,19.028408280405586,93.936474439057,0.1097767500032205,500,mac,phase-9,without +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.1118286669989174,500,mac,phase-9,without +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.1110817080007109,500,mac,phase-9,without +27,544.085117892408,0.5282059272057841,19.279516343011117,95.1761055083922,0.1112254169966036,500,mac,phase-9,without +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257103,0.1116604999988339,500,mac,phase-9,without +29,566.5485704249801,0.5500137811297665,20.07550301123648,99.1056081873198,0.1158175420023326,500,mac,phase-9,without +0,3901.919386580033,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836,500,mac,phase-9,with +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607,500,mac,phase-9,with +2,3910.238854451517,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785,500,mac,phase-9,with +3,3911.202429509975,5.193629375243073,102.64076515304096,659.6575156478605,0.6256015840008331,500,mac,phase-9,with +4,3896.403904938974,5.173978627600272,102.25241095443356,657.1616187645627,0.623234542003047,500,mac,phase-9,with +5,3930.108712793952,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417,500,mac,phase-9,with +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612,500,mac,phase-9,with +7,3946.2917657672665,5.240223999486666,103.56160634882944,665.5756302937743,0.6312141659982444,500,mac,phase-9,with +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819,500,mac,phase-9,with +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852,500,mac,phase-9,with +10,3942.866246351669,5.235675301590572,103.47171124874188,664.9978873443307,0.6306662500028324,500,mac,phase-9,with +11,3920.5909670871097,5.206096279073792,102.88714633579808,661.2409722664623,0.6271032920012658,500,mac,phase-9,with +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156,500,mac,phase-9,with +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094,500,mac,phase-9,with +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447,500,mac,phase-9,with +15,3919.679751755219,5.20488628935831,102.86323352622864,661.0872880599075,0.6269575420010369,500,mac,phase-9,with +16,3939.657718042438,5.231414743059418,103.38751059520632,664.4567417883288,0.6301530419987103,500,mac,phase-9,with +17,3906.386898745852,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914,500,mac,phase-9,with +18,3907.238977299649,5.188366364136408,102.536753209183,658.9890457628128,0.6249676250008633,500,mac,phase-9,with +19,3910.2154035747167,5.192318717719235,102.6148628636436,659.4910453390316,0.6254437080024218,500,mac,phase-9,with +20,3923.541347906347,5.210014047270941,102.96457248548916,661.7385790552976,0.6275752090004971,500,mac,phase-9,with +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085,500,mac,phase-9,with +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521,500,mac,phase-9,with +23,3944.379726555403,5.237685030155285,103.5114291536458,665.2531486378001,0.630908333001571,500,mac,phase-9,with +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105,500,mac,phase-9,with +25,3947.333495911774,5.241607297942091,103.58894422791964,665.7513269322089,0.6313807920014369,500,mac,phase-9,with +26,3899.151355134042,5.177626927144285,102.32451164349892,657.6249995797234,0.623674000002211,500,mac,phase-9,with +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154,500,mac,phase-9,with +28,3905.69892649689,5.1863213528559315,102.49633801830024,658.7293031120989,0.6247212920025049,500,mac,phase-9,with +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838,500,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n10/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n10/with_smell.csv new file mode 100644 index 000000000..f4bab90b3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n10/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,1386.7005541149863,0.0998895877817119,0.0,439.2811105347087,0.4755048749975685,10,mac,phase-19,with +1,1389.776976809194,0.1001111948142143,0.0,440.255664394643,0.4765597919977153,10,mac,phase-19,with +2,1385.844628906725,0.0998279320652189,0.0,439.009969245478,0.4752113750000717,10,mac,phase-19,with +3,1385.5003865740737,0.0998031349130122,0.0,438.90091963579016,0.4750933329996769,10,mac,phase-19,with +4,1389.920116092038,0.1001215057093215,0.0,440.3010082743598,0.4766088750002382,10,mac,phase-19,with +5,1395.4414636433553,0.1005192304590982,0.0,442.0500691489612,0.4785021659990889,10,mac,phase-19,with +6,1383.25911358358,0.0996416870543074,0.0,438.1909257691591,0.4743247919977875,10,mac,phase-19,with +7,1394.1143187941695,0.1004236309069682,0.0,441.62965418521094,0.4780470830010017,10,mac,phase-19,with +8,1391.919461157872,0.1002655265318898,0.0,440.93436384507424,0.4772944579999603,10,mac,phase-19,with +9,1385.5401236639073,0.0998059973345432,0.0,438.91350761154297,0.4751069589983672,10,mac,phase-19,with +10,1389.6626327917504,0.1001029581572562,0.0,440.21944232289394,0.4765205830008199,10,mac,phase-19,with +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.4732225410007231,10,mac,phase-19,with +12,1384.9940492190317,0.0997666614079548,0.0,438.7405213183826,0.4749197080018348,10,mac,phase-19,with +13,1374.9844398051246,0.0990456292029527,0.0,435.56966202485194,0.4714873750017432,10,mac,phase-19,with +14,1387.592932719944,0.0999538693821843,0.0,439.5637995863861,0.475810875002935,10,mac,phase-19,with +15,1390.2901178414663,0.1001481584153576,0.0,440.41821799127104,0.4767357500022626,10,mac,phase-19,with +16,1383.923900638318,0.0996895743250403,0.0,438.401518023419,0.4745527499981108,10,mac,phase-19,with +17,1383.3757643872302,0.0996500898783031,0.0,438.22787858815104,0.474364792000415,10,mac,phase-19,with +18,1391.7060864361836,0.1002501562971774,0.0,440.8667706762208,0.4772212909992959,10,mac,phase-19,with +19,1392.4171721955554,0.1003013786488022,0.0,441.09202950454926,0.4774651250008901,10,mac,phase-19,with +20,1405.4888679186208,0.1012429851791452,0.0,445.23290115615447,0.4819474590003665,10,mac,phase-19,with +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863,10,mac,phase-19,with +22,1391.9551883778888,0.1002681001064582,0.0,440.94568156816786,0.4773067089990945,10,mac,phase-19,with +23,1388.182261289353,0.0999963210763814,0.0,439.7504879869002,0.4760129580026841,10,mac,phase-19,with +24,1375.0170057848686,0.0990479750607392,0.0,435.5799783254442,0.4714985419996083,10,mac,phase-19,with +25,1388.4195727452525,0.1000134155698071,0.0,439.82566387082176,0.4760943330002192,10,mac,phase-19,with +26,1387.2079850901775,0.0999261400646032,0.0,439.4418552907703,0.4756788750019041,10,mac,phase-19,with +27,1395.1198253223383,0.1004960615642666,0.0,441.9481800724568,0.4783918749999429,10,mac,phase-19,with +28,1386.186074535617,0.0998525277596669,0.0,439.11813291109553,0.4753284580001491,10,mac,phase-19,with +29,1391.5517690909974,0.1002390402015269,0.0,440.817885792915,0.477168374996836,10,mac,phase-19,with +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491,10,mac,phase-26,with +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846,10,mac,phase-26,with +2,1429.4735844199126,2.1692569511193316,0.0,450.1708771330563,0.4782339589983166,10,mac,phase-26,with +3,1426.3045481635716,2.1644478703483796,0.0,449.1728818942968,0.4771737500013842,10,mac,phase-26,with +4,1432.4783415347592,2.1738167347549635,0.0,451.1171374632262,0.4792392079980345,10,mac,phase-26,with +5,1436.4295181245916,2.1798127303270483,0.0,452.3614449135624,0.4805610839975998,10,mac,phase-26,with +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.4785199159996409,10,mac,phase-26,with +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575,10,mac,phase-26,with +8,1422.6951236106663,2.158970490852691,0.0,448.03619924787614,0.4759662079995905,10,mac,phase-26,with +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833,10,mac,phase-26,with +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044,10,mac,phase-26,with +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324,10,mac,phase-26,with +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295,10,mac,phase-26,with +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374,10,mac,phase-26,with +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455,10,mac,phase-26,with +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.4791691659993375,10,mac,phase-26,with +16,1432.7423778229895,2.174217415508938,0.0,451.2002879661548,0.4793275419979181,10,mac,phase-26,with +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342,10,mac,phase-26,with +18,1421.4663687712782,2.157105828920064,0.0,447.649238866196,0.475555124998209,10,mac,phase-26,with +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355,10,mac,phase-26,with +20,1425.254760753872,2.1628547953447503,0.0,448.8422820677744,0.4768225410007289,10,mac,phase-26,with +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392,10,mac,phase-26,with +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321,10,mac,phase-26,with +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.4788790829989011,10,mac,phase-26,with +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149,10,mac,phase-26,with +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.4772504579996166,10,mac,phase-26,with +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.4783681660010188,10,mac,phase-26,with +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.4748786250020202,10,mac,phase-26,with +28,1436.3390958497594,2.1796755125775538,0.0,452.3329690639789,0.4805308329996478,10,mac,phase-26,with +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702,10,mac,phase-26,with +0,1381.9094842887912,1.232925439914284,0.0333223091868725,441.0874067066318,0.4757015830000455,10,mac,phase-21,with +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.4761970830004429,10,mac,phase-21,with +2,1377.8662199972532,1.2293180810662478,0.0332248130017904,439.7968497047006,0.4743097499995201,10,mac,phase-21,with +3,1382.9158230323503,1.233823284999083,0.0333465752702454,441.40861685223945,0.4760479999968083,10,mac,phase-21,with +4,1386.128503523028,1.2366896055159518,0.033424043392323,442.43406238417987,0.4771539169996686,10,mac,phase-21,with +5,1376.9074533923183,1.2284626793546278,0.0332016940366115,439.4908239626273,0.4739797089969215,10,mac,phase-21,with +6,1390.6754208710522,1.2407463184449117,0.0335336842822949,443.8853788447377,0.4787191249997704,10,mac,phase-21,with +7,1380.57996803777,1.231739259178643,0.0332902502480714,440.66304253372147,0.4752439170006255,10,mac,phase-21,with +8,1381.657961329704,1.2327010337151032,0.0333162441544622,441.0071238726168,0.4756149999993795,10,mac,phase-21,with +9,1374.6571707641597,1.226455000320077,0.0331474324410831,438.7725632226178,0.47320508300254,10,mac,phase-21,with +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.9536166278275,0.4809496670022781,10,mac,phase-21,with +11,1363.870814864897,1.2168315244387933,0.0328873384983457,435.32969970260285,0.4694920420006383,10,mac,phase-21,with +12,1392.8155520129008,1.2426557214554106,0.0335852897690651,444.5684806731154,0.4794558329995197,10,mac,phase-21,with +13,1383.647032868345,1.234475662900069,0.0333642071054072,441.6420094542761,0.4762997079997149,10,mac,phase-21,with +14,1381.6147495768726,1.232662480633317,0.0333152021792788,440.993331247114,0.4756001250025292,10,mac,phase-21,with +15,1377.525609644332,1.229014192009845,0.0332165997840498,439.6881313414681,0.4741925000016636,10,mac,phase-21,with +16,1385.5815166921095,1.2362015894868232,0.0334108537699141,442.2594713523535,0.4769656249991385,10,mac,phase-21,with +17,1383.6618018467698,1.234488839630838,0.0333645632332658,441.6467235187406,0.4763047919987002,10,mac,phase-21,with +18,1374.955298503026,1.2267209868248166,0.0331546212655355,438.8677216918945,0.4733077089986182,10,mac,phase-21,with +19,1371.61443522941,1.2237403029463525,0.0330740622417933,437.8013618946179,0.4721576669981004,10,mac,phase-21,with +20,1375.2341748666422,1.2269697974504057,0.0331613458770379,438.9567353743518,0.4734037079979316,10,mac,phase-21,with +21,1379.3660443310175,1.2306562089230462,0.0332609786195417,440.2755739868747,0.4748260419983126,10,mac,phase-21,with +22,1373.8068562416304,1.2256963584418106,0.0331269286065354,438.5011539647093,0.4729123750003055,10,mac,phase-21,with +23,1383.064340779556,1.2339557910068135,0.0333501565136976,441.456021771816,0.4760991250004736,10,mac,phase-21,with +24,1410.7851087655586,1.2586879753158997,0.0340185939274567,450.3041278177449,0.4856415829999605,10,mac,phase-21,with +25,1389.1312954040106,1.2393686655722889,0.0334964504208726,443.3925142210916,0.4781875830012723,10,mac,phase-21,with +26,1378.0240598523594,1.229458904162844,0.0332286190314282,439.8472301190153,0.4743640839988075,10,mac,phase-21,with +27,1384.5515748746504,1.2352826859820614,0.0333860185400557,441.93072741471747,0.4766110829987156,10,mac,phase-21,with +28,1384.6750399681143,1.2353928402695915,0.0333889956829619,441.9701358553671,0.4766535840026336,10,mac,phase-21,with +29,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.4761708330006513,10,mac,phase-21,with +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.4776932919994578,10,mac,phase-28,with +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947,10,mac,phase-28,with +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.471633417000703,10,mac,phase-28,with +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077,10,mac,phase-28,with +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674,10,mac,phase-28,with +5,1542.8219147718562,2.402400988433286,0.0,466.8551520808284,0.4908737080004357,10,mac,phase-28,with +6,1494.696902023256,2.327463254474083,0.0,452.2926092944422,0.4755619579991617,10,mac,phase-28,with +7,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.4757614579975779,10,mac,phase-28,with +8,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.4753305420017568,10,mac,phase-28,with +9,1496.9221576047012,2.3309283052081926,0.0,452.9659676535291,0.4762699589991825,10,mac,phase-28,with +10,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.4777056249986344,10,mac,phase-28,with +11,1500.131823380298,2.335926227624257,0.0,453.93720677675384,0.4772911660002137,10,mac,phase-28,with +12,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286,10,mac,phase-28,with +13,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.4754105419997358,10,mac,phase-28,with +14,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702,10,mac,phase-28,with +15,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234,10,mac,phase-28,with +16,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261,10,mac,phase-28,with +17,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572,10,mac,phase-28,with +18,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218,10,mac,phase-28,with +19,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491,10,mac,phase-28,with +20,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127,10,mac,phase-28,with +21,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458,10,mac,phase-28,with +22,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.4765544590009085,10,mac,phase-28,with +23,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.4758864580035151,10,mac,phase-28,with +24,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.4770657910012232,10,mac,phase-28,with +25,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.4747234590031439,10,mac,phase-28,with +26,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.4790385420019447,10,mac,phase-28,with +27,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.4746996670000953,10,mac,phase-28,with +28,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353,10,mac,phase-28,with +29,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.4753105830022832,10,mac,phase-28,with +0,1447.352143928246,0.1670342924325731,0.0,440.8703114465335,0.4786405830018339,10,mac,phase-17,with +1,1472.891086509974,0.1699816603012087,0.0,448.6495941990104,0.4870863329997519,10,mac,phase-17,with +2,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.4763764579984126,10,mac,phase-17,with +3,1442.1423750135714,0.166433049626494,0.0,439.2833911841685,0.4769177079979272,10,mac,phase-17,with +4,1442.9420675541187,0.1665253395907811,0.0,439.5269813159078,0.4771821670001372,10,mac,phase-17,with +5,1437.1418858973352,0.1658559591341414,0.0,437.7602185386529,0.4752640420010721,10,mac,phase-17,with +6,1439.2019047977624,0.1660936993419229,0.0,438.3877100430714,0.4759452920006879,10,mac,phase-17,with +7,1437.048774549541,0.1658452134506105,0.0,437.73185638154155,0.4752332499992917,10,mac,phase-17,with +8,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179,10,mac,phase-17,with +9,1443.399553534289,0.1665781365879156,0.0,439.6663337101445,0.4773334580022492,10,mac,phase-17,with +10,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901,10,mac,phase-17,with +11,1432.716058127496,0.165345188474033,0.0,436.41209045836274,0.4738004169994383,10,mac,phase-17,with +12,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.4786068749999685,10,mac,phase-17,with +13,1441.7816532347647,0.1663914198770645,0.0,439.17351362352423,0.4767984169993724,10,mac,phase-17,with +14,1448.9938602988364,0.1672237576801888,0.0,441.3703860210905,0.4791834999996354,10,mac,phase-17,with +15,1443.4076182206436,0.1665790673076334,0.0,439.6687902517676,0.4773361250008747,10,mac,phase-17,with +16,1440.843745147536,0.1662831788975806,0.0,438.8878223822743,0.4764882499985106,10,mac,phase-17,with +17,1442.4172972021684,0.1664647775190038,0.0,439.3671337836588,0.4770086249991436,10,mac,phase-17,with +18,1441.4691835270078,0.1663553587451826,0.0,439.0783338720352,0.4766950830016867,10,mac,phase-17,with +19,1441.9596812033676,0.1664119655168341,0.0,439.227741785132,0.4768572909997601,10,mac,phase-17,with +20,1439.0480618235515,0.1660759448151819,0.0,438.3408487451912,0.4758944159984821,10,mac,phase-17,with +21,1443.1939296256437,0.1665544061887644,0.0,439.6036996946248,0.4772654580010567,10,mac,phase-17,with +22,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519,10,mac,phase-17,with +23,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837,10,mac,phase-17,with +24,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415,10,mac,phase-17,with +25,1433.4711454001133,0.1654323306866836,0.0,436.6420936144327,0.4740501250016677,10,mac,phase-17,with +26,1457.45165533711,0.1681998448167466,0.0,443.9466704093212,0.4819805000006454,10,mac,phase-17,with +27,1442.1242317326914,0.1664309557683429,0.0,439.27786465496433,0.476911707999534,10,mac,phase-17,with +28,1437.1829592656563,0.1658606992805142,0.0,437.7727296809894,0.4752776249988528,10,mac,phase-17,with +29,1453.654038845132,0.1677615740155951,0.0,442.7898984567618,0.4807246250020398,10,mac,phase-17,with +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235,10,mac,phase-10,with +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195,10,mac,phase-10,with +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.4886344999977154,10,mac,phase-10,with +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134,10,mac,phase-10,with +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859,10,mac,phase-10,with +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844,10,mac,phase-10,with +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769,10,mac,phase-10,with +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.4936091669987945,10,mac,phase-10,with +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017,10,mac,phase-10,with +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253,10,mac,phase-10,with +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.4851672910008346,10,mac,phase-10,with +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426,10,mac,phase-10,with +12,2188.706010784058,2.983740150116864,75.78699981296833,491.554613397586,0.4860802499970305,10,mac,phase-10,with +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227,10,mac,phase-10,with +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.4898277079992112,10,mac,phase-10,with +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.4867344580015924,10,mac,phase-10,with +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.4993912499994621,10,mac,phase-10,with +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378,10,mac,phase-10,with +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.4859611249994486,10,mac,phase-10,with +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.4922967499987862,10,mac,phase-10,with +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.4873433749999094,10,mac,phase-10,with +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008,10,mac,phase-10,with +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.487996292002208,10,mac,phase-10,with +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986,10,mac,phase-10,with +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196,10,mac,phase-10,with +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232,10,mac,phase-10,with +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.4884874160015897,10,mac,phase-10,with +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.4907508750002307,10,mac,phase-10,with +28,2240.945048917429,3.05495470095834,77.59584940434183,503.2868150123256,0.4976817919996392,10,mac,phase-10,with +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876,10,mac,phase-10,with +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.4849021669979265,10,mac,phase-11,with +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063,10,mac,phase-11,with +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135,10,mac,phase-11,with +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.4895718750012747,10,mac,phase-11,with +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.6778526944505,0.4906171659968095,10,mac,phase-11,with +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154,10,mac,phase-11,with +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.4871125419995223,10,mac,phase-11,with +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639,10,mac,phase-11,with +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739,10,mac,phase-11,with +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.4879217089983285,10,mac,phase-11,with +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891,10,mac,phase-11,with +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944,10,mac,phase-11,with +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.4859462909989815,10,mac,phase-11,with +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574,10,mac,phase-11,with +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318,10,mac,phase-11,with +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.4878895000001648,10,mac,phase-11,with +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959,10,mac,phase-11,with +17,2227.261152610207,3.99574426756604,74.82031141017409,495.37239557149974,0.488344417000917,10,mac,phase-11,with +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.4923834159999387,10,mac,phase-11,with +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123,10,mac,phase-11,with +20,2227.782798769239,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098,10,mac,phase-11,with +21,2221.6883752224203,3.9857466104544903,74.63310528076033,494.1329360310955,0.4871225419992697,10,mac,phase-11,with +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.4864686250002705,10,mac,phase-11,with +23,2217.6434795297237,3.9784899990068143,74.49722523140261,493.23329762686984,0.4862356670018926,10,mac,phase-11,with +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311,10,mac,phase-11,with +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591,10,mac,phase-11,with +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985,10,mac,phase-11,with +27,2251.464964761066,4.039166316903047,75.63338928400955,500.7556441380552,0.4936512920030509,10,mac,phase-11,with +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068,10,mac,phase-11,with +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304,10,mac,phase-11,with +0,1409.9511145646975,0.7683839360010437,0.0,445.2951949112135,0.4760072919998492,10,mac,phase-29,with +1,1399.6801275675623,0.7627865352585996,0.0,442.0513794983424,0.4725397500005783,10,mac,phase-29,with +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818,10,mac,phase-29,with +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.4716822500013222,10,mac,phase-29,with +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.472294041999703,10,mac,phase-29,with +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029,10,mac,phase-29,with +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.474087958002201,10,mac,phase-29,with +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738,10,mac,phase-29,with +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.4762599170026078,10,mac,phase-29,with +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575,10,mac,phase-29,with +10,1410.2225082204634,0.7685318379554227,0.0,445.3809073090361,0.4760989159985911,10,mac,phase-29,with +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956,10,mac,phase-29,with +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474,10,mac,phase-29,with +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319,10,mac,phase-29,with +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.4767237919986655,10,mac,phase-29,with +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965,10,mac,phase-29,with +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252,10,mac,phase-29,with +17,1403.882638711802,0.7650767863323724,0.0,443.3786297836606,0.4739585409988649,10,mac,phase-29,with +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.4729575839992321,10,mac,phase-29,with +19,1405.5357040683705,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616,10,mac,phase-29,with +20,1402.830378107766,0.764503333723785,0.0,443.046301530623,0.4736032920009165,10,mac,phase-29,with +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547,10,mac,phase-29,with +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724,10,mac,phase-29,with +23,1412.2901343112185,0.7696586363652266,0.0,446.033911483135,0.4767969579988858,10,mac,phase-29,with +24,1413.507409993883,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596,10,mac,phase-29,with +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379,10,mac,phase-29,with +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.4757148329990741,10,mac,phase-29,with +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383,10,mac,phase-29,with +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697,10,mac,phase-29,with +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.4738867079977353,10,mac,phase-29,with +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.4768898330003139,10,mac,phase-16,with +1,1810.3407727008257,0.3624635693430848,0.0,450.5751679270311,0.475776458002656,10,mac,phase-16,with +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.474959334002051,10,mac,phase-16,with +3,1803.924867023314,0.3611789868448571,0.0,448.978315101507,0.4740902909979922,10,mac,phase-16,with +4,1814.9485005797917,0.3633861213392375,0.0,451.7219839266121,0.47698741700151,10,mac,phase-16,with +5,1838.3950575707256,0.3680805539366213,0.0,457.55759041176,0.4831494169993675,10,mac,phase-16,with +6,1810.9882621843371,0.3625932086645014,0.0,450.7363213889448,0.4759466249997786,10,mac,phase-16,with +7,1809.528084290628,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517,10,mac,phase-16,with +8,1816.3105392978791,0.3636588265794807,0.0,452.06098133162,0.4773453749985492,10,mac,phase-16,with +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575,10,mac,phase-16,with +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.4773302499997953,10,mac,phase-16,with +11,1812.3434823164148,0.3628645486982265,0.0,451.0736217181408,0.476302791001217,10,mac,phase-16,with +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062,10,mac,phase-16,with +13,1890.5448082241376,0.3785218946207775,0.0,470.5371260949556,0.4968549160003022,10,mac,phase-16,with +14,1863.8205427908624,0.3731712044175371,0.0,463.8857317459456,0.4898314999991271,10,mac,phase-16,with +15,1888.8672721415512,0.3781860209966702,0.0,470.1196046462245,0.496414042001561,10,mac,phase-16,with +16,1882.4233044209063,0.3768958199605018,0.0,468.51576746726386,0.494720499998948,10,mac,phase-16,with +17,1887.059090550134,0.3778239897351924,0.0,469.6695668762747,0.4959388329989451,10,mac,phase-16,with +18,1881.9700309632929,0.3768050662649475,0.0,468.40295237335386,0.4946013750013662,10,mac,phase-16,with +19,1886.6865178361625,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411,10,mac,phase-16,with +20,1849.6913781590397,0.3703422853976963,0.0,460.36912822982725,0.4861182080021535,10,mac,phase-16,with +21,1814.6577320581712,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264,10,mac,phase-16,with +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.4750594580000324,10,mac,phase-16,with +23,1807.75034288652,0.3619449175782984,0.0,449.9304366332412,0.4750956659991061,10,mac,phase-16,with +24,1811.4627790990735,0.3626882156914782,0.0,450.85442376047934,0.4760713329997088,10,mac,phase-16,with +25,1819.489476926938,0.3642953084491503,0.0,452.85218615760743,0.4781808330008061,10,mac,phase-16,with +26,1813.531285204246,0.3631023687158118,0.0,451.369253620001,0.4766149580027559,10,mac,phase-16,with +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.476694042001327,10,mac,phase-16,with +28,1801.3705887684314,0.3606675732881824,0.0,448.3425815584188,0.4734190000017406,10,mac,phase-16,with +29,1829.2969259130637,0.3662589403903112,0.0,455.2931591724651,0.4807583330002671,10,mac,phase-16,with +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.4753916670015314,10,mac,phase-20,with +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214,10,mac,phase-20,with +2,1410.4888534886547,2.57675488667884,0.0,450.2293538360664,0.4780275000011897,10,mac,phase-20,with +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321,10,mac,phase-20,with +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.4748084160019061,10,mac,phase-20,with +5,1402.588873689239,2.562322789961124,0.0,447.7076729368437,0.4753501250015688,10,mac,phase-20,with +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.4769594579993281,10,mac,phase-20,with +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915,10,mac,phase-20,with +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.4754808749967196,10,mac,phase-20,with +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.4759253749980416,10,mac,phase-20,with +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982,10,mac,phase-20,with +11,1405.115976126432,2.5669394330051785,0.0,448.5143263850866,0.476206583000021,10,mac,phase-20,with +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345,10,mac,phase-20,with +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.4764153750002151,10,mac,phase-20,with +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.4748462499992456,10,mac,phase-20,with +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462,10,mac,phase-20,with +16,1407.7395911650067,2.571732390322558,0.0,449.3517867454507,0.4770957499968062,10,mac,phase-20,with +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.4743893330014543,10,mac,phase-20,with +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309,10,mac,phase-20,with +19,1391.8015679961811,2.5426159751288515,0.0,444.26435492705934,0.4716942089980875,10,mac,phase-20,with +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645,10,mac,phase-20,with +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289,10,mac,phase-20,with +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583,10,mac,phase-20,with +23,1402.136811455346,2.561496939003574,0.0,447.5633742513517,0.4751969169992662,10,mac,phase-20,with +24,1407.9788382191025,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483,10,mac,phase-20,with +25,1407.0144704711065,2.570407701873714,0.0,449.1203275455708,0.4768499999991036,10,mac,phase-20,with +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.4770084999981918,10,mac,phase-20,with +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.4770505419983237,10,mac,phase-20,with +28,1401.8344944047062,2.560944650387017,0.0,447.4668743676224,0.4750944590014114,10,mac,phase-20,with +29,1405.6258237574764,2.5678708493517206,0.0,448.6770702230915,0.4763793749989418,10,mac,phase-20,with +0,1393.914644610329,0.1001279555078772,0.0,442.7991952410027,0.4769412079986068,10,mac,phase-18,with +1,1395.233719300143,0.1002227075447856,0.0,443.2182203322239,0.4773925420013256,10,mac,phase-18,with +2,1395.0142778015193,0.1002069445791724,0.0,443.1485112439603,0.4773174579968327,10,mac,phase-18,with +3,1395.110604219539,0.100213863917695,0.0,443.1791108653535,0.4773504170007072,10,mac,phase-18,with +4,1393.8152786855164,0.1001208178348948,0.0,442.76763007185,0.4769072089984547,10,mac,phase-18,with +5,1393.8315956415768,0.1001219899177456,0.0,442.77281341291064,0.4769127920008031,10,mac,phase-18,with +6,1387.1687683245957,0.0996433843734744,0.0,440.6562601609618,0.4746330420020967,10,mac,phase-18,with +7,1391.1876039682206,0.0999320661791174,0.0,441.93290733278377,0.4760081249987706,10,mac,phase-18,with +8,1392.3965925792977,0.1000189104908029,0.0,442.3169618271607,0.4764217919982911,10,mac,phase-18,with +9,1388.5243727459326,0.0997407604213628,0.0,441.08688950340695,0.4750968750013271,10,mac,phase-18,with +10,1392.8408268551927,0.1000508208161473,0.0,442.458079922609,0.4765737909983727,10,mac,phase-18,with +11,1386.1762985767418,0.0995720930880716,0.0,440.3409863331489,0.4742934589994547,10,mac,phase-18,with +12,1389.0087958741594,0.0997755576003849,0.0,441.24077422810245,0.4752626250010507,10,mac,phase-18,with +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.4757032500019704,10,mac,phase-18,with +14,1390.0111294314313,0.0998475574249184,0.0,441.559181452131,0.4756055830002879,10,mac,phase-18,with +15,1390.948925844576,0.0999149214044087,0.0,441.8570874240971,0.4759264589993108,10,mac,phase-18,with +16,1396.212671944328,0.1002930278668945,0.0,443.5292002366967,0.4777274999978544,10,mac,phase-18,with +17,1390.1526335855483,0.0998577219796151,0.0,441.60413250118455,0.4756539999980305,10,mac,phase-18,with +18,1399.6301828713626,0.100538515195242,0.0,444.61482703175864,0.4788968339998973,10,mac,phase-18,with +19,1386.9895127650243,0.0996305080522716,0.0,440.5993167764959,0.4745717080004397,10,mac,phase-18,with +20,1392.3554334243463,0.1000159539381534,0.0,442.30388696582713,0.4764077090003411,10,mac,phase-18,with +21,1399.1193305515217,0.1005018195492425,0.0,444.4525466532669,0.4787220409998554,10,mac,phase-18,with +22,1394.742232204257,0.100187402945426,0.0,443.0620916256557,0.4772243749976042,10,mac,phase-18,with +23,1397.4406575579208,0.1003812367750637,0.0,443.91928943159024,0.4781476670032134,10,mac,phase-18,with +24,1395.8205537077984,0.100264861151312,0.0,443.4046376314855,0.4775933329983672,10,mac,phase-18,with +25,1378.0424206880402,0.0989878187449506,0.0,437.7571304297536,0.4715103749986156,10,mac,phase-18,with +26,1388.8359963638768,0.0997631450314057,0.0,441.1858817105535,0.4752034999983152,10,mac,phase-18,with +27,1396.3338376479594,0.1003017314659486,0.0,443.5676904529135,0.4777689580005244,10,mac,phase-18,with +28,1390.4448949140815,0.0998787157538129,0.0,441.6969739686122,0.4757540000027802,10,mac,phase-18,with +29,1392.3996350206342,0.1000191290360574,0.0,442.31792830712465,0.4764228329986508,10,mac,phase-18,with +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169,10,mac,phase-27,with +1,1429.6826668576923,1.2845914437858772,0.0,452.24379828861754,0.4819986250004149,10,mac,phase-27,with +2,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.4741008329983742,10,mac,phase-27,with +3,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305,10,mac,phase-27,with +4,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.4755443329995614,10,mac,phase-27,with +5,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.4754301249995478,10,mac,phase-27,with +6,1411.741753318708,1.2684712623217371,0.0,446.5686459826368,0.4759500830004981,10,mac,phase-27,with +7,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337,10,mac,phase-27,with +8,1411.2333039163964,1.2680144128634985,0.0,446.4078109286284,0.4757786660011334,10,mac,phase-27,with +9,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134,10,mac,phase-27,with +10,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352,10,mac,phase-27,with +11,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.4737324160014395,10,mac,phase-27,with +12,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283,10,mac,phase-27,with +13,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.4766884999989997,10,mac,phase-27,with +14,1413.72623564537,1.2702543496293404,0.0,447.1963865616136,0.4766191250018892,10,mac,phase-27,with +15,1409.9204124898235,1.2668347601109735,0.0,445.9925110727528,0.4753360419999808,10,mac,phase-27,with +16,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.4740017920012178,10,mac,phase-27,with +17,1414.1821574059145,1.2706640022090403,0.0,447.3406058303301,0.476772833000723,10,mac,phase-27,with +18,1407.8358224333165,1.26496172449792,0.0,445.3331039561361,0.4746332499998971,10,mac,phase-27,with +19,1408.264307266331,1.265346724584332,0.0,445.4686442497156,0.4747777080010564,10,mac,phase-27,with +20,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618,10,mac,phase-27,with +21,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096,10,mac,phase-27,with +22,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007,10,mac,phase-27,with +23,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.4757349160026933,10,mac,phase-27,with +24,1407.3231699892026,1.264501098543216,0.0,445.1709393766091,0.474460416000511,10,mac,phase-27,with +25,1412.2315426385103,1.2689113454143433,0.0,446.7235783935022,0.4761152089995448,10,mac,phase-27,with +26,1409.2195337686403,1.2662050100068178,0.0,445.7708058913476,0.4750997499977529,10,mac,phase-27,with +27,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464,10,mac,phase-27,with +28,1411.5918379108589,1.2683365610662214,0.0,446.5212240511556,0.4758995410011266,10,mac,phase-27,with +29,1408.3419226332817,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236,10,mac,phase-27,with +0,2136.203094366269,0.93457425106257,0.0,450.030879538451,0.4746758750006847,10,mac,phase-5,with +1,2134.504400315829,0.9338310840274872,0.0,449.673018069379,0.4742984160002379,10,mac,phase-5,with +2,2140.0647600968737,0.9362637034220164,0.0,450.84441118710873,0.4755339580005966,10,mac,phase-5,with +3,2130.118633912307,0.9319123412063032,0.0,448.74907487444943,0.4733238749977317,10,mac,phase-5,with +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922,10,mac,phase-5,with +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985,10,mac,phase-5,with +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567,10,mac,phase-5,with +7,2140.343781207982,0.9363857732507852,0.0,450.90319216929765,0.4755959579997579,10,mac,phase-5,with +8,2123.4230632247763,0.9289830748002958,0.0,447.3385284832996,0.4718360829974699,10,mac,phase-5,with +9,2124.5554614297384,0.9294784912740844,0.0,447.5770892088742,0.4720877079998899,10,mac,phase-5,with +10,2127.025585853203,0.930559153823998,0.0,448.0974668217487,0.4726365829992573,10,mac,phase-5,with +11,2136.577936722176,0.93473824203092,0.0,450.109847046532,0.4747591669984103,10,mac,phase-5,with +12,2128.1066081569707,0.9310320936922108,0.0,448.3252042590027,0.4728767919987149,10,mac,phase-5,with +13,2126.8684474597603,0.9304904068510382,0.0,448.0643626990196,0.472601665998809,10,mac,phase-5,with +14,2134.9276258433156,0.9340162423026646,0.0,449.7621783916723,0.474392459000228,10,mac,phase-5,with +15,2129.032364221914,0.9314371056423116,0.0,448.5202319776889,0.4730825000006007,10,mac,phase-5,with +16,2132.6545758265033,0.9330217984584944,0.0,449.2833181648528,0.4738873749993217,10,mac,phase-5,with +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.4739143330007209,10,mac,phase-5,with +18,2131.381163955856,0.932464689469914,0.0,449.0150502901017,0.4736044159981247,10,mac,phase-5,with +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959,10,mac,phase-5,with +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707,10,mac,phase-5,with +21,2132.5525666154294,0.9329771701259671,0.0,449.261828028872,0.4738647080012015,10,mac,phase-5,with +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.4754727910003566,10,mac,phase-5,with +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205,10,mac,phase-5,with +24,2127.013772451134,0.9305539855413472,0.0,448.0949781090709,0.4726339579974592,10,mac,phase-5,with +25,2158.107187960308,0.9441571422772864,0.0,454.64538390445193,0.4795430830017722,10,mac,phase-5,with +26,2129.987750526841,0.9318550806198584,0.0,448.7215018570554,0.4732947920019796,10,mac,phase-5,with +27,2133.861040626745,0.9335496185614108,0.0,449.53748239512504,0.4741554579995863,10,mac,phase-5,with +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.4748490419988229,10,mac,phase-5,with +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905,10,mac,phase-5,with +0,1392.7279603943014,0.1339966768870043,0.0,442.3565295732231,0.4786749999984749,10,mac,phase-2,with +1,1389.1204843918358,0.1336495956119625,0.0,441.21072751399134,0.477435125001648,10,mac,phase-2,with +2,1380.2402990351388,0.1327952181873855,0.0,438.3902140411066,0.4743830410006922,10,mac,phase-2,with +3,1385.5556798078874,0.1333066198251725,0.0,440.0784786978509,0.4762099159997888,10,mac,phase-2,with +4,1388.581612791723,0.1335977498777364,0.0,441.03957178387736,0.4772499169994262,10,mac,phase-2,with +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197,10,mac,phase-2,with +6,1384.9009121834042,0.1332436235413978,0.0,439.87051221603974,0.4759848749999946,10,mac,phase-2,with +7,1390.9897468626043,0.1338294404678393,0.0,441.80444034445446,0.4780775829967751,10,mac,phase-2,with +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852,10,mac,phase-2,with +9,1380.9355617432616,0.1328621105706084,0.0,438.6110425212212,0.4746219999979075,10,mac,phase-2,with +10,1384.2770555996944,0.1331836012603434,0.0,439.6723636607087,0.4757704580006248,10,mac,phase-2,with +11,1383.5134214083396,0.1331101307428348,0.0,439.4298191147835,0.4755079999995359,10,mac,phase-2,with +12,1386.532682809284,0.1334006189112961,0.0,440.3887931809163,0.4765457080029591,10,mac,phase-2,with +13,1387.365540957909,0.1334807495810375,0.0,440.65332455440017,0.4768319579998206,10,mac,phase-2,with +14,1393.2604077165302,0.1340479045307545,0.0,442.52564483215343,0.4788580000022193,10,mac,phase-2,with +15,1382.1245980610845,0.1329765097352817,0.0,438.9887027635988,0.4750306669993733,10,mac,phase-2,with +16,1390.2715743685353,0.1337603438959504,0.0,441.57633528650655,0.4778307499982475,10,mac,phase-2,with +17,1386.3423517986607,0.1333823068477364,0.0,440.3283404810899,0.4764802919999056,10,mac,phase-2,with +18,1386.152867472149,0.1333640762450654,0.0,440.26815670402226,0.4764151669987768,10,mac,phase-2,with +19,1387.0355487415052,0.133449000480241,0.0,440.5485128353957,0.476718541001901,10,mac,phase-2,with +20,1385.5385891202095,0.1333049755016437,0.0,440.0730503748014,0.4762040419991535,10,mac,phase-2,with +21,1379.320279536285,0.132706701578957,0.0,438.097998587532,0.4740668339982221,10,mac,phase-2,with +22,1393.496567010398,0.1340706258097797,0.0,442.6006534545353,0.478939167001954,10,mac,phase-2,with +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452,10,mac,phase-2,with +24,1384.7716816940174,0.1332311900607593,0.0,439.82946618808177,0.4759404590004124,10,mac,phase-2,with +25,1385.4854869535443,0.1332998664537384,0.0,440.0561841304042,0.4761857909979881,10,mac,phase-2,with +26,1384.3494335214364,0.1331905648607515,0.0,439.695352246556,0.4757953340013046,10,mac,phase-2,with +27,1381.87219185281,0.1329522253135596,0.0,438.9085338163886,0.474943916000484,10,mac,phase-2,with +28,1389.2910566489743,0.1336660066529379,0.0,441.26490446301153,0.4774937500005762,10,mac,phase-2,with +29,1379.96219569416,0.1327684614017231,0.0,438.3018832024386,0.4742874580006173,10,mac,phase-2,with +0,1398.8862502594493,0.1670631105953912,0.0,440.94637410547574,0.4769608329988841,10,mac,phase-3,with +1,1396.9275519023229,0.1668291914756637,0.0,440.32896798086693,0.4762929999997141,10,mac,phase-3,with +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.4758985420012322,10,mac,phase-3,with +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526,10,mac,phase-3,with +4,1397.991833947257,0.1669562942111038,0.0,440.6644429407875,0.4766558750015974,10,mac,phase-3,with +5,1392.2824223679588,0.1662744431614349,0.0,438.8647652802912,0.4747092079996946,10,mac,phase-3,with +6,1389.60246999989,0.1659543877039064,0.0,438.0200109056906,0.4737954579977668,10,mac,phase-3,with +7,1396.1068221654489,0.1667311751696382,0.0,440.0702637427432,0.4760131659968465,10,mac,phase-3,with +8,1391.825623572621,0.16621988959952,0.0,438.7207766089732,0.4745534590001625,10,mac,phase-3,with +9,1396.1552182260154,0.1667369549079245,0.0,440.08551878397606,0.4760296669992385,10,mac,phase-3,with +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643,10,mac,phase-3,with +11,1398.5840366906104,0.1670270184979351,0.0,440.8511126234501,0.4768577909999294,10,mac,phase-3,with +12,1403.2547089972113,0.1675848172781918,0.0,442.3233667240595,0.4784502920010709,10,mac,phase-3,with +13,1396.9105644487831,0.166827162735422,0.0,440.323613323873,0.4762872079991211,10,mac,phase-3,with +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.4752887499998905,10,mac,phase-3,with +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325,10,mac,phase-3,with +16,1395.3931497605902,0.1666459442712148,0.0,439.8453053094444,0.4757698339999479,10,mac,phase-3,with +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465,10,mac,phase-3,with +18,1396.185647230651,0.1667405889161691,0.0,440.0951103853369,0.4760400419982034,10,mac,phase-3,with +19,1397.077863860132,0.1668471426015874,0.0,440.37634818262984,0.4763442499970551,10,mac,phase-3,with +20,1394.4525370705426,0.1665336108475102,0.0,439.5488124709186,0.475449124998704,10,mac,phase-3,with +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357,10,mac,phase-3,with +22,1389.5461345505648,0.1659476597977601,0.0,438.00225327020814,0.4737762500008102,10,mac,phase-3,with +23,1395.138839516903,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239,10,mac,phase-3,with +24,1396.723593957756,0.1668048336348145,0.0,440.26467789572945,0.4762234589979925,10,mac,phase-3,with +25,1404.0633375129448,0.1676813883861925,0.0,442.57825650651665,0.4787260000011883,10,mac,phase-3,with +26,1391.7788171546058,0.1662142997055683,0.0,438.70602264287703,0.4745374999984051,10,mac,phase-3,with +27,1397.919124008101,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545,10,mac,phase-3,with +28,1400.2760860285289,0.1672290928450245,0.0,441.38446765515783,0.4774347080019652,10,mac,phase-3,with +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.4754571249977743,10,mac,phase-3,with +0,1381.5516209493485,0.0999506803686798,0.0,439.3165571138039,0.4754871660006756,10,mac,phase-4,with +1,1381.107557064519,0.0999185538185438,0.0,439.17535021710626,0.4753343330012285,10,mac,phase-4,with +2,1376.128171163972,0.0995583117537298,0.0,437.59196626156063,0.4736205830013205,10,mac,phase-4,with +3,1380.7211189424895,0.0998905963013352,0.0,439.0524676098022,0.475201332999859,10,mac,phase-4,with +4,1380.2241479000502,0.0998546420937167,0.0,438.89443688258285,0.4750302909997117,10,mac,phase-4,with +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.4739347079994331,10,mac,phase-4,with +6,1377.0907565492023,0.0996279516156849,0.0,437.8980566681405,0.4739518749993294,10,mac,phase-4,with +7,1379.9166477647204,0.0998323954781913,0.0,438.7966555918104,0.474924459002068,10,mac,phase-4,with +8,1388.2125966734,0.1004325798832855,0.0,441.4346661136675,0.4777796669986855,10,mac,phase-4,with +9,1385.2603140533952,0.100218992021612,0.0,440.4958762656587,0.4767635829994106,10,mac,phase-4,with +10,1378.254188068791,0.0997121220297193,0.0,438.2680136946266,0.4743522919998213,10,mac,phase-4,with +11,1384.9526889767828,0.100196736366999,0.0,440.398055245083,0.4766577080008574,10,mac,phase-4,with +12,1382.3441125519096,0.1000080145092658,0.0,439.56855977306,0.475759917000687,10,mac,phase-4,with +13,1382.6810342874294,0.1000323896800416,0.0,439.67569677367646,0.475875874999474,10,mac,phase-4,with +14,1381.2961766373749,0.0999321998194256,0.0,439.235328939649,0.475399250000919,10,mac,phase-4,with +15,1385.2699982500696,0.1002196926411413,0.0,440.49895572203,0.4767669159991783,10,mac,phase-4,with +16,1373.3594263151476,0.0993580022414315,0.0,436.71153918517217,0.4726676670034067,10,mac,phase-4,with +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.4784245000009832,10,mac,phase-4,with +18,1380.847269195503,0.0998997228539925,0.0,439.0925818509153,0.4752447499995469,10,mac,phase-4,with +19,1378.9612042113365,0.0997632723040974,0.0,438.4928362006096,0.4745956250008021,10,mac,phase-4,with +20,1377.5675078746096,0.0996624429937981,0.0,438.0496577720742,0.4741159580007661,10,mac,phase-4,with +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.4762315420011873,10,mac,phase-4,with +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.476905750001606,10,mac,phase-4,with +23,1380.1145854309248,0.0998467156122404,0.0,438.85959735433414,0.4749925830001302,10,mac,phase-4,with +24,1386.322655687205,0.1002958489174913,0.0,440.8336879420138,0.4771292080004059,10,mac,phase-4,with +25,1383.0889008435486,0.1000618974734281,0.0,439.8053933615413,0.4760162500024307,10,mac,phase-4,with +26,1382.3496824807823,0.1000084174751572,0.0,439.5703309424747,0.4757618339972396,10,mac,phase-4,with +27,1398.4333502809254,0.1011720175282218,0.0,444.6847410423778,0.481297333000839,10,mac,phase-4,with +28,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028,10,mac,phase-4,with +29,1385.4469985267924,0.1002324980244622,0.0,440.5552396501865,0.4768278339979588,10,mac,phase-4,with +0,1437.887930994931,1.712970905880436,0.0,453.8701147286732,0.481649749999633,10,mac,phase-22,with +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.4807219579997763,10,mac,phase-22,with +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.4827039170013449,10,mac,phase-22,with +3,1409.294103322443,1.678906780412161,0.0,444.8444573276378,0.4720716669980902,10,mac,phase-22,with +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454,10,mac,phase-22,with +5,1427.6852831409622,1.700816384961202,0.0,450.6496433329554,0.4782321659986337,10,mac,phase-22,with +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.475717875000555,10,mac,phase-22,with +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874,10,mac,phase-22,with +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.4759302920028858,10,mac,phase-22,with +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.4766364589995646,10,mac,phase-22,with +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318,10,mac,phase-22,with +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285,10,mac,phase-22,with +12,1432.068880750474,1.7060386105646854,0.0,452.0333283247176,0.4797005410000565,10,mac,phase-22,with +13,1432.8993036323643,1.70702790201473,0.0,452.2954517632362,0.4799787080009992,10,mac,phase-22,with +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.4781303749987273,10,mac,phase-22,with +15,1421.5099863905457,1.6934596894631586,0.0,448.7004075238365,0.4761636250004812,10,mac,phase-22,with +16,1424.2936899173185,1.6967759445406032,0.0,449.57908507014065,0.4770960830028343,10,mac,phase-22,with +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928,10,mac,phase-22,with +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.475372958000662,10,mac,phase-22,with +19,1423.7101814554428,1.6960808048172755,0.0,449.3949003038402,0.4769006249989616,10,mac,phase-22,with +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.4777400829989346,10,mac,phase-22,with +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789,10,mac,phase-22,with +22,1429.3195086264966,1.702763254845861,0.0,451.1654875045515,0.4787795829979586,10,mac,phase-22,with +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727,10,mac,phase-22,with +24,1429.1426302590603,1.702552537799862,0.0,451.1096557507752,0.4787203339983534,10,mac,phase-22,with +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349,10,mac,phase-22,with +26,1429.5686590813752,1.703060070384259,0.0,451.2441319824019,0.4788630410002952,10,mac,phase-22,with +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045,10,mac,phase-22,with +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.478106791000755,10,mac,phase-22,with +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.4814269579983374,10,mac,phase-22,with +0,1433.797396939961,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367,10,mac,phase-25,with +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.4802329169979202,10,mac,phase-25,with +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418,10,mac,phase-25,with +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.4777907079987926,10,mac,phase-25,with +4,1456.870261103736,2.422621340465356,0.0,459.9279319836243,0.4831794579986308,10,mac,phase-25,with +5,1446.022167683568,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192,10,mac,phase-25,with +6,1436.2791326006184,2.3883804690111443,0.0,453.4273976515741,0.4763502909991075,10,mac,phase-25,with +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637,10,mac,phase-25,with +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.4756194999972649,10,mac,phase-25,with +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.4778836250006861,10,mac,phase-25,with +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.477050915997097,10,mac,phase-25,with +11,1439.3127778105872,2.393425100521093,0.0,454.3851069308725,0.4773564169991005,10,mac,phase-25,with +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.4774322919984115,10,mac,phase-25,with +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.4832142499981273,10,mac,phase-25,with +14,1457.2685173856205,2.4232835985903427,0.0,460.0536598490472,0.4833115420005924,10,mac,phase-25,with +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105,10,mac,phase-25,with +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717,10,mac,phase-25,with +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.4813035830011358,10,mac,phase-25,with +18,1436.3550154988843,2.3885066542546927,0.0,453.4513535695472,0.4763754580017121,10,mac,phase-25,with +19,1439.5605226171017,2.393837073962569,0.0,454.463318944366,0.4774385829987295,10,mac,phase-25,with +20,1434.5232971346488,2.385460700117666,0.0,452.8730876376165,0.4757679579997784,10,mac,phase-25,with +21,1437.706317098976,2.3907537260641667,0.0,453.8779539107096,0.4768236250019981,10,mac,phase-25,with +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702,10,mac,phase-25,with +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.478918374999921,10,mac,phase-25,with +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.480683041998418,10,mac,phase-25,with +25,1444.3381928638455,2.401781834869899,0.0,455.9716097338424,0.4790231250008219,10,mac,phase-25,with +26,1444.1479836100018,2.401465536974459,0.0,455.9115614569984,0.4789600410003913,10,mac,phase-25,with +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177,10,mac,phase-25,with +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.4783567919985216,10,mac,phase-25,with +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.4797304159983468,10,mac,phase-25,with +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.4773925419976876,10,mac,phase-13,with +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012,10,mac,phase-13,with +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.4768721250002272,10,mac,phase-13,with +3,1591.7771157613092,0.1653828771258944,0.0,448.02221413404817,0.4742466669995338,10,mac,phase-13,with +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.4763908750028349,10,mac,phase-13,with +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756,10,mac,phase-13,with +6,1599.923316021195,0.1662292531814889,0.0,450.3150468686536,0.476673707998998,10,mac,phase-13,with +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078,10,mac,phase-13,with +8,1599.6205389249687,0.166197795167169,0.0,450.229827107861,0.4765834999998333,10,mac,phase-13,with +9,1592.539445588393,0.1654620818706251,0.0,448.2367797875235,0.4744737920009356,10,mac,phase-13,with +10,1607.448160004806,0.1670110713993855,0.0,452.43299242093553,0.4789156250008091,10,mac,phase-13,with +11,1594.297518282129,0.1656447425694174,0.0,448.7316076205518,0.4749975839986291,10,mac,phase-13,with +12,1602.677410191569,0.1665153987814363,0.0,451.0902152989111,0.4774942500007455,10,mac,phase-13,with +13,1605.1480233851848,0.1667720912003558,0.0,451.785595061764,0.4782303329993738,10,mac,phase-13,with +14,1601.3632290921896,0.1663788576481786,0.0,450.7203253689159,0.4771027089991548,10,mac,phase-13,with +15,1595.800220143318,0.1658008706823329,0.0,449.15455867844,0.475445291998767,10,mac,phase-13,with +16,1611.70677521292,0.1674535341215318,0.0,453.63162393522987,0.4801844169996911,10,mac,phase-13,with +17,1598.0024596834728,0.1660296795448708,0.0,449.7744018870551,0.4761014169998816,10,mac,phase-13,with +18,1595.2047318950506,0.1657390004878076,0.0,448.9869523214708,0.4752678750010091,10,mac,phase-13,with +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831,10,mac,phase-13,with +20,1594.7083993859603,0.1656874324023315,0.0,448.8472543779161,0.4751200000027893,10,mac,phase-13,with +21,1594.7913334840082,0.1656960491110473,0.0,448.8705970418272,0.4751447090020519,10,mac,phase-13,with +22,1611.819356688242,0.1674652311412436,0.0,453.66331116162905,0.4802179590005835,10,mac,phase-13,with +23,1625.5004557649995,0.1688866735688013,0.0,457.513998697883,0.4842940419985098,10,mac,phase-13,with +24,1613.805663465247,0.1676716049648041,0.0,454.2223778496544,0.4808097499990253,10,mac,phase-13,with +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.4764814170011959,10,mac,phase-13,with +26,1601.7627822219915,0.1664203705242697,0.0,450.83278375024673,0.477221749999444,10,mac,phase-13,with +27,1637.621652666843,0.1701460448702147,0.0,460.9256355534117,0.4879053750009916,10,mac,phase-13,with +28,1623.030399742511,0.1686300390389941,0.0,456.81877575663515,0.4835581250008545,10,mac,phase-13,with +29,1635.1585880735686,0.1698901367377575,0.0,460.2323804225851,0.4871715409972239,10,mac,phase-13,with +0,1390.0603241936417,0.1674892551502086,0.0,445.0524487851344,0.4788548329997866,10,mac,phase-14,with +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209,10,mac,phase-14,with +2,1377.5902576361257,0.1659867288763194,0.0,441.05993597015606,0.4745590829988941,10,mac,phase-14,with +3,1377.444387682713,0.1659691529125856,0.0,441.01323311932254,0.4745088329982536,10,mac,phase-14,with +4,1378.2936033553765,0.1660714754506803,0.0,441.2851245675478,0.4748013749995152,10,mac,phase-14,with +5,1380.196807079257,0.1663007936813814,0.0,441.8944689701668,0.4754570000004605,10,mac,phase-14,with +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.4774362499993003,10,mac,phase-14,with +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.4752448340004775,10,mac,phase-14,with +8,1386.7012048240165,0.167084512714656,0.0,443.976967185384,0.4776976670000294,10,mac,phase-14,with +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507,10,mac,phase-14,with +10,1384.5611750681394,0.1668266591642937,0.0,443.29179873136127,0.4769604590001108,10,mac,phase-14,with +11,1382.8663723350817,0.1666224513019111,0.0,442.7491775994384,0.4763766249998298,10,mac,phase-14,with +12,1379.409399632061,0.1662059184557993,0.0,441.64236652075,0.4751857500014012,10,mac,phase-14,with +13,1383.6672056307757,0.1667189442165428,0.0,443.0055785721975,0.4766525000013644,10,mac,phase-14,with +14,1383.0517940967477,0.1666447928882506,0.0,442.8085436626597,0.4764405000023544,10,mac,phase-14,with +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795,10,mac,phase-14,with +16,1380.578780242162,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149,10,mac,phase-14,with +17,1385.9641130782545,0.1669957000600349,0.0,443.74097419952494,0.4774437500018393,10,mac,phase-14,with +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388,10,mac,phase-14,with +19,1390.5397849329893,0.1675470256805298,0.0,445.20595663830386,0.4790199999988545,10,mac,phase-14,with +20,1385.4222432134395,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751,10,mac,phase-14,with +21,1384.7365557380076,0.1668477908930775,0.0,443.3479499610856,0.4770208749978337,10,mac,phase-14,with +22,1380.1324588315383,0.1662930403199675,0.0,441.8738667382177,0.4754348329988715,10,mac,phase-14,with +23,1382.8147242197429,0.1666162281875488,0.0,442.7326415399548,0.4763588330024504,10,mac,phase-14,with +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962,10,mac,phase-14,with +25,1381.048562774172,0.1664034222683774,0.0,442.16717365153266,0.4757504170011088,10,mac,phase-14,with +26,1385.5867380781835,0.1669502299055574,0.0,443.6201509050472,0.4773137500014854,10,mac,phase-14,with +27,1384.5037182668846,0.1668197361576601,0.0,443.27340291813454,0.4769406659979722,10,mac,phase-14,with +28,1386.1163925964613,0.1670140483163193,0.0,443.7897291861239,0.4774962080009572,10,mac,phase-14,with +29,1382.6472045469038,0.1665960436353114,0.0,442.6790071477496,0.4763011249997362,10,mac,phase-14,with +0,1359.9830388133907,0.0994430417383292,0.0,439.27306303877975,0.4735101670012227,10,mac,phase-15,with +1,1367.2100374254069,0.0999714856263093,0.0,441.6073758399505,0.4760264169999573,10,mac,phase-15,with +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355,10,mac,phase-15,with +3,1360.6509298042945,0.0994918784589276,0.0,439.4887911125696,0.4737427090003621,10,mac,phase-15,with +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.4758644579997053,10,mac,phase-15,with +5,1368.671233865174,0.1000783294724461,0.0,442.0793407229522,0.4765351669993833,10,mac,phase-15,with +6,1378.0276760639613,0.1007624799695789,0.0,445.1014615189534,0.479792833000829,10,mac,phase-15,with +7,1372.258883992279,0.1003406613039104,0.0,443.2381478664736,0.4777842919975228,10,mac,phase-15,with +8,1369.9006263898757,0.1001682236319008,0.0,442.4764331899832,0.4769632089992228,10,mac,phase-15,with +9,1362.872281559501,0.0996543054664741,0.0,440.20628534723863,0.4745161249993543,10,mac,phase-15,with +10,1370.0406398939213,0.1001784615307049,0.0,442.52165740163406,0.4770119580025493,10,mac,phase-15,with +11,1363.8435384826207,0.0997253245453802,0.0,440.5200002917932,0.474854291001975,10,mac,phase-15,with +12,1375.0565775890122,0.1005452308854206,0.0,444.14179989786464,0.478758375000325,10,mac,phase-15,with +13,1372.584870820952,0.1003644977201632,0.0,443.3434412625342,0.4778977919995668,10,mac,phase-15,with +14,1360.2762345172491,0.0994644804414484,0.0,439.3677649366916,0.47361224999986,10,mac,phase-15,with +15,1368.435239510169,0.1000610733774619,0.0,442.003114799375,0.4764529999993101,10,mac,phase-15,with +16,1368.283016589219,0.1000499427163804,0.0,441.95394695915786,0.4763999999995576,10,mac,phase-15,with +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.4763121670002874,10,mac,phase-15,with +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.4779738329998508,10,mac,phase-15,with +19,1366.9728453928535,0.0999541419561899,0.0,441.53076306780974,0.4759438330002012,10,mac,phase-15,with +20,1372.0063748964212,0.1003221976379366,0.0,443.156587699312,0.4776963750009599,10,mac,phase-15,with +21,1367.3190577628875,0.0999794572801175,0.0,441.6425892920392,0.4760643750014424,10,mac,phase-15,with +22,1370.7449121584284,0.1002299584789725,0.0,442.7491365877813,0.4772571670000616,10,mac,phase-15,with +23,1359.658367419681,0.0994193015077274,0.0,439.1681945268015,0.4733971249988826,10,mac,phase-15,with +24,1367.1400292419053,0.0999663665722364,0.0,441.58476327175896,0.4760020419998909,10,mac,phase-15,with +25,1366.998694566532,0.0999560320683337,0.0,441.5391123231862,0.4759528329996101,10,mac,phase-15,with +26,1365.0601270460802,0.0998142824690026,0.0,440.91295709307434,0.4752778750007564,10,mac,phase-15,with +27,1366.017143931724,0.0998842603050398,0.0,441.2220725207958,0.4756110829985118,10,mac,phase-15,with +28,1365.7311285567905,0.0998633466332838,0.0,441.1296898614259,0.4755115000007208,10,mac,phase-15,with +29,1365.9570675778948,0.0998798674742537,0.0,441.2026679229371,0.475590165999165,10,mac,phase-15,with +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229,10,mac,phase-12,with +1,1405.501159477378,0.2322484329432426,0.0,441.90241119586415,0.4740041670011123,10,mac,phase-12,with +2,1411.600628024097,0.2332563239735772,0.0,443.82013985772505,0.4760612079990096,10,mac,phase-12,with +3,1414.8127689086136,0.2337871059525115,0.0,444.83006631164307,0.4771445000005769,10,mac,phase-12,with +4,1415.084203187349,0.2338319584134706,0.0,444.91540772985934,0.4772360409988323,10,mac,phase-12,with +5,1423.4112588293244,0.2352079413579451,0.0,447.5335101352102,0.4800443340027414,10,mac,phase-12,with +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879,10,mac,phase-12,with +7,1412.981778742787,0.2334845486804094,0.0,444.2543862677677,0.4765269999988959,10,mac,phase-12,with +8,1412.4140739457582,0.233390739757809,0.0,444.0758946906084,0.4763355420000152,10,mac,phase-12,with +9,1414.3226536148504,0.2337061181083035,0.0,444.6759695834992,0.4769792090010014,10,mac,phase-12,with +10,1417.9660986792762,0.2343081698398312,0.0,445.82150201381614,0.4782079579999845,10,mac,phase-12,with +11,1412.6123694385958,0.2334235065877477,0.0,444.1382406060304,0.4764024169999175,10,mac,phase-12,with +12,1419.2150504322765,0.2345145496677667,0.0,446.21418386071224,0.4786291660020652,10,mac,phase-12,with +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844,10,mac,phase-12,with +14,1414.5234190879785,0.2337392930837979,0.0,444.73909208330065,0.477046916999825,10,mac,phase-12,with +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688,10,mac,phase-12,with +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.4748752910018083,10,mac,phase-12,with +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377,10,mac,phase-12,with +18,1411.6060661381266,0.2332572225807772,0.0,443.82184965048174,0.4760630419987137,10,mac,phase-12,with +19,1418.1162102203814,0.2343329746362936,0.0,445.8686984543992,0.4782585829998425,10,mac,phase-12,with +20,1413.9969775450247,0.2336523026017462,0.0,444.5735740503797,0.4768693750011152,10,mac,phase-12,with +21,1402.71835094593,0.2317885948874347,0.0,441.0274707579634,0.4730656669999007,10,mac,phase-12,with +22,1402.7010521628758,0.2317857363944131,0.0,441.0220318624555,0.4730598329988424,10,mac,phase-12,with +23,1404.320403583212,0.2320533219650272,0.0,441.53117075031395,0.4736059579990979,10,mac,phase-12,with +24,1409.4916535304808,0.2329078318944659,0.0,443.1570590003417,0.4753499580001517,10,mac,phase-12,with +25,1413.038612086046,0.2334939399603966,0.0,444.2722551903604,0.4765461669994693,10,mac,phase-12,with +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.4761061250028433,10,mac,phase-12,with +27,1413.9134577072468,0.233638501580443,0.0,444.54731464998866,0.476841208001133,10,mac,phase-12,with +28,1409.1224903257444,0.2328468304678771,0.0,443.0409907145222,0.4752254579980217,10,mac,phase-12,with +29,1407.2538188427316,0.2325380466431972,0.0,442.45346332010627,0.4745952500015846,10,mac,phase-12,with +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664,10,mac,phase-24,with +1,1470.0650690266311,1.8938036315963045,0.0,459.2811985840966,0.4863042079996376,10,mac,phase-24,with +2,1448.4887603472594,1.8660080648595936,0.0,452.54027730103815,0.4791666669989354,10,mac,phase-24,with +3,1453.1077990562935,1.8719585173027935,0.0,453.9833682765936,0.4806946660028188,10,mac,phase-24,with +4,1457.5307279874908,1.877656332351035,0.0,455.36519017248935,0.4821577910006454,10,mac,phase-24,with +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206,10,mac,phase-24,with +6,1458.6824685027595,1.8791400560422025,0.0,455.7250196626634,0.4825387919991044,10,mac,phase-24,with +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952,10,mac,phase-24,with +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148,10,mac,phase-24,with +9,1454.2838469735757,1.873473554877392,0.0,454.3507919426761,0.4810837080003693,10,mac,phase-24,with +10,1443.39889680046,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695,10,mac,phase-24,with +11,1435.4034897523384,1.849151033497376,0.0,448.45214617728334,0.4748379999982717,10,mac,phase-24,with +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432,10,mac,phase-24,with +13,1440.5007836697584,1.8557175957098335,0.0,450.0446547738438,0.4765242079993186,10,mac,phase-24,with +14,1436.810538132051,1.8509636562087617,0.0,448.891739553057,0.4753034579989617,10,mac,phase-24,with +15,1432.6827260690825,1.845646023921523,0.0,447.60211876568223,0.4739379590027965,10,mac,phase-24,with +16,1439.107087588519,1.8539221740270784,0.0,449.6092329546741,0.4760631669996655,10,mac,phase-24,with +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986,10,mac,phase-24,with +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.4766195830015931,10,mac,phase-24,with +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.4770321659998444,10,mac,phase-24,with +20,1449.866335125129,1.867782718357654,0.0,452.97066246455887,0.4796223749981436,10,mac,phase-24,with +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.4822667920016101,10,mac,phase-24,with +22,1451.9393114765087,1.870453219293409,0.0,453.61830662899615,0.4803081249992829,10,mac,phase-24,with +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702,10,mac,phase-24,with +24,1439.3600043065803,1.8542479926654816,0.0,449.68824979267697,0.4761468329998024,10,mac,phase-24,with +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217,10,mac,phase-24,with +26,1439.6413879935462,1.854610483727596,0.0,449.7761603482943,0.4762399160026689,10,mac,phase-24,with +27,1445.2852070324934,1.8618811040676244,0.0,451.5394156132572,0.478106916998513,10,mac,phase-24,with +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994,10,mac,phase-24,with +29,1453.8891033023608,1.8729650284088384,0.0,454.227465193222,0.4809531249993597,10,mac,phase-24,with +0,1654.6480123452643,0.8802219605314963,0.0,471.798970844882,0.4858740839990787,10,mac,phase-23,with +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205,10,mac,phase-23,with +2,1623.088033571781,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473,10,mac,phase-23,with +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468,10,mac,phase-23,with +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022,10,mac,phase-23,with +5,1622.4651082793391,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894,10,mac,phase-23,with +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085,10,mac,phase-23,with +7,1631.325248725041,0.8678149660736794,0.0,465.1488218154921,0.4790255419975437,10,mac,phase-23,with +8,1609.854086984751,0.8563929669893303,0.0,459.02663030628105,0.4727207079995423,10,mac,phase-23,with +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.482218458000716,10,mac,phase-23,with +10,1634.9563714903925,0.869746611943738,0.0,466.1841840018436,0.4800917920001666,10,mac,phase-23,with +11,1655.6029712356135,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199,10,mac,phase-23,with +12,1699.2689617515464,0.9039589361747356,0.0,484.52198978965833,0.4989766670005338,10,mac,phase-23,with +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.4832517079994431,10,mac,phase-23,with +14,1722.6778540568937,0.916411748449703,0.0,491.1966971690408,0.505850499997905,10,mac,phase-23,with +15,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.4705873329985479,10,mac,phase-23,with +16,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844,10,mac,phase-23,with +17,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.4723213329998543,10,mac,phase-23,with +18,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.4728038749999541,10,mac,phase-23,with +19,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575,10,mac,phase-23,with +20,1625.835995757708,0.8648948519631798,0.0,463.5836406522643,0.4774136670021107,10,mac,phase-23,with +21,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766,10,mac,phase-23,with +22,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042,10,mac,phase-23,with +23,1610.983721176818,0.85699389771043,0.0,459.34872917279046,0.4730524159967899,10,mac,phase-23,with +24,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.4798239160008961,10,mac,phase-23,with +25,1615.5939308560737,0.8594463877699828,0.0,460.6632638447108,0.4744061669989605,10,mac,phase-23,with +26,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914,10,mac,phase-23,with +27,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.4746511670018662,10,mac,phase-23,with +28,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.4717144589994859,10,mac,phase-23,with +29,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752,10,mac,phase-23,with +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.3553411613795,0.4887512500026787,10,mac,phase-8,with +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773,10,mac,phase-8,with +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.4905316670010506,10,mac,phase-8,with +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.4856883339998603,10,mac,phase-8,with +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.4145019481052,0.4907829580006364,10,mac,phase-8,with +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843,10,mac,phase-8,with +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.4852944170015689,10,mac,phase-8,with +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511,10,mac,phase-8,with +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992,10,mac,phase-8,with +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.4860352499999862,10,mac,phase-8,with +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606,10,mac,phase-8,with +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815,10,mac,phase-8,with +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729,10,mac,phase-8,with +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.4838942089991178,10,mac,phase-8,with +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.4922301250007876,10,mac,phase-8,with +15,2172.904363612247,4.054051068508988,84.66600867869597,497.2745947009123,0.4906449160007469,10,mac,phase-8,with +16,2175.837068669918,4.059522701900578,84.78027989836993,497.9457515835403,0.4913071250011853,10,mac,phase-8,with +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261,10,mac,phase-8,with +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433,10,mac,phase-8,with +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023,10,mac,phase-8,with +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.4882758749990898,10,mac,phase-8,with +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164,10,mac,phase-8,with +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.4890841250016819,10,mac,phase-8,with +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.4890738750000309,10,mac,phase-8,with +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.4872862500014889,10,mac,phase-8,with +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.4908622500006458,10,mac,phase-8,with +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539,10,mac,phase-8,with +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.491627374998643,10,mac,phase-8,with +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118,10,mac,phase-8,with +29,2161.072808854291,4.031976591596034,84.20499873523288,494.5669138220523,0.487973333998525,10,mac,phase-8,with +0,1398.2044033134116,0.4026120084407769,0.0,442.1350872693799,0.4791000420009368,10,mac,phase-1,with +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.4714275830010592,10,mac,phase-1,with +2,1392.2357928925342,0.4008933511232521,0.0,440.2477150918514,0.477054875002068,10,mac,phase-1,with +3,1393.0715489932206,0.4011340065248991,0.0,440.5119948320934,0.4773412499998812,10,mac,phase-1,with +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332,10,mac,phase-1,with +5,1391.353584643174,0.4006393198569392,0.0,439.96874642289544,0.4767525829993246,10,mac,phase-1,with +6,1389.8013619275412,0.4001923583800569,0.0,439.4779082276992,0.4762207079984364,10,mac,phase-1,with +7,1393.9126545251288,0.4013762022916337,0.0,440.7779661499291,0.4776294580005924,10,mac,phase-1,with +8,1395.2987708038715,0.4017753335328132,0.0,441.21627877461776,0.4781044160008605,10,mac,phase-1,with +9,1393.131376142637,0.4011512337119461,0.0,440.5309131546688,0.4773617499995453,10,mac,phase-1,with +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505,10,mac,phase-1,with +11,1391.779428467707,0.4007619412970313,0.0,440.1034052010233,0.4768985000009706,10,mac,phase-1,with +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.4760606250019918,10,mac,phase-1,with +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828,10,mac,phase-1,with +14,1397.3508945928966,0.4023662411843057,0.0,441.8651938605651,0.4788075840006058,10,mac,phase-1,with +15,1387.6137807153643,0.3995624458555543,0.0,438.7861592903746,0.4754711249988759,10,mac,phase-1,with +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016,10,mac,phase-1,with +17,1387.905133100111,0.3996463405768904,0.0,438.8782896768552,0.4755709579985705,10,mac,phase-1,with +18,1389.2666881497526,0.4000383994288292,0.0,439.308835639426,0.4760375000005297,10,mac,phase-1,with +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.4764104999994742,10,mac,phase-1,with +20,1387.9581516296382,0.3996616072264639,0.0,438.89505500252847,0.4755891249988053,10,mac,phase-1,with +21,1383.6377091625147,0.3984175387519839,0.0,437.5288604728037,0.4741087090005749,10,mac,phase-1,with +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973,10,mac,phase-1,with +23,1385.2003855818612,0.3988675103657516,0.0,438.0230042999896,0.4746441660026903,10,mac,phase-1,with +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586,10,mac,phase-1,with +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256,10,mac,phase-1,with +26,1388.7087868377796,0.3998777521249065,0.0,439.1324181251682,0.4758463329999358,10,mac,phase-1,with +27,1386.871413337013,0.3993486816730853,0.0,438.5514105906599,0.4752167500009818,10,mac,phase-1,with +28,1388.1705847108346,0.3997227771879352,0.0,438.9622298152176,0.4756619159998081,10,mac,phase-1,with +29,1389.9437563946433,0.4002333607701617,0.0,439.5229356857659,0.4762695000026724,10,mac,phase-1,with +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.478538583000045,10,mac,phase-30,with +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992,10,mac,phase-30,with +2,1422.4471328985585,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801,10,mac,phase-30,with +3,1423.230797457382,1.773392083348801,0.0,447.9989925274923,0.4765795829989656,10,mac,phase-30,with +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372,10,mac,phase-30,with +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273,10,mac,phase-30,with +6,1420.5758147951883,1.7700838881896082,0.0,447.1632675277483,0.4756905419999384,10,mac,phase-30,with +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.4768262920006236,10,mac,phase-30,with +8,1422.3049082362418,1.772238395122154,0.0,447.70754476019846,0.4762695419994998,10,mac,phase-30,with +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838,10,mac,phase-30,with +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386,10,mac,phase-30,with +11,1413.1080871694985,1.7607788555303492,0.0,444.8126055980349,0.473189916996489,10,mac,phase-30,with +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.4762493330017605,10,mac,phase-30,with +13,1417.3294075206245,1.7660387586362547,0.0,446.1413762147323,0.4746034580020932,10,mac,phase-30,with +14,1412.745867489083,1.7603275179715854,0.0,444.69858751172745,0.473068625000451,10,mac,phase-30,with +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.4747444590029772,10,mac,phase-30,with +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.4726464579980529,10,mac,phase-30,with +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762,10,mac,phase-30,with +18,1417.1746163233452,1.7658458837460278,0.0,446.0926516504824,0.4745516250004584,10,mac,phase-30,with +19,1419.5263625778225,1.768776236431752,0.0,446.8329250865043,0.4753391249978449,10,mac,phase-30,with +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183,10,mac,phase-30,with +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.4743509159998211,10,mac,phase-30,with +22,1422.353809629749,1.7722993278565111,0.0,447.72293774850624,0.4762859170004958,10,mac,phase-30,with +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447,10,mac,phase-30,with +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.4749628339995979,10,mac,phase-30,with +25,1354.1542849217951,1.6873204913801607,0.0,426.2553596054523,0.4534487910023017,10,mac,phase-30,with +26,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732,10,mac,phase-30,with +27,1420.870713330435,1.7704513414015055,0.0,447.25609452876904,0.4757892910020018,10,mac,phase-30,with +28,1412.149219754377,1.7595840753963088,0.0,444.51077708455057,0.4728688329996657,10,mac,phase-30,with +29,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899,10,mac,phase-30,with +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.476325583000289,10,mac,phase-6,with +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.4740477499981352,10,mac,phase-6,with +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.4740115000022342,10,mac,phase-6,with +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.4766071250014647,10,mac,phase-6,with +4,1454.6356824641823,2.689847088670102,0.0,448.5656251243478,0.4807450420012173,10,mac,phase-6,with +5,1439.3908464616345,2.6616570214023705,0.0,443.8645790316128,0.4757067499995173,10,mac,phase-6,with +6,1436.1552645979718,2.655673928480174,0.0,442.86682349817494,0.4746374169990304,10,mac,phase-6,with +7,1470.199358514414,2.718626740659527,0.0,453.3649918392344,0.4858887079972191,10,mac,phase-6,with +8,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.4803635419993952,10,mac,phase-6,with +9,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.4781675829981395,10,mac,phase-6,with +10,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721,10,mac,phase-6,with +11,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456,10,mac,phase-6,with +12,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.4740057079980033,10,mac,phase-6,with +13,1436.1856465993965,2.6557301095150985,0.0,442.8761923880117,0.4746474579987989,10,mac,phase-6,with +14,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595,10,mac,phase-6,with +15,1444.9948689388625,2.672019728523426,0.0,445.5926899778878,0.4775588330012397,10,mac,phase-6,with +16,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.4783999579994997,10,mac,phase-6,with +17,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.4758022089990845,10,mac,phase-6,with +18,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605,10,mac,phase-6,with +19,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591,10,mac,phase-6,with +20,1443.300048842662,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269,10,mac,phase-6,with +21,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.4735740840005746,10,mac,phase-6,with +22,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895,10,mac,phase-6,with +23,1437.235978521874,2.657672336216858,0.0,443.2000829683638,0.4749945839976135,10,mac,phase-6,with +24,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872,10,mac,phase-6,with +25,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404,10,mac,phase-6,with +26,1439.6581239725597,2.6621512589927825,0.0,443.9469993277839,0.4757950830025947,10,mac,phase-6,with +27,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.4762523329991381,10,mac,phase-6,with +28,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.4755676250024407,10,mac,phase-6,with +29,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993,10,mac,phase-6,with +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.4842013329980545,10,mac,phase-7,with +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.1584645269379,0.4918910000014875,10,mac,phase-7,with +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971,10,mac,phase-7,with +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.4927279170005931,10,mac,phase-7,with +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.4888514999984181,10,mac,phase-7,with +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332,10,mac,phase-7,with +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907,10,mac,phase-7,with +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.0218930859032,0.4848583329985558,10,mac,phase-7,with +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093,10,mac,phase-7,with +9,2138.1194142937725,3.137493734289595,83.68851708094563,490.505862543885,0.4833643750025658,10,mac,phase-7,with +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087,10,mac,phase-7,with +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907,10,mac,phase-7,with +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461,10,mac,phase-7,with +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.491482666999218,10,mac,phase-7,with +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267,10,mac,phase-7,with +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832,10,mac,phase-7,with +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.2405760248656,0.4919719160025124,10,mac,phase-7,with +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296,10,mac,phase-7,with +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.5229983322752,0.4863375830027507,10,mac,phase-7,with +19,2153.784005153057,3.1604800817043612,84.30164765304055,494.099475510244,0.4869056669995188,10,mac,phase-7,with +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.3799390701532,0.4921092500007944,10,mac,phase-7,with +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702,10,mac,phase-7,with +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.3444832533918,0.4861616670023068,10,mac,phase-7,with +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.488861125002586,10,mac,phase-7,with +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051,10,mac,phase-7,with +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191,10,mac,phase-7,with +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902,10,mac,phase-7,with +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.4874809579996508,10,mac,phase-7,with +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169,10,mac,phase-7,with +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.5549762121397,0.4893254170019645,10,mac,phase-7,with +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333,10,mac,phase-9,with +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.4903181249974295,10,mac,phase-9,with +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615,10,mac,phase-9,with +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.4902185419996385,10,mac,phase-9,with +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641,10,mac,phase-9,with +5,2241.1490127200236,3.2378173610171124,78.62783844069976,506.4968821271085,0.4995985829991696,10,mac,phase-9,with +6,2198.850910485615,3.1767087381743906,77.14386377861389,496.9375637685223,0.4901694590007537,10,mac,phase-9,with +7,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346,10,mac,phase-9,with +8,2165.6159983890375,3.128693824945763,75.97785951736712,489.4265150791473,0.4827607080005691,10,mac,phase-9,with +9,2184.636400493825,3.156172849231463,76.6451659281788,493.7251022360924,0.4870007499994244,10,mac,phase-9,with +10,2175.6821728479604,3.143236559158055,76.33101833660666,491.701457954188,0.4850046669998846,10,mac,phase-9,with +11,2191.358148507132,3.1658838467110355,76.88098983539325,495.2442089049758,0.4884991670005547,10,mac,phase-9,with +12,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945,10,mac,phase-9,with +13,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.4890770419988257,10,mac,phase-9,with +14,2198.6882921444367,3.1764738013249003,77.13815852270048,496.9008122262037,0.4901332080007705,10,mac,phase-9,with +15,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969,10,mac,phase-9,with +16,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284,10,mac,phase-9,with +17,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624,10,mac,phase-9,with +18,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123,10,mac,phase-9,with +19,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.4924210420031158,10,mac,phase-9,with +20,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198,10,mac,phase-9,with +21,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.4888335839968931,10,mac,phase-9,with +22,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969,10,mac,phase-9,with +23,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.4810711249992891,10,mac,phase-9,with +24,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.4882775419973768,10,mac,phase-9,with +25,2188.6791289765147,3.1620134320721585,76.78699987147863,494.6387538318352,0.4879019580002932,10,mac,phase-9,with +26,2180.3695654537623,3.150008496709209,76.49546949376993,492.76080283784785,0.4860495840002841,10,mac,phase-9,with +27,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838,10,mac,phase-9,with +28,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016,10,mac,phase-9,with +29,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.4924800839980889,10,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n10/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n10/without_smell.csv new file mode 100644 index 000000000..f93c2a7bf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n10/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,290.8686257733098,0.0,0.0,61.83024365562761,0.0671084160021564,10,mac,phase-19,without +1,288.43744237162144,0.0,0.0,61.31344449346887,0.0665474999987054,10,mac,phase-19,without +2,286.20184035980265,0.0,0.0,60.83822026899203,0.0660317080000822,10,mac,phase-19,without +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035,10,mac,phase-19,without +4,285.997408337104,0.0,0.0,60.79476394316497,0.065984542001388,10,mac,phase-19,without +5,287.0887483871877,0.0,0.0,61.02675122274326,0.066236333001143,10,mac,phase-19,without +6,290.61850144546,0.0,0.0,61.777074469387486,0.0670507079994422,10,mac,phase-19,without +7,288.4390677341846,0.0,0.0,61.313789998464614,0.0665478749979229,10,mac,phase-19,without +8,262.4570511731341,0.0,0.0,55.79076595156614,0.0605533750022004,10,mac,phase-19,without +9,287.0845961195109,0.0,0.0,61.02586857092235,0.0662353750012698,10,mac,phase-19,without +10,289.1576572076416,0.0,0.0,61.46654130367703,0.0667136660013056,10,mac,phase-19,without +11,287.9375491452288,0.0,0.0,61.20718167496282,0.0664321659969573,10,mac,phase-19,without +12,287.8124003118045,0.0,0.0,61.18057865841791,0.0664032919994497,10,mac,phase-19,without +13,291.3011551411478,0.0,0.0,61.922186869271,0.0672082079981919,10,mac,phase-19,without +14,290.86863009377606,0.0,0.0,61.83024457403358,0.0671084169989626,10,mac,phase-19,without +15,291.96195960819887,0.0,0.0,62.06265475609747,0.0673606670025037,10,mac,phase-19,without +16,288.20917165594705,0.0,0.0,61.264920752099144,0.0664948340017872,10,mac,phase-19,without +17,288.4121603590863,0.0,0.0,61.30807026999944,0.0665416670017293,10,mac,phase-19,without +18,291.91970008694614,0.0,0.0,62.05367160609675,0.067350917001022,10,mac,phase-19,without +19,289.8069063826763,0.0,0.0,61.604552870166486,0.0668634590001602,10,mac,phase-19,without +20,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013,10,mac,phase-19,without +21,288.0397695006966,0.0,0.0,61.22891076131008,0.0664557499985676,10,mac,phase-19,without +22,286.4039275203915,0.0,0.0,60.881178145062925,0.0660783329985861,10,mac,phase-19,without +23,286.55978061458836,0.0,0.0,60.91430799797523,0.0661142909993941,10,mac,phase-19,without +24,288.72260523938814,0.0,0.0,61.374061858262614,0.0666132919977826,10,mac,phase-19,without +25,289.4366783433925,0.0,0.0,61.52585311416426,0.0667780409967235,10,mac,phase-19,without +26,279.95357387673477,0.0,0.0,59.51001982095035,0.0645901249990856,10,mac,phase-19,without +27,286.3918304829023,0.0,0.0,60.87860666533224,0.0660755420030909,10,mac,phase-19,without +28,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207,10,mac,phase-19,without +29,287.6597979585023,0.0,0.0,61.14813981884897,0.0663680840007145,10,mac,phase-19,without +0,313.9495430059727,0.0,0.0,64.80389868724639,0.0682134160015266,10,mac,phase-26,without +1,308.3794199438781,0.0,0.0,63.65414166853778,0.0670031669978925,10,mac,phase-26,without +2,305.034770594531,0.0,0.0,62.96375583295359,0.0662764580010843,10,mac,phase-26,without +3,308.9656537375239,0.0,0.0,63.77514912408851,0.0671305409996421,10,mac,phase-26,without +4,308.0823679620422,0.0,0.0,63.592825680142255,0.0669386250010575,10,mac,phase-26,without +5,309.16222020810307,0.0,0.0,63.81572339447207,0.0671732499977224,10,mac,phase-26,without +6,305.2121586167888,0.0,0.0,63.00037138369676,0.0663150000000314,10,mac,phase-26,without +7,305.6986801043409,0.0,0.0,63.100796722388495,0.0664207090012496,10,mac,phase-26,without +8,307.5666990894399,0.0,0.0,63.48638388361557,0.0668265829990559,10,mac,phase-26,without +9,305.4478414091471,0.0,0.0,63.04901985010978,0.0663662080005451,10,mac,phase-26,without +10,304.1035409753827,0.0,0.0,62.77153605994154,0.0660741249994316,10,mac,phase-26,without +11,309.41132839650345,0.0,0.0,63.86714306417025,0.0672273750024032,10,mac,phase-26,without +12,308.8985360500407,0.0,0.0,63.76129502582119,0.0671159579978848,10,mac,phase-26,without +13,307.0985920540554,0.0,0.0,63.38975956428898,0.066724874999636,10,mac,phase-26,without +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564,10,mac,phase-26,without +15,282.07808492211666,0.0,0.0,58.22515128438192,0.0612885419977828,10,mac,phase-26,without +16,307.8050697237094,0.0,0.0,63.53558716094896,0.0668783750006696,10,mac,phase-26,without +17,307.06369159998235,0.0,0.0,63.38255558664265,0.0667172920002485,10,mac,phase-26,without +18,306.8525537307586,0.0,0.0,63.338973560833,0.0666714170001796,10,mac,phase-26,without +19,308.0434357367305,0.0,0.0,63.584789484387315,0.0669301659982011,10,mac,phase-26,without +20,307.850325708721,0.0,0.0,63.54492867563824,0.0668882079989998,10,mac,phase-26,without +21,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821,10,mac,phase-26,without +22,307.0828700483037,0.0,0.0,63.38651430628306,0.0667214589993818,10,mac,phase-26,without +23,304.66063198848303,0.0,0.0,62.886528008096214,0.066195167000842,10,mac,phase-26,without +24,309.76916966813064,0.0,0.0,63.94100687454759,0.0673051249978016,10,mac,phase-26,without +25,310.62733522529624,0.0,0.0,64.11814512832865,0.0674915829986275,10,mac,phase-26,without +26,284.30241259877437,0.0,0.0,58.6842859084531,0.0617718329995113,10,mac,phase-26,without +27,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051,10,mac,phase-26,without +28,305.0623853492818,0.0,0.0,62.96945593288687,0.0662824579994776,10,mac,phase-26,without +29,302.2746382953192,0.0,0.0,62.3940230912878,0.0656767500004207,10,mac,phase-26,without +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777,10,mac,phase-21,without +1,290.6954782073229,0.0,0.0,60.92238606686448,0.0665466250029567,10,mac,phase-21,without +2,291.28719908778197,0.0,0.0,61.046395728609,0.0666820830010692,10,mac,phase-21,without +3,283.328160416027,0.0,0.0,59.378383451046346,0.0648600829990755,10,mac,phase-21,without +4,288.3902924835214,0.0,0.0,60.43927771069976,0.0660189170012017,10,mac,phase-21,without +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556,10,mac,phase-21,without +6,291.3215994250469,0.0,0.0,61.053605165235275,0.0666899579991877,10,mac,phase-21,without +7,291.49342205874245,0.0,0.0,61.08961482348515,0.066729292000673,10,mac,phase-21,without +8,288.8664369502698,0.0,0.0,60.53906549276548,0.0661279170017223,10,mac,phase-21,without +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085,10,mac,phase-21,without +10,288.4387063150821,0.0,0.0,60.44942401966714,0.0660299999981361,10,mac,phase-21,without +11,286.7470829842217,0.0,0.0,60.0949027513009,0.0656427499998244,10,mac,phase-21,without +12,287.64586027491015,0.0,0.0,60.28326363475572,0.0658485000021755,10,mac,phase-21,without +13,288.1433001809692,0.0,0.0,60.387514399813654,0.065962374999799,10,mac,phase-21,without +14,287.9949615223732,0.0,0.0,60.3564263860497,0.0659284169996681,10,mac,phase-21,without +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948,10,mac,phase-21,without +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169,10,mac,phase-21,without +17,289.2799662185982,0.0,0.0,60.62573072020697,0.0662225829983071,10,mac,phase-21,without +18,261.67377851069205,0.0,0.0,54.840175211235795,0.0599029159966448,10,mac,phase-21,without +19,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857,10,mac,phase-21,without +20,292.3219396351502,0.0,0.0,61.26325105602778,0.0669189580003148,10,mac,phase-21,without +21,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514,10,mac,phase-21,without +22,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968,10,mac,phase-21,without +23,291.10992044223104,0.0,0.0,61.00924262890388,0.066641499997786,10,mac,phase-21,without +24,289.47799864820206,0.0,0.0,60.66723328572497,0.0662679170018236,10,mac,phase-21,without +25,289.12507512691684,0.0,0.0,60.593269482956494,0.0661871250013064,10,mac,phase-21,without +26,289.32820096574676,0.0,0.0,60.63583949763187,0.0662336249988584,10,mac,phase-21,without +27,292.50923477110916,0.0,0.0,61.30250335761741,0.0669618339998123,10,mac,phase-21,without +28,289.02405823299785,0.0,0.0,60.572098908689014,0.0661639999998442,10,mac,phase-21,without +29,263.541225849374,0.0,0.0,55.231544724199395,0.0603304159994877,10,mac,phase-21,without +0,297.8349870577906,0.0,0.0,62.26538914028103,0.0661593750010069,10,mac,phase-28,without +1,297.48685086603774,0.0,0.0,62.192607780147874,0.0660820420016534,10,mac,phase-28,without +2,295.90878769905953,0.0,0.0,61.86269785871619,0.0657314999989466,10,mac,phase-28,without +3,268.1761314081655,0.0,0.0,56.064908106395634,0.0595711250025488,10,mac,phase-28,without +4,300.2289979376498,0.0,0.0,62.76588110904888,0.0666911670014087,10,mac,phase-28,without +5,297.55137488588906,0.0,0.0,62.20609717319946,0.0660963750015071,10,mac,phase-28,without +6,295.72984193562934,0.0,0.0,61.82528745336033,0.0656917500018607,10,mac,phase-28,without +7,296.86091429487476,0.0,0.0,62.06174946640304,0.0659430000014253,10,mac,phase-28,without +8,297.5283032487058,0.0,0.0,62.201273816207355,0.0660912499988626,10,mac,phase-28,without +9,297.3067796489023,0.0,0.0,62.15496208741491,0.0660420420026639,10,mac,phase-28,without +10,294.7674017488792,0.0,0.0,61.624079686119025,0.0654779589967802,10,mac,phase-28,without +11,294.9677264979095,0.0,0.0,61.665959582688664,0.0655224580004869,10,mac,phase-28,without +12,291.51804808384634,0.0,0.0,60.94476973530921,0.064756166000734,10,mac,phase-28,without +13,298.35756724728503,0.0,0.0,62.3746397665332,0.0662754580007458,10,mac,phase-28,without +14,290.0624738641291,0.0,0.0,60.640467355966294,0.0644328329981362,10,mac,phase-28,without +15,292.77630024929647,0.0,0.0,61.2078199615177,0.0650356670012115,10,mac,phase-28,without +16,297.2189949149903,0.0,0.0,62.13660980895493,0.0660225419997004,10,mac,phase-28,without +17,294.33335357686957,0.0,0.0,61.533337565447475,0.0653815419973398,10,mac,phase-28,without +18,295.53495085809004,0.0,0.0,61.78454352027568,0.0656484580031246,10,mac,phase-28,without +19,292.72958977705207,0.0,0.0,61.19805466913229,0.0650252910018025,10,mac,phase-28,without +20,295.4385362100208,0.0,0.0,61.76438707176652,0.0656270409999706,10,mac,phase-28,without +21,295.95718184808175,0.0,0.0,61.872815140606896,0.0657422500007669,10,mac,phase-28,without +22,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504,10,mac,phase-28,without +23,297.1503427630479,0.0,0.0,62.12225738851488,0.0660072919999947,10,mac,phase-28,without +24,298.31724030194476,0.0,0.0,62.36620901442696,0.0662665000018023,10,mac,phase-28,without +25,299.6462019297127,0.0,0.0,62.64404176242917,0.0665617080012452,10,mac,phase-28,without +26,273.66342822977543,0.0,0.0,57.212082504209,0.0607900420000078,10,mac,phase-28,without +27,295.93523566460374,0.0,0.0,61.8682270709919,0.065737375000026,10,mac,phase-28,without +28,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278,10,mac,phase-28,without +29,296.78419945940794,0.0,0.0,62.04571146116275,0.065925959002925,10,mac,phase-28,without +0,277.4237413479984,0.0,0.0,58.43349005665485,0.0632725420000497,10,mac,phase-17,without +1,292.6972536911697,0.0,0.0,61.650534954464696,0.0667560000001685,10,mac,phase-17,without +2,291.40709000891684,0.0,0.0,61.37878904572572,0.0664617500005988,10,mac,phase-17,without +3,289.27526607180926,0.0,0.0,60.929765064482325,0.065975541001535,10,mac,phase-17,without +4,293.90739872205074,0.0,0.0,61.90542661328777,0.0670319999990169,10,mac,phase-17,without +5,254.53182670092016,0.0,0.0,53.61178856705561,0.058051541000168,10,mac,phase-17,without +6,290.4961927970452,0.0,0.0,61.18692766099379,0.0662540000012086,10,mac,phase-17,without +7,292.38028776435414,0.0,0.0,61.58377273273529,0.066683708999335,10,mac,phase-17,without +8,289.7393040716505,0.0,0.0,61.02750493244705,0.066081375000067,10,mac,phase-17,without +9,290.32610603159867,0.0,0.0,61.15110245270702,0.0662152080003579,10,mac,phase-17,without +10,291.71309885989376,0.0,0.0,61.44324338933713,0.0665315420010301,10,mac,phase-17,without +11,294.01993782201987,0.0,0.0,61.92913061333867,0.0670576669981528,10,mac,phase-17,without +12,289.9026298051295,0.0,0.0,61.06190607121357,0.0661186249999445,10,mac,phase-17,without +13,288.43671886620615,0.0,0.0,60.75314269048304,0.0657842920008988,10,mac,phase-17,without +14,291.84774065261695,0.0,0.0,61.47160285784574,0.0665622500018798,10,mac,phase-17,without +15,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555,10,mac,phase-17,without +16,308.0001822067488,0.0,0.0,64.87377575176583,0.0702461670007323,10,mac,phase-17,without +17,297.17117303800103,0.0,0.0,62.59287219062579,0.0677763749990845,10,mac,phase-17,without +18,290.83837006338433,0.0,0.0,61.25900012239558,0.0663320409985317,10,mac,phase-17,without +19,297.87343862204426,0.0,0.0,62.74078970057979,0.0679365420000976,10,mac,phase-17,without +20,292.22755518415335,0.0,0.0,61.55160281943542,0.0666488749993732,10,mac,phase-17,without +21,289.24202214867086,0.0,0.0,60.922762929615594,0.0659679589989536,10,mac,phase-17,without +22,290.14122568247194,0.0,0.0,61.11216128642516,0.0661730419997184,10,mac,phase-17,without +23,291.32615497134736,0.0,0.0,61.3617417782854,0.066443290997995,10,mac,phase-17,without +24,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187,10,mac,phase-17,without +25,291.91150125700455,0.0,0.0,61.48503269129974,0.066576791999978,10,mac,phase-17,without +26,294.6469332621997,0.0,0.0,62.06119404684761,0.0672006669992697,10,mac,phase-17,without +27,298.06946458808636,0.0,0.0,62.782078457201386,0.0679812500020489,10,mac,phase-17,without +28,274.1955917727861,0.0,0.0,57.75354808345529,0.0625362920000043,10,mac,phase-17,without +29,288.7392551319019,0.0,0.0,60.81686560686869,0.0658532920024299,10,mac,phase-17,without +0,420.8661640891317,0.3104241498772484,10.623404240243612,71.60450390501863,0.0698542089994589,10,mac,phase-10,without +1,414.7342996681472,0.3059013847740801,10.468625167824074,70.56125275455447,0.0688364589987031,10,mac,phase-10,without +2,408.0288084577771,0.3009555217275851,10.299366743566248,69.42040701182964,0.0677235000002838,10,mac,phase-10,without +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.0672056660005182,10,mac,phase-10,without +4,376.92038266158966,0.2780104445135475,9.514135212241404,64.12774253445829,0.0625602090003667,10,mac,phase-10,without +5,393.8408701476979,0.2904907253998756,9.941238158129076,67.0065273255713,0.0653686250007012,10,mac,phase-10,without +6,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695,10,mac,phase-10,without +7,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465,10,mac,phase-10,without +8,415.36741054416126,0.3063683572281143,10.484606002917692,70.66896773395172,0.0689415410015499,10,mac,phase-10,without +9,413.5893054085112,0.3050568553250778,10.43972349334711,70.3664479616513,0.0686464159989554,10,mac,phase-10,without +10,415.22381858036624,0.3062624460927139,10.480981488506211,70.64453756538603,0.0689177080021181,10,mac,phase-10,without +11,408.53514892789457,0.3013289903582241,10.312147670037003,69.50655377596371,0.0678075409996381,10,mac,phase-10,without +12,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465,10,mac,phase-10,without +13,401.6223100288431,0.2962301909735771,10.137655424429084,68.33043071790512,0.066660167001828,10,mac,phase-10,without +14,406.60442049183155,0.2999049159503756,10.263412679190637,69.17806727921999,0.0674870840011863,10,mac,phase-10,without +15,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.0673156250013562,10,mac,phase-10,without +16,409.57821959330414,0.3020983425946351,10.338476613238624,69.68401769182915,0.0679806670013931,10,mac,phase-10,without +17,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.0697001250009634,10,mac,phase-10,without +18,402.4366746389332,0.2968308532822815,10.158211423438075,68.46898349044626,0.0667953330012096,10,mac,phase-10,without +19,401.3386386128404,0.2960209594751322,10.130495057593414,68.28216798559717,0.0666130839999823,10,mac,phase-10,without +20,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.0668373749977035,10,mac,phase-10,without +21,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.0695724580000387,10,mac,phase-10,without +22,387.29202689790424,0.2856604033831452,9.775933804667638,65.8923330470455,0.0642816660001699,10,mac,phase-10,without +23,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.0681323340031667,10,mac,phase-10,without +24,407.4549346245413,0.3005322415686667,10.284881155905484,69.32277038850579,0.0676282499989611,10,mac,phase-10,without +25,408.27633635683975,0.3011380943461365,10.305614784290006,69.46252042917548,0.0677645840005425,10,mac,phase-10,without +26,417.85495624498935,0.3082031311428376,10.547396043554889,71.09218891694786,0.0693544169989763,10,mac,phase-10,without +27,406.94080393314306,0.3001530269954341,10.271903590510414,69.23529822694681,0.0675429160000931,10,mac,phase-10,without +28,390.6549455763897,0.2881408384025166,9.860819803108344,66.46448672484716,0.0648398339981213,10,mac,phase-10,without +29,401.5595483973625,0.2961838989982185,10.136071210161257,68.31975270225574,0.0666497499987599,10,mac,phase-10,without +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.0674112920023617,10,mac,phase-11,without +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.0708057499978167,10,mac,phase-11,without +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.0681188330017903,10,mac,phase-11,without +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.0692457080003805,10,mac,phase-11,without +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.0679880419993423,10,mac,phase-11,without +5,404.8936371581969,1.612985331957557,11.290897323702897,72.24115156958844,0.070075582996651,10,mac,phase-11,without +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.0647352500018314,10,mac,phase-11,without +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.0662939590001769,10,mac,phase-11,without +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.0675850420011556,10,mac,phase-11,without +9,386.0565356160226,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909,10,mac,phase-11,without +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.0684275000021443,10,mac,phase-11,without +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.0697700000018812,10,mac,phase-11,without +12,398.195304750097,1.586301010616593,11.104107074316149,71.046034624424,0.068916291998903,10,mac,phase-11,without +13,393.1222593641649,1.5660913875331202,10.96263971273184,70.14090150547273,0.0680382919999829,10,mac,phase-11,without +14,400.10034307722657,1.5938901614366543,11.157231130056582,71.38593169838633,0.0692459999991115,10,mac,phase-11,without +15,396.1694089205137,1.5782303966150315,11.047612776305222,70.68457414626897,0.0685656669993477,10,mac,phase-11,without +16,400.56234267245264,1.595730641261678,11.170114488831745,71.46836169906025,0.0693259590007073,10,mac,phase-11,without +17,391.1936238724376,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276,10,mac,phase-11,without +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.0678528750031546,10,mac,phase-11,without +19,390.2371352451378,1.554597843407482,10.882184903852377,69.62613745473936,0.0675389589996484,10,mac,phase-11,without +20,399.1241054106431,1.5900010980081565,11.130007686057096,71.21175130440785,0.0690770410001277,10,mac,phase-11,without +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.0679149580028024,10,mac,phase-11,without +22,388.3292021584939,1.5469971606585198,10.828980124609638,69.28572389757838,0.0672087499988265,10,mac,phase-11,without +23,392.8437098823672,1.5649817227048024,10.954872058933615,70.09120268709806,0.0679900830000406,10,mac,phase-11,without +24,401.12472845982575,1.597971032175946,11.18579722523162,71.5687026112844,0.0694232919995556,10,mac,phase-11,without +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019,10,mac,phase-11,without +26,387.2337999468269,1.5426333783269082,10.798433648288356,69.09028215698174,0.0670191670033091,10,mac,phase-11,without +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.0678187920020718,10,mac,phase-11,without +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.065910666999116,10,mac,phase-11,without +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.0686019579989078,10,mac,phase-11,without +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.0670402079995255,10,mac,phase-29,without +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.0656716659977973,10,mac,phase-29,without +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.0659436669993738,10,mac,phase-29,without +3,298.06491667401536,0.7076724986042197,0.0,63.11764713741445,0.0662419580003188,10,mac,phase-29,without +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.0680570420008734,10,mac,phase-29,without +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566,10,mac,phase-29,without +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484,10,mac,phase-29,without +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987,10,mac,phase-29,without +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.0652717080010916,10,mac,phase-29,without +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.0657346249972761,10,mac,phase-29,without +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.0652146250031364,10,mac,phase-29,without +11,299.57754690862345,0.7112638196812994,0.0,63.43795877443208,0.0665781249990686,10,mac,phase-29,without +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.0657091670000227,10,mac,phase-29,without +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.0662325840021367,10,mac,phase-29,without +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.0625667919994157,10,mac,phase-29,without +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462,10,mac,phase-29,without +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.0657192079997912,10,mac,phase-29,without +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.0652280419999442,10,mac,phase-29,without +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.0655310830006783,10,mac,phase-29,without +19,295.06703650881764,0.7005548633900702,0.0,62.48282186331435,0.0655757090025872,10,mac,phase-29,without +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.0662343750009313,10,mac,phase-29,without +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.0647040420008124,10,mac,phase-29,without +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.0638219169995863,10,mac,phase-29,without +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051,10,mac,phase-29,without +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.0650090830022236,10,mac,phase-29,without +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.0664734580022923,10,mac,phase-29,without +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.0635219579999102,10,mac,phase-29,without +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474,10,mac,phase-29,without +28,296.9865061319233,0.7051121117886252,0.0,62.88928501809976,0.06600229200194,10,mac,phase-29,without +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.0648245409975061,10,mac,phase-29,without +0,294.3279990372017,0.0666126511343672,0.0,61.28363904361788,0.0662047499972686,10,mac,phase-16,without +1,293.0398507223221,0.0663211159267448,0.0,61.01542665260526,0.0659149999992223,10,mac,phase-16,without +2,295.58817487391934,0.0668978555785717,0.0,61.54602713228603,0.0664882079981907,10,mac,phase-16,without +3,295.0835897351759,0.066783657289844,0.0,61.44096470665652,0.0663747090002289,10,mac,phase-16,without +4,294.112381481635,0.0665638523212934,0.0,61.238744135589954,0.0661562500026775,10,mac,phase-16,without +5,294.789060556393,0.0667169991074783,0.0,61.37963917888006,0.0663084589978098,10,mac,phase-16,without +6,294.5386151968499,0.0666603180257666,0.0,61.32749258370531,0.0662521250014833,10,mac,phase-16,without +7,292.0345615545926,0.0660935977265118,0.0,60.806109908390894,0.0656888750017969,10,mac,phase-16,without +8,295.10748548573775,0.0667890654035844,0.0,61.44594017129767,0.066380083997501,10,mac,phase-16,without +9,298.56736520414785,0.0675721093593182,0.0,62.166340610572824,0.0671583330004068,10,mac,phase-16,without +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.0666939999973692,10,mac,phase-16,without +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.0664290829990932,10,mac,phase-16,without +12,294.3600482591372,0.066619904551123,0.0,61.290312187033216,0.0662119589978829,10,mac,phase-16,without +13,292.5965765500129,0.0662207936064304,0.0,60.92313011791601,0.0658152920004795,10,mac,phase-16,without +14,296.05627397750055,0.0670037963058731,0.0,61.64349260140331,0.0665934999997261,10,mac,phase-16,without +15,328.7910592886891,0.0744123705530585,0.0,68.45938090881384,0.0739567080017877,10,mac,phase-16,without +16,277.83269848101855,0.0628794157476561,0.0,57.849062487843625,0.0624943749971862,10,mac,phase-16,without +17,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.0674349580003763,10,mac,phase-16,without +18,295.0785838430391,0.0667825243505803,0.0,61.43992240253389,0.0663735829984943,10,mac,phase-16,without +19,293.1674829950254,0.0663500018094433,0.0,61.042001664687874,0.0659437089998391,10,mac,phase-16,without +20,292.4674638570015,0.0661915726733057,0.0,60.8962468594413,0.0657862500011106,10,mac,phase-16,without +21,294.72663371914854,0.0667028705939003,0.0,61.36664094638829,0.0662944169998809,10,mac,phase-16,without +22,294.5726961110385,0.066668031257449,0.0,61.3345887568531,0.0662597910013573,10,mac,phase-16,without +23,292.5643406218039,0.0662134979340961,0.0,60.91641809936848,0.0658080410030379,10,mac,phase-16,without +24,295.7811948568304,0.0669415400830214,0.0,61.58621687637975,0.0665316250015166,10,mac,phase-16,without +25,298.4484465539857,0.0675451955536914,0.0,62.14157990939614,0.0671315840008901,10,mac,phase-16,without +26,300.4471681677118,0.067997548527263,0.0,62.55774464508201,0.0675811670007533,10,mac,phase-16,without +27,268.4016522482285,0.0607449705212693,0.0,55.88537287956778,0.0603730000002542,10,mac,phase-16,without +28,293.7845093668818,0.0664896479273241,0.0,61.17047609313823,0.0660824999977194,10,mac,phase-16,without +29,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178,10,mac,phase-16,without +0,286.58077105611767,0.0,0.0,60.48994734420278,0.0664554579998366,10,mac,phase-20,without +1,284.29575202691694,0.0,0.0,60.00763766149979,0.0659255829996254,10,mac,phase-20,without +2,286.7606315278459,0.0,0.0,60.52791133747437,0.0664971659971342,10,mac,phase-20,without +3,285.07881009993866,0.0,0.0,60.17292140133334,0.0661071670001547,10,mac,phase-20,without +4,285.97901379987127,0.0,0.0,60.3629316180248,0.0663159159994393,10,mac,phase-20,without +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403,10,mac,phase-20,without +6,287.5501581793354,0.0,0.0,60.69456043050126,0.0666802500018093,10,mac,phase-20,without +7,286.76045473612015,0.0,0.0,60.52787402121571,0.0664971250007511,10,mac,phase-20,without +8,287.0916105357109,0.0,0.0,60.59777262887927,0.0665739169999142,10,mac,phase-20,without +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215,10,mac,phase-20,without +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624,10,mac,phase-20,without +11,287.78823570039054,0.0,0.0,60.74481256939876,0.0667354580000392,10,mac,phase-20,without +12,288.3114732547224,0.0,0.0,60.85525477385442,0.0668567920001805,10,mac,phase-20,without +13,287.04471347517006,0.0,0.0,60.58787384637458,0.0665630420007801,10,mac,phase-20,without +14,284.5945650282986,0.0,0.0,60.070709523065126,0.0659948749998875,10,mac,phase-20,without +15,284.649724611494,0.0,0.0,60.08235231497584,0.066007666002406,10,mac,phase-20,without +16,296.0487686832776,0.0,0.0,62.48840200608166,0.0686509999977715,10,mac,phase-20,without +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049,10,mac,phase-20,without +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078,10,mac,phase-20,without +19,282.8897370651235,0.0,0.0,59.71086348962979,0.0655995409979368,10,mac,phase-20,without +20,286.2961587022398,0.0,0.0,60.429872879903805,0.0663894589997653,10,mac,phase-20,without +21,260.0656021616251,0.0,0.0,54.893266295646235,0.0603068330019596,10,mac,phase-20,without +22,283.4221384206483,0.0,0.0,59.82323994057936,0.0657229999997071,10,mac,phase-20,without +23,271.9089975438187,0.0,0.0,57.39310730174492,0.0630532079994736,10,mac,phase-20,without +24,286.22194706122224,0.0,0.0,60.41420868079884,0.0663722499994037,10,mac,phase-20,without +25,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015,10,mac,phase-20,without +26,288.2345706895805,0.0,0.0,60.83902258877472,0.066838958999142,10,mac,phase-20,without +27,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547,10,mac,phase-20,without +28,286.87814802674137,0.0,0.0,60.55271609602139,0.0665244169977086,10,mac,phase-20,without +29,283.17741121511045,0.0,0.0,59.771584221592626,0.065666250000504,10,mac,phase-20,without +0,294.81448863624877,0.0,0.0,61.91171740072288,0.0671278330009954,10,mac,phase-18,without +1,263.1998512879779,0.0,0.0,55.27257119631946,0.0599293330014916,10,mac,phase-18,without +2,296.9928397015734,0.0,0.0,62.36917611036704,0.0676238330015621,10,mac,phase-18,without +3,291.39142074467475,0.0,0.0,61.19286530859214,0.0663484169999719,10,mac,phase-18,without +4,292.5078607995772,0.0,0.0,61.42732027548915,0.0666026250000868,10,mac,phase-18,without +5,291.9049011262528,0.0,0.0,61.30069736400479,0.0664653339990763,10,mac,phase-18,without +6,291.0495909115414,0.0,0.0,61.1210802612358,0.0662705840004491,10,mac,phase-18,without +7,297.18077517649056,0.0,0.0,62.408642990256375,0.0676666250001289,10,mac,phase-18,without +8,293.1889644158855,0.0,0.0,61.57035359386013,0.0667577089989208,10,mac,phase-18,without +9,290.06599953169535,0.0,0.0,60.91452382017178,0.0660466250010358,10,mac,phase-18,without +10,290.5013403480997,0.0,0.0,61.005946388047946,0.0661457499991229,10,mac,phase-18,without +11,293.391717947307,0.0,0.0,61.612932299531735,0.0668038749972765,10,mac,phase-18,without +12,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234,10,mac,phase-18,without +13,294.85419962422475,0.0,0.0,61.92005679909045,0.0671368750008696,10,mac,phase-18,without +14,288.935650518899,0.0,0.0,60.6771479402815,0.0657892499984882,10,mac,phase-18,without +15,288.040264791619,0.0,0.0,60.489114888146126,0.0655853749995003,10,mac,phase-18,without +16,291.310167374162,0.0,0.0,61.17580191480743,0.0663299160005408,10,mac,phase-18,without +17,291.8930036442997,0.0,0.0,61.29819886556306,0.0664626249999855,10,mac,phase-18,without +18,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544,10,mac,phase-18,without +19,291.953940380838,0.0,0.0,61.31099571971134,0.0664765000001352,10,mac,phase-18,without +20,290.492192146893,0.0,0.0,61.004025244855654,0.0661436669979593,10,mac,phase-18,without +21,291.2743036344979,0.0,0.0,61.16827044739114,0.0663217500004975,10,mac,phase-18,without +22,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666,10,mac,phase-18,without +23,301.8341063464249,0.0,0.0,63.38585318673492,0.0687261659986688,10,mac,phase-18,without +24,293.4286796545365,0.0,0.0,61.62069434264986,0.0668122909992234,10,mac,phase-18,without +25,291.57880285799905,0.0,0.0,61.23221598128041,0.0663910830007807,10,mac,phase-18,without +26,290.63986327224137,0.0,0.0,61.03503651917635,0.066177290998894,10,mac,phase-18,without +27,292.83779754454514,0.0,0.0,61.49660774710921,0.0666777500009629,10,mac,phase-18,without +28,291.7103778938751,0.0,0.0,61.25984703997034,0.0664210420000017,10,mac,phase-18,without +29,292.0681281288885,0.0,0.0,61.33497540816094,0.0665024999980232,10,mac,phase-18,without +0,290.8292506484409,0.0,0.0,60.364491781569754,0.0643369169993093,10,mac,phase-27,without +1,298.573843284156,0.0,0.0,61.97195869718392,0.066050166999048,10,mac,phase-27,without +2,297.01505218375894,0.0,0.0,61.64841616368942,0.0657053329996415,10,mac,phase-27,without +3,294.3421743552695,0.0,0.0,61.09363389419194,0.0651140419977309,10,mac,phase-27,without +4,296.3946304128305,0.0,0.0,61.519641479544646,0.0655680839990964,10,mac,phase-27,without +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186,10,mac,phase-27,without +6,295.0897326586194,0.0,0.0,61.24879702499188,0.0652794159977929,10,mac,phase-27,without +7,296.7668048214944,0.0,0.0,61.59688996463688,0.0656504159996984,10,mac,phase-27,without +8,294.83998000542607,0.0,0.0,61.196958387896395,0.0652241659990977,10,mac,phase-27,without +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097,10,mac,phase-27,without +10,296.16597000453845,0.0,0.0,61.47218074680768,0.0655175000028975,10,mac,phase-27,without +11,296.4579116370621,0.0,0.0,61.532776124466146,0.0655820829997537,10,mac,phase-27,without +12,291.6238980614277,0.0,0.0,60.52942872351605,0.0645127079988014,10,mac,phase-27,without +13,293.1612172147117,0.0,0.0,60.84851454169682,0.0648527919984189,10,mac,phase-27,without +14,300.82349771584455,0.0,0.0,62.43889675843551,0.0665478330010955,10,mac,phase-27,without +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836,10,mac,phase-27,without +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348,10,mac,phase-27,without +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185,10,mac,phase-27,without +18,296.53155816102924,0.0,0.0,61.54806219002126,0.0655983750002633,10,mac,phase-27,without +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737,10,mac,phase-27,without +20,295.3240436061412,0.0,0.0,61.29743058311739,0.0653312499998719,10,mac,phase-27,without +21,296.04222377263164,0.0,0.0,61.44649599060698,0.0654901250018156,10,mac,phase-27,without +22,295.47999775871773,0.0,0.0,61.3298004122887,0.0653657500006374,10,mac,phase-27,without +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412,10,mac,phase-27,without +24,296.91447306566766,0.0,0.0,61.627539971443,0.065683083001204,10,mac,phase-27,without +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114,10,mac,phase-27,without +26,294.6706544772291,0.0,0.0,61.1618131972649,0.0651867079977819,10,mac,phase-27,without +27,297.56861257061263,0.0,0.0,61.763313105273966,0.065827791000629,10,mac,phase-27,without +28,295.9380689842249,0.0,0.0,61.42487763256778,0.0654670839976461,10,mac,phase-27,without +29,299.8657403365678,0.0,0.0,62.240104727299766,0.0663359589998435,10,mac,phase-27,without +0,383.74185203632027,0.0,0.0,62.59426372619671,0.0645047500001965,10,mac,phase-5,without +1,364.4592504386134,0.0,0.0,59.44897153737439,0.0612634579993027,10,mac,phase-5,without +2,367.0024684410071,0.0,0.0,59.86380994374133,0.0616909579985076,10,mac,phase-5,without +3,363.22606038870725,0.0,0.0,59.247819062608514,0.0610561659996164,10,mac,phase-5,without +4,364.2802852301499,0.0,0.0,59.41977952874429,0.0612333749995741,10,mac,phase-5,without +5,373.0382773407889,0.0,0.0,60.84834423956817,0.0627055420009128,10,mac,phase-5,without +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924,10,mac,phase-5,without +7,362.2655390037368,0.0,0.0,59.091143087427675,0.0608947079999779,10,mac,phase-5,without +8,363.1591395605432,0.0,0.0,59.23690323483354,0.0610449170017091,10,mac,phase-5,without +9,363.29274327911173,0.0,0.0,59.258696079034664,0.0610673750015848,10,mac,phase-5,without +10,385.39643100578286,0.0,0.0,62.86415128685964,0.0647828750006738,10,mac,phase-5,without +11,389.0226196484065,0.0,0.0,63.45563904617717,0.0653924159996677,10,mac,phase-5,without +12,370.3688919214851,0.0,0.0,60.41292596544427,0.0622568340004363,10,mac,phase-5,without +13,361.7680498665672,0.0,0.0,59.009994872585665,0.0608110829998622,10,mac,phase-5,without +14,361.96288119943176,0.0,0.0,59.0417748928434,0.0608438330018543,10,mac,phase-5,without +15,366.6343711085224,0.0,0.0,59.80376754444557,0.0616290830002981,10,mac,phase-5,without +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306,10,mac,phase-5,without +17,377.4274313949519,0.0,0.0,61.56428352256089,0.0634433330014871,10,mac,phase-5,without +18,377.1091573073862,0.0,0.0,61.51236806932433,0.0633898329979274,10,mac,phase-5,without +19,381.72165648548935,0.0,0.0,62.264738415323826,0.0641651670011924,10,mac,phase-5,without +20,368.2465631130819,0.0,0.0,60.06674113196323,0.0619000830010918,10,mac,phase-5,without +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972,10,mac,phase-5,without +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232,10,mac,phase-5,without +23,392.46761814592367,0.0,0.0,64.01757187509762,0.0659715000001597,10,mac,phase-5,without +24,412.7283443458175,0.0,0.0,67.32241139758052,0.0693772089980484,10,mac,phase-5,without +25,410.7339260421147,0.0,0.0,66.99709075658224,0.0690419590027886,10,mac,phase-5,without +26,401.0741534363522,0.0,0.0,65.42143162320484,0.0674182080001628,10,mac,phase-5,without +27,375.99669130166257,0.0,0.0,61.3309075635724,0.063202834000549,10,mac,phase-5,without +28,391.0668672136462,0.0,0.0,63.78908761463861,0.0657360420009354,10,mac,phase-5,without +29,388.5424838873128,0.0,0.0,63.37732143683954,0.0653117080000811,10,mac,phase-5,without +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991,10,mac,phase-2,without +1,318.08177249086094,0.0,0.0,62.64785256127891,0.0671876249980414,10,mac,phase-2,without +2,310.1933592166472,0.0,0.0,61.0941887097623,0.0655213749996619,10,mac,phase-2,without +3,315.03036618576886,0.0,0.0,62.04686228507105,0.0665430840017506,10,mac,phase-2,without +4,280.5797515507548,0.0,0.0,55.26163529957376,0.0592661659975419,10,mac,phase-2,without +5,311.7761737775847,0.0,0.0,61.40593223555111,0.0658557089991518,10,mac,phase-2,without +6,315.1471407328176,0.0,0.0,62.0698616369331,0.0665677500001038,10,mac,phase-2,without +7,312.72657075974973,0.0,0.0,61.59311784366412,0.0660564589998102,10,mac,phase-2,without +8,318.0087848553162,0.0,0.0,62.63347726842702,0.0671722080005565,10,mac,phase-2,without +9,314.2111452727458,0.0,0.0,61.88551248318745,0.0663700419972883,10,mac,phase-2,without +10,315.1433912094317,0.0,0.0,62.069123148882,0.0665669579975656,10,mac,phase-2,without +11,321.5192175326141,0.0,0.0,63.324875166116904,0.0679137080005602,10,mac,phase-2,without +12,314.53405774919537,0.0,0.0,61.94911176791349,0.0664382499999192,10,mac,phase-2,without +13,316.86685034021673,0.0,0.0,62.40856735115521,0.0669310000012046,10,mac,phase-2,without +14,313.09228540351353,0.0,0.0,61.665147236931766,0.0661337079982331,10,mac,phase-2,without +15,289.9330212891863,0.0,0.0,57.10381021877937,0.0612418339987925,10,mac,phase-2,without +16,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857,10,mac,phase-2,without +17,320.05180460179605,0.0,0.0,63.03586058909003,0.0676037500015809,10,mac,phase-2,without +18,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105,10,mac,phase-2,without +19,308.3140681413278,0.0,0.0,60.7240525988988,0.0651244170003337,10,mac,phase-2,without +20,318.47412193661944,0.0,0.0,62.7251278167514,0.0672704999997222,10,mac,phase-2,without +21,314.1099463592385,0.0,0.0,61.86558083302366,0.0663486660014314,10,mac,phase-2,without +22,313.33807251384695,0.0,0.0,61.71355628133896,0.0661856250007986,10,mac,phase-2,without +23,319.77228609333065,0.0,0.0,62.98080797111271,0.0675447079993318,10,mac,phase-2,without +24,319.76577652708306,0.0,0.0,62.97952587832467,0.0675433329997758,10,mac,phase-2,without +25,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282,10,mac,phase-2,without +26,316.8561983070633,0.0,0.0,62.40646937805463,0.0669287499986239,10,mac,phase-2,without +27,316.30781807684326,0.0,0.0,62.29846305143831,0.0668129170007887,10,mac,phase-2,without +28,298.70140513017805,0.0,0.0,58.83078883113269,0.063093958000536,10,mac,phase-2,without +29,314.0071803907631,0.0,0.0,61.84534054326751,0.0663269590004347,10,mac,phase-2,without +0,306.0668998752621,0.0,0.0,63.04902793670779,0.068127957998513,10,mac,phase-3,without +1,300.7286555299586,0.0,0.0,61.9493627426042,0.0669397090023267,10,mac,phase-3,without +2,300.4778195906402,0.0,0.0,61.89769115658147,0.0668838749988935,10,mac,phase-3,without +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118,10,mac,phase-3,without +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179,10,mac,phase-3,without +5,297.42271046689245,0.0,0.0,61.26834619777878,0.0662038330010545,10,mac,phase-3,without +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164,10,mac,phase-3,without +7,297.3940705820903,0.0,0.0,61.262446452011666,0.0661974579998059,10,mac,phase-3,without +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933,10,mac,phase-3,without +9,297.44798094483,0.0,0.0,61.273551854026195,0.0662094580002303,10,mac,phase-3,without +10,298.42342154358175,0.0,0.0,61.47449021615016,0.0664265830018848,10,mac,phase-3,without +11,300.40818538367824,0.0,0.0,61.88334668136418,0.0668683750009222,10,mac,phase-3,without +12,287.1913505952546,0.0,0.0,59.16071125051626,0.0639264169985835,10,mac,phase-3,without +13,300.26405153963907,0.0,0.0,61.85365546430296,0.0668362920005165,10,mac,phase-3,without +14,299.59316404372277,0.0,0.0,61.71545429165196,0.0666869579981721,10,mac,phase-3,without +15,298.97750323449446,0.0,0.0,61.58862968050848,0.0665499169990653,10,mac,phase-3,without +16,296.72543384649464,0.0,0.0,61.12470893044608,0.0660486249980749,10,mac,phase-3,without +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845,10,mac,phase-3,without +18,299.21560732706087,0.0,0.0,61.637678537441985,0.0666029169988178,10,mac,phase-3,without +19,299.2517362517928,0.0,0.0,61.645121006999055,0.0666109589983534,10,mac,phase-3,without +20,299.28430709765047,0.0,0.0,61.651830521066856,0.0666182089989888,10,mac,phase-3,without +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801,10,mac,phase-3,without +22,299.9649209102408,0.0,0.0,61.79203529100965,0.0667697079989011,10,mac,phase-3,without +23,277.6619440694328,0.0,0.0,57.19767696451,0.0618052499994519,10,mac,phase-3,without +24,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303,10,mac,phase-3,without +25,294.287490544277,0.0,0.0,60.622498611616194,0.0655059590026212,10,mac,phase-3,without +26,297.6716730062533,0.0,0.0,61.31963186802196,0.0662592500011669,10,mac,phase-3,without +27,300.53416490752846,0.0,0.0,61.90929815315653,0.0668964169999526,10,mac,phase-3,without +28,298.0200327621039,0.0,0.0,61.39139312017827,0.0663367919987649,10,mac,phase-3,without +29,302.28587426265807,0.0,0.0,62.27014596817204,0.0672863330000836,10,mac,phase-3,without +0,293.67115678659405,0.0,0.0,62.04987345007068,0.0673019999994721,10,mac,phase-4,without +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785,10,mac,phase-4,without +2,285.0587315110757,0.0,0.0,60.2301513354047,0.0653282499988563,10,mac,phase-4,without +3,286.6679492796594,0.0,0.0,60.57016347683127,0.0656970420022844,10,mac,phase-4,without +4,286.0261550443838,0.0,0.0,60.43455856582949,0.0655499589993269,10,mac,phase-4,without +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652,10,mac,phase-4,without +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397,10,mac,phase-4,without +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792,10,mac,phase-4,without +8,287.5655527060979,0.0,0.0,60.75981839435294,0.0659027500005322,10,mac,phase-4,without +9,293.549524682601,0.0,0.0,62.024173763581814,0.0672741249982209,10,mac,phase-4,without +10,289.02568331421605,0.0,0.0,61.0683298615521,0.0662373749983089,10,mac,phase-4,without +11,288.31625511165714,0.0,0.0,60.91843454778562,0.066074792001018,10,mac,phase-4,without +12,290.2920010978938,0.0,0.0,61.33589055455497,0.0665275829996971,10,mac,phase-4,without +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743,10,mac,phase-4,without +14,287.41810186435026,0.0,0.0,60.72866345843529,0.0658689579977362,10,mac,phase-4,without +15,292.14320891111277,0.0,0.0,61.72703285057382,0.0669518329996208,10,mac,phase-4,without +16,292.1922981075429,0.0,0.0,61.737404922722774,0.0669630830016103,10,mac,phase-4,without +17,288.63587590704464,0.0,0.0,60.985967328746526,0.0661480410017247,10,mac,phase-4,without +18,295.0554718814619,0.0,0.0,62.34236583301857,0.0676192499995522,10,mac,phase-4,without +19,264.9125288646573,0.0,0.0,55.97345367946792,0.0607112500001676,10,mac,phase-4,without +20,293.5444325057386,0.0,0.0,62.02309783588993,0.0672729580001032,10,mac,phase-4,without +21,287.13229806847863,0.0,0.0,60.66827588221081,0.0658034589978342,10,mac,phase-4,without +22,287.2797445448048,0.0,0.0,60.69942989575715,0.065837250000186,10,mac,phase-4,without +23,288.50715313623,0.0,0.0,60.95876945297762,0.0661185409990139,10,mac,phase-4,without +24,290.43508843893454,0.0,0.0,61.36612352500068,0.0665603749985166,10,mac,phase-4,without +25,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395,10,mac,phase-4,without +26,291.1197931641799,0.0,0.0,61.51079500727027,0.0667172920002485,10,mac,phase-4,without +27,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767,10,mac,phase-4,without +28,295.1683770157897,0.0,0.0,62.36622159527169,0.0676451250001264,10,mac,phase-4,without +29,292.2999321462241,0.0,0.0,61.76014695347638,0.0669877500004076,10,mac,phase-4,without +0,307.3038765802161,0.0341752531784048,0.0,65.54813559618044,0.0683769580027728,10,mac,phase-22,without +1,306.5168191461492,0.0340877245491713,0.0,65.38025568531074,0.068201832997147,10,mac,phase-22,without +2,302.24090759958057,0.0336122005782451,0.0,64.46820070907424,0.0672504169997409,10,mac,phase-22,without +3,303.4871256541917,0.033750792443749,0.0,64.73401990711072,0.0675277080008527,10,mac,phase-22,without +4,304.6267982623654,0.0338775353939463,0.0,64.97711288558907,0.0677812920002907,10,mac,phase-22,without +5,302.72534844932665,0.0336660752279055,0.0,64.57153228712284,0.0673582079980406,10,mac,phase-22,without +6,299.83123330715557,0.0333442207859381,0.0,63.954215467429314,0.0667142499987676,10,mac,phase-22,without +7,303.47121147155804,0.0337490226280647,0.0,64.73062540062816,0.0675241669996467,10,mac,phase-22,without +8,268.726454855754,0.0298850594812893,0.0,57.31954408511301,0.05979324999862,10,mac,phase-22,without +9,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.0687065410020295,10,mac,phase-22,without +10,323.66148900094566,0.0359943826735927,0.0,69.03722596795083,0.0720166249993781,10,mac,phase-22,without +11,300.6248433571947,0.0334324781313606,0.0,64.12349305594968,0.066890833000798,10,mac,phase-22,without +12,299.8791735922619,0.0333495522233387,0.0,63.96444116436369,0.0667249170001014,10,mac,phase-22,without +13,304.57567604979374,0.0338718500945055,0.0,64.9662084812616,0.0677699170009873,10,mac,phase-22,without +14,297.66087840557225,0.0331028556945698,0.0,63.491277222185005,0.0662313329994503,10,mac,phase-22,without +15,298.37977587069827,0.0331828042560829,0.0,63.64461856316718,0.0663912920026632,10,mac,phase-22,without +16,301.49691869899425,0.0335294615990874,0.0,64.3095073470497,0.0670848750014556,10,mac,phase-22,without +17,299.4083997940281,0.0332971974859906,0.0,63.86402477813011,0.0666201670028385,10,mac,phase-22,without +18,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.0666383749994565,10,mac,phase-22,without +19,295.95793110997283,0.0329134709864293,0.0,63.128037351971514,0.0658524169994052,10,mac,phase-22,without +20,295.3365950794061,0.0328443722285816,0.0,62.995505934419576,0.0657141660012712,10,mac,phase-22,without +21,299.7063333060147,0.033330330661256,0.0,63.927574208289165,0.066686458998447,10,mac,phase-22,without +22,270.8829494812265,0.0301248831718445,0.0,57.77952592359791,0.0602730830032669,10,mac,phase-22,without +23,301.37520062531866,0.0335159253364455,0.0,64.28354479530263,0.0670577919991046,10,mac,phase-22,without +24,296.03002353793846,0.0329214883827778,0.0,63.14341471816793,0.065868457997567,10,mac,phase-22,without +25,297.14348113691625,0.0330453159627353,0.0,63.3809160165264,0.0661162090000289,10,mac,phase-22,without +26,303.5991091517296,0.033763246124525,0.0,64.75790606683913,0.0675526250015536,10,mac,phase-22,without +27,302.87515563749326,0.0336827352799703,0.0,64.60348626698311,0.0673915409970504,10,mac,phase-22,without +28,305.92283069102797,0.0340216671142157,0.0,65.2535575250658,0.068069666998781,10,mac,phase-22,without +29,290.278120361013,0.032281819435166,0.0,61.91652967664846,0.0645886249985778,10,mac,phase-22,without +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463,10,mac,phase-25,without +1,295.9081762405739,0.0,0.0,60.860775024151074,0.0636946249978791,10,mac,phase-25,without +2,308.44623652276385,0.0,0.0,63.439534677798584,0.0663934590011194,10,mac,phase-25,without +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023,10,mac,phase-25,without +4,280.77218532111357,0.0,0.0,57.74768720812555,0.0604365830004098,10,mac,phase-25,without +5,312.04164307210647,0.0,0.0,64.179018229419,0.067167375000281,10,mac,phase-25,without +6,301.9526595528672,0.0,0.0,62.10397128753395,0.0649957079986052,10,mac,phase-25,without +7,311.28555013052846,0.0,0.0,64.02350916914445,0.067004624997935,10,mac,phase-25,without +8,313.4765936255198,0.0,0.0,64.47415100983623,0.0674762499984353,10,mac,phase-25,without +9,311.56042418797625,0.0,0.0,64.0800437616753,0.0670637920011358,10,mac,phase-25,without +10,309.8811870761772,0.0,0.0,63.73466745821582,0.0667023339992738,10,mac,phase-25,without +11,318.13877646307776,0.0,0.0,65.43304327298002,0.0684797909998451,10,mac,phase-25,without +12,308.99326684329253,0.0,0.0,63.55204488178166,0.0665112079987011,10,mac,phase-25,without +13,310.2603949888832,0.0,0.0,63.8126608673733,0.0667839590023504,10,mac,phase-25,without +14,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439,10,mac,phase-25,without +15,285.62465270443886,0.0,0.0,58.74571615575587,0.0614810830011265,10,mac,phase-25,without +16,298.20878469344336,0.0,0.0,61.3339515860414,0.0641898339999897,10,mac,phase-25,without +17,295.5945893229462,0.0,0.0,60.79627818230397,0.0636271250004938,10,mac,phase-25,without +18,310.5683652227515,0.0,0.0,63.87600250042894,0.0668502500011527,10,mac,phase-25,without +19,309.63263576797266,0.0,0.0,63.68354678475968,0.0666488330025458,10,mac,phase-25,without +20,299.539786989639,0.0,0.0,61.60770485752767,0.0644763339987548,10,mac,phase-25,without +21,309.8449875242504,0.0,0.0,63.727222132392846,0.0666945419980038,10,mac,phase-25,without +22,307.9365578666852,0.0,0.0,63.334706759840024,0.0662837499985471,10,mac,phase-25,without +23,309.15257829195724,0.0,0.0,63.584811189083936,0.0665454999980283,10,mac,phase-25,without +24,309.6756087808788,0.0,0.0,63.69238523898497,0.0666580830002203,10,mac,phase-25,without +25,311.4467942171909,0.0,0.0,64.05667297085827,0.0670393330001388,10,mac,phase-25,without +26,320.30833809941186,0.0,0.0,65.87926684249236,0.0689467920019524,10,mac,phase-25,without +27,301.0930039690129,0.0,0.0,61.92716202950021,0.0648106660009943,10,mac,phase-25,without +28,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098,10,mac,phase-25,without +29,307.7433743808223,0.0,0.0,63.29497383721228,0.0662421669985633,10,mac,phase-25,without +0,402.8566838230884,0.0,0.0,64.17794938679597,0.0643441669999447,10,mac,phase-13,without +1,406.5856091369493,0.0,0.0,64.77199384396874,0.0649397500019404,10,mac,phase-13,without +2,419.6410268736935,0.0,0.0,66.85181521066646,0.0670249579998198,10,mac,phase-13,without +3,416.5238481001115,0.0,0.0,66.35522635017634,0.0665270829995279,10,mac,phase-13,without +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256,10,mac,phase-13,without +5,408.52624583201094,0.0,0.0,65.08115114132792,0.0652497080009197,10,mac,phase-13,without +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631,10,mac,phase-13,without +7,398.433567589202,0.0,0.0,63.47331535392751,0.0636377080008969,10,mac,phase-13,without +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156,10,mac,phase-13,without +9,399.1061018410703,0.0,0.0,63.58045486758207,0.0637451250004232,10,mac,phase-13,without +10,407.1626636492206,0.0,0.0,64.8639227526082,0.065031917001761,10,mac,phase-13,without +11,403.12407719483,0.0,0.0,64.22054706226494,0.0643868750012188,10,mac,phase-13,without +12,405.14375858076954,0.0,0.0,64.54229674389913,0.0647094579981057,10,mac,phase-13,without +13,411.2615056472048,0.0,0.0,65.51689758175769,0.0656865830023889,10,mac,phase-13,without +14,387.70201403694654,0.0,0.0,61.76370216299734,0.0619236669990641,10,mac,phase-13,without +15,407.9614565575172,0.0,0.0,64.99117617273937,0.065159500001755,10,mac,phase-13,without +16,401.69709645656513,0.0,0.0,63.99321883047987,0.0641589580009167,10,mac,phase-13,without +17,395.9197957340157,0.0,0.0,63.0728535287417,0.0632362090000242,10,mac,phase-13,without +18,418.61084115270194,0.0,0.0,66.68769926145752,0.0668604169986792,10,mac,phase-13,without +19,431.31721002849616,0.0,0.0,68.71191464957502,0.0688898750013322,10,mac,phase-13,without +20,431.41112451451176,0.0,0.0,68.72687589850602,0.0689048749991343,10,mac,phase-13,without +21,433.23750482741,0.0,0.0,69.01783133747224,0.0691965839978365,10,mac,phase-13,without +22,422.7931668797661,0.0,0.0,67.35397364539821,0.0675284169992664,10,mac,phase-13,without +23,418.71727759903746,0.0,0.0,66.70465534817552,0.0668774170007964,10,mac,phase-13,without +24,414.85347853863453,0.0,0.0,66.08912453908962,0.0662602919983328,10,mac,phase-13,without +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213,10,mac,phase-13,without +26,419.92251367752954,0.0,0.0,66.89665807060912,0.0670699170004809,10,mac,phase-13,without +27,411.78142883652066,0.0,0.0,65.5997250622708,0.0657696250018489,10,mac,phase-13,without +28,414.074507863208,0.0,0.0,65.96502894234565,0.0661358750003273,10,mac,phase-13,without +29,411.9209982982526,0.0,0.0,65.62195947517905,0.0657919170007517,10,mac,phase-13,without +0,277.0817190299852,0.0640133346494132,0.0,58.60420787153782,0.0635513330016692,10,mac,phase-14,without +1,288.5771340743512,0.0666690849195682,0.0,61.03554724386474,0.0661879159997624,10,mac,phase-14,without +2,284.2115382937321,0.0656605147958258,0.0,60.112201295578544,0.0651866250009334,10,mac,phase-14,without +3,297.3390372598521,0.0686933203788499,0.0,62.88873480683714,0.068197542001144,10,mac,phase-14,without +4,291.41856385470135,0.0673255316748761,0.0,61.636524248349104,0.0668396250002842,10,mac,phase-14,without +5,291.05396160811534,0.0672412987427781,0.0,61.55940899901342,0.0667560000001685,10,mac,phase-14,without +6,289.502541450472,0.0668828789304544,0.0,61.23127566083103,0.0664001670011202,10,mac,phase-14,without +7,289.43169196955876,0.0668665107934755,0.0,61.21629063142683,0.066383916997438,10,mac,phase-14,without +8,290.80853034409404,0.0671845975150962,0.0,61.507499025070594,0.0666997080006694,10,mac,phase-14,without +9,287.9576568837414,0.0665259690155345,0.0,60.90452463372189,0.0660458330021356,10,mac,phase-14,without +10,289.9919433911143,0.0669959439508176,0.0,61.33478668697358,0.0665124160004779,10,mac,phase-14,without +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527,10,mac,phase-14,without +12,291.42765003308125,0.067327630826633,0.0,61.63844602178257,0.066841709001892,10,mac,phase-14,without +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.0670270000009622,10,mac,phase-14,without +14,300.5995644999648,0.0694465899272183,0.0,63.57835307836844,0.0689453749982931,10,mac,phase-14,without +15,266.9962083179432,0.0616833102270863,0.0,56.471070512897555,0.0612381249993632,10,mac,phase-14,without +16,291.6814349928997,0.0673862619828808,0.0,61.69212284532741,0.0668999170011375,10,mac,phase-14,without +17,286.80898867365397,0.0662605957430181,0.0,60.66157540273309,0.0657823750007082,10,mac,phase-14,without +18,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.0661455829977057,10,mac,phase-14,without +19,288.819116611153,0.0667249893984412,0.0,61.086727794272974,0.0662434170008055,10,mac,phase-14,without +20,289.1462928838217,0.0668005759232578,0.0,61.15592725774257,0.066318457997113,10,mac,phase-14,without +21,289.21804924415596,0.0668171535737913,0.0,61.171104096806005,0.0663349160022335,10,mac,phase-14,without +22,286.12120386579073,0.0661016989409242,0.0,60.51610538041618,0.0656246250000549,10,mac,phase-14,without +23,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.0658500409990665,10,mac,phase-14,without +24,293.57075258583023,0.0678227451971422,0.0,62.09172322798373,0.0673332499973184,10,mac,phase-14,without +25,290.89918277237905,0.0672055406659071,0.0,61.52667247963799,0.0667204999990644,10,mac,phase-14,without +26,268.12761977449935,0.0619446967250778,0.0,56.71036985180875,0.0614976249999017,10,mac,phase-14,without +27,293.55167774327595,0.0678183383951197,0.0,62.08768880073215,0.0673288750003848,10,mac,phase-14,without +28,292.7548937535296,0.0676342598483376,0.0,61.91916489115313,0.0671461249985441,10,mac,phase-14,without +29,291.560990905484,0.067358436156979,0.0,61.66664830171436,0.0668722920017899,10,mac,phase-14,without +0,304.0021500506418,0.0,0.0,61.69661938658387,0.0663851249992149,10,mac,phase-15,without +1,305.42786409538843,0.0,0.0,61.9859651585075,0.0666964589981944,10,mac,phase-15,without +2,290.13486062560406,0.0,0.0,58.882281141154934,0.0633569170022383,10,mac,phase-15,without +3,303.37572867394005,0.0,0.0,61.56948843949174,0.0662483330015675,10,mac,phase-15,without +4,308.55938487552186,0.0,0.0,62.621500945477706,0.0673802909986989,10,mac,phase-15,without +5,272.2552769884333,0.0,0.0,55.253655928243255,0.0594525420019635,10,mac,phase-15,without +6,304.0319159755279,0.0,0.0,61.70266032063018,0.0663916250014153,10,mac,phase-15,without +7,301.5311990280158,0.0,0.0,61.195144891286894,0.0658455419979873,10,mac,phase-15,without +8,303.576648579458,0.0,0.0,61.61026472655373,0.0662922079973213,10,mac,phase-15,without +9,304.6514683093002,0.0,0.0,61.82839720940037,0.0665269170021929,10,mac,phase-15,without +10,305.5965360870756,0.0,0.0,62.020196796904024,0.0667332919983891,10,mac,phase-15,without +11,305.52402631491094,0.0,0.0,62.00548108580032,0.0667174579975835,10,mac,phase-15,without +12,300.96240445270587,0.0,0.0,61.079709186584786,0.0657213339982263,10,mac,phase-15,without +13,320.16981350821686,0.0,0.0,64.97781387335388,0.0699156670016236,10,mac,phase-15,without +14,301.8660655871914,0.0,0.0,61.26310537986669,0.0659186670018243,10,mac,phase-15,without +15,287.22066306535396,0.0,0.0,58.29085066060698,0.0627205419987149,10,mac,phase-15,without +16,292.31368435492743,0.0,0.0,59.324468995142574,0.0638327079977898,10,mac,phase-15,without +17,309.2938015925228,0.0,0.0,62.77054932770923,0.0675406660011503,10,mac,phase-15,without +18,303.66251638073777,0.0,0.0,61.6276914225565,0.0663109589986561,10,mac,phase-15,without +19,306.26130972564454,0.0,0.0,62.155111257706984,0.0668784590016002,10,mac,phase-15,without +20,305.7980284517102,0.0,0.0,62.061089263381945,0.0667772920023708,10,mac,phase-15,without +21,303.91189522869655,0.0,0.0,61.678302353640426,0.0663654160016449,10,mac,phase-15,without +22,304.868796110589,0.0,0.0,61.87250344560959,0.0665743749996181,10,mac,phase-15,without +23,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686,10,mac,phase-15,without +24,300.68706516189695,0.0,0.0,61.02382963631062,0.065661207998346,10,mac,phase-15,without +25,307.1498955536229,0.0,0.0,62.33544794812829,0.0670725000018137,10,mac,phase-15,without +26,305.11646226256136,0.0,0.0,61.92276678851894,0.0666284580001956,10,mac,phase-15,without +27,314.2194880610785,0.0,0.0,63.77020739992188,0.0686162909987615,10,mac,phase-15,without +28,310.6552121120229,0.0,0.0,63.04684482968675,0.067837958002201,10,mac,phase-15,without +29,300.9196606054273,0.0,0.0,61.07103440952738,0.0657119999996211,10,mac,phase-15,without +0,294.47160668958014,0.0,0.0,62.234392802682095,0.067439792001096,10,mac,phase-12,without +1,258.53801295899865,0.0,0.0,54.64009394249207,0.0592102920018078,10,mac,phase-12,without +2,287.84062620984656,0.0,0.0,60.832984196664334,0.0659211669990327,10,mac,phase-12,without +3,284.1358833944333,0.0,0.0,60.0500142451661,0.0650727079992066,10,mac,phase-12,without +4,289.6685259247307,0.0,0.0,61.219297261407206,0.0663397919997805,10,mac,phase-12,without +5,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185,10,mac,phase-12,without +6,288.79942156630415,0.0,0.0,61.035618493063815,0.0661407500010682,10,mac,phase-12,without +7,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289,10,mac,phase-12,without +8,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556,10,mac,phase-12,without +9,286.70698999914885,0.0,0.0,60.59339858083863,0.0656615420011803,10,mac,phase-12,without +10,286.97661747524285,0.0,0.0,60.65038235067053,0.065723291998438,10,mac,phase-12,without +11,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184,10,mac,phase-12,without +12,294.88587239836045,0.0,0.0,62.321944791597936,0.0675346669995633,10,mac,phase-12,without +13,293.9449008440537,0.0,0.0,62.123077423754864,0.0673191659989242,10,mac,phase-12,without +14,290.6658900109148,0.0,0.0,61.43008277314009,0.0665682079998077,10,mac,phase-12,without +15,290.4495723431128,0.0,0.0,61.38436563640324,0.066518666997581,10,mac,phase-12,without +16,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483,10,mac,phase-12,without +17,288.1284442887526,0.0,0.0,60.89381241565535,0.0659870830022555,10,mac,phase-12,without +18,289.94870708075484,0.0,0.0,61.27851147331694,0.0664039589973981,10,mac,phase-12,without +19,291.0404953723931,0.0,0.0,61.509252841434005,0.0666539999983797,10,mac,phase-12,without +20,291.41564654265915,0.0,0.0,61.588538262372175,0.0667399169979034,10,mac,phase-12,without +21,287.7964160316246,0.0,0.0,60.823640702979915,0.0659110419983335,10,mac,phase-12,without +22,288.7233713242801,0.0,0.0,61.01954583774717,0.0661233329992683,10,mac,phase-12,without +23,288.51996957968584,0.0,0.0,60.97655838570675,0.0660767499975918,10,mac,phase-12,without +24,262.07373536090887,0.0,0.0,55.387342681599485,0.0600200420012697,10,mac,phase-12,without +25,291.0746976794727,0.0,0.0,61.51648124568486,0.0666618329996708,10,mac,phase-12,without +26,294.25819707384346,0.0,0.0,62.18929026120812,0.0673909170000115,10,mac,phase-12,without +27,289.8793855364252,0.0,0.0,61.26386087841579,0.0663880829997651,10,mac,phase-12,without +28,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384,10,mac,phase-12,without +29,294.18505925226117,0.0,0.0,62.17383312437835,0.067374166999798,10,mac,phase-12,without +0,314.6829641824899,0.0,0.0,64.05854106490267,0.0667974999996658,10,mac,phase-24,without +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907,10,mac,phase-24,without +2,310.02771031968734,0.0,0.0,63.11089278177239,0.0658093330021074,10,mac,phase-24,without +3,314.78759077177864,0.0,0.0,64.07983941095024,0.0668197090017201,10,mac,phase-24,without +4,311.8347742078282,0.0,0.0,63.47874833628613,0.0661929170018993,10,mac,phase-24,without +5,311.64849188371505,0.0,0.0,63.44082771373234,0.0661533750026137,10,mac,phase-24,without +6,315.306780557249,0.0,0.0,64.18552845032812,0.0669299170003796,10,mac,phase-24,without +7,314.38931348373785,0.0,0.0,63.99876396386509,0.0667351670017524,10,mac,phase-24,without +8,312.3494508567321,0.0,0.0,63.58351865753504,0.0663021670006855,10,mac,phase-24,without +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392,10,mac,phase-24,without +10,314.334543400109,0.0,0.0,63.98761467378393,0.0667235410001012,10,mac,phase-24,without +11,318.13946192397856,0.0,0.0,64.76216416407206,0.0675312079983996,10,mac,phase-24,without +12,313.69208088661816,0.0,0.0,63.856831580997095,0.0665871659984986,10,mac,phase-24,without +13,285.36582773445474,0.0,0.0,58.09058854500483,0.0605743749983958,10,mac,phase-24,without +14,311.3874224274277,0.0,0.0,63.387683024029094,0.0660979579988634,10,mac,phase-24,without +15,303.1555450520987,0.0,0.0,61.71195819965332,0.0643505840016587,10,mac,phase-24,without +16,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163,10,mac,phase-24,without +17,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255,10,mac,phase-24,without +18,314.2731072568001,0.0,0.0,63.97510840507234,0.0667104999993171,10,mac,phase-24,without +19,317.19392672743055,0.0,0.0,64.56968598091483,0.0673305000018444,10,mac,phase-24,without +20,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844,10,mac,phase-24,without +21,317.1024579588047,0.0,0.0,64.5510661109565,0.0673110839998116,10,mac,phase-24,without +22,319.67701426612115,0.0,0.0,65.07515651211497,0.0678575829988403,10,mac,phase-24,without +23,322.2403866640997,0.0,0.0,65.59697025709202,0.0684017079984187,10,mac,phase-24,without +24,297.71060994609485,0.0,0.0,60.60355819462029,0.0631947920010134,10,mac,phase-24,without +25,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223,10,mac,phase-24,without +26,323.27052670543793,0.0,0.0,65.80667105329528,0.0686203749974083,10,mac,phase-24,without +27,313.1624892222485,0.0,0.0,63.74902507972117,0.0664747500013618,10,mac,phase-24,without +28,304.77808852402086,0.0,0.0,62.04225179497307,0.0646950000009383,10,mac,phase-24,without +29,306.854070382832,0.0,0.0,62.46484972460084,0.0651356670023233,10,mac,phase-24,without +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.0660744170018006,10,mac,phase-23,without +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.0642834580030466,10,mac,phase-23,without +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.0620629580007516,10,mac,phase-23,without +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.0629158750016358,10,mac,phase-23,without +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.0626865000012912,10,mac,phase-23,without +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.0653167079981358,10,mac,phase-23,without +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.0633302079986606,10,mac,phase-23,without +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.0622254999980214,10,mac,phase-23,without +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872,10,mac,phase-23,without +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.0600536249985452,10,mac,phase-23,without +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.0623513749997073,10,mac,phase-23,without +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.0628564999969967,10,mac,phase-23,without +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.0647904580000613,10,mac,phase-23,without +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.0672497919986199,10,mac,phase-23,without +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.0654726659995503,10,mac,phase-23,without +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676,10,mac,phase-23,without +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.0630650829989463,10,mac,phase-23,without +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.0631177499999466,10,mac,phase-23,without +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361,10,mac,phase-23,without +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547,10,mac,phase-23,without +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.0673107919974427,10,mac,phase-23,without +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.065431292001449,10,mac,phase-23,without +22,313.0482616575098,0.8417886858098309,0.0,61.32106811245461,0.0621510420023696,10,mac,phase-23,without +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.0619104159995913,10,mac,phase-23,without +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.0631872090016258,10,mac,phase-23,without +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.0637677079976128,10,mac,phase-23,without +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.0652594999992288,10,mac,phase-23,without +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.0675664160007727,10,mac,phase-23,without +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.0667341249973105,10,mac,phase-23,without +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.0626280420001421,10,mac,phase-23,without +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.0686401659986586,10,mac,phase-8,without +1,397.75286598810527,0.269594419037943,12.435042578125124,70.53263988080185,0.0683966249998775,10,mac,phase-8,without +2,365.9092588508725,0.2480110201480115,11.439508304327031,64.88588314622352,0.0629208749996905,10,mac,phase-8,without +3,398.012860314751,0.2697706415757017,12.443170842679242,70.57874410224296,0.0684413329981907,10,mac,phase-8,without +4,406.01920064322974,0.2751972892608521,12.693474967156805,71.99849080287044,0.0698180840008717,10,mac,phase-8,without +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.0682153339985234,10,mac,phase-8,without +6,389.3137678245606,0.2638744507834012,12.171209042384383,69.03615318620736,0.0669454580020101,10,mac,phase-8,without +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.0680102080004871,10,mac,phase-8,without +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404,10,mac,phase-8,without +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956,10,mac,phase-8,without +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.0672688339982414,10,mac,phase-8,without +11,398.1340122908051,0.2698527576316564,12.446958445760156,70.60022771538212,0.0684621660002449,10,mac,phase-8,without +12,372.80412745844734,0.2526843192127068,11.655064223686104,66.10853501402443,0.0641065000017988,10,mac,phase-8,without +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454,10,mac,phase-8,without +14,392.7996098404614,0.2662371328241711,12.280187751514893,69.65428987512377,0.067544875000749,10,mac,phase-8,without +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.0673702909989515,10,mac,phase-8,without +16,390.4700645317705,0.2646581815008187,12.207358621725266,69.2411967351517,0.0671442919992841,10,mac,phase-8,without +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.0669481250006356,10,mac,phase-8,without +18,394.8335415578033,0.2676157190936564,12.3437750431949,70.01496250787785,0.0678946250009175,10,mac,phase-8,without +19,391.70268238960193,0.2654936422195048,12.24589424737466,69.45977414567795,0.0673562499978288,10,mac,phase-8,without +20,391.0290628243883,0.26503706706728,12.224834718478292,69.34032267147714,0.0672404159995494,10,mac,phase-8,without +21,399.5914937296824,0.2708406294872032,12.492524035097247,70.85867968958954,0.0687127909986884,10,mac,phase-8,without +22,398.602883706492,0.2701705557614111,12.461616884495088,70.68337165107918,0.0685427919997891,10,mac,phase-8,without +23,385.2929159598488,0.261149142394204,12.04550419293266,68.32314437888363,0.0662540419980359,10,mac,phase-8,without +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.067253500001243,10,mac,phase-8,without +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269,10,mac,phase-8,without +26,384.6154175220648,0.2606899381662728,12.024323397919336,68.20300507275113,0.0661375409981701,10,mac,phase-8,without +27,394.1247912258336,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858,10,mac,phase-8,without +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.0678507080010604,10,mac,phase-8,without +29,396.5473885388564,0.2687773539194146,12.397355449533,70.31887521916686,0.0681893340006354,10,mac,phase-8,without +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341,10,mac,phase-1,without +1,290.22725500807564,0.0,0.0,61.57760130550795,0.0669092079988331,10,mac,phase-1,without +2,287.38755742396035,0.0,0.0,60.97510184122435,0.0662545419982052,10,mac,phase-1,without +3,284.85600928125524,0.0,0.0,60.43798253376007,0.0656709169998066,10,mac,phase-1,without +4,288.39804257958247,0.0,0.0,61.18949677128115,0.0664875000002211,10,mac,phase-1,without +5,289.7942165918819,0.0,0.0,61.485723418499695,0.0668093749991385,10,mac,phase-1,without +6,287.9792792941568,0.0,0.0,61.10064764292961,0.0663909579998289,10,mac,phase-1,without +7,293.9906938530544,0.0,0.0,62.37609122240881,0.0677768339992326,10,mac,phase-1,without +8,287.754807039453,0.0,0.0,61.05302129920833,0.0663392079986806,10,mac,phase-1,without +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141,10,mac,phase-1,without +10,288.1126656850648,0.0,0.0,61.128948272374934,0.0664217089979501,10,mac,phase-1,without +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543,10,mac,phase-1,without +12,283.96806213484086,0.0,0.0,60.249586528840595,0.0654662090018973,10,mac,phase-1,without +13,287.49473153180446,0.0,0.0,60.99784100293028,0.0662792499970237,10,mac,phase-1,without +14,290.36370810703596,0.0,0.0,61.60655259929476,0.0669406659981177,10,mac,phase-1,without +15,286.7884182291257,0.0,0.0,60.84798230358821,0.066116416001023,10,mac,phase-1,without +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447,10,mac,phase-1,without +17,285.94203855646913,0.0,0.0,60.66840568169417,0.0659212909995403,10,mac,phase-1,without +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269,10,mac,phase-1,without +19,287.0410893992396,0.0,0.0,60.90159161941293,0.066174667001178,10,mac,phase-1,without +20,297.4148868126718,0.0,0.0,63.10260324091163,0.0685662500000034,10,mac,phase-1,without +21,302.4373178414097,0.0,0.0,64.1682138964768,0.0697241249981743,10,mac,phase-1,without +22,290.7853645972282,0.0,0.0,61.69601557974508,0.0670378750000963,10,mac,phase-1,without +23,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381,10,mac,phase-1,without +24,286.4050846775788,0.0,0.0,60.76665031220264,0.0660280419979244,10,mac,phase-1,without +25,284.29446863504063,0.0,0.0,60.318840291145825,0.0655414590000873,10,mac,phase-1,without +26,285.6671457104221,0.0,0.0,60.6100815864084,0.0658579169976292,10,mac,phase-1,without +27,287.5579915240894,0.0,0.0,61.01126289393568,0.0662938340028631,10,mac,phase-1,without +28,286.0333109264343,0.0,0.0,60.68777096703847,0.0659423329998389,10,mac,phase-1,without +29,284.3069393158575,0.0,0.0,60.32148619913034,0.0655443340001511,10,mac,phase-1,without +0,297.9231929631541,0.0,0.0,61.89344237000005,0.0660346250006114,10,mac,phase-30,without +1,297.04079661120556,0.0,0.0,61.71012482693256,0.0658390419994248,10,mac,phase-30,without +2,296.8676586574506,0.0,0.0,61.674155475717534,0.0658006660014507,10,mac,phase-30,without +3,297.3197636713215,0.0,0.0,61.7680801391279,0.0659008750008069,10,mac,phase-30,without +4,298.48470477937286,0.0,0.0,62.01009625951951,0.0661590839990822,10,mac,phase-30,without +5,295.20155767320017,0.0,0.0,61.3280235608919,0.0654313750019355,10,mac,phase-30,without +6,292.8541974051702,0.0,0.0,60.84036026074424,0.0649110829981509,10,mac,phase-30,without +7,297.2970205991458,0.0,0.0,61.76335527359118,0.0658958340027311,10,mac,phase-30,without +8,297.0774535309563,0.0,0.0,61.71774028958751,0.0658471669994469,10,mac,phase-30,without +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461,10,mac,phase-30,without +10,296.545267260386,0.0,0.0,61.607178772237894,0.0657292080031766,10,mac,phase-30,without +11,296.86935500896175,0.0,0.0,61.67450789216907,0.0658010419974743,10,mac,phase-30,without +12,298.61459885910585,0.0,0.0,62.03708171056209,0.0661878749997413,10,mac,phase-30,without +13,299.2832616828819,0.0,0.0,62.17599618558742,0.0663360840007953,10,mac,phase-30,without +14,298.81874969918397,0.0,0.0,62.079493978400286,0.0662331249986891,10,mac,phase-30,without +15,296.9749991387711,0.0,0.0,61.6964554243335,0.0658244580008613,10,mac,phase-30,without +16,293.1703898391526,0.0,0.0,60.906049131744425,0.0649811669973132,10,mac,phase-30,without +17,299.0945225408772,0.0,0.0,62.13678569280086,0.0662942500021017,10,mac,phase-30,without +18,255.6130228481359,0.0,0.0,53.10351886779507,0.0566565829976752,10,mac,phase-30,without +19,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645,10,mac,phase-30,without +20,290.72809607604245,0.0,0.0,60.39866343016743,0.064439833000506,10,mac,phase-30,without +21,298.5279351289336,0.0,0.0,62.01907734998971,0.0661686659987026,10,mac,phase-30,without +22,299.2761152689181,0.0,0.0,62.1745115205084,0.0663344999993569,10,mac,phase-30,without +23,293.40781389038244,0.0,0.0,60.95537389792288,0.0650337919978483,10,mac,phase-30,without +24,296.0600830227514,0.0,0.0,61.50638191130139,0.0656216669995046,10,mac,phase-30,without +25,300.42752152616026,0.0,0.0,62.41371578023145,0.0665897090002545,10,mac,phase-30,without +26,295.4047700896462,0.0,0.0,61.37024087153856,0.065476416999445,10,mac,phase-30,without +27,298.3017901501356,0.0,0.0,61.972095807286415,0.0661185410026519,10,mac,phase-30,without +28,297.4477809202034,0.0,0.0,61.794675679197255,0.0659292500022274,10,mac,phase-30,without +29,298.01661959689955,0.0,0.0,61.91285172149777,0.0660553329980757,10,mac,phase-30,without +0,301.527059904683,0.0,0.0,61.86818404371384,0.0670472090023395,10,mac,phase-6,without +1,297.30471380754034,0.0,0.0,61.001831002242675,0.0661083329978282,10,mac,phase-6,without +2,298.56993893852353,0.0,0.0,61.26143351116889,0.0663896669975656,10,mac,phase-6,without +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497,10,mac,phase-6,without +4,299.1821205786761,0.0,0.0,61.38704268997068,0.0665257910004584,10,mac,phase-6,without +5,298.54745277190455,0.0,0.0,61.256819735227,0.0663846669995109,10,mac,phase-6,without +6,295.84086380274124,0.0,0.0,60.701474073952625,0.0657828330004122,10,mac,phase-6,without +7,287.0708821292312,0.0,0.0,58.902024165847415,0.0638327499982551,10,mac,phase-6,without +8,311.42434548185787,0.0,0.0,63.89893738908661,0.0692479579993232,10,mac,phase-6,without +9,276.3402948730035,0.0,0.0,56.70029160003628,0.0614467090017569,10,mac,phase-6,without +10,302.1443009237354,0.0,0.0,61.99483132034014,0.0671844580028846,10,mac,phase-6,without +11,299.5947418972884,0.0,0.0,61.47170551157061,0.0666175410005962,10,mac,phase-6,without +12,297.7119024745538,0.0,0.0,61.08537913685875,0.0661988749998272,10,mac,phase-6,without +13,296.81133114888826,0.0,0.0,60.90059733804315,0.065998624999338,10,mac,phase-6,without +14,295.8635388716868,0.0,0.0,60.70612660941386,0.0657878750025702,10,mac,phase-6,without +15,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043,10,mac,phase-6,without +16,293.46651256772094,0.0,0.0,60.21429790064635,0.0652548750003916,10,mac,phase-6,without +17,288.92730480664824,0.0,0.0,59.28293027724474,0.0642455420020269,10,mac,phase-6,without +18,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284,10,mac,phase-6,without +19,294.5672108564634,0.0,0.0,60.440142321793985,0.0654996250013937,10,mac,phase-6,without +20,292.01034831569035,0.0,0.0,59.915517957078485,0.0649310839980898,10,mac,phase-6,without +21,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666,10,mac,phase-6,without +22,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717,10,mac,phase-6,without +23,297.67255166251954,0.0,0.0,61.07730502476422,0.066190124998684,10,mac,phase-6,without +24,298.30198018653,0.0,0.0,61.20645296849487,0.0663300839987641,10,mac,phase-6,without +25,297.6101525252016,0.0,0.0,61.06450179140608,0.0661762499985343,10,mac,phase-6,without +26,300.59875411481113,0.0,0.0,61.67771160825551,0.0668407919984019,10,mac,phase-6,without +27,296.54093489263096,0.0,0.0,60.84511666127687,0.0659384999999019,10,mac,phase-6,without +28,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473,10,mac,phase-6,without +29,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701,10,mac,phase-6,without +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.0667561670015857,10,mac,phase-7,without +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.0679194580006878,10,mac,phase-7,without +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.0679882910008018,10,mac,phase-7,without +3,396.7437451725483,0.2682967000321544,11.972740238934891,70.15958705840839,0.0680203750016517,10,mac,phase-7,without +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.0677365830015332,10,mac,phase-7,without +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.0680572919991391,10,mac,phase-7,without +6,391.36719129553967,0.2646608225160031,11.81048920477664,69.20880508793482,0.0670985830001882,10,mac,phase-7,without +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.0676863749977201,10,mac,phase-7,without +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.0701520839975273,10,mac,phase-7,without +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.0696812919995863,10,mac,phase-7,without +10,387.301056942086,0.2619111120487479,11.687783375175377,68.48975580074759,0.0664014579997456,10,mac,phase-7,without +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.0675194590003229,10,mac,phase-7,without +12,389.3096996228947,0.2632694502944342,11.74839921938913,68.84496125199456,0.066745833002642,10,mac,phase-7,without +13,387.9621023426623,0.2623581419054352,11.707732082530049,68.60665410827131,0.0665147920008166,10,mac,phase-7,without +14,395.11252609217826,0.2671935932998669,11.923514101006564,69.87112464791521,0.0677407080002012,10,mac,phase-7,without +15,394.7183334237559,0.2669270217574004,11.911618345923996,69.80141618956021,0.0676731249986914,10,mac,phase-7,without +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.0671810830026515,10,mac,phase-7,without +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.0674895829979504,10,mac,phase-7,without +18,386.8565570909318,0.2616105204334281,11.674369474341727,68.41115109334145,0.0663252500016824,10,mac,phase-7,without +19,384.0741050620474,0.2597288960690092,11.590401987079536,67.91910632204592,0.0658482079998066,10,mac,phase-7,without +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.0685538329998962,10,mac,phase-7,without +21,396.65893159557254,0.2682393451195757,11.970180775961063,70.14458874876905,0.0680058340003597,10,mac,phase-7,without +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.0646796670007461,10,mac,phase-7,without +23,393.0382653515496,0.2657908810492305,11.86091806682191,69.50431539437378,0.0673850830025912,10,mac,phase-7,without +24,406.135881200921,0.2746481022491435,12.256171562868031,71.82047873815104,0.069630624999263,10,mac,phase-7,without +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.0686014579987386,10,mac,phase-7,without +26,394.0356603064191,0.2664653662258117,11.891016967826848,69.68069326804977,0.0675560829986352,10,mac,phase-7,without +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.0676258750027045,10,mac,phase-7,without +28,413.12105234795297,0.2793718020949808,12.46696666848852,73.0557262478375,0.0708282089981366,10,mac,phase-7,without +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.0648108750028768,10,mac,phase-7,without +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065,10,mac,phase-9,without +1,399.29583877571366,1.158366767779374,11.41331962370854,71.40990427251671,0.0692834579967893,10,mac,phase-9,without +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.0633901660003175,10,mac,phase-9,without +3,394.21772121323113,1.1436350274103977,11.268168652425976,70.50173580741745,0.0684023329995398,10,mac,phase-9,without +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.0680647919980401,10,mac,phase-9,without +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.0679784999992989,10,mac,phase-9,without +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.0698598329981905,10,mac,phase-9,without +7,392.2752796374332,1.1379999579925535,11.212646644926632,70.15435035154096,0.0680652919982094,10,mac,phase-9,without +8,387.9996905257891,1.125596371832494,11.09043484011428,69.38970574590904,0.0673234170026262,10,mac,phase-9,without +9,391.1295975243385,1.134676306811221,11.179898905345851,69.94945703165645,0.0678664999977627,10,mac,phase-9,without +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751,10,mac,phase-9,without +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.0683444170026632,10,mac,phase-9,without +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992,10,mac,phase-9,without +13,389.43280747798,1.1297538783490886,11.13139850726308,69.64600379469677,0.0675720830004138,10,mac,phase-9,without +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.0660507920001691,10,mac,phase-9,without +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.0690730419992178,10,mac,phase-9,without +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.0675779160010279,10,mac,phase-9,without +17,405.877194445587,1.1774594378114298,11.601438578436149,72.58691122508108,0.0704254160009441,10,mac,phase-9,without +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.0655020420017535,10,mac,phase-9,without +19,383.6916774964104,1.1130987231124532,10.967296242431525,68.61926246010889,0.0665759160001471,10,mac,phase-9,without +20,388.806541361944,1.1279370653844794,11.113497555994131,69.53400261899613,0.0674634169990895,10,mac,phase-9,without +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.0680769159989722,10,mac,phase-9,without +22,405.6771703448896,1.176879163116574,11.595721166001535,72.5511389968335,0.0703907089991844,10,mac,phase-9,without +23,389.3441979604815,1.129496820021875,11.12886572668612,69.63015690487794,0.0675567079997563,10,mac,phase-9,without +24,393.09269449425614,1.1403712980208796,11.236011318735136,70.30053648975775,0.0682071250012086,10,mac,phase-9,without +25,372.8068790690931,1.0815216628284272,10.65616932492715,66.67262956730539,0.0646872500001336,10,mac,phase-9,without +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459,10,mac,phase-9,without +27,390.2598296133434,1.1321530893219862,11.15503779184898,69.79390809467303,0.0677155830017,10,mac,phase-9,without +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.0690524580022611,10,mac,phase-9,without +29,379.8298414684538,1.101895444533057,10.85691099760512,67.92861328650847,0.0659058329983963,10,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n100/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n100/with_smell.csv new file mode 100644 index 000000000..5bcc887a7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n100/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,1696.056708219553,2.13210562208661,0.0,468.996608558364,0.5107068340003025,100,mac,phase-19,with +1,1698.1034097991303,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625,100,mac,phase-19,with +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451,100,mac,phase-19,with +3,1690.6943979681755,2.1253646848414536,0.0,467.5138130187185,0.50909216600121,100,mac,phase-19,with +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757,100,mac,phase-19,with +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803,100,mac,phase-19,with +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638,100,mac,phase-19,with +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929,100,mac,phase-19,with +8,1698.1573760274025,2.1347463625887086,0.0,469.577488945685,0.5113393749998068,100,mac,phase-19,with +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113,100,mac,phase-19,with +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842,100,mac,phase-19,with +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512,100,mac,phase-19,with +12,1697.0918900604795,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553,100,mac,phase-19,with +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115,100,mac,phase-19,with +14,1697.2283266475597,2.133578458593306,0.0,469.3205865636963,0.5110596249978698,100,mac,phase-19,with +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593,100,mac,phase-19,with +16,1695.755878881392,2.131727450814344,0.0,468.9134226963178,0.5106162500014761,100,mac,phase-19,with +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632,100,mac,phase-19,with +18,1690.365619098878,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368,100,mac,phase-19,with +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195,100,mac,phase-19,with +20,1722.8095641598518,2.165736522681356,0.0,476.3943557235645,0.5187624999998661,100,mac,phase-19,with +21,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764,100,mac,phase-19,with +22,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929,100,mac,phase-19,with +23,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595,100,mac,phase-19,with +24,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202,100,mac,phase-19,with +25,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783,100,mac,phase-19,with +26,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809,100,mac,phase-19,with +27,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155,100,mac,phase-19,with +28,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467,100,mac,phase-19,with +29,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275,100,mac,phase-19,with +0,1707.9951880275323,2.0066518754973948,0.0,471.1953045647133,0.5138533329991333,100,mac,phase-26,with +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253,100,mac,phase-26,with +2,1693.5739088739952,1.989708919765806,0.0,467.2168161763406,0.5095146659987222,100,mac,phase-26,with +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224,100,mac,phase-26,with +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637,100,mac,phase-26,with +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599,100,mac,phase-26,with +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382,100,mac,phase-26,with +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533,100,mac,phase-26,with +8,1700.851719406768,1.998259313969181,0.0,469.2245912418632,0.5117042079982639,100,mac,phase-26,with +9,1698.8143105967222,1.9958656478520331,0.0,468.6625185431216,0.5110912500022096,100,mac,phase-26,with +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894,100,mac,phase-26,with +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684,100,mac,phase-26,with +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475,100,mac,phase-26,with +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241,100,mac,phase-26,with +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905,100,mac,phase-26,with +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494,100,mac,phase-26,with +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538,100,mac,phase-26,with +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385,100,mac,phase-26,with +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468,100,mac,phase-26,with +19,1699.5277018289198,1.9967037812754096,0.0,468.8593262398208,0.5113058749993797,100,mac,phase-26,with +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675,100,mac,phase-26,with +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391,100,mac,phase-26,with +22,1697.8531494743247,1.994736419981584,0.0,468.3973570186755,0.510802083001181,100,mac,phase-26,with +23,1697.3617679212994,1.994159116414293,0.0,468.2617965193497,0.5106542500034266,100,mac,phase-26,with +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853,100,mac,phase-26,with +25,1699.613843927194,1.9968049860119763,0.0,468.88309079871226,0.511331790999975,100,mac,phase-26,with +26,1698.3545027196003,1.995325438871667,0.0,468.5356684710486,0.5109529159999511,100,mac,phase-26,with +27,1698.6356511649765,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842,100,mac,phase-26,with +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118,100,mac,phase-26,with +29,1744.0226240557995,2.0489789983032693,0.0,481.1344184515794,0.5246922500009532,100,mac,phase-26,with +0,1740.8475467300475,0.8670057698492718,0.0,476.0195140230136,0.5090652500002761,100,mac,phase-21,with +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093,100,mac,phase-21,with +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814,100,mac,phase-21,with +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254,100,mac,phase-21,with +4,1743.64428559599,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949,100,mac,phase-21,with +5,1742.4530932244463,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856,100,mac,phase-21,with +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411,100,mac,phase-21,with +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279,100,mac,phase-21,with +8,1738.451339551393,0.8658123710053869,0.0,475.3642921577653,0.5083645419981622,100,mac,phase-21,with +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625,100,mac,phase-21,with +10,1757.4058468687897,0.875252409129174,0.0,480.5472361661138,0.513907291002397,100,mac,phase-21,with +11,1739.8851866112857,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523,100,mac,phase-21,with +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187,100,mac,phase-21,with +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124,100,mac,phase-21,with +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298,100,mac,phase-21,with +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439,100,mac,phase-21,with +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813,100,mac,phase-21,with +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888,100,mac,phase-21,with +18,1733.1724702832205,0.8631833009743076,0.0,473.92083159262467,0.506820875001722,100,mac,phase-21,with +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895,100,mac,phase-21,with +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733,100,mac,phase-21,with +21,1753.020803602176,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888,100,mac,phase-21,with +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614,100,mac,phase-21,with +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498,100,mac,phase-21,with +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713,100,mac,phase-21,with +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178,100,mac,phase-21,with +26,1731.9024812868108,0.8625507999896003,0.0,473.5735642250594,0.5064494999969611,100,mac,phase-21,with +27,1736.6560000323225,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919,100,mac,phase-21,with +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532,100,mac,phase-21,with +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277,100,mac,phase-21,with +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516,100,mac,phase-28,with +1,1708.5795885529983,1.966259571752885,0.0,469.8693847821005,0.5122209580003982,100,mac,phase-28,with +2,1714.6152742499144,1.9732055313401136,0.0,471.5292336671909,0.5140304169981391,100,mac,phase-28,with +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946,100,mac,phase-28,with +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964,100,mac,phase-28,with +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978,100,mac,phase-28,with +6,1709.5649903497754,1.9673935872403203,0.0,470.14037604239456,0.5125163749980857,100,mac,phase-28,with +7,1713.8351537921171,1.972307756763184,0.0,471.3146959763412,0.5137965419999091,100,mac,phase-28,with +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049,100,mac,phase-28,with +9,1713.8143061036951,1.9722837649238905,0.0,471.3089627400327,0.5137902919996122,100,mac,phase-28,with +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476,100,mac,phase-28,with +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156,100,mac,phase-28,with +12,1709.076183799929,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007,100,mac,phase-28,with +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221,100,mac,phase-28,with +14,1704.6249223381478,1.9617084812739085,0.0,468.7818284318785,0.5110353749987553,100,mac,phase-28,with +15,1705.365015246795,1.962560191533918,0.0,468.98535831248665,0.5112572500001988,100,mac,phase-28,with +16,1701.6139625675005,1.95824342263171,0.0,467.95379687600814,0.510132709001482,100,mac,phase-28,with +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774,100,mac,phase-28,with +18,1707.2698000702223,1.964752247096495,0.0,469.5091852849744,0.5118282920011552,100,mac,phase-28,with +19,1713.4863002655777,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812,100,mac,phase-28,with +20,1688.421819469822,1.9430617022064345,0.0,464.3258803289579,0.5061777909977536,100,mac,phase-28,with +21,1707.8000251380013,1.9653624382293453,0.0,469.6550002812804,0.5119872499999474,100,mac,phase-28,with +22,1709.2365675547344,1.9670156332552335,0.0,470.05005785195834,0.5124179159975029,100,mac,phase-28,with +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883,100,mac,phase-28,with +24,1702.1062448464766,1.9588099486217936,0.0,468.0891773833673,0.5102802920009708,100,mac,phase-28,with +25,1709.7403911188364,1.967595441133092,0.0,470.188612280262,0.5125689589985996,100,mac,phase-28,with +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112,100,mac,phase-28,with +27,1713.4480806178635,1.971862307022976,0.0,471.20824858842275,0.5136805000001914,100,mac,phase-28,with +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611,100,mac,phase-28,with +29,1707.9331701381714,1.9655156635357751,0.0,469.6916159354389,0.5120271659980062,100,mac,phase-28,with +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787,100,mac,phase-17,with +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475,100,mac,phase-17,with +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321,100,mac,phase-17,with +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932,100,mac,phase-17,with +4,1765.9374046561293,1.4666423640474469,0.0,474.2921408643437,0.5136094170011347,100,mac,phase-17,with +5,1760.7687938821498,1.4623497410448405,0.0,472.9039651210689,0.5121061660029227,100,mac,phase-17,with +6,1765.694572073473,1.4664406872767095,0.0,474.22692134682507,0.5135387909976998,100,mac,phase-17,with +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474,100,mac,phase-17,with +8,1775.629506989212,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826,100,mac,phase-17,with +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419,100,mac,phase-17,with +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038,100,mac,phase-17,with +11,1770.4399845493308,1.470381836579976,0.0,475.5014352885564,0.514918958000635,100,mac,phase-17,with +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858,100,mac,phase-17,with +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353,100,mac,phase-17,with +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058,100,mac,phase-17,with +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538,100,mac,phase-17,with +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251,100,mac,phase-17,with +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272,100,mac,phase-17,with +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988,100,mac,phase-17,with +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226,100,mac,phase-17,with +20,1769.5408755153906,1.46963511056602,0.0,475.2599542782705,0.5146574589998636,100,mac,phase-17,with +21,1767.2834912096223,1.4677603128262782,0.0,474.6536702546616,0.51400091600226,100,mac,phase-17,with +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654,100,mac,phase-17,with +23,1761.1276686756316,1.462647792931686,0.0,473.0003510369309,0.5122105419977743,100,mac,phase-17,with +24,1753.0491242413011,1.455938418366093,0.0,470.8306307938895,0.5098609590022534,100,mac,phase-17,with +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936,100,mac,phase-17,with +26,1760.151335689559,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767,100,mac,phase-17,with +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245,100,mac,phase-17,with +28,1777.3232973655329,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984,100,mac,phase-17,with +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584,100,mac,phase-17,with +0,1691.7368270144957,0.9352332949595424,0.0,471.9254008744063,0.5151577079996059,100,mac,phase-10,with +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978,100,mac,phase-10,with +2,1691.7194485071643,0.935223687697696,0.0,471.9205529814552,0.5151524159991823,100,mac,phase-10,with +3,1689.084378366222,0.933766956786002,0.0,471.1854761581936,0.5143500000012864,100,mac,phase-10,with +4,1693.5933387749658,0.9362596198483492,0.0,472.4432917441903,0.515723041997262,100,mac,phase-10,with +5,1693.8493466310365,0.9364011472224332,0.0,472.51470746806285,0.5158009999977367,100,mac,phase-10,with +6,1686.4976048238766,0.9323369254095548,0.0,470.46387211112864,0.5135622909983795,100,mac,phase-10,with +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559,100,mac,phase-10,with +8,1688.5101028010365,0.933449483275662,0.0,471.02527675720825,0.5141751249975641,100,mac,phase-10,with +9,1699.7612240655442,0.9396693769637156,0.0,474.1638795400121,0.5176012500014622,100,mac,phase-10,with +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392,100,mac,phase-10,with +11,1692.366929218863,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073,100,mac,phase-10,with +12,1689.6277292335435,0.9340673343706531,0.0,471.33704883296286,0.5145154579986411,100,mac,phase-10,with +13,1697.3383739763035,0.9383299664620526,0.0,473.488003433655,0.5168634580004436,100,mac,phase-10,with +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696,100,mac,phase-10,with +15,1694.925927355849,0.9369963072511552,0.0,472.8150294696991,0.516128834002302,100,mac,phase-10,with +16,1671.365031052581,0.923971270300939,0.0,466.2425027886417,0.5089542089990573,100,mac,phase-10,with +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399,100,mac,phase-10,with +18,1690.4551425000311,0.9345247485636612,0.0,471.5678633019989,0.5147674170002574,100,mac,phase-10,with +19,1684.268371406136,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615,100,mac,phase-10,with +20,1696.6806343047017,0.937966351962164,0.0,473.3045209597648,0.5166631669999333,100,mac,phase-10,with +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752,100,mac,phase-10,with +22,1680.6578390184325,0.9291085607320204,0.0,468.8348162350971,0.5117840000020806,100,mac,phase-10,with +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838,100,mac,phase-10,with +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711,100,mac,phase-10,with +25,1690.4400890135123,0.9345164266299107,0.0,471.56366399478605,0.5147628330014413,100,mac,phase-10,with +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478,100,mac,phase-10,with +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382,100,mac,phase-10,with +28,1682.6264145623704,0.930196837207968,0.0,469.3839683182635,0.5123834590012848,100,mac,phase-10,with +29,1679.3658889613605,0.9283943392943216,0.0,468.4744149960525,0.5113905830003205,100,mac,phase-10,with +0,1706.4500436920816,0.9036096252071272,0.0,472.01889458967855,0.5143917909990705,100,mac,phase-11,with +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102,100,mac,phase-11,with +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231,100,mac,phase-11,with +3,1697.45142476899,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798,100,mac,phase-11,with +4,1707.4593666243693,0.9041440879181388,0.0,472.2980820739788,0.5146960410020256,100,mac,phase-11,with +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587,100,mac,phase-11,with +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588,100,mac,phase-11,with +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391,100,mac,phase-11,with +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746,100,mac,phase-11,with +9,1692.1716258741417,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998,100,mac,phase-11,with +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885,100,mac,phase-11,with +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757,100,mac,phase-11,with +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119,100,mac,phase-11,with +13,1699.6750602015395,0.9000220954606203,0.0,470.1448753472811,0.512349542001175,100,mac,phase-11,with +14,1701.1311258658325,0.9007931200529032,0.0,470.54763574911647,0.5127884579997044,100,mac,phase-11,with +15,1700.9127306150654,0.9006774740945451,0.0,470.4872257270172,0.5127226250006061,100,mac,phase-11,with +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582,100,mac,phase-11,with +17,1691.921847883786,0.8959165681394461,0.0,468.0002695199536,0.5100124159980624,100,mac,phase-11,with +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093,100,mac,phase-11,with +19,1696.5682995533305,0.8983769849955858,0.0,469.2855183843608,0.5114130410001962,100,mac,phase-11,with +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749,100,mac,phase-11,with +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367,100,mac,phase-11,with +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291,100,mac,phase-11,with +23,1723.2436212518203,0.912502260758186,0.0,476.6641439160539,0.5194540419979603,100,mac,phase-11,with +24,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214,100,mac,phase-11,with +25,1699.7398857679125,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216,100,mac,phase-11,with +26,1704.6099874632089,0.902635267636287,0.0,471.5099190645256,0.5138371249995544,100,mac,phase-11,with +27,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361,100,mac,phase-11,with +28,1701.2077050215437,0.9008336707050868,0.0,470.56881820831654,0.5128115419975074,100,mac,phase-11,with +29,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599,100,mac,phase-11,with +0,1697.203423819641,0.4319175559316277,0.0,469.49438329767935,0.5124109589996806,100,mac,phase-29,with +1,1702.970913758122,0.433385311725145,0.0,471.08983384523265,0.5141522500016436,100,mac,phase-29,with +2,1698.55258888602,0.4322609019736166,0.0,469.8676004453214,0.5128182920016116,100,mac,phase-29,with +3,1752.3333375660038,0.4459474460849607,0.0,484.74487389435234,0.529055499999231,100,mac,phase-29,with +4,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953,100,mac,phase-29,with +5,1704.3090392776437,0.4337258483372035,0.0,471.45999714254026,0.5145562500001688,100,mac,phase-29,with +6,1696.1240599722423,0.4316428710067762,0.0,469.19580078436576,0.5120850829989649,100,mac,phase-29,with +7,1698.2136390256214,0.4321746433712405,0.0,469.7738373445384,0.5127159579969884,100,mac,phase-29,with +8,1701.9096344739723,0.4331152291009071,0.0,470.7962540326861,0.5138318339995749,100,mac,phase-29,with +9,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588,100,mac,phase-29,with +10,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589,100,mac,phase-29,with +11,1705.7160285840569,0.4340839099425002,0.0,471.84921010749775,0.5149810410002829,100,mac,phase-29,with +12,1727.832226093905,0.4397122122667182,0.0,477.9671747339228,0.5216582499997457,100,mac,phase-29,with +13,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364,100,mac,phase-29,with +14,1702.5864245755272,0.4332874639211059,0.0,470.9834732822422,0.5140361669982667,100,mac,phase-29,with +15,1699.7292450503628,0.4325603466056166,0.0,470.1930967603053,0.5131735420000041,100,mac,phase-29,with +16,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262,100,mac,phase-29,with +17,1691.5910504622384,0.4304892754146995,0.0,467.9418423757784,0.5107165000008536,100,mac,phase-29,with +18,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608,100,mac,phase-29,with +19,1697.6634011631045,0.4320346145512275,0.0,469.6216260171843,0.5125498330016853,100,mac,phase-29,with +20,1697.9111266140835,0.4320976576548574,0.0,469.6901538708301,0.5126246250001714,100,mac,phase-29,with +21,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183,100,mac,phase-29,with +22,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172,100,mac,phase-29,with +23,1695.7074127257792,0.4315368393679918,0.0,469.0805443930072,0.5119592909977655,100,mac,phase-29,with +24,1695.3634979136232,0.4314493172459938,0.0,468.9854078463953,0.5118554580003547,100,mac,phase-29,with +25,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883,100,mac,phase-29,with +26,1698.0149108307794,0.4321240694712552,0.0,469.7188635152545,0.5126559589989483,100,mac,phase-29,with +27,1693.4629920169104,0.4309656616921448,0.0,468.45967425936146,0.5112816670007305,100,mac,phase-29,with +28,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756,100,mac,phase-29,with +29,1714.7917125952802,0.4363935607489505,0.0,474.3598005341093,0.5177211250011169,100,mac,phase-29,with +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922,100,mac,phase-16,with +1,1684.9120118880196,0.9001310708543041,0.0,468.9682879150925,0.5117798330029473,100,mac,phase-16,with +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045,100,mac,phase-16,with +3,1683.044204417893,0.8991332314856176,0.0,468.4484136040067,0.5112124999977823,100,mac,phase-16,with +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105,100,mac,phase-16,with +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793,100,mac,phase-16,with +6,1709.3699343703154,0.9131972344281464,0.0,475.77575913706426,0.5192087499999616,100,mac,phase-16,with +7,1681.6389594309271,0.898382507016918,0.0,468.05728615581427,0.5107856670001638,100,mac,phase-16,with +8,1686.120547663472,0.9007767072994408,0.0,469.3046645030087,0.5121469170007913,100,mac,phase-16,with +9,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845,100,mac,phase-16,with +10,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436,100,mac,phase-16,with +11,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695,100,mac,phase-16,with +12,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919,100,mac,phase-16,with +13,1697.2951611645233,0.906746524563556,0.0,472.4149392976128,0.5155411250016186,100,mac,phase-16,with +14,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666,100,mac,phase-16,with +15,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893,100,mac,phase-16,with +16,1677.7029249314749,0.8962797580757781,0.0,466.9617539574804,0.5095901249987946,100,mac,phase-16,with +17,1688.7147098689277,0.902162587385458,0.0,470.0267080278236,0.5129348750015197,100,mac,phase-16,with +18,1680.573640225599,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004,100,mac,phase-16,with +19,1683.2713703277295,0.8992545904006469,0.0,468.511641598737,0.5112814999993134,100,mac,phase-16,with +20,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354,100,mac,phase-16,with +21,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451,100,mac,phase-16,with +22,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416,100,mac,phase-16,with +23,1681.8592675604157,0.8985002022978081,0.0,468.118605397158,0.5108525840005314,100,mac,phase-16,with +24,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924,100,mac,phase-16,with +25,1702.0110496161594,0.909265895125372,0.0,473.7275313603189,0.5169735419985955,100,mac,phase-16,with +26,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375,100,mac,phase-16,with +27,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133,100,mac,phase-16,with +28,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034,100,mac,phase-16,with +29,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037,100,mac,phase-16,with +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231,100,mac,phase-20,with +1,1684.3804086585617,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504,100,mac,phase-20,with +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881,100,mac,phase-20,with +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921,100,mac,phase-20,with +4,1687.8337375501524,0.9008719984551876,0.0,468.55353608541475,0.5111366669989366,100,mac,phase-20,with +5,1681.843830358663,0.8976749183506088,0.0,466.890699199911,0.5093227079996723,100,mac,phase-20,with +6,1686.948083015424,0.900399285205718,0.0,468.3076726719962,0.5108684590013581,100,mac,phase-20,with +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708,100,mac,phase-20,with +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256,100,mac,phase-20,with +9,1710.9085274184995,0.9131880409658696,0.0,474.95924664013734,0.5181245420026244,100,mac,phase-20,with +10,1689.3941238414432,0.9017048460783412,0.0,468.9867093880794,0.5116092080024828,100,mac,phase-20,with +11,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164,100,mac,phase-20,with +12,1692.884875635795,0.9035680156993332,0.0,469.9557646098421,0.512666333001107,100,mac,phase-20,with +13,1689.6578805301597,0.9018456247640516,0.0,469.059929946725,0.51168908299951,100,mac,phase-20,with +14,1688.3434987592047,0.9011440807041184,0.0,468.69504908621974,0.5112910409989126,100,mac,phase-20,with +15,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817,100,mac,phase-20,with +16,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927,100,mac,phase-20,with +17,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944,100,mac,phase-20,with +18,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707,100,mac,phase-20,with +19,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894,100,mac,phase-20,with +20,1685.8418700821012,0.8998088501209175,0.0,468.0005808240016,0.5105334580002818,100,mac,phase-20,with +21,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062,100,mac,phase-20,with +22,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702,100,mac,phase-20,with +23,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496,100,mac,phase-20,with +24,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146,100,mac,phase-20,with +25,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888,100,mac,phase-20,with +26,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105,100,mac,phase-20,with +27,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763,100,mac,phase-20,with +28,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561,100,mac,phase-20,with +29,1684.6551746223745,0.8991754579291524,0.0,467.6711465073736,0.5101740840000275,100,mac,phase-20,with +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961,100,mac,phase-18,with +1,1694.9927135001717,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363,100,mac,phase-18,with +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444,100,mac,phase-18,with +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167,100,mac,phase-18,with +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291,100,mac,phase-18,with +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369,100,mac,phase-18,with +6,1688.8411757749657,1.7647243216039348,0.0,469.3167794907069,0.5113532079994911,100,mac,phase-18,with +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479,100,mac,phase-18,with +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306,100,mac,phase-18,with +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447,100,mac,phase-18,with +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125,100,mac,phase-18,with +11,1682.606935383067,1.758209963827656,0.0,467.58432905944926,0.5094655829998374,100,mac,phase-18,with +12,1688.212838993708,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873,100,mac,phase-18,with +13,1684.5242856987225,1.7602134646799608,0.0,468.1171468804538,0.5100461250003718,100,mac,phase-18,with +14,1691.2586095165043,1.7672503756703288,0.0,469.9885668881752,0.5120851669998956,100,mac,phase-18,with +15,1684.9852883959743,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345,100,mac,phase-18,with +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871,100,mac,phase-18,with +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087,100,mac,phase-18,with +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969,100,mac,phase-18,with +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531,100,mac,phase-18,with +20,1716.313368140092,1.7934308966981107,0.0,476.9511035652806,0.5196713340010319,100,mac,phase-18,with +21,1697.7310531269818,1.77401363963112,0.0,471.78721227548374,0.5140449159989657,100,mac,phase-18,with +22,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576,100,mac,phase-18,with +23,1684.149156241156,1.759821479875816,0.0,468.0129011103703,0.5099325419978413,100,mac,phase-18,with +24,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992,100,mac,phase-18,with +25,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528,100,mac,phase-18,with +26,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477,100,mac,phase-18,with +27,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427,100,mac,phase-18,with +28,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625,100,mac,phase-18,with +29,1683.942460695321,1.7596054970693007,0.0,467.9554619092792,0.509869958001218,100,mac,phase-18,with +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942,100,mac,phase-27,with +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453,100,mac,phase-27,with +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553,100,mac,phase-27,with +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522,100,mac,phase-27,with +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363,100,mac,phase-27,with +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014,100,mac,phase-27,with +6,1702.066685738554,2.7700300963980387,0.0,474.5094928986423,0.5151506249967497,100,mac,phase-27,with +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673,100,mac,phase-27,with +8,1700.0186079028213,2.766696950116356,0.0,473.9385209247512,0.5145307500024501,100,mac,phase-27,with +9,1682.723315235478,2.738549709108719,0.0,469.1168646278044,0.5092961250011285,100,mac,phase-27,with +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456,100,mac,phase-27,with +11,1697.882008804488,2.763219739819069,0.0,473.34287061141595,0.5138840830004483,100,mac,phase-27,with +12,1695.3888533669428,2.7591622515579655,0.0,472.6478179837488,0.5131295000028331,100,mac,phase-27,with +13,1721.269774292272,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763,100,mac,phase-27,with +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644,100,mac,phase-27,with +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555,100,mac,phase-27,with +16,1693.919391580334,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454,100,mac,phase-27,with +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678,100,mac,phase-27,with +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103,100,mac,phase-27,with +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901,100,mac,phase-27,with +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161,100,mac,phase-27,with +21,1699.9142571169934,2.7665271243276557,0.0,473.9094295625374,0.5144991670022137,100,mac,phase-27,with +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584,100,mac,phase-27,with +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284,100,mac,phase-27,with +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527,100,mac,phase-27,with +25,1750.7250904090572,2.8492192647833674,0.0,488.07469285168577,0.5298776670024381,100,mac,phase-27,with +26,1694.6464141966617,2.75795396820241,0.0,472.44083758917907,0.5129047920017911,100,mac,phase-27,with +27,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241,100,mac,phase-27,with +28,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143,100,mac,phase-27,with +29,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524,100,mac,phase-27,with +0,1713.159064065179,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777,100,mac,phase-5,with +1,1728.2893886349443,2.1460685837030025,0.0,476.2595639739648,0.5165718749994994,100,mac,phase-5,with +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307,100,mac,phase-5,with +3,1714.3446896304945,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393,100,mac,phase-5,with +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168,100,mac,phase-5,with +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578,100,mac,phase-5,with +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113,100,mac,phase-5,with +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508,100,mac,phase-5,with +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844,100,mac,phase-5,with +9,1748.2277475268788,2.1708266397958953,0.0,481.7539182034547,0.5225312910006323,100,mac,phase-5,with +10,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575,100,mac,phase-5,with +11,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702,100,mac,phase-5,with +12,1729.394162260291,2.147440414129695,0.0,476.5640031544385,0.5169020829998772,100,mac,phase-5,with +13,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946,100,mac,phase-5,with +14,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174,100,mac,phase-5,with +15,1724.1615030085018,2.1409428647590096,0.0,475.1220548151909,0.5153380830015521,100,mac,phase-5,with +16,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531,100,mac,phase-5,with +17,1717.9330827404174,2.133208849176126,0.0,473.4057075757582,0.5134764579997864,100,mac,phase-5,with +18,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229,100,mac,phase-5,with +19,1715.88106060893,2.130660791970888,0.0,472.8402379431644,0.5128631249972386,100,mac,phase-5,with +20,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654,100,mac,phase-5,with +21,1716.739788843288,2.131727100482537,0.0,473.076875127398,0.5131197919981787,100,mac,phase-5,with +22,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105,100,mac,phase-5,with +23,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427,100,mac,phase-5,with +24,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432,100,mac,phase-5,with +25,1720.854010688215,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171,100,mac,phase-5,with +26,1712.4761217310593,2.1264327776098213,0.0,471.9019490686296,0.511845416000142,100,mac,phase-5,with +27,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266,100,mac,phase-5,with +28,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126,100,mac,phase-5,with +29,1710.078379417596,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527,100,mac,phase-5,with +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402,100,mac,phase-2,with +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579,100,mac,phase-2,with +2,1726.3235530469292,2.147168598317076,0.0,474.0210175878432,0.5159650419991522,100,mac,phase-2,with +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943,100,mac,phase-2,with +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624,100,mac,phase-2,with +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454,100,mac,phase-2,with +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892,100,mac,phase-2,with +7,1703.9014336143955,2.119280390067656,0.0,467.8642598635299,0.5092635000000882,100,mac,phase-2,with +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641,100,mac,phase-2,with +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499,100,mac,phase-2,with +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533,100,mac,phase-2,with +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063,100,mac,phase-2,with +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957,100,mac,phase-2,with +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029,100,mac,phase-2,with +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525,100,mac,phase-2,with +15,1729.2027639938808,2.1507497064600507,0.0,474.8116031652197,0.516825582999445,100,mac,phase-2,with +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779,100,mac,phase-2,with +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395,100,mac,phase-2,with +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429,100,mac,phase-2,with +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318,100,mac,phase-2,with +20,1713.5996964840365,2.131342906074672,0.0,470.52724874889134,0.5121621250000317,100,mac,phase-2,with +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474,100,mac,phase-2,with +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845,100,mac,phase-2,with +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164,100,mac,phase-2,with +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658,100,mac,phase-2,with +25,1748.3943619242975,2.1746198531396734,0.0,480.08131101578823,0.5225615840026876,100,mac,phase-2,with +26,1699.874186562006,2.114271376320903,0.0,466.7584418130943,0.508059832998697,100,mac,phase-2,with +27,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921,100,mac,phase-2,with +28,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897,100,mac,phase-2,with +29,1702.7397365525153,2.1178354932245216,0.0,467.5452763088947,0.5089162910007872,100,mac,phase-2,with +0,1715.2126246543712,1.878141390259372,0.0,473.25809210624993,0.5145006249986182,100,mac,phase-3,with +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795,100,mac,phase-3,with +2,1708.659320247143,1.870965584721755,0.0,471.44991725015507,0.5125348750007106,100,mac,phase-3,with +3,1714.9127245161242,1.877813002481384,0.0,473.1753442502645,0.5144106660009129,100,mac,phase-3,with +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142,100,mac,phase-3,with +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918,100,mac,phase-3,with +6,1705.8313331065865,1.8678689658982608,0.0,470.6696246033992,0.5116865829986637,100,mac,phase-3,with +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889,100,mac,phase-3,with +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202,100,mac,phase-3,with +9,1701.5545581455729,1.8631859382924425,0.0,469.4895852722259,0.5104037080018315,100,mac,phase-3,with +10,1696.2627985811607,1.8573915122706384,0.0,468.02949338662467,0.5088163750006061,100,mac,phase-3,with +11,1708.47193391554,1.8707603984840295,0.0,471.3982139822882,0.512478666001698,100,mac,phase-3,with +12,1702.070178101452,1.8637505372038896,0.0,469.6318541157872,0.5105583750009828,100,mac,phase-3,with +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232,100,mac,phase-3,with +14,1713.0868103835694,1.8758136440006232,0.0,472.6715416159428,0.5138629590001074,100,mac,phase-3,with +15,1700.5874961044965,1.8621270146230455,0.0,469.2227554168893,0.5101136250013951,100,mac,phase-3,with +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033,100,mac,phase-3,with +17,1700.0421524930027,1.861529868593488,0.0,469.07228528076257,0.5099500420001277,100,mac,phase-3,with +18,1701.0918613432752,1.8626792897271016,0.0,469.36191888105583,0.5102649159998691,100,mac,phase-3,with +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436,100,mac,phase-3,with +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308,100,mac,phase-3,with +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339,100,mac,phase-3,with +22,1703.169756399106,1.8649545649045784,0.0,469.93524759586614,0.5108882079985051,100,mac,phase-3,with +23,1698.6667036618285,1.8600237653017555,0.0,468.69277414594774,0.5095374580014322,100,mac,phase-3,with +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047,100,mac,phase-3,with +25,1725.2339947819305,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259,100,mac,phase-3,with +26,1695.9577611438835,1.8570574991994344,0.0,467.9453280572003,0.5087248750023718,100,mac,phase-3,with +27,1697.33251321659,1.8585628395473195,0.0,468.32464694378984,0.5091372499991849,100,mac,phase-3,with +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549,100,mac,phase-3,with +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464,100,mac,phase-3,with +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695,100,mac,phase-4,with +1,1781.4314907183507,1.865233779826259,0.0,474.9351511882611,0.512870540998847,100,mac,phase-4,with +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603,100,mac,phase-4,with +3,1776.1253612297892,1.8596780388315792,0.0,473.5205206374909,0.511342916997819,100,mac,phase-4,with +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071,100,mac,phase-4,with +5,1779.3196350329554,1.863022578001748,0.0,474.37212392369514,0.5122625419971882,100,mac,phase-4,with +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342,100,mac,phase-4,with +7,1775.9211500186464,1.8594642210949857,0.0,473.4660772963107,0.5112841250011115,100,mac,phase-4,with +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882,100,mac,phase-4,with +9,1828.1563779527191,1.9141567041611,0.0,487.39215079702007,0.5263225419985247,100,mac,phase-4,with +10,1797.5348509506605,1.8820946760383848,0.0,479.2283568862738,0.5175066660012817,100,mac,phase-4,with +11,1782.1034613760824,1.8659373613989343,0.0,475.1143006462038,0.5130639999988489,100,mac,phase-4,with +12,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154,100,mac,phase-4,with +13,1779.8063525884374,1.863532191776092,0.0,474.5018843309874,0.5124026670018793,100,mac,phase-4,with +14,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311,100,mac,phase-4,with +15,1800.139363767342,1.8848217106231984,0.0,479.92272806743193,0.518256499999552,100,mac,phase-4,with +16,1768.3179047798128,1.8515033031872992,0.0,471.4390285740661,0.5090951659985876,100,mac,phase-4,with +17,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909,100,mac,phase-4,with +18,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675,100,mac,phase-4,with +19,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749,100,mac,phase-4,with +20,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233,100,mac,phase-4,with +21,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352,100,mac,phase-4,with +22,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055,100,mac,phase-4,with +23,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763,100,mac,phase-4,with +24,1776.934675683587,1.8605254251417416,0.0,473.7362863767159,0.5115759170003003,100,mac,phase-4,with +25,1775.9308478967102,1.8594743751816576,0.0,473.46866278062953,0.5112869170006888,100,mac,phase-4,with +26,1774.2983217244705,1.857765051540093,0.0,473.03342624839615,0.5108169160012039,100,mac,phase-4,with +27,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252,100,mac,phase-4,with +28,1781.2621633934934,1.8650564869874289,0.0,474.890007999174,0.5128217920027964,100,mac,phase-4,with +29,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208,100,mac,phase-4,with +0,1733.253563906018,2.0984102566650487,0.0,473.074934530376,0.5129103750005015,100,mac,phase-22,with +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176,100,mac,phase-22,with +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007,100,mac,phase-22,with +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304,100,mac,phase-22,with +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974,100,mac,phase-22,with +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383,100,mac,phase-22,with +6,1723.4772484529751,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127,100,mac,phase-22,with +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419,100,mac,phase-22,with +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738,0.5151641660013411,100,mac,phase-22,with +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893,100,mac,phase-22,with +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816,100,mac,phase-22,with +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324,100,mac,phase-22,with +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498,100,mac,phase-22,with +13,1732.2086720593063,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571,100,mac,phase-22,with +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222,100,mac,phase-22,with +15,1732.4094537173592,2.097388311858747,0.0,472.8445427512664,0.5126605830009794,100,mac,phase-22,with +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996,100,mac,phase-22,with +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384,100,mac,phase-22,with +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215,100,mac,phase-22,with +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757,100,mac,phase-22,with +20,1780.438908568486,2.155536469047305,0.0,485.95372174410915,0.5268736250000075,100,mac,phase-22,with +21,1738.3252572752317,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475,100,mac,phase-22,with +22,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968,100,mac,phase-22,with +23,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178,100,mac,phase-22,with +24,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871,100,mac,phase-22,with +25,1726.5571530732716,2.090303065964912,0.0,471.2472134269785,0.5109287500017672,100,mac,phase-22,with +26,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585,100,mac,phase-22,with +27,1724.678430716105,2.0880285399833696,0.0,470.7344341806953,0.5103727919995436,100,mac,phase-22,with +28,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824,100,mac,phase-22,with +29,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853,100,mac,phase-22,with +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037,100,mac,phase-25,with +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928,100,mac,phase-25,with +2,1699.015023621691,1.6596805935544503,0.0,467.7311848755153,0.5085318749988801,100,mac,phase-25,with +3,1726.676996415299,1.686702155333886,0.0,475.34640141619576,0.5168113750005432,100,mac,phase-25,with +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602,100,mac,phase-25,with +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556,100,mac,phase-25,with +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734,100,mac,phase-25,with +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054,100,mac,phase-25,with +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878,100,mac,phase-25,with +9,1707.556617845926,1.6680244386499228,0.0,470.0826473003213,0.5110884579989943,100,mac,phase-25,with +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489,100,mac,phase-25,with +11,1706.9871143093417,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469,100,mac,phase-25,with +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288,100,mac,phase-25,with +13,1700.5875280107632,1.661216692400863,0.0,468.16408825241115,0.5090025409990631,100,mac,phase-25,with +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047,100,mac,phase-25,with +15,1701.9577670717792,1.662555208627312,0.0,468.54130889534906,0.5094126670010155,100,mac,phase-25,with +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634,100,mac,phase-25,with +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211,100,mac,phase-25,with +18,1700.088466524394,1.6607291848436008,0.0,468.0266988726236,0.5088531669971417,100,mac,phase-25,with +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262,100,mac,phase-25,with +20,1700.4806187224335,1.6611122582030222,0.0,468.1346566067757,0.508970541999588,100,mac,phase-25,with +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707,100,mac,phase-25,with +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749,100,mac,phase-25,with +23,1732.7583505809405,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043,100,mac,phase-25,with +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133,100,mac,phase-25,with +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451,100,mac,phase-25,with +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454,100,mac,phase-25,with +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582,100,mac,phase-25,with +28,1703.033989709958,1.663606515297409,0.0,468.83758814111593,0.5097347910013923,100,mac,phase-25,with +29,1702.9419746789297,1.663516630535244,0.0,468.8122568174425,0.5097072499993374,100,mac,phase-25,with +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339,100,mac,phase-13,with +1,1714.765226996136,0.8643137448752406,0.0,469.821006012376,0.5111364580006921,100,mac,phase-13,with +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871,100,mac,phase-13,with +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353,100,mac,phase-13,with +4,1715.331632824615,0.8645992372184634,0.0,469.97619306186704,0.511305291998724,100,mac,phase-13,with +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863,100,mac,phase-13,with +6,1714.1556313455656,0.8640064830464437,0.0,469.6539855728995,0.5109547499996552,100,mac,phase-13,with +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976,100,mac,phase-13,with +8,1706.9988473425583,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914,100,mac,phase-13,with +9,1714.837774733343,0.8643503119839272,0.0,469.8408830488016,0.5111580829980085,100,mac,phase-13,with +10,1711.608911909124,0.8627228294135127,0.0,468.9562210808144,0.5101956250000512,100,mac,phase-13,with +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073,100,mac,phase-13,with +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134,100,mac,phase-13,with +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773,100,mac,phase-13,with +14,1723.523935681039,0.8687285021752712,0.0,472.220766201658,0.5137472499991418,100,mac,phase-13,with +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045,100,mac,phase-13,with +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471,100,mac,phase-13,with +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021,100,mac,phase-13,with +18,1711.1150571741512,0.8624739058706925,0.0,468.8209119873269,0.5100484169997799,100,mac,phase-13,with +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914,100,mac,phase-13,with +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916,100,mac,phase-13,with +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258,100,mac,phase-13,with +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475,100,mac,phase-13,with +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923,100,mac,phase-13,with +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017,100,mac,phase-13,with +25,1734.4994753767116,0.8742606354766979,0.0,475.2279061996989,0.5170188340016466,100,mac,phase-13,with +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984,100,mac,phase-13,with +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638,100,mac,phase-13,with +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264,100,mac,phase-13,with +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878,100,mac,phase-13,with +0,1704.031251704515,1.508941838063347,0.0,474.7466342955749,0.5159355420000793,100,mac,phase-14,with +1,1703.1359158085138,1.508149006481623,0.0,474.4971918614849,0.5156644579983549,100,mac,phase-14,with +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892,100,mac,phase-14,with +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993,100,mac,phase-14,with +4,1699.9833977413236,1.505357410727686,0.0,473.6188938018352,0.5147099590030848,100,mac,phase-14,with +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734,100,mac,phase-14,with +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086,100,mac,phase-14,with +7,1715.943482298202,1.5194902731988489,0.0,478.0654063988733,0.5195422500000859,100,mac,phase-14,with +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202,100,mac,phase-14,with +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601,100,mac,phase-14,with +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236,100,mac,phase-14,with +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794,100,mac,phase-14,with +12,1698.53539461143,1.504075185121696,0.0,473.21547713228824,0.5142715419970045,100,mac,phase-14,with +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858,100,mac,phase-14,with +14,1697.3195518477353,1.5029985405397317,0.0,472.8767408213671,0.5139034170024388,100,mac,phase-14,with +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179,100,mac,phase-14,with +16,1690.2733048896132,1.4967589972063555,0.0,470.91364183216854,0.511770000000979,100,mac,phase-14,with +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182,100,mac,phase-14,with +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302,100,mac,phase-14,with +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851,100,mac,phase-14,with +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124,100,mac,phase-14,with +21,1690.6414282331857,1.497084975215344,0.0,471.016201757752,0.5118814580018807,100,mac,phase-14,with +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229,100,mac,phase-14,with +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126,100,mac,phase-14,with +24,1690.3525720618825,1.4968291893184444,0.0,470.9357258304563,0.511794000001828,100,mac,phase-14,with +25,1680.0227915903563,1.4876820343493653,0.0,468.0578276070737,0.5086664159971406,100,mac,phase-14,with +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605,100,mac,phase-14,with +27,1688.493922067436,1.4951833305725255,0.0,470.4179020943516,0.5112312499986729,100,mac,phase-14,with +28,1697.0385398110468,1.5027497007260635,0.0,472.7984502862135,0.5138183339986426,100,mac,phase-14,with +29,1689.9230695070262,1.4964488592194929,0.0,470.8160655295461,0.5116639580010087,100,mac,phase-14,with +0,1662.7812272807057,2.154162194272734,0.0,465.3321749197454,0.5084949170013715,100,mac,phase-15,with +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157,100,mac,phase-15,with +2,1674.2807447957823,2.1690600205633683,0.0,468.55033459585,0.5120115829995484,100,mac,phase-15,with +3,1676.0206591942217,2.171314110131433,0.0,469.0372526208532,0.512543666001875,100,mac,phase-15,with +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335,100,mac,phase-15,with +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408,100,mac,phase-15,with +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195,100,mac,phase-15,with +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926,100,mac,phase-15,with +8,1676.5832374996228,2.1720429401764987,0.0,469.1946911233573,0.5127157080023608,100,mac,phase-15,with +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787,100,mac,phase-15,with +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531,100,mac,phase-15,with +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761,100,mac,phase-15,with +12,1674.719334293978,2.169628220937727,0.0,468.6730746182557,0.5121457079985703,100,mac,phase-15,with +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101,100,mac,phase-15,with +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844,100,mac,phase-15,with +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353,100,mac,phase-15,with +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996,100,mac,phase-15,with +17,1671.4410196159442,2.165381106870954,0.0,467.7556326396163,0.511143167001137,100,mac,phase-15,with +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402,100,mac,phase-15,with +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448,100,mac,phase-15,with +20,1673.6356021221727,2.1682242269336345,0.0,468.369790313464,0.5118142920000537,100,mac,phase-15,with +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956,100,mac,phase-15,with +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397,100,mac,phase-15,with +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555,100,mac,phase-15,with +24,1668.7934039933843,2.1619510744737207,0.0,467.0146928720848,0.5103335000021616,100,mac,phase-15,with +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461,100,mac,phase-15,with +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556,100,mac,phase-15,with +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112,100,mac,phase-15,with +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633,100,mac,phase-15,with +29,1665.1493914950968,2.157230192477653,0.0,465.9949097319805,0.5092191250005271,100,mac,phase-15,with +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022,100,mac,phase-12,with +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477,100,mac,phase-12,with +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489,100,mac,phase-12,with +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622,100,mac,phase-12,with +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736,100,mac,phase-12,with +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334,100,mac,phase-12,with +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919,100,mac,phase-12,with +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642,100,mac,phase-12,with +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257,100,mac,phase-12,with +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721,100,mac,phase-12,with +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471,100,mac,phase-12,with +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143,100,mac,phase-12,with +12,1709.5432022817854,1.65666515528454,0.0,475.6995660174179,0.5180120000004536,100,mac,phase-12,with +13,1684.754023901845,1.632642733391156,0.0,468.8016991594605,0.5105005830009759,100,mac,phase-12,with +14,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683,100,mac,phase-12,with +15,1680.4535893809157,1.6284753160284955,0.0,467.6050550310395,0.5091974999995728,100,mac,phase-12,with +16,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277,100,mac,phase-12,with +17,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582,100,mac,phase-12,with +18,1693.226188437825,1.6408528445821813,0.0,471.159173944312,0.5130677500019374,100,mac,phase-12,with +19,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046,100,mac,phase-12,with +20,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097,100,mac,phase-12,with +21,1681.29431533333,1.629290037404738,0.0,467.8389964547891,0.5094522500003222,100,mac,phase-12,with +22,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562,100,mac,phase-12,with +23,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328,100,mac,phase-12,with +24,1686.877702600274,1.6347007243772926,0.0,469.392636571194,0.5111440830005449,100,mac,phase-12,with +25,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942,100,mac,phase-12,with +26,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622,100,mac,phase-12,with +27,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196,100,mac,phase-12,with +28,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728,100,mac,phase-12,with +29,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667,100,mac,phase-12,with +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285,100,mac,phase-24,with +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228,100,mac,phase-24,with +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163,100,mac,phase-24,with +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576,100,mac,phase-24,with +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558,100,mac,phase-24,with +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698,100,mac,phase-24,with +6,1705.732973585949,1.300279235547624,0.0,470.9678072139933,0.5133861249996698,100,mac,phase-24,with +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658,100,mac,phase-24,with +8,1690.866381337352,1.2889464410812284,0.0,466.86301094137,0.5089116250019288,100,mac,phase-24,with +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358,100,mac,phase-24,with +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521,100,mac,phase-24,with +11,1704.729298359376,1.2995141345168324,0.0,470.69068369704553,0.513084041998809,100,mac,phase-24,with +12,1708.1326598617934,1.302108514974491,0.0,471.6303816033247,0.5141083749986137,100,mac,phase-24,with +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769,100,mac,phase-24,with +14,1710.3444845159795,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929,100,mac,phase-24,with +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019,100,mac,phase-24,with +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924,100,mac,phase-24,with +17,1689.277667739587,1.2877353656465649,0.0,466.4243532082916,0.5084334589992068,100,mac,phase-24,with +18,1706.946246334542,1.3012041126453189,0.0,471.3028024417377,0.5137512920009613,100,mac,phase-24,with +19,1708.998869357254,1.3027688259598698,0.0,471.869549628439,0.5143690839977353,100,mac,phase-24,with +20,1700.2184297275633,1.2960755020303545,0.0,469.4451933764304,0.5117263749998529,100,mac,phase-24,with +21,1704.764045228913,1.2995406220349015,0.0,470.7002776119237,0.5130945000018983,100,mac,phase-24,with +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248,100,mac,phase-24,with +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265,100,mac,phase-24,with +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966,100,mac,phase-24,with +25,1700.2915250526698,1.2961312225533927,0.0,469.4653756356212,0.5117483750000247,100,mac,phase-24,with +26,1705.0802389809708,1.29978165634483,0.0,470.7875814750531,0.5131896669990965,100,mac,phase-24,with +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194,100,mac,phase-24,with +28,1718.6114560769083,1.3100964951232272,0.0,474.5236689771976,0.5172622499994759,100,mac,phase-24,with +29,1692.044212804571,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484,100,mac,phase-24,with +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829,100,mac,phase-23,with +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254,100,mac,phase-23,with +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306,100,mac,phase-23,with +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439,100,mac,phase-23,with +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705,100,mac,phase-23,with +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659,100,mac,phase-23,with +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573,100,mac,phase-23,with +7,1692.6743412442531,1.2348953116578076,0.0,469.0599651361846,0.5122992920005345,100,mac,phase-23,with +8,1692.9432102016283,1.2350914657595289,0.0,469.13447188606534,0.5123806670017075,100,mac,phase-23,with +9,1690.9101016469,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765,100,mac,phase-23,with +10,1675.4391953781826,1.2223213626664713,0.0,464.283903538232,0.5070829590003996,100,mac,phase-23,with +11,1692.3177755698923,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009,100,mac,phase-23,with +12,1692.9842335608655,1.235121394466283,0.0,469.1458399413283,0.5123930829977326,100,mac,phase-23,with +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145,100,mac,phase-23,with +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459,100,mac,phase-23,with +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755,100,mac,phase-23,with +16,1699.368532235995,1.2397790774653328,0.0,470.9150041810212,0.5143253339992953,100,mac,phase-23,with +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365,100,mac,phase-23,with +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959,100,mac,phase-23,with +19,1687.3626306301558,1.2310201382860588,0.0,467.5880276614127,0.5106916670010833,100,mac,phase-23,with +20,1680.005011470021,1.2256523665981305,0.0,465.54914486946274,0.5084648339980049,100,mac,phase-23,with +21,1684.214949163509,1.2287237384464431,0.0,466.7157681115221,0.5097390000009909,100,mac,phase-23,with +22,1684.449402886166,1.228894784817181,0.0,466.780737995153,0.50980995899954,100,mac,phase-23,with +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316,100,mac,phase-23,with +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298,100,mac,phase-23,with +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991,100,mac,phase-23,with +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632,100,mac,phase-23,with +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746,100,mac,phase-23,with +28,1690.2974702999934,1.233161258796036,0.0,468.40130624647264,0.5115799159975722,100,mac,phase-23,with +29,1691.2523507598814,1.2338578945128875,0.0,468.6659148509223,0.5118689170012658,100,mac,phase-23,with +0,1732.06870553443,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916,100,mac,phase-8,with +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742,100,mac,phase-8,with +2,1714.7743044983763,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323,100,mac,phase-8,with +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244,100,mac,phase-8,with +4,1718.4740985032197,0.8668385565940498,0.0,470.1265571743345,0.51150675000099,100,mac,phase-8,with +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666,100,mac,phase-8,with +6,1723.3339429500195,0.8692899758788708,0.0,471.4560749949214,0.512953290999576,100,mac,phase-8,with +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181,100,mac,phase-8,with +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825,100,mac,phase-8,with +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474,100,mac,phase-8,with +10,1722.9278508751695,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269,100,mac,phase-8,with +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256,100,mac,phase-8,with +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189,100,mac,phase-8,with +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964,100,mac,phase-8,with +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105,100,mac,phase-8,with +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909,100,mac,phase-8,with +16,1717.170141592041,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535,100,mac,phase-8,with +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987,100,mac,phase-8,with +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623,100,mac,phase-8,with +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693,100,mac,phase-8,with +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156,100,mac,phase-8,with +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148,100,mac,phase-8,with +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023,100,mac,phase-8,with +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228,100,mac,phase-8,with +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297,100,mac,phase-8,with +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899,100,mac,phase-8,with +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371,100,mac,phase-8,with +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394,100,mac,phase-8,with +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368,100,mac,phase-8,with +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232,100,mac,phase-8,with +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989,100,mac,phase-1,with +1,1672.6596167167916,1.2258528268930255,0.0,466.5860908414723,0.5084176670025045,100,mac,phase-1,with +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325,100,mac,phase-1,with +3,1688.6244236034297,1.237553057745254,0.0,471.0394516817949,0.5132702920018346,100,mac,phase-1,with +4,1677.695815207165,1.2295437381187877,0.0,467.9909314574833,0.5099484580023272,100,mac,phase-1,with +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074,100,mac,phase-1,with +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681,100,mac,phase-1,with +7,1682.5739653539526,1.2331188194369973,0.0,469.3516847062496,0.5114312090008752,100,mac,phase-1,with +8,1682.5384603989162,1.2330927986919125,0.0,469.3417806480596,0.5114204169985896,100,mac,phase-1,with +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372,100,mac,phase-1,with +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728,100,mac,phase-1,with +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108,100,mac,phase-1,with +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387,100,mac,phase-1,with +13,1688.8170195135012,1.2376942067503771,0.0,471.0931760450152,0.5133288329998322,100,mac,phase-1,with +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376,100,mac,phase-1,with +15,1680.177795933706,1.2313627233202695,0.0,468.6832765545771,0.5107028750026075,100,mac,phase-1,with +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091,100,mac,phase-1,with +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639,100,mac,phase-1,with +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985,100,mac,phase-1,with +19,1676.2396122854952,1.2284765213041895,0.0,467.5847256628893,0.5095058340011747,100,mac,phase-1,with +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945,100,mac,phase-1,with +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434,100,mac,phase-1,with +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412,100,mac,phase-1,with +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696,100,mac,phase-1,with +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816,100,mac,phase-1,with +25,1681.8361980700215,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372,100,mac,phase-1,with +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078,100,mac,phase-1,with +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441,100,mac,phase-1,with +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516,100,mac,phase-1,with +29,1685.436887323359,1.235216987500778,0.0,470.1502928371205,0.5123014160017192,100,mac,phase-1,with +0,1687.6458569919555,2.580242062394627,0.0,472.3853552412604,0.5138203749993409,100,mac,phase-30,with +1,1687.0327514894282,2.579304685278597,0.0,472.21374218665426,0.5136337090007146,100,mac,phase-30,with +2,1686.205052807527,2.578039216610996,0.0,471.9820628125352,0.5133817079986329,100,mac,phase-30,with +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591,100,mac,phase-30,with +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687,100,mac,phase-30,with +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105,100,mac,phase-30,with +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369,100,mac,phase-30,with +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193,100,mac,phase-30,with +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238,100,mac,phase-30,with +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068,100,mac,phase-30,with +10,1674.4885384554077,2.560125835654476,0.0,468.7025182496253,0.5098145000010845,100,mac,phase-30,with +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899,100,mac,phase-30,with +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134,100,mac,phase-30,with +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728,100,mac,phase-30,with +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324,100,mac,phase-30,with +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712,100,mac,phase-30,with +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159,100,mac,phase-30,with +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711,100,mac,phase-30,with +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754,100,mac,phase-30,with +19,1677.22863718545,2.564315173108823,0.0,469.4694934456504,0.5106487500015646,100,mac,phase-30,with +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355,100,mac,phase-30,with +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079,100,mac,phase-30,with +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851,100,mac,phase-30,with +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817,100,mac,phase-30,with +24,1676.759911976087,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167,100,mac,phase-30,with +25,1671.2162151657417,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102,100,mac,phase-30,with +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082,100,mac,phase-30,with +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854,100,mac,phase-30,with +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082,100,mac,phase-30,with +29,1673.131765055717,2.5580514645531487,0.0,468.3227466987758,0.509401416999026,100,mac,phase-30,with +0,1700.6486549674398,2.245545305325342,0.0,471.7991233293258,0.5144435829970462,100,mac,phase-6,with +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695,100,mac,phase-6,with +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564,100,mac,phase-6,with +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469,100,mac,phase-6,with +4,1710.1798343752505,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836,100,mac,phase-6,with +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368,100,mac,phase-6,with +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275,100,mac,phase-6,with +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373,100,mac,phase-6,with +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759,100,mac,phase-6,with +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611,100,mac,phase-6,with +10,1701.928274758921,2.247234921935432,0.0,472.1541193445534,0.5148306660012167,100,mac,phase-6,with +11,1688.930690823444,2.230072844688242,0.0,468.5482900697967,0.5108989170003042,100,mac,phase-6,with +12,1689.5541088888797,2.230896009135527,0.0,468.7212406059824,0.5110874999991211,100,mac,phase-6,with +13,1689.9560382136613,2.2314267187007863,0.0,468.8327450619548,0.5112090829970839,100,mac,phase-6,with +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964,100,mac,phase-6,with +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932,100,mac,phase-6,with +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191,100,mac,phase-6,with +17,1694.2118484628922,2.237046112628863,0.0,470.0134048877091,0.5124964590031595,100,mac,phase-6,with +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352,0.5130589580003289,100,mac,phase-6,with +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098,100,mac,phase-6,with +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675,100,mac,phase-6,with +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118,100,mac,phase-6,with +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824,100,mac,phase-6,with +23,1685.693758534626,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166,100,mac,phase-6,with +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946,100,mac,phase-6,with +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076,100,mac,phase-6,with +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012,100,mac,phase-6,with +27,1689.4828952994171,2.2308019783426145,0.0,468.7014843153579,0.5110659579986532,100,mac,phase-6,with +28,1692.212939042672,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244,100,mac,phase-6,with +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817,100,mac,phase-6,with +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931,100,mac,phase-7,with +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782,100,mac,phase-7,with +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094,100,mac,phase-7,with +3,1677.138960668916,0.7677832068506811,0.0,468.280992421798,0.5116080420011713,100,mac,phase-7,with +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182,100,mac,phase-7,with +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746,100,mac,phase-7,with +6,1665.3088555742995,0.7623674623954318,0.0,464.9778592383964,0.5079992909995781,100,mac,phase-7,with +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733,100,mac,phase-7,with +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189,100,mac,phase-7,with +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731,100,mac,phase-7,with +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449,100,mac,phase-7,with +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992,100,mac,phase-7,with +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349,100,mac,phase-7,with +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844,100,mac,phase-7,with +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853,100,mac,phase-7,with +15,1664.589709954197,0.7620382422512794,0.0,464.777063578302,0.507779916999425,100,mac,phase-7,with +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326,100,mac,phase-7,with +17,1674.663941097445,0.7666501591377807,0.0,467.5899318428168,0.5108530420002353,100,mac,phase-7,with +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989,100,mac,phase-7,with +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774,100,mac,phase-7,with +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128,100,mac,phase-7,with +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219,100,mac,phase-7,with +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212,100,mac,phase-7,with +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154,100,mac,phase-7,with +24,1672.187420124346,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954,100,mac,phase-7,with +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098,100,mac,phase-7,with +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352,100,mac,phase-7,with +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691,100,mac,phase-7,with +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941,100,mac,phase-7,with +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253,100,mac,phase-7,with +0,1682.686158652221,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038,100,mac,phase-9,with +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148,100,mac,phase-9,with +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852,100,mac,phase-9,with +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037,100,mac,phase-9,with +4,1681.3039830173152,2.5037288286533763,0.0,471.3352977567602,0.5120100000021921,100,mac,phase-9,with +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298,100,mac,phase-9,with +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512,100,mac,phase-9,with +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499,100,mac,phase-9,with +8,1673.0168005136268,2.491387896881146,0.0,469.0120762141986,0.5094862920013838,100,mac,phase-9,with +9,1674.6516856505996,2.493822500671014,0.0,469.4703984929874,0.5099841660012316,100,mac,phase-9,with +10,1674.632669554008,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829,100,mac,phase-9,with +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715,100,mac,phase-9,with +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677,100,mac,phase-9,with +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509,100,mac,phase-9,with +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898,100,mac,phase-9,with +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368,100,mac,phase-9,with +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927,100,mac,phase-9,with +17,1674.9585800219634,2.4942795151625616,0.0,469.5564329944028,0.5100776250001218,100,mac,phase-9,with +18,1677.512503132874,2.498082712551933,0.0,470.27239758027656,0.5108553749996645,100,mac,phase-9,with +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581,100,mac,phase-9,with +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195,100,mac,phase-9,with +21,1692.7334251702798,2.520749084420836,0.0,474.5394176391704,0.5154906250027125,100,mac,phase-9,with +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146,100,mac,phase-9,with +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418,100,mac,phase-9,with +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472,100,mac,phase-9,with +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981,100,mac,phase-9,with +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635,100,mac,phase-9,with +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165,100,mac,phase-9,with +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868,100,mac,phase-9,with +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495,100,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n100/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n100/without_smell.csv new file mode 100644 index 000000000..e3c75e82a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n100/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,230.37705684275676,0.1002220374895983,0.0,57.32700544405026,0.0798094169986143,100,mac,phase-19,without +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.0802579999981389,100,mac,phase-19,without +2,230.45222653474644,0.1002547389217284,0.0,57.345710663228665,0.0798354580001614,100,mac,phase-19,without +3,234.36824654926497,0.1019583439164435,0.0,58.320172720205726,0.0811920829983137,100,mac,phase-19,without +4,233.63132613550113,0.1016377578895741,0.0,58.13679751283642,0.0809367920010117,100,mac,phase-19,without +5,230.04329489624553,0.1000768394270209,0.0,57.24395215225599,0.0796937920022173,100,mac,phase-19,without +6,229.48124985739312,0.0998323302743879,0.0,57.10409291694992,0.0794990829999733,100,mac,phase-19,without +7,226.653234646772,0.0986020452349646,0.0,56.400369874399765,0.0785193750016333,100,mac,phase-19,without +8,228.51640718827412,0.0994125901341099,0.0,56.8640015567109,0.079164833001414,100,mac,phase-19,without +9,230.26363694955552,0.1001726958887277,0.0,57.29878204835227,0.0797701249975944,100,mac,phase-19,without +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.0796512080014508,100,mac,phase-19,without +11,230.75483929485844,0.1003863860041437,0.0,57.42101279437023,0.0799402919983549,100,mac,phase-19,without +12,237.0613136942452,0.1031299218507447,0.0,58.99031529862598,0.082125041000836,100,mac,phase-19,without +13,217.22370668195057,0.0944998723964402,0.0,54.05392701076379,0.0752527080003346,100,mac,phase-19,without +14,232.80949090029833,0.1012802309601065,0.0,57.93229210918096,0.0806520840014854,100,mac,phase-19,without +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.0799674589979986,100,mac,phase-19,without +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.079922290999093,100,mac,phase-19,without +17,232.13462926046583,0.1009866426597154,0.0,57.76435960135722,0.080418291996466,100,mac,phase-19,without +18,230.06325854563016,0.1000855243092938,0.0,57.24891990491609,0.0797007080000185,100,mac,phase-19,without +19,232.48498623238729,0.1011390601358993,0.0,57.85154239773443,0.0805396659998223,100,mac,phase-19,without +20,232.0403330344357,0.100945620519621,0.0,57.74089493722326,0.0803856249985983,100,mac,phase-19,without +21,229.7789294389717,0.0999618312524528,0.0,57.17816747640304,0.0796022079994145,100,mac,phase-19,without +22,211.1731746677069,0.091867680394884,0.0,52.54831318587369,0.0731566249996831,100,mac,phase-19,without +23,230.30609579896037,0.100191166965905,0.0,57.30934750449767,0.0797848339971096,100,mac,phase-19,without +24,232.81899066563767,0.1012843636886474,0.0,57.93465602990636,0.0806553750007879,100,mac,phase-19,without +25,233.0890051681689,0.101401829394505,0.0,58.001846413656885,0.0807489159997203,100,mac,phase-19,without +26,234.19324993623465,0.101882214299406,0.0,58.27662657926024,0.0811314590027905,100,mac,phase-19,without +27,218.84922050226433,0.0952070274806834,0.0,54.45841971895093,0.0758158339995134,100,mac,phase-19,without +28,225.17289320878123,0.0979580451894349,0.0,56.03200184835682,0.0780065410035604,100,mac,phase-19,without +29,239.13076194741328,0.1040302038634338,0.0,59.50527660988416,0.0828419589997793,100,mac,phase-19,without +0,231.5143790184337,0.0,0.0,56.43350933210195,0.07974941700013,100,mac,phase-26,without +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043,100,mac,phase-26,without +2,232.4218146090488,0.0,0.0,56.654704123926024,0.0800620000009075,100,mac,phase-26,without +3,230.38631370178572,0.0,0.0,56.15853425347324,0.0793608340027276,100,mac,phase-26,without +4,231.63461351252136,0.0,0.0,56.46281746610602,0.0797908339991408,100,mac,phase-26,without +5,235.2815330550488,0.0,0.0,57.351783710488874,0.0810470830001577,100,mac,phase-26,without +6,233.1955921220685,0.0,0.0,56.843318674292625,0.0803285420006432,100,mac,phase-26,without +7,232.45447362177313,0.0,0.0,56.662665023405225,0.0800732500028971,100,mac,phase-26,without +8,230.41134935946187,0.0,0.0,56.16463689827264,0.0793694579988368,100,mac,phase-26,without +9,231.09162631947495,0.0,0.0,56.3304599298013,0.0796037920008529,100,mac,phase-26,without +10,230.3859508211676,0.0,0.0,56.15844579837669,0.0793607090017758,100,mac,phase-26,without +11,231.53022371058705,0.0,0.0,56.43737160444242,0.0797548749978886,100,mac,phase-26,without +12,231.62904551287176,0.0,0.0,56.461460220990105,0.0797889159985061,100,mac,phase-26,without +13,232.76678951884415,0.0,0.0,56.738794558713785,0.0801808329997584,100,mac,phase-26,without +14,232.42798352675112,0.0,0.0,56.656207847695576,0.0800641249988984,100,mac,phase-26,without +15,212.8962049068824,0.0,0.0,51.89517824905821,0.0733360419981181,100,mac,phase-26,without +16,231.8744757845807,0.0,0.0,56.52128584213549,0.079873459002556,100,mac,phase-26,without +17,232.59188239161537,0.0,0.0,56.69615952654616,0.0801205829993705,100,mac,phase-26,without +18,222.8084544625911,0.0,0.0,54.31136954644485,0.0767504999967059,100,mac,phase-26,without +19,231.10819677286457,0.0,0.0,56.33449911233486,0.0796095000005152,100,mac,phase-26,without +20,231.5256282331062,0.0,0.0,56.43625141950013,0.0797532920005323,100,mac,phase-26,without +21,233.51710189953573,0.0,0.0,56.92168929258419,0.0804392919999372,100,mac,phase-26,without +22,232.29395967478635,0.0,0.0,56.62353844576622,0.0800179580000985,100,mac,phase-26,without +23,230.4144962399048,0.0,0.0,56.165403975927155,0.079370542000106,100,mac,phase-26,without +24,230.3471199864287,0.0,0.0,56.14898046717825,0.0793473330013512,100,mac,phase-26,without +25,233.2193011110168,0.0,0.0,56.84909793281966,0.0803367090011306,100,mac,phase-26,without +26,231.8840296201605,0.0,0.0,56.523614667116625,0.0798767499982204,100,mac,phase-26,without +27,232.6371201920523,0.0,0.0,56.7071866076456,0.0801361659978283,100,mac,phase-26,without +28,230.12782273774823,0.0,0.0,56.09552498254536,0.0792717920012364,100,mac,phase-26,without +29,233.83401619952215,0.0,0.0,56.998939725933454,0.080548459001875,100,mac,phase-26,without +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887,100,mac,phase-21,without +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.0796174999995855,100,mac,phase-21,without +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.0796333750004123,100,mac,phase-21,without +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.0792222920026688,100,mac,phase-21,without +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.0796523749995685,100,mac,phase-21,without +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398,100,mac,phase-21,without +6,242.56584621915377,0.8435312498927311,0.0,63.60225624191192,0.0801713749970076,100,mac,phase-21,without +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.079640541000117,100,mac,phase-21,without +8,238.9652650419552,0.8310101023854332,0.0,62.65816171986166,0.0789813330011384,100,mac,phase-21,without +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.0791503330001432,100,mac,phase-21,without +10,240.76927408882528,0.8372836072083226,0.0,63.131183983507526,0.0795775830010825,100,mac,phase-21,without +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.0801001669969991,100,mac,phase-21,without +12,241.2736644165797,0.8390376422888429,0.0,63.26343822857876,0.0797442909970413,100,mac,phase-21,without +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.0799174999992828,100,mac,phase-21,without +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.0786007089991471,100,mac,phase-21,without +15,239.97114719201255,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209,100,mac,phase-21,without +16,241.24731757307185,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015,100,mac,phase-21,without +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.0798793750000186,100,mac,phase-21,without +18,243.9540875360528,0.8483589078315926,0.0,63.96626165050208,0.0806302079981833,100,mac,phase-21,without +19,221.8673952599436,0.7715516596882167,0.0,58.17499514049154,0.0733302500011632,100,mac,phase-21,without +20,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842,100,mac,phase-21,without +21,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.0790053750024526,100,mac,phase-21,without +22,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.0793227089998254,100,mac,phase-21,without +23,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263,100,mac,phase-21,without +24,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.0781720000013592,100,mac,phase-21,without +25,239.45074845867185,0.8326983880187502,0.0,62.78545845661377,0.0791417920008825,100,mac,phase-21,without +26,240.48108950298655,0.8362814351891312,0.0,63.0556202132605,0.0794823340002039,100,mac,phase-21,without +27,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.0798562079980911,100,mac,phase-21,without +28,225.32123524538264,0.7835625095471646,0.0,59.08061321985621,0.0744717919988033,100,mac,phase-21,without +29,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.0802619999994931,100,mac,phase-21,without +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552,100,mac,phase-28,without +1,224.81426846497675,0.0,0.0,54.81441236053592,0.0781784999999217,100,mac,phase-28,without +2,226.5529604006259,0.0,0.0,55.23834175513952,0.0787831250017916,100,mac,phase-28,without +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438,100,mac,phase-28,without +4,231.3919661313005,0.0,0.0,56.418192381824795,0.080465874998481,100,mac,phase-28,without +5,230.0666493794804,0.0,0.0,56.09505248755288,0.0800049999998009,100,mac,phase-28,without +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661,100,mac,phase-28,without +7,233.63006128224424,0.0,0.0,56.96388670693858,0.0812441659982141,100,mac,phase-28,without +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709,100,mac,phase-28,without +9,229.45976573945956,0.0,0.0,55.94708158550068,0.0797939580006641,100,mac,phase-28,without +10,230.95702356067633,0.0,0.0,56.312144302305065,0.0803146250000281,100,mac,phase-28,without +11,225.23255524946725,0.0,0.0,54.916399411654055,0.0783239579977816,100,mac,phase-28,without +12,228.58460950675445,0.0,0.0,55.733700224313345,0.0794896249972225,100,mac,phase-28,without +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901,100,mac,phase-28,without +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385,100,mac,phase-28,without +15,229.41974814640807,0.0,0.0,55.937324460820925,0.0797800420004932,100,mac,phase-28,without +16,227.88570495852065,0.0,0.0,55.56329270361139,0.0792465829981665,100,mac,phase-28,without +17,215.252720952998,0.0,0.0,52.48310744957511,0.0748535000020638,100,mac,phase-28,without +18,230.7855627294707,0.0,0.0,56.27033857187008,0.0802550000007613,100,mac,phase-28,without +19,231.2199071705155,0.0,0.0,56.37624081491051,0.0804060420014138,100,mac,phase-28,without +20,228.32004939956545,0.0,0.0,55.669194946651814,0.079397624998819,100,mac,phase-28,without +21,229.05094560519663,0.0,0.0,55.84740270135428,0.0796517920025507,100,mac,phase-28,without +22,228.0491398436106,0.0,0.0,55.60314154081637,0.0793034169983002,100,mac,phase-28,without +23,229.22600099912444,0.0,0.0,55.8900848612288,0.0797126670004217,100,mac,phase-28,without +24,229.4193886869974,0.0,0.0,55.93723681711175,0.0797799169995414,100,mac,phase-28,without +25,228.67255850144625,0.0,0.0,55.75514402543258,0.0795202090012026,100,mac,phase-28,without +26,230.46097335054304,0.0,0.0,56.19119690445779,0.0801421249998384,100,mac,phase-28,without +27,235.15859470850617,0.0,0.0,57.33657506923012,0.0817757089971564,100,mac,phase-28,without +28,229.769617397626,0.0,0.0,56.022629888894855,0.0799017080025805,100,mac,phase-28,without +29,230.28699632438577,0.0,0.0,56.148777673160055,0.0800816250011848,100,mac,phase-28,without +0,250.52289280398944,0.0,0.0,59.092548476657214,0.0806277090014191,100,mac,phase-17,without +1,248.85123961316407,0.0,0.0,58.69824420326574,0.0800897080007416,100,mac,phase-17,without +2,244.3419790590411,0.0,0.0,57.6346140698836,0.0786384580023877,100,mac,phase-17,without +3,252.30082937497212,0.0,0.0,59.5119225379787,0.0811999159996048,100,mac,phase-17,without +4,250.19896865042335,0.0,0.0,59.01614227068889,0.0805234580002434,100,mac,phase-17,without +5,253.6747113428116,0.0,0.0,59.83598947604204,0.0816420829978596,100,mac,phase-17,without +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064,100,mac,phase-17,without +7,252.90957722267183,0.0,0.0,59.65551205707467,0.0813958340004319,100,mac,phase-17,without +8,251.272752152766,0.0,0.0,59.26942293081308,0.0808690420017228,100,mac,phase-17,without +9,249.41985231096191,0.0,0.0,58.832366770002,0.0802727089976542,100,mac,phase-17,without +10,250.0490483597647,0.0,0.0,58.98077954617207,0.0804752080002799,100,mac,phase-17,without +11,251.42707217541096,0.0,0.0,59.30582345021072,0.0809187080012634,100,mac,phase-17,without +12,240.21308724761124,0.0,0.0,56.66070411382744,0.0773096250013622,100,mac,phase-17,without +13,248.47915764070973,0.0,0.0,58.61047868312323,0.0799699579984007,100,mac,phase-17,without +14,250.05034404295012,0.0,0.0,58.98108516782839,0.0804756249999627,100,mac,phase-17,without +15,249.42062599741175,0.0,0.0,58.83254926471747,0.0802729579991137,100,mac,phase-17,without +16,247.92867519320183,0.0,0.0,58.48063262254641,0.0797927919993526,100,mac,phase-17,without +17,248.99960632515408,0.0,0.0,58.73324047455442,0.0801374580005358,100,mac,phase-17,without +18,247.65887149478823,0.0,0.0,58.41699217855648,0.0797059590004209,100,mac,phase-17,without +19,249.7995685662133,0.0,0.0,58.92193304065166,0.0803949159999319,100,mac,phase-17,without +20,243.1112872649154,0.0,0.0,57.34432237761458,0.0782423749988083,100,mac,phase-17,without +21,248.4247855184506,0.0,0.0,58.5976535587028,0.0799524590001965,100,mac,phase-17,without +22,250.2673260892368,0.0,0.0,59.03226620739428,0.0805454580004152,100,mac,phase-17,without +23,246.058297611157,0.0,0.0,58.039453867584825,0.0791908339997462,100,mac,phase-17,without +24,248.9287911192123,0.0,0.0,58.71653680750362,0.0801146669982699,100,mac,phase-17,without +25,247.1768707710309,0.0,0.0,58.30329937062335,0.0795508330011216,100,mac,phase-17,without +26,248.9422544277273,0.0,0.0,58.71971249018146,0.0801189999983762,100,mac,phase-17,without +27,251.83799359197425,0.0,0.0,59.40275029572405,0.08105095800056,100,mac,phase-17,without +28,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028,100,mac,phase-17,without +29,248.2156956504442,0.0,0.0,58.548334101215886,0.0798851660001673,100,mac,phase-17,without +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987,100,mac,phase-10,without +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.0773468749976018,100,mac,phase-10,without +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888,100,mac,phase-10,without +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.0805877500024507,100,mac,phase-10,without +4,230.5488593174952,0.8730367524402673,0.0,57.25106395810215,0.0799453340005129,100,mac,phase-10,without +5,231.88767512675335,0.8781065472320985,0.0,57.58352550118184,0.0804095829989819,100,mac,phase-10,without +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.0736084160016616,100,mac,phase-10,without +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.0800470840003981,100,mac,phase-10,without +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.0799534170000697,100,mac,phase-10,without +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.0799360419987351,100,mac,phase-10,without +10,233.5648652940369,0.8844576897239966,0.0,58.00001388382362,0.0809911670003202,100,mac,phase-10,without +11,240.11716945213135,0.909269794022053,0.0,59.62711533875386,0.0832632500023464,100,mac,phase-10,without +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.0759962089978216,100,mac,phase-10,without +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.0802892920000886,100,mac,phase-10,without +14,218.27767539201488,0.8265685348372249,0.0,54.20382122682572,0.0756901670029037,100,mac,phase-10,without +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.0803171670013398,100,mac,phase-10,without +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995,100,mac,phase-10,without +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.079914791000192,100,mac,phase-10,without +18,230.85646606210256,0.874201590098262,0.0,57.32745042759757,0.0800519999975222,100,mac,phase-10,without +19,232.308354026224,0.8796995637462603,0.0,57.6879906225913,0.0805554580001626,100,mac,phase-10,without +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418,100,mac,phase-10,without +21,229.6469381758771,0.869621379634839,0.0,57.02709431836155,0.0796325829978741,100,mac,phase-10,without +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.0763502500012691,100,mac,phase-10,without +23,225.7957025466795,0.8550376152364794,0.0,56.07073592223835,0.0782971249973343,100,mac,phase-10,without +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.0806615000001329,100,mac,phase-10,without +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.0789183339984447,100,mac,phase-10,without +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.0803770000020449,100,mac,phase-10,without +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.0772449169999163,100,mac,phase-10,without +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.0793845000007422,100,mac,phase-10,without +29,229.30784864573525,0.8683373237385839,0.0,56.94288988362637,0.0795150000012654,100,mac,phase-10,without +0,230.518560530242,0.8053050149528105,0.0,57.34442793976471,0.080327292002039,100,mac,phase-11,without +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.0802637079978012,100,mac,phase-11,without +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285,100,mac,phase-11,without +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.0799302919986075,100,mac,phase-11,without +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.0747683330009749,100,mac,phase-11,without +5,232.19999083317265,0.811179007277459,0.0,57.762705143215726,0.0809132089998456,100,mac,phase-11,without +6,228.9162862924588,0.7997075503666682,0.0,56.94584181569317,0.0797689579994767,100,mac,phase-11,without +7,229.74181621161017,0.8025914976824808,0.0,57.151202897473325,0.0800566249999974,100,mac,phase-11,without +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.0797927080020599,100,mac,phase-11,without +9,229.8543330351777,0.8029845695552058,0.0,57.17919289041028,0.0800958330000867,100,mac,phase-11,without +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.0801922499995271,100,mac,phase-11,without +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447,100,mac,phase-11,without +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.0796882089998689,100,mac,phase-11,without +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.0825952499981212,100,mac,phase-11,without +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.0810012080000888,100,mac,phase-11,without +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.0809156670002266,100,mac,phase-11,without +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.0799027920002117,100,mac,phase-11,without +17,229.4390584890892,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617,100,mac,phase-11,without +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.0801350420006201,100,mac,phase-11,without +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.0804691659977834,100,mac,phase-11,without +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.0799565829984203,100,mac,phase-11,without +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.0798089579984662,100,mac,phase-11,without +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.0805384579980454,100,mac,phase-11,without +23,209.77332001183171,0.7328325589932985,0.0,52.18378513831446,0.0730983339999511,100,mac,phase-11,without +24,229.24403659660769,0.8008525295951359,0.0,57.027373878253634,0.0798831669999344,100,mac,phase-11,without +25,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.0800860000017564,100,mac,phase-11,without +26,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434,100,mac,phase-11,without +27,227.427249190088,0.7945056740265084,0.0,56.575424871304286,0.0792500829993514,100,mac,phase-11,without +28,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.079899625001417,100,mac,phase-11,without +29,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.0798307090008165,100,mac,phase-11,without +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.0789188749986351,100,mac,phase-29,without +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.0791977920016506,100,mac,phase-29,without +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.0790694999996048,100,mac,phase-29,without +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.0798704169974371,100,mac,phase-29,without +4,232.7516641096096,1.0435784766268297,0.0,58.70970526571582,0.0802916249995178,100,mac,phase-29,without +5,230.0622758174019,1.0315201837343737,0.0,58.03132904621767,0.0793638750001264,100,mac,phase-29,without +6,230.98301627009252,1.0356484675112625,0.0,58.26357830127876,0.0796814999994239,100,mac,phase-29,without +7,226.34355984443872,1.0148467392504483,0.0,57.09331333073491,0.0780810409996775,100,mac,phase-29,without +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.0827262089987925,100,mac,phase-29,without +9,232.50767840573172,1.0424845285764657,0.0,58.64816186572117,0.0802074580024054,100,mac,phase-29,without +10,230.61547089220113,1.0340005203439735,0.0,58.170867983222266,0.0795547090019681,100,mac,phase-29,without +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.0818103749988949,100,mac,phase-29,without +12,223.25292728760996,1.0009894049632495,0.0,56.31372652438411,0.0770148750016233,100,mac,phase-29,without +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.079476541999611,100,mac,phase-29,without +14,231.05210405201868,1.035958233383364,0.0,58.281005129696354,0.0797053329988557,100,mac,phase-29,without +15,230.8566737288988,1.0350819909742357,0.0,58.23170942771182,0.0796379160019569,100,mac,phase-29,without +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.0801497499996912,100,mac,phase-29,without +17,235.03425108209285,1.0538128121991437,0.0,59.28546917662278,0.0810790420000557,100,mac,phase-29,without +18,212.5300383012911,0.9529116556754448,0.0,53.608965403160504,0.0733158330003789,100,mac,phase-29,without +19,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.0816356670002278,100,mac,phase-29,without +20,233.53797138226943,1.0471040082224985,0.0,58.90804484967861,0.0805628749985771,100,mac,phase-29,without +21,230.25214908541847,1.032371510218104,0.0,58.07922302646367,0.0794293749968346,100,mac,phase-29,without +22,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.0800244170022779,100,mac,phase-29,without +23,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.0798051670026325,100,mac,phase-29,without +24,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.0763507919982657,100,mac,phase-29,without +25,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.0793419999972684,100,mac,phase-29,without +26,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.0790835829975549,100,mac,phase-29,without +27,236.30393803482497,1.059505652166557,0.0,59.60573733478951,0.0815170419991773,100,mac,phase-29,without +28,233.44375945039985,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887,100,mac,phase-29,without +29,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058,100,mac,phase-29,without +0,212.6893336470748,0.6736489116377261,0.0,53.279504829529245,0.0732918749999953,100,mac,phase-16,without +1,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.0793974170010187,100,mac,phase-16,without +2,231.44524097492229,0.7330543192410438,0.0,57.97793252179165,0.0797550839997711,100,mac,phase-16,without +3,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.0800826669983507,100,mac,phase-16,without +4,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.0800887080004031,100,mac,phase-16,without +5,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297,100,mac,phase-16,without +6,232.4248898509369,0.7361571518457545,0.0,58.22333837325513,0.0800926669980981,100,mac,phase-16,without +7,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.0803107920000911,100,mac,phase-16,without +8,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.0799042079997889,100,mac,phase-16,without +9,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.0808812920004129,100,mac,phase-16,without +10,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859,100,mac,phase-16,without +11,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.0794993339986831,100,mac,phase-16,without +12,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.0802035840024473,100,mac,phase-16,without +13,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.0801895829972636,100,mac,phase-16,without +14,232.42766991836817,0.7361659571269938,0.0,58.22403479095315,0.0800936249979713,100,mac,phase-16,without +15,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.0797295000011217,100,mac,phase-16,without +16,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.0799505420000059,100,mac,phase-16,without +17,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.0796424159998423,100,mac,phase-16,without +18,239.55219725510383,0.7587314050694335,0.0,60.008756582764285,0.0825487079964659,100,mac,phase-16,without +19,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.0812833330019202,100,mac,phase-16,without +20,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.0804598750000877,100,mac,phase-16,without +21,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.0804541249999601,100,mac,phase-16,without +22,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.0794215829992026,100,mac,phase-16,without +23,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.080049083000631,100,mac,phase-16,without +24,232.1192158874564,0.7351889935968963,0.0,58.14676585720907,0.0799873329997353,100,mac,phase-16,without +25,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.0798464580002473,100,mac,phase-16,without +26,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.0792702500002633,100,mac,phase-16,without +27,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.0836044580028101,100,mac,phase-16,without +28,212.9931909855094,0.6746113161072859,0.0,53.35562227393988,0.0733965829967928,100,mac,phase-16,without +29,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.0798420829996757,100,mac,phase-16,without +0,226.42116177213327,0.0,0.0,56.03535537217832,0.0791302920006273,100,mac,phase-20,without +1,224.91178830861125,0.0,0.0,55.661811319335285,0.0786027920003107,100,mac,phase-20,without +2,228.6300203842071,0.0,0.0,56.582010006072565,0.0799022499995771,100,mac,phase-20,without +3,229.0332362707683,0.0,0.0,56.68179902454736,0.0800431669995305,100,mac,phase-20,without +4,228.41553770137455,0.0,0.0,56.52892921954344,0.0798272920001181,100,mac,phase-20,without +5,244.43862004235896,0.0,0.0,60.494367370763285,0.0854270830022869,100,mac,phase-20,without +6,231.42689083939575,0.0,0.0,57.27418748921862,0.0808797079989744,100,mac,phase-20,without +7,219.32257694174305,0.0,0.0,54.27857733739913,0.0766494589988724,100,mac,phase-20,without +8,226.24316157257405,0.0,0.0,55.99130337473889,0.0790680840000277,100,mac,phase-20,without +9,229.2636968600091,0.0,0.0,56.73883406895891,0.0801237090017821,100,mac,phase-20,without +10,230.3898811711504,0.0,0.0,57.01754537666294,0.080517291000433,100,mac,phase-20,without +11,230.30606873637544,0.0,0.0,56.99680323608533,0.0804879999996046,100,mac,phase-20,without +12,228.31634253998695,0.0,0.0,56.504380117878,0.0797926250015734,100,mac,phase-20,without +13,228.8224476250095,0.0,0.0,56.62963244885686,0.0799695000023348,100,mac,phase-20,without +14,224.49235988305836,0.0,0.0,55.5580099754366,0.0784562089975224,100,mac,phase-20,without +15,216.08373905100171,0.0,0.0,53.477020491828235,0.075517541001318,100,mac,phase-20,without +16,226.49722560636775,0.0,0.0,56.05417986697792,0.0791568749991711,100,mac,phase-20,without +17,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319,100,mac,phase-20,without +18,227.09393887275,0.0,0.0,56.20185616929578,0.0793654159970174,100,mac,phase-20,without +19,228.4411698641868,0.0,0.0,56.53527274035617,0.0798362499990616,100,mac,phase-20,without +20,228.40921978706487,0.0,0.0,56.52736564407734,0.0798250839980028,100,mac,phase-20,without +21,228.2586401211186,0.0,0.0,56.490099758560795,0.0797724590011057,100,mac,phase-20,without +22,229.08092389643008,0.0,0.0,56.693600894257315,0.0800598330024513,100,mac,phase-20,without +23,228.80122768941447,0.0,0.0,56.62438087862935,0.0799620840007264,100,mac,phase-20,without +24,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063,100,mac,phase-20,without +25,233.76201033495235,0.0,0.0,57.85208952693407,0.0816957919996639,100,mac,phase-20,without +26,228.461082144718,0.0,0.0,56.540200688376146,0.0798432089977723,100,mac,phase-20,without +27,227.8610268005468,0.0,0.0,56.39169727910804,0.0796335000013641,100,mac,phase-20,without +28,227.20291135293743,0.0,0.0,56.228824989724494,0.0794034999998984,100,mac,phase-20,without +29,228.72158427175552,0.0,0.0,56.60467049830692,0.0799342499994963,100,mac,phase-20,without +0,233.25053223547215,0.0,0.0,56.63698268361321,0.0794133329982287,100,mac,phase-18,without +1,221.60881151463116,0.0,0.0,53.81018555455842,0.0754497499983699,100,mac,phase-18,without +2,238.10873630723785,0.0,0.0,57.81663281023447,0.0810673750020214,100,mac,phase-18,without +3,231.07861771633884,0.0,0.0,56.10960688801906,0.0786738750030053,100,mac,phase-18,without +4,229.07742623183637,0.0,0.0,55.6236853925005,0.077992541999265,100,mac,phase-18,without +5,234.276462541354,0.0,0.0,56.886095071104634,0.0797626249986933,100,mac,phase-18,without +6,236.55130141861645,0.0,0.0,57.43846255710658,0.0805371249989548,100,mac,phase-18,without +7,235.73072929591643,0.0,0.0,57.23921444110614,0.0802577499998733,100,mac,phase-18,without +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205,100,mac,phase-18,without +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879,100,mac,phase-18,without +10,233.68327444202225,0.0,0.0,56.74205945503127,0.0795606659994518,100,mac,phase-18,without +11,230.57134184737788,0.0,0.0,55.98643214397538,0.0785011659972951,100,mac,phase-18,without +12,233.56836056947228,0.0,0.0,56.71415651758738,0.0795215420002932,100,mac,phase-18,without +13,237.12197023826567,0.0,0.0,57.577030129693824,0.080731417001516,100,mac,phase-18,without +14,234.29359506112613,0.0,0.0,56.890255122601026,0.0797684579993074,100,mac,phase-18,without +15,234.53138547652537,0.0,0.0,56.9479944619724,0.0798494169976038,100,mac,phase-18,without +16,234.16852151095043,0.0,0.0,56.859885251940554,0.079725874998985,100,mac,phase-18,without +17,234.93438883615585,0.0,0.0,57.04585016280221,0.0799866250017657,100,mac,phase-18,without +18,234.65144234374125,0.0,0.0,56.977146201282,0.079890291999618,100,mac,phase-18,without +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866,100,mac,phase-18,without +20,229.93275390578643,0.0,0.0,55.83137271562917,0.0782837500009918,100,mac,phase-18,without +21,234.6409155169552,0.0,0.0,56.974590118341126,0.0798867079975025,100,mac,phase-18,without +22,237.23517173824405,0.0,0.0,57.60451727552191,0.0807699580000189,100,mac,phase-18,without +23,235.77833496092907,0.0,0.0,57.250773862639385,0.0802739579994522,100,mac,phase-18,without +24,233.97001868432088,0.0,0.0,56.81168557133654,0.0796582919974753,100,mac,phase-18,without +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417,100,mac,phase-18,without +26,186.94272839226807,0.0,0.0,45.39270272743291,0.063647208000475,100,mac,phase-18,without +27,231.6775567969512,0.0,0.0,56.255038934891886,0.0788777920024585,100,mac,phase-18,without +28,234.7314802516568,0.0,0.0,56.99658069329023,0.0799175419997482,100,mac,phase-18,without +29,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256,100,mac,phase-18,without +0,228.4317049341564,0.0,0.0,55.90521754742971,0.07943662499747,100,mac,phase-27,without +1,224.63081830801715,0.0,0.0,54.975007821206816,0.0781148749993008,100,mac,phase-27,without +2,229.29176212320093,0.0,0.0,56.115703584254696,0.0797357080009533,100,mac,phase-27,without +3,230.26313272867944,0.0,0.0,56.35343190237108,0.0800735000011627,100,mac,phase-27,without +4,230.50408894930908,0.0,0.0,56.412402306403166,0.0801572919990576,100,mac,phase-27,without +5,231.4912756090507,0.0,0.0,56.654001365468474,0.080500583997491,100,mac,phase-27,without +6,231.25858687418443,0.0,0.0,56.597054303994305,0.0804196669996599,100,mac,phase-27,without +7,215.66143327236227,0.0,0.0,52.7798859933087,0.0749957910011289,100,mac,phase-27,without +8,233.34570857816615,0.0,0.0,57.10784589022658,0.081145459000254,100,mac,phase-27,without +9,234.07839758501584,0.0,0.0,57.28716048376931,0.0814002499973867,100,mac,phase-27,without +10,232.5652090520479,0.0,0.0,56.91683039254912,0.0808740419997775,100,mac,phase-27,without +11,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632,100,mac,phase-27,without +12,229.16762905823128,0.0,0.0,56.08532388716335,0.079692540999531,100,mac,phase-27,without +13,231.3745703445235,0.0,0.0,56.62543951060597,0.0804599999974016,100,mac,phase-27,without +14,230.06686980122603,0.0,0.0,56.305399508361056,0.0800052499980665,100,mac,phase-27,without +15,232.03033867738873,0.0,0.0,56.78592892830791,0.0806880419986555,100,mac,phase-27,without +16,235.10392526784705,0.0,0.0,57.53814293047527,0.0817568750026112,100,mac,phase-27,without +17,233.6283588093202,0.0,0.0,57.177020275047866,0.0812437499989755,100,mac,phase-27,without +18,228.53918224908057,0.0,0.0,55.93152100068275,0.0794739999982994,100,mac,phase-27,without +19,230.63636872152335,0.0,0.0,56.44477578732998,0.0802032920000783,100,mac,phase-27,without +20,230.2772722892251,0.0,0.0,56.35689234674573,0.0800784170023689,100,mac,phase-27,without +21,230.43650836221164,0.0,0.0,56.3958629760823,0.0801337909979338,100,mac,phase-27,without +22,228.8680844073801,0.0,0.0,56.01201484770305,0.0795883750033681,100,mac,phase-27,without +23,222.30861533511248,0.0,0.0,54.40668363684307,0.0773073340023984,100,mac,phase-27,without +24,229.35538580934664,0.0,0.0,56.131274522694135,0.0797578329984389,100,mac,phase-27,without +25,231.67831058690103,0.0,0.0,56.69977535786903,0.0805656250013271,100,mac,phase-27,without +26,217.02748644269255,0.0,0.0,53.114206921704714,0.0754708329986897,100,mac,phase-27,without +27,229.4719703058166,0.0,0.0,56.15980682139448,0.079798375001701,100,mac,phase-27,without +28,230.24671853567145,0.0,0.0,56.349414775977685,0.0800677920015004,100,mac,phase-27,without +29,232.43436710389943,0.0,0.0,56.88480879739587,0.080828541998926,100,mac,phase-27,without +0,211.7681052623423,0.0,0.0,51.544369107950445,0.0730265000020153,100,mac,phase-5,without +1,231.74900516849095,0.0,0.0,56.40772130442817,0.0799167500008479,100,mac,phase-5,without +2,231.44620836593853,0.0,0.0,56.3340205451182,0.0798123329986992,100,mac,phase-5,without +3,233.38067208769257,0.0,0.0,56.80486912723355,0.0804794169998786,100,mac,phase-5,without +4,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277,100,mac,phase-5,without +5,230.28251252118744,0.0,0.0,56.05077690898644,0.0794110419992648,100,mac,phase-5,without +6,231.06523660858215,0.0,0.0,56.24129199727312,0.0796809580024273,100,mac,phase-5,without +7,232.49512115383507,0.0,0.0,56.58932597855168,0.0801740419992711,100,mac,phase-5,without +8,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101,100,mac,phase-5,without +9,224.10794249743364,0.0,0.0,54.54788620694715,0.0772817920005763,100,mac,phase-5,without +10,233.06518831792772,0.0,0.0,56.72808035936796,0.0803706250007962,100,mac,phase-5,without +11,230.32105483741717,0.0,0.0,56.06015811099304,0.0794243330019526,100,mac,phase-5,without +12,231.99791348728908,0.0,0.0,56.46830560366566,0.0800025839998852,100,mac,phase-5,without +13,231.9559841150949,0.0,0.0,56.4580999920408,0.0799881249986356,100,mac,phase-5,without +14,231.27282163561787,0.0,0.0,56.291818204898,0.0797525420020974,100,mac,phase-5,without +15,232.3729636964068,0.0,0.0,56.55959284632588,0.0801319169986527,100,mac,phase-5,without +16,230.21448714015344,0.0,0.0,56.03421952729583,0.0793875840026885,100,mac,phase-5,without +17,232.06509211751913,0.0,0.0,56.48465688616146,0.0800257500013685,100,mac,phase-5,without +18,233.97236945534013,0.0,0.0,56.94888830085012,0.0806834590002836,100,mac,phase-5,without +19,214.36216993645792,0.0,0.0,52.17576460014163,0.0739210419997107,100,mac,phase-5,without +20,232.36365799337193,0.0,0.0,56.557327837667266,0.0801287080030306,100,mac,phase-5,without +21,232.1677971782116,0.0,0.0,56.509655303893105,0.0800611670019861,100,mac,phase-5,without +22,231.68605456379217,0.0,0.0,56.392399123592,0.0798950419994071,100,mac,phase-5,without +23,230.5801127299852,0.0,0.0,56.123212817075014,0.0795136669985367,100,mac,phase-5,without +24,231.682548612676,0.0,0.0,56.39154577488691,0.079893833000824,100,mac,phase-5,without +25,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836,100,mac,phase-5,without +26,224.88571357316405,0.0,0.0,54.73719573190735,0.0775499999981548,100,mac,phase-5,without +27,230.4003201673142,0.0,0.0,56.07945129688906,0.0794516670030134,100,mac,phase-5,without +28,232.91258211809028,0.0,0.0,56.69093600147309,0.0803180000002612,100,mac,phase-5,without +29,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247,100,mac,phase-5,without +0,227.44231616412424,0.0,0.0,55.812647893416646,0.0788156249982421,100,mac,phase-2,without +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113,100,mac,phase-2,without +2,232.46123844002852,0.0,0.0,57.04425398375972,0.0805548329990415,100,mac,phase-2,without +3,231.72020051948184,0.0,0.0,56.86240880546275,0.0802980410007876,100,mac,phase-2,without +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412,100,mac,phase-2,without +5,228.2878413970284,0.0,0.0,56.02013347879481,0.0791086250028456,100,mac,phase-2,without +6,233.16163633716695,0.0,0.0,57.216126403446424,0.0807975420029833,100,mac,phase-2,without +7,233.40656160322865,0.0,0.0,57.2762292368393,0.0808824159976211,100,mac,phase-2,without +8,229.68887379156396,0.0,0.0,56.36393637810691,0.0795941249998577,100,mac,phase-2,without +9,231.72140676401816,0.0,0.0,56.86270480887458,0.0802984590009145,100,mac,phase-2,without +10,230.73183059687105,0.0,0.0,56.619870198709755,0.0799555410012544,100,mac,phase-2,without +11,230.14337967589475,0.0,0.0,56.47546873196024,0.0797516250022454,100,mac,phase-2,without +12,228.8957740192038,0.0,0.0,56.16931560970449,0.079319291999127,100,mac,phase-2,without +13,231.420685462694,0.0,0.0,56.78891004461117,0.0801942499965662,100,mac,phase-2,without +14,226.5801978801324,0.0,0.0,55.60109049706921,0.0785168750007869,100,mac,phase-2,without +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736,100,mac,phase-2,without +16,231.71876053022535,0.0,0.0,56.86205544284009,0.0802975420010625,100,mac,phase-2,without +17,230.5897102165952,0.0,0.0,56.584994917466624,0.0799062920013966,100,mac,phase-2,without +18,230.15408003990945,0.0,0.0,56.47809452147538,0.0797553330012306,100,mac,phase-2,without +19,231.50172891975,0.0,0.0,56.8087975044692,0.0802223339996999,100,mac,phase-2,without +20,231.60729837620207,0.0,0.0,56.834703461639485,0.080258917001629,100,mac,phase-2,without +21,232.95806964037587,0.0,0.0,57.166172654458805,0.0807270000004791,100,mac,phase-2,without +22,230.15576242448788,0.0,0.0,56.478507366102015,0.0797559159982483,100,mac,phase-2,without +23,231.49847956893817,0.0,0.0,56.808000138016894,0.0802212080016033,100,mac,phase-2,without +24,212.7223396474506,0.0,0.0,52.20047545259599,0.0737147090003418,100,mac,phase-2,without +25,232.94869093924265,0.0,0.0,57.163871191156474,0.0807237499975599,100,mac,phase-2,without +26,232.1919025824176,0.0,0.0,56.97816097327938,0.0804614999979094,100,mac,phase-2,without +27,231.04902374637277,0.0,0.0,56.69770703165235,0.0800654579979891,100,mac,phase-2,without +28,233.78796274238013,0.0,0.0,57.36982223151427,0.0810145830000692,100,mac,phase-2,without +29,229.2454318904766,0.0,0.0,56.2551190432152,0.0794404590014892,100,mac,phase-2,without +0,233.03169757350443,0.0,0.0,57.14590514588489,0.080589625002176,100,mac,phase-3,without +1,230.56252454563105,0.0,0.0,56.540394697697366,0.0797357080009533,100,mac,phase-3,without +2,229.26155447947497,0.0,0.0,56.2213603655772,0.0792857919987,100,mac,phase-3,without +3,228.48962291036645,0.0,0.0,56.03206110420322,0.0790188339997257,100,mac,phase-3,without +4,230.6690331650355,0.0,0.0,56.56651359707923,0.0797725420015922,100,mac,phase-3,without +5,220.39776413510504,0.0,0.0,54.04771048220629,0.0762204169986944,100,mac,phase-3,without +6,220.29306275915428,0.0,0.0,54.022034769584245,0.0761842079991765,100,mac,phase-3,without +7,231.44915659141645,0.0,0.0,56.757821731510106,0.0800423330001649,100,mac,phase-3,without +8,233.91712382953764,0.0,0.0,57.36303648624681,0.0808958330017048,100,mac,phase-3,without +9,232.205545892069,0.0,0.0,56.94330959294072,0.080303915998229,100,mac,phase-3,without +10,230.29842747184577,0.0,0.0,56.47563069140557,0.0796443750004982,100,mac,phase-3,without +11,227.92781120901137,0.0,0.0,55.89428912498413,0.0788245420008024,100,mac,phase-3,without +12,229.44806166938773,0.0,0.0,56.26709715715861,0.0793502919987076,100,mac,phase-3,without +13,229.2592643478582,0.0,0.0,56.22079876110234,0.0792849999997997,100,mac,phase-3,without +14,229.88360367044356,0.0,0.0,56.37390426597064,0.0795009159992332,100,mac,phase-3,without +15,229.66167746902968,0.0,0.0,56.31948173981888,0.0794241670009796,100,mac,phase-3,without +16,233.4874835436179,0.0,0.0,57.25767664343713,0.0807472499982395,100,mac,phase-3,without +17,213.5309742305619,0.0,0.0,52.363781091364665,0.0738456670005689,100,mac,phase-3,without +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171,100,mac,phase-3,without +19,231.8804855552513,0.0,0.0,56.86359568548564,0.0801915000010922,100,mac,phase-3,without +20,230.5933690691165,0.0,0.0,56.54795863956332,0.0797463749986491,100,mac,phase-3,without +21,232.7323000327177,0.0,0.0,57.07248447545736,0.0804860839998582,100,mac,phase-3,without +22,231.33204741758416,0.0,0.0,56.729103279002494,0.0800018329973681,100,mac,phase-3,without +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533,100,mac,phase-3,without +24,229.07625018644575,0.0,0.0,56.17591855803412,0.0792217079979309,100,mac,phase-3,without +25,230.23830565490223,0.0,0.0,56.460887136412715,0.0796235830021032,100,mac,phase-3,without +26,212.0825304729018,0.0,0.0,52.008582075753125,0.073344749998796,100,mac,phase-3,without +27,231.3146979161939,0.0,0.0,56.724848694878965,0.0799958329989749,100,mac,phase-3,without +28,227.2761174880526,0.0,0.0,55.734475554770874,0.0785991659977298,100,mac,phase-3,without +29,231.517470276152,0.0,0.0,56.77457416213956,0.0800659580017963,100,mac,phase-3,without +0,219.4740765737124,0.0,0.0,54.50948419192974,0.0763789999982691,100,mac,phase-4,without +1,224.61151246000796,0.0,0.0,55.78543889511322,0.0781668750023527,100,mac,phase-4,without +2,228.51035754085143,0.0,0.0,56.75377209244936,0.0795237089987495,100,mac,phase-4,without +3,229.6376006964406,0.0,0.0,57.03373883808645,0.079915999998775,100,mac,phase-4,without +4,230.7343159231135,0.0,0.0,57.30612354175918,0.0802976669983763,100,mac,phase-4,without +5,226.04921290785495,0.0,0.0,56.14251209053602,0.0786672079993877,100,mac,phase-4,without +6,230.46205301041525,0.0,0.0,57.23850320514603,0.0802029169972229,100,mac,phase-4,without +7,231.10774857892207,0.0,0.0,57.39887081180731,0.0804276250019029,100,mac,phase-4,without +8,236.0373364930903,0.0,0.0,58.62320353790871,0.0821431669974117,100,mac,phase-4,without +9,230.05844876046567,0.0,0.0,57.138262393903645,0.0800624590010556,100,mac,phase-4,without +10,229.0068702685671,0.0,0.0,56.87708803529338,0.079696500000864,100,mac,phase-4,without +11,231.19179807051853,0.0,0.0,57.419745689173425,0.0804568749990721,100,mac,phase-4,without +12,231.6291686756857,0.0,0.0,57.52837285125362,0.0806090839978423,100,mac,phase-4,without +13,228.26024347869043,0.0,0.0,56.69165273543744,0.0794366670015733,100,mac,phase-4,without +14,229.64203161645344,0.0,0.0,57.03483931960193,0.0799175419997482,100,mac,phase-4,without +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065,100,mac,phase-4,without +16,230.78484044554267,0.0,0.0,57.318672019919575,0.0803152499975112,100,mac,phase-4,without +17,228.86259822421837,0.0,0.0,56.84125603707502,0.0796462920006888,100,mac,phase-4,without +18,215.11787003326216,0.0,0.0,53.42755882169722,0.0748630000016419,100,mac,phase-4,without +19,233.46328968448563,0.0,0.0,57.98390268737843,0.0812473750011122,100,mac,phase-4,without +20,230.21050220418272,0.0,0.0,57.17602701246824,0.0801153749998775,100,mac,phase-4,without +21,228.4539624795744,0.0,0.0,56.73976558311954,0.079504082998028,100,mac,phase-4,without +22,229.74487946877807,0.0,0.0,57.06038303514221,0.0799533339995832,100,mac,phase-4,without +23,229.0921151390923,0.0,0.0,56.89825980188594,0.0797261660009098,100,mac,phase-4,without +24,229.87753688321,0.0,0.0,57.093330376112064,0.0799995000015769,100,mac,phase-4,without +25,230.25444357048204,0.0,0.0,57.18694047090059,0.0801306670000485,100,mac,phase-4,without +26,230.96970050207184,0.0,0.0,57.36458462375144,0.0803795829997398,100,mac,phase-4,without +27,231.0153171132757,0.0,0.0,57.37591415289732,0.0803954580005665,100,mac,phase-4,without +28,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631,100,mac,phase-4,without +29,229.60838883425131,0.0,0.0,57.0264836598664,0.0799058340016927,100,mac,phase-4,without +0,232.09826942958523,0.0,0.0,56.551862602132445,0.080378708000353,100,mac,phase-22,without +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795,100,mac,phase-22,without +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539,100,mac,phase-22,without +3,229.08763101285805,0.0,0.0,55.81830603358978,0.0793360839998058,100,mac,phase-22,without +4,230.24289431199097,0.0,0.0,56.09979150749018,0.0797361669974634,100,mac,phase-22,without +5,230.65509338121083,0.0,0.0,56.20022579846761,0.0798789170003146,100,mac,phase-22,without +6,229.2921654886054,0.0,0.0,55.86814184493939,0.0794069170005968,100,mac,phase-22,without +7,231.28662566367748,0.0,0.0,56.354101684550855,0.0800976250029634,100,mac,phase-22,without +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006,100,mac,phase-22,without +9,232.53862219376708,0.0,0.0,56.65915667665391,0.080531208001048,100,mac,phase-22,without +10,229.66092988839787,0.0,0.0,55.95799306925431,0.0795346250015427,100,mac,phase-22,without +11,230.27249179749467,0.0,0.0,56.107003077562155,0.0797464169991144,100,mac,phase-22,without +12,231.61833400897208,0.0,0.0,56.43492402249065,0.0802125000009255,100,mac,phase-22,without +13,230.59806408551117,0.0,0.0,56.18633033555602,0.0798591669990855,100,mac,phase-22,without +14,230.8875418936153,0.0,0.0,56.25686299945956,0.0799594170021009,100,mac,phase-22,without +15,231.22706975553947,0.0,0.0,56.33959060033449,0.0800770000023476,100,mac,phase-22,without +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293,100,mac,phase-22,without +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725,100,mac,phase-22,without +18,232.0170568313989,0.0,0.0,56.532074760949975,0.0803505830008362,100,mac,phase-22,without +19,230.92965116248496,0.0,0.0,56.26712312588466,0.0799740000002202,100,mac,phase-22,without +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622,100,mac,phase-22,without +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255,100,mac,phase-22,without +22,230.93169844780863,0.0,0.0,56.267621956826474,0.079974709002272,100,mac,phase-22,without +23,230.3377015469545,0.0,0.0,56.1228917474813,0.079768999999942,100,mac,phase-22,without +24,231.03432517839207,0.0,0.0,56.2926274546336,0.0800102499997592,100,mac,phase-22,without +25,231.1403216955104,0.0,0.0,56.318454017180194,0.0800469579990021,100,mac,phase-22,without +26,232.6395683748504,0.0,0.0,56.68375270047117,0.0805661670019617,100,mac,phase-22,without +27,211.57097564534644,0.0,0.0,51.55028848211487,0.0732698339998023,100,mac,phase-22,without +28,232.01200359601728,0.0,0.0,56.53084351578086,0.0803488329984247,100,mac,phase-22,without +29,231.3346313210155,0.0,0.0,56.365798494460634,0.0801142499985871,100,mac,phase-22,without +0,231.66268036286448,0.0672070439114779,0.0,59.881476125126845,0.0804943750008533,100,mac,phase-25,without +1,231.99748654195568,0.0673041736414144,0.0,59.968018714500296,0.0806107079988578,100,mac,phase-25,without +2,232.69804026717333,0.0675074094189652,0.0,60.14910179229807,0.0808541249971313,100,mac,phase-25,without +3,232.398368697592,0.0674204724971256,0.0,60.071640994938925,0.0807500000009895,100,mac,phase-25,without +4,218.63578046305977,0.0634278446368029,0.0,56.51420957139142,0.0759679999973741,100,mac,phase-25,without +5,236.23653928270616,0.0685339539549481,0.0,61.06375297385877,0.0820836250022694,100,mac,phase-25,without +6,224.8190391019204,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951,100,mac,phase-25,without +7,232.2963206294109,0.0673908676035424,0.0,60.045263034756346,0.0807145420003507,100,mac,phase-25,without +8,235.48322320982325,0.0683154114330789,0.0,60.869031586873376,0.0818218750027881,100,mac,phase-25,without +9,233.22039698135623,0.0676589489356995,0.0,60.284123501708265,0.0810356250003678,100,mac,phase-25,without +10,222.17847558987393,0.0644556064954667,0.0,57.42994538746088,0.0771989579989167,100,mac,phase-25,without +11,235.83937549829105,0.06841873382602,0.0,60.96109183898384,0.0819456249992072,100,mac,phase-25,without +12,229.9330033409012,0.0667052519120688,0.0,59.434379453653314,0.0798933750011201,100,mac,phase-25,without +13,228.71740877714217,0.0663525990070038,0.0,59.1201657152404,0.0794710000009217,100,mac,phase-25,without +14,231.33051329738623,0.0671106798077708,0.0,59.79561570872386,0.0803789589990628,100,mac,phase-25,without +15,229.53188230999976,0.0665888837568899,0.0,59.330695427388974,0.0797539999985019,100,mac,phase-25,without +16,229.48139935482175,0.0665742382810623,0.0,59.31764630842652,0.0797364590034703,100,mac,phase-25,without +17,230.42646205313747,0.0668484079063352,0.0,59.56193144454467,0.0800648339973122,100,mac,phase-25,without +18,231.01585022398584,0.0670193937406399,0.0,59.71427982291018,0.0802696249993459,100,mac,phase-25,without +19,230.07786450510628,0.0667472771990444,0.0,59.471823984348624,0.0799437089990533,100,mac,phase-25,without +20,228.97666749951748,0.0664278118652502,0.0,59.187180371937934,0.0795610829991346,100,mac,phase-25,without +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.0809936670011666,100,mac,phase-25,without +22,229.52001057054088,0.0665854396781377,0.0,59.32762675322075,0.0797498749998339,100,mac,phase-25,without +23,211.52748423357997,0.0613656757277574,0.0,54.6768170734319,0.0734981249988777,100,mac,phase-25,without +24,231.32547392448515,0.0671092178487047,0.0,59.794313103195904,0.0803772079998452,100,mac,phase-25,without +25,230.29359350566224,0.0668098617654952,0.0,59.52758683305629,0.0800186669985123,100,mac,phase-25,without +26,231.8720547369228,0.0672677849541406,0.0,59.93559639413931,0.0805671249981969,100,mac,phase-25,without +27,231.05506295725297,0.067030769642371,0.0,59.724415751352595,0.08028325000123,100,mac,phase-25,without +28,229.7340616961576,0.0666475374807535,0.0,59.38295589535144,0.0798242499986372,100,mac,phase-25,without +29,228.61583845949133,0.066323132712356,0.0,59.09391124670925,0.0794357080012559,100,mac,phase-25,without +0,217.31809402608985,0.662843859774566,0.0,54.132248548256214,0.0751640829985262,100,mac,phase-13,without +1,229.9303272649387,0.7013125450346716,0.0,57.273857844498174,0.0795262920000823,100,mac,phase-13,without +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.0799910829991858,100,mac,phase-13,without +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.0798349590004363,100,mac,phase-13,without +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546,100,mac,phase-13,without +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.0802340410009492,100,mac,phase-13,without +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.074771250001504,100,mac,phase-13,without +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.0808146669987763,100,mac,phase-13,without +8,234.6474003152265,0.7157001316804293,0.0,58.44884408723506,0.0811577919994306,100,mac,phase-13,without +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.0792908749972411,100,mac,phase-13,without +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438,100,mac,phase-13,without +11,229.3134040808069,0.6994308621201081,0.0,57.120187073142155,0.0793129160010721,100,mac,phase-13,without +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.0796832499981974,100,mac,phase-13,without +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.0801722920004976,100,mac,phase-13,without +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.0801286669993714,100,mac,phase-13,without +15,242.73663270778175,0.7403731716577222,0.0,60.463809018713974,0.083955624999362,100,mac,phase-13,without +16,225.1590403972453,0.6867596003401816,0.0,56.08536736111483,0.0778760409993992,100,mac,phase-13,without +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.0797353329980978,100,mac,phase-13,without +18,230.14114558595097,0.7019555638787175,0.0,57.32637105009526,0.0795992079983989,100,mac,phase-13,without +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.0801895000004151,100,mac,phase-13,without +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758,100,mac,phase-13,without +21,231.5017183127908,0.7061054589061156,0.0,57.66527914399945,0.0800697910017333,100,mac,phase-13,without +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.0792922079999698,100,mac,phase-13,without +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.0770003340003313,100,mac,phase-13,without +24,234.9810967368232,0.7167179421166722,0.0,58.53196527286156,0.081273208001221,100,mac,phase-13,without +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.0736666250013513,100,mac,phase-13,without +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.080062208999152,100,mac,phase-13,without +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205,100,mac,phase-13,without +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416,100,mac,phase-13,without +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.0792593750011292,100,mac,phase-13,without +0,228.51614058990577,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781,100,mac,phase-14,without +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.0799711670006217,100,mac,phase-14,without +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.0796211670021875,100,mac,phase-14,without +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.0794739169978129,100,mac,phase-14,without +4,229.52454429292905,0.803352641538617,0.0,56.83719938885715,0.0798063750007713,100,mac,phase-14,without +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.0803199590009171,100,mac,phase-14,without +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.0803647499997168,100,mac,phase-14,without +7,230.02868718081663,0.8051171784074085,0.0,56.962040372324154,0.0799816670005384,100,mac,phase-14,without +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.0793937079979514,100,mac,phase-14,without +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.0795502499968279,100,mac,phase-14,without +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844,100,mac,phase-14,without +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.0796230419982748,100,mac,phase-14,without +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532,100,mac,phase-14,without +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.0812716660002479,100,mac,phase-14,without +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.0813294170002336,100,mac,phase-14,without +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.0794567499979166,100,mac,phase-14,without +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.079882500001986,100,mac,phase-14,without +17,230.13929307294055,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928,100,mac,phase-14,without +18,233.4668454975468,0.8171509832202308,0.0,57.81343206283133,0.0811771249973389,100,mac,phase-14,without +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.0776905000020633,100,mac,phase-14,without +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.0788508750010805,100,mac,phase-14,without +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.0794899579996126,100,mac,phase-14,without +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.0768046659977699,100,mac,phase-14,without +23,231.4062996484221,0.8099389224970295,0.0,57.30317876666483,0.080460667002626,100,mac,phase-14,without +24,216.33236918131308,0.7571790666984853,0.0,53.570418968917835,0.0752194160013459,100,mac,phase-14,without +25,232.7924193674008,0.81479044258679,0.0,57.64642381301539,0.0809426250016258,100,mac,phase-14,without +26,221.0030247376175,0.7735267017212804,0.0,54.72701414678058,0.0768434169985994,100,mac,phase-14,without +27,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.0776983750001818,100,mac,phase-14,without +28,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.0798696249985368,100,mac,phase-14,without +29,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.079886333001923,100,mac,phase-14,without +0,241.9872343116464,0.0,0.0,57.15813260782817,0.0795744579991151,100,mac,phase-15,without +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178,100,mac,phase-15,without +2,242.65575313120232,0.0,0.0,57.31603881906987,0.0797942920034984,100,mac,phase-15,without +3,243.91080493823523,0.0,0.0,57.61248593463834,0.0802070000027015,100,mac,phase-15,without +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623,100,mac,phase-15,without +5,243.5832631360067,0.0,0.0,57.5351195486815,0.0800992920012504,100,mac,phase-15,without +6,244.43005848717624,0.0,0.0,57.73513522765531,0.0803777500004798,100,mac,phase-15,without +7,245.45361291465915,0.0,0.0,57.97690194672964,0.0807143329984683,100,mac,phase-15,without +8,244.62937278860463,0.0,0.0,57.782213881635094,0.0804432920012914,100,mac,phase-15,without +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736,100,mac,phase-15,without +10,196.29494977021145,0.0,0.0,46.36547378678283,0.0645491249997576,100,mac,phase-15,without +11,238.4692861580264,0.0,0.0,56.327182381697185,0.078417625001748,100,mac,phase-15,without +12,241.07885838454743,0.0,0.0,56.94357140650459,0.0792757500021252,100,mac,phase-15,without +13,242.28411354448383,0.0,0.0,57.22825640013194,0.0796720830003323,100,mac,phase-15,without +14,246.60273699779663,0.0,0.0,58.24832860654358,0.0810922079981537,100,mac,phase-15,without +15,241.59570345181905,0.0,0.0,57.065651808707806,0.0794457080010033,100,mac,phase-15,without +16,231.5265209579827,0.0,0.0,54.687279784777374,0.0761345840001013,100,mac,phase-15,without +17,248.01263127655392,0.0,0.0,58.58134999247521,0.0815558339963899,100,mac,phase-15,without +18,243.81577315917053,0.0,0.0,57.590039134726815,0.0801757499975792,100,mac,phase-15,without +19,244.07033057552212,0.0,0.0,57.65016638318072,0.0802594580018194,100,mac,phase-15,without +20,242.9038483716201,0.0,0.0,57.3746396815968,0.0798758750024717,100,mac,phase-15,without +21,243.88077489357264,0.0,0.0,57.60539274528096,0.0801971250002679,100,mac,phase-15,without +22,242.48862493919952,0.0,0.0,57.27656262360784,0.0797393339998961,100,mac,phase-15,without +23,243.75697815249185,0.0,0.0,57.57615157244288,0.0801564159992267,100,mac,phase-15,without +24,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107,100,mac,phase-15,without +25,247.45054804601023,0.0,0.0,58.44858419629822,0.0813709999965794,100,mac,phase-15,without +26,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359,100,mac,phase-15,without +27,243.3441601704367,0.0,0.0,57.478642689264305,0.0800206659987452,100,mac,phase-15,without +28,242.30248736229245,0.0,0.0,57.23259635268276,0.0796781249991909,100,mac,phase-15,without +29,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873,100,mac,phase-15,without +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.0795444169998518,100,mac,phase-12,without +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.0758981670005596,100,mac,phase-12,without +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.0805557909989147,100,mac,phase-12,without +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.0807310410018544,100,mac,phase-12,without +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.0746782089991029,100,mac,phase-12,without +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.0837202080001588,100,mac,phase-12,without +6,246.7651896921608,0.8144065666407948,0.0,66.67511152107028,0.0849927500021294,100,mac,phase-12,without +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164,100,mac,phase-12,without +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.0833640839991858,100,mac,phase-12,without +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.0810425419986131,100,mac,phase-12,without +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.0838655829975323,100,mac,phase-12,without +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.0809435420014779,100,mac,phase-12,without +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884,100,mac,phase-12,without +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.0840073340004892,100,mac,phase-12,without +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.0828537080014939,100,mac,phase-12,without +15,220.82130434738664,0.7287831826646424,0.0,59.66516230250094,0.0760569590020168,100,mac,phase-12,without +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.0821004999997967,100,mac,phase-12,without +17,192.67871910188725,0.6359033633725651,0.0,52.06113187958871,0.0663638750011159,100,mac,phase-12,without +18,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.0811298329972487,100,mac,phase-12,without +19,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.0812817919977533,100,mac,phase-12,without +20,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.080107333997148,100,mac,phase-12,without +21,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.0805614580021938,100,mac,phase-12,without +22,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.0783772499999031,100,mac,phase-12,without +23,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.0739163329999428,100,mac,phase-12,without +24,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.0811356670019449,100,mac,phase-12,without +25,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.0798642080007994,100,mac,phase-12,without +26,230.1259904385399,0.7594917176189435,0.0,62.17925670767264,0.0792617500010237,100,mac,phase-12,without +27,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.0804298330003803,100,mac,phase-12,without +28,238.17642466410143,0.786060807472282,0.0,64.35445654218726,0.0820345419997465,100,mac,phase-12,without +29,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.0799495419996674,100,mac,phase-12,without +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463,100,mac,phase-24,without +1,222.34524711035735,0.0,0.0,53.789566230930056,0.0762266249985259,100,mac,phase-24,without +2,234.88450207831713,0.0,0.0,56.82305174209469,0.0805254580009204,100,mac,phase-24,without +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092,100,mac,phase-24,without +4,231.14880819995636,0.0,0.0,55.91931597126064,0.0792447500025446,100,mac,phase-24,without +5,189.5080321108016,0.0,0.0,45.84561611725291,0.0649690419995749,100,mac,phase-24,without +6,226.3184260321476,0.0,0.0,54.75075417417805,0.0775887499985401,100,mac,phase-24,without +7,233.75602738491304,0.0,0.0,56.550052138776614,0.0801385830018261,100,mac,phase-24,without +8,234.5266979302004,0.0,0.0,56.73649207791049,0.0804027919984946,100,mac,phase-24,without +9,232.1996204913718,0.0,0.0,56.1735275547325,0.0796049999989918,100,mac,phase-24,without +10,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767,100,mac,phase-24,without +11,232.00807659282628,0.0,0.0,56.12718942360155,0.0795393330008664,100,mac,phase-24,without +12,235.28654971516897,0.0,0.0,56.92031475208247,0.0806632919993717,100,mac,phase-24,without +13,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185,100,mac,phase-24,without +14,232.4236148875455,0.0,0.0,56.22771608165147,0.0796817920017929,100,mac,phase-24,without +15,237.5479969606639,0.0,0.0,57.467402076728234,0.0814385839985334,100,mac,phase-24,without +16,236.38512621563677,0.0,0.0,57.186081410914305,0.0810399170004529,100,mac,phase-24,without +17,233.71664925617893,0.0,0.0,56.5405258165767,0.0801250829972559,100,mac,phase-24,without +18,235.04529604296468,0.0,0.0,56.86195087631657,0.0805805829986638,100,mac,phase-24,without +19,233.1673012201283,0.0,0.0,56.40762802382869,0.0799367500003427,100,mac,phase-24,without +20,237.1459493238121,0.0,0.0,57.37013906674045,0.0813007500000821,100,mac,phase-24,without +21,233.21457829256337,0.0,0.0,56.419065251527506,0.0799529579999216,100,mac,phase-24,without +22,215.0150838520788,0.0,0.0,52.01625959546593,0.0737136249990726,100,mac,phase-24,without +23,232.95108619602212,0.0,0.0,56.35532147574445,0.0798626249998051,100,mac,phase-24,without +24,232.76695704397656,0.0,0.0,56.31077711355224,0.0797994999993534,100,mac,phase-24,without +25,232.50881162889073,0.0,0.0,56.24832680223491,0.0797110000021348,100,mac,phase-24,without +26,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835,100,mac,phase-24,without +27,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423,100,mac,phase-24,without +28,233.43504906083848,0.0,0.0,56.47240134549057,0.0800285419973079,100,mac,phase-24,without +29,220.28603711570713,0.0,0.0,53.291403963779565,0.0755206659996474,100,mac,phase-24,without +0,235.05822270976108,0.0,0.0,56.90602555177452,0.0796164580024196,100,mac,phase-23,without +1,234.8477444205732,0.0,0.0,56.85507016393681,0.0795451670019247,100,mac,phase-23,without +2,236.67440697832672,0.0,0.0,57.29729296723922,0.0801638750017446,100,mac,phase-23,without +3,237.84588865760452,0.0,0.0,57.58090085640774,0.0805606670000997,100,mac,phase-23,without +4,238.03791455643773,0.0,0.0,57.62738904380077,0.0806257080002978,100,mac,phase-23,without +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256,100,mac,phase-23,without +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836,100,mac,phase-23,without +7,235.89399490105237,0.0,0.0,57.10836041640851,0.0798995420009305,100,mac,phase-23,without +8,237.1091452658675,0.0,0.0,57.40254020264302,0.0803111249988433,100,mac,phase-23,without +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639,100,mac,phase-23,without +10,240.1701486799902,0.0,0.0,58.14358868199451,0.0813479159987764,100,mac,phase-23,without +11,237.3678477706916,0.0,0.0,57.46517035095314,0.0803987500003131,100,mac,phase-23,without +12,233.8212985099349,0.0,0.0,56.606574465530976,0.0791974999992817,100,mac,phase-23,without +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732,100,mac,phase-23,without +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766,100,mac,phase-23,without +15,239.42184376859217,0.0,0.0,57.962429061549685,0.0810944580007344,100,mac,phase-23,without +16,235.06720385039952,0.0,0.0,56.908199825929934,0.0796195000002626,100,mac,phase-23,without +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046,100,mac,phase-23,without +18,235.1504876044873,0.0,0.0,56.92836226646714,0.0796477090007101,100,mac,phase-23,without +19,233.54008410112257,0.0,0.0,56.53849433564263,0.0791022500015969,100,mac,phase-23,without +20,217.5081550780071,0.0,0.0,52.65727141088613,0.0736720830027479,100,mac,phase-23,without +21,236.13485910454932,0.0,0.0,57.166672031125465,0.0799811249999038,100,mac,phase-23,without +22,236.4991092645872,0.0,0.0,57.25485456171471,0.0801044999971054,100,mac,phase-23,without +23,233.79657231308929,0.0,0.0,56.60058841844326,0.0791891250009939,100,mac,phase-23,without +24,225.861185687578,0.0,0.0,54.679484324024344,0.076501333998749,100,mac,phase-23,without +25,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449,100,mac,phase-23,without +26,226.48622570091325,0.0,0.0,54.8308023360458,0.0767130410022218,100,mac,phase-23,without +27,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544,100,mac,phase-23,without +28,236.39749713231657,0.0,0.0,57.230254943251225,0.0800700830004643,100,mac,phase-23,without +29,240.4058491717482,0.0,0.0,58.20065019659257,0.0814277499994204,100,mac,phase-23,without +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.0828468750005413,100,mac,phase-8,without +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248,100,mac,phase-8,without +2,403.3808155336163,0.7147755199259882,0.0,62.70780619042996,0.0643259160024172,100,mac,phase-8,without +3,491.6841117381172,0.8712456147475667,0.0,76.43504797073845,0.078407375000097,100,mac,phase-8,without +4,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.0797451670005102,100,mac,phase-8,without +5,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.0737165410027955,100,mac,phase-8,without +6,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.0807009579984878,100,mac,phase-8,without +7,514.8391200881973,0.9122754121374724,0.0,80.03462365713747,0.0820998339986545,100,mac,phase-8,without +8,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.0751145000031101,100,mac,phase-8,without +9,484.3581431807236,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234,100,mac,phase-8,without +10,500.5286831836258,0.8869178602040666,0.0,77.80998612021061,0.07981779200054,100,mac,phase-8,without +11,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.0795732500009762,100,mac,phase-8,without +12,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.0803536249986791,100,mac,phase-8,without +13,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.0794982500010519,100,mac,phase-8,without +14,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.0762340840010438,100,mac,phase-8,without +15,497.8429106725408,0.8821587730856716,0.0,77.39246774647758,0.0793894999987969,100,mac,phase-8,without +16,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.0771708750035031,100,mac,phase-8,without +17,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.0793507089983904,100,mac,phase-8,without +18,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752,100,mac,phase-8,without +19,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.075234249998175,100,mac,phase-8,without +20,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.0774600000004284,100,mac,phase-8,without +21,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.0747904170020774,100,mac,phase-8,without +22,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.0744944590005616,100,mac,phase-8,without +23,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.0777760000019043,100,mac,phase-8,without +24,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.0794401249986549,100,mac,phase-8,without +25,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.0787942500028293,100,mac,phase-8,without +26,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.0799686249993101,100,mac,phase-8,without +27,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.0792666669985919,100,mac,phase-8,without +28,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.0759735419997014,100,mac,phase-8,without +29,509.0607510322008,0.902036361128414,0.0,79.13634383591972,0.0811783749995811,100,mac,phase-8,without +0,238.41283703560313,0.0695081157538201,0.0,61.79271490514612,0.0831266669993056,100,mac,phase-1,without +1,234.37913907907773,0.0683321105186815,0.0,60.7472462511079,0.0817202500002167,100,mac,phase-1,without +2,229.3925259214554,0.0668782874406575,0.0,59.45479753474456,0.0799815830032457,100,mac,phase-1,without +3,221.67814600297828,0.0646291970854164,0.0,57.455356208935186,0.0772918340007891,100,mac,phase-1,without +4,231.8804534306275,0.0676036307377922,0.0,60.09962772589734,0.0808490409981459,100,mac,phase-1,without +5,229.33420950258335,0.0668612855692663,0.0,59.439682871077736,0.0799612499977229,100,mac,phase-1,without +6,223.15663158869825,0.0650602424456846,0.0,57.838555534213626,0.0778073330002371,100,mac,phase-1,without +7,235.0478747510722,0.0685270771869015,0.0,60.920571619155446,0.081953416000033,100,mac,phase-1,without +8,231.3115035490765,0.0674377561367569,0.0,59.95216520557696,0.0806506670014641,100,mac,phase-1,without +9,229.6267523252653,0.0669465750219432,0.0,59.51550519450753,0.0800632499995117,100,mac,phase-1,without +10,232.2332285257856,0.0677064806197625,0.0,60.19106127096891,0.0809720420002122,100,mac,phase-1,without +11,230.43757777224496,0.0671829672805378,0.0,59.72565791239818,0.0803459580019989,100,mac,phase-1,without +12,231.26095387219027,0.0674230186216298,0.0,59.93906355462891,0.0806330420018639,100,mac,phase-1,without +13,226.7150679276371,0.0660976874424598,0.0,58.76084413634677,0.0790480420000676,100,mac,phase-1,without +14,229.0763215445606,0.0667860995756736,0.0,59.37284252277387,0.0798713330004829,100,mac,phase-1,without +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.0792341249980381,100,mac,phase-1,without +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.0806579169984615,100,mac,phase-1,without +17,230.3895405214245,0.0671689622511441,0.0,59.71320744126716,0.0803292090022296,100,mac,phase-1,without +18,227.8955154857735,0.0664418412494966,0.0,59.06679687080252,0.0794596250016184,100,mac,phase-1,without +19,221.77446141446887,0.0646572773803116,0.0,57.48031959109704,0.0773254159976204,100,mac,phase-1,without +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.0797048750027897,100,mac,phase-1,without +21,228.23203436741105,0.0665399517106154,0.0,59.15401707073714,0.0795769579999614,100,mac,phase-1,without +22,215.52590171771973,0.0628355398593935,0.0,55.86079493500083,0.075146750001295,100,mac,phase-1,without +23,236.72832386273487,0.0690170040416136,0.0,61.356116592994546,0.0825393329978396,100,mac,phase-1,without +24,220.5298408730013,0.0642944142486884,0.0,57.15773426708401,0.0768914580003183,100,mac,phase-1,without +25,228.89658839783272,0.0667336992413506,0.0,59.32625862556073,0.0798086659997352,100,mac,phase-1,without +26,229.44773620070688,0.0668943837319845,0.0,59.46910713773422,0.0800008330006676,100,mac,phase-1,without +27,229.6753890074541,0.0669607548126688,0.0,59.52811102846259,0.0800802080011635,100,mac,phase-1,without +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.079968000001827,100,mac,phase-1,without +29,220.42790404735163,0.0642646950575369,0.0,57.13131390615032,0.0768559160023869,100,mac,phase-1,without +0,240.68532811369528,0.0,0.0,56.67665791391861,0.0791760419997444,100,mac,phase-30,without +1,237.4792714962241,0.0,0.0,55.92169467795753,0.0781213749978633,100,mac,phase-30,without +2,229.61777289781264,0.0,0.0,54.070466477863675,0.0755352500018489,100,mac,phase-30,without +3,237.8056781604508,0.0,0.0,55.99855702346976,0.0782287500005622,100,mac,phase-30,without +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688,100,mac,phase-30,without +5,243.35345135751976,0.0,0.0,57.30494842729374,0.0800537499999336,100,mac,phase-30,without +6,243.4134889068341,0.0,0.0,57.319086088575986,0.0800735000011627,100,mac,phase-30,without +7,244.52633573416657,0.0,0.0,57.58113961480306,0.080439583001862,100,mac,phase-30,without +8,247.25107666319172,0.0,0.0,58.222762478767,0.0813359160019899,100,mac,phase-30,without +9,243.32786471626991,0.0,0.0,57.29892327684254,0.0800453329975425,100,mac,phase-30,without +10,244.4880849635703,0.0,0.0,57.57213231112975,0.0804269999971438,100,mac,phase-30,without +11,241.4227502834867,0.0,0.0,56.85030632191656,0.0794186249986523,100,mac,phase-30,without +12,245.31417120068048,0.0,0.0,57.766659362009946,0.0806987500000104,100,mac,phase-30,without +13,243.4813784481399,0.0,0.0,57.335072739439504,0.0800958330000867,100,mac,phase-30,without +14,243.02235721302517,0.0,0.0,57.22698227243133,0.0799448329998995,100,mac,phase-30,without +15,243.41158898109776,0.0,0.0,57.318638693456954,0.0800728750000416,100,mac,phase-30,without +16,242.4810070275498,0.0,0.0,57.099504957905,0.0797667500009993,100,mac,phase-30,without +17,242.8655512932365,0.0,0.0,57.1900575643721,0.0798932499965303,100,mac,phase-30,without +18,227.67858753326496,0.0,0.0,53.61382648904712,0.0748973340014345,100,mac,phase-30,without +19,244.21563610620777,0.0,0.0,57.50797596720637,0.0803373749986349,100,mac,phase-30,without +20,244.89530368100628,0.0,0.0,57.668024304734615,0.0805609589988307,100,mac,phase-30,without +21,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072,100,mac,phase-30,without +22,245.05122194988175,0.0,0.0,57.7047399884734,0.0806122499998309,100,mac,phase-30,without +23,242.19943853992356,0.0,0.0,57.03320112053526,0.0796741250014747,100,mac,phase-30,without +24,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844,100,mac,phase-30,without +25,245.99079585749843,0.0,0.0,57.92599115224054,0.0809213329994236,100,mac,phase-30,without +26,245.43513393916336,0.0,0.0,57.79514370629074,0.0807385420011996,100,mac,phase-30,without +27,240.29419641988633,0.0,0.0,56.584554097773946,0.0790473749984812,100,mac,phase-30,without +28,244.3516705522685,0.0,0.0,57.54000940199992,0.0803821250010514,100,mac,phase-30,without +29,241.889751197847,0.0,0.0,56.96027584634135,0.0795722500006377,100,mac,phase-30,without +0,232.9169939317484,0.0,0.0,56.31584657411337,0.0802987909992225,100,mac,phase-6,without +1,237.47883911982245,0.0,0.0,57.41883253219986,0.0818715000023075,100,mac,phase-6,without +2,235.63126033438007,0.0,0.0,56.97211560674853,0.0812345420017663,100,mac,phase-6,without +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643,100,mac,phase-6,without +4,233.22591381073585,0.0,0.0,56.39053878190413,0.0804052919993409,100,mac,phase-6,without +5,232.05152169027792,0.0,0.0,56.10658832660616,0.080000417001429,100,mac,phase-6,without +6,231.51224545439288,0.0,0.0,55.976199395989674,0.0798144999971555,100,mac,phase-6,without +7,230.47563320063983,0.0,0.0,55.72556205238602,0.079457124997134,100,mac,phase-6,without +8,237.39157949081192,0.0,0.0,57.39773445860497,0.0818414169989409,100,mac,phase-6,without +9,238.7171669043764,0.0,0.0,57.71824167511468,0.0822984170008567,100,mac,phase-6,without +10,233.33565330551497,0.0,0.0,56.41707215092448,0.0804431249998742,100,mac,phase-6,without +11,213.50066847479712,0.0,0.0,51.62126939016117,0.0736049580009421,100,mac,phase-6,without +12,231.42716131362363,0.0,0.0,55.95562732292378,0.0797851669994997,100,mac,phase-6,without +13,235.6416532820299,0.0,0.0,56.97462846609562,0.0812381249997997,100,mac,phase-6,without +14,231.260615912246,0.0,0.0,55.91535913504585,0.0797277500023483,100,mac,phase-6,without +15,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142,100,mac,phase-6,without +16,231.26617350593335,0.0,0.0,55.916702878102704,0.0797296659984567,100,mac,phase-6,without +17,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022,100,mac,phase-6,without +18,237.3270376003675,0.0,0.0,57.38212919452134,0.0818191660000593,100,mac,phase-6,without +19,234.63030260863508,0.0,0.0,56.7300989949132,0.0808894590009003,100,mac,phase-6,without +20,231.03231320527357,0.0,0.0,55.860158954066,0.0796490419998008,100,mac,phase-6,without +21,233.7110410932738,0.0,0.0,56.50783530523265,0.0805725409991282,100,mac,phase-6,without +22,231.71746496061323,0.0,0.0,56.02581840416606,0.079885250001098,100,mac,phase-6,without +23,227.65827556405924,0.0,0.0,55.04436710079492,0.0784858330007409,100,mac,phase-6,without +24,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255,100,mac,phase-6,without +25,231.77136734596337,0.0,0.0,56.03885119499903,0.0799038330005714,100,mac,phase-6,without +26,233.1512226176164,0.0,0.0,56.372479568185334,0.0803795419997186,100,mac,phase-6,without +27,230.73777754985747,0.0,0.0,55.78894463646289,0.0795475000013539,100,mac,phase-6,without +28,232.8224856404988,0.0,0.0,56.29299588237056,0.0802662089990917,100,mac,phase-6,without +29,237.8312655240404,0.0,0.0,57.50404396728485,0.0819929999997839,100,mac,phase-6,without +0,231.07091032445197,0.96752185957394,0.0,58.35157697913175,0.0799369160013157,100,mac,phase-7,without +1,227.65017155015877,0.9531988124393016,0.0,57.48774906745996,0.0787535419985943,100,mac,phase-7,without +2,230.5149398910295,0.9651939441004702,0.0,58.211179594197326,0.0797445829994103,100,mac,phase-7,without +3,234.6926746579278,0.9826866250476328,0.0,59.26616921407965,0.0811898329993709,100,mac,phase-7,without +4,232.3701460779587,0.9729619168727698,0.0,58.67966871070601,0.0803863749970332,100,mac,phase-7,without +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.0770988340009353,100,mac,phase-7,without +6,237.3139072923828,0.9936620432398358,0.0,59.928100469878366,0.0820966249993944,100,mac,phase-7,without +7,230.30332002617052,0.9643078661217072,0.0,58.157739925754,0.0796713749987247,100,mac,phase-7,without +8,230.46507591515575,0.9649851576002768,0.0,58.19858760837532,0.0797273330026655,100,mac,phase-7,without +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019,100,mac,phase-7,without +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.0795147079988964,100,mac,phase-7,without +11,230.5961184668456,0.9655338486194806,0.0,58.23167935294729,0.0797726660020998,100,mac,phase-7,without +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.0827171670025563,100,mac,phase-7,without +13,214.01309135748147,0.8960987076764312,0.0,54.04402205951994,0.0740359160008665,100,mac,phase-7,without +14,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.0808671250015322,100,mac,phase-7,without +15,231.6784328857628,0.9700656300443432,0.0,58.50499265336401,0.0801470830010657,100,mac,phase-7,without +16,230.71487857136052,0.9660311115462684,0.0,58.26166945153184,0.0798137499987206,100,mac,phase-7,without +17,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.0800940830013132,100,mac,phase-7,without +18,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.0797144999996817,100,mac,phase-7,without +19,231.78587024977804,0.9705154832866824,0.0,58.5321234575313,0.0801842499968188,100,mac,phase-7,without +20,231.19713702261603,0.9680503860317448,0.0,58.38345259205248,0.0799805829992692,100,mac,phase-7,without +21,230.582873431562,0.9654783900541868,0.0,58.228334627750776,0.0797680840005341,100,mac,phase-7,without +22,231.6367610464117,0.9698911450109644,0.0,58.49446940083367,0.0801326670007256,100,mac,phase-7,without +23,232.1529848272166,0.9720526364408436,0.0,58.62482969431156,0.080311250003433,100,mac,phase-7,without +24,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.0799320830010401,100,mac,phase-7,without +25,232.75243664028173,0.9745626137118352,0.0,58.77620728903447,0.0805186249999678,100,mac,phase-7,without +26,232.66162348649672,0.9741823680491488,0.0,58.75327454199867,0.0804872090011485,100,mac,phase-7,without +27,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.0794731249989126,100,mac,phase-7,without +28,230.7071720615588,0.965998843457292,0.0,58.259723351958755,0.0798110840005392,100,mac,phase-7,without +29,230.77582537158145,0.9662863031729516,0.0,58.27706014653421,0.0798348339994845,100,mac,phase-7,without +0,243.0955342560187,0.0,0.0,57.8043656552693,0.0804041249975853,100,mac,phase-9,without +1,240.37357538885556,0.0,0.0,57.15712585245829,0.0795038340002065,100,mac,phase-9,without +2,240.57790726684237,0.0,0.0,57.205712819003466,0.0795714170017163,100,mac,phase-9,without +3,241.00357775344693,0.0,0.0,57.306930690124176,0.0797122080002736,100,mac,phase-9,without +4,228.7827823794463,0.0,0.0,54.40101418878283,0.0756701660029648,100,mac,phase-9,without +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123,100,mac,phase-9,without +6,239.8171358810357,0.0,0.0,57.024813126626064,0.0793197909988521,100,mac,phase-9,without +7,243.10473150771745,0.0,0.0,57.80655261975568,0.0804071669990662,100,mac,phase-9,without +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972,100,mac,phase-9,without +9,241.96893194067064,0.0,0.0,57.53647701476525,0.0800314999978581,100,mac,phase-9,without +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959,100,mac,phase-9,without +11,226.9116656193993,0.0,0.0,53.95609150555676,0.0750512920021719,100,mac,phase-9,without +12,241.0369623717528,0.0,0.0,57.314869037036715,0.0797232500008249,100,mac,phase-9,without +13,259.1807637955834,0.0,0.0,61.629184950282394,0.0857243329992343,100,mac,phase-9,without +14,245.7031080501689,0.0,0.0,58.42440645335082,0.0812665830017067,100,mac,phase-9,without +15,240.7667441033004,0.0,0.0,57.25061530385252,0.0796338750005816,100,mac,phase-9,without +16,239.96490559435284,0.0,0.0,57.059950483498945,0.0793686659999366,100,mac,phase-9,without +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382,100,mac,phase-9,without +18,244.9626238231499,0.0,0.0,58.2483307341832,0.0810216669997316,100,mac,phase-9,without +19,244.61392358457164,0.0,0.0,58.16541519994048,0.0809063339984277,100,mac,phase-9,without +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304,100,mac,phase-9,without +21,240.89272099625768,0.0,0.0,57.280570664434954,0.079675542001496,100,mac,phase-9,without +22,232.55651691475,0.0,0.0,55.29835001040627,0.076918333001231,100,mac,phase-9,without +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555,100,mac,phase-9,without +24,242.54275309588132,0.0,0.0,57.67292282804619,0.080221291998896,100,mac,phase-9,without +25,242.09024671523045,0.0,0.0,57.5653237955566,0.0800716249977995,100,mac,phase-9,without +26,234.0747792582066,0.0,0.0,55.65936935998167,0.0774205000016081,100,mac,phase-9,without +27,240.0650594382712,0.0,0.0,57.08376552162113,0.0794017919979523,100,mac,phase-9,without +28,237.81349047900775,0.0,0.0,56.548377178031686,0.0786570829986885,100,mac,phase-9,without +29,243.5262478163098,0.0,0.0,57.90678269146844,0.0805465839985117,100,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n1000/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n1000/with_smell.csv new file mode 100644 index 000000000..0000558fb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n1000/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,4220.528551913251,1.8985583643147872,0.0,669.9579463127654,0.6673571669998637,1000,mac,phase-19,with +1,4206.953299792034,1.8924516864081216,0.0,667.8030389546134,0.6652106250003271,1000,mac,phase-19,with +2,4215.018030714928,1.8960795169419695,0.0,669.0832176100137,0.6664858339972852,1000,mac,phase-19,with +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112,1000,mac,phase-19,with +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162,1000,mac,phase-19,with +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398,1000,mac,phase-19,with +6,4233.671377624534,1.9044705199554777,0.0,672.0442111997277,0.6694353329985461,1000,mac,phase-19,with +7,4228.464944991696,1.902128463480386,0.0,671.217752884991,0.6686120829981519,1000,mac,phase-19,with +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751,1000,mac,phase-19,with +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449,1000,mac,phase-19,with +10,4221.611053511575,1.899045315756675,0.0,670.1297803706974,0.6675283339973248,1000,mac,phase-19,with +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534,1000,mac,phase-19,with +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175,1000,mac,phase-19,with +13,4230.499504402044,1.9030436876611256,0.0,671.54071462484,0.6689337909992901,1000,mac,phase-19,with +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926,1000,mac,phase-19,with +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654,1000,mac,phase-19,with +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086,1000,mac,phase-19,with +17,4230.842860190899,1.9031981424875408,0.0,671.5952182104279,0.6689880830017501,1000,mac,phase-19,with +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248,1000,mac,phase-19,with +19,4227.523423400034,1.9017049303444185,0.0,671.0682977008356,0.6684632079995936,1000,mac,phase-19,with +20,4219.778073043047,1.8982207696465505,0.0,669.8388168538721,0.6672385000019858,1000,mac,phase-19,with +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676,1000,mac,phase-19,with +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166,1000,mac,phase-19,with +23,4221.082448049655,1.8988075284016537,0.0,670.0458706363308,0.6674447500008682,1000,mac,phase-19,with +24,4206.322456585602,1.8921679085278371,0.0,667.7029002127881,0.665110874997481,1000,mac,phase-19,with +25,4242.370638791378,1.9083837869428983,0.0,673.4251138696396,0.670810874999006,1000,mac,phase-19,with +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935,1000,mac,phase-19,with +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882,1000,mac,phase-19,with +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524,1000,mac,phase-19,with +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065,1000,mac,phase-19,with +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575,1000,mac,phase-26,with +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671,1000,mac,phase-26,with +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872,1000,mac,phase-26,with +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984,1000,mac,phase-26,with +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695,1000,mac,phase-26,with +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884,1000,mac,phase-26,with +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729,1000,mac,phase-26,with +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931,1000,mac,phase-26,with +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438,1000,mac,phase-26,with +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557,1000,mac,phase-26,with +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739,1000,mac,phase-26,with +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657,1000,mac,phase-26,with +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443,1000,mac,phase-26,with +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984,1000,mac,phase-26,with +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266,1000,mac,phase-26,with +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819,1000,mac,phase-26,with +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884,1000,mac,phase-26,with +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955,1000,mac,phase-26,with +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664,1000,mac,phase-26,with +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512,1000,mac,phase-26,with +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685,1000,mac,phase-26,with +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929,1000,mac,phase-26,with +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905,1000,mac,phase-26,with +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121,1000,mac,phase-26,with +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751,1000,mac,phase-26,with +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741,1000,mac,phase-26,with +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306,1000,mac,phase-26,with +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247,1000,mac,phase-26,with +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952,1000,mac,phase-26,with +29,4766.67763709578,2.552409740466019,0.0,712.716714378895,0.701130875000672,1000,mac,phase-26,with +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437,1000,mac,phase-21,with +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811,1000,mac,phase-21,with +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996,1000,mac,phase-21,with +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752,1000,mac,phase-21,with +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475,1000,mac,phase-21,with +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028,1000,mac,phase-21,with +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979,1000,mac,phase-21,with +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447,1000,mac,phase-21,with +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314,1000,mac,phase-21,with +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629,1000,mac,phase-21,with +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477,1000,mac,phase-21,with +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285,1000,mac,phase-21,with +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075,1000,mac,phase-21,with +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229,1000,mac,phase-21,with +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999,1000,mac,phase-21,with +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096,1000,mac,phase-21,with +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847,1000,mac,phase-21,with +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059,1000,mac,phase-21,with +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166,1000,mac,phase-21,with +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332,1000,mac,phase-21,with +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261,1000,mac,phase-21,with +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364,1000,mac,phase-21,with +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932,1000,mac,phase-21,with +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939,1000,mac,phase-21,with +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151,1000,mac,phase-21,with +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543,1000,mac,phase-21,with +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614,1000,mac,phase-21,with +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847,1000,mac,phase-21,with +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008,1000,mac,phase-21,with +29,4236.218136169378,2.099183099819649,0.0,670.8389420423648,0.6676307919988176,1000,mac,phase-21,with +0,4252.8818824273885,2.916330819811958,0.0,674.9126980010802,0.6707283750001807,1000,mac,phase-28,with +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045,1000,mac,phase-28,with +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782,1000,mac,phase-28,with +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198,1000,mac,phase-28,with +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159,1000,mac,phase-28,with +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758,1000,mac,phase-28,with +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135,1000,mac,phase-28,with +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865,1000,mac,phase-28,with +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883,1000,mac,phase-28,with +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335,1000,mac,phase-28,with +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151,1000,mac,phase-28,with +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731,1000,mac,phase-28,with +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696,1000,mac,phase-28,with +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756,1000,mac,phase-28,with +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148,1000,mac,phase-28,with +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991,1000,mac,phase-28,with +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702,1000,mac,phase-28,with +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562,1000,mac,phase-28,with +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955,1000,mac,phase-28,with +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849,1000,mac,phase-28,with +20,4236.875066042591,2.905354457608498,0.0,672.3724902240174,0.6682039160004933,1000,mac,phase-28,with +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241,1000,mac,phase-28,with +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549,1000,mac,phase-28,with +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001,1000,mac,phase-28,with +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152,1000,mac,phase-28,with +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356,1000,mac,phase-28,with +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508,1000,mac,phase-28,with +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006,1000,mac,phase-28,with +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678,1000,mac,phase-28,with +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801,1000,mac,phase-28,with +0,4233.7459268513485,1.8343208499560768,0.0,671.7282952539152,0.6684168749998207,1000,mac,phase-17,with +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618,1000,mac,phase-17,with +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474,1000,mac,phase-17,with +3,4217.2807193634335,1.82718710269874,0.0,669.1159170082785,0.6658173750001879,1000,mac,phase-17,with +4,4233.164257526582,1.8340688347929952,0.0,671.6360073011949,0.6683250419991964,1000,mac,phase-17,with +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054,1000,mac,phase-17,with +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184,1000,mac,phase-17,with +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005,1000,mac,phase-17,with +8,4236.48775285413,1.8355087787290232,0.0,672.1633147705684,0.6688497499999357,1000,mac,phase-17,with +9,4259.023032178145,1.845272456908542,0.0,675.7387737199081,0.6724075830024958,1000,mac,phase-17,with +10,4220.165585871843,1.828437005474472,0.0,669.5736314047516,0.6662728330011305,1000,mac,phase-17,with +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739,1000,mac,phase-17,with +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104,1000,mac,phase-17,with +13,4233.0040582703405,1.833999426557133,0.0,671.6105900052222,0.668299750002916,1000,mac,phase-17,with +14,4226.978850104824,1.831388933354592,0.0,670.6546273944516,0.667348500002845,1000,mac,phase-17,with +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113,1000,mac,phase-17,with +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328,1000,mac,phase-17,with +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272,1000,mac,phase-17,with +18,4233.944921816377,1.834407066894857,0.0,671.7598678968967,0.6684482919990842,1000,mac,phase-17,with +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066,1000,mac,phase-17,with +20,4249.650576202317,1.8412117287239056,0.0,674.2517350586942,0.670927874998597,1000,mac,phase-17,with +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719,1000,mac,phase-17,with +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693,1000,mac,phase-17,with +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316,1000,mac,phase-17,with +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798,1000,mac,phase-17,with +25,4220.752005679336,1.828691078840776,0.0,669.6666730714923,0.6663654160001897,1000,mac,phase-17,with +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681,1000,mac,phase-17,with +27,4221.91720018277,1.829195913237745,0.0,669.8515434276624,0.6665493750006135,1000,mac,phase-17,with +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876,1000,mac,phase-17,with +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709,1000,mac,phase-17,with +0,5371.099961810868,5.280857460896809,106.01822699977645,756.2655808083043,0.6856771669990849,1000,mac,phase-10,with +1,5363.880609010041,5.273759404004894,105.87572676900965,755.2490761672071,0.6847555409985944,1000,mac,phase-10,with +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719,1000,mac,phase-10,with +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525,1000,mac,phase-10,with +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345,1000,mac,phase-10,with +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059,1000,mac,phase-10,with +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297,1000,mac,phase-10,with +7,5372.151900565224,5.281891725509057,106.03899084376413,756.4136966651483,0.6858114579990797,1000,mac,phase-10,with +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158,1000,mac,phase-10,with +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337,1000,mac,phase-10,with +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927,1000,mac,phase-10,with +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227,1000,mac,phase-10,with +12,5366.100043041169,5.27594154822965,105.91953538597753,755.5615785556473,0.6850388749990088,1000,mac,phase-10,with +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364,1000,mac,phase-10,with +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973,1000,mac,phase-10,with +15,5366.646735355581,5.276479055296713,105.93032635064031,755.6385543303717,0.685108665998996,1000,mac,phase-10,with +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709,1000,mac,phase-10,with +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213,1000,mac,phase-10,with +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005,1000,mac,phase-10,with +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962,1000,mac,phase-10,with +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437,1000,mac,phase-10,with +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114,1000,mac,phase-10,with +22,5365.320631859079,5.275175232319444,105.90415086656505,755.4518353271649,0.6849393749980663,1000,mac,phase-10,with +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881,1000,mac,phase-10,with +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078,1000,mac,phase-10,with +25,5378.330406530226,5.287966423346458,106.16094616996811,757.2836472219007,0.6866002089991525,1000,mac,phase-10,with +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997,1000,mac,phase-10,with +27,5403.673998780062,5.3128842053967,106.66119430074896,760.8520944019692,0.6898355839985015,1000,mac,phase-10,with +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381,1000,mac,phase-10,with +29,5330.02779723041,5.240475370021187,105.20751818802027,750.4825075789203,0.6804338750007446,1000,mac,phase-10,with +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682,1000,mac,phase-11,with +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186,1000,mac,phase-11,with +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859,1000,mac,phase-11,with +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746,1000,mac,phase-11,with +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048,1000,mac,phase-11,with +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973,1000,mac,phase-11,with +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401,1000,mac,phase-11,with +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178,1000,mac,phase-11,with +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143,1000,mac,phase-11,with +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177,1000,mac,phase-11,with +10,5419.407102652684,4.659793684661683,94.0004423869882,754.4842925683155,0.6892624579995754,1000,mac,phase-11,with +11,5393.631146430152,4.637630625908802,93.55335449675025,750.8957904079389,0.6859841660007078,1000,mac,phase-11,with +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406,1000,mac,phase-11,with +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715,1000,mac,phase-11,with +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774,1000,mac,phase-11,with +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974,1000,mac,phase-11,with +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185,1000,mac,phase-11,with +17,5448.457186507701,4.684771951605358,94.50432052015412,758.5286154160444,0.6929571670007135,1000,mac,phase-11,with +18,5396.272993802559,4.639902177661347,93.59917774217568,751.2635856866639,0.6863201670021226,1000,mac,phase-11,with +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951,1000,mac,phase-11,with +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026,1000,mac,phase-11,with +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316,1000,mac,phase-11,with +22,5408.767675900578,4.650645537521451,93.81589990798668,753.0030824996963,0.6879092919989489,1000,mac,phase-11,with +23,5393.128921742544,4.637198795750398,93.54464333297923,750.8258712025788,0.6859202910018212,1000,mac,phase-11,with +24,5398.73039199595,4.642015133629659,93.64180168847167,751.6057021400655,0.686632708999241,1000,mac,phase-11,with +25,5350.694712888532,4.6007123951744475,92.80861551128883,744.9182242143605,0.6805233340019186,1000,mac,phase-11,with +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455,1000,mac,phase-11,with +27,5407.841192231741,4.649848914815828,93.7998299075078,752.8740983945686,0.6877914579999924,1000,mac,phase-11,with +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925,1000,mac,phase-11,with +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382,1000,mac,phase-11,with +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754,1000,mac,phase-29,with +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034,1000,mac,phase-29,with +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907,1000,mac,phase-29,with +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888,1000,mac,phase-29,with +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375,1000,mac,phase-29,with +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376,1000,mac,phase-29,with +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414,1000,mac,phase-29,with +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597,1000,mac,phase-29,with +8,4249.175090223917,1.6719688560820003,0.0,674.1044033951409,0.6699446659986279,1000,mac,phase-29,with +9,4241.42578773114,1.6689196542606657,0.0,672.8750262048151,0.6687228750015493,1000,mac,phase-29,with +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961,1000,mac,phase-29,with +11,4233.126786808715,1.6656541566560097,0.0,671.5584428805699,0.6674144159987918,1000,mac,phase-29,with +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814,1000,mac,phase-29,with +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955,1000,mac,phase-29,with +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012,1000,mac,phase-29,with +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068,1000,mac,phase-29,with +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584,1000,mac,phase-29,with +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977,1000,mac,phase-29,with +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389,1000,mac,phase-29,with +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907,1000,mac,phase-29,with +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867,1000,mac,phase-29,with +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752,1000,mac,phase-29,with +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945,1000,mac,phase-29,with +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916,1000,mac,phase-29,with +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299,1000,mac,phase-29,with +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818,1000,mac,phase-29,with +26,4236.9941789942895,1.6671759012655485,0.0,672.1719798722437,0.6680241670001124,1000,mac,phase-29,with +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245,1000,mac,phase-29,with +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405,1000,mac,phase-29,with +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837,1000,mac,phase-29,with +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203,1000,mac,phase-16,with +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171,1000,mac,phase-16,with +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709,1000,mac,phase-16,with +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271,1000,mac,phase-16,with +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992,1000,mac,phase-16,with +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234,1000,mac,phase-16,with +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881,1000,mac,phase-16,with +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039,1000,mac,phase-16,with +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999,1000,mac,phase-16,with +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505,1000,mac,phase-16,with +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424,1000,mac,phase-16,with +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857,1000,mac,phase-16,with +12,4724.174633692797,2.151358301301202,0.0,707.7621818006551,0.69712887499918,1000,mac,phase-16,with +13,4713.35774514804,2.146432360841879,0.0,706.1416268401905,0.6955326669994975,1000,mac,phase-16,with +14,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828,1000,mac,phase-16,with +15,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863,1000,mac,phase-16,with +16,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767,1000,mac,phase-16,with +17,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978,1000,mac,phase-16,with +18,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894,1000,mac,phase-16,with +19,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856,1000,mac,phase-16,with +20,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611,1000,mac,phase-16,with +21,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634,1000,mac,phase-16,with +22,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011,1000,mac,phase-16,with +23,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656,1000,mac,phase-16,with +24,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471,1000,mac,phase-16,with +25,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497,1000,mac,phase-16,with +26,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462,1000,mac,phase-16,with +27,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372,1000,mac,phase-16,with +28,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194,1000,mac,phase-16,with +29,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452,1000,mac,phase-16,with +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385,1000,mac,phase-20,with +1,4235.03031838744,2.499742443800431,0.0,671.8641090950546,0.6674069170003349,1000,mac,phase-20,with +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319,1000,mac,phase-20,with +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128,1000,mac,phase-20,with +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237,1000,mac,phase-20,with +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381,1000,mac,phase-20,with +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611,1000,mac,phase-20,with +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384,1000,mac,phase-20,with +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259,1000,mac,phase-20,with +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215,1000,mac,phase-20,with +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887,1000,mac,phase-20,with +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787,1000,mac,phase-20,with +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297,1000,mac,phase-20,with +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471,1000,mac,phase-20,with +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294,1000,mac,phase-20,with +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329,1000,mac,phase-20,with +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508,1000,mac,phase-20,with +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221,1000,mac,phase-20,with +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391,1000,mac,phase-20,with +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437,1000,mac,phase-20,with +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421,1000,mac,phase-20,with +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773,1000,mac,phase-20,with +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718,1000,mac,phase-20,with +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409,1000,mac,phase-20,with +24,4223.243286387955,2.492785104192349,0.0,669.9941617374582,0.6655493750004098,1000,mac,phase-20,with +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896,1000,mac,phase-20,with +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204,1000,mac,phase-20,with +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584,1000,mac,phase-20,with +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693,1000,mac,phase-20,with +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033,1000,mac,phase-20,with +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636,1000,mac,phase-18,with +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234,1000,mac,phase-18,with +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285,1000,mac,phase-18,with +3,4361.984865902042,2.435313583419511,0.0,683.8834075438763,0.6773193749977509,1000,mac,phase-18,with +4,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504,1000,mac,phase-18,with +5,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946,1000,mac,phase-18,with +6,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274,1000,mac,phase-18,with +7,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965,1000,mac,phase-18,with +8,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027,1000,mac,phase-18,with +9,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538,1000,mac,phase-18,with +10,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695,1000,mac,phase-18,with +11,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498,1000,mac,phase-18,with +12,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783,1000,mac,phase-18,with +13,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614,1000,mac,phase-18,with +14,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265,1000,mac,phase-18,with +15,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494,1000,mac,phase-18,with +16,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688,1000,mac,phase-18,with +17,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763,1000,mac,phase-18,with +18,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674,1000,mac,phase-18,with +19,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219,1000,mac,phase-18,with +20,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243,1000,mac,phase-18,with +21,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514,1000,mac,phase-18,with +22,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831,1000,mac,phase-18,with +23,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491,1000,mac,phase-18,with +24,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778,1000,mac,phase-18,with +25,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625,1000,mac,phase-18,with +26,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292,1000,mac,phase-18,with +27,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944,1000,mac,phase-18,with +28,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629,1000,mac,phase-18,with +29,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866,1000,mac,phase-18,with +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416,1000,mac,phase-27,with +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251,1000,mac,phase-27,with +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694,1000,mac,phase-27,with +3,4252.917010990448,1.8079994850813177,0.0,673.0110675855475,0.6701307500006806,1000,mac,phase-27,with +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295,1000,mac,phase-27,with +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529,1000,mac,phase-27,with +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722,1000,mac,phase-27,with +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746,1000,mac,phase-27,with +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708,1000,mac,phase-27,with +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747,1000,mac,phase-27,with +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627,1000,mac,phase-27,with +11,4218.894760122639,1.7935359505492905,0.0,667.6271507776164,0.6647698749984556,1000,mac,phase-27,with +12,4301.269696958708,1.828555172179607,0.0,680.6627317774496,0.677749667000171,1000,mac,phase-27,with +13,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405,1000,mac,phase-27,with +14,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344,1000,mac,phase-27,with +15,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605,1000,mac,phase-27,with +16,4236.082134553483,1.8008426447642405,0.0,670.3470000445554,0.6674780839966843,1000,mac,phase-27,with +17,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561,1000,mac,phase-27,with +18,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166,1000,mac,phase-27,with +19,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142,1000,mac,phase-27,with +20,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264,1000,mac,phase-27,with +21,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589,1000,mac,phase-27,with +22,4223.751874950823,1.7956008065259397,0.0,668.3957742958872,0.6655352090019733,1000,mac,phase-27,with +23,4240.11870444225,1.802558670790971,0.0,670.9857748438761,0.6681141250010114,1000,mac,phase-27,with +24,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789,1000,mac,phase-27,with +25,4245.349196909234,1.8047822570172225,0.0,671.8134842278367,0.6689382919976197,1000,mac,phase-27,with +26,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449,1000,mac,phase-27,with +27,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376,1000,mac,phase-27,with +28,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237,1000,mac,phase-27,with +29,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428,1000,mac,phase-27,with +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123,1000,mac,phase-5,with +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618,1000,mac,phase-5,with +2,4259.939212365175,1.800396943474364,0.0,670.4811580235084,0.6678189169979305,1000,mac,phase-5,with +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758,1000,mac,phase-5,with +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047,1000,mac,phase-5,with +5,4269.997117263699,1.8046477602898936,0.0,672.0641936931438,0.6693956669987529,1000,mac,phase-5,with +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345,1000,mac,phase-5,with +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504,1000,mac,phase-5,with +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013,1000,mac,phase-5,with +9,4296.453269566179,1.8158290409061095,0.0,676.2281854189235,0.6735431250017427,1000,mac,phase-5,with +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246,1000,mac,phase-5,with +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127,1000,mac,phase-5,with +12,4258.273787900644,1.799693077769701,0.0,670.2190332212722,0.6675578329995915,1000,mac,phase-5,with +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711,1000,mac,phase-5,with +14,4308.839199102784,1.8210637610671545,0.0,678.1776339826014,0.675484833001974,1000,mac,phase-5,with +15,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011,1000,mac,phase-5,with +16,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155,1000,mac,phase-5,with +17,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318,1000,mac,phase-5,with +18,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518,1000,mac,phase-5,with +19,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639,1000,mac,phase-5,with +20,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803,1000,mac,phase-5,with +21,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353,1000,mac,phase-5,with +22,4280.57356799962,1.8091177324252912,0.0,673.7288444272706,0.6710537079998176,1000,mac,phase-5,with +23,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939,1000,mac,phase-5,with +24,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774,1000,mac,phase-5,with +25,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006,1000,mac,phase-5,with +26,4258.146210229622,1.7996391590545475,0.0,670.198953492351,0.6675378330000967,1000,mac,phase-5,with +27,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034,1000,mac,phase-5,with +28,4263.6413570172435,1.8019615972366845,0.0,671.0638466746244,0.6683992920006858,1000,mac,phase-5,with +29,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724,1000,mac,phase-5,with +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055,1000,mac,phase-2,with +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373,1000,mac,phase-2,with +2,4316.2545227606615,1.6630872731619033,0.0,683.460988156352,0.678783667000971,1000,mac,phase-2,with +3,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072,1000,mac,phase-2,with +4,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403,1000,mac,phase-2,with +5,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909,1000,mac,phase-2,with +6,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192,1000,mac,phase-2,with +7,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766,1000,mac,phase-2,with +8,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976,1000,mac,phase-2,with +9,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494,1000,mac,phase-2,with +10,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305,1000,mac,phase-2,with +11,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639,1000,mac,phase-2,with +12,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842,1000,mac,phase-2,with +13,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747,1000,mac,phase-2,with +14,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965,1000,mac,phase-2,with +15,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545,1000,mac,phase-2,with +16,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915,1000,mac,phase-2,with +17,4227.847230305918,1.629023238670687,0.0,669.462060349217,0.6648805420009012,1000,mac,phase-2,with +18,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213,1000,mac,phase-2,with +19,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505,1000,mac,phase-2,with +20,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857,1000,mac,phase-2,with +21,4215.308450834855,1.6241919469919075,0.0,667.4765966648173,0.6629086659995664,1000,mac,phase-2,with +22,4231.468303978479,1.6304184672208717,0.0,670.0354423352385,0.6654500000004191,1000,mac,phase-2,with +23,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565,1000,mac,phase-2,with +24,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735,1000,mac,phase-2,with +25,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721,1000,mac,phase-2,with +26,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212,1000,mac,phase-2,with +27,4228.263999257775,1.629183823069969,0.0,669.5280539828562,0.6649460840017127,1000,mac,phase-2,with +28,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414,1000,mac,phase-2,with +29,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668,1000,mac,phase-2,with +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888,1000,mac,phase-3,with +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896,1000,mac,phase-3,with +2,4296.3093777503855,1.8312061917425837,0.0,673.4510480068589,0.6612518339970848,1000,mac,phase-3,with +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919,1000,mac,phase-3,with +4,4281.318895847793,1.824816832675615,0.0,671.1012740823575,0.6589446250000037,1000,mac,phase-3,with +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367,1000,mac,phase-3,with +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265,1000,mac,phase-3,with +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202,1000,mac,phase-3,with +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616,1000,mac,phase-3,with +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722,1000,mac,phase-3,with +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922,1000,mac,phase-3,with +11,4294.81365551898,1.8305686734517777,0.0,673.2165919619837,0.6610216250010126,1000,mac,phase-3,with +12,4367.050740155173,1.8613581220292663,0.0,684.5398315324722,0.6721397500004969,1000,mac,phase-3,with +13,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633,1000,mac,phase-3,with +14,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174,1000,mac,phase-3,with +15,4304.474772925574,1.8346865095894,0.0,674.7309823539053,0.6625085830019088,1000,mac,phase-3,with +16,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507,1000,mac,phase-3,with +17,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669,1000,mac,phase-3,with +18,4304.719237909603,1.8347907073445096,0.0,674.7693024992254,0.66254620899781,1000,mac,phase-3,with +19,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735,1000,mac,phase-3,with +20,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411,1000,mac,phase-3,with +21,4289.335939610233,1.828233919036592,0.0,672.3579541882391,0.6601785410020966,1000,mac,phase-3,with +22,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537,1000,mac,phase-3,with +23,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059,1000,mac,phase-3,with +24,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462,1000,mac,phase-3,with +25,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423,1000,mac,phase-3,with +26,4296.307207702341,1.831205266807932,0.0,673.450707849528,0.6612515000015264,1000,mac,phase-3,with +27,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959,1000,mac,phase-3,with +28,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385,1000,mac,phase-3,with +29,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169,1000,mac,phase-3,with +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083,1000,mac,phase-4,with +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339,1000,mac,phase-4,with +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718,1000,mac,phase-4,with +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503,1000,mac,phase-4,with +4,4332.218872799026,3.001398692530848,0.0,676.281823175923,0.6688972499978263,1000,mac,phase-4,with +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471,1000,mac,phase-4,with +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487,1000,mac,phase-4,with +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688,1000,mac,phase-4,with +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175,1000,mac,phase-4,with +9,4403.067309093179,3.0504831017688643,0.0,687.3416313418977,0.6798362919980718,1000,mac,phase-4,with +10,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898,1000,mac,phase-4,with +11,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943,1000,mac,phase-4,with +12,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758,1000,mac,phase-4,with +13,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134,1000,mac,phase-4,with +14,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097,1000,mac,phase-4,with +15,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611,1000,mac,phase-4,with +16,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152,1000,mac,phase-4,with +17,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642,1000,mac,phase-4,with +18,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146,1000,mac,phase-4,with +19,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455,1000,mac,phase-4,with +20,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713,1000,mac,phase-4,with +21,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074,1000,mac,phase-4,with +22,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953,1000,mac,phase-4,with +23,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337,1000,mac,phase-4,with +24,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074,1000,mac,phase-4,with +25,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496,1000,mac,phase-4,with +26,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735,1000,mac,phase-4,with +27,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393,1000,mac,phase-4,with +28,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164,1000,mac,phase-4,with +29,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869,1000,mac,phase-4,with +0,4233.805184421818,2.86436991299503,0.0,671.3616783283818,0.6663879580009962,1000,mac,phase-22,with +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342,1000,mac,phase-22,with +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766,1000,mac,phase-22,with +3,4232.574753845726,2.863537468381105,0.0,671.1665668623015,0.6661942920000001,1000,mac,phase-22,with +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978,1000,mac,phase-22,with +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734,1000,mac,phase-22,with +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708,1000,mac,phase-22,with +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662,1000,mac,phase-22,with +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107,1000,mac,phase-22,with +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705,1000,mac,phase-22,with +10,4212.616188554973,2.850034552815756,0.0,668.0017032686884,0.6630528750029043,1000,mac,phase-22,with +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905,1000,mac,phase-22,with +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128,1000,mac,phase-22,with +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049,1000,mac,phase-22,with +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436,1000,mac,phase-22,with +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658,1000,mac,phase-22,with +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247,1000,mac,phase-22,with +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384,1000,mac,phase-22,with +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947,1000,mac,phase-22,with +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966,1000,mac,phase-22,with +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179,1000,mac,phase-22,with +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067,1000,mac,phase-22,with +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647,1000,mac,phase-22,with +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332,1000,mac,phase-22,with +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924,1000,mac,phase-22,with +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472,1000,mac,phase-22,with +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219,1000,mac,phase-22,with +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785,1000,mac,phase-22,with +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212,1000,mac,phase-22,with +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668,1000,mac,phase-22,with +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494,1000,mac,phase-25,with +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887,1000,mac,phase-25,with +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709,1000,mac,phase-25,with +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783,1000,mac,phase-25,with +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572,1000,mac,phase-25,with +5,4241.797005501357,1.7569867632493603,0.0,670.3401762201004,0.6658014579988958,1000,mac,phase-25,with +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688,1000,mac,phase-25,with +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704,1000,mac,phase-25,with +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198,1000,mac,phase-25,with +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689,1000,mac,phase-25,with +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537,1000,mac,phase-25,with +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878,1000,mac,phase-25,with +12,4249.790443577442,1.7602977102075297,0.0,671.6033961906878,0.6670561249993625,1000,mac,phase-25,with +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807,1000,mac,phase-25,with +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101,1000,mac,phase-25,with +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622,1000,mac,phase-25,with +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319,1000,mac,phase-25,with +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364,1000,mac,phase-25,with +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109,1000,mac,phase-25,with +19,4259.435815226876,1.7642929014655495,0.0,673.1276747270732,0.6685700829984853,1000,mac,phase-25,with +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986,1000,mac,phase-25,with +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958,1000,mac,phase-25,with +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543,1000,mac,phase-25,with +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503,1000,mac,phase-25,with +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133,1000,mac,phase-25,with +25,4247.644486345279,1.7594088372967045,0.0,671.2642660184275,0.6667192909990263,1000,mac,phase-25,with +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146,1000,mac,phase-25,with +27,4250.709990274736,1.7606785939163063,0.0,671.7487141053139,0.6672004590000142,1000,mac,phase-25,with +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455,1000,mac,phase-25,with +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169,1000,mac,phase-25,with +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987,1000,mac,phase-13,with +1,4232.037816623077,1.633116390355264,0.0,670.8442184708318,0.6674780419998569,1000,mac,phase-13,with +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916,1000,mac,phase-13,with +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375,1000,mac,phase-13,with +4,4243.973240627595,1.637722194323049,0.0,672.7361699455987,0.6693605000000389,1000,mac,phase-13,with +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998,1000,mac,phase-13,with +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657,1000,mac,phase-13,with +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266,1000,mac,phase-13,with +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238,1000,mac,phase-13,with +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002,1000,mac,phase-13,with +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034,1000,mac,phase-13,with +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991,1000,mac,phase-13,with +12,4237.355510600818,1.635168454531022,0.0,671.6871561796002,0.6683167499977571,1000,mac,phase-13,with +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947,1000,mac,phase-13,with +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404,1000,mac,phase-13,with +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294,1000,mac,phase-13,with +16,4265.879642022094,1.646175734844482,0.0,676.208677366321,0.6728155829987372,1000,mac,phase-13,with +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048,1000,mac,phase-13,with +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143,1000,mac,phase-13,with +19,4242.011171658709,1.636965044427198,0.0,672.4251513108294,0.6690510420012288,1000,mac,phase-13,with +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099,1000,mac,phase-13,with +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737,1000,mac,phase-13,with +22,4208.176472784298,1.6239084500183545,0.0,667.0618220810089,0.6637146249995567,1000,mac,phase-13,with +23,4214.574135928659,1.6263772674046235,0.0,668.0759518024544,0.6647236659991904,1000,mac,phase-13,with +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738,1000,mac,phase-13,with +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659,1000,mac,phase-13,with +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104,1000,mac,phase-13,with +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474,1000,mac,phase-13,with +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761,1000,mac,phase-13,with +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561,1000,mac,phase-13,with +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179,1000,mac,phase-14,with +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888,1000,mac,phase-14,with +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684,1000,mac,phase-14,with +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505,1000,mac,phase-14,with +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456,1000,mac,phase-14,with +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906,1000,mac,phase-14,with +6,4351.687882995867,3.278171278302327,0.0,685.6785264482053,0.6781866250021267,1000,mac,phase-14,with +7,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492,1000,mac,phase-14,with +8,4279.214199576053,3.223576106541973,0.0,674.2591301611349,0.6668920000010985,1000,mac,phase-14,with +9,4289.831616235325,3.23157431580652,0.0,675.9320751896751,0.6685466659982922,1000,mac,phase-14,with +10,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947,1000,mac,phase-14,with +11,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687,1000,mac,phase-14,with +12,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766,1000,mac,phase-14,with +13,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288,1000,mac,phase-14,with +14,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154,1000,mac,phase-14,with +15,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639,1000,mac,phase-14,with +16,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175,1000,mac,phase-14,with +17,4306.362254109225,3.244027015482428,0.0,678.5367434754947,0.6711228750027658,1000,mac,phase-14,with +18,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187,1000,mac,phase-14,with +19,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203,1000,mac,phase-14,with +20,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345,1000,mac,phase-14,with +21,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055,1000,mac,phase-14,with +22,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631,1000,mac,phase-14,with +23,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103,1000,mac,phase-14,with +24,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301,1000,mac,phase-14,with +25,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826,1000,mac,phase-14,with +26,4277.992096765777,3.222655483914731,0.0,674.0665681767628,0.6667015419989184,1000,mac,phase-14,with +27,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038,1000,mac,phase-14,with +28,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906,1000,mac,phase-14,with +29,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585,1000,mac,phase-14,with +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615,1000,mac,phase-15,with +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135,1000,mac,phase-15,with +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816,1000,mac,phase-15,with +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988,1000,mac,phase-15,with +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868,1000,mac,phase-15,with +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682,1000,mac,phase-15,with +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318,1000,mac,phase-15,with +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657,1000,mac,phase-15,with +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435,1000,mac,phase-15,with +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166,1000,mac,phase-15,with +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583,1000,mac,phase-15,with +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683,1000,mac,phase-15,with +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049,1000,mac,phase-15,with +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155,1000,mac,phase-15,with +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538,1000,mac,phase-15,with +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964,1000,mac,phase-15,with +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264,1000,mac,phase-15,with +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035,1000,mac,phase-15,with +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506,1000,mac,phase-15,with +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285,1000,mac,phase-15,with +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116,1000,mac,phase-15,with +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129,1000,mac,phase-15,with +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858,1000,mac,phase-15,with +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954,1000,mac,phase-15,with +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173,1000,mac,phase-15,with +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859,1000,mac,phase-15,with +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842,1000,mac,phase-15,with +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256,1000,mac,phase-15,with +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392,1000,mac,phase-15,with +29,4394.9357444520365,2.1957352998409876,0.0,690.0441263390903,0.6867462920017715,1000,mac,phase-15,with +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583,1000,mac,phase-12,with +1,4531.796465296956,3.541325533545661,10.727122004526665,704.2080541561381,0.6902903339978366,1000,mac,phase-12,with +2,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217,1000,mac,phase-12,with +3,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334,1000,mac,phase-12,with +4,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716,1000,mac,phase-12,with +5,4423.116844673827,3.4563989666894583,10.469868714632144,687.3200352983833,0.6737360840015754,1000,mac,phase-12,with +6,4372.552212189364,3.41688575697609,10.350178215306212,679.4626609163522,0.6660340000016731,1000,mac,phase-12,with +7,4367.830293810635,3.4131958626372865,10.33900105963916,678.7289093061835,0.6653147500001069,1000,mac,phase-12,with +8,4402.0599576700315,3.4399442798617175,10.420025391425783,684.0479489332786,0.6705286659998819,1000,mac,phase-12,with +9,4377.090584625613,3.420432221234205,10.36092090315604,680.1678908283396,0.6667252919978637,1000,mac,phase-12,with +10,4383.548140369233,3.4254784114623615,10.37620645025492,681.1713478016708,0.6677089170007093,1000,mac,phase-12,with +11,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672,1000,mac,phase-12,with +12,4356.017836464776,3.403965139869143,10.311040035331771,676.8933397553377,0.6635154579998925,1000,mac,phase-12,with +13,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577,1000,mac,phase-12,with +14,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067,1000,mac,phase-12,with +15,4402.389306963763,3.440201646465068,10.420804987350497,684.099127406772,0.670578833000036,1000,mac,phase-12,with +16,4315.28000684407,3.372130983741042,10.214610358516552,670.5629787280001,0.6573102080001263,1000,mac,phase-12,with +17,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107,1000,mac,phase-12,with +18,4374.957761226749,3.4187655484216073,10.355872340849915,679.8364656579744,0.6664004169979307,1000,mac,phase-12,with +19,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159,1000,mac,phase-12,with +20,4380.030910237862,3.4227299083098126,10.367880887307392,680.624795941763,0.6671731669994188,1000,mac,phase-12,with +21,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498,1000,mac,phase-12,with +22,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315,1000,mac,phase-12,with +23,4376.213328707104,3.419746698658895,10.35884436875316,680.0315716692378,0.666591667002649,1000,mac,phase-12,with +24,4380.196677962882,3.422859445786119,10.368273272672516,680.6505550348669,0.6671984169988718,1000,mac,phase-12,with +25,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699,1000,mac,phase-12,with +26,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136,1000,mac,phase-12,with +27,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095,1000,mac,phase-12,with +28,4405.482821650499,3.4426190415604627,10.428127582202569,684.5798369829262,0.6710500420012977,1000,mac,phase-12,with +29,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227,1000,mac,phase-12,with +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697,1000,mac,phase-24,with +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935,1000,mac,phase-24,with +2,4294.070878255385,2.008405265665155,0.0,675.7279516330415,0.6701891660013644,1000,mac,phase-24,with +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936,1000,mac,phase-24,with +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585,1000,mac,phase-24,with +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677,1000,mac,phase-24,with +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344,1000,mac,phase-24,with +7,4270.762102767754,1.9975033805419675,0.0,672.0600123833451,0.6665512920008041,1000,mac,phase-24,with +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336,1000,mac,phase-24,with +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748,1000,mac,phase-24,with +10,4261.827183417434,1.993324376613004,0.0,670.6539865114453,0.6651567909975711,1000,mac,phase-24,with +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531,1000,mac,phase-24,with +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177,1000,mac,phase-24,with +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957,1000,mac,phase-24,with +14,4268.013923464058,1.9962180133598648,0.0,671.6275505949264,0.6661223750015779,1000,mac,phase-24,with +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092,1000,mac,phase-24,with +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146,1000,mac,phase-24,with +17,4363.564209013365,2.0409084020548467,0.0,686.6636318713531,0.6810352089996741,1000,mac,phase-24,with +18,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839,1000,mac,phase-24,with +19,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792,1000,mac,phase-24,with +20,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211,1000,mac,phase-24,with +21,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756,1000,mac,phase-24,with +22,4251.740304272998,1.988606582761394,0.0,669.0666847700711,0.6635825000012119,1000,mac,phase-24,with +23,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028,1000,mac,phase-24,with +24,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502,1000,mac,phase-24,with +25,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149,1000,mac,phase-24,with +26,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017,1000,mac,phase-24,with +27,4263.9447802230125,1.994314810328576,0.0,670.9872179350494,0.6654872910003178,1000,mac,phase-24,with +28,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692,1000,mac,phase-24,with +29,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221,1000,mac,phase-24,with +0,4282.915524281316,1.9366110579895248,0.0,675.6769201633797,0.6687819170001603,1000,mac,phase-23,with +1,4391.654228983149,1.9857795687301991,0.0,692.8316440142122,0.6857615839981008,1000,mac,phase-23,with +2,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549,1000,mac,phase-23,with +3,4262.6173435256915,1.927432805211586,0.0,672.4746594183043,0.6656123339998885,1000,mac,phase-23,with +4,4282.052840567513,1.9362209772582504,0.0,675.540822341344,0.6686472080000385,1000,mac,phase-23,with +5,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313,1000,mac,phase-23,with +6,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988,1000,mac,phase-23,with +7,4289.356664180724,1.9395235559560455,0.0,676.6930806608025,0.6697877080005128,1000,mac,phase-23,with +8,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468,1000,mac,phase-23,with +9,4270.16291377157,1.9308446947747024,0.0,673.6650559217393,0.6667905829999654,1000,mac,phase-23,with +10,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788,1000,mac,phase-23,with +11,4291.628771306302,1.9405509373646648,0.0,677.051530491575,0.6701424999992014,1000,mac,phase-23,with +12,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963,1000,mac,phase-23,with +13,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255,1000,mac,phase-23,with +14,4277.141731638064,1.934000315233552,0.0,674.766041018382,0.6678803329996299,1000,mac,phase-23,with +15,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693,1000,mac,phase-23,with +16,4245.205514749945,1.9195596776759711,0.0,669.7277523698441,0.6628934580003261,1000,mac,phase-23,with +17,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677,1000,mac,phase-23,with +18,4243.843590196685,1.9189438546145456,0.0,669.5128938272403,0.6626807920001738,1000,mac,phase-23,with +19,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941,1000,mac,phase-23,with +20,4297.038595942507,1.9429971042696297,0.0,677.904989689659,0.6709872499995981,1000,mac,phase-23,with +21,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116,1000,mac,phase-23,with +22,4266.908322293752,1.9293730622362015,0.0,673.1516084036514,0.6662823750011739,1000,mac,phase-23,with +23,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164,1000,mac,phase-23,with +24,4269.309579982598,1.9304588418101711,0.0,673.5304331529419,0.6666573340007744,1000,mac,phase-23,with +25,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687,1000,mac,phase-23,with +26,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072,1000,mac,phase-23,with +27,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284,1000,mac,phase-23,with +28,4260.173921548421,1.926327960160664,0.0,672.0891827898483,0.6652307910007949,1000,mac,phase-23,with +29,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389,1000,mac,phase-23,with +0,5266.955267504172,5.9290178909972,113.8768911131194,750.0704477186123,0.680035332999978,1000,mac,phase-8,with +1,5288.670973052095,5.95346328689863,114.34640659417592,753.1629951498295,0.6828391250019195,1000,mac,phase-8,with +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001,1000,mac,phase-8,with +3,5398.076602054193,6.076621335293567,116.7118667639066,768.7435203224738,0.6969648749982298,1000,mac,phase-8,with +4,5305.467876791607,5.972371581677469,114.70957261344768,755.5550528887501,0.6850078330026008,1000,mac,phase-8,with +5,5313.715786732026,5.981656263835639,114.88790075456384,756.7296429863577,0.686072749998857,1000,mac,phase-8,with +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053,1000,mac,phase-8,with +7,5302.962655734788,5.969551451315166,114.6554072045896,755.1982827655415,0.6846843749990512,1000,mac,phase-8,with +8,5282.032111733405,5.945989912712749,114.20286770897448,752.2175506892748,0.6819819579977775,1000,mac,phase-8,with +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789,1000,mac,phase-8,with +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687,1000,mac,phase-8,with +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497,1000,mac,phase-8,with +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034,1000,mac,phase-8,with +13,5321.700680193805,5.990644868026885,115.0605422138348,757.8667767400492,0.6871037080018141,1000,mac,phase-8,with +14,5331.095193216626,6.001220282656504,115.26366107135787,759.2046553114891,0.6883166670013452,1000,mac,phase-8,with +15,5357.676119786506,6.031142463724653,115.83836754349365,762.9900619611441,0.6917486249985814,1000,mac,phase-8,with +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533,1000,mac,phase-8,with +17,5283.988405148097,5.948192114566884,114.24516474793823,752.4961476780284,0.6822345420005149,1000,mac,phase-8,with +18,5247.942934153031,5.907615684435091,113.46582526864717,747.3628892404057,0.6775805830002355,1000,mac,phase-8,with +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738,1000,mac,phase-8,with +20,5257.917355280346,5.918843902316692,113.68148232494296,748.7833528936396,0.678868415998295,1000,mac,phase-8,with +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691,1000,mac,phase-8,with +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859,1000,mac,phase-8,with +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158,1000,mac,phase-8,with +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561,1000,mac,phase-8,with +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575,1000,mac,phase-8,with +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268,1000,mac,phase-8,with +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813,1000,mac,phase-8,with +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286,1000,mac,phase-8,with +29,5284.043589125742,5.9482542352370125,114.24635788125612,752.5040064633639,0.6822416670001985,1000,mac,phase-8,with +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929,1000,mac,phase-1,with +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168,1000,mac,phase-1,with +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774,1000,mac,phase-1,with +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706,1000,mac,phase-1,with +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299,1000,mac,phase-1,with +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821,1000,mac,phase-1,with +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113,1000,mac,phase-1,with +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128,1000,mac,phase-1,with +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182,1000,mac,phase-1,with +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069,1000,mac,phase-1,with +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556,1000,mac,phase-1,with +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651,1000,mac,phase-1,with +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213,1000,mac,phase-1,with +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805,1000,mac,phase-1,with +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555,1000,mac,phase-1,with +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695,1000,mac,phase-1,with +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733,1000,mac,phase-1,with +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352,1000,mac,phase-1,with +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509,1000,mac,phase-1,with +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757,1000,mac,phase-1,with +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149,1000,mac,phase-1,with +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264,1000,mac,phase-1,with +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836,1000,mac,phase-1,with +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148,1000,mac,phase-1,with +24,4215.132051569963,2.019137723673603,0.0,667.6063729307034,0.6637141249993874,1000,mac,phase-1,with +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339,1000,mac,phase-1,with +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552,1000,mac,phase-1,with +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064,1000,mac,phase-1,with +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687,1000,mac,phase-1,with +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651,1000,mac,phase-1,with +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041,1000,mac,phase-30,with +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858,1000,mac,phase-30,with +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505,1000,mac,phase-30,with +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749,1000,mac,phase-30,with +4,4183.686687295611,2.242821512366286,0.0,665.4913184560963,0.6601848330028588,1000,mac,phase-30,with +5,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599,1000,mac,phase-30,with +6,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206,1000,mac,phase-30,with +7,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374,1000,mac,phase-30,with +8,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374,1000,mac,phase-30,with +9,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463,1000,mac,phase-30,with +10,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212,1000,mac,phase-30,with +11,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746,1000,mac,phase-30,with +12,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392,1000,mac,phase-30,with +13,4208.039275310504,2.255876626757966,0.0,669.3650396778748,0.6640276660000382,1000,mac,phase-30,with +14,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421,1000,mac,phase-30,with +15,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857,1000,mac,phase-30,with +16,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983,1000,mac,phase-30,with +17,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557,1000,mac,phase-30,with +18,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472,1000,mac,phase-30,with +19,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811,1000,mac,phase-30,with +20,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253,1000,mac,phase-30,with +21,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509,1000,mac,phase-30,with +22,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295,1000,mac,phase-30,with +23,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041,1000,mac,phase-30,with +24,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841,1000,mac,phase-30,with +25,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323,1000,mac,phase-30,with +26,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186,1000,mac,phase-30,with +27,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896,1000,mac,phase-30,with +28,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796,1000,mac,phase-30,with +29,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598,1000,mac,phase-30,with +0,5614.990553964228,5.7756058115323325,109.76989542380524,759.4420867094653,0.6870545829988259,1000,mac,phase-6,with +1,5608.692244635915,5.769127340801201,109.64676703210608,758.5902239800331,0.6862839170025836,1000,mac,phase-6,with +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555,1000,mac,phase-6,with +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757,1000,mac,phase-6,with +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752,1000,mac,phase-6,with +5,5554.87393461145,5.713769572848289,108.59464945390276,751.3111574748722,0.679698667001503,1000,mac,phase-6,with +6,5565.841836903626,5.7250512089632934,108.80906575185728,752.794594806341,0.6810407080010918,1000,mac,phase-6,with +7,5597.4321653440575,5.75754517004395,109.4266388387544,757.0672689489005,0.684906124999543,1000,mac,phase-6,with +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146,1000,mac,phase-6,with +9,5600.578598587723,5.760781606143541,109.48814983236971,757.492832234412,0.68529112500255,1000,mac,phase-6,with +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432,1000,mac,phase-6,with +11,5601.160557946362,5.761380212289274,109.4995268092898,757.5715437523492,0.6853623339993646,1000,mac,phase-6,with +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837,1000,mac,phase-6,with +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055,1000,mac,phase-6,with +14,5770.126400037058,5.935179275733913,112.80271363360175,780.4246136670234,0.7060371250008757,1000,mac,phase-6,with +15,5876.410462417555,6.044503564431901,114.88050705116817,794.799809732352,0.7190421250015788,1000,mac,phase-6,with +16,5596.661223842662,5.756752175973343,109.41156736763207,756.9629971042867,0.6848117920017103,1000,mac,phase-6,with +17,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294,1000,mac,phase-6,with +18,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648,1000,mac,phase-6,with +19,5610.2365140437805,5.77071578360995,109.67695662722264,758.7990904367581,0.6864728750006179,1000,mac,phase-6,with +20,5580.16526722144,5.739784357058483,109.08908072837164,754.7318760367998,0.6827933340027812,1000,mac,phase-6,with +21,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064,1000,mac,phase-6,with +22,5583.60488260023,5.743322361687386,109.1563232672146,755.1970929691598,0.6832142079983896,1000,mac,phase-6,with +23,5543.578786923836,5.702151330573483,108.37383569321165,749.7834593519398,0.6783165840024594,1000,mac,phase-6,with +24,5576.76786301207,5.736289771037868,109.02266339406076,754.2723682749679,0.6823776249984803,1000,mac,phase-6,with +25,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237,1000,mac,phase-6,with +26,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617,1000,mac,phase-6,with +27,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385,1000,mac,phase-6,with +28,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194,1000,mac,phase-6,with +29,5630.7145475367815,5.791779585608233,110.07729062127092,761.568797765411,0.6889785830026085,1000,mac,phase-6,with +0,5280.146632019839,4.743466790750807,114.64491567504768,752.2737473782265,0.6850735419975535,1000,mac,phase-7,with +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585,1000,mac,phase-7,with +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048,1000,mac,phase-7,with +3,5269.918567599515,4.734278317912334,114.42283934559951,750.8165332351111,0.6837465000025986,1000,mac,phase-7,with +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337,1000,mac,phase-7,with +5,5263.781853767582,4.728765346342646,114.28959625808425,749.9422225326506,0.6829502910004521,1000,mac,phase-7,with +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321,1000,mac,phase-7,with +7,5262.373654944431,4.727500278378077,114.25902081263072,749.7415934441852,0.6827675839995209,1000,mac,phase-7,with +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202,1000,mac,phase-7,with +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963,1000,mac,phase-7,with +10,5299.006038748264,4.76040930688607,115.0543995861478,754.9606872610865,0.6875204589996429,1000,mac,phase-7,with +11,5278.689930447888,4.742158149909533,114.61328711612336,752.0662079997371,0.6848845419990539,1000,mac,phase-7,with +12,5264.9964191743065,4.729856462001642,114.31596744781432,750.1152642554716,0.6831078750001325,1000,mac,phase-7,with +13,5280.20732793269,4.743521317465122,114.64623353197392,752.2823948543278,0.68508141699931,1000,mac,phase-7,with +14,5175.084273188565,4.649083084235549,112.36375454293244,737.3052891336941,0.6714422080003715,1000,mac,phase-7,with +15,5301.849427752589,4.76296369074227,115.11613652554556,755.3657909543374,0.6878893749999406,1000,mac,phase-7,with +16,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437,1000,mac,phase-7,with +17,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943,1000,mac,phase-7,with +18,5232.454106576423,4.700621785417813,113.60939413770376,745.4788916028814,0.6788856669991219,1000,mac,phase-7,with +19,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411,1000,mac,phase-7,with +20,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461,1000,mac,phase-7,with +21,5283.768793744757,4.746720792022038,114.72356167760309,752.7898044812416,0.6855434999997669,1000,mac,phase-7,with +22,5270.446525563299,4.734752613654982,114.4343026060838,750.8917525317619,0.6838150000003225,1000,mac,phase-7,with +23,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389,1000,mac,phase-7,with +24,5253.691243355732,4.719700356537864,114.07050439181651,748.5045917551598,0.6816410829997039,1000,mac,phase-7,with +25,5232.72739613028,4.70086729752445,113.615327923267,745.5178277482438,0.6789211249997607,1000,mac,phase-7,with +26,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278,1000,mac,phase-7,with +27,5286.654257518006,4.749312974121929,114.78621216328492,753.20090265652,0.6859178749982675,1000,mac,phase-7,with +28,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178,1000,mac,phase-7,with +29,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675,1000,mac,phase-7,with +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924,1000,mac,phase-9,with +1,5273.426802443005,4.4973222381334175,113.86553636992608,749.9201548342323,0.6835363749996759,1000,mac,phase-9,with +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748,1000,mac,phase-9,with +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018,1000,mac,phase-9,with +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096,1000,mac,phase-9,with +5,5253.551246024907,4.480371821407624,113.43637693015744,747.0937042348667,0.6809601250024571,1000,mac,phase-9,with +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886,1000,mac,phase-9,with +7,5300.365365947626,4.520296179984014,114.44720254211376,753.7510170934825,0.687028125001234,1000,mac,phase-9,with +8,5279.4904036420885,4.502493442653253,113.99646360732456,750.7824436116101,0.6843223329997272,1000,mac,phase-9,with +9,5247.4468174506055,4.475165798188416,113.30456813487412,746.2256095038477,0.6801688749983441,1000,mac,phase-9,with +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533,1000,mac,phase-9,with +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705,1000,mac,phase-9,with +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357,1000,mac,phase-9,with +13,5277.8400593125725,4.501085983987045,113.96082883902017,750.547752485425,0.6841084169973328,1000,mac,phase-9,with +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567,1000,mac,phase-9,with +15,5321.702899266701,4.538493410494227,114.90792945977236,756.7853715824855,0.6897938750007597,1000,mac,phase-9,with +16,5253.426202615801,4.480265180977107,113.4336769524426,747.0759221405605,0.6809439169992402,1000,mac,phase-9,with +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378,1000,mac,phase-9,with +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265,1000,mac,phase-9,with +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317,1000,mac,phase-9,with +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039,1000,mac,phase-9,with +21,5253.3349120036255,4.480187325852603,113.43170577603108,747.0629399427254,0.6809320840002329,1000,mac,phase-9,with +22,5313.903441611766,4.531841820234043,114.73952104859232,755.6762312243596,0.6887829170009354,1000,mac,phase-9,with +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552,1000,mac,phase-9,with +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096,1000,mac,phase-9,with +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999,1000,mac,phase-9,with +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763,1000,mac,phase-9,with +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127,1000,mac,phase-9,with +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852,1000,mac,phase-9,with +29,5275.819074951675,4.49936243339088,113.91719109133356,750.2603536152749,0.6838464590000513,1000,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n1000/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n1000/without_smell.csv new file mode 100644 index 000000000..a04becfc3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n1000/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612,1000,mac,phase-19,without +1,383.59709143073366,0.0,0.0,82.02532419427872,0.1296549590006179,1000,mac,phase-19,without +2,366.3914775833742,0.0,0.0,78.34621378046563,0.1238395000000309,1000,mac,phase-19,without +3,374.1168748582736,0.0,0.0,79.99815074807854,0.1264506670013361,1000,mac,phase-19,without +4,367.66885289590334,0.0,0.0,78.61935746812284,0.1242712499988556,1000,mac,phase-19,without +5,383.9118124443024,0.0,0.0,82.09262161061848,0.1297613339993404,1000,mac,phase-19,without +6,375.5611654777607,0.0,0.0,80.30698626571066,0.1269388340006116,1000,mac,phase-19,without +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152,1000,mac,phase-19,without +8,374.86182356292346,0.0,0.0,80.1574446018956,0.1267024579974531,1000,mac,phase-19,without +9,377.0421871072083,0.0,0.0,80.62367604779706,0.1274394159991061,1000,mac,phase-19,without +10,375.6765508526328,0.0,0.0,80.33165934846492,0.1269778339992626,1000,mac,phase-19,without +11,375.1464674630339,0.0,0.0,80.21831056962074,0.1267986669990932,1000,mac,phase-19,without +12,378.4867262518033,0.0,0.0,80.93256470804418,0.1279276669993123,1000,mac,phase-19,without +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779,1000,mac,phase-19,without +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733,1000,mac,phase-19,without +15,375.683823091228,0.0,0.0,80.33321438561643,0.1269802919996436,1000,mac,phase-19,without +16,373.6414012930972,0.0,0.0,79.8964792959204,0.1262899579996883,1000,mac,phase-19,without +17,314.9850723569249,0.0,0.0,67.3538805522994,0.1064642500023183,1000,mac,phase-19,without +18,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284,1000,mac,phase-19,without +19,383.49859372980546,0.0,0.0,82.00426223622037,0.1296216669979912,1000,mac,phase-19,without +20,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624,1000,mac,phase-19,without +21,374.5009986985629,0.0,0.0,80.08028870802231,0.1265805000002728,1000,mac,phase-19,without +22,332.15382500117937,0.0,0.0,71.02510886220082,0.1122672499986947,1000,mac,phase-19,without +23,381.9548202102259,0.0,0.0,81.67415409344545,0.1290998750009748,1000,mac,phase-19,without +24,370.0998334750992,0.0,0.0,79.13917884991385,0.1250929159978113,1000,mac,phase-19,without +25,377.0426841466608,0.0,0.0,80.62378233072553,0.1274395839973294,1000,mac,phase-19,without +26,378.23080739815214,0.0,0.0,80.87784107377504,0.1278411669991328,1000,mac,phase-19,without +27,377.1951733191553,0.0,0.0,80.65638939185659,0.1274911249965953,1000,mac,phase-19,without +28,374.3644119900847,0.0,0.0,80.05108210220116,0.1265343339982791,1000,mac,phase-19,without +29,379.98685748159807,0.0,0.0,81.25334073374067,0.1284347079999861,1000,mac,phase-19,without +0,380.3526569408623,0.0,0.0,80.10239659227442,0.1271814169995195,1000,mac,phase-26,without +1,387.17328681307646,0.0,0.0,81.53882352150227,0.1294620829976338,1000,mac,phase-26,without +2,385.3726788755025,0.0,0.0,81.15961488843315,0.1288599999970756,1000,mac,phase-26,without +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086,1000,mac,phase-26,without +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787,1000,mac,phase-26,without +5,394.2382781455051,0.0,0.0,83.02671305586976,0.1318244579997554,1000,mac,phase-26,without +6,373.8768198704676,0.0,0.0,78.73858314227304,0.1250160419986059,1000,mac,phase-26,without +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807,1000,mac,phase-26,without +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013,1000,mac,phase-26,without +9,380.0052443470086,0.0,0.0,80.02923138397054,0.127065250002488,1000,mac,phase-26,without +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719,1000,mac,phase-26,without +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198,1000,mac,phase-26,without +12,382.215942515876,0.0,0.0,80.49480515672312,0.1278044579994457,1000,mac,phase-26,without +13,361.8984704460614,0.0,0.0,76.21593875263807,0.1210107500010053,1000,mac,phase-26,without +14,378.8783985966985,0.0,0.0,79.79191729258059,0.1266884579999896,1000,mac,phase-26,without +15,380.88423856576446,0.0,0.0,80.21434786003091,0.1273591659992234,1000,mac,phase-26,without +16,379.1726048879838,0.0,0.0,79.85387723579232,0.1267868340000859,1000,mac,phase-26,without +17,378.95814974542776,0.0,0.0,79.80871291114045,0.126715124999464,1000,mac,phase-26,without +18,380.36461647596656,0.0,0.0,80.10491527436194,0.1271854160004295,1000,mac,phase-26,without +19,364.3920344346489,0.0,0.0,76.74108416150293,0.1218445419981435,1000,mac,phase-26,without +20,380.7520317589275,0.0,0.0,80.18650506235302,0.1273149590015236,1000,mac,phase-26,without +21,382.7415458800854,0.0,0.0,80.60549740078093,0.1279802080025547,1000,mac,phase-26,without +22,380.34679830413467,0.0,0.0,80.10116276142276,0.1271794580025016,1000,mac,phase-26,without +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071,1000,mac,phase-26,without +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658,1000,mac,phase-26,without +25,363.53484190384074,0.0,0.0,76.56055912820624,0.1215579159979824,1000,mac,phase-26,without +26,380.69109765029833,0.0,0.0,80.17367231872328,0.1272945839991734,1000,mac,phase-26,without +27,379.47166496381067,0.0,0.0,79.91685938764968,0.1268868329971155,1000,mac,phase-26,without +28,379.2726654116168,0.0,0.0,79.87495001549036,0.1268202920000476,1000,mac,phase-26,without +29,384.0864564464969,0.0,0.0,80.88873601527702,0.1284299159997317,1000,mac,phase-26,without +0,381.4033142582579,0.0,0.0,82.61925110554331,0.1332604589988477,1000,mac,phase-21,without +1,362.55955683134994,0.0,0.0,78.5373329144196,0.1266765420004958,1000,mac,phase-21,without +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517,1000,mac,phase-21,without +3,364.8477942397509,0.0,0.0,79.0330088930131,0.1274760409978625,1000,mac,phase-21,without +4,344.4926161941541,0.0,0.0,74.62368809432583,0.1203640410021762,1000,mac,phase-21,without +5,363.3133567014207,0.0,0.0,78.70062038052308,0.1269399160009925,1000,mac,phase-21,without +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374,1000,mac,phase-21,without +7,363.50917225752414,0.0,0.0,78.74303777438224,0.1270083330018678,1000,mac,phase-21,without +8,364.4152638869781,0.0,0.0,78.93931454770832,0.1273249170008057,1000,mac,phase-21,without +9,362.471785151328,0.0,0.0,78.51831989014688,0.1266458750033052,1000,mac,phase-21,without +10,344.8277210316543,0.0,0.0,74.69627821004087,0.1204811249990598,1000,mac,phase-21,without +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794,1000,mac,phase-21,without +12,363.5227671803984,0.0,0.0,78.74598269464046,0.1270130830016569,1000,mac,phase-21,without +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383,1000,mac,phase-21,without +14,363.0369275435488,0.0,0.0,78.6407405390185,0.1268433330005791,1000,mac,phase-21,without +15,363.51000797351264,0.0,0.0,78.74321880644601,0.1270086249969608,1000,mac,phase-21,without +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366,1000,mac,phase-21,without +17,361.4334449521908,0.0,0.0,78.29339554775532,0.1262830839987145,1000,mac,phase-21,without +18,363.57273639099617,0.0,0.0,78.75680698117282,0.1270305420002841,1000,mac,phase-21,without +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433,1000,mac,phase-21,without +20,366.3633906583192,0.0,0.0,79.36131605868071,0.1280055829993216,1000,mac,phase-21,without +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325,1000,mac,phase-21,without +22,346.6831905324902,0.0,0.0,75.09820838441907,0.1211294169988832,1000,mac,phase-21,without +23,365.82126518573983,0.0,0.0,79.24388131473557,0.1278161670015833,1000,mac,phase-21,without +24,364.1797368434446,0.0,0.0,78.88829488630428,0.1272426249997806,1000,mac,phase-21,without +25,363.9925075577076,0.0,0.0,78.84773744279413,0.1271772079999209,1000,mac,phase-21,without +26,362.5031479127712,0.0,0.0,78.52511366399774,0.1266568329992878,1000,mac,phase-21,without +27,362.4386307071827,0.0,0.0,78.511138003562,0.1266342910021194,1000,mac,phase-21,without +28,363.69341924406274,0.0,0.0,78.78294919485816,0.1270727080009237,1000,mac,phase-21,without +29,367.1670423932719,0.0,0.0,79.53540239199062,0.1282863749984244,1000,mac,phase-21,without +0,392.35717841459865,1.1193729478414245,0.0,83.85120991103034,0.127699874999962,1000,mac,phase-28,without +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.1266927500000747,1000,mac,phase-28,without +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.1210532080003758,1000,mac,phase-28,without +3,347.0769311623034,0.9901909508391123,0.0,74.17430395376623,0.1129625840003427,1000,mac,phase-28,without +4,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.1250622500010649,1000,mac,phase-28,without +5,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.1264222079989849,1000,mac,phase-28,without +6,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.1273698340010014,1000,mac,phase-28,without +7,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.1269118330019409,1000,mac,phase-28,without +8,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.1256257500026549,1000,mac,phase-28,without +9,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.1276837919976969,1000,mac,phase-28,without +10,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.1263573749965871,1000,mac,phase-28,without +11,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.1259465830007684,1000,mac,phase-28,without +12,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134,1000,mac,phase-28,without +13,381.0208254600399,1.087030970881068,0.0,81.42850181872728,0.1240102499978093,1000,mac,phase-28,without +14,385.7221262916305,1.1004435175606295,0.0,82.433223497269,0.1255403750001278,1000,mac,phase-28,without +15,343.1331262252372,0.9789394973141547,0.0,73.33146779880578,0.1116789999978209,1000,mac,phase-28,without +16,388.1155996030598,1.107271962211548,0.0,82.94473607839231,0.1263193750019127,1000,mac,phase-28,without +17,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.126625500000955,1000,mac,phase-28,without +18,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.1266295829991577,1000,mac,phase-28,without +19,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009,1000,mac,phase-28,without +20,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.1265432920008606,1000,mac,phase-28,without +21,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.1272836249991087,1000,mac,phase-28,without +22,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.1268063340030494,1000,mac,phase-28,without +23,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.1266531250003026,1000,mac,phase-28,without +24,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.1270766249981534,1000,mac,phase-28,without +25,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.1264769169974897,1000,mac,phase-28,without +26,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.1222288329990988,1000,mac,phase-28,without +27,406.8875185658029,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041,1000,mac,phase-28,without +28,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.1266736659999878,1000,mac,phase-28,without +29,391.19795385274,1.116065745408526,0.0,83.60347038332958,0.1273225840013765,1000,mac,phase-28,without +0,305.3505916825048,0.9489872136384976,0.0,66.5128391206041,0.1058808339985262,1000,mac,phase-17,without +1,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.1275194589979946,1000,mac,phase-17,without +2,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944,1000,mac,phase-17,without +3,365.1552719264768,1.1348518505941692,0.0,79.53976352840897,0.1266182079998543,1000,mac,phase-17,without +4,368.1911850271189,1.1442870467021975,0.0,80.20105977327462,0.1276709160010796,1000,mac,phase-17,without +5,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.1273849159988458,1000,mac,phase-17,without +6,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688,1000,mac,phase-17,without +7,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.1250703330006217,1000,mac,phase-17,without +8,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.1285071249985776,1000,mac,phase-17,without +9,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042,1000,mac,phase-17,without +10,362.3793921728516,1.1262248019997214,0.0,78.93510891662754,0.1256556670014106,1000,mac,phase-17,without +11,367.18182008164734,1.1411500806925057,0.0,79.98119536147766,0.1273209169994515,1000,mac,phase-17,without +12,368.02740499563134,1.143778041119878,0.0,80.16538447025499,0.1276141249982174,1000,mac,phase-17,without +13,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.1275358330021845,1000,mac,phase-17,without +14,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604,1000,mac,phase-17,without +15,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.1268808749991876,1000,mac,phase-17,without +16,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.126675041999988,1000,mac,phase-17,without +17,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412,1000,mac,phase-17,without +18,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.1292150410008616,1000,mac,phase-17,without +19,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.1270570420019794,1000,mac,phase-17,without +20,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.1263232079982117,1000,mac,phase-17,without +21,363.1997428984131,1.128774338075507,0.0,79.11380140099804,0.1259401250026712,1000,mac,phase-17,without +22,367.0620167726892,1.140777748653696,0.0,79.95509926593404,0.1272793749994889,1000,mac,phase-17,without +23,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.1281139159982558,1000,mac,phase-17,without +24,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.1295731249992968,1000,mac,phase-17,without +25,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.1270090419966436,1000,mac,phase-17,without +26,364.5013486503741,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141,1000,mac,phase-17,without +27,363.1987825501328,1.1287713534464825,0.0,79.11359221361668,0.1259397920002811,1000,mac,phase-17,without +28,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.1270736670012411,1000,mac,phase-17,without +29,365.7796380252842,1.1367922936800423,0.0,79.6757657599865,0.1268347080003877,1000,mac,phase-17,without +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.1308225419998052,1000,mac,phase-10,without +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984025,0.129822625000088,1000,mac,phase-10,without +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.1305599580009584,1000,mac,phase-10,without +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.7164511012418,0.1303684579979744,1000,mac,phase-10,without +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478836,0.133669083003042,1000,mac,phase-10,without +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.1280587090004701,1000,mac,phase-10,without +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.131149834000098,1000,mac,phase-10,without +7,597.649025563058,0.5265920154749121,20.602912605455938,108.41213118589752,0.1288186250021681,1000,mac,phase-10,without +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518,1000,mac,phase-10,without +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390812,0.1328884159993322,1000,mac,phase-10,without +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.1274853749964677,1000,mac,phase-10,without +11,617.1983607546819,0.5438170478591833,21.276841997490543,111.95833472800936,0.1330323330003011,1000,mac,phase-10,without +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332355,0.1315104169989354,1000,mac,phase-10,without +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224584,0.132710166999459,1000,mac,phase-10,without +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480084,0.123739458998898,1000,mac,phase-10,without +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.1226190000015776,1000,mac,phase-10,without +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105,1000,mac,phase-10,without +17,609.4197285876301,0.5369632500359095,21.00868715765496,110.54730910114289,0.131355708999763,1000,mac,phase-10,without +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206,1000,mac,phase-10,without +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864,1000,mac,phase-10,without +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176743,0.1294865419986308,1000,mac,phase-10,without +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163,1000,mac,phase-10,without +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.128652208000858,1000,mac,phase-10,without +23,598.978231220104,0.5277631862724634,20.648734662910133,108.6532459738434,0.1291051250009331,1000,mac,phase-10,without +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.1315287079996778,1000,mac,phase-10,without +25,599.235721308217,0.5279900622793916,20.6576111866812,108.69995407176977,0.129160624997894,1000,mac,phase-10,without +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.1330622909990779,1000,mac,phase-10,without +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.129972374998033,1000,mac,phase-10,without +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964276,0.129170708998572,1000,mac,phase-10,without +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398,1000,mac,phase-10,without +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.1297699579990876,1000,mac,phase-11,without +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.1281011659993964,1000,mac,phase-11,without +2,596.3705986768317,0.4998356696738266,17.56089319454044,107.19808995604669,0.1292779169998539,1000,mac,phase-11,without +3,588.5562142436058,0.4932862051547235,17.330788674435954,105.79344813218304,0.1275839580011961,1000,mac,phase-11,without +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.1278309170011198,1000,mac,phase-11,without +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598812,0.1344743330009805,1000,mac,phase-11,without +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338,1000,mac,phase-11,without +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092,1000,mac,phase-11,without +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083,1000,mac,phase-11,without +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.1300877080029749,1000,mac,phase-11,without +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.1316869169968413,1000,mac,phase-11,without +11,593.7434442190689,0.4976337745592017,17.48353327951329,106.72585685046349,0.1287084169998706,1000,mac,phase-11,without +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.1180163749995699,1000,mac,phase-11,without +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336,1000,mac,phase-11,without +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383,1000,mac,phase-11,without +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.1267631670016271,1000,mac,phase-11,without +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053044,0.1299459580004622,1000,mac,phase-11,without +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988683,0.1310292080015642,1000,mac,phase-11,without +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111336,0.1308710830016934,1000,mac,phase-11,without +19,592.0333350469189,0.4962004819636689,17.433176932990236,106.41846336514152,0.1283377090003341,1000,mac,phase-11,without +20,640.5170945999755,0.5368361411968281,18.86084309404856,115.13345774867972,0.1388477500004228,1000,mac,phase-11,without +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.1314542500003881,1000,mac,phase-11,without +22,527.3991446022711,0.4420286734667299,15.52994072779778,94.80041616949802,0.1143266669969307,1000,mac,phase-11,without +23,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.1336179169993556,1000,mac,phase-11,without +24,576.81763141262,0.4834477549974464,16.985131125576952,103.68342852178569,0.1250393329974031,1000,mac,phase-11,without +25,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.1294262920018809,1000,mac,phase-11,without +26,588.7255561438179,0.4934281355622321,17.33577516275309,105.82388747358006,0.1276206670008832,1000,mac,phase-11,without +27,574.9945015603392,0.4819197364589087,16.931446740922993,103.35571947922062,0.1246441250004863,1000,mac,phase-11,without +28,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.1329680839990032,1000,mac,phase-11,without +29,594.1982164073472,0.4980149324529366,17.496924626846507,106.80760251340648,0.1288069999973231,1000,mac,phase-11,without +0,364.8766742429042,0.8046531454405679,0.0,80.39826011527006,0.1268683750022319,1000,mac,phase-29,without +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.1270218329991621,1000,mac,phase-29,without +2,366.4414736680069,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891,1000,mac,phase-29,without +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623,1000,mac,phase-29,without +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.1270766669986187,1000,mac,phase-29,without +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.1276734169987321,1000,mac,phase-29,without +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.126081708996935,1000,mac,phase-29,without +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.1280686669997521,1000,mac,phase-29,without +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.1271314580008038,1000,mac,phase-29,without +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.1226394589975825,1000,mac,phase-29,without +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565,1000,mac,phase-29,without +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.1250696669994795,1000,mac,phase-29,without +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885,1000,mac,phase-29,without +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.1254135829985898,1000,mac,phase-29,without +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.1274225419983849,1000,mac,phase-29,without +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.1204695409978739,1000,mac,phase-29,without +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874,1000,mac,phase-29,without +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.1267092080015572,1000,mac,phase-29,without +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.1264430000010179,1000,mac,phase-29,without +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.1262780420001945,1000,mac,phase-29,without +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.1269816249987343,1000,mac,phase-29,without +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.1207254170003579,1000,mac,phase-29,without +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.1275093339972954,1000,mac,phase-29,without +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.1266951249999692,1000,mac,phase-29,without +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.1258205420017475,1000,mac,phase-29,without +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.1262950420023116,1000,mac,phase-29,without +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248,1000,mac,phase-29,without +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.1196737499994924,1000,mac,phase-29,without +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.1269724580015463,1000,mac,phase-29,without +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645,1000,mac,phase-29,without +0,369.9041744801996,0.7311672810929373,0.0,80.96015894283615,0.1263925839994044,1000,mac,phase-16,without +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.1239147499982209,1000,mac,phase-16,without +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.1276219589999527,1000,mac,phase-16,without +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.1270622920019377,1000,mac,phase-16,without +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696,1000,mac,phase-16,without +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.126509249999799,1000,mac,phase-16,without +6,372.7495863983696,0.7367916352887809,0.0,81.5829283437941,0.1273648330025025,1000,mac,phase-16,without +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.1227005830005509,1000,mac,phase-16,without +8,376.1469165837081,0.7435069330495576,0.0,82.32649495039648,0.1285256669980299,1000,mac,phase-16,without +9,375.5150076768029,0.7422578768094935,0.0,82.18819035945118,0.1283097499981522,1000,mac,phase-16,without +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718,1000,mac,phase-16,without +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.1265221249996102,1000,mac,phase-16,without +12,372.6448394186792,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737,1000,mac,phase-16,without +13,352.6584027037055,0.697078603727001,0.0,77.18561266722611,0.1204998749999504,1000,mac,phase-16,without +14,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.1269626670000434,1000,mac,phase-16,without +15,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.1278689999999187,1000,mac,phase-16,without +16,371.6252751140856,0.7345692769550659,0.0,81.33685266647912,0.1269806669988611,1000,mac,phase-16,without +17,372.5041183310883,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274,1000,mac,phase-16,without +18,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.1287318750000849,1000,mac,phase-16,without +19,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.1274127080032485,1000,mac,phase-16,without +20,371.5436924157741,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037,1000,mac,phase-16,without +21,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.1269673329989018,1000,mac,phase-16,without +22,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.1263547090020438,1000,mac,phase-16,without +23,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.1277858329995069,1000,mac,phase-16,without +24,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187,1000,mac,phase-16,without +25,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782,1000,mac,phase-16,without +26,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.1278468330019677,1000,mac,phase-16,without +27,370.9710506631292,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306,1000,mac,phase-16,without +28,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.1266328330020769,1000,mac,phase-16,without +29,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.1273535420004918,1000,mac,phase-16,without +0,369.7851773109551,0.0,0.0,80.6080421172184,0.1269397500000195,1000,mac,phase-20,without +1,374.92032490521166,0.0,0.0,81.72743310137321,0.1287025419987912,1000,mac,phase-20,without +2,370.56236276808175,0.0,0.0,80.7774577723199,0.1272065420016588,1000,mac,phase-20,without +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313,1000,mac,phase-20,without +4,367.7597386710104,0.0,0.0,80.16652457348731,0.1262444580024748,1000,mac,phase-20,without +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078,1000,mac,phase-20,without +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382,1000,mac,phase-20,without +7,368.1525174790658,0.0,0.0,80.25214490833339,0.1263792909994663,1000,mac,phase-20,without +8,368.5888759246009,0.0,0.0,80.34726499998142,0.1265290840019588,1000,mac,phase-20,without +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434,1000,mac,phase-20,without +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949,1000,mac,phase-20,without +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178,1000,mac,phase-20,without +12,371.52986822542886,0.0,0.0,80.98836054895796,0.1275386669985891,1000,mac,phase-20,without +13,323.38193430333433,0.0,0.0,70.49277845539667,0.1110104580002371,1000,mac,phase-20,without +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533,1000,mac,phase-20,without +15,370.7117773569245,0.0,0.0,80.81002808127047,0.127257832999021,1000,mac,phase-20,without +16,366.30344520570907,0.0,0.0,79.8490727874539,0.1257445419978466,1000,mac,phase-20,without +17,369.4200698015571,0.0,0.0,80.52845374185712,0.126814415998524,1000,mac,phase-20,without +18,370.4960902757074,0.0,0.0,80.76301128775451,0.1271837919994141,1000,mac,phase-20,without +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574,1000,mac,phase-20,without +20,373.687726585192,0.0,0.0,81.45874375580162,0.1282794159997138,1000,mac,phase-20,without +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511,1000,mac,phase-20,without +22,371.68098115026265,0.0,0.0,81.02130107160961,0.1275905410002451,1000,mac,phase-20,without +23,370.3033407611029,0.0,0.0,80.72099456576393,0.1271176250011194,1000,mac,phase-20,without +24,369.25851641569744,0.0,0.0,80.49323734344371,0.1267589579983905,1000,mac,phase-20,without +25,370.04164746358737,0.0,0.0,80.66394905490458,0.127027791000728,1000,mac,phase-20,without +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348,1000,mac,phase-20,without +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206,1000,mac,phase-20,without +28,366.14965808656615,0.0,0.0,79.8155493275167,0.1256917499995324,1000,mac,phase-20,without +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539,1000,mac,phase-20,without +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.1272624580014962,1000,mac,phase-18,without +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.1269249159995524,1000,mac,phase-18,without +2,367.4705435091116,0.4339677566877226,0.0,80.11712431157956,0.1269625000022642,1000,mac,phase-18,without +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.1263709169979847,1000,mac,phase-18,without +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.127091250000376,1000,mac,phase-18,without +5,353.7846134202577,0.417805230238313,0.0,77.13327327476549,0.1222339580017433,1000,mac,phase-18,without +6,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.1266598339971096,1000,mac,phase-18,without +7,367.1217775287856,0.4335558782589219,0.0,80.04108521703175,0.1268420000014885,1000,mac,phase-18,without +8,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.1299451669983682,1000,mac,phase-18,without +9,370.55613254945854,0.4376117117680742,0.0,80.78985448025985,0.128028582999832,1000,mac,phase-18,without +10,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.1267745839977578,1000,mac,phase-18,without +11,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448,1000,mac,phase-18,without +12,364.356853467442,0.4302906154684544,0.0,79.43826747109927,0.125886707999598,1000,mac,phase-18,without +13,366.21742300664187,0.4324878723733961,0.0,79.8439148997039,0.1265295420016627,1000,mac,phase-18,without +14,367.6326256151,0.4341591690585301,0.0,80.15246198003634,0.1270184999993944,1000,mac,phase-18,without +15,367.63057643996024,0.4341567490660867,0.0,80.15201521220062,0.1270177920014248,1000,mac,phase-18,without +16,368.71896362732775,0.4354420900395404,0.0,80.3893089303767,0.1273938340018503,1000,mac,phase-18,without +17,367.2385171663555,0.4336937430198602,0.0,80.06653717289728,0.1268823339996743,1000,mac,phase-18,without +18,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.1265819590007595,1000,mac,phase-18,without +19,367.5113042606,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143,1000,mac,phase-18,without +20,368.5741258840442,0.4352710425592818,0.0,80.35773093402126,0.1273437919990101,1000,mac,phase-18,without +21,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212,1000,mac,phase-18,without +22,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.1267945420004252,1000,mac,phase-18,without +23,368.7505580598764,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056,1000,mac,phase-18,without +24,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.1274272090013255,1000,mac,phase-18,without +25,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.1273582089997944,1000,mac,phase-18,without +26,357.5469937001284,0.4222484482287126,0.0,77.95355967299311,0.1235338750011578,1000,mac,phase-18,without +27,367.53795807863906,0.4340473705507183,0.0,80.13182225551724,0.1269857919978676,1000,mac,phase-18,without +28,363.3688037875811,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172,1000,mac,phase-18,without +29,366.4730872800551,0.4327898014753557,0.0,79.89965565698876,0.1266178750011022,1000,mac,phase-18,without +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277,1000,mac,phase-27,without +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.1244781660025182,1000,mac,phase-27,without +2,362.381369627801,0.9030269478496196,0.0,79.29914419820177,0.126015500001813,1000,mac,phase-27,without +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.1223343749988998,1000,mac,phase-27,without +4,365.53192544718695,0.9108778945153712,0.0,79.98857362577574,0.1271110829984536,1000,mac,phase-27,without +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.1269080830024904,1000,mac,phase-27,without +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.1264884590018482,1000,mac,phase-27,without +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.1262647080002352,1000,mac,phase-27,without +8,366.083701130626,0.9122528777597512,0.0,80.10931752475443,0.1273029590010992,1000,mac,phase-27,without +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.1199655410018749,1000,mac,phase-27,without +10,364.2674620465664,0.9077269474164552,0.0,79.71187378979317,0.126671374997386,1000,mac,phase-27,without +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.1241264589989441,1000,mac,phase-27,without +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474,1000,mac,phase-27,without +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.1250427089980803,1000,mac,phase-27,without +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496,1000,mac,phase-27,without +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.1217608330007351,1000,mac,phase-27,without +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.1264975830017647,1000,mac,phase-27,without +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924,1000,mac,phase-27,without +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957,1000,mac,phase-27,without +19,364.75057778178666,0.9089308352661044,0.0,79.8175929783679,0.1268393749996903,1000,mac,phase-27,without +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226,1000,mac,phase-27,without +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.1196454169985372,1000,mac,phase-27,without +22,367.629021552613,0.916103699300466,0.0,80.44747670523722,0.1278403329997672,1000,mac,phase-27,without +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.1261047499974665,1000,mac,phase-27,without +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.1269116660005238,1000,mac,phase-27,without +25,364.2674620570281,0.9077269474425252,0.0,79.71187379208249,0.126671375001024,1000,mac,phase-27,without +26,370.1547160771413,0.9223975389093508,0.0,81.00016906496558,0.1287186250010563,1000,mac,phase-27,without +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.1204572079986974,1000,mac,phase-27,without +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.1272289589978754,1000,mac,phase-27,without +29,365.1832510520659,0.9100090243106396,0.0,79.91227394964912,0.1269898339996871,1000,mac,phase-27,without +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392,1000,mac,phase-5,without +1,363.05448090538937,0.0,0.0,79.35981489298555,0.1272270419976848,1000,mac,phase-5,without +2,362.5024300899116,0.0,0.0,79.23914250679553,0.1270335840017651,1000,mac,phase-5,without +3,363.9394521290133,0.0,0.0,79.55326010902385,0.1275371669980813,1000,mac,phase-5,without +4,363.6331643510986,0.0,0.0,79.48630888644514,0.1274298330026795,1000,mac,phase-5,without +5,361.9330179821863,0.0,0.0,79.11467512836181,0.1268340419992455,1000,mac,phase-5,without +6,367.93805246242096,0.0,0.0,80.42731124729627,0.1289384170013363,1000,mac,phase-5,without +7,364.20709368215694,0.0,0.0,79.61176368144136,0.1276309579989174,1000,mac,phase-5,without +8,364.8000479429753,0.0,0.0,79.74137712199497,0.1278387499987729,1000,mac,phase-5,without +9,346.9887368845201,0.0,0.0,75.84801559378747,0.1215970410012232,1000,mac,phase-5,without +10,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772,1000,mac,phase-5,without +11,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003,1000,mac,phase-5,without +12,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107,1000,mac,phase-5,without +13,363.7586055346067,0.0,0.0,79.51372898350148,0.127473791999364,1000,mac,phase-5,without +14,362.0657101640452,0.0,0.0,79.14368021587322,0.1268805420004355,1000,mac,phase-5,without +15,356.5336590933504,0.0,0.0,77.93443319637895,0.1249419169980683,1000,mac,phase-5,without +16,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913,1000,mac,phase-5,without +17,364.2592916495958,0.0,0.0,79.62317359717468,0.127649250000104,1000,mac,phase-5,without +18,363.8922479704996,0.0,0.0,79.54294178635095,0.1275206250029441,1000,mac,phase-5,without +19,364.0480086058659,0.0,0.0,79.57698939033439,0.1275752090004971,1000,mac,phase-5,without +20,362.696591566812,0.0,0.0,79.2815841227969,0.1271016250029788,1000,mac,phase-5,without +21,362.9481816283438,0.0,0.0,79.33657901133893,0.1271897909973631,1000,mac,phase-5,without +22,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978,1000,mac,phase-5,without +23,362.2359756302134,0.0,0.0,79.18089842027075,0.1269402090001676,1000,mac,phase-5,without +24,363.4732460078574,0.0,0.0,79.45135245212167,0.1273737919982522,1000,mac,phase-5,without +25,363.7713268548058,0.0,0.0,79.51650972763022,0.1274782499967841,1000,mac,phase-5,without +26,363.4419763123466,0.0,0.0,79.44451723212573,0.1273628339986316,1000,mac,phase-5,without +27,363.1935936838931,0.0,0.0,79.39022345404717,0.1272757920014555,1000,mac,phase-5,without +28,363.6311440010843,0.0,0.0,79.48586725960514,0.1274291250010719,1000,mac,phase-5,without +29,364.6958917231345,0.0,0.0,79.71860968966385,0.1278022500009683,1000,mac,phase-5,without +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.1283158750011352,1000,mac,phase-2,without +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.1281986249996407,1000,mac,phase-2,without +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687,1000,mac,phase-2,without +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156,1000,mac,phase-2,without +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992,1000,mac,phase-2,without +5,365.6555120565184,0.8698118310585068,0.0,85.27501374492822,0.1265472909981326,1000,mac,phase-2,without +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.126757792000717,1000,mac,phase-2,without +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424,1000,mac,phase-2,without +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.1266237919990089,1000,mac,phase-2,without +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.126802790997317,1000,mac,phase-2,without +10,366.241235094044,0.8712051338010197,0.0,85.41161100226151,0.126749999999447,1000,mac,phase-2,without +11,324.8559755248956,0.7727589536731277,0.0,75.76009895818471,0.1124272499982907,1000,mac,phase-2,without +12,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.1259749579985509,1000,mac,phase-2,without +13,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.1282745000025897,1000,mac,phase-2,without +14,326.7121034467617,0.7771742625449043,0.0,76.19296904719081,0.1130696250002074,1000,mac,phase-2,without +15,365.4347097682464,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312,1000,mac,phase-2,without +16,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.1260847909979929,1000,mac,phase-2,without +17,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.1271165419966564,1000,mac,phase-2,without +18,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071,1000,mac,phase-2,without +19,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.1272964579984545,1000,mac,phase-2,without +20,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.1278989170023123,1000,mac,phase-2,without +21,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.1252903750028053,1000,mac,phase-2,without +22,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.1290519159992982,1000,mac,phase-2,without +23,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.127279833999637,1000,mac,phase-2,without +24,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.1260045829985756,1000,mac,phase-2,without +25,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.1285861670003214,1000,mac,phase-2,without +26,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498,1000,mac,phase-2,without +27,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.1242197499996109,1000,mac,phase-2,without +28,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.1280166249998728,1000,mac,phase-2,without +29,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.1299367089995939,1000,mac,phase-2,without +0,387.6502443930199,0.0,0.0,86.02535538551267,0.1311169590007921,1000,mac,phase-3,without +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788,1000,mac,phase-3,without +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028,1000,mac,phase-3,without +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004,1000,mac,phase-3,without +4,377.59806480196255,0.0,0.0,83.79462721178557,0.1277169579989276,1000,mac,phase-3,without +5,378.2879220367919,0.0,0.0,83.94771679356664,0.1279502920006052,1000,mac,phase-3,without +6,358.1112551934011,0.0,0.0,79.47021430052544,0.1211258330004056,1000,mac,phase-3,without +7,375.73853630594704,0.0,0.0,83.38197017871778,0.1270880000010947,1000,mac,phase-3,without +8,366.0266051541871,0.0,0.0,81.22674819474109,0.1238030829990748,1000,mac,phase-3,without +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211,1000,mac,phase-3,without +10,368.7047238020264,0.0,0.0,81.82106255872576,0.124708917002863,1000,mac,phase-3,without +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617,1000,mac,phase-3,without +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764,1000,mac,phase-3,without +13,376.62154905599033,0.0,0.0,83.57792384244205,0.1273866659976192,1000,mac,phase-3,without +14,373.9790358237752,0.0,0.0,82.99151084980181,0.126492874998803,1000,mac,phase-3,without +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924,1000,mac,phase-3,without +16,375.11520378706575,0.0,0.0,83.24364342093624,0.1268771670002024,1000,mac,phase-3,without +17,375.4187381278567,0.0,0.0,83.31100220611935,0.1269798329994955,1000,mac,phase-3,without +18,376.0866668397095,0.0,0.0,83.45922552247323,0.1272057500027585,1000,mac,phase-3,without +19,375.7424773478016,0.0,0.0,83.38284475452687,0.1270893330001854,1000,mac,phase-3,without +20,377.3000739401179,0.0,0.0,83.72849860703786,0.1276161669993598,1000,mac,phase-3,without +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222,1000,mac,phase-3,without +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624,1000,mac,phase-3,without +23,370.4305938208771,0.0,0.0,82.20405878759003,0.1252926669985754,1000,mac,phase-3,without +24,378.135167384867,0.0,0.0,83.91381826413529,0.1278986249999434,1000,mac,phase-3,without +25,331.56981324082483,0.0,0.0,73.58027353706892,0.1121485830008168,1000,mac,phase-3,without +26,373.97989913536014,0.0,0.0,82.99170243148396,0.1264931670011719,1000,mac,phase-3,without +27,375.5505517329566,0.0,0.0,83.34025360576987,0.1270244170009391,1000,mac,phase-3,without +28,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871,1000,mac,phase-3,without +29,376.9114124413168,0.0,0.0,83.64224883925715,0.1274847079985193,1000,mac,phase-3,without +0,365.0774252251925,0.0,0.0,78.66773310494989,0.1270807500004593,1000,mac,phase-4,without +1,367.5883720326905,0.0,0.0,79.20879776588075,0.1279547920021286,1000,mac,phase-4,without +2,350.57697332024804,0.0,0.0,75.54314198662561,0.1220332500015501,1000,mac,phase-4,without +3,361.880120821408,0.0,0.0,77.97877051205046,0.1259677919988462,1000,mac,phase-4,without +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142,1000,mac,phase-4,without +5,364.4711468988576,0.0,0.0,78.53709084041105,0.1268697090017667,1000,mac,phase-4,without +6,369.5311022105454,0.0,0.0,79.62742178524363,0.1286310420000518,1000,mac,phase-4,without +7,362.71598461213733,0.0,0.0,78.15888438669123,0.1262587499986693,1000,mac,phase-4,without +8,364.6465054066651,0.0,0.0,78.57487749972414,0.1269307500006107,1000,mac,phase-4,without +9,357.7011552221953,0.0,0.0,77.07827728048227,0.1245131249997939,1000,mac,phase-4,without +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524,1000,mac,phase-4,without +11,363.63528023405354,0.0,0.0,78.35697634645797,0.1265787500014994,1000,mac,phase-4,without +12,364.8904548594365,0.0,0.0,78.62744429546584,0.1270156669997959,1000,mac,phase-4,without +13,363.9725956478543,0.0,0.0,78.42966185674032,0.1266961670007731,1000,mac,phase-4,without +14,364.7223961358544,0.0,0.0,78.59123061064388,0.1269571670018194,1000,mac,phase-4,without +15,365.02679214761287,0.0,0.0,78.65682257157232,0.1270631250008591,1000,mac,phase-4,without +16,361.9313514452685,0.0,0.0,77.98980980609107,0.1259856249998847,1000,mac,phase-4,without +17,345.0865750669766,0.0,0.0,74.36005819512079,0.1201220830007514,1000,mac,phase-4,without +18,364.1344290208866,0.0,0.0,78.46453408853974,0.1267525000002933,1000,mac,phase-4,without +19,364.22934916661006,0.0,0.0,78.48498770241478,0.1267855410005722,1000,mac,phase-4,without +20,363.6205571430931,0.0,0.0,78.3538037805579,0.1265736250024929,1000,mac,phase-4,without +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022,1000,mac,phase-4,without +22,362.8233554694112,0.0,0.0,78.18202090886338,0.1262961249994987,1000,mac,phase-4,without +23,351.26608593148893,0.0,0.0,75.69163357562735,0.1222731250018114,1000,mac,phase-4,without +24,365.8098711297876,0.0,0.0,78.82556225283807,0.1273357089994533,1000,mac,phase-4,without +25,362.3659829171635,0.0,0.0,78.08346520702132,0.1261369169988029,1000,mac,phase-4,without +26,362.8579468409589,0.0,0.0,78.1894747380969,0.1263081659999443,1000,mac,phase-4,without +27,372.2966479317493,0.0,0.0,80.22334801253913,0.1295937079994473,1000,mac,phase-4,without +28,364.5761218333096,0.0,0.0,78.55971108355833,0.1269062499995925,1000,mac,phase-4,without +29,346.7069542397634,0.0,0.0,74.70922126981647,0.120686124999338,1000,mac,phase-4,without +0,317.8188162702387,0.0,0.0,68.6825576445368,0.110928750000312,1000,mac,phase-22,without +1,361.5172471330565,0.0,0.0,78.12605136820386,0.1261808749986812,1000,mac,phase-22,without +2,365.5671462435493,0.0,0.0,79.00125892317271,0.1275944170010916,1000,mac,phase-22,without +3,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753,1000,mac,phase-22,without +4,363.29860543222503,0.0,0.0,78.511013610226,0.126802624999982,1000,mac,phase-22,without +5,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168,1000,mac,phase-22,without +6,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412,1000,mac,phase-22,without +7,361.5755026402199,0.0,0.0,78.13864073366628,0.1262012080005661,1000,mac,phase-22,without +8,320.61966160542903,0.0,0.0,69.28783716651473,0.1119063330006611,1000,mac,phase-22,without +9,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971,1000,mac,phase-22,without +10,363.8756795742305,0.0,0.0,78.63572280299373,0.1270040420022269,1000,mac,phase-22,without +11,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991,1000,mac,phase-22,without +12,364.5024111287863,0.0,0.0,78.77116326126676,0.1272227910012588,1000,mac,phase-22,without +13,363.3991207344049,0.0,0.0,78.53273557155335,0.1268377079977654,1000,mac,phase-22,without +14,362.13132653995166,0.0,0.0,78.25875762127396,0.1263952080007584,1000,mac,phase-22,without +15,364.4982367205501,0.0,0.0,78.77026114654089,0.1272213340016605,1000,mac,phase-22,without +16,360.4311471743661,0.0,0.0,77.89133863503122,0.1258017919972189,1000,mac,phase-22,without +17,362.40422461795254,0.0,0.0,78.31773253721299,0.1264904580020811,1000,mac,phase-22,without +18,361.2869669971778,0.0,0.0,78.0762864458733,0.1261004999978467,1000,mac,phase-22,without +19,363.55037360229466,0.0,0.0,78.56542222598009,0.1268904999997175,1000,mac,phase-22,without +20,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709,1000,mac,phase-22,without +21,363.6459953773748,0.0,0.0,78.58608666667018,0.1269238750028307,1000,mac,phase-22,without +22,366.4062541016947,0.0,0.0,79.18259517794013,0.1278872920011053,1000,mac,phase-22,without +23,362.061848555091,0.0,0.0,78.24374301088613,0.1263709580016438,1000,mac,phase-22,without +24,362.24270905991347,0.0,0.0,78.28282805372238,0.1264340839989017,1000,mac,phase-22,without +25,362.0681746289213,0.0,0.0,78.24511011348758,0.1263731660001212,1000,mac,phase-22,without +26,362.6975363200963,0.0,0.0,78.38111896010236,0.1265928329994494,1000,mac,phase-22,without +27,358.52527861331754,0.0,0.0,77.47946897657832,0.125136584003485,1000,mac,phase-22,without +28,355.4742151019403,0.0,0.0,76.82011580184641,0.1240716669999528,1000,mac,phase-22,without +29,363.61639058594017,0.0,0.0,78.57968889318992,0.1269135420006932,1000,mac,phase-22,without +0,395.6846676399492,0.0,0.0,81.77438952733165,0.1266846669968799,1000,mac,phase-25,without +1,396.35098819705064,0.0,0.0,81.91209503184734,0.1268979999986186,1000,mac,phase-25,without +2,396.2011939034781,0.0,0.0,81.88113771175549,0.1268500410005799,1000,mac,phase-25,without +3,386.0664705823485,0.0,0.0,79.78663954088394,0.1236052499989455,1000,mac,phase-25,without +4,386.5682950767456,0.0,0.0,79.89034937610185,0.1237659170001279,1000,mac,phase-25,without +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057,1000,mac,phase-25,without +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384,1000,mac,phase-25,without +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581,1000,mac,phase-25,without +8,398.01523257383474,0.0,0.0,82.25603701157462,0.1274308339998242,1000,mac,phase-25,without +9,397.0782147101372,0.0,0.0,82.06238769926466,0.1271308329996827,1000,mac,phase-25,without +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144,1000,mac,phase-25,without +11,396.4767043441066,0.0,0.0,81.93807622854256,0.1269382499995117,1000,mac,phase-25,without +12,396.02576599844105,0.0,0.0,81.84488280724774,0.1267938749988388,1000,mac,phase-25,without +13,399.8958961197486,0.0,0.0,82.64470537795509,0.1280329580004036,1000,mac,phase-25,without +14,396.5793855518793,0.0,0.0,81.9592968968379,0.1269711250024556,1000,mac,phase-25,without +15,401.0316391948003,0.0,0.0,82.87942434540003,0.128396584001166,1000,mac,phase-25,without +16,480.5304403215797,0.0,0.0,99.30908781725496,0.1538493750013003,1000,mac,phase-25,without +17,401.0917611744532,0.0,0.0,82.89184948740166,0.1284158329981437,1000,mac,phase-25,without +18,395.6790705523099,0.0,0.0,81.7732328021354,0.1266828750012791,1000,mac,phase-25,without +19,395.4228251241656,0.0,0.0,81.72027569975218,0.1266008339989639,1000,mac,phase-25,without +20,389.6295971968901,0.0,0.0,80.52301506296472,0.1247460410013445,1000,mac,phase-25,without +21,397.2721267874588,0.0,0.0,82.10246264540683,0.1271929169997747,1000,mac,phase-25,without +22,377.60744195350105,0.0,0.0,78.0384497354916,0.1208969589970365,1000,mac,phase-25,without +23,403.68586149940114,0.0,0.0,83.42796065822493,0.1292463749996386,1000,mac,phase-25,without +24,397.46993997509657,0.0,0.0,82.14334381665871,0.1272562500016647,1000,mac,phase-25,without +25,396.65291621411296,0.0,0.0,81.97449315160198,0.1269946669999626,1000,mac,phase-25,without +26,396.9833419725365,0.0,0.0,82.0427807727533,0.1271004580012231,1000,mac,phase-25,without +27,398.6449814389623,0.0,0.0,82.38618440724828,0.1276324579994252,1000,mac,phase-25,without +28,376.2813037352024,0.0,0.0,77.76438265101989,0.1204723749979166,1000,mac,phase-25,without +29,400.714743939528,0.0,0.0,82.81393301312637,0.1282951250032056,1000,mac,phase-25,without +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.1266642499977024,1000,mac,phase-13,without +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.127472290998412,1000,mac,phase-13,without +2,362.06830888108055,0.9323075821841325,0.0,78.97977089074149,0.1258273749990621,1000,mac,phase-13,without +3,368.62949009525886,0.9492022919502712,0.0,80.4109941609301,0.1281075419974513,1000,mac,phase-13,without +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.1265159579997998,1000,mac,phase-13,without +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.126595959001861,1000,mac,phase-13,without +6,364.5455978038035,0.938686475860447,0.0,79.52015431217787,0.1266882919990166,1000,mac,phase-13,without +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.126838874999521,1000,mac,phase-13,without +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.1260080419997393,1000,mac,phase-13,without +9,367.5248896744274,0.9463580017366168,0.0,80.17004214711623,0.1277236669993726,1000,mac,phase-13,without +10,364.9063615290765,0.9396154242058252,0.0,79.59884950772204,0.1268136660000891,1000,mac,phase-13,without +11,363.7304249899235,0.936587447095628,0.0,79.3423365896725,0.1264049999990675,1000,mac,phase-13,without +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.1258190410007955,1000,mac,phase-13,without +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.126164040997537,1000,mac,phase-13,without +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.1199694579991046,1000,mac,phase-13,without +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.1276645409998309,1000,mac,phase-13,without +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.1269337920020916,1000,mac,phase-13,without +17,365.2405141303859,0.9404758502529708,0.0,79.67173988571597,0.1269297920007375,1000,mac,phase-13,without +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482,1000,mac,phase-13,without +19,364.44404506429737,0.9384249826926916,0.0,79.4980021052523,0.1266529999993508,1000,mac,phase-13,without +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.1197223750023113,1000,mac,phase-13,without +21,363.56424934911365,0.9361595532256008,0.0,79.3060878661116,0.1263472499995259,1000,mac,phase-13,without +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.1264897919973009,1000,mac,phase-13,without +23,365.373837350975,0.9408191508025844,0.0,79.70082234656178,0.1269761250005103,1000,mac,phase-13,without +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.1266297080001095,1000,mac,phase-13,without +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164,1000,mac,phase-13,without +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.1203132499977073,1000,mac,phase-13,without +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905,1000,mac,phase-13,without +28,364.4625099886328,0.9384725289389112,0.0,79.50202995153919,0.1266594170010648,1000,mac,phase-13,without +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.1263581659986812,1000,mac,phase-13,without +0,369.911488017962,0.937586825790073,0.0,81.70399481884921,0.1261905419996765,1000,mac,phase-14,without +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.1273650000002817,1000,mac,phase-14,without +2,358.4963540466036,0.908653744302064,0.0,79.182683432037,0.1222964160006085,1000,mac,phase-14,without +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.1275479169999016,1000,mac,phase-14,without +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467,1000,mac,phase-14,without +5,373.2398182137489,0.94602289399701,0.0,82.43913790545372,0.1273259589979716,1000,mac,phase-14,without +6,372.4002203609801,0.9438948284699412,0.0,82.25369219523775,0.1270395409992488,1000,mac,phase-14,without +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.1270712080004159,1000,mac,phase-14,without +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.1210473329992964,1000,mac,phase-14,without +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482,1000,mac,phase-14,without +10,374.8352147805899,0.9500666256772444,0.0,82.79152023758844,0.1278702079980576,1000,mac,phase-14,without +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.1311800829971616,1000,mac,phase-14,without +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.1267409579995728,1000,mac,phase-14,without +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.1219887500010372,1000,mac,phase-14,without +14,373.0092159450698,0.9454384037713364,0.0,82.38820375721647,0.1272472920027212,1000,mac,phase-14,without +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.1268485420005163,1000,mac,phase-14,without +16,371.0299297507992,0.940421655926711,0.0,81.95103001647053,0.1265720839983259,1000,mac,phase-14,without +17,372.40693906507727,0.9439118578638692,0.0,82.25517618528004,0.1270418329986569,1000,mac,phase-14,without +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.1277537079986359,1000,mac,phase-14,without +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.1282872920019144,1000,mac,phase-14,without +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.1205967499990947,1000,mac,phase-14,without +21,371.27811733858584,0.9410507183380468,0.0,82.0058483123155,0.1266567499988014,1000,mac,phase-14,without +22,326.0047805771626,0.8262997968824616,0.0,72.00612515690023,0.1112123339989921,1000,mac,phase-14,without +23,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.124332957999286,1000,mac,phase-14,without +24,371.9971566406658,0.9428732131744948,0.0,82.16466571949168,0.1269020409999939,1000,mac,phase-14,without +25,369.4635977484595,0.9364515920120275,0.0,81.60506730390526,0.1260377500002505,1000,mac,phase-14,without +26,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.1198882499993487,1000,mac,phase-14,without +27,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.1274375840002903,1000,mac,phase-14,without +28,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.127153334000468,1000,mac,phase-14,without +29,371.3744862190492,0.9412949772909728,0.0,82.0271337353562,0.1266896250017453,1000,mac,phase-14,without +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.126946249998582,1000,mac,phase-15,without +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.1295307910004339,1000,mac,phase-15,without +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878,1000,mac,phase-15,without +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836749,0.127710290998948,1000,mac,phase-15,without +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596,1000,mac,phase-15,without +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.1245412919997761,1000,mac,phase-15,without +6,680.491389862858,0.7190504713912117,0.0,102.58453391847954,0.1142339580001134,1000,mac,phase-15,without +7,773.1125247644942,0.8169198518182477,0.0,116.54723219273669,0.129782250001881,1000,mac,phase-15,without +8,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971,1000,mac,phase-15,without +9,741.2949626305472,0.7832993925563833,0.0,111.750713338044,0.1244410420003987,1000,mac,phase-15,without +10,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.1315446250009699,1000,mac,phase-15,without +11,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268,1000,mac,phase-15,without +12,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.1252313749973836,1000,mac,phase-15,without +13,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.1264663750007457,1000,mac,phase-15,without +14,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.1290887920004024,1000,mac,phase-15,without +15,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.1260320420005882,1000,mac,phase-15,without +16,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.1289440420005121,1000,mac,phase-15,without +17,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.1285882080010196,1000,mac,phase-15,without +18,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.1219281670018972,1000,mac,phase-15,without +19,790.462774080707,0.8352532284566974,0.0,119.16279392648885,0.1326948329988226,1000,mac,phase-15,without +20,751.1743926154271,0.7937386264593074,0.0,113.24004404152788,0.1260995000011462,1000,mac,phase-15,without +21,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.1307220839989895,1000,mac,phase-15,without +22,774.9388388883993,0.8188496514472585,0.0,116.82255027314224,0.1300888330006273,1000,mac,phase-15,without +23,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128,1000,mac,phase-15,without +24,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.1206704579999495,1000,mac,phase-15,without +25,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.1268399170003249,1000,mac,phase-15,without +26,756.88342996767,0.7997711583332929,0.0,114.1006852555498,0.1270578749972628,1000,mac,phase-15,without +27,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334,1000,mac,phase-15,without +28,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802,1000,mac,phase-15,without +29,760.1081492584486,0.8031786017788388,0.0,114.586813853781,0.1275992080009018,1000,mac,phase-15,without +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888,1000,mac,phase-12,without +1,414.74347979123286,0.0,0.0,83.8936897077914,0.128032249998796,1000,mac,phase-12,without +2,413.8073026522728,0.0,0.0,83.70432119873855,0.1277432499991846,1000,mac,phase-12,without +3,414.58259013722255,0.0,0.0,83.86114518962916,0.1279825829988112,1000,mac,phase-12,without +4,405.3386539625768,0.0,0.0,81.99129562983686,0.1251289589999942,1000,mac,phase-12,without +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936,1000,mac,phase-12,without +6,413.9982892718827,0.0,0.0,83.74295368600988,0.127802208000503,1000,mac,phase-12,without +7,409.3646465046534,0.0,0.0,82.80566736935371,0.1263717920010094,1000,mac,phase-12,without +8,412.4757866594092,0.0,0.0,83.43498413862977,0.1273322080014622,1000,mac,phase-12,without +9,412.46337016487814,0.0,0.0,83.43247254871889,0.1273283750015252,1000,mac,phase-12,without +10,410.6350162053592,0.0,0.0,83.06263584909651,0.1267639580000832,1000,mac,phase-12,without +11,412.46282918595386,0.0,0.0,83.43236312031262,0.1273282080001081,1000,mac,phase-12,without +12,413.48687415937496,0.0,0.0,83.63950540327329,0.1276443329988978,1000,mac,phase-12,without +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001,1000,mac,phase-12,without +14,409.1943076028259,0.0,0.0,82.77121147150024,0.1263192079968575,1000,mac,phase-12,without +15,363.8779890686815,0.0,0.0,73.60469445303713,0.1123299579994636,1000,mac,phase-12,without +16,406.66274208677544,0.0,0.0,82.25913019180082,0.1255377079978643,1000,mac,phase-12,without +17,361.25707207713594,0.0,0.0,73.07453929074433,0.1115208749979501,1000,mac,phase-12,without +18,411.9619420265209,0.0,0.0,83.3310444161506,0.1271735830014222,1000,mac,phase-12,without +19,411.5208471033168,0.0,0.0,83.24182039595,0.1270374160012579,1000,mac,phase-12,without +20,411.8797430808043,0.0,0.0,83.31441733656462,0.1271482080010173,1000,mac,phase-12,without +21,410.98729740297114,0.0,0.0,83.13389476194843,0.1268727080023381,1000,mac,phase-12,without +22,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163,1000,mac,phase-12,without +23,430.42633868348526,0.0,0.0,87.06599490786343,0.1328735839997534,1000,mac,phase-12,without +24,394.2393637064164,0.0,0.0,79.7461478261975,0.1217025830010243,1000,mac,phase-12,without +25,398.69146909006815,0.0,0.0,80.64671303288978,0.1230769579997286,1000,mac,phase-12,without +26,393.4677205138221,0.0,0.0,79.59006099730456,0.121464375002688,1000,mac,phase-12,without +27,399.4925386960174,0.0,0.0,80.80875219258839,0.1233242499984044,1000,mac,phase-12,without +28,418.3888499209973,0.0,0.0,84.63106971600862,0.1291575840004952,1000,mac,phase-12,without +29,409.7174654168141,0.0,0.0,82.87703505029891,0.1264807079969614,1000,mac,phase-12,without +0,492.1706690195863,0.0,0.0,92.06965491809224,0.1276172920006502,1000,mac,phase-24,without +1,486.08444962833966,0.0,0.0,90.9311146628915,0.1260391670002718,1000,mac,phase-24,without +2,486.6206809901031,0.0,0.0,91.03142668784857,0.1261782090004999,1000,mac,phase-24,without +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815,1000,mac,phase-24,without +4,491.069285551624,0.0,0.0,91.86362070636284,0.1273317090017371,1000,mac,phase-24,without +5,491.66914718394423,0.0,0.0,91.97583595396456,0.1274872499998309,1000,mac,phase-24,without +6,489.3934208087073,0.0,0.0,91.55011911376064,0.126897165999253,1000,mac,phase-24,without +7,484.9412836048319,0.0,0.0,90.71726424895256,0.1257427500022458,1000,mac,phase-24,without +8,489.216660608546,0.0,0.0,91.5170528388757,0.1268513329996494,1000,mac,phase-24,without +9,486.77108895533576,0.0,0.0,91.05956328827516,0.1262172090027888,1000,mac,phase-24,without +10,481.332938877034,0.0,0.0,90.04225642173755,0.124807125001098,1000,mac,phase-24,without +11,494.5105077458341,0.0,0.0,92.50736516303382,0.1282240000000456,1000,mac,phase-24,without +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553,1000,mac,phase-24,without +13,431.9192625401392,0.0,0.0,80.79851148741447,0.1119944159981969,1000,mac,phase-24,without +14,482.32457080883734,0.0,0.0,90.22775957240025,0.125064249998104,1000,mac,phase-24,without +15,487.23500493783496,0.0,0.0,91.1463473798684,0.1263375000016822,1000,mac,phase-24,without +16,490.8859305301352,0.0,0.0,91.8293207477944,0.1272841659992991,1000,mac,phase-24,without +17,492.7372712254749,0.0,0.0,92.17564837291538,0.1277642090026347,1000,mac,phase-24,without +18,491.3188354948492,0.0,0.0,91.91030365316124,0.127396416002739,1000,mac,phase-24,without +19,487.494200264288,0.0,0.0,91.19483467455105,0.1264047080003365,1000,mac,phase-24,without +20,491.90504470972667,0.0,0.0,92.019964962786,0.1275484170000709,1000,mac,phase-24,without +21,489.6739895004024,0.0,0.0,91.6026046929534,0.1269699160002346,1000,mac,phase-24,without +22,497.94691303592106,0.0,0.0,93.1502085284202,0.129115042000194,1000,mac,phase-24,without +23,489.3804086070156,0.0,0.0,91.54768494001787,0.1268937920031021,1000,mac,phase-24,without +24,489.13647389090073,0.0,0.0,91.50205242563018,0.1268305410012544,1000,mac,phase-24,without +25,488.2921993203388,0.0,0.0,91.34411520331948,0.1266116250008053,1000,mac,phase-24,without +26,488.2168333511135,0.0,0.0,91.33001660050562,0.1265920829973765,1000,mac,phase-24,without +27,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081,1000,mac,phase-24,without +28,480.867734774439,0.0,0.0,89.95523136338183,0.1246864999993704,1000,mac,phase-24,without +29,492.06428817424865,0.0,0.0,92.04975440728032,0.1275897080013237,1000,mac,phase-24,without +0,361.1273800704231,0.0,0.0,78.14745763956928,0.1268132500008505,1000,mac,phase-23,without +1,362.07910759150786,0.0,0.0,78.3534101378924,0.1271474580025824,1000,mac,phase-23,without +2,315.9812070935933,0.0,0.0,68.37788924071934,0.1109597499998926,1000,mac,phase-23,without +3,357.35440047061826,0.0,0.0,77.33099015545547,0.1254883330002485,1000,mac,phase-23,without +4,363.2426363907271,0.0,0.0,78.60519613520911,0.1275560419999237,1000,mac,phase-23,without +5,362.3479798378803,0.0,0.0,78.41159371422422,0.1272418750013457,1000,mac,phase-23,without +6,352.9112606909941,0.0,0.0,76.36950095004781,0.123928082997736,1000,mac,phase-23,without +7,360.94382237042606,0.0,0.0,78.10773601120054,0.1267487920013081,1000,mac,phase-23,without +8,360.55380282733665,0.0,0.0,78.02333633007905,0.1266118329986056,1000,mac,phase-23,without +9,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646,1000,mac,phase-23,without +10,364.2208248292936,0.0,0.0,78.81687473889593,0.1278995419997954,1000,mac,phase-23,without +11,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028,1000,mac,phase-23,without +12,374.00840463719953,0.0,0.0,80.93489325713479,0.1313365419991896,1000,mac,phase-23,without +13,360.17292159439404,0.0,0.0,77.94091416643339,0.1264780829988012,1000,mac,phase-23,without +14,360.17102501617666,0.0,0.0,77.94050374957197,0.126477416997659,1000,mac,phase-23,without +15,362.5744923942769,0.0,0.0,78.46061071316345,0.1273214169996208,1000,mac,phase-23,without +16,360.86337170818086,0.0,0.0,78.09032660092915,0.1267205410003953,1000,mac,phase-23,without +17,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175,1000,mac,phase-23,without +18,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644,1000,mac,phase-23,without +19,361.46791779675897,0.0,0.0,78.2211495250705,0.1269328330017742,1000,mac,phase-23,without +20,362.3516590767534,0.0,0.0,78.4123898963468,0.1272431670004152,1000,mac,phase-23,without +21,360.9834510950976,0.0,0.0,78.1163116115385,0.126762707997841,1000,mac,phase-23,without +22,364.26057316947674,0.0,0.0,78.82547622386255,0.1279135000004316,1000,mac,phase-23,without +23,364.3102884882237,0.0,0.0,78.83623454898611,0.1279309579986147,1000,mac,phase-23,without +24,362.5480314767952,0.0,0.0,78.45488460779974,0.127312125001481,1000,mac,phase-23,without +25,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774,1000,mac,phase-23,without +26,360.08998204684286,0.0,0.0,77.92296616487883,0.1264489580025838,1000,mac,phase-23,without +27,362.7770357881926,0.0,0.0,78.50444081902006,0.1273925420027808,1000,mac,phase-23,without +28,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133,1000,mac,phase-23,without +29,369.760449773745,0.0,0.0,80.0156417933386,0.1298448330016981,1000,mac,phase-23,without +0,581.4317776280168,0.5649808642284244,22.03425370490855,108.27692092095334,0.1290291250006703,1000,mac,phase-8,without +1,520.8723160480156,0.5061348598351681,19.739259533571555,96.99925725546927,0.1155900000012479,1000,mac,phase-8,without +2,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199,1000,mac,phase-8,without +3,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056125,0.1326433750000433,1000,mac,phase-8,without +4,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.1309582920002867,1000,mac,phase-8,without +5,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.1296407499976339,1000,mac,phase-8,without +6,595.3991361810349,0.5785530331567643,22.56356829311381,110.8779871779258,0.1321287079990725,1000,mac,phase-8,without +7,575.798831243909,0.5595072952927381,21.820784516416783,107.22792753316124,0.1277790829990408,1000,mac,phase-8,without +8,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995,1000,mac,phase-8,without +9,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.1333778750013152,1000,mac,phase-8,without +10,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.1294329999982437,1000,mac,phase-8,without +11,599.6841637858541,0.5827168210551312,22.72595602115012,111.6759648822128,0.1330796250003914,1000,mac,phase-8,without +12,575.4691302135833,0.55918692275684,21.80828998751676,107.16652907892852,0.1277059170024586,1000,mac,phase-8,without +13,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468507,0.1305355839976982,1000,mac,phase-8,without +14,582.9858553137769,0.5664909711537129,22.09314787499481,108.56632847169394,0.129374000000098,1000,mac,phase-8,without +15,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141,1000,mac,phase-8,without +16,601.3137204179325,0.5843002713406603,22.78771058228575,111.97942847222774,0.1334412500000326,1000,mac,phase-8,without +17,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170692,0.128728833002242,1000,mac,phase-8,without +18,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534,1000,mac,phase-8,without +19,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.1294090000010328,1000,mac,phase-8,without +20,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.1289375830019707,1000,mac,phase-8,without +21,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666796,0.1290653750002093,1000,mac,phase-8,without +22,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853932,0.122686833001353,1000,mac,phase-8,without +23,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881,1000,mac,phase-8,without +24,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684628,0.1276108329984708,1000,mac,phase-8,without +25,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817,1000,mac,phase-8,without +26,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.1288575420003326,1000,mac,phase-8,without +27,596.8328621274222,0.5799461935505104,22.617901548469906,111.14498226985664,0.1324468749990046,1000,mac,phase-8,without +28,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.1291972090002673,1000,mac,phase-8,without +29,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.132729291999567,1000,mac,phase-8,without +0,330.44415841729904,0.0,0.0,71.46026132650186,0.1117680830029712,1000,mac,phase-1,without +1,376.19058039632665,0.0,0.0,81.35316209688087,0.127241165999294,1000,mac,phase-1,without +2,373.3111818811339,0.0,0.0,80.73047724947932,0.1262672500015469,1000,mac,phase-1,without +3,375.9587422141797,0.0,0.0,81.30302588881162,0.1271627499991154,1000,mac,phase-1,without +4,358.0380640968126,0.0,0.0,77.42758639685981,0.1211013329993875,1000,mac,phase-1,without +5,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658,1000,mac,phase-1,without +6,375.96440985647655,0.0,0.0,81.304251545823,0.127164666999306,1000,mac,phase-1,without +7,375.1544485619503,0.0,0.0,81.12909321938014,0.126890708997962,1000,mac,phase-1,without +8,372.8164561803528,0.0,0.0,80.62349025345529,0.1260999160003848,1000,mac,phase-1,without +9,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354,1000,mac,phase-1,without +10,341.7689728538709,0.0,0.0,73.9093111235619,0.1155985420009528,1000,mac,phase-1,without +11,376.4109650344787,0.0,0.0,81.40082141671914,0.1273157079995144,1000,mac,phase-1,without +12,377.2984136638453,0.0,0.0,81.59273678079191,0.1276158750006288,1000,mac,phase-1,without +13,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929,1000,mac,phase-1,without +14,331.6252896252523,0.0,0.0,71.71568706979686,0.1121675840004172,1000,mac,phase-1,without +15,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419,1000,mac,phase-1,without +16,355.2765537051657,0.0,0.0,76.83039546696682,0.1201672909992339,1000,mac,phase-1,without +17,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539,1000,mac,phase-1,without +18,377.2072553916621,0.0,0.0,81.57302333213093,0.1275850419988273,1000,mac,phase-1,without +19,375.10048919039974,0.0,0.0,81.11742422571268,0.1268724580004345,1000,mac,phase-1,without +20,372.6835400780478,0.0,0.0,80.5947464576784,0.1260549590006121,1000,mac,phase-1,without +21,376.0683787140708,0.0,0.0,81.32673534995224,0.1271998330012138,1000,mac,phase-1,without +22,374.1239784649677,0.0,0.0,80.90624872192488,0.1265421669995703,1000,mac,phase-1,without +23,376.20314854727656,0.0,0.0,81.35588002464081,0.1272454169993579,1000,mac,phase-1,without +24,374.47284738731366,0.0,0.0,80.98169343391177,0.1266601669994997,1000,mac,phase-1,without +25,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582,1000,mac,phase-1,without +26,377.63409948635586,0.0,0.0,81.66533057913625,0.127729416002694,1000,mac,phase-1,without +27,377.7004998759669,0.0,0.0,81.67969000741759,0.127751874999376,1000,mac,phase-1,without +28,370.2482309866334,0.0,0.0,80.0680982490467,0.1252312499964318,1000,mac,phase-1,without +29,376.1321921537387,0.0,0.0,81.3405353369051,0.127221416998509,1000,mac,phase-1,without +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892,1000,mac,phase-30,without +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.1231860420011798,1000,mac,phase-30,without +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.1267482919975009,1000,mac,phase-30,without +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.1252969589986605,1000,mac,phase-30,without +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.1273789999977452,1000,mac,phase-30,without +5,364.7452495438632,0.775049957456472,0.0,79.9986347392028,0.1277264160016784,1000,mac,phase-30,without +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789,1000,mac,phase-30,without +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.1272880409997014,1000,mac,phase-30,without +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.1274361249998037,1000,mac,phase-30,without +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.1269027079979423,1000,mac,phase-30,without +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.1268887499973061,1000,mac,phase-30,without +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329,1000,mac,phase-30,without +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.1277072500015492,1000,mac,phase-30,without +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.127331707997655,1000,mac,phase-30,without +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511,1000,mac,phase-30,without +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.1237031659984495,1000,mac,phase-30,without +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.1275474169997323,1000,mac,phase-30,without +17,363.6220179678712,0.7726631941298076,0.0,79.75227925496361,0.127333083000849,1000,mac,phase-30,without +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.1279127499983587,1000,mac,phase-30,without +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.1260935409991361,1000,mac,phase-30,without +20,362.955814476415,0.7712475732591968,0.0,79.6061625616232,0.1270997920000809,1000,mac,phase-30,without +21,341.77800196980706,0.7262466782433077,0.0,74.96128757172228,0.1196837499992398,1000,mac,phase-30,without +22,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.1263032079987169,1000,mac,phase-30,without +23,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.1252500000009604,1000,mac,phase-30,without +24,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.126944709001691,1000,mac,phase-30,without +25,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.1269748750019061,1000,mac,phase-30,without +26,362.2602175158703,0.7697694939823556,0.0,79.45359907452662,0.1268562080003903,1000,mac,phase-30,without +27,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.1222566659998847,1000,mac,phase-30,without +28,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758,1000,mac,phase-30,without +29,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.1265295829980459,1000,mac,phase-30,without +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.1291073329994105,1000,mac,phase-6,without +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893635,0.1292414579984324,1000,mac,phase-6,without +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.1296916249993955,1000,mac,phase-6,without +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185,1000,mac,phase-6,without +4,570.7923075604117,0.4995848181471686,22.61453943479517,108.6430451197376,0.1289150839984358,1000,mac,phase-6,without +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.1188811249994614,1000,mac,phase-6,without +6,546.1066178825615,0.4779787179506606,21.636503299233237,103.944438530337,0.1233397500000137,1000,mac,phase-6,without +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137712,0.1353968750008789,1000,mac,phase-6,without +8,564.8324897164598,0.4943684995767823,22.378414080842347,107.50866970796427,0.1275690420006867,1000,mac,phase-6,without +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427,1000,mac,phase-6,without +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.1266568329992878,1000,mac,phase-6,without +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681,1000,mac,phase-6,without +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.127020125000854,1000,mac,phase-6,without +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.1180574170030013,1000,mac,phase-6,without +14,565.4239499832644,0.4948861739846519,22.40184747570525,107.62124663586232,0.127702625002712,1000,mac,phase-6,without +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.1330269160025636,1000,mac,phase-6,without +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177,1000,mac,phase-6,without +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.1327920000003359,1000,mac,phase-6,without +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.1297199580003507,1000,mac,phase-6,without +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.1315104159984912,1000,mac,phase-6,without +20,573.9317008573986,0.5023325658105368,22.73892081235696,109.2405886449314,0.1296241250020102,1000,mac,phase-6,without +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.1326278329979686,1000,mac,phase-6,without +22,569.2309991369702,0.4982182860925752,22.55268108379057,108.34586994893202,0.1285624580013973,1000,mac,phase-6,without +23,586.1692027690232,0.5130434147237337,23.22376523982768,111.56984125525462,0.1323879999981727,1000,mac,phase-6,without +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.9929550276332,0.1352632499983883,1000,mac,phase-6,without +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.1295764169990434,1000,mac,phase-6,without +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880932,0.1320039999991422,1000,mac,phase-6,without +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889296,0.1308776250007213,1000,mac,phase-6,without +28,569.554032432905,0.4985010203345533,22.56547952047745,108.40735522208752,0.1286354160001792,1000,mac,phase-6,without +29,569.8029068334558,0.4987188471526337,22.575339814442557,108.45472529412608,0.1286916249991918,1000,mac,phase-6,without +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.1331702499992388,1000,mac,phase-7,without +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.1268256250004924,1000,mac,phase-7,without +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767624,0.1291754999983823,1000,mac,phase-7,without +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172,1000,mac,phase-7,without +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089052,0.1295549999995273,1000,mac,phase-7,without +5,574.3023135305887,0.5387451346440795,22.86299665145812,110.67845359844308,0.1315277499998046,1000,mac,phase-7,without +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967,1000,mac,phase-7,without +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.1310482090011646,1000,mac,phase-7,without +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084652,0.1287392910016933,1000,mac,phase-7,without +9,581.0269266320039,0.5450534020938123,23.13070375135616,111.97440829264757,0.1330678330014052,1000,mac,phase-7,without +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799497,0.1282551250005781,1000,mac,phase-7,without +11,534.6144979163302,0.5015145383830489,21.28302322263064,103.0298929790676,0.1224383750013657,1000,mac,phase-7,without +12,564.9127401658633,0.5299369044707911,22.4891973834792,108.86891281221816,0.1293773329998657,1000,mac,phase-7,without +13,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.1315748749984777,1000,mac,phase-7,without +14,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557429,0.1303790419988217,1000,mac,phase-7,without +15,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969,1000,mac,phase-7,without +16,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.1300272909975319,1000,mac,phase-7,without +17,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.1332790000014938,1000,mac,phase-7,without +18,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.1304998750019876,1000,mac,phase-7,without +19,577.1835894549931,0.5414480201266352,22.97770035412408,111.2337276347656,0.1321876250003697,1000,mac,phase-7,without +20,572.4775221883025,0.5370333228783325,22.79035163964923,110.32678326881744,0.1311098330006643,1000,mac,phase-7,without +21,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821,1000,mac,phase-7,without +22,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.1276652909982658,1000,mac,phase-7,without +23,550.3919260419447,0.516315127619085,21.91112322833492,106.07048903024578,0.126051750001352,1000,mac,phase-7,without +24,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.1295552080009656,1000,mac,phase-7,without +25,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.1292686669985414,1000,mac,phase-7,without +26,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367843,0.1345588340009271,1000,mac,phase-7,without +27,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156,1000,mac,phase-7,without +28,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.1282280839986924,1000,mac,phase-7,without +29,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544232,0.131837541997811,1000,mac,phase-7,without +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.1294090000010328,1000,mac,phase-9,without +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437,1000,mac,phase-9,without +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.1238124416234,0.1290127909996954,1000,mac,phase-9,without +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285,1000,mac,phase-9,without +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.1289722090004943,1000,mac,phase-9,without +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688,1000,mac,phase-9,without +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894872,0.1277482500008773,1000,mac,phase-9,without +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.129827667002246,1000,mac,phase-9,without +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167936,0.1300582920011948,1000,mac,phase-9,without +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276,1000,mac,phase-9,without +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.1253202499974577,1000,mac,phase-9,without +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.1305465419973188,1000,mac,phase-9,without +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.3348248818242,0.1280713749983988,1000,mac,phase-9,without +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971,1000,mac,phase-9,without +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.1339217910026491,1000,mac,phase-9,without +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.1294104999979026,1000,mac,phase-9,without +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.7237311424572,0.1285354159990674,1000,mac,phase-9,without +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.1304550839995499,1000,mac,phase-9,without +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479164,0.1318872500014549,1000,mac,phase-9,without +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596356,0.130042582997703,1000,mac,phase-9,without +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.1289919999981066,1000,mac,phase-9,without +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381303,0.1297635419978178,1000,mac,phase-9,without +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451525,0.1310055829999328,1000,mac,phase-9,without +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.1341233749990351,1000,mac,phase-9,without +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.1344618750008521,1000,mac,phase-9,without +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.1300322079987381,1000,mac,phase-9,without +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.1317313330000615,1000,mac,phase-9,without +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.1302883750031469,1000,mac,phase-9,without +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921,1000,mac,phase-9,without +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.1309345000008761,1000,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n30/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n30/with_smell.csv new file mode 100644 index 000000000..02230c19a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n30/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,1510.9616102840157,1.973479398690429,0.0,456.5315675637193,0.4877955420015496,30,mac,phase-19,with +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732,30,mac,phase-19,with +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151,30,mac,phase-19,with +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.4873141669995675,30,mac,phase-19,with +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508,30,mac,phase-19,with +5,1541.501322781938,2.013367568612397,0.0,465.7590308723345,0.4976549159982824,30,mac,phase-19,with +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.4959944170004746,30,mac,phase-19,with +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.4905059580014494,30,mac,phase-19,with +8,1540.251215198586,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841,30,mac,phase-19,with +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.4978336249987478,30,mac,phase-19,with +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284,30,mac,phase-19,with +11,1545.29644513748,2.0183244091655883,0.0,466.9057133203061,0.4988801250001415,30,mac,phase-19,with +12,1538.6722489839171,2.009672492033502,0.0,464.9042364904169,0.4967415840001195,30,mac,phase-19,with +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.4967219999998633,30,mac,phase-19,with +14,1519.289578347493,1.984356626340929,0.0,459.04783289353486,0.4904841249990568,30,mac,phase-19,with +15,1518.7244091137609,1.9836184541518056,0.0,458.87706906045105,0.490301666999585,30,mac,phase-19,with +16,1541.7541618243265,2.0136978037672426,0.0,465.8354252714888,0.4977365420018032,30,mac,phase-19,with +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.4974016669984848,30,mac,phase-19,with +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905,30,mac,phase-19,with +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.4971792910000658,30,mac,phase-19,with +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.4981023750005988,30,mac,phase-19,with +21,1539.6550675608858,2.010956159468265,0.0,465.2011915569919,0.4970588750002207,30,mac,phase-19,with +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936,30,mac,phase-19,with +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943,30,mac,phase-19,with +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205,30,mac,phase-19,with +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.4967334999964805,30,mac,phase-19,with +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164,30,mac,phase-19,with +27,1543.166248570158,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906,30,mac,phase-19,with +28,1517.437899341542,1.9819381331466872,0.0,458.488354801267,0.4898863329981395,30,mac,phase-19,with +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185,30,mac,phase-19,with +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.4960967090009944,30,mac,phase-26,with +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625,30,mac,phase-26,with +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175,30,mac,phase-26,with +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248,30,mac,phase-26,with +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133,30,mac,phase-26,with +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024,30,mac,phase-26,with +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.9361560538288,0.4992987500008894,30,mac,phase-26,with +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069,30,mac,phase-26,with +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808,30,mac,phase-26,with +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982,30,mac,phase-26,with +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676,30,mac,phase-26,with +11,2383.245600577661,3.968493333370142,85.35567744523615,511.86949844919224,0.5002108339976985,30,mac,phase-26,with +12,2393.684776374659,3.985876266772484,85.72955537116485,514.1116071425375,0.5024018750009418,30,mac,phase-26,with +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633,30,mac,phase-26,with +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925,30,mac,phase-26,with +15,2396.267721266653,3.990177292055761,85.82206325663266,514.6663677203255,0.5029439999998431,30,mac,phase-26,with +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309,30,mac,phase-26,with +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842,30,mac,phase-26,with +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849,30,mac,phase-26,with +19,2370.2641685954413,3.946877128029598,84.89074889536992,509.0813682303509,0.4974862080016464,30,mac,phase-26,with +20,2385.3405815094175,3.9719818189291622,85.43070895546808,512.3194549448798,0.5006505419987661,30,mac,phase-26,with +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261,30,mac,phase-26,with +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995,30,mac,phase-26,with +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786,30,mac,phase-26,with +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882,30,mac,phase-26,with +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378,30,mac,phase-26,with +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566,30,mac,phase-26,with +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169,30,mac,phase-26,with +28,2422.427310738474,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318,30,mac,phase-26,with +29,2386.7347881131845,3.974303400729649,85.48064231069353,512.6189003041125,0.5009431670005142,30,mac,phase-26,with +0,1550.0754940354375,0.8369738088744263,0.0,464.9222113535663,0.4976810830012255,30,mac,phase-21,with +1,1538.0192823716247,0.8304639753626484,0.0,461.3061290344438,0.4938102080013777,30,mac,phase-21,with +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189,30,mac,phase-21,with +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839,30,mac,phase-21,with +4,1528.3809066387753,0.8252596688114338,0.0,458.4152408313752,0.4907156250010303,30,mac,phase-21,with +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.4982283329991332,30,mac,phase-21,with +6,1548.695597204981,0.8362287241927542,0.0,464.50833171459107,0.4972380409999459,30,mac,phase-21,with +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205,30,mac,phase-21,with +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483,30,mac,phase-21,with +9,1527.96653767238,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396,30,mac,phase-21,with +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764,30,mac,phase-21,with +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.4892915000018547,30,mac,phase-21,with +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.4895386659991345,30,mac,phase-21,with +13,1526.3592753499977,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508,30,mac,phase-21,with +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895,30,mac,phase-21,with +15,1545.9810991200077,0.8347630124838054,0.0,463.6941581745042,0.4963664999995671,30,mac,phase-21,with +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642,30,mac,phase-21,with +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.4972027500007243,30,mac,phase-21,with +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156,30,mac,phase-21,with +19,1529.9212051478569,0.826091363470765,0.0,458.8772305807405,0.4912101669979165,30,mac,phase-21,with +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.4959058749991527,30,mac,phase-21,with +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002,30,mac,phase-21,with +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318,30,mac,phase-21,with +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.4974249170008988,30,mac,phase-21,with +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943,30,mac,phase-21,with +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.4972544580014073,30,mac,phase-21,with +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859,30,mac,phase-21,with +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.4976514579975628,30,mac,phase-21,with +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.4981981669989181,30,mac,phase-21,with +29,1549.708881169605,0.8367758537632858,0.0,464.8122512484299,0.497563375000027,30,mac,phase-21,with +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305,30,mac,phase-28,with +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298,30,mac,phase-28,with +2,2349.795445683046,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945,30,mac,phase-28,with +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512,30,mac,phase-28,with +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063,30,mac,phase-28,with +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291,30,mac,phase-28,with +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763,30,mac,phase-28,with +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418,30,mac,phase-28,with +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142,30,mac,phase-28,with +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085,30,mac,phase-28,with +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949,30,mac,phase-28,with +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573,30,mac,phase-28,with +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898,30,mac,phase-28,with +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496,30,mac,phase-28,with +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966,30,mac,phase-28,with +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723,30,mac,phase-28,with +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122,30,mac,phase-28,with +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662,30,mac,phase-28,with +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014,30,mac,phase-28,with +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694,30,mac,phase-28,with +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.4982014580018585,30,mac,phase-28,with +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375,30,mac,phase-28,with +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518,30,mac,phase-28,with +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471,30,mac,phase-28,with +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199,30,mac,phase-28,with +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108,30,mac,phase-28,with +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048,30,mac,phase-28,with +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745,30,mac,phase-28,with +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778,30,mac,phase-28,with +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413,30,mac,phase-28,with +0,1550.1230309870657,1.3179917364115763,0.0,458.9576724119213,0.4902429590001702,30,mac,phase-17,with +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.4978254169982392,30,mac,phase-17,with +2,1573.7945638369015,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331,30,mac,phase-17,with +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943,30,mac,phase-17,with +4,1559.3314125989507,1.3258211606750565,0.0,461.68407367607153,0.4931552080015535,30,mac,phase-17,with +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.4910096250023343,30,mac,phase-17,with +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715,30,mac,phase-17,with +7,1575.5656502813997,1.3396243173824207,0.0,466.49067792049345,0.498289458999352,30,mac,phase-17,with +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.4987434999966353,30,mac,phase-17,with +9,1578.9038743347269,1.3424626415854837,0.0,467.47905336610495,0.4993452079979761,30,mac,phase-17,with +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413,30,mac,phase-17,with +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208,30,mac,phase-17,with +12,1553.4810203833467,1.3208468660927597,0.0,459.9518999451511,0.4913049589995353,30,mac,phase-17,with +13,1572.2751115779795,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662,30,mac,phase-17,with +14,1570.6119266223695,1.335412415025928,0.0,465.0239882224038,0.4967227910019574,30,mac,phase-17,with +15,1573.5109085929755,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935,30,mac,phase-17,with +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629,30,mac,phase-17,with +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.4892259999978705,30,mac,phase-17,with +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967,30,mac,phase-17,with +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979,30,mac,phase-17,with +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978,30,mac,phase-17,with +21,1569.630277542812,1.3345777681307784,0.0,464.7333433073403,0.4964123339996149,30,mac,phase-17,with +22,1574.2479082049676,1.3385039074970495,0.0,466.10052318816014,0.4978727089983294,30,mac,phase-17,with +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383,30,mac,phase-17,with +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.4985292919991479,30,mac,phase-17,with +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484,30,mac,phase-17,with +26,1553.7065716648651,1.3210386410159338,0.0,460.0186807677736,0.4913762920004956,30,mac,phase-17,with +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761,30,mac,phase-17,with +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531,30,mac,phase-17,with +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107,30,mac,phase-17,with +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919,30,mac,phase-10,with +1,1537.0330531240645,0.8380038018079471,0.0,481.5169845188464,0.4986462920023768,30,mac,phase-10,with +2,1534.554664825174,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392,30,mac,phase-10,with +3,1535.092545630475,0.8369458202285922,0.0,480.9090683033491,0.498016749999806,30,mac,phase-10,with +4,1531.808106737977,0.8351551155504301,0.0,479.8801293952771,0.4969512079987908,30,mac,phase-10,with +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388,30,mac,phase-10,with +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.4978598749985394,30,mac,phase-10,with +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567,30,mac,phase-10,with +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.4900122919971181,30,mac,phase-10,with +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.4971287920016038,30,mac,phase-10,with +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442,30,mac,phase-10,with +11,1542.3129650510032,0.8408824557568605,0.0,483.171059077892,0.5003592079992814,30,mac,phase-10,with +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785,30,mac,phase-10,with +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.4977900420017249,30,mac,phase-10,with +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406,30,mac,phase-10,with +15,1515.0810186523638,0.8260353615019213,0.0,474.639918719004,0.4915245840020361,30,mac,phase-10,with +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891,30,mac,phase-10,with +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457,30,mac,phase-10,with +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533,30,mac,phase-10,with +19,1532.7389950049983,0.8356626439378236,0.0,480.1717552066734,0.4972532079991651,30,mac,phase-10,with +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.491781249998894,30,mac,phase-10,with +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092,30,mac,phase-10,with +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712,30,mac,phase-10,with +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.4898963329978869,30,mac,phase-10,with +24,1538.518645991316,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767,30,mac,phase-10,with +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646,30,mac,phase-10,with +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.4983793329993204,30,mac,phase-10,with +27,1537.739437027721,0.8383889284619229,0.0,481.73827829422095,0.498875458000839,30,mac,phase-10,with +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.4930752500004018,30,mac,phase-10,with +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.4973596250019909,30,mac,phase-10,with +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553,30,mac,phase-11,with +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.4946381670015398,30,mac,phase-11,with +2,1513.015531420153,1.7770758373213904,0.0,472.4389022330719,0.489482125001814,30,mac,phase-11,with +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.4983768749989394,30,mac,phase-11,with +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381,30,mac,phase-11,with +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.4987627919981605,30,mac,phase-11,with +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078,30,mac,phase-11,with +7,1540.8432585109908,1.8097602218460391,0.0,481.1281063855878,0.498484791998635,30,mac,phase-11,with +8,1521.949062973098,1.7875685009689248,0.0,475.2283962946275,0.4923722499988798,30,mac,phase-11,with +9,1537.8767464620305,1.806275976791144,0.0,480.20181338543824,0.4975250829993456,30,mac,phase-11,with +10,1540.0165314743188,1.8087892095791984,0.0,480.8699609762772,0.4982173339994915,30,mac,phase-11,with +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.4885295409985701,30,mac,phase-11,with +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686,30,mac,phase-11,with +13,1514.3150598492307,1.7786021670405965,0.0,472.8446798154592,0.4899025410013564,30,mac,phase-11,with +14,1541.9176562329635,1.81102212973247,0.0,481.4635869340618,0.4988323750003474,30,mac,phase-11,with +15,1515.38856114981,1.779863022056937,0.0,473.1798804564702,0.4902498339979502,30,mac,phase-11,with +16,1539.5401197356418,1.8082296516818483,0.0,480.7212014730485,0.4980632080005307,30,mac,phase-11,with +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.4996198750013718,30,mac,phase-11,with +18,1541.4078889281657,1.8104233948608175,0.0,481.3044121596648,0.4986674579995451,30,mac,phase-11,with +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968,30,mac,phase-11,with +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977,30,mac,phase-11,with +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.4975674579982296,30,mac,phase-11,with +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822,30,mac,phase-11,with +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.4915245830015919,30,mac,phase-11,with +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001,30,mac,phase-11,with +25,1541.7235658764823,1.810794165593571,0.0,481.40298224557984,0.498769583999092,30,mac,phase-11,with +26,1538.245614273331,1.8067092215669016,0.0,480.31699231137856,0.4976444170024479,30,mac,phase-11,with +27,1538.7954354415915,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098,30,mac,phase-11,with +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118,30,mac,phase-11,with +29,1539.4867990582093,1.8081670251684203,0.0,480.70455209847864,0.4980459580001479,30,mac,phase-11,with +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597,30,mac,phase-29,with +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385,30,mac,phase-29,with +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235,30,mac,phase-29,with +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116,30,mac,phase-29,with +4,2392.7939583178036,3.094216164570146,88.53450767657158,515.4365249625881,0.5038726669990865,30,mac,phase-29,with +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987,30,mac,phase-29,with +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502,30,mac,phase-29,with +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484,30,mac,phase-29,with +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611,30,mac,phase-29,with +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628,30,mac,phase-29,with +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102,30,mac,phase-29,with +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241,30,mac,phase-29,with +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865,30,mac,phase-29,with +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589,30,mac,phase-29,with +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126,30,mac,phase-29,with +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535,30,mac,phase-29,with +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978,30,mac,phase-29,with +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702,30,mac,phase-29,with +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992,30,mac,phase-29,with +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001,30,mac,phase-29,with +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963,30,mac,phase-29,with +21,2390.42113626185,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558,30,mac,phase-29,with +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539,30,mac,phase-29,with +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549,30,mac,phase-29,with +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028,30,mac,phase-29,with +25,2377.367853522984,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472,30,mac,phase-29,with +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107,30,mac,phase-29,with +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148,30,mac,phase-29,with +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216,30,mac,phase-29,with +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105,30,mac,phase-29,with +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723,30,mac,phase-16,with +1,1532.1004752886363,1.944206307094024,0.0,458.2065881380069,0.4896357500001613,30,mac,phase-16,with +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.4978175420001207,30,mac,phase-16,with +3,1559.2145772362046,1.9786135857731335,0.0,466.3156255961936,0.4983009999996284,30,mac,phase-16,with +4,1530.2639789041189,1.9418758281787545,0.0,457.6573456072133,0.4890488339988224,30,mac,phase-16,with +5,1553.2082118735125,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419,30,mac,phase-16,with +6,1559.180676984456,1.9785705669996752,0.0,466.3054870191607,0.4982901660005154,30,mac,phase-16,with +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907,30,mac,phase-16,with +8,1558.6548663303993,1.977903323299642,0.0,466.1482323810427,0.4981221250018279,30,mac,phase-16,with +9,1553.3620584498417,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574,30,mac,phase-16,with +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101,30,mac,phase-16,with +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699,30,mac,phase-16,with +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511,30,mac,phase-16,with +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693,30,mac,phase-16,with +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.494713000000047,30,mac,phase-16,with +15,1555.7903386278183,1.974268292232144,0.0,465.2915356523383,0.4972066660011478,30,mac,phase-16,with +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439,30,mac,phase-16,with +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097,30,mac,phase-16,with +18,1553.613947922776,1.97150649390123,0.0,464.64064063892545,0.4965111250021436,30,mac,phase-16,with +19,1556.3417074494223,1.9749679687597528,0.0,465.45643399329424,0.4973828749971289,30,mac,phase-16,with +20,1559.243258216998,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102,30,mac,phase-16,with +21,1546.4155414555316,1.9623718532687304,0.0,462.48780711358813,0.4942106249982316,30,mac,phase-16,with +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894,30,mac,phase-16,with +23,1528.3264357327582,1.939417122816551,0.0,457.07788292820584,0.488429624998389,30,mac,phase-16,with +24,1559.6077970344063,1.979112574203768,0.0,466.4332261746338,0.498426666999876,30,mac,phase-16,with +25,1535.5840315256837,1.9486268735754144,0.0,459.24841825535833,0.4907490410005266,30,mac,phase-16,with +26,1533.0749182963104,1.94544285670156,0.0,458.4980156344947,0.4899471669996273,30,mac,phase-16,with +27,1555.842230984777,1.974334142644252,0.0,465.3070551435309,0.4972232500003883,30,mac,phase-16,with +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.4883499999996274,30,mac,phase-16,with +29,1555.619285336731,1.974051228865383,0.0,465.240378599545,0.4971519999999145,30,mac,phase-16,with +0,1625.5597601283662,2.2574452413660273,0.0,464.3365675145092,0.4921481670025969,30,mac,phase-20,with +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114,30,mac,phase-20,with +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426,30,mac,phase-20,with +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874,30,mac,phase-20,with +4,1619.196275230912,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753,30,mac,phase-20,with +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.4969209160008176,30,mac,phase-20,with +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.496066374998918,30,mac,phase-20,with +7,1645.2563032830217,2.2847981992248796,0.0,469.96282959644697,0.4981114160000288,30,mac,phase-20,with +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988,30,mac,phase-20,with +9,1617.3511432498,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262,30,mac,phase-20,with +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978,30,mac,phase-20,with +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753,30,mac,phase-20,with +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172,30,mac,phase-20,with +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.4932250419988122,30,mac,phase-20,with +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461,30,mac,phase-20,with +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823,30,mac,phase-20,with +16,1618.5698106059183,2.247738167732763,0.0,462.3399081187963,0.4900319170010334,30,mac,phase-20,with +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.4884982080002373,30,mac,phase-20,with +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.4902859590001753,30,mac,phase-20,with +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689,30,mac,phase-20,with +20,1625.9434583893585,2.257978090317289,0.0,464.44616984217527,0.4922643339996284,30,mac,phase-20,with +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012,30,mac,phase-20,with +22,1643.0470201217047,2.2817301263790366,0.0,469.3317540832881,0.4974425420004991,30,mac,phase-20,with +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037,30,mac,phase-20,with +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533,30,mac,phase-20,with +25,1644.857744860965,2.284244713690023,0.0,469.8489825056227,0.4979907499982801,30,mac,phase-20,with +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.4965811670008406,30,mac,phase-20,with +27,1642.3811937703597,2.2808054808721243,0.0,469.141562661153,0.4972409589972812,30,mac,phase-20,with +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.4972591670011752,30,mac,phase-20,with +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.4894498749999911,30,mac,phase-20,with +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501,30,mac,phase-18,with +1,1551.185722359366,1.974412823748249,0.0,466.16221414937473,0.4965388329983398,30,mac,phase-18,with +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298,30,mac,phase-18,with +3,1547.1130708458957,1.969228985824172,0.0,464.9383012293342,0.4952351660031127,30,mac,phase-18,with +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.4957658749990514,30,mac,phase-18,with +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.4897414169972762,30,mac,phase-18,with +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082,30,mac,phase-18,with +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806,30,mac,phase-18,with +8,1541.253365057029,1.9617705119056952,0.0,463.17734289570063,0.4933594579997589,30,mac,phase-18,with +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013,30,mac,phase-18,with +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192,30,mac,phase-18,with +11,1550.8496334220874,1.9739850359610631,0.0,466.0612127277562,0.4964312500014785,30,mac,phase-18,with +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.4899619159987196,30,mac,phase-18,with +13,1555.5371906072128,1.9799515510501056,0.0,467.4699170530165,0.4979317500001343,30,mac,phase-18,with +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.4902642919987556,30,mac,phase-18,with +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985,30,mac,phase-18,with +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.4972455840033944,30,mac,phase-18,with +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555,30,mac,phase-18,with +18,1523.894748786755,1.939675752991576,0.0,457.9607328673332,0.4878029169994988,30,mac,phase-18,with +19,1528.9590068812288,1.946121748451934,0.0,459.4826433209397,0.489423999999417,30,mac,phase-18,with +20,1532.1890914847395,1.9502331326472857,0.0,460.4533480979099,0.4904579590001958,30,mac,phase-18,with +21,1551.723309101243,1.9750970862074375,0.0,466.32376967575607,0.4967109159988467,30,mac,phase-18,with +22,1555.211904441731,1.9795375134740387,0.0,467.3721620795485,0.4978276250003546,30,mac,phase-18,with +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.4974748340027872,30,mac,phase-18,with +24,1553.889544716052,1.9778543597662952,0.0,466.9747666363473,0.4974043340007483,30,mac,phase-18,with +25,1553.1610005454645,1.9769270388579467,0.0,466.7558245981558,0.4971711250000226,30,mac,phase-18,with +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.4899513749987818,30,mac,phase-18,with +27,1556.0137313297807,1.9805581116315465,0.0,467.6131270343634,0.4980842920012946,30,mac,phase-18,with +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549,30,mac,phase-18,with +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403,30,mac,phase-18,with +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612,30,mac,phase-27,with +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576,30,mac,phase-27,with +2,2756.6629408744075,3.785901382924392,84.37621951682796,523.1457293569697,0.5001827079977375,30,mac,phase-27,with +3,2741.474911483684,3.765042691561858,83.91134276933079,520.2634209705171,0.4974269160011317,30,mac,phase-27,with +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654,30,mac,phase-27,with +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.497821582997858,30,mac,phase-27,with +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554,30,mac,phase-27,with +7,2774.160435980272,3.809931811141341,84.91178462569788,526.4663166160612,0.5033575410016056,30,mac,phase-27,with +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454,30,mac,phase-27,with +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631,30,mac,phase-27,with +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016,30,mac,phase-27,with +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793,30,mac,phase-27,with +12,2770.4892187897412,3.8048898939622178,84.79941563674055,525.7696113474226,0.5026914169975498,30,mac,phase-27,with +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978,30,mac,phase-27,with +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901,30,mac,phase-27,with +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394,30,mac,phase-27,with +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222,30,mac,phase-27,with +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375,30,mac,phase-27,with +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477,30,mac,phase-27,with +19,2745.556043502129,3.7706475709700102,84.0362584730099,521.0379178285604,0.4981674170012411,30,mac,phase-27,with +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818,30,mac,phase-27,with +21,2757.1403582791954,3.786557050756037,84.39083235728454,523.2363312483842,0.5002693329988688,30,mac,phase-27,with +22,2771.5646135441475,3.806366802302199,84.83233142870031,525.9736943946457,0.5028865419990325,30,mac,phase-27,with +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276,30,mac,phase-27,with +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584,30,mac,phase-27,with +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005,30,mac,phase-27,with +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075,30,mac,phase-27,with +27,2829.818723513932,3.886370894288026,86.61537914834967,537.0288685315742,0.5134564589970978,30,mac,phase-27,with +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049,30,mac,phase-27,with +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177,30,mac,phase-27,with +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.4868028330020024,30,mac,phase-5,with +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.4948589999985415,30,mac,phase-5,with +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249,30,mac,phase-5,with +3,1533.950680078919,1.341716280054159,0.0,466.5818363888339,0.4973159999972267,30,mac,phase-5,with +4,1509.4877083165245,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007,30,mac,phase-5,with +5,1530.701332361488,1.3388741399588795,0.0,465.5934821707004,0.4962625420012045,30,mac,phase-5,with +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036,30,mac,phase-5,with +7,1511.6775444702157,1.3222344094554814,0.0,459.80701588814367,0.4900949160000891,30,mac,phase-5,with +8,1506.085294324647,1.3173429790073663,0.0,458.1060209498117,0.4882818750011211,30,mac,phase-5,with +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001,30,mac,phase-5,with +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716,30,mac,phase-5,with +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.4969967500001075,30,mac,phase-5,with +12,1535.0179028145485,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828,30,mac,phase-5,with +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468,30,mac,phase-5,with +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.4962089580003521,30,mac,phase-5,with +15,1529.1070527547115,1.3374796551614545,0.0,465.1085500823957,0.4957456670017564,30,mac,phase-5,with +16,1511.511884356299,1.3220895098347285,0.0,459.7566270450269,0.4900412079987291,30,mac,phase-5,with +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.4965184579996275,30,mac,phase-5,with +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.4970040829975914,30,mac,phase-5,with +19,1531.0605422535905,1.339188333737369,0.0,465.7027430571701,0.4963790000001609,30,mac,phase-5,with +20,1529.8004113116283,1.3380861221592606,0.0,465.3194489808829,0.4959704579996469,30,mac,phase-5,with +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173,30,mac,phase-5,with +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.4973219999992579,30,mac,phase-5,with +23,1508.4587853165551,1.319419024571127,0.0,458.82796579460944,0.4890513749996898,30,mac,phase-5,with +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.4990502090004156,30,mac,phase-5,with +25,1507.4511944376345,1.318537704784618,0.0,458.52148683885093,0.4887247080005181,30,mac,phase-5,with +26,1531.4239932863045,1.3395062371575557,0.0,465.81329397154,0.4964968330023112,30,mac,phase-5,with +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.4958281660001375,30,mac,phase-5,with +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602,30,mac,phase-5,with +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631,30,mac,phase-5,with +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.4967214579992287,30,mac,phase-2,with +1,1525.822451852758,0.9878217819888808,0.0,458.15174248644286,0.4879074999989825,30,mac,phase-2,with +2,1551.4175283280858,1.004392107077032,0.0,465.8370592623274,0.4960919580007612,30,mac,phase-2,with +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014,30,mac,phase-2,with +4,1517.1578055606185,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886,30,mac,phase-2,with +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844,30,mac,phase-2,with +6,1536.6455705433632,0.994828699719478,0.0,461.4015509298939,0.4913683750019118,30,mac,phase-2,with +7,1523.3509920954475,0.986221751933866,0.0,457.4096485469271,0.4871172089988249,30,mac,phase-2,with +8,1523.3483839474748,0.986220063411473,0.0,457.4088654102411,0.4871163749994593,30,mac,phase-2,with +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242,30,mac,phase-2,with +10,1552.6602304699818,1.0051966359675315,0.0,466.2101997617412,0.4964893329997721,30,mac,phase-2,with +11,1535.8703964688004,0.9943268498255036,0.0,461.16879294906863,0.4911204999989422,30,mac,phase-2,with +12,1528.3973744832786,0.9894887942013932,0.0,458.9249027506061,0.4887308750003285,30,mac,phase-2,with +13,1531.9027936882028,0.9917582125347134,0.0,459.9774589736001,0.4898517919973528,30,mac,phase-2,with +14,1541.5801558574808,0.9980233642444684,0.0,462.8832363365845,0.4929462920008518,30,mac,phase-2,with +15,1553.6147007694765,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625,30,mac,phase-2,with +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.4965233750008337,30,mac,phase-2,with +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.4948284999991301,30,mac,phase-2,with +18,1572.9461018499128,1.0183297666220117,0.0,472.3013457592889,0.5029760830002488,30,mac,phase-2,with +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299,30,mac,phase-2,with +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069,30,mac,phase-2,with +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.4948044160009885,30,mac,phase-2,with +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.496583374999318,30,mac,phase-2,with +23,1551.7935835191104,1.0046355662740525,0.0,465.9499756379054,0.4962122079996334,30,mac,phase-2,with +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908,30,mac,phase-2,with +25,1528.5850111774257,0.9896102707292512,0.0,458.9812435642267,0.4887908750024508,30,mac,phase-2,with +26,1549.1668012392042,1.0029349799774732,0.0,465.161243713552,0.495372249999491,30,mac,phase-2,with +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072,30,mac,phase-2,with +28,1551.2523048367275,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879,30,mac,phase-2,with +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.4966570830001728,30,mac,phase-2,with +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.4906970419979188,30,mac,phase-3,with +1,1543.8582876666146,1.819236842272884,0.0,468.7903825967997,0.498959583001124,30,mac,phase-3,with +2,1514.9563025535929,1.785179599744556,0.0,460.0143357489906,0.4896187500016822,30,mac,phase-3,with +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.4886332080022839,30,mac,phase-3,with +4,1513.8533631439177,1.783879928638143,0.0,459.6794297592549,0.4892622909974307,30,mac,phase-3,with +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127,30,mac,phase-3,with +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044,30,mac,phase-3,with +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288,0.488077041998622,30,mac,phase-3,with +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.4968368750014633,30,mac,phase-3,with +9,1536.988103258224,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808,30,mac,phase-3,with +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314,30,mac,phase-3,with +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129,30,mac,phase-3,with +12,1537.6380057586473,1.8119070464576217,0.0,466.9016028047741,0.496949249998579,30,mac,phase-3,with +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181,30,mac,phase-3,with +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273,30,mac,phase-3,with +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.4968635410004935,30,mac,phase-3,with +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761,30,mac,phase-3,with +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.4962564160014153,30,mac,phase-3,with +18,1534.6338380789523,1.8083670243150929,0.0,465.9893915434169,0.4959783330014033,30,mac,phase-3,with +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864,30,mac,phase-3,with +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.4974886670024716,30,mac,phase-3,with +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.4904405839988612,30,mac,phase-3,with +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546,30,mac,phase-3,with +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.4959463339982903,30,mac,phase-3,with +24,1536.071073078166,1.8100606194348392,0.0,466.4258059154776,0.4964428330022201,30,mac,phase-3,with +25,1534.2024633575504,1.807858705130444,0.0,465.85840522018754,0.495838916998764,30,mac,phase-3,with +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429,30,mac,phase-3,with +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.4879782079988217,30,mac,phase-3,with +28,1533.3456392419216,1.806849048991048,0.0,465.59823179093394,0.4955620000000635,30,mac,phase-3,with +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.4960916669988364,30,mac,phase-3,with +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601,30,mac,phase-4,with +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.4905383750010514,30,mac,phase-4,with +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.4949191670020809,30,mac,phase-4,with +3,1543.9666529760673,2.517118054369295,0.0,468.6538201495045,0.4970376669989491,30,mac,phase-4,with +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.4911096249998081,30,mac,phase-4,with +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.4892612080002436,30,mac,phase-4,with +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668,30,mac,phase-4,with +7,1541.4305863957322,2.5129835227301953,0.0,467.8840254853926,0.4962212500031455,30,mac,phase-4,with +8,1518.9797912579406,2.4763821481685406,0.0,461.0693375603401,0.4889938330015866,30,mac,phase-4,with +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282,30,mac,phase-4,with +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875,30,mac,phase-4,with +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.4909694169982685,30,mac,phase-4,with +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736,30,mac,phase-4,with +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168,30,mac,phase-4,with +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129,30,mac,phase-4,with +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858,30,mac,phase-4,with +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407,30,mac,phase-4,with +17,1539.709287220718,2.5101773007032837,0.0,467.36154436027533,0.4956671250001818,30,mac,phase-4,with +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.4965505419968394,30,mac,phase-4,with +19,1509.6842072989823,2.461227622542033,0.0,458.247766949026,0.4860013750003418,30,mac,phase-4,with +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097,30,mac,phase-4,with +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844,30,mac,phase-4,with +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.4907778749984572,30,mac,phase-4,with +23,1518.3726327778963,2.4753923019377058,0.0,460.8850413901084,0.4887983750013518,30,mac,phase-4,with +24,1542.6089226370732,2.514904556077308,0.0,468.24169628084707,0.4966005829992355,30,mac,phase-4,with +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.4952879160009615,30,mac,phase-4,with +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364,30,mac,phase-4,with +27,1524.6620618997297,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219,30,mac,phase-4,with +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333,30,mac,phase-4,with +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925,30,mac,phase-4,with +0,1543.037293902987,0.9050268700391154,0.0,464.4128623848868,0.4969528340006945,30,mac,phase-22,with +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.4968073750023904,30,mac,phase-22,with +2,1522.6647565357837,0.8930779082084145,0.0,458.2812747491697,0.490391625000484,30,mac,phase-22,with +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.4955040000022563,30,mac,phase-22,with +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488,30,mac,phase-22,with +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.4876558750002004,30,mac,phase-22,with +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299,30,mac,phase-22,with +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.4911422499972104,30,mac,phase-22,with +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522,30,mac,phase-22,with +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697,30,mac,phase-22,with +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.4891653750019031,30,mac,phase-22,with +11,1540.3509525440622,0.9034512690335336,0.0,463.60434564665206,0.4960876669974823,30,mac,phase-22,with +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175,30,mac,phase-22,with +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979,30,mac,phase-22,with +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759,30,mac,phase-22,with +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943,30,mac,phase-22,with +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511,30,mac,phase-22,with +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.4970722079997358,30,mac,phase-22,with +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232,30,mac,phase-22,with +19,1517.3107069267537,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729,30,mac,phase-22,with +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.4969016249997366,30,mac,phase-22,with +21,1542.9237006680555,0.904960244993646,0.0,464.378673866184,0.4969162499983213,30,mac,phase-22,with +22,1543.855845753035,0.9055069695297376,0.0,464.65922454942654,0.4972164579994569,30,mac,phase-22,with +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416,30,mac,phase-22,with +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507,30,mac,phase-22,with +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.4953368749993387,30,mac,phase-22,with +26,1524.4368065343,0.8941172562980861,0.0,458.8146142966661,0.4909623339990503,30,mac,phase-22,with +27,1540.8696144444589,0.903755476169796,0.0,463.7604489752787,0.4962547080031072,30,mac,phase-22,with +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629,30,mac,phase-22,with +29,1542.3754109042263,0.9046386604338992,0.0,464.2136533448767,0.4967396669999289,30,mac,phase-22,with +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744,30,mac,phase-25,with +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192,30,mac,phase-25,with +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263,30,mac,phase-25,with +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.4983404999984486,30,mac,phase-25,with +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052,30,mac,phase-25,with +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.4975258750018838,30,mac,phase-25,with +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626,30,mac,phase-25,with +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.4973339589996612,30,mac,phase-25,with +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957,30,mac,phase-25,with +9,1548.8857390933792,0.8386499063790712,0.0,465.2494220628536,0.4981867919996148,30,mac,phase-25,with +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573,30,mac,phase-25,with +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854,30,mac,phase-25,with +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442,30,mac,phase-25,with +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.4890400419972138,30,mac,phase-25,with +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909,30,mac,phase-25,with +15,1548.8552953072,0.8386334224785583,0.0,465.240277454205,0.4981769999976677,30,mac,phase-25,with +16,1525.425523355913,0.8259472858853377,0.0,458.20251631775,0.4906410000003234,30,mac,phase-25,with +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796,30,mac,phase-25,with +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922,30,mac,phase-25,with +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205,30,mac,phase-25,with +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.4976440419995924,30,mac,phase-25,with +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.4966249170029186,30,mac,phase-25,with +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363,30,mac,phase-25,with +23,1523.6436512727455,0.8249824846621034,0.0,457.6672831911485,0.4900678750018414,30,mac,phase-25,with +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.4941007919987896,30,mac,phase-25,with +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.4961650840014044,30,mac,phase-25,with +26,1546.018290686647,0.8370973158443685,0.0,464.3881069378219,0.49726450000162,30,mac,phase-25,with +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.4886809999989054,30,mac,phase-25,with +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.4892711669999698,30,mac,phase-25,with +29,1544.979353159271,0.8365347792814213,0.0,464.0760341541612,0.4969303340003534,30,mac,phase-25,with +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892,30,mac,phase-13,with +1,1550.91288162991,0.8958868617275533,0.0,462.0121726923871,0.4923814169997058,30,mac,phase-13,with +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.4911964169987186,30,mac,phase-13,with +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874,30,mac,phase-13,with +4,1565.1120060356702,0.904089004577632,0.0,466.2420481384795,0.4968893330005812,30,mac,phase-13,with +5,1571.375161858294,0.9077069247592892,0.0,468.10782297586456,0.498877750000247,30,mac,phase-13,with +6,1570.1072269824244,0.9069745005140124,0.0,467.730109079893,0.4984752080017642,30,mac,phase-13,with +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487,30,mac,phase-13,with +8,1565.5201723263629,0.90432478237119,0.0,466.36363961986854,0.4970189170016965,30,mac,phase-13,with +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015,30,mac,phase-13,with +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518,30,mac,phase-13,with +11,1560.722599431774,0.9015534580915664,0.0,464.93445742470254,0.4954957909976656,30,mac,phase-13,with +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.4871506659983424,30,mac,phase-13,with +13,1570.2996305808672,0.9070856427051928,0.0,467.78742551952234,0.4985362919978797,30,mac,phase-13,with +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609,30,mac,phase-13,with +15,1547.5227554628375,0.8939285508974267,0.0,461.00226454428775,0.4913051250005082,30,mac,phase-13,with +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.4915737500014074,30,mac,phase-13,with +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721,30,mac,phase-13,with +18,1564.0133771354122,0.90345438015139,0.0,465.9147699714058,0.49654054200073,30,mac,phase-13,with +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579,30,mac,phase-13,with +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017,30,mac,phase-13,with +21,1554.6354429575945,0.898037204164546,0.0,463.1211122513755,0.4935632499982603,30,mac,phase-13,with +22,1566.8541179900308,0.9050953378346812,0.0,466.7610179263,0.4974424160027411,30,mac,phase-13,with +23,1563.1480932062543,0.902954547753982,0.0,465.6570045528313,0.496265833000507,30,mac,phase-13,with +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334,30,mac,phase-13,with +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029,30,mac,phase-13,with +26,1544.107301583785,0.8919556094812306,0.0,459.98481134876505,0.4902207919985812,30,mac,phase-13,with +27,1567.236953417524,0.905316483221864,0.0,466.8750634215273,0.4975639580006827,30,mac,phase-13,with +28,1564.9869329670676,0.9040167559553888,0.0,466.2047892564012,0.4968496249966847,30,mac,phase-13,with +29,1569.5676911434848,0.9066628369284802,0.0,467.5693830145243,0.4983039170001575,30,mac,phase-13,with +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481,30,mac,phase-14,with +1,1517.480332834304,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702,30,mac,phase-14,with +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304,30,mac,phase-14,with +3,1542.4872208574875,0.5718522026949577,0.0,467.2705263315093,0.498356000000058,30,mac,phase-14,with +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855,30,mac,phase-14,with +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593,30,mac,phase-14,with +6,1541.2370366249845,0.5713887171000923,0.0,466.8918040727872,0.4979520829983812,30,mac,phase-14,with +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821,30,mac,phase-14,with +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392,30,mac,phase-14,with +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442,30,mac,phase-14,with +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468,30,mac,phase-14,with +11,1517.2779873087345,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378,30,mac,phase-14,with +12,1518.0660902189236,0.5627984632803773,0.0,459.8725560839836,0.4904658750019735,30,mac,phase-14,with +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126,30,mac,phase-14,with +14,1517.2394279134517,0.5624919915936906,0.0,459.622132660468,0.4901987919984094,30,mac,phase-14,with +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855,30,mac,phase-14,with +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978,30,mac,phase-14,with +17,1518.3874690557575,0.5629176092890171,0.0,459.96991239021986,0.4905697079993842,30,mac,phase-14,with +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193,30,mac,phase-14,with +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163,30,mac,phase-14,with +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935,30,mac,phase-14,with +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.4913474580025649,30,mac,phase-14,with +22,1526.217818035968,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091,30,mac,phase-14,with +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.490669708000496,30,mac,phase-14,with +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.4942520420008804,30,mac,phase-14,with +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378,30,mac,phase-14,with +26,1534.423317940434,0.5688626410421411,0.0,464.8277027480224,0.4957506659993669,30,mac,phase-14,with +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833,30,mac,phase-14,with +28,1517.56235434898,0.5626117113495291,0.0,459.71995778566526,0.4903031250032654,30,mac,phase-14,with +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216,30,mac,phase-14,with +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253,30,mac,phase-15,with +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469,30,mac,phase-15,with +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869,30,mac,phase-15,with +3,1547.1728294886957,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128,30,mac,phase-15,with +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.4916307919993414,30,mac,phase-15,with +5,1522.8403915260485,1.286963146171359,0.0,460.69980727431664,0.4899240839986305,30,mac,phase-15,with +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.4981920840000384,30,mac,phase-15,with +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766,30,mac,phase-15,with +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749,30,mac,phase-15,with +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258,30,mac,phase-15,with +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.4905591249989811,30,mac,phase-15,with +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.490846832999523,30,mac,phase-15,with +12,1548.5445027423802,1.3086858716943923,0.0,468.4759860186004,0.4981935410032747,30,mac,phase-15,with +13,1548.346997027624,1.3085189582230503,0.0,468.41623527569254,0.4981299999999464,30,mac,phase-15,with +14,1526.1627930048307,1.289770931073685,0.0,461.7049222748644,0.4909929579989693,30,mac,phase-15,with +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149,30,mac,phase-15,with +16,1549.442548959939,1.3094448168812869,0.0,468.7476689353755,0.4984824579987617,30,mac,phase-15,with +17,1525.4153728060248,1.289139280996684,0.0,461.4788077434539,0.4907524999980523,30,mac,phase-15,with +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293,30,mac,phase-15,with +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.4897483750028186,30,mac,phase-15,with +20,1553.0553234008996,1.312497998020176,0.0,469.8406294964019,0.4996447500016074,30,mac,phase-15,with +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527,30,mac,phase-15,with +22,1549.7637440107094,1.3097162610821198,0.0,468.844838999166,0.4985857920000853,30,mac,phase-15,with +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.4968075409997254,30,mac,phase-15,with +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552,30,mac,phase-15,with +25,1525.1998637277711,1.2889571527559822,0.0,461.4136105032376,0.4906831670014071,30,mac,phase-15,with +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956,30,mac,phase-15,with +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903,30,mac,phase-15,with +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556,30,mac,phase-15,with +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313,30,mac,phase-15,with +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903,30,mac,phase-12,with +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644,30,mac,phase-12,with +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.4977449159996467,30,mac,phase-12,with +3,1546.2059346063345,2.2033334416620187,0.0,467.473911872625,0.496353624999756,30,mac,phase-12,with +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.4969734580008662,30,mac,phase-12,with +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.4907893749987124,30,mac,phase-12,with +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513,30,mac,phase-12,with +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531,30,mac,phase-12,with +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.4975908330015954,30,mac,phase-12,with +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121,30,mac,phase-12,with +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.4914072920000762,30,mac,phase-12,with +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572,30,mac,phase-12,with +12,1543.267588495252,2.199146317486109,0.0,466.5855436933028,0.4954103750023932,30,mac,phase-12,with +13,1529.337507111068,2.179296041742173,0.0,462.3739768562977,0.4909386250001262,30,mac,phase-12,with +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619,30,mac,phase-12,with +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023,30,mac,phase-12,with +16,1530.0441213304557,2.180302962427888,0.0,462.5876118617835,0.4911654579991591,30,mac,phase-12,with +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.4971690409984148,30,mac,phase-12,with +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865,30,mac,phase-12,with +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.4974212920024001,30,mac,phase-12,with +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434,30,mac,phase-12,with +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.4969887080005719,30,mac,phase-12,with +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.4965708330018969,30,mac,phase-12,with +23,1529.565952029954,2.1796215742718923,0.0,462.44304400801985,0.4910119589985697,30,mac,phase-12,with +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.4924065839986724,30,mac,phase-12,with +25,1550.7246888389986,2.209772637174495,0.0,468.840094520522,0.4978042080001614,30,mac,phase-12,with +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.4911967079970054,30,mac,phase-12,with +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781,30,mac,phase-12,with +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396,30,mac,phase-12,with +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681,30,mac,phase-12,with +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143,30,mac,phase-24,with +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629,30,mac,phase-24,with +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.4905859169994073,30,mac,phase-24,with +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484,30,mac,phase-24,with +4,1572.3927908809335,1.7548657145168245,0.0,461.7945683087953,0.4925914999985252,30,mac,phase-24,with +5,1564.3827924950483,1.7459261724238786,0.0,459.44211937350633,0.490082166998036,30,mac,phase-24,with +6,1587.637379706137,1.7718794062714578,0.0,466.2717373446797,0.4973672500018438,30,mac,phase-24,with +7,1586.1069069337875,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081,30,mac,phase-24,with +8,1565.879611148776,1.747596693779299,0.0,459.88171864414875,0.4905510830030835,30,mac,phase-24,with +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.4896888329967623,30,mac,phase-24,with +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949,30,mac,phase-24,with +11,1565.9028878075114,1.7476226716460257,0.0,459.8885547442853,0.4905583750005462,30,mac,phase-24,with +12,1583.3814014098812,1.7671295305170396,0.0,465.0218030588897,0.496033957999316,30,mac,phase-24,with +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357,30,mac,phase-24,with +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462,30,mac,phase-24,with +15,1611.7074099564163,1.798742713632422,0.0,473.3408420194601,0.5049077910007327,30,mac,phase-24,with +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.4980673339996428,30,mac,phase-24,with +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919,30,mac,phase-24,with +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489,30,mac,phase-24,with +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508,30,mac,phase-24,with +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334,30,mac,phase-24,with +21,1627.0202327275636,1.8158325577409689,0.0,477.83805061911875,0.5097049169999082,30,mac,phase-24,with +22,1572.3998421997237,1.754873584126542,0.0,461.79663920401657,0.4925937090010848,30,mac,phase-24,with +23,1585.7182708706089,1.7697375888340936,0.0,465.7081160654547,0.4967660410002281,30,mac,phase-24,with +24,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159,30,mac,phase-24,with +25,1590.2483692515932,1.774793395740791,0.0,467.03855642258145,0.4981852079981763,30,mac,phase-24,with +26,1591.9827363009797,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986,30,mac,phase-24,with +27,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312,30,mac,phase-24,with +28,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873,30,mac,phase-24,with +29,1587.966697298727,1.7722469404879555,0.0,466.3684543204815,0.4974704170017503,30,mac,phase-24,with +0,1552.5755589394023,1.275546910247925,0.0,466.24596271957057,0.4975988330006657,30,mac,phase-23,with +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.496548333998362,30,mac,phase-23,with +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.4974576250024256,30,mac,phase-23,with +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449,30,mac,phase-23,with +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334,30,mac,phase-23,with +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.4977821669999684,30,mac,phase-23,with +6,1537.704995292508,1.2633297260959353,0.0,461.7802604071722,0.4928328329988289,30,mac,phase-23,with +7,1550.9853290718895,1.2742404277502393,0.0,465.7684089855479,0.4970891660013876,30,mac,phase-23,with +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838,30,mac,phase-23,with +9,1551.9411325247231,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125,30,mac,phase-23,with +10,1520.1867380960591,1.2489372807742254,0.0,456.5194428935261,0.4872182500002964,30,mac,phase-23,with +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.4970620829990366,30,mac,phase-23,with +12,1524.5508959441925,1.25252273465244,0.0,457.83002064006297,0.4886169579986017,30,mac,phase-23,with +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.4979272499986109,30,mac,phase-23,with +14,1552.3800325555055,1.275386271963099,0.0,466.1872451991433,0.4975361670003622,30,mac,phase-23,with +15,1533.394787700758,1.2597885960397988,0.0,460.4858841840212,0.4914514160009275,30,mac,phase-23,with +16,1553.2691400031183,1.2761167344846496,0.0,466.454248473468,0.4978211250017921,30,mac,phase-23,with +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.4989104170017526,30,mac,phase-23,with +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086,30,mac,phase-23,with +19,1554.660720229109,1.277260012727956,0.0,466.872146757666,0.4982671249999839,30,mac,phase-23,with +20,1560.0134398376556,1.28165763764147,0.0,468.4795943905267,0.4999826660023245,30,mac,phase-23,with +21,1528.100442701547,1.2554389298566315,0.0,458.89596672917406,0.4897545839994563,30,mac,phase-23,with +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346,30,mac,phase-23,with +23,1528.2429267943644,1.2555559902749194,0.0,458.9387553925956,0.4898002500012808,30,mac,phase-23,with +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.4974483750011131,30,mac,phase-23,with +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.4978840000003401,30,mac,phase-23,with +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246,30,mac,phase-23,with +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913,30,mac,phase-23,with +28,1526.2605989035876,1.2539273724587885,0.0,458.343452722436,0.489164915998117,30,mac,phase-23,with +29,1549.6854059286077,1.2731724520633707,0.0,465.3780357673742,0.496672542001761,30,mac,phase-23,with +0,1526.770791456814,1.689345447459375,0.0,462.4831595574077,0.4918107500016049,30,mac,phase-8,with +1,1530.8290010789997,1.6938357861457298,0.0,463.71245580718977,0.4931180000021413,30,mac,phase-8,with +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.4902934160018048,30,mac,phase-8,with +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388,30,mac,phase-8,with +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.4919111670023994,30,mac,phase-8,with +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108,30,mac,phase-8,with +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786,30,mac,phase-8,with +7,1541.6151929447517,1.705770520701691,0.0,466.9797649026864,0.4965924999996787,30,mac,phase-8,with +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964,30,mac,phase-8,with +9,1541.711816984989,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112,30,mac,phase-8,with +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.4913567079966014,30,mac,phase-8,with +11,1522.1852241350612,1.684271596608698,0.0,461.0941182715813,0.4903336250026768,30,mac,phase-8,with +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.4971137079992331,30,mac,phase-8,with +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119,30,mac,phase-8,with +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.4966302089997043,30,mac,phase-8,with +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702,30,mac,phase-8,with +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.4984741250009392,30,mac,phase-8,with +17,1542.471615652947,1.706718137600892,0.0,467.2391889643854,0.4968683750012133,30,mac,phase-8,with +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831,30,mac,phase-8,with +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757,30,mac,phase-8,with +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121,30,mac,phase-8,with +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.497358874999918,30,mac,phase-8,with +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191,30,mac,phase-8,with +23,1544.7746825942847,1.709266441298024,0.0,467.9368245765296,0.4976102500004344,30,mac,phase-8,with +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246,30,mac,phase-8,with +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499,30,mac,phase-8,with +26,1542.6620170112014,1.7069288134073437,0.0,467.29686456457506,0.4969297080024262,30,mac,phase-8,with +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994,30,mac,phase-8,with +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048,30,mac,phase-8,with +29,1542.809736148168,1.7070922620749058,0.0,467.3416110409772,0.4969772920012474,30,mac,phase-8,with +0,1541.6676935631915,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725,30,mac,phase-1,with +1,1539.9339925655115,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675,30,mac,phase-1,with +2,1537.4033292502131,1.4726085529216604,0.0,466.3483540093277,0.4953739999982645,30,mac,phase-1,with +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.496548333998362,30,mac,phase-1,with +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737,30,mac,phase-1,with +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737,30,mac,phase-1,with +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.4963964589987881,30,mac,phase-1,with +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326,30,mac,phase-1,with +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491,30,mac,phase-1,with +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484,30,mac,phase-1,with +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793,30,mac,phase-1,with +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.4901659580027626,30,mac,phase-1,with +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843,30,mac,phase-1,with +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972,30,mac,phase-1,with +14,1541.2718674655523,1.476314049296506,0.0,467.5218173385799,0.4966204999982437,30,mac,phase-1,with +15,1540.4087008558995,1.4754872613562258,0.0,467.2599886304011,0.4963423750014044,30,mac,phase-1,with +16,1531.2747826396396,1.4667382975475476,0.0,464.4893508642619,0.4933992920014134,30,mac,phase-1,with +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.4963049580001097,30,mac,phase-1,with +18,1522.1950456773989,1.4580412314917617,0.0,461.73514817286826,0.4904736669996055,30,mac,phase-1,with +19,1538.037096059261,1.4732156092521662,0.0,466.54059771181096,0.4955782090000866,30,mac,phase-1,with +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977,30,mac,phase-1,with +21,1559.845791710162,1.4941051644733354,0.0,473.1559400402603,0.5026052920002257,30,mac,phase-1,with +22,1514.2267569754815,1.450408771049312,0.0,459.3180867227526,0.4879061669998918,30,mac,phase-1,with +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.4904113750017131,30,mac,phase-1,with +24,1521.4884764967403,1.4573644410888318,0.0,461.52082095754054,0.490246000001207,30,mac,phase-1,with +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.4877654580013768,30,mac,phase-1,with +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.488684291998652,30,mac,phase-1,with +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.4885777920026157,30,mac,phase-1,with +28,1545.923787001248,1.4807699109207355,0.0,468.9329076993075,0.4981194169995433,30,mac,phase-1,with +29,1523.710854713787,1.4594931558561175,0.0,462.1949462204351,0.4909620830003405,30,mac,phase-1,with +0,2388.293804473947,3.948256730756337,88.5680980195934,516.2847572505955,0.5047006250024424,30,mac,phase-30,with +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839,30,mac,phase-30,with +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086,30,mac,phase-30,with +3,2411.1969694915374,3.9861195662529263,89.41744484636862,521.2358042990056,0.5095405829997617,30,mac,phase-30,with +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725,30,mac,phase-30,with +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035,30,mac,phase-30,with +6,2372.850397511069,3.922726146800221,87.99539076762868,512.9463088570119,0.5014370829994732,30,mac,phase-30,with +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908,30,mac,phase-30,with +8,2354.685839084009,3.892697035668036,87.32177163909569,509.0196208504898,0.4975985000019136,30,mac,phase-30,with +9,2376.2567192107217,3.928357377159141,88.12171167237496,513.6826638098775,0.5021569159980572,30,mac,phase-30,with +10,2377.0903590593543,3.929735525918403,88.15262658564419,513.8628742789912,0.502333082997211,30,mac,phase-30,with +11,2387.2517582095043,3.946534050669975,88.52945450952055,516.0594949308281,0.5044804170029238,30,mac,phase-30,with +12,2356.9182072270733,3.896387520703783,87.4045573500247,509.5021986818592,0.4980702499997278,30,mac,phase-30,with +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117,30,mac,phase-30,with +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978,30,mac,phase-30,with +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944,30,mac,phase-30,with +16,2396.136077101009,3.9612213440824777,88.85892286259592,517.9800452473951,0.5063578749977751,30,mac,phase-30,with +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.4989800420007668,30,mac,phase-30,with +18,2405.715621948096,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489,30,mac,phase-30,with +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676,30,mac,phase-30,with +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362,30,mac,phase-30,with +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782,30,mac,phase-30,with +22,2396.5872071287085,3.961967138910976,88.87565268387587,518.077567401664,0.5064532090000284,30,mac,phase-30,with +23,2363.0508100276948,3.906525758402701,87.63198036010125,510.8279021368955,0.4993662080014474,30,mac,phase-30,with +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441,30,mac,phase-30,with +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081,30,mac,phase-30,with +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673,30,mac,phase-30,with +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922,30,mac,phase-30,with +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745,30,mac,phase-30,with +29,2355.1391363948715,3.893446413385005,87.33858183245853,509.11761151297134,0.4976942920002329,30,mac,phase-30,with +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976,30,mac,phase-6,with +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595,30,mac,phase-6,with +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.4905380419986613,30,mac,phase-6,with +3,1542.6536762485855,0.7725528459014843,0.0,473.2725912500832,0.4981489999991026,30,mac,phase-6,with +4,1543.401933683681,0.7729275692887551,0.0,473.5021500555895,0.4983906249981373,30,mac,phase-6,with +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.4949968340006307,30,mac,phase-6,with +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.498344999999972,30,mac,phase-6,with +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.4981494999992719,30,mac,phase-6,with +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449,30,mac,phase-6,with +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929,30,mac,phase-6,with +10,1537.626197619399,0.7700351110511502,0.0,471.7302049874221,0.49652554199929,30,mac,phase-6,with +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289,30,mac,phase-6,with +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177,30,mac,phase-6,with +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.4986532499970053,30,mac,phase-6,with +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.4899813329975586,30,mac,phase-6,with +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.4892707910003082,30,mac,phase-6,with +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.4929174160024558,30,mac,phase-6,with +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781,30,mac,phase-6,with +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552,30,mac,phase-6,with +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.4907241250002698,30,mac,phase-6,with +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491,30,mac,phase-6,with +21,1516.8447946320175,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654,30,mac,phase-6,with +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525,30,mac,phase-6,with +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571,30,mac,phase-6,with +24,1541.3760009365585,0.7719129928264602,0.0,472.8806116923837,0.4977364170008513,30,mac,phase-6,with +25,1542.692772983568,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102,30,mac,phase-6,with +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.4900904159985657,30,mac,phase-6,with +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.4966319170016504,30,mac,phase-6,with +28,1518.901438072084,0.760657849971867,0.0,465.98561330885246,0.4904790000000503,30,mac,phase-6,with +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882,30,mac,phase-6,with +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.4996582499989017,30,mac,phase-7,with +1,1533.5334001790511,1.8921445940257144,0.0,474.4635558317462,0.493004457999632,30,mac,phase-7,with +2,1543.8059871684454,1.9048193880252269,0.0,477.6418160183257,0.4963069170007657,30,mac,phase-7,with +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377,30,mac,phase-7,with +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006,30,mac,phase-7,with +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134,30,mac,phase-7,with +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524,30,mac,phase-7,with +7,1522.6814694210657,1.87875497882981,0.0,471.1060510949909,0.4895157499995548,30,mac,phase-7,with +8,1546.9721730979702,1.908725974989378,0.0,478.62140983374,0.4973247910020291,30,mac,phase-7,with +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562,30,mac,phase-7,with +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276,30,mac,phase-7,with +11,1522.9656993374065,1.879105674875688,0.0,471.1939896666353,0.4896071250004752,30,mac,phase-7,with +12,1544.25585273976,1.9053744530200296,0.0,477.7810010002682,0.49645154099926,30,mac,phase-7,with +13,1546.7443256761674,1.908444846278796,0.0,478.55091557654094,0.4972515419976844,30,mac,phase-7,with +14,1550.8537971977223,1.9135153027311336,0.0,479.8223547708087,0.4985726659979264,30,mac,phase-7,with +15,1523.3470075656658,1.8795761506427464,0.0,471.3119635287153,0.4897297089992207,30,mac,phase-7,with +16,1517.6756261895746,1.8725785374116448,0.0,469.55728131973046,0.4879064580018166,30,mac,phase-7,with +17,1526.438800689855,1.883390948315296,0.0,472.26854077667593,0.4907236670005659,30,mac,phase-7,with +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595,30,mac,phase-7,with +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093,30,mac,phase-7,with +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216,30,mac,phase-7,with +21,1532.4807276685026,1.890845757886976,0.0,474.1378669733079,0.4926660419987456,30,mac,phase-7,with +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.4991075840007397,30,mac,phase-7,with +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354,30,mac,phase-7,with +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.4886628750027739,30,mac,phase-7,with +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164,30,mac,phase-7,with +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348,30,mac,phase-7,with +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517,30,mac,phase-7,with +28,1550.5286132950594,1.913114075758564,0.0,479.72174534766935,0.498468124998908,30,mac,phase-7,with +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037,30,mac,phase-7,with +0,1562.7525821795537,1.3534612562180337,0.0,463.1808508779323,0.4898252499988302,30,mac,phase-9,with +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384,30,mac,phase-9,with +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099,30,mac,phase-9,with +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248,30,mac,phase-9,with +4,1587.2227722401722,1.3746542809853626,0.0,470.4335174757469,0.4974951250005688,30,mac,phase-9,with +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653,30,mac,phase-9,with +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598,30,mac,phase-9,with +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184,30,mac,phase-9,with +8,1564.261785807479,1.35476834005295,0.0,463.62816047031566,0.4902982909989077,30,mac,phase-9,with +9,1583.7046608844691,1.3716073319869715,0.0,469.3907920758341,0.4963924170006066,30,mac,phase-9,with +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031,30,mac,phase-9,with +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.4984325410005112,30,mac,phase-9,with +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.491652000000613,30,mac,phase-9,with +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357,30,mac,phase-9,with +14,1582.78900463182,1.3708143048142083,0.0,469.1194027036136,0.4961054160012281,30,mac,phase-9,with +15,1586.2664412042632,1.3738260263915247,0.0,470.1500725926704,0.4971953749991371,30,mac,phase-9,with +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225,30,mac,phase-9,with +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.4955564580013742,30,mac,phase-9,with +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672,30,mac,phase-9,with +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756,30,mac,phase-9,with +20,1562.7080469921625,1.3534226853966762,0.0,463.1676511902626,0.4898112910013878,30,mac,phase-9,with +21,1563.4943568701915,1.354103688882084,0.0,463.40070387084194,0.4900577499975043,30,mac,phase-9,with +22,1565.315558919256,1.3556809868121988,0.0,463.9404859990722,0.4906285830002161,30,mac,phase-9,with +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271,30,mac,phase-9,with +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.4963112500008719,30,mac,phase-9,with +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042,30,mac,phase-9,with +26,1585.4583311232377,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681,30,mac,phase-9,with +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.4942537500028265,30,mac,phase-9,with +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749,30,mac,phase-9,with +29,1529.1152277892556,1.3243287777642476,0.0,453.2111483124429,0.4792820420007047,30,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n30/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n30/without_smell.csv new file mode 100644 index 000000000..3e4ee8bcc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n30/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,254.7701558196424,0.0,0.0,63.11246118665094,0.0760953749995678,30,mac,phase-19,without +1,253.09222999705185,0.0,0.0,62.69680014498916,0.0755942079995293,30,mac,phase-19,without +2,263.90234613131526,0.0,0.0,65.374715981528,0.0788229999998293,30,mac,phase-19,without +3,259.7544057697603,0.0,0.0,64.3471751997949,0.0775840829992375,30,mac,phase-19,without +4,258.13381843399344,0.0,0.0,63.9457182277288,0.0771000419990741,30,mac,phase-19,without +5,258.38938416388623,0.0,0.0,64.00902777101736,0.0771763749980891,30,mac,phase-19,without +6,257.3555370297845,0.0,0.0,63.75291991994662,0.0768675830004212,30,mac,phase-19,without +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052,30,mac,phase-19,without +8,245.76644644425735,0.0,0.0,60.88203409183789,0.0734061250004742,30,mac,phase-19,without +9,256.3932541903437,0.0,0.0,63.51454020015801,0.0765801660018041,30,mac,phase-19,without +10,256.7573565822389,0.0,0.0,63.6047367853998,0.0766889169972273,30,mac,phase-19,without +11,256.6365493698801,0.0,0.0,63.57481004426902,0.0766528340027434,30,mac,phase-19,without +12,254.0235434990149,0.0,0.0,62.92750804347181,0.0758723750004719,30,mac,phase-19,without +13,259.3886326959798,0.0,0.0,64.25656474800229,0.0774748330004513,30,mac,phase-19,without +14,257.7577233561085,0.0,0.0,63.8525507767409,0.0769877089987858,30,mac,phase-19,without +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107,30,mac,phase-19,without +16,258.37473651085224,0.0,0.0,64.00539920851713,0.0771720000011555,30,mac,phase-19,without +17,257.275184131123,0.0,0.0,63.733014648147055,0.0768435829995723,30,mac,phase-19,without +18,251.4304885893039,0.0,0.0,62.28514835727747,0.0750978750002104,30,mac,phase-19,without +19,260.1250602942841,0.0,0.0,64.43899489985908,0.0776947910017042,30,mac,phase-19,without +20,258.7400910767803,0.0,0.0,64.09590598623336,0.0772811249989899,30,mac,phase-19,without +21,257.76525643655174,0.0,0.0,63.8544168950292,0.0769899589977285,30,mac,phase-19,without +22,234.9518673671031,0.0,0.0,58.203012681103864,0.0701759999974456,30,mac,phase-19,without +23,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708,30,mac,phase-19,without +24,254.9226321277627,0.0,0.0,63.150233095402065,0.0761409169972466,30,mac,phase-19,without +25,261.7944753894208,0.0,0.0,64.85254763745215,0.0781934159967931,30,mac,phase-19,without +26,259.7657053965152,0.0,0.0,64.34997437873601,0.0775874579994706,30,mac,phase-19,without +27,255.6566859729138,0.0,0.0,63.33207521369086,0.0763601660000858,30,mac,phase-19,without +28,259.06303605935,0.0,0.0,64.17590692909216,0.0773775829984515,30,mac,phase-19,without +29,258.87526808998655,0.0,0.0,64.12939245945022,0.0773215000008349,30,mac,phase-19,without +0,388.73038558373344,0.3723471126280971,12.795200779401885,75.75571255106195,0.0790761250027571,30,mac,phase-26,without +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.081851082999492,30,mac,phase-26,without +2,386.16305637510675,0.3698879850336271,12.710696212973732,75.25539186411433,0.0785538749987608,30,mac,phase-26,without +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597,30,mac,phase-26,without +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908,30,mac,phase-26,without +5,374.82924555374433,0.3590318444001382,12.337639743932025,73.04666070613722,0.0762483340004109,30,mac,phase-26,without +6,356.617671661771,0.3415878081051446,11.738199223976787,69.4975922308467,0.0725437080000119,30,mac,phase-26,without +7,391.64449222473655,0.3751384025141154,12.891119650030513,76.32361316605368,0.0796689169983437,30,mac,phase-26,without +8,394.2085425197358,0.3775943893867201,12.975516289834564,76.82329485886179,0.0801905000007536,30,mac,phase-26,without +9,394.23025605863455,0.3776151877956269,12.976230998795184,76.82752638969211,0.0801949170017906,30,mac,phase-26,without +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.0770093749997613,30,mac,phase-26,without +11,390.7969073771063,0.3743265396332436,12.8632210892151,76.15843597265447,0.0794965000022784,30,mac,phase-26,without +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.0793902500008698,30,mac,phase-26,without +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.0770231249989592,30,mac,phase-26,without +14,361.2965867125136,0.3460695275024076,11.89220739962819,70.40941841367166,0.0734955000007175,30,mac,phase-26,without +15,395.7865466718811,0.3791058876167443,13.027456865375395,77.13081604420672,0.0805115000002842,30,mac,phase-26,without +16,391.401769634818,0.3749059096118946,12.883130348481467,76.27631142831092,0.0796195420007279,30,mac,phase-26,without +17,381.2733721004155,0.3652043794065282,12.549750492333423,74.30249101016456,0.0775592080026399,30,mac,phase-26,without +18,379.5206519126656,0.3635255286519786,12.492059075495265,73.96092119301164,0.077202667001984,30,mac,phase-26,without +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.0731172079977113,30,mac,phase-26,without +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.0759907499996188,30,mac,phase-26,without +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.078528041998652,30,mac,phase-26,without +22,386.9403832051992,0.3706325509628345,12.736282205813769,75.40687718680215,0.0787120000022696,30,mac,phase-26,without +23,390.2086362678317,0.3737630615592258,12.843857933580669,76.04379379723157,0.079376833000424,30,mac,phase-26,without +24,376.20897175435175,0.3603534212206434,12.383053929218477,73.31554151743637,0.0765289999981178,30,mac,phase-26,without +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.0730223749997094,30,mac,phase-26,without +26,382.8300756539037,0.3666954747642755,12.60098995099056,74.60586113840442,0.0778758750020642,30,mac,phase-26,without +27,379.2515063336283,0.3632677263732072,12.48320005173385,73.90847014756707,0.0771479169998201,30,mac,phase-26,without +28,386.50532596295153,0.3702158294664286,12.721962139846369,75.32209330416975,0.078623499997775,30,mac,phase-26,without +29,385.28085865824175,0.3690429680634499,12.681658357089464,75.08346932054555,0.0783744170003046,30,mac,phase-26,without +0,243.61769021404157,0.0,0.0,60.71178863926628,0.0740814170021622,30,mac,phase-21,without +1,251.461612143386,0.0,0.0,62.666566758453214,0.0764666659997601,30,mac,phase-21,without +2,254.063240155725,0.0,0.0,63.31491659653083,0.0772577920033654,30,mac,phase-21,without +3,232.2594398453139,0.0,0.0,57.881207267723845,0.0706275000011373,30,mac,phase-21,without +4,252.81360526435807,0.0,0.0,63.00349598773077,0.0768777919984131,30,mac,phase-21,without +5,252.19796606709363,0.0,0.0,62.850072987990785,0.0766905829987081,30,mac,phase-21,without +6,255.2020225366119,0.0,0.0,63.598711731251065,0.0776040829987323,30,mac,phase-21,without +7,255.2195634669661,0.0,0.0,63.60308309383669,0.0776094169996213,30,mac,phase-21,without +8,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134,30,mac,phase-21,without +9,251.7152386884793,0.0,0.0,62.72977284658861,0.0765437909976753,30,mac,phase-21,without +10,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569,30,mac,phase-21,without +11,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293,30,mac,phase-21,without +12,256.09101607265075,0.0,0.0,63.82025716834245,0.0778744159979396,30,mac,phase-21,without +13,258.54822246754117,0.0,0.0,64.43261579943601,0.0786216250016877,30,mac,phase-21,without +14,251.91734740702609,0.0,0.0,62.78014021437615,0.0766052500002842,30,mac,phase-21,without +15,256.0914304298579,0.0,0.0,63.82036043000281,0.0778745419993356,30,mac,phase-21,without +16,256.1073238132674,0.0,0.0,63.82432120860419,0.0778793749996111,30,mac,phase-21,without +17,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663,30,mac,phase-21,without +18,252.78893813177984,0.0,0.0,62.99734870943538,0.0768702909990679,30,mac,phase-21,without +19,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129,30,mac,phase-21,without +20,254.19532983990769,0.0,0.0,63.34783457133176,0.0772979590001341,30,mac,phase-21,without +21,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895,30,mac,phase-21,without +22,254.8345312291614,0.0,0.0,63.50712948792096,0.0774923329990997,30,mac,phase-21,without +23,256.2513343634823,0.0,0.0,63.86020997381984,0.0779231669985165,30,mac,phase-21,without +24,256.51962110224747,0.0,0.0,63.927069518232734,0.0780047499974898,30,mac,phase-21,without +25,254.42100073848025,0.0,0.0,63.404073852987096,0.0773665829983656,30,mac,phase-21,without +26,252.18371695261897,0.0,0.0,62.84652197646316,0.0766862500022398,30,mac,phase-21,without +27,253.7606969687288,0.0,0.0,63.23952002739407,0.077165792001324,30,mac,phase-21,without +28,252.71604495264393,0.0,0.0,62.97918305290586,0.0768481249979231,30,mac,phase-21,without +29,253.57256771842907,0.0,0.0,63.192636472792486,0.077108583998779,30,mac,phase-21,without +0,405.8431369282208,0.3014184050465412,12.492118342484432,76.292347410669,0.0778078330004063,30,mac,phase-28,without +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.077850457997556,30,mac,phase-28,without +2,374.8841940857946,0.2784252968123578,11.539181745667715,70.47253623761678,0.0718724159996782,30,mac,phase-28,without +3,395.92910555470706,0.2940552855250341,12.186957944537523,74.42866004733642,0.0759071249995031,30,mac,phase-28,without +4,396.96491328086944,0.2948245766238508,12.21884078674404,74.6233761721258,0.0761057090021495,30,mac,phase-28,without +5,403.6617775393808,0.2997983163768301,12.424974667617516,75.88228496737989,0.0773896249993413,30,mac,phase-28,without +6,410.7431055614168,0.3050575961423297,12.642942595676551,77.21346711246967,0.0787472499978321,30,mac,phase-28,without +7,408.4530767282583,0.3033567990224727,12.57245400393137,76.7829764636881,0.0783082080015447,30,mac,phase-28,without +8,412.0644822883901,0.3060389784284131,12.6836154393109,77.46186587332501,0.0790005829985602,30,mac,phase-28,without +9,414.61052649200695,0.3079299173484124,12.76198435232865,77.94048352440929,0.0794887080010084,30,mac,phase-28,without +10,401.4493414263137,0.2981551471230255,12.356874430765387,75.46638057180579,0.0769654590003483,30,mac,phase-28,without +11,418.55140908310005,0.3108567982957502,12.883287307146093,78.68130961307988,0.080244249998941,30,mac,phase-28,without +12,371.5974824961197,0.2759842665840136,11.438014603981898,69.85468436426478,0.0712422910000896,30,mac,phase-28,without +13,412.4000411444283,0.3062881969219223,12.69394416131967,77.52494584312656,0.0790649160007888,30,mac,phase-28,without +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549,30,mac,phase-28,without +15,411.7995528547654,0.3058422161819515,12.67546073731866,77.4120631624984,0.0789497909972851,30,mac,phase-28,without +16,409.77163159678435,0.304336085523276,12.613039988909108,77.03084475800254,0.0785609999984444,30,mac,phase-28,without +17,420.8577378253096,0.3125697013061385,12.954277620798852,79.11486439726484,0.0806864169971959,30,mac,phase-28,without +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.0790608339993923,30,mac,phase-28,without +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.076155833001394,30,mac,phase-28,without +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.0787210829985269,30,mac,phase-28,without +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.0815035830019041,30,mac,phase-28,without +22,410.9195773893686,0.305188661206826,12.64837451446068,77.24664113657218,0.0787810829970112,30,mac,phase-28,without +23,408.3198556922807,0.303257856183407,12.568353372934537,76.7579329317557,0.0782826670001668,30,mac,phase-28,without +24,402.4147283665603,0.2988721369284571,12.386589674923831,75.64785865811392,0.0771505420016183,30,mac,phase-28,without +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.0792156669995165,30,mac,phase-28,without +26,382.7631322481759,0.2842769590884291,11.781700637776003,71.95365697816015,0.0733829580021847,30,mac,phase-28,without +27,386.7318315968666,0.2872244994530284,11.903859810664404,72.69971219488876,0.0741438330005621,30,mac,phase-28,without +28,399.2001692552227,0.2964846941159436,12.28764343391633,75.0435703551244,0.0765342500017141,30,mac,phase-28,without +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.075706124996941,30,mac,phase-28,without +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185,30,mac,phase-17,without +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.0771942079991276,30,mac,phase-17,without +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.0778375420013617,30,mac,phase-17,without +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.0770157910010311,30,mac,phase-17,without +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.0775850829995761,30,mac,phase-17,without +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.0741231249994598,30,mac,phase-17,without +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.078746458999376,30,mac,phase-17,without +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.0746817090002878,30,mac,phase-17,without +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.0783254170019063,30,mac,phase-17,without +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.0784614170006534,30,mac,phase-17,without +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.0773908750015834,30,mac,phase-17,without +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.0808109999998123,30,mac,phase-17,without +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595,30,mac,phase-17,without +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.0778277089993935,30,mac,phase-17,without +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.0793734999970183,30,mac,phase-17,without +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.0783875000015541,30,mac,phase-17,without +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.0790057079975667,30,mac,phase-17,without +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.0785369580007682,30,mac,phase-17,without +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.0782466659984493,30,mac,phase-17,without +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.0789429169999493,30,mac,phase-17,without +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107,30,mac,phase-17,without +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.0796699590027856,30,mac,phase-17,without +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185,30,mac,phase-17,without +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641,30,mac,phase-17,without +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732,30,mac,phase-17,without +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.0785001250005734,30,mac,phase-17,without +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594,30,mac,phase-17,without +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134,30,mac,phase-17,without +28,255.42040166006765,0.5993439225500219,0.0,68.29191028611638,0.0778273750001972,30,mac,phase-17,without +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.0758569999998144,30,mac,phase-17,without +0,261.6846194438566,0.0,0.0,70.7870578236059,0.0761451660000602,30,mac,phase-10,without +1,264.8513555634606,0.0,0.0,71.64367650179537,0.0770666249991336,30,mac,phase-10,without +2,269.77737005954486,0.0,0.0,72.97618917951907,0.0784999999996216,30,mac,phase-10,without +3,266.95043658088093,0.0,0.0,72.21148889242174,0.0776774170008138,30,mac,phase-10,without +4,245.5969253936852,0.0,0.0,66.43525246569763,0.0714639580000948,30,mac,phase-10,without +5,264.9049123942919,0.0,0.0,71.65816390456655,0.0770822090016736,30,mac,phase-10,without +6,268.0374194355293,0.0,0.0,72.50552343808509,0.0779937080005765,30,mac,phase-10,without +7,249.4505628149961,0.0,0.0,67.47768153758304,0.0725852920004399,30,mac,phase-10,without +8,261.54973419510105,0.0,0.0,70.7505706585463,0.0761059169999498,30,mac,phase-10,without +9,243.2800464083468,0.0,0.0,65.80852458595446,0.0707897909996972,30,mac,phase-10,without +10,270.3172100512772,0.0,0.0,73.12221871993097,0.0786570830023265,30,mac,phase-10,without +11,272.70482912023755,0.0,0.0,73.76808216217084,0.0793518339996808,30,mac,phase-10,without +12,270.90029688215856,0.0,0.0,73.2799467564564,0.0788267499992798,30,mac,phase-10,without +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053,30,mac,phase-10,without +14,264.864243015556,0.0,0.0,71.64716262497149,0.0770703749985841,30,mac,phase-10,without +15,267.43801192267176,0.0,0.0,72.34338057174956,0.0778192920006404,30,mac,phase-10,without +16,268.4402228149727,0.0,0.0,72.61448385835281,0.0781109159979678,30,mac,phase-10,without +17,245.10605773741895,0.0,0.0,66.30247019808976,0.0713211250003951,30,mac,phase-10,without +18,270.45009515394486,0.0,0.0,73.15816483501571,0.0786957499985874,30,mac,phase-10,without +19,269.58577658088814,0.0,0.0,72.92436214176223,0.0784442500007571,30,mac,phase-10,without +20,264.0393016153403,0.0,0.0,71.42401166286199,0.0768303329969057,30,mac,phase-10,without +21,264.65732548978616,0.0,0.0,71.59119035234609,0.0770101659982174,30,mac,phase-10,without +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325,30,mac,phase-10,without +23,267.9255872644627,0.0,0.0,72.47527225107741,0.0779611670004669,30,mac,phase-10,without +24,268.883125097681,0.0,0.0,72.73429124161788,0.0782397920011135,30,mac,phase-10,without +25,266.39670220014995,0.0,0.0,72.06170084713644,0.0775162909994833,30,mac,phase-10,without +26,270.10857762340623,0.0,0.0,73.06578255732055,0.0785963749985967,30,mac,phase-10,without +27,269.86486039771097,0.0,0.0,72.99985577345161,0.078525457996875,30,mac,phase-10,without +28,266.2155630292543,0.0,0.0,72.01270175429117,0.0774635830020997,30,mac,phase-10,without +29,267.78210693862854,0.0,0.0,72.43646007272716,0.077919416999066,30,mac,phase-10,without +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878,30,mac,phase-11,without +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405,30,mac,phase-11,without +2,255.3331764989173,0.0,0.0,70.37239576741659,0.0769770410006458,30,mac,phase-11,without +3,259.2942335745159,0.0,0.0,71.46410300265921,0.078171207998821,30,mac,phase-11,without +4,258.6612396991297,0.0,0.0,71.28964351357979,0.0779803750010614,30,mac,phase-11,without +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063,30,mac,phase-11,without +6,257.37410271121684,0.0,0.0,70.9348955925995,0.0775923330002115,30,mac,phase-11,without +7,256.01136788270634,0.0,0.0,70.55931214514888,0.0771815000007336,30,mac,phase-11,without +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919,30,mac,phase-11,without +9,259.045318948124,0.0,0.0,71.39549962396424,0.0780961660020693,30,mac,phase-11,without +10,238.6136802942901,0.0,0.0,65.7643341748063,0.0719365000004472,30,mac,phase-11,without +11,258.8377308561513,0.0,0.0,71.33828625449453,0.0780335829986142,30,mac,phase-11,without +12,256.8371626413573,0.0,0.0,70.78690950000609,0.0774304580008902,30,mac,phase-11,without +13,257.99811414343014,0.0,0.0,71.1068794298479,0.0777804579993244,30,mac,phase-11,without +14,258.1165610601165,0.0,0.0,71.13952459336632,0.0778161670023109,30,mac,phase-11,without +15,256.135891547354,0.0,0.0,70.5936321216249,0.0772190410025359,30,mac,phase-11,without +16,256.2543384519732,0.0,0.0,70.62627728181748,0.0772547500018845,30,mac,phase-11,without +17,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197,30,mac,phase-11,without +18,253.0893623898181,0.0,0.0,69.75397799390524,0.0763005829976464,30,mac,phase-11,without +19,253.0000819108746,0.0,0.0,69.72937139446263,0.0762736670003505,30,mac,phase-11,without +20,240.37099932043577,0.0,0.0,66.24866900231768,0.0724662909997277,30,mac,phase-11,without +21,247.79459427718265,0.0,0.0,68.29468656053892,0.0747043330011365,30,mac,phase-11,without +22,256.24618193564646,0.0,0.0,70.62402926374595,0.0772522910010593,30,mac,phase-11,without +23,254.47628482944975,0.0,0.0,70.13622779065612,0.0767187080018629,30,mac,phase-11,without +24,257.38833929398254,0.0,0.0,70.93881933823452,0.0775966250002966,30,mac,phase-11,without +25,256.62086741918284,0.0,0.0,70.7272963577338,0.0773652499992749,30,mac,phase-11,without +26,257.5863909862953,0.0,0.0,70.99340437988461,0.0776563330000499,30,mac,phase-11,without +27,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218,30,mac,phase-11,without +28,256.10728569098626,0.0,0.0,70.5857480594236,0.0772104169991507,30,mac,phase-11,without +29,261.6339654918951,0.0,0.0,72.1089566904453,0.0788765830002375,30,mac,phase-11,without +0,406.90110086989495,1.1695525766824268,9.356420613459417,76.36490353632317,0.080162875001406,30,mac,phase-29,without +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242,30,mac,phase-29,without +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.0784781250004016,30,mac,phase-29,without +3,401.51109823696424,1.1540601352656,9.2324810821248,75.35333824381271,0.0791009999993548,30,mac,phase-29,without +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.0736787080022622,30,mac,phase-29,without +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.0781110829993849,30,mac,phase-29,without +6,396.616846417644,1.1399926264434777,9.11994101154782,74.43481266778001,0.0781367919989861,30,mac,phase-29,without +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764,30,mac,phase-29,without +8,399.3405038898903,1.147821213311038,9.182569706488303,74.94597333972072,0.0786733749991981,30,mac,phase-29,without +9,383.8921206281695,1.1034180489777463,8.827344391821972,72.0467079038411,0.0756299160020717,30,mac,phase-29,without +10,396.6972136294903,1.1402236252770876,9.1217890022167,74.44989553279808,0.0781526250029855,30,mac,phase-29,without +11,396.0940256882952,1.1384898870066815,9.107919096053454,74.33669262220099,0.0780337920004967,30,mac,phase-29,without +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.0781155000004218,30,mac,phase-29,without +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.0828537080014939,30,mac,phase-29,without +14,396.0908481484921,1.138480753829464,9.107846030635711,74.33609627945324,0.0780331659989315,30,mac,phase-29,without +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.075443792000442,30,mac,phase-29,without +16,374.5642575893283,1.0766070469217317,8.612856375373852,70.29610718136011,0.0737922500011336,30,mac,phase-29,without +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.0755845000021508,30,mac,phase-29,without +18,381.37974870457487,1.0961967584711765,8.76957406776941,71.57520011194151,0.0751349579986708,30,mac,phase-29,without +19,408.4651216412204,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255,30,mac,phase-29,without +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.0777786670005298,30,mac,phase-29,without +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.0736387079996347,30,mac,phase-29,without +22,400.4768776142425,1.1510874832094211,9.20869986567537,75.1592415507328,0.0788972500013187,30,mac,phase-29,without +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.0792267500000889,30,mac,phase-29,without +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.0778149590005341,30,mac,phase-29,without +25,389.6991971410489,1.120109282508721,8.96087426006977,73.13654726968709,0.0767739580005582,30,mac,phase-29,without +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.0779693330005102,30,mac,phase-29,without +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.0744205830014834,30,mac,phase-29,without +28,405.3831898437398,1.165189657171963,9.321517257375705,76.08003055652229,0.0798638340020261,30,mac,phase-29,without +29,398.0772319408369,1.1441902008613116,9.153521606890491,74.70888958565034,0.078424499999528,30,mac,phase-29,without +0,255.4535357322803,0.0,0.0,63.94788166253961,0.0773206670019135,30,mac,phase-16,without +1,253.46435879218197,0.0,0.0,63.44992945684153,0.0767185829972731,30,mac,phase-16,without +2,231.36937798580223,0.0,0.0,57.91887578051573,0.0700308750019758,30,mac,phase-16,without +3,256.5681585689286,0.0,0.0,64.22690606144654,0.077658041001996,30,mac,phase-16,without +4,259.27963304187745,0.0,0.0,64.90567156856736,0.0784787499978847,30,mac,phase-16,without +5,257.07130386219023,0.0,0.0,64.35285881281608,0.0778103330012527,30,mac,phase-16,without +6,257.34139440968914,0.0,0.0,64.42047078898278,0.0778920839984493,30,mac,phase-16,without +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725,30,mac,phase-16,without +8,256.468082553313,0.0,0.0,64.2018539548648,0.0776277499971911,30,mac,phase-16,without +9,255.38512022018003,0.0,0.0,63.93075515435044,0.0772999589971732,30,mac,phase-16,without +10,254.8657300539408,0.0,0.0,63.800735811333155,0.0771427500003483,30,mac,phase-16,without +11,256.0687333702568,0.0,0.0,64.10188456423998,0.0775068750008358,30,mac,phase-16,without +12,233.89707419467393,0.0,0.0,58.55163593229996,0.0707959579995076,30,mac,phase-16,without +13,255.41444162612115,0.0,0.0,63.93809520463366,0.0773088339992682,30,mac,phase-16,without +14,256.2091457030477,0.0,0.0,64.13703409237446,0.0775493750006717,30,mac,phase-16,without +15,255.03298592111852,0.0,0.0,63.84260510224348,0.0771933750002062,30,mac,phase-16,without +16,238.25646746995207,0.0,0.0,59.64292623090094,0.0721154589991783,30,mac,phase-16,without +17,253.54145012996145,0.0,0.0,63.469227791199664,0.0767419170006178,30,mac,phase-16,without +18,254.73825878542036,0.0,0.0,63.768825829851195,0.0771041670013801,30,mac,phase-16,without +19,257.11687012908976,0.0,0.0,64.36426545173828,0.0778241249972779,30,mac,phase-16,without +20,251.6776795914633,0.0,0.0,63.002668667246425,0.0761777910011005,30,mac,phase-16,without +21,257.5273697281309,0.0,0.0,64.46702613464193,0.0779483750011422,30,mac,phase-16,without +22,237.10632196795063,0.0,0.0,59.355009415634115,0.0717673330000252,30,mac,phase-16,without +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745,30,mac,phase-16,without +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247,30,mac,phase-16,without +25,254.1629811907558,0.0,0.0,63.624816143544585,0.0769300419997307,30,mac,phase-16,without +26,254.68470717332065,0.0,0.0,63.7554202132737,0.077087958001357,30,mac,phase-16,without +27,254.7956626434966,0.0,0.0,63.78319578215078,0.0771215419990767,30,mac,phase-16,without +28,255.26521799895795,0.0,0.0,63.90073993834724,0.0772636669971689,30,mac,phase-16,without +29,237.74451089433737,0.0,0.0,59.51476774438824,0.0719605000012961,30,mac,phase-16,without +0,256.736730168257,0.0,0.0,62.78061796370678,0.0759414589992957,30,mac,phase-20,without +1,246.83770108103627,0.0,0.0,60.35997810072678,0.0730133750003005,30,mac,phase-20,without +2,249.48762015903063,0.0,0.0,61.00797091874418,0.073797207998723,30,mac,phase-20,without +3,261.96853136599685,0.0,0.0,64.05996631422177,0.077488999999332,30,mac,phase-20,without +4,260.9436089466303,0.0,0.0,63.809338899864194,0.0771858330008399,30,mac,phase-20,without +5,259.1546474245066,0.0,0.0,63.37187866657925,0.0766566670026804,30,mac,phase-20,without +6,261.2578738137402,0.0,0.0,63.88618704912788,0.0772787909991166,30,mac,phase-20,without +7,260.56553299065286,0.0,0.0,63.71688682984707,0.0770739999970828,30,mac,phase-20,without +8,260.5077801721833,0.0,0.0,63.70276435648577,0.0770569169981172,30,mac,phase-20,without +9,260.269297511551,0.0,0.0,63.64444746198333,0.0769863750028889,30,mac,phase-20,without +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342,30,mac,phase-20,without +11,268.07593877521344,0.0,0.0,65.55342933003354,0.0792955409997375,30,mac,phase-20,without +12,261.1346195586505,0.0,0.0,63.85604730910659,0.0772423329981393,30,mac,phase-20,without +13,259.16746372829186,0.0,0.0,63.375012676547826,0.0766604580021521,30,mac,phase-20,without +14,260.80992855999216,0.0,0.0,63.776649626002715,0.0771462910015543,30,mac,phase-20,without +15,259.6238641522187,0.0,0.0,63.48661766830046,0.0767954589973669,30,mac,phase-20,without +16,250.8287784191757,0.0,0.0,61.33592845058567,0.0741939159997855,30,mac,phase-20,without +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235,30,mac,phase-20,without +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625,30,mac,phase-20,without +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357,30,mac,phase-20,without +20,260.7072425967597,0.0,0.0,63.75153951330592,0.0771159169999009,30,mac,phase-20,without +21,240.3277041436231,0.0,0.0,58.768068636098214,0.0710877500023343,30,mac,phase-20,without +22,260.39015821218334,0.0,0.0,63.6740018988115,0.0770221250022586,30,mac,phase-20,without +23,262.73187065656884,0.0,0.0,64.24662800593482,0.0777147919980052,30,mac,phase-20,without +24,262.80286575413186,0.0,0.0,64.26398865430983,0.0777357919978385,30,mac,phase-20,without +25,259.5470914101739,0.0,0.0,63.46784419484701,0.0767727499987813,30,mac,phase-20,without +26,259.2690272739524,0.0,0.0,63.39984832104239,0.0766904999982216,30,mac,phase-20,without +27,263.9649879020873,0.0,0.0,64.54816593798147,0.0780795419996138,30,mac,phase-20,without +28,259.8130390424965,0.0,0.0,63.53287718288986,0.0768514159972255,30,mac,phase-20,without +29,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653,30,mac,phase-20,without +0,252.8448031031451,0.0,0.0,63.327795876031466,0.0765359580000222,30,mac,phase-18,without +1,250.71246289168695,0.0,0.0,62.793727530579304,0.0758905000002414,30,mac,phase-18,without +2,255.849573327428,0.0,0.0,64.08037403101984,0.0774454999991576,30,mac,phase-18,without +3,259.473357102869,0.0,0.0,64.98799102141685,0.078542416998971,30,mac,phase-18,without +4,255.35499678935537,0.0,0.0,63.956501830904415,0.0772957920016779,30,mac,phase-18,without +5,253.22472132458208,0.0,0.0,63.42295062424645,0.0766509589993802,30,mac,phase-18,without +6,253.2219661176063,0.0,0.0,63.42226055198546,0.0766501250000146,30,mac,phase-18,without +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966,30,mac,phase-18,without +8,254.19074916093857,0.0,0.0,63.664903050717285,0.0769433749992458,30,mac,phase-18,without +9,255.66691023668932,0.0,0.0,64.0346240263434,0.077390207999997,30,mac,phase-18,without +10,245.0917868305501,0.0,0.0,61.38596663568849,0.0741891249999753,30,mac,phase-18,without +11,254.09728348032925,0.0,0.0,63.64149353044874,0.0769150829983118,30,mac,phase-18,without +12,258.4168897008931,0.0,0.0,64.72338699886663,0.0782226250012172,30,mac,phase-18,without +13,241.31589833068384,0.0,0.0,60.44025332366666,0.0730461659986758,30,mac,phase-18,without +14,236.296204735648,0.0,0.0,59.18301517819063,0.0715267080013291,30,mac,phase-18,without +15,254.9943518084654,0.0,0.0,63.86617428035477,0.0771866249997401,30,mac,phase-18,without +16,257.59167485304476,0.0,0.0,64.5167027530485,0.0779728330016951,30,mac,phase-18,without +17,255.1975237091272,0.0,0.0,63.917060944802486,0.0772481250023702,30,mac,phase-18,without +18,254.1328005774134,0.0,0.0,63.65038918282778,0.0769258340005762,30,mac,phase-18,without +19,254.61044282269503,0.0,0.0,63.770020000783035,0.0770704159986053,30,mac,phase-18,without +20,252.7502373251944,0.0,0.0,63.30411082413631,0.076507333000336,30,mac,phase-18,without +21,256.13602257519875,0.0,0.0,64.1521184341835,0.0775322080007754,30,mac,phase-18,without +22,233.69544263395284,0.0,0.0,58.53162535535499,0.0707394589990144,30,mac,phase-18,without +23,257.93167227093824,0.0,0.0,64.6018588915749,0.078075749999698,30,mac,phase-18,without +24,256.7664632982533,0.0,0.0,64.31001933201313,0.0777230419989791,30,mac,phase-18,without +25,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739,30,mac,phase-18,without +26,255.20371797321877,0.0,0.0,63.918612367205384,0.0772500000020954,30,mac,phase-18,without +27,253.60793655700468,0.0,0.0,63.51893114556863,0.0767669580018264,30,mac,phase-18,without +28,254.7793397817627,0.0,0.0,63.81232212452318,0.0771215409986325,30,mac,phase-18,without +29,254.67445023433228,0.0,0.0,63.78605136962657,0.0770897910006169,30,mac,phase-18,without +0,346.01329874466325,0.3045891714301613,11.452552845774065,68.01476198035502,0.0710032919996592,30,mac,phase-27,without +1,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.0775276669992308,30,mac,phase-27,without +2,389.8002261465144,0.3431340018895373,12.901838471046604,76.62182262193369,0.0799885419983184,30,mac,phase-27,without +3,389.79007528132496,0.3431250662687719,12.901502491705823,76.61982729781678,0.0799864590007928,30,mac,phase-27,without +4,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.0766496670003107,30,mac,phase-27,without +5,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.0783959170003072,30,mac,phase-27,without +6,368.8117548208933,0.3246582348775469,12.207149631395763,72.49618384815624,0.0756816249995608,30,mac,phase-27,without +7,379.99108210302904,0.334499191992103,12.577169618903074,74.69366957183661,0.0779756669980997,30,mac,phase-27,without +8,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.0752130000000761,30,mac,phase-27,without +9,388.8351277233648,0.3422844434184549,12.869895072533906,76.43211621534098,0.0797904999999445,30,mac,phase-27,without +10,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.0803932499984512,30,mac,phase-27,without +11,381.6621806372591,0.3359702294342069,12.63248062672618,75.02215223265841,0.0783185830005095,30,mac,phase-27,without +12,366.6756700911541,0.322777878601368,12.136448235411438,72.07630029168548,0.0752432919980492,30,mac,phase-27,without +13,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.0785939159977715,30,mac,phase-27,without +14,384.18386223037226,0.3381900195689896,12.715944735794013,75.51783136975538,0.0788360419974196,30,mac,phase-27,without +15,378.7553163563533,0.3334113700320011,12.536267513203242,74.45075892814586,0.0777220829986617,30,mac,phase-27,without +16,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.0786690409986476,30,mac,phase-27,without +17,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.0785877500020433,30,mac,phase-27,without +18,381.6906108958314,0.3359952560702742,12.63342162824231,75.02774068049223,0.0783244170015677,30,mac,phase-27,without +19,388.1719679438419,0.341700676006903,12.847945417859556,76.30176095234145,0.0796544170007109,30,mac,phase-27,without +20,378.5252623152303,0.3332088576718577,12.528653048461848,74.40553791812582,0.0776748750031401,30,mac,phase-27,without +21,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513,30,mac,phase-27,without +22,383.54607720273344,0.3376285890869132,12.694834949667936,75.39246394310773,0.0787051659972348,30,mac,phase-27,without +23,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758,30,mac,phase-27,without +24,373.0230141252263,0.3283653293355865,12.346536383018057,73.32397804063648,0.0765457919987966,30,mac,phase-27,without +25,383.6628342422502,0.3377313681709948,12.698699443229406,75.41541451258315,0.0787291250017006,30,mac,phase-27,without +26,383.9716733361366,0.3380032335705427,12.708921582252408,75.4761220563022,0.0787925000004179,30,mac,phase-27,without +27,388.3768470521449,0.3418810273346346,12.85472662778226,76.3420334038239,0.0796964590008428,30,mac,phase-27,without +28,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.0767264999994949,30,mac,phase-27,without +29,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.071810417000961,30,mac,phase-27,without +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.0759556669981975,30,mac,phase-5,without +1,250.9902886146916,0.9006828538804723,0.0,65.11603447313637,0.0766364589981094,30,mac,phase-5,without +2,251.08826581851417,0.901034446717156,0.0,65.14145333303291,0.0766663750000589,30,mac,phase-5,without +3,251.6577197956367,0.9030779418503708,0.0,65.28919046266385,0.0768402499998046,30,mac,phase-5,without +4,254.8982707317584,0.9147067131522432,0.0,66.12990755826587,0.0778297079996264,30,mac,phase-5,without +5,256.4147688442029,0.9201486920246515,0.0,66.5233424752637,0.0782927500004007,30,mac,phase-5,without +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.0775765830003365,30,mac,phase-5,without +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.0764232500005164,30,mac,phase-5,without +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.0776412500017613,30,mac,phase-5,without +9,254.6710622884788,0.913891371848608,0.0,66.07096140179567,0.0777603330025158,30,mac,phase-5,without +10,253.76932556597777,0.9106554745190588,0.0,65.83701800967418,0.0774850000016158,30,mac,phase-5,without +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.0757235410019347,30,mac,phase-5,without +12,251.66945440127165,0.9031200516792044,0.0,65.29223484732618,0.076843833001476,30,mac,phase-5,without +13,251.2764451718155,0.9017097314778068,0.0,65.1902739201733,0.0767238329972315,30,mac,phase-5,without +14,233.39411648723728,0.8375386955283635,0.0,60.55094569153206,0.0712637079996056,30,mac,phase-5,without +15,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.0771029589996032,30,mac,phase-5,without +16,250.18161649107023,0.8977809204225009,0.0,64.90623543202673,0.076389542002289,30,mac,phase-5,without +17,253.47757189478065,0.9096085115841412,0.0,65.76132646712013,0.0773959170001035,30,mac,phase-5,without +18,248.6101232868392,0.8921415907422459,0.0,64.49853278255051,0.0759097080008359,30,mac,phase-5,without +19,251.7260870200961,0.903323278780249,0.0,65.30692741403874,0.0768611249986861,30,mac,phase-5,without +20,251.30523965227655,0.9018130609531456,0.0,65.19774425853853,0.07673262499884,30,mac,phase-5,without +21,252.35899561673511,0.905594481878236,0.0,65.47112698615987,0.0770543750004435,30,mac,phase-5,without +22,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.0770828749991778,30,mac,phase-5,without +23,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.0753380000023753,30,mac,phase-5,without +24,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.0723041249984817,30,mac,phase-5,without +25,253.50431617204092,0.9097044838709604,0.0,65.76826490800424,0.0774040830001467,30,mac,phase-5,without +26,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.0766381670000555,30,mac,phase-5,without +27,252.60531086151025,0.906478388259008,0.0,65.53503014376236,0.0771295839986123,30,mac,phase-5,without +28,253.74831266909396,0.9105800693867008,0.0,65.83156649788296,0.077478584000346,30,mac,phase-5,without +29,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.0768664999995962,30,mac,phase-5,without +0,249.7923844146721,0.0,0.0,64.11304733285456,0.0759544579996145,30,mac,phase-2,without +1,251.5237567706763,0.0,0.0,64.55743060767458,0.0764809169995714,30,mac,phase-2,without +2,236.44843625054185,0.0,0.0,60.68811833728591,0.0718969589979678,30,mac,phase-2,without +3,254.81671512475305,0.0,0.0,65.40261888398953,0.0774822080020385,30,mac,phase-2,without +4,254.0024857747179,0.0,0.0,65.19363443083687,0.0772346249977999,30,mac,phase-2,without +5,250.58400715096883,0.0,0.0,64.3162294518006,0.0761951670028793,30,mac,phase-2,without +6,253.13741623502708,0.0,0.0,64.97160106310882,0.0769715829992492,30,mac,phase-2,without +7,247.96660298643684,0.0,0.0,63.64443252138948,0.0753992919999291,30,mac,phase-2,without +8,251.19145867599536,0.0,0.0,64.47214120414525,0.0763798750012938,30,mac,phase-2,without +9,256.62427379017913,0.0,0.0,65.86655654383826,0.0780318329998408,30,mac,phase-2,without +10,252.7525020227826,0.0,0.0,64.87280692586343,0.0768545419996371,30,mac,phase-2,without +11,252.65411359951872,0.0,0.0,64.84755402773163,0.0768246249972435,30,mac,phase-2,without +12,234.1139962204404,0.0,0.0,60.08894849271152,0.071187124998687,30,mac,phase-2,without +13,257.1501948549435,0.0,0.0,66.00154225286055,0.0781917500025883,30,mac,phase-2,without +14,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418,30,mac,phase-2,without +15,251.44934635326925,0.0,0.0,64.53833203257409,0.0764582909978344,30,mac,phase-2,without +16,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126,30,mac,phase-2,without +17,251.21776837388165,0.0,0.0,64.4788939917046,0.0763878750003641,30,mac,phase-2,without +18,251.416600645554,0.0,0.0,64.52992734436225,0.0764483339989965,30,mac,phase-2,without +19,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213,30,mac,phase-2,without +20,252.05912958228944,0.0,0.0,64.69484225251759,0.0766437079983006,30,mac,phase-2,without +21,255.11256441560653,0.0,0.0,65.47855314288348,0.0775721669997437,30,mac,phase-2,without +22,244.42520870193505,0.0,0.0,62.73547935246641,0.0743224589969031,30,mac,phase-2,without +23,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758,30,mac,phase-2,without +24,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994,30,mac,phase-2,without +25,252.46364123963497,0.0,0.0,64.7986663746775,0.0767667079999228,30,mac,phase-2,without +26,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086,30,mac,phase-2,without +27,255.64108684697413,0.0,0.0,65.61420653255007,0.0777328750009473,30,mac,phase-2,without +28,250.51795663338612,0.0,0.0,64.29927657323282,0.0761750829988159,30,mac,phase-2,without +29,252.8123829029725,0.0,0.0,64.88817627235069,0.0768727499998931,30,mac,phase-2,without +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645,30,mac,phase-3,without +1,247.59900572459188,0.0,0.0,63.63541223539677,0.0749709170013375,30,mac,phase-3,without +2,252.59749193776693,0.0,0.0,64.92007301098222,0.0764844170007563,30,mac,phase-3,without +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751,30,mac,phase-3,without +4,255.00742611955113,0.0,0.0,65.53945011497832,0.0772141250017739,30,mac,phase-3,without +5,254.3331440184321,0.0,0.0,65.36615289457113,0.0770099579967791,30,mac,phase-3,without +6,239.8215196985124,0.0,0.0,61.63652081022233,0.0726159590012684,30,mac,phase-3,without +7,252.36520681402695,0.0,0.0,64.86037341904694,0.0764140829996904,30,mac,phase-3,without +8,252.1722820871298,0.0,0.0,64.81078984139654,0.0763556669990066,30,mac,phase-3,without +9,253.17365705842755,0.0,0.0,65.06815318950152,0.0766588750011578,30,mac,phase-3,without +10,254.7703291078643,0.0,0.0,65.47851381988168,0.0771423340011097,30,mac,phase-3,without +11,257.12521884407045,0.0,0.0,66.08374395274846,0.0778553750024002,30,mac,phase-3,without +12,257.5769881962842,0.0,0.0,66.19985317895198,0.0779921670000476,30,mac,phase-3,without +13,230.86734014931577,0.0,0.0,59.33520742176434,0.0699047080015589,30,mac,phase-3,without +14,252.49634648493628,0.0,0.0,64.89407762151053,0.0764537909999489,30,mac,phase-3,without +15,256.16553921217854,0.0,0.0,65.83709672243897,0.0775647920017945,30,mac,phase-3,without +16,252.85330477462892,0.0,0.0,64.98581945968536,0.0765618749974237,30,mac,phase-3,without +17,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322,30,mac,phase-3,without +18,253.6318929035833,0.0,0.0,65.1859243688412,0.0767976249990169,30,mac,phase-3,without +19,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254,30,mac,phase-3,without +20,245.8200036875109,0.0,0.0,63.17819098094965,0.0744322499995178,30,mac,phase-3,without +21,253.09219510207856,0.0,0.0,65.04721665480663,0.0766342089991667,30,mac,phase-3,without +22,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297,30,mac,phase-3,without +23,237.6873493714192,0.0,0.0,61.08801776535877,0.0719697499989706,30,mac,phase-3,without +24,252.67647692470263,0.0,0.0,64.94037293985049,0.0765083329970366,30,mac,phase-3,without +25,252.3727763729606,0.0,0.0,64.86231887113699,0.0764163749990984,30,mac,phase-3,without +26,255.234202497438,0.0,0.0,65.59773390432493,0.0772827910004707,30,mac,phase-3,without +27,252.58785824967035,0.0,0.0,64.91759705712458,0.0764815000002272,30,mac,phase-3,without +28,254.14255755018047,0.0,0.0,65.31717027269754,0.0769522500013408,30,mac,phase-3,without +29,253.90256744879193,0.0,0.0,65.25549042471276,0.0768795829972077,30,mac,phase-3,without +0,253.53427688728465,0.0,0.0,64.57760820245201,0.076206000001548,30,mac,phase-4,without +1,258.26881641088414,0.0,0.0,65.78354075771735,0.0776290829999197,30,mac,phase-4,without +2,255.5581794818601,0.0,0.0,65.09311557446122,0.0768143340028473,30,mac,phase-4,without +3,258.37666645619265,0.0,0.0,65.81101119704435,0.0776614999995217,30,mac,phase-4,without +4,251.4109813828545,0.0,0.0,64.03678450450256,0.0755677910019585,30,mac,phase-4,without +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029,30,mac,phase-4,without +6,257.9566378142825,0.0,0.0,65.70402587969754,0.0775352499986183,30,mac,phase-4,without +7,257.22664634671185,0.0,0.0,65.51809006240816,0.0773158330011938,30,mac,phase-4,without +8,253.8991312230035,0.0,0.0,64.67054009565513,0.0763156659995729,30,mac,phase-4,without +9,251.0245017908568,0.0,0.0,63.938344451438795,0.0754516249980952,30,mac,phase-4,without +10,254.54456469819945,0.0,0.0,64.83493818254766,0.0765096670002094,30,mac,phase-4,without +11,255.85774223615337,0.0,0.0,65.16941707663403,0.0769043750005948,30,mac,phase-4,without +12,255.93204323154933,0.0,0.0,65.188342251678,0.0769267080031568,30,mac,phase-4,without +13,259.880176018943,0.0,0.0,66.19396948049216,0.0781134169992583,30,mac,phase-4,without +14,255.01172304341273,0.0,0.0,64.95392788664633,0.0766500829995493,30,mac,phase-4,without +15,257.21028768275835,0.0,0.0,65.51392335404637,0.0773109159999876,30,mac,phase-4,without +16,258.4208884003968,0.0,0.0,65.8222749497086,0.0776747919990157,30,mac,phase-4,without +17,234.06796061376548,0.0,0.0,59.61935103545283,0.0703549169993493,30,mac,phase-4,without +18,254.56563433542095,0.0,0.0,64.84030482091373,0.0765160000009927,30,mac,phase-4,without +19,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036,30,mac,phase-4,without +20,253.8269129094721,0.0,0.0,64.65214539962614,0.0762939589985762,30,mac,phase-4,without +21,253.50017554675208,0.0,0.0,64.56892226445922,0.076195749999897,30,mac,phase-4,without +22,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575,30,mac,phase-4,without +23,256.791646381911,0.0,0.0,65.40729140575363,0.077185082998767,30,mac,phase-4,without +24,258.8575518455188,0.0,0.0,65.93349731073064,0.0778060420016117,30,mac,phase-4,without +25,254.13770416501097,0.0,0.0,64.73130690859188,0.0763873750001948,30,mac,phase-4,without +26,255.17931863433267,0.0,0.0,64.99661608857218,0.0767004580011416,30,mac,phase-4,without +27,255.7738762440398,0.0,0.0,65.14805560533038,0.0768791670016071,30,mac,phase-4,without +28,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329,30,mac,phase-4,without +29,254.6501956683362,0.0,0.0,64.86184340217827,0.076541417001863,30,mac,phase-4,without +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.0754009170013887,30,mac,phase-22,without +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.0771903749991906,30,mac,phase-22,without +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.0770712499979708,30,mac,phase-22,without +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.0776679580012569,30,mac,phase-22,without +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.0779796249989885,30,mac,phase-22,without +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.0773913749981147,30,mac,phase-22,without +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.0775697919998492,30,mac,phase-22,without +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.0763929170025221,30,mac,phase-22,without +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.077310500000749,30,mac,phase-22,without +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.078158500000427,30,mac,phase-22,without +10,235.2985150178381,0.7924561386611128,0.0,58.42840068512897,0.0703293330006999,30,mac,phase-22,without +11,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.0771376249977038,30,mac,phase-22,without +12,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673,30,mac,phase-22,without +13,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.0769387920008739,30,mac,phase-22,without +14,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766,30,mac,phase-22,without +15,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.0772323329983919,30,mac,phase-22,without +16,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.0768300420022569,30,mac,phase-22,without +17,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.0776397079971502,30,mac,phase-22,without +18,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665,30,mac,phase-22,without +19,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.0771370830007072,30,mac,phase-22,without +20,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.0776909169981081,30,mac,phase-22,without +21,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.0772428750024118,30,mac,phase-22,without +22,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409,30,mac,phase-22,without +23,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.0776754579965199,30,mac,phase-22,without +24,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.0769548329990357,30,mac,phase-22,without +25,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.0770484999993641,30,mac,phase-22,without +26,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.0768427919974783,30,mac,phase-22,without +27,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.076798707999842,30,mac,phase-22,without +28,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.0777810409999801,30,mac,phase-22,without +29,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901,30,mac,phase-22,without +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.0750980420016276,30,mac,phase-25,without +1,246.76674350378295,0.5470832863281573,0.0,65.48908751045883,0.0748969999986002,30,mac,phase-25,without +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.0753702500005601,30,mac,phase-25,without +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.0801031660012085,30,mac,phase-25,without +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.0787539170014497,30,mac,phase-25,without +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.0802945840005122,30,mac,phase-25,without +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732,30,mac,phase-25,without +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008,30,mac,phase-25,without +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956,30,mac,phase-25,without +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.0795499999985622,30,mac,phase-25,without +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.0788625000022875,30,mac,phase-25,without +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.0737082090017793,30,mac,phase-25,without +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.0777287089986202,30,mac,phase-25,without +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.0809930830000666,30,mac,phase-25,without +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.0782412090011348,30,mac,phase-25,without +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.0782246669987216,30,mac,phase-25,without +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.0764459579986578,30,mac,phase-25,without +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.0785907919998862,30,mac,phase-25,without +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.0798172499999054,30,mac,phase-25,without +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879,30,mac,phase-25,without +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.0777190000007976,30,mac,phase-25,without +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.0745992910015047,30,mac,phase-25,without +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.0789691250029136,30,mac,phase-25,without +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.077969292000489,30,mac,phase-25,without +24,251.71874980934945,0.5580619127228665,0.0,66.80329367006078,0.0764000000017404,30,mac,phase-25,without +25,232.25845891939952,0.51491833615412,0.0,61.6387537690373,0.0704935419998946,30,mac,phase-25,without +26,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.0773807089972251,30,mac,phase-25,without +27,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.0778139169997302,30,mac,phase-25,without +28,252.35079120270456,0.5594631521186721,0.0,66.9710302683234,0.0765918329998385,30,mac,phase-25,without +29,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.0767333750009129,30,mac,phase-25,without +0,236.6567212800667,0.8267216295202227,0.0,59.860769841186496,0.0703788339997117,30,mac,phase-13,without +1,261.95098582591453,0.915083014270888,0.0,66.25878862591058,0.0779010410005867,30,mac,phase-13,without +2,245.40833969424455,0.8572939800419981,0.0,62.07443448081875,0.072981459001312,30,mac,phase-13,without +3,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.0765551250005955,30,mac,phase-13,without +4,258.9009587470573,0.9044282424855152,0.0,65.48730422441415,0.0769939999991038,30,mac,phase-13,without +5,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227,30,mac,phase-13,without +6,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.0774625839985674,30,mac,phase-13,without +7,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.0775410830028704,30,mac,phase-13,without +8,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.0770794579984794,30,mac,phase-13,without +9,258.61457516789665,0.9034278081942309,0.0,65.41486537110077,0.0769088330016529,30,mac,phase-13,without +10,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.0707159580015286,30,mac,phase-13,without +11,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.0780311669986986,30,mac,phase-13,without +12,260.6072019459684,0.9103887246139408,0.0,65.91888728223164,0.077501415998995,30,mac,phase-13,without +13,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548,30,mac,phase-13,without +14,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.0768012089974945,30,mac,phase-13,without +15,260.0306551965286,0.9083746526466904,0.0,65.77305355275111,0.0773299579996091,30,mac,phase-13,without +16,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.0772179580017109,30,mac,phase-13,without +17,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619,30,mac,phase-13,without +18,260.3005048322299,0.9093173283051116,0.0,65.84131025320345,0.0774102080031298,30,mac,phase-13,without +19,264.0587854421345,0.9224462682025656,0.0,66.79194275318578,0.0785278750008728,30,mac,phase-13,without +20,263.0532231845429,0.9189335005799792,0.0,66.5375923568096,0.0782288330010487,30,mac,phase-13,without +21,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.0775990420006564,30,mac,phase-13,without +22,258.78481075864437,0.9040224984452576,0.0,65.45792535038811,0.0769594589983171,30,mac,phase-13,without +23,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.0775372499992954,30,mac,phase-13,without +24,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.077450917000533,30,mac,phase-13,without +25,252.4247090150945,0.8818045210774421,0.0,63.84917921134812,0.0750680420023854,30,mac,phase-13,without +26,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.0768218749981315,30,mac,phase-13,without +27,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.0772714170016115,30,mac,phase-13,without +28,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766,30,mac,phase-13,without +29,251.73803334741703,0.8794057317091811,0.0,63.67548909227589,0.0748638330005633,30,mac,phase-13,without +0,259.3603261187444,0.0,0.0,65.0750093613154,0.0772384160009096,30,mac,phase-14,without +1,259.0137620395562,0.0,0.0,64.98805442477995,0.0771352080009819,30,mac,phase-14,without +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189,30,mac,phase-14,without +3,242.06494915581175,0.0,0.0,60.73549901826075,0.0720877919993654,30,mac,phase-14,without +4,235.64265081788608,0.0,0.0,59.124107134560184,0.0701752089989895,30,mac,phase-14,without +5,264.44449718901984,0.0,0.0,66.35065735630297,0.0787525000014284,30,mac,phase-14,without +6,258.4949635864557,0.0,0.0,64.85788488536977,0.0769807079996098,30,mac,phase-14,without +7,260.75512162880096,0.0,0.0,65.42497164055966,0.0776537910023762,30,mac,phase-14,without +8,258.54729338873193,0.0,0.0,64.87101473612205,0.0769962919985118,30,mac,phase-14,without +9,258.4187119612678,0.0,0.0,64.83875291057171,0.0769579999978304,30,mac,phase-14,without +10,256.03319274883137,0.0,0.0,64.24021231107454,0.076247583998338,30,mac,phase-14,without +11,259.9925953597714,0.0,0.0,65.23364937921801,0.0774267080014396,30,mac,phase-14,without +12,260.68391024286916,0.0,0.0,65.40710429100974,0.0776325840015488,30,mac,phase-14,without +13,266.00341096992025,0.0,0.0,66.74179786111225,0.0792167500003415,30,mac,phase-14,without +14,262.4791342007781,0.0,0.0,65.85753638914451,0.0781672080011048,30,mac,phase-14,without +15,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304,30,mac,phase-14,without +16,259.2768012481966,0.0,0.0,65.0540524870928,0.0772135420011181,30,mac,phase-14,without +17,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263,30,mac,phase-14,without +18,249.63999413559765,0.0,0.0,62.63612171699325,0.0743436669981747,30,mac,phase-14,without +19,256.52512449555974,0.0,0.0,64.36364083810693,0.0763940830001956,30,mac,phase-14,without +20,257.38978857591655,0.0,0.0,64.58059006841385,0.0766515830000571,30,mac,phase-14,without +21,260.0975303138043,0.0,0.0,65.25997816750345,0.077457957999286,30,mac,phase-14,without +22,258.5177705738045,0.0,0.0,64.86360729071002,0.0769875000005413,30,mac,phase-14,without +23,248.91608058597623,0.0,0.0,62.45448761079295,0.0741280830006871,30,mac,phase-14,without +24,261.7960764426832,0.0,0.0,65.68615323788339,0.0779637910018209,30,mac,phase-14,without +25,259.62770375529885,0.0,0.0,65.14209596034219,0.0773180420001153,30,mac,phase-14,without +26,260.6953808942086,0.0,0.0,65.40998234392734,0.077636000001803,30,mac,phase-14,without +27,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981,30,mac,phase-14,without +28,258.4513106522235,0.0,0.0,64.84693211111042,0.0769677080024848,30,mac,phase-14,without +29,259.19789015504335,0.0,0.0,65.03425323636505,0.0771900420004385,30,mac,phase-14,without +0,237.2903027127171,0.3735384536996727,0.0,63.37702431104448,0.0720150829984049,30,mac,phase-15,without +1,254.30572604705935,0.4003238505266577,0.0,67.92161330602293,0.0771790830003738,30,mac,phase-15,without +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.076375916996767,30,mac,phase-15,without +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.0744619170000078,30,mac,phase-15,without +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.0772538749988598,30,mac,phase-15,without +5,254.06793847194996,0.3999495292750097,0.0,67.85810346699333,0.0771069170004921,30,mac,phase-15,without +6,236.36440535324107,0.3720809214533507,0.0,63.129729673251845,0.0717340829978638,30,mac,phase-15,without +7,253.92130730041657,0.3997187049199788,0.0,67.81894026808975,0.077062415999535,30,mac,phase-15,without +8,255.6341646934731,0.4024150565816184,0.0,68.27642126668127,0.0775822499999776,30,mac,phase-15,without +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.0774064999968686,30,mac,phase-15,without +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.073707874998945,30,mac,phase-15,without +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.0794006249998346,30,mac,phase-15,without +12,242.49408311058815,0.3817301583795169,0.0,64.76688353839138,0.073594375000539,30,mac,phase-15,without +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.0757026249993941,30,mac,phase-15,without +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.078668625003047,30,mac,phase-15,without +15,240.73660801776333,0.3789635702758966,0.0,64.29748575681046,0.0730610000027809,30,mac,phase-15,without +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.0800764999985403,30,mac,phase-15,without +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.0802019589973497,30,mac,phase-15,without +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.0784857090002333,30,mac,phase-15,without +19,255.1599602642359,0.4016685718445272,0.0,68.14976768962146,0.0774383339994528,30,mac,phase-15,without +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.0785644589996081,30,mac,phase-15,without +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.0799249170013354,30,mac,phase-15,without +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.0784903749990917,30,mac,phase-15,without +23,254.37094085870467,0.400426510600086,0.0,67.93903129848127,0.0771988750020682,30,mac,phase-15,without +24,257.3998773220497,0.4051946120772132,0.0,68.74801918243385,0.07811812500222,30,mac,phase-15,without +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.0782012919989938,30,mac,phase-15,without +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.0796113340002193,30,mac,phase-15,without +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.0793126249991473,30,mac,phase-15,without +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.0785715840029297,30,mac,phase-15,without +29,253.68324295352303,0.3993439479787848,0.0,67.75535650706716,0.0769901660023606,30,mac,phase-15,without +0,251.53573576786724,0.0,0.0,62.72152708777785,0.0744095830013975,30,mac,phase-12,without +1,261.23641907506607,0.0,0.0,65.1404345601695,0.0772792499992647,30,mac,phase-12,without +2,259.69001833656097,0.0,0.0,64.75483282643327,0.076821792001283,30,mac,phase-12,without +3,261.4181167235588,0.0,0.0,65.18574165717872,0.0773330000010901,30,mac,phase-12,without +4,260.86401158116945,0.0,0.0,65.04757313574873,0.0771690839974326,30,mac,phase-12,without +5,249.72157861361,0.0,0.0,62.269159130020775,0.073872917000699,30,mac,phase-12,without +6,260.1970815239249,0.0,0.0,64.88127123227001,0.0769717920011316,30,mac,phase-12,without +7,259.727625526503,0.0,0.0,64.764210342417,0.0768329170023207,30,mac,phase-12,without +8,261.2393769415889,0.0,0.0,65.14117211702067,0.0772801249986514,30,mac,phase-12,without +9,267.88415944731423,0.0,0.0,66.79807746549119,0.0792457919997104,30,mac,phase-12,without +10,260.33046618014515,0.0,0.0,64.91453127503361,0.0770112499994866,30,mac,phase-12,without +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019,30,mac,phase-12,without +12,262.63957446676875,0.0,0.0,65.49031744516148,0.0776943329983623,30,mac,phase-12,without +13,258.95505728780233,0.0,0.0,64.57156710004472,0.0766043750008975,30,mac,phase-12,without +14,259.6273385675486,0.0,0.0,64.73920335407234,0.0768032500018307,30,mac,phase-12,without +15,261.7203838407915,0.0,0.0,65.26111327435025,0.0774224169981607,30,mac,phase-12,without +16,262.19885205972054,0.0,0.0,65.38042140073868,0.0775639580024289,30,mac,phase-12,without +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099,30,mac,phase-12,without +18,260.1817276561712,0.0,0.0,64.8774426787276,0.0769672500027809,30,mac,phase-12,without +19,238.90592081951175,0.0,0.0,59.57222793162153,0.0706734170016716,30,mac,phase-12,without +20,244.5389668999695,0.0,0.0,60.97685241268609,0.0723397910005587,30,mac,phase-12,without +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988,30,mac,phase-12,without +22,259.8796025059062,0.0,0.0,64.80210646163543,0.0768778750025376,30,mac,phase-12,without +23,259.9752413748415,0.0,0.0,64.82595442856649,0.0769061669998336,30,mac,phase-12,without +24,260.9768297690729,0.0,0.0,65.07570484040285,0.0772024580001016,30,mac,phase-12,without +25,261.8691223893613,0.0,0.0,65.29820187678934,0.0774664170021424,30,mac,phase-12,without +26,259.81227464687464,0.0,0.0,64.78531796786092,0.0768579579998913,30,mac,phase-12,without +27,259.9996074518044,0.0,0.0,64.83203021557779,0.0769133750000037,30,mac,phase-12,without +28,259.53803797523506,0.0,0.0,64.71693586391773,0.0767768330006219,30,mac,phase-12,without +29,238.99902099587555,0.0,0.0,59.5954428645449,0.0707009580000885,30,mac,phase-12,without +0,255.65537390140065,0.0,0.0,64.03179678521767,0.0776107909987331,30,mac,phase-24,without +1,252.3971302607853,0.0,0.0,63.2157325989312,0.0766216669981076,30,mac,phase-24,without +2,254.03647687991125,0.0,0.0,63.626325609258025,0.0771193330001551,30,mac,phase-24,without +3,252.92870751153595,0.0,0.0,63.34887216872111,0.0767830410004535,30,mac,phase-24,without +4,256.21770129194005,0.0,0.0,64.172638077338,0.0777815000001282,30,mac,phase-24,without +5,261.83806978347053,0.0,0.0,65.58032330458661,0.0794877080006699,30,mac,phase-24,without +6,257.89026530262356,0.0,0.0,64.59155076126875,0.0782892499992158,30,mac,phase-24,without +7,254.00381288625172,0.0,0.0,63.61814454045324,0.0771094170013384,30,mac,phase-24,without +8,255.43041857262065,0.0,0.0,63.97545416398356,0.0775424999992537,30,mac,phase-24,without +9,254.5701162116187,0.0,0.0,63.75998165068225,0.0772813330004282,30,mac,phase-24,without +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248,30,mac,phase-24,without +11,250.66526969948472,0.0,0.0,62.78196841932783,0.0760959159997582,30,mac,phase-24,without +12,253.81728616949164,0.0,0.0,63.57142680227183,0.0770527919994492,30,mac,phase-24,without +13,252.96713941908897,0.0,0.0,63.35849787717756,0.0767947079984878,30,mac,phase-24,without +14,239.62560934353888,0.0,0.0,60.01695989358342,0.072744542001601,30,mac,phase-24,without +15,251.76288345726073,0.0,0.0,63.05687827165771,0.0764291250015958,30,mac,phase-24,without +16,257.5634672163916,0.0,0.0,64.50970046284525,0.0781900420006422,30,mac,phase-24,without +17,255.07685287249387,0.0,0.0,63.88689961214584,0.0774351660002139,30,mac,phase-24,without +18,253.78612756335775,0.0,0.0,63.56362277489847,0.0770433329998923,30,mac,phase-24,without +19,261.432764118169,0.0,0.0,65.47880988986569,0.0793646669990266,30,mac,phase-24,without +20,253.1580604236211,0.0,0.0,63.40631621472186,0.0768526669999118,30,mac,phase-24,without +21,255.3783986189558,0.0,0.0,63.96242517479779,0.0775267079989134,30,mac,phase-24,without +22,255.35575189540887,0.0,0.0,63.95675304525136,0.0775198330011335,30,mac,phase-24,without +23,249.2891719762051,0.0,0.0,62.437309089742904,0.0756781659983971,30,mac,phase-24,without +24,253.92571378551105,0.0,0.0,63.59858373220023,0.0770857080024143,30,mac,phase-24,without +25,232.28381259426416,0.0,0.0,58.17812337583731,0.0705157499978668,30,mac,phase-24,without +26,253.67358237649097,0.0,0.0,63.53543455250894,0.077009167001961,30,mac,phase-24,without +27,253.70103185415508,0.0,0.0,63.542309586461194,0.0770174999997834,30,mac,phase-24,without +28,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622,30,mac,phase-24,without +29,254.50876744267657,0.0,0.0,63.74461615358363,0.0772627089972957,30,mac,phase-24,without +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292,30,mac,phase-23,without +1,242.77578502676263,0.4671759814498319,0.0,63.69165880432708,0.0724429590009094,30,mac,phase-23,without +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993,30,mac,phase-23,without +3,258.51333715491046,0.4974599175527462,0.0,67.82036875969108,0.0771389580004324,30,mac,phase-23,without +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.0854656670016993,30,mac,phase-23,without +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141,30,mac,phase-23,without +6,243.74387927163863,0.4690388953270789,0.0,63.94563606292509,0.0727318329991248,30,mac,phase-23,without +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.074225792002835,30,mac,phase-23,without +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.0776544169966655,30,mac,phase-23,without +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708,30,mac,phase-23,without +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.0730839579991879,30,mac,phase-23,without +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632,30,mac,phase-23,without +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.0799434170003223,30,mac,phase-23,without +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.0794488749997981,30,mac,phase-23,without +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.0797305839987529,30,mac,phase-23,without +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.0777837919995363,30,mac,phase-23,without +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.0775734999988344,30,mac,phase-23,without +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.0781226660001266,30,mac,phase-23,without +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.078081875002681,30,mac,phase-23,without +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.0791336250003951,30,mac,phase-23,without +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488,30,mac,phase-23,without +21,257.9793695450014,0.4964323980981425,0.0,67.6802836073801,0.0769796250024228,30,mac,phase-23,without +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.0782561670021095,30,mac,phase-23,without +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.0792537500019534,30,mac,phase-23,without +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041,30,mac,phase-23,without +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.0780591249967983,30,mac,phase-23,without +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.0775096249999478,30,mac,phase-23,without +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.0782039170007919,30,mac,phase-23,without +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.0776473750011064,30,mac,phase-23,without +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.0781980419997125,30,mac,phase-23,without +0,254.55862726842625,0.0,0.0,64.64502264360112,0.0770675419989856,30,mac,phase-8,without +1,249.45099505649355,0.0,0.0,63.34794226750606,0.075521208000282,30,mac,phase-8,without +2,260.34668630262985,0.0,0.0,66.11489703498854,0.0788198749978619,30,mac,phase-8,without +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234,30,mac,phase-8,without +4,254.45815813069177,0.0,0.0,64.61950856162512,0.0770371250000607,30,mac,phase-8,without +5,255.8519102420228,0.0,0.0,64.97345113966061,0.0774590830005763,30,mac,phase-8,without +6,248.69707187526592,0.0,0.0,63.15648389249447,0.0752929580012278,30,mac,phase-8,without +7,255.1022546097663,0.0,0.0,64.78307650635061,0.0772321250005916,30,mac,phase-8,without +8,252.78860060747465,0.0,0.0,64.1955253517402,0.0765316670003812,30,mac,phase-8,without +9,254.73506346907223,0.0,0.0,64.68982851919962,0.0771209580016147,30,mac,phase-8,without +10,253.83333170049056,0.0,0.0,64.46083423515617,0.0768479590005881,30,mac,phase-8,without +11,253.7371268072013,0.0,0.0,64.43640305569922,0.0768188330002885,30,mac,phase-8,without +12,240.22252605510252,0.0,0.0,61.00437766723181,0.0727272919975803,30,mac,phase-8,without +13,258.0346838423428,0.0,0.0,65.52776528855703,0.0781199170014588,30,mac,phase-8,without +14,254.20038081866608,0.0,0.0,64.5540461557671,0.0769590830022934,30,mac,phase-8,without +15,254.6882723304369,0.0,0.0,64.67794593541505,0.0771067919995402,30,mac,phase-8,without +16,255.76066324322383,0.0,0.0,64.95027901476814,0.0774314580012287,30,mac,phase-8,without +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999,30,mac,phase-8,without +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448,30,mac,phase-8,without +19,253.6951515285212,0.0,0.0,64.4257434568875,0.0768061249982565,30,mac,phase-8,without +20,253.3447531357101,0.0,0.0,64.3367599787763,0.076700041998265,30,mac,phase-8,without +21,255.2514405716164,0.0,0.0,64.82096219887414,0.0772772910022467,30,mac,phase-8,without +22,236.06342334742243,0.0,0.0,59.94817583427829,0.0714681249992281,30,mac,phase-8,without +23,256.95678343157175,0.0,0.0,65.25403307523722,0.0777935830010392,30,mac,phase-8,without +24,255.03110341882655,0.0,0.0,64.76500770075256,0.0772105840005679,30,mac,phase-8,without +25,255.734925804407,0.0,0.0,64.94374300641141,0.0774236659999587,30,mac,phase-8,without +26,256.5582165256291,0.0,0.0,65.15281722984973,0.0776729169992904,30,mac,phase-8,without +27,256.4007696213289,0.0,0.0,65.11283367555865,0.0776252499999827,30,mac,phase-8,without +28,240.76863068541655,0.0,0.0,61.143060636146465,0.0728926249976211,30,mac,phase-8,without +29,253.9838950248202,0.0,0.0,64.49906970811983,0.0768935419982881,30,mac,phase-8,without +0,252.31231985583565,0.7304738829883385,0.0,65.27780245250334,0.0762640409993764,30,mac,phase-1,without +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.0785115409998979,30,mac,phase-1,without +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844,30,mac,phase-1,without +3,254.08107578790057,0.7355946397333613,0.0,65.7354118961722,0.0767986660030146,30,mac,phase-1,without +4,254.8141653450625,0.7377170203436471,0.0,65.925075545255,0.0770202499988954,30,mac,phase-1,without +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552,30,mac,phase-1,without +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.076410500001657,30,mac,phase-1,without +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283,30,mac,phase-1,without +8,255.1343891608784,0.7386441060059645,0.0,66.00792329126028,0.0771170410007471,30,mac,phase-1,without +9,254.33927029643831,0.7363421432453802,0.0,65.80221152820079,0.0768767079971439,30,mac,phase-1,without +10,254.15483004207024,0.7358081669858593,0.0,65.75449346791815,0.0768209589987236,30,mac,phase-1,without +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.0783152080002764,30,mac,phase-1,without +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539,30,mac,phase-1,without +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.0761889579989656,30,mac,phase-1,without +14,254.008843365794,0.7353855183639252,0.0,65.71672405015805,0.076776832996984,30,mac,phase-1,without +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.0768490000009478,30,mac,phase-1,without +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.0778543330015963,30,mac,phase-1,without +17,255.57027480120905,0.7399060462727463,0.0,66.1206948623736,0.0772487920003186,30,mac,phase-1,without +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.0767076669981179,30,mac,phase-1,without +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801,30,mac,phase-1,without +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.0753446670023549,30,mac,phase-1,without +21,220.4004131405646,0.6380851545061746,0.0,57.02160971632452,0.0666183329994964,30,mac,phase-1,without +22,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.0774812499985273,30,mac,phase-1,without +23,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745,30,mac,phase-1,without +24,252.95552999281617,0.7323360520913219,0.0,65.44421265506995,0.0764584579992515,30,mac,phase-1,without +25,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.0769151659987983,30,mac,phase-1,without +26,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.0767502079979749,30,mac,phase-1,without +27,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.0767220839989022,30,mac,phase-1,without +28,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.0763839579994964,30,mac,phase-1,without +29,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787,30,mac,phase-1,without +0,381.3081659044242,0.198030727553583,9.967546620197012,73.07333846727214,0.0762857089976023,30,mac,phase-30,without +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957,30,mac,phase-30,without +2,387.4458082495051,0.2012182852503272,10.12798702426647,74.24954725737075,0.077513624997664,30,mac,phase-30,without +3,381.1904880655916,0.1979696120828831,9.964470474838452,73.05078685858389,0.0762621659996511,30,mac,phase-30,without +4,377.4216778769259,0.1960122970017792,9.865952282422889,72.32853759365653,0.0755081659990537,30,mac,phase-30,without +5,395.2054385543479,0.2052482152969867,10.330826836614998,75.7365914445881,0.0790660410020791,30,mac,phase-30,without +6,382.2245416168645,0.198506643270249,9.991501044602536,73.2489513667219,0.0764690420000988,30,mac,phase-30,without +7,388.2468053820079,0.2016342796063401,10.148925406852452,74.40304917473951,0.0776738749991636,30,mac,phase-30,without +8,361.77536742490526,0.1878864541287485,9.456951524480342,69.3301015735082,0.072377915999823,30,mac,phase-30,without +9,396.6091653952728,0.2059772346898327,10.367520812721578,76.00559960054827,0.0793468750016472,30,mac,phase-30,without +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.0757492079974326,30,mac,phase-30,without +11,389.1548487153577,0.2021058679383836,10.17266201956531,74.57706526926356,0.0778555409997352,30,mac,phase-30,without +12,398.0607921145172,0.2067311306748985,10.405466910636562,76.28378721903758,0.07963729200128,30,mac,phase-30,without +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.0798584579970338,30,mac,phase-30,without +14,394.0549717448149,0.2046507253933082,10.300753178129844,75.51611767013073,0.0788358749996405,30,mac,phase-30,without +15,389.67822848863034,0.2023776829335914,10.186343374324103,74.67736500249524,0.0779602500006149,30,mac,phase-30,without +16,390.66458707880736,0.2028899439516008,10.21212717889724,74.8663893181407,0.0781575839973811,30,mac,phase-30,without +17,382.3307530923388,0.1985618037353096,9.994277454677253,73.26930557832927,0.0764902910013916,30,mac,phase-30,without +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962,30,mac,phase-30,without +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.0725337920011952,30,mac,phase-30,without +20,388.52755176123173,0.2017800840099879,10.156264228502726,74.45685099968554,0.0777300420013489,30,mac,phase-30,without +21,389.50432339303006,0.2022873660831109,10.18179742618325,74.64403808466793,0.0779254580011183,30,mac,phase-30,without +22,381.15924792662696,0.1979533876534027,9.963653845221272,73.04480004410561,0.0762559159993543,30,mac,phase-30,without +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.0780157500012137,30,mac,phase-30,without +24,385.52849854792015,0.2002225388459725,10.07786778858062,73.88211683416388,0.0771300419983163,30,mac,phase-30,without +25,377.8184326260527,0.196218349844743,9.876323608852063,72.40457109271017,0.0755875419999938,30,mac,phase-30,without +26,373.01390441782655,0.1937231391419509,9.750731336811532,71.4838383433799,0.0746263330001966,30,mac,phase-30,without +27,392.390082348607,0.2037860723700893,10.257232309294496,75.19706070456296,0.0785027919991989,30,mac,phase-30,without +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.078830000002199,30,mac,phase-30,without +29,389.200049447067,0.2021293427406216,10.17384358461129,74.58572747128939,0.0778645840000535,30,mac,phase-30,without +0,251.2126028110106,0.0,0.0,63.04752093895013,0.074755040997843,30,mac,phase-6,without +1,251.92782659925052,0.0,0.0,63.22702262899478,0.0749678749998565,30,mac,phase-6,without +2,258.018691325029,0.0,0.0,64.75566377612596,0.0767803749986342,30,mac,phase-6,without +3,260.54003040902114,0.0,0.0,65.38845121160259,0.0775306670002464,30,mac,phase-6,without +4,259.9749090575512,0.0,0.0,65.24662114479398,0.0773625000001629,30,mac,phase-6,without +5,257.4462911868574,0.0,0.0,64.61200693211013,0.0766100420005386,30,mac,phase-6,without +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752,30,mac,phase-6,without +7,258.55804789756263,0.0,0.0,64.89102758518595,0.0769408749983995,30,mac,phase-6,without +8,261.25119137299276,0.0,0.0,65.56693324341647,0.077742292000039,30,mac,phase-6,without +9,260.1166102987462,0.0,0.0,65.28218429676703,0.0774046670012467,30,mac,phase-6,without +10,237.00576584766733,0.0,0.0,59.48199181779978,0.0705274159990949,30,mac,phase-6,without +11,261.5736560314424,0.0,0.0,65.64786308960325,0.0778382499993313,30,mac,phase-6,without +12,258.20715696601536,0.0,0.0,64.80296351870814,0.0768364579998888,30,mac,phase-6,without +13,256.72603004324225,0.0,0.0,64.43124100307053,0.0763957089984614,30,mac,phase-6,without +14,259.4536150402221,0.0,0.0,65.1157905451141,0.0772073749976698,30,mac,phase-6,without +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666,30,mac,phase-6,without +16,258.93344008202195,0.0,0.0,64.98524079879539,0.0770525830012047,30,mac,phase-6,without +17,259.39424550343654,0.0,0.0,65.10089040845003,0.0771897080012422,30,mac,phase-6,without +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765,30,mac,phase-6,without +19,247.2062185079991,0.0,0.0,62.042027602202104,0.0735628340007679,30,mac,phase-6,without +20,240.2339275243244,0.0,0.0,60.29217247205807,0.0714880420018744,30,mac,phase-6,without +21,261.37664806550475,0.0,0.0,65.59841945612862,0.077779625000403,30,mac,phase-6,without +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121,30,mac,phase-6,without +23,259.09586538480823,0.0,0.0,65.02600512575927,0.0771009170020988,30,mac,phase-6,without +24,259.9893288635479,0.0,0.0,65.25024012334178,0.0773667909998039,30,mac,phase-6,without +25,257.87783357147384,0.0,0.0,64.72031231657613,0.0767384589998982,30,mac,phase-6,without +26,259.9124613012882,0.0,0.0,65.23094845888362,0.0773439169970515,30,mac,phase-6,without +27,259.9603447479832,0.0,0.0,65.24296589978566,0.0773581659996125,30,mac,phase-6,without +28,257.0997419885865,0.0,0.0,64.52503252242737,0.0765069170010974,30,mac,phase-6,without +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405,30,mac,phase-6,without +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.076847208001709,30,mac,phase-7,without +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.0770459590021346,30,mac,phase-7,without +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.0773680829988734,30,mac,phase-7,without +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.076017999999749,30,mac,phase-7,without +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.0762255000008735,30,mac,phase-7,without +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.077563791997818,30,mac,phase-7,without +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.0770248330009053,30,mac,phase-7,without +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.0733274169979267,30,mac,phase-7,without +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.0775150410008791,30,mac,phase-7,without +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.0773663330000999,30,mac,phase-7,without +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.075760417003039,30,mac,phase-7,without +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.0773687500004598,30,mac,phase-7,without +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887,30,mac,phase-7,without +13,248.11253105893135,0.76910270012068,0.0,68.17326333869708,0.071188792000612,30,mac,phase-7,without +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.0754453750014363,30,mac,phase-7,without +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.0776007089989434,30,mac,phase-7,without +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.0776465839990123,30,mac,phase-7,without +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.0784323340012633,30,mac,phase-7,without +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.075241750000714,30,mac,phase-7,without +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392,30,mac,phase-7,without +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.0780122500000288,30,mac,phase-7,without +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.0768742920008662,30,mac,phase-7,without +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.078040291002253,30,mac,phase-7,without +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483,30,mac,phase-7,without +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.0799040839992812,30,mac,phase-7,without +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.0787826250016223,30,mac,phase-7,without +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.0793842499988386,30,mac,phase-7,without +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.0794322090005152,30,mac,phase-7,without +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.0823663330011186,30,mac,phase-7,without +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.0802108749994658,30,mac,phase-7,without +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.0761317500000586,30,mac,phase-9,without +1,256.12393460719073,0.9064551362425152,0.0,65.29834222191452,0.0772571669986064,30,mac,phase-9,without +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.0767200000009324,30,mac,phase-9,without +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752,30,mac,phase-9,without +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.0765427500009536,30,mac,phase-9,without +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.076881291999598,30,mac,phase-9,without +6,253.37879933322745,0.8967397538336794,0.0,64.59847485950024,0.0764291250015958,30,mac,phase-9,without +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.0785475830016366,30,mac,phase-9,without +8,256.86308778885234,0.9090710932362056,0.0,65.4867880127563,0.0774801250008749,30,mac,phase-9,without +9,255.65027029969852,0.9047787780956692,0.0,65.17758234800283,0.0771142910016351,30,mac,phase-9,without +10,254.2089816160017,0.8996778743782993,0.0,64.8101283579923,0.0766795410017948,30,mac,phase-9,without +11,258.8750074470721,0.9161915324512973,0.0,65.99972335621382,0.0780870000016875,30,mac,phase-9,without +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.0775150420013233,30,mac,phase-9,without +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.0773265410025487,30,mac,phase-9,without +14,253.7441622806205,0.898032819711201,0.0,64.69162349401059,0.0765393330002552,30,mac,phase-9,without +15,251.5744948659375,0.890354091149602,0.0,64.13847064022133,0.0758848750010656,30,mac,phase-9,without +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.0769605839996074,30,mac,phase-9,without +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.0773543750001408,30,mac,phase-9,without +18,257.3632704895553,0.9108413033448676,0.0,65.6143087039173,0.0776310000001103,30,mac,phase-9,without +19,254.9952406394763,0.90246054492933,0.0,65.01058369953878,0.0769167079997714,30,mac,phase-9,without +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.0762424999993527,30,mac,phase-9,without +21,237.13135670060404,0.8392379906824367,0.0,60.45621821767923,0.0715282499986642,30,mac,phase-9,without +22,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.0779090830001223,30,mac,phase-9,without +23,239.82482771688112,0.8487705267211679,0.0,61.14291386935821,0.0723407080004108,30,mac,phase-9,without +24,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.0773496250003518,30,mac,phase-9,without +25,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142,30,mac,phase-9,without +26,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496,30,mac,phase-9,without +27,254.63913044761705,0.9012002257288844,0.0,64.91979403861778,0.0768092910002451,30,mac,phase-9,without +28,255.21888157057143,0.903252038590304,0.0,65.06760055770893,0.0769841670007736,30,mac,phase-9,without +29,255.8472502804252,0.9054759152669394,0.0,65.22780204422952,0.0771737079994636,30,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n50/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n50/with_smell.csv new file mode 100644 index 000000000..ff06af2ab --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n50/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664,50,mac,phase-19,with +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817,50,mac,phase-19,with +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246,50,mac,phase-19,with +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286,50,mac,phase-19,with +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.1346176915523,0.5108064580017526,50,mac,phase-19,with +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325,50,mac,phase-19,with +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404,50,mac,phase-19,with +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.9411894195198,0.509611458001018,50,mac,phase-19,with +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942,50,mac,phase-19,with +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001,50,mac,phase-19,with +10,2442.064002544568,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774,50,mac,phase-19,with +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285,50,mac,phase-19,with +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915,50,mac,phase-19,with +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681,50,mac,phase-19,with +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428,50,mac,phase-19,with +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787236,0.5053130829983274,50,mac,phase-19,with +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368,50,mac,phase-19,with +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215,50,mac,phase-19,with +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688,50,mac,phase-19,with +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261,50,mac,phase-19,with +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151,50,mac,phase-19,with +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867,50,mac,phase-19,with +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316,50,mac,phase-19,with +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.4320289082005,0.5040950420006993,50,mac,phase-19,with +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234,50,mac,phase-19,with +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785,50,mac,phase-19,with +26,2406.404834514243,3.097979270904169,78.14158352461473,500.9168823241752,0.5015765830030432,50,mac,phase-19,with +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403,50,mac,phase-19,with +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163,50,mac,phase-19,with +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277,50,mac,phase-19,with +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.4955833330022869,50,mac,phase-26,with +1,1562.7387326973612,1.926641438972196,2.092731218193937,449.07354505974337,0.4933393750034156,50,mac,phase-26,with +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927,50,mac,phase-26,with +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056,50,mac,phase-26,with +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994,50,mac,phase-26,with +5,1567.5576911020446,1.932582550407452,2.099184494408094,450.458336188937,0.4948606670004665,50,mac,phase-26,with +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495,50,mac,phase-26,with +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.4934135000003152,50,mac,phase-26,with +8,1572.8194619481285,1.9390695885427025,2.1062307599687973,451.9703753018757,0.4965217499993741,50,mac,phase-26,with +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045,50,mac,phase-26,with +10,1561.3753115790362,1.9249605286764608,2.0909054018382247,448.68174805477713,0.4929089580000436,50,mac,phase-26,with +11,1564.2604044990444,1.9285174505461704,2.0947689549035986,449.5108174816151,0.4938197500014212,50,mac,phase-26,with +12,1566.0254582717266,1.9306935185409744,2.0971326149669207,450.018028916473,0.494376958002249,50,mac,phase-26,with +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921,50,mac,phase-26,with +14,1568.229238167961,1.933410475369152,2.10008379221132,450.6513140778545,0.4950726669994765,50,mac,phase-26,with +15,1568.8164427249465,1.9341344176436792,2.1008701433026173,450.82005503663623,0.4952580409990332,50,mac,phase-26,with +16,1563.710683035462,1.927839719758886,2.0940327990484455,449.35284778311006,0.4936462090008717,50,mac,phase-26,with +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454,50,mac,phase-26,with +18,1560.7671180085997,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284,50,mac,phase-26,with +19,1563.612085984862,1.9277181631867784,2.093900763461501,449.32451462279414,0.4936150829998951,50,mac,phase-26,with +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719,50,mac,phase-26,with +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155,50,mac,phase-26,with +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.4957214999994903,50,mac,phase-26,with +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.4943114170018816,50,mac,phase-26,with +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.4936536669993074,50,mac,phase-26,with +25,1556.033423900803,1.9183747175310144,2.083751848352654,447.146686315548,0.4912225830012175,50,mac,phase-26,with +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.493544416000077,50,mac,phase-26,with +27,1574.1810331293302,1.9407482181209723,2.1080540989934704,452.3616407030591,0.4969515829980082,50,mac,phase-26,with +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807,50,mac,phase-26,with +29,1607.7780546805436,1.9821687144536408,2.1530453277686097,462.0161870810133,0.5075577919997158,50,mac,phase-26,with +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109,50,mac,phase-21,with +1,2362.707427351115,3.053665668998252,75.27949714443517,505.7135884006235,0.5069546670019918,50,mac,phase-21,with +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826,50,mac,phase-21,with +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.8357095856616,0.5080795419999049,50,mac,phase-21,with +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101,50,mac,phase-21,with +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.7861271535494,0.5090322920004837,50,mac,phase-21,with +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142,50,mac,phase-21,with +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332,50,mac,phase-21,with +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337,50,mac,phase-21,with +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512,50,mac,phase-21,with +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.7341297606933,0.508980167000118,50,mac,phase-21,with +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.0986054113508,0.5083430830018187,50,mac,phase-21,with +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818,50,mac,phase-21,with +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084,50,mac,phase-21,with +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371,50,mac,phase-21,with +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821,50,mac,phase-21,with +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582,50,mac,phase-21,with +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027,50,mac,phase-21,with +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168,50,mac,phase-21,with +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.1857207289548,0.5074279579966969,50,mac,phase-21,with +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884,50,mac,phase-21,with +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119,50,mac,phase-21,with +22,2355.571678502875,3.044443117349149,75.05214119725946,504.1862536514308,0.5054235839998,50,mac,phase-21,with +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808,50,mac,phase-21,with +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835,50,mac,phase-21,with +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.6577049757748,0.5119109170009324,50,mac,phase-21,with +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616,50,mac,phase-21,with +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251,50,mac,phase-21,with +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333,50,mac,phase-21,with +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061,50,mac,phase-21,with +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734,50,mac,phase-28,with +1,1498.847619915133,2.2333049533939846,0.0,456.1275370484073,0.4971277910008211,50,mac,phase-28,with +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.4964403749982011,50,mac,phase-28,with +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377,50,mac,phase-28,with +4,1497.800909311091,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296,50,mac,phase-28,with +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.4962088749998656,50,mac,phase-28,with +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006,50,mac,phase-28,with +7,1487.434284612173,2.216298916270418,0.0,452.654244332006,0.4933422920003067,50,mac,phase-28,with +8,1508.8235499563525,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729,50,mac,phase-28,with +9,1496.828313791734,2.230296157631237,0.0,455.5130241944155,0.4964580410014605,50,mac,phase-28,with +10,1497.546140555687,2.231365730045613,0.0,455.73147238722646,0.4966961249992891,50,mac,phase-28,with +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964,50,mac,phase-28,with +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341,50,mac,phase-28,with +13,1547.3486576230418,2.3055722114651913,0.0,470.8873155476072,0.5132142920010665,50,mac,phase-28,with +14,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.4960290000017266,50,mac,phase-28,with +15,1494.2857789928514,2.2265077434621947,0.0,454.73928300801,0.4956147500015504,50,mac,phase-28,with +16,1492.916332152243,2.224467247569281,0.0,454.3225345632543,0.4951605409987678,50,mac,phase-28,with +17,1501.7675380811677,2.2376556743192237,0.0,457.0161230952874,0.4980962500012538,50,mac,phase-28,with +18,1493.492579873052,2.22532586513131,0.0,454.4978975889082,0.4953516670029785,50,mac,phase-28,with +19,1494.308895111859,2.226542186818809,0.0,454.74631767803857,0.4956224170018686,50,mac,phase-28,with +20,1491.9323097299357,2.223001039716801,0.0,454.0230780221598,0.4948341669987712,50,mac,phase-28,with +21,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469,50,mac,phase-28,with +22,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.4962799999993876,50,mac,phase-28,with +23,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.4968130000015662,50,mac,phase-28,with +24,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199,50,mac,phase-28,with +25,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731,50,mac,phase-28,with +26,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.495579041999008,50,mac,phase-28,with +27,1494.5827579360664,2.22695024644657,0.0,454.82965928917696,0.4957132499985164,50,mac,phase-28,with +28,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.4949876249993394,50,mac,phase-28,with +29,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.4940982500011159,50,mac,phase-28,with +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887,50,mac,phase-17,with +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971,50,mac,phase-17,with +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208,50,mac,phase-17,with +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851,50,mac,phase-17,with +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478,50,mac,phase-17,with +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485,50,mac,phase-17,with +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799,50,mac,phase-17,with +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703,50,mac,phase-17,with +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879,50,mac,phase-17,with +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654,50,mac,phase-17,with +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245,50,mac,phase-17,with +11,2434.911182100675,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574,50,mac,phase-17,with +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438,50,mac,phase-17,with +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585,50,mac,phase-17,with +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624,50,mac,phase-17,with +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299,50,mac,phase-17,with +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.5810589754782,0.5055243339993467,50,mac,phase-17,with +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575,50,mac,phase-17,with +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045,50,mac,phase-17,with +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954,50,mac,phase-17,with +20,2450.440055490727,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001,50,mac,phase-17,with +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975,50,mac,phase-17,with +22,2443.288889685493,5.003412429886074,75.68075489973373,505.7754127800068,0.505718665997847,50,mac,phase-17,with +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681,50,mac,phase-17,with +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135,50,mac,phase-17,with +25,2480.855628025912,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902,50,mac,phase-17,with +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095,50,mac,phase-17,with +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126,50,mac,phase-17,with +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983,50,mac,phase-17,with +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049,50,mac,phase-17,with +0,2413.455554111883,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306,50,mac,phase-10,with +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237,50,mac,phase-10,with +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544,50,mac,phase-10,with +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555,50,mac,phase-10,with +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645,50,mac,phase-10,with +5,2400.607102267664,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602,50,mac,phase-10,with +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546,50,mac,phase-10,with +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905,50,mac,phase-10,with +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967,50,mac,phase-10,with +9,2419.322533895495,4.473549974361046,80.79097714890844,502.7068321934972,0.5066046669999196,50,mac,phase-10,with +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114,50,mac,phase-10,with +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656,50,mac,phase-10,with +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344,50,mac,phase-10,with +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755,50,mac,phase-10,with +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583,50,mac,phase-10,with +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172,50,mac,phase-10,with +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128,50,mac,phase-10,with +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602,50,mac,phase-10,with +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134,50,mac,phase-10,with +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.9287563027167,0.5128748340030143,50,mac,phase-10,with +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.2933673761707,0.5071957499967539,50,mac,phase-10,with +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831,50,mac,phase-10,with +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194,50,mac,phase-10,with +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012,50,mac,phase-10,with +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208,50,mac,phase-10,with +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382,50,mac,phase-10,with +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622,50,mac,phase-10,with +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875,50,mac,phase-10,with +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928,50,mac,phase-10,with +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759,50,mac,phase-10,with +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731,50,mac,phase-11,with +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064,50,mac,phase-11,with +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738,50,mac,phase-11,with +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141,50,mac,phase-11,with +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031,50,mac,phase-11,with +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806,50,mac,phase-11,with +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741,50,mac,phase-11,with +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907,50,mac,phase-11,with +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344,50,mac,phase-11,with +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595,50,mac,phase-11,with +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087,50,mac,phase-11,with +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484,50,mac,phase-11,with +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554,50,mac,phase-11,with +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421,50,mac,phase-11,with +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195,50,mac,phase-11,with +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687,50,mac,phase-11,with +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761,50,mac,phase-11,with +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689,50,mac,phase-11,with +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782,50,mac,phase-11,with +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762,50,mac,phase-11,with +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611,50,mac,phase-11,with +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179,50,mac,phase-11,with +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539,50,mac,phase-11,with +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082,50,mac,phase-11,with +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504,50,mac,phase-11,with +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451,50,mac,phase-11,with +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206,50,mac,phase-11,with +27,2420.701363746525,3.272075332025206,80.19923415841373,498.3237176579205,0.5071317910005746,50,mac,phase-11,with +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987,50,mac,phase-11,with +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072,50,mac,phase-11,with +0,1554.8732723619028,0.9499760332133208,0.0,468.60960609794233,0.5065087910006696,50,mac,phase-29,with +1,1540.449502109736,0.941163587664418,0.0,464.2625526007479,0.5018101659989043,50,mac,phase-29,with +2,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.499439874998643,50,mac,phase-29,with +3,1530.7264696366958,0.935223137092834,0.0,461.33221319736504,0.4986428330012131,50,mac,phase-29,with +4,1527.4287557774685,0.9332083432274132,0.0,460.3383441663225,0.4975685839999642,50,mac,phase-29,with +5,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.4973773329984396,50,mac,phase-29,with +6,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467,50,mac,phase-29,with +7,1528.059338805915,0.93359360855715,0.0,460.52839004969127,0.497773999999481,50,mac,phase-29,with +8,1545.3676850578215,0.944168434432761,0.0,465.744800585189,0.5034122920005757,50,mac,phase-29,with +9,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942,50,mac,phase-29,with +10,1528.570586995457,0.9339059642556632,0.0,460.6824706535437,0.4979405419981049,50,mac,phase-29,with +11,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875,50,mac,phase-29,with +12,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752,50,mac,phase-29,with +13,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.4964012499985983,50,mac,phase-29,with +14,1528.2171779672317,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772,50,mac,phase-29,with +15,1519.295356383413,0.9282391057787768,0.0,457.88709032201666,0.4949190829975123,50,mac,phase-29,with +16,1522.767283641807,0.9303603382567937,0.0,458.9334640001012,0.4960500830020464,50,mac,phase-29,with +17,1521.815908034937,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944,50,mac,phase-29,with +18,1523.6480572437645,0.9308984617343912,0.0,459.19891262412176,0.4963370000004943,50,mac,phase-29,with +19,1522.5087831425035,0.930202403019706,0.0,458.8555568038635,0.495965874997637,50,mac,phase-29,with +20,1523.130669481421,0.9305823549603914,0.0,459.0429816683188,0.4961684580011933,50,mac,phase-29,with +21,1519.5053818912152,0.9283674244027588,0.0,457.9503880661037,0.4949874999983876,50,mac,phase-29,with +22,1526.9093204634178,0.9328909854671869,0.0,460.1817961168851,0.4973993749990768,50,mac,phase-29,with +23,1529.5480557755704,0.9345031652821568,0.0,460.97706138846974,0.4982589579994965,50,mac,phase-29,with +24,1524.9894245219973,0.9317179926818372,0.0,459.6031755329121,0.4967739580024499,50,mac,phase-29,with +25,1540.853307819904,0.9414102995692096,0.0,464.38425205892594,0.5019417080002313,50,mac,phase-29,with +26,1520.174211377246,0.9287760570504024,0.0,458.151960713577,0.495205374998477,50,mac,phase-29,with +27,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.4972079580002173,50,mac,phase-29,with +28,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.4952220829982252,50,mac,phase-29,with +29,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.495454833999247,50,mac,phase-29,with +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798,50,mac,phase-16,with +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374,50,mac,phase-16,with +2,2403.6605833088347,2.971356629736184,84.43326872587426,501.95895424812943,0.5054153749988473,50,mac,phase-16,with +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712,50,mac,phase-16,with +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205,50,mac,phase-16,with +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399,50,mac,phase-16,with +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625,50,mac,phase-16,with +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132,50,mac,phase-16,with +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868,50,mac,phase-16,with +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569,50,mac,phase-16,with +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995,50,mac,phase-16,with +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116,50,mac,phase-16,with +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444,50,mac,phase-16,with +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508,50,mac,phase-16,with +14,2396.948743680305,2.963059589248669,84.19750226078521,500.5573137567836,0.5040040830026555,50,mac,phase-16,with +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352,50,mac,phase-16,with +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.4983195829991018,50,mac,phase-16,with +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919,50,mac,phase-16,with +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.0250495374422,0.5085025830012455,50,mac,phase-16,with +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087,50,mac,phase-16,with +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.0684085629751,0.5055255830011447,50,mac,phase-16,with +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335,50,mac,phase-16,with +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108,50,mac,phase-16,with +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.2673499536931,0.5077396660017257,50,mac,phase-16,with +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774,50,mac,phase-16,with +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248,50,mac,phase-16,with +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372,50,mac,phase-16,with +27,2387.906760572858,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619,50,mac,phase-16,with +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972,50,mac,phase-16,with +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049,50,mac,phase-16,with +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896,50,mac,phase-20,with +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294,50,mac,phase-20,with +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021,50,mac,phase-20,with +3,2357.806900571939,4.149006707691834,79.90183885458144,503.6024190118531,0.5101947919974918,50,mac,phase-20,with +4,2346.305810578593,4.128768366919913,79.51208758229639,501.1459087944486,0.5077061250012775,50,mac,phase-20,with +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982,50,mac,phase-20,with +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412,50,mac,phase-20,with +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624,50,mac,phase-20,with +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255,50,mac,phase-20,with +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223,50,mac,phase-20,with +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191,50,mac,phase-20,with +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826,50,mac,phase-20,with +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185,50,mac,phase-20,with +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488,50,mac,phase-20,with +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016,50,mac,phase-20,with +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732,50,mac,phase-20,with +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316,50,mac,phase-20,with +17,2343.330793546818,4.123533262375373,79.41126960122897,500.5104768710625,0.5070623749998049,50,mac,phase-20,with +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544,50,mac,phase-20,with +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428,50,mac,phase-20,with +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128,50,mac,phase-20,with +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923,50,mac,phase-20,with +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731,50,mac,phase-20,with +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271,50,mac,phase-20,with +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.9930627480395,0.509577458997228,50,mac,phase-20,with +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235,50,mac,phase-20,with +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313,50,mac,phase-20,with +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421,50,mac,phase-20,with +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664,50,mac,phase-20,with +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945,50,mac,phase-20,with +0,2451.1992010427684,3.900210881276232,77.23750950356437,510.1942524609636,0.5080816660010896,50,mac,phase-18,with +1,2446.842754857934,3.893279148103931,77.10023748851974,509.2874988182109,0.5071786669977882,50,mac,phase-18,with +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055,50,mac,phase-18,with +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268,50,mac,phase-18,with +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444,50,mac,phase-18,with +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424,50,mac,phase-18,with +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.5791434498134,0.5034856669990404,50,mac,phase-18,with +7,2429.938186012844,3.866381544953255,76.56757298851875,505.7689704744408,0.5036747079975612,50,mac,phase-18,with +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405,50,mac,phase-18,with +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.430282300252,0.5063249999984691,50,mac,phase-18,with +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838,50,mac,phase-18,with +11,2416.368502129658,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795,50,mac,phase-18,with +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131,50,mac,phase-18,with +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048,50,mac,phase-18,with +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614,50,mac,phase-18,with +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951,50,mac,phase-18,with +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134,50,mac,phase-18,with +17,2475.655192815794,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459,50,mac,phase-18,with +18,2453.373007356547,3.9036697201315897,77.30600633799054,510.6467099710596,0.5085322499980975,50,mac,phase-18,with +19,2459.984671943299,3.914189830514144,77.51434048975445,512.0228662907604,0.5099027079995722,50,mac,phase-18,with +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151,50,mac,phase-18,with +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142,50,mac,phase-18,with +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269,50,mac,phase-18,with +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548,50,mac,phase-18,with +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.057604634152,0.5079455839986622,50,mac,phase-18,with +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254,50,mac,phase-18,with +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.1553403373048,0.500076040996646,50,mac,phase-18,with +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147,50,mac,phase-18,with +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387,50,mac,phase-18,with +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264,50,mac,phase-18,with +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667,50,mac,phase-27,with +1,1498.841889417395,1.2033252607887024,0.0,459.93765523479294,0.499227249998512,50,mac,phase-27,with +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.4965378329980012,50,mac,phase-27,with +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442,50,mac,phase-27,with +4,1524.1527316288148,1.2236457335616362,0.0,467.70459149466984,0.5076576670035138,50,mac,phase-27,with +5,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427,50,mac,phase-27,with +6,1489.3145129999891,1.1956763334448297,0.0,457.0140652278015,0.4960539159983455,50,mac,phase-27,with +7,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085,50,mac,phase-27,with +8,1491.8328382512898,1.1976981373530124,0.0,457.7868436104848,0.4968927080008143,50,mac,phase-27,with +9,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469,50,mac,phase-27,with +10,1511.818683773937,1.213743507412005,0.0,463.91974061081095,0.5035495000010997,50,mac,phase-27,with +11,1488.9657450555078,1.195396329742831,0.0,456.9070415905932,0.4959377500017581,50,mac,phase-27,with +12,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.4984247499996854,50,mac,phase-27,with +13,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.4980667499985429,50,mac,phase-27,with +14,1496.3713521590184,1.2013418228345636,0.0,459.1795411723221,0.4984043749973352,50,mac,phase-27,with +15,1507.25952887442,1.210083250584936,0.0,462.5207091124644,0.5020309579995228,50,mac,phase-27,with +16,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.4936328750009124,50,mac,phase-27,with +17,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439,50,mac,phase-27,with +18,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.4978450419985165,50,mac,phase-27,with +19,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462,50,mac,phase-27,with +20,1489.0232905879304,1.1954425294075846,0.0,456.9247001291211,0.4959569169986935,50,mac,phase-27,with +21,1493.38228955567,1.1989420937089743,0.0,458.262311373208,0.4974087919981684,50,mac,phase-27,with +22,1495.050954155259,1.2002817588722223,0.0,458.7743611689384,0.4979645830026129,50,mac,phase-27,with +23,1482.5875601832554,1.1902756889141006,0.0,454.949818873834,0.4938133340001513,50,mac,phase-27,with +24,1491.5192214979224,1.1974463543169245,0.0,457.6906065389133,0.4967882499986444,50,mac,phase-27,with +25,1491.476438384669,1.197412006463908,0.0,457.6774780262048,0.4967739999992773,50,mac,phase-27,with +26,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.4969653329972061,50,mac,phase-27,with +27,1493.5562982454917,1.1990817942694787,0.0,458.3157080318896,0.4974667499991483,50,mac,phase-27,with +28,1494.5570718752197,1.1998852520574457,0.0,458.622807453068,0.4978000830014935,50,mac,phase-27,with +29,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.4966979169985279,50,mac,phase-27,with +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763,50,mac,phase-5,with +1,2430.8668931937323,3.146003063189218,86.86280036574021,500.4462977991102,0.5033938749984372,50,mac,phase-5,with +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439,50,mac,phase-5,with +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242,50,mac,phase-5,with +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859,50,mac,phase-5,with +5,2473.312006736001,3.200935094883456,88.37950267241374,509.184538461882,0.5121835829995689,50,mac,phase-5,with +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638,50,mac,phase-5,with +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033,50,mac,phase-5,with +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118,50,mac,phase-5,with +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504,50,mac,phase-5,with +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.286500197256,0.5052449159993557,50,mac,phase-5,with +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.0612560700477,0.50703012500162,50,mac,phase-5,with +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356,50,mac,phase-5,with +13,2442.717957764811,3.161340589709926,87.28627754535931,502.88609464943573,0.505848042001162,50,mac,phase-5,with +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.0360862137909,0.5059989170003973,50,mac,phase-5,with +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502,50,mac,phase-5,with +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592,50,mac,phase-5,with +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984,50,mac,phase-5,with +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331,50,mac,phase-5,with +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831,50,mac,phase-5,with +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758,50,mac,phase-5,with +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022,50,mac,phase-5,with +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.3419776453141,0.5073124999980791,50,mac,phase-5,with +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608,50,mac,phase-5,with +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987,50,mac,phase-5,with +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.0199192304263,0.5039708750009595,50,mac,phase-5,with +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441,50,mac,phase-5,with +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.7483898208496,0.5067154160024074,50,mac,phase-5,with +28,2460.460343865354,3.18430260428048,87.92027085292314,506.5387469040696,0.5095222080017265,50,mac,phase-5,with +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324,50,mac,phase-5,with +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533,50,mac,phase-2,with +1,2427.481988160699,4.084415548016843,85.00271374110463,501.1109173993124,0.5075136669984204,50,mac,phase-2,with +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661,50,mac,phase-2,with +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051,50,mac,phase-2,with +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116,50,mac,phase-2,with +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043,50,mac,phase-2,with +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739,50,mac,phase-2,with +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679,50,mac,phase-2,with +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423,50,mac,phase-2,with +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579,50,mac,phase-2,with +10,2395.320511638591,4.030301517348542,83.87652092252418,494.4717468169917,0.5007896669994807,50,mac,phase-2,with +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515,50,mac,phase-2,with +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875,50,mac,phase-2,with +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489,50,mac,phase-2,with +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053,50,mac,phase-2,with +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869,50,mac,phase-2,with +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392,50,mac,phase-2,with +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.4682684869635,0.5078755840004305,50,mac,phase-2,with +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414,50,mac,phase-2,with +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279,50,mac,phase-2,with +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696,50,mac,phase-2,with +21,2427.790497267815,4.08493463709761,85.01351675074451,501.1746036727624,0.5075781669984281,50,mac,phase-2,with +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145,50,mac,phase-2,with +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996,50,mac,phase-2,with +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155,50,mac,phase-2,with +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793,50,mac,phase-2,with +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597,50,mac,phase-2,with +27,2413.707893578892,4.061239628959905,84.5203886715508,498.2674980841955,0.5046339170003193,50,mac,phase-2,with +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983,50,mac,phase-2,with +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103,50,mac,phase-2,with +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566,50,mac,phase-3,with +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745,50,mac,phase-3,with +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915,50,mac,phase-3,with +3,2787.134152130027,3.892829766007092,84.81750278308672,513.8535291129361,0.5036684170008812,50,mac,phase-3,with +4,2786.490857621769,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919,50,mac,phase-3,with +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812,50,mac,phase-3,with +6,2781.0252087558233,3.884297318228151,84.6315966539371,512.7272460061159,0.5025644579982327,50,mac,phase-3,with +7,2806.3717189238073,3.91969914815834,85.40293652470417,517.4002875569009,0.5071448749986303,50,mac,phase-3,with +8,2787.611657926017,3.8934967051189577,84.83203414288847,513.9415650757024,0.5037547079991782,50,mac,phase-3,with +9,2778.4739606086464,3.880733953787939,84.5539575863457,512.256881900008,0.5021034169985796,50,mac,phase-3,with +10,2803.5843657274604,3.915806012450171,85.3181123560118,516.8863936434227,0.5066411669977242,50,mac,phase-3,with +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174,50,mac,phase-3,with +12,2812.886462833527,3.9287983832957263,85.60119189367214,518.6013865950359,0.5083221670029161,50,mac,phase-3,with +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987,50,mac,phase-3,with +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392,50,mac,phase-3,with +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828,50,mac,phase-3,with +16,2785.3977311460985,3.890404482212485,84.7646603709178,513.5333916520481,0.5033546249978826,50,mac,phase-3,with +17,2790.556261375991,3.8976094744847183,84.92164371949332,514.4844506319829,0.5042868329983321,50,mac,phase-3,with +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193,50,mac,phase-3,with +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849,50,mac,phase-3,with +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448,50,mac,phase-3,with +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673,50,mac,phase-3,with +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759,50,mac,phase-3,with +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572,50,mac,phase-3,with +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778,50,mac,phase-3,with +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124,50,mac,phase-3,with +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425,50,mac,phase-3,with +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436,50,mac,phase-3,with +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288,50,mac,phase-3,with +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019,50,mac,phase-3,with +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292,50,mac,phase-4,with +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295,50,mac,phase-4,with +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367,50,mac,phase-4,with +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.9658028211997,0.5026861250007642,50,mac,phase-4,with +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364,50,mac,phase-4,with +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283,50,mac,phase-4,with +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152,50,mac,phase-4,with +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727,50,mac,phase-4,with +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829,50,mac,phase-4,with +9,2374.217426084276,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384,50,mac,phase-4,with +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447,50,mac,phase-4,with +11,2408.4701102273693,3.561420707157979,88.32323353751788,509.96152697257344,0.5137638340020203,50,mac,phase-4,with +12,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732,50,mac,phase-4,with +13,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935,50,mac,phase-4,with +14,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878,50,mac,phase-4,with +15,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826,50,mac,phase-4,with +16,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144,50,mac,phase-4,with +17,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896,50,mac,phase-4,with +18,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942,50,mac,phase-4,with +19,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896,50,mac,phase-4,with +20,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372,50,mac,phase-4,with +21,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246,50,mac,phase-4,with +22,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155,50,mac,phase-4,with +23,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018,50,mac,phase-4,with +24,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907,50,mac,phase-4,with +25,2359.7523495532514,3.489381431713207,86.53665950648752,499.6461888172197,0.5033715839999786,50,mac,phase-4,with +26,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014,50,mac,phase-4,with +27,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501,50,mac,phase-4,with +28,2369.1011810593163,3.503205610793547,86.87949914767998,501.625679602676,0.5053658340002585,50,mac,phase-4,with +29,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.498477000001003,50,mac,phase-4,with +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618,50,mac,phase-22,with +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904,50,mac,phase-22,with +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659,50,mac,phase-22,with +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492,50,mac,phase-22,with +4,2340.690922537716,4.507878606273955,80.50737273871486,493.7629700072072,0.5085929999986547,50,mac,phase-22,with +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951,50,mac,phase-22,with +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227,50,mac,phase-22,with +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618,50,mac,phase-22,with +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373,50,mac,phase-22,with +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693,50,mac,phase-22,with +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235,50,mac,phase-22,with +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706,50,mac,phase-22,with +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046,50,mac,phase-22,with +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578,50,mac,phase-22,with +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701,50,mac,phase-22,with +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975,50,mac,phase-22,with +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283,50,mac,phase-22,with +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956,50,mac,phase-22,with +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957,50,mac,phase-22,with +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134,50,mac,phase-22,with +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105,50,mac,phase-22,with +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781,50,mac,phase-22,with +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063,50,mac,phase-22,with +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187,50,mac,phase-22,with +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935,50,mac,phase-22,with +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673,50,mac,phase-22,with +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902,50,mac,phase-22,with +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685,50,mac,phase-22,with +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548,50,mac,phase-22,with +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566,50,mac,phase-22,with +0,1562.658112747968,2.9298349145681235,0.0,472.7254566807824,0.5100129999991623,50,mac,phase-25,with +1,1531.1537366320806,2.87076721424838,0.0,463.19495191756414,0.4997307500016177,50,mac,phase-25,with +2,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.4992337080002471,50,mac,phase-25,with +3,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331,50,mac,phase-25,with +4,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553,50,mac,phase-25,with +5,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.4967933749976509,50,mac,phase-25,with +6,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.4938749159991857,50,mac,phase-25,with +7,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974,50,mac,phase-25,with +8,1529.549117610166,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789,50,mac,phase-25,with +9,1534.5397925705695,2.87711574616994,0.0,464.2192801610941,0.5008358750019397,50,mac,phase-25,with +10,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685,50,mac,phase-25,with +11,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412,50,mac,phase-25,with +12,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775,50,mac,phase-25,with +13,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.4971924999990733,50,mac,phase-25,with +14,1530.105222825464,2.868801350868558,0.0,462.8777621471175,0.4993885410003713,50,mac,phase-25,with +15,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475,50,mac,phase-25,with +16,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071,50,mac,phase-25,with +17,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474,50,mac,phase-25,with +18,1523.8910085724551,2.8571502918579252,0.0,460.997877323495,0.4973603750004258,50,mac,phase-25,with +19,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.4989415420022851,50,mac,phase-25,with +20,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.4979109579981013,50,mac,phase-25,with +21,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227,50,mac,phase-25,with +22,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.4972158750024391,50,mac,phase-25,with +23,1523.679466818539,2.856753671246252,0.0,460.93388304898826,0.4972913329984294,50,mac,phase-25,with +24,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626,50,mac,phase-25,with +25,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481,50,mac,phase-25,with +26,1518.296859631195,2.84666179616479,0.0,459.30557073933295,0.4955345829985162,50,mac,phase-25,with +27,1517.123367010836,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685,50,mac,phase-25,with +28,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821,50,mac,phase-25,with +29,1513.0786858616543,2.8368782180579974,0.0,457.7270017880555,0.49383150000358,50,mac,phase-25,with +0,2466.661303363247,4.117564460939943,84.82182789536282,519.4993828219228,0.520018874998641,50,mac,phase-13,with +1,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337,50,mac,phase-13,with +2,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345,50,mac,phase-13,with +3,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745,50,mac,phase-13,with +4,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228,50,mac,phase-13,with +5,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257,0.501494084001024,50,mac,phase-13,with +6,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946,50,mac,phase-13,with +7,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837,50,mac,phase-13,with +8,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348,50,mac,phase-13,with +9,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026,50,mac,phase-13,with +10,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378,50,mac,phase-13,with +11,2378.356060681969,3.970157709764441,81.78524882114748,500.90156438194686,0.5014024589982,50,mac,phase-13,with +12,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271,50,mac,phase-13,with +13,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075,50,mac,phase-13,with +14,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049,50,mac,phase-13,with +15,2390.123657190451,3.989801199978495,82.189904719557,503.37991806395354,0.5038832909995108,50,mac,phase-13,with +16,2371.816282415134,3.959240946065576,81.56036348895087,499.5242326952735,0.5000237499989453,50,mac,phase-13,with +17,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303,50,mac,phase-13,with +18,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822,50,mac,phase-13,with +19,2397.1812542605517,4.0015823516249975,82.43259644347495,504.8663066966872,0.5053711660002591,50,mac,phase-13,with +20,2413.429795818861,4.028705823003649,82.99133995387517,508.2883846689603,0.5087966660030361,50,mac,phase-13,with +21,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703,50,mac,phase-13,with +22,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542,50,mac,phase-13,with +23,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094,50,mac,phase-13,with +24,2386.9390568875947,3.984485189624151,82.08039490625751,502.7092147575803,0.5032119169991347,50,mac,phase-13,with +25,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828,50,mac,phase-13,with +26,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.4999481250015378,50,mac,phase-13,with +27,2394.9224057847664,3.997811686315634,82.35492073810207,504.3905744234892,0.5048949580013868,50,mac,phase-13,with +28,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275,50,mac,phase-13,with +29,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585,50,mac,phase-13,with +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542,50,mac,phase-14,with +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952,50,mac,phase-14,with +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867,50,mac,phase-14,with +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424,50,mac,phase-14,with +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363,50,mac,phase-14,with +5,2400.453980450238,4.138080849367165,83.32893452314363,495.8688979092475,0.5058198340011586,50,mac,phase-14,with +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694,50,mac,phase-14,with +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958,50,mac,phase-14,with +8,2403.58097828726,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683,50,mac,phase-14,with +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267,50,mac,phase-14,with +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853,50,mac,phase-14,with +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238,50,mac,phase-14,with +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056,50,mac,phase-14,with +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391,50,mac,phase-14,with +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556,50,mac,phase-14,with +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674,50,mac,phase-14,with +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163,50,mac,phase-14,with +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075,50,mac,phase-14,with +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524,50,mac,phase-14,with +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076,50,mac,phase-14,with +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709,50,mac,phase-14,with +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594,50,mac,phase-14,with +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088,50,mac,phase-14,with +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206,50,mac,phase-14,with +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243,50,mac,phase-14,with +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182,50,mac,phase-14,with +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494,50,mac,phase-14,with +27,2425.97045586115,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935,50,mac,phase-14,with +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056,50,mac,phase-14,with +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254,50,mac,phase-14,with +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.3002329485451,0.5093542920003529,50,mac,phase-15,with +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653,50,mac,phase-15,with +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335,50,mac,phase-15,with +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.9709386136346,0.5059579579974525,50,mac,phase-15,with +4,2399.17808339922,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849,50,mac,phase-15,with +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149,50,mac,phase-15,with +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775,50,mac,phase-15,with +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634,50,mac,phase-15,with +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.3990756228805,0.509455125000386,50,mac,phase-15,with +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049,50,mac,phase-15,with +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456,50,mac,phase-15,with +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895,50,mac,phase-15,with +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751,50,mac,phase-15,with +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829,50,mac,phase-15,with +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234,50,mac,phase-15,with +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.7341684884317,0.5016358749999199,50,mac,phase-15,with +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729,50,mac,phase-15,with +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007,50,mac,phase-15,with +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672,50,mac,phase-15,with +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455,50,mac,phase-15,with +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208,50,mac,phase-15,with +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947,50,mac,phase-15,with +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.4623838303456,0.5095197080008802,50,mac,phase-15,with +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746,50,mac,phase-15,with +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.8791917610883,0.506884500002343,50,mac,phase-15,with +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028,50,mac,phase-15,with +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497,50,mac,phase-15,with +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293,50,mac,phase-15,with +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212,50,mac,phase-15,with +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411,50,mac,phase-15,with +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472,50,mac,phase-12,with +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257,50,mac,phase-12,with +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665,50,mac,phase-12,with +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586,50,mac,phase-12,with +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182,50,mac,phase-12,with +5,2469.989166352668,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784,50,mac,phase-12,with +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424,50,mac,phase-12,with +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046,50,mac,phase-12,with +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.4442793542444,0.5079350840023835,50,mac,phase-12,with +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228,50,mac,phase-12,with +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109,50,mac,phase-12,with +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367,50,mac,phase-12,with +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832,50,mac,phase-12,with +13,2470.881336761855,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803,50,mac,phase-12,with +14,2547.5194825611934,4.865732743169632,81.99787643947133,515.5963421582637,0.5212308749978547,50,mac,phase-12,with +15,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149,50,mac,phase-12,with +16,2459.7036085349296,4.698005439592715,79.17131702074202,497.8231538700816,0.5032634579984006,50,mac,phase-12,with +17,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562,50,mac,phase-12,with +18,2454.901026991713,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756,50,mac,phase-12,with +19,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631,50,mac,phase-12,with +20,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852,50,mac,phase-12,with +21,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367,50,mac,phase-12,with +22,2476.252506411417,4.729613643106841,79.70398202784979,501.1725104776664,0.5066494169986981,50,mac,phase-12,with +23,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254,50,mac,phase-12,with +24,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172,50,mac,phase-12,with +25,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842,50,mac,phase-12,with +26,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839,50,mac,phase-12,with +27,2498.7167098677137,4.772520011852896,80.42704498847873,505.7190747771163,0.5112456669994572,50,mac,phase-12,with +28,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802,50,mac,phase-12,with +29,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411,50,mac,phase-12,with +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552,50,mac,phase-24,with +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887,50,mac,phase-24,with +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551,50,mac,phase-24,with +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776,50,mac,phase-24,with +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338,50,mac,phase-24,with +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639,50,mac,phase-24,with +6,2337.365944846139,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552,50,mac,phase-24,with +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931,50,mac,phase-24,with +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839,50,mac,phase-24,with +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006,50,mac,phase-24,with +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587,50,mac,phase-24,with +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081,50,mac,phase-24,with +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149,50,mac,phase-24,with +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471,50,mac,phase-24,with +14,2353.790095061217,3.1273854940882333,76.58767454671397,495.2913601116121,0.5069090830002096,50,mac,phase-24,with +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043,50,mac,phase-24,with +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.8088451449525,0.5064152499980992,50,mac,phase-24,with +17,2369.900043850338,3.148790130066317,77.11186041928363,498.6812624074177,0.5103784999992058,50,mac,phase-24,with +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193,50,mac,phase-24,with +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772,50,mac,phase-24,with +20,2361.406654310874,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665,50,mac,phase-24,with +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113,50,mac,phase-24,with +22,2365.186005455824,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555,50,mac,phase-24,with +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592,50,mac,phase-24,with +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598,50,mac,phase-24,with +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374,50,mac,phase-24,with +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287,50,mac,phase-24,with +27,2323.0195285501377,3.08650188957586,75.58646116812372,488.8165279799557,0.5002823750000971,50,mac,phase-24,with +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055,50,mac,phase-24,with +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038,50,mac,phase-24,with +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767,50,mac,phase-23,with +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903,50,mac,phase-23,with +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114,50,mac,phase-23,with +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558,50,mac,phase-23,with +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153,50,mac,phase-23,with +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502,50,mac,phase-23,with +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542,50,mac,phase-23,with +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336,50,mac,phase-23,with +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.8935984536096,0.5130170830016141,50,mac,phase-23,with +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846,50,mac,phase-23,with +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546,50,mac,phase-23,with +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943,50,mac,phase-23,with +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843,50,mac,phase-23,with +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183,50,mac,phase-23,with +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798,50,mac,phase-23,with +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369,50,mac,phase-23,with +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819,50,mac,phase-23,with +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662,50,mac,phase-23,with +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346,50,mac,phase-23,with +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835,50,mac,phase-23,with +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325,50,mac,phase-23,with +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111,50,mac,phase-23,with +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748,50,mac,phase-23,with +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375,50,mac,phase-23,with +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.9742481356192,0.5100448750017677,50,mac,phase-23,with +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458,50,mac,phase-23,with +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488,50,mac,phase-23,with +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479,50,mac,phase-23,with +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.6574274029951,0.5066679999981716,50,mac,phase-23,with +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148,50,mac,phase-23,with +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184,50,mac,phase-8,with +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056,50,mac,phase-8,with +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889,50,mac,phase-8,with +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905,50,mac,phase-8,with +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046,50,mac,phase-8,with +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422,50,mac,phase-8,with +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449,50,mac,phase-8,with +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683,50,mac,phase-8,with +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593,50,mac,phase-8,with +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301,50,mac,phase-8,with +10,2398.899124274176,3.010699789112236,85.65606323089648,496.23611139444426,0.5013167500001146,50,mac,phase-8,with +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011,50,mac,phase-8,with +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.1014435686768,0.4971397500012244,50,mac,phase-8,with +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381,50,mac,phase-8,with +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393,50,mac,phase-8,with +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535,50,mac,phase-8,with +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158,50,mac,phase-8,with +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682,50,mac,phase-8,with +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018,50,mac,phase-8,with +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.3395799506389,0.5074827079988609,50,mac,phase-8,with +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256,50,mac,phase-8,with +21,2413.457682465012,3.028971273574173,86.17589700311575,499.2476937619672,0.5043591659996309,50,mac,phase-8,with +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458,50,mac,phase-8,with +23,2440.0641737605915,3.062363322836291,87.12591915190285,504.75151076067624,0.5099193329988339,50,mac,phase-8,with +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291,50,mac,phase-8,with +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119,50,mac,phase-8,with +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032,50,mac,phase-8,with +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706,50,mac,phase-8,with +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758,50,mac,phase-8,with +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817,50,mac,phase-8,with +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713,50,mac,phase-1,with +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006,50,mac,phase-1,with +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059,50,mac,phase-1,with +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968,50,mac,phase-1,with +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581,50,mac,phase-1,with +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476,50,mac,phase-1,with +6,2441.8114041555423,3.618640059947563,85.3731006735777,503.0244742591923,0.5088992080018215,50,mac,phase-1,with +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948,50,mac,phase-1,with +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731,50,mac,phase-1,with +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782,50,mac,phase-1,with +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501,50,mac,phase-1,with +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053,50,mac,phase-1,with +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794,50,mac,phase-1,with +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086,50,mac,phase-1,with +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143,50,mac,phase-1,with +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084,50,mac,phase-1,with +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.4943381562488,0.5113979170018865,50,mac,phase-1,with +17,2419.5950410391,3.585716542012196,84.59634952821366,498.4478004187879,0.5042690839982242,50,mac,phase-1,with +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158,50,mac,phase-1,with +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739,50,mac,phase-1,with +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313,50,mac,phase-1,with +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094,50,mac,phase-1,with +22,2415.987574562841,3.580370460540182,84.47022160607762,497.7046455934235,0.5035172499992768,50,mac,phase-1,with +23,2406.058253789995,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208,50,mac,phase-1,with +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778,50,mac,phase-1,with +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196,50,mac,phase-1,with +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.2896519401702,0.5071441250001953,50,mac,phase-1,with +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398,50,mac,phase-1,with +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694,50,mac,phase-1,with +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691,50,mac,phase-1,with +0,1521.3288350694506,1.7571209502823384,0.0,461.5145757491573,0.503729125000973,50,mac,phase-30,with +1,1495.508336847177,1.7272985099740834,0.0,453.6815971005006,0.495179667002958,50,mac,phase-30,with +2,1500.021420887732,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655,50,mac,phase-30,with +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.4942111669988662,50,mac,phase-30,with +4,1500.8048946803583,1.7334159860374627,0.0,455.2883757173012,0.4969334170018555,50,mac,phase-30,with +5,1504.431192242494,1.737604326698274,0.0,456.3884595008659,0.4981341249986144,50,mac,phase-30,with +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176,50,mac,phase-30,with +7,1501.5407983498535,1.7342659480741058,0.0,455.5116215153104,0.4971770830015884,50,mac,phase-30,with +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.4967821669997647,50,mac,phase-30,with +9,1494.8181096605138,1.7265013038591517,0.0,453.47220784823634,0.4949511250015348,50,mac,phase-30,with +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753,50,mac,phase-30,with +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.4975821669977449,50,mac,phase-30,with +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215,50,mac,phase-30,with +13,1495.377338579858,1.727147208168287,0.0,453.6418570992782,0.4951362920000974,50,mac,phase-30,with +14,1493.8437393132476,1.7253759149813177,0.0,453.1766201310545,0.4946284999969066,50,mac,phase-30,with +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.4986748330011323,50,mac,phase-30,with +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988,50,mac,phase-30,with +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807,50,mac,phase-30,with +18,1510.2273283587142,1.7442988111290731,0.0,458.1467915846323,0.5000532909980393,50,mac,phase-30,with +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.498009249997267,50,mac,phase-30,with +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538,50,mac,phase-30,with +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508,50,mac,phase-30,with +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381,50,mac,phase-30,with +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588,50,mac,phase-30,with +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561,50,mac,phase-30,with +25,1492.5965513345484,1.723935424223635,0.0,452.79826969320027,0.4942155419994378,50,mac,phase-30,with +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.4946941249982046,50,mac,phase-30,with +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.493535375000647,50,mac,phase-30,with +28,1487.032962421571,1.7175095296948537,0.0,451.1104837802367,0.4923733750001702,50,mac,phase-30,with +29,1498.2415539693543,1.730455350859723,0.0,454.5107535008094,0.4960846659996605,50,mac,phase-30,with +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.0407597657533,0.5058008339983644,50,mac,phase-6,with +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779,50,mac,phase-6,with +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403,50,mac,phase-6,with +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998,50,mac,phase-6,with +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058,50,mac,phase-6,with +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037,50,mac,phase-6,with +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125,50,mac,phase-6,with +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338,50,mac,phase-6,with +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.4043978970143,0.5051622499995574,50,mac,phase-6,with +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222,50,mac,phase-6,with +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.4935359189019,0.5092656669985445,50,mac,phase-6,with +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208,50,mac,phase-6,with +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372,50,mac,phase-6,with +13,2398.9191436633346,3.949302447235029,88.77633652398067,502.2915339403542,0.5040455000016664,50,mac,phase-6,with +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032,50,mac,phase-6,with +15,2410.4932406132943,3.968356699034115,89.20465689005259,504.7149465536247,0.5064773749982123,50,mac,phase-6,with +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413,50,mac,phase-6,with +17,2373.612793217755,3.907641004826973,87.83982931018615,496.99282863912794,0.4987282920010329,50,mac,phase-6,with +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098,50,mac,phase-6,with +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619,50,mac,phase-6,with +20,2393.140126541887,3.93978854322512,88.56247355569073,501.0815092580857,0.5028312499998719,50,mac,phase-6,with +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148,50,mac,phase-6,with +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179,0.5074979160017392,50,mac,phase-6,with +23,2411.814549757005,3.970531949270705,89.25355432184146,504.991605480774,0.5067549999985204,50,mac,phase-6,with +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327,50,mac,phase-6,with +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187,50,mac,phase-6,with +26,2412.5966695833,3.97181954070628,89.28249807890167,505.15536763520623,0.5069193339986668,50,mac,phase-6,with +27,2417.6673365095417,3.980167299051456,89.47014726859365,506.2170762280991,0.5079847500019241,50,mac,phase-6,with +28,2397.318028700774,3.946666557127332,88.71708437240011,501.95628858926193,0.5037090839978191,50,mac,phase-6,with +29,2408.678545967045,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665,50,mac,phase-6,with +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876,50,mac,phase-7,with +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299,50,mac,phase-7,with +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715,50,mac,phase-7,with +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753,50,mac,phase-7,with +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591,50,mac,phase-7,with +5,2569.226557781062,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354,50,mac,phase-7,with +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132,50,mac,phase-7,with +7,2536.397739459655,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457,50,mac,phase-7,with +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515,50,mac,phase-7,with +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187,50,mac,phase-7,with +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992,50,mac,phase-7,with +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.0401821950901,0.5058779999999388,50,mac,phase-7,with +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219,50,mac,phase-7,with +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024,50,mac,phase-7,with +14,2717.7183010787217,4.573731420434627,86.29815718866575,543.2458358441811,0.542000666999229,50,mac,phase-7,with +15,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052,50,mac,phase-7,with +16,2522.4157528639216,4.245050776489145,80.09653945716727,504.2067286617571,0.5030510409997078,50,mac,phase-7,with +17,2532.4287624670173,4.2619019772249285,80.414491570275,506.2082332948864,0.5050479580022511,50,mac,phase-7,with +18,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621,50,mac,phase-7,with +19,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573,50,mac,phase-7,with +20,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543,50,mac,phase-7,with +21,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337,50,mac,phase-7,with +22,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537,50,mac,phase-7,with +23,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612,50,mac,phase-7,with +24,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669,50,mac,phase-7,with +25,2557.594577302347,4.304254298283186,81.21360435675406,511.2386384363951,0.5100668329978362,50,mac,phase-7,with +26,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346,50,mac,phase-7,with +27,2521.414791373941,4.243366227720586,80.06475502536362,504.0066460553087,0.5028514170007838,50,mac,phase-7,with +28,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381,50,mac,phase-7,with +29,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018,50,mac,phase-7,with +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081,50,mac,phase-9,with +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.6595778983575,0.5096410420010216,50,mac,phase-9,with +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707,50,mac,phase-9,with +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663,50,mac,phase-9,with +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053,50,mac,phase-9,with +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341,50,mac,phase-9,with +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594,50,mac,phase-9,with +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114,50,mac,phase-9,with +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416,50,mac,phase-9,with +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249,50,mac,phase-9,with +10,2437.183217540223,4.046977031692036,79.90271180753945,501.5575832004443,0.5075140840017411,50,mac,phase-9,with +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847,50,mac,phase-9,with +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441,50,mac,phase-9,with +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.5243528486659,0.5064685830002418,50,mac,phase-9,with +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114,50,mac,phase-9,with +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727,50,mac,phase-9,with +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319,50,mac,phase-9,with +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087,50,mac,phase-9,with +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663,50,mac,phase-9,with +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326,50,mac,phase-9,with +20,2401.802815837927,3.988227376749909,78.74277027318622,494.2765102623276,0.5001465409986849,50,mac,phase-9,with +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738,50,mac,phase-9,with +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097,50,mac,phase-9,with +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266,50,mac,phase-9,with +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476,50,mac,phase-9,with +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851,50,mac,phase-9,with +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238,50,mac,phase-9,with +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105,50,mac,phase-9,with +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783,50,mac,phase-9,with +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012,50,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n50/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n50/without_smell.csv new file mode 100644 index 000000000..d044f249b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n50/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.0626812500013329,50,mac,phase-19,without +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.0595197920010832,50,mac,phase-19,without +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.0632364579978457,50,mac,phase-19,without +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282,50,mac,phase-19,without +4,360.278246721321,1.1641760490899935,10.648786801970235,64.88569450075113,0.0639529170002788,50,mac,phase-19,without +5,351.330385453154,1.1352626026807866,10.384313806874252,63.274195061179135,0.0623645839987148,50,mac,phase-19,without +6,354.42246275922594,1.1452541088969477,10.475706701969138,63.83107459881516,0.062913458001276,50,mac,phase-19,without +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553,50,mac,phase-19,without +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.0629884580012003,50,mac,phase-19,without +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.10978890296269,0.0612169169980916,50,mac,phase-19,without +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.0612827920012932,50,mac,phase-19,without +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.55417587441491,0.0596836670010816,50,mac,phase-19,without +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.0632213749995571,50,mac,phase-19,without +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.0578171670022129,50,mac,phase-19,without +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.0632325830010813,50,mac,phase-19,without +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.0619718330017349,50,mac,phase-19,without +16,356.72656097066806,1.1526993986887202,10.543809205652703,64.24604001515073,0.0633224579978559,50,mac,phase-19,without +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.0598752080004487,50,mac,phase-19,without +18,351.34986607256644,1.1353255508902549,10.384889597849094,63.277703498148014,0.0623680419994343,50,mac,phase-19,without +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.063180832999933,50,mac,phase-19,without +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.0622285000026749,50,mac,phase-19,without +21,351.2292135769868,1.1349356834838955,10.381323457749753,63.25597412358772,0.0623466249999182,50,mac,phase-19,without +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.0580599590030033,50,mac,phase-19,without +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.0631387080029526,50,mac,phase-19,without +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.0646871669996471,50,mac,phase-19,without +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.0642974580005102,50,mac,phase-19,without +26,347.6089907752034,1.1232375676066255,10.2743201036959,62.60397619454575,0.0617039999997359,50,mac,phase-19,without +27,359.7827304146522,1.1625748749380511,10.634140767815705,64.79645258845903,0.0638649580032506,50,mac,phase-19,without +28,357.17747694959303,1.1541564546936098,10.557136982638609,64.32724946012914,0.0634024999999383,50,mac,phase-19,without +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.063656832997367,50,mac,phase-19,without +0,245.1615255437683,0.0,0.0,54.62988385920401,0.0630969579979137,50,mac,phase-26,without +1,241.02349681651853,0.0,0.0,53.7077977844241,0.062031957997533,50,mac,phase-26,without +2,241.0796768893551,0.0,0.0,53.72031651405535,0.0620464170024206,50,mac,phase-26,without +3,239.89379555329384,0.0,0.0,53.456063958454976,0.0617412079991481,50,mac,phase-26,without +4,238.74985015186837,0.0,0.0,53.20115607973081,0.0614467920022434,50,mac,phase-26,without +5,242.9289988271171,0.0,0.0,54.132405003283566,0.0625223749993892,50,mac,phase-26,without +6,222.20890597794013,0.0,0.0,49.51530098016318,0.0571896670007845,50,mac,phase-26,without +7,239.96163203488717,0.0,0.0,53.471180111377585,0.0617586670014134,50,mac,phase-26,without +8,237.5137840474237,0.0,0.0,52.92572074142338,0.0611286669991386,50,mac,phase-26,without +9,240.0446801289891,0.0,0.0,53.48968590149068,0.0617800410000199,50,mac,phase-26,without +10,239.2075238922962,0.0,0.0,53.30314052949111,0.0615645830002904,50,mac,phase-26,without +11,241.35311704054809,0.0,0.0,53.781247786484734,0.0621167919998697,50,mac,phase-26,without +12,237.1938775091375,0.0,0.0,52.85443526139705,0.0610463329976482,50,mac,phase-26,without +13,236.38327460023032,0.0,0.0,52.67380682603668,0.0608377089993155,50,mac,phase-26,without +14,236.86118776917695,0.0,0.0,52.78030127232645,0.0609607089972996,50,mac,phase-26,without +15,228.8396288104752,0.0,0.0,50.9928395843162,0.0588962090005225,50,mac,phase-26,without +16,234.1374673466227,0.0,0.0,52.173368638753345,0.0602597080032865,50,mac,phase-26,without +17,238.49162938758172,0.0,0.0,53.14361617687808,0.061380334002024,50,mac,phase-26,without +18,221.11886761338675,0.0,0.0,49.27240532544921,0.0569091249999473,50,mac,phase-26,without +19,238.6339309293796,0.0,0.0,53.17532554352589,0.0614169579966983,50,mac,phase-26,without +20,240.64174911522755,0.0,0.0,53.622732101549154,0.0619337080024706,50,mac,phase-26,without +21,238.3167792135448,0.0,0.0,53.10465392666686,0.0613353330008976,50,mac,phase-26,without +22,237.09123886601097,0.0,0.0,52.83156406600441,0.0610199170005216,50,mac,phase-26,without +23,236.7632388971176,0.0,0.0,52.758475108972014,0.0609355000015057,50,mac,phase-26,without +24,235.63175807428223,0.0,0.0,52.50634473980698,0.0606442919997789,50,mac,phase-26,without +25,226.50542703780656,0.0,0.0,50.47270425124547,0.0582954580022487,50,mac,phase-26,without +26,236.4643838585177,0.0,0.0,52.6918805810858,0.0608585840018349,50,mac,phase-26,without +27,237.71679612865097,0.0,0.0,52.97095837157298,0.061180916000012,50,mac,phase-26,without +28,237.03425063747616,0.0,0.0,52.818865253255176,0.0610052500014717,50,mac,phase-26,without +29,237.04752730136903,0.0,0.0,52.82182372157477,0.0610086670021701,50,mac,phase-26,without +0,356.01103457289975,0.2302788063214099,9.967782616483888,63.58984751704077,0.0625623749983788,50,mac,phase-21,without +1,351.19450650439023,0.2271633289161644,9.832926951656832,62.72953068499227,0.0617159590001392,50,mac,phase-21,without +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.070130166997842,50,mac,phase-21,without +3,372.26214494736774,0.2407905206645328,10.422789680193349,66.49258234922029,0.0654182079997554,50,mac,phase-21,without +4,374.1580309147266,0.2420168375903794,10.475871684269285,66.83122100888622,0.0657513750011276,50,mac,phase-21,without +5,405.53899035120986,0.2623150002271732,11.3544921526905,72.43641363416084,0.0712660000026517,50,mac,phase-21,without +6,333.0413416768214,0.2154213076822906,9.324665175390583,59.48705539283827,0.0585258749997592,50,mac,phase-21,without +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.0645243750004738,50,mac,phase-21,without +8,366.1896728586104,0.2368626603225164,10.25276943967464,65.40793177191775,0.0643510829977458,50,mac,phase-21,without +9,352.4134565857517,0.2279517830438238,9.867055751754089,62.947256660530215,0.0619301670012646,50,mac,phase-21,without +10,360.33604592969425,0.2330763557113158,10.088876540075528,64.36237079856764,0.0633224159973906,50,mac,phase-21,without +11,359.41703628607354,0.2324819122160889,10.063145628782136,64.1982194733857,0.0631609169977309,50,mac,phase-21,without +12,358.8771446574472,0.2321326938275855,10.04802946139406,64.10178530981754,0.0630660409988195,50,mac,phase-21,without +13,358.17342362709223,0.2316775055802666,10.028326312974398,63.976088326665064,0.0629423750033311,50,mac,phase-21,without +14,354.21164807047495,0.22911490819565,9.917402454754566,63.268445363170216,0.0622461659986584,50,mac,phase-21,without +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.0628698330001498,50,mac,phase-21,without +16,345.8859837170851,0.2237296143060058,9.684296162102823,61.781334921929904,0.0607830840017413,50,mac,phase-21,without +17,349.5224448786402,0.2260817884079173,9.78611169822842,62.43087099892917,0.0614221249998081,50,mac,phase-21,without +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.0565261669980827,50,mac,phase-21,without +19,360.3958018453322,0.2331150076619224,10.090549617366072,64.3730442586423,0.0633329169977514,50,mac,phase-21,without +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.0621866250003222,50,mac,phase-21,without +21,366.208166991892,0.2368746228925562,10.253287248063508,65.41123515018734,0.064354333000665,50,mac,phase-21,without +22,359.1301384857916,0.2322963379597616,10.05511291454397,64.14697446803133,0.0631104999993112,50,mac,phase-21,without +23,365.57154258781645,0.2364628347916018,10.235462705979335,65.29752280745234,0.0642424580000806,50,mac,phase-21,without +24,349.0676830815694,0.2257876345935119,9.773379040262016,62.349642524179785,0.0613422089991217,50,mac,phase-21,without +25,357.242315974124,0.2310752367232367,10.00225667530582,63.809776083716656,0.0627787500015983,50,mac,phase-21,without +26,354.99835934867855,0.2296237770690029,9.939429207415412,63.40896586776896,0.0623844159999862,50,mac,phase-21,without +27,365.0418539985884,0.236120216040484,10.220632208609526,65.20291108660797,0.0641493749972141,50,mac,phase-21,without +28,374.2950808651228,0.2421054856824856,10.479708880256164,66.85570054632068,0.0657754590029071,50,mac,phase-21,without +29,373.26936300344295,0.2414420200539734,10.450990296621994,66.67248925204723,0.0655952080014685,50,mac,phase-21,without +0,250.10934507332675,0.0,0.0,55.11416653061159,0.0635523749988351,50,mac,phase-28,without +1,239.838881397826,0.0,0.0,52.85096422926539,0.0609426669980166,50,mac,phase-28,without +2,241.89828862855623,0.0,0.0,53.304775793305645,0.0614659590028168,50,mac,phase-28,without +3,226.9506637505054,0.0,0.0,50.01091291695259,0.0576677919998473,50,mac,phase-28,without +4,240.77109914478743,0.0,0.0,53.05638799755266,0.0611795420009002,50,mac,phase-28,without +5,241.309764565714,0.0,0.0,53.17508846316111,0.0613164160022279,50,mac,phase-28,without +6,232.6059540307432,0.0,0.0,51.257114294164616,0.0591047919988341,50,mac,phase-28,without +7,229.17355489939848,0.0,0.0,50.50074984377193,0.058232625000528,50,mac,phase-28,without +8,237.4643088347507,0.0,0.0,52.32770274280641,0.0603392919983889,50,mac,phase-28,without +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362,50,mac,phase-28,without +10,246.9017604503701,0.0,0.0,54.40734226933166,0.0627373329989495,50,mac,phase-28,without +11,227.72021219973772,0.0,0.0,50.18049083245163,0.0578633330005686,50,mac,phase-28,without +12,241.19055480567744,0.0,0.0,53.1488193664794,0.061286124997423,50,mac,phase-28,without +13,239.55814760206837,0.0,0.0,52.789101650057795,0.0608713330002501,50,mac,phase-28,without +14,237.7916072840164,0.0,0.0,52.3998263223262,0.0604224579983565,50,mac,phase-28,without +15,240.87981688341813,0.0,0.0,53.08034506940843,0.0612071670002478,50,mac,phase-28,without +16,240.89932900283105,0.0,0.0,53.084644765600814,0.0612121249978372,50,mac,phase-28,without +17,240.4998774005804,0.0,0.0,52.99662149673451,0.0611106249998556,50,mac,phase-28,without +18,241.5399942998725,0.0,0.0,53.225821952967294,0.0613749170006485,50,mac,phase-28,without +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666,50,mac,phase-28,without +20,241.08921611249076,0.0,0.0,53.12648834317978,0.0612603750014386,50,mac,phase-28,without +21,240.12551449843392,0.0,0.0,52.91412678097035,0.0610154999994847,50,mac,phase-28,without +22,242.95922422123857,0.0,0.0,53.538563862744645,0.061735540999507,50,mac,phase-28,without +23,218.386555036205,0.0,0.0,48.123723480956784,0.0554916660003073,50,mac,phase-28,without +24,240.68271211186973,0.0,0.0,53.03691100579953,0.0611570830005803,50,mac,phase-28,without +25,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842,50,mac,phase-28,without +26,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115,50,mac,phase-28,without +27,241.06396210591663,0.0,0.0,53.12092336309683,0.0612539579997246,50,mac,phase-28,without +28,240.81127256853603,0.0,0.0,53.06524062465436,0.0611897500020859,50,mac,phase-28,without +29,238.5282000000232,0.0,0.0,52.562142103063344,0.0606096250012342,50,mac,phase-28,without +0,352.49020382752724,0.3393570846515136,10.68974816652268,63.3579677044376,0.0637874170024588,50,mac,phase-17,without +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375,50,mac,phase-17,without +2,345.6512964466877,0.3327729820416748,10.48234893431276,62.12871574718069,0.0625498330009577,50,mac,phase-17,without +3,348.5358761098863,0.335550087715304,10.569827763032078,62.64720137644727,0.0630718329994124,50,mac,phase-17,without +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.0638328329987416,50,mac,phase-17,without +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.0629714159986178,50,mac,phase-17,without +6,333.6775775330467,0.3212453812776034,10.119229510244509,59.976512684528565,0.0603830420004669,50,mac,phase-17,without +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.0620619170003919,50,mac,phase-17,without +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463,50,mac,phase-17,without +9,317.4674720822513,0.3056392337366432,9.62763586270426,57.06284493863128,0.057449625001027,50,mac,phase-17,without +10,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.0615481249988079,50,mac,phase-17,without +11,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.0638772080019407,50,mac,phase-17,without +12,347.3698925446688,0.3344275464953006,10.534467714601972,62.43762293067263,0.0628608340011851,50,mac,phase-17,without +13,348.5754810580413,0.3355882170579005,10.571028837323867,62.65432012471003,0.0630789999995613,50,mac,phase-17,without +14,346.10834760015814,0.3332130043324907,10.496209636473456,62.21086790887602,0.0626325420016655,50,mac,phase-17,without +15,353.50238182134535,0.3403315508051847,10.720443850363315,63.53990053532798,0.0639705829999002,50,mac,phase-17,without +16,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.0620592500017664,50,mac,phase-17,without +17,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.0616400409999187,50,mac,phase-17,without +18,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.0625483750009152,50,mac,phase-17,without +19,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.0630281250014377,50,mac,phase-17,without +20,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407,50,mac,phase-17,without +21,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.0618219999996654,50,mac,phase-17,without +22,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.0640606250017299,50,mac,phase-17,without +23,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.061287207998248,50,mac,phase-17,without +24,345.3885786449535,0.3325200526089857,10.47438165718305,62.08149382209764,0.0625022909989638,50,mac,phase-17,without +25,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502,50,mac,phase-17,without +26,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.0597877090003748,50,mac,phase-17,without +27,347.5174813223003,0.334569636393858,10.538943546406529,62.46415111473329,0.0628875419970427,50,mac,phase-17,without +28,346.21679562001196,0.3333174117839722,10.499498471195126,62.23036078006762,0.0626521669983048,50,mac,phase-17,without +29,349.8149219362817,0.336781478710197,10.608616579371208,62.87710207519379,0.0633032919977267,50,mac,phase-17,without +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.0610695840005064,50,mac,phase-10,without +1,348.61418586415783,0.328045719266169,8.988452707893032,60.78687178002113,0.0609865000005811,50,mac,phase-10,without +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.0629059159982716,50,mac,phase-10,without +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471,50,mac,phase-10,without +4,358.8403201050791,0.337668504850926,9.252117032915374,62.5699739488766,0.0627754579982138,50,mac,phase-10,without +5,342.5880675551526,0.3223751459067964,8.833078997846224,59.736114536529385,0.059932291998848,50,mac,phase-10,without +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.0610672920010983,50,mac,phase-10,without +7,345.5035960299564,0.3251186562811295,8.908251182102951,60.24448700889331,0.0604423340009816,50,mac,phase-10,without +8,376.33157594924216,0.3541277650788013,9.703100763159156,65.61987486910189,0.0658353750004607,50,mac,phase-10,without +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.0568824580004729,50,mac,phase-10,without +10,374.6764809907141,0.3525703218130366,9.660426817677203,65.33128063195569,0.0655458330002147,50,mac,phase-10,without +11,345.8784849508381,0.32547142650874,8.917917086339479,60.30985533206954,0.0605079169981763,50,mac,phase-10,without +12,362.25983335779995,0.3408862645693045,9.340283649198945,63.16622482469214,0.0633736670024518,50,mac,phase-10,without +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.061856042000727,50,mac,phase-10,without +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.064390874998935,50,mac,phase-10,without +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.062227124999481,50,mac,phase-10,without +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.0621582500025397,50,mac,phase-10,without +17,360.4265799552419,0.3391611743250606,9.29301617650666,62.846565602433735,0.06305295799757,50,mac,phase-10,without +18,349.90653892523665,0.3292618226453718,9.021773940483188,61.0122157361874,0.0612125840016233,50,mac,phase-10,without +19,360.72001805303375,0.3394372993817952,9.300582003061187,62.89773157544665,0.0631042920031177,50,mac,phase-10,without +20,358.5747544990663,0.3374186077905959,9.245269853462329,62.52366802359742,0.0627290000011271,50,mac,phase-10,without +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.0568161250012053,50,mac,phase-10,without +22,362.4810980291357,0.3410944744792845,9.345988600732396,63.20480612101142,0.0634123750023718,50,mac,phase-10,without +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079,50,mac,phase-10,without +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.0637672089978877,50,mac,phase-10,without +25,332.0330087474858,0.3124428425213943,8.560933885086206,57.895658719214374,0.0580857919994741,50,mac,phase-10,without +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.0603039170018746,50,mac,phase-10,without +27,366.3288499695804,0.3447152065207306,9.44519665866802,63.875727768291384,0.0640855000019655,50,mac,phase-10,without +28,354.5207373187578,0.3336037802943049,9.140743580063956,61.8167804885347,0.0620197909993294,50,mac,phase-10,without +29,361.6341438543446,0.3402974911586943,9.324151257748223,63.057125111706064,0.0632642089985893,50,mac,phase-10,without +0,378.2830151197381,0.2429563359792794,9.718253439171178,64.97346585045874,0.0655562920001102,50,mac,phase-11,without +1,353.2040927683805,0.2268491283033914,9.073965132135658,60.66593831199269,0.0612101250007981,50,mac,phase-11,without +2,357.24886858454886,0.2294469290844887,9.177877163379549,61.36066446373754,0.0619110829975397,50,mac,phase-11,without +3,348.1538269708763,0.2236055407648531,8.944221630594125,59.79851033025787,0.0603349160010111,50,mac,phase-11,without +4,358.26397198427844,0.230098890163313,9.203955606532524,61.53501748367458,0.0620870000020659,50,mac,phase-11,without +5,356.8740379487522,0.2292061900762698,9.168247603050794,61.29628397468245,0.0618461250014661,50,mac,phase-11,without +6,349.28482212183866,0.2243319345676548,8.973277382706195,59.99276878723571,0.0605309169986867,50,mac,phase-11,without +7,362.52080833113473,0.2328328891015637,9.313315564062547,62.266166914018186,0.0628247080021537,50,mac,phase-11,without +8,368.1793617620893,0.2364671559165634,9.45868623666254,63.23807369654383,0.0638053330003458,50,mac,phase-11,without +9,372.0570396746568,0.2389576362714559,9.558305450858237,63.90409930002364,0.0644773329986492,50,mac,phase-11,without +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.0619698750015231,50,mac,phase-11,without +11,363.9811926115906,0.2337708366163073,9.350833464652291,62.517000877961046,0.0630777920014225,50,mac,phase-11,without +12,354.28483392042943,0.2275432459347652,9.101729837390607,60.851565198554354,0.0613974170009896,50,mac,phase-11,without +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.0630681250004272,50,mac,phase-11,without +14,356.9596353834419,0.2292611659495451,9.170446637981808,61.31098609393551,0.0618609590019332,50,mac,phase-11,without +15,378.40779325868374,0.2430364760813639,9.72145904325456,64.99489760347333,0.0655779160006204,50,mac,phase-11,without +16,387.2890894266006,0.2487405840890177,9.94962336356071,66.52033905923446,0.0671170409987098,50,mac,phase-11,without +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.0630379169997468,50,mac,phase-11,without +18,365.2316744876873,0.234573972053749,9.382958882149962,62.731782240659754,0.0632944999997562,50,mac,phase-11,without +19,373.77107717779,0.2400584952972319,9.602339811889276,64.19850045663115,0.0647743749977962,50,mac,phase-11,without +20,344.6805585467942,0.2213747967545242,8.85499187018097,59.20194564635276,0.05973300000187,50,mac,phase-11,without +21,362.17699331162976,0.2326120702065701,9.304482808262808,62.20711363238563,0.0627651249997143,50,mac,phase-11,without +22,356.0515201334432,0.2286779191608498,9.147116766433992,61.155009238444414,0.0617035830000531,50,mac,phase-11,without +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.0631745829996361,50,mac,phase-11,without +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986,50,mac,phase-11,without +25,373.78310260490974,0.2400662187571674,9.6026487502867,64.20056593048821,0.0647764589994039,50,mac,phase-11,without +26,367.3291981816165,0.2359211292110574,9.436845168442298,63.0920505547285,0.0636579999991227,50,mac,phase-11,without +27,372.0101555478638,0.2389275244366498,9.557100977465993,63.89604653505835,0.0644692079986271,50,mac,phase-11,without +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603,50,mac,phase-11,without +29,358.8888493859939,0.2305002243969132,9.22000897587653,61.64234572443166,0.0621952910005347,50,mac,phase-11,without +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057,50,mac,phase-29,without +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.0611507499997969,50,mac,phase-29,without +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.0614833750005345,50,mac,phase-29,without +3,232.13575724922015,0.7657034323778565,0.0,52.259259259788706,0.0585086249993764,50,mac,phase-29,without +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.0618704159969638,50,mac,phase-29,without +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.0566604589985217,50,mac,phase-29,without +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.0621952089968544,50,mac,phase-29,without +7,244.0876652220984,0.8051269880882851,0.0,54.949916937025456,0.0615210420000948,50,mac,phase-29,without +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702,50,mac,phase-29,without +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.059902625001996,50,mac,phase-29,without +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.0606438329996308,50,mac,phase-29,without +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.0611773339987848,50,mac,phase-29,without +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.0575685409967263,50,mac,phase-29,without +13,243.28010263868015,0.8024632302540302,0.0,54.76811546483757,0.0613174999998591,50,mac,phase-29,without +14,241.72548654155145,0.7973353047000047,0.0,54.41813454577533,0.0609256669995375,50,mac,phase-29,without +15,242.0336340586369,0.7983517341131507,0.0,54.48750585322254,0.0610033339980873,50,mac,phase-29,without +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.0621428749982442,50,mac,phase-29,without +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.0613224580010864,50,mac,phase-29,without +18,250.56832102039976,0.8265035327775692,0.0,56.4088661120691,0.0631544579991896,50,mac,phase-29,without +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.0616879589979362,50,mac,phase-29,without +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.0614238340021984,50,mac,phase-29,without +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.0608379170007538,50,mac,phase-29,without +22,249.0137049377049,0.821375607271154,0.0,56.05888519625626,0.0627626250025059,50,mac,phase-29,without +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.061630124997464,50,mac,phase-29,without +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.0607461250001506,50,mac,phase-29,without +25,242.13265613002585,0.7986783599671,0.0,54.50979806775457,0.0610282920024474,50,mac,phase-29,without +26,233.01622352722865,0.7686076641909685,0.0,52.4574730810336,0.0587305420012853,50,mac,phase-29,without +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.0629959580001013,50,mac,phase-29,without +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.0622290829996927,50,mac,phase-29,without +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.0632171249999373,50,mac,phase-29,without +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.0634840419988904,50,mac,phase-16,without +1,347.5338735270447,0.2657494731615711,9.998823927704114,61.52100303690372,0.0620952919998671,50,mac,phase-16,without +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.0612300419998064,50,mac,phase-16,without +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.0624869169987505,50,mac,phase-16,without +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.0628582499994081,50,mac,phase-16,without +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.0631118750025052,50,mac,phase-16,without +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.0606008330032636,50,mac,phase-16,without +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822,50,mac,phase-16,without +8,349.36704941119723,0.2671512517003993,10.051565845227524,61.845514768642445,0.0624228329979814,50,mac,phase-16,without +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.0633064590001595,50,mac,phase-16,without +10,347.2269851313199,0.2655148041531791,9.989994506263365,61.46667716146096,0.0620404590008547,50,mac,phase-16,without +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.0602130829975067,50,mac,phase-16,without +12,350.48943947996935,0.2680095121238534,10.083857893659983,62.04420205667207,0.0626233750008395,50,mac,phase-16,without +13,317.649151194063,0.2428974583781785,9.139016871478969,56.230761614548335,0.0567556669993791,50,mac,phase-16,without +14,360.8859284017174,0.2759594176270062,10.382973088216112,63.88460518065195,0.0644809580007859,50,mac,phase-16,without +15,353.76099420840256,0.2705111789014739,10.177983106167956,62.62333791569122,0.0632079170027282,50,mac,phase-16,without +16,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.0618185419989458,50,mac,phase-16,without +17,355.1032874398208,0.2715375931484005,10.21660194220857,62.86095281385472,0.0634477499988861,50,mac,phase-16,without +18,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587,50,mac,phase-16,without +19,344.7340828392565,0.2636085512057017,9.918271739114529,61.025379604119955,0.0615950419996806,50,mac,phase-16,without +20,349.0872158684356,0.2669372707845043,10.043514813266976,61.79597818661276,0.0623728339996887,50,mac,phase-16,without +21,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.0648655000004509,50,mac,phase-16,without +22,351.9040263790746,0.2690912073248515,10.12455667559754,62.29461449570313,0.062876125000912,50,mac,phase-16,without +23,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.0622356249987205,50,mac,phase-16,without +24,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.0632546249980805,50,mac,phase-16,without +25,326.03476636272546,0.2493097047315813,9.380277640525748,57.715196645361075,0.0582539589995576,50,mac,phase-16,without +26,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.062940374999016,50,mac,phase-16,without +27,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.063144416999421,50,mac,phase-16,without +28,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.0632301670011656,50,mac,phase-16,without +29,353.3169846035595,0.2701716571237312,10.165208599280389,62.544738624143775,0.0631285839990596,50,mac,phase-16,without +0,329.80854336715817,0.2333393777612803,10.666942983372811,62.50161904320008,0.0632824170024832,50,mac,phase-20,without +1,335.5288092279848,0.2373864629670399,10.851952592778972,63.58565972331428,0.0643799999998009,50,mac,phase-20,without +2,321.7799299616298,0.2276591378341832,10.407274872419803,60.9801262055848,0.0617419170011999,50,mac,phase-20,without +3,329.7051746137013,0.2332662444204476,10.663599744934748,62.48202975547704,0.0632625829966855,50,mac,phase-20,without +4,331.94620271569426,0.2348517706700889,10.736080944918353,62.90672428663097,0.0636925830003747,50,mac,phase-20,without +5,333.0858280497938,0.2356580550180469,10.77293965796786,63.12269330840544,0.0639112500030023,50,mac,phase-20,without +6,312.36717422581074,0.2209996179078911,10.10283967578931,59.19632622532799,0.0599358330000541,50,mac,phase-20,without +7,327.8797790820893,0.2319747780043082,10.604561280196949,62.13610125115399,0.0629123329999856,50,mac,phase-20,without +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.063090290997934,50,mac,phase-20,without +9,331.0710760494818,0.2342326189959948,10.707776868388336,62.7408800882129,0.063524667002639,50,mac,phase-20,without +10,310.75220077947944,0.2198570250107495,10.050606857634266,58.89027455645078,0.0596259579979232,50,mac,phase-20,without +11,341.9923928625649,0.2419594451220895,11.061003205581237,64.81056565770255,0.065620208002656,50,mac,phase-20,without +12,327.95947629563574,0.2320311637426167,10.607138913948194,62.15120457391521,0.0629276250001567,50,mac,phase-20,without +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519,50,mac,phase-20,without +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.0625667500025883,50,mac,phase-20,without +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.0641760830003477,50,mac,phase-20,without +16,327.93276637308287,0.2320122664859086,10.606275039355824,62.14614280872553,0.0629225000011501,50,mac,phase-20,without +17,324.008361361325,0.2292357519233146,10.479348659351526,61.40243355088785,0.0621694999972533,50,mac,phase-20,without +18,324.96622889461435,0.2299134427190519,10.510328810013805,61.58395787117464,0.0623532919998979,50,mac,phase-20,without +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.063567208002496,50,mac,phase-20,without +20,327.4695771381485,0.2316845603362684,10.59129418680084,62.058364375786184,0.0628336250010761,50,mac,phase-20,without +21,416.4333992141598,0.2946264194965756,13.468636319843457,78.91779093658275,0.0799036669995985,50,mac,phase-20,without +22,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.0607522499994956,50,mac,phase-20,without +23,329.8941037233372,0.2333999116700384,10.669710247773184,62.517833483046005,0.0632988340003066,50,mac,phase-20,without +24,323.0526671214134,0.2285595987315437,10.448438799156284,61.22132108880636,0.0619861249979294,50,mac,phase-20,without +25,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.0633283329989353,50,mac,phase-20,without +26,315.26661635015887,0.2230509717456147,10.1966158512281,59.745796003289655,0.0604921669983014,50,mac,phase-20,without +27,333.9946170348847,0.236301022765736,10.802332469290793,63.29491681225073,0.0640856249992793,50,mac,phase-20,without +28,316.09592705316356,0.2236377086488927,10.22343810966367,59.90295767381056,0.0606512920021486,50,mac,phase-20,without +29,325.3592739458097,0.2301915218941447,10.523041000875187,61.65844336450306,0.0624287079990608,50,mac,phase-20,without +0,344.373267273601,0.2352735575751715,10.587310090882715,63.08692393837098,0.0634621249992051,50,mac,phase-18,without +1,342.4823762323536,0.233981713217497,10.529177094787368,62.74052510132029,0.0631136660012998,50,mac,phase-18,without +2,345.31927445296463,0.235919863475576,10.616393856400922,63.260226249093755,0.0636364580022927,50,mac,phase-18,without +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.0636334160008118,50,mac,phase-18,without +4,328.0017047540005,0.2240886134372441,10.083987604675986,60.08776106024389,0.0604451250001147,50,mac,phase-18,without +5,318.0521033356242,0.2172911110042328,9.77809999519048,58.26505933642072,0.0586115830010385,50,mac,phase-18,without +6,346.70889830534406,0.2368692453774554,10.659116041985495,63.51479622478341,0.0638925419989391,50,mac,phase-18,without +7,314.29836506293805,0.2147265816358156,9.6626961736117,57.57739910434655,0.057919833001506,50,mac,phase-18,without +8,346.87417673892634,0.2369821625192743,10.664197313367344,63.54507414981113,0.0639229999978852,50,mac,phase-18,without +9,339.65000365733727,0.2320466548508062,10.44209946828628,62.221653022137616,0.0625917079996725,50,mac,phase-18,without +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.0635079589992528,50,mac,phase-18,without +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.0616562089999206,50,mac,phase-18,without +12,348.17607141497996,0.2378716084232734,10.704222379047303,63.783572715783464,0.0641629170022497,50,mac,phase-18,without +13,341.54157300846134,0.2333389626253396,10.50025331814028,62.56817612110891,0.0629402919985295,50,mac,phase-18,without +14,339.28033302634714,0.2317940983002566,10.43073442351155,62.15393178708312,0.0625235840016102,50,mac,phase-18,without +15,319.2664966692951,0.2181207765650074,9.815434945425334,58.48752823035984,0.0588353749990346,50,mac,phase-18,without +16,353.3388710465269,0.2413987992705141,10.862945967173138,64.72936374725073,0.0651143329996557,50,mac,phase-18,without +17,341.457685719264,0.2332816513795479,10.497674312079658,62.55280851991593,0.0629248330005793,50,mac,phase-18,without +18,422.2055693438154,0.2884480758741662,12.980163414337484,77.3452912022586,0.0778052919995389,50,mac,phase-18,without +19,314.12879430577607,0.2146107320066789,9.657482940300552,57.54633485379091,0.0578885840004659,50,mac,phase-18,without +20,342.5287288615394,0.2340133810297458,10.530602146338564,62.74901659897613,0.0631222080010047,50,mac,phase-18,without +21,341.5811371692552,0.2333659926005062,10.50146966702278,62.57542401587859,0.0629475829991861,50,mac,phase-18,without +22,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.0638293329975567,50,mac,phase-18,without +23,338.38881272636,0.2311850174784813,10.403325786531662,61.99061111530136,0.0623592920019291,50,mac,phase-18,without +24,344.76916932805335,0.2355440352621875,10.599481586798438,63.15945059816086,0.063535083001625,50,mac,phase-18,without +25,344.2170292735118,0.235166816798222,10.58250675591999,63.0583021614661,0.0634333329981018,50,mac,phase-18,without +26,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.063504041001579,50,mac,phase-18,without +27,334.4460499034867,0.2284913477771234,10.282110649970557,61.2683228253801,0.0616327079987968,50,mac,phase-18,without +28,341.1402445342186,0.2330647776439127,10.487914993976077,62.494655376803465,0.0628663339994091,50,mac,phase-18,without +29,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462,50,mac,phase-18,without +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.0610715000002528,50,mac,phase-27,without +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.0585037499986356,50,mac,phase-27,without +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.0611541670004953,50,mac,phase-27,without +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.0613001669989898,50,mac,phase-27,without +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.0593751670021447,50,mac,phase-27,without +5,234.91751197548183,0.5667089121020564,0.0,53.77067501297747,0.0606549160002032,50,mac,phase-27,without +6,236.52417105423336,0.5705847747867131,0.0,54.13842598417459,0.0610697500014794,50,mac,phase-27,without +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.060860749999847,50,mac,phase-27,without +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.0579030840017367,50,mac,phase-27,without +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.061600166001881,50,mac,phase-27,without +10,211.58113691439135,0.5104128462529662,0.0,48.42917182388438,0.0546295419990201,50,mac,phase-27,without +11,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.0624751249997643,50,mac,phase-27,without +12,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.0611307920007675,50,mac,phase-27,without +13,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.0609432919991377,50,mac,phase-27,without +14,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.0610500000002502,50,mac,phase-27,without +15,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.0608165829980862,50,mac,phase-27,without +16,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.0616963329994177,50,mac,phase-27,without +17,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.0619737499982875,50,mac,phase-27,without +18,236.8819409910412,0.5714478497016745,0.0,54.22031656287064,0.0611621250027383,50,mac,phase-27,without +19,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.0610076659977494,50,mac,phase-27,without +20,235.3475795194772,0.5677463958891886,0.0,53.8691139158389,0.0607659580018662,50,mac,phase-27,without +21,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.061068625000189,50,mac,phase-27,without +22,238.7517986631784,0.5759586458456127,0.0,54.64831151464549,0.0616449160006595,50,mac,phase-27,without +23,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.0616773340007057,50,mac,phase-27,without +24,237.2802187825453,0.5724086447145267,0.0,54.31147905438421,0.0612649589966167,50,mac,phase-27,without +25,236.2441867895784,0.5699093480094838,0.0,54.074339902311614,0.0609974590006459,50,mac,phase-27,without +26,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.0610905829998955,50,mac,phase-27,without +27,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.0587892079965968,50,mac,phase-27,without +28,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.0620941250017494,50,mac,phase-27,without +29,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.0597400420010671,50,mac,phase-27,without +0,341.6843896416646,0.2265596975932227,10.162820720610275,60.03831986220403,0.0603289999999105,50,mac,phase-5,without +1,355.1767007392971,0.2355060059841886,10.56412655414789,62.40909158580999,0.0627112499969371,50,mac,phase-5,without +2,361.3328929961324,0.2395879748956073,10.747232016745816,63.490813347335944,0.0637982089974684,50,mac,phase-5,without +3,325.33522572126685,0.2157191039167252,9.676542661407389,57.165562537932175,0.0574423340003704,50,mac,phase-5,without +4,359.5754915168495,0.2384226996891111,10.69496110034013,63.18201541761446,0.0634879159988486,50,mac,phase-5,without +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.0637705829976766,50,mac,phase-5,without +6,362.5121173216168,0.2403698798192021,10.782306037604211,63.69801815208857,0.0640064170002006,50,mac,phase-5,without +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.0625325840010191,50,mac,phase-5,without +8,366.4686706564167,0.2429933403992532,10.899986983623648,64.39323520580211,0.0647050000006856,50,mac,phase-5,without +9,326.0245413625624,0.2161761664808124,9.6970451821393,57.28668411741529,0.0575640419992851,50,mac,phase-5,without +10,353.9262046474312,0.2346768430929258,10.526932675882676,62.18936341962535,0.0624904579999565,50,mac,phase-5,without +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.0648867500021879,50,mac,phase-5,without +12,362.23199716425125,0.2401841413422145,10.773974340207907,63.64879745568685,0.0639569579980161,50,mac,phase-5,without +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.0621640839999599,50,mac,phase-5,without +14,349.1769734349746,0.2315277838443518,10.385674875303785,61.35486271875324,0.0616519169998355,50,mac,phase-5,without +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.0615940830030012,50,mac,phase-5,without +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.0619958749994111,50,mac,phase-5,without +17,355.15546194816227,0.2354919232392854,10.563494842447945,62.40535965841063,0.0627075000011245,50,mac,phase-5,without +18,351.3492284590744,0.2329681348123066,10.450284904437757,61.736555725261255,0.0620354580023558,50,mac,phase-5,without +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.0613407090022519,50,mac,phase-5,without +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604,50,mac,phase-5,without +21,323.2755250958313,0.2143533840741516,9.61528037132623,56.80364677965019,0.0570786659991426,50,mac,phase-5,without +22,346.4812920955575,0.2297403660764329,10.305496421142848,60.88119701025472,0.0611759580024227,50,mac,phase-5,without +23,362.6600753923095,0.2404679859568216,10.786706798634572,63.72401627855775,0.0640325409985962,50,mac,phase-5,without +24,355.4261350672641,0.2356713976954484,10.571545553767258,62.45292038929383,0.0627552910009399,50,mac,phase-5,without +25,358.8557392353121,0.2379454555884422,10.673553293538694,63.05554573093719,0.063360833999468,50,mac,phase-5,without +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057,50,mac,phase-5,without +27,349.93779309502264,0.2320322583750268,10.408304161394062,61.48854846938211,0.0617862500002956,50,mac,phase-5,without +28,343.8514567140059,0.2279966086007427,10.227276442947606,60.41910127919684,0.060711624999385,50,mac,phase-5,without +29,341.386570501989,0.2263622235023134,10.153962597103774,59.98598922811306,0.0602764160030346,50,mac,phase-5,without +0,350.0910376507284,0.236639364962833,11.25727264751763,63.11509919794418,0.0630889589992875,50,mac,phase-2,without +1,356.37546692202835,0.2408872410635572,11.459350182023508,64.24806843795162,0.0642214590006915,50,mac,phase-2,without +2,332.9498947627177,0.2250530381748767,10.706094530319138,60.024860324642134,0.0600000000013096,50,mac,phase-2,without +3,344.6223300836617,0.2329428650623437,11.08142486653721,62.12918986734226,0.0621034579999104,50,mac,phase-2,without +4,354.8452791425179,0.2398529310542318,11.410146577294173,63.97220318260727,0.0639457079996645,50,mac,phase-2,without +5,360.7172223274056,0.2438219926894398,11.598960509369068,65.03080862159774,0.0650038749990926,50,mac,phase-2,without +6,345.0863790001193,0.2332565327347271,11.096346485809166,62.212849516533666,0.0621870830000261,50,mac,phase-2,without +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.0630313330002536,50,mac,phase-2,without +8,348.98767498943727,0.2358935616962206,11.22179372069164,62.91618281240628,0.0628901249983755,50,mac,phase-2,without +9,350.3400508932428,0.2368076821410486,11.265279736138456,63.1599917939054,0.0631338330022117,50,mac,phase-2,without +10,345.9441911217454,0.2338363593909055,11.123929668167364,62.36749756897438,0.0623416670023289,50,mac,phase-2,without +11,351.08109746493335,0.237308582681975,11.289108290442528,63.29358912389249,0.0632673750005778,50,mac,phase-2,without +12,329.7454850782693,0.2228870602112674,10.603055864336008,59.447163059205174,0.0594225419990834,50,mac,phase-2,without +13,345.43644252185425,0.2334931535006739,11.10760287367492,62.27595965510834,0.0622501670004567,50,mac,phase-2,without +14,335.9221662007163,0.2270621053886649,10.80166872777506,60.56070725151963,0.0605356249980104,50,mac,phase-2,without +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.0625607500005571,50,mac,phase-2,without +16,343.85677837624013,0.232425400601939,11.056808342920815,61.99117470340289,0.0619654999973136,50,mac,phase-2,without +17,355.4441283707007,0.2402577151984264,11.429402737296574,64.08016489649461,0.0640536249993601,50,mac,phase-2,without +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.23394875574533,0.0592094160019769,50,mac,phase-2,without +19,343.34116662973724,0.2320768797226883,11.04022870680789,61.89821920603703,0.061872582999058,50,mac,phase-2,without +20,348.2829310492102,0.2354171994345762,11.199132487387695,62.78913019205054,0.0627631249990372,50,mac,phase-2,without +21,343.4116854085347,0.2321245459501489,11.0424962573428,61.91093246984688,0.0618852909974521,50,mac,phase-2,without +22,353.14099187217386,0.2387009408174215,11.355344756028764,63.664950929446555,0.0636385830002836,50,mac,phase-2,without +23,348.2216627188161,0.2353757859242673,11.197162387540146,62.77808461722959,0.0627520839989301,50,mac,phase-2,without +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.0587976249989878,50,mac,phase-2,without +25,328.22177318395427,0.2218571274901197,10.554060493458554,59.17246528915051,0.0591479579998122,50,mac,phase-2,without +26,344.13585700434845,0.2326140400763266,11.065782192202397,62.0414875460717,0.0620157920020574,50,mac,phase-2,without +27,347.5217742944843,0.2349027056837959,11.174657284672003,62.6519073588067,0.0626259589989786,50,mac,phase-2,without +28,341.68127822516465,0.2309549003066968,10.986854543161437,61.59897126751471,0.0615734589991916,50,mac,phase-2,without +29,354.82354305874037,0.2398382388384687,11.409447647601445,63.968284558774464,0.0639417909987969,50,mac,phase-2,without +0,377.80027211049406,0.3116878218896733,10.909073766138569,64.90033091347199,0.0646291250013746,50,mac,phase-3,without +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.062719665998884,50,mac,phase-3,without +2,365.138799454798,0.3012420199003742,10.543470696513095,62.72528281036681,0.062463166002999,50,mac,phase-3,without +3,372.9749204140684,0.3077068735655527,10.769740574794348,64.07140900687176,0.063803666998865,50,mac,phase-3,without +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.0574257089974707,50,mac,phase-3,without +5,353.0611685087077,0.2912778913354449,10.194726196740575,60.65052981806932,0.0603970830015896,50,mac,phase-3,without +6,358.20146127741265,0.2955186682094338,10.343153387330185,61.533553802719894,0.0612764170000446,50,mac,phase-3,without +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.0627197499998146,50,mac,phase-3,without +8,370.3431490069413,0.3055356440610937,10.69374754213828,63.61931077449885,0.0633534579974366,50,mac,phase-3,without +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.96508971696144,0.0636977919966739,50,mac,phase-3,without +10,376.0095517358092,0.3102104652692531,10.85736628442386,64.59271243495337,0.0643227920008939,50,mac,phase-3,without +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.0631544160023622,50,mac,phase-3,without +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.0602364999976998,50,mac,phase-3,without +13,356.8106779834024,0.2943712624301605,10.30299418505562,61.29463842156898,0.0610384999999951,50,mac,phase-3,without +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.0637497499992605,50,mac,phase-3,without +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.0652685829991241,50,mac,phase-3,without +16,368.50737025878874,0.3040211139727838,10.640738989047431,63.30395195388854,0.0630394170002546,50,mac,phase-3,without +17,375.27104536938856,0.3096011924396825,10.83604173538889,64.46584829244057,0.0641964579990599,50,mac,phase-3,without +18,361.6927852373143,0.2983990344794049,10.443966206779171,62.133310068267214,0.0618736670003272,50,mac,phase-3,without +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.0602696669993747,50,mac,phase-3,without +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.0596034159971168,50,mac,phase-3,without +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.0610374579991912,50,mac,phase-3,without +22,365.3711704842491,0.3014337275972355,10.550180465903242,62.76520061302437,0.0625029169968911,50,mac,phase-3,without +23,360.55117343559215,0.2974571968943376,10.411001891301815,61.93719855333208,0.0616783749974274,50,mac,phase-3,without +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.0590651249985967,50,mac,phase-3,without +25,363.9940309949737,0.3002975780506703,10.510415231773464,62.52862902966181,0.062267334000353,50,mac,phase-3,without +26,358.9745505884595,0.2961564722060808,10.365476527212827,61.66635876824394,0.0614086669993412,50,mac,phase-3,without +27,374.9619557919834,0.3093461914133147,10.827116699466018,64.41275141206133,0.0641435830002592,50,mac,phase-3,without +28,361.3880799001845,0.2981476504814062,10.435167766849217,62.0809663335728,0.0618215419999614,50,mac,phase-3,without +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.063004916999489,50,mac,phase-3,without +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452,50,mac,phase-4,without +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.0633994999989226,50,mac,phase-4,without +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.0633070830008364,50,mac,phase-4,without +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.0625170000021171,50,mac,phase-4,without +4,341.2276327610607,1.1792449629834103,10.514934253268745,61.61554931588319,0.0613077500020153,50,mac,phase-4,without +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.0623294999968493,50,mac,phase-4,without +6,346.9583356729764,1.1990496384973743,10.691525943268257,62.65034361148781,0.0623373750022437,50,mac,phase-4,without +7,349.52325272198976,1.2079137081685354,10.770563897836109,63.11349125180597,0.0627982089972647,50,mac,phase-4,without +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.0630362500014598,50,mac,phase-4,without +9,349.6454613517626,1.208336047678166,10.774329758463644,63.13555849118416,0.062820166000165,50,mac,phase-4,without +10,380.9826285174108,1.3166338318735518,11.739985000872505,68.79411771539309,0.0684504579985514,50,mac,phase-4,without +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.0568042079976294,50,mac,phase-4,without +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.0622269169980427,50,mac,phase-4,without +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.0617767499970796,50,mac,phase-4,without +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.0641705000016372,50,mac,phase-4,without +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.0611342090014659,50,mac,phase-4,without +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687,50,mac,phase-4,without +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.0623579169987351,50,mac,phase-4,without +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578,50,mac,phase-4,without +19,357.74395683758917,1.2363235524770289,11.02388500958684,64.59790561692476,0.0642752079984347,50,mac,phase-4,without +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.0639412499986065,50,mac,phase-4,without +21,350.5608098293886,1.2114993907898617,10.802536234542933,63.300843168770264,0.0629846250012633,50,mac,phase-4,without +22,352.93602165071184,1.2197078601733349,10.8757284198789,63.729735694056735,0.0634113750020333,50,mac,phase-4,without +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.0570584579982096,50,mac,phase-4,without +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.0630519169972103,50,mac,phase-4,without +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.0629439170006662,50,mac,phase-4,without +26,347.9465017031017,1.202464631017727,10.7219762932414,62.82877697067623,0.0625149170009535,50,mac,phase-4,without +27,352.52809188308873,1.2182981000087545,10.863158058411392,63.65607572545742,0.0633380830004171,50,mac,phase-4,without +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023,50,mac,phase-4,without +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.0611057499991147,50,mac,phase-4,without +0,330.77706061011514,0.2608137674828426,10.33474553650764,61.4542439631448,0.0611662920018716,50,mac,phase-22,without +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.0624705829977756,50,mac,phase-22,without +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886,50,mac,phase-22,without +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.0622007080019102,50,mac,phase-22,without +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.0638947090010333,50,mac,phase-22,without +5,339.8455414183246,0.2679641564504826,10.618079699350377,63.13905436364497,0.0628432080011407,50,mac,phase-22,without +6,345.3511691216465,0.2723052782350849,10.79009665006524,64.16193118414189,0.0638612919974548,50,mac,phase-22,without +7,342.53413726212943,0.2700840822094456,10.702081757549283,63.638561870600626,0.0633403749998251,50,mac,phase-22,without +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.0631592919999093,50,mac,phase-22,without +9,311.5008417190181,0.2456146987731268,9.732482438885151,57.872963398418015,0.0576017919993319,50,mac,phase-22,without +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.0591447920014616,50,mac,phase-22,without +11,313.26424396705994,0.2470051204155804,9.787577896467376,58.20058149792115,0.0579278750010416,50,mac,phase-22,without +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.0641434579993074,50,mac,phase-22,without +13,340.49019830223455,0.2684724607153436,10.638221255845492,63.258823556052846,0.062962415999209,50,mac,phase-22,without +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.0633342080000147,50,mac,phase-22,without +15,339.41178997419223,0.2676221486096528,10.604527638657494,63.058468766149446,0.0627629999980854,50,mac,phase-22,without +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.063857832999929,50,mac,phase-22,without +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.0636132500003441,50,mac,phase-22,without +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.0645286670005589,50,mac,phase-22,without +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.0640427080033987,50,mac,phase-22,without +20,341.9755514445675,0.2696436439539266,10.684629391674344,63.53478360664397,0.0632370830026047,50,mac,phase-22,without +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.0615041249984642,50,mac,phase-22,without +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.0586524169993936,50,mac,phase-22,without +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.0636538750004547,50,mac,phase-22,without +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.0640091250024852,50,mac,phase-22,without +25,343.06680876474195,0.2705040873366781,10.718724460715867,63.73752557870477,0.0634388750004291,50,mac,phase-22,without +26,345.3649158389056,0.272316117357702,10.79052615029894,64.16448515240853,0.0638638339987665,50,mac,phase-22,without +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.0640631250025762,50,mac,phase-22,without +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.0625225420008064,50,mac,phase-22,without +29,339.69705314558837,0.2678470752182837,10.613440355524494,63.11146709830811,0.0628157499995722,50,mac,phase-22,without +0,246.26397969829708,0.0,0.0,54.43476538811038,0.0630743330002587,50,mac,phase-25,without +1,242.4809969916464,0.0,0.0,53.59856605292504,0.0621054169969284,50,mac,phase-25,without +2,239.1234239616921,0.0,0.0,52.85640026650788,0.0612454589972912,50,mac,phase-25,without +3,235.2940732640157,0.0,0.0,52.009951642262514,0.060264666997682,50,mac,phase-25,without +4,238.8820026774676,0.0,0.0,52.80303594184067,0.0611836249991029,50,mac,phase-25,without +5,234.2631621094942,0.0,0.0,51.782076632278866,0.0600006249987927,50,mac,phase-25,without +6,239.56428704081335,0.0,0.0,52.95384967144987,0.0613583750018733,50,mac,phase-25,without +7,240.1634400598459,0.0,0.0,53.08628785450275,0.0615118329988035,50,mac,phase-25,without +8,240.7378668708275,0.0,0.0,53.213260498763326,0.0616589579985884,50,mac,phase-25,without +9,239.34922398149791,0.0,0.0,52.906311630393986,0.0613032920009573,50,mac,phase-25,without +10,242.8128624545116,0.0,0.0,53.67192237013237,0.0621904159997939,50,mac,phase-25,without +11,232.12976143215943,0.0,0.0,51.31050476256479,0.0594542079998063,50,mac,phase-25,without +12,245.03915532867256,0.0,0.0,54.164027348045266,0.0627606250018288,50,mac,phase-25,without +13,216.43592117453937,0.0,0.0,47.841501648473,0.0554346249991795,50,mac,phase-25,without +14,236.2355085499188,0.0,0.0,52.218048697215536,0.0605057920001854,50,mac,phase-25,without +15,239.34987210662737,0.0,0.0,52.906454893486725,0.0613034580019302,50,mac,phase-25,without +16,238.92934287039128,0.0,0.0,52.81350012867948,0.0611957500004791,50,mac,phase-25,without +17,238.7121636534104,0.0,0.0,52.7654943271895,0.0611401249989285,50,mac,phase-25,without +18,240.5050741873832,0.0,0.0,53.161803460170496,0.0615993339997658,50,mac,phase-25,without +19,239.09170116971927,0.0,0.0,52.84938818646023,0.0612373340009071,50,mac,phase-25,without +20,242.39574953227935,0.0,0.0,53.57972275535363,0.0620835830013675,50,mac,phase-25,without +21,239.42991118529753,0.0,0.0,52.92414691842122,0.0613239580015942,50,mac,phase-25,without +22,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058,50,mac,phase-25,without +23,241.4102263831343,0.0,0.0,53.36188041611268,0.0618311660000472,50,mac,phase-25,without +24,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936,50,mac,phase-25,without +25,226.55614444164797,0.0,0.0,50.07849944204095,0.0580266659999324,50,mac,phase-25,without +26,244.4723732267422,0.0,0.0,54.038744508132766,0.0626154580022557,50,mac,phase-25,without +27,238.2831737209998,0.0,0.0,52.670669390334176,0.0610302500026591,50,mac,phase-25,without +28,242.49953873943076,0.0,0.0,53.602664564172066,0.0621101659999112,50,mac,phase-25,without +29,238.44536412992605,0.0,0.0,52.70652033722831,0.0610717910021776,50,mac,phase-25,without +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893,50,mac,phase-13,without +1,348.55779789257946,0.2332158846538,10.361448589618831,61.6356266585043,0.0617304580009658,50,mac,phase-13,without +2,358.33485910912873,0.2397576002450679,10.652087668030877,63.36450863619653,0.0634620000018912,50,mac,phase-13,without +3,346.03077541432424,0.2315250839132354,10.286328728145175,61.188772177069374,0.0612829159981629,50,mac,phase-13,without +4,319.4310664622174,0.2137275344327587,9.49560902979828,56.485134100086235,0.0565720409977075,50,mac,phase-13,without +5,354.87217509222506,0.2374407594767325,10.549153742466258,62.75220071885074,0.06284874999983,50,mac,phase-13,without +6,354.41904767108167,0.2371375772985635,10.535683791407608,62.672074000334646,0.0627684999999473,50,mac,phase-13,without +7,358.9152630876629,0.2401459416568189,10.669341122181528,63.46714172358787,0.0635647909984982,50,mac,phase-13,without +8,339.35785444139424,0.2270603117080634,10.087965277315387,60.00879666570248,0.0601011250000738,50,mac,phase-13,without +9,340.8776918175967,0.2280772168536777,10.1331449202134,60.27755016847198,0.0603702920016075,50,mac,phase-13,without +10,354.0640272849366,0.2369000373728308,10.525130231850056,62.60929559139101,0.0627056250013993,50,mac,phase-13,without +11,354.00708848272853,0.2368619402962244,10.523437633160828,62.59922707828788,0.0626955409970833,50,mac,phase-13,without +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.0627899579994846,50,mac,phase-13,without +13,343.10921309321594,0.2295703012476115,10.199480526858167,60.67215104401161,0.0607655000021623,50,mac,phase-13,without +14,340.4605604865636,0.2277981192320727,10.120745011596377,60.20378865419067,0.0602964169993356,50,mac,phase-13,without +15,356.3056669698578,0.2383998918743074,10.591766624701371,63.00568570963839,0.0631026249975548,50,mac,phase-13,without +16,320.99748703681513,0.2147756078434052,9.542173434185576,56.762124930042816,0.0568494580002152,50,mac,phase-13,without +17,354.8119444278913,0.2374004598542572,10.547363287810573,62.74155010433942,0.0628380829984962,50,mac,phase-13,without +18,351.575824142101,0.2352352101887504,10.451164338385912,62.16930554988405,0.0622649580000143,50,mac,phase-13,without +19,343.1440347346409,0.2295935999945026,10.200515656898617,60.6783085699757,0.0607716670019726,50,mac,phase-13,without +20,356.72044373402287,0.2386774140831734,10.60409653998099,63.079030864838685,0.0631760830001439,50,mac,phase-13,without +21,350.96718789534884,0.2348279789014951,10.43307163405214,62.061680138252285,0.0621571669980767,50,mac,phase-13,without +22,352.7963997956422,0.2360518828684281,10.487447938868735,62.3851404723703,0.0624811250017955,50,mac,phase-13,without +23,353.666658527277,0.2366341626544579,10.513317797933777,62.539028701535315,0.0626352500003122,50,mac,phase-13,without +24,364.4598431575399,0.2438557543588969,10.83416280080242,64.44759222342276,0.0645467499998631,50,mac,phase-13,without +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554,50,mac,phase-13,without +26,338.0789340735709,0.2262046012727008,10.04994728511571,59.78264462207094,0.0598746250034309,50,mac,phase-13,without +27,355.0131047850516,0.2375350538611509,10.553343107259709,62.77712137758989,0.0628737090009963,50,mac,phase-13,without +28,329.98898622367545,0.2207917132064354,9.809460401028776,58.35209563312938,0.058441875000426,50,mac,phase-13,without +29,353.84475877944084,0.2367533274188573,10.518612118180664,62.5705222464123,0.0626667920005275,50,mac,phase-13,without +0,377.1528286364101,0.2364171040077792,5.944201472195592,62.00882899404038,0.0626814159986679,50,mac,phase-14,without +1,380.0216765811429,0.2382154326200412,5.989416591589608,62.48050489862795,0.0631582079986401,50,mac,phase-14,without +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744,50,mac,phase-14,without +3,384.3681985530305,0.2409400367037891,6.057920922838127,63.19512962687955,0.06388058399898,50,mac,phase-14,without +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.0627903750028053,50,mac,phase-14,without +5,381.03628983828423,0.2388514398556451,6.005407630656221,62.64732051070922,0.0633268329984275,50,mac,phase-14,without +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.0620384590001776,50,mac,phase-14,without +7,375.29157816409594,0.2352503848077972,5.914866818024616,61.702815215302245,0.0623720830008096,50,mac,phase-14,without +8,373.864807786008,0.2343560181339712,5.892379884511276,61.46823561342445,0.0621349590001045,50,mac,phase-14,without +9,366.9212068192651,0.2300034429779578,5.782943709160084,60.32661732964724,0.0609809580018918,50,mac,phase-14,without +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666,50,mac,phase-14,without +11,376.9342197202937,0.2362800696733281,5.940756037500822,61.97288684574722,0.0626450839990866,50,mac,phase-14,without +12,379.717825115604,0.2380249642526397,5.984627672637799,62.430547766835225,0.0631077090001781,50,mac,phase-14,without +13,366.6025595729651,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667,50,mac,phase-14,without +14,363.89742763866343,0.2281079961915146,5.7352867613866545,59.82946871537442,0.0604784169991035,50,mac,phase-14,without +15,369.6993006425364,0.2317448826450931,5.82672847793377,60.78337207662728,0.0614426669999375,50,mac,phase-14,without +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.0611225419997936,50,mac,phase-14,without +17,350.4494712628639,0.2196781856219259,5.523337238494139,57.61844982883658,0.0582434160023694,50,mac,phase-14,without +18,349.70537539320884,0.2192117513882387,5.5116097491900025,57.49611079268662,0.0581197499996051,50,mac,phase-14,without +19,355.4250143168058,0.2227970896586048,5.601755397130637,58.436493801885504,0.0590703329980897,50,mac,phase-14,without +20,355.92618062609483,0.2231112442359329,5.609654140789172,58.51889205959614,0.0591536249994533,50,mac,phase-14,without +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.0605397500003164,50,mac,phase-14,without +22,374.2340939261083,0.2345875040281864,5.898200101280116,61.52895105653575,0.0621963330013386,50,mac,phase-14,without +23,349.4985417056227,0.2190820983199927,5.50834990061696,57.46210464507238,0.0580853749997913,50,mac,phase-14,without +24,363.71014915375633,0.2279906012426161,5.732335116957206,59.79867769734903,0.060447292002209,50,mac,phase-14,without +25,352.26058825141075,0.2208134788000246,5.551881752686334,57.9162210109779,0.0585444169992115,50,mac,phase-14,without +26,380.4172990516413,0.2384634273628986,5.995651887981451,62.5455503768974,0.0632239590013341,50,mac,phase-14,without +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.0632881659985287,50,mac,phase-14,without +28,452.555119381187,0.2836828007225136,7.132596132451771,74.40594601807642,0.0752130000000761,50,mac,phase-14,without +29,366.6672421192952,0.2298442459778871,5.778941041729735,60.28486223077155,0.0609387500007869,50,mac,phase-14,without +0,353.42379519516624,0.3071766447857553,10.170960016239452,63.756219162198995,0.0638574579970736,50,mac,phase-15,without +1,344.73567152495644,0.2996254025808409,9.920929996565622,62.188916891223435,0.0622876669985998,50,mac,phase-15,without +2,351.2821477228619,0.3053152418643898,10.109326897287575,63.369874644742254,0.0634705000011308,50,mac,phase-15,without +3,345.7318892341187,0.3004912605607984,9.949599516346437,62.36863052528573,0.0624676660008844,50,mac,phase-15,without +4,351.83422142570913,0.3057950741507853,10.125214677437114,63.46946650151855,0.063570250000339,50,mac,phase-15,without +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.0641249580003204,50,mac,phase-15,without +6,366.573482495449,0.3186056342307138,10.54938655563919,66.12836941588593,0.0662333750005927,50,mac,phase-15,without +7,348.3338361205126,0.3027527305731157,10.024479301198722,62.83801119006447,0.0629377919976832,50,mac,phase-15,without +8,338.34369848808836,0.2940698489997871,9.736979444659616,61.035830881289144,0.0611327499973413,50,mac,phase-15,without +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.0620771249996323,50,mac,phase-15,without +10,351.68294492465503,0.3056635928847798,10.120861186629378,63.442176834307645,0.0635429169997223,50,mac,phase-15,without +11,347.70289474870646,0.3022043508197352,10.006321838253456,62.724191925696154,0.0628237919991079,50,mac,phase-15,without +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049,50,mac,phase-15,without +13,345.35761370997443,0.300165960732957,9.938828477602357,62.301112738795965,0.0624000410025473,50,mac,phase-15,without +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.0660244169994257,50,mac,phase-15,without +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.0636525410009198,50,mac,phase-15,without +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.0592579170006501,50,mac,phase-15,without +17,347.8889892534473,0.3023660939914075,10.011677334382162,62.75776261954993,0.0628574160000425,50,mac,phase-15,without +18,342.946615110539,0.29807045253451,9.869443872809333,61.86617837049608,0.0619644159996823,50,mac,phase-15,without +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.0605625409989443,50,mac,phase-15,without +20,326.0613287092618,0.2833946845372627,9.38351288801159,58.820141190622984,0.0589135420013917,50,mac,phase-15,without +21,345.1205513106695,0.2999599190532134,9.932006208650844,62.258347643489195,0.0623572080003214,50,mac,phase-15,without +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113,50,mac,phase-15,without +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.0601117920014075,50,mac,phase-15,without +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.0609711670003889,50,mac,phase-15,without +25,345.27367635482636,0.3000930069718432,9.936412897512144,62.28597078037814,0.0623848750001343,50,mac,phase-15,without +26,358.1507803712324,0.3112850819257451,10.306994934874671,64.60894811525466,0.0647115410029073,50,mac,phase-15,without +27,318.84747151039136,0.2771247941664435,9.175909851288909,57.51879061143516,0.0576101250007923,50,mac,phase-15,without +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.0628379999980097,50,mac,phase-15,without +29,346.3464648714801,0.3010254161123439,9.967286000164275,62.47949747753983,0.0625787089993537,50,mac,phase-15,without +0,361.4635469396571,0.1704534315475134,7.124953438686063,62.82913486841347,0.0632451250021404,50,mac,phase-12,without +1,355.6449183357349,0.1677095719776171,7.010260108664397,61.81774823094969,0.0622270419989945,50,mac,phase-12,without +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846,50,mac,phase-12,without +3,359.06288961197356,0.1693213664113805,7.077633115995706,62.41185565923486,0.0628250829977332,50,mac,phase-12,without +4,356.22239586901475,0.1679818899693552,7.02164300071905,61.91812464270435,0.0623280830004659,50,mac,phase-12,without +5,358.4918360781341,0.1690520777506998,7.066376849979254,62.31259585890797,0.0627251660007459,50,mac,phase-12,without +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.0637023749986838,50,mac,phase-12,without +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.0603141669998876,50,mac,phase-12,without +8,331.99176104587264,0.1565555791030239,6.5440232065064015,57.706386457374634,0.0580884590017376,50,mac,phase-12,without +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839,50,mac,phase-12,without +10,355.5541882946238,0.1676667868973987,7.008471692311268,61.80197765038118,0.0622111670018057,50,mac,phase-12,without +11,353.1251946264822,0.1665213593447525,6.960592820610656,61.379773054475784,0.0617861669998092,50,mac,phase-12,without +12,349.0251905083527,0.1645879423315819,6.879775989460126,60.66711554342111,0.061068791001162,50,mac,phase-12,without +13,360.0216334165911,0.1697734760994959,7.09653130095893,62.578503290274206,0.0629928339985781,50,mac,phase-12,without +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.0626576660033606,50,mac,phase-12,without +15,358.13035037901693,0.1688816138729684,7.059251459890081,62.249762873576174,0.0626619169997866,50,mac,phase-12,without +16,362.65327374016647,0.1710144646515922,7.148404622436555,63.03593167057689,0.0634532910007692,50,mac,phase-12,without +17,356.01021613514007,0.1678818335070923,7.017460640596461,61.88124383071425,0.0622909580015402,50,mac,phase-12,without +18,356.18572663045944,0.1679645980526546,7.020920198600964,61.911750842208505,0.0623216669991961,50,mac,phase-12,without +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.0622395829996094,50,mac,phase-12,without +20,344.49440292303365,0.1624513830628282,6.790467812026222,59.8795797969585,0.0602760410001792,50,mac,phase-12,without +21,361.4361650173394,0.1704405192008579,7.124413702595863,62.82437537743625,0.0632403339986922,50,mac,phase-12,without +22,356.7505848359848,0.1682309652154978,7.032054346007811,62.00993377843252,0.0624205000021902,50,mac,phase-12,without +23,339.33422020631144,0.16001802329827,6.688753373867688,58.98264338774234,0.0593731659973855,50,mac,phase-12,without +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.0574885409987473,50,mac,phase-12,without +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.0593831249971117,50,mac,phase-12,without +26,340.30344013425093,0.1604750731558289,6.7078580579136515,59.15111196523856,0.0595427500011283,50,mac,phase-12,without +27,342.4523851103312,0.1614884396445964,6.750216777144131,59.52463885299824,0.0599187500010884,50,mac,phase-12,without +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.0670434999992721,50,mac,phase-12,without +29,331.530252230005,0.1563379478590988,6.5349262205103305,57.62616758086382,0.0580077089980477,50,mac,phase-12,without +0,353.39992586587454,1.1889836975204853,9.545840542950184,63.42378752202132,0.0643312920001335,50,mac,phase-24,without +1,352.47862696982486,1.1858840665138777,9.52095493401142,63.25844434804028,0.064163582999754,50,mac,phase-24,without +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.0613242500003252,50,mac,phase-24,without +3,347.78700620443374,1.170099511405862,9.39422750585849,62.41645107984983,0.0633095420016616,50,mac,phase-24,without +4,349.67239785603925,1.1764427496838772,9.445154647461983,62.75481753313711,0.0636527499991643,50,mac,phase-24,without +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.058231708000676,50,mac,phase-24,without +6,343.4510799857494,1.155511660050104,9.277107899259406,61.6382934089584,0.0625202499977604,50,mac,phase-24,without +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.0598008329980075,50,mac,phase-24,without +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774,50,mac,phase-24,without +9,350.0937884628729,1.1778604821878835,9.456537014137009,62.8304434355651,0.0637294580010348,50,mac,phase-24,without +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.0639502499980153,50,mac,phase-24,without +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.0675257500006409,50,mac,phase-24,without +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.0621744999989459,50,mac,phase-24,without +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.0641838340015965,50,mac,phase-24,without +14,350.38540207791414,1.1788415911493797,9.464413917513587,62.882778590739754,0.0637825419980799,50,mac,phase-24,without +15,348.5869825268699,1.1727909630337834,9.415836017499805,62.56002079954495,0.0634551660004945,50,mac,phase-24,without +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.062153541999578,50,mac,phase-24,without +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.0602440830007253,50,mac,phase-24,without +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.0638145829980203,50,mac,phase-24,without +19,346.13004814041824,1.1645248183134325,9.34947068417356,62.1190810226051,0.0630079170005046,50,mac,phase-24,without +20,348.3924269467375,1.172136397494551,9.410580791313391,62.525104403495035,0.063419750000321,50,mac,phase-24,without +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.064945041998726,50,mac,phase-24,without +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.0636446669996075,50,mac,phase-24,without +23,350.6754061403116,1.179817284909248,9.472247344557106,62.934824883587595,0.0638353329995879,50,mac,phase-24,without +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047,50,mac,phase-24,without +25,354.05204084193906,1.191177682348156,9.563455106852338,63.54082094125735,0.0644500000016705,50,mac,phase-24,without +26,348.6677854950157,1.173062817680049,9.418018621945537,62.57452230310432,0.0634698750000097,50,mac,phase-24,without +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.0643432079996273,50,mac,phase-24,without +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307,50,mac,phase-24,without +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.0573486249995767,50,mac,phase-24,without +0,336.97433817066894,0.3673290773835455,10.452181929186342,62.212188287776854,0.0631597079991479,50,mac,phase-23,without +1,330.7703056824168,0.3605661839764725,10.259746871330536,61.066800068015304,0.0619968749997497,50,mac,phase-23,without +2,334.2737986243397,0.3643852725069603,10.368417299516231,61.713614789133366,0.0626535410010546,50,mac,phase-23,without +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.0619690830026229,50,mac,phase-23,without +4,339.2787336454407,0.3698410534238279,10.523659065605283,62.6376256844174,0.0635916249993897,50,mac,phase-23,without +5,326.52765323109134,0.3559413522487369,10.12814938671406,60.28352174903609,0.0612016669983859,50,mac,phase-23,without +6,347.80605915722936,0.3791365227162345,10.7881574191074,64.21194016548591,0.06518991700068,50,mac,phase-23,without +7,312.5587912483423,0.3407141714133153,9.694866877487971,57.70459103118241,0.0585834580015216,50,mac,phase-23,without +8,375.7459972937605,0.4095932980112343,11.65479111613785,69.37021038135724,0.0704267500004789,50,mac,phase-23,without +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.0596813330012082,50,mac,phase-23,without +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925,50,mac,phase-23,without +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.0633084999972197,50,mac,phase-23,without +12,337.0256901842581,0.3673850552003606,10.453774752519353,62.22166889438835,0.0631693329996778,50,mac,phase-23,without +13,317.6766526799566,0.3462930511821943,9.853611365456985,58.64945039567527,0.0595427080006629,50,mac,phase-23,without +14,328.40589370391314,0.3579887851296248,10.186408158688415,60.630282426953734,0.0615537089979625,50,mac,phase-23,without +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.0640058329991006,50,mac,phase-23,without +16,331.6672985956367,0.3615439782530971,10.287569563019948,61.23240286232,0.0621649999993678,50,mac,phase-23,without +17,337.1901926729352,0.3675643761175589,10.458877247708722,62.252039337001115,0.0632001659978414,50,mac,phase-23,without +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.0598262499988777,50,mac,phase-23,without +19,401.922184598819,0.4381274433244484,12.466717250959304,74.20285699213157,0.0753330000006826,50,mac,phase-23,without +20,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.0641347500022675,50,mac,phase-23,without +21,337.3818197078384,0.3677732649674187,10.464821084982006,62.28741751220919,0.0632360829986282,50,mac,phase-23,without +22,338.1547675106831,0.3686158401166896,10.488796177865805,62.43011910339933,0.0633809579994704,50,mac,phase-23,without +23,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.0613165419999859,50,mac,phase-23,without +24,335.28106096612464,0.3654832693119979,10.399660299514125,61.8995755207502,0.0628423339985602,50,mac,phase-23,without +25,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.0611921659983636,50,mac,phase-23,without +26,330.93325561554514,0.3607438124834998,10.264801209757769,61.09688387788729,0.0620274169996264,50,mac,phase-23,without +27,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.0632555420015705,50,mac,phase-23,without +28,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.0624289170009433,50,mac,phase-23,without +29,344.64868676424874,0.3756947333670336,10.690222867625591,63.6290262057076,0.0645981249981559,50,mac,phase-23,without +0,355.6184613008034,1.350364386940586,9.688864476298706,63.33208974751349,0.0633423750005022,50,mac,phase-8,without +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.0620757910000975,50,mac,phase-8,without +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.0616344580012082,50,mac,phase-8,without +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.0619627089981804,50,mac,phase-8,without +4,346.1149788313074,1.314277496986168,9.429941040875756,61.639614608651286,0.0616496250004274,50,mac,phase-8,without +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.0632156659994507,50,mac,phase-8,without +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.059909499999776,50,mac,phase-8,without +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.0650283340000896,50,mac,phase-8,without +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.0629628749993571,50,mac,phase-8,without +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.062907957999414,50,mac,phase-8,without +10,355.0965683959524,1.3483826405769976,9.67464544613996,63.239145843061195,0.0632494160017813,50,mac,phase-8,without +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.8239970686508,0.0608338750025723,50,mac,phase-8,without +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.0635719999991124,50,mac,phase-8,without +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.0622212499984016,50,mac,phase-8,without +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.0643149170027754,50,mac,phase-8,without +15,362.2671094199502,1.3756108198972858,9.870007632763024,64.5161474531827,0.0645266249994165,50,mac,phase-8,without +16,347.40601521064906,1.3191798565052175,9.465115470424935,61.86953527009471,0.0618795830014278,50,mac,phase-8,without +17,352.59402676578674,1.3388799193688503,9.6064634214715,62.79346821839908,0.0628036659982171,50,mac,phase-8,without +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.0598259170001256,50,mac,phase-8,without +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.0626170420000562,50,mac,phase-8,without +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.0627399590011918,50,mac,phase-8,without +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.0636519170002429,50,mac,phase-8,without +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.0601820419979048,50,mac,phase-8,without +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.0630970829988655,50,mac,phase-8,without +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284,50,mac,phase-8,without +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.0654218749987194,50,mac,phase-8,without +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.0600325829982466,50,mac,phase-8,without +27,355.2156405220305,1.3488347845909645,9.677889579440173,63.260351397316235,0.0632706249998591,50,mac,phase-8,without +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.0624030420003691,50,mac,phase-8,without +29,347.1143112188389,1.3180721899329368,9.45716796276882,61.81758570785473,0.0618276250024791,50,mac,phase-8,without +0,393.6707450554323,0.3406635038555142,11.684758182244138,66.53158230298193,0.0646891249998589,50,mac,phase-1,without +1,373.5110006248911,0.3232182421468424,11.086385705636696,63.12452269127834,0.0613764169975183,50,mac,phase-1,without +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.0637857080000685,50,mac,phase-1,without +3,390.9730568158952,0.3383290557423807,11.60468661196366,66.07566458648697,0.0642458330003137,50,mac,phase-1,without +4,408.3709649248352,0.3533843587096185,12.121083503739916,69.0159652559885,0.0671047080031712,50,mac,phase-1,without +5,401.99100267653665,0.3478634498758537,11.931716330741784,67.93773176075425,0.0660563339988584,50,mac,phase-1,without +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.0639412919990718,50,mac,phase-1,without +7,383.0780350607198,0.3314970881453096,11.37035012338412,64.74138131477898,0.0629484999990381,50,mac,phase-1,without +8,386.1588591424435,0.3341630833700618,11.46179375959312,65.26205018217308,0.0634547499976179,50,mac,phase-1,without +9,361.0748654835688,0.3124566160293949,10.717261929808243,61.02277711054082,0.0593328750001092,50,mac,phase-1,without +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331,50,mac,phase-1,without +11,339.917840818384,0.2941483565406576,10.089288629344557,57.44717403239043,0.0558562910009641,50,mac,phase-1,without +12,384.8334749313357,0.3330161603767183,11.422454300921435,65.03805612157308,0.0632369589984591,50,mac,phase-1,without +13,403.7246257549707,0.349363642917074,11.98317295205564,68.23071946170457,0.0663412079993577,50,mac,phase-1,without +14,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.0640180000009422,50,mac,phase-1,without +15,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.0618219169991789,50,mac,phase-1,without +16,374.7899823012124,0.3243250106448705,11.12434786511906,63.34067457894322,0.0615865829968242,50,mac,phase-1,without +17,399.8438036989407,0.3460053683791456,11.867984135404695,67.57484844444714,0.0657035000003816,50,mac,phase-1,without +18,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.0624640830028511,50,mac,phase-1,without +19,390.02142447908176,0.3375055594315349,11.576440688501648,65.91483575697877,0.0640894579992163,50,mac,phase-1,without +20,398.35714556030706,0.3447188867776973,11.82385781647502,67.32359858768429,0.0654592079990834,50,mac,phase-1,without +21,394.6685243299055,0.3415269334803613,11.714373818376393,66.70021010871457,0.0648530830003437,50,mac,phase-1,without +22,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.0662763340005767,50,mac,phase-1,without +23,374.6576210026007,0.3242104716187268,11.120419176522333,63.31830510713735,0.061564833002194,50,mac,phase-1,without +24,387.9335659886732,0.3356988283044939,11.514469810844142,65.56198116786766,0.0637463750026654,50,mac,phase-1,without +25,384.9361629864913,0.3331050216220935,11.425502241637808,65.05541072279487,0.0632538329991803,50,mac,phase-1,without +26,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.0623021250030433,50,mac,phase-1,without +27,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.0612962499981222,50,mac,phase-1,without +28,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.0624532500005443,50,mac,phase-1,without +29,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.0630722080022678,50,mac,phase-1,without +0,240.42885516643568,0.0,0.0,53.41728600341795,0.0619687500002328,50,mac,phase-30,without +1,228.54878409089892,0.0,0.0,50.77783095987262,0.0589067500004603,50,mac,phase-30,without +2,213.1201140526296,0.0,0.0,47.34996586640836,0.0549301249993732,50,mac,phase-30,without +3,237.0842698478049,0.0,0.0,52.67420268921069,0.0611067079989879,50,mac,phase-30,without +4,238.04340130189988,0.0,0.0,52.88729774039662,0.0613539170008152,50,mac,phase-30,without +5,237.9774440222685,0.0,0.0,52.872643680393544,0.0613369170023361,50,mac,phase-30,without +6,233.25082854773103,0.0,0.0,51.82250778694279,0.0601186670028255,50,mac,phase-30,without +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123,50,mac,phase-30,without +8,239.07317300806952,0.0,0.0,53.11608729108766,0.0616193330024543,50,mac,phase-30,without +9,234.15515335358452,0.0,0.0,52.02342616989155,0.0603517499985173,50,mac,phase-30,without +10,235.7027246756318,0.0,0.0,52.3672578612385,0.060750625001674,50,mac,phase-30,without +11,231.79378555125,0.0,0.0,51.49878922825138,0.0597431250025692,50,mac,phase-30,without +12,238.1722430460066,0.0,0.0,52.91592315763018,0.0613871250025113,50,mac,phase-30,without +13,238.895348273858,0.0,0.0,53.076579076987144,0.0615734999992128,50,mac,phase-30,without +14,245.18230748969597,0.0,0.0,54.473384374303734,0.0631939169979887,50,mac,phase-30,without +15,239.73953556253844,0.0,0.0,53.26413640578063,0.0617910829969332,50,mac,phase-30,without +16,237.05193913270705,0.0,0.0,52.6670196118971,0.0610983749975275,50,mac,phase-30,without +17,238.06603239878575,0.0,0.0,52.89232580482793,0.0613597499977913,50,mac,phase-30,without +18,238.4611281800858,0.0,0.0,52.98010621843028,0.061461582998163,50,mac,phase-30,without +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632,50,mac,phase-30,without +20,236.73621713579013,0.0,0.0,52.59687407052601,0.0610169999999925,50,mac,phase-30,without +21,239.5788481011822,0.0,0.0,53.22843566564073,0.0617496669983665,50,mac,phase-30,without +22,240.51291579071105,0.0,0.0,53.43596217440181,0.0619904160012083,50,mac,phase-30,without +23,237.5108932275132,0.0,0.0,52.76898774765905,0.0612166670034639,50,mac,phase-30,without +24,237.61047320422924,0.0,0.0,52.79111193110106,0.0612423330021556,50,mac,phase-30,without +25,235.96202604191544,0.0,0.0,52.42486814780024,0.0608174580011109,50,mac,phase-30,without +26,250.0384126471728,0.0,0.0,55.55228964081196,0.0644455420006124,50,mac,phase-30,without +27,216.35622292125151,0.0,0.0,48.068948423030825,0.0557642080020741,50,mac,phase-30,without +28,237.4518847231131,0.0,0.0,52.75587753194059,0.0612014580001414,50,mac,phase-30,without +29,235.66344128962425,0.0,0.0,52.35853007411787,0.0607405000009748,50,mac,phase-30,without +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.0633080840016191,50,mac,phase-6,without +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.0627279159998579,50,mac,phase-6,without +2,365.8669906637541,0.2818969397389996,11.45206317689686,66.06959525132802,0.0661166249992675,50,mac,phase-6,without +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.0625610419992881,50,mac,phase-6,without +4,345.2937631135986,0.2660454690271394,10.80809717922754,62.35440680323581,0.0623987920007493,50,mac,phase-6,without +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.0622929999990446,50,mac,phase-6,without +6,352.2442682349835,0.2714007652778453,11.025656089412466,63.609554361995,0.0636548330003279,50,mac,phase-6,without +7,336.95937238273893,0.2596239024426381,10.547221036732171,60.84935213499331,0.0608926660024735,50,mac,phase-6,without +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.0629278330015949,50,mac,phase-6,without +9,337.41659112344763,0.259976185012769,10.561532516143744,60.93191836236774,0.0609752910022507,50,mac,phase-6,without +10,334.9993053726752,0.2581136899722047,10.485868655120818,60.49539608723549,0.0605384580012469,50,mac,phase-6,without +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.0598098330010543,50,mac,phase-6,without +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.061172333000286,50,mac,phase-6,without +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.0605532500012486,50,mac,phase-6,without +14,352.943817073241,0.2719397608192168,11.047552783280684,63.73588144200393,0.0637812500026484,50,mac,phase-6,without +15,345.08740182486946,0.2658864696714779,10.801637830403791,62.31714132925264,0.0623615000004065,50,mac,phase-6,without +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.0611053329994319,50,mac,phase-6,without +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.0642670829984126,50,mac,phase-6,without +18,352.07434056761844,0.2712698376712845,11.020337155395934,63.57886820420732,0.0636241249994782,50,mac,phase-6,without +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.0631787919992348,50,mac,phase-6,without +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.0635585829986666,50,mac,phase-6,without +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.0643522919999668,50,mac,phase-6,without +22,345.28015583657924,0.2660349847532152,10.807671255599368,62.35194955153482,0.0623963329999242,50,mac,phase-6,without +23,344.455645883133,0.26539970789416,10.781863133200252,62.20305653769376,0.0622473340008582,50,mac,phase-6,without +24,346.3271743070028,0.2668417022494483,10.84044415388384,62.54102396471446,0.0625855420003063,50,mac,phase-6,without +25,339.3314757733539,0.2614515849163855,10.621470637228162,61.277715214777864,0.0613213340002403,50,mac,phase-6,without +26,351.40222764763104,0.2707519812367377,10.999299237742472,63.45749560236042,0.063502666002023,50,mac,phase-6,without +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.0622202090016799,50,mac,phase-6,without +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.0623814999999012,50,mac,phase-6,without +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.0635208330022578,50,mac,phase-6,without +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.0593550839985255,50,mac,phase-7,without +1,359.1743921729426,0.2932833904515045,9.450242581215146,59.406180088121424,0.0579962080009863,50,mac,phase-7,without +2,369.50288557151976,0.3017171085232877,9.721995719083717,61.1144765375504,0.0596639590003178,50,mac,phase-7,without +3,367.9933193312075,0.3004844741408879,9.68227750009528,60.86479959542653,0.0594202079992101,50,mac,phase-7,without +4,368.5615394097468,0.3009484535191182,9.697227946727144,60.95878119615029,0.0595119589997921,50,mac,phase-7,without +5,348.39381726937063,0.2844805258051475,9.166594720388083,57.62311094919821,0.056255458999658,50,mac,phase-7,without +6,365.2779196413032,0.2982672179977979,9.610832579929044,60.41568204555396,0.0589817500003846,50,mac,phase-7,without +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.0610690840003371,50,mac,phase-7,without +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.0594197909995273,50,mac,phase-7,without +9,361.874829413902,0.2954884290260495,9.521293824172709,59.85282290160982,0.0584322499998961,50,mac,phase-7,without +10,366.4269936562932,0.2992054929147739,9.641065882809384,60.605734842625886,0.0591672920018027,50,mac,phase-7,without +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.0612499999988358,50,mac,phase-7,without +12,372.0247519362511,0.3037763352772872,9.788348581157033,61.53158435672162,0.060071167001297,50,mac,phase-7,without +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.0578553330014983,50,mac,phase-7,without +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.0580023749971587,50,mac,phase-7,without +15,374.3120558659924,0.3056440303750618,9.848529867640885,61.90989637485975,0.0604404999976395,50,mac,phase-7,without +16,367.8761650716482,0.3003888119801155,9.679195052692611,60.84542269330562,0.0594012909969023,50,mac,phase-7,without +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.0573772919997281,50,mac,phase-7,without +18,350.9303921671755,0.2865517627930121,9.233334578885946,58.04265150796235,0.0566650420005316,50,mac,phase-7,without +19,373.7742933228857,0.3052049210584259,9.834380789660392,61.82095234327895,0.0603536670023459,50,mac,phase-7,without +20,375.95244447471293,0.3069834875950296,9.891690155839845,62.18121087619322,0.0607053750027262,50,mac,phase-7,without +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.0602809169977263,50,mac,phase-7,without +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292,50,mac,phase-7,without +23,366.183655668,0.2990067955917256,9.63466341351116,60.56548759596843,0.0591280000007827,50,mac,phase-7,without +24,382.3439433397997,0.3122024578169295,10.059856974101065,63.238342288918055,0.0617374159992323,50,mac,phase-7,without +25,366.5838826179828,0.2993336003957399,9.645193790529396,60.63168372460376,0.0591926250017422,50,mac,phase-7,without +26,361.2944833317239,0.2950145481750603,9.506024330085278,59.756835702570555,0.0583385410027403,50,mac,phase-7,without +27,363.4254185231531,0.2967545605796025,9.562091396453855,60.10928488184614,0.058682625000074,50,mac,phase-7,without +28,370.6326000446566,0.3026395754311295,9.75171965278084,61.30132733454991,0.0598463749993243,50,mac,phase-7,without +29,390.4818932754045,0.3188474904262965,10.273974691513995,64.58433056079316,0.0630514580007002,50,mac,phase-7,without +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.0633631250020698,50,mac,phase-9,without +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774,50,mac,phase-9,without +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.0619897500000661,50,mac,phase-9,without +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.0622673330035468,50,mac,phase-9,without +4,344.6413629741717,1.1293182672630917,9.864927216974651,62.4778723741728,0.0624052500024845,50,mac,phase-9,without +5,350.37501142418506,1.148106244065371,10.029045720218097,63.51728956138127,0.0634434590028831,50,mac,phase-9,without +6,331.7819094104552,1.0871805050072745,9.496841470210605,60.146662644667146,0.0600767500000074,50,mac,phase-9,without +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.0627374579999013,50,mac,phase-9,without +8,344.36385060606943,1.1284089167893565,9.856983773130557,62.42756389649351,0.062355000001844,50,mac,phase-9,without +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.0639817500014032,50,mac,phase-9,without +10,333.26358795573077,1.0920356582974986,9.539252662186971,60.4152668605175,0.0603450419985165,50,mac,phase-9,without +11,344.4812065706353,1.1287934679454126,9.860342940581988,62.44883862368592,0.0623762499999429,50,mac,phase-9,without +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.059838374996616,50,mac,phase-9,without +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.0641008340026019,50,mac,phase-9,without +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.0602028339999378,50,mac,phase-9,without +15,332.94188901480146,1.0909815175889794,9.530044433056672,60.3569480760256,0.0602867910019995,50,mac,phase-9,without +16,331.5582427131216,1.0864475956289643,9.490439291229483,60.106115511120066,0.0600362499972106,50,mac,phase-9,without +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.0640001250030763,50,mac,phase-9,without +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.0596638749993871,50,mac,phase-9,without +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.0622371659992495,50,mac,phase-9,without +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.062508709001122,50,mac,phase-9,without +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.0640984580022632,50,mac,phase-9,without +22,353.40509298276,1.1580351928887662,10.115778008469515,64.06659405364027,0.0639921250003681,50,mac,phase-9,without +23,374.3218432757152,1.2265750454292903,10.714493779191155,67.85846060154398,0.0677795839983446,50,mac,phase-9,without +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.0640302499996323,50,mac,phase-9,without +25,352.0352477660601,1.1535464942218625,10.07656790540862,63.81826340092126,0.0637440829996194,50,mac,phase-9,without +26,353.2720858728606,1.1575993561755262,10.111970846592095,64.04248202841661,0.0639680410022265,50,mac,phase-9,without +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.0626107079988287,50,mac,phase-9,without +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.0622674580008606,50,mac,phase-9,without +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.0635365420021116,50,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n500/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n500/with_smell.csv new file mode 100644 index 000000000..450e9ea70 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n500/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375,500,mac,phase-19,with +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712,500,mac,phase-19,with +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556,500,mac,phase-19,with +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808,500,mac,phase-19,with +4,2897.009265067062,2.535967566748408,0.0,577.366405361154,0.6108203750009125,500,mac,phase-19,with +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125,500,mac,phase-19,with +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013,500,mac,phase-19,with +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129,500,mac,phase-19,with +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921,500,mac,phase-19,with +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624,500,mac,phase-19,with +10,2892.0727798560765,2.531646294276225,0.0,576.3825767087042,0.6097795409987157,500,mac,phase-19,with +11,2929.9184866037235,2.5647754547556207,0.0,583.9251275478487,0.6177591250016121,500,mac,phase-19,with +12,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565,500,mac,phase-19,with +13,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538,500,mac,phase-19,with +14,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249,500,mac,phase-19,with +15,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274,500,mac,phase-19,with +16,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156,500,mac,phase-19,with +17,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747,500,mac,phase-19,with +18,2904.8236489370047,2.542808077853171,0.0,578.9237917249135,0.6124679999993532,500,mac,phase-19,with +19,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813,500,mac,phase-19,with +20,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951,500,mac,phase-19,with +21,2887.1623848924046,2.527347860537005,0.0,575.4039477746288,0.608744207998825,500,mac,phase-19,with +22,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676,500,mac,phase-19,with +23,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325,500,mac,phase-19,with +24,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941,500,mac,phase-19,with +25,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643,500,mac,phase-19,with +26,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333,500,mac,phase-19,with +27,2890.892017617972,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591,500,mac,phase-19,with +28,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687,500,mac,phase-19,with +29,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141,500,mac,phase-19,with +0,2862.093422249503,1.6155676119463367,0.0,571.7460807910495,0.6039815000003728,500,mac,phase-26,with +1,2896.950584654971,1.635243455574937,0.0,578.7093216964283,0.6113373329972092,500,mac,phase-26,with +2,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016,500,mac,phase-26,with +3,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356,500,mac,phase-26,with +4,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268,500,mac,phase-26,with +5,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356,500,mac,phase-26,with +6,2884.313628671702,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567,500,mac,phase-26,with +7,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811,500,mac,phase-26,with +8,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459,500,mac,phase-26,with +9,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387,500,mac,phase-26,with +10,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671,500,mac,phase-26,with +11,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383,500,mac,phase-26,with +12,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422,500,mac,phase-26,with +13,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622,500,mac,phase-26,with +14,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879,500,mac,phase-26,with +15,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377,500,mac,phase-26,with +16,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079,500,mac,phase-26,with +17,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865,500,mac,phase-26,with +18,2895.925838535033,1.6346650165103809,0.0,578.5046132919696,0.6111210829985794,500,mac,phase-26,with +19,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398,500,mac,phase-26,with +20,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964,500,mac,phase-26,with +21,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497,500,mac,phase-26,with +22,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405,500,mac,phase-26,with +23,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144,500,mac,phase-26,with +24,2894.0532612962406,1.6336080016993535,0.0,578.1305379075203,0.61072591699849,500,mac,phase-26,with +25,2894.1069651130647,1.6336383159254455,0.0,578.1412660502684,0.610737250000966,500,mac,phase-26,with +26,2887.702792283546,1.630023348599695,0.0,576.8619364911697,0.6093857910018414,500,mac,phase-26,with +27,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123,500,mac,phase-26,with +28,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185,500,mac,phase-26,with +29,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258,500,mac,phase-26,with +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346,500,mac,phase-21,with +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122,500,mac,phase-21,with +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938,500,mac,phase-21,with +3,2875.852308278687,1.3273726080466577,0.0,572.9272019481385,0.6067970830008562,500,mac,phase-21,with +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447,500,mac,phase-21,with +5,2887.2685299862255,1.332641856379874,0.0,575.201541259963,0.6092058750000433,500,mac,phase-21,with +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371,500,mac,phase-21,with +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983,500,mac,phase-21,with +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988,500,mac,phase-21,with +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336,500,mac,phase-21,with +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573,500,mac,phase-21,with +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017,500,mac,phase-21,with +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408,500,mac,phase-21,with +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017,500,mac,phase-21,with +14,2885.526801565024,1.3318379477124145,0.0,574.8545541813708,0.6088383749993227,500,mac,phase-21,with +15,2889.1212408691845,1.3334969898891955,0.0,575.570638260924,0.6095967920009571,500,mac,phase-21,with +16,2872.3532493423795,1.3257575894406517,0.0,572.2301195423212,0.6060587909996684,500,mac,phase-21,with +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522,500,mac,phase-21,with +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246,500,mac,phase-21,with +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503,500,mac,phase-21,with +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753,500,mac,phase-21,with +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069,500,mac,phase-21,with +22,2881.77754512887,1.3301074484515285,0.0,574.1076274378909,0.6080472920002649,500,mac,phase-21,with +23,2921.4931000362635,1.34843848010628,0.0,582.0197589758731,0.6164271670022572,500,mac,phase-21,with +24,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095,500,mac,phase-21,with +25,2893.6888300427822,1.3356051971627023,0.0,576.4805932253515,0.6105605410011776,500,mac,phase-21,with +26,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662,500,mac,phase-21,with +27,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984,500,mac,phase-21,with +28,2892.5888965608005,1.3350975140767345,0.0,576.2614645133705,0.6103284580021864,500,mac,phase-21,with +29,2898.673296586618,1.3379058175168723,0.0,577.4735984857201,0.6116122500025085,500,mac,phase-21,with +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902,500,mac,phase-28,with +1,2891.2179356716797,1.8025049474262345,0.0,577.6694559288594,0.610794749998604,500,mac,phase-28,with +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615,500,mac,phase-28,with +3,2890.2822721394496,1.8019216160470384,0.0,577.4825090242601,0.6105970829994476,500,mac,phase-28,with +4,2888.0888706578953,1.8005541587642735,0.0,577.044264288417,0.6101337079999212,500,mac,phase-28,with +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195,500,mac,phase-28,with +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254,500,mac,phase-28,with +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625,500,mac,phase-28,with +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879,500,mac,phase-28,with +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803,500,mac,phase-28,with +10,2881.393286312906,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755,500,mac,phase-28,with +11,2888.1411383469012,1.8005867446053,0.0,577.0547074470245,0.6101447500004724,500,mac,phase-28,with +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915,500,mac,phase-28,with +13,2877.2999624761123,1.7938279067806189,0.0,574.8886250878775,0.607854458001384,500,mac,phase-28,with +14,2922.8568793298064,1.822229974644518,0.0,583.9909618740375,0.6174787499985541,500,mac,phase-28,with +15,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717,500,mac,phase-28,with +16,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456,500,mac,phase-28,with +17,2905.045772924987,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403,500,mac,phase-28,with +18,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848,500,mac,phase-28,with +19,2891.0660697041267,1.8024102678953409,0.0,577.6391128925327,0.6107626670018362,500,mac,phase-28,with +20,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701,500,mac,phase-28,with +21,2882.54195887732,1.797095984337481,0.0,575.9359834248971,0.6089618749974761,500,mac,phase-28,with +22,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447,500,mac,phase-28,with +23,2878.608193025542,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499,500,mac,phase-28,with +24,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453,500,mac,phase-28,with +25,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866,500,mac,phase-28,with +26,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225,500,mac,phase-28,with +27,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195,500,mac,phase-28,with +28,2882.0064778239716,1.7967621432817775,0.0,575.828993548786,0.6088487500019255,500,mac,phase-28,with +29,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754,500,mac,phase-28,with +0,2884.6844519453502,1.803721085721138,0.0,577.4579653693895,0.6114691249968018,500,mac,phase-17,with +1,2878.9248167003684,1.800119729763321,0.0,576.304997928672,0.6102482499991311,500,mac,phase-17,with +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427,500,mac,phase-17,with +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472,500,mac,phase-17,with +4,2882.651347302002,1.8024498362046744,0.0,577.0509771908595,0.6110381660000712,500,mac,phase-17,with +5,2883.2398715165705,1.8028178256860057,0.0,577.1687883418456,0.6111629160004668,500,mac,phase-17,with +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607,500,mac,phase-17,with +7,2872.177626013424,1.7959008800713845,0.0,574.9543410124832,0.6088180419974378,500,mac,phase-17,with +8,2883.9494831095662,1.8032615280785136,0.0,577.3108388411359,0.6113133329999982,500,mac,phase-17,with +9,2895.4779954549176,1.810470018695324,0.0,579.6186237630511,0.6137570419996337,500,mac,phase-17,with +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427,500,mac,phase-17,with +11,2881.051089801741,1.8014492351878608,0.0,576.7306366282913,0.6106989579966466,500,mac,phase-17,with +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899,500,mac,phase-17,with +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684,500,mac,phase-17,with +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046,500,mac,phase-17,with +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056,500,mac,phase-17,with +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859,500,mac,phase-17,with +17,2876.165985025137,1.798394701273215,0.0,575.752733252062,0.6096634579989768,500,mac,phase-17,with +18,2874.9411706166497,1.797628855437566,0.0,575.5075491260119,0.6094038330011244,500,mac,phase-17,with +19,2924.685426053381,1.8287326950149667,0.0,585.4653857670138,0.6199481670009845,500,mac,phase-17,with +20,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265,500,mac,phase-17,with +21,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629,500,mac,phase-17,with +22,2881.6203519457463,1.80180518057792,0.0,576.8445918857607,0.6108196249988396,500,mac,phase-17,with +23,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016,500,mac,phase-17,with +24,2881.1031818804754,1.8014818070626624,0.0,576.7410644536909,0.6107100000008359,500,mac,phase-17,with +25,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997,500,mac,phase-17,with +26,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505,500,mac,phase-17,with +27,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135,500,mac,phase-17,with +28,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412,500,mac,phase-17,with +29,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503,500,mac,phase-17,with +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467,500,mac,phase-10,with +1,3903.728343298676,4.398604694153814,104.4335387233186,657.7913383530023,0.6261754590013879,500,mac,phase-10,with +2,3896.366740257168,4.390309859358135,104.23659923657875,656.550883513103,0.6249946249990899,500,mac,phase-10,with +3,3867.204522235971,4.357450741663593,103.45644412404316,651.63695182151,0.620316874999844,500,mac,phase-10,with +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219,500,mac,phase-10,with +5,3883.288345022032,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649,500,mac,phase-10,with +6,3913.1526881477103,4.40922376491048,104.68566120628368,659.3793721161582,0.6276871660011238,500,mac,phase-10,with +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447,500,mac,phase-10,with +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342,500,mac,phase-10,with +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838,500,mac,phase-10,with +10,3932.1188059921474,4.430594220957613,105.1930476400088,662.5752266795704,0.6307294159996673,500,mac,phase-10,with +11,3893.858755217265,4.387483936599365,104.16950497956373,656.1282796096323,0.6245923329988727,500,mac,phase-10,with +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107,500,mac,phase-10,with +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145,500,mac,phase-10,with +14,3880.918548161949,4.372903297146174,103.82332525194025,653.9478112550415,0.6225166660005925,500,mac,phase-10,with +15,3906.1908620137183,4.401379386813467,104.4994166535864,658.2062810280139,0.6265704580000602,500,mac,phase-10,with +16,3930.222044592053,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943,500,mac,phase-10,with +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557,500,mac,phase-10,with +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798,500,mac,phase-10,with +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723,500,mac,phase-10,with +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463,500,mac,phase-10,with +21,3891.139591523075,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553,500,mac,phase-10,with +22,3941.683689330291,4.4413716462931685,105.4489298445666,664.1869416502057,0.6322636660006538,500,mac,phase-10,with +23,3892.6048936178126,4.386071122737294,104.13596135347484,655.9169997184408,0.6243912079989968,500,mac,phase-10,with +24,3895.8038444594863,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387,500,mac,phase-10,with +25,3904.985839441688,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816,500,mac,phase-10,with +26,3869.997206323634,4.360597454820098,103.53115472277416,652.1075284708238,0.6207648339986918,500,mac,phase-10,with +27,3899.157859558534,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278,500,mac,phase-10,with +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943,500,mac,phase-10,with +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187,500,mac,phase-10,with +0,2916.763315644649,1.67067423255281,0.0,579.3229968800124,0.6117394579996471,500,mac,phase-11,with +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503,500,mac,phase-11,with +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236,500,mac,phase-11,with +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066,500,mac,phase-11,with +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468,500,mac,phase-11,with +5,2911.317883364726,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165,500,mac,phase-11,with +6,2904.907730762028,1.6638835477999545,0.0,576.9682590351122,0.6092529589986952,500,mac,phase-11,with +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608,500,mac,phase-11,with +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151,500,mac,phase-11,with +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957,500,mac,phase-11,with +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525,500,mac,phase-11,with +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145,500,mac,phase-11,with +12,2910.385942948952,1.6670213779735783,0.0,578.0563330261181,0.6104019170015818,500,mac,phase-11,with +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145,500,mac,phase-11,with +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146,500,mac,phase-11,with +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738,500,mac,phase-11,with +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285,500,mac,phase-11,with +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401,500,mac,phase-11,with +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839,500,mac,phase-11,with +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941,500,mac,phase-11,with +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607,500,mac,phase-11,with +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747,500,mac,phase-11,with +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453,500,mac,phase-11,with +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695,500,mac,phase-11,with +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931,500,mac,phase-11,with +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845,500,mac,phase-11,with +26,2919.6262939438634,1.6723140996092831,0.0,579.8916371805151,0.6123399170028279,500,mac,phase-11,with +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624,500,mac,phase-11,with +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778,500,mac,phase-11,with +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547,500,mac,phase-11,with +0,2916.2755902573767,2.778202283975463,0.0,582.3513655012664,0.6122291249994305,500,mac,phase-29,with +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344,500,mac,phase-29,with +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462,500,mac,phase-29,with +3,2936.678307023689,2.7976390184558526,0.0,586.4255860613846,0.6165123750033672,500,mac,phase-29,with +4,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494,500,mac,phase-29,with +5,2910.084396408831,2.772304216951885,0.0,581.1150453798662,0.6109293750014331,500,mac,phase-29,with +6,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939,500,mac,phase-29,with +7,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087,500,mac,phase-29,with +8,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651,500,mac,phase-29,with +9,2915.6827503916365,2.777637512568216,0.0,582.2329812489377,0.6121046669977659,500,mac,phase-29,with +10,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618,500,mac,phase-29,with +11,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109,500,mac,phase-29,with +12,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725,500,mac,phase-29,with +13,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288,500,mac,phase-29,with +14,2910.23364716231,2.772446401313879,0.0,581.1448492778177,0.6109607079997659,500,mac,phase-29,with +15,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568,500,mac,phase-29,with +16,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962,500,mac,phase-29,with +17,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443,500,mac,phase-29,with +18,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258,500,mac,phase-29,with +19,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842,500,mac,phase-29,with +20,2907.473272598668,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353,500,mac,phase-29,with +21,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615,500,mac,phase-29,with +22,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745,500,mac,phase-29,with +23,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742,500,mac,phase-29,with +24,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454,500,mac,phase-29,with +25,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221,500,mac,phase-29,with +26,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285,500,mac,phase-29,with +27,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206,500,mac,phase-29,with +28,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614,500,mac,phase-29,with +29,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375,500,mac,phase-29,with +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562,500,mac,phase-16,with +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794,500,mac,phase-16,with +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635,500,mac,phase-16,with +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166,500,mac,phase-16,with +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775,500,mac,phase-16,with +5,2933.95348805359,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838,500,mac,phase-16,with +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928,500,mac,phase-16,with +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211,500,mac,phase-16,with +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087,500,mac,phase-16,with +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981,500,mac,phase-16,with +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659,500,mac,phase-16,with +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679,500,mac,phase-16,with +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196,500,mac,phase-16,with +13,2934.7404678341923,2.498502015864287,0.0,583.0171170618786,0.6106430830004683,500,mac,phase-16,with +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203,500,mac,phase-16,with +15,2960.0932313018448,2.5200861836385533,0.0,588.0537106647776,0.6159183329982625,500,mac,phase-16,with +16,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892,500,mac,phase-16,with +17,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375,500,mac,phase-16,with +18,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906,500,mac,phase-16,with +19,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768,500,mac,phase-16,with +20,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191,500,mac,phase-16,with +21,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664,500,mac,phase-16,with +22,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131,500,mac,phase-16,with +23,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699,500,mac,phase-16,with +24,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191,500,mac,phase-16,with +25,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552,500,mac,phase-16,with +26,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684,500,mac,phase-16,with +27,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217,500,mac,phase-16,with +28,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517,500,mac,phase-16,with +29,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705,500,mac,phase-16,with +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527,500,mac,phase-20,with +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256,500,mac,phase-20,with +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887,500,mac,phase-20,with +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624,500,mac,phase-20,with +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048,500,mac,phase-20,with +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276,500,mac,phase-20,with +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462,500,mac,phase-20,with +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564,500,mac,phase-20,with +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943,500,mac,phase-20,with +9,2911.6807159487107,2.395513992598981,0.0,578.1173768805539,0.6088341670001682,500,mac,phase-20,with +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115,500,mac,phase-20,with +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415,500,mac,phase-20,with +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134,500,mac,phase-20,with +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991,500,mac,phase-20,with +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045,500,mac,phase-20,with +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869,500,mac,phase-20,with +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593,500,mac,phase-20,with +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571,500,mac,phase-20,with +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506,500,mac,phase-20,with +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875,500,mac,phase-20,with +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202,500,mac,phase-20,with +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929,500,mac,phase-20,with +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303,500,mac,phase-20,with +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345,500,mac,phase-20,with +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896,500,mac,phase-20,with +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476,500,mac,phase-20,with +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539,500,mac,phase-20,with +27,2900.4514699927317,2.386275405529134,0.0,575.8877978676978,0.6064861250015383,500,mac,phase-20,with +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997,500,mac,phase-20,with +29,2973.5114011729834,2.4463836744344314,0.0,590.3939267635094,0.6217630000028294,500,mac,phase-20,with +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217,500,mac,phase-18,with +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801,500,mac,phase-18,with +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909,500,mac,phase-18,with +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121,500,mac,phase-18,with +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203,500,mac,phase-18,with +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098,500,mac,phase-18,with +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605,500,mac,phase-18,with +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971,500,mac,phase-18,with +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547,500,mac,phase-18,with +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134,500,mac,phase-18,with +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695,500,mac,phase-18,with +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172,500,mac,phase-18,with +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701,500,mac,phase-18,with +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134,500,mac,phase-18,with +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964,500,mac,phase-18,with +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188,500,mac,phase-18,with +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913,500,mac,phase-18,with +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462,500,mac,phase-18,with +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725,500,mac,phase-18,with +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809,500,mac,phase-18,with +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217,500,mac,phase-18,with +21,2959.5925028935953,2.819144749413765,0.0,590.7976357988317,0.6212104999976873,500,mac,phase-18,with +22,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129,500,mac,phase-18,with +23,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713,500,mac,phase-18,with +24,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781,500,mac,phase-18,with +25,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903,500,mac,phase-18,with +26,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854,500,mac,phase-18,with +27,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921,500,mac,phase-18,with +28,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723,500,mac,phase-18,with +29,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385,500,mac,phase-18,with +0,3011.160313901874,2.5761328304088797,0.0,592.341068570989,0.6206386250014475,500,mac,phase-27,with +1,2961.1375400963516,2.533336932338099,0.0,582.5008275343196,0.6103282920012134,500,mac,phase-27,with +2,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373,500,mac,phase-27,with +3,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715,500,mac,phase-27,with +4,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253,500,mac,phase-27,with +5,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257,500,mac,phase-27,with +6,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351,500,mac,phase-27,with +7,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131,500,mac,phase-27,with +8,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213,500,mac,phase-27,with +9,2955.905773306222,2.528861007849166,0.0,581.4716593705813,0.6092499580008734,500,mac,phase-27,with +10,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297,500,mac,phase-27,with +11,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951,500,mac,phase-27,with +12,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527,500,mac,phase-27,with +13,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587,500,mac,phase-27,with +14,3009.9004890583597,2.575055014616423,0.0,592.0932418476579,0.620378958999936,500,mac,phase-27,with +15,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875,500,mac,phase-27,with +16,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105,500,mac,phase-27,with +17,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127,500,mac,phase-27,with +18,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394,500,mac,phase-27,with +19,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971,500,mac,phase-27,with +20,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966,500,mac,phase-27,with +21,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951,500,mac,phase-27,with +22,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086,500,mac,phase-27,with +23,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334,500,mac,phase-27,with +24,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168,500,mac,phase-27,with +25,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722,500,mac,phase-27,with +26,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954,500,mac,phase-27,with +27,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092,500,mac,phase-27,with +28,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243,500,mac,phase-27,with +29,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267,500,mac,phase-27,with +0,4178.899201105131,5.488284972494792,106.22806997967332,659.321559768019,0.6223265419976087,500,mac,phase-5,with +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206,500,mac,phase-5,with +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914,500,mac,phase-5,with +3,4220.901846967973,5.543448420809863,107.29578178350656,665.9484843842789,0.6285816249983327,500,mac,phase-5,with +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172,500,mac,phase-5,with +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912,500,mac,phase-5,with +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368,500,mac,phase-5,with +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697,500,mac,phase-5,with +8,4225.91204815074,5.550028481858783,107.42314163983296,666.7389637664328,0.6293277500008116,500,mac,phase-5,with +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834,500,mac,phase-5,with +10,4439.673079154838,5.830767833948093,112.85697018358567,700.4648924373064,0.6611612920023617,500,mac,phase-5,with +11,4255.092473689515,5.5883520889305,108.16491121526325,671.3428756473014,0.6336733329990238,500,mac,phase-5,with +12,4192.928435888898,5.506710025297929,106.5846946462786,661.5350079788633,0.6244157920009457,500,mac,phase-5,with +13,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666,500,mac,phase-5,with +14,4163.911680836073,5.468601372027502,105.84708559231544,656.9569190420027,0.6200945830023556,500,mac,phase-5,with +15,4176.033033663473,5.484520741068836,106.1552116930974,658.8693531228598,0.6218997089999903,500,mac,phase-5,with +16,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769,500,mac,phase-5,with +17,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779,500,mac,phase-5,with +18,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807,500,mac,phase-5,with +19,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965,500,mac,phase-5,with +20,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122,500,mac,phase-5,with +21,4177.193318685504,5.486044581330055,106.18470626393656,659.0524159089396,0.6220724999984668,500,mac,phase-5,with +22,4240.824025130627,5.56961286885411,107.80220570860396,669.0916857270402,0.6315484590013511,500,mac,phase-5,with +23,4186.504453143061,5.498273198691004,106.4213963096036,660.5214706523857,0.6234591249994992,500,mac,phase-5,with +24,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181,500,mac,phase-5,with +25,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926,500,mac,phase-5,with +26,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411,500,mac,phase-5,with +27,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244,500,mac,phase-5,with +28,4209.1590568276115,5.528026230524569,106.99727878720144,664.095777645307,0.6268328749974899,500,mac,phase-5,with +29,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153,500,mac,phase-5,with +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901,500,mac,phase-2,with +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142,500,mac,phase-2,with +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616,500,mac,phase-2,with +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762,500,mac,phase-2,with +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902,500,mac,phase-2,with +5,2966.9573755043743,2.297635795126894,0.0,585.8295502339719,0.6165655409968167,500,mac,phase-2,with +6,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627,500,mac,phase-2,with +7,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874,500,mac,phase-2,with +8,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908,500,mac,phase-2,with +9,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865,500,mac,phase-2,with +10,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068,500,mac,phase-2,with +11,2967.8171338738516,2.298301598963909,0.0,585.999310629945,0.6167442080004548,500,mac,phase-2,with +12,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236,500,mac,phase-2,with +13,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381,500,mac,phase-2,with +14,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771,500,mac,phase-2,with +15,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913,500,mac,phase-2,with +16,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114,500,mac,phase-2,with +17,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037,500,mac,phase-2,with +18,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645,500,mac,phase-2,with +19,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216,500,mac,phase-2,with +20,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751,500,mac,phase-2,with +21,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859,500,mac,phase-2,with +22,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738,500,mac,phase-2,with +23,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113,500,mac,phase-2,with +24,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915,500,mac,phase-2,with +25,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869,500,mac,phase-2,with +26,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682,500,mac,phase-2,with +27,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566,500,mac,phase-2,with +28,2920.540539483107,2.261690221786506,0.0,576.6644862549181,0.6069196249991364,500,mac,phase-2,with +29,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783,500,mac,phase-2,with +0,3918.98590650998,5.811744006176802,104.04357804161344,658.8981264933894,0.6259630829990783,500,mac,phase-3,with +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426,500,mac,phase-3,with +2,3895.8175551975046,5.777386003855434,103.42849081614756,655.0028373451503,0.622262500000943,500,mac,phase-3,with +3,3895.0135710260497,5.776193718325202,103.40714616427016,654.8676636862141,0.6221340830015833,500,mac,phase-3,with +4,3989.9385038992486,5.916964678676485,105.9272699659612,670.8273690589139,0.6372960420012532,500,mac,phase-3,with +5,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738,500,mac,phase-3,with +6,3919.633892088269,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375,500,mac,phase-3,with +7,3916.25597151212,5.807695590658208,103.97110209712828,658.4391432006579,0.6255270420006127,500,mac,phase-3,with +8,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078,500,mac,phase-3,with +9,3902.03785350188,5.786610528324133,103.59363100994068,656.0486545531619,0.6232560420030495,500,mac,phase-3,with +10,3910.647659587238,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752,500,mac,phase-3,with +11,3934.942942332293,5.835407833888616,104.46721495725885,661.5809789604639,0.6285118330015393,500,mac,phase-3,with +12,3885.9065565334263,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964,500,mac,phase-3,with +13,3895.060006851172,5.776262581325674,103.40837897028432,654.8754709299515,0.6221414999999979,500,mac,phase-3,with +14,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226,500,mac,phase-3,with +15,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504,500,mac,phase-3,with +16,3888.3659841602007,5.766335537141401,103.23066205859465,653.7500065585541,0.6210722920004628,500,mac,phase-3,with +17,3914.404354325165,5.804949695331016,103.92194425836848,658.1278312631894,0.625231291000091,500,mac,phase-3,with +18,3953.712874083537,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388,500,mac,phase-3,with +19,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325,500,mac,phase-3,with +20,3938.661296366054,5.840922046566098,104.56593204053677,662.2061449000541,0.6291057500020543,500,mac,phase-3,with +21,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758,500,mac,phase-3,with +22,3916.1808364849194,5.807584167561926,103.96910736755976,658.4265107672076,0.6255150409997441,500,mac,phase-3,with +23,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244,500,mac,phase-3,with +24,3892.105981516816,5.771881846247623,103.32995374173188,654.3788113846371,0.6216696659976151,500,mac,phase-3,with +25,3870.0916956217825,5.7392352899310515,102.74550533411048,650.6775549682176,0.618153416999121,500,mac,phase-3,with +26,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036,500,mac,phase-3,with +27,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518,500,mac,phase-3,with +28,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333,500,mac,phase-3,with +29,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414,500,mac,phase-3,with +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368,500,mac,phase-4,with +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331,500,mac,phase-4,with +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703,500,mac,phase-4,with +3,3935.267962817907,4.790650299087921,105.05929606950852,659.6356950282599,0.6278394580003805,500,mac,phase-4,with +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595,500,mac,phase-4,with +5,3923.989045361744,4.776919760330386,104.75818439437823,657.7451054608762,0.6260399999991932,500,mac,phase-4,with +6,3898.694465671203,4.7461270705047545,104.0828985531672,653.5051889387316,0.6220044590008911,500,mac,phase-4,with +7,3894.514781749232,4.741038877217773,103.971314118566,652.8045838630626,0.6213376249979774,500,mac,phase-4,with +8,3918.225926213384,4.769903951309849,104.60432721194184,656.7790825265099,0.6251205420012411,500,mac,phase-4,with +9,3904.976514887927,4.753774605880575,104.25060953875165,654.5581957327869,0.6230067079995933,500,mac,phase-4,with +10,3900.61585011822,4.748466093174299,104.13419348387832,653.8272543678459,0.622310999999172,500,mac,phase-4,with +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011,500,mac,phase-4,with +12,3890.512694027786,4.736166883005214,103.86447094478568,652.1337477368717,0.620699125000101,500,mac,phase-4,with +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967,500,mac,phase-4,with +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517,500,mac,phase-4,with +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265,500,mac,phase-4,with +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703,500,mac,phase-4,with +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107,500,mac,phase-4,with +18,3901.9553617383385,4.750096765292231,104.1699542374576,654.0517853748532,0.6225247080001282,500,mac,phase-4,with +19,3916.8843211021353,4.76827073065291,104.56851056872397,656.5542006052852,0.6249065000010887,500,mac,phase-4,with +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055,500,mac,phase-4,with +21,3945.550802306459,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603,500,mac,phase-4,with +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766,500,mac,phase-4,with +23,3902.181791517138,4.750372412566515,104.17599920145868,654.0897398841586,0.6225608329987153,500,mac,phase-4,with +24,3924.885099333542,4.778010583437871,104.78210622140676,657.89530341183,0.6261829579998448,500,mac,phase-4,with +25,3922.3157590073897,4.774882763142472,104.71351290359992,657.4646266173096,0.6257730409997748,500,mac,phase-4,with +26,3926.91669945643,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049,500,mac,phase-4,with +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414,500,mac,phase-4,with +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465,500,mac,phase-4,with +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341,500,mac,phase-4,with +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527,500,mac,phase-22,with +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564,500,mac,phase-22,with +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987,500,mac,phase-22,with +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384,500,mac,phase-22,with +4,2893.026344318771,1.8327376373551,0.0,574.8798130845488,0.6091410410008393,500,mac,phase-22,with +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858,500,mac,phase-22,with +6,2890.589531602901,1.8311939119105216,0.0,574.3955885141876,0.608627958001307,500,mac,phase-22,with +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217,500,mac,phase-22,with +8,2885.062076872394,1.827692258929286,0.0,573.2972154736007,0.6074641250015702,500,mac,phase-22,with +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232,500,mac,phase-22,with +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973,500,mac,phase-22,with +11,2877.88322905155,1.823144445315372,0.0,571.8706903741963,0.6059525829987251,500,mac,phase-22,with +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582,500,mac,phase-22,with +13,2899.5976737820447,1.8369005869453976,0.0,576.1856168360363,0.6105246670013003,500,mac,phase-22,with +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935,500,mac,phase-22,with +15,2893.7573506004273,1.8332007312111809,0.0,575.0250729973689,0.6092949579979177,500,mac,phase-22,with +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482,500,mac,phase-22,with +17,2903.462655182409,1.8393490599411704,0.0,576.9536360382741,0.6113384579984995,500,mac,phase-22,with +18,2896.517124134783,1.834949052942479,0.0,575.5734738429754,0.6098760419990867,500,mac,phase-22,with +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857,500,mac,phase-22,with +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489,500,mac,phase-22,with +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384,500,mac,phase-22,with +22,2893.456165583078,1.8330099299354896,0.0,574.9652238408559,0.6092315419991792,500,mac,phase-22,with +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818,500,mac,phase-22,with +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026,500,mac,phase-22,with +25,2893.683735625488,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463,500,mac,phase-22,with +26,2885.7042275061403,1.8280990625650808,0.0,573.4248186795049,0.6075993330014171,500,mac,phase-22,with +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378,500,mac,phase-22,with +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905,500,mac,phase-22,with +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568,500,mac,phase-22,with +0,2966.6029811713843,1.7742228601436734,0.0,591.4644861652034,0.6251297919989156,500,mac,phase-25,with +1,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265,500,mac,phase-25,with +2,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777,500,mac,phase-25,with +3,2883.2836595675476,1.724392449394602,0.0,574.8527521202967,0.6075725420014351,500,mac,phase-25,with +4,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583,500,mac,phase-25,with +5,2895.5215166664366,1.7317114893746155,0.0,577.2926666982493,0.6101513329995214,500,mac,phase-25,with +6,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914,500,mac,phase-25,with +7,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713,500,mac,phase-25,with +8,2892.0002968654867,1.729605569335403,0.0,576.590625854408,0.6094093330029864,500,mac,phase-25,with +9,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046,500,mac,phase-25,with +10,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127,500,mac,phase-25,with +11,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929,500,mac,phase-25,with +12,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064,500,mac,phase-25,with +13,2929.81050511024,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686,500,mac,phase-25,with +14,2896.032852824472,1.7320173018835905,0.0,577.3946140029238,0.6102590829977999,500,mac,phase-25,with +15,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724,500,mac,phase-25,with +16,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483,500,mac,phase-25,with +17,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001,500,mac,phase-25,with +18,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563,500,mac,phase-25,with +19,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858,500,mac,phase-25,with +20,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492,500,mac,phase-25,with +21,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169,500,mac,phase-25,with +22,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306,500,mac,phase-25,with +23,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008,500,mac,phase-25,with +24,2892.911846698592,1.7301507358313315,0.0,576.7723654930026,0.6096014169997943,500,mac,phase-25,with +25,2888.988239731408,1.727804161915112,0.0,575.9900989768936,0.6087746250013879,500,mac,phase-25,with +26,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271,500,mac,phase-25,with +27,2895.1272397065154,1.731475685932106,0.0,577.2140579929434,0.6100682500000403,500,mac,phase-25,with +28,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418,500,mac,phase-25,with +29,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198,500,mac,phase-25,with +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472,500,mac,phase-13,with +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569,500,mac,phase-13,with +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239,500,mac,phase-13,with +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394,500,mac,phase-13,with +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282,500,mac,phase-13,with +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405,500,mac,phase-13,with +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909,500,mac,phase-13,with +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421,500,mac,phase-13,with +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795,500,mac,phase-13,with +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559,500,mac,phase-13,with +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654,500,mac,phase-13,with +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195,500,mac,phase-13,with +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255,500,mac,phase-13,with +13,2895.9775494362375,1.2657535699498177,0.0,576.1177301540012,0.6104503339993244,500,mac,phase-13,with +14,2957.7576947981343,1.2927560028792655,0.0,588.4081006789415,0.6234731250006007,500,mac,phase-13,with +15,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398,500,mac,phase-13,with +16,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095,500,mac,phase-13,with +17,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925,500,mac,phase-13,with +18,2892.9834865033354,1.264444945907924,0.0,575.522099590091,0.609819208002591,500,mac,phase-13,with +19,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311,500,mac,phase-13,with +20,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305,500,mac,phase-13,with +21,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842,500,mac,phase-13,with +22,2887.0621846104905,1.2618569047778825,0.0,574.3441322378487,0.608571042001131,500,mac,phase-13,with +23,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829,500,mac,phase-13,with +24,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487,500,mac,phase-13,with +25,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155,500,mac,phase-13,with +26,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769,500,mac,phase-13,with +27,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812,500,mac,phase-13,with +28,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479,500,mac,phase-13,with +29,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126,500,mac,phase-13,with +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732,500,mac,phase-14,with +1,2896.197005839203,2.303364416405272,0.0,578.6118178196027,0.6105097500003467,500,mac,phase-14,with +2,2891.913463676345,2.299957687313914,0.0,577.7560375972763,0.6096067920007044,500,mac,phase-14,with +3,2930.8278672154415,2.330906566902171,0.0,585.5304858567439,0.6178098329983186,500,mac,phase-14,with +4,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047,500,mac,phase-14,with +5,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838,500,mac,phase-14,with +6,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925,500,mac,phase-14,with +7,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505,500,mac,phase-14,with +8,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595,500,mac,phase-14,with +9,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481,500,mac,phase-14,with +10,2883.2526825801706,2.293069711476986,0.0,576.0257581018926,0.6077811249997467,500,mac,phase-14,with +11,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576,500,mac,phase-14,with +12,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386,500,mac,phase-14,with +13,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493,500,mac,phase-14,with +14,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134,500,mac,phase-14,with +15,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784,500,mac,phase-14,with +16,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753,500,mac,phase-14,with +17,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699,500,mac,phase-14,with +18,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159,500,mac,phase-14,with +19,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282,500,mac,phase-14,with +20,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848,500,mac,phase-14,with +21,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501,500,mac,phase-14,with +22,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107,500,mac,phase-14,with +23,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373,500,mac,phase-14,with +24,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919,500,mac,phase-14,with +25,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884,500,mac,phase-14,with +26,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782,500,mac,phase-14,with +27,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034,500,mac,phase-14,with +28,2898.382757621868,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129,500,mac,phase-14,with +29,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197,500,mac,phase-14,with +0,2880.5533097361076,1.825887494790604,0.0,573.3286733642497,0.6070650420006132,500,mac,phase-15,with +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006,500,mac,phase-15,with +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765,500,mac,phase-15,with +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952,500,mac,phase-15,with +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557,500,mac,phase-15,with +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265,500,mac,phase-15,with +6,2887.4259199457047,1.830243815153036,0.0,574.6965579580532,0.6085134170025412,500,mac,phase-15,with +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313,500,mac,phase-15,with +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573,500,mac,phase-15,with +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542,500,mac,phase-15,with +10,2889.5760202011456,1.8316066926098376,0.0,575.124501479489,0.6089665419967787,500,mac,phase-15,with +11,2886.0018121415305,1.8293411203054568,0.0,574.4131117759134,0.6082132920018921,500,mac,phase-15,with +12,2885.7890726205305,1.8292062717575304,0.0,574.3707693318646,0.6081684580021829,500,mac,phase-15,with +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014,500,mac,phase-15,with +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828,500,mac,phase-15,with +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965,500,mac,phase-15,with +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266,500,mac,phase-15,with +17,2884.020161092751,1.8280850172308232,0.0,574.0186954104786,0.6077956670014828,500,mac,phase-15,with +18,2897.609582545234,1.8366989021423303,0.0,576.7234552726918,0.6106595829987782,500,mac,phase-15,with +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742,500,mac,phase-15,with +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978,500,mac,phase-15,with +21,2887.338331075706,1.830188295464553,0.0,574.6791247758696,0.6084949579999375,500,mac,phase-15,with +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784,500,mac,phase-15,with +23,2886.9599134100326,1.829948429019025,0.0,574.6038067119739,0.6084152079965861,500,mac,phase-15,with +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548,500,mac,phase-15,with +25,2884.892258368299,1.8286378108570625,0.0,574.1922726091175,0.6079794580000453,500,mac,phase-15,with +26,2922.417689909578,1.852423941096783,0.0,581.66111750439,0.6158877919988299,500,mac,phase-15,with +27,2884.9082776565983,1.8286479649542224,0.0,574.1954609956258,0.6079828340007225,500,mac,phase-15,with +28,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738,500,mac,phase-15,with +29,2886.107584019245,1.8294081656012915,0.0,574.4341639988056,0.6082355830003507,500,mac,phase-15,with +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959,500,mac,phase-12,with +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716,500,mac,phase-12,with +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105,500,mac,phase-12,with +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413,500,mac,phase-12,with +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463,500,mac,phase-12,with +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355,500,mac,phase-12,with +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888,500,mac,phase-12,with +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446,500,mac,phase-12,with +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244,500,mac,phase-12,with +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718,500,mac,phase-12,with +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669,500,mac,phase-12,with +11,2923.2033739341073,2.15396766984184,0.0,582.5472874576939,0.6160578330018325,500,mac,phase-12,with +12,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169,500,mac,phase-12,with +13,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923,500,mac,phase-12,with +14,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987,500,mac,phase-12,with +15,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699,500,mac,phase-12,with +16,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191,500,mac,phase-12,with +17,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126,500,mac,phase-12,with +18,2890.736802936653,2.130044618540409,0.0,576.0772234736866,0.6092155839978659,500,mac,phase-12,with +19,2899.8549367525866,2.136763331861536,0.0,577.8943204873644,0.6111372079976718,500,mac,phase-12,with +20,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774,500,mac,phase-12,with +21,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751,500,mac,phase-12,with +22,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521,500,mac,phase-12,with +23,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356,500,mac,phase-12,with +24,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575,500,mac,phase-12,with +25,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191,500,mac,phase-12,with +26,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396,500,mac,phase-12,with +27,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963,500,mac,phase-12,with +28,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486,500,mac,phase-12,with +29,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595,500,mac,phase-12,with +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118,500,mac,phase-24,with +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383,500,mac,phase-24,with +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707,500,mac,phase-24,with +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253,500,mac,phase-24,with +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816,500,mac,phase-24,with +5,2959.9483484575985,0.7817513006203682,0.0,587.2311835138305,0.6225438329965982,500,mac,phase-24,with +6,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121,500,mac,phase-24,with +7,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468,500,mac,phase-24,with +8,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847,500,mac,phase-24,with +9,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303,500,mac,phase-24,with +10,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009,500,mac,phase-24,with +11,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886,500,mac,phase-24,with +12,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326,500,mac,phase-24,with +13,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613,500,mac,phase-24,with +14,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585,500,mac,phase-24,with +15,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853,500,mac,phase-24,with +16,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831,500,mac,phase-24,with +17,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403,500,mac,phase-24,with +18,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213,500,mac,phase-24,with +19,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625,500,mac,phase-24,with +20,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838,500,mac,phase-24,with +21,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121,500,mac,phase-24,with +22,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417,500,mac,phase-24,with +23,2895.520515500325,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469,500,mac,phase-24,with +24,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353,500,mac,phase-24,with +25,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964,500,mac,phase-24,with +26,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662,500,mac,phase-24,with +27,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742,500,mac,phase-24,with +28,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383,500,mac,phase-24,with +29,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062,500,mac,phase-24,with +0,2919.8438339372997,1.8030529009870455,0.0,578.746591348305,0.6114040419997764,500,mac,phase-23,with +1,2940.8832996175584,1.816045126526332,0.0,582.9168551496465,0.6158096250001108,500,mac,phase-23,with +2,2918.2461827418515,1.802066324380024,0.0,578.4299185273882,0.6110694999988482,500,mac,phase-23,with +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858,500,mac,phase-23,with +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065,500,mac,phase-23,with +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882,500,mac,phase-23,with +6,2918.686534688,1.8023382491469344,0.0,578.5172013419226,0.61116170799869,500,mac,phase-23,with +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931,500,mac,phase-23,with +8,2928.492909138035,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707,500,mac,phase-23,with +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285,500,mac,phase-23,with +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552,500,mac,phase-23,with +11,2901.6572096881105,1.7918223532329065,0.0,575.1417934923327,0.6075958329965943,500,mac,phase-23,with +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582,500,mac,phase-23,with +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802,500,mac,phase-23,with +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459,500,mac,phase-23,with +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779,500,mac,phase-23,with +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259,500,mac,phase-23,with +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319,500,mac,phase-23,with +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815,500,mac,phase-23,with +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445,500,mac,phase-23,with +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325,500,mac,phase-23,with +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322,500,mac,phase-23,with +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245,500,mac,phase-23,with +23,2956.03202168321,1.8253997183538984,0.0,585.9195058931133,0.6189817089980352,500,mac,phase-23,with +24,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916,500,mac,phase-23,with +25,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485,500,mac,phase-23,with +26,2885.41686295252,1.781793664727619,0.0,571.9227701985892,0.6041951670013077,500,mac,phase-23,with +27,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423,500,mac,phase-23,with +28,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737,500,mac,phase-23,with +29,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253,500,mac,phase-23,with +0,3932.41265398972,4.478944969047389,106.51806719621725,662.7828265851253,0.6318551250005839,500,mac,phase-8,with +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532,500,mac,phase-8,with +2,3908.699448921323,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069,500,mac,phase-8,with +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925,500,mac,phase-8,with +4,3869.162738242476,4.406904489866914,104.8048037702936,652.1224606396295,0.6216922079984215,500,mac,phase-8,with +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051,500,mac,phase-8,with +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978,500,mac,phase-8,with +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778,500,mac,phase-8,with +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074,500,mac,phase-8,with +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706,500,mac,phase-8,with +10,3894.38802258755,4.435635620180903,105.48808621527964,656.3740198554913,0.6257453749967681,500,mac,phase-8,with +11,3910.956019959519,4.4545062614400495,105.93686695439756,659.1664491082828,0.6284075000003213,500,mac,phase-8,with +12,3903.508961494342,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862,500,mac,phase-8,with +13,3851.845836610113,4.3871808605659375,104.33573730804557,649.2038083969791,0.6189097499991476,500,mac,phase-8,with +14,3886.53331843636,4.426689258052392,105.27532423473473,655.0501600581138,0.6244832910015248,500,mac,phase-8,with +15,3901.3203334792697,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713,500,mac,phase-8,with +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272,500,mac,phase-8,with +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295,500,mac,phase-8,with +18,3870.832218570019,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032,500,mac,phase-8,with +19,3910.039595065132,4.453462470507768,105.91204356553436,659.0119915944615,0.6282602499995846,500,mac,phase-8,with +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754,500,mac,phase-8,with +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134,500,mac,phase-8,with +22,3893.81000588388,4.434977269891977,105.47242935840843,656.2765988627368,0.6256524999989779,500,mac,phase-8,with +23,3910.340138863701,4.453804784311792,105.92018445697892,659.062646316093,0.6283085409995692,500,mac,phase-8,with +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367,500,mac,phase-8,with +25,3905.901941366857,4.448749759801594,105.79996609212364,658.314616711693,0.6275954170014302,500,mac,phase-8,with +26,3892.3977655668273,4.43336875440296,105.43417571561324,656.0385748526666,0.6254255829990143,500,mac,phase-8,with +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478,500,mac,phase-8,with +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464,500,mac,phase-8,with +29,3882.8875904046654,4.422536841543025,105.176571652636,654.4356960782576,0.6238975000014761,500,mac,phase-8,with +0,2951.495904520558,2.2148803831535737,0.033558793684145,582.077276451496,0.6138243749992398,500,mac,phase-1,with +1,2934.3258093471427,2.201995490811955,0.0333635680426053,578.6910876989903,0.6102534999990894,500,mac,phase-1,with +2,2958.2731076379414,2.219966175146153,0.033635851138578,583.4138379986367,0.6152338339998096,500,mac,phase-1,with +3,2935.405490800975,2.202805712255422,0.0333758441250821,578.9040163495498,0.6104780419991584,500,mac,phase-1,with +4,2932.144611632538,2.2003586625099203,0.0333387676137866,578.2609242611298,0.6097998750010447,500,mac,phase-1,with +5,2944.56143397673,2.2096765735356927,0.0334799480838741,580.7096995147969,0.6123822089975874,500,mac,phase-1,with +6,2943.7381974341965,2.2090587951183283,0.0334705878048231,580.5473454746576,0.612210999999661,500,mac,phase-1,with +7,2933.019134274525,2.201014927369172,0.033348711020745,578.4333926548225,0.6099817499998608,500,mac,phase-1,with +8,2934.32941563607,2.2019981970662945,0.033363609046459,578.6917989108315,0.6102542500011623,500,mac,phase-1,with +9,2925.5930077164485,2.195442166108989,0.0332642752440755,576.9688541084912,0.6084373340017919,500,mac,phase-1,with +10,2917.215217792331,2.189155251555359,0.0331690189629599,575.316633912541,0.6066950000022189,500,mac,phase-1,with +11,2923.9008598754463,2.194172333732569,0.0332450353595843,576.6351383119911,0.6080854169995291,500,mac,phase-1,with +12,2924.1478899759636,2.1943577116363113,0.0332478441157016,576.6838561868458,0.608136791997822,500,mac,phase-1,with +13,2930.0543738836395,2.198790092965551,0.0333150014085689,577.8486994316285,0.6093651670016698,500,mac,phase-1,with +14,2933.8690140150657,2.201652699545132,0.0333583742355323,578.6010011153077,0.6101584999996703,500,mac,phase-1,with +15,2982.76855070272,2.23834820177805,0.0339143666936068,588.2446903006103,0.6203281659982167,500,mac,phase-1,with +16,2921.9182046353953,2.1926844969407173,0.0332224923778896,576.2441302944961,0.6076730829990993,500,mac,phase-1,with +17,2933.0884565591487,2.2010669486401797,0.0333494992218209,578.4470640024837,0.6099961669970071,500,mac,phase-1,with +18,2923.955156023265,2.19421307899415,0.0332456527120325,576.645846290205,0.608096709001984,500,mac,phase-1,with +19,2920.4111839350135,2.1915535888540183,0.033205357406879,575.9469242223173,0.6073596669994004,500,mac,phase-1,with +20,2923.425629243495,2.193815708130423,0.03323963194137,576.5414160230634,0.6079865829997289,500,mac,phase-1,with +21,2927.2629120147917,2.1966953063442443,0.033283262217337,577.2981831597108,0.6087846250011353,500,mac,phase-1,with +22,2927.0900125724725,2.196565558041878,0.0332812963339678,577.2640849126723,0.6087486670003273,500,mac,phase-1,with +23,2935.697195491655,2.2030246151500767,0.0333791608356072,578.9615446936073,0.610538707998785,500,mac,phase-1,with +24,2924.6337375033436,2.194722304436847,0.0332533682490431,576.7796722796531,0.6082378339997376,500,mac,phase-1,with +25,2924.4710510312407,2.1946002202167354,0.0332515184881323,576.7475881766557,0.6082039999964763,500,mac,phase-1,with +26,2911.763322173297,2.1850640052693304,0.0331070303828686,574.2414419908566,0.6055611659976421,500,mac,phase-1,with +27,2927.3087935001095,2.1967297370211165,0.0332837838942593,577.3072316459284,0.6087941670011787,500,mac,phase-1,with +28,2926.9894358421257,2.19649008261035,0.0332801527668234,577.2442497405534,0.6087277499973425,500,mac,phase-1,with +29,2917.142890252357,2.1891009750614616,0.0331681965918403,575.3023698854705,0.6066799580003135,500,mac,phase-1,with +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153,500,mac,phase-30,with +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463,500,mac,phase-30,with +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461,500,mac,phase-30,with +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329,500,mac,phase-30,with +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703,500,mac,phase-30,with +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084,500,mac,phase-30,with +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313,500,mac,phase-30,with +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481,500,mac,phase-30,with +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714,500,mac,phase-30,with +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226,500,mac,phase-30,with +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025,500,mac,phase-30,with +11,2887.674248714824,2.131296944146192,0.0,576.88214005382,0.6101675410027383,500,mac,phase-30,with +12,2878.129996539094,2.12425264699067,0.0,574.975446934678,0.6081508339993889,500,mac,phase-30,with +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829,500,mac,phase-30,with +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129,500,mac,phase-30,with +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895,500,mac,phase-30,with +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531,500,mac,phase-30,with +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873,500,mac,phase-30,with +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236,500,mac,phase-30,with +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326,500,mac,phase-30,with +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912,500,mac,phase-30,with +21,2877.9582412967975,2.124125880121724,0.0,574.9411347085722,0.6081145419993845,500,mac,phase-30,with +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427,500,mac,phase-30,with +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106,500,mac,phase-30,with +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583,500,mac,phase-30,with +25,3027.270938994274,2.234328648479853,0.0,604.7699246502577,0.639664417001768,500,mac,phase-30,with +26,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333,500,mac,phase-30,with +27,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665,500,mac,phase-30,with +28,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394,500,mac,phase-30,with +29,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021,500,mac,phase-30,with +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121,500,mac,phase-6,with +1,3980.12865087621,4.269844255224866,105.04484031018048,671.0660693934268,0.6250826669966045,500,mac,phase-6,with +2,3971.13262941209,4.260193408747831,104.8074144073978,669.5493031545323,0.6236698339998838,500,mac,phase-6,with +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611,500,mac,phase-6,with +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523,500,mac,phase-6,with +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475,500,mac,phase-6,with +6,3990.206595708371,4.280655778826397,105.31082068378376,672.765252364458,0.6266654169994581,500,mac,phase-6,with +7,4021.568777932776,4.314300830368314,106.13854152210796,678.0530453478076,0.6315908750002563,500,mac,phase-6,with +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759,500,mac,phase-6,with +9,3997.3794308539345,4.288350728318347,105.50012846464432,673.9746218873453,0.6277919169988309,500,mac,phase-6,with +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202,500,mac,phase-6,with +11,3968.9393336960334,4.25784046191252,104.74952823876971,669.1795044710481,0.6233253749996948,500,mac,phase-6,with +12,3979.600159699821,4.269277294904891,105.0308922004336,670.9769636062633,0.6249996669976099,500,mac,phase-6,with +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161,500,mac,phase-6,with +14,4107.520756463168,4.406509297467087,108.40701388846765,692.5449026339484,0.645089707999432,500,mac,phase-6,with +15,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824,500,mac,phase-6,with +16,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711,500,mac,phase-6,with +17,3976.313797783479,4.265751717020369,104.94415747575891,670.4228694632716,0.6244835409997904,500,mac,phase-6,with +18,3991.684352559485,4.282241102356066,105.34982211968163,673.0144082507576,0.6268974999984493,500,mac,phase-6,with +19,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932,500,mac,phase-6,with +20,3945.661844046774,4.23286859186177,104.13518121697432,665.2548239256503,0.6196696250008245,500,mac,phase-6,with +21,3953.734597793666,4.2415289654912565,104.34823994009348,666.6159234280282,0.6209374579993892,500,mac,phase-6,with +22,3949.024607959405,4.236476133083047,104.22393236780093,665.8217997596224,0.6201977499986242,500,mac,phase-6,with +23,3953.6438628657106,4.241431625921392,104.34584523458176,666.6006251457864,0.620923208000022,500,mac,phase-6,with +24,3980.280939138054,4.270007628627338,105.04885955115223,671.0917458210638,0.6251065840006049,500,mac,phase-6,with +25,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405,500,mac,phase-6,with +26,3931.6565666482784,4.217843863143608,103.76554941436892,662.8934765223435,0.6174700840019796,500,mac,phase-6,with +27,3941.93640780823,4.228871979210103,104.03685830103603,664.6267000450754,0.6190845419987454,500,mac,phase-6,with +28,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492,500,mac,phase-6,with +29,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411,500,mac,phase-6,with +0,3910.189399402901,5.064969011966773,108.26371263078975,658.2793607329183,0.6260335840015614,500,mac,phase-7,with +1,3891.337220217528,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194,500,mac,phase-7,with +2,3907.058080336083,5.060912933751627,108.17701395894105,657.752203988575,0.6255322500001057,500,mac,phase-7,with +3,3951.59134928142,5.118598023697437,109.41003275653271,665.2493681456768,0.632662166000955,500,mac,phase-7,with +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164,500,mac,phase-7,with +5,3922.660266933899,5.081122847790299,108.60900087151764,660.3788280137984,0.6280302089980978,500,mac,phase-7,with +6,3930.0888097662346,5.090745230597534,108.81467930402228,661.6294212529888,0.6292195419991913,500,mac,phase-7,with +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145,500,mac,phase-7,with +8,3942.416276003112,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765,500,mac,phase-7,with +9,3854.415707263761,4.992723912429943,106.71947362819004,648.8898742766679,0.6171040410008573,500,mac,phase-7,with +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072,500,mac,phase-7,with +11,3887.387947176371,5.035433703786343,107.63239541843308,654.4407422256527,0.6223830000017188,500,mac,phase-7,with +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194,500,mac,phase-7,with +13,3942.922980650436,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838,500,mac,phase-7,with +14,3923.878487924429,5.082700840807135,108.64273047225252,660.5839151983221,0.6282252499986498,500,mac,phase-7,with +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408,500,mac,phase-7,with +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367,500,mac,phase-7,with +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995,500,mac,phase-7,with +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112,500,mac,phase-7,with +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427,500,mac,phase-7,with +20,3869.410472914197,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875,500,mac,phase-7,with +21,3881.1130856960726,5.027305714140381,107.45865963975064,653.3843709397581,0.6213783750026778,500,mac,phase-7,with +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678,500,mac,phase-7,with +23,3928.4846375733423,5.088667305050476,108.77026364545392,661.3593592846852,0.6289627090009162,500,mac,phase-7,with +24,3922.13378131762,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337,500,mac,phase-7,with +25,3911.223882566581,5.066309004645449,108.29235497429649,658.4535157024397,0.626199207999889,500,mac,phase-7,with +26,3896.116177201257,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608,500,mac,phase-7,with +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889,500,mac,phase-7,with +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519,500,mac,phase-7,with +29,3903.2857744554663,5.056026568811887,108.07256790835407,657.1171372820976,0.6249282919998222,500,mac,phase-7,with +0,3901.919386580033,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836,500,mac,phase-9,with +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607,500,mac,phase-9,with +2,3910.238854451517,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785,500,mac,phase-9,with +3,3911.202429509975,5.193629375243073,102.64076515304096,659.6575156478605,0.6256015840008331,500,mac,phase-9,with +4,3896.403904938974,5.173978627600272,102.25241095443356,657.1616187645627,0.623234542003047,500,mac,phase-9,with +5,3930.108712793952,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417,500,mac,phase-9,with +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612,500,mac,phase-9,with +7,3946.2917657672665,5.240223999486666,103.56160634882944,665.5756302937743,0.6312141659982444,500,mac,phase-9,with +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819,500,mac,phase-9,with +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852,500,mac,phase-9,with +10,3942.866246351669,5.235675301590572,103.47171124874188,664.9978873443307,0.6306662500028324,500,mac,phase-9,with +11,3920.5909670871097,5.206096279073792,102.88714633579808,661.2409722664623,0.6271032920012658,500,mac,phase-9,with +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156,500,mac,phase-9,with +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094,500,mac,phase-9,with +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447,500,mac,phase-9,with +15,3919.679751755219,5.20488628935831,102.86323352622864,661.0872880599075,0.6269575420010369,500,mac,phase-9,with +16,3939.657718042438,5.231414743059418,103.38751059520632,664.4567417883288,0.6301530419987103,500,mac,phase-9,with +17,3906.386898745852,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914,500,mac,phase-9,with +18,3907.238977299649,5.188366364136408,102.536753209183,658.9890457628128,0.6249676250008633,500,mac,phase-9,with +19,3910.2154035747167,5.192318717719235,102.6148628636436,659.4910453390316,0.6254437080024218,500,mac,phase-9,with +20,3923.541347906347,5.210014047270941,102.96457248548916,661.7385790552976,0.6275752090004971,500,mac,phase-9,with +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085,500,mac,phase-9,with +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521,500,mac,phase-9,with +23,3944.379726555403,5.237685030155285,103.5114291536458,665.2531486378001,0.630908333001571,500,mac,phase-9,with +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105,500,mac,phase-9,with +25,3947.333495911774,5.241607297942091,103.58894422791964,665.7513269322089,0.6313807920014369,500,mac,phase-9,with +26,3899.151355134042,5.177626927144285,102.32451164349892,657.6249995797234,0.623674000002211,500,mac,phase-9,with +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154,500,mac,phase-9,with +28,3905.69892649689,5.1863213528559315,102.49633801830024,658.7293031120989,0.6247212920025049,500,mac,phase-9,with +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838,500,mac,phase-9,with diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n500/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n500/without_smell.csv new file mode 100644 index 000000000..03cbe1943 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/data/n500/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s,size,profiler,phase,variant +0,355.0041249267728,0.0,0.0,73.82307578403244,0.1089681670018762,500,mac,phase-19,without +1,353.4402104749345,0.0,0.0,73.49785991471933,0.1084881249989848,500,mac,phase-19,without +2,350.8823752799278,0.0,0.0,72.96595831644073,0.1077030000014929,500,mac,phase-19,without +3,350.97739756413245,0.0,0.0,72.98571819187727,0.1077321669981756,500,mac,phase-19,without +4,352.6420323212576,0.0,0.0,73.33187883959745,0.1082431249997171,500,mac,phase-19,without +5,354.0361270375474,0.0,0.0,73.62178071020813,0.1086710410017985,500,mac,phase-19,without +6,334.5734779261205,0.0,0.0,69.57452458154408,0.102696999998443,500,mac,phase-19,without +7,353.746994323176,0.0,0.0,73.56165558831248,0.1085822919994825,500,mac,phase-19,without +8,351.5615043409446,0.0,0.0,73.10718314347316,0.1079114579988527,500,mac,phase-19,without +9,344.2555939822133,0.0,0.0,71.58791974281488,0.1056689159995585,500,mac,phase-19,without +10,353.00555848573197,0.0,0.0,73.40747407273736,0.1083547089983767,500,mac,phase-19,without +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889,500,mac,phase-19,without +12,354.5682479676913,0.0,0.0,73.73243520967453,0.1088343749979685,500,mac,phase-19,without +13,340.24380070376134,0.0,0.0,70.75366769212076,0.1044374999983119,500,mac,phase-19,without +14,357.4707397539094,0.0,0.0,74.33600811503362,0.1097252919971651,500,mac,phase-19,without +15,353.83101804782274,0.0,0.0,73.57912831428018,0.108608082999126,500,mac,phase-19,without +16,353.14374430898687,0.0,0.0,73.43620980222931,0.1083971250009199,500,mac,phase-19,without +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538,500,mac,phase-19,without +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631,500,mac,phase-19,without +19,356.9293892674415,0.0,0.0,74.22343433016144,0.1095591249977587,500,mac,phase-19,without +20,337.23407287000106,0.0,0.0,70.12779506033984,0.1035136669997882,500,mac,phase-19,without +21,353.29401357030446,0.0,0.0,73.46745828157741,0.1084432500028924,500,mac,phase-19,without +22,353.32387845566024,0.0,0.0,73.47366868179559,0.1084524170000804,500,mac,phase-19,without +23,354.1508333805749,0.0,0.0,73.64563388390287,0.1087062500009778,500,mac,phase-19,without +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099,500,mac,phase-19,without +25,352.473707948533,0.0,0.0,73.29687580145946,0.1081914579990552,500,mac,phase-19,without +26,360.93358193698526,0.0,0.0,75.0561058349181,0.1107882079995761,500,mac,phase-19,without +27,338.47464045384555,0.0,0.0,70.38577097759506,0.1038944579995586,500,mac,phase-19,without +28,355.80325111504544,0.0,0.0,73.98925400286308,0.1092134579994308,500,mac,phase-19,without +29,354.60680161162924,0.0,0.0,73.7404524364568,0.108846209001058,500,mac,phase-19,without +0,351.7954310298514,0.0,0.0,73.25457676290097,0.1086488340006326,500,mac,phase-26,without +1,355.551001689785,0.0,0.0,74.0366015276662,0.1098087079990364,500,mac,phase-26,without +2,353.76569761686557,0.0,0.0,73.6648465737376,0.1092573329988226,500,mac,phase-26,without +3,351.52425260491015,0.0,0.0,73.19810911439244,0.1085650829991209,500,mac,phase-26,without +4,352.8167204788052,0.0,0.0,73.46724048657845,0.1089642500010086,500,mac,phase-26,without +5,351.8967485585963,0.0,0.0,73.27567417358975,0.108680125002138,500,mac,phase-26,without +6,333.8565823831006,0.0,0.0,69.51915938870556,0.1031085829999938,500,mac,phase-26,without +7,354.3529740261682,0.0,0.0,73.78713549795803,0.1094387080011074,500,mac,phase-26,without +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363,500,mac,phase-26,without +9,354.08719643537285,0.0,0.0,73.73179246843152,0.1093566249983268,500,mac,phase-26,without +10,352.01722479777135,0.0,0.0,73.30076101421447,0.1087173329979123,500,mac,phase-26,without +11,352.19504125685603,0.0,0.0,73.33778784373752,0.1087722500014933,500,mac,phase-26,without +12,404.253122170483,0.0,0.0,84.17787372334351,0.1248499169996648,500,mac,phase-26,without +13,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644,500,mac,phase-26,without +14,353.63739856928817,0.0,0.0,73.63813078495703,0.1092177089994947,500,mac,phase-26,without +15,349.80761818700586,0.0,0.0,72.84065328453109,0.1080349160001787,500,mac,phase-26,without +16,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222,500,mac,phase-26,without +17,343.3340886156128,0.0,0.0,71.49266628104358,0.106035624998185,500,mac,phase-26,without +18,352.7287560959643,0.0,0.0,73.44892360959012,0.1089370829977269,500,mac,phase-26,without +19,352.0274792749238,0.0,0.0,73.30289631023446,0.108720500000345,500,mac,phase-26,without +20,330.632971611579,0.0,0.0,68.84790495534112,0.102112999997189,500,mac,phase-26,without +21,344.06923077621286,0.0,0.0,71.64574538067167,0.1062626669991004,500,mac,phase-26,without +22,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678,500,mac,phase-26,without +23,353.40008547212716,0.0,0.0,73.58871493426808,0.1091444169978785,500,mac,phase-26,without +24,352.96917436413725,0.0,0.0,73.49898605192921,0.1090113340032985,500,mac,phase-26,without +25,351.45126682709304,0.0,0.0,73.18291124144665,0.1085425420023966,500,mac,phase-26,without +26,352.4323511146662,0.0,0.0,73.38720301989446,0.1088455410026654,500,mac,phase-26,without +27,336.2224182777831,0.0,0.0,70.01179883728538,0.1038392499976907,500,mac,phase-26,without +28,350.4310523596511,0.0,0.0,72.97047136182381,0.1082274580003286,500,mac,phase-26,without +29,349.8513332379995,0.0,0.0,72.84975609621154,0.1080484169979172,500,mac,phase-26,without +0,371.4568880575053,0.0,0.0,76.70321474475051,0.1102369580003141,500,mac,phase-21,without +1,369.29752302591254,0.0,0.0,76.25732116986836,0.1095961249993706,500,mac,phase-21,without +2,361.783124260732,0.0,0.0,74.7056510819143,0.1073660830006701,500,mac,phase-21,without +3,357.0969638630331,0.0,0.0,73.73799217217456,0.1059753749977971,500,mac,phase-21,without +4,366.1550707681201,0.0,0.0,75.60842705024373,0.1086635420033417,500,mac,phase-21,without +5,364.0291189051167,0.0,0.0,75.16943305786498,0.1080326250012149,500,mac,phase-21,without +6,349.3712628459299,0.0,0.0,72.14268966676815,0.1036826250019657,500,mac,phase-21,without +7,361.1163602890243,0.0,0.0,74.5679690473358,0.1071682080000755,500,mac,phase-21,without +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093,500,mac,phase-21,without +9,365.2454143175718,0.0,0.0,75.42058944024481,0.1083935839997138,500,mac,phase-21,without +10,378.791854453436,0.0,0.0,78.21783332015166,0.1124137500009965,500,mac,phase-21,without +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268,500,mac,phase-21,without +12,369.4220575227252,0.0,0.0,76.28303666084257,0.1096330830005172,500,mac,phase-21,without +13,345.8947934099548,0.0,0.0,71.42482336714019,0.1026509160001296,500,mac,phase-21,without +14,353.18188420676984,0.0,0.0,72.92955597063431,0.1048134999982721,500,mac,phase-21,without +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518,500,mac,phase-21,without +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049,500,mac,phase-21,without +17,364.24294838058665,0.0,0.0,75.21358732906856,0.1080960830004187,500,mac,phase-21,without +18,368.872529440838,0.0,0.0,76.16956300662206,0.109469999999419,500,mac,phase-21,without +19,371.3581850954161,0.0,0.0,76.68283328262,0.1102076660026796,500,mac,phase-21,without +20,357.45863551761073,0.0,0.0,73.81267480555692,0.1060827080000308,500,mac,phase-21,without +21,361.21646839471185,0.0,0.0,74.58864066166066,0.1071979170010308,500,mac,phase-21,without +22,365.8029418804323,0.0,0.0,75.53571493059131,0.1085590410002623,500,mac,phase-21,without +23,363.99401755379665,0.0,0.0,75.1621848775924,0.1080222080017847,500,mac,phase-21,without +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562,500,mac,phase-21,without +25,362.63591832244185,0.0,0.0,74.88174701162083,0.1076191659994947,500,mac,phase-21,without +26,366.9264345364295,0.0,0.0,75.76770820148677,0.1088924590003443,500,mac,phase-21,without +27,371.6140000532096,0.0,0.0,76.73565725835823,0.1102835839992621,500,mac,phase-21,without +28,365.9034711798288,0.0,0.0,75.55647351843196,0.1085888749985315,500,mac,phase-21,without +29,368.29253324875754,0.0,0.0,76.04979790358432,0.1092978750020847,500,mac,phase-21,without +0,363.8555760220334,0.0,0.0,75.37472069721154,0.1118581669979903,500,mac,phase-28,without +1,356.073044172833,0.0,0.0,73.76252563107049,0.1094656249988474,500,mac,phase-28,without +2,354.0995230742944,0.0,0.0,73.353699680899,0.1088589159990078,500,mac,phase-28,without +3,352.099036026975,0.0,0.0,72.93928758338875,0.1082439170022553,500,mac,phase-28,without +4,352.917119453682,0.0,0.0,73.10875814769673,0.1084954159996414,500,mac,phase-28,without +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692,500,mac,phase-28,without +6,352.16463583615,0.0,0.0,72.9528769513144,0.1082640839995292,500,mac,phase-28,without +7,337.48447844835925,0.0,0.0,69.91180011804681,0.1037510419992031,500,mac,phase-28,without +8,405.16068508681326,0.0,0.0,83.93130540910039,0.1245563750017026,500,mac,phase-28,without +9,355.01452131885316,0.0,0.0,73.54324669258992,0.1091402089987241,500,mac,phase-28,without +10,352.03099657689336,0.0,0.0,72.92519283018375,0.1082229999992705,500,mac,phase-28,without +11,352.0968663843558,0.0,0.0,72.938838129767,0.1082432500006689,500,mac,phase-28,without +12,352.44085313693654,0.0,0.0,73.01009691239383,0.1083490000019082,500,mac,phase-28,without +13,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927,500,mac,phase-28,without +14,333.25363011232423,0.0,0.0,69.0353561862886,0.1024503750013536,500,mac,phase-28,without +15,352.36373178750216,0.0,0.0,72.99412079286597,0.1083252909993461,500,mac,phase-28,without +16,352.425535562288,0.0,0.0,73.00692379100454,0.1083442910021403,500,mac,phase-28,without +17,351.4065898823191,0.0,0.0,72.7958434858105,0.1080310420002206,500,mac,phase-28,without +18,352.9674049543168,0.0,0.0,73.1191750708257,0.1085108750012295,500,mac,phase-28,without +19,352.3824388133895,0.0,0.0,72.99799605806528,0.1083310419999179,500,mac,phase-28,without +20,359.6312333359141,0.0,0.0,74.49962444727453,0.1105594999971799,500,mac,phase-28,without +21,334.32625072049933,0.0,0.0,69.25755555351878,0.1027801249983895,500,mac,phase-28,without +22,349.209436738063,0.0,0.0,72.34069090470156,0.1073555830007535,500,mac,phase-28,without +23,356.1634468203862,0.0,0.0,73.7812530458984,0.1094934169996122,500,mac,phase-28,without +24,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359,500,mac,phase-28,without +25,354.11606046939625,0.0,0.0,73.35712549492798,0.1088640000016312,500,mac,phase-28,without +26,351.1624910291874,0.0,0.0,72.7452770410731,0.1079559999998309,500,mac,phase-28,without +27,354.5463838131862,0.0,0.0,73.44626938603518,0.1089962919977551,500,mac,phase-28,without +28,397.0313202491415,0.0,0.0,82.24726194662468,0.1220572079982957,500,mac,phase-28,without +29,355.7000551949418,0.0,0.0,73.68525887501565,0.1093509589991299,500,mac,phase-28,without +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.1093853339989436,500,mac,phase-17,without +1,362.3638254849227,0.4978892903062966,0.0,76.17706141686338,0.1088726670022879,500,mac,phase-17,without +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.1107375419996969,500,mac,phase-17,without +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139,500,mac,phase-17,without +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.1103431670017016,500,mac,phase-17,without +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.1093056250028894,500,mac,phase-17,without +6,360.5148000962549,0.4953487223086766,0.0,75.78835451322753,0.1083171249993029,500,mac,phase-17,without +7,358.84675249219504,0.4930568184833677,0.0,75.43769322795526,0.1078159579992643,500,mac,phase-17,without +8,361.4683657469591,0.4966589251813122,0.0,75.98881555274077,0.1086036249980679,500,mac,phase-17,without +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.1112682079983642,500,mac,phase-17,without +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.1089509580015146,500,mac,phase-17,without +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.1114148329979798,500,mac,phase-17,without +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.1090389169985428,500,mac,phase-17,without +13,360.0388493468535,0.4946947641479163,0.0,75.6882989146312,0.108174124998186,500,mac,phase-17,without +14,357.3634303624893,0.4910187281704991,0.0,75.12586541008638,0.1073702920002688,500,mac,phase-17,without +15,410.0131251531342,0.5633596113673182,0.0,86.19402053919968,0.123188959001709,500,mac,phase-17,without +16,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.1093028750001394,500,mac,phase-17,without +17,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.1070279170016874,500,mac,phase-17,without +18,346.93966636378417,0.4766964363338611,0.0,72.93455475908077,0.1042384590000438,500,mac,phase-17,without +19,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.109053791999031,500,mac,phase-17,without +20,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.108166958001675,500,mac,phase-17,without +21,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.1082546659999934,500,mac,phase-17,without +22,359.93511539136995,0.4945522332939955,0.0,75.66649169398131,0.1081429580008261,500,mac,phase-17,without +23,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.1078082080020976,500,mac,phase-17,without +24,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.1084412910022365,500,mac,phase-17,without +25,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169,500,mac,phase-17,without +26,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.1088503329992818,500,mac,phase-17,without +27,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.1085732499996083,500,mac,phase-17,without +28,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.1122939589986344,500,mac,phase-17,without +29,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.110120666999137,500,mac,phase-17,without +0,537.586585590763,1.4050178341513406,20.03823053944412,97.1469473898927,0.112041666998266,500,mac,phase-10,without +1,551.1176123306176,1.440382060851645,20.542591772622274,99.59213106459949,0.1148617500002728,500,mac,phase-10,without +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217444,0.1084056660001806,500,mac,phase-10,without +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.1091209999976854,500,mac,phase-10,without +4,539.1167749298061,1.4090170844462884,20.09526746626968,97.4234669817148,0.1123605829998268,500,mac,phase-10,without +5,550.2607540984404,1.4381426056088673,20.510652875231223,99.43728873067025,0.1146831670012034,500,mac,phase-10,without +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.1111136250001436,500,mac,phase-10,without +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.1117185420007444,500,mac,phase-10,without +8,537.9854272547229,1.406060233024167,20.053097132892287,97.2190218262424,0.1121247919982124,500,mac,phase-10,without +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031,500,mac,phase-10,without +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.1059001670000725,500,mac,phase-10,without +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823145,0.1097277499975462,500,mac,phase-10,without +12,533.816683809472,1.395164948350829,19.897709620527294,96.46569071454304,0.1112559590001183,500,mac,phase-10,without +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914947,0.1127309580006112,500,mac,phase-10,without +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.1122200829995563,500,mac,phase-10,without +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.1117655419984657,500,mac,phase-10,without +16,541.3640875617663,1.41489058354662,20.17903475105775,97.82957749093774,0.1128289589978521,500,mac,phase-10,without +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913888,0.1121329170018725,500,mac,phase-10,without +18,543.8858800536349,1.421481453780502,20.27303311463145,98.28528908996614,0.113354541001172,500,mac,phase-10,without +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446,500,mac,phase-10,without +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748584,0.11043866700129,500,mac,phase-10,without +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454,500,mac,phase-10,without +22,549.6611889257908,1.436575602668526,20.488304428534455,99.3289416702238,0.1145582080025633,500,mac,phase-10,without +23,535.2031318006688,1.3987885211965203,19.949388671350377,96.71623489415944,0.1115449169992643,500,mac,phase-10,without +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321024,0.1154080420019454,500,mac,phase-10,without +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.1097549170008278,500,mac,phase-10,without +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.1108595000005152,500,mac,phase-10,without +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.1113768329996673,500,mac,phase-10,without +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221069,0.1109710000018822,500,mac,phase-10,without +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.1128227090011932,500,mac,phase-10,without +0,369.6457899010592,0.9711657824905524,0.0,82.75002236324673,0.1110664580010052,500,mac,phase-11,without +1,359.12051672685783,0.9435128632975972,0.0,80.3938029382194,0.1079039579999516,500,mac,phase-11,without +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.105773584000417,500,mac,phase-11,without +3,374.8716803818042,0.9848956994992136,0.0,83.9199059814675,0.1126366669996059,500,mac,phase-11,without +4,376.96633455222275,0.9903989583270936,0.0,84.38882158711202,0.1132660420007596,500,mac,phase-11,without +5,368.643464389488,0.9685323851508564,0.0,82.52563874854367,0.1107652919999964,500,mac,phase-11,without +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.1074476249996223,500,mac,phase-11,without +7,361.0118775242784,0.9484820119771764,0.0,80.81720867571043,0.108472249998158,500,mac,phase-11,without +8,364.70279545437313,0.9581791147107104,0.0,81.64346870517811,0.1095812499988824,500,mac,phase-11,without +9,363.31662114091176,0.9545372361919228,0.0,81.33315553897383,0.1091647499997634,500,mac,phase-11,without +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.1110747499988065,500,mac,phase-11,without +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.1074340419982036,500,mac,phase-11,without +12,372.4174462680742,0.9784477207622896,0.0,83.37049372426266,0.1118992499978048,500,mac,phase-11,without +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.1098165830007928,500,mac,phase-11,without +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.1094639580005605,500,mac,phase-11,without +15,364.7247080018868,0.9582366852740276,0.0,81.64837411421111,0.1095878340020135,500,mac,phase-11,without +16,363.90181967276175,0.9560747210101548,0.0,81.46415984883079,0.1093405829997209,500,mac,phase-11,without +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.1090366669996001,500,mac,phase-11,without +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.1087789999983215,500,mac,phase-11,without +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.1085855829987849,500,mac,phase-11,without +20,360.06169081323577,0.94598559825909,0.0,80.60449701028317,0.1081867499997315,500,mac,phase-11,without +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.1089155000008759,500,mac,phase-11,without +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.1085442080002394,500,mac,phase-11,without +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745,500,mac,phase-11,without +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.1076402500002586,500,mac,phase-11,without +25,415.10096515168647,1.0905895986047207,0.0,92.9257551086988,0.1247242500030552,500,mac,phase-11,without +26,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.1124117920007847,500,mac,phase-11,without +27,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958,500,mac,phase-11,without +28,385.6766545760032,1.0132834737003162,0.0,86.33874012115454,0.1158832080000138,500,mac,phase-11,without +29,374.6998646691671,0.9844442902161484,0.0,83.88144279738285,0.1125850420030474,500,mac,phase-11,without +0,357.96048293355267,0.0,0.0,74.32044363142623,0.1103388750016165,500,mac,phase-29,without +1,336.02149904696915,0.0,0.0,69.76542962007161,0.1035763330000918,500,mac,phase-29,without +2,351.0183178122401,0.0,0.0,72.87909796290356,0.1081989999984216,500,mac,phase-29,without +3,347.93106372332824,0.0,0.0,72.23811633384071,0.1072473750027711,500,mac,phase-29,without +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292,500,mac,phase-29,without +5,350.19713174353114,0.0,0.0,72.70860173262069,0.1079458749991317,500,mac,phase-29,without +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659,500,mac,phase-29,without +7,355.219004525288,0.0,0.0,73.75125261391933,0.1094938329988508,500,mac,phase-29,without +8,332.0804839475747,0.0,0.0,68.94718848869086,0.1023615420017449,500,mac,phase-29,without +9,347.71262254057837,0.0,0.0,72.19276315553373,0.107180041999527,500,mac,phase-29,without +10,347.69072425564144,0.0,0.0,72.18821659151654,0.1071732920026988,500,mac,phase-29,without +11,349.79985125658436,0.0,0.0,72.6261175941649,0.107823416001338,500,mac,phase-29,without +12,352.3465418754639,0.0,0.0,73.1548663963679,0.1086084159978781,500,mac,phase-29,without +13,350.4592364960211,0.0,0.0,72.76302042521861,0.108026666999649,500,mac,phase-29,without +14,352.43184142678575,0.0,0.0,73.17257645319833,0.1086347090022172,500,mac,phase-29,without +15,333.343418635852,0.0,0.0,69.20940141661261,0.1027508329971169,500,mac,phase-29,without +16,396.5160813956773,0.0,0.0,82.32543110573395,0.1222233750013401,500,mac,phase-29,without +17,352.97632387457793,0.0,0.0,73.28562294575474,0.1088025419994664,500,mac,phase-29,without +18,350.7025476533563,0.0,0.0,72.81353715546054,0.1081016660027671,500,mac,phase-29,without +19,350.1848297681744,0.0,0.0,72.70604757284707,0.1079420829992159,500,mac,phase-29,without +20,350.68254396824653,0.0,0.0,72.80938395190176,0.1080955000034009,500,mac,phase-29,without +21,353.57487727944215,0.0,0.0,73.40989575436771,0.1089870420000806,500,mac,phase-29,without +22,350.58089369750513,0.0,0.0,72.78827912727185,0.1080641670014301,500,mac,phase-29,without +23,354.39984608014447,0.0,0.0,73.58117736273917,0.109241333000682,500,mac,phase-29,without +24,350.82717976651696,0.0,0.0,72.83941351439523,0.1081400830007623,500,mac,phase-29,without +25,349.56127013115605,0.0,0.0,72.57658292224077,0.1077498749982623,500,mac,phase-29,without +26,399.81461348479326,0.0,0.0,83.01027867937269,0.1232401249981194,500,mac,phase-29,without +27,357.78056653953445,0.0,0.0,74.28308904381807,0.110283417001483,500,mac,phase-29,without +28,363.9649435656808,0.0,0.0,75.56710129120493,0.1121897089979029,500,mac,phase-29,without +29,352.905762706687,0.0,0.0,73.27097290042619,0.1087807920011982,500,mac,phase-29,without +0,355.31751000520677,0.0,0.0,73.78324951983832,0.1092719590014894,500,mac,phase-16,without +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213,500,mac,phase-16,without +2,351.03910799377473,0.0,0.0,72.89482045494073,0.1079562080012692,500,mac,phase-16,without +3,352.04523324830114,0.0,0.0,73.10374680563434,0.1082656250000582,500,mac,phase-16,without +4,347.36078088160747,0.0,0.0,72.13099959193667,0.1068250000025727,500,mac,phase-16,without +5,353.3662284867774,0.0,0.0,73.37805729850474,0.1086718749975261,500,mac,phase-16,without +6,350.7655636148851,0.0,0.0,72.83801775708868,0.1078720840014284,500,mac,phase-16,without +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843,500,mac,phase-16,without +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115,500,mac,phase-16,without +9,354.39078102596784,0.0,0.0,73.59081015620703,0.1089869589995942,500,mac,phase-16,without +10,354.1366069121032,0.0,0.0,73.53802977939847,0.1089087920008751,500,mac,phase-16,without +11,336.51778199022067,0.0,0.0,69.87940300516897,0.1034904169973742,500,mac,phase-16,without +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387,500,mac,phase-16,without +13,354.1658720356466,0.0,0.0,73.54410681149463,0.1089177920002839,500,mac,phase-16,without +14,348.69315700606205,0.0,0.0,72.40767337602198,0.1072347500012256,500,mac,phase-16,without +15,355.05290449197474,0.0,0.0,73.72830301690117,0.1091905840003164,500,mac,phase-16,without +16,398.8938216060945,0.0,0.0,82.83206299361113,0.1226731250026205,500,mac,phase-16,without +17,353.3356074134523,0.0,0.0,73.3716986974505,0.1086624579984345,500,mac,phase-16,without +18,330.53766821951785,0.0,0.0,68.63760598116552,0.1016513329996087,500,mac,phase-16,without +19,346.2550728954724,0.0,0.0,71.90139444741146,0.1064849579997826,500,mac,phase-16,without +20,349.15137082892227,0.0,0.0,72.50282349914717,0.1073756660007347,500,mac,phase-16,without +21,341.4818789010037,0.0,0.0,70.91021964295189,0.1050170419985079,500,mac,phase-16,without +22,354.0638505605011,0.0,0.0,73.52292160180167,0.1088864170014858,500,mac,phase-16,without +23,352.4121301159214,0.0,0.0,73.1799345598806,0.1083784579968778,500,mac,phase-16,without +24,354.6372291574377,0.0,0.0,73.64198619866458,0.1090627500016125,500,mac,phase-16,without +25,333.33858460150753,0.0,0.0,69.21922863267379,0.1025127079992671,500,mac,phase-16,without +26,353.2686780710232,0.0,0.0,73.3578005240321,0.108641874998284,500,mac,phase-16,without +27,355.6745152674338,0.0,0.0,73.85738323855767,0.1093817500004661,500,mac,phase-16,without +28,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042,500,mac,phase-16,without +29,351.7074649321256,0.0,0.0,73.03360772368504,0.108161750002182,500,mac,phase-16,without +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539,500,mac,phase-20,without +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583,500,mac,phase-20,without +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.1141362080015824,500,mac,phase-20,without +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.1098308750006253,500,mac,phase-20,without +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.1079319579985167,500,mac,phase-20,without +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.1088161250008852,500,mac,phase-20,without +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.1078220839990535,500,mac,phase-20,without +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.1108167080019484,500,mac,phase-20,without +8,415.29796425727784,0.942830467347616,0.0,88.73920358675761,0.1238900839998677,500,mac,phase-20,without +9,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.1067202500016719,500,mac,phase-20,without +10,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.1076291249992209,500,mac,phase-20,without +11,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.1080912920006085,500,mac,phase-20,without +12,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.108578249997663,500,mac,phase-20,without +13,415.5291183662658,0.9433552451104836,0.0,88.78859566979871,0.1239590410004893,500,mac,phase-20,without +14,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.1104635410010814,500,mac,phase-20,without +15,365.2556929987476,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758,500,mac,phase-20,without +16,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786,500,mac,phase-20,without +17,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.1080684169974119,500,mac,phase-20,without +18,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803,500,mac,phase-20,without +19,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.1084587080003984,500,mac,phase-20,without +20,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.1087163339980179,500,mac,phase-20,without +21,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.1086105000031238,500,mac,phase-20,without +22,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.1072365830004855,500,mac,phase-20,without +23,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.1085144579992629,500,mac,phase-20,without +24,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.1087537499988684,500,mac,phase-20,without +25,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.1100431670020043,500,mac,phase-20,without +26,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223,500,mac,phase-20,without +27,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241,500,mac,phase-20,without +28,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.1068625410007371,500,mac,phase-20,without +29,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.1084712920019228,500,mac,phase-20,without +0,356.466325968142,0.0,0.0,73.92875082637863,0.1092395420018874,500,mac,phase-18,without +1,351.7245436332654,0.0,0.0,72.94533663218813,0.1077864170001703,500,mac,phase-18,without +2,353.4256006327688,0.0,0.0,73.29812456725101,0.1083077080002112,500,mac,phase-18,without +3,353.35122991135097,0.0,0.0,73.28270057308399,0.1082849170015833,500,mac,phase-18,without +4,354.96295784666904,0.0,0.0,73.61696225293952,0.1087788330005423,500,mac,phase-18,without +5,350.3303576515806,0.0,0.0,72.6561917101098,0.107359166999231,500,mac,phase-18,without +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967,500,mac,phase-18,without +7,355.0087791611787,0.0,0.0,73.62646528954114,0.1087928749984712,500,mac,phase-18,without +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658,500,mac,phase-18,without +9,356.2385833502526,0.0,0.0,73.88151851851684,0.1091697499978181,500,mac,phase-18,without +10,353.36836150001716,0.0,0.0,73.28625355090404,0.1082901669979037,500,mac,phase-18,without +11,344.9872006619987,0.0,0.0,71.54805640269699,0.105721749998338,500,mac,phase-18,without +12,335.41512274852306,0.0,0.0,69.56287095485956,0.1027883750030014,500,mac,phase-18,without +13,354.6641076704996,0.0,0.0,73.55498270929414,0.1086872499981836,500,mac,phase-18,without +14,355.37234762367643,0.0,0.0,73.70186697636058,0.1089042909989075,500,mac,phase-18,without +15,352.9861603805139,0.0,0.0,73.20698757465065,0.1081730409969168,500,mac,phase-18,without +16,354.41080472393486,0.0,0.0,73.50244935885966,0.1086096250000991,500,mac,phase-18,without +17,354.4234494781258,0.0,0.0,73.50507179698002,0.1086135000005015,500,mac,phase-18,without +18,350.7823055918313,0.0,0.0,72.74992271421108,0.1074976669988245,500,mac,phase-18,without +19,338.18622604515986,0.0,0.0,70.13757939211467,0.1036375830008182,500,mac,phase-18,without +20,349.4839750006073,0.0,0.0,72.48065756410699,0.1070997919996443,500,mac,phase-18,without +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016,500,mac,phase-18,without +22,350.7968527716273,0.0,0.0,72.7529397027792,0.1075021249998826,500,mac,phase-18,without +23,354.93835033342356,0.0,0.0,73.611858817965,0.1087712919979821,500,mac,phase-18,without +24,351.8900120547612,0.0,0.0,72.97965368491161,0.1078371250005147,500,mac,phase-18,without +25,353.8877459607927,0.0,0.0,73.39397044191605,0.1084493330017721,500,mac,phase-18,without +26,338.342449918055,0.0,0.0,70.16997918679662,0.1036854579979262,500,mac,phase-18,without +27,357.2478532784631,0.0,0.0,74.09083440504997,0.1094790420029312,500,mac,phase-18,without +28,354.8509236948433,0.0,0.0,73.59372711320542,0.1087444999975559,500,mac,phase-18,without +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413,500,mac,phase-18,without +0,372.783325595462,0.9128559578339812,0.0,76.71370993797419,0.1098833750002086,500,mac,phase-27,without +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.1083453339997504,500,mac,phase-27,without +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.1077917500006151,500,mac,phase-27,without +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.1125241670015384,500,mac,phase-27,without +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.106433916997048,500,mac,phase-27,without +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.1089840000022377,500,mac,phase-27,without +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.1079727910000656,500,mac,phase-27,without +7,349.09480260671245,0.8548485099203007,0.0,71.83893588922824,0.1029008340010477,500,mac,phase-27,without +8,368.7968106124073,0.9030939494408668,0.0,75.89333967708617,0.1087082910016761,500,mac,phase-27,without +9,370.3373070063856,0.9068662515120998,0.0,76.21035276596128,0.1091623749998689,500,mac,phase-27,without +10,368.9456615170731,0.9034584492074164,0.0,75.9239711574677,0.1087521669978741,500,mac,phase-27,without +11,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.1080825829994864,500,mac,phase-27,without +12,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496,500,mac,phase-27,without +13,368.16721356507986,0.9015522189603804,0.0,75.76377721559642,0.1085227080002368,500,mac,phase-27,without +14,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.1060791250019974,500,mac,phase-27,without +15,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.1052611670020269,500,mac,phase-27,without +16,368.1332915981502,0.9014691522900468,0.0,75.75679653874505,0.1085127090009336,500,mac,phase-27,without +17,369.6513056658199,0.9051864005965116,0.0,76.0691830723513,0.1089601660023618,500,mac,phase-27,without +18,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.1087312500021653,500,mac,phase-27,without +19,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.1087735000000975,500,mac,phase-27,without +20,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.1081318750002537,500,mac,phase-27,without +21,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.1091148750019783,500,mac,phase-27,without +22,370.9635115163816,0.9083996744914116,0.0,76.33921708966713,0.1093469580009696,500,mac,phase-27,without +23,367.1765929975245,0.8991264294334446,0.0,75.55992105127724,0.1082307079996098,500,mac,phase-27,without +24,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.1100110000006679,500,mac,phase-27,without +25,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.1075496660014323,500,mac,phase-27,without +26,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.1073167909999028,500,mac,phase-27,without +27,371.7753182833393,0.9103875923861928,0.0,76.50627581941745,0.109586250000575,500,mac,phase-27,without +28,369.53200373193727,0.904894259093262,0.0,76.04463236602264,0.108925000000454,500,mac,phase-27,without +29,367.425238752588,0.8997353025866021,0.0,75.611088947,0.1083039999975881,500,mac,phase-27,without +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.1093273749975196,500,mac,phase-5,without +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297068,0.1149548330031393,500,mac,phase-5,without +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279236,0.1123761250019015,500,mac,phase-5,without +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.1126610829996934,500,mac,phase-5,without +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958,500,mac,phase-5,without +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126876,0.1119830829993588,500,mac,phase-5,without +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.1098542079998878,500,mac,phase-5,without +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.6683569356906,0.1112435000031837,500,mac,phase-5,without +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419237,0.1138349580032809,500,mac,phase-5,without +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.1120877499997732,500,mac,phase-5,without +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875492,0.1131611669989069,500,mac,phase-5,without +11,513.552572917201,0.5900642354468032,20.980061704775224,94.9019978676942,0.1103523749989108,500,mac,phase-5,without +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.551863476102,0.111108041000989,500,mac,phase-5,without +13,571.0766273014697,0.6561585147086973,23.330080522975905,105.53216111564883,0.1227131659979932,500,mac,phase-5,without +14,520.6179409055757,0.598182237731416,21.268701786005906,96.20764323513608,0.1118705839980975,500,mac,phase-5,without +15,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.1148837079999793,500,mac,phase-5,without +16,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496596,0.1101848340003925,500,mac,phase-5,without +17,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.1123124999976425,500,mac,phase-5,without +18,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739272,0.1124144159985007,500,mac,phase-5,without +19,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.1129014580001239,500,mac,phase-5,without +20,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.1130966669988993,500,mac,phase-5,without +21,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.1092158749997906,500,mac,phase-5,without +22,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128129,0.1146049589988251,500,mac,phase-5,without +23,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.1106439169998338,500,mac,phase-5,without +24,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798,500,mac,phase-5,without +25,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312756,0.1119207500014454,500,mac,phase-5,without +26,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.104731792001985,500,mac,phase-5,without +27,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.1137661669999943,500,mac,phase-5,without +28,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617624,0.1135343749992898,500,mac,phase-5,without +29,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.111408125001617,500,mac,phase-5,without +0,411.9106270133148,0.0669283657508026,0.0,79.67821942633053,0.1092553339985897,500,mac,phase-2,without +1,409.7639893685133,0.0665795741926254,0.0,79.2629830763206,0.1086859589995583,500,mac,phase-2,without +2,408.6489630946226,0.0663984016726984,0.0,79.0472971913475,0.1083902089994808,500,mac,phase-2,without +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.1070329169997421,500,mac,phase-2,without +4,406.4680772704537,0.0660440453766274,0.0,78.62543602087497,0.1078117500001099,500,mac,phase-2,without +5,409.1637451782701,0.066482044874201,0.0,79.1468744227363,0.1085267499984183,500,mac,phase-2,without +6,411.117003532524,0.0667994156361238,0.0,79.52470431480539,0.1090448329996434,500,mac,phase-2,without +7,408.04856056941446,0.0663008466275756,0.0,78.93115791012883,0.1082309580015135,500,mac,phase-2,without +8,406.718009040155,0.0660846549744341,0.0,78.67378174706386,0.1078780419993563,500,mac,phase-2,without +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.1085171250015264,500,mac,phase-2,without +10,434.73755799887095,0.0706373479565961,0.0,84.0937627423277,0.11530995800058,500,mac,phase-2,without +11,465.2579892959261,0.0755963911440289,0.0,89.99750365696646,0.1234052090003388,500,mac,phase-2,without +12,412.8927512188439,0.0670879439790143,0.0,79.8681973070166,0.1095158330026606,500,mac,phase-2,without +13,411.1630334709524,0.0668068947064672,0.0,79.5336081480492,0.1090570419983123,500,mac,phase-2,without +14,405.92375972203575,0.0659556031719937,0.0,78.5201455762586,0.107667375003075,500,mac,phase-2,without +15,411.4063674703926,0.0668464322805089,0.0,79.58067762994595,0.1091215840024233,500,mac,phase-2,without +16,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.1056415409984765,500,mac,phase-2,without +17,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794,500,mac,phase-2,without +18,416.45131938035576,0.067666149870884,0.0,80.55655142128744,0.1104597089979506,500,mac,phase-2,without +19,390.2780465829524,0.06341344489121,0.0,75.4937061429856,0.1035174999997252,500,mac,phase-2,without +20,411.7770990939091,0.0669066697690972,0.0,79.6523903601103,0.1092199170016101,500,mac,phase-2,without +21,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.1082832499996584,500,mac,phase-2,without +22,407.79329023407206,0.0662593696050161,0.0,78.88177951477175,0.1081632499990519,500,mac,phase-2,without +23,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.1083763749993522,500,mac,phase-2,without +24,407.6768863974922,0.0662404559911434,0.0,78.85926285745624,0.108132375000423,500,mac,phase-2,without +25,408.8302439287478,0.0664278566786494,0.0,79.08236337593212,0.1084382919980271,500,mac,phase-2,without +26,400.83356580406127,0.0651285345363654,0.0,77.53552036554309,0.1063172499998472,500,mac,phase-2,without +27,407.19320440622545,0.0661618660177472,0.0,78.7657014941281,0.1080040830020152,500,mac,phase-2,without +28,408.4123814834321,0.0663599612451754,0.0,79.00153386238134,0.1083274580014403,500,mac,phase-2,without +29,404.7000282651971,0.0657567679365012,0.0,78.28343222840476,0.107342791998235,500,mac,phase-2,without +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.1125474159998702,500,mac,phase-3,without +1,531.6083156995155,0.4598403719365596,20.10159340179818,95.84387180792008,0.1101422920000914,500,mac,phase-3,without +2,539.1055697078513,0.4663254850732108,20.38508549034322,97.19555467454497,0.1116956250007206,500,mac,phase-3,without +3,559.2132189145998,0.4837185705779671,21.145411799551137,100.82077063903628,0.1158616669999901,500,mac,phase-3,without +4,539.8532858167908,0.4669722583524913,20.41335872226605,97.33036070518357,0.1118505420017754,500,mac,phase-3,without +5,543.1984920844951,0.4698658566069157,20.53985030310232,97.93346925564144,0.1125436250003986,500,mac,phase-3,without +6,539.2855617453997,0.4664811779076673,20.391891491392315,97.22800550961236,0.1117329169974254,500,mac,phase-3,without +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.1105710419979004,500,mac,phase-3,without +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358164,0.1126799999983632,500,mac,phase-3,without +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.1101741250022314,500,mac,phase-3,without +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.4618670014884,0.1120016669992765,500,mac,phase-3,without +11,540.2482576395201,0.4673139083690628,20.428293708704743,97.4015703300661,0.1119323749990144,500,mac,phase-3,without +12,536.8670548817402,0.4643891732063245,20.300441000162188,96.79197195828964,0.1112318339983176,500,mac,phase-3,without +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.1116492920009477,500,mac,phase-3,without +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.1090459580009337,500,mac,phase-3,without +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541893,0.1114379159989766,500,mac,phase-3,without +16,548.9821147845478,0.4748686813088457,20.75854521150097,98.97620086137228,0.1137419160004356,500,mac,phase-3,without +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697708,0.1134956250025425,500,mac,phase-3,without +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.1120829160026914,500,mac,phase-3,without +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.1114866669995535,500,mac,phase-3,without +20,532.0847357354425,0.4602524745317389,20.119608172387444,95.9297657631153,0.1102410000021336,500,mac,phase-3,without +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.1081512079981621,500,mac,phase-3,without +22,554.8095819519035,0.479909431407269,20.978898001517763,100.02683720331508,0.114949291000812,500,mac,phase-3,without +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018736,0.1116149580011551,500,mac,phase-3,without +24,545.6371112170256,0.4719752583897657,20.632061295324043,98.37312885580974,0.1130488749986398,500,mac,phase-3,without +25,531.4940855078803,0.4597415629972396,20.097274039593614,95.82327720185324,0.1101186249979946,500,mac,phase-3,without +26,539.73040643437,0.4668659678765017,20.408712310029937,97.30820673311658,0.1118250830004399,500,mac,phase-3,without +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.1107058749985299,500,mac,phase-3,without +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.1125420829994254,500,mac,phase-3,without +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.1122179589983716,500,mac,phase-3,without +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.1099223329983942,500,mac,phase-4,without +1,564.308332268748,0.4792136753465044,19.990056171597043,98.44418073546764,0.1151113749983778,500,mac,phase-4,without +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578128,0.1094470829993952,500,mac,phase-4,without +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924892,0.1137343750015134,500,mac,phase-4,without +4,551.1749149853679,0.4680607066477709,19.524818048735582,96.1530423084992,0.1124323330004699,500,mac,phase-4,without +5,548.5636364583718,0.4658431948572852,19.43231612833247,95.69750202925374,0.1118996670011256,500,mac,phase-4,without +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083,500,mac,phase-4,without +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377804,0.1143951250014652,500,mac,phase-4,without +8,533.602080044307,0.4531377605617067,18.902318012002624,93.08744281253348,0.1088477089979278,500,mac,phase-4,without +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393835,0.115234083001269,500,mac,phase-4,without +10,542.0632066445227,0.4603229948455245,19.20204492784188,94.56349522683776,0.1105736659992544,500,mac,phase-4,without +11,542.1635024143241,0.4604081665534718,19.205597804801968,94.5809919291275,0.1105941249988973,500,mac,phase-4,without +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865,500,mac,phase-4,without +13,545.9905515906022,0.4636581173279407,19.341167179965527,95.24862467393984,0.1113747919989691,500,mac,phase-4,without +14,541.7711140282568,0.4600749482224672,19.19169784013721,94.5125393634154,0.1105140830004529,500,mac,phase-4,without +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213731,0.1131512499996461,500,mac,phase-4,without +16,548.961128120956,0.4661807469181963,19.44639687144476,95.76684486690948,0.1119807499999296,500,mac,phase-4,without +17,550.204670187255,0.467236769539098,19.490448100773804,95.98378208531756,0.1122344159994099,500,mac,phase-4,without +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602,500,mac,phase-4,without +19,536.4276274869267,0.4555372306694755,19.00241019364098,93.58036252895798,0.1094240829988848,500,mac,phase-4,without +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.1141973749981843,500,mac,phase-4,without +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.1122670840013597,500,mac,phase-4,without +22,543.2377147988591,0.4613203934965441,19.24365070014155,94.7683894068615,0.1108132500012288,500,mac,phase-4,without +23,545.5227906275,0.463260892198532,19.32459721742448,95.16702328306988,0.1112793749998672,500,mac,phase-4,without +24,546.4460568464966,0.4640449348447745,19.357302996382025,95.32808804382654,0.1114677089972246,500,mac,phase-4,without +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472688,0.1121792079975421,500,mac,phase-4,without +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.1124135829995793,500,mac,phase-4,without +27,544.6440567149677,0.4625146666268074,19.293468950718253,95.01372722990702,0.1111001249992114,500,mac,phase-4,without +28,547.1235913519002,0.4646203007962273,19.38130397607119,95.44628464928212,0.1116059170017251,500,mac,phase-4,without +29,561.8191989819761,0.4770998899519389,19.901881123709455,98.00994882155548,0.1146036249992903,500,mac,phase-4,without +0,350.4356841019941,0.0,0.0,74.02446695872452,0.1093239590009034,500,mac,phase-22,without +1,346.4714390348405,0.0,0.0,73.18707755660988,0.108087249998789,500,mac,phase-22,without +2,345.72749858615435,0.0,0.0,73.02993090271205,0.1078551659993536,500,mac,phase-22,without +3,397.1397798880135,0.0,0.0,83.89003131815507,0.1238940410003124,500,mac,phase-22,without +4,349.2921261580012,0.0,0.0,73.78290689198242,0.1089672079979209,500,mac,phase-22,without +5,346.26975989888166,0.0,0.0,73.14447575772542,0.1080243329997756,500,mac,phase-22,without +6,350.39080418180447,0.0,0.0,74.01498672506138,0.1093099579993577,500,mac,phase-22,without +7,349.6472676163195,0.0,0.0,73.85792538564502,0.1090779999976803,500,mac,phase-22,without +8,361.78815498173515,0.0,0.0,76.42251214550602,0.1128655419997812,500,mac,phase-22,without +9,353.5460632089863,0.0,0.0,74.68148953342224,0.1102942910001729,500,mac,phase-22,without +10,342.0485443957291,0.0,0.0,72.25280506973742,0.1067074580023472,500,mac,phase-22,without +11,350.28796278914035,0.0,0.0,73.99326296912378,0.109277874998952,500,mac,phase-22,without +12,345.76957050704704,0.0,0.0,73.03881798715949,0.1078682910010684,500,mac,phase-22,without +13,356.1562593262886,0.0,0.0,75.23285568991444,0.1111085829979856,500,mac,phase-22,without +14,399.69388332935665,0.0,0.0,84.4295487085925,0.1246908339999208,500,mac,phase-22,without +15,352.1317801069439,0.0,0.0,74.38274269482416,0.1098530829985975,500,mac,phase-22,without +16,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226,500,mac,phase-22,without +17,345.3318911540231,0.0,0.0,72.94636455768223,0.1077317499984928,500,mac,phase-22,without +18,349.3621113945349,0.0,0.0,73.79769026041323,0.1089890410003135,500,mac,phase-22,without +19,349.9381648592711,0.0,0.0,73.9193732185175,0.1091687499974796,500,mac,phase-22,without +20,332.77482680217906,0.0,0.0,70.29386643211716,0.1038143749974551,500,mac,phase-22,without +21,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219,500,mac,phase-22,without +22,347.0243842208858,0.0,0.0,73.3038792252507,0.1082597500026167,500,mac,phase-22,without +23,348.0907413848161,0.0,0.0,73.52913174441076,0.1085924170001817,500,mac,phase-22,without +24,346.1256479612438,0.0,0.0,73.11403419640622,0.1079793749995587,500,mac,phase-22,without +25,348.0938122335487,0.0,0.0,73.52978041676593,0.1085933750000549,500,mac,phase-22,without +26,349.7563885449727,0.0,0.0,73.88097560268639,0.1091120419987419,500,mac,phase-22,without +27,330.1607584718866,0.0,0.0,69.74168232666726,0.1029988750015036,500,mac,phase-22,without +28,351.14262369975336,0.0,0.0,74.1737977183195,0.1095444999991741,500,mac,phase-22,without +29,346.8602380368698,0.0,0.0,73.26920571930842,0.108208542002103,500,mac,phase-22,without +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.1093228749996342,500,mac,phase-25,without +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.1089070000016363,500,mac,phase-25,without +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.1054213329989579,500,mac,phase-25,without +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395,500,mac,phase-25,without +4,354.3888189098163,0.9011582323003428,0.0,81.1376171378568,0.1093122500024037,500,mac,phase-25,without +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214,500,mac,phase-25,without +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.1027426660002674,500,mac,phase-25,without +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695,500,mac,phase-25,without +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098,500,mac,phase-25,without +9,369.5021486200632,0.9395891893710402,0.0,84.59782664299996,0.113973999999871,500,mac,phase-25,without +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.1095547080003598,500,mac,phase-25,without +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.1115347920022031,500,mac,phase-25,without +12,362.8293302804259,0.9226212015041912,0.0,83.07007929098847,0.1119157499997527,500,mac,phase-25,without +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.1091690419998485,500,mac,phase-25,without +14,356.00332808847406,0.905263689808702,0.0,81.50726036759092,0.1098102500000095,500,mac,phase-25,without +15,355.7832782663517,0.9047041357309752,0.0,81.4568797763704,0.1097423749997688,500,mac,phase-25,without +16,359.8954688249249,0.91516082673507,0.0,82.39836925159092,0.1110107919994334,500,mac,phase-25,without +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.1094131669997295,500,mac,phase-25,without +18,355.96537090717135,0.905167170323378,0.0,81.49857003911599,0.109798541998316,500,mac,phase-25,without +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.1092755830031819,500,mac,phase-25,without +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574,500,mac,phase-25,without +21,354.52849339615904,0.9015134038139284,0.0,81.16959572858,0.1093553329992573,500,mac,phase-25,without +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.1082306659991445,500,mac,phase-25,without +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.1068390000000363,500,mac,phase-25,without +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.1068899999991117,500,mac,phase-25,without +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.1085886250002658,500,mac,phase-25,without +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.1092238750024989,500,mac,phase-25,without +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.1091210000013234,500,mac,phase-25,without +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.1081110839986649,500,mac,phase-25,without +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092,500,mac,phase-25,without +0,352.72069606426135,0.9034682471999864,0.0,74.95440273066554,0.1094220830018457,500,mac,phase-13,without +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334,500,mac,phase-13,without +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.1084641250017739,500,mac,phase-13,without +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.1104006250025122,500,mac,phase-13,without +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.1071309159997326,500,mac,phase-13,without +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.1081715000000258,500,mac,phase-13,without +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.1083696669993514,500,mac,phase-13,without +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.108185165998293,500,mac,phase-13,without +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.1072509999976318,500,mac,phase-13,without +9,397.1924653152403,1.017379429229816,0.0,84.40481190647361,0.1232182499988994,500,mac,phase-13,without +10,355.586244105474,0.9108081387769468,0.0,75.56334188371707,0.1103110419971926,500,mac,phase-13,without +11,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.1079684579999593,500,mac,phase-13,without +12,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.1077727500014589,500,mac,phase-13,without +13,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.1088582079974003,500,mac,phase-13,without +14,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852,500,mac,phase-13,without +15,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.1082003749979776,500,mac,phase-13,without +16,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.1086762089980766,500,mac,phase-13,without +17,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.104039959001966,500,mac,phase-13,without +18,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.1092145830007211,500,mac,phase-13,without +19,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.1081076670016045,500,mac,phase-13,without +20,360.0307626207023,0.9221924476576192,0.0,76.50781787974321,0.1116898339969338,500,mac,phase-13,without +21,351.99272624691093,0.9016036057932448,0.0,74.79970655469884,0.1091962499995133,500,mac,phase-13,without +22,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802,500,mac,phase-13,without +23,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.1087829999996756,500,mac,phase-13,without +24,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903,500,mac,phase-13,without +25,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807,500,mac,phase-13,without +26,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.108505915999558,500,mac,phase-13,without +27,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257,500,mac,phase-13,without +28,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.1078266250005981,500,mac,phase-13,without +29,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.1082103750013629,500,mac,phase-13,without +0,349.5570979228151,0.0,0.0,73.44896139887625,0.1089127500017639,500,mac,phase-14,without +1,347.24183407513084,0.0,0.0,72.96247800034911,0.1081913749985687,500,mac,phase-14,without +2,344.7376100562334,0.0,0.0,72.43629027768198,0.1074111250018177,500,mac,phase-14,without +3,351.6277678281301,0.0,0.0,73.88405070145102,0.1095579159991757,500,mac,phase-14,without +4,349.9146892287216,0.0,0.0,73.52409850860788,0.1090241659985622,500,mac,phase-14,without +5,346.9369301696893,0.0,0.0,72.89841157081808,0.1080963750027876,500,mac,phase-14,without +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817,500,mac,phase-14,without +7,349.49852426123,0.0,0.0,73.4366538970852,0.1088944999974046,500,mac,phase-14,without +8,346.91740668224895,0.0,0.0,72.8943092942976,0.1080902920002699,500,mac,phase-14,without +9,346.9200802047294,0.0,0.0,72.89487105502462,0.1080911249991913,500,mac,phase-14,without +10,345.9247293954029,0.0,0.0,72.68572787467728,0.1077810000024328,500,mac,phase-14,without +11,348.7487013459444,0.0,0.0,73.27910105467957,0.1086608750010782,500,mac,phase-14,without +12,396.09105260708606,0.0,0.0,83.22667914985942,0.1234115000006568,500,mac,phase-14,without +13,346.2514323292838,0.0,0.0,72.75437471755963,0.1078827919991454,500,mac,phase-14,without +14,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314,500,mac,phase-14,without +15,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937,500,mac,phase-14,without +16,347.9824296464449,0.0,0.0,73.11809199260635,0.1084221249984693,500,mac,phase-14,without +17,357.2821339838763,0.0,0.0,75.07214650604604,0.1113196670012257,500,mac,phase-14,without +18,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021,500,mac,phase-14,without +19,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659,500,mac,phase-14,without +20,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366,500,mac,phase-14,without +21,337.4620408760736,0.0,0.0,70.90754718236538,0.1051442499992845,500,mac,phase-14,without +22,344.88858884112295,0.0,0.0,72.46801395032172,0.1074581659995601,500,mac,phase-14,without +23,347.06143366416603,0.0,0.0,72.92457225361979,0.1081351670000003,500,mac,phase-14,without +24,350.9464166897125,0.0,0.0,73.74088515349878,0.1093456249982409,500,mac,phase-14,without +25,349.12528336836505,0.0,0.0,73.35822849506813,0.1087782080030592,500,mac,phase-14,without +26,349.5365024599655,0.0,0.0,73.44463387880921,0.1089063330000499,500,mac,phase-14,without +27,347.7287463838418,0.0,0.0,73.06478804806281,0.1083430840008077,500,mac,phase-14,without +28,347.93963719702685,0.0,0.0,73.1091004401986,0.1084087920025922,500,mac,phase-14,without +29,349.69617582957653,0.0,0.0,73.47818445818719,0.1089560830005211,500,mac,phase-14,without +0,350.2437335737623,0.0,0.0,73.26884233321877,0.1097303749993443,500,mac,phase-15,without +1,348.89690052127264,0.0,0.0,72.9870931137106,0.1093084159983845,500,mac,phase-15,without +2,344.6200794331875,0.0,0.0,72.09240835577674,0.1079685000004246,500,mac,phase-15,without +3,348.24483274191084,0.0,0.0,72.8506845309527,0.109104125000158,500,mac,phase-15,without +4,345.50688280525327,0.0,0.0,72.27792218577584,0.108246332998533,500,mac,phase-15,without +5,349.28976713270595,0.0,0.0,73.06927840084587,0.1094315000009373,500,mac,phase-15,without +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958,500,mac,phase-15,without +7,346.57482729959054,0.0,0.0,72.50132962829542,0.1085809169999265,500,mac,phase-15,without +8,346.00907053653475,0.0,0.0,72.3829767811272,0.1084036669999477,500,mac,phase-15,without +9,345.64931945621555,0.0,0.0,72.30771906012771,0.1082909579999977,500,mac,phase-15,without +10,346.6860092861362,0.0,0.0,72.5245882184189,0.1086157500030822,500,mac,phase-15,without +11,356.34736331255743,0.0,0.0,74.54568426391941,0.1116426250009681,500,mac,phase-15,without +12,349.03401953271384,0.0,0.0,73.01577757046779,0.1093513749983685,500,mac,phase-15,without +13,344.75839219546305,0.0,0.0,72.12134253789166,0.1080118329991819,500,mac,phase-15,without +14,344.37390740929675,0.0,0.0,72.04091067722797,0.1078913749988714,500,mac,phase-15,without +15,338.3729501588257,0.0,0.0,70.78554720177965,0.106011291998584,500,mac,phase-15,without +16,343.2693938159089,0.0,0.0,71.80985320332805,0.1075453340017702,500,mac,phase-15,without +17,393.3508368048623,0.0,0.0,82.28658411507446,0.1232357089975266,500,mac,phase-15,without +18,340.6583170286766,0.0,0.0,71.26363194337405,0.1067272910004248,500,mac,phase-15,without +19,394.2611769502774,0.0,0.0,82.47702169379554,0.123520916000416,500,mac,phase-15,without +20,350.23469104240684,0.0,0.0,73.26695069108311,0.1097275419997458,500,mac,phase-15,without +21,348.4636090527246,0.0,0.0,72.89645119424085,0.1091726670019852,500,mac,phase-15,without +22,344.2709700068494,0.0,0.0,72.01937680356475,0.1078591250006866,500,mac,phase-15,without +23,346.28117640365764,0.0,0.0,72.43989966072517,0.108488917001523,500,mac,phase-15,without +24,348.48262613381,0.0,0.0,72.90042945104354,0.1091786249999131,500,mac,phase-15,without +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156,500,mac,phase-15,without +26,338.7078270988537,0.0,0.0,70.85560140508998,0.1061162080004578,500,mac,phase-15,without +27,391.2020495267679,0.0,0.0,81.83707098694545,0.1225624999970023,500,mac,phase-15,without +28,348.54553126622045,0.0,0.0,72.91358881918269,0.1091983330006769,500,mac,phase-15,without +29,344.56861072035196,0.0,0.0,72.08164141651599,0.1079523749976942,500,mac,phase-15,without +0,403.80530111655503,0.0,0.0,85.20626977676426,0.1254480830029933,500,mac,phase-12,without +1,351.73175655141023,0.0,0.0,74.21831970730892,0.1092706669987819,500,mac,phase-12,without +2,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061,500,mac,phase-12,without +3,328.1519445206855,0.0,0.0,69.24278367640527,0.1019452500004263,500,mac,phase-12,without +4,349.2189998358078,0.0,0.0,73.68810718656938,0.1084900419991754,500,mac,phase-12,without +5,347.0344361100074,0.0,0.0,73.22714611040125,0.1078113750008924,500,mac,phase-12,without +6,348.8421177226201,0.0,0.0,73.60858193288522,0.1083729580022918,500,mac,phase-12,without +7,349.7607123637488,0.0,0.0,73.802413025719,0.1086583329997665,500,mac,phase-12,without +8,348.86438286229674,0.0,0.0,73.61328006213873,0.1083798749968991,500,mac,phase-12,without +9,349.5485351074402,0.0,0.0,73.7576418637468,0.1085924170001817,500,mac,phase-12,without +10,349.2062562033976,0.0,0.0,73.6854181743695,0.1084860830014804,500,mac,phase-12,without +11,348.9237973941225,0.0,0.0,73.62581702144415,0.1083983329990587,500,mac,phase-12,without +12,348.52452136305044,0.0,0.0,73.54156646523587,0.1082742920007149,500,mac,phase-12,without +13,349.0319010610443,0.0,0.0,73.6486277923333,0.1084319170004164,500,mac,phase-12,without +14,353.06652971176385,0.0,0.0,74.49996792162754,0.1096853340022789,500,mac,phase-12,without +15,345.82868949784233,0.0,0.0,72.97272356856122,0.1074367920009535,500,mac,phase-12,without +16,338.35479420348673,0.0,0.0,71.39566963446653,0.1051149160011846,500,mac,phase-12,without +17,337.7432057089416,0.0,0.0,71.26661938645225,0.1049249169991526,500,mac,phase-12,without +18,351.2683696181278,0.0,0.0,74.1205412186682,0.1091267090014298,500,mac,phase-12,without +19,349.83072674614044,0.0,0.0,73.81718664146358,0.1086800840021169,500,mac,phase-12,without +20,351.41952290191574,0.0,0.0,74.15243581599138,0.1091736670023237,500,mac,phase-12,without +21,347.59841378933527,0.0,0.0,73.34615008127537,0.1079865829997288,500,mac,phase-12,without +22,349.5599332493968,0.0,0.0,73.76004696629455,0.1085959580013877,500,mac,phase-12,without +23,340.3002223481199,0.0,0.0,71.80617111838608,0.105719291997957,500,mac,phase-12,without +24,350.65422853504253,0.0,0.0,73.99095235328762,0.1089359170000534,500,mac,phase-12,without +25,349.36518956692623,0.0,0.0,73.71895443308603,0.1085354579990962,500,mac,phase-12,without +26,347.2503698208989,0.0,0.0,73.27270991546585,0.1078784579985949,500,mac,phase-12,without +27,348.0902365247607,0.0,0.0,73.44992876016128,0.1081393749991548,500,mac,phase-12,without +28,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439,500,mac,phase-12,without +29,348.35848065329765,0.0,0.0,73.50653049748111,0.1082227090009837,500,mac,phase-12,without +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219,500,mac,phase-24,without +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.1019022909968043,500,mac,phase-24,without +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134,500,mac,phase-24,without +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.1075519169971812,500,mac,phase-24,without +4,407.89391497730094,0.868260994398697,0.0,86.71284800581769,0.1239151669979037,500,mac,phase-24,without +5,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.1092284160004055,500,mac,phase-24,without +6,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.1055996670002059,500,mac,phase-24,without +7,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.1072167499987699,500,mac,phase-24,without +8,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.1087792079997598,500,mac,phase-24,without +9,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.1089186249992053,500,mac,phase-24,without +10,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.1087490000027173,500,mac,phase-24,without +11,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.1089228750024631,500,mac,phase-24,without +12,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.1083967079975991,500,mac,phase-24,without +13,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.1076077499965322,500,mac,phase-24,without +14,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.1083305419997486,500,mac,phase-24,without +15,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.1090984170004958,500,mac,phase-24,without +16,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.108379416000389,500,mac,phase-24,without +17,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.1077096250010072,500,mac,phase-24,without +18,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.108017208000092,500,mac,phase-24,without +19,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.1086980000000039,500,mac,phase-24,without +20,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.1092419999986304,500,mac,phase-24,without +21,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.110597749997396,500,mac,phase-24,without +22,405.9576962196502,0.8641394736744057,0.0,86.30123352304825,0.123326958000689,500,mac,phase-24,without +23,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.1104769160010619,500,mac,phase-24,without +24,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.1082216249997145,500,mac,phase-24,without +25,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.1076850419995025,500,mac,phase-24,without +26,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.1083025000007182,500,mac,phase-24,without +27,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.1082828329999756,500,mac,phase-24,without +28,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.1102724999982456,500,mac,phase-24,without +29,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.1092242089980572,500,mac,phase-24,without +0,340.64918730588545,0.0,0.0,71.49545654085841,0.1037612910004099,500,mac,phase-23,without +1,359.87735697665374,0.0,0.0,75.53106507974576,0.1096181659995636,500,mac,phase-23,without +2,357.04781740694864,0.0,0.0,74.93720127241826,0.1087562919965421,500,mac,phase-23,without +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077,500,mac,phase-23,without +4,361.7094135366254,0.0,0.0,75.91557713803003,0.110176207999757,500,mac,phase-23,without +5,353.73252394336674,0.0,0.0,74.2413874305585,0.1077464580012019,500,mac,phase-23,without +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035,500,mac,phase-23,without +7,338.8384735800955,0.0,0.0,71.1154239169323,0.1032097499992232,500,mac,phase-23,without +8,355.53448516285744,0.0,0.0,74.61958307833125,0.1082953330005693,500,mac,phase-23,without +9,355.65390787855864,0.0,0.0,74.64464751969373,0.1083317090015043,500,mac,phase-23,without +10,356.53813036938084,0.0,0.0,74.83022814932919,0.1086010420003731,500,mac,phase-23,without +11,354.8124958061129,0.0,0.0,74.46805194130923,0.1080754159993375,500,mac,phase-23,without +12,356.29587060954617,0.0,0.0,74.77938266730163,0.1085272499985876,500,mac,phase-23,without +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865,500,mac,phase-23,without +14,336.2974250979103,0.0,0.0,70.58210862338031,0.102435749999131,500,mac,phase-23,without +15,357.04535515580596,0.0,0.0,74.9366844951115,0.1087555419981072,500,mac,phase-23,without +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161,500,mac,phase-23,without +17,356.4013372564373,0.0,0.0,74.80151800873296,0.1085593749994586,500,mac,phase-23,without +18,358.36306935886296,0.0,0.0,75.21324637181236,0.1091569159980281,500,mac,phase-23,without +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413,500,mac,phase-23,without +20,358.2503538344796,0.0,0.0,75.18958963586425,0.1091225829986797,500,mac,phase-23,without +21,336.7975356102561,0.0,0.0,70.68707182521217,0.1025880829984089,500,mac,phase-23,without +22,351.84930825701434,0.0,0.0,73.84613809406216,0.1071728329989127,500,mac,phase-23,without +23,355.9800156634005,0.0,0.0,74.71309102646735,0.1084310410005855,500,mac,phase-23,without +24,353.9434572371491,0.0,0.0,74.28565811342115,0.107810708002944,500,mac,phase-23,without +25,356.2458047328008,0.0,0.0,74.76887484033942,0.1085119999988819,500,mac,phase-23,without +26,404.1946903107813,0.0,0.0,84.83238766458936,0.1231171670006006,500,mac,phase-23,without +27,361.9292404971096,0.0,0.0,75.96171442379344,0.1102431670005898,500,mac,phase-23,without +28,349.61795580865146,0.0,0.0,73.37782180873364,0.1064931660002912,500,mac,phase-23,without +29,356.15757387973906,0.0,0.0,74.75035694757553,0.1084851249979692,500,mac,phase-23,without +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.112606250000681,500,mac,phase-8,without +1,532.8827144907617,0.4343244694909029,20.07915432031021,96.28639392867557,0.111914875000366,500,mac,phase-8,without +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782764,0.1119704580014513,500,mac,phase-8,without +3,541.410961550333,0.4412753918592055,20.40050080826019,97.82735994909464,0.1137059590000717,500,mac,phase-8,without +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.1066040840014466,500,mac,phase-8,without +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.1111882910008716,500,mac,phase-8,without +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.1162620830000378,500,mac,phase-8,without +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032647,0.1119292080002196,500,mac,phase-8,without +8,530.81126187005,0.4326361382012946,20.001101466075237,95.91210386893316,0.1114798330017947,500,mac,phase-8,without +9,539.3258148522472,0.4395758992526152,20.32193195775552,97.45059551123364,0.1132680410009925,500,mac,phase-8,without +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.4540377854172,0.1132720419991528,500,mac,phase-8,without +11,530.2759930276953,0.4321998689253943,19.980932401858617,95.81538632638356,0.1113674169973819,500,mac,phase-8,without +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647,500,mac,phase-8,without +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.1108480830007465,500,mac,phase-8,without +14,530.8965736635557,0.4327056713245281,20.00431603584934,95.92751882748384,0.1114977500001259,500,mac,phase-8,without +15,538.9450995668178,0.4392655983930176,20.30758651032335,97.38180419759053,0.113188084000285,500,mac,phase-8,without +16,533.1491585277918,0.4345416339097989,20.08919399844532,96.33453760984928,0.1119708330006687,500,mac,phase-8,without +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.1070651660011208,500,mac,phase-8,without +18,514.0279683439179,0.4189569647944158,19.368702757034143,92.87953634903896,0.1079550419999577,500,mac,phase-8,without +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129492,0.1120103749999543,500,mac,phase-8,without +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.112965249998524,500,mac,phase-8,without +21,531.0947711170215,0.4328672115687322,20.011784165600623,95.96333105700664,0.111539375000575,500,mac,phase-8,without +22,541.2827962393301,0.4411709311041561,20.395671507199836,97.80420180324448,0.1136790419986937,500,mac,phase-8,without +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547,500,mac,phase-8,without +24,500.526534169196,0.4079526610783415,18.85996533139102,90.4399668636754,0.1051195000000007,500,mac,phase-8,without +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.4115216807082,0.1132226250010717,500,mac,phase-8,without +26,531.2782888578109,0.4330167871568365,20.018699160096823,95.9964908143079,0.1115779169995221,500,mac,phase-8,without +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.114608040999883,500,mac,phase-8,without +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.1120559580012923,500,mac,phase-8,without +29,534.66053966854,0.4357734806075874,20.146143218858462,96.60762854700516,0.112288249998528,500,mac,phase-8,without +0,350.06159203288655,0.0,0.0,73.32729560385845,0.1087225420014874,500,mac,phase-1,without +1,348.15467995134566,0.0,0.0,72.9278553079902,0.1081302909988153,500,mac,phase-1,without +2,349.6879634578959,0.0,0.0,73.24903173947592,0.1086064999981317,500,mac,phase-1,without +3,345.65050696371725,0.0,0.0,72.40330695111199,0.1073525419997167,500,mac,phase-1,without +4,340.1390654644476,0.0,0.0,71.24882697039375,0.1056407920004858,500,mac,phase-1,without +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063,500,mac,phase-1,without +6,350.6147227766598,0.0,0.0,73.44315973314124,0.1088943340000696,500,mac,phase-1,without +7,344.5928124845704,0.0,0.0,72.18175200907858,0.1070240420012851,500,mac,phase-1,without +8,347.23235425746674,0.0,0.0,72.73465602438603,0.1078438339973217,500,mac,phase-1,without +9,350.3030715703917,0.0,0.0,73.37787824940402,0.1087975410009676,500,mac,phase-1,without +10,348.65723454798535,0.0,0.0,73.03312526705905,0.1082863749979878,500,mac,phase-1,without +11,348.17815851859984,0.0,0.0,72.93277335635823,0.108137582999916,500,mac,phase-1,without +12,352.10694777546087,0.0,0.0,73.7557356514507,0.1093577909996383,500,mac,phase-1,without +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034,500,mac,phase-1,without +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177,500,mac,phase-1,without +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136,500,mac,phase-1,without +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447,500,mac,phase-1,without +17,349.51704839988264,0.0,0.0,73.21323021406631,0.1085534169978927,500,mac,phase-1,without +18,339.98330586077833,0.0,0.0,71.21620005341305,0.1055924159991263,500,mac,phase-1,without +19,350.75907473976633,0.0,0.0,73.47339709511014,0.1089391670029726,500,mac,phase-1,without +20,347.3249194409645,0.0,0.0,72.75404562532324,0.1078725830011535,500,mac,phase-1,without +21,398.16710519859527,0.0,0.0,83.40394286925121,0.1236632090003695,500,mac,phase-1,without +22,353.67980870531187,0.0,0.0,74.08520235380207,0.1098462920017482,500,mac,phase-1,without +23,397.841502728058,0.0,0.0,83.33573901841518,0.1235620830011612,500,mac,phase-1,without +24,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113,500,mac,phase-1,without +25,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702,500,mac,phase-1,without +26,349.00389754202627,0.0,0.0,73.1057406593714,0.1083940419994178,500,mac,phase-1,without +27,349.8933590281963,0.0,0.0,73.29205588734567,0.1086702919965318,500,mac,phase-1,without +28,348.0918976573909,0.0,0.0,72.91470431990045,0.108110791999934,500,mac,phase-1,without +29,348.4616335231562,0.0,0.0,72.99215277966113,0.1082256250010686,500,mac,phase-1,without +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.1091742919998068,500,mac,phase-30,without +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111,500,mac,phase-30,without +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464,500,mac,phase-30,without +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.1080349999974714,500,mac,phase-30,without +4,352.95630957691594,0.902188806075616,0.0,74.88167090427612,0.1085900830003083,500,mac,phase-30,without +5,355.88853599161115,0.9096838466130364,0.0,75.503759268882,0.1094922079973912,500,mac,phase-30,without +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448,500,mac,phase-30,without +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.1080987919995095,500,mac,phase-30,without +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.1078200419979111,500,mac,phase-30,without +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.1075920420007605,500,mac,phase-30,without +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.1079821250023087,500,mac,phase-30,without +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.1082636669998464,500,mac,phase-30,without +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.106822749999992,500,mac,phase-30,without +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.1075403750000987,500,mac,phase-30,without +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614,500,mac,phase-30,without +15,356.18445481047524,0.9104402423442992,0.0,75.56654011457682,0.1095832499995594,500,mac,phase-30,without +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.1081861250022484,500,mac,phase-30,without +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.1078271250007674,500,mac,phase-30,without +18,353.32834195736103,0.9031397550741976,0.0,74.96059967115839,0.1087045420026697,500,mac,phase-30,without +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.107993666002585,500,mac,phase-30,without +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.1081487080009537,500,mac,phase-30,without +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.1078684999993129,500,mac,phase-30,without +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.1099669169998378,500,mac,phase-30,without +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.1078520410010241,500,mac,phase-30,without +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.1094752499993774,500,mac,phase-30,without +25,352.68558102305303,0.9014967989796868,0.0,74.82423431531402,0.1085067910025827,500,mac,phase-30,without +26,353.91150762756075,0.904630380189732,0.0,75.08432155574776,0.1088839580006606,500,mac,phase-30,without +27,358.5786109780503,0.916559925817226,0.0,76.07447384282976,0.110319832998357,500,mac,phase-30,without +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.108140459000424,500,mac,phase-30,without +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.1086507079999137,500,mac,phase-30,without +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.1125216660002479,500,mac,phase-6,without +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568808,0.1101577499975974,500,mac,phase-6,without +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097,500,mac,phase-6,without +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.112258417000703,500,mac,phase-6,without +4,625.393215626768,2.0118871276612262,21.409515849074182,109.17334677648466,0.1277901670000574,500,mac,phase-6,without +5,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070756,0.1136530000003404,500,mac,phase-6,without +6,581.2750486108054,1.8699591852123023,19.899188310561104,101.4717474843506,0.1187752500009082,500,mac,phase-6,without +7,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.1096269589979783,500,mac,phase-6,without +8,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.1114606659975834,500,mac,phase-6,without +9,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713872,0.1128588749998016,500,mac,phase-6,without +10,530.8233484268193,1.70765629539432,18.172040577403703,92.66451897271818,0.1084661660024721,500,mac,phase-6,without +11,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788,500,mac,phase-6,without +12,561.3068844925039,1.8057216921458392,19.215604422080258,97.98595446436669,0.1146950410002318,500,mac,phase-6,without +13,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393,500,mac,phase-6,without +14,552.9138385846918,1.7787213016685075,18.928279512095063,96.52080119997412,0.1129800420021638,500,mac,phase-6,without +15,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.1120357909967424,500,mac,phase-6,without +16,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.1092452910015708,500,mac,phase-6,without +17,560.2365478283398,1.802278423969773,19.178962851300977,97.79910844032202,0.114476332997583,500,mac,phase-6,without +18,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733424,0.1063855409993266,500,mac,phase-6,without +19,545.8038038438997,1.7558483522747603,18.684876805338963,95.27962002155115,0.1115272080023714,500,mac,phase-6,without +20,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.1126457079990359,500,mac,phase-6,without +21,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697,500,mac,phase-6,without +22,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.1090439170002355,500,mac,phase-6,without +23,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.112828207998973,500,mac,phase-6,without +24,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.1119214999998803,500,mac,phase-6,without +25,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654147,0.1058321659984358,500,mac,phase-6,without +26,548.6950850466077,1.7651495907417427,18.78385602223288,95.784343829684,0.1121180000009189,500,mac,phase-6,without +27,546.7342628234665,1.75884163457625,18.716729847188773,95.4420479441754,0.1117173339989676,500,mac,phase-6,without +28,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.1114615829974354,500,mac,phase-6,without +29,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651888,0.1148124999999709,500,mac,phase-6,without +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951331,0.1165232500025013,500,mac,phase-7,without +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.109883916000399,500,mac,phase-7,without +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729285,0.1088155409997853,500,mac,phase-7,without +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658149,0.1146176250003918,500,mac,phase-7,without +4,553.11275808707,0.4312899385275857,15.327380892288048,94.31979194107126,0.110460084000806,500,mac,phase-7,without +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839276,0.1107872500033408,500,mac,phase-7,without +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067,500,mac,phase-7,without +7,547.9159557125065,0.4272377293823527,15.183371613434383,93.43360497184838,0.1094222499996249,500,mac,phase-7,without +8,557.4791708931641,0.4346946510083453,15.448379135835042,95.06437637051738,0.1113320840013329,500,mac,phase-7,without +9,533.7877060177743,0.4162212199034948,14.791861815031895,91.02437909120276,0.1066007499975967,500,mac,phase-7,without +10,552.6339298454541,0.4309165719764217,15.314112019469755,94.23813954838208,0.1103644590002659,500,mac,phase-7,without +11,536.8584659497922,0.418615646433979,14.876956050192176,91.54802175475405,0.1072139999996579,500,mac,phase-7,without +12,537.1480562614719,0.4188414546184701,14.884980925671789,91.5974042677162,0.107271832999686,500,mac,phase-7,without +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.1069220419994962,500,mac,phase-7,without +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073804,0.112219291000656,500,mac,phase-7,without +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.111232209001173,500,mac,phase-7,without +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326,500,mac,phase-7,without +17,561.6544679972243,0.4379503409287378,15.564081346852063,95.77637071233858,0.1121659169984923,500,mac,phase-7,without +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.1104156669971416,500,mac,phase-7,without +19,562.1610470070955,0.4383453461547649,15.578119224884723,95.86275531676898,0.1122670840013597,500,mac,phase-7,without +20,529.2493757437318,0.4126824546946085,14.66609954376224,90.25047836129016,0.1056944170013594,500,mac,phase-7,without +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.1101329169978271,500,mac,phase-7,without +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.1124342920011258,500,mac,phase-7,without +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.1112789590006286,500,mac,phase-7,without +24,556.7222241829976,0.4341044214478748,15.427403285301398,94.93529770586986,0.1111809169997286,500,mac,phase-7,without +25,558.98491731835,0.4358687575059111,15.49010507444084,95.32114442994656,0.1116327909985557,500,mac,phase-7,without +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225053,0.1109062089999497,500,mac,phase-7,without +27,561.1524807485683,0.4375589161307214,15.550170711722563,95.6907691199724,0.1120656669991149,500,mac,phase-7,without +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.1134994999993068,500,mac,phase-7,without +29,557.0070174500534,0.4343264891345185,15.43529522924212,94.98386220072588,0.1112377919998834,500,mac,phase-7,without +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857528,0.1129105830004846,500,mac,phase-9,without +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.1122849579987814,500,mac,phase-9,without +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641608,0.1091614580000168,500,mac,phase-9,without +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344536,0.1082465830004366,500,mac,phase-9,without +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.1150248750018363,500,mac,phase-9,without +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.1116048340009001,500,mac,phase-9,without +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.0514827035298,0.1169229170009202,500,mac,phase-9,without +7,582.6423693083759,0.5656378805250903,20.6457826391658,101.92087559711472,0.1191075409988116,500,mac,phase-9,without +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.1106570830015698,500,mac,phase-9,without +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.1162444999972649,500,mac,phase-9,without +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.1113215000004856,500,mac,phase-9,without +11,538.6854559697524,0.5229638550765147,19.088180710292782,94.23154963659948,0.1101215830021828,500,mac,phase-9,without +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.111878332998458,500,mac,phase-9,without +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187356,0.1090952919985284,500,mac,phase-9,without +14,539.7671454695724,0.5240139753360329,19.1265100997652,94.42076818086144,0.1103427090019977,500,mac,phase-9,without +15,553.593014338471,0.5374363345316143,19.61642621040392,96.83930952841526,0.1131690830006846,500,mac,phase-9,without +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.1101606249976612,500,mac,phase-9,without +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968148,0.1123614160023862,500,mac,phase-9,without +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534612,0.1132802920001267,500,mac,phase-9,without +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355836,0.1092215419994317,500,mac,phase-9,without +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538245,0.1131127090011432,500,mac,phase-9,without +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992972,0.1152214579997235,500,mac,phase-9,without +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937,500,mac,phase-9,without +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.1151998329987691,500,mac,phase-9,without +24,536.9986247763089,0.5213262542576872,19.028408280405586,93.936474439057,0.1097767500032205,500,mac,phase-9,without +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.1118286669989174,500,mac,phase-9,without +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.1110817080007109,500,mac,phase-9,without +27,544.085117892408,0.5282059272057841,19.279516343011117,95.1761055083922,0.1112254169966036,500,mac,phase-9,without +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257103,0.1116604999988339,500,mac,phase-9,without +29,566.5485704249801,0.5500137811297665,20.07550301123648,99.1056081873198,0.1158175420023326,500,mac,phase-9,without diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_box.png new file mode 100644 index 000000000..45c4c902d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_per_phase.png new file mode 100644 index 000000000..9a2e5edde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_violin.png new file mode 100644 index 000000000..8342ef14c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_box.png new file mode 100644 index 000000000..a706044ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_per_phase.png new file mode 100644 index 000000000..34f65637d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_violin.png new file mode 100644 index 000000000..60afa26e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_box.png new file mode 100644 index 000000000..44f4deae7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_per_phase.png new file mode 100644 index 000000000..b261db129 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_violin.png new file mode 100644 index 000000000..f25b33851 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_box.png new file mode 100644 index 000000000..5766dba9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_per_phase.png new file mode 100644 index 000000000..df82f49b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_violin.png new file mode 100644 index 000000000..3a370aba2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_box.png new file mode 100644 index 000000000..c3b29a1bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_per_phase.png new file mode 100644 index 000000000..14561153c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_violin.png new file mode 100644 index 000000000..f32a63ff4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n10/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_box.png new file mode 100644 index 000000000..52ba8941f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_per_phase.png new file mode 100644 index 000000000..343683093 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_violin.png new file mode 100644 index 000000000..bd5c3a270 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_box.png new file mode 100644 index 000000000..86c04b131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_per_phase.png new file mode 100644 index 000000000..63b1b2d5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_violin.png new file mode 100644 index 000000000..98008c6f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_box.png new file mode 100644 index 000000000..b106adc80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_per_phase.png new file mode 100644 index 000000000..a7211f221 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_violin.png new file mode 100644 index 000000000..37638d7cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_box.png new file mode 100644 index 000000000..585f1dac4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_per_phase.png new file mode 100644 index 000000000..9e0f167ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_violin.png new file mode 100644 index 000000000..2a58d1f4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_box.png new file mode 100644 index 000000000..16d103d20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_per_phase.png new file mode 100644 index 000000000..d758e44ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_violin.png new file mode 100644 index 000000000..e3f7a989d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n100/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_box.png new file mode 100644 index 000000000..6252106cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_per_phase.png new file mode 100644 index 000000000..637ff08a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_violin.png new file mode 100644 index 000000000..e6dadfb37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_box.png new file mode 100644 index 000000000..a80cb3696 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_per_phase.png new file mode 100644 index 000000000..447825449 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_violin.png new file mode 100644 index 000000000..b85c5e50a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_box.png new file mode 100644 index 000000000..93100f1a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_per_phase.png new file mode 100644 index 000000000..5b31bded6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_violin.png new file mode 100644 index 000000000..757710717 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_box.png new file mode 100644 index 000000000..a097c6ae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_per_phase.png new file mode 100644 index 000000000..1fc8c6c9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_violin.png new file mode 100644 index 000000000..87e3c6aaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_box.png new file mode 100644 index 000000000..3bd198448 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_per_phase.png new file mode 100644 index 000000000..f4536bfc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_violin.png new file mode 100644 index 000000000..b9eb92a72 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n1000/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_box.png new file mode 100644 index 000000000..fd8ab4540 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_per_phase.png new file mode 100644 index 000000000..ba65c8f97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_violin.png new file mode 100644 index 000000000..e2e636c78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_box.png new file mode 100644 index 000000000..98f9e9b55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_per_phase.png new file mode 100644 index 000000000..5cdbda682 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_violin.png new file mode 100644 index 000000000..0f2a7bb04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_box.png new file mode 100644 index 000000000..93baf3dba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_per_phase.png new file mode 100644 index 000000000..c71a36f55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_violin.png new file mode 100644 index 000000000..dcf336342 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_box.png new file mode 100644 index 000000000..e1e96d0cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_per_phase.png new file mode 100644 index 000000000..81a1703af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_violin.png new file mode 100644 index 000000000..7e1a8dd5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_box.png new file mode 100644 index 000000000..d54035fcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_per_phase.png new file mode 100644 index 000000000..0dff0570e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_violin.png new file mode 100644 index 000000000..18fd12580 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n30/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_box.png new file mode 100644 index 000000000..a60b663f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_per_phase.png new file mode 100644 index 000000000..49dd871d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_violin.png new file mode 100644 index 000000000..063a9cbf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_box.png new file mode 100644 index 000000000..2e42c6f31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_per_phase.png new file mode 100644 index 000000000..bdfa684d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_violin.png new file mode 100644 index 000000000..c17e67e4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_box.png new file mode 100644 index 000000000..b47976767 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_per_phase.png new file mode 100644 index 000000000..20149891e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_violin.png new file mode 100644 index 000000000..f31a5dad7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_box.png new file mode 100644 index 000000000..5f8f77cdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_per_phase.png new file mode 100644 index 000000000..c44acac83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_violin.png new file mode 100644 index 000000000..c09f6d51f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_box.png new file mode 100644 index 000000000..1509874e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_per_phase.png new file mode 100644 index 000000000..1cc72d10d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_violin.png new file mode 100644 index 000000000..042d16b38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n50/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_box.png new file mode 100644 index 000000000..0b9313c43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_per_phase.png new file mode 100644 index 000000000..3428d5c17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_violin.png new file mode 100644 index 000000000..717270dcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/ane_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_box.png new file mode 100644 index 000000000..10f8bd894 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_per_phase.png new file mode 100644 index 000000000..2336c360e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_violin.png new file mode 100644 index 000000000..852f26efe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/cpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_box.png new file mode 100644 index 000000000..95c09d5a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_per_phase.png new file mode 100644 index 000000000..9cb9419e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_violin.png new file mode 100644 index 000000000..b0910f57a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/dram_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_box.png new file mode 100644 index 000000000..b56b5f595 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_per_phase.png new file mode 100644 index 000000000..552e66ea5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_violin.png new file mode 100644 index 000000000..806740af4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/gpu_mj_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_box.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_box.png new file mode 100644 index 000000000..4b22fc168 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_box.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_per_phase.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_per_phase.png new file mode 100644 index 000000000..38db14bfa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_per_phase.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_violin.png new file mode 100644 index 000000000..c38c20a94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/n500/time_s_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/scaling_overhead.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/scaling_overhead.png new file mode 100644 index 000000000..7e29b586c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/plots/scaling_overhead.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n10/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n10/cleaned_mac_report.md new file mode 100644 index 000000000..6f25ee71a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n10/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 890 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 473.04 ms | 65.11 ms | +| **Average Power** | 4.361 W | 5.933 W | +| **Total Energy** | 1835.92 J | 337.99 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.86% | 0.00e+00 | +5.782 | large | βœ… | +| `gpu_mj` | +90.68% | 4.91e-137 | +1.397 | large | βœ… | +| `ane_mj` | +85.47% | 8.58e-28 | +0.535 | medium | βœ… | +| `dram_mj` | +86.08% | 0.00e+00 | +28.390 | large | βœ… | +| `time_s` | +86.12% | 0.00e+00 | +111.194 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.782, large) +- **`gpu_mj`**: 90.7% lower energy (Cohen’s d = +1.397, large) +- **`ane_mj`**: 85.5% lower energy (Cohen’s d = +0.535, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.390, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +111.194, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n10/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n10/raw_mac_report.md new file mode 100644 index 000000000..31742836b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n10/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 471.54 ms | 64.80 ms | +| **Average Power** | 4.373 W | 5.938 W | +| **Total Energy** | 1856.01 J | 346.36 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.93% | 0.00e+00 | +5.793 | large | βœ… | +| `gpu_mj` | +90.91% | 1.99e-139 | +1.403 | large | βœ… | +| `ane_mj` | +85.73% | 4.05e-28 | +0.536 | medium | βœ… | +| `dram_mj` | +86.12% | 0.00e+00 | +28.295 | large | βœ… | +| `time_s` | +86.15% | 0.00e+00 | +109.558 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.793, large) +- **`gpu_mj`**: 90.9% lower energy (Cohen’s d = +1.403, large) +- **`ane_mj`**: 85.7% lower energy (Cohen’s d = +0.536, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.295, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +109.558, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n100/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n100/cleaned_mac_report.md new file mode 100644 index 000000000..5290d4029 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n100/cleaned_mac_report.md @@ -0,0 +1,41 @@ +## Energy Report β€” `mac` (cleaned) + +> 887 samples (with smell) vs 872 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 505.49 ms | 77.68 ms | +| **Average Power** | 4.241 W | 3.619 W | +| **Total Energy** | 1901.70 J | 245.10 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.32% | 0.00e+00 | +84.860 | large | βœ… | +| `gpu_mj` | +81.92% | 0.00e+00 | +2.516 | large | βœ… | +| `dram_mj` | +87.77% | 0.00e+00 | +177.673 | large | βœ… | +| `time_s` | +84.39% | 0.00e+00 | +250.581 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.3% lower energy (Cohen’s d = +84.860, large) +- **`gpu_mj`**: 81.9% lower energy (Cohen’s d = +2.516, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +177.673, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +250.581, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n100/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n100/raw_mac_report.md new file mode 100644 index 000000000..cfd12a070 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n100/raw_mac_report.md @@ -0,0 +1,41 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 504.53 ms | 78.18 ms | +| **Average Power** | 4.258 W | 3.585 W | +| **Total Energy** | 1933.48 J | 252.27 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.36% | 0.00e+00 | +81.417 | large | βœ… | +| `gpu_mj` | +81.96% | 0.00e+00 | +2.519 | large | βœ… | +| `dram_mj` | +87.79% | 0.00e+00 | +170.568 | large | βœ… | +| `time_s` | +84.43% | 0.00e+00 | +221.489 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.4% lower energy (Cohen’s d = +81.417, large) +- **`gpu_mj`**: 82.0% lower energy (Cohen’s d = +2.519, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +170.568, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +221.489, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n1000/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n1000/cleaned_mac_report.md new file mode 100644 index 000000000..ad3eea23d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n1000/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 883 samples (with smell) vs 876 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 667.61 ms | 125.92 ms | +| **Average Power** | 7.811 W | 4.028 W | +| **Total Energy** | 4604.63 J | 444.29 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.58% | 0.00e+00 | +12.693 | large | βœ… | +| `gpu_mj` | +85.03% | 2.06e-296 | +2.501 | large | βœ… | +| `ane_mj` | +81.14% | 2.51e-31 | +0.575 | medium | βœ… | +| `dram_mj` | +87.28% | 0.00e+00 | +24.469 | large | βœ… | +| `time_s` | +81.01% | 0.00e+00 | +98.450 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.693, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.501, large) +- **`ane_mj`**: 81.1% lower energy (Cohen’s d = +0.575, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.469, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +98.450, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n1000/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n1000/raw_mac_report.md new file mode 100644 index 000000000..3003b419e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n1000/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 665.57 ms | 123.63 ms | +| **Average Power** | 7.826 W | 4.087 W | +| **Total Energy** | 4687.65 J | 454.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.61% | 0.00e+00 | +12.775 | large | βœ… | +| `gpu_mj` | +85.05% | 1.48e-302 | +2.504 | large | βœ… | +| `ane_mj` | +81.23% | 1.02e-31 | +0.573 | medium | βœ… | +| `dram_mj` | +87.31% | 0.00e+00 | +24.607 | large | βœ… | +| `time_s` | +81.02% | 0.00e+00 | +97.082 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.775, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.504, large) +- **`ane_mj`**: 81.2% lower energy (Cohen’s d = +0.573, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.607, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +97.082, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n30/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n30/cleaned_mac_report.md new file mode 100644 index 000000000..e935a0298 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n30/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 898 samples (with smell) vs 881 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 490.02 ms | 75.55 ms | +| **Average Power** | 4.325 W | 4.612 W | +| **Total Energy** | 1903.20 J | 307.00 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.33% | 0.00e+00 | +6.279 | large | βœ… | +| `gpu_mj` | +83.08% | 8.41e-224 | +1.932 | large | βœ… | +| `ane_mj` | +86.82% | 6.94e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.80% | 0.00e+00 | +28.191 | large | βœ… | +| `time_s` | +84.45% | 0.00e+00 | +112.566 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.3% lower energy (Cohen’s d = +6.279, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.932, large) +- **`ane_mj`**: 86.8% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.191, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +112.566, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n30/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n30/raw_mac_report.md new file mode 100644 index 000000000..abd4a7433 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n30/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 489.50 ms | 75.33 ms | +| **Average Power** | 4.329 W | 4.613 W | +| **Total Energy** | 1907.29 J | 312.72 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.37% | 0.00e+00 | +6.288 | large | βœ… | +| `gpu_mj` | +83.10% | 1.39e-224 | +1.934 | large | βœ… | +| `ane_mj` | +86.98% | 5.53e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.83% | 0.00e+00 | +28.185 | large | βœ… | +| `time_s` | +84.47% | 0.00e+00 | +111.097 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.4% lower energy (Cohen’s d = +6.288, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.934, large) +- **`ane_mj`**: 87.0% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.185, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +111.097, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n50/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n50/cleaned_mac_report.md new file mode 100644 index 000000000..9ad8b0ac5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n50/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 890 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 500.03 ms | 61.56 ms | +| **Average Power** | 5.624 W | 6.458 W | +| **Total Energy** | 2505.74 J | 353.85 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.38% | 0.00e+00 | +7.249 | large | βœ… | +| `gpu_mj` | +87.81% | 0.00e+00 | +3.995 | large | βœ… | +| `ane_mj` | +87.93% | 1.45e-279 | +2.494 | large | βœ… | +| `dram_mj` | +87.72% | 0.00e+00 | +31.230 | large | βœ… | +| `time_s` | +87.70% | 0.00e+00 | +115.051 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.249, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.995, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.494, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.230, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +115.051, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n50/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n50/raw_mac_report.md new file mode 100644 index 000000000..73643e782 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n50/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 499.59 ms | 61.33 ms | +| **Average Power** | 5.623 W | 6.479 W | +| **Total Energy** | 2528.48 J | 357.61 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.36% | 0.00e+00 | +7.194 | large | βœ… | +| `gpu_mj` | +87.85% | 0.00e+00 | +3.974 | large | βœ… | +| `ane_mj` | +87.88% | 7.64e-279 | +2.465 | large | βœ… | +| `dram_mj` | +87.74% | 0.00e+00 | +31.039 | large | βœ… | +| `time_s` | +87.71% | 0.00e+00 | +113.485 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.194, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.974, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.465, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.039, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +113.485, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n500/cleaned_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n500/cleaned_mac_report.md new file mode 100644 index 000000000..20c6d52c2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n500/cleaned_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 875 samples (with smell) vs 877 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 613.25 ms | 108.37 ms | +| **Average Power** | 6.227 W | 4.551 W | +| **Total Energy** | 3341.35 J | 432.52 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.24% | 0.00e+00 | +8.245 | large | βœ… | +| `gpu_mj` | +84.73% | 1.53e-265 | +2.269 | large | βœ… | +| `ane_mj` | +81.57% | 7.15e-43 | +0.691 | medium | βœ… | +| `dram_mj` | +86.54% | 0.00e+00 | +19.272 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.465 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.245, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.691, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.272, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.465, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n500/raw_mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n500/raw_mac_report.md new file mode 100644 index 000000000..f567e5107 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/consolidated-report/reports-source/n500/raw_mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 611.35 ms | 106.11 ms | +| **Average Power** | 6.242 W | 4.652 W | +| **Total Energy** | 3434.22 J | 444.25 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.22% | 0.00e+00 | +8.263 | large | βœ… | +| `gpu_mj` | +84.75% | 3.81e-273 | +2.269 | large | βœ… | +| `ane_mj` | +81.59% | 2.97e-43 | +0.684 | medium | βœ… | +| `dram_mj` | +86.52% | 0.00e+00 | +19.310 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.123 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.263, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.684, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.310, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.123, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..34d3c21e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1398.2044033134116,0.40261200844077694,0.0,442.1350872693799,0.4791000420009368 +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.47142758300105925 +2,1392.2357928925342,0.40089335112325214,0.0,440.2477150918514,0.477054875002068 +3,1393.0715489932206,0.40113400652489917,0.0,440.5119948320934,0.47734124999988126 +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332 +5,1391.353584643174,0.40063931985693924,0.0,439.96874642289544,0.47675258299932466 +6,1389.8013619275412,0.40019235838005696,0.0,439.47790822769923,0.4762207079984364 +7,1393.9126545251288,0.40137620229163373,0.0,440.7779661499291,0.4776294580005924 +8,1395.2987708038715,0.40177533353281325,0.0,441.21627877461776,0.4781044160008605 +9,1393.131376142637,0.40115123371194616,0.0,440.53091315466884,0.4773617499995453 +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505 +11,1391.779428467707,0.40076194129703135,0.0,440.1034052010233,0.47689850000097067 +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.47606062500199187 +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828 +14,1397.3508945928966,0.40236624118430575,0.0,441.8651938605651,0.47880758400060586 +15,1387.6137807153643,0.39956244585555434,0.0,438.7861592903746,0.4754711249988759 +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016 +17,1387.905133100111,0.3996463405768904,0.0,438.87828967685516,0.4755709579985705 +18,1389.2666881497526,0.40003839942882924,0.0,439.308835639426,0.4760375000005297 +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.47641049999947427 +20,1387.9581516296382,0.39966160722646393,0.0,438.89505500252847,0.47558912499880535 +21,1383.6377091625147,0.39841753875198394,0.0,437.5288604728037,0.4741087090005749 +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973 +23,1385.2003855818612,0.39886751036575163,0.0,438.0230042999896,0.4746441660026903 +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586 +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256 +26,1388.7087868377796,0.39987775212490656,0.0,439.1324181251682,0.47584633299993584 +27,1386.8714133370133,0.39934868167308535,0.0,438.5514105906599,0.47521675000098185 +28,1388.1705847108346,0.39972277718793525,0.0,438.9622298152176,0.4756619159998081 +29,1389.9437563946433,0.40023336077016175,0.0,439.52293568576596,0.47626950000267243 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f2ac3b2e2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341 +1,290.22725500807564,0.0,0.0,61.57760130550795,0.06690920799883315 +2,287.38755742396035,0.0,0.0,60.97510184122435,0.06625454199820524 +3,284.85600928125524,0.0,0.0,60.43798253376007,0.06567091699980665 +4,288.39804257958247,0.0,0.0,61.18949677128115,0.06648750000022119 +5,289.7942165918819,0.0,0.0,61.485723418499695,0.06680937499913853 +6,287.9792792941568,0.0,0.0,61.10064764292961,0.06639095799982897 +7,293.9906938530544,0.0,0.0,62.37609122240881,0.06777683399923262 +8,287.754807039453,0.0,0.0,61.05302129920833,0.06633920799868065 +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141 +10,288.1126656850648,0.0,0.0,61.128948272374934,0.06642170899795019 +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543 +12,283.96806213484086,0.0,0.0,60.249586528840595,0.06546620900189737 +13,287.49473153180446,0.0,0.0,60.99784100293028,0.06627924999702373 +14,290.36370810703596,0.0,0.0,61.60655259929476,0.06694066599811777 +15,286.7884182291257,0.0,0.0,60.84798230358821,0.06611641600102303 +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447 +17,285.94203855646913,0.0,0.0,60.66840568169417,0.06592129099954036 +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269 +19,287.0410893992396,0.0,0.0,60.90159161941293,0.06617466700117802 +20,297.4148868126718,0.0,0.0,63.10260324091163,0.06856625000000349 +21,290.7853645972282,0.0,0.0,61.69601557974508,0.06703787500009639 +22,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381 +23,286.4050846775788,0.0,0.0,60.76665031220264,0.06602804199792445 +24,284.29446863504063,0.0,0.0,60.318840291145825,0.06554145900008734 +25,285.6671457104221,0.0,0.0,60.6100815864084,0.06585791699762922 +26,287.5579915240894,0.0,0.0,61.01126289393568,0.06629383400286315 +27,286.0333109264343,0.0,0.0,60.68777096703847,0.06594233299983898 +28,284.3069393158575,0.0,0.0,60.32148619913034,0.06554433400015114 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..267122b94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ceb60eb2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e57a08da3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e92bb356e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..43d930359 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f47c50e92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c23d04867 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6f03ecff3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..357f3d29f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b5b2075ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d6cdef793 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..25f759b91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..323eb2c17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fd4787911 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6ab7775dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7bececf65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..17006ba7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..34d3c21e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1398.2044033134116,0.40261200844077694,0.0,442.1350872693799,0.4791000420009368 +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.47142758300105925 +2,1392.2357928925342,0.40089335112325214,0.0,440.2477150918514,0.477054875002068 +3,1393.0715489932206,0.40113400652489917,0.0,440.5119948320934,0.47734124999988126 +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332 +5,1391.353584643174,0.40063931985693924,0.0,439.96874642289544,0.47675258299932466 +6,1389.8013619275412,0.40019235838005696,0.0,439.47790822769923,0.4762207079984364 +7,1393.9126545251288,0.40137620229163373,0.0,440.7779661499291,0.4776294580005924 +8,1395.2987708038715,0.40177533353281325,0.0,441.21627877461776,0.4781044160008605 +9,1393.131376142637,0.40115123371194616,0.0,440.53091315466884,0.4773617499995453 +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505 +11,1391.779428467707,0.40076194129703135,0.0,440.1034052010233,0.47689850000097067 +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.47606062500199187 +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828 +14,1397.3508945928966,0.40236624118430575,0.0,441.8651938605651,0.47880758400060586 +15,1387.6137807153643,0.39956244585555434,0.0,438.7861592903746,0.4754711249988759 +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016 +17,1387.905133100111,0.3996463405768904,0.0,438.87828967685516,0.4755709579985705 +18,1389.2666881497526,0.40003839942882924,0.0,439.308835639426,0.4760375000005297 +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.47641049999947427 +20,1387.9581516296382,0.39966160722646393,0.0,438.89505500252847,0.47558912499880535 +21,1383.6377091625147,0.39841753875198394,0.0,437.5288604728037,0.4741087090005749 +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973 +23,1385.2003855818612,0.39886751036575163,0.0,438.0230042999896,0.4746441660026903 +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586 +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256 +26,1388.7087868377796,0.39987775212490656,0.0,439.1324181251682,0.47584633299993584 +27,1386.8714133370133,0.39934868167308535,0.0,438.5514105906599,0.47521675000098185 +28,1388.1705847108346,0.39972277718793525,0.0,438.9622298152176,0.4756619159998081 +29,1389.9437563946433,0.40023336077016175,0.0,439.52293568576596,0.47626950000267243 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c4ad94f75 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341 +1,290.22725500807564,0.0,0.0,61.57760130550795,0.06690920799883315 +2,287.38755742396035,0.0,0.0,60.97510184122435,0.06625454199820524 +3,284.85600928125524,0.0,0.0,60.43798253376007,0.06567091699980665 +4,288.39804257958247,0.0,0.0,61.18949677128115,0.06648750000022119 +5,289.7942165918819,0.0,0.0,61.485723418499695,0.06680937499913853 +6,287.9792792941568,0.0,0.0,61.10064764292961,0.06639095799982897 +7,293.9906938530544,0.0,0.0,62.37609122240881,0.06777683399923262 +8,287.754807039453,0.0,0.0,61.05302129920833,0.06633920799868065 +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141 +10,288.1126656850648,0.0,0.0,61.128948272374934,0.06642170899795019 +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543 +12,283.96806213484086,0.0,0.0,60.249586528840595,0.06546620900189737 +13,287.49473153180446,0.0,0.0,60.99784100293028,0.06627924999702373 +14,290.36370810703596,0.0,0.0,61.60655259929476,0.06694066599811777 +15,286.7884182291257,0.0,0.0,60.84798230358821,0.06611641600102303 +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447 +17,285.94203855646913,0.0,0.0,60.66840568169417,0.06592129099954036 +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269 +19,287.0410893992396,0.0,0.0,60.90159161941293,0.06617466700117802 +20,297.4148868126718,0.0,0.0,63.10260324091163,0.06856625000000349 +21,302.4373178414097,0.0,0.0,64.1682138964768,0.06972412499817437 +22,290.7853645972282,0.0,0.0,61.69601557974508,0.06703787500009639 +23,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381 +24,286.4050846775788,0.0,0.0,60.76665031220264,0.06602804199792445 +25,284.29446863504063,0.0,0.0,60.318840291145825,0.06554145900008734 +26,285.6671457104221,0.0,0.0,60.6100815864084,0.06585791699762922 +27,287.5579915240894,0.0,0.0,61.01126289393568,0.06629383400286315 +28,286.0333109264343,0.0,0.0,60.68777096703847,0.06594233299983898 +29,284.3069393158575,0.0,0.0,60.32148619913034,0.06554433400015114 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..216797ded Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f2f85a1be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2da5afb35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8c1015047 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d7baac42c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2dcd984d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..63a8d3ddd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6f03ecff3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..37f68d607 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..934946d99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b894e47ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9f4406a16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0d65a343a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7f7aaa9d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6aec0d066 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7bececf65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9a23d6ee1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..68da330e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235 +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195 +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.48863449999771547 +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134 +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859 +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844 +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769 +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.49360916699879454 +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017 +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253 +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.48516729100083467 +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426 +12,2188.706010784058,2.983740150116864,75.78699981296833,491.55461339758597,0.4860802499970305 +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227 +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.48982770799921127 +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.48673445800159243 +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.49939124999946216 +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378 +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.48596112499944866 +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.49229674999878625 +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.48734337499990943 +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008 +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.48799629200220807 +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986 +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196 +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232 +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.48848741600158974 +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.49075087500023074 +28,2240.945048917429,3.0549547009583398,77.59584940434183,503.2868150123256,0.49768179199963924 +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..63e853afd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,420.86616408913164,0.3104241498772484,10.623404240243612,71.60450390501863,0.06985420899945893 +1,414.73429966814723,0.3059013847740801,10.468625167824074,70.56125275455447,0.06883645899870316 +2,408.0288084577771,0.30095552172758516,10.299366743566248,69.42040701182964,0.06772350000028382 +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.06720566600051825 +4,393.84087014769796,0.2904907253998756,9.941238158129075,67.0065273255713,0.06536862500070129 +5,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695 +6,408.8662726213036,0.30157322189737196,10.320505816043395,69.5628898509938,0.06786250000004657 +7,415.36741054416126,0.30636835722811434,10.484606002917692,70.66896773395172,0.06894154100154992 +8,413.58930540851117,0.30505685532507787,10.43972349334711,70.3664479616513,0.06864641599895549 +9,415.22381858036624,0.30626244609271397,10.480981488506211,70.64453756538603,0.06891770800211816 +10,408.53514892789457,0.30132899035822414,10.312147670037005,69.50655377596371,0.06780754099963815 +11,408.8662726213036,0.30157322189737196,10.320505816043395,69.5628898509938,0.06786250000004657 +12,401.6223100288431,0.2962301909735771,10.137655424429083,68.33043071790512,0.06666016700182809 +13,406.60442049183155,0.29990491595037566,10.263412679190635,69.17806727921999,0.0674870840011863 +14,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.06731562500135624 +15,409.57821959330414,0.3020983425946351,10.338476613238623,69.68401769182915,0.06798066700139316 +16,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.06970012500096345 +17,402.4366746389332,0.2968308532822815,10.158211423438077,68.46898349044626,0.06679533300120966 +18,401.3386386128404,0.29602095947513224,10.130495057593414,68.28216798559717,0.06661308399998234 +19,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.06683737499770359 +20,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.06957245800003875 +21,387.29202689790424,0.28566040338314524,9.775933804667638,65.8923330470455,0.06428166600016993 +22,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.06813233400316676 +23,407.45493462454124,0.3005322415686667,10.284881155905483,69.32277038850579,0.06762824999896111 +24,408.27633635683975,0.30113809434613653,10.305614784290006,69.46252042917548,0.06776458400054253 +25,417.85495624498935,0.3082031311428376,10.547396043554887,71.09218891694786,0.06935441699897638 +26,406.94080393314306,0.30015302699543417,10.271903590510414,69.23529822694681,0.0675429160000931 +27,390.6549455763897,0.2881408384025166,9.860819803108345,66.46448672484716,0.06483983399812132 +28,401.5595483973625,0.29618389899821856,10.136071210161257,68.31975270225574,0.06664974999875994 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..50cea2dfe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..474bd6e94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..799e3144e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..be11434f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fe6cba271 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fcca18b9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..e64ad25f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0ce9f9f48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..464819b6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f4b1862c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..90a592ef1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c503f857b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3bbdc45c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6c57c4dd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1bbcdeded Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..ad10b5c3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..abe2100a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b3a4dd537 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..95f723878 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..75f8c86e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..68da330e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235 +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195 +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.48863449999771547 +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134 +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859 +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844 +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769 +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.49360916699879454 +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017 +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253 +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.48516729100083467 +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426 +12,2188.706010784058,2.983740150116864,75.78699981296833,491.55461339758597,0.4860802499970305 +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227 +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.48982770799921127 +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.48673445800159243 +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.49939124999946216 +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378 +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.48596112499944866 +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.49229674999878625 +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.48734337499990943 +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008 +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.48799629200220807 +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986 +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196 +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232 +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.48848741600158974 +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.49075087500023074 +28,2240.945048917429,3.0549547009583398,77.59584940434183,503.2868150123256,0.49768179199963924 +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..03f532f15 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,420.86616408913164,0.3104241498772484,10.623404240243612,71.60450390501863,0.06985420899945893 +1,414.73429966814723,0.3059013847740801,10.468625167824074,70.56125275455447,0.06883645899870316 +2,408.0288084577771,0.30095552172758516,10.299366743566248,69.42040701182964,0.06772350000028382 +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.06720566600051825 +4,376.92038266158966,0.2780104445135475,9.514135212241404,64.12774253445829,0.06256020900036674 +5,393.84087014769796,0.2904907253998756,9.941238158129075,67.0065273255713,0.06536862500070129 +6,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695 +7,408.8662726213036,0.30157322189737196,10.320505816043395,69.5628898509938,0.06786250000004657 +8,415.36741054416126,0.30636835722811434,10.484606002917692,70.66896773395172,0.06894154100154992 +9,413.58930540851117,0.30505685532507787,10.43972349334711,70.3664479616513,0.06864641599895549 +10,415.22381858036624,0.30626244609271397,10.480981488506211,70.64453756538603,0.06891770800211816 +11,408.53514892789457,0.30132899035822414,10.312147670037005,69.50655377596371,0.06780754099963815 +12,408.8662726213036,0.30157322189737196,10.320505816043395,69.5628898509938,0.06786250000004657 +13,401.6223100288431,0.2962301909735771,10.137655424429083,68.33043071790512,0.06666016700182809 +14,406.60442049183155,0.29990491595037566,10.263412679190635,69.17806727921999,0.0674870840011863 +15,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.06731562500135624 +16,409.57821959330414,0.3020983425946351,10.338476613238623,69.68401769182915,0.06798066700139316 +17,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.06970012500096345 +18,402.4366746389332,0.2968308532822815,10.158211423438077,68.46898349044626,0.06679533300120966 +19,401.3386386128404,0.29602095947513224,10.130495057593414,68.28216798559717,0.06661308399998234 +20,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.06683737499770359 +21,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.06957245800003875 +22,387.29202689790424,0.28566040338314524,9.775933804667638,65.8923330470455,0.06428166600016993 +23,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.06813233400316676 +24,407.45493462454124,0.3005322415686667,10.284881155905483,69.32277038850579,0.06762824999896111 +25,408.27633635683975,0.30113809434613653,10.305614784290006,69.46252042917548,0.06776458400054253 +26,417.85495624498935,0.3082031311428376,10.547396043554887,71.09218891694786,0.06935441699897638 +27,406.94080393314306,0.30015302699543417,10.271903590510414,69.23529822694681,0.0675429160000931 +28,390.6549455763897,0.2881408384025166,9.860819803108345,66.46448672484716,0.06483983399812132 +29,401.5595483973625,0.29618389899821856,10.136071210161257,68.31975270225574,0.06664974999875994 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..85fe1b6d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f8b543579 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..641558fd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..910c04bdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..149de98ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b7a5effa1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6252b86bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..53ef1fda8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..04bbed915 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7b26e29d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6153b7c15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6678f7347 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c186685d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e3acc8dd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b27a83a72 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..da6d1c5e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2b5f741fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3061c4c54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1b72964f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ac315c3ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..534f0904c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.48490216699792654 +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063 +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135 +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.48957187500127475 +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.67785269445045,0.4906171659968095 +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154 +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.48711254199952236 +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639 +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739 +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.48792170899832854 +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891 +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944 +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.48594629099898157 +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574 +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318 +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.48788950000016484 +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959 +17,2227.261152610207,3.9957442675660397,74.82031141017409,495.37239557149974,0.488344417000917 +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.49238341599993873 +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123 +20,2227.7827987692394,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098 +21,2221.6883752224203,3.9857466104544907,74.63310528076033,494.1329360310955,0.48712254199926974 +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.48646862500027055 +23,2217.6434795297237,3.9784899990068148,74.49722523140261,493.23329762686984,0.4862356670018926 +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311 +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591 +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985 +27,2251.464964761066,4.039166316903047,75.63338928400955,500.75564413805523,0.4936512920030509 +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068 +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9fd7cf628 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.06741129200236173 +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.07080574999781675 +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.06811883300179034 +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.06924570800038055 +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.06798804199934239 +5,404.8936371581969,1.6129853319575567,11.290897323702897,72.24115156958844,0.07007558299665106 +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.06473525000183145 +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.06629395900017698 +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.06758504200115567 +9,386.05653561602253,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909 +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.06842750000214437 +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.06977000000188127 +12,398.195304750097,1.5863010106165927,11.104107074316149,71.046034624424,0.06891629199890303 +13,393.1222593641649,1.5660913875331202,10.962639712731841,70.14090150547273,0.0680382919999829 +14,400.10034307722657,1.5938901614366545,11.157231130056582,71.38593169838633,0.06924599999911152 +15,396.1694089205137,1.5782303966150317,11.047612776305222,70.68457414626897,0.06856566699934774 +16,400.56234267245264,1.5957306412616779,11.170114488831745,71.46836169906025,0.06932595900070737 +17,391.19362387243757,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276 +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.06785287500315462 +19,390.2371352451378,1.554597843407482,10.882184903852375,69.62613745473936,0.06753895899964846 +20,399.12410541064315,1.5900010980081563,11.130007686057095,71.21175130440785,0.06907704100012779 +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.06791495800280245 +22,388.32920215849396,1.5469971606585198,10.828980124609638,69.28572389757838,0.06720874999882653 +23,392.8437098823672,1.5649817227048024,10.954872058933617,70.09120268709806,0.06799008300004061 +24,401.12472845982575,1.597971032175946,11.185797225231621,71.5687026112844,0.06942329199955566 +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019 +26,387.2337999468269,1.5426333783269082,10.798433648288357,69.09028215698174,0.06701916700330912 +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.06781879200207186 +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.06591066699911607 +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.06860195799890789 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8494ce8fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2e5476be1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1a2d549ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d6fe13673 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bf02b9e45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c63656bad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..10eb13a4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9e10d9491 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c9f7b0e8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a7ddfce03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dcc582bc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..71dd30548 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ccf64329f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..583c4d407 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2e8752e0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..6a593beb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5f5b62c59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ef8d8a4c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..80d36248c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..3f1a76fec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..534f0904c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.48490216699792654 +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063 +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135 +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.48957187500127475 +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.67785269445045,0.4906171659968095 +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154 +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.48711254199952236 +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639 +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739 +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.48792170899832854 +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891 +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944 +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.48594629099898157 +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574 +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318 +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.48788950000016484 +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959 +17,2227.261152610207,3.9957442675660397,74.82031141017409,495.37239557149974,0.488344417000917 +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.49238341599993873 +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123 +20,2227.7827987692394,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098 +21,2221.6883752224203,3.9857466104544907,74.63310528076033,494.1329360310955,0.48712254199926974 +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.48646862500027055 +23,2217.6434795297237,3.9784899990068148,74.49722523140261,493.23329762686984,0.4862356670018926 +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311 +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591 +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985 +27,2251.464964761066,4.039166316903047,75.63338928400955,500.75564413805523,0.4936512920030509 +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068 +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9fd7cf628 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.06741129200236173 +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.07080574999781675 +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.06811883300179034 +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.06924570800038055 +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.06798804199934239 +5,404.8936371581969,1.6129853319575567,11.290897323702897,72.24115156958844,0.07007558299665106 +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.06473525000183145 +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.06629395900017698 +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.06758504200115567 +9,386.05653561602253,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909 +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.06842750000214437 +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.06977000000188127 +12,398.195304750097,1.5863010106165927,11.104107074316149,71.046034624424,0.06891629199890303 +13,393.1222593641649,1.5660913875331202,10.962639712731841,70.14090150547273,0.0680382919999829 +14,400.10034307722657,1.5938901614366545,11.157231130056582,71.38593169838633,0.06924599999911152 +15,396.1694089205137,1.5782303966150317,11.047612776305222,70.68457414626897,0.06856566699934774 +16,400.56234267245264,1.5957306412616779,11.170114488831745,71.46836169906025,0.06932595900070737 +17,391.19362387243757,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276 +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.06785287500315462 +19,390.2371352451378,1.554597843407482,10.882184903852375,69.62613745473936,0.06753895899964846 +20,399.12410541064315,1.5900010980081563,11.130007686057095,71.21175130440785,0.06907704100012779 +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.06791495800280245 +22,388.32920215849396,1.5469971606585198,10.828980124609638,69.28572389757838,0.06720874999882653 +23,392.8437098823672,1.5649817227048024,10.954872058933617,70.09120268709806,0.06799008300004061 +24,401.12472845982575,1.597971032175946,11.185797225231621,71.5687026112844,0.06942329199955566 +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019 +26,387.2337999468269,1.5426333783269082,10.798433648288357,69.09028215698174,0.06701916700330912 +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.06781879200207186 +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.06591066699911607 +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.06860195799890789 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8494ce8fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2e5476be1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1a2d549ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d6fe13673 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bf02b9e45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c63656bad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..10eb13a4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9e10d9491 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c9f7b0e8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a7ddfce03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dcc582bc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..71dd30548 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ccf64329f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..583c4d407 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2e8752e0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..6a593beb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5f5b62c59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ef8d8a4c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..80d36248c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..3f1a76fec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..bbef23341 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229 +1,1405.501159477378,0.23224843294324266,0.0,441.90241119586415,0.47400416700111236 +2,1411.600628024097,0.23325632397357726,0.0,443.82013985772505,0.47606120799900964 +3,1414.8127689086136,0.23378710595251156,0.0,444.83006631164307,0.47714450000057695 +4,1415.084203187349,0.23383195841347065,0.0,444.91540772985934,0.4772360409988323 +5,1423.4112588293244,0.23520794135794512,0.0,447.5335101352102,0.4800443340027414 +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879 +7,1412.9817787427867,0.23348454868040946,0.0,444.2543862677677,0.4765269999988959 +8,1412.4140739457582,0.23339073975780905,0.0,444.0758946906084,0.47633554200001527 +9,1414.3226536148504,0.23370611810830352,0.0,444.67596958349924,0.47697920900100144 +10,1417.9660986792762,0.23430816983983127,0.0,445.82150201381614,0.4782079579999845 +11,1412.6123694385958,0.23342350658774777,0.0,444.13824060603037,0.4764024169999175 +12,1419.2150504322765,0.23451454966776675,0.0,446.21418386071224,0.4786291660020652 +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844 +14,1414.5234190879783,0.23373929308379793,0.0,444.73909208330065,0.47704691699982504 +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688 +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.47487529100180836 +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377 +18,1411.6060661381266,0.23325722258077725,0.0,443.82184965048174,0.47606304199871374 +19,1418.1162102203814,0.23433297463629363,0.0,445.86869845439924,0.4782585829998425 +20,1413.9969775450247,0.23365230260174621,0.0,444.5735740503797,0.47686937500111526 +21,1402.71835094593,0.23178859488743475,0.0,441.02747075796333,0.4730656669999007 +22,1402.7010521628758,0.23178573639441316,0.0,441.02203186245555,0.47305983299884247 +23,1404.320403583212,0.23205332196502723,0.0,441.53117075031395,0.4736059579990979 +24,1409.4916535304808,0.23290783189446593,0.0,443.1570590003417,0.4753499580001517 +25,1413.038612086046,0.23349393996039663,0.0,444.2722551903604,0.4765461669994693 +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.47610612500284333 +27,1413.9134577072468,0.23363850158044303,0.0,444.54731464998866,0.47684120800113305 +28,1409.1224903257444,0.23284683046787713,0.0,443.0409907145222,0.47522545799802174 +29,1407.2538188427316,0.23253804664319724,0.0,442.45346332010627,0.47459525000158465 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a0d8ca4b3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,294.47160668958014,0.0,0.0,62.234392802682095,0.06743979200109607 +1,287.84062620984656,0.0,0.0,60.832984196664334,0.06592116699903272 +2,284.1358833944333,0.0,0.0,60.0500142451661,0.06507270799920661 +3,289.6685259247307,0.0,0.0,61.219297261407206,0.06633979199978057 +4,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185 +5,288.79942156630415,0.0,0.0,61.035618493063815,0.06614075000106823 +6,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289 +7,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556 +8,286.70698999914885,0.0,0.0,60.59339858083863,0.06566154200118035 +9,286.97661747524285,0.0,0.0,60.65038235067053,0.06572329199843807 +10,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184 +11,294.88587239836045,0.0,0.0,62.321944791597936,0.06753466699956334 +12,293.9449008440537,0.0,0.0,62.123077423754864,0.06731916599892429 +13,290.6658900109148,0.0,0.0,61.43008277314009,0.06656820799980778 +14,290.4495723431128,0.0,0.0,61.38436563640324,0.06651866699758102 +15,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483 +16,288.1284442887526,0.0,0.0,60.89381241565535,0.06598708300225553 +17,289.94870708075484,0.0,0.0,61.27851147331694,0.06640395899739815 +18,291.0404953723931,0.0,0.0,61.509252841434005,0.06665399999837973 +19,291.41564654265915,0.0,0.0,61.588538262372175,0.06673991699790349 +20,287.7964160316246,0.0,0.0,60.823640702979915,0.06591104199833353 +21,288.7233713242801,0.0,0.0,61.01954583774717,0.06612333299926831 +22,288.51996957968584,0.0,0.0,60.97655838570675,0.06607674999759183 +23,291.0746976794727,0.0,0.0,61.51648124568486,0.06666183299967088 +24,294.25819707384346,0.0,0.0,62.18929026120812,0.06739091700001154 +25,289.8793855364252,0.0,0.0,61.26386087841579,0.06638808299976517 +26,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384 +27,294.18505925226117,0.0,0.0,62.17383312437835,0.06737416699979804 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..966a92411 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3c9f3b98a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cd35b2a69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7a90475ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0daf1e173 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7eea80a2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..afee1bd90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b9f396c35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cbca8c2cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6f0b813a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..186094b85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3266de291 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1b6447e11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ae629936c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0c5366255 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e22d8e5ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f4d8d4768 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..bbef23341 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229 +1,1405.501159477378,0.23224843294324266,0.0,441.90241119586415,0.47400416700111236 +2,1411.600628024097,0.23325632397357726,0.0,443.82013985772505,0.47606120799900964 +3,1414.8127689086136,0.23378710595251156,0.0,444.83006631164307,0.47714450000057695 +4,1415.084203187349,0.23383195841347065,0.0,444.91540772985934,0.4772360409988323 +5,1423.4112588293244,0.23520794135794512,0.0,447.5335101352102,0.4800443340027414 +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879 +7,1412.9817787427867,0.23348454868040946,0.0,444.2543862677677,0.4765269999988959 +8,1412.4140739457582,0.23339073975780905,0.0,444.0758946906084,0.47633554200001527 +9,1414.3226536148504,0.23370611810830352,0.0,444.67596958349924,0.47697920900100144 +10,1417.9660986792762,0.23430816983983127,0.0,445.82150201381614,0.4782079579999845 +11,1412.6123694385958,0.23342350658774777,0.0,444.13824060603037,0.4764024169999175 +12,1419.2150504322765,0.23451454966776675,0.0,446.21418386071224,0.4786291660020652 +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844 +14,1414.5234190879783,0.23373929308379793,0.0,444.73909208330065,0.47704691699982504 +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688 +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.47487529100180836 +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377 +18,1411.6060661381266,0.23325722258077725,0.0,443.82184965048174,0.47606304199871374 +19,1418.1162102203814,0.23433297463629363,0.0,445.86869845439924,0.4782585829998425 +20,1413.9969775450247,0.23365230260174621,0.0,444.5735740503797,0.47686937500111526 +21,1402.71835094593,0.23178859488743475,0.0,441.02747075796333,0.4730656669999007 +22,1402.7010521628758,0.23178573639441316,0.0,441.02203186245555,0.47305983299884247 +23,1404.320403583212,0.23205332196502723,0.0,441.53117075031395,0.4736059579990979 +24,1409.4916535304808,0.23290783189446593,0.0,443.1570590003417,0.4753499580001517 +25,1413.038612086046,0.23349393996039663,0.0,444.2722551903604,0.4765461669994693 +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.47610612500284333 +27,1413.9134577072468,0.23363850158044303,0.0,444.54731464998866,0.47684120800113305 +28,1409.1224903257444,0.23284683046787713,0.0,443.0409907145222,0.47522545799802174 +29,1407.2538188427316,0.23253804664319724,0.0,442.45346332010627,0.47459525000158465 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..aafefeb87 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,294.47160668958014,0.0,0.0,62.234392802682095,0.06743979200109607 +1,258.53801295899865,0.0,0.0,54.64009394249207,0.05921029200180783 +2,287.84062620984656,0.0,0.0,60.832984196664334,0.06592116699903272 +3,284.1358833944333,0.0,0.0,60.0500142451661,0.06507270799920661 +4,289.6685259247307,0.0,0.0,61.219297261407206,0.06633979199978057 +5,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185 +6,288.79942156630415,0.0,0.0,61.035618493063815,0.06614075000106823 +7,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289 +8,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556 +9,286.70698999914885,0.0,0.0,60.59339858083863,0.06566154200118035 +10,286.97661747524285,0.0,0.0,60.65038235067053,0.06572329199843807 +11,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184 +12,294.88587239836045,0.0,0.0,62.321944791597936,0.06753466699956334 +13,293.9449008440537,0.0,0.0,62.123077423754864,0.06731916599892429 +14,290.6658900109148,0.0,0.0,61.43008277314009,0.06656820799980778 +15,290.4495723431128,0.0,0.0,61.38436563640324,0.06651866699758102 +16,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483 +17,288.1284442887526,0.0,0.0,60.89381241565535,0.06598708300225553 +18,289.94870708075484,0.0,0.0,61.27851147331694,0.06640395899739815 +19,291.0404953723931,0.0,0.0,61.509252841434005,0.06665399999837973 +20,291.41564654265915,0.0,0.0,61.588538262372175,0.06673991699790349 +21,287.7964160316246,0.0,0.0,60.823640702979915,0.06591104199833353 +22,288.7233713242801,0.0,0.0,61.01954583774717,0.06612333299926831 +23,288.51996957968584,0.0,0.0,60.97655838570675,0.06607674999759183 +24,262.07373536090887,0.0,0.0,55.387342681599485,0.06002004200126976 +25,291.0746976794727,0.0,0.0,61.51648124568486,0.06666183299967088 +26,294.25819707384346,0.0,0.0,62.18929026120812,0.06739091700001154 +27,289.8793855364252,0.0,0.0,61.26386087841579,0.06638808299976517 +28,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384 +29,294.18505925226117,0.0,0.0,62.17383312437835,0.06737416699979804 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..647a0ebcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5052ccb90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c0d227d49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b84bc5dca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8f40e4f4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..177899b09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8ccefed71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b9f396c35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f4d553083 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..547b089c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2a14eff40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2fc4e384b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8ae82162f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c9574f75e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a59f520f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e22d8e5ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9ce186c15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d81597cbc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.47739254199768766 +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012 +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.47687212500022724 +3,1591.7771157613092,0.16538287712589447,0.0,448.02221413404817,0.4742466669995338 +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.47639087500283495 +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756 +6,1599.923316021195,0.16622925318148896,0.0,450.3150468686536,0.476673707998998 +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078 +8,1599.6205389249687,0.16619779516716907,0.0,450.229827107861,0.4765834999998333 +9,1592.539445588393,0.16546208187062514,0.0,448.2367797875235,0.47447379200093565 +10,1607.4481600048061,0.16701107139938556,0.0,452.43299242093553,0.4789156250008091 +11,1594.297518282129,0.16564474256941744,0.0,448.73160762055187,0.4749975839986291 +12,1602.677410191569,0.16651539878143637,0.0,451.0902152989111,0.4774942500007455 +13,1605.1480233851848,0.16677209120035585,0.0,451.78559506176396,0.4782303329993738 +14,1601.3632290921896,0.16637885764817864,0.0,450.7203253689159,0.47710270899915486 +15,1595.800220143318,0.16580087068233296,0.0,449.15455867843997,0.47544529199876706 +16,1611.70677521292,0.16745353412153188,0.0,453.63162393522987,0.48018441699969117 +17,1598.0024596834728,0.16602967954487083,0.0,449.7744018870551,0.4761014169998816 +18,1595.2047318950506,0.1657390004878076,0.0,448.98695232147077,0.4752678750010091 +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831 +20,1594.7083993859605,0.16568743240233152,0.0,448.8472543779161,0.4751200000027893 +21,1594.7913334840082,0.16569604911104732,0.0,448.8705970418272,0.47514470900205197 +22,1611.819356688242,0.16746523114124365,0.0,453.66331116162905,0.4802179590005835 +23,1625.5004557649997,0.16888667356880138,0.0,457.513998697883,0.4842940419985098 +24,1613.805663465247,0.16767160496480416,0.0,454.22237784965444,0.48080974999902537 +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.47648141700119595 +26,1601.7627822219915,0.16642037052426975,0.0,450.83278375024673,0.477221749999444 +27,1637.621652666843,0.17014604487021473,0.0,460.9256355534117,0.4879053750009916 +28,1623.030399742511,0.16863003903899415,0.0,456.81877575663515,0.4835581250008545 +29,1635.1585880735686,0.16989013673775752,0.0,460.2323804225851,0.48717154099722393 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..024af2fce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,402.8566838230884,0.0,0.0,64.17794938679597,0.06434416699994472 +1,406.5856091369493,0.0,0.0,64.77199384396874,0.06493975000194041 +2,419.6410268736935,0.0,0.0,66.85181521066646,0.06702495799981989 +3,416.5238481001115,0.0,0.0,66.35522635017634,0.06652708299952792 +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256 +5,408.52624583201094,0.0,0.0,65.08115114132792,0.06524970800091978 +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631 +7,398.43356758920197,0.0,0.0,63.47331535392751,0.06363770800089696 +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156 +9,399.1061018410703,0.0,0.0,63.58045486758207,0.06374512500042329 +10,407.1626636492206,0.0,0.0,64.8639227526082,0.06503191700176103 +11,403.12407719482997,0.0,0.0,64.22054706226494,0.06438687500121887 +12,405.14375858076954,0.0,0.0,64.54229674389913,0.06470945799810579 +13,411.26150564720484,0.0,0.0,65.51689758175769,0.06568658300238894 +14,387.70201403694654,0.0,0.0,61.76370216299734,0.06192366699906415 +15,407.9614565575172,0.0,0.0,64.99117617273937,0.06515950000175508 +16,401.69709645656513,0.0,0.0,63.993218830479876,0.06415895800091675 +17,395.9197957340157,0.0,0.0,63.0728535287417,0.06323620900002425 +18,418.61084115270194,0.0,0.0,66.68769926145752,0.06686041699867928 +19,431.31721002849616,0.0,0.0,68.71191464957502,0.06888987500133226 +20,431.41112451451176,0.0,0.0,68.72687589850602,0.06890487499913434 +21,433.23750482741,0.0,0.0,69.01783133747224,0.06919658399783657 +22,422.7931668797661,0.0,0.0,67.35397364539821,0.06752841699926648 +23,418.71727759903746,0.0,0.0,66.70465534817552,0.06687741700079641 +24,414.85347853863453,0.0,0.0,66.08912453908962,0.06626029199833283 +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213 +26,419.92251367752954,0.0,0.0,66.89665807060912,0.06706991700048093 +27,411.78142883652066,0.0,0.0,65.5997250622708,0.06576962500184891 +28,414.074507863208,0.0,0.0,65.96502894234565,0.06613587500032736 +29,411.9209982982526,0.0,0.0,65.62195947517905,0.06579191700075171 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b9d7ee13d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..77d501711 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b1560a9b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c06e9d2d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..dcf3f0721 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7dd8fc9a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f0f3d6742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1545e0035 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1ae84dc2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..13484f70c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bdc419d45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9fa67f605 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..772f2b5bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d742609e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0b5155f20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e8379fed4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..acaba53ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d81597cbc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.47739254199768766 +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012 +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.47687212500022724 +3,1591.7771157613092,0.16538287712589447,0.0,448.02221413404817,0.4742466669995338 +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.47639087500283495 +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756 +6,1599.923316021195,0.16622925318148896,0.0,450.3150468686536,0.476673707998998 +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078 +8,1599.6205389249687,0.16619779516716907,0.0,450.229827107861,0.4765834999998333 +9,1592.539445588393,0.16546208187062514,0.0,448.2367797875235,0.47447379200093565 +10,1607.4481600048061,0.16701107139938556,0.0,452.43299242093553,0.4789156250008091 +11,1594.297518282129,0.16564474256941744,0.0,448.73160762055187,0.4749975839986291 +12,1602.677410191569,0.16651539878143637,0.0,451.0902152989111,0.4774942500007455 +13,1605.1480233851848,0.16677209120035585,0.0,451.78559506176396,0.4782303329993738 +14,1601.3632290921896,0.16637885764817864,0.0,450.7203253689159,0.47710270899915486 +15,1595.800220143318,0.16580087068233296,0.0,449.15455867843997,0.47544529199876706 +16,1611.70677521292,0.16745353412153188,0.0,453.63162393522987,0.48018441699969117 +17,1598.0024596834728,0.16602967954487083,0.0,449.7744018870551,0.4761014169998816 +18,1595.2047318950506,0.1657390004878076,0.0,448.98695232147077,0.4752678750010091 +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831 +20,1594.7083993859605,0.16568743240233152,0.0,448.8472543779161,0.4751200000027893 +21,1594.7913334840082,0.16569604911104732,0.0,448.8705970418272,0.47514470900205197 +22,1611.819356688242,0.16746523114124365,0.0,453.66331116162905,0.4802179590005835 +23,1625.5004557649997,0.16888667356880138,0.0,457.513998697883,0.4842940419985098 +24,1613.805663465247,0.16767160496480416,0.0,454.22237784965444,0.48080974999902537 +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.47648141700119595 +26,1601.7627822219915,0.16642037052426975,0.0,450.83278375024673,0.477221749999444 +27,1637.621652666843,0.17014604487021473,0.0,460.9256355534117,0.4879053750009916 +28,1623.030399742511,0.16863003903899415,0.0,456.81877575663515,0.4835581250008545 +29,1635.1585880735686,0.16989013673775752,0.0,460.2323804225851,0.48717154099722393 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..024af2fce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,402.8566838230884,0.0,0.0,64.17794938679597,0.06434416699994472 +1,406.5856091369493,0.0,0.0,64.77199384396874,0.06493975000194041 +2,419.6410268736935,0.0,0.0,66.85181521066646,0.06702495799981989 +3,416.5238481001115,0.0,0.0,66.35522635017634,0.06652708299952792 +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256 +5,408.52624583201094,0.0,0.0,65.08115114132792,0.06524970800091978 +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631 +7,398.43356758920197,0.0,0.0,63.47331535392751,0.06363770800089696 +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156 +9,399.1061018410703,0.0,0.0,63.58045486758207,0.06374512500042329 +10,407.1626636492206,0.0,0.0,64.8639227526082,0.06503191700176103 +11,403.12407719482997,0.0,0.0,64.22054706226494,0.06438687500121887 +12,405.14375858076954,0.0,0.0,64.54229674389913,0.06470945799810579 +13,411.26150564720484,0.0,0.0,65.51689758175769,0.06568658300238894 +14,387.70201403694654,0.0,0.0,61.76370216299734,0.06192366699906415 +15,407.9614565575172,0.0,0.0,64.99117617273937,0.06515950000175508 +16,401.69709645656513,0.0,0.0,63.993218830479876,0.06415895800091675 +17,395.9197957340157,0.0,0.0,63.0728535287417,0.06323620900002425 +18,418.61084115270194,0.0,0.0,66.68769926145752,0.06686041699867928 +19,431.31721002849616,0.0,0.0,68.71191464957502,0.06888987500133226 +20,431.41112451451176,0.0,0.0,68.72687589850602,0.06890487499913434 +21,433.23750482741,0.0,0.0,69.01783133747224,0.06919658399783657 +22,422.7931668797661,0.0,0.0,67.35397364539821,0.06752841699926648 +23,418.71727759903746,0.0,0.0,66.70465534817552,0.06687741700079641 +24,414.85347853863453,0.0,0.0,66.08912453908962,0.06626029199833283 +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213 +26,419.92251367752954,0.0,0.0,66.89665807060912,0.06706991700048093 +27,411.78142883652066,0.0,0.0,65.5997250622708,0.06576962500184891 +28,414.074507863208,0.0,0.0,65.96502894234565,0.06613587500032736 +29,411.9209982982526,0.0,0.0,65.62195947517905,0.06579191700075171 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b9d7ee13d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..77d501711 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b1560a9b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c06e9d2d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..dcf3f0721 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7dd8fc9a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f0f3d6742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1545e0035 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1ae84dc2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..13484f70c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bdc419d45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9fa67f605 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..772f2b5bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d742609e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0b5155f20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e8379fed4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..acaba53ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f3d34e726 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1390.0603241936417,0.16748925515020863,0.0,445.0524487851344,0.4788548329997866 +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209 +2,1377.5902576361257,0.16598672887631946,0.0,441.05993597015606,0.47455908299889416 +3,1377.444387682713,0.16596915291258563,0.0,441.01323311932254,0.47450883299825364 +4,1378.2936033553765,0.16607147545068035,0.0,441.2851245675478,0.47480137499951525 +5,1380.196807079257,0.16630079368138145,0.0,441.89446897016677,0.47545700000046054 +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.47743624999930034 +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.47524483400047757 +8,1386.7012048240163,0.16708451271465602,0.0,443.976967185384,0.47769766700002947 +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507 +10,1384.5611750681394,0.16682665916429373,0.0,443.29179873136127,0.47696045900011086 +11,1382.8663723350817,0.16662245130191117,0.0,442.7491775994384,0.4763766249998298 +12,1379.409399632061,0.16620591845579932,0.0,441.64236652075,0.4751857500014012 +13,1383.6672056307755,0.16671894421654282,0.0,443.0055785721975,0.4766525000013644 +14,1383.0517940967477,0.16664479288825068,0.0,442.8085436626597,0.4764405000023544 +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795 +16,1380.5787802421619,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149 +17,1385.9641130782543,0.16699570006003497,0.0,443.74097419952494,0.47744375000183936 +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388 +19,1390.5397849329893,0.16754702568052982,0.0,445.20595663830386,0.4790199999988545 +20,1385.4222432134397,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751 +21,1384.7365557380076,0.16684779089307752,0.0,443.3479499610856,0.47702087499783374 +22,1380.1324588315385,0.16629304031996753,0.0,441.8738667382177,0.47543483299887157 +23,1382.8147242197429,0.16661622818754884,0.0,442.7326415399548,0.4763588330024504 +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962 +25,1381.048562774172,0.16640342226837748,0.0,442.16717365153266,0.47575041700110887 +26,1385.5867380781835,0.16695022990555747,0.0,443.62015090504724,0.47731375000148546 +27,1384.5037182668846,0.16681973615766013,0.0,443.27340291813454,0.47694066599797225 +28,1386.1163925964613,0.16701404831631939,0.0,443.7897291861239,0.47749620800095727 +29,1382.6472045469038,0.16659604363531144,0.0,442.6790071477496,0.4763011249997362 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..7570f867a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,277.0817190299852,0.06401333464941324,0.0,58.60420787153782,0.06355133300166926 +1,288.5771340743512,0.06666908491956826,0.0,61.03554724386474,0.06618791599976248 +2,284.2115382937321,0.06566051479582583,0.0,60.112201295578544,0.06518662500093342 +3,297.3390372598521,0.06869332037884997,0.0,62.88873480683714,0.06819754200114403 +4,291.41856385470135,0.06732553167487614,0.0,61.636524248349104,0.06683962500028429 +5,291.05396160811534,0.06724129874277818,0.0,61.55940899901342,0.06675600000016857 +6,289.502541450472,0.06688287893045443,0.0,61.23127566083103,0.06640016700112028 +7,289.43169196955876,0.06686651079347551,0.0,61.21629063142683,0.06638391699743806 +8,290.80853034409404,0.06718459751509623,0.0,61.507499025070594,0.06669970800066949 +9,287.9576568837414,0.06652596901553456,0.0,60.90452463372189,0.06604583300213562 +10,289.9919433911143,0.06699594395081768,0.0,61.33478668697358,0.06651241600047797 +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527 +12,291.42765003308125,0.06732763082663307,0.0,61.63844602178257,0.06684170900189201 +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.06702700000096229 +14,300.5995644999648,0.06944658992721839,0.0,63.57835307836844,0.06894537499829312 +15,291.6814349928997,0.06738626198288084,0.0,61.692122845327404,0.06689991700113751 +16,286.80898867365397,0.06626059574301812,0.0,60.66157540273309,0.06578237500070827 +17,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.06614558299770579 +18,288.819116611153,0.06672498939844126,0.0,61.086727794272974,0.0662434170008055 +19,289.1462928838217,0.06680057592325786,0.0,61.15592725774257,0.066318457997113 +20,289.21804924415596,0.06681715357379138,0.0,61.171104096806005,0.06633491600223351 +21,286.12120386579073,0.06610169894092428,0.0,60.51610538041618,0.06562462500005495 +22,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.06585004099906655 +23,293.57075258583023,0.06782274519714225,0.0,62.09172322798373,0.06733324999731849 +24,290.89918277237905,0.06720554066590714,0.0,61.52667247963799,0.06672049999906449 +25,268.12761977449935,0.061944696725077825,0.0,56.71036985180875,0.061497624999901745 +26,293.55167774327595,0.06781833839511978,0.0,62.08768880073215,0.06732887500038487 +27,292.7548937535296,0.06763425984833767,0.0,61.91916489115313,0.06714612499854411 +28,291.560990905484,0.06735843615697909,0.0,61.66664830171436,0.0668722920017899 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..891992e78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5a3f5637d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1cbe096c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..52dbbbd24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ae7c9f2c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b484fd0bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8a34fd201 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..574628d6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..54d4c9840 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..943aa2aa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e6dd9976d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f92c5e827 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..47b3df79e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4eb833da6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..78fbcbc78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..55446a441 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..8881c9447 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f3d34e726 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1390.0603241936417,0.16748925515020863,0.0,445.0524487851344,0.4788548329997866 +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209 +2,1377.5902576361257,0.16598672887631946,0.0,441.05993597015606,0.47455908299889416 +3,1377.444387682713,0.16596915291258563,0.0,441.01323311932254,0.47450883299825364 +4,1378.2936033553765,0.16607147545068035,0.0,441.2851245675478,0.47480137499951525 +5,1380.196807079257,0.16630079368138145,0.0,441.89446897016677,0.47545700000046054 +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.47743624999930034 +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.47524483400047757 +8,1386.7012048240163,0.16708451271465602,0.0,443.976967185384,0.47769766700002947 +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507 +10,1384.5611750681394,0.16682665916429373,0.0,443.29179873136127,0.47696045900011086 +11,1382.8663723350817,0.16662245130191117,0.0,442.7491775994384,0.4763766249998298 +12,1379.409399632061,0.16620591845579932,0.0,441.64236652075,0.4751857500014012 +13,1383.6672056307755,0.16671894421654282,0.0,443.0055785721975,0.4766525000013644 +14,1383.0517940967477,0.16664479288825068,0.0,442.8085436626597,0.4764405000023544 +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795 +16,1380.5787802421619,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149 +17,1385.9641130782543,0.16699570006003497,0.0,443.74097419952494,0.47744375000183936 +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388 +19,1390.5397849329893,0.16754702568052982,0.0,445.20595663830386,0.4790199999988545 +20,1385.4222432134397,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751 +21,1384.7365557380076,0.16684779089307752,0.0,443.3479499610856,0.47702087499783374 +22,1380.1324588315385,0.16629304031996753,0.0,441.8738667382177,0.47543483299887157 +23,1382.8147242197429,0.16661622818754884,0.0,442.7326415399548,0.4763588330024504 +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962 +25,1381.048562774172,0.16640342226837748,0.0,442.16717365153266,0.47575041700110887 +26,1385.5867380781835,0.16695022990555747,0.0,443.62015090504724,0.47731375000148546 +27,1384.5037182668846,0.16681973615766013,0.0,443.27340291813454,0.47694066599797225 +28,1386.1163925964613,0.16701404831631939,0.0,443.7897291861239,0.47749620800095727 +29,1382.6472045469038,0.16659604363531144,0.0,442.6790071477496,0.4763011249997362 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..733232533 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,277.0817190299852,0.06401333464941324,0.0,58.60420787153782,0.06355133300166926 +1,288.5771340743512,0.06666908491956826,0.0,61.03554724386474,0.06618791599976248 +2,284.2115382937321,0.06566051479582583,0.0,60.112201295578544,0.06518662500093342 +3,297.3390372598521,0.06869332037884997,0.0,62.88873480683714,0.06819754200114403 +4,291.41856385470135,0.06732553167487614,0.0,61.636524248349104,0.06683962500028429 +5,291.05396160811534,0.06724129874277818,0.0,61.55940899901342,0.06675600000016857 +6,289.502541450472,0.06688287893045443,0.0,61.23127566083103,0.06640016700112028 +7,289.43169196955876,0.06686651079347551,0.0,61.21629063142683,0.06638391699743806 +8,290.80853034409404,0.06718459751509623,0.0,61.507499025070594,0.06669970800066949 +9,287.9576568837414,0.06652596901553456,0.0,60.90452463372189,0.06604583300213562 +10,289.9919433911143,0.06699594395081768,0.0,61.33478668697358,0.06651241600047797 +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527 +12,291.42765003308125,0.06732763082663307,0.0,61.63844602178257,0.06684170900189201 +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.06702700000096229 +14,300.5995644999648,0.06944658992721839,0.0,63.57835307836844,0.06894537499829312 +15,266.9962083179432,0.06168331022708635,0.0,56.471070512897555,0.06123812499936321 +16,291.6814349928997,0.06738626198288084,0.0,61.692122845327404,0.06689991700113751 +17,286.80898867365397,0.06626059574301812,0.0,60.66157540273309,0.06578237500070827 +18,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.06614558299770579 +19,288.819116611153,0.06672498939844126,0.0,61.086727794272974,0.0662434170008055 +20,289.1462928838217,0.06680057592325786,0.0,61.15592725774257,0.066318457997113 +21,289.21804924415596,0.06681715357379138,0.0,61.171104096806005,0.06633491600223351 +22,286.12120386579073,0.06610169894092428,0.0,60.51610538041618,0.06562462500005495 +23,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.06585004099906655 +24,293.57075258583023,0.06782274519714225,0.0,62.09172322798373,0.06733324999731849 +25,290.89918277237905,0.06720554066590714,0.0,61.52667247963799,0.06672049999906449 +26,268.12761977449935,0.061944696725077825,0.0,56.71036985180875,0.061497624999901745 +27,293.55167774327595,0.06781833839511978,0.0,62.08768880073215,0.06732887500038487 +28,292.7548937535296,0.06763425984833767,0.0,61.91916489115313,0.06714612499854411 +29,291.560990905484,0.06735843615697909,0.0,61.66664830171436,0.0668722920017899 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..417ba9364 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b7f734f89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1fe351c41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3360e009f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..760b4f5ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..06db62d4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5307ac1d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ce924924a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2fc3742e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e54554d55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..17d013cfa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fb6d4f9a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..08d121ebb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..120ef0f58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7e4929c9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5eb1c9753 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a521802e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4da3d4e5c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1359.9830388133907,0.09944304173832924,0.0,439.27306303877975,0.4735101670012227 +1,1367.2100374254069,0.09997148562630936,0.0,441.6073758399505,0.4760264169999573 +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355 +3,1360.6509298042943,0.09949187845892762,0.0,439.48879111256963,0.4737427090003621 +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.47586445799970534 +5,1368.671233865174,0.10007832947244617,0.0,442.0793407229522,0.47653516699938336 +6,1378.0276760639613,0.10076247996957893,0.0,445.10146151895333,0.479792833000829 +7,1372.258883992279,0.10034066130391042,0.0,443.23814786647364,0.4777842919975228 +8,1369.9006263898755,0.10016822363190081,0.0,442.4764331899832,0.47696320899922284 +9,1362.872281559501,0.09965430546647419,0.0,440.20628534723863,0.47451612499935436 +10,1370.0406398939213,0.10017846153070498,0.0,442.52165740163406,0.47701195800254936 +11,1363.8435384826207,0.09972532454538029,0.0,440.52000029179317,0.47485429100197507 +12,1375.0565775890122,0.10054523088542061,0.0,444.14179989786464,0.47875837500032503 +13,1372.5848708209521,0.1003644977201632,0.0,443.34344126253427,0.47789779199956683 +14,1360.2762345172491,0.09946448044144846,0.0,439.36776493669163,0.47361224999986007 +15,1368.4352395101687,0.1000610733774619,0.0,442.003114799375,0.4764529999993101 +16,1368.283016589219,0.10004994271638043,0.0,441.95394695915786,0.4763999999995576 +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.47631216700028745 +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.47797383299985086 +19,1366.9728453928537,0.09995414195618996,0.0,441.53076306780974,0.47594383300020127 +20,1372.0063748964212,0.10032219763793662,0.0,443.156587699312,0.47769637500095996 +21,1367.3190577628875,0.09997945728011753,0.0,441.6425892920392,0.4760643750014424 +22,1370.7449121584284,0.10022995847897254,0.0,442.7491365877813,0.4772571670000616 +23,1359.658367419681,0.09941930150772749,0.0,439.1681945268015,0.47339712499888265 +24,1367.1400292419053,0.09996636657223641,0.0,441.58476327175896,0.47600204199989093 +25,1366.998694566532,0.09995603206833373,0.0,441.5391123231862,0.4759528329996101 +26,1365.0601270460802,0.09981428246900265,0.0,440.91295709307434,0.47527787500075647 +27,1366.0171439317241,0.0998842603050398,0.0,441.2220725207958,0.47561108299851185 +28,1365.7311285567903,0.09986334663328386,0.0,441.12968986142596,0.47551150000072084 +29,1365.9570675778948,0.09987986747425379,0.0,441.2026679229371,0.47559016599916504 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..be73b7615 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,304.0021500506418,0.0,0.0,61.696619386583876,0.0663851249992149 +1,305.42786409538843,0.0,0.0,61.9859651585075,0.06669645899819443 +2,290.13486062560406,0.0,0.0,58.882281141154934,0.06335691700223833 +3,303.37572867394005,0.0,0.0,61.56948843949174,0.06624833300156752 +4,308.55938487552186,0.0,0.0,62.621500945477706,0.06738029099869891 +5,304.0319159755279,0.0,0.0,61.70266032063018,0.06639162500141538 +6,301.5311990280158,0.0,0.0,61.195144891286894,0.06584554199798731 +7,303.576648579458,0.0,0.0,61.61026472655373,0.06629220799732138 +8,304.6514683093002,0.0,0.0,61.82839720940037,0.06652691700219293 +9,305.5965360870756,0.0,0.0,62.020196796904024,0.06673329199838918 +10,305.52402631491094,0.0,0.0,62.00548108580032,0.06671745799758355 +11,300.96240445270587,0.0,0.0,61.079709186584786,0.06572133399822633 +12,320.16981350821686,0.0,0.0,64.97781387335388,0.06991566700162366 +13,301.8660655871914,0.0,0.0,61.26310537986669,0.06591866700182436 +14,287.22066306535396,0.0,0.0,58.29085066060698,0.06272054199871491 +15,292.31368435492743,0.0,0.0,59.324468995142574,0.06383270799778984 +16,309.2938015925228,0.0,0.0,62.77054932770923,0.06754066600115038 +17,303.66251638073777,0.0,0.0,61.6276914225565,0.06631095899865613 +18,306.26130972564454,0.0,0.0,62.155111257706984,0.06687845900160028 +19,305.7980284517102,0.0,0.0,62.061089263381945,0.06677729200237081 +20,303.91189522869655,0.0,0.0,61.678302353640426,0.06636541600164492 +21,304.868796110589,0.0,0.0,61.87250344560959,0.06657437499961816 +22,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686 +23,300.68706516189695,0.0,0.0,61.02382963631062,0.06566120799834607 +24,307.1498955536229,0.0,0.0,62.33544794812829,0.06707250000181375 +25,305.11646226256136,0.0,0.0,61.92276678851894,0.06662845800019568 +26,314.2194880610785,0.0,0.0,63.77020739992188,0.06861629099876154 +27,310.6552121120229,0.0,0.0,63.04684482968675,0.06783795800220105 +28,300.9196606054273,0.0,0.0,61.07103440952738,0.06571199999962118 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1979538ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..179260a47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..703fc7cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1a8b5b737 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4bd1bdec3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d6c205b05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f1acdc837 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..810da510f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a0eac7b60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..224505ad9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1559a06c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..312cfd308 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b680dbf06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..662b1bd50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..089918286 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c5ea6ba09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..499ed4c1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4da3d4e5c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1359.9830388133907,0.09944304173832924,0.0,439.27306303877975,0.4735101670012227 +1,1367.2100374254069,0.09997148562630936,0.0,441.6073758399505,0.4760264169999573 +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355 +3,1360.6509298042943,0.09949187845892762,0.0,439.48879111256963,0.4737427090003621 +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.47586445799970534 +5,1368.671233865174,0.10007832947244617,0.0,442.0793407229522,0.47653516699938336 +6,1378.0276760639613,0.10076247996957893,0.0,445.10146151895333,0.479792833000829 +7,1372.258883992279,0.10034066130391042,0.0,443.23814786647364,0.4777842919975228 +8,1369.9006263898755,0.10016822363190081,0.0,442.4764331899832,0.47696320899922284 +9,1362.872281559501,0.09965430546647419,0.0,440.20628534723863,0.47451612499935436 +10,1370.0406398939213,0.10017846153070498,0.0,442.52165740163406,0.47701195800254936 +11,1363.8435384826207,0.09972532454538029,0.0,440.52000029179317,0.47485429100197507 +12,1375.0565775890122,0.10054523088542061,0.0,444.14179989786464,0.47875837500032503 +13,1372.5848708209521,0.1003644977201632,0.0,443.34344126253427,0.47789779199956683 +14,1360.2762345172491,0.09946448044144846,0.0,439.36776493669163,0.47361224999986007 +15,1368.4352395101687,0.1000610733774619,0.0,442.003114799375,0.4764529999993101 +16,1368.283016589219,0.10004994271638043,0.0,441.95394695915786,0.4763999999995576 +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.47631216700028745 +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.47797383299985086 +19,1366.9728453928537,0.09995414195618996,0.0,441.53076306780974,0.47594383300020127 +20,1372.0063748964212,0.10032219763793662,0.0,443.156587699312,0.47769637500095996 +21,1367.3190577628875,0.09997945728011753,0.0,441.6425892920392,0.4760643750014424 +22,1370.7449121584284,0.10022995847897254,0.0,442.7491365877813,0.4772571670000616 +23,1359.658367419681,0.09941930150772749,0.0,439.1681945268015,0.47339712499888265 +24,1367.1400292419053,0.09996636657223641,0.0,441.58476327175896,0.47600204199989093 +25,1366.998694566532,0.09995603206833373,0.0,441.5391123231862,0.4759528329996101 +26,1365.0601270460802,0.09981428246900265,0.0,440.91295709307434,0.47527787500075647 +27,1366.0171439317241,0.0998842603050398,0.0,441.2220725207958,0.47561108299851185 +28,1365.7311285567903,0.09986334663328386,0.0,441.12968986142596,0.47551150000072084 +29,1365.9570675778948,0.09987986747425379,0.0,441.2026679229371,0.47559016599916504 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f43537295 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,304.0021500506418,0.0,0.0,61.696619386583876,0.0663851249992149 +1,305.42786409538843,0.0,0.0,61.9859651585075,0.06669645899819443 +2,290.13486062560406,0.0,0.0,58.882281141154934,0.06335691700223833 +3,303.37572867394005,0.0,0.0,61.56948843949174,0.06624833300156752 +4,308.55938487552186,0.0,0.0,62.621500945477706,0.06738029099869891 +5,272.2552769884333,0.0,0.0,55.253655928243255,0.05945254200196359 +6,304.0319159755279,0.0,0.0,61.70266032063018,0.06639162500141538 +7,301.5311990280158,0.0,0.0,61.195144891286894,0.06584554199798731 +8,303.576648579458,0.0,0.0,61.61026472655373,0.06629220799732138 +9,304.6514683093002,0.0,0.0,61.82839720940037,0.06652691700219293 +10,305.5965360870756,0.0,0.0,62.020196796904024,0.06673329199838918 +11,305.52402631491094,0.0,0.0,62.00548108580032,0.06671745799758355 +12,300.96240445270587,0.0,0.0,61.079709186584786,0.06572133399822633 +13,320.16981350821686,0.0,0.0,64.97781387335388,0.06991566700162366 +14,301.8660655871914,0.0,0.0,61.26310537986669,0.06591866700182436 +15,287.22066306535396,0.0,0.0,58.29085066060698,0.06272054199871491 +16,292.31368435492743,0.0,0.0,59.324468995142574,0.06383270799778984 +17,309.2938015925228,0.0,0.0,62.77054932770923,0.06754066600115038 +18,303.66251638073777,0.0,0.0,61.6276914225565,0.06631095899865613 +19,306.26130972564454,0.0,0.0,62.155111257706984,0.06687845900160028 +20,305.7980284517102,0.0,0.0,62.061089263381945,0.06677729200237081 +21,303.91189522869655,0.0,0.0,61.678302353640426,0.06636541600164492 +22,304.868796110589,0.0,0.0,61.87250344560959,0.06657437499961816 +23,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686 +24,300.68706516189695,0.0,0.0,61.02382963631062,0.06566120799834607 +25,307.1498955536229,0.0,0.0,62.33544794812829,0.06707250000181375 +26,305.11646226256136,0.0,0.0,61.92276678851894,0.06662845800019568 +27,314.2194880610785,0.0,0.0,63.77020739992188,0.06861629099876154 +28,310.6552121120229,0.0,0.0,63.04684482968675,0.06783795800220105 +29,300.9196606054273,0.0,0.0,61.07103440952738,0.06571199999962118 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..115233b03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7a068bd8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a1cd42dd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..567659b68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e2a8b7f79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6761582fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..12e97cb54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..810da510f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..36ae4275c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ebb0acd9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a0ea0b5dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7c2bfdf50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d6215ebef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b01bad807 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..180091357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c5ea6ba09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..98ef390d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..0abe54b07 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.47688983300031396 +1,1810.3407727008255,0.3624635693430848,0.0,450.5751679270311,0.475776458002656 +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.47495933400205104 +3,1803.924867023314,0.36117898684485716,0.0,448.978315101507,0.47409029099799227 +4,1814.9485005797915,0.3633861213392375,0.0,451.7219839266121,0.47698741700151004 +5,1838.3950575707254,0.36808055393662137,0.0,457.55759041176003,0.48314941699936753 +6,1810.9882621843371,0.3625932086645014,0.0,450.73632138894476,0.4759466249997786 +7,1809.5280842906282,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517 +8,1816.3105392978794,0.36365882657948073,0.0,452.06098133162,0.47734537499854923 +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575 +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.47733024999979534 +11,1812.3434823164148,0.3628645486982265,0.0,451.07362171814077,0.476302791001217 +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062 +13,1890.5448082241378,0.3785218946207775,0.0,470.53712609495557,0.4968549160003022 +14,1863.8205427908626,0.3731712044175371,0.0,463.88573174594563,0.4898314999991271 +15,1888.8672721415512,0.37818602099667026,0.0,470.11960464622445,0.49641404200156103 +16,1882.4233044209066,0.37689581996050187,0.0,468.51576746726386,0.49472049999894807 +17,1887.059090550134,0.37782398973519243,0.0,469.6695668762747,0.49593883299894514 +18,1881.9700309632926,0.37680506626494753,0.0,468.40295237335386,0.49460137500136625 +19,1886.6865178361622,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411 +20,1849.6913781590397,0.37034228539769637,0.0,460.36912822982725,0.48611820800215355 +21,1814.6577320581714,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264 +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.47505945800003246 +23,1807.7503428865198,0.36194491757829844,0.0,449.9304366332412,0.47509566599910613 +24,1811.4627790990737,0.3626882156914782,0.0,450.85442376047934,0.47607133299970883 +25,1819.489476926938,0.36429530844915037,0.0,452.85218615760743,0.47818083300080616 +26,1813.531285204246,0.36310236871581186,0.0,451.369253620001,0.4766149580027559 +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.47669404200132703 +28,1801.3705887684314,0.36066757328818244,0.0,448.34258155841883,0.47341900000174064 +29,1829.2969259130637,0.36625894039031126,0.0,455.2931591724651,0.48075833300026716 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..b20e55b69 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,294.3279990372017,0.06661265113436726,0.0,61.28363904361788,0.06620474999726866 +1,293.0398507223221,0.06632111592674485,0.0,61.01542665260526,0.06591499999922235 +2,295.58817487391934,0.06689785557857177,0.0,61.54602713228603,0.06648820799819077 +3,295.0835897351759,0.06678365728984405,0.0,61.44096470665652,0.0663747090002289 +4,294.112381481635,0.06656385232129343,0.0,61.238744135589954,0.06615625000267755 +5,294.789060556393,0.06671699910747833,0.0,61.37963917888006,0.0663084589978098 +6,294.5386151968499,0.06666031802576664,0.0,61.32749258370531,0.06625212500148336 +7,292.0345615545926,0.06609359772651184,0.0,60.806109908390894,0.06568887500179699 +8,295.10748548573775,0.06678906540358442,0.0,61.44594017129767,0.06638008399750106 +9,298.56736520414785,0.06757210935931829,0.0,62.166340610572824,0.06715833300040686 +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.06669399999736925 +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.06642908299909323 +12,294.3600482591372,0.06661990455112306,0.0,61.290312187033216,0.0662119589978829 +13,292.5965765500129,0.06622079360643045,0.0,60.92313011791601,0.06581529200047953 +14,296.05627397750055,0.06700379630587316,0.0,61.64349260140331,0.06659349999972619 +15,277.83269848101855,0.06287941574765611,0.0,57.849062487843625,0.06249437499718624 +16,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.06743495800037635 +17,295.0785838430391,0.06678252435058031,0.0,61.43992240253389,0.06637358299849438 +18,293.1674829950254,0.06635000180944334,0.0,61.042001664687874,0.06594370899983915 +19,292.4674638570015,0.06619157267330576,0.0,60.8962468594413,0.0657862500011106 +20,294.72663371914854,0.06670287059390032,0.0,61.36664094638829,0.06629441699988092 +21,294.5726961110385,0.06666803125744902,0.0,61.3345887568531,0.06625979100135737 +22,292.5643406218039,0.06621349793409617,0.0,60.91641809936848,0.06580804100303794 +23,295.7811948568304,0.06694154008302147,0.0,61.58621687637975,0.06653162500151666 +24,298.4484465539857,0.06754519555369146,0.0,62.14157990939614,0.06713158400089014 +25,300.4471681677118,0.06799754852726306,0.0,62.55774464508201,0.06758116700075334 +26,268.4016522482285,0.06074497052126933,0.0,55.88537287956778,0.06037300000025425 +27,293.7845093668818,0.06648964792732416,0.0,61.17047609313823,0.06608249999771942 +28,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5b3167262 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2733e2e1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..72b1c4030 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2c46054d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f86efe452 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ddace7b7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c78a71c89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a911100d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..77eeba7d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9a8ff2e59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ca6a674fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5473dfa4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4a6f1a0b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6d67254c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2c2c1de87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..da362b222 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2bd2fd247 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..0abe54b07 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.47688983300031396 +1,1810.3407727008255,0.3624635693430848,0.0,450.5751679270311,0.475776458002656 +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.47495933400205104 +3,1803.924867023314,0.36117898684485716,0.0,448.978315101507,0.47409029099799227 +4,1814.9485005797915,0.3633861213392375,0.0,451.7219839266121,0.47698741700151004 +5,1838.3950575707254,0.36808055393662137,0.0,457.55759041176003,0.48314941699936753 +6,1810.9882621843371,0.3625932086645014,0.0,450.73632138894476,0.4759466249997786 +7,1809.5280842906282,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517 +8,1816.3105392978794,0.36365882657948073,0.0,452.06098133162,0.47734537499854923 +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575 +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.47733024999979534 +11,1812.3434823164148,0.3628645486982265,0.0,451.07362171814077,0.476302791001217 +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062 +13,1890.5448082241378,0.3785218946207775,0.0,470.53712609495557,0.4968549160003022 +14,1863.8205427908626,0.3731712044175371,0.0,463.88573174594563,0.4898314999991271 +15,1888.8672721415512,0.37818602099667026,0.0,470.11960464622445,0.49641404200156103 +16,1882.4233044209066,0.37689581996050187,0.0,468.51576746726386,0.49472049999894807 +17,1887.059090550134,0.37782398973519243,0.0,469.6695668762747,0.49593883299894514 +18,1881.9700309632926,0.37680506626494753,0.0,468.40295237335386,0.49460137500136625 +19,1886.6865178361622,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411 +20,1849.6913781590397,0.37034228539769637,0.0,460.36912822982725,0.48611820800215355 +21,1814.6577320581714,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264 +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.47505945800003246 +23,1807.7503428865198,0.36194491757829844,0.0,449.9304366332412,0.47509566599910613 +24,1811.4627790990737,0.3626882156914782,0.0,450.85442376047934,0.47607133299970883 +25,1819.489476926938,0.36429530844915037,0.0,452.85218615760743,0.47818083300080616 +26,1813.531285204246,0.36310236871581186,0.0,451.369253620001,0.4766149580027559 +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.47669404200132703 +28,1801.3705887684314,0.36066757328818244,0.0,448.34258155841883,0.47341900000174064 +29,1829.2969259130637,0.36625894039031126,0.0,455.2931591724651,0.48075833300026716 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d94a8be4f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,294.3279990372017,0.06661265113436726,0.0,61.28363904361788,0.06620474999726866 +1,293.0398507223221,0.06632111592674485,0.0,61.01542665260526,0.06591499999922235 +2,295.58817487391934,0.06689785557857177,0.0,61.54602713228603,0.06648820799819077 +3,295.0835897351759,0.06678365728984405,0.0,61.44096470665652,0.0663747090002289 +4,294.112381481635,0.06656385232129343,0.0,61.238744135589954,0.06615625000267755 +5,294.789060556393,0.06671699910747833,0.0,61.37963917888006,0.0663084589978098 +6,294.5386151968499,0.06666031802576664,0.0,61.32749258370531,0.06625212500148336 +7,292.0345615545926,0.06609359772651184,0.0,60.806109908390894,0.06568887500179699 +8,295.10748548573775,0.06678906540358442,0.0,61.44594017129767,0.06638008399750106 +9,298.56736520414785,0.06757210935931829,0.0,62.166340610572824,0.06715833300040686 +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.06669399999736925 +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.06642908299909323 +12,294.3600482591372,0.06661990455112306,0.0,61.290312187033216,0.0662119589978829 +13,292.5965765500129,0.06622079360643045,0.0,60.92313011791601,0.06581529200047953 +14,296.05627397750055,0.06700379630587316,0.0,61.64349260140331,0.06659349999972619 +15,328.7910592886891,0.07441237055305852,0.0,68.45938090881384,0.07395670800178777 +16,277.83269848101855,0.06287941574765611,0.0,57.849062487843625,0.06249437499718624 +17,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.06743495800037635 +18,295.0785838430391,0.06678252435058031,0.0,61.43992240253389,0.06637358299849438 +19,293.1674829950254,0.06635000180944334,0.0,61.042001664687874,0.06594370899983915 +20,292.4674638570015,0.06619157267330576,0.0,60.8962468594413,0.0657862500011106 +21,294.72663371914854,0.06670287059390032,0.0,61.36664094638829,0.06629441699988092 +22,294.5726961110385,0.06666803125744902,0.0,61.3345887568531,0.06625979100135737 +23,292.5643406218039,0.06621349793409617,0.0,60.91641809936848,0.06580804100303794 +24,295.7811948568304,0.06694154008302147,0.0,61.58621687637975,0.06653162500151666 +25,298.4484465539857,0.06754519555369146,0.0,62.14157990939614,0.06713158400089014 +26,300.4471681677118,0.06799754852726306,0.0,62.55774464508201,0.06758116700075334 +27,268.4016522482285,0.06074497052126933,0.0,55.88537287956778,0.06037300000025425 +28,293.7845093668818,0.06648964792732416,0.0,61.17047609313823,0.06608249999771942 +29,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c2b38da1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5d3cedb95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a93e9a367 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3b30a3558 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..14ef480a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..40ce7815c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a01ddd6b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..95367d1e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b2f8baa3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a3eca86ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..af758360c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..64b76690a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dab203a71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..229faea45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..42019684a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ba538ec61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8ef1480d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d7a65079e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1447.352143928246,0.16703429243257312,0.0,440.8703114465335,0.4786405830018339 +1,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.47637645799841266 +2,1442.1423750135714,0.16643304962649408,0.0,439.2833911841685,0.4769177079979272 +3,1442.9420675541187,0.16652533959078117,0.0,439.5269813159078,0.47718216700013727 +4,1437.1418858973352,0.16585595913414142,0.0,437.76021853865285,0.4752640420010721 +5,1439.2019047977624,0.16609369934192295,0.0,438.3877100430714,0.4759452920006879 +6,1437.0487745495407,0.16584521345061057,0.0,437.73185638154155,0.47523324999929173 +7,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179 +8,1443.399553534289,0.16657813658791565,0.0,439.6663337101445,0.47733345800224924 +9,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901 +10,1432.7160581274961,0.165345188474033,0.0,436.41209045836274,0.4738004169994383 +11,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.47860687499996857 +12,1441.7816532347647,0.16639141987706457,0.0,439.17351362352423,0.4767984169993724 +13,1448.9938602988364,0.16722375768018885,0.0,441.3703860210905,0.4791834999996354 +14,1443.4076182206436,0.16657906730763342,0.0,439.66879025176763,0.47733612500087474 +15,1440.843745147536,0.16628317889758062,0.0,438.8878223822743,0.4764882499985106 +16,1442.4172972021684,0.16646477751900385,0.0,439.3671337836588,0.47700862499914365 +17,1441.4691835270078,0.16635535874518267,0.0,439.07833387203516,0.4766950830016867 +18,1441.9596812033676,0.16641196551683413,0.0,439.22774178513197,0.47685729099976015 +19,1439.0480618235515,0.16607594481518193,0.0,438.3408487451912,0.47589441599848215 +20,1443.1939296256435,0.1665544061887644,0.0,439.60369969462477,0.4772654580010567 +21,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519 +22,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837 +23,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415 +24,1433.4711454001133,0.16543233068668362,0.0,436.6420936144327,0.47405012500166777 +25,1457.45165533711,0.16819984481674669,0.0,443.9466704093212,0.4819805000006454 +26,1442.1242317326914,0.16643095576834294,0.0,439.27786465496433,0.476911707999534 +27,1437.1829592656563,0.16586069928051428,0.0,437.7727296809894,0.47527762499885284 +28,1453.654038845132,0.16776157401559516,0.0,442.7898984567618,0.48072462500203983 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5906b3830 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,277.4237413479984,0.0,0.0,58.43349005665485,0.06327254200004973 +1,292.6972536911697,0.0,0.0,61.650534954464696,0.06675600000016857 +2,291.40709000891684,0.0,0.0,61.37878904572572,0.06646175000059884 +3,289.27526607180926,0.0,0.0,60.929765064482325,0.06597554100153502 +4,293.90739872205074,0.0,0.0,61.90542661328777,0.06703199999901699 +5,290.4961927970452,0.0,0.0,61.18692766099379,0.06625400000120862 +6,292.38028776435414,0.0,0.0,61.58377273273529,0.06668370899933507 +7,289.7393040716505,0.0,0.0,61.02750493244705,0.06608137500006706 +8,290.32610603159867,0.0,0.0,61.15110245270702,0.06621520800035796 +9,291.71309885989376,0.0,0.0,61.44324338933713,0.06653154200103018 +10,294.01993782201987,0.0,0.0,61.92913061333867,0.06705766699815285 +11,289.9026298051295,0.0,0.0,61.06190607121357,0.06611862499994459 +12,288.43671886620615,0.0,0.0,60.75314269048304,0.06578429200089886 +13,291.84774065261695,0.0,0.0,61.47160285784574,0.06656225000187987 +14,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555 +15,308.0001822067488,0.0,0.0,64.87377575176583,0.07024616700073238 +16,297.17117303800103,0.0,0.0,62.59287219062579,0.06777637499908451 +17,290.83837006338433,0.0,0.0,61.25900012239558,0.06633204099853174 +18,297.87343862204426,0.0,0.0,62.740789700579796,0.06793654200009769 +19,292.22755518415335,0.0,0.0,61.55160281943542,0.06664887499937322 +20,289.24202214867086,0.0,0.0,60.922762929615594,0.06596795899895369 +21,290.14122568247194,0.0,0.0,61.11216128642516,0.06617304199971841 +22,291.32615497134736,0.0,0.0,61.3617417782854,0.06644329099799506 +23,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187 +24,291.91150125700455,0.0,0.0,61.48503269129974,0.06657679199997801 +25,294.6469332621997,0.0,0.0,62.06119404684761,0.06720066699926974 +26,298.06946458808636,0.0,0.0,62.782078457201386,0.06798125000204891 +27,274.1955917727861,0.0,0.0,57.75354808345529,0.06253629200000432 +28,288.7392551319019,0.0,0.0,60.81686560686869,0.06585329200242995 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a432f438f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..95f520820 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..188bd1c15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9fe360b3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3f4de80d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..82c2dd949 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d15a91c4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e76dd12ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d1a29ee78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..71c1cc3ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a8281aef5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..444ff1f18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..09dce6f0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6692f226a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1b4785707 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..52c7bc38a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..07bc3e5c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..0802faa85 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1447.352143928246,0.16703429243257312,0.0,440.8703114465335,0.4786405830018339 +1,1472.891086509974,0.16998166030120876,0.0,448.64959419901044,0.4870863329997519 +2,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.47637645799841266 +3,1442.1423750135714,0.16643304962649408,0.0,439.2833911841685,0.4769177079979272 +4,1442.9420675541187,0.16652533959078117,0.0,439.5269813159078,0.47718216700013727 +5,1437.1418858973352,0.16585595913414142,0.0,437.76021853865285,0.4752640420010721 +6,1439.2019047977624,0.16609369934192295,0.0,438.3877100430714,0.4759452920006879 +7,1437.0487745495407,0.16584521345061057,0.0,437.73185638154155,0.47523324999929173 +8,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179 +9,1443.399553534289,0.16657813658791565,0.0,439.6663337101445,0.47733345800224924 +10,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901 +11,1432.7160581274961,0.165345188474033,0.0,436.41209045836274,0.4738004169994383 +12,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.47860687499996857 +13,1441.7816532347647,0.16639141987706457,0.0,439.17351362352423,0.4767984169993724 +14,1448.9938602988364,0.16722375768018885,0.0,441.3703860210905,0.4791834999996354 +15,1443.4076182206436,0.16657906730763342,0.0,439.66879025176763,0.47733612500087474 +16,1440.843745147536,0.16628317889758062,0.0,438.8878223822743,0.4764882499985106 +17,1442.4172972021684,0.16646477751900385,0.0,439.3671337836588,0.47700862499914365 +18,1441.4691835270078,0.16635535874518267,0.0,439.07833387203516,0.4766950830016867 +19,1441.9596812033676,0.16641196551683413,0.0,439.22774178513197,0.47685729099976015 +20,1439.0480618235515,0.16607594481518193,0.0,438.3408487451912,0.47589441599848215 +21,1443.1939296256435,0.1665544061887644,0.0,439.60369969462477,0.4772654580010567 +22,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519 +23,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837 +24,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415 +25,1433.4711454001133,0.16543233068668362,0.0,436.6420936144327,0.47405012500166777 +26,1457.45165533711,0.16819984481674669,0.0,443.9466704093212,0.4819805000006454 +27,1442.1242317326914,0.16643095576834294,0.0,439.27786465496433,0.476911707999534 +28,1437.1829592656563,0.16586069928051428,0.0,437.7727296809894,0.47527762499885284 +29,1453.654038845132,0.16776157401559516,0.0,442.7898984567618,0.48072462500203983 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1d0bdc61d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,277.4237413479984,0.0,0.0,58.43349005665485,0.06327254200004973 +1,292.6972536911697,0.0,0.0,61.650534954464696,0.06675600000016857 +2,291.40709000891684,0.0,0.0,61.37878904572572,0.06646175000059884 +3,289.27526607180926,0.0,0.0,60.929765064482325,0.06597554100153502 +4,293.90739872205074,0.0,0.0,61.90542661328777,0.06703199999901699 +5,254.53182670092016,0.0,0.0,53.61178856705561,0.05805154100016807 +6,290.4961927970452,0.0,0.0,61.18692766099379,0.06625400000120862 +7,292.38028776435414,0.0,0.0,61.58377273273529,0.06668370899933507 +8,289.7393040716505,0.0,0.0,61.02750493244705,0.06608137500006706 +9,290.32610603159867,0.0,0.0,61.15110245270702,0.06621520800035796 +10,291.71309885989376,0.0,0.0,61.44324338933713,0.06653154200103018 +11,294.01993782201987,0.0,0.0,61.92913061333867,0.06705766699815285 +12,289.9026298051295,0.0,0.0,61.06190607121357,0.06611862499994459 +13,288.43671886620615,0.0,0.0,60.75314269048304,0.06578429200089886 +14,291.84774065261695,0.0,0.0,61.47160285784574,0.06656225000187987 +15,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555 +16,308.0001822067488,0.0,0.0,64.87377575176583,0.07024616700073238 +17,297.17117303800103,0.0,0.0,62.59287219062579,0.06777637499908451 +18,290.83837006338433,0.0,0.0,61.25900012239558,0.06633204099853174 +19,297.87343862204426,0.0,0.0,62.740789700579796,0.06793654200009769 +20,292.22755518415335,0.0,0.0,61.55160281943542,0.06664887499937322 +21,289.24202214867086,0.0,0.0,60.922762929615594,0.06596795899895369 +22,290.14122568247194,0.0,0.0,61.11216128642516,0.06617304199971841 +23,291.32615497134736,0.0,0.0,61.3617417782854,0.06644329099799506 +24,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187 +25,291.91150125700455,0.0,0.0,61.48503269129974,0.06657679199997801 +26,294.6469332621997,0.0,0.0,62.06119404684761,0.06720066699926974 +27,298.06946458808636,0.0,0.0,62.782078457201386,0.06798125000204891 +28,274.1955917727861,0.0,0.0,57.75354808345529,0.06253629200000432 +29,288.7392551319019,0.0,0.0,60.81686560686869,0.06585329200242995 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cf2e86bf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cac8bb14f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6711abfb7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..532b3ef53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..dce672b76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cf62ee464 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ca2fed0c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d2f61140a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f4b69b907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5a7db741d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..63b788fab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3a609b07e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..49722a561 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..08707ef60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d0467d339 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..87962c8e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ec9c0f434 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..cef819619 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1393.914644610329,0.10012795550787729,0.0,442.7991952410027,0.47694120799860684 +1,1395.233719300143,0.10022270754478568,0.0,443.2182203322239,0.47739254200132564 +2,1395.0142778015193,0.10020694457917245,0.0,443.1485112439603,0.4773174579968327 +3,1395.110604219539,0.10021386391769507,0.0,443.1791108653535,0.47735041700070724 +4,1393.8152786855164,0.10012081783489486,0.0,442.76763007185,0.47690720899845473 +5,1393.8315956415768,0.10012198991774568,0.0,442.77281341291064,0.47691279200080317 +6,1387.1687683245955,0.09964338437347445,0.0,440.6562601609618,0.47463304200209677 +7,1391.1876039682206,0.09993206617911746,0.0,441.93290733278377,0.47600812499877065 +8,1392.3965925792977,0.10001891049080291,0.0,442.31696182716075,0.47642179199829116 +9,1388.5243727459326,0.09974076042136285,0.0,441.08688950340695,0.47509687500132713 +10,1392.8408268551927,0.10005082081614736,0.0,442.458079922609,0.4765737909983727 +11,1386.1762985767418,0.09957209308807166,0.0,440.3409863331489,0.47429345899945474 +12,1389.0087958741594,0.09977555760038498,0.0,441.24077422810245,0.47526262500105076 +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.47570325000197045 +14,1390.0111294314313,0.09984755742491844,0.0,441.559181452131,0.4756055830002879 +15,1390.948925844576,0.09991492140440877,0.0,441.8570874240971,0.47592645899931085 +16,1396.212671944328,0.10029302786689455,0.0,443.5292002366967,0.47772749999785447 +17,1390.1526335855485,0.09985772197961511,0.0,441.60413250118455,0.4756539999980305 +18,1399.6301828713626,0.10053851519524201,0.0,444.61482703175864,0.47889683399989735 +19,1386.9895127650243,0.09963050805227164,0.0,440.5993167764959,0.4745717080004397 +20,1392.3554334243465,0.10001595393815342,0.0,442.30388696582713,0.47640770900034113 +21,1399.1193305515217,0.10050181954924253,0.0,444.4525466532669,0.4787220409998554 +22,1394.7422322042573,0.10018740294542602,0.0,443.0620916256557,0.4772243749976042 +23,1397.4406575579208,0.10038123677506375,0.0,443.91928943159024,0.47814766700321343 +24,1395.8205537077984,0.10026486115131203,0.0,443.4046376314855,0.47759333299836726 +25,1388.8359963638768,0.09976314503140576,0.0,441.1858817105535,0.47520349999831524 +26,1396.3338376479594,0.10030173146594862,0.0,443.5676904529135,0.47776895800052444 +27,1390.4448949140815,0.09987871575381296,0.0,441.6969739686122,0.47575400000278023 +28,1392.3996350206342,0.10001912903605743,0.0,442.31792830712465,0.47642283299865085 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..94c16f852 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,294.81448863624877,0.0,0.0,61.91171740072288,0.06712783300099545 +1,296.9928397015734,0.0,0.0,62.36917611036704,0.06762383300156216 +2,291.39142074467475,0.0,0.0,61.19286530859214,0.06634841699997196 +3,292.5078607995772,0.0,0.0,61.42732027548915,0.06660262500008685 +4,291.9049011262528,0.0,0.0,61.30069736400479,0.06646533399907639 +5,291.0495909115414,0.0,0.0,61.1210802612358,0.06627058400044916 +6,297.18077517649056,0.0,0.0,62.408642990256375,0.06766662500012899 +7,293.1889644158855,0.0,0.0,61.57035359386013,0.06675770899892086 +8,290.06599953169535,0.0,0.0,60.91452382017178,0.06604662500103586 +9,290.5013403480997,0.0,0.0,61.005946388047946,0.06614574999912293 +10,293.391717947307,0.0,0.0,61.612932299531735,0.06680387499727658 +11,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234 +12,294.85419962422475,0.0,0.0,61.92005679909045,0.06713687500086962 +13,288.935650518899,0.0,0.0,60.6771479402815,0.06578924999848823 +14,288.040264791619,0.0,0.0,60.489114888146126,0.06558537499950035 +15,291.310167374162,0.0,0.0,61.17580191480743,0.06632991600054083 +16,291.8930036442997,0.0,0.0,61.29819886556306,0.06646262499998556 +17,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544 +18,291.953940380838,0.0,0.0,61.31099571971134,0.06647650000013527 +19,290.492192146893,0.0,0.0,61.004025244855654,0.06614366699795937 +20,291.2743036344979,0.0,0.0,61.16827044739114,0.06632175000049756 +21,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666 +22,301.8341063464249,0.0,0.0,63.38585318673492,0.06872616599866888 +23,293.4286796545365,0.0,0.0,61.62069434264986,0.06681229099922348 +24,291.57880285799905,0.0,0.0,61.23221598128041,0.06639108300078078 +25,290.63986327224137,0.0,0.0,61.03503651917635,0.06617729099889402 +26,292.83779754454514,0.0,0.0,61.49660774710921,0.06667775000096299 +27,291.7103778938751,0.0,0.0,61.25984703997034,0.06642104200000176 +28,292.0681281288885,0.0,0.0,61.33497540816094,0.06650249999802327 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..158b63605 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7519e5f2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..17c009cec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..80a549237 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7f8c44b8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6378ffe11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b73fbf96f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3ca846412 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..168f33c5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8e52b0cd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5a4f2a91b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..932db3c91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c2ba9345f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3098d426f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0501712db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..25b15fab0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f5342c688 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..e9e1ac775 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1393.914644610329,0.10012795550787729,0.0,442.7991952410027,0.47694120799860684 +1,1395.233719300143,0.10022270754478568,0.0,443.2182203322239,0.47739254200132564 +2,1395.0142778015193,0.10020694457917245,0.0,443.1485112439603,0.4773174579968327 +3,1395.110604219539,0.10021386391769507,0.0,443.1791108653535,0.47735041700070724 +4,1393.8152786855164,0.10012081783489486,0.0,442.76763007185,0.47690720899845473 +5,1393.8315956415768,0.10012198991774568,0.0,442.77281341291064,0.47691279200080317 +6,1387.1687683245955,0.09964338437347445,0.0,440.6562601609618,0.47463304200209677 +7,1391.1876039682206,0.09993206617911746,0.0,441.93290733278377,0.47600812499877065 +8,1392.3965925792977,0.10001891049080291,0.0,442.31696182716075,0.47642179199829116 +9,1388.5243727459326,0.09974076042136285,0.0,441.08688950340695,0.47509687500132713 +10,1392.8408268551927,0.10005082081614736,0.0,442.458079922609,0.4765737909983727 +11,1386.1762985767418,0.09957209308807166,0.0,440.3409863331489,0.47429345899945474 +12,1389.0087958741594,0.09977555760038498,0.0,441.24077422810245,0.47526262500105076 +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.47570325000197045 +14,1390.0111294314313,0.09984755742491844,0.0,441.559181452131,0.4756055830002879 +15,1390.948925844576,0.09991492140440877,0.0,441.8570874240971,0.47592645899931085 +16,1396.212671944328,0.10029302786689455,0.0,443.5292002366967,0.47772749999785447 +17,1390.1526335855485,0.09985772197961511,0.0,441.60413250118455,0.4756539999980305 +18,1399.6301828713626,0.10053851519524201,0.0,444.61482703175864,0.47889683399989735 +19,1386.9895127650243,0.09963050805227164,0.0,440.5993167764959,0.4745717080004397 +20,1392.3554334243465,0.10001595393815342,0.0,442.30388696582713,0.47640770900034113 +21,1399.1193305515217,0.10050181954924253,0.0,444.4525466532669,0.4787220409998554 +22,1394.7422322042573,0.10018740294542602,0.0,443.0620916256557,0.4772243749976042 +23,1397.4406575579208,0.10038123677506375,0.0,443.91928943159024,0.47814766700321343 +24,1395.8205537077984,0.10026486115131203,0.0,443.4046376314855,0.47759333299836726 +25,1378.0424206880402,0.09898781874495069,0.0,437.7571304297536,0.4715103749986156 +26,1388.8359963638768,0.09976314503140576,0.0,441.1858817105535,0.47520349999831524 +27,1396.3338376479594,0.10030173146594862,0.0,443.5676904529135,0.47776895800052444 +28,1390.4448949140815,0.09987871575381296,0.0,441.6969739686122,0.47575400000278023 +29,1392.3996350206342,0.10001912903605743,0.0,442.31792830712465,0.47642283299865085 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f561efdab --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,294.81448863624877,0.0,0.0,61.91171740072288,0.06712783300099545 +1,263.1998512879779,0.0,0.0,55.27257119631946,0.059929333001491614 +2,296.9928397015734,0.0,0.0,62.36917611036704,0.06762383300156216 +3,291.39142074467475,0.0,0.0,61.19286530859214,0.06634841699997196 +4,292.5078607995772,0.0,0.0,61.42732027548915,0.06660262500008685 +5,291.9049011262528,0.0,0.0,61.30069736400479,0.06646533399907639 +6,291.0495909115414,0.0,0.0,61.1210802612358,0.06627058400044916 +7,297.18077517649056,0.0,0.0,62.408642990256375,0.06766662500012899 +8,293.1889644158855,0.0,0.0,61.57035359386013,0.06675770899892086 +9,290.06599953169535,0.0,0.0,60.91452382017178,0.06604662500103586 +10,290.5013403480997,0.0,0.0,61.005946388047946,0.06614574999912293 +11,293.391717947307,0.0,0.0,61.612932299531735,0.06680387499727658 +12,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234 +13,294.85419962422475,0.0,0.0,61.92005679909045,0.06713687500086962 +14,288.935650518899,0.0,0.0,60.6771479402815,0.06578924999848823 +15,288.040264791619,0.0,0.0,60.489114888146126,0.06558537499950035 +16,291.310167374162,0.0,0.0,61.17580191480743,0.06632991600054083 +17,291.8930036442997,0.0,0.0,61.29819886556306,0.06646262499998556 +18,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544 +19,291.953940380838,0.0,0.0,61.31099571971134,0.06647650000013527 +20,290.492192146893,0.0,0.0,61.004025244855654,0.06614366699795937 +21,291.2743036344979,0.0,0.0,61.16827044739114,0.06632175000049756 +22,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666 +23,301.8341063464249,0.0,0.0,63.38585318673492,0.06872616599866888 +24,293.4286796545365,0.0,0.0,61.62069434264986,0.06681229099922348 +25,291.57880285799905,0.0,0.0,61.23221598128041,0.06639108300078078 +26,290.63986327224137,0.0,0.0,61.03503651917635,0.06617729099889402 +27,292.83779754454514,0.0,0.0,61.49660774710921,0.06667775000096299 +28,291.7103778938751,0.0,0.0,61.25984703997034,0.06642104200000176 +29,292.0681281288885,0.0,0.0,61.33497540816094,0.06650249999802327 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..bebf0a787 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..314e58b31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2d3d9edd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b5ae37c4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8b0da5731 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3b25641d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a96abf658 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..dc922a9ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0b4b817ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..11361cf1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8dc3d09fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e78c1856e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7931202cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f5dd7d475 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a1d532643 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6d20021d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4ace5c943 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d74f67186 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1386.7005541149863,0.09988958778171197,0.0,439.2811105347087,0.47550487499756855 +1,1389.7769768091941,0.1001111948142143,0.0,440.255664394643,0.47655979199771537 +2,1385.844628906725,0.09982793206521898,0.0,439.009969245478,0.4752113750000717 +3,1385.5003865740737,0.09980313491301224,0.0,438.90091963579016,0.47509333299967693 +4,1389.9201160920381,0.10012150570932155,0.0,440.30100827435973,0.4766088750002382 +5,1395.4414636433553,0.10051923045909827,0.0,442.0500691489612,0.4785021659990889 +6,1383.25911358358,0.0996416870543074,0.0,438.19092576915915,0.47432479199778754 +7,1394.1143187941695,0.10042363090696829,0.0,441.62965418521094,0.47804708300100174 +8,1391.919461157872,0.10026552653188985,0.0,440.93436384507424,0.4772944579999603 +9,1385.5401236639073,0.09980599733454323,0.0,438.91350761154297,0.4751069589983672 +10,1389.6626327917504,0.10010295815725626,0.0,440.21944232289394,0.4765205830008199 +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.47322254100072314 +12,1384.9940492190315,0.09976666140795482,0.0,438.7405213183826,0.4749197080018348 +13,1374.9844398051246,0.09904562920295276,0.0,435.56966202485194,0.4714873750017432 +14,1387.592932719944,0.09995386938218435,0.0,439.56379958638604,0.47581087500293506 +15,1390.2901178414663,0.10014815841535762,0.0,440.41821799127104,0.47673575000226265 +16,1383.923900638318,0.0996895743250403,0.0,438.40151802341893,0.4745527499981108 +17,1383.3757643872302,0.09965008987830312,0.0,438.22787858815104,0.47436479200041504 +18,1391.7060864361836,0.10025015629717748,0.0,440.8667706762208,0.4772212909992959 +19,1392.4171721955554,0.10030137864880223,0.0,441.09202950454926,0.4774651250008901 +20,1405.4888679186208,0.10124298517914526,0.0,445.23290115615447,0.4819474590003665 +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863 +22,1391.9551883778888,0.10026810010645823,0.0,440.94568156816786,0.47730670899909455 +23,1388.182261289353,0.09999632107638146,0.0,439.7504879869002,0.47601295800268417 +24,1375.0170057848686,0.0990479750607392,0.0,435.57997832544413,0.4714985419996083 +25,1388.4195727452523,0.10001341556980711,0.0,439.82566387082176,0.4760943330002192 +26,1387.2079850901775,0.09992614006460326,0.0,439.4418552907703,0.4756788750019041 +27,1395.1198253223383,0.10049606156426669,0.0,441.9481800724568,0.47839187499994296 +28,1386.186074535617,0.09985252775966699,0.0,439.11813291109553,0.4753284580001491 +29,1391.5517690909974,0.10023904020152694,0.0,440.817885792915,0.47716837499683606 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..09081d5f8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,290.8686257733098,0.0,0.0,61.83024365562761,0.06710841600215645 +1,288.43744237162144,0.0,0.0,61.31344449346887,0.06654749999870546 +2,286.20184035980265,0.0,0.0,60.83822026899203,0.06603170800008229 +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035 +4,285.997408337104,0.0,0.0,60.79476394316497,0.06598454200138804 +5,287.0887483871877,0.0,0.0,61.02675122274326,0.06623633300114307 +6,290.61850144546,0.0,0.0,61.777074469387486,0.06705070799944224 +7,288.4390677341846,0.0,0.0,61.313789998464614,0.06654787499792292 +8,287.0845961195109,0.0,0.0,61.02586857092235,0.06623537500126986 +9,289.1576572076416,0.0,0.0,61.46654130367703,0.06671366600130568 +10,287.9375491452288,0.0,0.0,61.20718167496282,0.06643216599695734 +11,287.8124003118045,0.0,0.0,61.18057865841791,0.06640329199944972 +12,291.3011551411478,0.0,0.0,61.922186869271,0.06720820799819194 +13,290.86863009377606,0.0,0.0,61.83024457403358,0.06710841699896264 +14,291.96195960819887,0.0,0.0,62.06265475609747,0.06736066700250376 +15,288.20917165594705,0.0,0.0,61.264920752099144,0.06649483400178724 +16,288.4121603590863,0.0,0.0,61.30807026999944,0.06654166700172937 +17,291.91970008694614,0.0,0.0,62.05367160609675,0.06735091700102203 +18,289.8069063826763,0.0,0.0,61.604552870166486,0.06686345900016022 +19,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013 +20,288.0397695006966,0.0,0.0,61.22891076131008,0.06645574999856763 +21,286.4039275203915,0.0,0.0,60.881178145062925,0.06607833299858612 +22,286.55978061458836,0.0,0.0,60.914307997975236,0.06611429099939414 +23,288.72260523938814,0.0,0.0,61.374061858262614,0.06661329199778265 +24,289.4366783433925,0.0,0.0,61.52585311416426,0.06677804099672358 +25,279.95357387673477,0.0,0.0,59.51001982095035,0.06459012499908567 +26,286.3918304829023,0.0,0.0,60.87860666533224,0.06607554200309096 +27,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207 +28,287.6597979585023,0.0,0.0,61.14813981884897,0.06636808400071459 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7759fb5c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6ebf03d0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..851748001 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aabe3ac5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b6c380090 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0a63c4e40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b9de0ced0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5dc4a000b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1b23a17e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..63c166b8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0817bfcc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8d37678a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d35ae9884 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4b1b4a7d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a3ed14495 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fd62ece91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..700632273 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d74f67186 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1386.7005541149863,0.09988958778171197,0.0,439.2811105347087,0.47550487499756855 +1,1389.7769768091941,0.1001111948142143,0.0,440.255664394643,0.47655979199771537 +2,1385.844628906725,0.09982793206521898,0.0,439.009969245478,0.4752113750000717 +3,1385.5003865740737,0.09980313491301224,0.0,438.90091963579016,0.47509333299967693 +4,1389.9201160920381,0.10012150570932155,0.0,440.30100827435973,0.4766088750002382 +5,1395.4414636433553,0.10051923045909827,0.0,442.0500691489612,0.4785021659990889 +6,1383.25911358358,0.0996416870543074,0.0,438.19092576915915,0.47432479199778754 +7,1394.1143187941695,0.10042363090696829,0.0,441.62965418521094,0.47804708300100174 +8,1391.919461157872,0.10026552653188985,0.0,440.93436384507424,0.4772944579999603 +9,1385.5401236639073,0.09980599733454323,0.0,438.91350761154297,0.4751069589983672 +10,1389.6626327917504,0.10010295815725626,0.0,440.21944232289394,0.4765205830008199 +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.47322254100072314 +12,1384.9940492190315,0.09976666140795482,0.0,438.7405213183826,0.4749197080018348 +13,1374.9844398051246,0.09904562920295276,0.0,435.56966202485194,0.4714873750017432 +14,1387.592932719944,0.09995386938218435,0.0,439.56379958638604,0.47581087500293506 +15,1390.2901178414663,0.10014815841535762,0.0,440.41821799127104,0.47673575000226265 +16,1383.923900638318,0.0996895743250403,0.0,438.40151802341893,0.4745527499981108 +17,1383.3757643872302,0.09965008987830312,0.0,438.22787858815104,0.47436479200041504 +18,1391.7060864361836,0.10025015629717748,0.0,440.8667706762208,0.4772212909992959 +19,1392.4171721955554,0.10030137864880223,0.0,441.09202950454926,0.4774651250008901 +20,1405.4888679186208,0.10124298517914526,0.0,445.23290115615447,0.4819474590003665 +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863 +22,1391.9551883778888,0.10026810010645823,0.0,440.94568156816786,0.47730670899909455 +23,1388.182261289353,0.09999632107638146,0.0,439.7504879869002,0.47601295800268417 +24,1375.0170057848686,0.0990479750607392,0.0,435.57997832544413,0.4714985419996083 +25,1388.4195727452523,0.10001341556980711,0.0,439.82566387082176,0.4760943330002192 +26,1387.2079850901775,0.09992614006460326,0.0,439.4418552907703,0.4756788750019041 +27,1395.1198253223383,0.10049606156426669,0.0,441.9481800724568,0.47839187499994296 +28,1386.186074535617,0.09985252775966699,0.0,439.11813291109553,0.4753284580001491 +29,1391.5517690909974,0.10023904020152694,0.0,440.817885792915,0.47716837499683606 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..40e7d6d67 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,290.8686257733098,0.0,0.0,61.83024365562761,0.06710841600215645 +1,288.43744237162144,0.0,0.0,61.31344449346887,0.06654749999870546 +2,286.20184035980265,0.0,0.0,60.83822026899203,0.06603170800008229 +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035 +4,285.997408337104,0.0,0.0,60.79476394316497,0.06598454200138804 +5,287.0887483871877,0.0,0.0,61.02675122274326,0.06623633300114307 +6,290.61850144546,0.0,0.0,61.777074469387486,0.06705070799944224 +7,288.4390677341846,0.0,0.0,61.313789998464614,0.06654787499792292 +8,262.4570511731341,0.0,0.0,55.79076595156614,0.06055337500220048 +9,287.0845961195109,0.0,0.0,61.02586857092235,0.06623537500126986 +10,289.1576572076416,0.0,0.0,61.46654130367703,0.06671366600130568 +11,287.9375491452288,0.0,0.0,61.20718167496282,0.06643216599695734 +12,287.8124003118045,0.0,0.0,61.18057865841791,0.06640329199944972 +13,291.3011551411478,0.0,0.0,61.922186869271,0.06720820799819194 +14,290.86863009377606,0.0,0.0,61.83024457403358,0.06710841699896264 +15,291.96195960819887,0.0,0.0,62.06265475609747,0.06736066700250376 +16,288.20917165594705,0.0,0.0,61.264920752099144,0.06649483400178724 +17,288.4121603590863,0.0,0.0,61.30807026999944,0.06654166700172937 +18,291.91970008694614,0.0,0.0,62.05367160609675,0.06735091700102203 +19,289.8069063826763,0.0,0.0,61.604552870166486,0.06686345900016022 +20,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013 +21,288.0397695006966,0.0,0.0,61.22891076131008,0.06645574999856763 +22,286.4039275203915,0.0,0.0,60.881178145062925,0.06607833299858612 +23,286.55978061458836,0.0,0.0,60.914307997975236,0.06611429099939414 +24,288.72260523938814,0.0,0.0,61.374061858262614,0.06661329199778265 +25,289.4366783433925,0.0,0.0,61.52585311416426,0.06677804099672358 +26,279.95357387673477,0.0,0.0,59.51001982095035,0.06459012499908567 +27,286.3918304829023,0.0,0.0,60.87860666533224,0.06607554200309096 +28,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207 +29,287.6597979585023,0.0,0.0,61.14813981884897,0.06636808400071459 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..fea664a0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..578df8e3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..627541a7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..131ffa8d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..41e39bba4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cabc011cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..46277cdc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5dc4a000b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..83ffa910d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fe908e952 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5fadd306e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..88cc448c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..58e61dd9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c27e0a432 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..daafd2c6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fd62ece91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..78ce04c49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..782a8cfdb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1392.7279603943014,0.13399667688700434,0.0,442.3565295732231,0.47867499999847496 +1,1389.1204843918358,0.13364959561196255,0.0,441.21072751399134,0.477435125001648 +2,1380.2402990351388,0.13279521818738557,0.0,438.3902140411066,0.4743830410006922 +3,1385.5556798078874,0.13330661982517256,0.0,440.0784786978509,0.4762099159997888 +4,1388.581612791723,0.13359774987773643,0.0,441.03957178387736,0.4772499169994262 +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197 +6,1384.9009121834042,0.13324362354139788,0.0,439.87051221603974,0.47598487499999464 +7,1390.9897468626045,0.1338294404678393,0.0,441.80444034445446,0.47807758299677516 +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852 +9,1380.9355617432616,0.13286211057060845,0.0,438.6110425212212,0.47462199999790755 +10,1384.2770555996944,0.13318360126034343,0.0,439.67236366070875,0.4757704580006248 +11,1383.5134214083396,0.13311013074283484,0.0,439.4298191147835,0.47550799999953597 +12,1386.532682809284,0.13340061891129612,0.0,440.3887931809163,0.47654570800295915 +13,1387.365540957909,0.13348074958103753,0.0,440.65332455440017,0.4768319579998206 +14,1393.2604077165302,0.13404790453075455,0.0,442.52564483215343,0.47885800000221934 +15,1382.1245980610843,0.13297650973528172,0.0,438.9887027635988,0.47503066699937335 +16,1390.2715743685353,0.13376034389595048,0.0,441.57633528650655,0.4778307499982475 +17,1386.3423517986607,0.13338230684773644,0.0,440.3283404810899,0.4764802919999056 +18,1386.152867472149,0.13336407624506544,0.0,440.26815670402226,0.47641516699877684 +19,1387.0355487415052,0.13344900048024103,0.0,440.5485128353957,0.47671854100190103 +20,1385.5385891202097,0.13330497550164375,0.0,440.0730503748014,0.47620404199915356 +21,1379.320279536285,0.13270670157895706,0.0,438.097998587532,0.47406683399822214 +22,1393.496567010398,0.13407062580977971,0.0,442.6006534545353,0.47893916700195405 +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452 +24,1384.7716816940174,0.13323119006075934,0.0,439.82946618808177,0.4759404590004124 +25,1385.4854869535443,0.13329986645373848,0.0,440.0561841304042,0.4761857909979881 +26,1384.3494335214364,0.13319056486075154,0.0,439.695352246556,0.4757953340013046 +27,1381.8721918528101,0.1329522253135596,0.0,438.9085338163886,0.474943916000484 +28,1389.2910566489743,0.13366600665293799,0.0,441.26490446301153,0.47749375000057626 +29,1379.96219569416,0.13276846140172316,0.0,438.3018832024386,0.47428745800061733 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..19ce43ebb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991 +1,318.08177249086094,0.0,0.0,62.64785256127891,0.06718762499804143 +2,310.1933592166472,0.0,0.0,61.0941887097623,0.06552137499966193 +3,315.03036618576886,0.0,0.0,62.04686228507105,0.06654308400175069 +4,311.7761737775847,0.0,0.0,61.40593223555111,0.06585570899915183 +5,315.1471407328176,0.0,0.0,62.0698616369331,0.06656775000010384 +6,312.72657075974973,0.0,0.0,61.59311784366412,0.06605645899981027 +7,318.0087848553162,0.0,0.0,62.63347726842702,0.06717220800055657 +8,314.2111452727458,0.0,0.0,61.88551248318745,0.06637004199728835 +9,315.1433912094317,0.0,0.0,62.069123148882,0.06656695799756562 +10,321.5192175326141,0.0,0.0,63.324875166116904,0.06791370800056029 +11,314.53405774919537,0.0,0.0,61.94911176791349,0.06643824999991921 +12,316.86685034021673,0.0,0.0,62.40856735115521,0.06693100000120467 +13,313.09228540351353,0.0,0.0,61.665147236931766,0.06613370799823315 +14,289.9330212891863,0.0,0.0,57.10381021877937,0.06124183399879257 +15,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857 +16,320.05180460179605,0.0,0.0,63.03586058909003,0.06760375000158092 +17,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105 +18,308.3140681413278,0.0,0.0,60.7240525988988,0.06512441700033378 +19,318.47412193661944,0.0,0.0,62.7251278167514,0.06727049999972223 +20,314.1099463592385,0.0,0.0,61.86558083302366,0.06634866600143141 +21,313.33807251384695,0.0,0.0,61.71355628133896,0.06618562500079861 +22,319.77228609333065,0.0,0.0,62.98080797111271,0.06754470799933188 +23,319.76577652708306,0.0,0.0,62.97952587832467,0.06754333299977588 +24,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282 +25,316.8561983070633,0.0,0.0,62.40646937805463,0.06692874999862397 +26,316.30781807684326,0.0,0.0,62.29846305143831,0.06681291700078873 +27,298.70140513017805,0.0,0.0,58.83078883113269,0.06309395800053608 +28,314.0071803907631,0.0,0.0,61.84534054326751,0.06632695900043473 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..582f64dcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8293d4fcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7b1dd8681 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fa59458c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9e6e3b28d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cba1817c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..47006750f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..58f7f0274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..70d3c5936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..253556c61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d894b1d3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0332336ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c450d9550 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..10e7b20d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..fd261a847 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..17de342fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d6ca98da9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..782a8cfdb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1392.7279603943014,0.13399667688700434,0.0,442.3565295732231,0.47867499999847496 +1,1389.1204843918358,0.13364959561196255,0.0,441.21072751399134,0.477435125001648 +2,1380.2402990351388,0.13279521818738557,0.0,438.3902140411066,0.4743830410006922 +3,1385.5556798078874,0.13330661982517256,0.0,440.0784786978509,0.4762099159997888 +4,1388.581612791723,0.13359774987773643,0.0,441.03957178387736,0.4772499169994262 +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197 +6,1384.9009121834042,0.13324362354139788,0.0,439.87051221603974,0.47598487499999464 +7,1390.9897468626045,0.1338294404678393,0.0,441.80444034445446,0.47807758299677516 +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852 +9,1380.9355617432616,0.13286211057060845,0.0,438.6110425212212,0.47462199999790755 +10,1384.2770555996944,0.13318360126034343,0.0,439.67236366070875,0.4757704580006248 +11,1383.5134214083396,0.13311013074283484,0.0,439.4298191147835,0.47550799999953597 +12,1386.532682809284,0.13340061891129612,0.0,440.3887931809163,0.47654570800295915 +13,1387.365540957909,0.13348074958103753,0.0,440.65332455440017,0.4768319579998206 +14,1393.2604077165302,0.13404790453075455,0.0,442.52564483215343,0.47885800000221934 +15,1382.1245980610843,0.13297650973528172,0.0,438.9887027635988,0.47503066699937335 +16,1390.2715743685353,0.13376034389595048,0.0,441.57633528650655,0.4778307499982475 +17,1386.3423517986607,0.13338230684773644,0.0,440.3283404810899,0.4764802919999056 +18,1386.152867472149,0.13336407624506544,0.0,440.26815670402226,0.47641516699877684 +19,1387.0355487415052,0.13344900048024103,0.0,440.5485128353957,0.47671854100190103 +20,1385.5385891202097,0.13330497550164375,0.0,440.0730503748014,0.47620404199915356 +21,1379.320279536285,0.13270670157895706,0.0,438.097998587532,0.47406683399822214 +22,1393.496567010398,0.13407062580977971,0.0,442.6006534545353,0.47893916700195405 +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452 +24,1384.7716816940174,0.13323119006075934,0.0,439.82946618808177,0.4759404590004124 +25,1385.4854869535443,0.13329986645373848,0.0,440.0561841304042,0.4761857909979881 +26,1384.3494335214364,0.13319056486075154,0.0,439.695352246556,0.4757953340013046 +27,1381.8721918528101,0.1329522253135596,0.0,438.9085338163886,0.474943916000484 +28,1389.2910566489743,0.13366600665293799,0.0,441.26490446301153,0.47749375000057626 +29,1379.96219569416,0.13276846140172316,0.0,438.3018832024386,0.47428745800061733 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c3cdabec3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991 +1,318.08177249086094,0.0,0.0,62.64785256127891,0.06718762499804143 +2,310.1933592166472,0.0,0.0,61.0941887097623,0.06552137499966193 +3,315.03036618576886,0.0,0.0,62.04686228507105,0.06654308400175069 +4,280.5797515507548,0.0,0.0,55.26163529957376,0.059266165997541975 +5,311.7761737775847,0.0,0.0,61.40593223555111,0.06585570899915183 +6,315.1471407328176,0.0,0.0,62.0698616369331,0.06656775000010384 +7,312.72657075974973,0.0,0.0,61.59311784366412,0.06605645899981027 +8,318.0087848553162,0.0,0.0,62.63347726842702,0.06717220800055657 +9,314.2111452727458,0.0,0.0,61.88551248318745,0.06637004199728835 +10,315.1433912094317,0.0,0.0,62.069123148882,0.06656695799756562 +11,321.5192175326141,0.0,0.0,63.324875166116904,0.06791370800056029 +12,314.53405774919537,0.0,0.0,61.94911176791349,0.06643824999991921 +13,316.86685034021673,0.0,0.0,62.40856735115521,0.06693100000120467 +14,313.09228540351353,0.0,0.0,61.665147236931766,0.06613370799823315 +15,289.9330212891863,0.0,0.0,57.10381021877937,0.06124183399879257 +16,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857 +17,320.05180460179605,0.0,0.0,63.03586058909003,0.06760375000158092 +18,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105 +19,308.3140681413278,0.0,0.0,60.7240525988988,0.06512441700033378 +20,318.47412193661944,0.0,0.0,62.7251278167514,0.06727049999972223 +21,314.1099463592385,0.0,0.0,61.86558083302366,0.06634866600143141 +22,313.33807251384695,0.0,0.0,61.71355628133896,0.06618562500079861 +23,319.77228609333065,0.0,0.0,62.98080797111271,0.06754470799933188 +24,319.76577652708306,0.0,0.0,62.97952587832467,0.06754333299977588 +25,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282 +26,316.8561983070633,0.0,0.0,62.40646937805463,0.06692874999862397 +27,316.30781807684326,0.0,0.0,62.29846305143831,0.06681291700078873 +28,298.70140513017805,0.0,0.0,58.83078883113269,0.06309395800053608 +29,314.0071803907631,0.0,0.0,61.84534054326751,0.06632695900043473 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..014bd692c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7b0dd6a4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9b2fff507 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6bdd45801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7a397007e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..130f36cc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f50f7a956 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..58f7f0274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dbf8d7f58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..11361cf1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..60c17f679 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2d1b3360a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f720c58ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3ed8e9fbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2f542de5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..17de342fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2fa40fd48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1bd0beb3c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.47539166700153146 +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214 +2,1410.4888534886547,2.57675488667884,0.0,450.22935383606637,0.47802750000118976 +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321 +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.47480841600190615 +5,1402.5888736892393,2.562322789961124,0.0,447.7076729368437,0.4753501250015688 +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.47695945799932815 +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915 +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.47548087499671965 +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.47592537499804166 +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982 +11,1405.1159761264319,2.5669394330051785,0.0,448.5143263850866,0.47620658300002106 +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345 +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.47641537500021514 +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.47484624999924563 +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462 +16,1407.7395911650067,2.5717323903225586,0.0,449.3517867454507,0.47709574999680626 +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.47438933300145436 +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309 +19,1391.8015679961813,2.5426159751288515,0.0,444.26435492705934,0.47169420899808756 +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645 +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289 +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583 +23,1402.1368114553459,2.561496939003574,0.0,447.5633742513517,0.47519691699926625 +24,1407.9788382191023,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483 +25,1407.0144704711063,2.570407701873714,0.0,449.12032754557083,0.4768499999991036 +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.47700849999819184 +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.47705054199832375 +28,1401.8344944047062,2.560944650387017,0.0,447.46687436762244,0.47509445900141145 +29,1405.6258237574764,2.5678708493517206,0.0,448.67707022309156,0.4763793749989418 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..e2d97148a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,286.58077105611767,0.0,0.0,60.48994734420278,0.06645545799983665 +1,284.29575202691694,0.0,0.0,60.00763766149979,0.06592558299962548 +2,286.7606315278459,0.0,0.0,60.52791133747437,0.06649716599713429 +3,285.07881009993866,0.0,0.0,60.17292140133334,0.06610716700015473 +4,285.97901379987127,0.0,0.0,60.3629316180248,0.06631591599943931 +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403 +6,287.5501581793354,0.0,0.0,60.69456043050126,0.06668025000180933 +7,286.76045473612015,0.0,0.0,60.527874021215716,0.06649712500075111 +8,287.0916105357109,0.0,0.0,60.59777262887927,0.06657391699991422 +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215 +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624 +11,287.78823570039054,0.0,0.0,60.74481256939876,0.06673545800003922 +12,288.3114732547224,0.0,0.0,60.85525477385442,0.06685679200018058 +13,287.04471347517006,0.0,0.0,60.58787384637458,0.06656304200078011 +14,284.5945650282986,0.0,0.0,60.070709523065126,0.06599487499988754 +15,284.649724611494,0.0,0.0,60.08235231497584,0.06600766600240604 +16,296.0487686832776,0.0,0.0,62.48840200608166,0.06865099999777158 +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049 +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078 +19,282.8897370651235,0.0,0.0,59.71086348962979,0.06559954099793686 +20,286.2961587022398,0.0,0.0,60.429872879903805,0.06638945899976534 +21,283.4221384206483,0.0,0.0,59.823239940579356,0.0657229999997071 +22,271.9089975438187,0.0,0.0,57.39310730174492,0.06305320799947367 +23,286.22194706122224,0.0,0.0,60.41420868079884,0.06637224999940372 +24,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015 +25,288.2345706895805,0.0,0.0,60.83902258877472,0.06683895899914205 +26,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547 +27,286.87814802674137,0.0,0.0,60.55271609602139,0.06652441699770861 +28,283.17741121511045,0.0,0.0,59.771584221592626,0.06566625000050408 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a7f5e0cba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4c0709794 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5a2fe2e1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6614f507d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..461a1130d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f9c3d729b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bf9fc24c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3920cac93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bcd958ca9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4a4eea721 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..89efa6a59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..51892e481 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..defb34d74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..66f48f26a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8ebdeb85f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..67367d686 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a73550ea7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1bd0beb3c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.47539166700153146 +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214 +2,1410.4888534886547,2.57675488667884,0.0,450.22935383606637,0.47802750000118976 +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321 +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.47480841600190615 +5,1402.5888736892393,2.562322789961124,0.0,447.7076729368437,0.4753501250015688 +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.47695945799932815 +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915 +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.47548087499671965 +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.47592537499804166 +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982 +11,1405.1159761264319,2.5669394330051785,0.0,448.5143263850866,0.47620658300002106 +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345 +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.47641537500021514 +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.47484624999924563 +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462 +16,1407.7395911650067,2.5717323903225586,0.0,449.3517867454507,0.47709574999680626 +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.47438933300145436 +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309 +19,1391.8015679961813,2.5426159751288515,0.0,444.26435492705934,0.47169420899808756 +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645 +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289 +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583 +23,1402.1368114553459,2.561496939003574,0.0,447.5633742513517,0.47519691699926625 +24,1407.9788382191023,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483 +25,1407.0144704711063,2.570407701873714,0.0,449.12032754557083,0.4768499999991036 +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.47700849999819184 +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.47705054199832375 +28,1401.8344944047062,2.560944650387017,0.0,447.46687436762244,0.47509445900141145 +29,1405.6258237574764,2.5678708493517206,0.0,448.67707022309156,0.4763793749989418 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..46f4ca265 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,286.58077105611767,0.0,0.0,60.48994734420278,0.06645545799983665 +1,284.29575202691694,0.0,0.0,60.00763766149979,0.06592558299962548 +2,286.7606315278459,0.0,0.0,60.52791133747437,0.06649716599713429 +3,285.07881009993866,0.0,0.0,60.17292140133334,0.06610716700015473 +4,285.97901379987127,0.0,0.0,60.3629316180248,0.06631591599943931 +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403 +6,287.5501581793354,0.0,0.0,60.69456043050126,0.06668025000180933 +7,286.76045473612015,0.0,0.0,60.527874021215716,0.06649712500075111 +8,287.0916105357109,0.0,0.0,60.59777262887927,0.06657391699991422 +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215 +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624 +11,287.78823570039054,0.0,0.0,60.74481256939876,0.06673545800003922 +12,288.3114732547224,0.0,0.0,60.85525477385442,0.06685679200018058 +13,287.04471347517006,0.0,0.0,60.58787384637458,0.06656304200078011 +14,284.5945650282986,0.0,0.0,60.070709523065126,0.06599487499988754 +15,284.649724611494,0.0,0.0,60.08235231497584,0.06600766600240604 +16,296.0487686832776,0.0,0.0,62.48840200608166,0.06865099999777158 +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049 +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078 +19,282.8897370651235,0.0,0.0,59.71086348962979,0.06559954099793686 +20,286.2961587022398,0.0,0.0,60.429872879903805,0.06638945899976534 +21,260.0656021616251,0.0,0.0,54.893266295646235,0.0603068330019596 +22,283.4221384206483,0.0,0.0,59.823239940579356,0.0657229999997071 +23,271.9089975438187,0.0,0.0,57.39310730174492,0.06305320799947367 +24,286.22194706122224,0.0,0.0,60.41420868079884,0.06637224999940372 +25,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015 +26,288.2345706895805,0.0,0.0,60.83902258877472,0.06683895899914205 +27,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547 +28,286.87814802674137,0.0,0.0,60.55271609602139,0.06652441699770861 +29,283.17741121511045,0.0,0.0,59.771584221592626,0.06566625000050408 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4d1f91122 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..34164cca6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8984b3809 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6c4670d4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a5ca3de65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e22acb326 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b96aa5263 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3920cac93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a79b7f2de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..68b49ffa4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cafd7ab05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..511a88c50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9030521eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7bf4b88a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f9de7970c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..67367d686 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..83b13fc28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b40401314 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1381.9094842887912,1.232925439914284,0.03332230918687254,441.0874067066318,0.4757015830000455 +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.47619708300044294 +2,1377.8662199972532,1.2293180810662478,0.03322481300179048,439.7968497047006,0.47430974999952014 +3,1382.9158230323503,1.233823284999083,0.03334657527024548,441.40861685223945,0.47604799999680836 +4,1386.128503523028,1.2366896055159518,0.03342404339232302,442.43406238417987,0.4771539169996686 +5,1376.9074533923183,1.2284626793546278,0.033201694036611565,439.4908239626273,0.47397970899692154 +6,1390.6754208710522,1.2407463184449117,0.03353368428229491,443.8853788447377,0.47871912499977043 +7,1380.57996803777,1.2317392591786427,0.033290250248071425,440.66304253372147,0.4752439170006255 +8,1381.657961329704,1.2327010337151032,0.03331624415446225,441.00712387261683,0.4756149999993795 +9,1374.6571707641597,1.226455000320077,0.03314743244108316,438.7725632226178,0.47320508300254005 +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.95361662782756,0.48094966700227815 +11,1363.870814864897,1.2168315244387933,0.03288733849834576,435.32969970260285,0.4694920420006383 +12,1392.8155520129008,1.2426557214554106,0.03358528976906515,444.5684806731154,0.47945583299951977 +13,1383.647032868345,1.234475662900069,0.03336420710540727,441.6420094542761,0.4762997079997149 +14,1381.6147495768726,1.232662480633317,0.03331520217927884,440.993331247114,0.47560012500252924 +15,1377.525609644332,1.229014192009845,0.033216599784049866,439.6881313414681,0.4741925000016636 +16,1385.5815166921095,1.2362015894868232,0.033410853769914144,442.2594713523535,0.4769656249991385 +17,1383.6618018467698,1.234488839630838,0.03336456323326589,441.6467235187406,0.47630479199870024 +18,1374.9552985030261,1.2267209868248166,0.03315462126553558,438.8677216918945,0.4733077089986182 +19,1371.61443522941,1.2237403029463523,0.0330740622417933,437.8013618946179,0.47215766699810047 +20,1375.2341748666422,1.2269697974504055,0.033161345877037986,438.9567353743518,0.47340370799793163 +21,1379.3660443310175,1.2306562089230462,0.03326097861954179,440.2755739868747,0.4748260419983126 +22,1373.8068562416304,1.2256963584418106,0.03312692860653542,438.5011539647093,0.4729123750003055 +23,1383.064340779556,1.2339557910068137,0.03335015651369767,441.45602177181604,0.4760991250004736 +24,1389.1312954040106,1.2393686655722889,0.033496450420872674,443.3925142210916,0.4781875830012723 +25,1378.0240598523594,1.2294589041628439,0.033228619031428215,439.8472301190153,0.4743640839988075 +26,1384.5515748746504,1.2352826859820614,0.03338601854005571,441.93072741471747,0.4766110829987156 +27,1384.6750399681143,1.2353928402695915,0.033388995682961935,441.9701358553671,0.4766535840026336 +28,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.47617083300065133 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2b4178391 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777 +1,290.6954782073229,0.0,0.0,60.922386066864476,0.06654662500295672 +2,291.28719908778197,0.0,0.0,61.046395728609,0.06668208300106926 +3,283.328160416027,0.0,0.0,59.378383451046346,0.06486008299907553 +4,288.3902924835214,0.0,0.0,60.439277710699756,0.06601891700120177 +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556 +6,291.3215994250469,0.0,0.0,61.053605165235275,0.06668995799918775 +7,291.49342205874245,0.0,0.0,61.08961482348515,0.06672929200067301 +8,288.8664369502698,0.0,0.0,60.53906549276548,0.06612791700172238 +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085 +10,288.4387063150821,0.0,0.0,60.44942401966714,0.06602999999813619 +11,286.7470829842217,0.0,0.0,60.0949027513009,0.06564274999982445 +12,287.64586027491015,0.0,0.0,60.28326363475572,0.06584850000217557 +13,288.1433001809692,0.0,0.0,60.387514399813654,0.06596237499979907 +14,287.9949615223732,0.0,0.0,60.3564263860497,0.06592841699966812 +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948 +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169 +17,289.2799662185982,0.0,0.0,60.62573072020697,0.06622258299830719 +18,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857 +19,292.3219396351502,0.0,0.0,61.26325105602778,0.06691895800031489 +20,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514 +21,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968009 +22,291.10992044223104,0.0,0.0,61.00924262890388,0.06664149999778601 +23,289.47799864820206,0.0,0.0,60.66723328572497,0.06626791700182366 +24,289.12507512691684,0.0,0.0,60.593269482956494,0.06618712500130641 +25,289.32820096574676,0.0,0.0,60.63583949763187,0.06623362499885843 +26,292.50923477110916,0.0,0.0,61.302503357617404,0.06696183399981237 +27,289.02405823299785,0.0,0.0,60.572098908689014,0.06616399999984424 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b9d02fb37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5de85b65d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5bf5b603a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..89768ac0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e1c380298 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d4961bb79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2269335d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7ed385d11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0c2e4b352 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fa782ed37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..403fe1371 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a08d760f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1645358a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..92b3f58a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2c0483b41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..0f19a843c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e1a180fd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ecf42c97b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d7cf331fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..228321bc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..01650296d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1381.9094842887912,1.232925439914284,0.03332230918687254,441.0874067066318,0.4757015830000455 +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.47619708300044294 +2,1377.8662199972532,1.2293180810662478,0.03322481300179048,439.7968497047006,0.47430974999952014 +3,1382.9158230323503,1.233823284999083,0.03334657527024548,441.40861685223945,0.47604799999680836 +4,1386.128503523028,1.2366896055159518,0.03342404339232302,442.43406238417987,0.4771539169996686 +5,1376.9074533923183,1.2284626793546278,0.033201694036611565,439.4908239626273,0.47397970899692154 +6,1390.6754208710522,1.2407463184449117,0.03353368428229491,443.8853788447377,0.47871912499977043 +7,1380.57996803777,1.2317392591786427,0.033290250248071425,440.66304253372147,0.4752439170006255 +8,1381.657961329704,1.2327010337151032,0.03331624415446225,441.00712387261683,0.4756149999993795 +9,1374.6571707641597,1.226455000320077,0.03314743244108316,438.7725632226178,0.47320508300254005 +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.95361662782756,0.48094966700227815 +11,1363.870814864897,1.2168315244387933,0.03288733849834576,435.32969970260285,0.4694920420006383 +12,1392.8155520129008,1.2426557214554106,0.03358528976906515,444.5684806731154,0.47945583299951977 +13,1383.647032868345,1.234475662900069,0.03336420710540727,441.6420094542761,0.4762997079997149 +14,1381.6147495768726,1.232662480633317,0.03331520217927884,440.993331247114,0.47560012500252924 +15,1377.525609644332,1.229014192009845,0.033216599784049866,439.6881313414681,0.4741925000016636 +16,1385.5815166921095,1.2362015894868232,0.033410853769914144,442.2594713523535,0.4769656249991385 +17,1383.6618018467698,1.234488839630838,0.03336456323326589,441.6467235187406,0.47630479199870024 +18,1374.9552985030261,1.2267209868248166,0.03315462126553558,438.8677216918945,0.4733077089986182 +19,1371.61443522941,1.2237403029463523,0.0330740622417933,437.8013618946179,0.47215766699810047 +20,1375.2341748666422,1.2269697974504055,0.033161345877037986,438.9567353743518,0.47340370799793163 +21,1379.3660443310175,1.2306562089230462,0.03326097861954179,440.2755739868747,0.4748260419983126 +22,1373.8068562416304,1.2256963584418106,0.03312692860653542,438.5011539647093,0.4729123750003055 +23,1383.064340779556,1.2339557910068137,0.03335015651369767,441.45602177181604,0.4760991250004736 +24,1410.7851087655586,1.2586879753158995,0.03401859392745674,450.3041278177449,0.4856415829999605 +25,1389.1312954040106,1.2393686655722889,0.033496450420872674,443.3925142210916,0.4781875830012723 +26,1378.0240598523594,1.2294589041628439,0.033228619031428215,439.8472301190153,0.4743640839988075 +27,1384.5515748746504,1.2352826859820614,0.03338601854005571,441.93072741471747,0.4766110829987156 +28,1384.6750399681143,1.2353928402695915,0.033388995682961935,441.9701358553671,0.4766535840026336 +29,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.47617083300065133 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e6f9d5269 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777 +1,290.6954782073229,0.0,0.0,60.922386066864476,0.06654662500295672 +2,291.28719908778197,0.0,0.0,61.046395728609,0.06668208300106926 +3,283.328160416027,0.0,0.0,59.378383451046346,0.06486008299907553 +4,288.3902924835214,0.0,0.0,60.439277710699756,0.06601891700120177 +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556 +6,291.3215994250469,0.0,0.0,61.053605165235275,0.06668995799918775 +7,291.49342205874245,0.0,0.0,61.08961482348515,0.06672929200067301 +8,288.8664369502698,0.0,0.0,60.53906549276548,0.06612791700172238 +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085 +10,288.4387063150821,0.0,0.0,60.44942401966714,0.06602999999813619 +11,286.7470829842217,0.0,0.0,60.0949027513009,0.06564274999982445 +12,287.64586027491015,0.0,0.0,60.28326363475572,0.06584850000217557 +13,288.1433001809692,0.0,0.0,60.387514399813654,0.06596237499979907 +14,287.9949615223732,0.0,0.0,60.3564263860497,0.06592841699966812 +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948 +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169 +17,289.2799662185982,0.0,0.0,60.62573072020697,0.06622258299830719 +18,261.67377851069205,0.0,0.0,54.840175211235795,0.05990291599664488 +19,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857 +20,292.3219396351502,0.0,0.0,61.26325105602778,0.06691895800031489 +21,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514 +22,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968009 +23,291.10992044223104,0.0,0.0,61.00924262890388,0.06664149999778601 +24,289.47799864820206,0.0,0.0,60.66723328572497,0.06626791700182366 +25,289.12507512691684,0.0,0.0,60.593269482956494,0.06618712500130641 +26,289.32820096574676,0.0,0.0,60.63583949763187,0.06623362499885843 +27,292.50923477110916,0.0,0.0,61.302503357617404,0.06696183399981237 +28,289.02405823299785,0.0,0.0,60.572098908689014,0.06616399999984424 +29,263.541225849374,0.0,0.0,55.231544724199395,0.06033041599948774 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ee563da28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..3b3680287 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..074b14202 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b1a05f37a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..21e36b672 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..37eb36d54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..66b0b848c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..93f3966a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d3aeb1cba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..471c14ce2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..75e06d99e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2a166240e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..97ef8ea05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..92e884628 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f4b3d5f15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..97bbe3d16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4a697b98e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..bbed7cdd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a28ec4fa8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8d6ce3295 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b41c44ccc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1437.8879309949307,1.7129709058804359,0.0,453.8701147286732,0.48164974999963306 +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.48072195799977635 +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.48270391700134496 +3,1409.2941033224433,1.678906780412161,0.0,444.8444573276378,0.4720716669980902 +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454 +5,1427.6852831409622,1.7008163849612021,0.0,450.6496433329554,0.4782321659986337 +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.47571787500055507 +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874 +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.47593029200288584 +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.47663645899956464 +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318 +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285 +12,1432.0688807504741,1.7060386105646854,0.0,452.03332832471756,0.47970054100005655 +13,1432.8993036323645,1.70702790201473,0.0,452.2954517632362,0.4799787080009992 +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.47813037499872735 +15,1421.5099863905455,1.6934596894631586,0.0,448.7004075238365,0.47616362500048126 +16,1424.2936899173183,1.6967759445406032,0.0,449.57908507014065,0.47709608300283435 +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928 +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.47537295800066204 +19,1423.7101814554428,1.6960808048172757,0.0,449.3949003038402,0.4769006249989616 +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.47774008299893467 +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789 +22,1429.3195086264966,1.7027632548458613,0.0,451.1654875045515,0.47877958299795864 +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727 +24,1429.1426302590605,1.702552537799862,0.0,451.1096557507752,0.47872033399835345 +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349 +26,1429.5686590813752,1.7030600703842593,0.0,451.2441319824019,0.4788630410002952 +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045 +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.47810679100075504 +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.48142695799833746 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..691c9b717 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,307.3038765802161,0.03417525317840482,0.0,65.54813559618044,0.06837695800277288 +1,306.5168191461492,0.034087724549171396,0.0,65.38025568531074,0.068201832997147 +2,302.24090759958057,0.03361220057824517,0.0,64.46820070907424,0.06725041699974099 +3,303.4871256541917,0.033750792443749074,0.0,64.73401990711072,0.06752770800085273 +4,304.6267982623654,0.033877535393946334,0.0,64.97711288558907,0.0677812920002907 +5,302.72534844932665,0.033666075227905545,0.0,64.57153228712284,0.0673582079980406 +6,299.83123330715557,0.03334422078593812,0.0,63.954215467429314,0.06671424999876763 +7,303.47121147155804,0.03374902262806473,0.0,64.73062540062816,0.0675241669996467 +8,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.06870654100202955 +9,323.66148900094566,0.035994382673592715,0.0,69.03722596795083,0.07201662499937811 +10,300.6248433571947,0.033432478131360625,0.0,64.12349305594968,0.06689083300079801 +11,299.8791735922619,0.033349552223338734,0.0,63.96444116436369,0.06672491700010141 +12,304.57567604979374,0.03387185009450553,0.0,64.9662084812616,0.06776991700098733 +13,297.66087840557225,0.03310285569456987,0.0,63.491277222185005,0.06623133299945039 +14,298.37977587069827,0.03318280425608299,0.0,63.64461856316718,0.06639129200266325 +15,301.49691869899425,0.033529461599087436,0.0,64.3095073470497,0.06708487500145566 +16,299.4083997940281,0.03329719748599067,0.0,63.86402477813011,0.06662016700283857 +17,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.06663837499945657 +18,295.95793110997283,0.03291347098642936,0.0,63.128037351971514,0.06585241699940525 +19,295.3365950794061,0.032844372228581636,0.0,62.995505934419576,0.06571416600127122 +20,299.7063333060147,0.03333033066125608,0.0,63.927574208289165,0.06668645899844705 +21,270.8829494812265,0.030124883171844582,0.0,57.77952592359791,0.06027308300326695 +22,301.37520062531866,0.03351592533644558,0.0,64.28354479530263,0.06705779199910467 +23,296.03002353793846,0.03292148838277786,0.0,63.14341471816793,0.06586845799756702 +24,297.14348113691625,0.03304531596273535,0.0,63.3809160165264,0.0661162090000289 +25,303.5991091517296,0.03376324612452509,0.0,64.75790606683913,0.06755262500155368 +26,302.87515563749326,0.03368273527997034,0.0,64.60348626698311,0.06739154099705047 +27,305.92283069102797,0.034021667114215746,0.0,65.2535575250658,0.06806966699878103 +28,290.278120361013,0.03228181943516604,0.0,61.91652967664846,0.06458862499857787 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..af6a8a992 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..960239cef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..abf634112 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fde6cfb38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..86a3125f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..abf8e0f93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..939af3f9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ba403b741 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..27c7165ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7f6a7ae14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..178f243b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6bc26239a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..770aa3995 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..16501371e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c6413aca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6711c8f05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c67282736 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b41c44ccc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1437.8879309949307,1.7129709058804359,0.0,453.8701147286732,0.48164974999963306 +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.48072195799977635 +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.48270391700134496 +3,1409.2941033224433,1.678906780412161,0.0,444.8444573276378,0.4720716669980902 +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454 +5,1427.6852831409622,1.7008163849612021,0.0,450.6496433329554,0.4782321659986337 +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.47571787500055507 +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874 +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.47593029200288584 +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.47663645899956464 +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318 +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285 +12,1432.0688807504741,1.7060386105646854,0.0,452.03332832471756,0.47970054100005655 +13,1432.8993036323645,1.70702790201473,0.0,452.2954517632362,0.4799787080009992 +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.47813037499872735 +15,1421.5099863905455,1.6934596894631586,0.0,448.7004075238365,0.47616362500048126 +16,1424.2936899173183,1.6967759445406032,0.0,449.57908507014065,0.47709608300283435 +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928 +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.47537295800066204 +19,1423.7101814554428,1.6960808048172757,0.0,449.3949003038402,0.4769006249989616 +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.47774008299893467 +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789 +22,1429.3195086264966,1.7027632548458613,0.0,451.1654875045515,0.47877958299795864 +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727 +24,1429.1426302590605,1.702552537799862,0.0,451.1096557507752,0.47872033399835345 +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349 +26,1429.5686590813752,1.7030600703842593,0.0,451.2441319824019,0.4788630410002952 +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045 +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.47810679100075504 +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.48142695799833746 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c4033ec06 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,307.3038765802161,0.03417525317840482,0.0,65.54813559618044,0.06837695800277288 +1,306.5168191461492,0.034087724549171396,0.0,65.38025568531074,0.068201832997147 +2,302.24090759958057,0.03361220057824517,0.0,64.46820070907424,0.06725041699974099 +3,303.4871256541917,0.033750792443749074,0.0,64.73401990711072,0.06752770800085273 +4,304.6267982623654,0.033877535393946334,0.0,64.97711288558907,0.0677812920002907 +5,302.72534844932665,0.033666075227905545,0.0,64.57153228712284,0.0673582079980406 +6,299.83123330715557,0.03334422078593812,0.0,63.954215467429314,0.06671424999876763 +7,303.47121147155804,0.03374902262806473,0.0,64.73062540062816,0.0675241669996467 +8,268.726454855754,0.029885059481289368,0.0,57.31954408511301,0.05979324999862001 +9,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.06870654100202955 +10,323.66148900094566,0.035994382673592715,0.0,69.03722596795083,0.07201662499937811 +11,300.6248433571947,0.033432478131360625,0.0,64.12349305594968,0.06689083300079801 +12,299.8791735922619,0.033349552223338734,0.0,63.96444116436369,0.06672491700010141 +13,304.57567604979374,0.03387185009450553,0.0,64.9662084812616,0.06776991700098733 +14,297.66087840557225,0.03310285569456987,0.0,63.491277222185005,0.06623133299945039 +15,298.37977587069827,0.03318280425608299,0.0,63.64461856316718,0.06639129200266325 +16,301.49691869899425,0.033529461599087436,0.0,64.3095073470497,0.06708487500145566 +17,299.4083997940281,0.03329719748599067,0.0,63.86402477813011,0.06662016700283857 +18,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.06663837499945657 +19,295.95793110997283,0.03291347098642936,0.0,63.128037351971514,0.06585241699940525 +20,295.3365950794061,0.032844372228581636,0.0,62.995505934419576,0.06571416600127122 +21,299.7063333060147,0.03333033066125608,0.0,63.927574208289165,0.06668645899844705 +22,270.8829494812265,0.030124883171844582,0.0,57.77952592359791,0.06027308300326695 +23,301.37520062531866,0.03351592533644558,0.0,64.28354479530263,0.06705779199910467 +24,296.03002353793846,0.03292148838277786,0.0,63.14341471816793,0.06586845799756702 +25,297.14348113691625,0.03304531596273535,0.0,63.3809160165264,0.0661162090000289 +26,303.5991091517296,0.03376324612452509,0.0,64.75790606683913,0.06755262500155368 +27,302.87515563749326,0.03368273527997034,0.0,64.60348626698311,0.06739154099705047 +28,305.92283069102797,0.034021667114215746,0.0,65.2535575250658,0.06806966699878103 +29,290.278120361013,0.03228181943516604,0.0,61.91652967664846,0.06458862499857787 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3cb8af764 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9487501e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..50a467b2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..51f1a3490 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..73f69ca50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e6b6f72a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..15ad6c73d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3383b603f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4c1407998 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b6a31b339 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b3bdfa8ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..76e15625e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..28acac54a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c224c5f61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f9996ab7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..df8cf0183 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..82b79e391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e6b5e44e8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1654.6480123452645,0.8802219605314963,0.0,471.798970844882,0.4858740839990787 +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205 +2,1623.0880335717807,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473 +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468 +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022 +5,1622.4651082793393,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894 +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085 +7,1631.3252487250413,0.8678149660736794,0.0,465.1488218154921,0.47902554199754377 +8,1609.8540869847507,0.8563929669893303,0.0,459.02663030628105,0.47272070799954236 +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.48221845800071605 +10,1634.9563714903923,0.869746611943738,0.0,466.1841840018436,0.4800917920001666 +11,1655.6029712356137,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199 +12,1699.2689617515464,0.9039589361747357,0.0,484.52198978965833,0.4989766670005338 +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.48325170799944317 +14,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.47058733299854794 +15,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844 +16,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.47232133299985435 +17,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.47280387499995413 +18,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575 +19,1625.8359957577081,0.8648948519631798,0.0,463.58364065226436,0.47741366700211074 +20,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766 +21,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042 +22,1610.9837211768179,0.85699389771043,0.0,459.34872917279046,0.47305241599678993 +23,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.47982391600089613 +24,1615.5939308560735,0.8594463877699828,0.0,460.6632638447108,0.47440616699896054 +25,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914 +26,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.47465116700186627 +27,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.47171445899948594 +28,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..81137c08e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.06607441700180061 +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.06428345800304669 +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.06206295800075168 +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.06291587500163587 +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.06268650000129128 +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.06531670799813583 +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.06333020799866063 +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.062225499998021405 +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872 +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.060053624998545274 +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.06235137499970733 +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.06285649999699672 +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.06479045800006134 +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.06724979199861991 +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.06547266599955037 +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676 +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.06306508299894631 +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.06311774999994668 +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361 +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547 +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.06731079199744272 +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.06543129200144904 +22,313.0482616575098,0.8417886858098309,0.0,61.321068112454604,0.06215104200236965 +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.06191041599959135 +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.06318720900162589 +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.06376770799761289 +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.06525949999922886 +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.06756641600077273 +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.06673412499731057 +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.06262804200014216 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..969f314fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2473f6c08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0c22a62ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..289f6b4ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..44599d788 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2dd2fca28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..949943647 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e4f3c32eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..76ce8bb0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..931d2ad83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..74262e4e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..940cb4b74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..baee5e96e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6251f47a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d1a368691 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c7035cd7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..cb5910c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..8270b90c5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1654.6480123452645,0.8802219605314963,0.0,471.798970844882,0.4858740839990787 +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205 +2,1623.0880335717807,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473 +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468 +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022 +5,1622.4651082793393,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894 +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085 +7,1631.3252487250413,0.8678149660736794,0.0,465.1488218154921,0.47902554199754377 +8,1609.8540869847507,0.8563929669893303,0.0,459.02663030628105,0.47272070799954236 +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.48221845800071605 +10,1634.9563714903923,0.869746611943738,0.0,466.1841840018436,0.4800917920001666 +11,1655.6029712356137,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199 +12,1699.2689617515464,0.9039589361747357,0.0,484.52198978965833,0.4989766670005338 +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.48325170799944317 +14,1722.6778540568935,0.916411748449703,0.0,491.19669716904076,0.505850499997905 +15,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.47058733299854794 +16,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844 +17,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.47232133299985435 +18,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.47280387499995413 +19,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575 +20,1625.8359957577081,0.8648948519631798,0.0,463.58364065226436,0.47741366700211074 +21,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766 +22,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042 +23,1610.9837211768179,0.85699389771043,0.0,459.34872917279046,0.47305241599678993 +24,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.47982391600089613 +25,1615.5939308560735,0.8594463877699828,0.0,460.6632638447108,0.47440616699896054 +26,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914 +27,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.47465116700186627 +28,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.47171445899948594 +29,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..81137c08e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.06607441700180061 +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.06428345800304669 +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.06206295800075168 +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.06291587500163587 +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.06268650000129128 +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.06531670799813583 +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.06333020799866063 +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.062225499998021405 +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872 +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.060053624998545274 +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.06235137499970733 +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.06285649999699672 +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.06479045800006134 +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.06724979199861991 +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.06547266599955037 +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676 +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.06306508299894631 +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.06311774999994668 +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361 +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547 +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.06731079199744272 +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.06543129200144904 +22,313.0482616575098,0.8417886858098309,0.0,61.321068112454604,0.06215104200236965 +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.06191041599959135 +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.06318720900162589 +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.06376770799761289 +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.06525949999922886 +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.06756641600077273 +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.06673412499731057 +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.06262804200014216 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..053a6d4b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0af4fdd0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b34ec28ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..786863df6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..080ad6eb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..013bbd87a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..015265af8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..626abffe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e9ccb7800 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7ff6907a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..156ac3653 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a1e0a2976 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a301ac6c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5220c4cca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b09620ac4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a545228ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..09d8caf52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f4287d102 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664 +1,1470.0650690266311,1.8938036315963043,0.0,459.2811985840966,0.4863042079996376 +2,1448.4887603472594,1.8660080648595934,0.0,452.54027730103815,0.4791666669989354 +3,1453.1077990562935,1.8719585173027937,0.0,453.9833682765936,0.48069466600281885 +4,1457.5307279874908,1.8776563323510347,0.0,455.36519017248935,0.4821577910006454 +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206 +6,1458.6824685027595,1.8791400560422022,0.0,455.7250196626634,0.48253879199910443 +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952 +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148 +9,1454.2838469735755,1.873473554877392,0.0,454.3507919426761,0.48108370800036937 +10,1443.3988968004599,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695 +11,1435.4034897523384,1.8491510334973762,0.0,448.45214617728334,0.4748379999982717 +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432 +13,1440.5007836697584,1.8557175957098337,0.0,450.0446547738438,0.4765242079993186 +14,1436.810538132051,1.8509636562087615,0.0,448.891739553057,0.4753034579989617 +15,1432.6827260690823,1.845646023921523,0.0,447.60211876568223,0.47393795900279656 +16,1439.1070875885193,1.8539221740270782,0.0,449.6092329546741,0.47606316699966555 +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986 +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.47661958300159313 +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.47703216599984444 +20,1449.866335125129,1.8677827183576539,0.0,452.97066246455887,0.47962237499814364 +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.48226679200161016 +22,1451.9393114765087,1.8704532192934087,0.0,453.61830662899615,0.4803081249992829 +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702 +24,1439.3600043065803,1.8542479926654818,0.0,449.68824979267697,0.4761468329998024 +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217 +26,1439.6413879935462,1.8546104837275958,0.0,449.7761603482943,0.4762399160026689 +27,1445.2852070324934,1.8618811040676244,0.0,451.53941561325723,0.47810691699851304 +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994 +29,1453.8891033023608,1.8729650284088382,0.0,454.22746519322203,0.4809531249993597 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5805a40f8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,314.6829641824899,0.0,0.0,64.05854106490267,0.06679749999966589 +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907 +2,310.02771031968734,0.0,0.0,63.11089278177239,0.06580933300210745 +3,314.78759077177864,0.0,0.0,64.07983941095024,0.06681970900172018 +4,311.8347742078282,0.0,0.0,63.478748336286124,0.06619291700189933 +5,311.64849188371505,0.0,0.0,63.44082771373234,0.06615337500261376 +6,315.306780557249,0.0,0.0,64.18552845032812,0.06692991700037965 +7,314.38931348373785,0.0,0.0,63.99876396386509,0.06673516700175242 +8,312.3494508567321,0.0,0.0,63.58351865753504,0.06630216700068559 +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392 +10,314.334543400109,0.0,0.0,63.98761467378393,0.06672354100010125 +11,318.13946192397856,0.0,0.0,64.76216416407206,0.06753120799839962 +12,313.69208088661816,0.0,0.0,63.856831580997095,0.06658716599849868 +13,311.3874224274277,0.0,0.0,63.387683024029094,0.06609795799886342 +14,303.1555450520987,0.0,0.0,61.71195819965332,0.06435058400165872 +15,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163 +16,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255 +17,314.2731072568001,0.0,0.0,63.97510840507234,0.06671049999931711 +18,317.19392672743055,0.0,0.0,64.56968598091483,0.06733050000184448 +19,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844 +20,317.1024579588047,0.0,0.0,64.5510661109565,0.06731108399981167 +21,319.67701426612115,0.0,0.0,65.07515651211497,0.06785758299884037 +22,322.2403866640997,0.0,0.0,65.59697025709202,0.06840170799841871 +23,297.71060994609485,0.0,0.0,60.60355819462029,0.06319479200101341 +24,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223008 +25,323.27052670543793,0.0,0.0,65.80667105329528,0.06862037499740836 +26,313.1624892222485,0.0,0.0,63.74902507972117,0.06647475000136183 +27,304.77808852402086,0.0,0.0,62.042251794973076,0.06469500000093831 +28,306.854070382832,0.0,0.0,62.46484972460084,0.06513566700232332 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5f37b1cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..99f923cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..314efcd84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..decc7ddcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..379aef4c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..be6189452 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9b2a844b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..53e7003c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f9dbf57f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8462cfbf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1d46cb1c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fd6b4253e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d0af71c45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9e526e91d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3d69a237c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..93f8f4297 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..08ad2169f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f4287d102 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664 +1,1470.0650690266311,1.8938036315963043,0.0,459.2811985840966,0.4863042079996376 +2,1448.4887603472594,1.8660080648595934,0.0,452.54027730103815,0.4791666669989354 +3,1453.1077990562935,1.8719585173027937,0.0,453.9833682765936,0.48069466600281885 +4,1457.5307279874908,1.8776563323510347,0.0,455.36519017248935,0.4821577910006454 +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206 +6,1458.6824685027595,1.8791400560422022,0.0,455.7250196626634,0.48253879199910443 +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952 +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148 +9,1454.2838469735755,1.873473554877392,0.0,454.3507919426761,0.48108370800036937 +10,1443.3988968004599,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695 +11,1435.4034897523384,1.8491510334973762,0.0,448.45214617728334,0.4748379999982717 +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432 +13,1440.5007836697584,1.8557175957098337,0.0,450.0446547738438,0.4765242079993186 +14,1436.810538132051,1.8509636562087615,0.0,448.891739553057,0.4753034579989617 +15,1432.6827260690823,1.845646023921523,0.0,447.60211876568223,0.47393795900279656 +16,1439.1070875885193,1.8539221740270782,0.0,449.6092329546741,0.47606316699966555 +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986 +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.47661958300159313 +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.47703216599984444 +20,1449.866335125129,1.8677827183576539,0.0,452.97066246455887,0.47962237499814364 +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.48226679200161016 +22,1451.9393114765087,1.8704532192934087,0.0,453.61830662899615,0.4803081249992829 +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702 +24,1439.3600043065803,1.8542479926654818,0.0,449.68824979267697,0.4761468329998024 +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217 +26,1439.6413879935462,1.8546104837275958,0.0,449.7761603482943,0.4762399160026689 +27,1445.2852070324934,1.8618811040676244,0.0,451.53941561325723,0.47810691699851304 +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994 +29,1453.8891033023608,1.8729650284088382,0.0,454.22746519322203,0.4809531249993597 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8351bf99c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,314.6829641824899,0.0,0.0,64.05854106490267,0.06679749999966589 +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907 +2,310.02771031968734,0.0,0.0,63.11089278177239,0.06580933300210745 +3,314.78759077177864,0.0,0.0,64.07983941095024,0.06681970900172018 +4,311.8347742078282,0.0,0.0,63.478748336286124,0.06619291700189933 +5,311.64849188371505,0.0,0.0,63.44082771373234,0.06615337500261376 +6,315.306780557249,0.0,0.0,64.18552845032812,0.06692991700037965 +7,314.38931348373785,0.0,0.0,63.99876396386509,0.06673516700175242 +8,312.3494508567321,0.0,0.0,63.58351865753504,0.06630216700068559 +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392 +10,314.334543400109,0.0,0.0,63.98761467378393,0.06672354100010125 +11,318.13946192397856,0.0,0.0,64.76216416407206,0.06753120799839962 +12,313.69208088661816,0.0,0.0,63.856831580997095,0.06658716599849868 +13,285.36582773445474,0.0,0.0,58.09058854500483,0.0605743749983958 +14,311.3874224274277,0.0,0.0,63.387683024029094,0.06609795799886342 +15,303.1555450520987,0.0,0.0,61.71195819965332,0.06435058400165872 +16,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163 +17,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255 +18,314.2731072568001,0.0,0.0,63.97510840507234,0.06671049999931711 +19,317.19392672743055,0.0,0.0,64.56968598091483,0.06733050000184448 +20,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844 +21,317.1024579588047,0.0,0.0,64.5510661109565,0.06731108399981167 +22,319.67701426612115,0.0,0.0,65.07515651211497,0.06785758299884037 +23,322.2403866640997,0.0,0.0,65.59697025709202,0.06840170799841871 +24,297.71060994609485,0.0,0.0,60.60355819462029,0.06319479200101341 +25,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223008 +26,323.27052670543793,0.0,0.0,65.80667105329528,0.06862037499740836 +27,313.1624892222485,0.0,0.0,63.74902507972117,0.06647475000136183 +28,304.77808852402086,0.0,0.0,62.042251794973076,0.06469500000093831 +29,306.854070382832,0.0,0.0,62.46484972460084,0.06513566700232332 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..86f951193 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..600ed6df5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c33db83da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aadcf912b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9590e9a6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4322b8f90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3c9876d35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..53e7003c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8f522815d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..af6a3d06c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..697e27daf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fa70bb477 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..91106e4cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cd7ad4957 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..de3a5907d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..93f8f4297 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b5e21d715 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ca4418fda --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1433.7973969399607,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367 +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.48023291699792026 +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418 +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.47779070799879264 +4,1456.8702611037359,2.422621340465356,0.0,459.9279319836243,0.4831794579986308 +5,1446.0221676835681,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192 +6,1436.2791326006184,2.3883804690111443,0.0,453.42739765157404,0.47635029099910753 +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637 +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.47561949999726494 +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.47788362500068615 +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.47705091599709704 +11,1439.3127778105872,2.393425100521093,0.0,454.38510693087244,0.4773564169991005 +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.47743229199841153 +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.48321424999812734 +14,1457.2685173856203,2.4232835985903427,0.0,460.05365984904716,0.48331154200059245 +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105 +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717 +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.48130358300113585 +18,1436.3550154988845,2.3885066542546927,0.0,453.45135356954717,0.4763754580017121 +19,1439.5605226171015,2.393837073962569,0.0,454.463318944366,0.47743858299872954 +20,1434.5232971346488,2.3854607001176666,0.0,452.87308763761644,0.47576795799977845 +21,1437.7063170989761,2.3907537260641667,0.0,453.8779539107096,0.47682362500199815 +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702 +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.47891837499992107 +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.48068304199841805 +25,1444.3381928638457,2.401781834869899,0.0,455.9716097338424,0.4790231250008219 +26,1444.1479836100018,2.401465536974459,0.0,455.91156145699836,0.47896004100039136 +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177 +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.47835679199852166 +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.47973041599834687 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6320c9055 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463 +1,295.9081762405739,0.0,0.0,60.860775024151074,0.06369462499787915 +2,308.44623652276385,0.0,0.0,63.439534677798584,0.06639345900111948 +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023004 +4,312.04164307210647,0.0,0.0,64.179018229419,0.06716737500028103 +5,301.9526595528672,0.0,0.0,62.10397128753395,0.06499570799860521 +6,311.28555013052846,0.0,0.0,64.02350916914445,0.06700462499793503 +7,313.4765936255198,0.0,0.0,64.47415100983623,0.06747624999843538 +8,311.56042418797625,0.0,0.0,64.0800437616753,0.06706379200113588 +9,309.8811870761772,0.0,0.0,63.73466745821582,0.06670233399927383 +10,318.13877646307776,0.0,0.0,65.43304327298002,0.06847979099984514 +11,308.99326684329253,0.0,0.0,63.55204488178166,0.06651120799870114 +12,310.2603949888832,0.0,0.0,63.8126608673733,0.06678395900235046 +13,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439 +14,285.62465270443886,0.0,0.0,58.74571615575587,0.061481083001126535 +15,298.20878469344336,0.0,0.0,61.3339515860414,0.06418983399998979 +16,295.5945893229462,0.0,0.0,60.79627818230397,0.06362712500049383 +17,310.5683652227515,0.0,0.0,63.87600250042894,0.06685025000115274 +18,309.63263576797266,0.0,0.0,63.68354678475968,0.06664883300254587 +19,299.539786989639,0.0,0.0,61.60770485752767,0.06447633399875485 +20,309.8449875242504,0.0,0.0,63.727222132392846,0.06669454199800384 +21,307.9365578666852,0.0,0.0,63.334706759840024,0.06628374999854714 +22,309.15257829195724,0.0,0.0,63.584811189083936,0.06654549999802839 +23,309.6756087808788,0.0,0.0,63.69238523898497,0.06665808300022036 +24,311.4467942171909,0.0,0.0,64.05667297085827,0.06703933300013887 +25,320.30833809941186,0.0,0.0,65.87926684249236,0.06894679200195242 +26,301.0930039690129,0.0,0.0,61.92716202950021,0.06481066600099439 +27,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098 +28,307.7433743808223,0.0,0.0,63.29497383721228,0.06624216699856333 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5b16fcfbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0f7ba9ce5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..744017ce7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1339ce1ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..269036a3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..40cadce9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..940d436ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a53ed159d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7ac06b698 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..95469f1a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7a7d88e40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6c576f0bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..797813e92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0dafdca47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a71a3ec98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..354f66ead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..eaf0d8b55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ca4418fda --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1433.7973969399607,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367 +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.48023291699792026 +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418 +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.47779070799879264 +4,1456.8702611037359,2.422621340465356,0.0,459.9279319836243,0.4831794579986308 +5,1446.0221676835681,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192 +6,1436.2791326006184,2.3883804690111443,0.0,453.42739765157404,0.47635029099910753 +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637 +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.47561949999726494 +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.47788362500068615 +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.47705091599709704 +11,1439.3127778105872,2.393425100521093,0.0,454.38510693087244,0.4773564169991005 +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.47743229199841153 +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.48321424999812734 +14,1457.2685173856203,2.4232835985903427,0.0,460.05365984904716,0.48331154200059245 +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105 +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717 +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.48130358300113585 +18,1436.3550154988845,2.3885066542546927,0.0,453.45135356954717,0.4763754580017121 +19,1439.5605226171015,2.393837073962569,0.0,454.463318944366,0.47743858299872954 +20,1434.5232971346488,2.3854607001176666,0.0,452.87308763761644,0.47576795799977845 +21,1437.7063170989761,2.3907537260641667,0.0,453.8779539107096,0.47682362500199815 +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702 +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.47891837499992107 +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.48068304199841805 +25,1444.3381928638457,2.401781834869899,0.0,455.9716097338424,0.4790231250008219 +26,1444.1479836100018,2.401465536974459,0.0,455.91156145699836,0.47896004100039136 +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177 +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.47835679199852166 +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.47973041599834687 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..4ad56c494 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463 +1,295.9081762405739,0.0,0.0,60.860775024151074,0.06369462499787915 +2,308.44623652276385,0.0,0.0,63.439534677798584,0.06639345900111948 +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023004 +4,280.77218532111357,0.0,0.0,57.74768720812555,0.06043658300040988 +5,312.04164307210647,0.0,0.0,64.179018229419,0.06716737500028103 +6,301.9526595528672,0.0,0.0,62.10397128753395,0.06499570799860521 +7,311.28555013052846,0.0,0.0,64.02350916914445,0.06700462499793503 +8,313.4765936255198,0.0,0.0,64.47415100983623,0.06747624999843538 +9,311.56042418797625,0.0,0.0,64.0800437616753,0.06706379200113588 +10,309.8811870761772,0.0,0.0,63.73466745821582,0.06670233399927383 +11,318.13877646307776,0.0,0.0,65.43304327298002,0.06847979099984514 +12,308.99326684329253,0.0,0.0,63.55204488178166,0.06651120799870114 +13,310.2603949888832,0.0,0.0,63.8126608673733,0.06678395900235046 +14,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439 +15,285.62465270443886,0.0,0.0,58.74571615575587,0.061481083001126535 +16,298.20878469344336,0.0,0.0,61.3339515860414,0.06418983399998979 +17,295.5945893229462,0.0,0.0,60.79627818230397,0.06362712500049383 +18,310.5683652227515,0.0,0.0,63.87600250042894,0.06685025000115274 +19,309.63263576797266,0.0,0.0,63.68354678475968,0.06664883300254587 +20,299.539786989639,0.0,0.0,61.60770485752767,0.06447633399875485 +21,309.8449875242504,0.0,0.0,63.727222132392846,0.06669454199800384 +22,307.9365578666852,0.0,0.0,63.334706759840024,0.06628374999854714 +23,309.15257829195724,0.0,0.0,63.584811189083936,0.06654549999802839 +24,309.6756087808788,0.0,0.0,63.69238523898497,0.06665808300022036 +25,311.4467942171909,0.0,0.0,64.05667297085827,0.06703933300013887 +26,320.30833809941186,0.0,0.0,65.87926684249236,0.06894679200195242 +27,301.0930039690129,0.0,0.0,61.92716202950021,0.06481066600099439 +28,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098 +29,307.7433743808223,0.0,0.0,63.29497383721228,0.06624216699856333 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ea8cd1108 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..aab5e6944 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f40742b24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5591b6d29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..26181556a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b0363c73c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..71c6c5bd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a53ed159d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ff7ebb13f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..28267ee0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..156772bf2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..05dbe3e92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..52a8d0dcd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ddd9dce51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..43d6309c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..354f66ead Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d6df9e1dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..827df17b9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491 +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846 +2,1429.4735844199126,2.1692569511193316,0.0,450.17087713305636,0.47823395899831667 +3,1426.3045481635716,2.1644478703483796,0.0,449.17288189429684,0.4771737500013842 +4,1432.4783415347592,2.1738167347549635,0.0,451.11713746322613,0.47923920799803454 +5,1436.4295181245916,2.1798127303270483,0.0,452.36144491356237,0.4805610839975998 +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.47851991599964094 +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575 +8,1422.6951236106665,2.158970490852691,0.0,448.03619924787614,0.47596620799959055 +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833 +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044 +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324 +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295 +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374 +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455 +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.47916916599933757 +16,1432.7423778229897,2.174217415508938,0.0,451.2002879661548,0.47932754199791816 +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342 +18,1421.4663687712782,2.1571058289200638,0.0,447.64923886619596,0.47555512499820907 +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355 +20,1425.254760753872,2.1628547953447503,0.0,448.84228206777436,0.47682254100072896 +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392 +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321 +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.47887908299890114 +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149 +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.47725045799961663 +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.47836816600101884 +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.47487862500202027 +28,1436.3390958497594,2.1796755125775538,0.0,452.33296906397885,0.48053083299964783 +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..602021a0a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,313.9495430059727,0.0,0.0,64.80389868724639,0.06821341600152664 +1,308.3794199438781,0.0,0.0,63.65414166853778,0.06700316699789255 +2,305.034770594531,0.0,0.0,62.96375583295359,0.06627645800108439 +3,308.9656537375239,0.0,0.0,63.77514912408851,0.06713054099964211 +4,308.0823679620422,0.0,0.0,63.592825680142255,0.06693862500105752 +5,309.16222020810307,0.0,0.0,63.81572339447207,0.06717324999772245 +6,305.2121586167888,0.0,0.0,63.00037138369676,0.06631500000003143 +7,305.6986801043409,0.0,0.0,63.100796722388495,0.06642070900124963 +8,307.5666990894399,0.0,0.0,63.48638388361557,0.06682658299905597 +9,305.4478414091471,0.0,0.0,63.04901985010978,0.06636620800054516 +10,304.1035409753827,0.0,0.0,62.77153605994154,0.06607412499943166 +11,309.41132839650345,0.0,0.0,63.86714306417025,0.06722737500240328 +12,308.8985360500407,0.0,0.0,63.76129502582119,0.06711595799788483 +13,307.0985920540554,0.0,0.0,63.38975956428898,0.06672487499963609 +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564 +15,307.8050697237094,0.0,0.0,63.53558716094896,0.06687837500066962 +16,307.06369159998235,0.0,0.0,63.38255558664265,0.06671729200024856 +17,306.8525537307586,0.0,0.0,63.338973560833,0.06667141700017964 +18,308.0434357367305,0.0,0.0,63.584789484387315,0.06693016599820112 +19,307.850325708721,0.0,0.0,63.54492867563824,0.06688820799899986 +20,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821 +21,307.0828700483037,0.0,0.0,63.38651430628306,0.06672145899938187 +22,304.66063198848303,0.0,0.0,62.886528008096214,0.06619516700084205 +23,309.76916966813064,0.0,0.0,63.94100687454759,0.06730512499780161 +24,310.62733522529624,0.0,0.0,64.11814512832865,0.06749158299862756 +25,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051 +26,305.0623853492818,0.0,0.0,62.96945593288687,0.06628245799947763 +27,302.2746382953192,0.0,0.0,62.3940230912878,0.06567675000042072 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7ea22272d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..944f26ec1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..763ef4259 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..de73f531e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0ac09b540 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4bbab392e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e2ddf2e65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c03029d9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f17b4ffcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..018fc506c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4625b8ae7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3da6397d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f7b65e6ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a4aef2ba6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9d1a787d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..dc92ff28a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..827372f37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..827df17b9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491 +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846 +2,1429.4735844199126,2.1692569511193316,0.0,450.17087713305636,0.47823395899831667 +3,1426.3045481635716,2.1644478703483796,0.0,449.17288189429684,0.4771737500013842 +4,1432.4783415347592,2.1738167347549635,0.0,451.11713746322613,0.47923920799803454 +5,1436.4295181245916,2.1798127303270483,0.0,452.36144491356237,0.4805610839975998 +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.47851991599964094 +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575 +8,1422.6951236106665,2.158970490852691,0.0,448.03619924787614,0.47596620799959055 +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833 +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044 +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324 +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295 +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374 +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455 +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.47916916599933757 +16,1432.7423778229897,2.174217415508938,0.0,451.2002879661548,0.47932754199791816 +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342 +18,1421.4663687712782,2.1571058289200638,0.0,447.64923886619596,0.47555512499820907 +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355 +20,1425.254760753872,2.1628547953447503,0.0,448.84228206777436,0.47682254100072896 +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392 +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321 +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.47887908299890114 +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149 +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.47725045799961663 +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.47836816600101884 +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.47487862500202027 +28,1436.3390958497594,2.1796755125775538,0.0,452.33296906397885,0.48053083299964783 +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f590b4715 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,313.9495430059727,0.0,0.0,64.80389868724639,0.06821341600152664 +1,308.3794199438781,0.0,0.0,63.65414166853778,0.06700316699789255 +2,305.034770594531,0.0,0.0,62.96375583295359,0.06627645800108439 +3,308.9656537375239,0.0,0.0,63.77514912408851,0.06713054099964211 +4,308.0823679620422,0.0,0.0,63.592825680142255,0.06693862500105752 +5,309.16222020810307,0.0,0.0,63.81572339447207,0.06717324999772245 +6,305.2121586167888,0.0,0.0,63.00037138369676,0.06631500000003143 +7,305.6986801043409,0.0,0.0,63.100796722388495,0.06642070900124963 +8,307.5666990894399,0.0,0.0,63.48638388361557,0.06682658299905597 +9,305.4478414091471,0.0,0.0,63.04901985010978,0.06636620800054516 +10,304.1035409753827,0.0,0.0,62.77153605994154,0.06607412499943166 +11,309.41132839650345,0.0,0.0,63.86714306417025,0.06722737500240328 +12,308.8985360500407,0.0,0.0,63.76129502582119,0.06711595799788483 +13,307.0985920540554,0.0,0.0,63.38975956428898,0.06672487499963609 +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564 +15,282.07808492211666,0.0,0.0,58.22515128438192,0.061288541997782886 +16,307.8050697237094,0.0,0.0,63.53558716094896,0.06687837500066962 +17,307.06369159998235,0.0,0.0,63.38255558664265,0.06671729200024856 +18,306.8525537307586,0.0,0.0,63.338973560833,0.06667141700017964 +19,308.0434357367305,0.0,0.0,63.584789484387315,0.06693016599820112 +20,307.850325708721,0.0,0.0,63.54492867563824,0.06688820799899986 +21,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821 +22,307.0828700483037,0.0,0.0,63.38651430628306,0.06672145899938187 +23,304.66063198848303,0.0,0.0,62.886528008096214,0.06619516700084205 +24,309.76916966813064,0.0,0.0,63.94100687454759,0.06730512499780161 +25,310.62733522529624,0.0,0.0,64.11814512832865,0.06749158299862756 +26,284.30241259877437,0.0,0.0,58.6842859084531,0.06177183299951139 +27,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051 +28,305.0623853492818,0.0,0.0,62.96945593288687,0.06628245799947763 +29,302.2746382953192,0.0,0.0,62.3940230912878,0.06567675000042072 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..324b839df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a9d4c83a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ef36137f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ecca3df8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d0283f3f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0a2a398f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7d4cd27c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c03029d9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e3245a280 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..70f96895d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e24504386 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..af3ce1be2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ca5a4b894 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1c19b7b21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..4b171431b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..dc92ff28a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8c3c63d86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..039b34722 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169 +1,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.47410083299837424 +2,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305 +3,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.47554433299956145 +4,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.47543012499954784 +5,1411.741753318708,1.2684712623217371,0.0,446.56864598263684,0.4759500830004981 +6,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337 +7,1411.2333039163964,1.2680144128634983,0.0,446.4078109286284,0.4757786660011334 +8,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134 +9,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352 +10,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.47373241600143956 +11,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283 +12,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.47668849999899976 +13,1413.72623564537,1.2702543496293404,0.0,447.19638656161356,0.4766191250018892 +14,1409.9204124898235,1.2668347601109737,0.0,445.9925110727528,0.4753360419999808 +15,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.47400179200121784 +16,1414.1821574059143,1.2706640022090405,0.0,447.3406058303301,0.47677283300072304 +17,1407.8358224333165,1.2649617244979199,0.0,445.3331039561361,0.4746332499998971 +18,1408.2643072663307,1.265346724584332,0.0,445.4686442497156,0.47477770800105645 +19,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618 +20,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096 +21,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007 +22,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.47573491600269335 +23,1407.3231699892026,1.2645010985432161,0.0,445.1709393766091,0.47446041600051103 +24,1412.2315426385105,1.2689113454143433,0.0,446.7235783935022,0.47611520899954485 +25,1409.2195337686405,1.2662050100068178,0.0,445.7708058913476,0.47509974999775295 +26,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464 +27,1411.5918379108589,1.2683365610662214,0.0,446.52122405115557,0.47589954100112664 +28,1408.3419226332815,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d0bef0448 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,290.8292506484409,0.0,0.0,60.364491781569754,0.06433691699930932 +1,298.573843284156,0.0,0.0,61.97195869718392,0.06605016699904809 +2,297.01505218375894,0.0,0.0,61.64841616368942,0.06570533299964154 +3,294.3421743552695,0.0,0.0,61.09363389419194,0.06511404199773096 +4,296.3946304128305,0.0,0.0,61.519641479544646,0.06556808399909642 +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186008 +6,295.0897326586194,0.0,0.0,61.24879702499188,0.06527941599779297 +7,296.7668048214944,0.0,0.0,61.59688996463688,0.06565041599969845 +8,294.83998000542607,0.0,0.0,61.196958387896395,0.06522416599909775 +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097 +10,296.16597000453845,0.0,0.0,61.47218074680768,0.06551750000289758 +11,296.4579116370621,0.0,0.0,61.532776124466146,0.06558208299975377 +12,291.6238980614277,0.0,0.0,60.52942872351605,0.06451270799880149 +13,293.1612172147117,0.0,0.0,60.84851454169682,0.06485279199841898 +14,300.82349771584455,0.0,0.0,62.43889675843551,0.06654783300109557 +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836 +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348 +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185 +18,296.53155816102924,0.0,0.0,61.54806219002126,0.06559837500026333 +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737 +20,295.3240436061412,0.0,0.0,61.29743058311739,0.06533124999987194 +21,296.04222377263164,0.0,0.0,61.44649599060698,0.06549012500181561 +22,295.47999775871773,0.0,0.0,61.3298004122887,0.06536575000063749 +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412 +24,296.91447306566766,0.0,0.0,61.627539971443,0.06568308300120407 +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114 +26,294.6706544772291,0.0,0.0,61.1618131972649,0.06518670799778192 +27,297.56861257061263,0.0,0.0,61.763313105273966,0.06582779100062908 +28,295.9380689842249,0.0,0.0,61.42487763256778,0.06546708399764611 +29,299.8657403365678,0.0,0.0,62.240104727299766,0.06633595899984357 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..bd104001a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f22fbe228 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0ec7aa77e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2251737ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7c287ea0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b40e3dc32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..62238dccf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ea68f56b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..711c30abd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..26fcda9d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f712fdf47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..982a727c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..344e862e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c0cfa3e05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0d071b8d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7d17435f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..18a12e345 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7bebb9f3f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169 +1,1429.6826668576925,1.2845914437858772,0.0,452.24379828861754,0.4819986250004149 +2,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.47410083299837424 +3,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305 +4,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.47554433299956145 +5,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.47543012499954784 +6,1411.741753318708,1.2684712623217371,0.0,446.56864598263684,0.4759500830004981 +7,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337 +8,1411.2333039163964,1.2680144128634983,0.0,446.4078109286284,0.4757786660011334 +9,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134 +10,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352 +11,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.47373241600143956 +12,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283 +13,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.47668849999899976 +14,1413.72623564537,1.2702543496293404,0.0,447.19638656161356,0.4766191250018892 +15,1409.9204124898235,1.2668347601109737,0.0,445.9925110727528,0.4753360419999808 +16,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.47400179200121784 +17,1414.1821574059143,1.2706640022090405,0.0,447.3406058303301,0.47677283300072304 +18,1407.8358224333165,1.2649617244979199,0.0,445.3331039561361,0.4746332499998971 +19,1408.2643072663307,1.265346724584332,0.0,445.4686442497156,0.47477770800105645 +20,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618 +21,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096 +22,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007 +23,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.47573491600269335 +24,1407.3231699892026,1.2645010985432161,0.0,445.1709393766091,0.47446041600051103 +25,1412.2315426385105,1.2689113454143433,0.0,446.7235783935022,0.47611520899954485 +26,1409.2195337686405,1.2662050100068178,0.0,445.7708058913476,0.47509974999775295 +27,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464 +28,1411.5918379108589,1.2683365610662214,0.0,446.52122405115557,0.47589954100112664 +29,1408.3419226332815,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d0bef0448 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,290.8292506484409,0.0,0.0,60.364491781569754,0.06433691699930932 +1,298.573843284156,0.0,0.0,61.97195869718392,0.06605016699904809 +2,297.01505218375894,0.0,0.0,61.64841616368942,0.06570533299964154 +3,294.3421743552695,0.0,0.0,61.09363389419194,0.06511404199773096 +4,296.3946304128305,0.0,0.0,61.519641479544646,0.06556808399909642 +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186008 +6,295.0897326586194,0.0,0.0,61.24879702499188,0.06527941599779297 +7,296.7668048214944,0.0,0.0,61.59688996463688,0.06565041599969845 +8,294.83998000542607,0.0,0.0,61.196958387896395,0.06522416599909775 +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097 +10,296.16597000453845,0.0,0.0,61.47218074680768,0.06551750000289758 +11,296.4579116370621,0.0,0.0,61.532776124466146,0.06558208299975377 +12,291.6238980614277,0.0,0.0,60.52942872351605,0.06451270799880149 +13,293.1612172147117,0.0,0.0,60.84851454169682,0.06485279199841898 +14,300.82349771584455,0.0,0.0,62.43889675843551,0.06654783300109557 +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836 +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348 +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185 +18,296.53155816102924,0.0,0.0,61.54806219002126,0.06559837500026333 +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737 +20,295.3240436061412,0.0,0.0,61.29743058311739,0.06533124999987194 +21,296.04222377263164,0.0,0.0,61.44649599060698,0.06549012500181561 +22,295.47999775871773,0.0,0.0,61.3298004122887,0.06536575000063749 +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412 +24,296.91447306566766,0.0,0.0,61.627539971443,0.06568308300120407 +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114 +26,294.6706544772291,0.0,0.0,61.1618131972649,0.06518670799778192 +27,297.56861257061263,0.0,0.0,61.763313105273966,0.06582779100062908 +28,295.9380689842249,0.0,0.0,61.42487763256778,0.06546708399764611 +29,299.8657403365678,0.0,0.0,62.240104727299766,0.06633595899984357 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5c8ef17fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..55fe96900 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d740f0e35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..22e91b041 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5ab4dd37a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..40be7b3be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..08c7c7a2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a5d9cb9ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..561c71aaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ded9385ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..26d823b84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..356080e05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ff469a828 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..55df67859 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a77e075ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b7f33c002 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..3e32429cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4ac4418f2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.47769329199945787 +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947 +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.47163341700070305 +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077 +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674 +5,1494.6969020232561,2.327463254474083,0.0,452.2926092944422,0.4755619579991617 +6,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.47576145799757796 +7,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.47533054200175684 +8,1496.9221576047012,2.3309283052081926,0.0,452.96596765352916,0.47626995899918256 +9,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.47770562499863445 +10,1500.1318233802979,2.335926227624257,0.0,453.93720677675384,0.4772911660002137 +11,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286 +12,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.47541054199973587 +13,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702 +14,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234 +15,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261 +16,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572 +17,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218 +18,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491 +19,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127 +20,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458 +21,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.47655445900090854 +22,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.47588645800351514 +23,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.47706579100122326 +24,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.47472345900314394 +25,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.47903854200194473 +26,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.47469966700009536 +27,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353 +28,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.47531058300228324 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..798fd92d4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,297.8349870577906,0.0,0.0,62.26538914028103,0.06615937500100699 +1,297.48685086603774,0.0,0.0,62.192607780147874,0.06608204200165346 +2,295.90878769905953,0.0,0.0,61.86269785871619,0.06573149999894667 +3,300.2289979376498,0.0,0.0,62.76588110904888,0.06669116700140876 +4,297.55137488588906,0.0,0.0,62.20609717319946,0.06609637500150711 +5,295.72984193562934,0.0,0.0,61.82528745336033,0.06569175000186078 +6,296.86091429487476,0.0,0.0,62.061749466403036,0.06594300000142539 +7,297.5283032487058,0.0,0.0,62.201273816207355,0.06609124999886262 +8,297.3067796489023,0.0,0.0,62.15496208741491,0.06604204200266395 +9,294.7674017488792,0.0,0.0,61.624079686119025,0.06547795899678022 +10,294.9677264979095,0.0,0.0,61.665959582688664,0.06552245800048695 +11,291.51804808384634,0.0,0.0,60.94476973530921,0.06475616600073408 +12,298.35756724728503,0.0,0.0,62.3746397665332,0.06627545800074586 +13,290.0624738641291,0.0,0.0,60.640467355966294,0.06443283299813629 +14,292.77630024929647,0.0,0.0,61.2078199615177,0.06503566700121155 +15,297.2189949149903,0.0,0.0,62.13660980895493,0.06602254199970048 +16,294.33335357686957,0.0,0.0,61.533337565447475,0.06538154199733981 +17,295.53495085809004,0.0,0.0,61.784543520275676,0.06564845800312469 +18,292.72958977705207,0.0,0.0,61.19805466913229,0.06502529100180254 +19,295.4385362100208,0.0,0.0,61.76438707176652,0.06562704099997063 +20,295.95718184808175,0.0,0.0,61.872815140606896,0.06574225000076694 +21,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504 +22,297.1503427630479,0.0,0.0,62.12225738851488,0.06600729199999478 +23,298.31724030194476,0.0,0.0,62.366209014426964,0.06626650000180234 +24,299.6462019297127,0.0,0.0,62.64404176242917,0.06656170800124528 +25,295.93523566460374,0.0,0.0,61.8682270709919,0.06573737500002608 +26,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278 +27,296.78419945940794,0.0,0.0,62.04571146116275,0.06592595900292508 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..fbbbdf4bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2657aa530 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f4587ad8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6e36a5277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2c0bc5078 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..126c9baf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ba0ecd2fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..026fcca31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..23967e1df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5ed746179 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7d216253f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..30bc7c7f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..eb09320c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4a73a79b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a92f237ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..957154010 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..af189e442 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..acbe27cbe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.47769329199945787 +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947 +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.47163341700070305 +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077 +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674 +5,1542.8219147718562,2.402400988433286,0.0,466.8551520808284,0.4908737080004357 +6,1494.6969020232561,2.327463254474083,0.0,452.2926092944422,0.4755619579991617 +7,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.47576145799757796 +8,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.47533054200175684 +9,1496.9221576047012,2.3309283052081926,0.0,452.96596765352916,0.47626995899918256 +10,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.47770562499863445 +11,1500.1318233802979,2.335926227624257,0.0,453.93720677675384,0.4772911660002137 +12,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286 +13,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.47541054199973587 +14,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702 +15,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234 +16,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261 +17,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572 +18,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218 +19,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491 +20,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127 +21,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458 +22,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.47655445900090854 +23,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.47588645800351514 +24,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.47706579100122326 +25,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.47472345900314394 +26,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.47903854200194473 +27,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.47469966700009536 +28,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353 +29,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.47531058300228324 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..031a873df --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,297.8349870577906,0.0,0.0,62.26538914028103,0.06615937500100699 +1,297.48685086603774,0.0,0.0,62.192607780147874,0.06608204200165346 +2,295.90878769905953,0.0,0.0,61.86269785871619,0.06573149999894667 +3,268.1761314081655,0.0,0.0,56.064908106395634,0.0595711250025488 +4,300.2289979376498,0.0,0.0,62.76588110904888,0.06669116700140876 +5,297.55137488588906,0.0,0.0,62.20609717319946,0.06609637500150711 +6,295.72984193562934,0.0,0.0,61.82528745336033,0.06569175000186078 +7,296.86091429487476,0.0,0.0,62.061749466403036,0.06594300000142539 +8,297.5283032487058,0.0,0.0,62.201273816207355,0.06609124999886262 +9,297.3067796489023,0.0,0.0,62.15496208741491,0.06604204200266395 +10,294.7674017488792,0.0,0.0,61.624079686119025,0.06547795899678022 +11,294.9677264979095,0.0,0.0,61.665959582688664,0.06552245800048695 +12,291.51804808384634,0.0,0.0,60.94476973530921,0.06475616600073408 +13,298.35756724728503,0.0,0.0,62.3746397665332,0.06627545800074586 +14,290.0624738641291,0.0,0.0,60.640467355966294,0.06443283299813629 +15,292.77630024929647,0.0,0.0,61.2078199615177,0.06503566700121155 +16,297.2189949149903,0.0,0.0,62.13660980895493,0.06602254199970048 +17,294.33335357686957,0.0,0.0,61.533337565447475,0.06538154199733981 +18,295.53495085809004,0.0,0.0,61.784543520275676,0.06564845800312469 +19,292.72958977705207,0.0,0.0,61.19805466913229,0.06502529100180254 +20,295.4385362100208,0.0,0.0,61.76438707176652,0.06562704099997063 +21,295.95718184808175,0.0,0.0,61.872815140606896,0.06574225000076694 +22,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504 +23,297.1503427630479,0.0,0.0,62.12225738851488,0.06600729199999478 +24,298.31724030194476,0.0,0.0,62.366209014426964,0.06626650000180234 +25,299.6462019297127,0.0,0.0,62.64404176242917,0.06656170800124528 +26,273.66342822977543,0.0,0.0,57.212082504209,0.060790042000007816 +27,295.93523566460374,0.0,0.0,61.8682270709919,0.06573737500002608 +28,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278 +29,296.78419945940794,0.0,0.0,62.04571146116275,0.06592595900292508 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..898112304 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..00bba0be1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7bcea9f39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1cb6d9d6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5ba01e89a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4bd365cbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..314ebdae2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0f7610cc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..013ee1cb7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4bf597256 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3b95a1bc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..30f6524d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..08d003ea2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..674f85e69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..24a2eca5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..896072512 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2b5c12735 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..9d83b8ba2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1409.9511145646977,0.7683839360010437,0.0,445.2951949112135,0.47600729199984926 +1,1399.6801275675625,0.7627865352585996,0.0,442.0513794983424,0.47253975000057835 +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818 +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.47168225000132225 +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.47229404199970304 +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029 +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.47408795800220105 +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738 +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.47625991700260784 +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575 +10,1410.2225082204634,0.7685318379554227,0.0,445.38090730903605,0.4760989159985911 +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956 +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474 +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319 +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.47672379199866555 +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965 +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252 +17,1403.882638711802,0.7650767863323724,0.0,443.37862978366053,0.4739585409988649 +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.47295758399923216 +19,1405.5357040683703,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616 +20,1402.8303781077661,0.764503333723785,0.0,443.046301530623,0.47360329200091655 +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547 +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724 +23,1412.2901343112183,0.7696586363652266,0.0,446.033911483135,0.4767969579988858 +24,1413.5074099938827,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596 +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379 +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.47571483299907413 +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383 +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697 +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.47388670799773536 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..92c2602d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.06704020799952559 +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.06567166599779739 +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.06594366699937382 +3,298.06491667401536,0.7076724986042197,0.0,63.117647137414444,0.06624195800031885 +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.06805704200087348 +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566 +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484 +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987 +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.06527170800109161 +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.06573462499727611 +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.06521462500313646 +11,299.57754690862345,0.7112638196812994,0.0,63.437958774432076,0.06657812499906868 +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.06570916700002272 +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.06623258400213672 +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.06256679199941573 +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462 +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.06571920799979125 +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.06522804199994425 +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.06553108300067834 +19,295.06703650881764,0.7005548633900702,0.0,62.482821863314356,0.06557570900258725 +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.06623437500093132 +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.06470404200081248 +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.06382191699958639 +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051 +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.06500908300222363 +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.06647345800229232 +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.06352195799991023 +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474 +28,296.9865061319233,0.7051121117886252,0.0,62.889285018099756,0.06600229200194008 +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.06482454099750612 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e3fee6bc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..106af5f17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..407237901 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aaf4671bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..641e4be14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8910ab155 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6b77f0798 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5add59730 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e3622f1a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ec5d1f59c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..77e8f2773 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..49c15d500 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fe716aeb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e5fccf6f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..68c29253e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8af0982f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9095d6c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9d83b8ba2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1409.9511145646977,0.7683839360010437,0.0,445.2951949112135,0.47600729199984926 +1,1399.6801275675625,0.7627865352585996,0.0,442.0513794983424,0.47253975000057835 +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818 +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.47168225000132225 +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.47229404199970304 +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029 +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.47408795800220105 +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738 +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.47625991700260784 +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575 +10,1410.2225082204634,0.7685318379554227,0.0,445.38090730903605,0.4760989159985911 +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956 +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474 +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319 +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.47672379199866555 +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965 +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252 +17,1403.882638711802,0.7650767863323724,0.0,443.37862978366053,0.4739585409988649 +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.47295758399923216 +19,1405.5357040683703,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616 +20,1402.8303781077661,0.764503333723785,0.0,443.046301530623,0.47360329200091655 +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547 +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724 +23,1412.2901343112183,0.7696586363652266,0.0,446.033911483135,0.4767969579988858 +24,1413.5074099938827,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596 +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379 +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.47571483299907413 +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383 +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697 +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.47388670799773536 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..92c2602d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.06704020799952559 +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.06567166599779739 +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.06594366699937382 +3,298.06491667401536,0.7076724986042197,0.0,63.117647137414444,0.06624195800031885 +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.06805704200087348 +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566 +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484 +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987 +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.06527170800109161 +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.06573462499727611 +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.06521462500313646 +11,299.57754690862345,0.7112638196812994,0.0,63.437958774432076,0.06657812499906868 +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.06570916700002272 +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.06623258400213672 +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.06256679199941573 +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462 +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.06571920799979125 +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.06522804199994425 +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.06553108300067834 +19,295.06703650881764,0.7005548633900702,0.0,62.482821863314356,0.06557570900258725 +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.06623437500093132 +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.06470404200081248 +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.06382191699958639 +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051 +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.06500908300222363 +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.06647345800229232 +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.06352195799991023 +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474 +28,296.9865061319233,0.7051121117886252,0.0,62.889285018099756,0.06600229200194008 +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.06482454099750612 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e3fee6bc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..106af5f17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..407237901 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aaf4671bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..641e4be14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8910ab155 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6b77f0798 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5add59730 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e3622f1a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ec5d1f59c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..77e8f2773 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..49c15d500 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fe716aeb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e5fccf6f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..68c29253e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8af0982f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9095d6c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..8e9752404 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1398.8862502594493,0.16706311059539128,0.0,440.94637410547574,0.47696083299888414 +1,1396.9275519023229,0.16682919147566377,0.0,440.32896798086693,0.4762929999997141 +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.47589854200123227 +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526 +4,1397.991833947257,0.16695629421110386,0.0,440.6644429407875,0.47665587500159745 +5,1392.2824223679588,0.1662744431614349,0.0,438.86476528029124,0.4747092079996946 +6,1389.60246999989,0.16595438770390641,0.0,438.0200109056906,0.4737954579977668 +7,1396.1068221654489,0.16673117516963823,0.0,440.0702637427432,0.4760131659968465 +8,1391.825623572621,0.16621988959952005,0.0,438.7207766089732,0.47455345900016255 +9,1396.1552182260154,0.16673695490792453,0.0,440.08551878397606,0.47602966699923854 +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643 +11,1398.5840366906104,0.16702701849793516,0.0,440.8511126234501,0.4768577909999294 +12,1403.2547089972113,0.16758481727819183,0.0,442.3233667240595,0.4784502920010709 +13,1396.9105644487831,0.16682716273542206,0.0,440.323613323873,0.47628720799912116 +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.47528874999989057 +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325 +16,1395.3931497605902,0.16664594427121482,0.0,439.84530530944437,0.4757698339999479 +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465 +18,1396.185647230651,0.16674058891616916,0.0,440.0951103853369,0.4760400419982034 +19,1397.077863860132,0.16684714260158742,0.0,440.37634818262984,0.47634424999705516 +20,1394.4525370705426,0.16653361084751028,0.0,439.5488124709186,0.47544912499870406 +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357 +22,1389.5461345505648,0.16594765979776016,0.0,438.00225327020814,0.47377625000081025 +23,1395.1388395169033,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239 +24,1396.723593957756,0.16680483363481452,0.0,440.26467789572945,0.47622345899799257 +25,1404.0633375129448,0.16768138838619256,0.0,442.57825650651665,0.47872600000118837 +26,1391.7788171546058,0.16621429970556834,0.0,438.70602264287703,0.4745374999984051 +27,1397.9191240081013,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545 +28,1400.2760860285289,0.16722909284502457,0.0,441.38446765515783,0.4774347080019652 +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.47545712499777437 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d5d4a91ba --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,306.0668998752621,0.0,0.0,63.04902793670779,0.06812795799851301 +1,300.7286555299586,0.0,0.0,61.9493627426042,0.06693970900232671 +2,300.4778195906402,0.0,0.0,61.89769115658147,0.06688387499889359 +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118 +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179 +5,297.42271046689245,0.0,0.0,61.26834619777878,0.06620383300105459 +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164 +7,297.3940705820903,0.0,0.0,61.262446452011666,0.06619745799980592 +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933005 +9,297.44798094483,0.0,0.0,61.273551854026195,0.06620945800023037 +10,298.42342154358175,0.0,0.0,61.47449021615016,0.06642658300188486 +11,300.40818538367824,0.0,0.0,61.88334668136418,0.06686837500092224 +12,287.1913505952546,0.0,0.0,59.16071125051626,0.06392641699858359 +13,300.26405153963907,0.0,0.0,61.85365546430296,0.06683629200051655 +14,299.59316404372277,0.0,0.0,61.71545429165196,0.06668695799817215 +15,298.97750323449446,0.0,0.0,61.58862968050848,0.06654991699906532 +16,296.72543384649464,0.0,0.0,61.124708930446076,0.06604862499807496 +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845 +18,299.21560732706087,0.0,0.0,61.637678537441985,0.06660291699881782 +19,299.2517362517928,0.0,0.0,61.645121006999055,0.06661095899835345 +20,299.28430709765047,0.0,0.0,61.651830521066856,0.06661820899898885 +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801 +22,299.9649209102408,0.0,0.0,61.79203529100965,0.06676970799890114 +23,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303 +24,294.287490544277,0.0,0.0,60.622498611616194,0.06550595900262124 +25,297.6716730062533,0.0,0.0,61.31963186802196,0.06625925000116695 +26,300.53416490752846,0.0,0.0,61.90929815315653,0.06689641699995263 +27,298.0200327621039,0.0,0.0,61.39139312017827,0.06633679199876497 +28,302.28587426265807,0.0,0.0,62.27014596817204,0.06728633300008369 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6ffb43e77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8e1d94114 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..fc614ccb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..56af62abd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bc1b0356b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..07117c717 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..517e4aa41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b606e0cbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8d863668f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0bb4e55f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9a6549fa8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f2deb7e93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..27d7fce23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a01c73ab6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5c70d3fb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7b1429d7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5b0c2c072 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..8e9752404 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1398.8862502594493,0.16706311059539128,0.0,440.94637410547574,0.47696083299888414 +1,1396.9275519023229,0.16682919147566377,0.0,440.32896798086693,0.4762929999997141 +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.47589854200123227 +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526 +4,1397.991833947257,0.16695629421110386,0.0,440.6644429407875,0.47665587500159745 +5,1392.2824223679588,0.1662744431614349,0.0,438.86476528029124,0.4747092079996946 +6,1389.60246999989,0.16595438770390641,0.0,438.0200109056906,0.4737954579977668 +7,1396.1068221654489,0.16673117516963823,0.0,440.0702637427432,0.4760131659968465 +8,1391.825623572621,0.16621988959952005,0.0,438.7207766089732,0.47455345900016255 +9,1396.1552182260154,0.16673695490792453,0.0,440.08551878397606,0.47602966699923854 +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643 +11,1398.5840366906104,0.16702701849793516,0.0,440.8511126234501,0.4768577909999294 +12,1403.2547089972113,0.16758481727819183,0.0,442.3233667240595,0.4784502920010709 +13,1396.9105644487831,0.16682716273542206,0.0,440.323613323873,0.47628720799912116 +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.47528874999989057 +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325 +16,1395.3931497605902,0.16664594427121482,0.0,439.84530530944437,0.4757698339999479 +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465 +18,1396.185647230651,0.16674058891616916,0.0,440.0951103853369,0.4760400419982034 +19,1397.077863860132,0.16684714260158742,0.0,440.37634818262984,0.47634424999705516 +20,1394.4525370705426,0.16653361084751028,0.0,439.5488124709186,0.47544912499870406 +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357 +22,1389.5461345505648,0.16594765979776016,0.0,438.00225327020814,0.47377625000081025 +23,1395.1388395169033,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239 +24,1396.723593957756,0.16680483363481452,0.0,440.26467789572945,0.47622345899799257 +25,1404.0633375129448,0.16768138838619256,0.0,442.57825650651665,0.47872600000118837 +26,1391.7788171546058,0.16621429970556834,0.0,438.70602264287703,0.4745374999984051 +27,1397.9191240081013,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545 +28,1400.2760860285289,0.16722909284502457,0.0,441.38446765515783,0.4774347080019652 +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.47545712499777437 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..37dd98841 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,306.0668998752621,0.0,0.0,63.04902793670779,0.06812795799851301 +1,300.7286555299586,0.0,0.0,61.9493627426042,0.06693970900232671 +2,300.4778195906402,0.0,0.0,61.89769115658147,0.06688387499889359 +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118 +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179 +5,297.42271046689245,0.0,0.0,61.26834619777878,0.06620383300105459 +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164 +7,297.3940705820903,0.0,0.0,61.262446452011666,0.06619745799980592 +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933005 +9,297.44798094483,0.0,0.0,61.273551854026195,0.06620945800023037 +10,298.42342154358175,0.0,0.0,61.47449021615016,0.06642658300188486 +11,300.40818538367824,0.0,0.0,61.88334668136418,0.06686837500092224 +12,287.1913505952546,0.0,0.0,59.16071125051626,0.06392641699858359 +13,300.26405153963907,0.0,0.0,61.85365546430296,0.06683629200051655 +14,299.59316404372277,0.0,0.0,61.71545429165196,0.06668695799817215 +15,298.97750323449446,0.0,0.0,61.58862968050848,0.06654991699906532 +16,296.72543384649464,0.0,0.0,61.124708930446076,0.06604862499807496 +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845 +18,299.21560732706087,0.0,0.0,61.637678537441985,0.06660291699881782 +19,299.2517362517928,0.0,0.0,61.645121006999055,0.06661095899835345 +20,299.28430709765047,0.0,0.0,61.651830521066856,0.06661820899898885 +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801 +22,299.9649209102408,0.0,0.0,61.79203529100965,0.06676970799890114 +23,277.6619440694328,0.0,0.0,57.19767696451,0.06180524999945192 +24,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303 +25,294.287490544277,0.0,0.0,60.622498611616194,0.06550595900262124 +26,297.6716730062533,0.0,0.0,61.31963186802196,0.06625925000116695 +27,300.53416490752846,0.0,0.0,61.90929815315653,0.06689641699995263 +28,298.0200327621039,0.0,0.0,61.39139312017827,0.06633679199876497 +29,302.28587426265807,0.0,0.0,62.27014596817204,0.06728633300008369 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..33ea75bcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..10142880e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7dc99c03c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..70ab0a01a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7683e327d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7a189b3ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3ba54c56e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b606e0cbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e52b91015 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..dc62c0bc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..89fe1f3de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e6a058cf6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f6b147b50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8a7c20cc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..052ba5f66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7b1429d7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..5b8d3e0d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..19530da67 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.47853858300004504 +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992 +2,1422.4471328985583,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801 +3,1423.230797457382,1.773392083348801,0.0,447.99899252749236,0.47657958299896563 +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372 +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273 +6,1420.5758147951883,1.7700838881896082,0.0,447.16326752774836,0.47569054199993843 +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.47682629200062365 +8,1422.3049082362418,1.7722383951221539,0.0,447.70754476019846,0.4762695419994998 +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838 +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386 +11,1413.1080871694983,1.7607788555303492,0.0,444.81260559803485,0.47318991699648905 +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.47624933300176053 +13,1417.3294075206243,1.7660387586362547,0.0,446.1413762147323,0.47460345800209325 +14,1412.7458674890827,1.7603275179715854,0.0,444.69858751172745,0.473068625000451 +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.47474445900297724 +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.47264645799805294 +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762 +18,1417.1746163233452,1.7658458837460278,0.0,446.09265165048237,0.47455162500045844 +19,1419.5263625778223,1.768776236431752,0.0,446.83292508650436,0.4753391249978449 +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183 +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.47435091599982115 +22,1422.3538096297493,1.7722993278565113,0.0,447.72293774850624,0.47628591700049583 +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447 +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.47496283399959793 +25,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732 +26,1420.8707133304347,1.7704513414015055,0.0,447.25609452876904,0.47578929100200185 +27,1412.1492197543773,1.7595840753963088,0.0,444.51077708455057,0.47286883299966576 +28,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..74788275a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,297.9231929631541,0.0,0.0,61.89344237000005,0.06603462500061141 +1,297.04079661120556,0.0,0.0,61.71012482693256,0.06583904199942481 +2,296.8676586574506,0.0,0.0,61.674155475717534,0.06580066600145074 +3,297.3197636713215,0.0,0.0,61.7680801391279,0.06590087500080699 +4,298.48470477937286,0.0,0.0,62.01009625951951,0.06615908399908221 +5,295.20155767320017,0.0,0.0,61.3280235608919,0.06543137500193552 +6,292.8541974051702,0.0,0.0,60.84036026074424,0.06491108299815096 +7,297.2970205991458,0.0,0.0,61.76335527359118,0.06589583400273114 +8,297.0774535309563,0.0,0.0,61.71774028958751,0.06584716699944693 +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461 +10,296.545267260386,0.0,0.0,61.607178772237894,0.06572920800317661 +11,296.86935500896175,0.0,0.0,61.67450789216907,0.06580104199747439 +12,298.61459885910585,0.0,0.0,62.03708171056209,0.06618787499974133 +13,299.2832616828819,0.0,0.0,62.17599618558742,0.06633608400079538 +14,298.81874969918397,0.0,0.0,62.079493978400286,0.06623312499868916 +15,296.9749991387711,0.0,0.0,61.6964554243335,0.06582445800086134 +16,293.1703898391526,0.0,0.0,60.906049131744425,0.06498116699731327 +17,299.0945225408772,0.0,0.0,62.13678569280086,0.06629425000210176 +18,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645 +19,290.72809607604245,0.0,0.0,60.39866343016743,0.06443983300050604 +20,298.5279351289336,0.0,0.0,62.01907734998971,0.06616866599870264 +21,299.2761152689181,0.0,0.0,62.174511520508396,0.06633449999935692 +22,293.40781389038244,0.0,0.0,60.95537389792288,0.06503379199784831 +23,296.0600830227514,0.0,0.0,61.50638191130139,0.06562166699950467 +24,300.42752152616026,0.0,0.0,62.41371578023145,0.06658970900025452 +25,295.4047700896462,0.0,0.0,61.37024087153856,0.06547641699944506 +26,298.3017901501356,0.0,0.0,61.972095807286415,0.06611854100265191 +27,297.4477809202034,0.0,0.0,61.794675679197255,0.06592925000222749 +28,298.01661959689955,0.0,0.0,61.91285172149777,0.06605533299807576 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..52e7e629b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9df50e47f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5159d3741 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ece4ba248 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e8a3453bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..02f94736d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7486bea03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1972ea1e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bb99e8e76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c7dc57131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6cd676804 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e9903a368 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b5689645a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..69957b156 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ef97eed04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cdc40d179 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..fefd8e76d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..8e06e70a1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.47853858300004504 +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992 +2,1422.4471328985583,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801 +3,1423.230797457382,1.773392083348801,0.0,447.99899252749236,0.47657958299896563 +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372 +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273 +6,1420.5758147951883,1.7700838881896082,0.0,447.16326752774836,0.47569054199993843 +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.47682629200062365 +8,1422.3049082362418,1.7722383951221539,0.0,447.70754476019846,0.4762695419994998 +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838 +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386 +11,1413.1080871694983,1.7607788555303492,0.0,444.81260559803485,0.47318991699648905 +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.47624933300176053 +13,1417.3294075206243,1.7660387586362547,0.0,446.1413762147323,0.47460345800209325 +14,1412.7458674890827,1.7603275179715854,0.0,444.69858751172745,0.473068625000451 +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.47474445900297724 +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.47264645799805294 +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762 +18,1417.1746163233452,1.7658458837460278,0.0,446.09265165048237,0.47455162500045844 +19,1419.5263625778223,1.768776236431752,0.0,446.83292508650436,0.4753391249978449 +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183 +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.47435091599982115 +22,1422.3538096297493,1.7722993278565113,0.0,447.72293774850624,0.47628591700049583 +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447 +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.47496283399959793 +25,1354.1542849217951,1.6873204913801607,0.0,426.2553596054523,0.45344879100230173 +26,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732 +27,1420.8707133304347,1.7704513414015055,0.0,447.25609452876904,0.47578929100200185 +28,1412.1492197543773,1.7595840753963088,0.0,444.51077708455057,0.47286883299966576 +29,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..015f61670 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,297.9231929631541,0.0,0.0,61.89344237000005,0.06603462500061141 +1,297.04079661120556,0.0,0.0,61.71012482693256,0.06583904199942481 +2,296.8676586574506,0.0,0.0,61.674155475717534,0.06580066600145074 +3,297.3197636713215,0.0,0.0,61.7680801391279,0.06590087500080699 +4,298.48470477937286,0.0,0.0,62.01009625951951,0.06615908399908221 +5,295.20155767320017,0.0,0.0,61.3280235608919,0.06543137500193552 +6,292.8541974051702,0.0,0.0,60.84036026074424,0.06491108299815096 +7,297.2970205991458,0.0,0.0,61.76335527359118,0.06589583400273114 +8,297.0774535309563,0.0,0.0,61.71774028958751,0.06584716699944693 +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461 +10,296.545267260386,0.0,0.0,61.607178772237894,0.06572920800317661 +11,296.86935500896175,0.0,0.0,61.67450789216907,0.06580104199747439 +12,298.61459885910585,0.0,0.0,62.03708171056209,0.06618787499974133 +13,299.2832616828819,0.0,0.0,62.17599618558742,0.06633608400079538 +14,298.81874969918397,0.0,0.0,62.079493978400286,0.06623312499868916 +15,296.9749991387711,0.0,0.0,61.6964554243335,0.06582445800086134 +16,293.1703898391526,0.0,0.0,60.906049131744425,0.06498116699731327 +17,299.0945225408772,0.0,0.0,62.13678569280086,0.06629425000210176 +18,255.6130228481359,0.0,0.0,53.10351886779507,0.05665658299767529 +19,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645 +20,290.72809607604245,0.0,0.0,60.39866343016743,0.06443983300050604 +21,298.5279351289336,0.0,0.0,62.01907734998971,0.06616866599870264 +22,299.2761152689181,0.0,0.0,62.174511520508396,0.06633449999935692 +23,293.40781389038244,0.0,0.0,60.95537389792288,0.06503379199784831 +24,296.0600830227514,0.0,0.0,61.50638191130139,0.06562166699950467 +25,300.42752152616026,0.0,0.0,62.41371578023145,0.06658970900025452 +26,295.4047700896462,0.0,0.0,61.37024087153856,0.06547641699944506 +27,298.3017901501356,0.0,0.0,61.972095807286415,0.06611854100265191 +28,297.4477809202034,0.0,0.0,61.794675679197255,0.06592925000222749 +29,298.01661959689955,0.0,0.0,61.91285172149777,0.06605533299807576 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..60e536280 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7283e0feb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ca8dc43d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e28dc5230 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b6b8c304e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..836bc2469 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..94a9a4a69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..524ad7f93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..016562d82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..14b59093c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a991014d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f23229f9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6b6e84172 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..03d9678b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a90cebc21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d9d4710cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7049b2a88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c2eae444e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1381.5516209493483,0.0999506803686798,0.0,439.3165571138039,0.47548716600067564 +1,1381.107557064519,0.09991855381854382,0.0,439.17535021710626,0.4753343330012285 +2,1376.128171163972,0.09955831175372985,0.0,437.59196626156063,0.4736205830013205 +3,1380.7211189424897,0.09989059630133526,0.0,439.0524676098022,0.475201332999859 +4,1380.2241479000502,0.09985464209371671,0.0,438.89443688258285,0.4750302909997117 +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.47393470799943316 +6,1377.0907565492023,0.09962795161568493,0.0,437.8980566681405,0.47395187499932945 +7,1379.9166477647204,0.09983239547819137,0.0,438.7966555918104,0.47492445900206803 +8,1388.2125966734,0.10043257988328551,0.0,441.43466611366756,0.47777966699868557 +9,1385.2603140533952,0.10021899202161202,0.0,440.4958762656587,0.4767635829994106 +10,1378.254188068791,0.09971212202971938,0.0,438.2680136946266,0.4743522919998213 +11,1384.9526889767828,0.10019673636699902,0.0,440.398055245083,0.4766577080008574 +12,1382.3441125519096,0.10000801450926589,0.0,439.56855977306,0.475759917000687 +13,1382.6810342874294,0.10003238968004166,0.0,439.67569677367646,0.47587587499947404 +14,1381.2961766373749,0.09993219981942568,0.0,439.235328939649,0.475399250000919 +15,1385.2699982500696,0.10021969264114136,0.0,440.49895572203,0.4767669159991783 +16,1373.3594263151476,0.09935800224143157,0.0,436.71153918517217,0.4726676670034067 +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.47842450000098324 +18,1380.847269195503,0.09989972285399255,0.0,439.0925818509153,0.4752447499995469 +19,1378.9612042113363,0.09976327230409746,0.0,438.49283620060964,0.4745956250008021 +20,1377.5675078746096,0.09966244299379817,0.0,438.0496577720742,0.4741159580007661 +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.47623154200118734 +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.47690575000160607 +23,1380.1145854309248,0.09984671561224044,0.0,438.85959735433414,0.47499258300013025 +24,1386.322655687205,0.10029584891749138,0.0,440.8336879420138,0.4771292080004059 +25,1383.0889008435486,0.10006189747342817,0.0,439.8053933615413,0.47601625000243075 +26,1382.3496824807823,0.10000841747515729,0.0,439.5703309424747,0.4757618339972396 +27,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028 +28,1385.4469985267924,0.10023249802446227,0.0,440.5552396501865,0.4768278339979588 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..222806cf4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,293.67115678659405,0.0,0.0,62.04987345007068,0.06730199999947217 +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785 +2,285.0587315110757,0.0,0.0,60.2301513354047,0.06532824999885634 +3,286.6679492796594,0.0,0.0,60.57016347683127,0.06569704200228443 +4,286.0261550443838,0.0,0.0,60.434558565829484,0.06554995899932692 +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652 +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397 +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792 +8,287.5655527060979,0.0,0.0,60.75981839435294,0.06590275000053225 +9,293.549524682601,0.0,0.0,62.024173763581814,0.06727412499822094 +10,289.02568331421605,0.0,0.0,61.0683298615521,0.06623737499830895 +11,288.31625511165714,0.0,0.0,60.91843454778562,0.06607479200101807 +12,290.2920010978938,0.0,0.0,61.33589055455497,0.06652758299969719 +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743 +14,287.41810186435026,0.0,0.0,60.72866345843529,0.06586895799773629 +15,292.14320891111277,0.0,0.0,61.72703285057382,0.06695183299962082 +16,292.1922981075429,0.0,0.0,61.737404922722774,0.06696308300161036 +17,288.63587590704464,0.0,0.0,60.985967328746526,0.06614804100172478 +18,295.0554718814619,0.0,0.0,62.34236583301857,0.06761924999955227 +19,293.5444325057386,0.0,0.0,62.02309783588993,0.06727295800010324 +20,287.13229806847863,0.0,0.0,60.66827588221081,0.06580345899783424 +21,287.2797445448048,0.0,0.0,60.69942989575715,0.06583725000018603 +22,288.50715313623,0.0,0.0,60.95876945297762,0.06611854099901393 +23,290.43508843893454,0.0,0.0,61.36612352500068,0.06656037499851664 +24,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395 +25,291.1197931641799,0.0,0.0,61.51079500727027,0.06671729200024856 +26,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767 +27,295.1683770157897,0.0,0.0,62.36622159527169,0.06764512500012643 +28,292.2999321462241,0.0,0.0,61.76014695347638,0.06698775000040769 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..33b47fde9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..104b10b2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a253ad461 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0ae1b3e6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..364ea78b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2b37d4fc6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b9462bd3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6e44df6d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4e2ac4402 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..cb4654472 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a9db1f7e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..844ca3d90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b15c0635e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e8d90161c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..45907349b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ce4c5ba41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..bfec30ce9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..0481f6d8a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1381.5516209493483,0.0999506803686798,0.0,439.3165571138039,0.47548716600067564 +1,1381.107557064519,0.09991855381854382,0.0,439.17535021710626,0.4753343330012285 +2,1376.128171163972,0.09955831175372985,0.0,437.59196626156063,0.4736205830013205 +3,1380.7211189424897,0.09989059630133526,0.0,439.0524676098022,0.475201332999859 +4,1380.2241479000502,0.09985464209371671,0.0,438.89443688258285,0.4750302909997117 +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.47393470799943316 +6,1377.0907565492023,0.09962795161568493,0.0,437.8980566681405,0.47395187499932945 +7,1379.9166477647204,0.09983239547819137,0.0,438.7966555918104,0.47492445900206803 +8,1388.2125966734,0.10043257988328551,0.0,441.43466611366756,0.47777966699868557 +9,1385.2603140533952,0.10021899202161202,0.0,440.4958762656587,0.4767635829994106 +10,1378.254188068791,0.09971212202971938,0.0,438.2680136946266,0.4743522919998213 +11,1384.9526889767828,0.10019673636699902,0.0,440.398055245083,0.4766577080008574 +12,1382.3441125519096,0.10000801450926589,0.0,439.56855977306,0.475759917000687 +13,1382.6810342874294,0.10003238968004166,0.0,439.67569677367646,0.47587587499947404 +14,1381.2961766373749,0.09993219981942568,0.0,439.235328939649,0.475399250000919 +15,1385.2699982500696,0.10021969264114136,0.0,440.49895572203,0.4767669159991783 +16,1373.3594263151476,0.09935800224143157,0.0,436.71153918517217,0.4726676670034067 +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.47842450000098324 +18,1380.847269195503,0.09989972285399255,0.0,439.0925818509153,0.4752447499995469 +19,1378.9612042113363,0.09976327230409746,0.0,438.49283620060964,0.4745956250008021 +20,1377.5675078746096,0.09966244299379817,0.0,438.0496577720742,0.4741159580007661 +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.47623154200118734 +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.47690575000160607 +23,1380.1145854309248,0.09984671561224044,0.0,438.85959735433414,0.47499258300013025 +24,1386.322655687205,0.10029584891749138,0.0,440.8336879420138,0.4771292080004059 +25,1383.0889008435486,0.10006189747342817,0.0,439.8053933615413,0.47601625000243075 +26,1382.3496824807823,0.10000841747515729,0.0,439.5703309424747,0.4757618339972396 +27,1398.4333502809254,0.10117201752822186,0.0,444.6847410423778,0.481297333000839 +28,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028 +29,1385.4469985267924,0.10023249802446227,0.0,440.5552396501865,0.4768278339979588 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0c664ad58 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,293.67115678659405,0.0,0.0,62.04987345007068,0.06730199999947217 +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785 +2,285.0587315110757,0.0,0.0,60.2301513354047,0.06532824999885634 +3,286.6679492796594,0.0,0.0,60.57016347683127,0.06569704200228443 +4,286.0261550443838,0.0,0.0,60.434558565829484,0.06554995899932692 +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652 +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397 +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792 +8,287.5655527060979,0.0,0.0,60.75981839435294,0.06590275000053225 +9,293.549524682601,0.0,0.0,62.024173763581814,0.06727412499822094 +10,289.02568331421605,0.0,0.0,61.0683298615521,0.06623737499830895 +11,288.31625511165714,0.0,0.0,60.91843454778562,0.06607479200101807 +12,290.2920010978938,0.0,0.0,61.33589055455497,0.06652758299969719 +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743 +14,287.41810186435026,0.0,0.0,60.72866345843529,0.06586895799773629 +15,292.14320891111277,0.0,0.0,61.72703285057382,0.06695183299962082 +16,292.1922981075429,0.0,0.0,61.737404922722774,0.06696308300161036 +17,288.63587590704464,0.0,0.0,60.985967328746526,0.06614804100172478 +18,295.0554718814619,0.0,0.0,62.34236583301857,0.06761924999955227 +19,264.9125288646573,0.0,0.0,55.973453679467916,0.06071125000016764 +20,293.5444325057386,0.0,0.0,62.02309783588993,0.06727295800010324 +21,287.13229806847863,0.0,0.0,60.66827588221081,0.06580345899783424 +22,287.2797445448048,0.0,0.0,60.69942989575715,0.06583725000018603 +23,288.50715313623,0.0,0.0,60.95876945297762,0.06611854099901393 +24,290.43508843893454,0.0,0.0,61.36612352500068,0.06656037499851664 +25,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395 +26,291.1197931641799,0.0,0.0,61.51079500727027,0.06671729200024856 +27,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767 +28,295.1683770157897,0.0,0.0,62.36622159527169,0.06764512500012643 +29,292.2999321462241,0.0,0.0,61.76014695347638,0.06698775000040769 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1a37db57b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e350084fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7a0089200 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6cce69427 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..201ee2ba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c3f55d1ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4d0c9022f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9536fe8ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3252369c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0329e3efe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9501c64e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c7e399189 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c7d1a48d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3c996cf7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a9c5af547 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ccc480f2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..fb020344a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b28a32281 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2136.203094366269,0.9345742510625699,0.0,450.030879538451,0.47467587500068475 +1,2134.504400315829,0.9338310840274873,0.0,449.673018069379,0.4742984160002379 +2,2140.0647600968737,0.9362637034220163,0.0,450.84441118710873,0.4755339580005966 +3,2130.118633912307,0.9319123412063031,0.0,448.74907487444943,0.47332387499773176 +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922 +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985 +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567 +7,2140.343781207982,0.9363857732507851,0.0,450.90319216929765,0.47559595799975796 +8,2123.4230632247763,0.9289830748002958,0.0,447.33852848329957,0.47183608299746993 +9,2124.5554614297384,0.9294784912740843,0.0,447.57708920887427,0.47208770799988997 +10,2127.025585853203,0.9305591538239979,0.0,448.09746682174875,0.47263658299925737 +11,2136.5779367221758,0.93473824203092,0.0,450.10984704653197,0.47475916699841036 +12,2128.1066081569707,0.9310320936922107,0.0,448.32520425900276,0.4728767919987149 +13,2126.8684474597603,0.9304904068510382,0.0,448.06436269901957,0.47260166599880904 +14,2134.9276258433156,0.9340162423026646,0.0,449.76217839167236,0.474392459000228 +15,2129.032364221914,0.9314371056423117,0.0,448.5202319776889,0.4730825000006007 +16,2132.6545758265033,0.9330217984584943,0.0,449.2833181648528,0.47388737499932176 +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.47391433300072094 +18,2131.3811639558558,0.9324646894699139,0.0,449.0150502901017,0.47360441599812475 +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959 +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707 +21,2132.5525666154294,0.9329771701259673,0.0,449.261828028872,0.4738647080012015 +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.47547279100035666 +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205 +24,2127.0137724511346,0.9305539855413473,0.0,448.0949781090709,0.4726339579974592 +25,2158.107187960308,0.9441571422772865,0.0,454.64538390445193,0.4795430830017722 +26,2129.987750526841,0.9318550806198583,0.0,448.72150185705533,0.47329479200197966 +27,2133.861040626745,0.9335496185614107,0.0,449.53748239512504,0.47415545799958636 +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.47484904199882294 +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1b135a4a3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,383.74185203632027,0.0,0.0,62.59426372619671,0.06450475000019651 +1,364.4592504386134,0.0,0.0,59.44897153737439,0.06126345799930277 +2,367.0024684410071,0.0,0.0,59.86380994374133,0.061690957998507656 +3,363.22606038870725,0.0,0.0,59.247819062608514,0.061056165999616496 +4,364.28028523014996,0.0,0.0,59.41977952874429,0.06123337499957415 +5,373.0382773407889,0.0,0.0,60.84834423956817,0.06270554200091283 +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924 +7,362.2655390037368,0.0,0.0,59.091143087427675,0.06089470799997798 +8,363.15913956054317,0.0,0.0,59.23690323483354,0.06104491700170911 +9,363.29274327911173,0.0,0.0,59.258696079034664,0.06106737500158488 +10,385.39643100578286,0.0,0.0,62.86415128685964,0.06478287500067381 +11,389.0226196484065,0.0,0.0,63.45563904617717,0.06539241599966772 +12,370.36889192148516,0.0,0.0,60.41292596544427,0.062256834000436356 +13,361.7680498665672,0.0,0.0,59.009994872585665,0.060811082999862265 +14,361.96288119943176,0.0,0.0,59.0417748928434,0.060843833001854364 +15,366.63437110852243,0.0,0.0,59.80376754444557,0.061629083000298124 +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306 +17,377.4274313949519,0.0,0.0,61.56428352256089,0.06344333300148719 +18,377.1091573073862,0.0,0.0,61.51236806932433,0.06338983299792744 +19,381.72165648548935,0.0,0.0,62.264738415323826,0.06416516700119246 +20,368.2465631130819,0.0,0.0,60.06674113196323,0.061900083001091843 +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972 +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232 +23,392.46761814592367,0.0,0.0,64.01757187509762,0.06597150000015972 +24,412.7283443458175,0.0,0.0,67.32241139758052,0.06937720899804845 +25,410.7339260421147,0.0,0.0,66.99709075658224,0.06904195900278864 +26,401.0741534363522,0.0,0.0,65.42143162320484,0.06741820800016285 +27,375.99669130166257,0.0,0.0,61.3309075635724,0.06320283400054905 +28,391.0668672136462,0.0,0.0,63.78908761463861,0.06573604200093541 +29,388.54248388731276,0.0,0.0,63.37732143683954,0.06531170800008113 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..26e199d29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..00fb79b46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6bab99c7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a0a656dc6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a99a4a67c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4c6b2fba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d2e9f2f19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9d7a22fa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..28db5c554 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9a7dccad0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e5c011516 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..235fff365 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d5d85fd46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..712120148 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e2c3ea4da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..be83839b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..cd37fc383 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b28a32281 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2136.203094366269,0.9345742510625699,0.0,450.030879538451,0.47467587500068475 +1,2134.504400315829,0.9338310840274873,0.0,449.673018069379,0.4742984160002379 +2,2140.0647600968737,0.9362637034220163,0.0,450.84441118710873,0.4755339580005966 +3,2130.118633912307,0.9319123412063031,0.0,448.74907487444943,0.47332387499773176 +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922 +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985 +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567 +7,2140.343781207982,0.9363857732507851,0.0,450.90319216929765,0.47559595799975796 +8,2123.4230632247763,0.9289830748002958,0.0,447.33852848329957,0.47183608299746993 +9,2124.5554614297384,0.9294784912740843,0.0,447.57708920887427,0.47208770799988997 +10,2127.025585853203,0.9305591538239979,0.0,448.09746682174875,0.47263658299925737 +11,2136.5779367221758,0.93473824203092,0.0,450.10984704653197,0.47475916699841036 +12,2128.1066081569707,0.9310320936922107,0.0,448.32520425900276,0.4728767919987149 +13,2126.8684474597603,0.9304904068510382,0.0,448.06436269901957,0.47260166599880904 +14,2134.9276258433156,0.9340162423026646,0.0,449.76217839167236,0.474392459000228 +15,2129.032364221914,0.9314371056423117,0.0,448.5202319776889,0.4730825000006007 +16,2132.6545758265033,0.9330217984584943,0.0,449.2833181648528,0.47388737499932176 +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.47391433300072094 +18,2131.3811639558558,0.9324646894699139,0.0,449.0150502901017,0.47360441599812475 +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959 +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707 +21,2132.5525666154294,0.9329771701259673,0.0,449.261828028872,0.4738647080012015 +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.47547279100035666 +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205 +24,2127.0137724511346,0.9305539855413473,0.0,448.0949781090709,0.4726339579974592 +25,2158.107187960308,0.9441571422772865,0.0,454.64538390445193,0.4795430830017722 +26,2129.987750526841,0.9318550806198583,0.0,448.72150185705533,0.47329479200197966 +27,2133.861040626745,0.9335496185614107,0.0,449.53748239512504,0.47415545799958636 +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.47484904199882294 +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1b135a4a3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,383.74185203632027,0.0,0.0,62.59426372619671,0.06450475000019651 +1,364.4592504386134,0.0,0.0,59.44897153737439,0.06126345799930277 +2,367.0024684410071,0.0,0.0,59.86380994374133,0.061690957998507656 +3,363.22606038870725,0.0,0.0,59.247819062608514,0.061056165999616496 +4,364.28028523014996,0.0,0.0,59.41977952874429,0.06123337499957415 +5,373.0382773407889,0.0,0.0,60.84834423956817,0.06270554200091283 +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924 +7,362.2655390037368,0.0,0.0,59.091143087427675,0.06089470799997798 +8,363.15913956054317,0.0,0.0,59.23690323483354,0.06104491700170911 +9,363.29274327911173,0.0,0.0,59.258696079034664,0.06106737500158488 +10,385.39643100578286,0.0,0.0,62.86415128685964,0.06478287500067381 +11,389.0226196484065,0.0,0.0,63.45563904617717,0.06539241599966772 +12,370.36889192148516,0.0,0.0,60.41292596544427,0.062256834000436356 +13,361.7680498665672,0.0,0.0,59.009994872585665,0.060811082999862265 +14,361.96288119943176,0.0,0.0,59.0417748928434,0.060843833001854364 +15,366.63437110852243,0.0,0.0,59.80376754444557,0.061629083000298124 +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306 +17,377.4274313949519,0.0,0.0,61.56428352256089,0.06344333300148719 +18,377.1091573073862,0.0,0.0,61.51236806932433,0.06338983299792744 +19,381.72165648548935,0.0,0.0,62.264738415323826,0.06416516700119246 +20,368.2465631130819,0.0,0.0,60.06674113196323,0.061900083001091843 +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972 +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232 +23,392.46761814592367,0.0,0.0,64.01757187509762,0.06597150000015972 +24,412.7283443458175,0.0,0.0,67.32241139758052,0.06937720899804845 +25,410.7339260421147,0.0,0.0,66.99709075658224,0.06904195900278864 +26,401.0741534363522,0.0,0.0,65.42143162320484,0.06741820800016285 +27,375.99669130166257,0.0,0.0,61.3309075635724,0.06320283400054905 +28,391.0668672136462,0.0,0.0,63.78908761463861,0.06573604200093541 +29,388.54248388731276,0.0,0.0,63.37732143683954,0.06531170800008113 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..26e199d29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..00fb79b46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6bab99c7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a0a656dc6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a99a4a67c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4c6b2fba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d2e9f2f19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9d7a22fa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..28db5c554 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9a7dccad0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e5c011516 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..235fff365 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d5d85fd46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..712120148 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e2c3ea4da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..be83839b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cd37fc383 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a9131b157 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.47632558300028904 +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.47404774999813526 +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.47401150000223424 +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.47660712500146474 +4,1454.6356824641825,2.6898470886701014,0.0,448.5656251243478,0.48074504200121737 +5,1439.3908464616345,2.6616570214023705,0.0,443.86457903161283,0.47570674999951734 +6,1436.1552645979718,2.6556739284801734,0.0,442.86682349817494,0.4746374169990304 +7,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.48036354199939524 +8,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.47816758299813955 +9,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721 +10,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456 +11,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.47400570799800334 +12,1436.1856465993965,2.6557301095150985,0.0,442.87619238801165,0.4746474579987989 +13,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595 +14,1444.9948689388623,2.672019728523426,0.0,445.5926899778878,0.4775588330012397 +15,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.47839995799949975 +16,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.47580220899908454 +17,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605 +18,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591 +19,1443.3000488426621,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269 +20,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.47357408400057466 +21,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895 +22,1437.2359785218741,2.657672336216858,0.0,443.2000829683638,0.4749945839976135 +23,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872 +24,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404 +25,1439.6581239725595,2.6621512589927825,0.0,443.9469993277839,0.47579508300259477 +26,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.47625233299913816 +27,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.47556762500244076 +28,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ff24bb0ed --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,301.527059904683,0.0,0.0,61.86818404371384,0.06704720900233951 +1,297.30471380754034,0.0,0.0,61.001831002242675,0.06610833299782826 +2,298.56993893852353,0.0,0.0,61.26143351116889,0.06638966699756566 +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497 +4,299.1821205786761,0.0,0.0,61.38704268997068,0.06652579100045841 +5,298.54745277190455,0.0,0.0,61.256819735227,0.06638466699951096 +6,295.84086380274124,0.0,0.0,60.701474073952625,0.06578283300041221 +7,287.0708821292312,0.0,0.0,58.902024165847415,0.06383274999825517 +8,311.42434548185787,0.0,0.0,63.89893738908661,0.06924795799932326 +9,302.1443009237354,0.0,0.0,61.99483132034014,0.06718445800288464 +10,299.5947418972884,0.0,0.0,61.47170551157061,0.06661754100059625 +11,297.7119024745538,0.0,0.0,61.08537913685875,0.06619887499982724 +12,296.81133114888826,0.0,0.0,60.90059733804315,0.06599862499933806 +13,295.8635388716868,0.0,0.0,60.70612660941386,0.06578787500257022 +14,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043 +15,293.46651256772094,0.0,0.0,60.21429790064635,0.06525487500039162 +16,288.92730480664824,0.0,0.0,59.28293027724474,0.06424554200202692 +17,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284 +18,294.5672108564634,0.0,0.0,60.440142321793985,0.06549962500139372 +19,292.01034831569035,0.0,0.0,59.915517957078485,0.06493108399808989 +20,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666 +21,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717 +22,297.67255166251954,0.0,0.0,61.07730502476422,0.06619012499868404 +23,298.30198018653,0.0,0.0,61.20645296849487,0.06633008399876417 +24,297.6101525252016,0.0,0.0,61.06450179140608,0.06617624999853433 +25,300.59875411481113,0.0,0.0,61.67771160825551,0.06684079199840198 +26,296.54093489263096,0.0,0.0,60.84511666127687,0.06593849999990198 +27,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473 +28,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..bbff1b167 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e529813a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..206df3100 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fefb79e39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6ee0d6320 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d23e7b4d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7e605d9d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..14d7d97cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..db1e5a131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7993f3c6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3274d4509 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fed8e05c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fd291543b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6dd8e4ee3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2b1c620e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..38448cc7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..034ec94cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a400f22c4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.47632558300028904 +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.47404774999813526 +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.47401150000223424 +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.47660712500146474 +4,1454.6356824641825,2.6898470886701014,0.0,448.5656251243478,0.48074504200121737 +5,1439.3908464616345,2.6616570214023705,0.0,443.86457903161283,0.47570674999951734 +6,1436.1552645979718,2.6556739284801734,0.0,442.86682349817494,0.4746374169990304 +7,1470.1993585144141,2.718626740659527,0.0,453.3649918392344,0.48588870799721917 +8,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.48036354199939524 +9,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.47816758299813955 +10,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721 +11,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456 +12,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.47400570799800334 +13,1436.1856465993965,2.6557301095150985,0.0,442.87619238801165,0.4746474579987989 +14,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595 +15,1444.9948689388623,2.672019728523426,0.0,445.5926899778878,0.4775588330012397 +16,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.47839995799949975 +17,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.47580220899908454 +18,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605 +19,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591 +20,1443.3000488426621,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269 +21,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.47357408400057466 +22,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895 +23,1437.2359785218741,2.657672336216858,0.0,443.2000829683638,0.4749945839976135 +24,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872 +25,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404 +26,1439.6581239725595,2.6621512589927825,0.0,443.9469993277839,0.47579508300259477 +27,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.47625233299913816 +28,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.47556762500244076 +29,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e7e24b635 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,301.527059904683,0.0,0.0,61.86818404371384,0.06704720900233951 +1,297.30471380754034,0.0,0.0,61.001831002242675,0.06610833299782826 +2,298.56993893852353,0.0,0.0,61.26143351116889,0.06638966699756566 +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497 +4,299.1821205786761,0.0,0.0,61.38704268997068,0.06652579100045841 +5,298.54745277190455,0.0,0.0,61.256819735227,0.06638466699951096 +6,295.84086380274124,0.0,0.0,60.701474073952625,0.06578283300041221 +7,287.0708821292312,0.0,0.0,58.902024165847415,0.06383274999825517 +8,311.42434548185787,0.0,0.0,63.89893738908661,0.06924795799932326 +9,276.3402948730035,0.0,0.0,56.70029160003628,0.06144670900175697 +10,302.1443009237354,0.0,0.0,61.99483132034014,0.06718445800288464 +11,299.5947418972884,0.0,0.0,61.47170551157061,0.06661754100059625 +12,297.7119024745538,0.0,0.0,61.08537913685875,0.06619887499982724 +13,296.81133114888826,0.0,0.0,60.90059733804315,0.06599862499933806 +14,295.8635388716868,0.0,0.0,60.70612660941386,0.06578787500257022 +15,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043 +16,293.46651256772094,0.0,0.0,60.21429790064635,0.06525487500039162 +17,288.92730480664824,0.0,0.0,59.28293027724474,0.06424554200202692 +18,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284 +19,294.5672108564634,0.0,0.0,60.440142321793985,0.06549962500139372 +20,292.01034831569035,0.0,0.0,59.915517957078485,0.06493108399808989 +21,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666 +22,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717 +23,297.67255166251954,0.0,0.0,61.07730502476422,0.06619012499868404 +24,298.30198018653,0.0,0.0,61.20645296849487,0.06633008399876417 +25,297.6101525252016,0.0,0.0,61.06450179140608,0.06617624999853433 +26,300.59875411481113,0.0,0.0,61.67771160825551,0.06684079199840198 +27,296.54093489263096,0.0,0.0,60.84511666127687,0.06593849999990198 +28,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473 +29,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b4f6e4792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..de818de7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..42e4830ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f4ef419b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d189b70b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..51b24ec21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d338e506b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..988ca4a41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7529ffdb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..49979ed23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..587d3253f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cf677e8b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c8390e6e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3c561d98d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..9cf7e0797 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..579bff94e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..92da58929 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f90560783 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.48420133299805457 +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.15846452693796,0.49189100000148755 +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971 +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.49272791700059315 +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.48885149999841815 +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332 +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907 +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.02189308590323,0.48485833299855585 +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093 +9,2138.1194142937725,3.1374937342895954,83.68851708094563,490.505862543885,0.4833643750025658 +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087 +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907 +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461 +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.49148266699921805 +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267 +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832 +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.24057602486556,0.49197191600251244 +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296 +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.52299833227517,0.48633758300275076 +19,2153.7840051530566,3.1604800817043612,84.30164765304055,494.09947551024396,0.48690566699951887 +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.37993907015317,0.4921092500007944 +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702 +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.34448325339173,0.4861616670023068 +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.48886112500258605 +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051 +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191 +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902 +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.48748095799965085 +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169 +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.55497621213965,0.4893254170019645 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ecceaad0c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.06675616700158571 +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.06791945800068788 +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.06798829100080184 +3,396.74374517254836,0.26829670003215444,11.972740238934891,70.15958705840839,0.0680203750016517 +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.06773658300153329 +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.06805729199913912 +6,391.36719129553967,0.26466082251600315,11.81048920477664,69.20880508793482,0.06709858300018823 +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.06768637499772012 +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.07015208399752737 +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.06968129199958639 +10,387.301056942086,0.26191111204874795,11.687783375175377,68.48975580074759,0.06640145799974562 +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.06751945900032297 +12,389.3096996228947,0.26326945029443427,11.74839921938913,68.84496125199456,0.06674583300264203 +13,387.9621023426623,0.2623581419054352,11.707732082530047,68.60665410827131,0.06651479200081667 +14,395.11252609217826,0.26719359329986697,11.923514101006564,69.87112464791521,0.06774070800020127 +15,394.71833342375595,0.26692702175740046,11.911618345923996,69.80141618956021,0.06767312499869149 +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.06718108300265158 +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.06748958299795049 +18,386.8565570909318,0.2616105204334281,11.674369474341729,68.41115109334145,0.06632525000168243 +19,384.0741050620474,0.25972889606900923,11.590401987079536,67.91910632204592,0.06584820799980662 +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.06855383299989626 +21,396.65893159557254,0.2682393451195757,11.970180775961065,70.14458874876905,0.06800583400035976 +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.06467966700074612 +23,393.03826535154957,0.2657908810492305,11.86091806682191,69.50431539437378,0.06738508300259127 +24,406.135881200921,0.27464810224914354,12.256171562868031,71.82047873815104,0.06963062499926309 +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.06860145799873862 +26,394.0356603064191,0.26646536622581174,11.891016967826848,69.68069326804977,0.06755608299863525 +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.06762587500270456 +28,413.12105234795297,0.27937180209498086,12.46696666848852,73.0557262478375,0.07082820899813669 +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.06481087500287686 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..37febd4e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8e783794a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..df0a31484 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5dc79751e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9a75621b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..962db3652 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..19f37718c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..66ac6d2b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5fb68d11c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a5578193a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..073d5a4e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9cf14a49a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0991e3421 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6425faef0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2b032a05c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..17567a31f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ab6288f35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..07193c289 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..38256e5c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7512b3eae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f90560783 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.48420133299805457 +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.15846452693796,0.49189100000148755 +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971 +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.49272791700059315 +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.48885149999841815 +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332 +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907 +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.02189308590323,0.48485833299855585 +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093 +9,2138.1194142937725,3.1374937342895954,83.68851708094563,490.505862543885,0.4833643750025658 +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087 +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907 +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461 +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.49148266699921805 +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267 +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832 +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.24057602486556,0.49197191600251244 +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296 +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.52299833227517,0.48633758300275076 +19,2153.7840051530566,3.1604800817043612,84.30164765304055,494.09947551024396,0.48690566699951887 +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.37993907015317,0.4921092500007944 +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702 +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.34448325339173,0.4861616670023068 +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.48886112500258605 +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051 +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191 +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902 +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.48748095799965085 +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169 +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.55497621213965,0.4893254170019645 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ecceaad0c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.06675616700158571 +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.06791945800068788 +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.06798829100080184 +3,396.74374517254836,0.26829670003215444,11.972740238934891,70.15958705840839,0.0680203750016517 +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.06773658300153329 +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.06805729199913912 +6,391.36719129553967,0.26466082251600315,11.81048920477664,69.20880508793482,0.06709858300018823 +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.06768637499772012 +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.07015208399752737 +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.06968129199958639 +10,387.301056942086,0.26191111204874795,11.687783375175377,68.48975580074759,0.06640145799974562 +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.06751945900032297 +12,389.3096996228947,0.26326945029443427,11.74839921938913,68.84496125199456,0.06674583300264203 +13,387.9621023426623,0.2623581419054352,11.707732082530047,68.60665410827131,0.06651479200081667 +14,395.11252609217826,0.26719359329986697,11.923514101006564,69.87112464791521,0.06774070800020127 +15,394.71833342375595,0.26692702175740046,11.911618345923996,69.80141618956021,0.06767312499869149 +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.06718108300265158 +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.06748958299795049 +18,386.8565570909318,0.2616105204334281,11.674369474341729,68.41115109334145,0.06632525000168243 +19,384.0741050620474,0.25972889606900923,11.590401987079536,67.91910632204592,0.06584820799980662 +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.06855383299989626 +21,396.65893159557254,0.2682393451195757,11.970180775961065,70.14458874876905,0.06800583400035976 +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.06467966700074612 +23,393.03826535154957,0.2657908810492305,11.86091806682191,69.50431539437378,0.06738508300259127 +24,406.135881200921,0.27464810224914354,12.256171562868031,71.82047873815104,0.06963062499926309 +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.06860145799873862 +26,394.0356603064191,0.26646536622581174,11.891016967826848,69.68069326804977,0.06755608299863525 +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.06762587500270456 +28,413.12105234795297,0.27937180209498086,12.46696666848852,73.0557262478375,0.07082820899813669 +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.06481087500287686 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..37febd4e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8e783794a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..df0a31484 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5dc79751e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9a75621b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..962db3652 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..19f37718c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..66ac6d2b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5fb68d11c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a5578193a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..073d5a4e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9cf14a49a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0991e3421 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6425faef0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2b032a05c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..17567a31f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ab6288f35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..07193c289 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..38256e5c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7512b3eae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..06221451b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.35534116137956,0.4887512500026787 +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773 +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.49053166700105066 +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.48568833399986033 +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.41450194810517,0.4907829580006364 +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843 +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.48529441700156895 +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511 +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992 +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.48603524999998626 +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606 +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815 +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729 +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.48389420899911784 +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.49223012500078767 +15,2172.904363612247,4.054051068508988,84.66600867869597,497.27459470091236,0.4906449160007469 +16,2175.837068669918,4.059522701900578,84.78027989836993,497.94575158354036,0.49130712500118534 +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261 +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433 +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023 +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.48827587499908987 +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164 +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.48908412500168197 +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.48907387500003097 +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.48728625000148895 +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.49086225000064587 +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539 +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.49162737499864306 +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118 +29,2161.072808854291,4.031976591596034,84.20499873523288,494.56691382205236,0.48797333399852505 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d8170eb55 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.06864016599865863 +1,397.75286598810527,0.26959441903794307,12.435042578125124,70.53263988080185,0.06839662499987753 +2,365.9092588508725,0.24801102014801152,11.439508304327031,64.88588314622352,0.06292087499969057 +3,398.012860314751,0.26977064157570174,12.443170842679242,70.57874410224296,0.06844133299819077 +4,406.01920064322974,0.27519728926085213,12.693474967156805,71.99849080287044,0.06981808400087175 +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.06821533399852342 +6,389.31376782456067,0.26387445078340127,12.171209042384383,69.03615318620736,0.06694545800201013 +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.06801020800048718 +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404 +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956 +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.06726883399824146 +11,398.1340122908051,0.26985275763165645,12.446958445760155,70.60022771538212,0.0684621660002449 +12,372.80412745844734,0.25268431921270684,11.655064223686104,66.10853501402443,0.06410650000179885 +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454 +14,392.79960984046147,0.2662371328241711,12.280187751514893,69.65428987512377,0.06754487500074902 +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.06737029099895153 +16,390.4700645317705,0.26465818150081877,12.207358621725266,69.2411967351517,0.06714429199928418 +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.06694812500063563 +18,394.8335415578033,0.2676157190936564,12.343775043194901,70.01496250787785,0.06789462500091759 +19,391.70268238960193,0.26549364221950483,12.245894247374661,69.45977414567795,0.06735624999782885 +20,391.0290628243883,0.26503706706728003,12.224834718478292,69.34032267147714,0.06724041599954944 +21,399.59149372968244,0.2708406294872032,12.492524035097249,70.85867968958954,0.06871279099868843 +22,398.602883706492,0.27017055576141114,12.461616884495088,70.68337165107918,0.06854279199978919 +23,385.29291595984876,0.261149142394204,12.04550419293266,68.32314437888363,0.06625404199803597 +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.06725350000124308 +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269 +26,384.6154175220648,0.26068993816627284,12.024323397919336,68.20300507275113,0.06613754099817015 +27,394.12479122583363,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858 +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.06785070800106041 +29,396.5473885388564,0.26877735391941465,12.397355449533,70.31887521916686,0.06818933400063543 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9c86a9234 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ebfef136e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..283c5d8ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0e200cdb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c40b0c8da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..28baba693 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..a99c49272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f14457f45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7d17b2450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7a0e52a4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..96914e8bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ab9d7026a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..268f50f99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..deda4355c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7a32866ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..f976df83c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..204ba863d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a14f47f32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..45309e979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..258371ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..06221451b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.35534116137956,0.4887512500026787 +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773 +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.49053166700105066 +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.48568833399986033 +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.41450194810517,0.4907829580006364 +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843 +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.48529441700156895 +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511 +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992 +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.48603524999998626 +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606 +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815 +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729 +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.48389420899911784 +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.49223012500078767 +15,2172.904363612247,4.054051068508988,84.66600867869597,497.27459470091236,0.4906449160007469 +16,2175.837068669918,4.059522701900578,84.78027989836993,497.94575158354036,0.49130712500118534 +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261 +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433 +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023 +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.48827587499908987 +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164 +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.48908412500168197 +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.48907387500003097 +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.48728625000148895 +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.49086225000064587 +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539 +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.49162737499864306 +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118 +29,2161.072808854291,4.031976591596034,84.20499873523288,494.56691382205236,0.48797333399852505 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d8170eb55 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.06864016599865863 +1,397.75286598810527,0.26959441903794307,12.435042578125124,70.53263988080185,0.06839662499987753 +2,365.9092588508725,0.24801102014801152,11.439508304327031,64.88588314622352,0.06292087499969057 +3,398.012860314751,0.26977064157570174,12.443170842679242,70.57874410224296,0.06844133299819077 +4,406.01920064322974,0.27519728926085213,12.693474967156805,71.99849080287044,0.06981808400087175 +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.06821533399852342 +6,389.31376782456067,0.26387445078340127,12.171209042384383,69.03615318620736,0.06694545800201013 +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.06801020800048718 +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404 +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956 +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.06726883399824146 +11,398.1340122908051,0.26985275763165645,12.446958445760155,70.60022771538212,0.0684621660002449 +12,372.80412745844734,0.25268431921270684,11.655064223686104,66.10853501402443,0.06410650000179885 +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454 +14,392.79960984046147,0.2662371328241711,12.280187751514893,69.65428987512377,0.06754487500074902 +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.06737029099895153 +16,390.4700645317705,0.26465818150081877,12.207358621725266,69.2411967351517,0.06714429199928418 +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.06694812500063563 +18,394.8335415578033,0.2676157190936564,12.343775043194901,70.01496250787785,0.06789462500091759 +19,391.70268238960193,0.26549364221950483,12.245894247374661,69.45977414567795,0.06735624999782885 +20,391.0290628243883,0.26503706706728003,12.224834718478292,69.34032267147714,0.06724041599954944 +21,399.59149372968244,0.2708406294872032,12.492524035097249,70.85867968958954,0.06871279099868843 +22,398.602883706492,0.27017055576141114,12.461616884495088,70.68337165107918,0.06854279199978919 +23,385.29291595984876,0.261149142394204,12.04550419293266,68.32314437888363,0.06625404199803597 +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.06725350000124308 +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269 +26,384.6154175220648,0.26068993816627284,12.024323397919336,68.20300507275113,0.06613754099817015 +27,394.12479122583363,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858 +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.06785070800106041 +29,396.5473885388564,0.26877735391941465,12.397355449533,70.31887521916686,0.06818933400063543 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9c86a9234 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ebfef136e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..283c5d8ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0e200cdb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c40b0c8da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..28baba693 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..a99c49272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f14457f45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7d17b2450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7a0e52a4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..96914e8bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ab9d7026a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..268f50f99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..deda4355c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7a32866ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..f976df83c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..204ba863d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a14f47f32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..45309e979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..258371ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ecb19ab08 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333 +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.49031812499742955 +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615 +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.49021854199963855 +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641 +5,2198.850910485615,3.1767087381743906,77.14386377861389,496.93756376852235,0.4901694590007537 +6,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346 +7,2165.6159983890375,3.1286938249457634,75.97785951736712,489.4265150791473,0.48276070800056914 +8,2184.6364004938246,3.156172849231463,76.6451659281788,493.72510223609237,0.48700074999942444 +9,2175.6821728479604,3.143236559158055,76.33101833660666,491.70145795418796,0.48500466699988465 +10,2191.3581485071322,3.1658838467110355,76.88098983539325,495.2442089049758,0.48849916700055473 +11,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945 +12,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.48907704199882573 +13,2198.6882921444367,3.1764738013249003,77.13815852270048,496.90081222620364,0.49013320800077054 +14,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969 +15,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284 +16,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624 +17,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123 +18,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.49242104200311587 +19,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198 +20,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.48883358399689314 +21,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969 +22,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.48107112499928917 +23,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.48827754199737683 +24,2188.6791289765147,3.1620134320721585,76.78699987147863,494.63875383183523,0.48790195800029323 +25,2180.3695654537623,3.1500084967092086,76.49546949376993,492.76080283784785,0.4860495840002841 +26,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838 +27,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016 +28,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.49248008399808896 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..42be2d1e0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065 +1,399.29583877571366,1.158366767779374,11.413319623708539,71.40990427251671,0.06928345799678937 +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.06339016600031755 +3,394.21772121323113,1.1436350274103975,11.268168652425976,70.50173580741745,0.0684023329995398 +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.06806479199804016 +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.06797849999929895 +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.06985983299819054 +7,392.2752796374332,1.1379999579925537,11.212646644926632,70.15435035154096,0.06806529199820943 +8,387.9996905257891,1.125596371832494,11.090434840114279,69.38970574590904,0.06732341700262623 +9,391.1295975243385,1.134676306811221,11.179898905345853,69.94945703165645,0.06786649999776273 +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751 +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.06834441700266325 +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992 +13,389.43280747797996,1.1297538783490886,11.13139850726308,69.64600379469677,0.06757208300041384 +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.06605079200016917 +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.06907304199921782 +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.06757791600102792 +17,405.877194445587,1.1774594378114298,11.601438578436147,72.58691122508108,0.0704254160009441 +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.06550204200175358 +19,383.69167749641036,1.1130987231124532,10.967296242431525,68.61926246010889,0.06657591600014712 +20,388.806541361944,1.1279370653844794,11.113497555994133,69.53400261899613,0.06746341699908953 +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.06807691599897225 +22,405.6771703448896,1.176879163116574,11.595721166001537,72.5511389968335,0.07039070899918443 +23,389.34419796048155,1.129496820021875,11.12886572668612,69.63015690487794,0.06755670799975633 +24,393.09269449425614,1.1403712980208796,11.236011318735137,70.30053648975775,0.06820712500120862 +25,372.80687906909316,1.0815216628284272,10.65616932492715,66.67262956730539,0.06468725000013364 +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459 +27,390.25982961334347,1.1321530893219862,11.155037791848981,69.79390809467303,0.0677155830017 +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.06905245800226112 +29,379.8298414684538,1.101895444533057,10.856910997605121,67.92861328650847,0.06590583299839636 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..71096c95b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..131c56ac1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..13d89b412 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ba855ce0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5367d552d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a6c079484 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..02ffc2f51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..77cc4da62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a98f57db0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f206dec35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0afeb2367 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..399e26eea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b20868e50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ce5ae4762 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e8989d1a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..59129c0a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5cb3055fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6cb85f844 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..67ea34e27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b38748e0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..823409351 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333 +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.49031812499742955 +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615 +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.49021854199963855 +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641 +5,2241.1490127200236,3.2378173610171124,78.62783844069976,506.4968821271085,0.4995985829991696 +6,2198.850910485615,3.1767087381743906,77.14386377861389,496.93756376852235,0.4901694590007537 +7,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346 +8,2165.6159983890375,3.1286938249457634,75.97785951736712,489.4265150791473,0.48276070800056914 +9,2184.6364004938246,3.156172849231463,76.6451659281788,493.72510223609237,0.48700074999942444 +10,2175.6821728479604,3.143236559158055,76.33101833660666,491.70145795418796,0.48500466699988465 +11,2191.3581485071322,3.1658838467110355,76.88098983539325,495.2442089049758,0.48849916700055473 +12,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945 +13,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.48907704199882573 +14,2198.6882921444367,3.1764738013249003,77.13815852270048,496.90081222620364,0.49013320800077054 +15,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969 +16,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284 +17,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624 +18,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123 +19,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.49242104200311587 +20,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198 +21,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.48883358399689314 +22,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969 +23,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.48107112499928917 +24,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.48827754199737683 +25,2188.6791289765147,3.1620134320721585,76.78699987147863,494.63875383183523,0.48790195800029323 +26,2180.3695654537623,3.1500084967092086,76.49546949376993,492.76080283784785,0.4860495840002841 +27,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838 +28,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016 +29,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.49248008399808896 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..42be2d1e0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065 +1,399.29583877571366,1.158366767779374,11.413319623708539,71.40990427251671,0.06928345799678937 +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.06339016600031755 +3,394.21772121323113,1.1436350274103975,11.268168652425976,70.50173580741745,0.0684023329995398 +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.06806479199804016 +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.06797849999929895 +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.06985983299819054 +7,392.2752796374332,1.1379999579925537,11.212646644926632,70.15435035154096,0.06806529199820943 +8,387.9996905257891,1.125596371832494,11.090434840114279,69.38970574590904,0.06732341700262623 +9,391.1295975243385,1.134676306811221,11.179898905345853,69.94945703165645,0.06786649999776273 +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751 +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.06834441700266325 +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992 +13,389.43280747797996,1.1297538783490886,11.13139850726308,69.64600379469677,0.06757208300041384 +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.06605079200016917 +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.06907304199921782 +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.06757791600102792 +17,405.877194445587,1.1774594378114298,11.601438578436147,72.58691122508108,0.0704254160009441 +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.06550204200175358 +19,383.69167749641036,1.1130987231124532,10.967296242431525,68.61926246010889,0.06657591600014712 +20,388.806541361944,1.1279370653844794,11.113497555994133,69.53400261899613,0.06746341699908953 +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.06807691599897225 +22,405.6771703448896,1.176879163116574,11.595721166001537,72.5511389968335,0.07039070899918443 +23,389.34419796048155,1.129496820021875,11.12886572668612,69.63015690487794,0.06755670799975633 +24,393.09269449425614,1.1403712980208796,11.236011318735137,70.30053648975775,0.06820712500120862 +25,372.80687906909316,1.0815216628284272,10.65616932492715,66.67262956730539,0.06468725000013364 +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459 +27,390.25982961334347,1.1321530893219862,11.155037791848981,69.79390809467303,0.0677155830017 +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.06905245800226112 +29,379.8298414684538,1.101895444533057,10.856910997605121,67.92861328650847,0.06590583299839636 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..82a584845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cdba3c6d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d4dfb1d7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..dd3bb417f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..56c8f7400 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f4a80aa2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f4ce06a0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e89bab36d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a230071a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0b3eed534 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..665b00236 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..432c1604a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5116877ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ec8a91fba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b6ee6cdbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..c53d8790b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..18f8379ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a120d635b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6bd737e5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..542e2885e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..6f25ee71a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 890 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 473.04 ms | 65.11 ms | +| **Average Power** | 4.361 W | 5.933 W | +| **Total Energy** | 1835.92 J | 337.99 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.86% | 0.00e+00 | +5.782 | large | βœ… | +| `gpu_mj` | +90.68% | 4.91e-137 | +1.397 | large | βœ… | +| `ane_mj` | +85.47% | 8.58e-28 | +0.535 | medium | βœ… | +| `dram_mj` | +86.08% | 0.00e+00 | +28.390 | large | βœ… | +| `time_s` | +86.12% | 0.00e+00 | +111.194 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.782, large) +- **`gpu_mj`**: 90.7% lower energy (Cohen’s d = +1.397, large) +- **`ane_mj`**: 85.5% lower energy (Cohen’s d = +0.535, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.390, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +111.194, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..5699ab346 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/with_smell.csv @@ -0,0 +1,891 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333 +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.4903181249974295 +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615 +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.4902185419996385 +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641 +5,2198.850910485615,3.1767087381743906,77.14386377861389,496.9375637685223,0.4901694590007537 +6,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346 +7,2165.6159983890375,3.128693824945763,75.97785951736712,489.4265150791473,0.4827607080005691 +8,2184.636400493825,3.156172849231463,76.6451659281788,493.7251022360924,0.4870007499994244 +9,2175.6821728479604,3.143236559158055,76.33101833660666,491.701457954188,0.4850046669998846 +10,2191.358148507132,3.1658838467110355,76.88098983539325,495.2442089049758,0.4884991670005547 +11,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945 +12,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.4890770419988257 +13,2198.6882921444367,3.1764738013249003,77.13815852270048,496.9008122262037,0.4901332080007705 +14,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969 +15,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284 +16,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624 +17,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123 +18,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.4924210420031158 +19,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198 +20,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.4888335839968931 +21,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969 +22,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.4810711249992891 +23,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.4882775419973768 +24,2188.6791289765147,3.1620134320721585,76.78699987147863,494.6387538318352,0.4879019580002932 +25,2180.3695654537623,3.150008496709209,76.49546949376993,492.76080283784785,0.4860495840002841 +26,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838 +27,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016 +28,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.4924800839980889 +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.4842013329980545 +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.1584645269379,0.4918910000014875 +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971 +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.4927279170005931 +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.4888514999984181 +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332 +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907 +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.0218930859032,0.4848583329985558 +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093 +9,2138.1194142937725,3.137493734289595,83.68851708094563,490.505862543885,0.4833643750025658 +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087 +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907 +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461 +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.491482666999218 +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267 +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832 +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.2405760248656,0.4919719160025124 +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296 +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.5229983322752,0.4863375830027507 +19,2153.784005153057,3.1604800817043612,84.30164765304055,494.099475510244,0.4869056669995188 +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.3799390701532,0.4921092500007944 +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702 +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.3444832533918,0.4861616670023068 +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.488861125002586 +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051 +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191 +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902 +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.4874809579996508 +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169 +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.5549762121397,0.4893254170019645 +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.476325583000289 +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.4740477499981352 +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.4740115000022342 +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.4766071250014647 +4,1454.6356824641823,2.689847088670102,0.0,448.5656251243478,0.4807450420012173 +5,1439.3908464616345,2.6616570214023705,0.0,443.8645790316128,0.4757067499995173 +6,1436.1552645979718,2.655673928480174,0.0,442.86682349817494,0.4746374169990304 +7,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.4803635419993952 +8,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.4781675829981395 +9,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721 +10,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456 +11,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.4740057079980033 +12,1436.1856465993965,2.6557301095150985,0.0,442.8761923880117,0.4746474579987989 +13,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595 +14,1444.9948689388625,2.672019728523426,0.0,445.5926899778878,0.4775588330012397 +15,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.4783999579994997 +16,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.4758022089990845 +17,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605 +18,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591 +19,1443.300048842662,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269 +20,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.4735740840005746 +21,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895 +22,1437.235978521874,2.657672336216858,0.0,443.2000829683638,0.4749945839976135 +23,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872 +24,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404 +25,1439.6581239725597,2.6621512589927825,0.0,443.9469993277839,0.4757950830025947 +26,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.4762523329991381 +27,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.4755676250024407 +28,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993 +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.478538583000045 +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992 +2,1422.4471328985585,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801 +3,1423.230797457382,1.773392083348801,0.0,447.9989925274923,0.4765795829989656 +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372 +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273 +6,1420.5758147951883,1.7700838881896082,0.0,447.1632675277483,0.4756905419999384 +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.4768262920006236 +8,1422.3049082362418,1.772238395122154,0.0,447.70754476019846,0.4762695419994998 +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838 +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386 +11,1413.1080871694985,1.7607788555303492,0.0,444.8126055980349,0.473189916996489 +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.4762493330017605 +13,1417.3294075206245,1.7660387586362547,0.0,446.1413762147323,0.4746034580020932 +14,1412.745867489083,1.7603275179715854,0.0,444.69858751172745,0.473068625000451 +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.4747444590029772 +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.4726464579980529 +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762 +18,1417.1746163233452,1.7658458837460278,0.0,446.0926516504824,0.4745516250004584 +19,1419.5263625778225,1.768776236431752,0.0,446.8329250865043,0.4753391249978449 +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183 +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.4743509159998211 +22,1422.353809629749,1.7722993278565111,0.0,447.72293774850624,0.4762859170004958 +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447 +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.4749628339995979 +25,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732 +26,1420.870713330435,1.7704513414015055,0.0,447.25609452876904,0.4757892910020018 +27,1412.149219754377,1.7595840753963088,0.0,444.51077708455057,0.4728688329996657 +28,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899 +0,1398.2044033134116,0.4026120084407769,0.0,442.1350872693799,0.4791000420009368 +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.4714275830010592 +2,1392.2357928925342,0.4008933511232521,0.0,440.2477150918514,0.477054875002068 +3,1393.0715489932206,0.4011340065248991,0.0,440.5119948320934,0.4773412499998812 +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332 +5,1391.353584643174,0.4006393198569392,0.0,439.96874642289544,0.4767525829993246 +6,1389.8013619275412,0.4001923583800569,0.0,439.4779082276992,0.4762207079984364 +7,1393.9126545251288,0.4013762022916337,0.0,440.7779661499291,0.4776294580005924 +8,1395.2987708038715,0.4017753335328132,0.0,441.21627877461776,0.4781044160008605 +9,1393.131376142637,0.4011512337119461,0.0,440.5309131546688,0.4773617499995453 +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505 +11,1391.779428467707,0.4007619412970313,0.0,440.1034052010233,0.4768985000009706 +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.4760606250019918 +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828 +14,1397.3508945928966,0.4023662411843057,0.0,441.8651938605651,0.4788075840006058 +15,1387.6137807153643,0.3995624458555543,0.0,438.7861592903746,0.4754711249988759 +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016 +17,1387.905133100111,0.3996463405768904,0.0,438.8782896768552,0.4755709579985705 +18,1389.2666881497526,0.4000383994288292,0.0,439.308835639426,0.4760375000005297 +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.4764104999994742 +20,1387.9581516296382,0.3996616072264639,0.0,438.89505500252847,0.4755891249988053 +21,1383.6377091625147,0.3984175387519839,0.0,437.5288604728037,0.4741087090005749 +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973 +23,1385.2003855818612,0.3988675103657516,0.0,438.0230042999896,0.4746441660026903 +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586 +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256 +26,1388.7087868377796,0.3998777521249065,0.0,439.1324181251682,0.4758463329999358 +27,1386.871413337013,0.3993486816730853,0.0,438.5514105906599,0.4752167500009818 +28,1388.1705847108346,0.3997227771879352,0.0,438.9622298152176,0.4756619159998081 +29,1389.9437563946433,0.4002333607701617,0.0,439.5229356857659,0.4762695000026724 +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.3553411613795,0.4887512500026787 +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773 +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.4905316670010506 +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.4856883339998603 +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.4145019481052,0.4907829580006364 +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843 +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.4852944170015689 +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511 +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992 +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.4860352499999862 +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606 +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815 +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729 +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.4838942089991178 +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.4922301250007876 +15,2172.904363612247,4.054051068508988,84.66600867869597,497.2745947009123,0.4906449160007469 +16,2175.837068669918,4.059522701900578,84.78027989836993,497.9457515835403,0.4913071250011853 +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261 +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433 +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023 +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.4882758749990898 +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164 +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.4890841250016819 +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.4890738750000309 +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.4872862500014889 +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.4908622500006458 +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539 +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.491627374998643 +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118 +29,2161.072808854291,4.031976591596034,84.20499873523288,494.5669138220523,0.487973333998525 +0,1654.6480123452643,0.8802219605314963,0.0,471.798970844882,0.4858740839990787 +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205 +2,1623.088033571781,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473 +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468 +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022 +5,1622.4651082793391,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894 +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085 +7,1631.325248725041,0.8678149660736794,0.0,465.1488218154921,0.4790255419975437 +8,1609.854086984751,0.8563929669893303,0.0,459.02663030628105,0.4727207079995423 +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.482218458000716 +10,1634.9563714903925,0.869746611943738,0.0,466.1841840018436,0.4800917920001666 +11,1655.6029712356135,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199 +12,1699.2689617515464,0.9039589361747356,0.0,484.52198978965833,0.4989766670005338 +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.4832517079994431 +14,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.4705873329985479 +15,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844 +16,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.4723213329998543 +17,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.4728038749999541 +18,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575 +19,1625.835995757708,0.8648948519631798,0.0,463.5836406522643,0.4774136670021107 +20,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766 +21,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042 +22,1610.983721176818,0.85699389771043,0.0,459.34872917279046,0.4730524159967899 +23,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.4798239160008961 +24,1615.5939308560737,0.8594463877699828,0.0,460.6632638447108,0.4744061669989605 +25,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914 +26,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.4746511670018662 +27,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.4717144589994859 +28,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752 +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664 +1,1470.0650690266311,1.8938036315963045,0.0,459.2811985840966,0.4863042079996376 +2,1448.4887603472594,1.8660080648595936,0.0,452.54027730103815,0.4791666669989354 +3,1453.1077990562935,1.8719585173027935,0.0,453.9833682765936,0.4806946660028188 +4,1457.5307279874908,1.877656332351035,0.0,455.36519017248935,0.4821577910006454 +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206 +6,1458.6824685027595,1.8791400560422025,0.0,455.7250196626634,0.4825387919991044 +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952 +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148 +9,1454.2838469735757,1.873473554877392,0.0,454.3507919426761,0.4810837080003693 +10,1443.39889680046,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695 +11,1435.4034897523384,1.849151033497376,0.0,448.45214617728334,0.4748379999982717 +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432 +13,1440.5007836697584,1.8557175957098335,0.0,450.0446547738438,0.4765242079993186 +14,1436.810538132051,1.8509636562087617,0.0,448.891739553057,0.4753034579989617 +15,1432.6827260690825,1.845646023921523,0.0,447.60211876568223,0.4739379590027965 +16,1439.107087588519,1.8539221740270784,0.0,449.6092329546741,0.4760631669996655 +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986 +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.4766195830015931 +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.4770321659998444 +20,1449.866335125129,1.867782718357654,0.0,452.97066246455887,0.4796223749981436 +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.4822667920016101 +22,1451.9393114765087,1.870453219293409,0.0,453.61830662899615,0.4803081249992829 +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702 +24,1439.3600043065803,1.8542479926654816,0.0,449.68824979267697,0.4761468329998024 +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217 +26,1439.6413879935462,1.854610483727596,0.0,449.7761603482943,0.4762399160026689 +27,1445.2852070324934,1.8618811040676244,0.0,451.5394156132572,0.478106916998513 +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994 +29,1453.8891033023608,1.8729650284088384,0.0,454.227465193222,0.4809531249993597 +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229 +1,1405.501159477378,0.2322484329432426,0.0,441.90241119586415,0.4740041670011123 +2,1411.600628024097,0.2332563239735772,0.0,443.82013985772505,0.4760612079990096 +3,1414.8127689086136,0.2337871059525115,0.0,444.83006631164307,0.4771445000005769 +4,1415.084203187349,0.2338319584134706,0.0,444.91540772985934,0.4772360409988323 +5,1423.4112588293244,0.2352079413579451,0.0,447.5335101352102,0.4800443340027414 +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879 +7,1412.981778742787,0.2334845486804094,0.0,444.2543862677677,0.4765269999988959 +8,1412.4140739457582,0.233390739757809,0.0,444.0758946906084,0.4763355420000152 +9,1414.3226536148504,0.2337061181083035,0.0,444.6759695834992,0.4769792090010014 +10,1417.9660986792762,0.2343081698398312,0.0,445.82150201381614,0.4782079579999845 +11,1412.6123694385958,0.2334235065877477,0.0,444.1382406060304,0.4764024169999175 +12,1419.2150504322765,0.2345145496677667,0.0,446.21418386071224,0.4786291660020652 +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844 +14,1414.5234190879785,0.2337392930837979,0.0,444.73909208330065,0.477046916999825 +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688 +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.4748752910018083 +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377 +18,1411.6060661381266,0.2332572225807772,0.0,443.82184965048174,0.4760630419987137 +19,1418.1162102203814,0.2343329746362936,0.0,445.8686984543992,0.4782585829998425 +20,1413.9969775450247,0.2336523026017462,0.0,444.5735740503797,0.4768693750011152 +21,1402.71835094593,0.2317885948874347,0.0,441.0274707579634,0.4730656669999007 +22,1402.7010521628758,0.2317857363944131,0.0,441.0220318624555,0.4730598329988424 +23,1404.320403583212,0.2320533219650272,0.0,441.53117075031395,0.4736059579990979 +24,1409.4916535304808,0.2329078318944659,0.0,443.1570590003417,0.4753499580001517 +25,1413.038612086046,0.2334939399603966,0.0,444.2722551903604,0.4765461669994693 +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.4761061250028433 +27,1413.9134577072468,0.233638501580443,0.0,444.54731464998866,0.476841208001133 +28,1409.1224903257444,0.2328468304678771,0.0,443.0409907145222,0.4752254579980217 +29,1407.2538188427316,0.2325380466431972,0.0,442.45346332010627,0.4745952500015846 +0,1359.9830388133907,0.0994430417383292,0.0,439.27306303877975,0.4735101670012227 +1,1367.2100374254069,0.0999714856263093,0.0,441.6073758399505,0.4760264169999573 +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355 +3,1360.6509298042945,0.0994918784589276,0.0,439.4887911125696,0.4737427090003621 +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.4758644579997053 +5,1368.671233865174,0.1000783294724461,0.0,442.0793407229522,0.4765351669993833 +6,1378.0276760639613,0.1007624799695789,0.0,445.1014615189534,0.479792833000829 +7,1372.258883992279,0.1003406613039104,0.0,443.2381478664736,0.4777842919975228 +8,1369.9006263898757,0.1001682236319008,0.0,442.4764331899832,0.4769632089992228 +9,1362.872281559501,0.0996543054664741,0.0,440.20628534723863,0.4745161249993543 +10,1370.0406398939213,0.1001784615307049,0.0,442.52165740163406,0.4770119580025493 +11,1363.8435384826207,0.0997253245453802,0.0,440.5200002917932,0.474854291001975 +12,1375.0565775890122,0.1005452308854206,0.0,444.14179989786464,0.478758375000325 +13,1372.584870820952,0.1003644977201632,0.0,443.3434412625342,0.4778977919995668 +14,1360.2762345172491,0.0994644804414484,0.0,439.3677649366916,0.47361224999986 +15,1368.435239510169,0.1000610733774619,0.0,442.003114799375,0.4764529999993101 +16,1368.283016589219,0.1000499427163804,0.0,441.95394695915786,0.4763999999995576 +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.4763121670002874 +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.4779738329998508 +19,1366.9728453928535,0.0999541419561899,0.0,441.53076306780974,0.4759438330002012 +20,1372.0063748964212,0.1003221976379366,0.0,443.156587699312,0.4776963750009599 +21,1367.3190577628875,0.0999794572801175,0.0,441.6425892920392,0.4760643750014424 +22,1370.7449121584284,0.1002299584789725,0.0,442.7491365877813,0.4772571670000616 +23,1359.658367419681,0.0994193015077274,0.0,439.1681945268015,0.4733971249988826 +24,1367.1400292419053,0.0999663665722364,0.0,441.58476327175896,0.4760020419998909 +25,1366.998694566532,0.0999560320683337,0.0,441.5391123231862,0.4759528329996101 +26,1365.0601270460802,0.0998142824690026,0.0,440.91295709307434,0.4752778750007564 +27,1366.017143931724,0.0998842603050398,0.0,441.2220725207958,0.4756110829985118 +28,1365.7311285567905,0.0998633466332838,0.0,441.1296898614259,0.4755115000007208 +29,1365.9570675778948,0.0998798674742537,0.0,441.2026679229371,0.475590165999165 +0,1390.0603241936417,0.1674892551502086,0.0,445.0524487851344,0.4788548329997866 +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209 +2,1377.5902576361257,0.1659867288763194,0.0,441.05993597015606,0.4745590829988941 +3,1377.444387682713,0.1659691529125856,0.0,441.01323311932254,0.4745088329982536 +4,1378.2936033553765,0.1660714754506803,0.0,441.2851245675478,0.4748013749995152 +5,1380.196807079257,0.1663007936813814,0.0,441.8944689701668,0.4754570000004605 +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.4774362499993003 +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.4752448340004775 +8,1386.7012048240165,0.167084512714656,0.0,443.976967185384,0.4776976670000294 +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507 +10,1384.5611750681394,0.1668266591642937,0.0,443.29179873136127,0.4769604590001108 +11,1382.8663723350817,0.1666224513019111,0.0,442.7491775994384,0.4763766249998298 +12,1379.409399632061,0.1662059184557993,0.0,441.64236652075,0.4751857500014012 +13,1383.6672056307757,0.1667189442165428,0.0,443.0055785721975,0.4766525000013644 +14,1383.0517940967477,0.1666447928882506,0.0,442.8085436626597,0.4764405000023544 +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795 +16,1380.578780242162,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149 +17,1385.9641130782545,0.1669957000600349,0.0,443.74097419952494,0.4774437500018393 +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388 +19,1390.5397849329893,0.1675470256805298,0.0,445.20595663830386,0.4790199999988545 +20,1385.4222432134395,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751 +21,1384.7365557380076,0.1668477908930775,0.0,443.3479499610856,0.4770208749978337 +22,1380.1324588315383,0.1662930403199675,0.0,441.8738667382177,0.4754348329988715 +23,1382.8147242197429,0.1666162281875488,0.0,442.7326415399548,0.4763588330024504 +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962 +25,1381.048562774172,0.1664034222683774,0.0,442.16717365153266,0.4757504170011088 +26,1385.5867380781835,0.1669502299055574,0.0,443.6201509050472,0.4773137500014854 +27,1384.5037182668846,0.1668197361576601,0.0,443.27340291813454,0.4769406659979722 +28,1386.1163925964613,0.1670140483163193,0.0,443.7897291861239,0.4774962080009572 +29,1382.6472045469038,0.1665960436353114,0.0,442.6790071477496,0.4763011249997362 +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.4773925419976876 +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012 +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.4768721250002272 +3,1591.7771157613092,0.1653828771258944,0.0,448.02221413404817,0.4742466669995338 +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.4763908750028349 +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756 +6,1599.923316021195,0.1662292531814889,0.0,450.3150468686536,0.476673707998998 +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078 +8,1599.6205389249687,0.166197795167169,0.0,450.229827107861,0.4765834999998333 +9,1592.539445588393,0.1654620818706251,0.0,448.2367797875235,0.4744737920009356 +10,1607.448160004806,0.1670110713993855,0.0,452.43299242093553,0.4789156250008091 +11,1594.297518282129,0.1656447425694174,0.0,448.7316076205518,0.4749975839986291 +12,1602.677410191569,0.1665153987814363,0.0,451.0902152989111,0.4774942500007455 +13,1605.1480233851848,0.1667720912003558,0.0,451.785595061764,0.4782303329993738 +14,1601.3632290921896,0.1663788576481786,0.0,450.7203253689159,0.4771027089991548 +15,1595.800220143318,0.1658008706823329,0.0,449.15455867844,0.475445291998767 +16,1611.70677521292,0.1674535341215318,0.0,453.63162393522987,0.4801844169996911 +17,1598.0024596834728,0.1660296795448708,0.0,449.7744018870551,0.4761014169998816 +18,1595.2047318950506,0.1657390004878076,0.0,448.9869523214708,0.4752678750010091 +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831 +20,1594.7083993859603,0.1656874324023315,0.0,448.8472543779161,0.4751200000027893 +21,1594.7913334840082,0.1656960491110473,0.0,448.8705970418272,0.4751447090020519 +22,1611.819356688242,0.1674652311412436,0.0,453.66331116162905,0.4802179590005835 +23,1625.5004557649995,0.1688866735688013,0.0,457.513998697883,0.4842940419985098 +24,1613.805663465247,0.1676716049648041,0.0,454.2223778496544,0.4808097499990253 +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.4764814170011959 +26,1601.7627822219915,0.1664203705242697,0.0,450.83278375024673,0.477221749999444 +27,1637.621652666843,0.1701460448702147,0.0,460.9256355534117,0.4879053750009916 +28,1623.030399742511,0.1686300390389941,0.0,456.81877575663515,0.4835581250008545 +29,1635.1585880735686,0.1698901367377575,0.0,460.2323804225851,0.4871715409972239 +0,1433.797396939961,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367 +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.4802329169979202 +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418 +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.4777907079987926 +4,1456.870261103736,2.422621340465356,0.0,459.9279319836243,0.4831794579986308 +5,1446.022167683568,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192 +6,1436.2791326006184,2.3883804690111443,0.0,453.4273976515741,0.4763502909991075 +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637 +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.4756194999972649 +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.4778836250006861 +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.477050915997097 +11,1439.3127778105872,2.393425100521093,0.0,454.3851069308725,0.4773564169991005 +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.4774322919984115 +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.4832142499981273 +14,1457.2685173856205,2.4232835985903427,0.0,460.0536598490472,0.4833115420005924 +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105 +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717 +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.4813035830011358 +18,1436.3550154988843,2.3885066542546927,0.0,453.4513535695472,0.4763754580017121 +19,1439.5605226171017,2.393837073962569,0.0,454.463318944366,0.4774385829987295 +20,1434.5232971346488,2.385460700117666,0.0,452.8730876376165,0.4757679579997784 +21,1437.706317098976,2.3907537260641667,0.0,453.8779539107096,0.4768236250019981 +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702 +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.478918374999921 +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.480683041998418 +25,1444.3381928638455,2.401781834869899,0.0,455.9716097338424,0.4790231250008219 +26,1444.1479836100018,2.401465536974459,0.0,455.9115614569984,0.4789600410003913 +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177 +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.4783567919985216 +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.4797304159983468 +0,1437.887930994931,1.712970905880436,0.0,453.8701147286732,0.481649749999633 +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.4807219579997763 +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.4827039170013449 +3,1409.294103322443,1.678906780412161,0.0,444.8444573276378,0.4720716669980902 +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454 +5,1427.6852831409622,1.700816384961202,0.0,450.6496433329554,0.4782321659986337 +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.475717875000555 +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874 +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.4759302920028858 +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.4766364589995646 +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318 +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285 +12,1432.068880750474,1.7060386105646854,0.0,452.0333283247176,0.4797005410000565 +13,1432.8993036323643,1.70702790201473,0.0,452.2954517632362,0.4799787080009992 +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.4781303749987273 +15,1421.5099863905457,1.6934596894631586,0.0,448.7004075238365,0.4761636250004812 +16,1424.2936899173185,1.6967759445406032,0.0,449.57908507014065,0.4770960830028343 +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928 +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.475372958000662 +19,1423.7101814554428,1.6960808048172755,0.0,449.3949003038402,0.4769006249989616 +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.4777400829989346 +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789 +22,1429.3195086264966,1.702763254845861,0.0,451.1654875045515,0.4787795829979586 +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727 +24,1429.1426302590603,1.702552537799862,0.0,451.1096557507752,0.4787203339983534 +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349 +26,1429.5686590813752,1.703060070384259,0.0,451.2441319824019,0.4788630410002952 +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045 +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.478106791000755 +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.4814269579983374 +0,1381.5516209493485,0.0999506803686798,0.0,439.3165571138039,0.4754871660006756 +1,1381.107557064519,0.0999185538185438,0.0,439.17535021710626,0.4753343330012285 +2,1376.128171163972,0.0995583117537298,0.0,437.59196626156063,0.4736205830013205 +3,1380.7211189424895,0.0998905963013352,0.0,439.0524676098022,0.475201332999859 +4,1380.2241479000502,0.0998546420937167,0.0,438.89443688258285,0.4750302909997117 +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.4739347079994331 +6,1377.0907565492023,0.0996279516156849,0.0,437.8980566681405,0.4739518749993294 +7,1379.9166477647204,0.0998323954781913,0.0,438.7966555918104,0.474924459002068 +8,1388.2125966734,0.1004325798832855,0.0,441.4346661136675,0.4777796669986855 +9,1385.2603140533952,0.100218992021612,0.0,440.4958762656587,0.4767635829994106 +10,1378.254188068791,0.0997121220297193,0.0,438.2680136946266,0.4743522919998213 +11,1384.9526889767828,0.100196736366999,0.0,440.398055245083,0.4766577080008574 +12,1382.3441125519096,0.1000080145092658,0.0,439.56855977306,0.475759917000687 +13,1382.6810342874294,0.1000323896800416,0.0,439.67569677367646,0.475875874999474 +14,1381.2961766373749,0.0999321998194256,0.0,439.235328939649,0.475399250000919 +15,1385.2699982500696,0.1002196926411413,0.0,440.49895572203,0.4767669159991783 +16,1373.3594263151476,0.0993580022414315,0.0,436.71153918517217,0.4726676670034067 +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.4784245000009832 +18,1380.847269195503,0.0998997228539925,0.0,439.0925818509153,0.4752447499995469 +19,1378.9612042113365,0.0997632723040974,0.0,438.4928362006096,0.4745956250008021 +20,1377.5675078746096,0.0996624429937981,0.0,438.0496577720742,0.4741159580007661 +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.4762315420011873 +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.476905750001606 +23,1380.1145854309248,0.0998467156122404,0.0,438.85959735433414,0.4749925830001302 +24,1386.322655687205,0.1002958489174913,0.0,440.8336879420138,0.4771292080004059 +25,1383.0889008435486,0.1000618974734281,0.0,439.8053933615413,0.4760162500024307 +26,1382.3496824807823,0.1000084174751572,0.0,439.5703309424747,0.4757618339972396 +27,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028 +28,1385.4469985267924,0.1002324980244622,0.0,440.5552396501865,0.4768278339979588 +0,1398.8862502594493,0.1670631105953912,0.0,440.94637410547574,0.4769608329988841 +1,1396.9275519023229,0.1668291914756637,0.0,440.32896798086693,0.4762929999997141 +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.4758985420012322 +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526 +4,1397.991833947257,0.1669562942111038,0.0,440.6644429407875,0.4766558750015974 +5,1392.2824223679588,0.1662744431614349,0.0,438.8647652802912,0.4747092079996946 +6,1389.60246999989,0.1659543877039064,0.0,438.0200109056906,0.4737954579977668 +7,1396.1068221654489,0.1667311751696382,0.0,440.0702637427432,0.4760131659968465 +8,1391.825623572621,0.16621988959952,0.0,438.7207766089732,0.4745534590001625 +9,1396.1552182260154,0.1667369549079245,0.0,440.08551878397606,0.4760296669992385 +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643 +11,1398.5840366906104,0.1670270184979351,0.0,440.8511126234501,0.4768577909999294 +12,1403.2547089972113,0.1675848172781918,0.0,442.3233667240595,0.4784502920010709 +13,1396.9105644487831,0.166827162735422,0.0,440.323613323873,0.4762872079991211 +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.4752887499998905 +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325 +16,1395.3931497605902,0.1666459442712148,0.0,439.8453053094444,0.4757698339999479 +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465 +18,1396.185647230651,0.1667405889161691,0.0,440.0951103853369,0.4760400419982034 +19,1397.077863860132,0.1668471426015874,0.0,440.37634818262984,0.4763442499970551 +20,1394.4525370705426,0.1665336108475102,0.0,439.5488124709186,0.475449124998704 +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357 +22,1389.5461345505648,0.1659476597977601,0.0,438.00225327020814,0.4737762500008102 +23,1395.138839516903,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239 +24,1396.723593957756,0.1668048336348145,0.0,440.26467789572945,0.4762234589979925 +25,1404.0633375129448,0.1676813883861925,0.0,442.57825650651665,0.4787260000011883 +26,1391.7788171546058,0.1662142997055683,0.0,438.70602264287703,0.4745374999984051 +27,1397.919124008101,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545 +28,1400.2760860285289,0.1672290928450245,0.0,441.38446765515783,0.4774347080019652 +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.4754571249977743 +0,1392.7279603943014,0.1339966768870043,0.0,442.3565295732231,0.4786749999984749 +1,1389.1204843918358,0.1336495956119625,0.0,441.21072751399134,0.477435125001648 +2,1380.2402990351388,0.1327952181873855,0.0,438.3902140411066,0.4743830410006922 +3,1385.5556798078874,0.1333066198251725,0.0,440.0784786978509,0.4762099159997888 +4,1388.581612791723,0.1335977498777364,0.0,441.03957178387736,0.4772499169994262 +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197 +6,1384.9009121834042,0.1332436235413978,0.0,439.87051221603974,0.4759848749999946 +7,1390.9897468626043,0.1338294404678393,0.0,441.80444034445446,0.4780775829967751 +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852 +9,1380.9355617432616,0.1328621105706084,0.0,438.6110425212212,0.4746219999979075 +10,1384.2770555996944,0.1331836012603434,0.0,439.6723636607087,0.4757704580006248 +11,1383.5134214083396,0.1331101307428348,0.0,439.4298191147835,0.4755079999995359 +12,1386.532682809284,0.1334006189112961,0.0,440.3887931809163,0.4765457080029591 +13,1387.365540957909,0.1334807495810375,0.0,440.65332455440017,0.4768319579998206 +14,1393.2604077165302,0.1340479045307545,0.0,442.52564483215343,0.4788580000022193 +15,1382.1245980610845,0.1329765097352817,0.0,438.9887027635988,0.4750306669993733 +16,1390.2715743685353,0.1337603438959504,0.0,441.57633528650655,0.4778307499982475 +17,1386.3423517986607,0.1333823068477364,0.0,440.3283404810899,0.4764802919999056 +18,1386.152867472149,0.1333640762450654,0.0,440.26815670402226,0.4764151669987768 +19,1387.0355487415052,0.133449000480241,0.0,440.5485128353957,0.476718541001901 +20,1385.5385891202095,0.1333049755016437,0.0,440.0730503748014,0.4762040419991535 +21,1379.320279536285,0.132706701578957,0.0,438.097998587532,0.4740668339982221 +22,1393.496567010398,0.1340706258097797,0.0,442.6006534545353,0.478939167001954 +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452 +24,1384.7716816940174,0.1332311900607593,0.0,439.82946618808177,0.4759404590004124 +25,1385.4854869535443,0.1332998664537384,0.0,440.0561841304042,0.4761857909979881 +26,1384.3494335214364,0.1331905648607515,0.0,439.695352246556,0.4757953340013046 +27,1381.87219185281,0.1329522253135596,0.0,438.9085338163886,0.474943916000484 +28,1389.2910566489743,0.1336660066529379,0.0,441.26490446301153,0.4774937500005762 +29,1379.96219569416,0.1327684614017231,0.0,438.3018832024386,0.4742874580006173 +0,2136.203094366269,0.93457425106257,0.0,450.030879538451,0.4746758750006847 +1,2134.504400315829,0.9338310840274872,0.0,449.673018069379,0.4742984160002379 +2,2140.0647600968737,0.9362637034220164,0.0,450.84441118710873,0.4755339580005966 +3,2130.118633912307,0.9319123412063032,0.0,448.74907487444943,0.4733238749977317 +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922 +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985 +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567 +7,2140.343781207982,0.9363857732507852,0.0,450.90319216929765,0.4755959579997579 +8,2123.4230632247763,0.9289830748002958,0.0,447.3385284832996,0.4718360829974699 +9,2124.5554614297384,0.9294784912740844,0.0,447.5770892088742,0.4720877079998899 +10,2127.025585853203,0.930559153823998,0.0,448.0974668217487,0.4726365829992573 +11,2136.577936722176,0.93473824203092,0.0,450.109847046532,0.4747591669984103 +12,2128.1066081569707,0.9310320936922108,0.0,448.3252042590027,0.4728767919987149 +13,2126.8684474597603,0.9304904068510382,0.0,448.0643626990196,0.472601665998809 +14,2134.9276258433156,0.9340162423026646,0.0,449.7621783916723,0.474392459000228 +15,2129.032364221914,0.9314371056423116,0.0,448.5202319776889,0.4730825000006007 +16,2132.6545758265033,0.9330217984584944,0.0,449.2833181648528,0.4738873749993217 +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.4739143330007209 +18,2131.381163955856,0.932464689469914,0.0,449.0150502901017,0.4736044159981247 +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959 +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707 +21,2132.5525666154294,0.9329771701259671,0.0,449.261828028872,0.4738647080012015 +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.4754727910003566 +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205 +24,2127.013772451134,0.9305539855413472,0.0,448.0949781090709,0.4726339579974592 +25,2158.107187960308,0.9441571422772864,0.0,454.64538390445193,0.4795430830017722 +26,2129.987750526841,0.9318550806198584,0.0,448.7215018570554,0.4732947920019796 +27,2133.861040626745,0.9335496185614108,0.0,449.53748239512504,0.4741554579995863 +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.4748490419988229 +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905 +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169 +1,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.4741008329983742 +2,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305 +3,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.4755443329995614 +4,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.4754301249995478 +5,1411.741753318708,1.2684712623217371,0.0,446.5686459826368,0.4759500830004981 +6,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337 +7,1411.2333039163964,1.2680144128634985,0.0,446.4078109286284,0.4757786660011334 +8,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134 +9,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352 +10,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.4737324160014395 +11,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283 +12,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.4766884999989997 +13,1413.72623564537,1.2702543496293404,0.0,447.1963865616136,0.4766191250018892 +14,1409.9204124898235,1.2668347601109735,0.0,445.9925110727528,0.4753360419999808 +15,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.4740017920012178 +16,1414.1821574059145,1.2706640022090403,0.0,447.3406058303301,0.476772833000723 +17,1407.8358224333165,1.26496172449792,0.0,445.3331039561361,0.4746332499998971 +18,1408.264307266331,1.265346724584332,0.0,445.4686442497156,0.4747777080010564 +19,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618 +20,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096 +21,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007 +22,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.4757349160026933 +23,1407.3231699892026,1.264501098543216,0.0,445.1709393766091,0.474460416000511 +24,1412.2315426385103,1.2689113454143433,0.0,446.7235783935022,0.4761152089995448 +25,1409.2195337686403,1.2662050100068178,0.0,445.7708058913476,0.4750997499977529 +26,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464 +27,1411.5918379108589,1.2683365610662214,0.0,446.5212240511556,0.4758995410011266 +28,1408.3419226332817,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236 +0,1393.914644610329,0.1001279555078772,0.0,442.7991952410027,0.4769412079986068 +1,1395.233719300143,0.1002227075447856,0.0,443.2182203322239,0.4773925420013256 +2,1395.0142778015193,0.1002069445791724,0.0,443.1485112439603,0.4773174579968327 +3,1395.110604219539,0.100213863917695,0.0,443.1791108653535,0.4773504170007072 +4,1393.8152786855164,0.1001208178348948,0.0,442.76763007185,0.4769072089984547 +5,1393.8315956415768,0.1001219899177456,0.0,442.77281341291064,0.4769127920008031 +6,1387.1687683245957,0.0996433843734744,0.0,440.6562601609618,0.4746330420020967 +7,1391.1876039682206,0.0999320661791174,0.0,441.93290733278377,0.4760081249987706 +8,1392.3965925792977,0.1000189104908029,0.0,442.3169618271607,0.4764217919982911 +9,1388.5243727459326,0.0997407604213628,0.0,441.08688950340695,0.4750968750013271 +10,1392.8408268551927,0.1000508208161473,0.0,442.458079922609,0.4765737909983727 +11,1386.1762985767418,0.0995720930880716,0.0,440.3409863331489,0.4742934589994547 +12,1389.0087958741594,0.0997755576003849,0.0,441.24077422810245,0.4752626250010507 +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.4757032500019704 +14,1390.0111294314313,0.0998475574249184,0.0,441.559181452131,0.4756055830002879 +15,1390.948925844576,0.0999149214044087,0.0,441.8570874240971,0.4759264589993108 +16,1396.212671944328,0.1002930278668945,0.0,443.5292002366967,0.4777274999978544 +17,1390.1526335855483,0.0998577219796151,0.0,441.60413250118455,0.4756539999980305 +18,1399.6301828713626,0.100538515195242,0.0,444.61482703175864,0.4788968339998973 +19,1386.9895127650243,0.0996305080522716,0.0,440.5993167764959,0.4745717080004397 +20,1392.3554334243463,0.1000159539381534,0.0,442.30388696582713,0.4764077090003411 +21,1399.1193305515217,0.1005018195492425,0.0,444.4525466532669,0.4787220409998554 +22,1394.742232204257,0.100187402945426,0.0,443.0620916256557,0.4772243749976042 +23,1397.4406575579208,0.1003812367750637,0.0,443.91928943159024,0.4781476670032134 +24,1395.8205537077984,0.100264861151312,0.0,443.4046376314855,0.4775933329983672 +25,1388.8359963638768,0.0997631450314057,0.0,441.1858817105535,0.4752034999983152 +26,1396.3338376479594,0.1003017314659486,0.0,443.5676904529135,0.4777689580005244 +27,1390.4448949140815,0.0998787157538129,0.0,441.6969739686122,0.4757540000027802 +28,1392.3996350206342,0.1000191290360574,0.0,442.31792830712465,0.4764228329986508 +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.4753916670015314 +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214 +2,1410.4888534886547,2.57675488667884,0.0,450.2293538360664,0.4780275000011897 +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321 +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.4748084160019061 +5,1402.588873689239,2.562322789961124,0.0,447.7076729368437,0.4753501250015688 +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.4769594579993281 +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915 +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.4754808749967196 +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.4759253749980416 +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982 +11,1405.115976126432,2.5669394330051785,0.0,448.5143263850866,0.476206583000021 +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345 +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.4764153750002151 +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.4748462499992456 +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462 +16,1407.7395911650067,2.571732390322558,0.0,449.3517867454507,0.4770957499968062 +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.4743893330014543 +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309 +19,1391.8015679961811,2.5426159751288515,0.0,444.26435492705934,0.4716942089980875 +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645 +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289 +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583 +23,1402.136811455346,2.561496939003574,0.0,447.5633742513517,0.4751969169992662 +24,1407.9788382191025,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483 +25,1407.0144704711065,2.570407701873714,0.0,449.1203275455708,0.4768499999991036 +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.4770084999981918 +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.4770505419983237 +28,1401.8344944047062,2.560944650387017,0.0,447.4668743676224,0.4750944590014114 +29,1405.6258237574764,2.5678708493517206,0.0,448.6770702230915,0.4763793749989418 +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.4768898330003139 +1,1810.3407727008257,0.3624635693430848,0.0,450.5751679270311,0.475776458002656 +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.474959334002051 +3,1803.924867023314,0.3611789868448571,0.0,448.978315101507,0.4740902909979922 +4,1814.9485005797917,0.3633861213392375,0.0,451.7219839266121,0.47698741700151 +5,1838.3950575707256,0.3680805539366213,0.0,457.55759041176,0.4831494169993675 +6,1810.9882621843371,0.3625932086645014,0.0,450.7363213889448,0.4759466249997786 +7,1809.528084290628,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517 +8,1816.3105392978791,0.3636588265794807,0.0,452.06098133162,0.4773453749985492 +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575 +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.4773302499997953 +11,1812.3434823164148,0.3628645486982265,0.0,451.0736217181408,0.476302791001217 +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062 +13,1890.5448082241376,0.3785218946207775,0.0,470.5371260949556,0.4968549160003022 +14,1863.8205427908624,0.3731712044175371,0.0,463.8857317459456,0.4898314999991271 +15,1888.8672721415512,0.3781860209966702,0.0,470.1196046462245,0.496414042001561 +16,1882.4233044209063,0.3768958199605018,0.0,468.51576746726386,0.494720499998948 +17,1887.059090550134,0.3778239897351924,0.0,469.6695668762747,0.4959388329989451 +18,1881.9700309632929,0.3768050662649475,0.0,468.40295237335386,0.4946013750013662 +19,1886.6865178361625,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411 +20,1849.6913781590397,0.3703422853976963,0.0,460.36912822982725,0.4861182080021535 +21,1814.6577320581712,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264 +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.4750594580000324 +23,1807.75034288652,0.3619449175782984,0.0,449.9304366332412,0.4750956659991061 +24,1811.4627790990735,0.3626882156914782,0.0,450.85442376047934,0.4760713329997088 +25,1819.489476926938,0.3642953084491503,0.0,452.85218615760743,0.4781808330008061 +26,1813.531285204246,0.3631023687158118,0.0,451.369253620001,0.4766149580027559 +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.476694042001327 +28,1801.3705887684314,0.3606675732881824,0.0,448.3425815584188,0.4734190000017406 +29,1829.2969259130637,0.3662589403903112,0.0,455.2931591724651,0.4807583330002671 +0,1409.9511145646975,0.7683839360010437,0.0,445.2951949112135,0.4760072919998492 +1,1399.6801275675623,0.7627865352585996,0.0,442.0513794983424,0.4725397500005783 +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818 +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.4716822500013222 +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.472294041999703 +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029 +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.474087958002201 +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738 +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.4762599170026078 +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575 +10,1410.2225082204634,0.7685318379554227,0.0,445.3809073090361,0.4760989159985911 +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956 +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474 +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319 +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.4767237919986655 +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965 +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252 +17,1403.882638711802,0.7650767863323724,0.0,443.3786297836606,0.4739585409988649 +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.4729575839992321 +19,1405.5357040683705,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616 +20,1402.830378107766,0.764503333723785,0.0,443.046301530623,0.4736032920009165 +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547 +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724 +23,1412.2901343112185,0.7696586363652266,0.0,446.033911483135,0.4767969579988858 +24,1413.507409993883,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596 +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379 +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.4757148329990741 +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383 +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697 +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.4738867079977353 +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.4849021669979265 +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063 +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135 +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.4895718750012747 +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.6778526944505,0.4906171659968095 +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154 +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.4871125419995223 +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639 +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739 +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.4879217089983285 +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891 +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944 +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.4859462909989815 +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574 +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318 +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.4878895000001648 +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959 +17,2227.261152610207,3.99574426756604,74.82031141017409,495.37239557149974,0.488344417000917 +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.4923834159999387 +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123 +20,2227.782798769239,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098 +21,2221.6883752224203,3.9857466104544903,74.63310528076033,494.1329360310955,0.4871225419992697 +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.4864686250002705 +23,2217.6434795297237,3.9784899990068143,74.49722523140261,493.23329762686984,0.4862356670018926 +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311 +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591 +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985 +27,2251.464964761066,4.039166316903047,75.63338928400955,500.7556441380552,0.4936512920030509 +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068 +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304 +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235 +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195 +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.4886344999977154 +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134 +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859 +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844 +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769 +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.4936091669987945 +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017 +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253 +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.4851672910008346 +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426 +12,2188.706010784058,2.983740150116864,75.78699981296833,491.554613397586,0.4860802499970305 +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227 +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.4898277079992112 +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.4867344580015924 +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.4993912499994621 +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378 +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.4859611249994486 +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.4922967499987862 +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.4873433749999094 +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008 +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.487996292002208 +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986 +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196 +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232 +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.4884874160015897 +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.4907508750002307 +28,2240.945048917429,3.05495470095834,77.59584940434183,503.2868150123256,0.4976817919996392 +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876 +0,1447.352143928246,0.1670342924325731,0.0,440.8703114465335,0.4786405830018339 +1,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.4763764579984126 +2,1442.1423750135714,0.166433049626494,0.0,439.2833911841685,0.4769177079979272 +3,1442.9420675541187,0.1665253395907811,0.0,439.5269813159078,0.4771821670001372 +4,1437.1418858973352,0.1658559591341414,0.0,437.7602185386529,0.4752640420010721 +5,1439.2019047977624,0.1660936993419229,0.0,438.3877100430714,0.4759452920006879 +6,1437.048774549541,0.1658452134506105,0.0,437.73185638154155,0.4752332499992917 +7,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179 +8,1443.399553534289,0.1665781365879156,0.0,439.6663337101445,0.4773334580022492 +9,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901 +10,1432.716058127496,0.165345188474033,0.0,436.41209045836274,0.4738004169994383 +11,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.4786068749999685 +12,1441.7816532347647,0.1663914198770645,0.0,439.17351362352423,0.4767984169993724 +13,1448.9938602988364,0.1672237576801888,0.0,441.3703860210905,0.4791834999996354 +14,1443.4076182206436,0.1665790673076334,0.0,439.6687902517676,0.4773361250008747 +15,1440.843745147536,0.1662831788975806,0.0,438.8878223822743,0.4764882499985106 +16,1442.4172972021684,0.1664647775190038,0.0,439.3671337836588,0.4770086249991436 +17,1441.4691835270078,0.1663553587451826,0.0,439.0783338720352,0.4766950830016867 +18,1441.9596812033676,0.1664119655168341,0.0,439.227741785132,0.4768572909997601 +19,1439.0480618235515,0.1660759448151819,0.0,438.3408487451912,0.4758944159984821 +20,1443.1939296256437,0.1665544061887644,0.0,439.6036996946248,0.4772654580010567 +21,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519 +22,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837 +23,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415 +24,1433.4711454001133,0.1654323306866836,0.0,436.6420936144327,0.4740501250016677 +25,1457.45165533711,0.1681998448167466,0.0,443.9466704093212,0.4819805000006454 +26,1442.1242317326914,0.1664309557683429,0.0,439.27786465496433,0.476911707999534 +27,1437.1829592656563,0.1658606992805142,0.0,437.7727296809894,0.4752776249988528 +28,1453.654038845132,0.1677615740155951,0.0,442.7898984567618,0.4807246250020398 +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.4776932919994578 +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947 +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.471633417000703 +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077 +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674 +5,1494.696902023256,2.327463254474083,0.0,452.2926092944422,0.4755619579991617 +6,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.4757614579975779 +7,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.4753305420017568 +8,1496.9221576047012,2.3309283052081926,0.0,452.9659676535291,0.4762699589991825 +9,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.4777056249986344 +10,1500.131823380298,2.335926227624257,0.0,453.93720677675384,0.4772911660002137 +11,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286 +12,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.4754105419997358 +13,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702 +14,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234 +15,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261 +16,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572 +17,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218 +18,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491 +19,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127 +20,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458 +21,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.4765544590009085 +22,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.4758864580035151 +23,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.4770657910012232 +24,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.4747234590031439 +25,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.4790385420019447 +26,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.4746996670000953 +27,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353 +28,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.4753105830022832 +0,1381.9094842887912,1.232925439914284,0.0333223091868725,441.0874067066318,0.4757015830000455 +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.4761970830004429 +2,1377.8662199972532,1.2293180810662478,0.0332248130017904,439.7968497047006,0.4743097499995201 +3,1382.9158230323503,1.233823284999083,0.0333465752702454,441.40861685223945,0.4760479999968083 +4,1386.128503523028,1.2366896055159518,0.033424043392323,442.43406238417987,0.4771539169996686 +5,1376.9074533923183,1.2284626793546278,0.0332016940366115,439.4908239626273,0.4739797089969215 +6,1390.6754208710522,1.2407463184449117,0.0335336842822949,443.8853788447377,0.4787191249997704 +7,1380.57996803777,1.231739259178643,0.0332902502480714,440.66304253372147,0.4752439170006255 +8,1381.657961329704,1.2327010337151032,0.0333162441544622,441.0071238726168,0.4756149999993795 +9,1374.6571707641597,1.226455000320077,0.0331474324410831,438.7725632226178,0.47320508300254 +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.9536166278275,0.4809496670022781 +11,1363.870814864897,1.2168315244387933,0.0328873384983457,435.32969970260285,0.4694920420006383 +12,1392.8155520129008,1.2426557214554106,0.0335852897690651,444.5684806731154,0.4794558329995197 +13,1383.647032868345,1.234475662900069,0.0333642071054072,441.6420094542761,0.4762997079997149 +14,1381.6147495768726,1.232662480633317,0.0333152021792788,440.993331247114,0.4756001250025292 +15,1377.525609644332,1.229014192009845,0.0332165997840498,439.6881313414681,0.4741925000016636 +16,1385.5815166921095,1.2362015894868232,0.0334108537699141,442.2594713523535,0.4769656249991385 +17,1383.6618018467698,1.234488839630838,0.0333645632332658,441.6467235187406,0.4763047919987002 +18,1374.955298503026,1.2267209868248166,0.0331546212655355,438.8677216918945,0.4733077089986182 +19,1371.61443522941,1.2237403029463525,0.0330740622417933,437.8013618946179,0.4721576669981004 +20,1375.2341748666422,1.2269697974504057,0.0331613458770379,438.9567353743518,0.4734037079979316 +21,1379.3660443310175,1.2306562089230462,0.0332609786195417,440.2755739868747,0.4748260419983126 +22,1373.8068562416304,1.2256963584418106,0.0331269286065354,438.5011539647093,0.4729123750003055 +23,1383.064340779556,1.2339557910068135,0.0333501565136976,441.456021771816,0.4760991250004736 +24,1389.1312954040106,1.2393686655722889,0.0334964504208726,443.3925142210916,0.4781875830012723 +25,1378.0240598523594,1.229458904162844,0.0332286190314282,439.8472301190153,0.4743640839988075 +26,1384.5515748746504,1.2352826859820614,0.0333860185400557,441.93072741471747,0.4766110829987156 +27,1384.6750399681143,1.2353928402695915,0.0333889956829619,441.9701358553671,0.4766535840026336 +28,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.4761708330006513 +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491 +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846 +2,1429.4735844199126,2.1692569511193316,0.0,450.1708771330563,0.4782339589983166 +3,1426.3045481635716,2.1644478703483796,0.0,449.1728818942968,0.4771737500013842 +4,1432.4783415347592,2.1738167347549635,0.0,451.1171374632262,0.4792392079980345 +5,1436.4295181245916,2.1798127303270483,0.0,452.3614449135624,0.4805610839975998 +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.4785199159996409 +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575 +8,1422.6951236106663,2.158970490852691,0.0,448.03619924787614,0.4759662079995905 +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833 +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044 +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324 +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295 +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374 +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455 +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.4791691659993375 +16,1432.7423778229895,2.174217415508938,0.0,451.2002879661548,0.4793275419979181 +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342 +18,1421.4663687712782,2.157105828920064,0.0,447.649238866196,0.475555124998209 +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355 +20,1425.254760753872,2.1628547953447503,0.0,448.8422820677744,0.4768225410007289 +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392 +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321 +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.4788790829989011 +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149 +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.4772504579996166 +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.4783681660010188 +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.4748786250020202 +28,1436.3390958497594,2.1796755125775538,0.0,452.3329690639789,0.4805308329996478 +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702 +0,1386.7005541149863,0.0998895877817119,0.0,439.2811105347087,0.4755048749975685 +1,1389.776976809194,0.1001111948142143,0.0,440.255664394643,0.4765597919977153 +2,1385.844628906725,0.0998279320652189,0.0,439.009969245478,0.4752113750000717 +3,1385.5003865740737,0.0998031349130122,0.0,438.90091963579016,0.4750933329996769 +4,1389.920116092038,0.1001215057093215,0.0,440.3010082743598,0.4766088750002382 +5,1395.4414636433553,0.1005192304590982,0.0,442.0500691489612,0.4785021659990889 +6,1383.25911358358,0.0996416870543074,0.0,438.1909257691591,0.4743247919977875 +7,1394.1143187941695,0.1004236309069682,0.0,441.62965418521094,0.4780470830010017 +8,1391.919461157872,0.1002655265318898,0.0,440.93436384507424,0.4772944579999603 +9,1385.5401236639073,0.0998059973345432,0.0,438.91350761154297,0.4751069589983672 +10,1389.6626327917504,0.1001029581572562,0.0,440.21944232289394,0.4765205830008199 +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.4732225410007231 +12,1384.9940492190317,0.0997666614079548,0.0,438.7405213183826,0.4749197080018348 +13,1374.9844398051246,0.0990456292029527,0.0,435.56966202485194,0.4714873750017432 +14,1387.592932719944,0.0999538693821843,0.0,439.5637995863861,0.475810875002935 +15,1390.2901178414663,0.1001481584153576,0.0,440.41821799127104,0.4767357500022626 +16,1383.923900638318,0.0996895743250403,0.0,438.401518023419,0.4745527499981108 +17,1383.3757643872302,0.0996500898783031,0.0,438.22787858815104,0.474364792000415 +18,1391.7060864361836,0.1002501562971774,0.0,440.8667706762208,0.4772212909992959 +19,1392.4171721955554,0.1003013786488022,0.0,441.09202950454926,0.4774651250008901 +20,1405.4888679186208,0.1012429851791452,0.0,445.23290115615447,0.4819474590003665 +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863 +22,1391.9551883778888,0.1002681001064582,0.0,440.94568156816786,0.4773067089990945 +23,1388.182261289353,0.0999963210763814,0.0,439.7504879869002,0.4760129580026841 +24,1375.0170057848686,0.0990479750607392,0.0,435.5799783254442,0.4714985419996083 +25,1388.4195727452525,0.1000134155698071,0.0,439.82566387082176,0.4760943330002192 +26,1387.2079850901775,0.0999261400646032,0.0,439.4418552907703,0.4756788750019041 +27,1395.1198253223383,0.1004960615642666,0.0,441.9481800724568,0.4783918749999429 +28,1386.186074535617,0.0998525277596669,0.0,439.11813291109553,0.4753284580001491 +29,1391.5517690909974,0.1002390402015269,0.0,440.817885792915,0.477168374996836 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..f2bcfa711 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/cleaned/mac/without_smell.csv @@ -0,0 +1,876 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065 +1,399.29583877571366,1.158366767779374,11.41331962370854,71.40990427251671,0.0692834579967893 +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.0633901660003175 +3,394.21772121323113,1.1436350274103977,11.268168652425976,70.50173580741745,0.0684023329995398 +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.0680647919980401 +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.0679784999992989 +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.0698598329981905 +7,392.2752796374332,1.1379999579925535,11.212646644926632,70.15435035154096,0.0680652919982094 +8,387.9996905257891,1.125596371832494,11.09043484011428,69.38970574590904,0.0673234170026262 +9,391.1295975243385,1.134676306811221,11.179898905345851,69.94945703165645,0.0678664999977627 +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751 +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.0683444170026632 +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992 +13,389.43280747798,1.1297538783490886,11.13139850726308,69.64600379469677,0.0675720830004138 +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.0660507920001691 +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.0690730419992178 +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.0675779160010279 +17,405.877194445587,1.1774594378114298,11.601438578436149,72.58691122508108,0.0704254160009441 +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.0655020420017535 +19,383.6916774964104,1.1130987231124532,10.967296242431525,68.61926246010889,0.0665759160001471 +20,388.806541361944,1.1279370653844794,11.113497555994131,69.53400261899613,0.0674634169990895 +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.0680769159989722 +22,405.6771703448896,1.176879163116574,11.595721166001535,72.5511389968335,0.0703907089991844 +23,389.3441979604815,1.129496820021875,11.12886572668612,69.63015690487794,0.0675567079997563 +24,393.09269449425614,1.1403712980208796,11.236011318735136,70.30053648975775,0.0682071250012086 +25,372.8068790690931,1.0815216628284272,10.65616932492715,66.67262956730539,0.0646872500001336 +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459 +27,390.2598296133434,1.1321530893219862,11.15503779184898,69.79390809467303,0.0677155830017 +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.0690524580022611 +29,379.8298414684538,1.101895444533057,10.85691099760512,67.92861328650847,0.0659058329983963 +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.0667561670015857 +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.0679194580006878 +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.0679882910008018 +3,396.7437451725483,0.2682967000321544,11.972740238934891,70.15958705840839,0.0680203750016517 +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.0677365830015332 +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.0680572919991391 +6,391.36719129553967,0.2646608225160031,11.81048920477664,69.20880508793482,0.0670985830001882 +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.0676863749977201 +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.0701520839975273 +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.0696812919995863 +10,387.301056942086,0.2619111120487479,11.687783375175377,68.48975580074759,0.0664014579997456 +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.0675194590003229 +12,389.3096996228947,0.2632694502944342,11.74839921938913,68.84496125199456,0.066745833002642 +13,387.9621023426623,0.2623581419054352,11.707732082530049,68.60665410827131,0.0665147920008166 +14,395.11252609217826,0.2671935932998669,11.923514101006564,69.87112464791521,0.0677407080002012 +15,394.7183334237559,0.2669270217574004,11.911618345923996,69.80141618956021,0.0676731249986914 +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.0671810830026515 +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.0674895829979504 +18,386.8565570909318,0.2616105204334281,11.674369474341727,68.41115109334145,0.0663252500016824 +19,384.0741050620474,0.2597288960690092,11.590401987079536,67.91910632204592,0.0658482079998066 +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.0685538329998962 +21,396.65893159557254,0.2682393451195757,11.970180775961063,70.14458874876905,0.0680058340003597 +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.0646796670007461 +23,393.0382653515496,0.2657908810492305,11.86091806682191,69.50431539437378,0.0673850830025912 +24,406.135881200921,0.2746481022491435,12.256171562868031,71.82047873815104,0.069630624999263 +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.0686014579987386 +26,394.0356603064191,0.2664653662258117,11.891016967826848,69.68069326804977,0.0675560829986352 +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.0676258750027045 +28,413.12105234795297,0.2793718020949808,12.46696666848852,73.0557262478375,0.0708282089981366 +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.0648108750028768 +0,301.527059904683,0.0,0.0,61.86818404371384,0.0670472090023395 +1,297.30471380754034,0.0,0.0,61.001831002242675,0.0661083329978282 +2,298.56993893852353,0.0,0.0,61.26143351116889,0.0663896669975656 +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497 +4,299.1821205786761,0.0,0.0,61.38704268997068,0.0665257910004584 +5,298.54745277190455,0.0,0.0,61.256819735227,0.0663846669995109 +6,295.84086380274124,0.0,0.0,60.701474073952625,0.0657828330004122 +7,287.0708821292312,0.0,0.0,58.902024165847415,0.0638327499982551 +8,311.42434548185787,0.0,0.0,63.89893738908661,0.0692479579993232 +9,302.1443009237354,0.0,0.0,61.99483132034014,0.0671844580028846 +10,299.5947418972884,0.0,0.0,61.47170551157061,0.0666175410005962 +11,297.7119024745538,0.0,0.0,61.08537913685875,0.0661988749998272 +12,296.81133114888826,0.0,0.0,60.90059733804315,0.065998624999338 +13,295.8635388716868,0.0,0.0,60.70612660941386,0.0657878750025702 +14,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043 +15,293.46651256772094,0.0,0.0,60.21429790064635,0.0652548750003916 +16,288.92730480664824,0.0,0.0,59.28293027724474,0.0642455420020269 +17,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284 +18,294.5672108564634,0.0,0.0,60.440142321793985,0.0654996250013937 +19,292.01034831569035,0.0,0.0,59.915517957078485,0.0649310839980898 +20,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666 +21,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717 +22,297.67255166251954,0.0,0.0,61.07730502476422,0.066190124998684 +23,298.30198018653,0.0,0.0,61.20645296849487,0.0663300839987641 +24,297.6101525252016,0.0,0.0,61.06450179140608,0.0661762499985343 +25,300.59875411481113,0.0,0.0,61.67771160825551,0.0668407919984019 +26,296.54093489263096,0.0,0.0,60.84511666127687,0.0659384999999019 +27,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473 +28,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701 +0,297.9231929631541,0.0,0.0,61.89344237000005,0.0660346250006114 +1,297.04079661120556,0.0,0.0,61.71012482693256,0.0658390419994248 +2,296.8676586574506,0.0,0.0,61.674155475717534,0.0658006660014507 +3,297.3197636713215,0.0,0.0,61.7680801391279,0.0659008750008069 +4,298.48470477937286,0.0,0.0,62.01009625951951,0.0661590839990822 +5,295.20155767320017,0.0,0.0,61.3280235608919,0.0654313750019355 +6,292.8541974051702,0.0,0.0,60.84036026074424,0.0649110829981509 +7,297.2970205991458,0.0,0.0,61.76335527359118,0.0658958340027311 +8,297.0774535309563,0.0,0.0,61.71774028958751,0.0658471669994469 +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461 +10,296.545267260386,0.0,0.0,61.607178772237894,0.0657292080031766 +11,296.86935500896175,0.0,0.0,61.67450789216907,0.0658010419974743 +12,298.61459885910585,0.0,0.0,62.03708171056209,0.0661878749997413 +13,299.2832616828819,0.0,0.0,62.17599618558742,0.0663360840007953 +14,298.81874969918397,0.0,0.0,62.079493978400286,0.0662331249986891 +15,296.9749991387711,0.0,0.0,61.6964554243335,0.0658244580008613 +16,293.1703898391526,0.0,0.0,60.906049131744425,0.0649811669973132 +17,299.0945225408772,0.0,0.0,62.13678569280086,0.0662942500021017 +18,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645 +19,290.72809607604245,0.0,0.0,60.39866343016743,0.064439833000506 +20,298.5279351289336,0.0,0.0,62.01907734998971,0.0661686659987026 +21,299.2761152689181,0.0,0.0,62.1745115205084,0.0663344999993569 +22,293.40781389038244,0.0,0.0,60.95537389792288,0.0650337919978483 +23,296.0600830227514,0.0,0.0,61.50638191130139,0.0656216669995046 +24,300.42752152616026,0.0,0.0,62.41371578023145,0.0665897090002545 +25,295.4047700896462,0.0,0.0,61.37024087153856,0.065476416999445 +26,298.3017901501356,0.0,0.0,61.972095807286415,0.0661185410026519 +27,297.4477809202034,0.0,0.0,61.794675679197255,0.0659292500022274 +28,298.01661959689955,0.0,0.0,61.91285172149777,0.0660553329980757 +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341 +1,290.22725500807564,0.0,0.0,61.57760130550795,0.0669092079988331 +2,287.38755742396035,0.0,0.0,60.97510184122435,0.0662545419982052 +3,284.85600928125524,0.0,0.0,60.43798253376007,0.0656709169998066 +4,288.39804257958247,0.0,0.0,61.18949677128115,0.0664875000002211 +5,289.7942165918819,0.0,0.0,61.485723418499695,0.0668093749991385 +6,287.9792792941568,0.0,0.0,61.10064764292961,0.0663909579998289 +7,293.9906938530544,0.0,0.0,62.37609122240881,0.0677768339992326 +8,287.754807039453,0.0,0.0,61.05302129920833,0.0663392079986806 +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141 +10,288.1126656850648,0.0,0.0,61.128948272374934,0.0664217089979501 +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543 +12,283.96806213484086,0.0,0.0,60.249586528840595,0.0654662090018973 +13,287.49473153180446,0.0,0.0,60.99784100293028,0.0662792499970237 +14,290.36370810703596,0.0,0.0,61.60655259929476,0.0669406659981177 +15,286.7884182291257,0.0,0.0,60.84798230358821,0.066116416001023 +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447 +17,285.94203855646913,0.0,0.0,60.66840568169417,0.0659212909995403 +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269 +19,287.0410893992396,0.0,0.0,60.90159161941293,0.066174667001178 +20,297.4148868126718,0.0,0.0,63.10260324091163,0.0685662500000034 +21,290.7853645972282,0.0,0.0,61.69601557974508,0.0670378750000963 +22,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381 +23,286.4050846775788,0.0,0.0,60.76665031220264,0.0660280419979244 +24,284.29446863504063,0.0,0.0,60.318840291145825,0.0655414590000873 +25,285.6671457104221,0.0,0.0,60.6100815864084,0.0658579169976292 +26,287.5579915240894,0.0,0.0,61.01126289393568,0.0662938340028631 +27,286.0333109264343,0.0,0.0,60.68777096703847,0.0659423329998389 +28,284.3069393158575,0.0,0.0,60.32148619913034,0.0655443340001511 +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.0686401659986586 +1,397.75286598810527,0.269594419037943,12.435042578125124,70.53263988080185,0.0683966249998775 +2,365.9092588508725,0.2480110201480115,11.439508304327031,64.88588314622352,0.0629208749996905 +3,398.012860314751,0.2697706415757017,12.443170842679242,70.57874410224296,0.0684413329981907 +4,406.01920064322974,0.2751972892608521,12.693474967156805,71.99849080287044,0.0698180840008717 +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.0682153339985234 +6,389.3137678245606,0.2638744507834012,12.171209042384383,69.03615318620736,0.0669454580020101 +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.0680102080004871 +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404 +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956 +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.0672688339982414 +11,398.1340122908051,0.2698527576316564,12.446958445760156,70.60022771538212,0.0684621660002449 +12,372.80412745844734,0.2526843192127068,11.655064223686104,66.10853501402443,0.0641065000017988 +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454 +14,392.7996098404614,0.2662371328241711,12.280187751514893,69.65428987512377,0.067544875000749 +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.0673702909989515 +16,390.4700645317705,0.2646581815008187,12.207358621725266,69.2411967351517,0.0671442919992841 +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.0669481250006356 +18,394.8335415578033,0.2676157190936564,12.3437750431949,70.01496250787785,0.0678946250009175 +19,391.70268238960193,0.2654936422195048,12.24589424737466,69.45977414567795,0.0673562499978288 +20,391.0290628243883,0.26503706706728,12.224834718478292,69.34032267147714,0.0672404159995494 +21,399.5914937296824,0.2708406294872032,12.492524035097247,70.85867968958954,0.0687127909986884 +22,398.602883706492,0.2701705557614111,12.461616884495088,70.68337165107918,0.0685427919997891 +23,385.2929159598488,0.261149142394204,12.04550419293266,68.32314437888363,0.0662540419980359 +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.067253500001243 +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269 +26,384.6154175220648,0.2606899381662728,12.024323397919336,68.20300507275113,0.0661375409981701 +27,394.1247912258336,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858 +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.0678507080010604 +29,396.5473885388564,0.2687773539194146,12.397355449533,70.31887521916686,0.0681893340006354 +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.0660744170018006 +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.0642834580030466 +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.0620629580007516 +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.0629158750016358 +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.0626865000012912 +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.0653167079981358 +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.0633302079986606 +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.0622254999980214 +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872 +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.0600536249985452 +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.0623513749997073 +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.0628564999969967 +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.0647904580000613 +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.0672497919986199 +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.0654726659995503 +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676 +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.0630650829989463 +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.0631177499999466 +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361 +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547 +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.0673107919974427 +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.065431292001449 +22,313.0482616575098,0.8417886858098309,0.0,61.32106811245461,0.0621510420023696 +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.0619104159995913 +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.0631872090016258 +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.0637677079976128 +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.0652594999992288 +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.0675664160007727 +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.0667341249973105 +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.0626280420001421 +0,314.6829641824899,0.0,0.0,64.05854106490267,0.0667974999996658 +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907 +2,310.02771031968734,0.0,0.0,63.11089278177239,0.0658093330021074 +3,314.78759077177864,0.0,0.0,64.07983941095024,0.0668197090017201 +4,311.8347742078282,0.0,0.0,63.47874833628613,0.0661929170018993 +5,311.64849188371505,0.0,0.0,63.44082771373234,0.0661533750026137 +6,315.306780557249,0.0,0.0,64.18552845032812,0.0669299170003796 +7,314.38931348373785,0.0,0.0,63.99876396386509,0.0667351670017524 +8,312.3494508567321,0.0,0.0,63.58351865753504,0.0663021670006855 +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392 +10,314.334543400109,0.0,0.0,63.98761467378393,0.0667235410001012 +11,318.13946192397856,0.0,0.0,64.76216416407206,0.0675312079983996 +12,313.69208088661816,0.0,0.0,63.856831580997095,0.0665871659984986 +13,311.3874224274277,0.0,0.0,63.387683024029094,0.0660979579988634 +14,303.1555450520987,0.0,0.0,61.71195819965332,0.0643505840016587 +15,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163 +16,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255 +17,314.2731072568001,0.0,0.0,63.97510840507234,0.0667104999993171 +18,317.19392672743055,0.0,0.0,64.56968598091483,0.0673305000018444 +19,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844 +20,317.1024579588047,0.0,0.0,64.5510661109565,0.0673110839998116 +21,319.67701426612115,0.0,0.0,65.07515651211497,0.0678575829988403 +22,322.2403866640997,0.0,0.0,65.59697025709202,0.0684017079984187 +23,297.71060994609485,0.0,0.0,60.60355819462029,0.0631947920010134 +24,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223 +25,323.27052670543793,0.0,0.0,65.80667105329528,0.0686203749974083 +26,313.1624892222485,0.0,0.0,63.74902507972117,0.0664747500013618 +27,304.77808852402086,0.0,0.0,62.04225179497307,0.0646950000009383 +28,306.854070382832,0.0,0.0,62.46484972460084,0.0651356670023233 +0,294.47160668958014,0.0,0.0,62.234392802682095,0.067439792001096 +1,287.84062620984656,0.0,0.0,60.832984196664334,0.0659211669990327 +2,284.1358833944333,0.0,0.0,60.0500142451661,0.0650727079992066 +3,289.6685259247307,0.0,0.0,61.219297261407206,0.0663397919997805 +4,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185 +5,288.79942156630415,0.0,0.0,61.035618493063815,0.0661407500010682 +6,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289 +7,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556 +8,286.70698999914885,0.0,0.0,60.59339858083863,0.0656615420011803 +9,286.97661747524285,0.0,0.0,60.65038235067053,0.065723291998438 +10,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184 +11,294.88587239836045,0.0,0.0,62.321944791597936,0.0675346669995633 +12,293.9449008440537,0.0,0.0,62.123077423754864,0.0673191659989242 +13,290.6658900109148,0.0,0.0,61.43008277314009,0.0665682079998077 +14,290.4495723431128,0.0,0.0,61.38436563640324,0.066518666997581 +15,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483 +16,288.1284442887526,0.0,0.0,60.89381241565535,0.0659870830022555 +17,289.94870708075484,0.0,0.0,61.27851147331694,0.0664039589973981 +18,291.0404953723931,0.0,0.0,61.509252841434005,0.0666539999983797 +19,291.41564654265915,0.0,0.0,61.588538262372175,0.0667399169979034 +20,287.7964160316246,0.0,0.0,60.823640702979915,0.0659110419983335 +21,288.7233713242801,0.0,0.0,61.01954583774717,0.0661233329992683 +22,288.51996957968584,0.0,0.0,60.97655838570675,0.0660767499975918 +23,291.0746976794727,0.0,0.0,61.51648124568486,0.0666618329996708 +24,294.25819707384346,0.0,0.0,62.18929026120812,0.0673909170000115 +25,289.8793855364252,0.0,0.0,61.26386087841579,0.0663880829997651 +26,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384 +27,294.18505925226117,0.0,0.0,62.17383312437835,0.067374166999798 +0,304.0021500506418,0.0,0.0,61.69661938658387,0.0663851249992149 +1,305.42786409538843,0.0,0.0,61.9859651585075,0.0666964589981944 +2,290.13486062560406,0.0,0.0,58.882281141154934,0.0633569170022383 +3,303.37572867394005,0.0,0.0,61.56948843949174,0.0662483330015675 +4,308.55938487552186,0.0,0.0,62.621500945477706,0.0673802909986989 +5,304.0319159755279,0.0,0.0,61.70266032063018,0.0663916250014153 +6,301.5311990280158,0.0,0.0,61.195144891286894,0.0658455419979873 +7,303.576648579458,0.0,0.0,61.61026472655373,0.0662922079973213 +8,304.6514683093002,0.0,0.0,61.82839720940037,0.0665269170021929 +9,305.5965360870756,0.0,0.0,62.020196796904024,0.0667332919983891 +10,305.52402631491094,0.0,0.0,62.00548108580032,0.0667174579975835 +11,300.96240445270587,0.0,0.0,61.079709186584786,0.0657213339982263 +12,320.16981350821686,0.0,0.0,64.97781387335388,0.0699156670016236 +13,301.8660655871914,0.0,0.0,61.26310537986669,0.0659186670018243 +14,287.22066306535396,0.0,0.0,58.29085066060698,0.0627205419987149 +15,292.31368435492743,0.0,0.0,59.324468995142574,0.0638327079977898 +16,309.2938015925228,0.0,0.0,62.77054932770923,0.0675406660011503 +17,303.66251638073777,0.0,0.0,61.6276914225565,0.0663109589986561 +18,306.26130972564454,0.0,0.0,62.155111257706984,0.0668784590016002 +19,305.7980284517102,0.0,0.0,62.061089263381945,0.0667772920023708 +20,303.91189522869655,0.0,0.0,61.678302353640426,0.0663654160016449 +21,304.868796110589,0.0,0.0,61.87250344560959,0.0665743749996181 +22,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686 +23,300.68706516189695,0.0,0.0,61.02382963631062,0.065661207998346 +24,307.1498955536229,0.0,0.0,62.33544794812829,0.0670725000018137 +25,305.11646226256136,0.0,0.0,61.92276678851894,0.0666284580001956 +26,314.2194880610785,0.0,0.0,63.77020739992188,0.0686162909987615 +27,310.6552121120229,0.0,0.0,63.04684482968675,0.067837958002201 +28,300.9196606054273,0.0,0.0,61.07103440952738,0.0657119999996211 +0,277.0817190299852,0.0640133346494132,0.0,58.60420787153782,0.0635513330016692 +1,288.5771340743512,0.0666690849195682,0.0,61.03554724386474,0.0661879159997624 +2,284.2115382937321,0.0656605147958258,0.0,60.112201295578544,0.0651866250009334 +3,297.3390372598521,0.0686933203788499,0.0,62.88873480683714,0.068197542001144 +4,291.41856385470135,0.0673255316748761,0.0,61.636524248349104,0.0668396250002842 +5,291.05396160811534,0.0672412987427781,0.0,61.55940899901342,0.0667560000001685 +6,289.502541450472,0.0668828789304544,0.0,61.23127566083103,0.0664001670011202 +7,289.43169196955876,0.0668665107934755,0.0,61.21629063142683,0.066383916997438 +8,290.80853034409404,0.0671845975150962,0.0,61.507499025070594,0.0666997080006694 +9,287.9576568837414,0.0665259690155345,0.0,60.90452463372189,0.0660458330021356 +10,289.9919433911143,0.0669959439508176,0.0,61.33478668697358,0.0665124160004779 +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527 +12,291.42765003308125,0.067327630826633,0.0,61.63844602178257,0.066841709001892 +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.0670270000009622 +14,300.5995644999648,0.0694465899272183,0.0,63.57835307836844,0.0689453749982931 +15,291.6814349928997,0.0673862619828808,0.0,61.69212284532741,0.0668999170011375 +16,286.80898867365397,0.0662605957430181,0.0,60.66157540273309,0.0657823750007082 +17,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.0661455829977057 +18,288.819116611153,0.0667249893984412,0.0,61.086727794272974,0.0662434170008055 +19,289.1462928838217,0.0668005759232578,0.0,61.15592725774257,0.066318457997113 +20,289.21804924415596,0.0668171535737913,0.0,61.171104096806005,0.0663349160022335 +21,286.12120386579073,0.0661016989409242,0.0,60.51610538041618,0.0656246250000549 +22,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.0658500409990665 +23,293.57075258583023,0.0678227451971422,0.0,62.09172322798373,0.0673332499973184 +24,290.89918277237905,0.0672055406659071,0.0,61.52667247963799,0.0667204999990644 +25,268.12761977449935,0.0619446967250778,0.0,56.71036985180875,0.0614976249999017 +26,293.55167774327595,0.0678183383951197,0.0,62.08768880073215,0.0673288750003848 +27,292.7548937535296,0.0676342598483376,0.0,61.91916489115313,0.0671461249985441 +28,291.560990905484,0.067358436156979,0.0,61.66664830171436,0.0668722920017899 +0,402.8566838230884,0.0,0.0,64.17794938679597,0.0643441669999447 +1,406.5856091369493,0.0,0.0,64.77199384396874,0.0649397500019404 +2,419.6410268736935,0.0,0.0,66.85181521066646,0.0670249579998198 +3,416.5238481001115,0.0,0.0,66.35522635017634,0.0665270829995279 +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256 +5,408.52624583201094,0.0,0.0,65.08115114132792,0.0652497080009197 +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631 +7,398.433567589202,0.0,0.0,63.47331535392751,0.0636377080008969 +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156 +9,399.1061018410703,0.0,0.0,63.58045486758207,0.0637451250004232 +10,407.1626636492206,0.0,0.0,64.8639227526082,0.065031917001761 +11,403.12407719483,0.0,0.0,64.22054706226494,0.0643868750012188 +12,405.14375858076954,0.0,0.0,64.54229674389913,0.0647094579981057 +13,411.2615056472048,0.0,0.0,65.51689758175769,0.0656865830023889 +14,387.70201403694654,0.0,0.0,61.76370216299734,0.0619236669990641 +15,407.9614565575172,0.0,0.0,64.99117617273937,0.065159500001755 +16,401.69709645656513,0.0,0.0,63.99321883047987,0.0641589580009167 +17,395.9197957340157,0.0,0.0,63.0728535287417,0.0632362090000242 +18,418.61084115270194,0.0,0.0,66.68769926145752,0.0668604169986792 +19,431.31721002849616,0.0,0.0,68.71191464957502,0.0688898750013322 +20,431.41112451451176,0.0,0.0,68.72687589850602,0.0689048749991343 +21,433.23750482741,0.0,0.0,69.01783133747224,0.0691965839978365 +22,422.7931668797661,0.0,0.0,67.35397364539821,0.0675284169992664 +23,418.71727759903746,0.0,0.0,66.70465534817552,0.0668774170007964 +24,414.85347853863453,0.0,0.0,66.08912453908962,0.0662602919983328 +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213 +26,419.92251367752954,0.0,0.0,66.89665807060912,0.0670699170004809 +27,411.78142883652066,0.0,0.0,65.5997250622708,0.0657696250018489 +28,414.074507863208,0.0,0.0,65.96502894234565,0.0661358750003273 +29,411.9209982982526,0.0,0.0,65.62195947517905,0.0657919170007517 +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463 +1,295.9081762405739,0.0,0.0,60.860775024151074,0.0636946249978791 +2,308.44623652276385,0.0,0.0,63.439534677798584,0.0663934590011194 +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023 +4,312.04164307210647,0.0,0.0,64.179018229419,0.067167375000281 +5,301.9526595528672,0.0,0.0,62.10397128753395,0.0649957079986052 +6,311.28555013052846,0.0,0.0,64.02350916914445,0.067004624997935 +7,313.4765936255198,0.0,0.0,64.47415100983623,0.0674762499984353 +8,311.56042418797625,0.0,0.0,64.0800437616753,0.0670637920011358 +9,309.8811870761772,0.0,0.0,63.73466745821582,0.0667023339992738 +10,318.13877646307776,0.0,0.0,65.43304327298002,0.0684797909998451 +11,308.99326684329253,0.0,0.0,63.55204488178166,0.0665112079987011 +12,310.2603949888832,0.0,0.0,63.8126608673733,0.0667839590023504 +13,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439 +14,285.62465270443886,0.0,0.0,58.74571615575587,0.0614810830011265 +15,298.20878469344336,0.0,0.0,61.3339515860414,0.0641898339999897 +16,295.5945893229462,0.0,0.0,60.79627818230397,0.0636271250004938 +17,310.5683652227515,0.0,0.0,63.87600250042894,0.0668502500011527 +18,309.63263576797266,0.0,0.0,63.68354678475968,0.0666488330025458 +19,299.539786989639,0.0,0.0,61.60770485752767,0.0644763339987548 +20,309.8449875242504,0.0,0.0,63.727222132392846,0.0666945419980038 +21,307.9365578666852,0.0,0.0,63.334706759840024,0.0662837499985471 +22,309.15257829195724,0.0,0.0,63.584811189083936,0.0665454999980283 +23,309.6756087808788,0.0,0.0,63.69238523898497,0.0666580830002203 +24,311.4467942171909,0.0,0.0,64.05667297085827,0.0670393330001388 +25,320.30833809941186,0.0,0.0,65.87926684249236,0.0689467920019524 +26,301.0930039690129,0.0,0.0,61.92716202950021,0.0648106660009943 +27,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098 +28,307.7433743808223,0.0,0.0,63.29497383721228,0.0662421669985633 +0,307.3038765802161,0.0341752531784048,0.0,65.54813559618044,0.0683769580027728 +1,306.5168191461492,0.0340877245491713,0.0,65.38025568531074,0.068201832997147 +2,302.24090759958057,0.0336122005782451,0.0,64.46820070907424,0.0672504169997409 +3,303.4871256541917,0.033750792443749,0.0,64.73401990711072,0.0675277080008527 +4,304.6267982623654,0.0338775353939463,0.0,64.97711288558907,0.0677812920002907 +5,302.72534844932665,0.0336660752279055,0.0,64.57153228712284,0.0673582079980406 +6,299.83123330715557,0.0333442207859381,0.0,63.954215467429314,0.0667142499987676 +7,303.47121147155804,0.0337490226280647,0.0,64.73062540062816,0.0675241669996467 +8,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.0687065410020295 +9,323.66148900094566,0.0359943826735927,0.0,69.03722596795083,0.0720166249993781 +10,300.6248433571947,0.0334324781313606,0.0,64.12349305594968,0.066890833000798 +11,299.8791735922619,0.0333495522233387,0.0,63.96444116436369,0.0667249170001014 +12,304.57567604979374,0.0338718500945055,0.0,64.9662084812616,0.0677699170009873 +13,297.66087840557225,0.0331028556945698,0.0,63.491277222185005,0.0662313329994503 +14,298.37977587069827,0.0331828042560829,0.0,63.64461856316718,0.0663912920026632 +15,301.49691869899425,0.0335294615990874,0.0,64.3095073470497,0.0670848750014556 +16,299.4083997940281,0.0332971974859906,0.0,63.86402477813011,0.0666201670028385 +17,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.0666383749994565 +18,295.95793110997283,0.0329134709864293,0.0,63.128037351971514,0.0658524169994052 +19,295.3365950794061,0.0328443722285816,0.0,62.995505934419576,0.0657141660012712 +20,299.7063333060147,0.033330330661256,0.0,63.927574208289165,0.066686458998447 +21,270.8829494812265,0.0301248831718445,0.0,57.77952592359791,0.0602730830032669 +22,301.37520062531866,0.0335159253364455,0.0,64.28354479530263,0.0670577919991046 +23,296.03002353793846,0.0329214883827778,0.0,63.14341471816793,0.065868457997567 +24,297.14348113691625,0.0330453159627353,0.0,63.3809160165264,0.0661162090000289 +25,303.5991091517296,0.033763246124525,0.0,64.75790606683913,0.0675526250015536 +26,302.87515563749326,0.0336827352799703,0.0,64.60348626698311,0.0673915409970504 +27,305.92283069102797,0.0340216671142157,0.0,65.2535575250658,0.068069666998781 +28,290.278120361013,0.032281819435166,0.0,61.91652967664846,0.0645886249985778 +0,293.67115678659405,0.0,0.0,62.04987345007068,0.0673019999994721 +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785 +2,285.0587315110757,0.0,0.0,60.2301513354047,0.0653282499988563 +3,286.6679492796594,0.0,0.0,60.57016347683127,0.0656970420022844 +4,286.0261550443838,0.0,0.0,60.43455856582949,0.0655499589993269 +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652 +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397 +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792 +8,287.5655527060979,0.0,0.0,60.75981839435294,0.0659027500005322 +9,293.549524682601,0.0,0.0,62.024173763581814,0.0672741249982209 +10,289.02568331421605,0.0,0.0,61.0683298615521,0.0662373749983089 +11,288.31625511165714,0.0,0.0,60.91843454778562,0.066074792001018 +12,290.2920010978938,0.0,0.0,61.33589055455497,0.0665275829996971 +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743 +14,287.41810186435026,0.0,0.0,60.72866345843529,0.0658689579977362 +15,292.14320891111277,0.0,0.0,61.72703285057382,0.0669518329996208 +16,292.1922981075429,0.0,0.0,61.737404922722774,0.0669630830016103 +17,288.63587590704464,0.0,0.0,60.985967328746526,0.0661480410017247 +18,295.0554718814619,0.0,0.0,62.34236583301857,0.0676192499995522 +19,293.5444325057386,0.0,0.0,62.02309783588993,0.0672729580001032 +20,287.13229806847863,0.0,0.0,60.66827588221081,0.0658034589978342 +21,287.2797445448048,0.0,0.0,60.69942989575715,0.065837250000186 +22,288.50715313623,0.0,0.0,60.95876945297762,0.0661185409990139 +23,290.43508843893454,0.0,0.0,61.36612352500068,0.0665603749985166 +24,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395 +25,291.1197931641799,0.0,0.0,61.51079500727027,0.0667172920002485 +26,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767 +27,295.1683770157897,0.0,0.0,62.36622159527169,0.0676451250001264 +28,292.2999321462241,0.0,0.0,61.76014695347638,0.0669877500004076 +0,306.0668998752621,0.0,0.0,63.04902793670779,0.068127957998513 +1,300.7286555299586,0.0,0.0,61.9493627426042,0.0669397090023267 +2,300.4778195906402,0.0,0.0,61.89769115658147,0.0668838749988935 +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118 +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179 +5,297.42271046689245,0.0,0.0,61.26834619777878,0.0662038330010545 +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164 +7,297.3940705820903,0.0,0.0,61.262446452011666,0.0661974579998059 +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933 +9,297.44798094483,0.0,0.0,61.273551854026195,0.0662094580002303 +10,298.42342154358175,0.0,0.0,61.47449021615016,0.0664265830018848 +11,300.40818538367824,0.0,0.0,61.88334668136418,0.0668683750009222 +12,287.1913505952546,0.0,0.0,59.16071125051626,0.0639264169985835 +13,300.26405153963907,0.0,0.0,61.85365546430296,0.0668362920005165 +14,299.59316404372277,0.0,0.0,61.71545429165196,0.0666869579981721 +15,298.97750323449446,0.0,0.0,61.58862968050848,0.0665499169990653 +16,296.72543384649464,0.0,0.0,61.12470893044608,0.0660486249980749 +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845 +18,299.21560732706087,0.0,0.0,61.637678537441985,0.0666029169988178 +19,299.2517362517928,0.0,0.0,61.645121006999055,0.0666109589983534 +20,299.28430709765047,0.0,0.0,61.651830521066856,0.0666182089989888 +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801 +22,299.9649209102408,0.0,0.0,61.79203529100965,0.0667697079989011 +23,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303 +24,294.287490544277,0.0,0.0,60.622498611616194,0.0655059590026212 +25,297.6716730062533,0.0,0.0,61.31963186802196,0.0662592500011669 +26,300.53416490752846,0.0,0.0,61.90929815315653,0.0668964169999526 +27,298.0200327621039,0.0,0.0,61.39139312017827,0.0663367919987649 +28,302.28587426265807,0.0,0.0,62.27014596817204,0.0672863330000836 +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991 +1,318.08177249086094,0.0,0.0,62.64785256127891,0.0671876249980414 +2,310.1933592166472,0.0,0.0,61.0941887097623,0.0655213749996619 +3,315.03036618576886,0.0,0.0,62.04686228507105,0.0665430840017506 +4,311.7761737775847,0.0,0.0,61.40593223555111,0.0658557089991518 +5,315.1471407328176,0.0,0.0,62.0698616369331,0.0665677500001038 +6,312.72657075974973,0.0,0.0,61.59311784366412,0.0660564589998102 +7,318.0087848553162,0.0,0.0,62.63347726842702,0.0671722080005565 +8,314.2111452727458,0.0,0.0,61.88551248318745,0.0663700419972883 +9,315.1433912094317,0.0,0.0,62.069123148882,0.0665669579975656 +10,321.5192175326141,0.0,0.0,63.324875166116904,0.0679137080005602 +11,314.53405774919537,0.0,0.0,61.94911176791349,0.0664382499999192 +12,316.86685034021673,0.0,0.0,62.40856735115521,0.0669310000012046 +13,313.09228540351353,0.0,0.0,61.665147236931766,0.0661337079982331 +14,289.9330212891863,0.0,0.0,57.10381021877937,0.0612418339987925 +15,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857 +16,320.05180460179605,0.0,0.0,63.03586058909003,0.0676037500015809 +17,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105 +18,308.3140681413278,0.0,0.0,60.7240525988988,0.0651244170003337 +19,318.47412193661944,0.0,0.0,62.7251278167514,0.0672704999997222 +20,314.1099463592385,0.0,0.0,61.86558083302366,0.0663486660014314 +21,313.33807251384695,0.0,0.0,61.71355628133896,0.0661856250007986 +22,319.77228609333065,0.0,0.0,62.98080797111271,0.0675447079993318 +23,319.76577652708306,0.0,0.0,62.97952587832467,0.0675433329997758 +24,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282 +25,316.8561983070633,0.0,0.0,62.40646937805463,0.0669287499986239 +26,316.30781807684326,0.0,0.0,62.29846305143831,0.0668129170007887 +27,298.70140513017805,0.0,0.0,58.83078883113269,0.063093958000536 +28,314.0071803907631,0.0,0.0,61.84534054326751,0.0663269590004347 +0,383.74185203632027,0.0,0.0,62.59426372619671,0.0645047500001965 +1,364.4592504386134,0.0,0.0,59.44897153737439,0.0612634579993027 +2,367.0024684410071,0.0,0.0,59.86380994374133,0.0616909579985076 +3,363.22606038870725,0.0,0.0,59.247819062608514,0.0610561659996164 +4,364.2802852301499,0.0,0.0,59.41977952874429,0.0612333749995741 +5,373.0382773407889,0.0,0.0,60.84834423956817,0.0627055420009128 +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924 +7,362.2655390037368,0.0,0.0,59.091143087427675,0.0608947079999779 +8,363.1591395605432,0.0,0.0,59.23690323483354,0.0610449170017091 +9,363.29274327911173,0.0,0.0,59.258696079034664,0.0610673750015848 +10,385.39643100578286,0.0,0.0,62.86415128685964,0.0647828750006738 +11,389.0226196484065,0.0,0.0,63.45563904617717,0.0653924159996677 +12,370.3688919214851,0.0,0.0,60.41292596544427,0.0622568340004363 +13,361.7680498665672,0.0,0.0,59.009994872585665,0.0608110829998622 +14,361.96288119943176,0.0,0.0,59.0417748928434,0.0608438330018543 +15,366.6343711085224,0.0,0.0,59.80376754444557,0.0616290830002981 +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306 +17,377.4274313949519,0.0,0.0,61.56428352256089,0.0634433330014871 +18,377.1091573073862,0.0,0.0,61.51236806932433,0.0633898329979274 +19,381.72165648548935,0.0,0.0,62.264738415323826,0.0641651670011924 +20,368.2465631130819,0.0,0.0,60.06674113196323,0.0619000830010918 +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972 +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232 +23,392.46761814592367,0.0,0.0,64.01757187509762,0.0659715000001597 +24,412.7283443458175,0.0,0.0,67.32241139758052,0.0693772089980484 +25,410.7339260421147,0.0,0.0,66.99709075658224,0.0690419590027886 +26,401.0741534363522,0.0,0.0,65.42143162320484,0.0674182080001628 +27,375.99669130166257,0.0,0.0,61.3309075635724,0.063202834000549 +28,391.0668672136462,0.0,0.0,63.78908761463861,0.0657360420009354 +29,388.5424838873128,0.0,0.0,63.37732143683954,0.0653117080000811 +0,290.8292506484409,0.0,0.0,60.364491781569754,0.0643369169993093 +1,298.573843284156,0.0,0.0,61.97195869718392,0.066050166999048 +2,297.01505218375894,0.0,0.0,61.64841616368942,0.0657053329996415 +3,294.3421743552695,0.0,0.0,61.09363389419194,0.0651140419977309 +4,296.3946304128305,0.0,0.0,61.519641479544646,0.0655680839990964 +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186 +6,295.0897326586194,0.0,0.0,61.24879702499188,0.0652794159977929 +7,296.7668048214944,0.0,0.0,61.59688996463688,0.0656504159996984 +8,294.83998000542607,0.0,0.0,61.196958387896395,0.0652241659990977 +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097 +10,296.16597000453845,0.0,0.0,61.47218074680768,0.0655175000028975 +11,296.4579116370621,0.0,0.0,61.532776124466146,0.0655820829997537 +12,291.6238980614277,0.0,0.0,60.52942872351605,0.0645127079988014 +13,293.1612172147117,0.0,0.0,60.84851454169682,0.0648527919984189 +14,300.82349771584455,0.0,0.0,62.43889675843551,0.0665478330010955 +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836 +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348 +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185 +18,296.53155816102924,0.0,0.0,61.54806219002126,0.0655983750002633 +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737 +20,295.3240436061412,0.0,0.0,61.29743058311739,0.0653312499998719 +21,296.04222377263164,0.0,0.0,61.44649599060698,0.0654901250018156 +22,295.47999775871773,0.0,0.0,61.3298004122887,0.0653657500006374 +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412 +24,296.91447306566766,0.0,0.0,61.627539971443,0.065683083001204 +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114 +26,294.6706544772291,0.0,0.0,61.1618131972649,0.0651867079977819 +27,297.56861257061263,0.0,0.0,61.763313105273966,0.065827791000629 +28,295.9380689842249,0.0,0.0,61.42487763256778,0.0654670839976461 +29,299.8657403365678,0.0,0.0,62.240104727299766,0.0663359589998435 +0,294.81448863624877,0.0,0.0,61.91171740072288,0.0671278330009954 +1,296.9928397015734,0.0,0.0,62.36917611036704,0.0676238330015621 +2,291.39142074467475,0.0,0.0,61.19286530859214,0.0663484169999719 +3,292.5078607995772,0.0,0.0,61.42732027548915,0.0666026250000868 +4,291.9049011262528,0.0,0.0,61.30069736400479,0.0664653339990763 +5,291.0495909115414,0.0,0.0,61.1210802612358,0.0662705840004491 +6,297.18077517649056,0.0,0.0,62.408642990256375,0.0676666250001289 +7,293.1889644158855,0.0,0.0,61.57035359386013,0.0667577089989208 +8,290.06599953169535,0.0,0.0,60.91452382017178,0.0660466250010358 +9,290.5013403480997,0.0,0.0,61.005946388047946,0.0661457499991229 +10,293.391717947307,0.0,0.0,61.612932299531735,0.0668038749972765 +11,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234 +12,294.85419962422475,0.0,0.0,61.92005679909045,0.0671368750008696 +13,288.935650518899,0.0,0.0,60.6771479402815,0.0657892499984882 +14,288.040264791619,0.0,0.0,60.489114888146126,0.0655853749995003 +15,291.310167374162,0.0,0.0,61.17580191480743,0.0663299160005408 +16,291.8930036442997,0.0,0.0,61.29819886556306,0.0664626249999855 +17,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544 +18,291.953940380838,0.0,0.0,61.31099571971134,0.0664765000001352 +19,290.492192146893,0.0,0.0,61.004025244855654,0.0661436669979593 +20,291.2743036344979,0.0,0.0,61.16827044739114,0.0663217500004975 +21,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666 +22,301.8341063464249,0.0,0.0,63.38585318673492,0.0687261659986688 +23,293.4286796545365,0.0,0.0,61.62069434264986,0.0668122909992234 +24,291.57880285799905,0.0,0.0,61.23221598128041,0.0663910830007807 +25,290.63986327224137,0.0,0.0,61.03503651917635,0.066177290998894 +26,292.83779754454514,0.0,0.0,61.49660774710921,0.0666777500009629 +27,291.7103778938751,0.0,0.0,61.25984703997034,0.0664210420000017 +28,292.0681281288885,0.0,0.0,61.33497540816094,0.0665024999980232 +0,286.58077105611767,0.0,0.0,60.48994734420278,0.0664554579998366 +1,284.29575202691694,0.0,0.0,60.00763766149979,0.0659255829996254 +2,286.7606315278459,0.0,0.0,60.52791133747437,0.0664971659971342 +3,285.07881009993866,0.0,0.0,60.17292140133334,0.0661071670001547 +4,285.97901379987127,0.0,0.0,60.3629316180248,0.0663159159994393 +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403 +6,287.5501581793354,0.0,0.0,60.69456043050126,0.0666802500018093 +7,286.76045473612015,0.0,0.0,60.52787402121571,0.0664971250007511 +8,287.0916105357109,0.0,0.0,60.59777262887927,0.0665739169999142 +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215 +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624 +11,287.78823570039054,0.0,0.0,60.74481256939876,0.0667354580000392 +12,288.3114732547224,0.0,0.0,60.85525477385442,0.0668567920001805 +13,287.04471347517006,0.0,0.0,60.58787384637458,0.0665630420007801 +14,284.5945650282986,0.0,0.0,60.070709523065126,0.0659948749998875 +15,284.649724611494,0.0,0.0,60.08235231497584,0.066007666002406 +16,296.0487686832776,0.0,0.0,62.48840200608166,0.0686509999977715 +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049 +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078 +19,282.8897370651235,0.0,0.0,59.71086348962979,0.0655995409979368 +20,286.2961587022398,0.0,0.0,60.429872879903805,0.0663894589997653 +21,283.4221384206483,0.0,0.0,59.82323994057936,0.0657229999997071 +22,271.9089975438187,0.0,0.0,57.39310730174492,0.0630532079994736 +23,286.22194706122224,0.0,0.0,60.41420868079884,0.0663722499994037 +24,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015 +25,288.2345706895805,0.0,0.0,60.83902258877472,0.066838958999142 +26,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547 +27,286.87814802674137,0.0,0.0,60.55271609602139,0.0665244169977086 +28,283.17741121511045,0.0,0.0,59.771584221592626,0.065666250000504 +0,294.3279990372017,0.0666126511343672,0.0,61.28363904361788,0.0662047499972686 +1,293.0398507223221,0.0663211159267448,0.0,61.01542665260526,0.0659149999992223 +2,295.58817487391934,0.0668978555785717,0.0,61.54602713228603,0.0664882079981907 +3,295.0835897351759,0.066783657289844,0.0,61.44096470665652,0.0663747090002289 +4,294.112381481635,0.0665638523212934,0.0,61.238744135589954,0.0661562500026775 +5,294.789060556393,0.0667169991074783,0.0,61.37963917888006,0.0663084589978098 +6,294.5386151968499,0.0666603180257666,0.0,61.32749258370531,0.0662521250014833 +7,292.0345615545926,0.0660935977265118,0.0,60.806109908390894,0.0656888750017969 +8,295.10748548573775,0.0667890654035844,0.0,61.44594017129767,0.066380083997501 +9,298.56736520414785,0.0675721093593182,0.0,62.166340610572824,0.0671583330004068 +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.0666939999973692 +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.0664290829990932 +12,294.3600482591372,0.066619904551123,0.0,61.290312187033216,0.0662119589978829 +13,292.5965765500129,0.0662207936064304,0.0,60.92313011791601,0.0658152920004795 +14,296.05627397750055,0.0670037963058731,0.0,61.64349260140331,0.0665934999997261 +15,277.83269848101855,0.0628794157476561,0.0,57.849062487843625,0.0624943749971862 +16,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.0674349580003763 +17,295.0785838430391,0.0667825243505803,0.0,61.43992240253389,0.0663735829984943 +18,293.1674829950254,0.0663500018094433,0.0,61.042001664687874,0.0659437089998391 +19,292.4674638570015,0.0661915726733057,0.0,60.8962468594413,0.0657862500011106 +20,294.72663371914854,0.0667028705939003,0.0,61.36664094638829,0.0662944169998809 +21,294.5726961110385,0.066668031257449,0.0,61.3345887568531,0.0662597910013573 +22,292.5643406218039,0.0662134979340961,0.0,60.91641809936848,0.0658080410030379 +23,295.7811948568304,0.0669415400830214,0.0,61.58621687637975,0.0665316250015166 +24,298.4484465539857,0.0675451955536914,0.0,62.14157990939614,0.0671315840008901 +25,300.4471681677118,0.067997548527263,0.0,62.55774464508201,0.0675811670007533 +26,268.4016522482285,0.0607449705212693,0.0,55.88537287956778,0.0603730000002542 +27,293.7845093668818,0.0664896479273241,0.0,61.17047609313823,0.0660824999977194 +28,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178 +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.0670402079995255 +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.0656716659977973 +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.0659436669993738 +3,298.06491667401536,0.7076724986042197,0.0,63.11764713741445,0.0662419580003188 +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.0680570420008734 +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566 +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484 +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987 +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.0652717080010916 +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.0657346249972761 +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.0652146250031364 +11,299.57754690862345,0.7112638196812994,0.0,63.43795877443208,0.0665781249990686 +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.0657091670000227 +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.0662325840021367 +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.0625667919994157 +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462 +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.0657192079997912 +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.0652280419999442 +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.0655310830006783 +19,295.06703650881764,0.7005548633900702,0.0,62.48282186331435,0.0655757090025872 +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.0662343750009313 +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.0647040420008124 +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.0638219169995863 +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051 +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.0650090830022236 +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.0664734580022923 +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.0635219579999102 +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474 +28,296.9865061319233,0.7051121117886252,0.0,62.88928501809976,0.06600229200194 +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.0648245409975061 +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.0674112920023617 +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.0708057499978167 +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.0681188330017903 +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.0692457080003805 +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.0679880419993423 +5,404.8936371581969,1.612985331957557,11.290897323702897,72.24115156958844,0.070075582996651 +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.0647352500018314 +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.0662939590001769 +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.0675850420011556 +9,386.0565356160226,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909 +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.0684275000021443 +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.0697700000018812 +12,398.195304750097,1.586301010616593,11.104107074316149,71.046034624424,0.068916291998903 +13,393.1222593641649,1.5660913875331202,10.96263971273184,70.14090150547273,0.0680382919999829 +14,400.10034307722657,1.5938901614366543,11.157231130056582,71.38593169838633,0.0692459999991115 +15,396.1694089205137,1.5782303966150315,11.047612776305222,70.68457414626897,0.0685656669993477 +16,400.56234267245264,1.595730641261678,11.170114488831745,71.46836169906025,0.0693259590007073 +17,391.1936238724376,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276 +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.0678528750031546 +19,390.2371352451378,1.554597843407482,10.882184903852377,69.62613745473936,0.0675389589996484 +20,399.1241054106431,1.5900010980081565,11.130007686057096,71.21175130440785,0.0690770410001277 +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.0679149580028024 +22,388.3292021584939,1.5469971606585198,10.828980124609638,69.28572389757838,0.0672087499988265 +23,392.8437098823672,1.5649817227048024,10.954872058933615,70.09120268709806,0.0679900830000406 +24,401.12472845982575,1.597971032175946,11.18579722523162,71.5687026112844,0.0694232919995556 +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019 +26,387.2337999468269,1.5426333783269082,10.798433648288356,69.09028215698174,0.0670191670033091 +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.0678187920020718 +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.065910666999116 +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.0686019579989078 +0,420.8661640891317,0.3104241498772484,10.623404240243612,71.60450390501863,0.0698542089994589 +1,414.7342996681472,0.3059013847740801,10.468625167824074,70.56125275455447,0.0688364589987031 +2,408.0288084577771,0.3009555217275851,10.299366743566248,69.42040701182964,0.0677235000002838 +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.0672056660005182 +4,393.8408701476979,0.2904907253998756,9.941238158129076,67.0065273255713,0.0653686250007012 +5,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695 +6,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +7,415.36741054416126,0.3063683572281143,10.484606002917692,70.66896773395172,0.0689415410015499 +8,413.5893054085112,0.3050568553250778,10.43972349334711,70.3664479616513,0.0686464159989554 +9,415.22381858036624,0.3062624460927139,10.480981488506211,70.64453756538603,0.0689177080021181 +10,408.53514892789457,0.3013289903582241,10.312147670037003,69.50655377596371,0.0678075409996381 +11,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +12,401.6223100288431,0.2962301909735771,10.137655424429084,68.33043071790512,0.066660167001828 +13,406.60442049183155,0.2999049159503756,10.263412679190637,69.17806727921999,0.0674870840011863 +14,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.0673156250013562 +15,409.57821959330414,0.3020983425946351,10.338476613238624,69.68401769182915,0.0679806670013931 +16,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.0697001250009634 +17,402.4366746389332,0.2968308532822815,10.158211423438075,68.46898349044626,0.0667953330012096 +18,401.3386386128404,0.2960209594751322,10.130495057593414,68.28216798559717,0.0666130839999823 +19,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.0668373749977035 +20,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.0695724580000387 +21,387.29202689790424,0.2856604033831452,9.775933804667638,65.8923330470455,0.0642816660001699 +22,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.0681323340031667 +23,407.4549346245413,0.3005322415686667,10.284881155905484,69.32277038850579,0.0676282499989611 +24,408.27633635683975,0.3011380943461365,10.305614784290006,69.46252042917548,0.0677645840005425 +25,417.85495624498935,0.3082031311428376,10.547396043554889,71.09218891694786,0.0693544169989763 +26,406.94080393314306,0.3001530269954341,10.271903590510414,69.23529822694681,0.0675429160000931 +27,390.6549455763897,0.2881408384025166,9.860819803108344,66.46448672484716,0.0648398339981213 +28,401.5595483973625,0.2961838989982185,10.136071210161257,68.31975270225574,0.0666497499987599 +0,277.4237413479984,0.0,0.0,58.43349005665485,0.0632725420000497 +1,292.6972536911697,0.0,0.0,61.650534954464696,0.0667560000001685 +2,291.40709000891684,0.0,0.0,61.37878904572572,0.0664617500005988 +3,289.27526607180926,0.0,0.0,60.929765064482325,0.065975541001535 +4,293.90739872205074,0.0,0.0,61.90542661328777,0.0670319999990169 +5,290.4961927970452,0.0,0.0,61.18692766099379,0.0662540000012086 +6,292.38028776435414,0.0,0.0,61.58377273273529,0.066683708999335 +7,289.7393040716505,0.0,0.0,61.02750493244705,0.066081375000067 +8,290.32610603159867,0.0,0.0,61.15110245270702,0.0662152080003579 +9,291.71309885989376,0.0,0.0,61.44324338933713,0.0665315420010301 +10,294.01993782201987,0.0,0.0,61.92913061333867,0.0670576669981528 +11,289.9026298051295,0.0,0.0,61.06190607121357,0.0661186249999445 +12,288.43671886620615,0.0,0.0,60.75314269048304,0.0657842920008988 +13,291.84774065261695,0.0,0.0,61.47160285784574,0.0665622500018798 +14,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555 +15,308.0001822067488,0.0,0.0,64.87377575176583,0.0702461670007323 +16,297.17117303800103,0.0,0.0,62.59287219062579,0.0677763749990845 +17,290.83837006338433,0.0,0.0,61.25900012239558,0.0663320409985317 +18,297.87343862204426,0.0,0.0,62.74078970057979,0.0679365420000976 +19,292.22755518415335,0.0,0.0,61.55160281943542,0.0666488749993732 +20,289.24202214867086,0.0,0.0,60.922762929615594,0.0659679589989536 +21,290.14122568247194,0.0,0.0,61.11216128642516,0.0661730419997184 +22,291.32615497134736,0.0,0.0,61.3617417782854,0.066443290997995 +23,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187 +24,291.91150125700455,0.0,0.0,61.48503269129974,0.066576791999978 +25,294.6469332621997,0.0,0.0,62.06119404684761,0.0672006669992697 +26,298.06946458808636,0.0,0.0,62.782078457201386,0.0679812500020489 +27,274.1955917727861,0.0,0.0,57.75354808345529,0.0625362920000043 +28,288.7392551319019,0.0,0.0,60.81686560686869,0.0658532920024299 +0,297.8349870577906,0.0,0.0,62.26538914028103,0.0661593750010069 +1,297.48685086603774,0.0,0.0,62.192607780147874,0.0660820420016534 +2,295.90878769905953,0.0,0.0,61.86269785871619,0.0657314999989466 +3,300.2289979376498,0.0,0.0,62.76588110904888,0.0666911670014087 +4,297.55137488588906,0.0,0.0,62.20609717319946,0.0660963750015071 +5,295.72984193562934,0.0,0.0,61.82528745336033,0.0656917500018607 +6,296.86091429487476,0.0,0.0,62.06174946640304,0.0659430000014253 +7,297.5283032487058,0.0,0.0,62.201273816207355,0.0660912499988626 +8,297.3067796489023,0.0,0.0,62.15496208741491,0.0660420420026639 +9,294.7674017488792,0.0,0.0,61.624079686119025,0.0654779589967802 +10,294.9677264979095,0.0,0.0,61.665959582688664,0.0655224580004869 +11,291.51804808384634,0.0,0.0,60.94476973530921,0.064756166000734 +12,298.35756724728503,0.0,0.0,62.3746397665332,0.0662754580007458 +13,290.0624738641291,0.0,0.0,60.640467355966294,0.0644328329981362 +14,292.77630024929647,0.0,0.0,61.2078199615177,0.0650356670012115 +15,297.2189949149903,0.0,0.0,62.13660980895493,0.0660225419997004 +16,294.33335357686957,0.0,0.0,61.533337565447475,0.0653815419973398 +17,295.53495085809004,0.0,0.0,61.78454352027568,0.0656484580031246 +18,292.72958977705207,0.0,0.0,61.19805466913229,0.0650252910018025 +19,295.4385362100208,0.0,0.0,61.76438707176652,0.0656270409999706 +20,295.95718184808175,0.0,0.0,61.872815140606896,0.0657422500007669 +21,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504 +22,297.1503427630479,0.0,0.0,62.12225738851488,0.0660072919999947 +23,298.31724030194476,0.0,0.0,62.36620901442696,0.0662665000018023 +24,299.6462019297127,0.0,0.0,62.64404176242917,0.0665617080012452 +25,295.93523566460374,0.0,0.0,61.8682270709919,0.065737375000026 +26,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278 +27,296.78419945940794,0.0,0.0,62.04571146116275,0.065925959002925 +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777 +1,290.6954782073229,0.0,0.0,60.92238606686448,0.0665466250029567 +2,291.28719908778197,0.0,0.0,61.046395728609,0.0666820830010692 +3,283.328160416027,0.0,0.0,59.378383451046346,0.0648600829990755 +4,288.3902924835214,0.0,0.0,60.43927771069976,0.0660189170012017 +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556 +6,291.3215994250469,0.0,0.0,61.053605165235275,0.0666899579991877 +7,291.49342205874245,0.0,0.0,61.08961482348515,0.066729292000673 +8,288.8664369502698,0.0,0.0,60.53906549276548,0.0661279170017223 +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085 +10,288.4387063150821,0.0,0.0,60.44942401966714,0.0660299999981361 +11,286.7470829842217,0.0,0.0,60.0949027513009,0.0656427499998244 +12,287.64586027491015,0.0,0.0,60.28326363475572,0.0658485000021755 +13,288.1433001809692,0.0,0.0,60.387514399813654,0.065962374999799 +14,287.9949615223732,0.0,0.0,60.3564263860497,0.0659284169996681 +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948 +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169 +17,289.2799662185982,0.0,0.0,60.62573072020697,0.0662225829983071 +18,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857 +19,292.3219396351502,0.0,0.0,61.26325105602778,0.0669189580003148 +20,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514 +21,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968 +22,291.10992044223104,0.0,0.0,61.00924262890388,0.066641499997786 +23,289.47799864820206,0.0,0.0,60.66723328572497,0.0662679170018236 +24,289.12507512691684,0.0,0.0,60.593269482956494,0.0661871250013064 +25,289.32820096574676,0.0,0.0,60.63583949763187,0.0662336249988584 +26,292.50923477110916,0.0,0.0,61.30250335761741,0.0669618339998123 +27,289.02405823299785,0.0,0.0,60.572098908689014,0.0661639999998442 +0,313.9495430059727,0.0,0.0,64.80389868724639,0.0682134160015266 +1,308.3794199438781,0.0,0.0,63.65414166853778,0.0670031669978925 +2,305.034770594531,0.0,0.0,62.96375583295359,0.0662764580010843 +3,308.9656537375239,0.0,0.0,63.77514912408851,0.0671305409996421 +4,308.0823679620422,0.0,0.0,63.592825680142255,0.0669386250010575 +5,309.16222020810307,0.0,0.0,63.81572339447207,0.0671732499977224 +6,305.2121586167888,0.0,0.0,63.00037138369676,0.0663150000000314 +7,305.6986801043409,0.0,0.0,63.100796722388495,0.0664207090012496 +8,307.5666990894399,0.0,0.0,63.48638388361557,0.0668265829990559 +9,305.4478414091471,0.0,0.0,63.04901985010978,0.0663662080005451 +10,304.1035409753827,0.0,0.0,62.77153605994154,0.0660741249994316 +11,309.41132839650345,0.0,0.0,63.86714306417025,0.0672273750024032 +12,308.8985360500407,0.0,0.0,63.76129502582119,0.0671159579978848 +13,307.0985920540554,0.0,0.0,63.38975956428898,0.066724874999636 +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564 +15,307.8050697237094,0.0,0.0,63.53558716094896,0.0668783750006696 +16,307.06369159998235,0.0,0.0,63.38255558664265,0.0667172920002485 +17,306.8525537307586,0.0,0.0,63.338973560833,0.0666714170001796 +18,308.0434357367305,0.0,0.0,63.584789484387315,0.0669301659982011 +19,307.850325708721,0.0,0.0,63.54492867563824,0.0668882079989998 +20,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821 +21,307.0828700483037,0.0,0.0,63.38651430628306,0.0667214589993818 +22,304.66063198848303,0.0,0.0,62.886528008096214,0.066195167000842 +23,309.76916966813064,0.0,0.0,63.94100687454759,0.0673051249978016 +24,310.62733522529624,0.0,0.0,64.11814512832865,0.0674915829986275 +25,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051 +26,305.0623853492818,0.0,0.0,62.96945593288687,0.0662824579994776 +27,302.2746382953192,0.0,0.0,62.3940230912878,0.0656767500004207 +0,290.8686257733098,0.0,0.0,61.83024365562761,0.0671084160021564 +1,288.43744237162144,0.0,0.0,61.31344449346887,0.0665474999987054 +2,286.20184035980265,0.0,0.0,60.83822026899203,0.0660317080000822 +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035 +4,285.997408337104,0.0,0.0,60.79476394316497,0.065984542001388 +5,287.0887483871877,0.0,0.0,61.02675122274326,0.066236333001143 +6,290.61850144546,0.0,0.0,61.777074469387486,0.0670507079994422 +7,288.4390677341846,0.0,0.0,61.313789998464614,0.0665478749979229 +8,287.0845961195109,0.0,0.0,61.02586857092235,0.0662353750012698 +9,289.1576572076416,0.0,0.0,61.46654130367703,0.0667136660013056 +10,287.9375491452288,0.0,0.0,61.20718167496282,0.0664321659969573 +11,287.8124003118045,0.0,0.0,61.18057865841791,0.0664032919994497 +12,291.3011551411478,0.0,0.0,61.922186869271,0.0672082079981919 +13,290.86863009377606,0.0,0.0,61.83024457403358,0.0671084169989626 +14,291.96195960819887,0.0,0.0,62.06265475609747,0.0673606670025037 +15,288.20917165594705,0.0,0.0,61.264920752099144,0.0664948340017872 +16,288.4121603590863,0.0,0.0,61.30807026999944,0.0665416670017293 +17,291.91970008694614,0.0,0.0,62.05367160609675,0.067350917001022 +18,289.8069063826763,0.0,0.0,61.604552870166486,0.0668634590001602 +19,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013 +20,288.0397695006966,0.0,0.0,61.22891076131008,0.0664557499985676 +21,286.4039275203915,0.0,0.0,60.881178145062925,0.0660783329985861 +22,286.55978061458836,0.0,0.0,60.91430799797523,0.0661142909993941 +23,288.72260523938814,0.0,0.0,61.374061858262614,0.0666132919977826 +24,289.4366783433925,0.0,0.0,61.52585311416426,0.0667780409967235 +25,279.95357387673477,0.0,0.0,59.51001982095035,0.0645901249990856 +26,286.3918304829023,0.0,0.0,60.87860666533224,0.0660755420030909 +27,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207 +28,287.6597979585023,0.0,0.0,61.14813981884897,0.0663680840007145 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/mac_report.md new file mode 100644 index 000000000..31742836b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 471.54 ms | 64.80 ms | +| **Average Power** | 4.373 W | 5.938 W | +| **Total Energy** | 1856.01 J | 346.36 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.93% | 0.00e+00 | +5.793 | large | βœ… | +| `gpu_mj` | +90.91% | 1.99e-139 | +1.403 | large | βœ… | +| `ane_mj` | +85.73% | 4.05e-28 | +0.536 | medium | βœ… | +| `dram_mj` | +86.12% | 0.00e+00 | +28.295 | large | βœ… | +| `time_s` | +86.15% | 0.00e+00 | +109.558 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.793, large) +- **`gpu_mj`**: 90.9% lower energy (Cohen’s d = +1.403, large) +- **`ane_mj`**: 85.7% lower energy (Cohen’s d = +0.536, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.295, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +109.558, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..f641e9c6a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333 +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.4903181249974295 +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615 +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.4902185419996385 +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641 +5,2241.1490127200236,3.2378173610171124,78.62783844069976,506.4968821271085,0.4995985829991696 +6,2198.850910485615,3.1767087381743906,77.14386377861389,496.9375637685223,0.4901694590007537 +7,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346 +8,2165.6159983890375,3.128693824945763,75.97785951736712,489.4265150791473,0.4827607080005691 +9,2184.636400493825,3.156172849231463,76.6451659281788,493.7251022360924,0.4870007499994244 +10,2175.6821728479604,3.143236559158055,76.33101833660666,491.701457954188,0.4850046669998846 +11,2191.358148507132,3.1658838467110355,76.88098983539325,495.2442089049758,0.4884991670005547 +12,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945 +13,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.4890770419988257 +14,2198.6882921444367,3.1764738013249003,77.13815852270048,496.9008122262037,0.4901332080007705 +15,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969 +16,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284 +17,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624 +18,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123 +19,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.4924210420031158 +20,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198 +21,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.4888335839968931 +22,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969 +23,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.4810711249992891 +24,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.4882775419973768 +25,2188.6791289765147,3.1620134320721585,76.78699987147863,494.6387538318352,0.4879019580002932 +26,2180.3695654537623,3.150008496709209,76.49546949376993,492.76080283784785,0.4860495840002841 +27,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838 +28,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016 +29,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.4924800839980889 +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.4842013329980545 +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.1584645269379,0.4918910000014875 +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971 +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.4927279170005931 +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.4888514999984181 +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332 +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907 +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.0218930859032,0.4848583329985558 +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093 +9,2138.1194142937725,3.137493734289595,83.68851708094563,490.505862543885,0.4833643750025658 +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087 +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907 +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461 +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.491482666999218 +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267 +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832 +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.2405760248656,0.4919719160025124 +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296 +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.5229983322752,0.4863375830027507 +19,2153.784005153057,3.1604800817043612,84.30164765304055,494.099475510244,0.4869056669995188 +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.3799390701532,0.4921092500007944 +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702 +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.3444832533918,0.4861616670023068 +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.488861125002586 +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051 +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191 +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902 +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.4874809579996508 +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169 +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.5549762121397,0.4893254170019645 +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.476325583000289 +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.4740477499981352 +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.4740115000022342 +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.4766071250014647 +4,1454.6356824641823,2.689847088670102,0.0,448.5656251243478,0.4807450420012173 +5,1439.3908464616345,2.6616570214023705,0.0,443.8645790316128,0.4757067499995173 +6,1436.1552645979718,2.655673928480174,0.0,442.86682349817494,0.4746374169990304 +7,1470.199358514414,2.718626740659527,0.0,453.3649918392344,0.4858887079972191 +8,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.4803635419993952 +9,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.4781675829981395 +10,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721 +11,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456 +12,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.4740057079980033 +13,1436.1856465993965,2.6557301095150985,0.0,442.8761923880117,0.4746474579987989 +14,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595 +15,1444.9948689388625,2.672019728523426,0.0,445.5926899778878,0.4775588330012397 +16,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.4783999579994997 +17,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.4758022089990845 +18,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605 +19,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591 +20,1443.300048842662,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269 +21,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.4735740840005746 +22,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895 +23,1437.235978521874,2.657672336216858,0.0,443.2000829683638,0.4749945839976135 +24,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872 +25,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404 +26,1439.6581239725597,2.6621512589927825,0.0,443.9469993277839,0.4757950830025947 +27,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.4762523329991381 +28,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.4755676250024407 +29,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993 +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.478538583000045 +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992 +2,1422.4471328985585,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801 +3,1423.230797457382,1.773392083348801,0.0,447.9989925274923,0.4765795829989656 +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372 +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273 +6,1420.5758147951883,1.7700838881896082,0.0,447.1632675277483,0.4756905419999384 +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.4768262920006236 +8,1422.3049082362418,1.772238395122154,0.0,447.70754476019846,0.4762695419994998 +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838 +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386 +11,1413.1080871694985,1.7607788555303492,0.0,444.8126055980349,0.473189916996489 +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.4762493330017605 +13,1417.3294075206245,1.7660387586362547,0.0,446.1413762147323,0.4746034580020932 +14,1412.745867489083,1.7603275179715854,0.0,444.69858751172745,0.473068625000451 +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.4747444590029772 +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.4726464579980529 +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762 +18,1417.1746163233452,1.7658458837460278,0.0,446.0926516504824,0.4745516250004584 +19,1419.5263625778225,1.768776236431752,0.0,446.8329250865043,0.4753391249978449 +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183 +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.4743509159998211 +22,1422.353809629749,1.7722993278565111,0.0,447.72293774850624,0.4762859170004958 +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447 +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.4749628339995979 +25,1354.1542849217951,1.6873204913801607,0.0,426.2553596054523,0.4534487910023017 +26,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732 +27,1420.870713330435,1.7704513414015055,0.0,447.25609452876904,0.4757892910020018 +28,1412.149219754377,1.7595840753963088,0.0,444.51077708455057,0.4728688329996657 +29,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899 +0,1398.2044033134116,0.4026120084407769,0.0,442.1350872693799,0.4791000420009368 +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.4714275830010592 +2,1392.2357928925342,0.4008933511232521,0.0,440.2477150918514,0.477054875002068 +3,1393.0715489932206,0.4011340065248991,0.0,440.5119948320934,0.4773412499998812 +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332 +5,1391.353584643174,0.4006393198569392,0.0,439.96874642289544,0.4767525829993246 +6,1389.8013619275412,0.4001923583800569,0.0,439.4779082276992,0.4762207079984364 +7,1393.9126545251288,0.4013762022916337,0.0,440.7779661499291,0.4776294580005924 +8,1395.2987708038715,0.4017753335328132,0.0,441.21627877461776,0.4781044160008605 +9,1393.131376142637,0.4011512337119461,0.0,440.5309131546688,0.4773617499995453 +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505 +11,1391.779428467707,0.4007619412970313,0.0,440.1034052010233,0.4768985000009706 +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.4760606250019918 +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828 +14,1397.3508945928966,0.4023662411843057,0.0,441.8651938605651,0.4788075840006058 +15,1387.6137807153643,0.3995624458555543,0.0,438.7861592903746,0.4754711249988759 +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016 +17,1387.905133100111,0.3996463405768904,0.0,438.8782896768552,0.4755709579985705 +18,1389.2666881497526,0.4000383994288292,0.0,439.308835639426,0.4760375000005297 +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.4764104999994742 +20,1387.9581516296382,0.3996616072264639,0.0,438.89505500252847,0.4755891249988053 +21,1383.6377091625147,0.3984175387519839,0.0,437.5288604728037,0.4741087090005749 +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973 +23,1385.2003855818612,0.3988675103657516,0.0,438.0230042999896,0.4746441660026903 +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586 +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256 +26,1388.7087868377796,0.3998777521249065,0.0,439.1324181251682,0.4758463329999358 +27,1386.871413337013,0.3993486816730853,0.0,438.5514105906599,0.4752167500009818 +28,1388.1705847108346,0.3997227771879352,0.0,438.9622298152176,0.4756619159998081 +29,1389.9437563946433,0.4002333607701617,0.0,439.5229356857659,0.4762695000026724 +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.3553411613795,0.4887512500026787 +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773 +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.4905316670010506 +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.4856883339998603 +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.4145019481052,0.4907829580006364 +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843 +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.4852944170015689 +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511 +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992 +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.4860352499999862 +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606 +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815 +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729 +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.4838942089991178 +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.4922301250007876 +15,2172.904363612247,4.054051068508988,84.66600867869597,497.2745947009123,0.4906449160007469 +16,2175.837068669918,4.059522701900578,84.78027989836993,497.9457515835403,0.4913071250011853 +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261 +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433 +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023 +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.4882758749990898 +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164 +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.4890841250016819 +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.4890738750000309 +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.4872862500014889 +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.4908622500006458 +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539 +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.491627374998643 +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118 +29,2161.072808854291,4.031976591596034,84.20499873523288,494.5669138220523,0.487973333998525 +0,1654.6480123452643,0.8802219605314963,0.0,471.798970844882,0.4858740839990787 +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205 +2,1623.088033571781,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473 +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468 +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022 +5,1622.4651082793391,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894 +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085 +7,1631.325248725041,0.8678149660736794,0.0,465.1488218154921,0.4790255419975437 +8,1609.854086984751,0.8563929669893303,0.0,459.02663030628105,0.4727207079995423 +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.482218458000716 +10,1634.9563714903925,0.869746611943738,0.0,466.1841840018436,0.4800917920001666 +11,1655.6029712356135,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199 +12,1699.2689617515464,0.9039589361747356,0.0,484.52198978965833,0.4989766670005338 +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.4832517079994431 +14,1722.6778540568937,0.916411748449703,0.0,491.1966971690408,0.505850499997905 +15,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.4705873329985479 +16,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844 +17,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.4723213329998543 +18,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.4728038749999541 +19,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575 +20,1625.835995757708,0.8648948519631798,0.0,463.5836406522643,0.4774136670021107 +21,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766 +22,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042 +23,1610.983721176818,0.85699389771043,0.0,459.34872917279046,0.4730524159967899 +24,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.4798239160008961 +25,1615.5939308560737,0.8594463877699828,0.0,460.6632638447108,0.4744061669989605 +26,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914 +27,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.4746511670018662 +28,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.4717144589994859 +29,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752 +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664 +1,1470.0650690266311,1.8938036315963045,0.0,459.2811985840966,0.4863042079996376 +2,1448.4887603472594,1.8660080648595936,0.0,452.54027730103815,0.4791666669989354 +3,1453.1077990562935,1.8719585173027935,0.0,453.9833682765936,0.4806946660028188 +4,1457.5307279874908,1.877656332351035,0.0,455.36519017248935,0.4821577910006454 +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206 +6,1458.6824685027595,1.8791400560422025,0.0,455.7250196626634,0.4825387919991044 +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952 +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148 +9,1454.2838469735757,1.873473554877392,0.0,454.3507919426761,0.4810837080003693 +10,1443.39889680046,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695 +11,1435.4034897523384,1.849151033497376,0.0,448.45214617728334,0.4748379999982717 +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432 +13,1440.5007836697584,1.8557175957098335,0.0,450.0446547738438,0.4765242079993186 +14,1436.810538132051,1.8509636562087617,0.0,448.891739553057,0.4753034579989617 +15,1432.6827260690825,1.845646023921523,0.0,447.60211876568223,0.4739379590027965 +16,1439.107087588519,1.8539221740270784,0.0,449.6092329546741,0.4760631669996655 +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986 +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.4766195830015931 +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.4770321659998444 +20,1449.866335125129,1.867782718357654,0.0,452.97066246455887,0.4796223749981436 +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.4822667920016101 +22,1451.9393114765087,1.870453219293409,0.0,453.61830662899615,0.4803081249992829 +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702 +24,1439.3600043065803,1.8542479926654816,0.0,449.68824979267697,0.4761468329998024 +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217 +26,1439.6413879935462,1.854610483727596,0.0,449.7761603482943,0.4762399160026689 +27,1445.2852070324934,1.8618811040676244,0.0,451.5394156132572,0.478106916998513 +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994 +29,1453.8891033023608,1.8729650284088384,0.0,454.227465193222,0.4809531249993597 +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229 +1,1405.501159477378,0.2322484329432426,0.0,441.90241119586415,0.4740041670011123 +2,1411.600628024097,0.2332563239735772,0.0,443.82013985772505,0.4760612079990096 +3,1414.8127689086136,0.2337871059525115,0.0,444.83006631164307,0.4771445000005769 +4,1415.084203187349,0.2338319584134706,0.0,444.91540772985934,0.4772360409988323 +5,1423.4112588293244,0.2352079413579451,0.0,447.5335101352102,0.4800443340027414 +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879 +7,1412.981778742787,0.2334845486804094,0.0,444.2543862677677,0.4765269999988959 +8,1412.4140739457582,0.233390739757809,0.0,444.0758946906084,0.4763355420000152 +9,1414.3226536148504,0.2337061181083035,0.0,444.6759695834992,0.4769792090010014 +10,1417.9660986792762,0.2343081698398312,0.0,445.82150201381614,0.4782079579999845 +11,1412.6123694385958,0.2334235065877477,0.0,444.1382406060304,0.4764024169999175 +12,1419.2150504322765,0.2345145496677667,0.0,446.21418386071224,0.4786291660020652 +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844 +14,1414.5234190879785,0.2337392930837979,0.0,444.73909208330065,0.477046916999825 +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688 +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.4748752910018083 +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377 +18,1411.6060661381266,0.2332572225807772,0.0,443.82184965048174,0.4760630419987137 +19,1418.1162102203814,0.2343329746362936,0.0,445.8686984543992,0.4782585829998425 +20,1413.9969775450247,0.2336523026017462,0.0,444.5735740503797,0.4768693750011152 +21,1402.71835094593,0.2317885948874347,0.0,441.0274707579634,0.4730656669999007 +22,1402.7010521628758,0.2317857363944131,0.0,441.0220318624555,0.4730598329988424 +23,1404.320403583212,0.2320533219650272,0.0,441.53117075031395,0.4736059579990979 +24,1409.4916535304808,0.2329078318944659,0.0,443.1570590003417,0.4753499580001517 +25,1413.038612086046,0.2334939399603966,0.0,444.2722551903604,0.4765461669994693 +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.4761061250028433 +27,1413.9134577072468,0.233638501580443,0.0,444.54731464998866,0.476841208001133 +28,1409.1224903257444,0.2328468304678771,0.0,443.0409907145222,0.4752254579980217 +29,1407.2538188427316,0.2325380466431972,0.0,442.45346332010627,0.4745952500015846 +0,1359.9830388133907,0.0994430417383292,0.0,439.27306303877975,0.4735101670012227 +1,1367.2100374254069,0.0999714856263093,0.0,441.6073758399505,0.4760264169999573 +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355 +3,1360.6509298042945,0.0994918784589276,0.0,439.4887911125696,0.4737427090003621 +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.4758644579997053 +5,1368.671233865174,0.1000783294724461,0.0,442.0793407229522,0.4765351669993833 +6,1378.0276760639613,0.1007624799695789,0.0,445.1014615189534,0.479792833000829 +7,1372.258883992279,0.1003406613039104,0.0,443.2381478664736,0.4777842919975228 +8,1369.9006263898757,0.1001682236319008,0.0,442.4764331899832,0.4769632089992228 +9,1362.872281559501,0.0996543054664741,0.0,440.20628534723863,0.4745161249993543 +10,1370.0406398939213,0.1001784615307049,0.0,442.52165740163406,0.4770119580025493 +11,1363.8435384826207,0.0997253245453802,0.0,440.5200002917932,0.474854291001975 +12,1375.0565775890122,0.1005452308854206,0.0,444.14179989786464,0.478758375000325 +13,1372.584870820952,0.1003644977201632,0.0,443.3434412625342,0.4778977919995668 +14,1360.2762345172491,0.0994644804414484,0.0,439.3677649366916,0.47361224999986 +15,1368.435239510169,0.1000610733774619,0.0,442.003114799375,0.4764529999993101 +16,1368.283016589219,0.1000499427163804,0.0,441.95394695915786,0.4763999999995576 +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.4763121670002874 +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.4779738329998508 +19,1366.9728453928535,0.0999541419561899,0.0,441.53076306780974,0.4759438330002012 +20,1372.0063748964212,0.1003221976379366,0.0,443.156587699312,0.4776963750009599 +21,1367.3190577628875,0.0999794572801175,0.0,441.6425892920392,0.4760643750014424 +22,1370.7449121584284,0.1002299584789725,0.0,442.7491365877813,0.4772571670000616 +23,1359.658367419681,0.0994193015077274,0.0,439.1681945268015,0.4733971249988826 +24,1367.1400292419053,0.0999663665722364,0.0,441.58476327175896,0.4760020419998909 +25,1366.998694566532,0.0999560320683337,0.0,441.5391123231862,0.4759528329996101 +26,1365.0601270460802,0.0998142824690026,0.0,440.91295709307434,0.4752778750007564 +27,1366.017143931724,0.0998842603050398,0.0,441.2220725207958,0.4756110829985118 +28,1365.7311285567905,0.0998633466332838,0.0,441.1296898614259,0.4755115000007208 +29,1365.9570675778948,0.0998798674742537,0.0,441.2026679229371,0.475590165999165 +0,1390.0603241936417,0.1674892551502086,0.0,445.0524487851344,0.4788548329997866 +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209 +2,1377.5902576361257,0.1659867288763194,0.0,441.05993597015606,0.4745590829988941 +3,1377.444387682713,0.1659691529125856,0.0,441.01323311932254,0.4745088329982536 +4,1378.2936033553765,0.1660714754506803,0.0,441.2851245675478,0.4748013749995152 +5,1380.196807079257,0.1663007936813814,0.0,441.8944689701668,0.4754570000004605 +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.4774362499993003 +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.4752448340004775 +8,1386.7012048240165,0.167084512714656,0.0,443.976967185384,0.4776976670000294 +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507 +10,1384.5611750681394,0.1668266591642937,0.0,443.29179873136127,0.4769604590001108 +11,1382.8663723350817,0.1666224513019111,0.0,442.7491775994384,0.4763766249998298 +12,1379.409399632061,0.1662059184557993,0.0,441.64236652075,0.4751857500014012 +13,1383.6672056307757,0.1667189442165428,0.0,443.0055785721975,0.4766525000013644 +14,1383.0517940967477,0.1666447928882506,0.0,442.8085436626597,0.4764405000023544 +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795 +16,1380.578780242162,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149 +17,1385.9641130782545,0.1669957000600349,0.0,443.74097419952494,0.4774437500018393 +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388 +19,1390.5397849329893,0.1675470256805298,0.0,445.20595663830386,0.4790199999988545 +20,1385.4222432134395,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751 +21,1384.7365557380076,0.1668477908930775,0.0,443.3479499610856,0.4770208749978337 +22,1380.1324588315383,0.1662930403199675,0.0,441.8738667382177,0.4754348329988715 +23,1382.8147242197429,0.1666162281875488,0.0,442.7326415399548,0.4763588330024504 +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962 +25,1381.048562774172,0.1664034222683774,0.0,442.16717365153266,0.4757504170011088 +26,1385.5867380781835,0.1669502299055574,0.0,443.6201509050472,0.4773137500014854 +27,1384.5037182668846,0.1668197361576601,0.0,443.27340291813454,0.4769406659979722 +28,1386.1163925964613,0.1670140483163193,0.0,443.7897291861239,0.4774962080009572 +29,1382.6472045469038,0.1665960436353114,0.0,442.6790071477496,0.4763011249997362 +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.4773925419976876 +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012 +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.4768721250002272 +3,1591.7771157613092,0.1653828771258944,0.0,448.02221413404817,0.4742466669995338 +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.4763908750028349 +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756 +6,1599.923316021195,0.1662292531814889,0.0,450.3150468686536,0.476673707998998 +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078 +8,1599.6205389249687,0.166197795167169,0.0,450.229827107861,0.4765834999998333 +9,1592.539445588393,0.1654620818706251,0.0,448.2367797875235,0.4744737920009356 +10,1607.448160004806,0.1670110713993855,0.0,452.43299242093553,0.4789156250008091 +11,1594.297518282129,0.1656447425694174,0.0,448.7316076205518,0.4749975839986291 +12,1602.677410191569,0.1665153987814363,0.0,451.0902152989111,0.4774942500007455 +13,1605.1480233851848,0.1667720912003558,0.0,451.785595061764,0.4782303329993738 +14,1601.3632290921896,0.1663788576481786,0.0,450.7203253689159,0.4771027089991548 +15,1595.800220143318,0.1658008706823329,0.0,449.15455867844,0.475445291998767 +16,1611.70677521292,0.1674535341215318,0.0,453.63162393522987,0.4801844169996911 +17,1598.0024596834728,0.1660296795448708,0.0,449.7744018870551,0.4761014169998816 +18,1595.2047318950506,0.1657390004878076,0.0,448.9869523214708,0.4752678750010091 +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831 +20,1594.7083993859603,0.1656874324023315,0.0,448.8472543779161,0.4751200000027893 +21,1594.7913334840082,0.1656960491110473,0.0,448.8705970418272,0.4751447090020519 +22,1611.819356688242,0.1674652311412436,0.0,453.66331116162905,0.4802179590005835 +23,1625.5004557649995,0.1688866735688013,0.0,457.513998697883,0.4842940419985098 +24,1613.805663465247,0.1676716049648041,0.0,454.2223778496544,0.4808097499990253 +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.4764814170011959 +26,1601.7627822219915,0.1664203705242697,0.0,450.83278375024673,0.477221749999444 +27,1637.621652666843,0.1701460448702147,0.0,460.9256355534117,0.4879053750009916 +28,1623.030399742511,0.1686300390389941,0.0,456.81877575663515,0.4835581250008545 +29,1635.1585880735686,0.1698901367377575,0.0,460.2323804225851,0.4871715409972239 +0,1433.797396939961,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367 +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.4802329169979202 +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418 +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.4777907079987926 +4,1456.870261103736,2.422621340465356,0.0,459.9279319836243,0.4831794579986308 +5,1446.022167683568,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192 +6,1436.2791326006184,2.3883804690111443,0.0,453.4273976515741,0.4763502909991075 +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637 +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.4756194999972649 +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.4778836250006861 +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.477050915997097 +11,1439.3127778105872,2.393425100521093,0.0,454.3851069308725,0.4773564169991005 +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.4774322919984115 +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.4832142499981273 +14,1457.2685173856205,2.4232835985903427,0.0,460.0536598490472,0.4833115420005924 +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105 +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717 +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.4813035830011358 +18,1436.3550154988843,2.3885066542546927,0.0,453.4513535695472,0.4763754580017121 +19,1439.5605226171017,2.393837073962569,0.0,454.463318944366,0.4774385829987295 +20,1434.5232971346488,2.385460700117666,0.0,452.8730876376165,0.4757679579997784 +21,1437.706317098976,2.3907537260641667,0.0,453.8779539107096,0.4768236250019981 +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702 +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.478918374999921 +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.480683041998418 +25,1444.3381928638455,2.401781834869899,0.0,455.9716097338424,0.4790231250008219 +26,1444.1479836100018,2.401465536974459,0.0,455.9115614569984,0.4789600410003913 +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177 +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.4783567919985216 +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.4797304159983468 +0,1437.887930994931,1.712970905880436,0.0,453.8701147286732,0.481649749999633 +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.4807219579997763 +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.4827039170013449 +3,1409.294103322443,1.678906780412161,0.0,444.8444573276378,0.4720716669980902 +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454 +5,1427.6852831409622,1.700816384961202,0.0,450.6496433329554,0.4782321659986337 +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.475717875000555 +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874 +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.4759302920028858 +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.4766364589995646 +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318 +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285 +12,1432.068880750474,1.7060386105646854,0.0,452.0333283247176,0.4797005410000565 +13,1432.8993036323643,1.70702790201473,0.0,452.2954517632362,0.4799787080009992 +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.4781303749987273 +15,1421.5099863905457,1.6934596894631586,0.0,448.7004075238365,0.4761636250004812 +16,1424.2936899173185,1.6967759445406032,0.0,449.57908507014065,0.4770960830028343 +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928 +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.475372958000662 +19,1423.7101814554428,1.6960808048172755,0.0,449.3949003038402,0.4769006249989616 +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.4777400829989346 +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789 +22,1429.3195086264966,1.702763254845861,0.0,451.1654875045515,0.4787795829979586 +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727 +24,1429.1426302590603,1.702552537799862,0.0,451.1096557507752,0.4787203339983534 +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349 +26,1429.5686590813752,1.703060070384259,0.0,451.2441319824019,0.4788630410002952 +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045 +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.478106791000755 +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.4814269579983374 +0,1381.5516209493485,0.0999506803686798,0.0,439.3165571138039,0.4754871660006756 +1,1381.107557064519,0.0999185538185438,0.0,439.17535021710626,0.4753343330012285 +2,1376.128171163972,0.0995583117537298,0.0,437.59196626156063,0.4736205830013205 +3,1380.7211189424895,0.0998905963013352,0.0,439.0524676098022,0.475201332999859 +4,1380.2241479000502,0.0998546420937167,0.0,438.89443688258285,0.4750302909997117 +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.4739347079994331 +6,1377.0907565492023,0.0996279516156849,0.0,437.8980566681405,0.4739518749993294 +7,1379.9166477647204,0.0998323954781913,0.0,438.7966555918104,0.474924459002068 +8,1388.2125966734,0.1004325798832855,0.0,441.4346661136675,0.4777796669986855 +9,1385.2603140533952,0.100218992021612,0.0,440.4958762656587,0.4767635829994106 +10,1378.254188068791,0.0997121220297193,0.0,438.2680136946266,0.4743522919998213 +11,1384.9526889767828,0.100196736366999,0.0,440.398055245083,0.4766577080008574 +12,1382.3441125519096,0.1000080145092658,0.0,439.56855977306,0.475759917000687 +13,1382.6810342874294,0.1000323896800416,0.0,439.67569677367646,0.475875874999474 +14,1381.2961766373749,0.0999321998194256,0.0,439.235328939649,0.475399250000919 +15,1385.2699982500696,0.1002196926411413,0.0,440.49895572203,0.4767669159991783 +16,1373.3594263151476,0.0993580022414315,0.0,436.71153918517217,0.4726676670034067 +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.4784245000009832 +18,1380.847269195503,0.0998997228539925,0.0,439.0925818509153,0.4752447499995469 +19,1378.9612042113365,0.0997632723040974,0.0,438.4928362006096,0.4745956250008021 +20,1377.5675078746096,0.0996624429937981,0.0,438.0496577720742,0.4741159580007661 +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.4762315420011873 +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.476905750001606 +23,1380.1145854309248,0.0998467156122404,0.0,438.85959735433414,0.4749925830001302 +24,1386.322655687205,0.1002958489174913,0.0,440.8336879420138,0.4771292080004059 +25,1383.0889008435486,0.1000618974734281,0.0,439.8053933615413,0.4760162500024307 +26,1382.3496824807823,0.1000084174751572,0.0,439.5703309424747,0.4757618339972396 +27,1398.4333502809254,0.1011720175282218,0.0,444.6847410423778,0.481297333000839 +28,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028 +29,1385.4469985267924,0.1002324980244622,0.0,440.5552396501865,0.4768278339979588 +0,1398.8862502594493,0.1670631105953912,0.0,440.94637410547574,0.4769608329988841 +1,1396.9275519023229,0.1668291914756637,0.0,440.32896798086693,0.4762929999997141 +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.4758985420012322 +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526 +4,1397.991833947257,0.1669562942111038,0.0,440.6644429407875,0.4766558750015974 +5,1392.2824223679588,0.1662744431614349,0.0,438.8647652802912,0.4747092079996946 +6,1389.60246999989,0.1659543877039064,0.0,438.0200109056906,0.4737954579977668 +7,1396.1068221654489,0.1667311751696382,0.0,440.0702637427432,0.4760131659968465 +8,1391.825623572621,0.16621988959952,0.0,438.7207766089732,0.4745534590001625 +9,1396.1552182260154,0.1667369549079245,0.0,440.08551878397606,0.4760296669992385 +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643 +11,1398.5840366906104,0.1670270184979351,0.0,440.8511126234501,0.4768577909999294 +12,1403.2547089972113,0.1675848172781918,0.0,442.3233667240595,0.4784502920010709 +13,1396.9105644487831,0.166827162735422,0.0,440.323613323873,0.4762872079991211 +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.4752887499998905 +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325 +16,1395.3931497605902,0.1666459442712148,0.0,439.8453053094444,0.4757698339999479 +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465 +18,1396.185647230651,0.1667405889161691,0.0,440.0951103853369,0.4760400419982034 +19,1397.077863860132,0.1668471426015874,0.0,440.37634818262984,0.4763442499970551 +20,1394.4525370705426,0.1665336108475102,0.0,439.5488124709186,0.475449124998704 +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357 +22,1389.5461345505648,0.1659476597977601,0.0,438.00225327020814,0.4737762500008102 +23,1395.138839516903,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239 +24,1396.723593957756,0.1668048336348145,0.0,440.26467789572945,0.4762234589979925 +25,1404.0633375129448,0.1676813883861925,0.0,442.57825650651665,0.4787260000011883 +26,1391.7788171546058,0.1662142997055683,0.0,438.70602264287703,0.4745374999984051 +27,1397.919124008101,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545 +28,1400.2760860285289,0.1672290928450245,0.0,441.38446765515783,0.4774347080019652 +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.4754571249977743 +0,1392.7279603943014,0.1339966768870043,0.0,442.3565295732231,0.4786749999984749 +1,1389.1204843918358,0.1336495956119625,0.0,441.21072751399134,0.477435125001648 +2,1380.2402990351388,0.1327952181873855,0.0,438.3902140411066,0.4743830410006922 +3,1385.5556798078874,0.1333066198251725,0.0,440.0784786978509,0.4762099159997888 +4,1388.581612791723,0.1335977498777364,0.0,441.03957178387736,0.4772499169994262 +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197 +6,1384.9009121834042,0.1332436235413978,0.0,439.87051221603974,0.4759848749999946 +7,1390.9897468626043,0.1338294404678393,0.0,441.80444034445446,0.4780775829967751 +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852 +9,1380.9355617432616,0.1328621105706084,0.0,438.6110425212212,0.4746219999979075 +10,1384.2770555996944,0.1331836012603434,0.0,439.6723636607087,0.4757704580006248 +11,1383.5134214083396,0.1331101307428348,0.0,439.4298191147835,0.4755079999995359 +12,1386.532682809284,0.1334006189112961,0.0,440.3887931809163,0.4765457080029591 +13,1387.365540957909,0.1334807495810375,0.0,440.65332455440017,0.4768319579998206 +14,1393.2604077165302,0.1340479045307545,0.0,442.52564483215343,0.4788580000022193 +15,1382.1245980610845,0.1329765097352817,0.0,438.9887027635988,0.4750306669993733 +16,1390.2715743685353,0.1337603438959504,0.0,441.57633528650655,0.4778307499982475 +17,1386.3423517986607,0.1333823068477364,0.0,440.3283404810899,0.4764802919999056 +18,1386.152867472149,0.1333640762450654,0.0,440.26815670402226,0.4764151669987768 +19,1387.0355487415052,0.133449000480241,0.0,440.5485128353957,0.476718541001901 +20,1385.5385891202095,0.1333049755016437,0.0,440.0730503748014,0.4762040419991535 +21,1379.320279536285,0.132706701578957,0.0,438.097998587532,0.4740668339982221 +22,1393.496567010398,0.1340706258097797,0.0,442.6006534545353,0.478939167001954 +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452 +24,1384.7716816940174,0.1332311900607593,0.0,439.82946618808177,0.4759404590004124 +25,1385.4854869535443,0.1332998664537384,0.0,440.0561841304042,0.4761857909979881 +26,1384.3494335214364,0.1331905648607515,0.0,439.695352246556,0.4757953340013046 +27,1381.87219185281,0.1329522253135596,0.0,438.9085338163886,0.474943916000484 +28,1389.2910566489743,0.1336660066529379,0.0,441.26490446301153,0.4774937500005762 +29,1379.96219569416,0.1327684614017231,0.0,438.3018832024386,0.4742874580006173 +0,2136.203094366269,0.93457425106257,0.0,450.030879538451,0.4746758750006847 +1,2134.504400315829,0.9338310840274872,0.0,449.673018069379,0.4742984160002379 +2,2140.0647600968737,0.9362637034220164,0.0,450.84441118710873,0.4755339580005966 +3,2130.118633912307,0.9319123412063032,0.0,448.74907487444943,0.4733238749977317 +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922 +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985 +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567 +7,2140.343781207982,0.9363857732507852,0.0,450.90319216929765,0.4755959579997579 +8,2123.4230632247763,0.9289830748002958,0.0,447.3385284832996,0.4718360829974699 +9,2124.5554614297384,0.9294784912740844,0.0,447.5770892088742,0.4720877079998899 +10,2127.025585853203,0.930559153823998,0.0,448.0974668217487,0.4726365829992573 +11,2136.577936722176,0.93473824203092,0.0,450.109847046532,0.4747591669984103 +12,2128.1066081569707,0.9310320936922108,0.0,448.3252042590027,0.4728767919987149 +13,2126.8684474597603,0.9304904068510382,0.0,448.0643626990196,0.472601665998809 +14,2134.9276258433156,0.9340162423026646,0.0,449.7621783916723,0.474392459000228 +15,2129.032364221914,0.9314371056423116,0.0,448.5202319776889,0.4730825000006007 +16,2132.6545758265033,0.9330217984584944,0.0,449.2833181648528,0.4738873749993217 +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.4739143330007209 +18,2131.381163955856,0.932464689469914,0.0,449.0150502901017,0.4736044159981247 +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959 +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707 +21,2132.5525666154294,0.9329771701259671,0.0,449.261828028872,0.4738647080012015 +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.4754727910003566 +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205 +24,2127.013772451134,0.9305539855413472,0.0,448.0949781090709,0.4726339579974592 +25,2158.107187960308,0.9441571422772864,0.0,454.64538390445193,0.4795430830017722 +26,2129.987750526841,0.9318550806198584,0.0,448.7215018570554,0.4732947920019796 +27,2133.861040626745,0.9335496185614108,0.0,449.53748239512504,0.4741554579995863 +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.4748490419988229 +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905 +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169 +1,1429.6826668576923,1.2845914437858772,0.0,452.24379828861754,0.4819986250004149 +2,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.4741008329983742 +3,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305 +4,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.4755443329995614 +5,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.4754301249995478 +6,1411.741753318708,1.2684712623217371,0.0,446.5686459826368,0.4759500830004981 +7,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337 +8,1411.2333039163964,1.2680144128634985,0.0,446.4078109286284,0.4757786660011334 +9,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134 +10,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352 +11,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.4737324160014395 +12,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283 +13,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.4766884999989997 +14,1413.72623564537,1.2702543496293404,0.0,447.1963865616136,0.4766191250018892 +15,1409.9204124898235,1.2668347601109735,0.0,445.9925110727528,0.4753360419999808 +16,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.4740017920012178 +17,1414.1821574059145,1.2706640022090403,0.0,447.3406058303301,0.476772833000723 +18,1407.8358224333165,1.26496172449792,0.0,445.3331039561361,0.4746332499998971 +19,1408.264307266331,1.265346724584332,0.0,445.4686442497156,0.4747777080010564 +20,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618 +21,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096 +22,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007 +23,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.4757349160026933 +24,1407.3231699892026,1.264501098543216,0.0,445.1709393766091,0.474460416000511 +25,1412.2315426385103,1.2689113454143433,0.0,446.7235783935022,0.4761152089995448 +26,1409.2195337686403,1.2662050100068178,0.0,445.7708058913476,0.4750997499977529 +27,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464 +28,1411.5918379108589,1.2683365610662214,0.0,446.5212240511556,0.4758995410011266 +29,1408.3419226332817,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236 +0,1393.914644610329,0.1001279555078772,0.0,442.7991952410027,0.4769412079986068 +1,1395.233719300143,0.1002227075447856,0.0,443.2182203322239,0.4773925420013256 +2,1395.0142778015193,0.1002069445791724,0.0,443.1485112439603,0.4773174579968327 +3,1395.110604219539,0.100213863917695,0.0,443.1791108653535,0.4773504170007072 +4,1393.8152786855164,0.1001208178348948,0.0,442.76763007185,0.4769072089984547 +5,1393.8315956415768,0.1001219899177456,0.0,442.77281341291064,0.4769127920008031 +6,1387.1687683245957,0.0996433843734744,0.0,440.6562601609618,0.4746330420020967 +7,1391.1876039682206,0.0999320661791174,0.0,441.93290733278377,0.4760081249987706 +8,1392.3965925792977,0.1000189104908029,0.0,442.3169618271607,0.4764217919982911 +9,1388.5243727459326,0.0997407604213628,0.0,441.08688950340695,0.4750968750013271 +10,1392.8408268551927,0.1000508208161473,0.0,442.458079922609,0.4765737909983727 +11,1386.1762985767418,0.0995720930880716,0.0,440.3409863331489,0.4742934589994547 +12,1389.0087958741594,0.0997755576003849,0.0,441.24077422810245,0.4752626250010507 +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.4757032500019704 +14,1390.0111294314313,0.0998475574249184,0.0,441.559181452131,0.4756055830002879 +15,1390.948925844576,0.0999149214044087,0.0,441.8570874240971,0.4759264589993108 +16,1396.212671944328,0.1002930278668945,0.0,443.5292002366967,0.4777274999978544 +17,1390.1526335855483,0.0998577219796151,0.0,441.60413250118455,0.4756539999980305 +18,1399.6301828713626,0.100538515195242,0.0,444.61482703175864,0.4788968339998973 +19,1386.9895127650243,0.0996305080522716,0.0,440.5993167764959,0.4745717080004397 +20,1392.3554334243463,0.1000159539381534,0.0,442.30388696582713,0.4764077090003411 +21,1399.1193305515217,0.1005018195492425,0.0,444.4525466532669,0.4787220409998554 +22,1394.742232204257,0.100187402945426,0.0,443.0620916256557,0.4772243749976042 +23,1397.4406575579208,0.1003812367750637,0.0,443.91928943159024,0.4781476670032134 +24,1395.8205537077984,0.100264861151312,0.0,443.4046376314855,0.4775933329983672 +25,1378.0424206880402,0.0989878187449506,0.0,437.7571304297536,0.4715103749986156 +26,1388.8359963638768,0.0997631450314057,0.0,441.1858817105535,0.4752034999983152 +27,1396.3338376479594,0.1003017314659486,0.0,443.5676904529135,0.4777689580005244 +28,1390.4448949140815,0.0998787157538129,0.0,441.6969739686122,0.4757540000027802 +29,1392.3996350206342,0.1000191290360574,0.0,442.31792830712465,0.4764228329986508 +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.4753916670015314 +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214 +2,1410.4888534886547,2.57675488667884,0.0,450.2293538360664,0.4780275000011897 +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321 +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.4748084160019061 +5,1402.588873689239,2.562322789961124,0.0,447.7076729368437,0.4753501250015688 +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.4769594579993281 +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915 +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.4754808749967196 +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.4759253749980416 +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982 +11,1405.115976126432,2.5669394330051785,0.0,448.5143263850866,0.476206583000021 +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345 +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.4764153750002151 +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.4748462499992456 +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462 +16,1407.7395911650067,2.571732390322558,0.0,449.3517867454507,0.4770957499968062 +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.4743893330014543 +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309 +19,1391.8015679961811,2.5426159751288515,0.0,444.26435492705934,0.4716942089980875 +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645 +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289 +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583 +23,1402.136811455346,2.561496939003574,0.0,447.5633742513517,0.4751969169992662 +24,1407.9788382191025,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483 +25,1407.0144704711065,2.570407701873714,0.0,449.1203275455708,0.4768499999991036 +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.4770084999981918 +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.4770505419983237 +28,1401.8344944047062,2.560944650387017,0.0,447.4668743676224,0.4750944590014114 +29,1405.6258237574764,2.5678708493517206,0.0,448.6770702230915,0.4763793749989418 +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.4768898330003139 +1,1810.3407727008257,0.3624635693430848,0.0,450.5751679270311,0.475776458002656 +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.474959334002051 +3,1803.924867023314,0.3611789868448571,0.0,448.978315101507,0.4740902909979922 +4,1814.9485005797917,0.3633861213392375,0.0,451.7219839266121,0.47698741700151 +5,1838.3950575707256,0.3680805539366213,0.0,457.55759041176,0.4831494169993675 +6,1810.9882621843371,0.3625932086645014,0.0,450.7363213889448,0.4759466249997786 +7,1809.528084290628,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517 +8,1816.3105392978791,0.3636588265794807,0.0,452.06098133162,0.4773453749985492 +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575 +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.4773302499997953 +11,1812.3434823164148,0.3628645486982265,0.0,451.0736217181408,0.476302791001217 +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062 +13,1890.5448082241376,0.3785218946207775,0.0,470.5371260949556,0.4968549160003022 +14,1863.8205427908624,0.3731712044175371,0.0,463.8857317459456,0.4898314999991271 +15,1888.8672721415512,0.3781860209966702,0.0,470.1196046462245,0.496414042001561 +16,1882.4233044209063,0.3768958199605018,0.0,468.51576746726386,0.494720499998948 +17,1887.059090550134,0.3778239897351924,0.0,469.6695668762747,0.4959388329989451 +18,1881.9700309632929,0.3768050662649475,0.0,468.40295237335386,0.4946013750013662 +19,1886.6865178361625,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411 +20,1849.6913781590397,0.3703422853976963,0.0,460.36912822982725,0.4861182080021535 +21,1814.6577320581712,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264 +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.4750594580000324 +23,1807.75034288652,0.3619449175782984,0.0,449.9304366332412,0.4750956659991061 +24,1811.4627790990735,0.3626882156914782,0.0,450.85442376047934,0.4760713329997088 +25,1819.489476926938,0.3642953084491503,0.0,452.85218615760743,0.4781808330008061 +26,1813.531285204246,0.3631023687158118,0.0,451.369253620001,0.4766149580027559 +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.476694042001327 +28,1801.3705887684314,0.3606675732881824,0.0,448.3425815584188,0.4734190000017406 +29,1829.2969259130637,0.3662589403903112,0.0,455.2931591724651,0.4807583330002671 +0,1409.9511145646975,0.7683839360010437,0.0,445.2951949112135,0.4760072919998492 +1,1399.6801275675623,0.7627865352585996,0.0,442.0513794983424,0.4725397500005783 +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818 +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.4716822500013222 +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.472294041999703 +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029 +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.474087958002201 +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738 +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.4762599170026078 +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575 +10,1410.2225082204634,0.7685318379554227,0.0,445.3809073090361,0.4760989159985911 +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956 +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474 +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319 +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.4767237919986655 +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965 +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252 +17,1403.882638711802,0.7650767863323724,0.0,443.3786297836606,0.4739585409988649 +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.4729575839992321 +19,1405.5357040683705,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616 +20,1402.830378107766,0.764503333723785,0.0,443.046301530623,0.4736032920009165 +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547 +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724 +23,1412.2901343112185,0.7696586363652266,0.0,446.033911483135,0.4767969579988858 +24,1413.507409993883,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596 +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379 +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.4757148329990741 +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383 +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697 +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.4738867079977353 +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.4849021669979265 +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063 +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135 +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.4895718750012747 +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.6778526944505,0.4906171659968095 +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154 +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.4871125419995223 +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639 +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739 +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.4879217089983285 +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891 +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944 +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.4859462909989815 +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574 +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318 +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.4878895000001648 +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959 +17,2227.261152610207,3.99574426756604,74.82031141017409,495.37239557149974,0.488344417000917 +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.4923834159999387 +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123 +20,2227.782798769239,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098 +21,2221.6883752224203,3.9857466104544903,74.63310528076033,494.1329360310955,0.4871225419992697 +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.4864686250002705 +23,2217.6434795297237,3.9784899990068143,74.49722523140261,493.23329762686984,0.4862356670018926 +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311 +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591 +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985 +27,2251.464964761066,4.039166316903047,75.63338928400955,500.7556441380552,0.4936512920030509 +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068 +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304 +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235 +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195 +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.4886344999977154 +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134 +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859 +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844 +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769 +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.4936091669987945 +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017 +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253 +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.4851672910008346 +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426 +12,2188.706010784058,2.983740150116864,75.78699981296833,491.554613397586,0.4860802499970305 +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227 +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.4898277079992112 +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.4867344580015924 +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.4993912499994621 +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378 +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.4859611249994486 +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.4922967499987862 +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.4873433749999094 +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008 +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.487996292002208 +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986 +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196 +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232 +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.4884874160015897 +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.4907508750002307 +28,2240.945048917429,3.05495470095834,77.59584940434183,503.2868150123256,0.4976817919996392 +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876 +0,1447.352143928246,0.1670342924325731,0.0,440.8703114465335,0.4786405830018339 +1,1472.891086509974,0.1699816603012087,0.0,448.6495941990104,0.4870863329997519 +2,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.4763764579984126 +3,1442.1423750135714,0.166433049626494,0.0,439.2833911841685,0.4769177079979272 +4,1442.9420675541187,0.1665253395907811,0.0,439.5269813159078,0.4771821670001372 +5,1437.1418858973352,0.1658559591341414,0.0,437.7602185386529,0.4752640420010721 +6,1439.2019047977624,0.1660936993419229,0.0,438.3877100430714,0.4759452920006879 +7,1437.048774549541,0.1658452134506105,0.0,437.73185638154155,0.4752332499992917 +8,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179 +9,1443.399553534289,0.1665781365879156,0.0,439.6663337101445,0.4773334580022492 +10,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901 +11,1432.716058127496,0.165345188474033,0.0,436.41209045836274,0.4738004169994383 +12,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.4786068749999685 +13,1441.7816532347647,0.1663914198770645,0.0,439.17351362352423,0.4767984169993724 +14,1448.9938602988364,0.1672237576801888,0.0,441.3703860210905,0.4791834999996354 +15,1443.4076182206436,0.1665790673076334,0.0,439.6687902517676,0.4773361250008747 +16,1440.843745147536,0.1662831788975806,0.0,438.8878223822743,0.4764882499985106 +17,1442.4172972021684,0.1664647775190038,0.0,439.3671337836588,0.4770086249991436 +18,1441.4691835270078,0.1663553587451826,0.0,439.0783338720352,0.4766950830016867 +19,1441.9596812033676,0.1664119655168341,0.0,439.227741785132,0.4768572909997601 +20,1439.0480618235515,0.1660759448151819,0.0,438.3408487451912,0.4758944159984821 +21,1443.1939296256437,0.1665544061887644,0.0,439.6036996946248,0.4772654580010567 +22,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519 +23,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837 +24,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415 +25,1433.4711454001133,0.1654323306866836,0.0,436.6420936144327,0.4740501250016677 +26,1457.45165533711,0.1681998448167466,0.0,443.9466704093212,0.4819805000006454 +27,1442.1242317326914,0.1664309557683429,0.0,439.27786465496433,0.476911707999534 +28,1437.1829592656563,0.1658606992805142,0.0,437.7727296809894,0.4752776249988528 +29,1453.654038845132,0.1677615740155951,0.0,442.7898984567618,0.4807246250020398 +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.4776932919994578 +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947 +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.471633417000703 +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077 +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674 +5,1542.8219147718562,2.402400988433286,0.0,466.8551520808284,0.4908737080004357 +6,1494.696902023256,2.327463254474083,0.0,452.2926092944422,0.4755619579991617 +7,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.4757614579975779 +8,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.4753305420017568 +9,1496.9221576047012,2.3309283052081926,0.0,452.9659676535291,0.4762699589991825 +10,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.4777056249986344 +11,1500.131823380298,2.335926227624257,0.0,453.93720677675384,0.4772911660002137 +12,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286 +13,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.4754105419997358 +14,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702 +15,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234 +16,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261 +17,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572 +18,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218 +19,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491 +20,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127 +21,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458 +22,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.4765544590009085 +23,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.4758864580035151 +24,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.4770657910012232 +25,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.4747234590031439 +26,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.4790385420019447 +27,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.4746996670000953 +28,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353 +29,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.4753105830022832 +0,1381.9094842887912,1.232925439914284,0.0333223091868725,441.0874067066318,0.4757015830000455 +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.4761970830004429 +2,1377.8662199972532,1.2293180810662478,0.0332248130017904,439.7968497047006,0.4743097499995201 +3,1382.9158230323503,1.233823284999083,0.0333465752702454,441.40861685223945,0.4760479999968083 +4,1386.128503523028,1.2366896055159518,0.033424043392323,442.43406238417987,0.4771539169996686 +5,1376.9074533923183,1.2284626793546278,0.0332016940366115,439.4908239626273,0.4739797089969215 +6,1390.6754208710522,1.2407463184449117,0.0335336842822949,443.8853788447377,0.4787191249997704 +7,1380.57996803777,1.231739259178643,0.0332902502480714,440.66304253372147,0.4752439170006255 +8,1381.657961329704,1.2327010337151032,0.0333162441544622,441.0071238726168,0.4756149999993795 +9,1374.6571707641597,1.226455000320077,0.0331474324410831,438.7725632226178,0.47320508300254 +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.9536166278275,0.4809496670022781 +11,1363.870814864897,1.2168315244387933,0.0328873384983457,435.32969970260285,0.4694920420006383 +12,1392.8155520129008,1.2426557214554106,0.0335852897690651,444.5684806731154,0.4794558329995197 +13,1383.647032868345,1.234475662900069,0.0333642071054072,441.6420094542761,0.4762997079997149 +14,1381.6147495768726,1.232662480633317,0.0333152021792788,440.993331247114,0.4756001250025292 +15,1377.525609644332,1.229014192009845,0.0332165997840498,439.6881313414681,0.4741925000016636 +16,1385.5815166921095,1.2362015894868232,0.0334108537699141,442.2594713523535,0.4769656249991385 +17,1383.6618018467698,1.234488839630838,0.0333645632332658,441.6467235187406,0.4763047919987002 +18,1374.955298503026,1.2267209868248166,0.0331546212655355,438.8677216918945,0.4733077089986182 +19,1371.61443522941,1.2237403029463525,0.0330740622417933,437.8013618946179,0.4721576669981004 +20,1375.2341748666422,1.2269697974504057,0.0331613458770379,438.9567353743518,0.4734037079979316 +21,1379.3660443310175,1.2306562089230462,0.0332609786195417,440.2755739868747,0.4748260419983126 +22,1373.8068562416304,1.2256963584418106,0.0331269286065354,438.5011539647093,0.4729123750003055 +23,1383.064340779556,1.2339557910068135,0.0333501565136976,441.456021771816,0.4760991250004736 +24,1410.7851087655586,1.2586879753158997,0.0340185939274567,450.3041278177449,0.4856415829999605 +25,1389.1312954040106,1.2393686655722889,0.0334964504208726,443.3925142210916,0.4781875830012723 +26,1378.0240598523594,1.229458904162844,0.0332286190314282,439.8472301190153,0.4743640839988075 +27,1384.5515748746504,1.2352826859820614,0.0333860185400557,441.93072741471747,0.4766110829987156 +28,1384.6750399681143,1.2353928402695915,0.0333889956829619,441.9701358553671,0.4766535840026336 +29,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.4761708330006513 +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491 +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846 +2,1429.4735844199126,2.1692569511193316,0.0,450.1708771330563,0.4782339589983166 +3,1426.3045481635716,2.1644478703483796,0.0,449.1728818942968,0.4771737500013842 +4,1432.4783415347592,2.1738167347549635,0.0,451.1171374632262,0.4792392079980345 +5,1436.4295181245916,2.1798127303270483,0.0,452.3614449135624,0.4805610839975998 +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.4785199159996409 +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575 +8,1422.6951236106663,2.158970490852691,0.0,448.03619924787614,0.4759662079995905 +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833 +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044 +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324 +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295 +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374 +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455 +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.4791691659993375 +16,1432.7423778229895,2.174217415508938,0.0,451.2002879661548,0.4793275419979181 +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342 +18,1421.4663687712782,2.157105828920064,0.0,447.649238866196,0.475555124998209 +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355 +20,1425.254760753872,2.1628547953447503,0.0,448.8422820677744,0.4768225410007289 +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392 +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321 +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.4788790829989011 +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149 +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.4772504579996166 +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.4783681660010188 +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.4748786250020202 +28,1436.3390958497594,2.1796755125775538,0.0,452.3329690639789,0.4805308329996478 +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702 +0,1386.7005541149863,0.0998895877817119,0.0,439.2811105347087,0.4755048749975685 +1,1389.776976809194,0.1001111948142143,0.0,440.255664394643,0.4765597919977153 +2,1385.844628906725,0.0998279320652189,0.0,439.009969245478,0.4752113750000717 +3,1385.5003865740737,0.0998031349130122,0.0,438.90091963579016,0.4750933329996769 +4,1389.920116092038,0.1001215057093215,0.0,440.3010082743598,0.4766088750002382 +5,1395.4414636433553,0.1005192304590982,0.0,442.0500691489612,0.4785021659990889 +6,1383.25911358358,0.0996416870543074,0.0,438.1909257691591,0.4743247919977875 +7,1394.1143187941695,0.1004236309069682,0.0,441.62965418521094,0.4780470830010017 +8,1391.919461157872,0.1002655265318898,0.0,440.93436384507424,0.4772944579999603 +9,1385.5401236639073,0.0998059973345432,0.0,438.91350761154297,0.4751069589983672 +10,1389.6626327917504,0.1001029581572562,0.0,440.21944232289394,0.4765205830008199 +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.4732225410007231 +12,1384.9940492190317,0.0997666614079548,0.0,438.7405213183826,0.4749197080018348 +13,1374.9844398051246,0.0990456292029527,0.0,435.56966202485194,0.4714873750017432 +14,1387.592932719944,0.0999538693821843,0.0,439.5637995863861,0.475810875002935 +15,1390.2901178414663,0.1001481584153576,0.0,440.41821799127104,0.4767357500022626 +16,1383.923900638318,0.0996895743250403,0.0,438.401518023419,0.4745527499981108 +17,1383.3757643872302,0.0996500898783031,0.0,438.22787858815104,0.474364792000415 +18,1391.7060864361836,0.1002501562971774,0.0,440.8667706762208,0.4772212909992959 +19,1392.4171721955554,0.1003013786488022,0.0,441.09202950454926,0.4774651250008901 +20,1405.4888679186208,0.1012429851791452,0.0,445.23290115615447,0.4819474590003665 +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863 +22,1391.9551883778888,0.1002681001064582,0.0,440.94568156816786,0.4773067089990945 +23,1388.182261289353,0.0999963210763814,0.0,439.7504879869002,0.4760129580026841 +24,1375.0170057848686,0.0990479750607392,0.0,435.5799783254442,0.4714985419996083 +25,1388.4195727452525,0.1000134155698071,0.0,439.82566387082176,0.4760943330002192 +26,1387.2079850901775,0.0999261400646032,0.0,439.4418552907703,0.4756788750019041 +27,1395.1198253223383,0.1004960615642666,0.0,441.9481800724568,0.4783918749999429 +28,1386.186074535617,0.0998525277596669,0.0,439.11813291109553,0.4753284580001491 +29,1391.5517690909974,0.1002390402015269,0.0,440.817885792915,0.477168374996836 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..c4265200c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n10/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065 +1,399.29583877571366,1.158366767779374,11.41331962370854,71.40990427251671,0.0692834579967893 +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.0633901660003175 +3,394.21772121323113,1.1436350274103977,11.268168652425976,70.50173580741745,0.0684023329995398 +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.0680647919980401 +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.0679784999992989 +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.0698598329981905 +7,392.2752796374332,1.1379999579925535,11.212646644926632,70.15435035154096,0.0680652919982094 +8,387.9996905257891,1.125596371832494,11.09043484011428,69.38970574590904,0.0673234170026262 +9,391.1295975243385,1.134676306811221,11.179898905345851,69.94945703165645,0.0678664999977627 +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751 +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.0683444170026632 +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992 +13,389.43280747798,1.1297538783490886,11.13139850726308,69.64600379469677,0.0675720830004138 +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.0660507920001691 +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.0690730419992178 +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.0675779160010279 +17,405.877194445587,1.1774594378114298,11.601438578436149,72.58691122508108,0.0704254160009441 +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.0655020420017535 +19,383.6916774964104,1.1130987231124532,10.967296242431525,68.61926246010889,0.0665759160001471 +20,388.806541361944,1.1279370653844794,11.113497555994131,69.53400261899613,0.0674634169990895 +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.0680769159989722 +22,405.6771703448896,1.176879163116574,11.595721166001535,72.5511389968335,0.0703907089991844 +23,389.3441979604815,1.129496820021875,11.12886572668612,69.63015690487794,0.0675567079997563 +24,393.09269449425614,1.1403712980208796,11.236011318735136,70.30053648975775,0.0682071250012086 +25,372.8068790690931,1.0815216628284272,10.65616932492715,66.67262956730539,0.0646872500001336 +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459 +27,390.2598296133434,1.1321530893219862,11.15503779184898,69.79390809467303,0.0677155830017 +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.0690524580022611 +29,379.8298414684538,1.101895444533057,10.85691099760512,67.92861328650847,0.0659058329983963 +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.0667561670015857 +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.0679194580006878 +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.0679882910008018 +3,396.7437451725483,0.2682967000321544,11.972740238934891,70.15958705840839,0.0680203750016517 +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.0677365830015332 +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.0680572919991391 +6,391.36719129553967,0.2646608225160031,11.81048920477664,69.20880508793482,0.0670985830001882 +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.0676863749977201 +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.0701520839975273 +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.0696812919995863 +10,387.301056942086,0.2619111120487479,11.687783375175377,68.48975580074759,0.0664014579997456 +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.0675194590003229 +12,389.3096996228947,0.2632694502944342,11.74839921938913,68.84496125199456,0.066745833002642 +13,387.9621023426623,0.2623581419054352,11.707732082530049,68.60665410827131,0.0665147920008166 +14,395.11252609217826,0.2671935932998669,11.923514101006564,69.87112464791521,0.0677407080002012 +15,394.7183334237559,0.2669270217574004,11.911618345923996,69.80141618956021,0.0676731249986914 +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.0671810830026515 +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.0674895829979504 +18,386.8565570909318,0.2616105204334281,11.674369474341727,68.41115109334145,0.0663252500016824 +19,384.0741050620474,0.2597288960690092,11.590401987079536,67.91910632204592,0.0658482079998066 +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.0685538329998962 +21,396.65893159557254,0.2682393451195757,11.970180775961063,70.14458874876905,0.0680058340003597 +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.0646796670007461 +23,393.0382653515496,0.2657908810492305,11.86091806682191,69.50431539437378,0.0673850830025912 +24,406.135881200921,0.2746481022491435,12.256171562868031,71.82047873815104,0.069630624999263 +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.0686014579987386 +26,394.0356603064191,0.2664653662258117,11.891016967826848,69.68069326804977,0.0675560829986352 +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.0676258750027045 +28,413.12105234795297,0.2793718020949808,12.46696666848852,73.0557262478375,0.0708282089981366 +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.0648108750028768 +0,301.527059904683,0.0,0.0,61.86818404371384,0.0670472090023395 +1,297.30471380754034,0.0,0.0,61.001831002242675,0.0661083329978282 +2,298.56993893852353,0.0,0.0,61.26143351116889,0.0663896669975656 +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497 +4,299.1821205786761,0.0,0.0,61.38704268997068,0.0665257910004584 +5,298.54745277190455,0.0,0.0,61.256819735227,0.0663846669995109 +6,295.84086380274124,0.0,0.0,60.701474073952625,0.0657828330004122 +7,287.0708821292312,0.0,0.0,58.902024165847415,0.0638327499982551 +8,311.42434548185787,0.0,0.0,63.89893738908661,0.0692479579993232 +9,276.3402948730035,0.0,0.0,56.70029160003628,0.0614467090017569 +10,302.1443009237354,0.0,0.0,61.99483132034014,0.0671844580028846 +11,299.5947418972884,0.0,0.0,61.47170551157061,0.0666175410005962 +12,297.7119024745538,0.0,0.0,61.08537913685875,0.0661988749998272 +13,296.81133114888826,0.0,0.0,60.90059733804315,0.065998624999338 +14,295.8635388716868,0.0,0.0,60.70612660941386,0.0657878750025702 +15,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043 +16,293.46651256772094,0.0,0.0,60.21429790064635,0.0652548750003916 +17,288.92730480664824,0.0,0.0,59.28293027724474,0.0642455420020269 +18,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284 +19,294.5672108564634,0.0,0.0,60.440142321793985,0.0654996250013937 +20,292.01034831569035,0.0,0.0,59.915517957078485,0.0649310839980898 +21,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666 +22,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717 +23,297.67255166251954,0.0,0.0,61.07730502476422,0.066190124998684 +24,298.30198018653,0.0,0.0,61.20645296849487,0.0663300839987641 +25,297.6101525252016,0.0,0.0,61.06450179140608,0.0661762499985343 +26,300.59875411481113,0.0,0.0,61.67771160825551,0.0668407919984019 +27,296.54093489263096,0.0,0.0,60.84511666127687,0.0659384999999019 +28,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473 +29,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701 +0,297.9231929631541,0.0,0.0,61.89344237000005,0.0660346250006114 +1,297.04079661120556,0.0,0.0,61.71012482693256,0.0658390419994248 +2,296.8676586574506,0.0,0.0,61.674155475717534,0.0658006660014507 +3,297.3197636713215,0.0,0.0,61.7680801391279,0.0659008750008069 +4,298.48470477937286,0.0,0.0,62.01009625951951,0.0661590839990822 +5,295.20155767320017,0.0,0.0,61.3280235608919,0.0654313750019355 +6,292.8541974051702,0.0,0.0,60.84036026074424,0.0649110829981509 +7,297.2970205991458,0.0,0.0,61.76335527359118,0.0658958340027311 +8,297.0774535309563,0.0,0.0,61.71774028958751,0.0658471669994469 +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461 +10,296.545267260386,0.0,0.0,61.607178772237894,0.0657292080031766 +11,296.86935500896175,0.0,0.0,61.67450789216907,0.0658010419974743 +12,298.61459885910585,0.0,0.0,62.03708171056209,0.0661878749997413 +13,299.2832616828819,0.0,0.0,62.17599618558742,0.0663360840007953 +14,298.81874969918397,0.0,0.0,62.079493978400286,0.0662331249986891 +15,296.9749991387711,0.0,0.0,61.6964554243335,0.0658244580008613 +16,293.1703898391526,0.0,0.0,60.906049131744425,0.0649811669973132 +17,299.0945225408772,0.0,0.0,62.13678569280086,0.0662942500021017 +18,255.6130228481359,0.0,0.0,53.10351886779507,0.0566565829976752 +19,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645 +20,290.72809607604245,0.0,0.0,60.39866343016743,0.064439833000506 +21,298.5279351289336,0.0,0.0,62.01907734998971,0.0661686659987026 +22,299.2761152689181,0.0,0.0,62.1745115205084,0.0663344999993569 +23,293.40781389038244,0.0,0.0,60.95537389792288,0.0650337919978483 +24,296.0600830227514,0.0,0.0,61.50638191130139,0.0656216669995046 +25,300.42752152616026,0.0,0.0,62.41371578023145,0.0665897090002545 +26,295.4047700896462,0.0,0.0,61.37024087153856,0.065476416999445 +27,298.3017901501356,0.0,0.0,61.972095807286415,0.0661185410026519 +28,297.4477809202034,0.0,0.0,61.794675679197255,0.0659292500022274 +29,298.01661959689955,0.0,0.0,61.91285172149777,0.0660553329980757 +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341 +1,290.22725500807564,0.0,0.0,61.57760130550795,0.0669092079988331 +2,287.38755742396035,0.0,0.0,60.97510184122435,0.0662545419982052 +3,284.85600928125524,0.0,0.0,60.43798253376007,0.0656709169998066 +4,288.39804257958247,0.0,0.0,61.18949677128115,0.0664875000002211 +5,289.7942165918819,0.0,0.0,61.485723418499695,0.0668093749991385 +6,287.9792792941568,0.0,0.0,61.10064764292961,0.0663909579998289 +7,293.9906938530544,0.0,0.0,62.37609122240881,0.0677768339992326 +8,287.754807039453,0.0,0.0,61.05302129920833,0.0663392079986806 +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141 +10,288.1126656850648,0.0,0.0,61.128948272374934,0.0664217089979501 +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543 +12,283.96806213484086,0.0,0.0,60.249586528840595,0.0654662090018973 +13,287.49473153180446,0.0,0.0,60.99784100293028,0.0662792499970237 +14,290.36370810703596,0.0,0.0,61.60655259929476,0.0669406659981177 +15,286.7884182291257,0.0,0.0,60.84798230358821,0.066116416001023 +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447 +17,285.94203855646913,0.0,0.0,60.66840568169417,0.0659212909995403 +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269 +19,287.0410893992396,0.0,0.0,60.90159161941293,0.066174667001178 +20,297.4148868126718,0.0,0.0,63.10260324091163,0.0685662500000034 +21,302.4373178414097,0.0,0.0,64.1682138964768,0.0697241249981743 +22,290.7853645972282,0.0,0.0,61.69601557974508,0.0670378750000963 +23,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381 +24,286.4050846775788,0.0,0.0,60.76665031220264,0.0660280419979244 +25,284.29446863504063,0.0,0.0,60.318840291145825,0.0655414590000873 +26,285.6671457104221,0.0,0.0,60.6100815864084,0.0658579169976292 +27,287.5579915240894,0.0,0.0,61.01126289393568,0.0662938340028631 +28,286.0333109264343,0.0,0.0,60.68777096703847,0.0659423329998389 +29,284.3069393158575,0.0,0.0,60.32148619913034,0.0655443340001511 +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.0686401659986586 +1,397.75286598810527,0.269594419037943,12.435042578125124,70.53263988080185,0.0683966249998775 +2,365.9092588508725,0.2480110201480115,11.439508304327031,64.88588314622352,0.0629208749996905 +3,398.012860314751,0.2697706415757017,12.443170842679242,70.57874410224296,0.0684413329981907 +4,406.01920064322974,0.2751972892608521,12.693474967156805,71.99849080287044,0.0698180840008717 +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.0682153339985234 +6,389.3137678245606,0.2638744507834012,12.171209042384383,69.03615318620736,0.0669454580020101 +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.0680102080004871 +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404 +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956 +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.0672688339982414 +11,398.1340122908051,0.2698527576316564,12.446958445760156,70.60022771538212,0.0684621660002449 +12,372.80412745844734,0.2526843192127068,11.655064223686104,66.10853501402443,0.0641065000017988 +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454 +14,392.7996098404614,0.2662371328241711,12.280187751514893,69.65428987512377,0.067544875000749 +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.0673702909989515 +16,390.4700645317705,0.2646581815008187,12.207358621725266,69.2411967351517,0.0671442919992841 +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.0669481250006356 +18,394.8335415578033,0.2676157190936564,12.3437750431949,70.01496250787785,0.0678946250009175 +19,391.70268238960193,0.2654936422195048,12.24589424737466,69.45977414567795,0.0673562499978288 +20,391.0290628243883,0.26503706706728,12.224834718478292,69.34032267147714,0.0672404159995494 +21,399.5914937296824,0.2708406294872032,12.492524035097247,70.85867968958954,0.0687127909986884 +22,398.602883706492,0.2701705557614111,12.461616884495088,70.68337165107918,0.0685427919997891 +23,385.2929159598488,0.261149142394204,12.04550419293266,68.32314437888363,0.0662540419980359 +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.067253500001243 +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269 +26,384.6154175220648,0.2606899381662728,12.024323397919336,68.20300507275113,0.0661375409981701 +27,394.1247912258336,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858 +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.0678507080010604 +29,396.5473885388564,0.2687773539194146,12.397355449533,70.31887521916686,0.0681893340006354 +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.0660744170018006 +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.0642834580030466 +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.0620629580007516 +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.0629158750016358 +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.0626865000012912 +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.0653167079981358 +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.0633302079986606 +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.0622254999980214 +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872 +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.0600536249985452 +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.0623513749997073 +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.0628564999969967 +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.0647904580000613 +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.0672497919986199 +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.0654726659995503 +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676 +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.0630650829989463 +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.0631177499999466 +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361 +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547 +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.0673107919974427 +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.065431292001449 +22,313.0482616575098,0.8417886858098309,0.0,61.32106811245461,0.0621510420023696 +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.0619104159995913 +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.0631872090016258 +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.0637677079976128 +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.0652594999992288 +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.0675664160007727 +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.0667341249973105 +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.0626280420001421 +0,314.6829641824899,0.0,0.0,64.05854106490267,0.0667974999996658 +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907 +2,310.02771031968734,0.0,0.0,63.11089278177239,0.0658093330021074 +3,314.78759077177864,0.0,0.0,64.07983941095024,0.0668197090017201 +4,311.8347742078282,0.0,0.0,63.47874833628613,0.0661929170018993 +5,311.64849188371505,0.0,0.0,63.44082771373234,0.0661533750026137 +6,315.306780557249,0.0,0.0,64.18552845032812,0.0669299170003796 +7,314.38931348373785,0.0,0.0,63.99876396386509,0.0667351670017524 +8,312.3494508567321,0.0,0.0,63.58351865753504,0.0663021670006855 +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392 +10,314.334543400109,0.0,0.0,63.98761467378393,0.0667235410001012 +11,318.13946192397856,0.0,0.0,64.76216416407206,0.0675312079983996 +12,313.69208088661816,0.0,0.0,63.856831580997095,0.0665871659984986 +13,285.36582773445474,0.0,0.0,58.09058854500483,0.0605743749983958 +14,311.3874224274277,0.0,0.0,63.387683024029094,0.0660979579988634 +15,303.1555450520987,0.0,0.0,61.71195819965332,0.0643505840016587 +16,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163 +17,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255 +18,314.2731072568001,0.0,0.0,63.97510840507234,0.0667104999993171 +19,317.19392672743055,0.0,0.0,64.56968598091483,0.0673305000018444 +20,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844 +21,317.1024579588047,0.0,0.0,64.5510661109565,0.0673110839998116 +22,319.67701426612115,0.0,0.0,65.07515651211497,0.0678575829988403 +23,322.2403866640997,0.0,0.0,65.59697025709202,0.0684017079984187 +24,297.71060994609485,0.0,0.0,60.60355819462029,0.0631947920010134 +25,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223 +26,323.27052670543793,0.0,0.0,65.80667105329528,0.0686203749974083 +27,313.1624892222485,0.0,0.0,63.74902507972117,0.0664747500013618 +28,304.77808852402086,0.0,0.0,62.04225179497307,0.0646950000009383 +29,306.854070382832,0.0,0.0,62.46484972460084,0.0651356670023233 +0,294.47160668958014,0.0,0.0,62.234392802682095,0.067439792001096 +1,258.53801295899865,0.0,0.0,54.64009394249207,0.0592102920018078 +2,287.84062620984656,0.0,0.0,60.832984196664334,0.0659211669990327 +3,284.1358833944333,0.0,0.0,60.0500142451661,0.0650727079992066 +4,289.6685259247307,0.0,0.0,61.219297261407206,0.0663397919997805 +5,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185 +6,288.79942156630415,0.0,0.0,61.035618493063815,0.0661407500010682 +7,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289 +8,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556 +9,286.70698999914885,0.0,0.0,60.59339858083863,0.0656615420011803 +10,286.97661747524285,0.0,0.0,60.65038235067053,0.065723291998438 +11,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184 +12,294.88587239836045,0.0,0.0,62.321944791597936,0.0675346669995633 +13,293.9449008440537,0.0,0.0,62.123077423754864,0.0673191659989242 +14,290.6658900109148,0.0,0.0,61.43008277314009,0.0665682079998077 +15,290.4495723431128,0.0,0.0,61.38436563640324,0.066518666997581 +16,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483 +17,288.1284442887526,0.0,0.0,60.89381241565535,0.0659870830022555 +18,289.94870708075484,0.0,0.0,61.27851147331694,0.0664039589973981 +19,291.0404953723931,0.0,0.0,61.509252841434005,0.0666539999983797 +20,291.41564654265915,0.0,0.0,61.588538262372175,0.0667399169979034 +21,287.7964160316246,0.0,0.0,60.823640702979915,0.0659110419983335 +22,288.7233713242801,0.0,0.0,61.01954583774717,0.0661233329992683 +23,288.51996957968584,0.0,0.0,60.97655838570675,0.0660767499975918 +24,262.07373536090887,0.0,0.0,55.387342681599485,0.0600200420012697 +25,291.0746976794727,0.0,0.0,61.51648124568486,0.0666618329996708 +26,294.25819707384346,0.0,0.0,62.18929026120812,0.0673909170000115 +27,289.8793855364252,0.0,0.0,61.26386087841579,0.0663880829997651 +28,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384 +29,294.18505925226117,0.0,0.0,62.17383312437835,0.067374166999798 +0,304.0021500506418,0.0,0.0,61.69661938658387,0.0663851249992149 +1,305.42786409538843,0.0,0.0,61.9859651585075,0.0666964589981944 +2,290.13486062560406,0.0,0.0,58.882281141154934,0.0633569170022383 +3,303.37572867394005,0.0,0.0,61.56948843949174,0.0662483330015675 +4,308.55938487552186,0.0,0.0,62.621500945477706,0.0673802909986989 +5,272.2552769884333,0.0,0.0,55.253655928243255,0.0594525420019635 +6,304.0319159755279,0.0,0.0,61.70266032063018,0.0663916250014153 +7,301.5311990280158,0.0,0.0,61.195144891286894,0.0658455419979873 +8,303.576648579458,0.0,0.0,61.61026472655373,0.0662922079973213 +9,304.6514683093002,0.0,0.0,61.82839720940037,0.0665269170021929 +10,305.5965360870756,0.0,0.0,62.020196796904024,0.0667332919983891 +11,305.52402631491094,0.0,0.0,62.00548108580032,0.0667174579975835 +12,300.96240445270587,0.0,0.0,61.079709186584786,0.0657213339982263 +13,320.16981350821686,0.0,0.0,64.97781387335388,0.0699156670016236 +14,301.8660655871914,0.0,0.0,61.26310537986669,0.0659186670018243 +15,287.22066306535396,0.0,0.0,58.29085066060698,0.0627205419987149 +16,292.31368435492743,0.0,0.0,59.324468995142574,0.0638327079977898 +17,309.2938015925228,0.0,0.0,62.77054932770923,0.0675406660011503 +18,303.66251638073777,0.0,0.0,61.6276914225565,0.0663109589986561 +19,306.26130972564454,0.0,0.0,62.155111257706984,0.0668784590016002 +20,305.7980284517102,0.0,0.0,62.061089263381945,0.0667772920023708 +21,303.91189522869655,0.0,0.0,61.678302353640426,0.0663654160016449 +22,304.868796110589,0.0,0.0,61.87250344560959,0.0665743749996181 +23,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686 +24,300.68706516189695,0.0,0.0,61.02382963631062,0.065661207998346 +25,307.1498955536229,0.0,0.0,62.33544794812829,0.0670725000018137 +26,305.11646226256136,0.0,0.0,61.92276678851894,0.0666284580001956 +27,314.2194880610785,0.0,0.0,63.77020739992188,0.0686162909987615 +28,310.6552121120229,0.0,0.0,63.04684482968675,0.067837958002201 +29,300.9196606054273,0.0,0.0,61.07103440952738,0.0657119999996211 +0,277.0817190299852,0.0640133346494132,0.0,58.60420787153782,0.0635513330016692 +1,288.5771340743512,0.0666690849195682,0.0,61.03554724386474,0.0661879159997624 +2,284.2115382937321,0.0656605147958258,0.0,60.112201295578544,0.0651866250009334 +3,297.3390372598521,0.0686933203788499,0.0,62.88873480683714,0.068197542001144 +4,291.41856385470135,0.0673255316748761,0.0,61.636524248349104,0.0668396250002842 +5,291.05396160811534,0.0672412987427781,0.0,61.55940899901342,0.0667560000001685 +6,289.502541450472,0.0668828789304544,0.0,61.23127566083103,0.0664001670011202 +7,289.43169196955876,0.0668665107934755,0.0,61.21629063142683,0.066383916997438 +8,290.80853034409404,0.0671845975150962,0.0,61.507499025070594,0.0666997080006694 +9,287.9576568837414,0.0665259690155345,0.0,60.90452463372189,0.0660458330021356 +10,289.9919433911143,0.0669959439508176,0.0,61.33478668697358,0.0665124160004779 +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527 +12,291.42765003308125,0.067327630826633,0.0,61.63844602178257,0.066841709001892 +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.0670270000009622 +14,300.5995644999648,0.0694465899272183,0.0,63.57835307836844,0.0689453749982931 +15,266.9962083179432,0.0616833102270863,0.0,56.471070512897555,0.0612381249993632 +16,291.6814349928997,0.0673862619828808,0.0,61.69212284532741,0.0668999170011375 +17,286.80898867365397,0.0662605957430181,0.0,60.66157540273309,0.0657823750007082 +18,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.0661455829977057 +19,288.819116611153,0.0667249893984412,0.0,61.086727794272974,0.0662434170008055 +20,289.1462928838217,0.0668005759232578,0.0,61.15592725774257,0.066318457997113 +21,289.21804924415596,0.0668171535737913,0.0,61.171104096806005,0.0663349160022335 +22,286.12120386579073,0.0661016989409242,0.0,60.51610538041618,0.0656246250000549 +23,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.0658500409990665 +24,293.57075258583023,0.0678227451971422,0.0,62.09172322798373,0.0673332499973184 +25,290.89918277237905,0.0672055406659071,0.0,61.52667247963799,0.0667204999990644 +26,268.12761977449935,0.0619446967250778,0.0,56.71036985180875,0.0614976249999017 +27,293.55167774327595,0.0678183383951197,0.0,62.08768880073215,0.0673288750003848 +28,292.7548937535296,0.0676342598483376,0.0,61.91916489115313,0.0671461249985441 +29,291.560990905484,0.067358436156979,0.0,61.66664830171436,0.0668722920017899 +0,402.8566838230884,0.0,0.0,64.17794938679597,0.0643441669999447 +1,406.5856091369493,0.0,0.0,64.77199384396874,0.0649397500019404 +2,419.6410268736935,0.0,0.0,66.85181521066646,0.0670249579998198 +3,416.5238481001115,0.0,0.0,66.35522635017634,0.0665270829995279 +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256 +5,408.52624583201094,0.0,0.0,65.08115114132792,0.0652497080009197 +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631 +7,398.433567589202,0.0,0.0,63.47331535392751,0.0636377080008969 +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156 +9,399.1061018410703,0.0,0.0,63.58045486758207,0.0637451250004232 +10,407.1626636492206,0.0,0.0,64.8639227526082,0.065031917001761 +11,403.12407719483,0.0,0.0,64.22054706226494,0.0643868750012188 +12,405.14375858076954,0.0,0.0,64.54229674389913,0.0647094579981057 +13,411.2615056472048,0.0,0.0,65.51689758175769,0.0656865830023889 +14,387.70201403694654,0.0,0.0,61.76370216299734,0.0619236669990641 +15,407.9614565575172,0.0,0.0,64.99117617273937,0.065159500001755 +16,401.69709645656513,0.0,0.0,63.99321883047987,0.0641589580009167 +17,395.9197957340157,0.0,0.0,63.0728535287417,0.0632362090000242 +18,418.61084115270194,0.0,0.0,66.68769926145752,0.0668604169986792 +19,431.31721002849616,0.0,0.0,68.71191464957502,0.0688898750013322 +20,431.41112451451176,0.0,0.0,68.72687589850602,0.0689048749991343 +21,433.23750482741,0.0,0.0,69.01783133747224,0.0691965839978365 +22,422.7931668797661,0.0,0.0,67.35397364539821,0.0675284169992664 +23,418.71727759903746,0.0,0.0,66.70465534817552,0.0668774170007964 +24,414.85347853863453,0.0,0.0,66.08912453908962,0.0662602919983328 +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213 +26,419.92251367752954,0.0,0.0,66.89665807060912,0.0670699170004809 +27,411.78142883652066,0.0,0.0,65.5997250622708,0.0657696250018489 +28,414.074507863208,0.0,0.0,65.96502894234565,0.0661358750003273 +29,411.9209982982526,0.0,0.0,65.62195947517905,0.0657919170007517 +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463 +1,295.9081762405739,0.0,0.0,60.860775024151074,0.0636946249978791 +2,308.44623652276385,0.0,0.0,63.439534677798584,0.0663934590011194 +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023 +4,280.77218532111357,0.0,0.0,57.74768720812555,0.0604365830004098 +5,312.04164307210647,0.0,0.0,64.179018229419,0.067167375000281 +6,301.9526595528672,0.0,0.0,62.10397128753395,0.0649957079986052 +7,311.28555013052846,0.0,0.0,64.02350916914445,0.067004624997935 +8,313.4765936255198,0.0,0.0,64.47415100983623,0.0674762499984353 +9,311.56042418797625,0.0,0.0,64.0800437616753,0.0670637920011358 +10,309.8811870761772,0.0,0.0,63.73466745821582,0.0667023339992738 +11,318.13877646307776,0.0,0.0,65.43304327298002,0.0684797909998451 +12,308.99326684329253,0.0,0.0,63.55204488178166,0.0665112079987011 +13,310.2603949888832,0.0,0.0,63.8126608673733,0.0667839590023504 +14,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439 +15,285.62465270443886,0.0,0.0,58.74571615575587,0.0614810830011265 +16,298.20878469344336,0.0,0.0,61.3339515860414,0.0641898339999897 +17,295.5945893229462,0.0,0.0,60.79627818230397,0.0636271250004938 +18,310.5683652227515,0.0,0.0,63.87600250042894,0.0668502500011527 +19,309.63263576797266,0.0,0.0,63.68354678475968,0.0666488330025458 +20,299.539786989639,0.0,0.0,61.60770485752767,0.0644763339987548 +21,309.8449875242504,0.0,0.0,63.727222132392846,0.0666945419980038 +22,307.9365578666852,0.0,0.0,63.334706759840024,0.0662837499985471 +23,309.15257829195724,0.0,0.0,63.584811189083936,0.0665454999980283 +24,309.6756087808788,0.0,0.0,63.69238523898497,0.0666580830002203 +25,311.4467942171909,0.0,0.0,64.05667297085827,0.0670393330001388 +26,320.30833809941186,0.0,0.0,65.87926684249236,0.0689467920019524 +27,301.0930039690129,0.0,0.0,61.92716202950021,0.0648106660009943 +28,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098 +29,307.7433743808223,0.0,0.0,63.29497383721228,0.0662421669985633 +0,307.3038765802161,0.0341752531784048,0.0,65.54813559618044,0.0683769580027728 +1,306.5168191461492,0.0340877245491713,0.0,65.38025568531074,0.068201832997147 +2,302.24090759958057,0.0336122005782451,0.0,64.46820070907424,0.0672504169997409 +3,303.4871256541917,0.033750792443749,0.0,64.73401990711072,0.0675277080008527 +4,304.6267982623654,0.0338775353939463,0.0,64.97711288558907,0.0677812920002907 +5,302.72534844932665,0.0336660752279055,0.0,64.57153228712284,0.0673582079980406 +6,299.83123330715557,0.0333442207859381,0.0,63.954215467429314,0.0667142499987676 +7,303.47121147155804,0.0337490226280647,0.0,64.73062540062816,0.0675241669996467 +8,268.726454855754,0.0298850594812893,0.0,57.31954408511301,0.05979324999862 +9,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.0687065410020295 +10,323.66148900094566,0.0359943826735927,0.0,69.03722596795083,0.0720166249993781 +11,300.6248433571947,0.0334324781313606,0.0,64.12349305594968,0.066890833000798 +12,299.8791735922619,0.0333495522233387,0.0,63.96444116436369,0.0667249170001014 +13,304.57567604979374,0.0338718500945055,0.0,64.9662084812616,0.0677699170009873 +14,297.66087840557225,0.0331028556945698,0.0,63.491277222185005,0.0662313329994503 +15,298.37977587069827,0.0331828042560829,0.0,63.64461856316718,0.0663912920026632 +16,301.49691869899425,0.0335294615990874,0.0,64.3095073470497,0.0670848750014556 +17,299.4083997940281,0.0332971974859906,0.0,63.86402477813011,0.0666201670028385 +18,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.0666383749994565 +19,295.95793110997283,0.0329134709864293,0.0,63.128037351971514,0.0658524169994052 +20,295.3365950794061,0.0328443722285816,0.0,62.995505934419576,0.0657141660012712 +21,299.7063333060147,0.033330330661256,0.0,63.927574208289165,0.066686458998447 +22,270.8829494812265,0.0301248831718445,0.0,57.77952592359791,0.0602730830032669 +23,301.37520062531866,0.0335159253364455,0.0,64.28354479530263,0.0670577919991046 +24,296.03002353793846,0.0329214883827778,0.0,63.14341471816793,0.065868457997567 +25,297.14348113691625,0.0330453159627353,0.0,63.3809160165264,0.0661162090000289 +26,303.5991091517296,0.033763246124525,0.0,64.75790606683913,0.0675526250015536 +27,302.87515563749326,0.0336827352799703,0.0,64.60348626698311,0.0673915409970504 +28,305.92283069102797,0.0340216671142157,0.0,65.2535575250658,0.068069666998781 +29,290.278120361013,0.032281819435166,0.0,61.91652967664846,0.0645886249985778 +0,293.67115678659405,0.0,0.0,62.04987345007068,0.0673019999994721 +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785 +2,285.0587315110757,0.0,0.0,60.2301513354047,0.0653282499988563 +3,286.6679492796594,0.0,0.0,60.57016347683127,0.0656970420022844 +4,286.0261550443838,0.0,0.0,60.43455856582949,0.0655499589993269 +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652 +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397 +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792 +8,287.5655527060979,0.0,0.0,60.75981839435294,0.0659027500005322 +9,293.549524682601,0.0,0.0,62.024173763581814,0.0672741249982209 +10,289.02568331421605,0.0,0.0,61.0683298615521,0.0662373749983089 +11,288.31625511165714,0.0,0.0,60.91843454778562,0.066074792001018 +12,290.2920010978938,0.0,0.0,61.33589055455497,0.0665275829996971 +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743 +14,287.41810186435026,0.0,0.0,60.72866345843529,0.0658689579977362 +15,292.14320891111277,0.0,0.0,61.72703285057382,0.0669518329996208 +16,292.1922981075429,0.0,0.0,61.737404922722774,0.0669630830016103 +17,288.63587590704464,0.0,0.0,60.985967328746526,0.0661480410017247 +18,295.0554718814619,0.0,0.0,62.34236583301857,0.0676192499995522 +19,264.9125288646573,0.0,0.0,55.97345367946792,0.0607112500001676 +20,293.5444325057386,0.0,0.0,62.02309783588993,0.0672729580001032 +21,287.13229806847863,0.0,0.0,60.66827588221081,0.0658034589978342 +22,287.2797445448048,0.0,0.0,60.69942989575715,0.065837250000186 +23,288.50715313623,0.0,0.0,60.95876945297762,0.0661185409990139 +24,290.43508843893454,0.0,0.0,61.36612352500068,0.0665603749985166 +25,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395 +26,291.1197931641799,0.0,0.0,61.51079500727027,0.0667172920002485 +27,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767 +28,295.1683770157897,0.0,0.0,62.36622159527169,0.0676451250001264 +29,292.2999321462241,0.0,0.0,61.76014695347638,0.0669877500004076 +0,306.0668998752621,0.0,0.0,63.04902793670779,0.068127957998513 +1,300.7286555299586,0.0,0.0,61.9493627426042,0.0669397090023267 +2,300.4778195906402,0.0,0.0,61.89769115658147,0.0668838749988935 +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118 +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179 +5,297.42271046689245,0.0,0.0,61.26834619777878,0.0662038330010545 +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164 +7,297.3940705820903,0.0,0.0,61.262446452011666,0.0661974579998059 +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933 +9,297.44798094483,0.0,0.0,61.273551854026195,0.0662094580002303 +10,298.42342154358175,0.0,0.0,61.47449021615016,0.0664265830018848 +11,300.40818538367824,0.0,0.0,61.88334668136418,0.0668683750009222 +12,287.1913505952546,0.0,0.0,59.16071125051626,0.0639264169985835 +13,300.26405153963907,0.0,0.0,61.85365546430296,0.0668362920005165 +14,299.59316404372277,0.0,0.0,61.71545429165196,0.0666869579981721 +15,298.97750323449446,0.0,0.0,61.58862968050848,0.0665499169990653 +16,296.72543384649464,0.0,0.0,61.12470893044608,0.0660486249980749 +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845 +18,299.21560732706087,0.0,0.0,61.637678537441985,0.0666029169988178 +19,299.2517362517928,0.0,0.0,61.645121006999055,0.0666109589983534 +20,299.28430709765047,0.0,0.0,61.651830521066856,0.0666182089989888 +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801 +22,299.9649209102408,0.0,0.0,61.79203529100965,0.0667697079989011 +23,277.6619440694328,0.0,0.0,57.19767696451,0.0618052499994519 +24,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303 +25,294.287490544277,0.0,0.0,60.622498611616194,0.0655059590026212 +26,297.6716730062533,0.0,0.0,61.31963186802196,0.0662592500011669 +27,300.53416490752846,0.0,0.0,61.90929815315653,0.0668964169999526 +28,298.0200327621039,0.0,0.0,61.39139312017827,0.0663367919987649 +29,302.28587426265807,0.0,0.0,62.27014596817204,0.0672863330000836 +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991 +1,318.08177249086094,0.0,0.0,62.64785256127891,0.0671876249980414 +2,310.1933592166472,0.0,0.0,61.0941887097623,0.0655213749996619 +3,315.03036618576886,0.0,0.0,62.04686228507105,0.0665430840017506 +4,280.5797515507548,0.0,0.0,55.26163529957376,0.0592661659975419 +5,311.7761737775847,0.0,0.0,61.40593223555111,0.0658557089991518 +6,315.1471407328176,0.0,0.0,62.0698616369331,0.0665677500001038 +7,312.72657075974973,0.0,0.0,61.59311784366412,0.0660564589998102 +8,318.0087848553162,0.0,0.0,62.63347726842702,0.0671722080005565 +9,314.2111452727458,0.0,0.0,61.88551248318745,0.0663700419972883 +10,315.1433912094317,0.0,0.0,62.069123148882,0.0665669579975656 +11,321.5192175326141,0.0,0.0,63.324875166116904,0.0679137080005602 +12,314.53405774919537,0.0,0.0,61.94911176791349,0.0664382499999192 +13,316.86685034021673,0.0,0.0,62.40856735115521,0.0669310000012046 +14,313.09228540351353,0.0,0.0,61.665147236931766,0.0661337079982331 +15,289.9330212891863,0.0,0.0,57.10381021877937,0.0612418339987925 +16,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857 +17,320.05180460179605,0.0,0.0,63.03586058909003,0.0676037500015809 +18,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105 +19,308.3140681413278,0.0,0.0,60.7240525988988,0.0651244170003337 +20,318.47412193661944,0.0,0.0,62.7251278167514,0.0672704999997222 +21,314.1099463592385,0.0,0.0,61.86558083302366,0.0663486660014314 +22,313.33807251384695,0.0,0.0,61.71355628133896,0.0661856250007986 +23,319.77228609333065,0.0,0.0,62.98080797111271,0.0675447079993318 +24,319.76577652708306,0.0,0.0,62.97952587832467,0.0675433329997758 +25,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282 +26,316.8561983070633,0.0,0.0,62.40646937805463,0.0669287499986239 +27,316.30781807684326,0.0,0.0,62.29846305143831,0.0668129170007887 +28,298.70140513017805,0.0,0.0,58.83078883113269,0.063093958000536 +29,314.0071803907631,0.0,0.0,61.84534054326751,0.0663269590004347 +0,383.74185203632027,0.0,0.0,62.59426372619671,0.0645047500001965 +1,364.4592504386134,0.0,0.0,59.44897153737439,0.0612634579993027 +2,367.0024684410071,0.0,0.0,59.86380994374133,0.0616909579985076 +3,363.22606038870725,0.0,0.0,59.247819062608514,0.0610561659996164 +4,364.2802852301499,0.0,0.0,59.41977952874429,0.0612333749995741 +5,373.0382773407889,0.0,0.0,60.84834423956817,0.0627055420009128 +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924 +7,362.2655390037368,0.0,0.0,59.091143087427675,0.0608947079999779 +8,363.1591395605432,0.0,0.0,59.23690323483354,0.0610449170017091 +9,363.29274327911173,0.0,0.0,59.258696079034664,0.0610673750015848 +10,385.39643100578286,0.0,0.0,62.86415128685964,0.0647828750006738 +11,389.0226196484065,0.0,0.0,63.45563904617717,0.0653924159996677 +12,370.3688919214851,0.0,0.0,60.41292596544427,0.0622568340004363 +13,361.7680498665672,0.0,0.0,59.009994872585665,0.0608110829998622 +14,361.96288119943176,0.0,0.0,59.0417748928434,0.0608438330018543 +15,366.6343711085224,0.0,0.0,59.80376754444557,0.0616290830002981 +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306 +17,377.4274313949519,0.0,0.0,61.56428352256089,0.0634433330014871 +18,377.1091573073862,0.0,0.0,61.51236806932433,0.0633898329979274 +19,381.72165648548935,0.0,0.0,62.264738415323826,0.0641651670011924 +20,368.2465631130819,0.0,0.0,60.06674113196323,0.0619000830010918 +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972 +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232 +23,392.46761814592367,0.0,0.0,64.01757187509762,0.0659715000001597 +24,412.7283443458175,0.0,0.0,67.32241139758052,0.0693772089980484 +25,410.7339260421147,0.0,0.0,66.99709075658224,0.0690419590027886 +26,401.0741534363522,0.0,0.0,65.42143162320484,0.0674182080001628 +27,375.99669130166257,0.0,0.0,61.3309075635724,0.063202834000549 +28,391.0668672136462,0.0,0.0,63.78908761463861,0.0657360420009354 +29,388.5424838873128,0.0,0.0,63.37732143683954,0.0653117080000811 +0,290.8292506484409,0.0,0.0,60.364491781569754,0.0643369169993093 +1,298.573843284156,0.0,0.0,61.97195869718392,0.066050166999048 +2,297.01505218375894,0.0,0.0,61.64841616368942,0.0657053329996415 +3,294.3421743552695,0.0,0.0,61.09363389419194,0.0651140419977309 +4,296.3946304128305,0.0,0.0,61.519641479544646,0.0655680839990964 +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186 +6,295.0897326586194,0.0,0.0,61.24879702499188,0.0652794159977929 +7,296.7668048214944,0.0,0.0,61.59688996463688,0.0656504159996984 +8,294.83998000542607,0.0,0.0,61.196958387896395,0.0652241659990977 +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097 +10,296.16597000453845,0.0,0.0,61.47218074680768,0.0655175000028975 +11,296.4579116370621,0.0,0.0,61.532776124466146,0.0655820829997537 +12,291.6238980614277,0.0,0.0,60.52942872351605,0.0645127079988014 +13,293.1612172147117,0.0,0.0,60.84851454169682,0.0648527919984189 +14,300.82349771584455,0.0,0.0,62.43889675843551,0.0665478330010955 +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836 +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348 +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185 +18,296.53155816102924,0.0,0.0,61.54806219002126,0.0655983750002633 +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737 +20,295.3240436061412,0.0,0.0,61.29743058311739,0.0653312499998719 +21,296.04222377263164,0.0,0.0,61.44649599060698,0.0654901250018156 +22,295.47999775871773,0.0,0.0,61.3298004122887,0.0653657500006374 +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412 +24,296.91447306566766,0.0,0.0,61.627539971443,0.065683083001204 +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114 +26,294.6706544772291,0.0,0.0,61.1618131972649,0.0651867079977819 +27,297.56861257061263,0.0,0.0,61.763313105273966,0.065827791000629 +28,295.9380689842249,0.0,0.0,61.42487763256778,0.0654670839976461 +29,299.8657403365678,0.0,0.0,62.240104727299766,0.0663359589998435 +0,294.81448863624877,0.0,0.0,61.91171740072288,0.0671278330009954 +1,263.1998512879779,0.0,0.0,55.27257119631946,0.0599293330014916 +2,296.9928397015734,0.0,0.0,62.36917611036704,0.0676238330015621 +3,291.39142074467475,0.0,0.0,61.19286530859214,0.0663484169999719 +4,292.5078607995772,0.0,0.0,61.42732027548915,0.0666026250000868 +5,291.9049011262528,0.0,0.0,61.30069736400479,0.0664653339990763 +6,291.0495909115414,0.0,0.0,61.1210802612358,0.0662705840004491 +7,297.18077517649056,0.0,0.0,62.408642990256375,0.0676666250001289 +8,293.1889644158855,0.0,0.0,61.57035359386013,0.0667577089989208 +9,290.06599953169535,0.0,0.0,60.91452382017178,0.0660466250010358 +10,290.5013403480997,0.0,0.0,61.005946388047946,0.0661457499991229 +11,293.391717947307,0.0,0.0,61.612932299531735,0.0668038749972765 +12,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234 +13,294.85419962422475,0.0,0.0,61.92005679909045,0.0671368750008696 +14,288.935650518899,0.0,0.0,60.6771479402815,0.0657892499984882 +15,288.040264791619,0.0,0.0,60.489114888146126,0.0655853749995003 +16,291.310167374162,0.0,0.0,61.17580191480743,0.0663299160005408 +17,291.8930036442997,0.0,0.0,61.29819886556306,0.0664626249999855 +18,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544 +19,291.953940380838,0.0,0.0,61.31099571971134,0.0664765000001352 +20,290.492192146893,0.0,0.0,61.004025244855654,0.0661436669979593 +21,291.2743036344979,0.0,0.0,61.16827044739114,0.0663217500004975 +22,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666 +23,301.8341063464249,0.0,0.0,63.38585318673492,0.0687261659986688 +24,293.4286796545365,0.0,0.0,61.62069434264986,0.0668122909992234 +25,291.57880285799905,0.0,0.0,61.23221598128041,0.0663910830007807 +26,290.63986327224137,0.0,0.0,61.03503651917635,0.066177290998894 +27,292.83779754454514,0.0,0.0,61.49660774710921,0.0666777500009629 +28,291.7103778938751,0.0,0.0,61.25984703997034,0.0664210420000017 +29,292.0681281288885,0.0,0.0,61.33497540816094,0.0665024999980232 +0,286.58077105611767,0.0,0.0,60.48994734420278,0.0664554579998366 +1,284.29575202691694,0.0,0.0,60.00763766149979,0.0659255829996254 +2,286.7606315278459,0.0,0.0,60.52791133747437,0.0664971659971342 +3,285.07881009993866,0.0,0.0,60.17292140133334,0.0661071670001547 +4,285.97901379987127,0.0,0.0,60.3629316180248,0.0663159159994393 +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403 +6,287.5501581793354,0.0,0.0,60.69456043050126,0.0666802500018093 +7,286.76045473612015,0.0,0.0,60.52787402121571,0.0664971250007511 +8,287.0916105357109,0.0,0.0,60.59777262887927,0.0665739169999142 +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215 +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624 +11,287.78823570039054,0.0,0.0,60.74481256939876,0.0667354580000392 +12,288.3114732547224,0.0,0.0,60.85525477385442,0.0668567920001805 +13,287.04471347517006,0.0,0.0,60.58787384637458,0.0665630420007801 +14,284.5945650282986,0.0,0.0,60.070709523065126,0.0659948749998875 +15,284.649724611494,0.0,0.0,60.08235231497584,0.066007666002406 +16,296.0487686832776,0.0,0.0,62.48840200608166,0.0686509999977715 +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049 +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078 +19,282.8897370651235,0.0,0.0,59.71086348962979,0.0655995409979368 +20,286.2961587022398,0.0,0.0,60.429872879903805,0.0663894589997653 +21,260.0656021616251,0.0,0.0,54.893266295646235,0.0603068330019596 +22,283.4221384206483,0.0,0.0,59.82323994057936,0.0657229999997071 +23,271.9089975438187,0.0,0.0,57.39310730174492,0.0630532079994736 +24,286.22194706122224,0.0,0.0,60.41420868079884,0.0663722499994037 +25,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015 +26,288.2345706895805,0.0,0.0,60.83902258877472,0.066838958999142 +27,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547 +28,286.87814802674137,0.0,0.0,60.55271609602139,0.0665244169977086 +29,283.17741121511045,0.0,0.0,59.771584221592626,0.065666250000504 +0,294.3279990372017,0.0666126511343672,0.0,61.28363904361788,0.0662047499972686 +1,293.0398507223221,0.0663211159267448,0.0,61.01542665260526,0.0659149999992223 +2,295.58817487391934,0.0668978555785717,0.0,61.54602713228603,0.0664882079981907 +3,295.0835897351759,0.066783657289844,0.0,61.44096470665652,0.0663747090002289 +4,294.112381481635,0.0665638523212934,0.0,61.238744135589954,0.0661562500026775 +5,294.789060556393,0.0667169991074783,0.0,61.37963917888006,0.0663084589978098 +6,294.5386151968499,0.0666603180257666,0.0,61.32749258370531,0.0662521250014833 +7,292.0345615545926,0.0660935977265118,0.0,60.806109908390894,0.0656888750017969 +8,295.10748548573775,0.0667890654035844,0.0,61.44594017129767,0.066380083997501 +9,298.56736520414785,0.0675721093593182,0.0,62.166340610572824,0.0671583330004068 +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.0666939999973692 +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.0664290829990932 +12,294.3600482591372,0.066619904551123,0.0,61.290312187033216,0.0662119589978829 +13,292.5965765500129,0.0662207936064304,0.0,60.92313011791601,0.0658152920004795 +14,296.05627397750055,0.0670037963058731,0.0,61.64349260140331,0.0665934999997261 +15,328.7910592886891,0.0744123705530585,0.0,68.45938090881384,0.0739567080017877 +16,277.83269848101855,0.0628794157476561,0.0,57.849062487843625,0.0624943749971862 +17,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.0674349580003763 +18,295.0785838430391,0.0667825243505803,0.0,61.43992240253389,0.0663735829984943 +19,293.1674829950254,0.0663500018094433,0.0,61.042001664687874,0.0659437089998391 +20,292.4674638570015,0.0661915726733057,0.0,60.8962468594413,0.0657862500011106 +21,294.72663371914854,0.0667028705939003,0.0,61.36664094638829,0.0662944169998809 +22,294.5726961110385,0.066668031257449,0.0,61.3345887568531,0.0662597910013573 +23,292.5643406218039,0.0662134979340961,0.0,60.91641809936848,0.0658080410030379 +24,295.7811948568304,0.0669415400830214,0.0,61.58621687637975,0.0665316250015166 +25,298.4484465539857,0.0675451955536914,0.0,62.14157990939614,0.0671315840008901 +26,300.4471681677118,0.067997548527263,0.0,62.55774464508201,0.0675811670007533 +27,268.4016522482285,0.0607449705212693,0.0,55.88537287956778,0.0603730000002542 +28,293.7845093668818,0.0664896479273241,0.0,61.17047609313823,0.0660824999977194 +29,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178 +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.0670402079995255 +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.0656716659977973 +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.0659436669993738 +3,298.06491667401536,0.7076724986042197,0.0,63.11764713741445,0.0662419580003188 +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.0680570420008734 +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566 +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484 +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987 +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.0652717080010916 +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.0657346249972761 +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.0652146250031364 +11,299.57754690862345,0.7112638196812994,0.0,63.43795877443208,0.0665781249990686 +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.0657091670000227 +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.0662325840021367 +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.0625667919994157 +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462 +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.0657192079997912 +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.0652280419999442 +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.0655310830006783 +19,295.06703650881764,0.7005548633900702,0.0,62.48282186331435,0.0655757090025872 +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.0662343750009313 +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.0647040420008124 +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.0638219169995863 +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051 +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.0650090830022236 +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.0664734580022923 +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.0635219579999102 +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474 +28,296.9865061319233,0.7051121117886252,0.0,62.88928501809976,0.06600229200194 +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.0648245409975061 +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.0674112920023617 +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.0708057499978167 +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.0681188330017903 +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.0692457080003805 +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.0679880419993423 +5,404.8936371581969,1.612985331957557,11.290897323702897,72.24115156958844,0.070075582996651 +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.0647352500018314 +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.0662939590001769 +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.0675850420011556 +9,386.0565356160226,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909 +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.0684275000021443 +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.0697700000018812 +12,398.195304750097,1.586301010616593,11.104107074316149,71.046034624424,0.068916291998903 +13,393.1222593641649,1.5660913875331202,10.96263971273184,70.14090150547273,0.0680382919999829 +14,400.10034307722657,1.5938901614366543,11.157231130056582,71.38593169838633,0.0692459999991115 +15,396.1694089205137,1.5782303966150315,11.047612776305222,70.68457414626897,0.0685656669993477 +16,400.56234267245264,1.595730641261678,11.170114488831745,71.46836169906025,0.0693259590007073 +17,391.1936238724376,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276 +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.0678528750031546 +19,390.2371352451378,1.554597843407482,10.882184903852377,69.62613745473936,0.0675389589996484 +20,399.1241054106431,1.5900010980081565,11.130007686057096,71.21175130440785,0.0690770410001277 +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.0679149580028024 +22,388.3292021584939,1.5469971606585198,10.828980124609638,69.28572389757838,0.0672087499988265 +23,392.8437098823672,1.5649817227048024,10.954872058933615,70.09120268709806,0.0679900830000406 +24,401.12472845982575,1.597971032175946,11.18579722523162,71.5687026112844,0.0694232919995556 +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019 +26,387.2337999468269,1.5426333783269082,10.798433648288356,69.09028215698174,0.0670191670033091 +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.0678187920020718 +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.065910666999116 +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.0686019579989078 +0,420.8661640891317,0.3104241498772484,10.623404240243612,71.60450390501863,0.0698542089994589 +1,414.7342996681472,0.3059013847740801,10.468625167824074,70.56125275455447,0.0688364589987031 +2,408.0288084577771,0.3009555217275851,10.299366743566248,69.42040701182964,0.0677235000002838 +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.0672056660005182 +4,376.92038266158966,0.2780104445135475,9.514135212241404,64.12774253445829,0.0625602090003667 +5,393.8408701476979,0.2904907253998756,9.941238158129076,67.0065273255713,0.0653686250007012 +6,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695 +7,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +8,415.36741054416126,0.3063683572281143,10.484606002917692,70.66896773395172,0.0689415410015499 +9,413.5893054085112,0.3050568553250778,10.43972349334711,70.3664479616513,0.0686464159989554 +10,415.22381858036624,0.3062624460927139,10.480981488506211,70.64453756538603,0.0689177080021181 +11,408.53514892789457,0.3013289903582241,10.312147670037003,69.50655377596371,0.0678075409996381 +12,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +13,401.6223100288431,0.2962301909735771,10.137655424429084,68.33043071790512,0.066660167001828 +14,406.60442049183155,0.2999049159503756,10.263412679190637,69.17806727921999,0.0674870840011863 +15,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.0673156250013562 +16,409.57821959330414,0.3020983425946351,10.338476613238624,69.68401769182915,0.0679806670013931 +17,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.0697001250009634 +18,402.4366746389332,0.2968308532822815,10.158211423438075,68.46898349044626,0.0667953330012096 +19,401.3386386128404,0.2960209594751322,10.130495057593414,68.28216798559717,0.0666130839999823 +20,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.0668373749977035 +21,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.0695724580000387 +22,387.29202689790424,0.2856604033831452,9.775933804667638,65.8923330470455,0.0642816660001699 +23,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.0681323340031667 +24,407.4549346245413,0.3005322415686667,10.284881155905484,69.32277038850579,0.0676282499989611 +25,408.27633635683975,0.3011380943461365,10.305614784290006,69.46252042917548,0.0677645840005425 +26,417.85495624498935,0.3082031311428376,10.547396043554889,71.09218891694786,0.0693544169989763 +27,406.94080393314306,0.3001530269954341,10.271903590510414,69.23529822694681,0.0675429160000931 +28,390.6549455763897,0.2881408384025166,9.860819803108344,66.46448672484716,0.0648398339981213 +29,401.5595483973625,0.2961838989982185,10.136071210161257,68.31975270225574,0.0666497499987599 +0,277.4237413479984,0.0,0.0,58.43349005665485,0.0632725420000497 +1,292.6972536911697,0.0,0.0,61.650534954464696,0.0667560000001685 +2,291.40709000891684,0.0,0.0,61.37878904572572,0.0664617500005988 +3,289.27526607180926,0.0,0.0,60.929765064482325,0.065975541001535 +4,293.90739872205074,0.0,0.0,61.90542661328777,0.0670319999990169 +5,254.53182670092016,0.0,0.0,53.61178856705561,0.058051541000168 +6,290.4961927970452,0.0,0.0,61.18692766099379,0.0662540000012086 +7,292.38028776435414,0.0,0.0,61.58377273273529,0.066683708999335 +8,289.7393040716505,0.0,0.0,61.02750493244705,0.066081375000067 +9,290.32610603159867,0.0,0.0,61.15110245270702,0.0662152080003579 +10,291.71309885989376,0.0,0.0,61.44324338933713,0.0665315420010301 +11,294.01993782201987,0.0,0.0,61.92913061333867,0.0670576669981528 +12,289.9026298051295,0.0,0.0,61.06190607121357,0.0661186249999445 +13,288.43671886620615,0.0,0.0,60.75314269048304,0.0657842920008988 +14,291.84774065261695,0.0,0.0,61.47160285784574,0.0665622500018798 +15,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555 +16,308.0001822067488,0.0,0.0,64.87377575176583,0.0702461670007323 +17,297.17117303800103,0.0,0.0,62.59287219062579,0.0677763749990845 +18,290.83837006338433,0.0,0.0,61.25900012239558,0.0663320409985317 +19,297.87343862204426,0.0,0.0,62.74078970057979,0.0679365420000976 +20,292.22755518415335,0.0,0.0,61.55160281943542,0.0666488749993732 +21,289.24202214867086,0.0,0.0,60.922762929615594,0.0659679589989536 +22,290.14122568247194,0.0,0.0,61.11216128642516,0.0661730419997184 +23,291.32615497134736,0.0,0.0,61.3617417782854,0.066443290997995 +24,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187 +25,291.91150125700455,0.0,0.0,61.48503269129974,0.066576791999978 +26,294.6469332621997,0.0,0.0,62.06119404684761,0.0672006669992697 +27,298.06946458808636,0.0,0.0,62.782078457201386,0.0679812500020489 +28,274.1955917727861,0.0,0.0,57.75354808345529,0.0625362920000043 +29,288.7392551319019,0.0,0.0,60.81686560686869,0.0658532920024299 +0,297.8349870577906,0.0,0.0,62.26538914028103,0.0661593750010069 +1,297.48685086603774,0.0,0.0,62.192607780147874,0.0660820420016534 +2,295.90878769905953,0.0,0.0,61.86269785871619,0.0657314999989466 +3,268.1761314081655,0.0,0.0,56.064908106395634,0.0595711250025488 +4,300.2289979376498,0.0,0.0,62.76588110904888,0.0666911670014087 +5,297.55137488588906,0.0,0.0,62.20609717319946,0.0660963750015071 +6,295.72984193562934,0.0,0.0,61.82528745336033,0.0656917500018607 +7,296.86091429487476,0.0,0.0,62.06174946640304,0.0659430000014253 +8,297.5283032487058,0.0,0.0,62.201273816207355,0.0660912499988626 +9,297.3067796489023,0.0,0.0,62.15496208741491,0.0660420420026639 +10,294.7674017488792,0.0,0.0,61.624079686119025,0.0654779589967802 +11,294.9677264979095,0.0,0.0,61.665959582688664,0.0655224580004869 +12,291.51804808384634,0.0,0.0,60.94476973530921,0.064756166000734 +13,298.35756724728503,0.0,0.0,62.3746397665332,0.0662754580007458 +14,290.0624738641291,0.0,0.0,60.640467355966294,0.0644328329981362 +15,292.77630024929647,0.0,0.0,61.2078199615177,0.0650356670012115 +16,297.2189949149903,0.0,0.0,62.13660980895493,0.0660225419997004 +17,294.33335357686957,0.0,0.0,61.533337565447475,0.0653815419973398 +18,295.53495085809004,0.0,0.0,61.78454352027568,0.0656484580031246 +19,292.72958977705207,0.0,0.0,61.19805466913229,0.0650252910018025 +20,295.4385362100208,0.0,0.0,61.76438707176652,0.0656270409999706 +21,295.95718184808175,0.0,0.0,61.872815140606896,0.0657422500007669 +22,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504 +23,297.1503427630479,0.0,0.0,62.12225738851488,0.0660072919999947 +24,298.31724030194476,0.0,0.0,62.36620901442696,0.0662665000018023 +25,299.6462019297127,0.0,0.0,62.64404176242917,0.0665617080012452 +26,273.66342822977543,0.0,0.0,57.212082504209,0.0607900420000078 +27,295.93523566460374,0.0,0.0,61.8682270709919,0.065737375000026 +28,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278 +29,296.78419945940794,0.0,0.0,62.04571146116275,0.065925959002925 +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777 +1,290.6954782073229,0.0,0.0,60.92238606686448,0.0665466250029567 +2,291.28719908778197,0.0,0.0,61.046395728609,0.0666820830010692 +3,283.328160416027,0.0,0.0,59.378383451046346,0.0648600829990755 +4,288.3902924835214,0.0,0.0,60.43927771069976,0.0660189170012017 +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556 +6,291.3215994250469,0.0,0.0,61.053605165235275,0.0666899579991877 +7,291.49342205874245,0.0,0.0,61.08961482348515,0.066729292000673 +8,288.8664369502698,0.0,0.0,60.53906549276548,0.0661279170017223 +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085 +10,288.4387063150821,0.0,0.0,60.44942401966714,0.0660299999981361 +11,286.7470829842217,0.0,0.0,60.0949027513009,0.0656427499998244 +12,287.64586027491015,0.0,0.0,60.28326363475572,0.0658485000021755 +13,288.1433001809692,0.0,0.0,60.387514399813654,0.065962374999799 +14,287.9949615223732,0.0,0.0,60.3564263860497,0.0659284169996681 +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948 +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169 +17,289.2799662185982,0.0,0.0,60.62573072020697,0.0662225829983071 +18,261.67377851069205,0.0,0.0,54.840175211235795,0.0599029159966448 +19,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857 +20,292.3219396351502,0.0,0.0,61.26325105602778,0.0669189580003148 +21,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514 +22,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968 +23,291.10992044223104,0.0,0.0,61.00924262890388,0.066641499997786 +24,289.47799864820206,0.0,0.0,60.66723328572497,0.0662679170018236 +25,289.12507512691684,0.0,0.0,60.593269482956494,0.0661871250013064 +26,289.32820096574676,0.0,0.0,60.63583949763187,0.0662336249988584 +27,292.50923477110916,0.0,0.0,61.30250335761741,0.0669618339998123 +28,289.02405823299785,0.0,0.0,60.572098908689014,0.0661639999998442 +29,263.541225849374,0.0,0.0,55.231544724199395,0.0603304159994877 +0,313.9495430059727,0.0,0.0,64.80389868724639,0.0682134160015266 +1,308.3794199438781,0.0,0.0,63.65414166853778,0.0670031669978925 +2,305.034770594531,0.0,0.0,62.96375583295359,0.0662764580010843 +3,308.9656537375239,0.0,0.0,63.77514912408851,0.0671305409996421 +4,308.0823679620422,0.0,0.0,63.592825680142255,0.0669386250010575 +5,309.16222020810307,0.0,0.0,63.81572339447207,0.0671732499977224 +6,305.2121586167888,0.0,0.0,63.00037138369676,0.0663150000000314 +7,305.6986801043409,0.0,0.0,63.100796722388495,0.0664207090012496 +8,307.5666990894399,0.0,0.0,63.48638388361557,0.0668265829990559 +9,305.4478414091471,0.0,0.0,63.04901985010978,0.0663662080005451 +10,304.1035409753827,0.0,0.0,62.77153605994154,0.0660741249994316 +11,309.41132839650345,0.0,0.0,63.86714306417025,0.0672273750024032 +12,308.8985360500407,0.0,0.0,63.76129502582119,0.0671159579978848 +13,307.0985920540554,0.0,0.0,63.38975956428898,0.066724874999636 +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564 +15,282.07808492211666,0.0,0.0,58.22515128438192,0.0612885419977828 +16,307.8050697237094,0.0,0.0,63.53558716094896,0.0668783750006696 +17,307.06369159998235,0.0,0.0,63.38255558664265,0.0667172920002485 +18,306.8525537307586,0.0,0.0,63.338973560833,0.0666714170001796 +19,308.0434357367305,0.0,0.0,63.584789484387315,0.0669301659982011 +20,307.850325708721,0.0,0.0,63.54492867563824,0.0668882079989998 +21,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821 +22,307.0828700483037,0.0,0.0,63.38651430628306,0.0667214589993818 +23,304.66063198848303,0.0,0.0,62.886528008096214,0.066195167000842 +24,309.76916966813064,0.0,0.0,63.94100687454759,0.0673051249978016 +25,310.62733522529624,0.0,0.0,64.11814512832865,0.0674915829986275 +26,284.30241259877437,0.0,0.0,58.6842859084531,0.0617718329995113 +27,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051 +28,305.0623853492818,0.0,0.0,62.96945593288687,0.0662824579994776 +29,302.2746382953192,0.0,0.0,62.3940230912878,0.0656767500004207 +0,290.8686257733098,0.0,0.0,61.83024365562761,0.0671084160021564 +1,288.43744237162144,0.0,0.0,61.31344449346887,0.0665474999987054 +2,286.20184035980265,0.0,0.0,60.83822026899203,0.0660317080000822 +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035 +4,285.997408337104,0.0,0.0,60.79476394316497,0.065984542001388 +5,287.0887483871877,0.0,0.0,61.02675122274326,0.066236333001143 +6,290.61850144546,0.0,0.0,61.777074469387486,0.0670507079994422 +7,288.4390677341846,0.0,0.0,61.313789998464614,0.0665478749979229 +8,262.4570511731341,0.0,0.0,55.79076595156614,0.0605533750022004 +9,287.0845961195109,0.0,0.0,61.02586857092235,0.0662353750012698 +10,289.1576572076416,0.0,0.0,61.46654130367703,0.0667136660013056 +11,287.9375491452288,0.0,0.0,61.20718167496282,0.0664321659969573 +12,287.8124003118045,0.0,0.0,61.18057865841791,0.0664032919994497 +13,291.3011551411478,0.0,0.0,61.922186869271,0.0672082079981919 +14,290.86863009377606,0.0,0.0,61.83024457403358,0.0671084169989626 +15,291.96195960819887,0.0,0.0,62.06265475609747,0.0673606670025037 +16,288.20917165594705,0.0,0.0,61.264920752099144,0.0664948340017872 +17,288.4121603590863,0.0,0.0,61.30807026999944,0.0665416670017293 +18,291.91970008694614,0.0,0.0,62.05367160609675,0.067350917001022 +19,289.8069063826763,0.0,0.0,61.604552870166486,0.0668634590001602 +20,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013 +21,288.0397695006966,0.0,0.0,61.22891076131008,0.0664557499985676 +22,286.4039275203915,0.0,0.0,60.881178145062925,0.0660783329985861 +23,286.55978061458836,0.0,0.0,60.91430799797523,0.0661142909993941 +24,288.72260523938814,0.0,0.0,61.374061858262614,0.0666132919977826 +25,289.4366783433925,0.0,0.0,61.52585311416426,0.0667780409967235 +26,279.95357387673477,0.0,0.0,59.51001982095035,0.0645901249990856 +27,286.3918304829023,0.0,0.0,60.87860666533224,0.0660755420030909 +28,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207 +29,287.6597979585023,0.0,0.0,61.14813981884897,0.0663680840007145 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..5292570f1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989 +1,1672.6596167167916,1.2258528268930255,0.0,466.58609084147236,0.5084176670025045 +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325 +3,1688.6244236034295,1.237553057745254,0.0,471.0394516817949,0.5132702920018346 +4,1677.695815207165,1.2295437381187875,0.0,467.9909314574833,0.5099484580023272 +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074 +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681 +7,1682.5739653539526,1.2331188194369973,0.0,469.35168470624956,0.5114312090008752 +8,1682.5384603989162,1.2330927986919125,0.0,469.34178064805957,0.5114204169985896 +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372 +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728 +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108 +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387 +13,1688.8170195135012,1.2376942067503773,0.0,471.0931760450152,0.5133288329998322 +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376 +15,1680.177795933706,1.2313627233202695,0.0,468.68327655457716,0.5107028750026075 +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091 +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639 +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985 +19,1676.2396122854952,1.2284765213041897,0.0,467.5847256628893,0.5095058340011747 +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945 +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434 +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412 +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696 +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816 +25,1681.8361980700217,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372 +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078 +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441 +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516 +29,1685.436887323359,1.2352169875007781,0.0,470.1502928371205,0.5123014160017192 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5a7f28f9b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,238.41283703560313,0.06950811575382015,0.0,61.79271490514612,0.0831266669993056 +1,234.37913907907773,0.06833211051868156,0.0,60.7472462511079,0.08172025000021677 +2,229.3925259214554,0.06687828744065755,0.0,59.45479753474456,0.07998158300324576 +3,221.67814600297828,0.06462919708541641,0.0,57.455356208935186,0.0772918340007891 +4,231.88045343062754,0.06760363073779228,0.0,60.09962772589734,0.08084904099814594 +5,229.33420950258338,0.0668612855692663,0.0,59.439682871077736,0.07996124999772292 +6,223.15663158869825,0.06506024244568462,0.0,57.838555534213626,0.07780733300023712 +7,235.0478747510722,0.06852707718690151,0.0,60.920571619155446,0.08195341600003303 +8,231.31150354907646,0.06743775613675698,0.0,59.95216520557696,0.08065066700146417 +9,229.6267523252653,0.06694657502194323,0.0,59.51550519450753,0.08006324999951175 +10,232.2332285257856,0.06770648061976256,0.0,60.191061270968916,0.08097204200021224 +11,230.43757777224494,0.06718296728053788,0.0,59.72565791239818,0.08034595800199895 +12,231.26095387219027,0.06742301862162982,0.0,59.93906355462891,0.08063304200186394 +13,226.71506792763714,0.06609768744245981,0.0,58.76084413634677,0.07904804200006765 +14,229.0763215445606,0.06678609957567365,0.0,59.37284252277387,0.07987133300048299 +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.07923412499803817 +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.08065791699846159 +17,230.38954052142446,0.06716896225114416,0.0,59.71320744126716,0.08032920900222962 +18,227.8955154857735,0.06644184124949665,0.0,59.06679687080252,0.0794596250016184 +19,221.77446141446887,0.06465727738031163,0.0,57.480319591097036,0.07732541599762044 +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.07970487500278978 +21,228.23203436741102,0.06653995171061546,0.0,59.15401707073714,0.07957695799996145 +22,215.52590171771973,0.06283553985939351,0.0,55.86079493500083,0.075146750001295 +23,236.72832386273487,0.06901700404161366,0.0,61.356116592994546,0.08253933299783967 +24,220.5298408730013,0.06429441424868843,0.0,57.15773426708401,0.07689145800031838 +25,228.89658839783274,0.06673369924135066,0.0,59.32625862556073,0.07980866599973524 +26,229.44773620070686,0.0668943837319845,0.0,59.46910713773422,0.08000083300066763 +27,229.6753890074541,0.06696075481266883,0.0,59.52811102846259,0.08008020800116356 +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.07996800000182702 +29,220.42790404735163,0.06426469505753692,0.0,57.13131390615032,0.07685591600238695 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..45db49850 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fefb108c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..14295b6d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..80953251b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..63a151fd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fa9d3c362 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..191a0f272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b796beaba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a6298a5d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..16326ace1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ffd4ee60a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2b8159156 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5aff77229 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..52a3ddfac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1b7879c20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a9a377465 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..bead7ae40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..5292570f1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989 +1,1672.6596167167916,1.2258528268930255,0.0,466.58609084147236,0.5084176670025045 +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325 +3,1688.6244236034295,1.237553057745254,0.0,471.0394516817949,0.5132702920018346 +4,1677.695815207165,1.2295437381187875,0.0,467.9909314574833,0.5099484580023272 +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074 +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681 +7,1682.5739653539526,1.2331188194369973,0.0,469.35168470624956,0.5114312090008752 +8,1682.5384603989162,1.2330927986919125,0.0,469.34178064805957,0.5114204169985896 +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372 +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728 +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108 +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387 +13,1688.8170195135012,1.2376942067503773,0.0,471.0931760450152,0.5133288329998322 +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376 +15,1680.177795933706,1.2313627233202695,0.0,468.68327655457716,0.5107028750026075 +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091 +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639 +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985 +19,1676.2396122854952,1.2284765213041897,0.0,467.5847256628893,0.5095058340011747 +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945 +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434 +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412 +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696 +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816 +25,1681.8361980700217,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372 +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078 +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441 +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516 +29,1685.436887323359,1.2352169875007781,0.0,470.1502928371205,0.5123014160017192 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..5a7f28f9b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,238.41283703560313,0.06950811575382015,0.0,61.79271490514612,0.0831266669993056 +1,234.37913907907773,0.06833211051868156,0.0,60.7472462511079,0.08172025000021677 +2,229.3925259214554,0.06687828744065755,0.0,59.45479753474456,0.07998158300324576 +3,221.67814600297828,0.06462919708541641,0.0,57.455356208935186,0.0772918340007891 +4,231.88045343062754,0.06760363073779228,0.0,60.09962772589734,0.08084904099814594 +5,229.33420950258338,0.0668612855692663,0.0,59.439682871077736,0.07996124999772292 +6,223.15663158869825,0.06506024244568462,0.0,57.838555534213626,0.07780733300023712 +7,235.0478747510722,0.06852707718690151,0.0,60.920571619155446,0.08195341600003303 +8,231.31150354907646,0.06743775613675698,0.0,59.95216520557696,0.08065066700146417 +9,229.6267523252653,0.06694657502194323,0.0,59.51550519450753,0.08006324999951175 +10,232.2332285257856,0.06770648061976256,0.0,60.191061270968916,0.08097204200021224 +11,230.43757777224494,0.06718296728053788,0.0,59.72565791239818,0.08034595800199895 +12,231.26095387219027,0.06742301862162982,0.0,59.93906355462891,0.08063304200186394 +13,226.71506792763714,0.06609768744245981,0.0,58.76084413634677,0.07904804200006765 +14,229.0763215445606,0.06678609957567365,0.0,59.37284252277387,0.07987133300048299 +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.07923412499803817 +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.08065791699846159 +17,230.38954052142446,0.06716896225114416,0.0,59.71320744126716,0.08032920900222962 +18,227.8955154857735,0.06644184124949665,0.0,59.06679687080252,0.0794596250016184 +19,221.77446141446887,0.06465727738031163,0.0,57.480319591097036,0.07732541599762044 +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.07970487500278978 +21,228.23203436741102,0.06653995171061546,0.0,59.15401707073714,0.07957695799996145 +22,215.52590171771973,0.06283553985939351,0.0,55.86079493500083,0.075146750001295 +23,236.72832386273487,0.06901700404161366,0.0,61.356116592994546,0.08253933299783967 +24,220.5298408730013,0.06429441424868843,0.0,57.15773426708401,0.07689145800031838 +25,228.89658839783274,0.06673369924135066,0.0,59.32625862556073,0.07980866599973524 +26,229.44773620070686,0.0668943837319845,0.0,59.46910713773422,0.08000083300066763 +27,229.6753890074541,0.06696075481266883,0.0,59.52811102846259,0.08008020800116356 +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.07996800000182702 +29,220.42790404735163,0.06426469505753692,0.0,57.13131390615032,0.07685591600238695 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..45db49850 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fefb108c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..14295b6d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..80953251b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..63a151fd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fa9d3c362 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..191a0f272 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b796beaba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a6298a5d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..16326ace1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ffd4ee60a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2b8159156 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5aff77229 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..52a3ddfac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1b7879c20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a9a377465 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..bead7ae40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..64b1eaede --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1691.7368270144955,0.9352332949595425,0.0,471.9254008744063,0.5151577079996059 +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978 +2,1691.7194485071643,0.9352236876976959,0.0,471.9205529814552,0.5151524159991823 +3,1689.084378366222,0.933766956786002,0.0,471.18547615819364,0.5143500000012864 +4,1693.5933387749658,0.9362596198483493,0.0,472.4432917441903,0.515723041997262 +5,1693.8493466310365,0.9364011472224333,0.0,472.51470746806285,0.5158009999977367 +6,1686.4976048238766,0.9323369254095549,0.0,470.46387211112864,0.5135622909983795 +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559 +8,1688.5101028010363,0.9334494832756621,0.0,471.02527675720825,0.5141751249975641 +9,1699.7612240655442,0.9396693769637157,0.0,474.1638795400121,0.5176012500014622 +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392 +11,1692.3669292188633,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073 +12,1689.6277292335435,0.9340673343706533,0.0,471.33704883296286,0.5145154579986411 +13,1697.3383739763037,0.9383299664620526,0.0,473.488003433655,0.5168634580004436 +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696 +15,1694.925927355849,0.9369963072511553,0.0,472.8150294696991,0.516128834002302 +16,1671.3650310525807,0.923971270300939,0.0,466.2425027886417,0.5089542089990573 +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399 +18,1690.4551425000311,0.9345247485636611,0.0,471.56786330199884,0.5147674170002574 +19,1684.2683714061359,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615 +20,1696.6806343047017,0.937966351962164,0.0,473.30452095976483,0.5166631669999333 +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752 +22,1680.6578390184325,0.9291085607320205,0.0,468.8348162350971,0.5117840000020806 +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838 +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711 +25,1690.4400890135125,0.9345164266299109,0.0,471.56366399478605,0.5147628330014413 +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478 +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382 +28,1682.6264145623704,0.930196837207968,0.0,469.38396831826356,0.5123834590012848 +29,1679.3658889613605,0.9283943392943215,0.0,468.4744149960525,0.5113905830003205 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9364d8081 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987 +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.07734687499760184 +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888 +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.08058775000245078 +4,230.54885931749521,0.8730367524402673,0.0,57.25106395810215,0.07994533400051296 +5,231.88767512675338,0.8781065472320985,0.0,57.58352550118184,0.08040958299898193 +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.07360841600166168 +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.08004708400039817 +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.07995341700006975 +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.07993604199873516 +10,233.56486529403693,0.8844576897239966,0.0,58.00001388382362,0.08099116700032027 +11,240.11716945213138,0.909269794022053,0.0,59.62711533875386,0.08326325000234647 +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.07599620899782167 +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.08028929200008861 +14,218.27767539201486,0.8265685348372249,0.0,54.20382122682572,0.07569016700290376 +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.08031716700133984 +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995004 +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.07991479100019205 +18,230.85646606210258,0.874201590098262,0.0,57.32745042759757,0.08005199999752222 +19,232.30835402622398,0.8796995637462603,0.0,57.6879906225913,0.08055545800016262 +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418 +21,229.6469381758771,0.869621379634839,0.0,57.027094318361556,0.07963258299787412 +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.07635025000126916 +23,225.7957025466795,0.8550376152364794,0.0,56.070735922238356,0.07829712499733432 +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.08066150000013295 +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.07891833399844472 +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.08037700000204495 +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.07724491699991631 +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.07938450000074226 +29,229.30784864573525,0.8683373237385839,0.0,56.942889883626364,0.07951500000126543 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f02883f6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6b896563c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..73a018791 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9765b9d4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..df65c3335 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b26aca48d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..76a283dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a0bee643f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d2d7a2742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f024ded0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2eeef0c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4fac301b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2d290a83d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..42f13e7c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e2acdcf74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..989c1c51b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..74a35e530 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..64b1eaede --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1691.7368270144955,0.9352332949595425,0.0,471.9254008744063,0.5151577079996059 +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978 +2,1691.7194485071643,0.9352236876976959,0.0,471.9205529814552,0.5151524159991823 +3,1689.084378366222,0.933766956786002,0.0,471.18547615819364,0.5143500000012864 +4,1693.5933387749658,0.9362596198483493,0.0,472.4432917441903,0.515723041997262 +5,1693.8493466310365,0.9364011472224333,0.0,472.51470746806285,0.5158009999977367 +6,1686.4976048238766,0.9323369254095549,0.0,470.46387211112864,0.5135622909983795 +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559 +8,1688.5101028010363,0.9334494832756621,0.0,471.02527675720825,0.5141751249975641 +9,1699.7612240655442,0.9396693769637157,0.0,474.1638795400121,0.5176012500014622 +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392 +11,1692.3669292188633,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073 +12,1689.6277292335435,0.9340673343706533,0.0,471.33704883296286,0.5145154579986411 +13,1697.3383739763037,0.9383299664620526,0.0,473.488003433655,0.5168634580004436 +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696 +15,1694.925927355849,0.9369963072511553,0.0,472.8150294696991,0.516128834002302 +16,1671.3650310525807,0.923971270300939,0.0,466.2425027886417,0.5089542089990573 +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399 +18,1690.4551425000311,0.9345247485636611,0.0,471.56786330199884,0.5147674170002574 +19,1684.2683714061359,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615 +20,1696.6806343047017,0.937966351962164,0.0,473.30452095976483,0.5166631669999333 +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752 +22,1680.6578390184325,0.9291085607320205,0.0,468.8348162350971,0.5117840000020806 +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838 +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711 +25,1690.4400890135125,0.9345164266299109,0.0,471.56366399478605,0.5147628330014413 +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478 +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382 +28,1682.6264145623704,0.930196837207968,0.0,469.38396831826356,0.5123834590012848 +29,1679.3658889613605,0.9283943392943215,0.0,468.4744149960525,0.5113905830003205 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9364d8081 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987 +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.07734687499760184 +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888 +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.08058775000245078 +4,230.54885931749521,0.8730367524402673,0.0,57.25106395810215,0.07994533400051296 +5,231.88767512675338,0.8781065472320985,0.0,57.58352550118184,0.08040958299898193 +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.07360841600166168 +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.08004708400039817 +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.07995341700006975 +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.07993604199873516 +10,233.56486529403693,0.8844576897239966,0.0,58.00001388382362,0.08099116700032027 +11,240.11716945213138,0.909269794022053,0.0,59.62711533875386,0.08326325000234647 +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.07599620899782167 +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.08028929200008861 +14,218.27767539201486,0.8265685348372249,0.0,54.20382122682572,0.07569016700290376 +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.08031716700133984 +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995004 +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.07991479100019205 +18,230.85646606210258,0.874201590098262,0.0,57.32745042759757,0.08005199999752222 +19,232.30835402622398,0.8796995637462603,0.0,57.6879906225913,0.08055545800016262 +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418 +21,229.6469381758771,0.869621379634839,0.0,57.027094318361556,0.07963258299787412 +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.07635025000126916 +23,225.7957025466795,0.8550376152364794,0.0,56.070735922238356,0.07829712499733432 +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.08066150000013295 +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.07891833399844472 +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.08037700000204495 +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.07724491699991631 +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.07938450000074226 +29,229.30784864573525,0.8683373237385839,0.0,56.942889883626364,0.07951500000126543 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f02883f6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6b896563c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..73a018791 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9765b9d4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..df65c3335 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b26aca48d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..76a283dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a0bee643f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d2d7a2742 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f024ded0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2eeef0c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4fac301b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2d290a83d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..42f13e7c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e2acdcf74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..989c1c51b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..74a35e530 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..05c176c75 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1706.4500436920816,0.9036096252071271,0.0,472.01889458967855,0.5143917909990705 +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102 +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231 +3,1697.4514247689901,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798 +4,1707.4593666243693,0.9041440879181387,0.0,472.29808207397883,0.5146960410020256 +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587 +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588 +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391 +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746 +9,1692.1716258741415,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998 +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885 +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757 +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119 +13,1699.6750602015397,0.9000220954606203,0.0,470.1448753472811,0.512349542001175 +14,1701.1311258658325,0.9007931200529031,0.0,470.54763574911647,0.5127884579997044 +15,1700.9127306150654,0.9006774740945451,0.0,470.48722572701723,0.5127226250006061 +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582 +17,1691.9218478837859,0.8959165681394461,0.0,468.00026951995363,0.5100124159980624 +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093 +19,1696.5682995533305,0.8983769849955858,0.0,469.28551838436084,0.5114130410001962 +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749 +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367 +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291 +23,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214 +24,1699.7398857679123,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216 +25,1704.6099874632087,0.902635267636287,0.0,471.5099190645256,0.5138371249995544 +26,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361 +27,1701.2077050215437,0.9008336707050869,0.0,470.56881820831654,0.5128115419975074 +28,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8508d29d6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.51856053024198,0.8053050149528105,0.0,57.34442793976471,0.08032729200203903 +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.08026370799780125 +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285 +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.07993029199860757 +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.07476833300097496 +5,232.19999083317262,0.811179007277459,0.0,57.762705143215726,0.08091320899984566 +6,228.91628629245878,0.7997075503666682,0.0,56.945841815693164,0.0797689579994767 +7,229.74181621161014,0.8025914976824808,0.0,57.151202897473325,0.08005662499999744 +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.07979270800205995 +9,229.85433303517766,0.8029845695552058,0.0,57.17919289041028,0.08009583300008671 +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.08019224999952712 +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447 +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.07968820899986895 +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.08259524999812129 +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.08100120800008881 +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.08091566700022668 +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.07990279200021178 +17,229.43905848908918,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617 +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.08013504200062016 +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.08046916599778342 +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.07995658299842034 +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.07980895799846621 +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.08053845799804549 +23,229.24403659660766,0.8008525295951359,0.0,57.027373878253634,0.07988316699993447 +24,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.08008600000175647 +25,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434 +26,227.42724919008802,0.7945056740265084,0.0,56.575424871304286,0.07925008299935143 +27,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.07989962500141701 +28,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.07983070900081657 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..197755c38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..481ea1bc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c276f03e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7da25c443 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f7e93b5b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..20d6f2609 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7492fc4ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b8654132a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7207c883c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d94458711 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7a1188a8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7dbc7c080 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ed55d05f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fd04e5067 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..930b43c84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9df68ec93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..cc6d6054d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dc905bc13 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1706.4500436920816,0.9036096252071271,0.0,472.01889458967855,0.5143917909990705 +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102 +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231 +3,1697.4514247689901,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798 +4,1707.4593666243693,0.9041440879181387,0.0,472.29808207397883,0.5146960410020256 +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587 +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588 +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391 +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746 +9,1692.1716258741415,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998 +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885 +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757 +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119 +13,1699.6750602015397,0.9000220954606203,0.0,470.1448753472811,0.512349542001175 +14,1701.1311258658325,0.9007931200529031,0.0,470.54763574911647,0.5127884579997044 +15,1700.9127306150654,0.9006774740945451,0.0,470.48722572701723,0.5127226250006061 +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582 +17,1691.9218478837859,0.8959165681394461,0.0,468.00026951995363,0.5100124159980624 +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093 +19,1696.5682995533305,0.8983769849955858,0.0,469.28551838436084,0.5114130410001962 +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749 +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367 +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291 +23,1723.2436212518203,0.912502260758186,0.0,476.6641439160539,0.5194540419979603 +24,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214 +25,1699.7398857679123,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216 +26,1704.6099874632087,0.902635267636287,0.0,471.5099190645256,0.5138371249995544 +27,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361 +28,1701.2077050215437,0.9008336707050869,0.0,470.56881820831654,0.5128115419975074 +29,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6918eb5fa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.51856053024198,0.8053050149528105,0.0,57.34442793976471,0.08032729200203903 +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.08026370799780125 +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285 +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.07993029199860757 +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.07476833300097496 +5,232.19999083317262,0.811179007277459,0.0,57.762705143215726,0.08091320899984566 +6,228.91628629245878,0.7997075503666682,0.0,56.945841815693164,0.0797689579994767 +7,229.74181621161014,0.8025914976824808,0.0,57.151202897473325,0.08005662499999744 +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.07979270800205995 +9,229.85433303517766,0.8029845695552058,0.0,57.17919289041028,0.08009583300008671 +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.08019224999952712 +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447 +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.07968820899986895 +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.08259524999812129 +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.08100120800008881 +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.08091566700022668 +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.07990279200021178 +17,229.43905848908918,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617 +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.08013504200062016 +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.08046916599778342 +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.07995658299842034 +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.07980895799846621 +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.08053845799804549 +23,209.77332001183171,0.7328325589932985,0.0,52.18378513831446,0.07309833399995114 +24,229.24403659660766,0.8008525295951359,0.0,57.027373878253634,0.07988316699993447 +25,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.08008600000175647 +26,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434 +27,227.42724919008802,0.7945056740265084,0.0,56.575424871304286,0.07925008299935143 +28,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.07989962500141701 +29,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.07983070900081657 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b4498c8fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1e24d996c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f345202eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..eb4d08f80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..11b2c64f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..427882717 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..51f4f9a99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..49aa065bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..47359e397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f04d462f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fb2589fc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ffb36243b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..19d94cc6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..954c350f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c48df91ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0b12ac284 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..303062e2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ad391481e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022 +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477 +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489 +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622 +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736 +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334 +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919 +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642 +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257 +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721 +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471 +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143 +12,1684.754023901845,1.632642733391156,0.0,468.80169915946044,0.5105005830009759 +13,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683 +14,1680.4535893809157,1.6284753160284957,0.0,467.6050550310395,0.5091974999995728 +15,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277 +16,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582 +17,1693.226188437825,1.6408528445821813,0.0,471.15917394431204,0.5130677500019374 +18,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046 +19,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097 +20,1681.2943153333301,1.629290037404738,0.0,467.8389964547891,0.5094522500003222 +21,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562 +22,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328 +23,1686.877702600274,1.6347007243772926,0.0,469.39263657119403,0.5111440830005449 +24,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942 +25,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622 +26,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196 +27,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728 +28,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f2e2d459b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.07954441699985182 +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.07589816700055962 +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.08055579099891474 +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.08073104100185446 +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.07467820899910294 +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.08372020800015889 +6,246.76518969216082,0.8144065666407948,0.0,66.67511152107028,0.08499275000212947 +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164 +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.08336408399918582 +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.08104254199861316 +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.08386558299753233 +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.08094354200147791 +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884 +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.08400733400048921 +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.08285370800149394 +15,220.82130434738662,0.7287831826646424,0.0,59.66516230250094,0.07605695900201681 +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.08210049999979674 +17,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.08112983299724874 +18,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.08128179199775332 +19,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.08010733399714809 +20,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.08056145800219383 +21,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.07837724999990314 +22,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.07391633299994282 +23,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.08113566700194497 +24,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.07986420800079941 +25,230.1259904385399,0.7594917176189435,0.0,62.179256707672636,0.07926175000102376 +26,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.08042983300038031 +27,238.17642466410146,0.786060807472282,0.0,64.35445654218726,0.08203454199974658 +28,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.07994954199966742 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f3872e695 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..70d74ca2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8314cfc94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..667e1c185 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bf51fef7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5b1541d51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fa8269ccc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ae919e0c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1e55f1f2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4255384fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..72246c616 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b8cbfaba8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ed453eeff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a48cce8c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b98b08f9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9d7c21104 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a34ea12d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..977f38618 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022 +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477 +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489 +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622 +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736 +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334 +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919 +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642 +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257 +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721 +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471 +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143 +12,1709.5432022817854,1.65666515528454,0.0,475.6995660174179,0.5180120000004536 +13,1684.754023901845,1.632642733391156,0.0,468.80169915946044,0.5105005830009759 +14,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683 +15,1680.4535893809157,1.6284753160284957,0.0,467.6050550310395,0.5091974999995728 +16,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277 +17,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582 +18,1693.226188437825,1.6408528445821813,0.0,471.15917394431204,0.5130677500019374 +19,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046 +20,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097 +21,1681.2943153333301,1.629290037404738,0.0,467.8389964547891,0.5094522500003222 +22,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562 +23,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328 +24,1686.877702600274,1.6347007243772926,0.0,469.39263657119403,0.5111440830005449 +25,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942 +26,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622 +27,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196 +28,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728 +29,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..4962bbef7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.07954441699985182 +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.07589816700055962 +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.08055579099891474 +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.08073104100185446 +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.07467820899910294 +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.08372020800015889 +6,246.76518969216082,0.8144065666407948,0.0,66.67511152107028,0.08499275000212947 +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164 +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.08336408399918582 +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.08104254199861316 +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.08386558299753233 +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.08094354200147791 +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884 +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.08400733400048921 +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.08285370800149394 +15,220.82130434738662,0.7287831826646424,0.0,59.66516230250094,0.07605695900201681 +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.08210049999979674 +17,192.67871910188725,0.6359033633725651,0.0,52.06113187958871,0.06636387500111596 +18,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.08112983299724874 +19,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.08128179199775332 +20,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.08010733399714809 +21,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.08056145800219383 +22,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.07837724999990314 +23,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.07391633299994282 +24,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.08113566700194497 +25,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.07986420800079941 +26,230.1259904385399,0.7594917176189435,0.0,62.179256707672636,0.07926175000102376 +27,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.08042983300038031 +28,238.17642466410146,0.786060807472282,0.0,64.35445654218726,0.08203454199974658 +29,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.07994954199966742 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7a4e01e81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4fc9c28ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..26cb342c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b55226c82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9cb38b39f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..50afb15dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ace8676c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..81cf1eed7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e87862e4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..866fb79cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d81f29873 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..311f97b6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bcc8fb811 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7ec70ae98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ca5904e6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0fae728ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f647105fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..cd35a1c46 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339 +1,1714.7652269961359,0.8643137448752406,0.0,469.82100601237596,0.5111364580006921 +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871 +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353 +4,1715.3316328246153,0.8645992372184634,0.0,469.97619306186704,0.511305291998724 +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863 +6,1714.1556313455656,0.8640064830464437,0.0,469.65398557289956,0.5109547499996552 +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976 +8,1706.9988473425585,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914 +9,1714.837774733343,0.8643503119839272,0.0,469.84088304880163,0.5111580829980085 +10,1711.6089119091241,0.8627228294135127,0.0,468.95622108081443,0.5101956250000512 +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073 +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134 +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773 +14,1723.523935681039,0.8687285021752712,0.0,472.22076620165797,0.5137472499991418 +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045 +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471 +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021 +18,1711.1150571741512,0.8624739058706925,0.0,468.82091198732684,0.5100484169997799 +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914 +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916 +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258 +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475 +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923 +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017 +25,1734.4994753767116,0.8742606354766979,0.0,475.22790619969885,0.5170188340016466 +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984 +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638 +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264 +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ac7fdbf23 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,217.31809402608982,0.662843859774566,0.0,54.132248548256214,0.07516408299852628 +1,229.93032726493874,0.7013125450346716,0.0,57.273857844498174,0.07952629200008232 +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.07999108299918589 +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.07983495900043636 +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546 +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.08023404100094922 +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.07477125000150409 +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.08081466699877637 +8,234.64740031522646,0.7157001316804293,0.0,58.44884408723506,0.08115779199943063 +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.07929087499724119 +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438 +11,229.31340408080686,0.6994308621201081,0.0,57.120187073142155,0.07931291600107215 +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.07968324999819743 +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.08017229200049769 +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.08012866699937149 +15,242.73663270778178,0.7403731716577222,0.0,60.463809018713974,0.08395562499936204 +16,225.15904039724526,0.6867596003401816,0.0,56.08536736111483,0.07787604099939927 +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.07973533299809787 +18,230.14114558595094,0.7019555638787175,0.0,57.32637105009526,0.07959920799839892 +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.08018950000041514 +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758 +21,231.50171831279079,0.7061054589061156,0.0,57.66527914399945,0.08006979100173339 +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.07929220799996983 +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.07700033400033135 +24,234.98109673682322,0.7167179421166722,0.0,58.53196527286156,0.08127320800122106 +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.07366662500135135 +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.08006220899915206 +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205 +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416 +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.07925937500112923 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0c41333b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b36aa2062 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e4e550bba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..21fcdfa6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..66a7b2863 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..729602aef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f4a405443 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6a40a0079 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e23c48344 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7f860d7b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c14321f49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1f3ae6805 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ef8d37cde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..79d6a687a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..57a19f4bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..de19e6687 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a37f36b6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..cd35a1c46 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339 +1,1714.7652269961359,0.8643137448752406,0.0,469.82100601237596,0.5111364580006921 +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871 +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353 +4,1715.3316328246153,0.8645992372184634,0.0,469.97619306186704,0.511305291998724 +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863 +6,1714.1556313455656,0.8640064830464437,0.0,469.65398557289956,0.5109547499996552 +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976 +8,1706.9988473425585,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914 +9,1714.837774733343,0.8643503119839272,0.0,469.84088304880163,0.5111580829980085 +10,1711.6089119091241,0.8627228294135127,0.0,468.95622108081443,0.5101956250000512 +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073 +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134 +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773 +14,1723.523935681039,0.8687285021752712,0.0,472.22076620165797,0.5137472499991418 +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045 +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471 +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021 +18,1711.1150571741512,0.8624739058706925,0.0,468.82091198732684,0.5100484169997799 +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914 +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916 +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258 +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475 +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923 +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017 +25,1734.4994753767116,0.8742606354766979,0.0,475.22790619969885,0.5170188340016466 +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984 +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638 +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264 +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ac7fdbf23 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,217.31809402608982,0.662843859774566,0.0,54.132248548256214,0.07516408299852628 +1,229.93032726493874,0.7013125450346716,0.0,57.273857844498174,0.07952629200008232 +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.07999108299918589 +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.07983495900043636 +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546 +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.08023404100094922 +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.07477125000150409 +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.08081466699877637 +8,234.64740031522646,0.7157001316804293,0.0,58.44884408723506,0.08115779199943063 +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.07929087499724119 +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438 +11,229.31340408080686,0.6994308621201081,0.0,57.120187073142155,0.07931291600107215 +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.07968324999819743 +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.08017229200049769 +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.08012866699937149 +15,242.73663270778178,0.7403731716577222,0.0,60.463809018713974,0.08395562499936204 +16,225.15904039724526,0.6867596003401816,0.0,56.08536736111483,0.07787604099939927 +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.07973533299809787 +18,230.14114558595094,0.7019555638787175,0.0,57.32637105009526,0.07959920799839892 +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.08018950000041514 +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758 +21,231.50171831279079,0.7061054589061156,0.0,57.66527914399945,0.08006979100173339 +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.07929220799996983 +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.07700033400033135 +24,234.98109673682322,0.7167179421166722,0.0,58.53196527286156,0.08127320800122106 +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.07366662500135135 +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.08006220899915206 +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205 +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416 +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.07925937500112923 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0c41333b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b36aa2062 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e4e550bba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..21fcdfa6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..66a7b2863 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..729602aef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f4a405443 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6a40a0079 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e23c48344 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7f860d7b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c14321f49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1f3ae6805 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ef8d37cde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..79d6a687a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..57a19f4bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..de19e6687 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a37f36b6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..25c537e22 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1704.031251704515,1.508941838063347,0.0,474.74663429557484,0.5159355420000793 +1,1703.1359158085138,1.508149006481623,0.0,474.49719186148485,0.5156644579983549 +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892 +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993 +4,1699.9833977413236,1.5053574107276861,0.0,473.61889380183516,0.5147099590030848 +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734 +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086 +7,1715.943482298202,1.5194902731988487,0.0,478.0654063988733,0.5195422500000859 +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202 +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601 +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236 +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794 +12,1698.5353946114299,1.504075185121696,0.0,473.21547713228824,0.5142715419970045 +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858 +14,1697.3195518477353,1.5029985405397317,0.0,472.87674082136715,0.5139034170024388 +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179 +16,1690.2733048896132,1.4967589972063557,0.0,470.91364183216854,0.511770000000979 +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182 +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302 +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851 +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124 +21,1690.6414282331855,1.497084975215344,0.0,471.01620175775196,0.5118814580018807 +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229 +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126 +24,1690.3525720618825,1.4968291893184444,0.0,470.93572583045636,0.511794000001828 +25,1680.0227915903565,1.4876820343493653,0.0,468.05782760707365,0.5086664159971406 +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605 +27,1688.493922067436,1.4951833305725257,0.0,470.4179020943516,0.5112312499986729 +28,1697.0385398110468,1.5027497007260637,0.0,472.79845028621355,0.5138183339986426 +29,1689.9230695070262,1.4964488592194927,0.0,470.8160655295461,0.5116639580010087 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..60e617cfd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.51614058990575,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781 +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.07997116700062179 +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.07962116700218758 +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.07947391699781292 +4,229.52454429292902,0.803352641538617,0.0,56.83719938885715,0.07980637500077137 +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.08031995900091715 +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.08036474999971688 +7,230.02868718081666,0.8051171784074085,0.0,56.962040372324154,0.07998166700053844 +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.07939370799795142 +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.07955024999682792 +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844 +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.07962304199827486 +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532 +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.08127166600024793 +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.08132941700023366 +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.07945674999791663 +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.07988250000198605 +17,230.13929307294057,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928 +18,233.46684549754679,0.8171509832202308,0.0,57.81343206283133,0.08117712499733898 +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.07769050000206335 +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.07885087500108057 +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.07948995799961267 +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.07680466599776992 +23,231.40629964842213,0.8099389224970295,0.0,57.303178766664836,0.080460667002626 +24,232.79241936740078,0.81479044258679,0.0,57.646423813015396,0.08094262500162586 +25,221.00302473761747,0.7735267017212804,0.0,54.72701414678058,0.07684341699859942 +26,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.07769837500018184 +27,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.07986962499853689 +28,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.07988633300192305 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..60c99519c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5bb549322 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e7adfb2b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1fc8d2318 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bf96590c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a8171f5dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..386798cf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..decf19a63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d64cbc210 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0f2cf9f26 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..567aaae8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2b94450a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b8c9ca98b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ae6a9d148 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1b5ecb516 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3c2a3da64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..68d790778 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..25c537e22 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1704.031251704515,1.508941838063347,0.0,474.74663429557484,0.5159355420000793 +1,1703.1359158085138,1.508149006481623,0.0,474.49719186148485,0.5156644579983549 +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892 +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993 +4,1699.9833977413236,1.5053574107276861,0.0,473.61889380183516,0.5147099590030848 +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734 +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086 +7,1715.943482298202,1.5194902731988487,0.0,478.0654063988733,0.5195422500000859 +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202 +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601 +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236 +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794 +12,1698.5353946114299,1.504075185121696,0.0,473.21547713228824,0.5142715419970045 +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858 +14,1697.3195518477353,1.5029985405397317,0.0,472.87674082136715,0.5139034170024388 +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179 +16,1690.2733048896132,1.4967589972063557,0.0,470.91364183216854,0.511770000000979 +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182 +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302 +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851 +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124 +21,1690.6414282331855,1.497084975215344,0.0,471.01620175775196,0.5118814580018807 +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229 +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126 +24,1690.3525720618825,1.4968291893184444,0.0,470.93572583045636,0.511794000001828 +25,1680.0227915903565,1.4876820343493653,0.0,468.05782760707365,0.5086664159971406 +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605 +27,1688.493922067436,1.4951833305725257,0.0,470.4179020943516,0.5112312499986729 +28,1697.0385398110468,1.5027497007260637,0.0,472.79845028621355,0.5138183339986426 +29,1689.9230695070262,1.4964488592194927,0.0,470.8160655295461,0.5116639580010087 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a2255e67f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.51614058990575,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781 +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.07997116700062179 +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.07962116700218758 +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.07947391699781292 +4,229.52454429292902,0.803352641538617,0.0,56.83719938885715,0.07980637500077137 +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.08031995900091715 +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.08036474999971688 +7,230.02868718081666,0.8051171784074085,0.0,56.962040372324154,0.07998166700053844 +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.07939370799795142 +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.07955024999682792 +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844 +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.07962304199827486 +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532 +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.08127166600024793 +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.08132941700023366 +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.07945674999791663 +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.07988250000198605 +17,230.13929307294057,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928 +18,233.46684549754679,0.8171509832202308,0.0,57.81343206283133,0.08117712499733898 +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.07769050000206335 +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.07885087500108057 +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.07948995799961267 +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.07680466599776992 +23,231.40629964842213,0.8099389224970295,0.0,57.303178766664836,0.080460667002626 +24,216.33236918131308,0.7571790666984853,0.0,53.570418968917835,0.07521941600134596 +25,232.79241936740078,0.81479044258679,0.0,57.646423813015396,0.08094262500162586 +26,221.00302473761747,0.7735267017212804,0.0,54.72701414678058,0.07684341699859942 +27,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.07769837500018184 +28,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.07986962499853689 +29,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.07988633300192305 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6a49f4176 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d49c6e402 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b7ddad942 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bffe99024 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7850b8d03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..77267ff67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5b563920f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..21e1cda92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5bdd31f30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4f616ae69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..760a9e809 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..442e2508c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ba2bf1b37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1d22f2dd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..4a7bc3398 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6de16f4fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..dc701fe81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3a1dac049 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1662.7812272807055,2.1541621942727334,0.0,465.3321749197454,0.5084949170013715 +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157 +2,1674.2807447957825,2.1690600205633683,0.0,468.55033459585,0.5120115829995484 +3,1676.0206591942215,2.171314110131433,0.0,469.03725262085317,0.512543666001875 +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335 +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408 +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195 +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926 +8,1676.5832374996228,2.1720429401764987,0.0,469.19469112335725,0.5127157080023608 +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787 +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531 +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761 +12,1674.7193342939781,2.169628220937727,0.0,468.6730746182557,0.5121457079985703 +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101 +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844 +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353 +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996 +17,1671.4410196159442,2.165381106870954,0.0,467.75563263961635,0.511143167001137 +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402 +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448 +20,1673.6356021221727,2.1682242269336345,0.0,468.36979031346397,0.5118142920000537 +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956 +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397 +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555 +24,1668.7934039933843,2.1619510744737207,0.0,467.01469287208477,0.5103335000021616 +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461 +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556 +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112 +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633 +29,1665.1493914950968,2.157230192477653,0.0,465.99490973198044,0.5092191250005271 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..81c5319b4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,241.98723431164638,0.0,0.0,57.15813260782817,0.07957445799911511 +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178 +2,242.65575313120232,0.0,0.0,57.31603881906987,0.07979429200349841 +3,243.91080493823523,0.0,0.0,57.61248593463834,0.08020700000270153 +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623 +5,243.58326313600674,0.0,0.0,57.5351195486815,0.08009929200125043 +6,244.43005848717624,0.0,0.0,57.73513522765531,0.08037775000047986 +7,245.45361291465915,0.0,0.0,57.97690194672964,0.08071433299846831 +8,244.62937278860466,0.0,0.0,57.782213881635094,0.08044329200129141 +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736 +10,238.4692861580264,0.0,0.0,56.327182381697185,0.07841762500174809 +11,241.07885838454746,0.0,0.0,56.94357140650459,0.07927575000212528 +12,242.28411354448383,0.0,0.0,57.22825640013194,0.07967208300033235 +13,246.60273699779665,0.0,0.0,58.24832860654358,0.08109220799815375 +14,241.59570345181902,0.0,0.0,57.065651808707806,0.07944570800100337 +15,231.5265209579827,0.0,0.0,54.687279784777374,0.07613458400010131 +16,248.01263127655392,0.0,0.0,58.58134999247521,0.08155583399638999 +17,243.81577315917053,0.0,0.0,57.590039134726815,0.08017574999757926 +18,244.07033057552212,0.0,0.0,57.65016638318072,0.08025945800181944 +19,242.90384837162006,0.0,0.0,57.3746396815968,0.07987587500247173 +20,243.88077489357266,0.0,0.0,57.60539274528096,0.08019712500026799 +21,242.48862493919952,0.0,0.0,57.27656262360784,0.07973933399989619 +22,243.75697815249183,0.0,0.0,57.57615157244288,0.08015641599922674 +23,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107 +24,247.45054804601023,0.0,0.0,58.44858419629822,0.08137099999657949 +25,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359 +26,243.34416017043674,0.0,0.0,57.478642689264305,0.08002066599874524 +27,242.30248736229245,0.0,0.0,57.23259635268276,0.07967812499919091 +28,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4f57c856b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..794012321 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c7a775a7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..911f47466 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9752fd951 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f5a60f08a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f39f6a3ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0f2d093f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a1c92c9ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e3a0f5203 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5230a496b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..168cb7057 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..65d608948 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..24cade245 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0fd704f14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..674026105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..28e28c8b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3a1dac049 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1662.7812272807055,2.1541621942727334,0.0,465.3321749197454,0.5084949170013715 +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157 +2,1674.2807447957825,2.1690600205633683,0.0,468.55033459585,0.5120115829995484 +3,1676.0206591942215,2.171314110131433,0.0,469.03725262085317,0.512543666001875 +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335 +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408 +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195 +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926 +8,1676.5832374996228,2.1720429401764987,0.0,469.19469112335725,0.5127157080023608 +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787 +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531 +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761 +12,1674.7193342939781,2.169628220937727,0.0,468.6730746182557,0.5121457079985703 +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101 +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844 +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353 +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996 +17,1671.4410196159442,2.165381106870954,0.0,467.75563263961635,0.511143167001137 +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402 +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448 +20,1673.6356021221727,2.1682242269336345,0.0,468.36979031346397,0.5118142920000537 +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956 +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397 +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555 +24,1668.7934039933843,2.1619510744737207,0.0,467.01469287208477,0.5103335000021616 +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461 +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556 +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112 +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633 +29,1665.1493914950968,2.157230192477653,0.0,465.99490973198044,0.5092191250005271 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..13d279f45 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,241.98723431164638,0.0,0.0,57.15813260782817,0.07957445799911511 +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178 +2,242.65575313120232,0.0,0.0,57.31603881906987,0.07979429200349841 +3,243.91080493823523,0.0,0.0,57.61248593463834,0.08020700000270153 +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623 +5,243.58326313600674,0.0,0.0,57.5351195486815,0.08009929200125043 +6,244.43005848717624,0.0,0.0,57.73513522765531,0.08037775000047986 +7,245.45361291465915,0.0,0.0,57.97690194672964,0.08071433299846831 +8,244.62937278860466,0.0,0.0,57.782213881635094,0.08044329200129141 +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736 +10,196.29494977021142,0.0,0.0,46.36547378678283,0.06454912499975762 +11,238.4692861580264,0.0,0.0,56.327182381697185,0.07841762500174809 +12,241.07885838454746,0.0,0.0,56.94357140650459,0.07927575000212528 +13,242.28411354448383,0.0,0.0,57.22825640013194,0.07967208300033235 +14,246.60273699779665,0.0,0.0,58.24832860654358,0.08109220799815375 +15,241.59570345181902,0.0,0.0,57.065651808707806,0.07944570800100337 +16,231.5265209579827,0.0,0.0,54.687279784777374,0.07613458400010131 +17,248.01263127655392,0.0,0.0,58.58134999247521,0.08155583399638999 +18,243.81577315917053,0.0,0.0,57.590039134726815,0.08017574999757926 +19,244.07033057552212,0.0,0.0,57.65016638318072,0.08025945800181944 +20,242.90384837162006,0.0,0.0,57.3746396815968,0.07987587500247173 +21,243.88077489357266,0.0,0.0,57.60539274528096,0.08019712500026799 +22,242.48862493919952,0.0,0.0,57.27656262360784,0.07973933399989619 +23,243.75697815249183,0.0,0.0,57.57615157244288,0.08015641599922674 +24,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107 +25,247.45054804601023,0.0,0.0,58.44858419629822,0.08137099999657949 +26,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359 +27,243.34416017043674,0.0,0.0,57.478642689264305,0.08002066599874524 +28,242.30248736229245,0.0,0.0,57.23259635268276,0.07967812499919091 +29,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9ba35f792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6184bdb25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0aadbb589 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..244853a56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..02d532166 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8c29aad50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..03bf93403 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0f2d093f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f6fb5f907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ea8003aa7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..987ba1541 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d394794f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9089416d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fef6fe616 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..90c6b3ca8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..674026105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c5a0e2f1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..33ef79c2e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922 +1,1684.9120118880196,0.9001310708543041,0.0,468.96828791509245,0.5117798330029473 +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045 +3,1683.044204417893,0.8991332314856176,0.0,468.44841360400676,0.5112124999977823 +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105 +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793 +6,1681.6389594309273,0.898382507016918,0.0,468.05728615581427,0.5107856670001638 +7,1686.120547663472,0.9007767072994409,0.0,469.3046645030087,0.5121469170007913 +8,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845 +9,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436 +10,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695 +11,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919 +12,1697.2951611645233,0.9067465245635561,0.0,472.41493929761276,0.5155411250016186 +13,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666 +14,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893 +15,1677.7029249314749,0.8962797580757781,0.0,466.96175395748037,0.5095901249987946 +16,1688.7147098689275,0.902162587385458,0.0,470.0267080278236,0.5129348750015197 +17,1680.5736402255993,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004 +18,1683.2713703277295,0.8992545904006469,0.0,468.51164159873707,0.5112814999993134 +19,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354 +20,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451 +21,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416 +22,1681.8592675604157,0.8985002022978081,0.0,468.11860539715803,0.5108525840005314 +23,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924 +24,1702.0110496161594,0.9092658951253721,0.0,473.7275313603189,0.5169735419985955 +25,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375 +26,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133 +27,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034 +28,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..bb8664454 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.07939741700101877 +1,231.44524097492229,0.7330543192410438,0.0,57.977932521791644,0.07975508399977116 +2,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.08008266699835076 +3,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.08008870800040313 +4,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297 +5,232.42488985093686,0.7361571518457545,0.0,58.22333837325513,0.08009266699809814 +6,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.08031079200009117 +7,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.07990420799978892 +8,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.08088129200041294 +9,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859 +10,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.07949933399868314 +11,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.08020358400244731 +12,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.08018958299726364 +13,232.42766991836814,0.7361659571269938,0.0,58.22403479095315,0.08009362499797135 +14,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.07972950000112178 +15,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.07995054200000595 +16,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.07964241599984234 +17,239.55219725510386,0.7587314050694335,0.0,60.008756582764285,0.08254870799646596 +18,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.08128333300192025 +19,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.08045987500008778 +20,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.08045412499996019 +21,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.07942158299920266 +22,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.08004908300063107 +23,232.11921588745642,0.7351889935968963,0.0,58.14676585720907,0.07998733299973537 +24,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.07984645800024737 +25,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.07927025000026333 +26,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.08360445800281013 +27,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.07984208299967577 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..dd0953a8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7b939bb64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9cf6aea67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4fe5cde61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..300c3e08b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..508737c0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5267136e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..de80a923c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1b068a1c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..015afd7ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..77a27e64e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1ce69b9bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ba9d429f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4b07e9344 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..446d74d74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..911451d93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ac3933d02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..52605b730 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922 +1,1684.9120118880196,0.9001310708543041,0.0,468.96828791509245,0.5117798330029473 +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045 +3,1683.044204417893,0.8991332314856176,0.0,468.44841360400676,0.5112124999977823 +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105 +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793 +6,1709.3699343703154,0.9131972344281464,0.0,475.77575913706426,0.5192087499999616 +7,1681.6389594309273,0.898382507016918,0.0,468.05728615581427,0.5107856670001638 +8,1686.120547663472,0.9007767072994409,0.0,469.3046645030087,0.5121469170007913 +9,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845 +10,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436 +11,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695 +12,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919 +13,1697.2951611645233,0.9067465245635561,0.0,472.41493929761276,0.5155411250016186 +14,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666 +15,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893 +16,1677.7029249314749,0.8962797580757781,0.0,466.96175395748037,0.5095901249987946 +17,1688.7147098689275,0.902162587385458,0.0,470.0267080278236,0.5129348750015197 +18,1680.5736402255993,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004 +19,1683.2713703277295,0.8992545904006469,0.0,468.51164159873707,0.5112814999993134 +20,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354 +21,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451 +22,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416 +23,1681.8592675604157,0.8985002022978081,0.0,468.11860539715803,0.5108525840005314 +24,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924 +25,1702.0110496161594,0.9092658951253721,0.0,473.7275313603189,0.5169735419985955 +26,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375 +27,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133 +28,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034 +29,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..318bf13f3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,212.6893336470748,0.6736489116377261,0.0,53.279504829529245,0.07329187499999534 +1,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.07939741700101877 +2,231.44524097492229,0.7330543192410438,0.0,57.977932521791644,0.07975508399977116 +3,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.08008266699835076 +4,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.08008870800040313 +5,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297 +6,232.42488985093686,0.7361571518457545,0.0,58.22333837325513,0.08009266699809814 +7,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.08031079200009117 +8,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.07990420799978892 +9,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.08088129200041294 +10,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859 +11,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.07949933399868314 +12,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.08020358400244731 +13,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.08018958299726364 +14,232.42766991836814,0.7361659571269938,0.0,58.22403479095315,0.08009362499797135 +15,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.07972950000112178 +16,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.07995054200000595 +17,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.07964241599984234 +18,239.55219725510386,0.7587314050694335,0.0,60.008756582764285,0.08254870799646596 +19,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.08128333300192025 +20,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.08045987500008778 +21,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.08045412499996019 +22,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.07942158299920266 +23,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.08004908300063107 +24,232.11921588745642,0.7351889935968963,0.0,58.14676585720907,0.07998733299973537 +25,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.07984645800024737 +26,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.07927025000026333 +27,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.08360445800281013 +28,212.99319098550941,0.6746113161072859,0.0,53.35562227393988,0.07339658299679286 +29,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.07984208299967577 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9afb914e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1b0490782 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..261269aa9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b01e72428 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c4122951e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1fad0ba24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..000f3ed0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b147be2bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..358034c48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..14917c105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4f1434071 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..669286273 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c91b04bc4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7caa560f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..456412e8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4894312fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2dd7388e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..48b6896e9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787 +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475 +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321 +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932 +4,1765.9374046561293,1.4666423640474469,0.0,474.29214086434365,0.5136094170011347 +5,1760.7687938821498,1.4623497410448403,0.0,472.9039651210689,0.5121061660029227 +6,1765.694572073473,1.4664406872767097,0.0,474.22692134682507,0.5135387909976998 +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474 +8,1775.6295069892121,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826 +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419 +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038 +11,1770.4399845493308,1.4703818365799761,0.0,475.50143528855637,0.514918958000635 +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858 +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353 +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058 +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538 +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251 +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272 +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988 +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226 +20,1769.5408755153906,1.4696351105660201,0.0,475.2599542782705,0.5146574589998636 +21,1767.2834912096225,1.4677603128262782,0.0,474.6536702546616,0.51400091600226 +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654 +23,1761.1276686756316,1.4626477929316861,0.0,473.0003510369309,0.5122105419977743 +24,1753.0491242413011,1.455938418366093,0.0,470.83063079388955,0.5098609590022534 +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936 +26,1760.1513356895587,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767 +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245 +28,1777.3232973655327,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984 +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5dd56bd2d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,250.52289280398944,0.0,0.0,59.092548476657214,0.08062770900141913 +1,248.85123961316407,0.0,0.0,58.69824420326574,0.08008970800074167 +2,244.34197905904114,0.0,0.0,57.6346140698836,0.07863845800238778 +3,252.30082937497212,0.0,0.0,59.5119225379787,0.08119991599960485 +4,250.19896865042338,0.0,0.0,59.01614227068889,0.08052345800024341 +5,253.67471134281158,0.0,0.0,59.83598947604204,0.08164208299785969 +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064 +7,252.90957722267183,0.0,0.0,59.65551205707467,0.08139583400043193 +8,251.272752152766,0.0,0.0,59.26942293081308,0.08086904200172285 +9,249.41985231096194,0.0,0.0,58.832366770002,0.08027270899765426 +10,250.0490483597647,0.0,0.0,58.98077954617207,0.08047520800027996 +11,251.42707217541098,0.0,0.0,59.305823450210724,0.08091870800126344 +12,248.47915764070973,0.0,0.0,58.61047868312323,0.07996995799840079 +13,250.05034404295012,0.0,0.0,58.98108516782839,0.08047562499996275 +14,249.42062599741175,0.0,0.0,58.83254926471747,0.08027295799911371 +15,247.92867519320185,0.0,0.0,58.48063262254641,0.07979279199935263 +16,248.99960632515408,0.0,0.0,58.73324047455442,0.08013745800053584 +17,247.65887149478826,0.0,0.0,58.41699217855648,0.07970595900042099 +18,249.7995685662133,0.0,0.0,58.92193304065166,0.08039491599993198 +19,243.1112872649154,0.0,0.0,57.34432237761458,0.07824237499880837 +20,248.4247855184506,0.0,0.0,58.5976535587028,0.07995245900019654 +21,250.2673260892368,0.0,0.0,59.03226620739428,0.08054545800041524 +22,246.058297611157,0.0,0.0,58.039453867584825,0.07919083399974625 +23,248.9287911192123,0.0,0.0,58.71653680750362,0.08011466699826997 +24,247.1768707710309,0.0,0.0,58.30329937062335,0.07955083300112165 +25,248.9422544277273,0.0,0.0,58.71971249018146,0.08011899999837624 +26,251.83799359197423,0.0,0.0,59.40275029572405,0.08105095800056006 +27,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028 +28,248.2156956504442,0.0,0.0,58.548334101215886,0.07988516600016737 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..85dc2c754 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..99926848d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..717027c56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..40e2d0532 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7a2ce2a1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1ea1a0f13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5a2fa5bd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..41ccf35bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..93fea6b33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b1b46c69e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5a4f54c5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a6a6b4877 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b5954b862 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..058161807 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..253d312e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..63a3a0213 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5f77bb61b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..48b6896e9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787 +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475 +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321 +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932 +4,1765.9374046561293,1.4666423640474469,0.0,474.29214086434365,0.5136094170011347 +5,1760.7687938821498,1.4623497410448403,0.0,472.9039651210689,0.5121061660029227 +6,1765.694572073473,1.4664406872767097,0.0,474.22692134682507,0.5135387909976998 +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474 +8,1775.6295069892121,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826 +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419 +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038 +11,1770.4399845493308,1.4703818365799761,0.0,475.50143528855637,0.514918958000635 +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858 +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353 +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058 +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538 +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251 +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272 +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988 +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226 +20,1769.5408755153906,1.4696351105660201,0.0,475.2599542782705,0.5146574589998636 +21,1767.2834912096225,1.4677603128262782,0.0,474.6536702546616,0.51400091600226 +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654 +23,1761.1276686756316,1.4626477929316861,0.0,473.0003510369309,0.5122105419977743 +24,1753.0491242413011,1.455938418366093,0.0,470.83063079388955,0.5098609590022534 +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936 +26,1760.1513356895587,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767 +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245 +28,1777.3232973655327,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984 +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..db14360dd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,250.52289280398944,0.0,0.0,59.092548476657214,0.08062770900141913 +1,248.85123961316407,0.0,0.0,58.69824420326574,0.08008970800074167 +2,244.34197905904114,0.0,0.0,57.6346140698836,0.07863845800238778 +3,252.30082937497212,0.0,0.0,59.5119225379787,0.08119991599960485 +4,250.19896865042338,0.0,0.0,59.01614227068889,0.08052345800024341 +5,253.67471134281158,0.0,0.0,59.83598947604204,0.08164208299785969 +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064 +7,252.90957722267183,0.0,0.0,59.65551205707467,0.08139583400043193 +8,251.272752152766,0.0,0.0,59.26942293081308,0.08086904200172285 +9,249.41985231096194,0.0,0.0,58.832366770002,0.08027270899765426 +10,250.0490483597647,0.0,0.0,58.98077954617207,0.08047520800027996 +11,251.42707217541098,0.0,0.0,59.305823450210724,0.08091870800126344 +12,240.21308724761124,0.0,0.0,56.66070411382744,0.07730962500136229 +13,248.47915764070973,0.0,0.0,58.61047868312323,0.07996995799840079 +14,250.05034404295012,0.0,0.0,58.98108516782839,0.08047562499996275 +15,249.42062599741175,0.0,0.0,58.83254926471747,0.08027295799911371 +16,247.92867519320185,0.0,0.0,58.48063262254641,0.07979279199935263 +17,248.99960632515408,0.0,0.0,58.73324047455442,0.08013745800053584 +18,247.65887149478826,0.0,0.0,58.41699217855648,0.07970595900042099 +19,249.7995685662133,0.0,0.0,58.92193304065166,0.08039491599993198 +20,243.1112872649154,0.0,0.0,57.34432237761458,0.07824237499880837 +21,248.4247855184506,0.0,0.0,58.5976535587028,0.07995245900019654 +22,250.2673260892368,0.0,0.0,59.03226620739428,0.08054545800041524 +23,246.058297611157,0.0,0.0,58.039453867584825,0.07919083399974625 +24,248.9287911192123,0.0,0.0,58.71653680750362,0.08011466699826997 +25,247.1768707710309,0.0,0.0,58.30329937062335,0.07955083300112165 +26,248.9422544277273,0.0,0.0,58.71971249018146,0.08011899999837624 +27,251.83799359197423,0.0,0.0,59.40275029572405,0.08105095800056006 +28,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028 +29,248.2156956504442,0.0,0.0,58.548334101215886,0.07988516600016737 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..06dae280e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..761175275 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8e5abb295 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..71cb6d732 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8c723c646 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2bfece61a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d589e8153 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..41ccf35bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..959e09dcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..733fc73ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5910149cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ce497ae53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..859b706bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c66c2de6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..85cf19b4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..63a3a0213 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0fc03ef97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..6bde2fb6d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961 +1,1694.9927135001715,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363 +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444 +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167 +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291 +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369 +6,1688.8411757749657,1.7647243216039348,0.0,469.31677949070684,0.5113532079994911 +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479 +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306 +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447 +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125 +11,1682.6069353830667,1.758209963827656,0.0,467.58432905944926,0.5094655829998374 +12,1688.2128389937081,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873 +13,1684.5242856987225,1.7602134646799608,0.0,468.11714688045373,0.5100461250003718 +14,1691.2586095165045,1.7672503756703288,0.0,469.98856688817517,0.5120851669998956 +15,1684.9852883959745,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345 +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871 +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087 +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969 +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531 +20,1697.7310531269818,1.7740136396311201,0.0,471.78721227548374,0.5140449159989657 +21,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576 +22,1684.1491562411559,1.759821479875816,0.0,468.0129011103703,0.5099325419978413 +23,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992 +24,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528 +25,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477 +26,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427 +27,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625 +28,1683.942460695321,1.7596054970693007,0.0,467.95546190927917,0.509869958001218 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ac7985533 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,233.25053223547215,0.0,0.0,56.63698268361321,0.07941333299822873 +1,221.60881151463116,0.0,0.0,53.81018555455842,0.07544974999836995 +2,238.10873630723782,0.0,0.0,57.81663281023447,0.08106737500202144 +3,231.07861771633884,0.0,0.0,56.10960688801906,0.07867387500300538 +4,229.07742623183637,0.0,0.0,55.6236853925005,0.07799254199926509 +5,234.276462541354,0.0,0.0,56.886095071104634,0.07976262499869335 +6,236.55130141861645,0.0,0.0,57.43846255710658,0.08053712499895482 +7,235.73072929591643,0.0,0.0,57.23921444110614,0.08025774999987334 +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205 +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879 +10,233.68327444202225,0.0,0.0,56.74205945503127,0.07956066599945188 +11,230.57134184737788,0.0,0.0,55.98643214397538,0.07850116599729517 +12,233.56836056947228,0.0,0.0,56.71415651758738,0.07952154200029327 +13,237.12197023826567,0.0,0.0,57.577030129693824,0.08073141700151609 +14,234.29359506112613,0.0,0.0,56.890255122601026,0.07976845799930743 +15,234.53138547652537,0.0,0.0,56.9479944619724,0.07984941699760384 +16,234.16852151095043,0.0,0.0,56.859885251940554,0.07972587499898509 +17,234.93438883615585,0.0,0.0,57.04585016280221,0.07998662500176579 +18,234.65144234374125,0.0,0.0,56.977146201282004,0.07989029199961806 +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866 +20,229.93275390578643,0.0,0.0,55.83137271562917,0.07828375000099186 +21,234.64091551695518,0.0,0.0,56.974590118341126,0.07988670799750253 +22,237.23517173824405,0.0,0.0,57.60451727552191,0.08076995800001896 +23,235.77833496092907,0.0,0.0,57.250773862639385,0.08027395799945225 +24,233.97001868432088,0.0,0.0,56.81168557133654,0.07965829199747532 +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417 +26,231.6775567969512,0.0,0.0,56.255038934891886,0.07887779200245859 +27,234.7314802516568,0.0,0.0,56.99658069329023,0.07991754199974821 +28,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..57aa78801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..375c7735a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6f6dcc2f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0731c41c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6f64c0c73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3759b7604 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d00669ffd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e442955d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..965727647 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9f366f077 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5f690795c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..593b433b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9895bf7e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9413920e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..7c479f0fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6339389a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1a4189d42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dbe4aee69 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961 +1,1694.9927135001715,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363 +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444 +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167 +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291 +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369 +6,1688.8411757749657,1.7647243216039348,0.0,469.31677949070684,0.5113532079994911 +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479 +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306 +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447 +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125 +11,1682.6069353830667,1.758209963827656,0.0,467.58432905944926,0.5094655829998374 +12,1688.2128389937081,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873 +13,1684.5242856987225,1.7602134646799608,0.0,468.11714688045373,0.5100461250003718 +14,1691.2586095165045,1.7672503756703288,0.0,469.98856688817517,0.5120851669998956 +15,1684.9852883959745,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345 +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871 +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087 +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969 +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531 +20,1716.313368140092,1.7934308966981107,0.0,476.9511035652806,0.5196713340010319 +21,1697.7310531269818,1.7740136396311201,0.0,471.78721227548374,0.5140449159989657 +22,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576 +23,1684.1491562411559,1.759821479875816,0.0,468.0129011103703,0.5099325419978413 +24,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992 +25,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528 +26,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477 +27,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427 +28,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625 +29,1683.942460695321,1.7596054970693007,0.0,467.95546190927917,0.509869958001218 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..37bc6ab80 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,233.25053223547215,0.0,0.0,56.63698268361321,0.07941333299822873 +1,221.60881151463116,0.0,0.0,53.81018555455842,0.07544974999836995 +2,238.10873630723782,0.0,0.0,57.81663281023447,0.08106737500202144 +3,231.07861771633884,0.0,0.0,56.10960688801906,0.07867387500300538 +4,229.07742623183637,0.0,0.0,55.6236853925005,0.07799254199926509 +5,234.276462541354,0.0,0.0,56.886095071104634,0.07976262499869335 +6,236.55130141861645,0.0,0.0,57.43846255710658,0.08053712499895482 +7,235.73072929591643,0.0,0.0,57.23921444110614,0.08025774999987334 +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205 +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879 +10,233.68327444202225,0.0,0.0,56.74205945503127,0.07956066599945188 +11,230.57134184737788,0.0,0.0,55.98643214397538,0.07850116599729517 +12,233.56836056947228,0.0,0.0,56.71415651758738,0.07952154200029327 +13,237.12197023826567,0.0,0.0,57.577030129693824,0.08073141700151609 +14,234.29359506112613,0.0,0.0,56.890255122601026,0.07976845799930743 +15,234.53138547652537,0.0,0.0,56.9479944619724,0.07984941699760384 +16,234.16852151095043,0.0,0.0,56.859885251940554,0.07972587499898509 +17,234.93438883615585,0.0,0.0,57.04585016280221,0.07998662500176579 +18,234.65144234374125,0.0,0.0,56.977146201282004,0.07989029199961806 +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866 +20,229.93275390578643,0.0,0.0,55.83137271562917,0.07828375000099186 +21,234.64091551695518,0.0,0.0,56.974590118341126,0.07988670799750253 +22,237.23517173824405,0.0,0.0,57.60451727552191,0.08076995800001896 +23,235.77833496092907,0.0,0.0,57.250773862639385,0.08027395799945225 +24,233.97001868432088,0.0,0.0,56.81168557133654,0.07965829199747532 +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417 +26,186.94272839226807,0.0,0.0,45.39270272743291,0.06364720800047508 +27,231.6775567969512,0.0,0.0,56.255038934891886,0.07887779200245859 +28,234.7314802516568,0.0,0.0,56.99658069329023,0.07991754199974821 +29,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..93f41a801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c893a577c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4737b4c51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fd53f9ba6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..31c2ea705 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..61e0a6f59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a41e1b283 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bc29dd1de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8cbba0afa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..370ba99e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d48a04f7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..83d95708b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ac1ba04b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8ce185fed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c92d14942 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d40a80d7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..17cfb9e50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b72879f15 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1696.056708219553,2.13210562208661,0.0,468.99660855836396,0.5107068340003025 +1,1698.1034097991305,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625 +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451 +3,1690.6943979681757,2.1253646848414536,0.0,467.5138130187185,0.50909216600121 +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757 +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803 +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638 +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929 +8,1698.1573760274023,2.1347463625887086,0.0,469.577488945685,0.5113393749998068 +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113 +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842 +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512 +12,1697.0918900604797,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553 +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115 +14,1697.2283266475595,2.133578458593306,0.0,469.3205865636963,0.5110596249978698 +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593 +16,1695.755878881392,2.1317274508143442,0.0,468.9134226963178,0.5106162500014761 +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632 +18,1690.3656190988781,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368 +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195 +20,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764 +21,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929 +22,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595 +23,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202 +24,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783 +25,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809 +26,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155 +27,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467 +28,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..4242db1dd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.37705684275676,0.10022203748959835,0.0,57.32700544405026,0.07980941699861432 +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.08025799999813898 +2,230.45222653474644,0.10025473892172844,0.0,57.345710663228665,0.07983545800016145 +3,234.36824654926497,0.10195834391644358,0.0,58.320172720205726,0.08119208299831371 +4,233.63132613550113,0.10163775788957416,0.0,58.13679751283642,0.08093679200101178 +5,230.04329489624553,0.10007683942702096,0.0,57.24395215225599,0.07969379200221738 +6,229.48124985739312,0.09983233027438795,0.0,57.10409291694992,0.07949908299997333 +7,226.653234646772,0.09860204523496463,0.0,56.400369874399765,0.07851937500163331 +8,228.51640718827412,0.09941259013410997,0.0,56.8640015567109,0.07916483300141408 +9,230.26363694955552,0.10017269588872774,0.0,57.29878204835227,0.0797701249975944 +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.07965120800145087 +11,230.75483929485844,0.10038638600414375,0.0,57.42101279437023,0.07994029199835495 +12,237.0613136942452,0.10312992185074472,0.0,58.99031529862598,0.08212504100083606 +13,217.22370668195055,0.0944998723964402,0.0,54.05392701076379,0.07525270800033468 +14,232.80949090029833,0.10128023096010658,0.0,57.93229210918096,0.08065208400148549 +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.07996745899799862 +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.07992229099909309 +17,232.13462926046583,0.10098664265971541,0.0,57.76435960135722,0.080418291996466 +18,230.06325854563016,0.10008552430929388,0.0,57.24891990491609,0.0797007080000185 +19,232.48498623238729,0.10113906013589935,0.0,57.85154239773443,0.08053966599982232 +20,232.0403330344357,0.10094562051962108,0.0,57.74089493722326,0.08038562499859836 +21,229.77892943897166,0.09996183125245287,0.0,57.17816747640304,0.07960220799941453 +22,230.30609579896037,0.10019116696590502,0.0,57.30934750449767,0.07978483399710967 +23,232.81899066563767,0.10128436368864749,0.0,57.93465602990636,0.0806553750007879 +24,233.0890051681689,0.10140182939450504,0.0,58.001846413656885,0.08074891599972034 +25,234.19324993623462,0.10188221429940601,0.0,58.27662657926024,0.0811314590027905 +26,218.84922050226433,0.09520702748068344,0.0,54.45841971895093,0.07581583399951342 +27,225.17289320878123,0.09795804518943499,0.0,56.03200184835682,0.07800654100356041 +28,239.13076194741328,0.10403020386343384,0.0,59.50527660988416,0.08284195899977931 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..fbe2bcc43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..431ed05e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cc2e7dfaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..08de699be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2b52a7a11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5260f5e74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ac5574441 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..853f21c3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..297926094 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9acd1d615 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3874d14d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d7c931bb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2db898601 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..bb4a03265 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..61db0339d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5326aac06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ce526f674 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c9acb4c6f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1696.056708219553,2.13210562208661,0.0,468.99660855836396,0.5107068340003025 +1,1698.1034097991305,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625 +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451 +3,1690.6943979681757,2.1253646848414536,0.0,467.5138130187185,0.50909216600121 +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757 +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803 +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638 +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929 +8,1698.1573760274023,2.1347463625887086,0.0,469.577488945685,0.5113393749998068 +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113 +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842 +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512 +12,1697.0918900604797,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553 +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115 +14,1697.2283266475595,2.133578458593306,0.0,469.3205865636963,0.5110596249978698 +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593 +16,1695.755878881392,2.1317274508143442,0.0,468.9134226963178,0.5106162500014761 +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632 +18,1690.3656190988781,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368 +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195 +20,1722.8095641598518,2.165736522681356,0.0,476.3943557235645,0.5187624999998661 +21,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764 +22,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929 +23,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595 +24,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202 +25,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783 +26,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809 +27,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155 +28,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467 +29,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..221267605 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,230.37705684275676,0.10022203748959835,0.0,57.32700544405026,0.07980941699861432 +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.08025799999813898 +2,230.45222653474644,0.10025473892172844,0.0,57.345710663228665,0.07983545800016145 +3,234.36824654926497,0.10195834391644358,0.0,58.320172720205726,0.08119208299831371 +4,233.63132613550113,0.10163775788957416,0.0,58.13679751283642,0.08093679200101178 +5,230.04329489624553,0.10007683942702096,0.0,57.24395215225599,0.07969379200221738 +6,229.48124985739312,0.09983233027438795,0.0,57.10409291694992,0.07949908299997333 +7,226.653234646772,0.09860204523496463,0.0,56.400369874399765,0.07851937500163331 +8,228.51640718827412,0.09941259013410997,0.0,56.8640015567109,0.07916483300141408 +9,230.26363694955552,0.10017269588872774,0.0,57.29878204835227,0.0797701249975944 +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.07965120800145087 +11,230.75483929485844,0.10038638600414375,0.0,57.42101279437023,0.07994029199835495 +12,237.0613136942452,0.10312992185074472,0.0,58.99031529862598,0.08212504100083606 +13,217.22370668195055,0.0944998723964402,0.0,54.05392701076379,0.07525270800033468 +14,232.80949090029833,0.10128023096010658,0.0,57.93229210918096,0.08065208400148549 +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.07996745899799862 +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.07992229099909309 +17,232.13462926046583,0.10098664265971541,0.0,57.76435960135722,0.080418291996466 +18,230.06325854563016,0.10008552430929388,0.0,57.24891990491609,0.0797007080000185 +19,232.48498623238729,0.10113906013589935,0.0,57.85154239773443,0.08053966599982232 +20,232.0403330344357,0.10094562051962108,0.0,57.74089493722326,0.08038562499859836 +21,229.77892943897166,0.09996183125245287,0.0,57.17816747640304,0.07960220799941453 +22,211.17317466770686,0.09186768039488408,0.0,52.54831318587369,0.07315662499968312 +23,230.30609579896037,0.10019116696590502,0.0,57.30934750449767,0.07978483399710967 +24,232.81899066563767,0.10128436368864749,0.0,57.93465602990636,0.0806553750007879 +25,233.0890051681689,0.10140182939450504,0.0,58.001846413656885,0.08074891599972034 +26,234.19324993623462,0.10188221429940601,0.0,58.27662657926024,0.0811314590027905 +27,218.84922050226433,0.09520702748068344,0.0,54.45841971895093,0.07581583399951342 +28,225.17289320878123,0.09795804518943499,0.0,56.03200184835682,0.07800654100356041 +29,239.13076194741328,0.10403020386343384,0.0,59.50527660988416,0.08284195899977931 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..dcb5b148f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b61d650a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e59d798d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e688eca95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1265f1987 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..70735bbcd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0eee0b8b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c267ca90d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..58eb65ed7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..636e357a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8a79fac47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..281b5d8e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..417c6e65e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9a00f8a58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cea2d1f12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b77bc5383 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0351a3791 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b27834888 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402 +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579 +2,1726.3235530469292,2.147168598317076,0.0,474.02101758784323,0.5159650419991522 +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943 +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624 +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454 +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892 +7,1703.9014336143955,2.1192803900676562,0.0,467.8642598635299,0.5092635000000882 +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641 +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499 +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533 +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063 +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957 +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029 +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525 +15,1729.2027639938808,2.1507497064600507,0.0,474.81160316521965,0.516825582999445 +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779 +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395 +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429 +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318 +20,1713.5996964840365,2.1313429060746722,0.0,470.52724874889134,0.5121621250000317 +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474 +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845 +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164 +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658 +25,1699.874186562006,2.114271376320903,0.0,466.75844181309435,0.508059832998697 +26,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921 +27,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897 +28,1702.7397365525153,2.1178354932245216,0.0,467.54527630889476,0.5089162910007872 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..139584106 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,227.44231616412426,0.0,0.0,55.812647893416646,0.07881562499824213 +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113 +2,232.46123844002852,0.0,0.0,57.04425398375972,0.08055483299904154 +3,231.72020051948186,0.0,0.0,56.862408805462756,0.08029804100078763 +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412 +5,228.28784139702842,0.0,0.0,56.02013347879481,0.07910862500284566 +6,233.16163633716695,0.0,0.0,57.216126403446424,0.08079754200298339 +7,233.40656160322862,0.0,0.0,57.2762292368393,0.08088241599762114 +8,229.68887379156396,0.0,0.0,56.36393637810691,0.07959412499985774 +9,231.72140676401818,0.0,0.0,56.86270480887458,0.08029845900091459 +10,230.73183059687102,0.0,0.0,56.619870198709755,0.07995554100125446 +11,230.14337967589475,0.0,0.0,56.47546873196024,0.07975162500224542 +12,228.8957740192038,0.0,0.0,56.16931560970449,0.07931929199912702 +13,231.420685462694,0.0,0.0,56.788910044611164,0.08019424999656621 +14,226.5801978801324,0.0,0.0,55.60109049706921,0.07851687500078697 +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736 +16,231.71876053022535,0.0,0.0,56.86205544284009,0.08029754200106254 +17,230.5897102165952,0.0,0.0,56.584994917466624,0.07990629200139665 +18,230.15408003990942,0.0,0.0,56.47809452147538,0.07975533300123061 +19,231.50172891975,0.0,0.0,56.808797504469204,0.08022233399969991 +20,231.60729837620207,0.0,0.0,56.834703461639485,0.08025891700162902 +21,232.95806964037587,0.0,0.0,57.166172654458805,0.08072700000047917 +22,230.15576242448788,0.0,0.0,56.478507366102015,0.07975591599824838 +23,231.49847956893817,0.0,0.0,56.808000138016894,0.08022120800160337 +24,232.94869093924262,0.0,0.0,57.163871191156474,0.08072374999755993 +25,232.1919025824176,0.0,0.0,56.97816097327938,0.08046149999790941 +26,231.04902374637277,0.0,0.0,56.69770703165235,0.08006545799798914 +27,233.78796274238013,0.0,0.0,57.36982223151427,0.08101458300006925 +28,229.2454318904766,0.0,0.0,56.255119043215196,0.07944045900148922 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5fa105143 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b981b0f90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3aefb20f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bb39a562d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4c5d0cd30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a2e0de381 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..02c732720 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f6d1a74cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..91958a073 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..45ab8e561 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..836b0eb6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5f0d94123 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..90b80a13a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5ce6916a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..76626bd31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4f754f6fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..fb5716c86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..95567bb43 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402 +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579 +2,1726.3235530469292,2.147168598317076,0.0,474.02101758784323,0.5159650419991522 +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943 +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624 +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454 +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892 +7,1703.9014336143955,2.1192803900676562,0.0,467.8642598635299,0.5092635000000882 +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641 +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499 +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533 +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063 +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957 +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029 +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525 +15,1729.2027639938808,2.1507497064600507,0.0,474.81160316521965,0.516825582999445 +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779 +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395 +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429 +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318 +20,1713.5996964840365,2.1313429060746722,0.0,470.52724874889134,0.5121621250000317 +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474 +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845 +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164 +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658 +25,1748.3943619242975,2.1746198531396734,0.0,480.08131101578823,0.5225615840026876 +26,1699.874186562006,2.114271376320903,0.0,466.75844181309435,0.508059832998697 +27,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921 +28,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897 +29,1702.7397365525153,2.1178354932245216,0.0,467.54527630889476,0.5089162910007872 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9de88a627 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,227.44231616412426,0.0,0.0,55.812647893416646,0.07881562499824213 +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113 +2,232.46123844002852,0.0,0.0,57.04425398375972,0.08055483299904154 +3,231.72020051948186,0.0,0.0,56.862408805462756,0.08029804100078763 +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412 +5,228.28784139702842,0.0,0.0,56.02013347879481,0.07910862500284566 +6,233.16163633716695,0.0,0.0,57.216126403446424,0.08079754200298339 +7,233.40656160322862,0.0,0.0,57.2762292368393,0.08088241599762114 +8,229.68887379156396,0.0,0.0,56.36393637810691,0.07959412499985774 +9,231.72140676401818,0.0,0.0,56.86270480887458,0.08029845900091459 +10,230.73183059687102,0.0,0.0,56.619870198709755,0.07995554100125446 +11,230.14337967589475,0.0,0.0,56.47546873196024,0.07975162500224542 +12,228.8957740192038,0.0,0.0,56.16931560970449,0.07931929199912702 +13,231.420685462694,0.0,0.0,56.788910044611164,0.08019424999656621 +14,226.5801978801324,0.0,0.0,55.60109049706921,0.07851687500078697 +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736 +16,231.71876053022535,0.0,0.0,56.86205544284009,0.08029754200106254 +17,230.5897102165952,0.0,0.0,56.584994917466624,0.07990629200139665 +18,230.15408003990942,0.0,0.0,56.47809452147538,0.07975533300123061 +19,231.50172891975,0.0,0.0,56.808797504469204,0.08022233399969991 +20,231.60729837620207,0.0,0.0,56.834703461639485,0.08025891700162902 +21,232.95806964037587,0.0,0.0,57.166172654458805,0.08072700000047917 +22,230.15576242448788,0.0,0.0,56.478507366102015,0.07975591599824838 +23,231.49847956893817,0.0,0.0,56.808000138016894,0.08022120800160337 +24,212.7223396474506,0.0,0.0,52.20047545259599,0.07371470900034183 +25,232.94869093924262,0.0,0.0,57.163871191156474,0.08072374999755993 +26,232.1919025824176,0.0,0.0,56.97816097327938,0.08046149999790941 +27,231.04902374637277,0.0,0.0,56.69770703165235,0.08006545799798914 +28,233.78796274238013,0.0,0.0,57.36982223151427,0.08101458300006925 +29,229.2454318904766,0.0,0.0,56.255119043215196,0.07944045900148922 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f48829ba6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..20acff7e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0756cf665 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6d51fbab7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7b0c83806 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..92f7929d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..189148368 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0308aec76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a4ee1bae1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..df04da493 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..85d778a72 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b2314d7b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cc22b4bd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c78326b05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..47617e23e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..af9734b20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c98622796 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2b1dd289f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231 +1,1684.3804086585615,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504 +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881 +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921 +4,1687.8337375501524,0.9008719984551875,0.0,468.55353608541475,0.5111366669989366 +5,1681.843830358663,0.8976749183506088,0.0,466.89069919991107,0.5093227079996723 +6,1686.9480830154241,0.900399285205718,0.0,468.3076726719962,0.5108684590013581 +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708 +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256 +9,1689.3941238414432,0.9017048460783411,0.0,468.9867093880794,0.5116092080024828 +10,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164 +11,1692.884875635795,0.9035680156993331,0.0,469.95576460984205,0.512666333001107 +12,1689.6578805301597,0.9018456247640515,0.0,469.059929946725,0.51168908299951 +13,1688.3434987592047,0.9011440807041183,0.0,468.69504908621974,0.5112910409989126 +14,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817 +15,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927 +16,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944 +17,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707 +18,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894 +19,1685.8418700821012,0.8998088501209175,0.0,468.00058082400164,0.5105334580002818 +20,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062 +21,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702 +22,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496 +23,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146 +24,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888 +25,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105 +26,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763 +27,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561 +28,1684.6551746223743,0.8991754579291524,0.0,467.67114650737363,0.5101740840000275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..45165a227 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,226.42116177213327,0.0,0.0,56.035355372178316,0.07913029200062738 +1,224.91178830861125,0.0,0.0,55.661811319335285,0.07860279200031073 +2,228.63002038420714,0.0,0.0,56.582010006072565,0.07990224999957718 +3,229.0332362707683,0.0,0.0,56.68179902454736,0.08004316699953051 +4,228.41553770137455,0.0,0.0,56.52892921954344,0.07982729200011818 +5,231.42689083939575,0.0,0.0,57.27418748921862,0.08087970799897448 +6,219.32257694174305,0.0,0.0,54.27857733739913,0.07664945899887243 +7,226.24316157257405,0.0,0.0,55.99130337473889,0.07906808400002774 +8,229.2636968600091,0.0,0.0,56.738834068958916,0.08012370900178212 +9,230.38988117115042,0.0,0.0,57.01754537666294,0.08051729100043303 +10,230.30606873637544,0.0,0.0,56.99680323608533,0.08048799999960465 +11,228.31634253998698,0.0,0.0,56.504380117878,0.07979262500157347 +12,228.8224476250095,0.0,0.0,56.62963244885686,0.07996950000233483 +13,224.49235988305836,0.0,0.0,55.5580099754366,0.07845620899752248 +14,216.08373905100171,0.0,0.0,53.477020491828235,0.07551754100131802 +15,226.49722560636775,0.0,0.0,56.05417986697792,0.07915687499917112 +16,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319 +17,227.09393887275,0.0,0.0,56.20185616929578,0.07936541599701741 +18,228.4411698641868,0.0,0.0,56.53527274035617,0.07983624999906169 +19,228.40921978706487,0.0,0.0,56.52736564407734,0.07982508399800281 +20,228.2586401211186,0.0,0.0,56.490099758560795,0.07977245900110574 +21,229.08092389643008,0.0,0.0,56.693600894257315,0.08005983300245134 +22,228.80122768941447,0.0,0.0,56.62438087862935,0.07996208400072646 +23,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063 +24,233.76201033495235,0.0,0.0,57.85208952693407,0.08169579199966392 +25,228.46108214471798,0.0,0.0,56.540200688376146,0.07984320899777231 +26,227.8610268005468,0.0,0.0,56.39169727910804,0.07963350000136415 +27,227.20291135293746,0.0,0.0,56.228824989724494,0.07940349999989849 +28,228.72158427175552,0.0,0.0,56.60467049830692,0.07993424999949639 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..25975361f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..185ba0a5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..07de03e9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6a16a9e58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5fdfa97ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..92eb60357 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..552809514 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e11e282e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1d9b929e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..cdb68e590 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a2cce9b61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..357d50e55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..12d8a3a2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b3a754d54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..eb493d596 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0fd7c7666 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..af1d64dd1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..56899a54a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231 +1,1684.3804086585615,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504 +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881 +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921 +4,1687.8337375501524,0.9008719984551875,0.0,468.55353608541475,0.5111366669989366 +5,1681.843830358663,0.8976749183506088,0.0,466.89069919991107,0.5093227079996723 +6,1686.9480830154241,0.900399285205718,0.0,468.3076726719962,0.5108684590013581 +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708 +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256 +9,1710.9085274184995,0.9131880409658697,0.0,474.95924664013734,0.5181245420026244 +10,1689.3941238414432,0.9017048460783411,0.0,468.9867093880794,0.5116092080024828 +11,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164 +12,1692.884875635795,0.9035680156993331,0.0,469.95576460984205,0.512666333001107 +13,1689.6578805301597,0.9018456247640515,0.0,469.059929946725,0.51168908299951 +14,1688.3434987592047,0.9011440807041183,0.0,468.69504908621974,0.5112910409989126 +15,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817 +16,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927 +17,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944 +18,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707 +19,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894 +20,1685.8418700821012,0.8998088501209175,0.0,468.00058082400164,0.5105334580002818 +21,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062 +22,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702 +23,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496 +24,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146 +25,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888 +26,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105 +27,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763 +28,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561 +29,1684.6551746223743,0.8991754579291524,0.0,467.67114650737363,0.5101740840000275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..73393cd5c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,226.42116177213327,0.0,0.0,56.035355372178316,0.07913029200062738 +1,224.91178830861125,0.0,0.0,55.661811319335285,0.07860279200031073 +2,228.63002038420714,0.0,0.0,56.582010006072565,0.07990224999957718 +3,229.0332362707683,0.0,0.0,56.68179902454736,0.08004316699953051 +4,228.41553770137455,0.0,0.0,56.52892921954344,0.07982729200011818 +5,244.43862004235896,0.0,0.0,60.494367370763285,0.08542708300228696 +6,231.42689083939575,0.0,0.0,57.27418748921862,0.08087970799897448 +7,219.32257694174305,0.0,0.0,54.27857733739913,0.07664945899887243 +8,226.24316157257405,0.0,0.0,55.99130337473889,0.07906808400002774 +9,229.2636968600091,0.0,0.0,56.738834068958916,0.08012370900178212 +10,230.38988117115042,0.0,0.0,57.01754537666294,0.08051729100043303 +11,230.30606873637544,0.0,0.0,56.99680323608533,0.08048799999960465 +12,228.31634253998698,0.0,0.0,56.504380117878,0.07979262500157347 +13,228.8224476250095,0.0,0.0,56.62963244885686,0.07996950000233483 +14,224.49235988305836,0.0,0.0,55.5580099754366,0.07845620899752248 +15,216.08373905100171,0.0,0.0,53.477020491828235,0.07551754100131802 +16,226.49722560636775,0.0,0.0,56.05417986697792,0.07915687499917112 +17,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319 +18,227.09393887275,0.0,0.0,56.20185616929578,0.07936541599701741 +19,228.4411698641868,0.0,0.0,56.53527274035617,0.07983624999906169 +20,228.40921978706487,0.0,0.0,56.52736564407734,0.07982508399800281 +21,228.2586401211186,0.0,0.0,56.490099758560795,0.07977245900110574 +22,229.08092389643008,0.0,0.0,56.693600894257315,0.08005983300245134 +23,228.80122768941447,0.0,0.0,56.62438087862935,0.07996208400072646 +24,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063 +25,233.76201033495235,0.0,0.0,57.85208952693407,0.08169579199966392 +26,228.46108214471798,0.0,0.0,56.540200688376146,0.07984320899777231 +27,227.8610268005468,0.0,0.0,56.39169727910804,0.07963350000136415 +28,227.20291135293746,0.0,0.0,56.228824989724494,0.07940349999989849 +29,228.72158427175552,0.0,0.0,56.60467049830692,0.07993424999949639 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7f120f5b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..dc2a46512 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b35024752 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..004bed0db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c2d2d6893 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e27fc639f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7b5ed92ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ebbd2e085 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fb9fedd21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4402c2f30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e52796dab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b37cfe50e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ddb0d6acb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0a77267b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..50b945f8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b0d26ad41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..306a63cac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a1ff01148 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1740.8475467300475,0.8670057698492718,0.0,476.01951402301364,0.5090652500002761 +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093 +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814 +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254 +4,1743.6442855959901,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949 +5,1742.4530932244465,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856 +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411 +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279 +8,1738.451339551393,0.8658123710053869,0.0,475.36429215776525,0.5083645419981622 +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625 +10,1757.4058468687895,0.875252409129174,0.0,480.5472361661138,0.513907291002397 +11,1739.8851866112855,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523 +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187 +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124 +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298 +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439 +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813 +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888 +18,1733.1724702832203,0.8631833009743076,0.0,473.92083159262467,0.506820875001722 +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895 +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733 +21,1753.0208036021759,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888 +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614 +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498 +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713 +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178 +26,1731.9024812868108,0.8625507999896003,0.0,473.57356422505933,0.5064494999969611 +27,1736.6560000323223,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919 +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532 +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..b277381d7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887 +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.07961749999958556 +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.07963337500041234 +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.07922229200266884 +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.07965237499956856 +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398 +6,242.56584621915377,0.8435312498927311,0.0,63.602256241911924,0.08017137499700766 +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.07964054100011708 +8,238.96526504195518,0.8310101023854332,0.0,62.65816171986166,0.07898133300113841 +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.07915033300014329 +10,240.76927408882526,0.8372836072083226,0.0,63.131183983507526,0.07957758300108253 +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.08010016699699918 +12,241.27366441657966,0.8390376422888429,0.0,63.26343822857876,0.07974429099704139 +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.07991749999928288 +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.07860070899914717 +15,239.97114719201258,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209 +16,241.24731757307183,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015 +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.07987937500001863 +18,243.95408753605278,0.8483589078315926,0.0,63.966261650502084,0.08063020799818332 +19,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842 +20,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.07900537500245264 +21,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.07932270899982541 +22,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263 +23,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.07817200000135927 +24,239.45074845867182,0.8326983880187502,0.0,62.78545845661377,0.07914179200088256 +25,240.48108950298658,0.8362814351891312,0.0,63.0556202132605,0.07948233400020399 +26,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.07985620799809112 +27,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.08026199999949313 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..012616da8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..539ce1cbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6a4df36cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..386ac1d78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..eb2b59bfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cf241a046 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c76a532f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f08accf8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..550a261f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c2aee9e63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..665d2fdc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..36b256e7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f7d55363b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..178ef43b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0b5562994 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca90dc55e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..96d719d1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a1ff01148 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1740.8475467300475,0.8670057698492718,0.0,476.01951402301364,0.5090652500002761 +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093 +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814 +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254 +4,1743.6442855959901,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949 +5,1742.4530932244465,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856 +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411 +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279 +8,1738.451339551393,0.8658123710053869,0.0,475.36429215776525,0.5083645419981622 +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625 +10,1757.4058468687895,0.875252409129174,0.0,480.5472361661138,0.513907291002397 +11,1739.8851866112855,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523 +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187 +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124 +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298 +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439 +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813 +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888 +18,1733.1724702832203,0.8631833009743076,0.0,473.92083159262467,0.506820875001722 +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895 +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733 +21,1753.0208036021759,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888 +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614 +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498 +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713 +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178 +26,1731.9024812868108,0.8625507999896003,0.0,473.57356422505933,0.5064494999969611 +27,1736.6560000323223,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919 +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532 +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..785adf41f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887 +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.07961749999958556 +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.07963337500041234 +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.07922229200266884 +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.07965237499956856 +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398 +6,242.56584621915377,0.8435312498927311,0.0,63.602256241911924,0.08017137499700766 +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.07964054100011708 +8,238.96526504195518,0.8310101023854332,0.0,62.65816171986166,0.07898133300113841 +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.07915033300014329 +10,240.76927408882526,0.8372836072083226,0.0,63.131183983507526,0.07957758300108253 +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.08010016699699918 +12,241.27366441657966,0.8390376422888429,0.0,63.26343822857876,0.07974429099704139 +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.07991749999928288 +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.07860070899914717 +15,239.97114719201258,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209 +16,241.24731757307183,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015 +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.07987937500001863 +18,243.95408753605278,0.8483589078315926,0.0,63.966261650502084,0.08063020799818332 +19,221.8673952599436,0.7715516596882167,0.0,58.17499514049154,0.07333025000116322 +20,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842 +21,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.07900537500245264 +22,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.07932270899982541 +23,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263 +24,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.07817200000135927 +25,239.45074845867182,0.8326983880187502,0.0,62.78545845661377,0.07914179200088256 +26,240.48108950298658,0.8362814351891312,0.0,63.0556202132605,0.07948233400020399 +27,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.07985620799809112 +28,225.32123524538264,0.7835625095471646,0.0,59.080613219856204,0.07447179199880338 +29,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.08026199999949313 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0a76c9d9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c46a2fe7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4a51dc9b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5de26b0aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d4d9b2b5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1057c3c1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2a16e05ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..372c94864 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c25bbdea4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1735a96c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5e8bf6a0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..588151f24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..af015080a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..60ff635b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1041b5815 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..79f055021 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..03190c194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..73e47c117 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1733.2535639060181,2.0984102566650487,0.0,473.07493453037597,0.5129103750005015 +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176 +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007 +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304 +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974 +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383 +6,1723.4772484529753,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127 +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419 +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738004,0.5151641660013411 +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893 +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816 +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324 +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498 +13,1732.2086720593065,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571 +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222 +15,1732.4094537173592,2.097388311858747,0.0,472.84454275126643,0.5126605830009794 +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996 +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384 +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215 +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757 +20,1738.3252572752315,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475 +21,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968 +22,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178 +23,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871 +24,1726.5571530732716,2.0903030659649118,0.0,471.2472134269785,0.5109287500017672 +25,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585 +26,1724.678430716105,2.0880285399833696,0.0,470.73443418069525,0.5103727919995436 +27,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824 +28,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..570a84bb3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,232.09826942958523,0.0,0.0,56.551862602132445,0.08037870800035307 +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795 +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539 +3,229.08763101285805,0.0,0.0,55.81830603358978,0.07933608399980585 +4,230.24289431199097,0.0,0.0,56.09979150749018,0.07973616699746344 +5,230.65509338121083,0.0,0.0,56.20022579846761,0.07987891700031469 +6,229.2921654886054,0.0,0.0,55.86814184493939,0.07940691700059688 +7,231.28662566367748,0.0,0.0,56.354101684550855,0.08009762500296347 +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006 +9,232.53862219376708,0.0,0.0,56.65915667665391,0.08053120800104807 +10,229.66092988839787,0.0,0.0,55.95799306925431,0.07953462500154274 +11,230.27249179749467,0.0,0.0,56.107003077562155,0.07974641699911444 +12,231.61833400897206,0.0,0.0,56.43492402249065,0.0802125000009255 +13,230.59806408551117,0.0,0.0,56.18633033555602,0.07985916699908557 +14,230.88754189361526,0.0,0.0,56.25686299945956,0.07995941700210096 +15,231.22706975553947,0.0,0.0,56.33959060033449,0.08007700000234763 +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293 +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725 +18,232.01705683139886,0.0,0.0,56.532074760949975,0.0803505830008362 +19,230.92965116248496,0.0,0.0,56.26712312588466,0.07997400000022026 +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622 +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255 +22,230.93169844780866,0.0,0.0,56.267621956826474,0.079974709002272 +23,230.3377015469545,0.0,0.0,56.1228917474813,0.07976899999994203 +24,231.03432517839207,0.0,0.0,56.2926274546336,0.08001024999975925 +25,231.14032169551038,0.0,0.0,56.318454017180194,0.08004695799900219 +26,232.6395683748504,0.0,0.0,56.68375270047117,0.08056616700196173 +27,232.01200359601728,0.0,0.0,56.53084351578086,0.08034883299842477 +28,231.3346313210155,0.0,0.0,56.365798494460634,0.08011424999858718 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..011c33661 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..de997ca44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a2d89105b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..df8401b77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..90bc7cf4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2551c2729 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6d6f37882 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..201e322cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4e572de33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a4d663a21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..aeb1394f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7a73f600d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c0ac72d52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6f494b37f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3687cd9d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2235b402d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..56b5995a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..22e3e8560 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1733.2535639060181,2.0984102566650487,0.0,473.07493453037597,0.5129103750005015 +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176 +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007 +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304 +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974 +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383 +6,1723.4772484529753,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127 +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419 +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738004,0.5151641660013411 +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893 +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816 +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324 +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498 +13,1732.2086720593065,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571 +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222 +15,1732.4094537173592,2.097388311858747,0.0,472.84454275126643,0.5126605830009794 +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996 +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384 +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215 +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757 +20,1780.438908568486,2.155536469047305,0.0,485.95372174410915,0.5268736250000075 +21,1738.3252572752315,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475 +22,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968 +23,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178 +24,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871 +25,1726.5571530732716,2.0903030659649118,0.0,471.2472134269785,0.5109287500017672 +26,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585 +27,1724.678430716105,2.0880285399833696,0.0,470.73443418069525,0.5103727919995436 +28,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824 +29,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..b6ec4f676 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,232.09826942958523,0.0,0.0,56.551862602132445,0.08037870800035307 +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795 +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539 +3,229.08763101285805,0.0,0.0,55.81830603358978,0.07933608399980585 +4,230.24289431199097,0.0,0.0,56.09979150749018,0.07973616699746344 +5,230.65509338121083,0.0,0.0,56.20022579846761,0.07987891700031469 +6,229.2921654886054,0.0,0.0,55.86814184493939,0.07940691700059688 +7,231.28662566367748,0.0,0.0,56.354101684550855,0.08009762500296347 +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006 +9,232.53862219376708,0.0,0.0,56.65915667665391,0.08053120800104807 +10,229.66092988839787,0.0,0.0,55.95799306925431,0.07953462500154274 +11,230.27249179749467,0.0,0.0,56.107003077562155,0.07974641699911444 +12,231.61833400897206,0.0,0.0,56.43492402249065,0.0802125000009255 +13,230.59806408551117,0.0,0.0,56.18633033555602,0.07985916699908557 +14,230.88754189361526,0.0,0.0,56.25686299945956,0.07995941700210096 +15,231.22706975553947,0.0,0.0,56.33959060033449,0.08007700000234763 +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293 +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725 +18,232.01705683139886,0.0,0.0,56.532074760949975,0.0803505830008362 +19,230.92965116248496,0.0,0.0,56.26712312588466,0.07997400000022026 +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622 +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255 +22,230.93169844780866,0.0,0.0,56.267621956826474,0.079974709002272 +23,230.3377015469545,0.0,0.0,56.1228917474813,0.07976899999994203 +24,231.03432517839207,0.0,0.0,56.2926274546336,0.08001024999975925 +25,231.14032169551038,0.0,0.0,56.318454017180194,0.08004695799900219 +26,232.6395683748504,0.0,0.0,56.68375270047117,0.08056616700196173 +27,211.57097564534644,0.0,0.0,51.55028848211487,0.07326983399980236 +28,232.01200359601728,0.0,0.0,56.53084351578086,0.08034883299842477 +29,231.3346313210155,0.0,0.0,56.365798494460634,0.08011424999858718 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..17aea651f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cf15716ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3ae8fb5ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..15ef42cf9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0d9989c9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..934a8f79a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8e6202183 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b0dae5ae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..03ea34767 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f323a426e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4ff5c8f93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6ff602361 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b74315886 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1ee570e2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..12c84758a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..33e57ce38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..89be45059 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..1b1dbd1f4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829 +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254 +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306 +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439 +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705 +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659 +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573 +7,1692.6743412442531,1.2348953116578076,0.0,469.05996513618453,0.5122992920005345 +8,1692.9432102016285,1.2350914657595287,0.0,469.13447188606534,0.5123806670017075 +9,1690.9101016468999,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765 +10,1675.4391953781826,1.2223213626664713,0.0,464.28390353823204,0.5070829590003996 +11,1692.3177755698925,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009 +12,1692.9842335608657,1.2351213944662833,0.0,469.1458399413283,0.5123930829977326 +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145 +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459 +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755 +16,1699.368532235995,1.2397790774653328,0.0,470.91500418102123,0.5143253339992953 +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365 +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959 +19,1687.3626306301558,1.2310201382860588,0.0,467.58802766141275,0.5106916670010833 +20,1680.005011470021,1.2256523665981303,0.0,465.54914486946274,0.5084648339980049 +21,1684.2149491635087,1.2287237384464433,0.0,466.71576811152204,0.5097390000009909 +22,1684.4494028861661,1.228894784817181,0.0,466.780737995153,0.50980995899954 +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316 +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298 +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991 +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632 +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746 +28,1690.2974702999934,1.2331612587960359,0.0,468.40130624647264,0.5115799159975722 +29,1691.2523507598814,1.2338578945128877,0.0,468.6659148509223,0.5118689170012658 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..38208a215 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,235.05822270976108,0.0,0.0,56.90602555177452,0.07961645800241968 +1,234.8477444205732,0.0,0.0,56.85507016393681,0.07954516700192471 +2,236.67440697832674,0.0,0.0,57.29729296723922,0.0801638750017446 +3,237.84588865760452,0.0,0.0,57.58090085640774,0.08056066700009978 +4,238.03791455643773,0.0,0.0,57.62738904380077,0.08062570800029789 +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256 +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836 +7,235.89399490105237,0.0,0.0,57.10836041640851,0.07989954200093052 +8,237.10914526586754,0.0,0.0,57.40254020264302,0.0803111249988433 +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639 +10,240.1701486799902,0.0,0.0,58.14358868199451,0.08134791599877644 +11,237.3678477706916,0.0,0.0,57.46517035095314,0.08039875000031316 +12,233.8212985099349,0.0,0.0,56.606574465530976,0.07919749999928172 +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732 +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766 +15,239.42184376859217,0.0,0.0,57.962429061549685,0.08109445800073445 +16,235.06720385039952,0.0,0.0,56.908199825929934,0.07961950000026263 +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046007 +18,235.1504876044873,0.0,0.0,56.92836226646714,0.07964770900071017 +19,233.54008410112255,0.0,0.0,56.53849433564263,0.07910225000159699 +20,236.13485910454932,0.0,0.0,57.166672031125465,0.07998112499990384 +21,236.49910926458722,0.0,0.0,57.25485456171471,0.08010449999710545 +22,233.79657231308929,0.0,0.0,56.60058841844326,0.07918912500099395 +23,225.861185687578,0.0,0.0,54.679484324024344,0.07650133399874903 +24,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449 +25,226.48622570091325,0.0,0.0,54.8308023360458,0.07671304100222187 +26,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544 +27,236.39749713231657,0.0,0.0,57.230254943251225,0.08007008300046436 +28,240.4058491717482,0.0,0.0,58.20065019659257,0.08142774999942048 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c07ee184f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..80c36000f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2a33f36a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a3c70eb39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e46f373a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3de9b8d82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e40b31a23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c8fe7e2d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5a7150c0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..92c982f7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..51f10d04b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..020b016ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..75948823e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..107c08814 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..433f363b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e6c43ec5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..8e0b9769f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1b1dbd1f4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829 +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254 +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306 +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439 +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705 +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659 +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573 +7,1692.6743412442531,1.2348953116578076,0.0,469.05996513618453,0.5122992920005345 +8,1692.9432102016285,1.2350914657595287,0.0,469.13447188606534,0.5123806670017075 +9,1690.9101016468999,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765 +10,1675.4391953781826,1.2223213626664713,0.0,464.28390353823204,0.5070829590003996 +11,1692.3177755698925,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009 +12,1692.9842335608657,1.2351213944662833,0.0,469.1458399413283,0.5123930829977326 +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145 +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459 +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755 +16,1699.368532235995,1.2397790774653328,0.0,470.91500418102123,0.5143253339992953 +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365 +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959 +19,1687.3626306301558,1.2310201382860588,0.0,467.58802766141275,0.5106916670010833 +20,1680.005011470021,1.2256523665981303,0.0,465.54914486946274,0.5084648339980049 +21,1684.2149491635087,1.2287237384464433,0.0,466.71576811152204,0.5097390000009909 +22,1684.4494028861661,1.228894784817181,0.0,466.780737995153,0.50980995899954 +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316 +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298 +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991 +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632 +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746 +28,1690.2974702999934,1.2331612587960359,0.0,468.40130624647264,0.5115799159975722 +29,1691.2523507598814,1.2338578945128877,0.0,468.6659148509223,0.5118689170012658 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d5148717e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,235.05822270976108,0.0,0.0,56.90602555177452,0.07961645800241968 +1,234.8477444205732,0.0,0.0,56.85507016393681,0.07954516700192471 +2,236.67440697832674,0.0,0.0,57.29729296723922,0.0801638750017446 +3,237.84588865760452,0.0,0.0,57.58090085640774,0.08056066700009978 +4,238.03791455643773,0.0,0.0,57.62738904380077,0.08062570800029789 +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256 +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836 +7,235.89399490105237,0.0,0.0,57.10836041640851,0.07989954200093052 +8,237.10914526586754,0.0,0.0,57.40254020264302,0.0803111249988433 +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639 +10,240.1701486799902,0.0,0.0,58.14358868199451,0.08134791599877644 +11,237.3678477706916,0.0,0.0,57.46517035095314,0.08039875000031316 +12,233.8212985099349,0.0,0.0,56.606574465530976,0.07919749999928172 +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732 +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766 +15,239.42184376859217,0.0,0.0,57.962429061549685,0.08109445800073445 +16,235.06720385039952,0.0,0.0,56.908199825929934,0.07961950000026263 +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046007 +18,235.1504876044873,0.0,0.0,56.92836226646714,0.07964770900071017 +19,233.54008410112255,0.0,0.0,56.53849433564263,0.07910225000159699 +20,217.5081550780071,0.0,0.0,52.65727141088613,0.07367208300274797 +21,236.13485910454932,0.0,0.0,57.166672031125465,0.07998112499990384 +22,236.49910926458722,0.0,0.0,57.25485456171471,0.08010449999710545 +23,233.79657231308929,0.0,0.0,56.60058841844326,0.07918912500099395 +24,225.861185687578,0.0,0.0,54.679484324024344,0.07650133399874903 +25,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449 +26,226.48622570091325,0.0,0.0,54.8308023360458,0.07671304100222187 +27,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544 +28,236.39749713231657,0.0,0.0,57.230254943251225,0.08007008300046436 +29,240.4058491717482,0.0,0.0,58.20065019659257,0.08142774999942048 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e133b3990 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cbd86130a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b7584d331 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0fc0cb29c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1fb3e6bac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..666029142 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d81457ac3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c8fe7e2d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c841af11a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..26e5f2774 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..00b308c97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6f9906df5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0679b6af3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..33ba254b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..96da95203 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e6c43ec5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c207f278a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e12238571 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285 +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228 +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163 +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576 +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558 +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698 +6,1705.7329735859487,1.300279235547624,0.0,470.9678072139933,0.5133861249996698 +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658 +8,1690.8663813373519,1.2889464410812284,0.0,466.86301094137,0.5089116250019288 +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358 +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521 +11,1704.7292983593761,1.2995141345168324,0.0,470.69068369704553,0.513084041998809 +12,1708.1326598617934,1.3021085149744913,0.0,471.6303816033247,0.5141083749986137 +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769 +14,1710.3444845159797,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929 +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019 +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924 +17,1689.277667739587,1.2877353656465647,0.0,466.4243532082916,0.5084334589992068 +18,1706.9462463345421,1.3012041126453187,0.0,471.3028024417377,0.5137512920009613 +19,1708.9988693572539,1.3027688259598698,0.0,471.869549628439,0.5143690839977353 +20,1700.2184297275633,1.2960755020303545,0.0,469.44519337643044,0.5117263749998529 +21,1704.764045228913,1.2995406220349017,0.0,470.70027761192364,0.5130945000018983 +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248 +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265 +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966 +25,1700.2915250526698,1.2961312225533927,0.0,469.46537563562117,0.5117483750000247 +26,1705.0802389809708,1.2997816563448301,0.0,470.7875814750531,0.5131896669990965 +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194 +28,1718.6114560769083,1.3100964951232272,0.0,474.52366897719764,0.5172622499994759 +29,1692.0442128045713,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..74b82d92e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463 +1,222.34524711035738,0.0,0.0,53.789566230930056,0.07622662499852595 +2,234.88450207831713,0.0,0.0,56.82305174209469,0.08052545800092048 +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092 +4,231.14880819995636,0.0,0.0,55.919315971260644,0.0792447500025446 +5,226.31842603214758,0.0,0.0,54.75075417417805,0.07758874999854015 +6,233.75602738491304,0.0,0.0,56.550052138776614,0.08013858300182619 +7,234.52669793020038,0.0,0.0,56.73649207791049,0.08040279199849465 +8,232.1996204913718,0.0,0.0,56.1735275547325,0.07960499999899184 +9,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767 +10,232.00807659282628,0.0,0.0,56.12718942360155,0.07953933300086646 +11,235.28654971516895,0.0,0.0,56.92031475208247,0.08066329199937172 +12,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185 +13,232.42361488754554,0.0,0.0,56.22771608165147,0.07968179200179293 +14,237.5479969606639,0.0,0.0,57.467402076728234,0.08143858399853343 +15,236.38512621563677,0.0,0.0,57.186081410914305,0.08103991700045299 +16,233.71664925617893,0.0,0.0,56.5405258165767,0.08012508299725596 +17,235.04529604296468,0.0,0.0,56.86195087631657,0.08058058299866389 +18,233.1673012201283,0.0,0.0,56.40762802382869,0.07993675000034273 +19,237.1459493238121,0.0,0.0,57.37013906674045,0.08130075000008219 +20,233.21457829256337,0.0,0.0,56.419065251527506,0.07995295799992164 +21,215.0150838520788,0.0,0.0,52.01625959546593,0.07371362499907264 +22,232.95108619602212,0.0,0.0,56.35532147574445,0.07986262499980512 +23,232.76695704397656,0.0,0.0,56.31077711355224,0.07979949999935343 +24,232.50881162889073,0.0,0.0,56.24832680223491,0.07971100000213482 +25,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835 +26,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423 +27,233.43504906083848,0.0,0.0,56.47240134549057,0.08002854199730791 +28,220.28603711570713,0.0,0.0,53.291403963779565,0.07552066599964746 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b352ec5c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8a6a86ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..41527d8cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..108a8b1a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9f4e0eabf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8d00c858f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a190e31f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2c6accae1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2b2247f6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..89f0f0ef6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..579419156 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ae557d55b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7c839d119 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9f15006b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..64890d4ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2dec7e6e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6a4055512 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..e12238571 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285 +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228 +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163 +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576 +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558 +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698 +6,1705.7329735859487,1.300279235547624,0.0,470.9678072139933,0.5133861249996698 +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658 +8,1690.8663813373519,1.2889464410812284,0.0,466.86301094137,0.5089116250019288 +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358 +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521 +11,1704.7292983593761,1.2995141345168324,0.0,470.69068369704553,0.513084041998809 +12,1708.1326598617934,1.3021085149744913,0.0,471.6303816033247,0.5141083749986137 +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769 +14,1710.3444845159797,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929 +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019 +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924 +17,1689.277667739587,1.2877353656465647,0.0,466.4243532082916,0.5084334589992068 +18,1706.9462463345421,1.3012041126453187,0.0,471.3028024417377,0.5137512920009613 +19,1708.9988693572539,1.3027688259598698,0.0,471.869549628439,0.5143690839977353 +20,1700.2184297275633,1.2960755020303545,0.0,469.44519337643044,0.5117263749998529 +21,1704.764045228913,1.2995406220349017,0.0,470.70027761192364,0.5130945000018983 +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248 +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265 +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966 +25,1700.2915250526698,1.2961312225533927,0.0,469.46537563562117,0.5117483750000247 +26,1705.0802389809708,1.2997816563448301,0.0,470.7875814750531,0.5131896669990965 +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194 +28,1718.6114560769083,1.3100964951232272,0.0,474.52366897719764,0.5172622499994759 +29,1692.0442128045713,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9d45b271d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463 +1,222.34524711035738,0.0,0.0,53.789566230930056,0.07622662499852595 +2,234.88450207831713,0.0,0.0,56.82305174209469,0.08052545800092048 +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092 +4,231.14880819995636,0.0,0.0,55.919315971260644,0.0792447500025446 +5,189.5080321108016,0.0,0.0,45.84561611725291,0.06496904199957498 +6,226.31842603214758,0.0,0.0,54.75075417417805,0.07758874999854015 +7,233.75602738491304,0.0,0.0,56.550052138776614,0.08013858300182619 +8,234.52669793020038,0.0,0.0,56.73649207791049,0.08040279199849465 +9,232.1996204913718,0.0,0.0,56.1735275547325,0.07960499999899184 +10,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767 +11,232.00807659282628,0.0,0.0,56.12718942360155,0.07953933300086646 +12,235.28654971516895,0.0,0.0,56.92031475208247,0.08066329199937172 +13,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185 +14,232.42361488754554,0.0,0.0,56.22771608165147,0.07968179200179293 +15,237.5479969606639,0.0,0.0,57.467402076728234,0.08143858399853343 +16,236.38512621563677,0.0,0.0,57.186081410914305,0.08103991700045299 +17,233.71664925617893,0.0,0.0,56.5405258165767,0.08012508299725596 +18,235.04529604296468,0.0,0.0,56.86195087631657,0.08058058299866389 +19,233.1673012201283,0.0,0.0,56.40762802382869,0.07993675000034273 +20,237.1459493238121,0.0,0.0,57.37013906674045,0.08130075000008219 +21,233.21457829256337,0.0,0.0,56.419065251527506,0.07995295799992164 +22,215.0150838520788,0.0,0.0,52.01625959546593,0.07371362499907264 +23,232.95108619602212,0.0,0.0,56.35532147574445,0.07986262499980512 +24,232.76695704397656,0.0,0.0,56.31077711355224,0.07979949999935343 +25,232.50881162889073,0.0,0.0,56.24832680223491,0.07971100000213482 +26,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835 +27,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423 +28,233.43504906083848,0.0,0.0,56.47240134549057,0.08002854199730791 +29,220.28603711570713,0.0,0.0,53.291403963779565,0.07552066599964746 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3175b3534 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bfe2dcf0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..844f81acb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c52da7242 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..34d313e70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0552e2939 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b04c93fe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2c6accae1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5460bfb5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6a9d8cc43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4f6ef488f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..95378d649 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..205c9a20f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1c3963bb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..173fc9b29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2dec7e6e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d4d5add0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..6c20c0236 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037 +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928 +2,1699.015023621691,1.6596805935544505,0.0,467.7311848755153,0.5085318749988801 +3,1726.676996415299,1.6867021553338861,0.0,475.34640141619576,0.5168113750005432 +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602 +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556 +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734 +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054 +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878 +9,1707.556617845926,1.6680244386499228,0.0,470.08264730032124,0.5110884579989943 +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489 +11,1706.9871143093415,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469 +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288 +13,1700.5875280107632,1.6612166924008627,0.0,468.16408825241115,0.5090025409990631 +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047 +15,1701.9577670717792,1.6625552086273119,0.0,468.54130889534906,0.5094126670010155 +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634 +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211 +18,1700.088466524394,1.6607291848436008,0.0,468.02669887262357,0.5088531669971417 +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262 +20,1700.4806187224337,1.6611122582030222,0.0,468.1346566067757,0.508970541999588 +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707 +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749 +23,1732.7583505809403,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043 +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133 +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451 +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454 +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582 +28,1703.033989709958,1.6636065152974093,0.0,468.83758814111593,0.5097347910013923 +29,1702.9419746789295,1.663516630535244,0.0,468.8122568174425,0.5097072499993374 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..55afcad16 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.66268036286448,0.06720704391147794,0.0,59.881476125126845,0.08049437500085332 +1,231.99748654195568,0.06730417364141447,0.0,59.968018714500296,0.08061070799885783 +2,232.69804026717333,0.06750740941896528,0.0,60.14910179229807,0.0808541249971313 +3,232.398368697592,0.06742047249712561,0.0,60.071640994938925,0.08075000000098953 +4,218.63578046305975,0.06342784463680294,0.0,56.51420957139142,0.07596799999737414 +5,236.23653928270616,0.06853395395494812,0.0,61.06375297385877,0.0820836250022694 +6,224.81903910192042,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951 +7,232.2963206294109,0.06739086760354247,0.0,60.045263034756346,0.08071454200035078 +8,235.48322320982325,0.06831541143307898,0.0,60.869031586873376,0.08182187500278815 +9,233.22039698135623,0.06765894893569951,0.0,60.284123501708265,0.08103562500036787 +10,222.17847558987393,0.06445560649546676,0.0,57.42994538746088,0.07719895799891674 +11,235.83937549829102,0.06841873382602003,0.0,60.96109183898384,0.08194562499920721 +12,229.93300334090122,0.06670525191206882,0.0,59.434379453653314,0.07989337500112015 +13,228.71740877714214,0.06635259900700381,0.0,59.1201657152404,0.07947100000092178 +14,231.33051329738623,0.06711067980777088,0.0,59.79561570872386,0.08037895899906289 +15,229.53188230999976,0.06658888375688998,0.0,59.330695427388974,0.07975399999850197 +16,229.48139935482178,0.0665742382810623,0.0,59.31764630842652,0.07973645900347037 +17,230.42646205313747,0.06684840790633521,0.0,59.561931444544676,0.08006483399731223 +18,231.01585022398586,0.06701939374063993,0.0,59.71427982291018,0.08026962499934598 +19,230.07786450510628,0.06674727719904447,0.0,59.471823984348624,0.07994370899905334 +20,228.97666749951748,0.06642781186525021,0.0,59.187180371937934,0.07956108299913467 +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.08099366700116661 +22,229.52001057054088,0.06658543967813776,0.0,59.32762675322075,0.07974987499983399 +23,231.32547392448515,0.06710921784870472,0.0,59.794313103195904,0.08037720799984527 +24,230.29359350566222,0.06680986176549528,0.0,59.52758683305629,0.08001866699851234 +25,231.8720547369228,0.06726778495414064,0.0,59.93559639413931,0.08056712499819696 +26,231.05506295725297,0.06703076964237104,0.0,59.724415751352595,0.08028325000123004 +27,229.7340616961576,0.06664753748075358,0.0,59.382955895351444,0.07982424999863724 +28,228.61583845949133,0.06632313271235606,0.0,59.09391124670925,0.07943570800125599 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cfd299052 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..47693ad43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e9a2486ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b8f4f9e35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9cfde88cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7cbe05c4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e0105206f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c8d6ae6b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..502bf321e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ae3c5bb14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3247bfcbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6f0afeed7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..31c4bf0a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c48cc7469 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1b9951086 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..54c07474c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b3f9551b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..6c20c0236 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037 +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928 +2,1699.015023621691,1.6596805935544505,0.0,467.7311848755153,0.5085318749988801 +3,1726.676996415299,1.6867021553338861,0.0,475.34640141619576,0.5168113750005432 +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602 +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556 +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734 +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054 +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878 +9,1707.556617845926,1.6680244386499228,0.0,470.08264730032124,0.5110884579989943 +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489 +11,1706.9871143093415,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469 +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288 +13,1700.5875280107632,1.6612166924008627,0.0,468.16408825241115,0.5090025409990631 +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047 +15,1701.9577670717792,1.6625552086273119,0.0,468.54130889534906,0.5094126670010155 +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634 +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211 +18,1700.088466524394,1.6607291848436008,0.0,468.02669887262357,0.5088531669971417 +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262 +20,1700.4806187224337,1.6611122582030222,0.0,468.1346566067757,0.508970541999588 +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707 +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749 +23,1732.7583505809403,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043 +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133 +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451 +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454 +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582 +28,1703.033989709958,1.6636065152974093,0.0,468.83758814111593,0.5097347910013923 +29,1702.9419746789295,1.663516630535244,0.0,468.8122568174425,0.5097072499993374 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..19dbfb724 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.66268036286448,0.06720704391147794,0.0,59.881476125126845,0.08049437500085332 +1,231.99748654195568,0.06730417364141447,0.0,59.968018714500296,0.08061070799885783 +2,232.69804026717333,0.06750740941896528,0.0,60.14910179229807,0.0808541249971313 +3,232.398368697592,0.06742047249712561,0.0,60.071640994938925,0.08075000000098953 +4,218.63578046305975,0.06342784463680294,0.0,56.51420957139142,0.07596799999737414 +5,236.23653928270616,0.06853395395494812,0.0,61.06375297385877,0.0820836250022694 +6,224.81903910192042,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951 +7,232.2963206294109,0.06739086760354247,0.0,60.045263034756346,0.08071454200035078 +8,235.48322320982325,0.06831541143307898,0.0,60.869031586873376,0.08182187500278815 +9,233.22039698135623,0.06765894893569951,0.0,60.284123501708265,0.08103562500036787 +10,222.17847558987393,0.06445560649546676,0.0,57.42994538746088,0.07719895799891674 +11,235.83937549829102,0.06841873382602003,0.0,60.96109183898384,0.08194562499920721 +12,229.93300334090122,0.06670525191206882,0.0,59.434379453653314,0.07989337500112015 +13,228.71740877714214,0.06635259900700381,0.0,59.1201657152404,0.07947100000092178 +14,231.33051329738623,0.06711067980777088,0.0,59.79561570872386,0.08037895899906289 +15,229.53188230999976,0.06658888375688998,0.0,59.330695427388974,0.07975399999850197 +16,229.48139935482178,0.0665742382810623,0.0,59.31764630842652,0.07973645900347037 +17,230.42646205313747,0.06684840790633521,0.0,59.561931444544676,0.08006483399731223 +18,231.01585022398586,0.06701939374063993,0.0,59.71427982291018,0.08026962499934598 +19,230.07786450510628,0.06674727719904447,0.0,59.471823984348624,0.07994370899905334 +20,228.97666749951748,0.06642781186525021,0.0,59.187180371937934,0.07956108299913467 +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.08099366700116661 +22,229.52001057054088,0.06658543967813776,0.0,59.32762675322075,0.07974987499983399 +23,211.52748423357997,0.06136567572775746,0.0,54.6768170734319,0.07349812499887776 +24,231.32547392448515,0.06710921784870472,0.0,59.794313103195904,0.08037720799984527 +25,230.29359350566222,0.06680986176549528,0.0,59.52758683305629,0.08001866699851234 +26,231.8720547369228,0.06726778495414064,0.0,59.93559639413931,0.08056712499819696 +27,231.05506295725297,0.06703076964237104,0.0,59.724415751352595,0.08028325000123004 +28,229.7340616961576,0.06664753748075358,0.0,59.382955895351444,0.07982424999863724 +29,228.61583845949133,0.06632313271235606,0.0,59.09391124670925,0.07943570800125599 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..95133492c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4f3d38796 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..364462cbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cd647a6a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8e4e861b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0ece550ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f8953ad9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ef0c04a7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6df8e937e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e4e2b6d4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..385e51f61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..306a8e403 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b6ea9de2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d75be3d1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7c6e710b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..44233da7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..44398f0c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e3dc727e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1707.9951880275325,2.0066518754973948,0.0,471.19530456471324,0.5138533329991333 +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253 +2,1693.5739088739952,1.989708919765806,0.0,467.21681617634067,0.5095146659987222 +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224 +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637 +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599 +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382 +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533 +8,1700.8517194067679,1.998259313969181,0.0,469.2245912418632,0.5117042079982639 +9,1698.8143105967222,1.9958656478520331,0.0,468.66251854312156,0.5110912500022096 +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894 +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684 +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475 +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241 +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905 +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494 +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538 +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385 +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468 +19,1699.5277018289198,1.9967037812754098,0.0,468.8593262398208,0.5113058749993797 +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675 +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391 +22,1697.8531494743247,1.9947364199815838,0.0,468.39735701867556,0.510802083001181 +23,1697.3617679212994,1.9941591164142933,0.0,468.2617965193497,0.5106542500034266 +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853 +25,1699.613843927194,1.9968049860119765,0.0,468.88309079871226,0.511331790999975 +26,1698.3545027196005,1.995325438871667,0.0,468.5356684710486,0.5109529159999511 +27,1698.6356511649763,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842 +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..17aed085b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.5143790184337,0.0,0.0,56.433509332101956,0.07974941700013005 +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043 +2,232.4218146090488,0.0,0.0,56.654704123926024,0.08006200000090757 +3,230.38631370178572,0.0,0.0,56.15853425347324,0.07936083400272764 +4,231.63461351252138,0.0,0.0,56.46281746610602,0.07979083399914089 +5,235.28153305504878,0.0,0.0,57.351783710488874,0.08104708300015773 +6,233.19559212206846,0.0,0.0,56.843318674292625,0.08032854200064321 +7,232.45447362177313,0.0,0.0,56.662665023405225,0.08007325000289711 +8,230.41134935946187,0.0,0.0,56.16463689827264,0.07936945799883688 +9,231.09162631947498,0.0,0.0,56.3304599298013,0.07960379200085299 +10,230.3859508211676,0.0,0.0,56.15844579837669,0.07936070900177583 +11,231.53022371058702,0.0,0.0,56.43737160444242,0.07975487499788869 +12,231.62904551287178,0.0,0.0,56.461460220990105,0.07978891599850613 +13,232.76678951884418,0.0,0.0,56.738794558713785,0.08018083299975842 +14,232.42798352675112,0.0,0.0,56.656207847695576,0.08006412499889848 +15,231.8744757845807,0.0,0.0,56.52128584213549,0.07987345900255605 +16,232.59188239161537,0.0,0.0,56.69615952654616,0.08012058299937053 +17,222.8084544625911,0.0,0.0,54.31136954644485,0.07675049999670591 +18,231.10819677286455,0.0,0.0,56.33449911233486,0.07960950000051525 +19,231.5256282331062,0.0,0.0,56.436251419500124,0.07975329200053238 +20,233.51710189953573,0.0,0.0,56.92168929258419,0.08043929199993727 +21,232.29395967478635,0.0,0.0,56.62353844576622,0.08001795800009859 +22,230.41449623990482,0.0,0.0,56.165403975927155,0.07937054200010607 +23,230.3471199864287,0.0,0.0,56.14898046717825,0.07934733300135122 +24,233.21930111101682,0.0,0.0,56.84909793281966,0.08033670900113066 +25,231.8840296201605,0.0,0.0,56.523614667116625,0.07987674999822048 +26,232.6371201920523,0.0,0.0,56.707186607645596,0.08013616599782836 +27,230.12782273774826,0.0,0.0,56.09552498254536,0.07927179200123646 +28,233.83401619952215,0.0,0.0,56.998939725933454,0.08054845900187502 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0711f3936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e4a3aac4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..70c51b2e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..282f75413 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0e27f8215 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..912d00bc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6b0169e19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f8d21cf8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d7781b21c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bb35edc43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3a88f1dd7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..91a6c1dce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2fe702c5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dda56a8d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..83ad79487 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b5543550e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..83fefed40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f7f12acc0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1707.9951880275325,2.0066518754973948,0.0,471.19530456471324,0.5138533329991333 +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253 +2,1693.5739088739952,1.989708919765806,0.0,467.21681617634067,0.5095146659987222 +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224 +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637 +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599 +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382 +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533 +8,1700.8517194067679,1.998259313969181,0.0,469.2245912418632,0.5117042079982639 +9,1698.8143105967222,1.9958656478520331,0.0,468.66251854312156,0.5110912500022096 +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894 +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684 +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475 +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241 +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905 +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494 +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538 +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385 +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468 +19,1699.5277018289198,1.9967037812754098,0.0,468.8593262398208,0.5113058749993797 +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675 +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391 +22,1697.8531494743247,1.9947364199815838,0.0,468.39735701867556,0.510802083001181 +23,1697.3617679212994,1.9941591164142933,0.0,468.2617965193497,0.5106542500034266 +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853 +25,1699.613843927194,1.9968049860119765,0.0,468.88309079871226,0.511331790999975 +26,1698.3545027196005,1.995325438871667,0.0,468.5356684710486,0.5109529159999511 +27,1698.6356511649763,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842 +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118 +29,1744.0226240557995,2.0489789983032693,0.0,481.1344184515794,0.5246922500009532 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..992653a44 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.5143790184337,0.0,0.0,56.433509332101956,0.07974941700013005 +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043 +2,232.4218146090488,0.0,0.0,56.654704123926024,0.08006200000090757 +3,230.38631370178572,0.0,0.0,56.15853425347324,0.07936083400272764 +4,231.63461351252138,0.0,0.0,56.46281746610602,0.07979083399914089 +5,235.28153305504878,0.0,0.0,57.351783710488874,0.08104708300015773 +6,233.19559212206846,0.0,0.0,56.843318674292625,0.08032854200064321 +7,232.45447362177313,0.0,0.0,56.662665023405225,0.08007325000289711 +8,230.41134935946187,0.0,0.0,56.16463689827264,0.07936945799883688 +9,231.09162631947498,0.0,0.0,56.3304599298013,0.07960379200085299 +10,230.3859508211676,0.0,0.0,56.15844579837669,0.07936070900177583 +11,231.53022371058702,0.0,0.0,56.43737160444242,0.07975487499788869 +12,231.62904551287178,0.0,0.0,56.461460220990105,0.07978891599850613 +13,232.76678951884418,0.0,0.0,56.738794558713785,0.08018083299975842 +14,232.42798352675112,0.0,0.0,56.656207847695576,0.08006412499889848 +15,212.8962049068824,0.0,0.0,51.89517824905821,0.07333604199811816 +16,231.8744757845807,0.0,0.0,56.52128584213549,0.07987345900255605 +17,232.59188239161537,0.0,0.0,56.69615952654616,0.08012058299937053 +18,222.8084544625911,0.0,0.0,54.31136954644485,0.07675049999670591 +19,231.10819677286455,0.0,0.0,56.33449911233486,0.07960950000051525 +20,231.5256282331062,0.0,0.0,56.436251419500124,0.07975329200053238 +21,233.51710189953573,0.0,0.0,56.92168929258419,0.08043929199993727 +22,232.29395967478635,0.0,0.0,56.62353844576622,0.08001795800009859 +23,230.41449623990482,0.0,0.0,56.165403975927155,0.07937054200010607 +24,230.3471199864287,0.0,0.0,56.14898046717825,0.07934733300135122 +25,233.21930111101682,0.0,0.0,56.84909793281966,0.08033670900113066 +26,231.8840296201605,0.0,0.0,56.523614667116625,0.07987674999822048 +27,232.6371201920523,0.0,0.0,56.707186607645596,0.08013616599782836 +28,230.12782273774826,0.0,0.0,56.09552498254536,0.07927179200123646 +29,233.83401619952215,0.0,0.0,56.998939725933454,0.08054845900187502 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..030e5a9e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f482518fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6e8dd8b2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b1a13feca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..84d37c856 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..88b46912b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e1c13767e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a665dee89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..601dedf36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..019cc9ce6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5f00b65b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..855a0b9fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..efcfa7758 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4176d2c77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..9f377cbbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9361aecfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..670de610f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7db2da412 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942 +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453 +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553 +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522 +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363 +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014 +6,1702.066685738554,2.7700300963980387,0.0,474.50949289864235,0.5151506249967497 +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673 +8,1700.0186079028213,2.766696950116356,0.0,473.93852092475123,0.5145307500024501 +9,1682.723315235478,2.738549709108719,0.0,469.11686462780443,0.5092961250011285 +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456 +11,1697.8820088044881,2.763219739819069,0.0,473.34287061141595,0.5138840830004483 +12,1695.3888533669428,2.7591622515579655,0.0,472.64781798374884,0.5131295000028331 +13,1721.2697742922721,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763 +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644 +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555 +16,1693.9193915803341,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454 +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678 +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103 +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901 +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161 +21,1699.9142571169934,2.7665271243276557,0.0,473.90942956253747,0.5144991670022137 +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584 +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284 +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527 +25,1694.6464141966615,2.75795396820241,0.0,472.44083758917907,0.5129047920017911 +26,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241 +27,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143 +28,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c1daee876 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.43170493415641,0.0,0.0,55.90521754742971,0.07943662499747006 +1,224.63081830801715,0.0,0.0,54.975007821206816,0.07811487499930081 +2,229.29176212320093,0.0,0.0,56.115703584254696,0.07973570800095331 +3,230.26313272867944,0.0,0.0,56.35343190237108,0.08007350000116276 +4,230.50408894930908,0.0,0.0,56.412402306403166,0.08015729199905763 +5,231.4912756090507,0.0,0.0,56.654001365468474,0.08050058399749105 +6,231.25858687418443,0.0,0.0,56.597054303994305,0.08041966699965997 +7,233.34570857816618,0.0,0.0,57.10784589022658,0.08114545900025405 +8,234.07839758501586,0.0,0.0,57.28716048376931,0.08140024999738671 +9,232.5652090520479,0.0,0.0,56.91683039254912,0.08087404199977755 +10,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632 +11,229.16762905823126,0.0,0.0,56.08532388716335,0.07969254099953105 +12,231.3745703445235,0.0,0.0,56.62543951060597,0.08045999999740161 +13,230.06686980122603,0.0,0.0,56.305399508361056,0.08000524999806657 +14,232.03033867738873,0.0,0.0,56.78592892830791,0.08068804199865554 +15,235.10392526784702,0.0,0.0,57.53814293047527,0.0817568750026112 +16,233.6283588093202,0.0,0.0,57.177020275047866,0.08124374999897555 +17,228.53918224908054,0.0,0.0,55.93152100068275,0.0794739999982994 +18,230.63636872152338,0.0,0.0,56.44477578732998,0.08020329200007836 +19,230.2772722892251,0.0,0.0,56.356892346745724,0.08007841700236895 +20,230.43650836221164,0.0,0.0,56.3958629760823,0.08013379099793383 +21,228.8680844073801,0.0,0.0,56.01201484770305,0.07958837500336813 +22,222.30861533511248,0.0,0.0,54.40668363684307,0.07730733400239842 +23,229.35538580934664,0.0,0.0,56.131274522694135,0.07975783299843897 +24,231.67831058690103,0.0,0.0,56.69977535786903,0.08056562500132713 +25,217.02748644269255,0.0,0.0,53.114206921704714,0.07547083299868973 +26,229.4719703058166,0.0,0.0,56.159806821394476,0.07979837500170106 +27,230.24671853567142,0.0,0.0,56.349414775977685,0.08006779200150049 +28,232.43436710389946,0.0,0.0,56.88480879739587,0.08082854199892608 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..20955254a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b70c07489 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..36621ed53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2f5d592e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8b678191b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c33d3a9b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b89950827 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d51a36020 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..77a44bfde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6112d706c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d5342c26b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5731bca71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6277e9972 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9bd402936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d3be78f10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3c2655df3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..17e016db6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f73b781a5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942 +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453 +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553 +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522 +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363 +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014 +6,1702.066685738554,2.7700300963980387,0.0,474.50949289864235,0.5151506249967497 +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673 +8,1700.0186079028213,2.766696950116356,0.0,473.93852092475123,0.5145307500024501 +9,1682.723315235478,2.738549709108719,0.0,469.11686462780443,0.5092961250011285 +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456 +11,1697.8820088044881,2.763219739819069,0.0,473.34287061141595,0.5138840830004483 +12,1695.3888533669428,2.7591622515579655,0.0,472.64781798374884,0.5131295000028331 +13,1721.2697742922721,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763 +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644 +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555 +16,1693.9193915803341,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454 +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678 +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103 +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901 +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161 +21,1699.9142571169934,2.7665271243276557,0.0,473.90942956253747,0.5144991670022137 +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584 +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284 +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527 +25,1750.7250904090572,2.8492192647833674,0.0,488.07469285168577,0.5298776670024381 +26,1694.6464141966615,2.75795396820241,0.0,472.44083758917907,0.5129047920017911 +27,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241 +28,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143 +29,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c9936380e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.43170493415641,0.0,0.0,55.90521754742971,0.07943662499747006 +1,224.63081830801715,0.0,0.0,54.975007821206816,0.07811487499930081 +2,229.29176212320093,0.0,0.0,56.115703584254696,0.07973570800095331 +3,230.26313272867944,0.0,0.0,56.35343190237108,0.08007350000116276 +4,230.50408894930908,0.0,0.0,56.412402306403166,0.08015729199905763 +5,231.4912756090507,0.0,0.0,56.654001365468474,0.08050058399749105 +6,231.25858687418443,0.0,0.0,56.597054303994305,0.08041966699965997 +7,215.66143327236227,0.0,0.0,52.7798859933087,0.07499579100112896 +8,233.34570857816618,0.0,0.0,57.10784589022658,0.08114545900025405 +9,234.07839758501586,0.0,0.0,57.28716048376931,0.08140024999738671 +10,232.5652090520479,0.0,0.0,56.91683039254912,0.08087404199977755 +11,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632 +12,229.16762905823126,0.0,0.0,56.08532388716335,0.07969254099953105 +13,231.3745703445235,0.0,0.0,56.62543951060597,0.08045999999740161 +14,230.06686980122603,0.0,0.0,56.305399508361056,0.08000524999806657 +15,232.03033867738873,0.0,0.0,56.78592892830791,0.08068804199865554 +16,235.10392526784702,0.0,0.0,57.53814293047527,0.0817568750026112 +17,233.6283588093202,0.0,0.0,57.177020275047866,0.08124374999897555 +18,228.53918224908054,0.0,0.0,55.93152100068275,0.0794739999982994 +19,230.63636872152338,0.0,0.0,56.44477578732998,0.08020329200007836 +20,230.2772722892251,0.0,0.0,56.356892346745724,0.08007841700236895 +21,230.43650836221164,0.0,0.0,56.3958629760823,0.08013379099793383 +22,228.8680844073801,0.0,0.0,56.01201484770305,0.07958837500336813 +23,222.30861533511248,0.0,0.0,54.40668363684307,0.07730733400239842 +24,229.35538580934664,0.0,0.0,56.131274522694135,0.07975783299843897 +25,231.67831058690103,0.0,0.0,56.69977535786903,0.08056562500132713 +26,217.02748644269255,0.0,0.0,53.114206921704714,0.07547083299868973 +27,229.4719703058166,0.0,0.0,56.159806821394476,0.07979837500170106 +28,230.24671853567142,0.0,0.0,56.349414775977685,0.08006779200150049 +29,232.43436710389946,0.0,0.0,56.88480879739587,0.08082854199892608 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5caaef2e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cd0afe547 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..289121274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5d333aa75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..26a02a795 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3d68a09ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..43f0bf8cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..852b94aba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a46974d37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2c1a6b4b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a520be440 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..49658f49f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b0a705f56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2fa7d089e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..69363a1da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c03a9066d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..fc7735789 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3d2328cc1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516 +1,1708.5795885529985,1.966259571752885,0.0,469.86938478210044,0.5122209580003982 +2,1714.6152742499144,1.9732055313401138,0.0,471.5292336671909,0.5140304169981391 +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946 +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964 +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978 +6,1709.5649903497754,1.9673935872403205,0.0,470.14037604239456,0.5125163749980857 +7,1713.8351537921171,1.972307756763184,0.0,471.31469597634117,0.5137965419999091 +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049 +9,1713.8143061036951,1.9722837649238902,0.0,471.3089627400327,0.5137902919996122 +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476 +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156 +12,1709.0761837999287,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007 +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221 +14,1704.6249223381478,1.9617084812739083,0.0,468.7818284318785,0.5110353749987553 +15,1705.365015246795,1.9625601915339181,0.0,468.98535831248665,0.5112572500001988 +16,1701.6139625675003,1.95824342263171,0.0,467.95379687600814,0.510132709001482 +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774 +18,1707.2698000702223,1.9647522470964953,0.0,469.50918528497436,0.5118282920011552 +19,1713.4863002655775,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812 +20,1688.421819469822,1.9430617022064345,0.0,464.32588032895796,0.5061777909977536 +21,1707.8000251380013,1.9653624382293453,0.0,469.65500028128037,0.5119872499999474 +22,1709.2365675547344,1.9670156332552338,0.0,470.05005785195834,0.5124179159975029 +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883 +24,1702.1062448464766,1.9588099486217938,0.0,468.0891773833673,0.5102802920009708 +25,1709.7403911188364,1.9675954411330918,0.0,470.188612280262,0.5125689589985996 +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112 +27,1713.4480806178635,1.9718623070229762,0.0,471.20824858842275,0.5136805000001914 +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611 +29,1707.9331701381714,1.9655156635357751,0.0,469.69161593543885,0.5120271659980062 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c72844f78 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552 +1,224.81426846497675,0.0,0.0,54.81441236053592,0.07817849999992177 +2,226.5529604006259,0.0,0.0,55.23834175513952,0.07878312500179163 +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438 +4,231.3919661313005,0.0,0.0,56.418192381824795,0.08046587499848101 +5,230.06664937948042,0.0,0.0,56.09505248755288,0.08000499999980093 +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661 +7,233.63006128224424,0.0,0.0,56.96388670693858,0.08124416599821416 +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709 +9,229.45976573945956,0.0,0.0,55.94708158550068,0.07979395800066413 +10,230.95702356067633,0.0,0.0,56.312144302305065,0.08031462500002817 +11,225.23255524946725,0.0,0.0,54.916399411654055,0.07832395799778169 +12,228.58460950675445,0.0,0.0,55.733700224313345,0.07948962499722256 +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901 +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385 +15,229.41974814640807,0.0,0.0,55.937324460820925,0.07978004200049327 +16,227.88570495852065,0.0,0.0,55.56329270361139,0.07924658299816656 +17,230.78556272947074,0.0,0.0,56.270338571870084,0.08025500000076136 +18,231.2199071705155,0.0,0.0,56.37624081491051,0.08040604200141388 +19,228.32004939956542,0.0,0.0,55.669194946651814,0.07939762499881908 +20,229.05094560519663,0.0,0.0,55.84740270135428,0.07965179200255079 +21,228.0491398436106,0.0,0.0,55.60314154081637,0.07930341699830024 +22,229.22600099912444,0.0,0.0,55.8900848612288,0.07971266700042179 +23,229.4193886869974,0.0,0.0,55.93723681711175,0.07977991699954146 +24,228.67255850144622,0.0,0.0,55.75514402543258,0.0795202090012026 +25,230.46097335054304,0.0,0.0,56.19119690445779,0.08014212499983842 +26,235.15859470850614,0.0,0.0,57.33657506923012,0.08177570899715647 +27,229.769617397626,0.0,0.0,56.022629888894855,0.07990170800258056 +28,230.28699632438574,0.0,0.0,56.148777673160055,0.08008162500118488 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a9879bdcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7680c9204 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a1153cf1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bf5a1f7e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..36053830d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..20b91298a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ebd7d7f2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2c35b7a2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b95ade472 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7c9812931 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f6a22cb68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..89d7ddbf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ee1aeccb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..43a2ea552 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a0b98067d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..529d4a429 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1ff3cb933 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3d2328cc1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516 +1,1708.5795885529985,1.966259571752885,0.0,469.86938478210044,0.5122209580003982 +2,1714.6152742499144,1.9732055313401138,0.0,471.5292336671909,0.5140304169981391 +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946 +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964 +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978 +6,1709.5649903497754,1.9673935872403205,0.0,470.14037604239456,0.5125163749980857 +7,1713.8351537921171,1.972307756763184,0.0,471.31469597634117,0.5137965419999091 +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049 +9,1713.8143061036951,1.9722837649238902,0.0,471.3089627400327,0.5137902919996122 +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476 +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156 +12,1709.0761837999287,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007 +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221 +14,1704.6249223381478,1.9617084812739083,0.0,468.7818284318785,0.5110353749987553 +15,1705.365015246795,1.9625601915339181,0.0,468.98535831248665,0.5112572500001988 +16,1701.6139625675003,1.95824342263171,0.0,467.95379687600814,0.510132709001482 +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774 +18,1707.2698000702223,1.9647522470964953,0.0,469.50918528497436,0.5118282920011552 +19,1713.4863002655775,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812 +20,1688.421819469822,1.9430617022064345,0.0,464.32588032895796,0.5061777909977536 +21,1707.8000251380013,1.9653624382293453,0.0,469.65500028128037,0.5119872499999474 +22,1709.2365675547344,1.9670156332552338,0.0,470.05005785195834,0.5124179159975029 +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883 +24,1702.1062448464766,1.9588099486217938,0.0,468.0891773833673,0.5102802920009708 +25,1709.7403911188364,1.9675954411330918,0.0,470.188612280262,0.5125689589985996 +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112 +27,1713.4480806178635,1.9718623070229762,0.0,471.20824858842275,0.5136805000001914 +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611 +29,1707.9331701381714,1.9655156635357751,0.0,469.69161593543885,0.5120271659980062 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f38c6e58a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552 +1,224.81426846497675,0.0,0.0,54.81441236053592,0.07817849999992177 +2,226.5529604006259,0.0,0.0,55.23834175513952,0.07878312500179163 +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438 +4,231.3919661313005,0.0,0.0,56.418192381824795,0.08046587499848101 +5,230.06664937948042,0.0,0.0,56.09505248755288,0.08000499999980093 +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661 +7,233.63006128224424,0.0,0.0,56.96388670693858,0.08124416599821416 +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709 +9,229.45976573945956,0.0,0.0,55.94708158550068,0.07979395800066413 +10,230.95702356067633,0.0,0.0,56.312144302305065,0.08031462500002817 +11,225.23255524946725,0.0,0.0,54.916399411654055,0.07832395799778169 +12,228.58460950675445,0.0,0.0,55.733700224313345,0.07948962499722256 +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901 +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385 +15,229.41974814640807,0.0,0.0,55.937324460820925,0.07978004200049327 +16,227.88570495852065,0.0,0.0,55.56329270361139,0.07924658299816656 +17,215.25272095299798,0.0,0.0,52.48310744957511,0.07485350000206381 +18,230.78556272947074,0.0,0.0,56.270338571870084,0.08025500000076136 +19,231.2199071705155,0.0,0.0,56.37624081491051,0.08040604200141388 +20,228.32004939956542,0.0,0.0,55.669194946651814,0.07939762499881908 +21,229.05094560519663,0.0,0.0,55.84740270135428,0.07965179200255079 +22,228.0491398436106,0.0,0.0,55.60314154081637,0.07930341699830024 +23,229.22600099912444,0.0,0.0,55.8900848612288,0.07971266700042179 +24,229.4193886869974,0.0,0.0,55.93723681711175,0.07977991699954146 +25,228.67255850144622,0.0,0.0,55.75514402543258,0.0795202090012026 +26,230.46097335054304,0.0,0.0,56.19119690445779,0.08014212499983842 +27,235.15859470850614,0.0,0.0,57.33657506923012,0.08177570899715647 +28,229.769617397626,0.0,0.0,56.022629888894855,0.07990170800258056 +29,230.28699632438574,0.0,0.0,56.148777673160055,0.08008162500118488 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..88b3fdc18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7e2787205 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4c1d53d79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..021c69e47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..11e60c52d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a879bd76f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..578f51fe5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2c35b7a2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..30dc70ecf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..702b764e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b1b2daceb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..123837ada Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7c46f52e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..bdee2c4db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..09a62efd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..529d4a429 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..81f632022 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c8ce17f38 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1697.2034238196413,0.43191755593162773,0.0,469.49438329767935,0.5124109589996806 +1,1702.970913758122,0.43338531172514505,0.0,471.08983384523265,0.5141522500016436 +2,1698.55258888602,0.43226090197361666,0.0,469.86760044532133,0.5128182920016116 +3,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953 +4,1704.3090392776437,0.43372584833720357,0.0,471.45999714254026,0.5145562500001688 +5,1696.1240599722423,0.43164287100677623,0.0,469.19580078436576,0.5120850829989649 +6,1698.2136390256214,0.4321746433712405,0.0,469.77383734453844,0.5127159579969884 +7,1701.9096344739723,0.43311522910090716,0.0,470.7962540326861,0.5138318339995749 +8,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588 +9,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589 +10,1705.7160285840569,0.43408390994250023,0.0,471.84921010749775,0.5149810410002829 +11,1727.8322260939053,0.43971221226671825,0.0,477.9671747339228,0.5216582499997457 +12,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364 +13,1702.5864245755272,0.4332874639211059,0.0,470.98347328224213,0.5140361669982667 +14,1699.7292450503628,0.43256034660561665,0.0,470.1930967603053,0.5131735420000041 +15,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262 +16,1691.5910504622384,0.43048927541469956,0.0,467.94184237577844,0.5107165000008536 +17,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608 +18,1697.6634011631045,0.43203461455122755,0.0,469.6216260171843,0.5125498330016853 +19,1697.9111266140835,0.43209765765485747,0.0,469.6901538708301,0.5126246250001714 +20,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183 +21,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172 +22,1695.7074127257792,0.43153683936799186,0.0,469.0805443930072,0.5119592909977655 +23,1695.3634979136232,0.43144931724599384,0.0,468.9854078463953,0.5118554580003547 +24,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883 +25,1698.0149108307794,0.43212406947125526,0.0,469.7188635152545,0.5126559589989483 +26,1693.4629920169104,0.43096566169214484,0.0,468.45967425936146,0.5112816670007305 +27,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756 +28,1714.7917125952802,0.4363935607489505,0.0,474.35980053410924,0.5177211250011169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a80de7de4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.07891887499863515 +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.07919779200165067 +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.07906949999960489 +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.07987041699743713 +4,232.7516641096096,1.0435784766268295,0.0,58.70970526571582,0.08029162499951781 +5,230.06227581740194,1.0315201837343737,0.0,58.03132904621767,0.07936387500012643 +6,230.98301627009252,1.0356484675112623,0.0,58.26357830127876,0.07968149999942398 +7,226.34355984443874,1.0148467392504485,0.0,57.09331333073491,0.0780810409996775 +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.08272620899879257 +9,232.50767840573172,1.0424845285764657,0.0,58.648161865721164,0.08020745800240547 +10,230.61547089220113,1.0340005203439737,0.0,58.170867983222266,0.07955470900196815 +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.08181037499889499 +12,223.25292728760996,1.0009894049632497,0.0,56.313726524384116,0.0770148750016233 +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.07947654199961107 +14,231.05210405201868,1.0359582333833641,0.0,58.281005129696354,0.07970533299885574 +15,230.8566737288988,1.0350819909742355,0.0,58.23170942771182,0.07963791600195691 +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.08014974999969127 +17,235.03425108209285,1.0538128121991435,0.0,59.28546917662278,0.08107904200005578 +18,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.08163566700022784 +19,233.53797138226943,1.0471040082224983,0.0,58.90804484967861,0.08056287499857717 +20,230.25214908541847,1.0323715102181041,0.0,58.07922302646367,0.07942937499683467 +21,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.08002441700227791 +22,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.07980516700263252 +23,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.07635079199826578 +24,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.07934199999726843 +25,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.07908358299755491 +26,236.30393803482494,1.0595056521665567,0.0,59.60573733478951,0.08151704199917731 +27,233.44375945039982,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887 +28,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058001 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..957ba7aba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c79224923 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8880574af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9101f0938 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c16d7c17a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2e6cd94c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..917bd3812 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..686af13fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1451f263a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..238a2cd4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ea18d43a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c477f4513 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7c7ff623d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a161e1599 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..953f0f407 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca127bb3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..0d913355e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d8f366ba2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1697.2034238196413,0.43191755593162773,0.0,469.49438329767935,0.5124109589996806 +1,1702.970913758122,0.43338531172514505,0.0,471.08983384523265,0.5141522500016436 +2,1698.55258888602,0.43226090197361666,0.0,469.86760044532133,0.5128182920016116 +3,1752.3333375660038,0.44594744608496073,0.0,484.74487389435234,0.529055499999231 +4,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953 +5,1704.3090392776437,0.43372584833720357,0.0,471.45999714254026,0.5145562500001688 +6,1696.1240599722423,0.43164287100677623,0.0,469.19580078436576,0.5120850829989649 +7,1698.2136390256214,0.4321746433712405,0.0,469.77383734453844,0.5127159579969884 +8,1701.9096344739723,0.43311522910090716,0.0,470.7962540326861,0.5138318339995749 +9,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588 +10,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589 +11,1705.7160285840569,0.43408390994250023,0.0,471.84921010749775,0.5149810410002829 +12,1727.8322260939053,0.43971221226671825,0.0,477.9671747339228,0.5216582499997457 +13,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364 +14,1702.5864245755272,0.4332874639211059,0.0,470.98347328224213,0.5140361669982667 +15,1699.7292450503628,0.43256034660561665,0.0,470.1930967603053,0.5131735420000041 +16,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262 +17,1691.5910504622384,0.43048927541469956,0.0,467.94184237577844,0.5107165000008536 +18,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608 +19,1697.6634011631045,0.43203461455122755,0.0,469.6216260171843,0.5125498330016853 +20,1697.9111266140835,0.43209765765485747,0.0,469.6901538708301,0.5126246250001714 +21,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183 +22,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172 +23,1695.7074127257792,0.43153683936799186,0.0,469.0805443930072,0.5119592909977655 +24,1695.3634979136232,0.43144931724599384,0.0,468.9854078463953,0.5118554580003547 +25,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883 +26,1698.0149108307794,0.43212406947125526,0.0,469.7188635152545,0.5126559589989483 +27,1693.4629920169104,0.43096566169214484,0.0,468.45967425936146,0.5112816670007305 +28,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756 +29,1714.7917125952802,0.4363935607489505,0.0,474.35980053410924,0.5177211250011169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c38f2bd52 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.07891887499863515 +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.07919779200165067 +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.07906949999960489 +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.07987041699743713 +4,232.7516641096096,1.0435784766268295,0.0,58.70970526571582,0.08029162499951781 +5,230.06227581740194,1.0315201837343737,0.0,58.03132904621767,0.07936387500012643 +6,230.98301627009252,1.0356484675112623,0.0,58.26357830127876,0.07968149999942398 +7,226.34355984443874,1.0148467392504485,0.0,57.09331333073491,0.0780810409996775 +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.08272620899879257 +9,232.50767840573172,1.0424845285764657,0.0,58.648161865721164,0.08020745800240547 +10,230.61547089220113,1.0340005203439737,0.0,58.170867983222266,0.07955470900196815 +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.08181037499889499 +12,223.25292728760996,1.0009894049632497,0.0,56.313726524384116,0.0770148750016233 +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.07947654199961107 +14,231.05210405201868,1.0359582333833641,0.0,58.281005129696354,0.07970533299885574 +15,230.8566737288988,1.0350819909742355,0.0,58.23170942771182,0.07963791600195691 +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.08014974999969127 +17,235.03425108209285,1.0538128121991435,0.0,59.28546917662278,0.08107904200005578 +18,212.53003830129114,0.9529116556754448,0.0,53.608965403160504,0.07331583300037892 +19,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.08163566700022784 +20,233.53797138226943,1.0471040082224983,0.0,58.90804484967861,0.08056287499857717 +21,230.25214908541847,1.0323715102181041,0.0,58.07922302646367,0.07942937499683467 +22,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.08002441700227791 +23,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.07980516700263252 +24,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.07635079199826578 +25,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.07934199999726843 +26,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.07908358299755491 +27,236.30393803482494,1.0595056521665567,0.0,59.60573733478951,0.08151704199917731 +28,233.44375945039982,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887 +29,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058001 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a95a11424 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b050652a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d9a5530c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..763ee6b84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..468dcb979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ff2d34a0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..56e430c6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..751ae9e0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6d1ab3b74 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a14211e27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..576a85dca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..350c42bab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f17a75b1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cb1f9df6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..652ec0a00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8ed6848e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1482ce8a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3c7176120 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1715.2126246543712,1.8781413902593718,0.0,473.25809210624993,0.5145006249986182 +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795 +2,1708.6593202471427,1.870965584721755,0.0,471.44991725015507,0.5125348750007106 +3,1714.9127245161242,1.8778130024813842,0.0,473.1753442502645,0.5144106660009129 +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142 +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918 +6,1705.8313331065865,1.8678689658982606,0.0,470.6696246033992,0.5116865829986637 +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889 +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202 +9,1701.5545581455729,1.8631859382924423,0.0,469.48958527222595,0.5104037080018315 +10,1696.2627985811607,1.8573915122706386,0.0,468.02949338662467,0.5088163750006061 +11,1708.4719339155401,1.8707603984840298,0.0,471.39821398228827,0.512478666001698 +12,1702.070178101452,1.8637505372038894,0.0,469.63185411578723,0.5105583750009828 +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232 +14,1713.0868103835694,1.8758136440006234,0.0,472.67154161594283,0.5138629590001074 +15,1700.5874961044965,1.8621270146230458,0.0,469.22275541688924,0.5101136250013951 +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033 +17,1700.0421524930027,1.8615298685934878,0.0,469.07228528076257,0.5099500420001277 +18,1701.0918613432752,1.8626792897271014,0.0,469.36191888105583,0.5102649159998691 +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436 +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308 +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339 +22,1703.169756399106,1.8649545649045782,0.0,469.93524759586614,0.5108882079985051 +23,1698.6667036618283,1.8600237653017557,0.0,468.69277414594774,0.5095374580014322 +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047 +25,1725.2339947819303,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259 +26,1695.9577611438835,1.8570574991994344,0.0,467.94532805720036,0.5087248750023718 +27,1697.3325132165899,1.8585628395473197,0.0,468.32464694378984,0.5091372499991849 +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549 +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..428916bf6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,233.03169757350443,0.0,0.0,57.14590514588489,0.08058962500217604 +1,230.56252454563102,0.0,0.0,56.540394697697366,0.07973570800095331 +2,229.26155447947494,0.0,0.0,56.2213603655772,0.0792857919987 +3,228.48962291036645,0.0,0.0,56.03206110420322,0.07901883399972576 +4,230.6690331650355,0.0,0.0,56.56651359707923,0.07977254200159223 +5,220.39776413510504,0.0,0.0,54.04771048220629,0.07622041699869442 +6,220.29306275915428,0.0,0.0,54.022034769584245,0.07618420799917658 +7,231.44915659141643,0.0,0.0,56.757821731510106,0.08004233300016494 +8,233.91712382953764,0.0,0.0,57.36303648624681,0.08089583300170489 +9,232.205545892069,0.0,0.0,56.94330959294072,0.08030391599822906 +10,230.29842747184577,0.0,0.0,56.47563069140557,0.07964437500049826 +11,227.92781120901134,0.0,0.0,55.89428912498413,0.07882454200080247 +12,229.44806166938773,0.0,0.0,56.26709715715861,0.07935029199870769 +13,229.2592643478582,0.0,0.0,56.22079876110234,0.07928499999979977 +14,229.88360367044356,0.0,0.0,56.373904265970644,0.07950091599923326 +15,229.66167746902966,0.0,0.0,56.319481739818876,0.07942416700097965 +16,233.48748354361794,0.0,0.0,57.25767664343713,0.08074724999823957 +17,213.5309742305619,0.0,0.0,52.363781091364665,0.07384566700056894 +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171 +19,231.8804855552513,0.0,0.0,56.86359568548564,0.08019150000109221 +20,230.5933690691165,0.0,0.0,56.54795863956332,0.07974637499864912 +21,232.73230003271766,0.0,0.0,57.07248447545736,0.08048608399985824 +22,231.33204741758414,0.0,0.0,56.729103279002494,0.08000183299736818 +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533 +24,229.07625018644575,0.0,0.0,56.17591855803412,0.07922170799793093 +25,230.23830565490223,0.0,0.0,56.460887136412715,0.07962358300210326 +26,231.3146979161939,0.0,0.0,56.724848694878965,0.07999583299897495 +27,227.2761174880526,0.0,0.0,55.734475554770874,0.07859916599772987 +28,231.51747027615198,0.0,0.0,56.77457416213956,0.08006595800179639 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a69f53ac6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6e2e55d79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9c4fc38ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..29088faa0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..560d3a359 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cd6db05d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2b48e37ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bae96b0dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bfd9c9f75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..51a2f814d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1f240d516 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bdacaf989 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bc2e14ffb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0cccfe857 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d7a02001d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c6bbbb8fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..62f2cf0a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3c7176120 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1715.2126246543712,1.8781413902593718,0.0,473.25809210624993,0.5145006249986182 +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795 +2,1708.6593202471427,1.870965584721755,0.0,471.44991725015507,0.5125348750007106 +3,1714.9127245161242,1.8778130024813842,0.0,473.1753442502645,0.5144106660009129 +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142 +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918 +6,1705.8313331065865,1.8678689658982606,0.0,470.6696246033992,0.5116865829986637 +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889 +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202 +9,1701.5545581455729,1.8631859382924423,0.0,469.48958527222595,0.5104037080018315 +10,1696.2627985811607,1.8573915122706386,0.0,468.02949338662467,0.5088163750006061 +11,1708.4719339155401,1.8707603984840298,0.0,471.39821398228827,0.512478666001698 +12,1702.070178101452,1.8637505372038894,0.0,469.63185411578723,0.5105583750009828 +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232 +14,1713.0868103835694,1.8758136440006234,0.0,472.67154161594283,0.5138629590001074 +15,1700.5874961044965,1.8621270146230458,0.0,469.22275541688924,0.5101136250013951 +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033 +17,1700.0421524930027,1.8615298685934878,0.0,469.07228528076257,0.5099500420001277 +18,1701.0918613432752,1.8626792897271014,0.0,469.36191888105583,0.5102649159998691 +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436 +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308 +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339 +22,1703.169756399106,1.8649545649045782,0.0,469.93524759586614,0.5108882079985051 +23,1698.6667036618283,1.8600237653017557,0.0,468.69277414594774,0.5095374580014322 +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047 +25,1725.2339947819303,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259 +26,1695.9577611438835,1.8570574991994344,0.0,467.94532805720036,0.5087248750023718 +27,1697.3325132165899,1.8585628395473197,0.0,468.32464694378984,0.5091372499991849 +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549 +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..43078dd15 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,233.03169757350443,0.0,0.0,57.14590514588489,0.08058962500217604 +1,230.56252454563102,0.0,0.0,56.540394697697366,0.07973570800095331 +2,229.26155447947494,0.0,0.0,56.2213603655772,0.0792857919987 +3,228.48962291036645,0.0,0.0,56.03206110420322,0.07901883399972576 +4,230.6690331650355,0.0,0.0,56.56651359707923,0.07977254200159223 +5,220.39776413510504,0.0,0.0,54.04771048220629,0.07622041699869442 +6,220.29306275915428,0.0,0.0,54.022034769584245,0.07618420799917658 +7,231.44915659141643,0.0,0.0,56.757821731510106,0.08004233300016494 +8,233.91712382953764,0.0,0.0,57.36303648624681,0.08089583300170489 +9,232.205545892069,0.0,0.0,56.94330959294072,0.08030391599822906 +10,230.29842747184577,0.0,0.0,56.47563069140557,0.07964437500049826 +11,227.92781120901134,0.0,0.0,55.89428912498413,0.07882454200080247 +12,229.44806166938773,0.0,0.0,56.26709715715861,0.07935029199870769 +13,229.2592643478582,0.0,0.0,56.22079876110234,0.07928499999979977 +14,229.88360367044356,0.0,0.0,56.373904265970644,0.07950091599923326 +15,229.66167746902966,0.0,0.0,56.319481739818876,0.07942416700097965 +16,233.48748354361794,0.0,0.0,57.25767664343713,0.08074724999823957 +17,213.5309742305619,0.0,0.0,52.363781091364665,0.07384566700056894 +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171 +19,231.8804855552513,0.0,0.0,56.86359568548564,0.08019150000109221 +20,230.5933690691165,0.0,0.0,56.54795863956332,0.07974637499864912 +21,232.73230003271766,0.0,0.0,57.07248447545736,0.08048608399985824 +22,231.33204741758414,0.0,0.0,56.729103279002494,0.08000183299736818 +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533 +24,229.07625018644575,0.0,0.0,56.17591855803412,0.07922170799793093 +25,230.23830565490223,0.0,0.0,56.460887136412715,0.07962358300210326 +26,212.0825304729018,0.0,0.0,52.008582075753125,0.07334474999879603 +27,231.3146979161939,0.0,0.0,56.724848694878965,0.07999583299897495 +28,227.2761174880526,0.0,0.0,55.734475554770874,0.07859916599772987 +29,231.51747027615198,0.0,0.0,56.77457416213956,0.08006595800179639 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d6d9f4057 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..200ae1282 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..25008a424 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..475bd20cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f27f3a1fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..00cabae4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..502c3ffa6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bae96b0dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9c30e81d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1f20c103d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3c3a09e5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f06b4264d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..de389a63d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..40a166a78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..33670b15d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c6bbbb8fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..045850c73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b07f29611 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1687.6458569919557,2.580242062394627,0.0,472.3853552412604,0.5138203749993409 +1,1687.0327514894282,2.5793046852785966,0.0,472.21374218665426,0.5136337090007146 +2,1686.205052807527,2.5780392166109958,0.0,471.98206281253516,0.5133817079986329 +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591 +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687 +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105 +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369 +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193 +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238 +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068 +10,1674.4885384554075,2.560125835654476,0.0,468.7025182496253,0.5098145000010845 +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899 +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134 +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728 +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324 +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712 +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159 +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711 +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754 +19,1677.22863718545,2.564315173108823,0.0,469.46949344565036,0.5106487500015646 +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355 +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079 +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851 +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817 +24,1676.7599119760873,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167 +25,1671.2162151657415,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102 +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854 +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +29,1673.1317650557173,2.5580514645531487,0.0,468.3227466987758,0.509401416999026 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..43b3c7640 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,240.68532811369528,0.0,0.0,56.67665791391861,0.07917604199974448 +1,237.4792714962241,0.0,0.0,55.92169467795753,0.07812137499786331 +2,229.61777289781264,0.0,0.0,54.070466477863675,0.07553525000184891 +3,237.80567816045078,0.0,0.0,55.99855702346976,0.07822875000056229 +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688 +5,243.35345135751976,0.0,0.0,57.30494842729374,0.08005374999993364 +6,243.4134889068341,0.0,0.0,57.319086088575986,0.08007350000116276 +7,244.52633573416657,0.0,0.0,57.58113961480306,0.08043958300186205 +8,247.25107666319172,0.0,0.0,58.222762478767,0.08133591600198997 +9,243.32786471626994,0.0,0.0,57.29892327684254,0.08004533299754257 +10,244.4880849635703,0.0,0.0,57.57213231112975,0.08042699999714387 +11,241.4227502834867,0.0,0.0,56.85030632191656,0.07941862499865238 +12,245.31417120068048,0.0,0.0,57.766659362009946,0.08069875000001048 +13,243.48137844813994,0.0,0.0,57.335072739439504,0.08009583300008671 +14,243.02235721302515,0.0,0.0,57.22698227243133,0.07994483299989952 +15,243.41158898109774,0.0,0.0,57.318638693456954,0.08007287500004168 +16,242.4810070275498,0.0,0.0,57.099504957905,0.07976675000099931 +17,242.8655512932365,0.0,0.0,57.1900575643721,0.07989324999653036 +18,244.21563610620777,0.0,0.0,57.50797596720637,0.08033737499863491 +19,244.89530368100628,0.0,0.0,57.668024304734615,0.08056095899883076 +20,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072 +21,245.05122194988178,0.0,0.0,57.7047399884734,0.08061224999983096 +22,242.19943853992356,0.0,0.0,57.03320112053526,0.07967412500147475 +23,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844 +24,245.99079585749843,0.0,0.0,57.92599115224054,0.08092133299942361 +25,245.43513393916336,0.0,0.0,57.79514370629074,0.08073854200119968 +26,240.29419641988633,0.0,0.0,56.584554097773946,0.07904737499848125 +27,244.3516705522685,0.0,0.0,57.540009401999924,0.08038212500105146 +28,241.889751197847,0.0,0.0,56.96027584634135,0.07957225000063772 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..de8ad9e13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..554c1a9d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..35b8a1238 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..93ba42076 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fbe7eaec2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..afb1feae4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bd79dd20c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..05303c6fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..85b49ce4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ad633ab79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7f66522f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d99ea2282 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cabdca12d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a245ab699 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ae2221622 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7f21de9b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..44e591b82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b07f29611 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1687.6458569919557,2.580242062394627,0.0,472.3853552412604,0.5138203749993409 +1,1687.0327514894282,2.5793046852785966,0.0,472.21374218665426,0.5136337090007146 +2,1686.205052807527,2.5780392166109958,0.0,471.98206281253516,0.5133817079986329 +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591 +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687 +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105 +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369 +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193 +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238 +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068 +10,1674.4885384554075,2.560125835654476,0.0,468.7025182496253,0.5098145000010845 +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899 +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134 +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728 +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324 +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712 +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159 +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711 +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754 +19,1677.22863718545,2.564315173108823,0.0,469.46949344565036,0.5106487500015646 +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355 +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079 +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851 +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817 +24,1676.7599119760873,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167 +25,1671.2162151657415,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102 +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854 +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +29,1673.1317650557173,2.5580514645531487,0.0,468.3227466987758,0.509401416999026 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..05d2ba297 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,240.68532811369528,0.0,0.0,56.67665791391861,0.07917604199974448 +1,237.4792714962241,0.0,0.0,55.92169467795753,0.07812137499786331 +2,229.61777289781264,0.0,0.0,54.070466477863675,0.07553525000184891 +3,237.80567816045078,0.0,0.0,55.99855702346976,0.07822875000056229 +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688 +5,243.35345135751976,0.0,0.0,57.30494842729374,0.08005374999993364 +6,243.4134889068341,0.0,0.0,57.319086088575986,0.08007350000116276 +7,244.52633573416657,0.0,0.0,57.58113961480306,0.08043958300186205 +8,247.25107666319172,0.0,0.0,58.222762478767,0.08133591600198997 +9,243.32786471626994,0.0,0.0,57.29892327684254,0.08004533299754257 +10,244.4880849635703,0.0,0.0,57.57213231112975,0.08042699999714387 +11,241.4227502834867,0.0,0.0,56.85030632191656,0.07941862499865238 +12,245.31417120068048,0.0,0.0,57.766659362009946,0.08069875000001048 +13,243.48137844813994,0.0,0.0,57.335072739439504,0.08009583300008671 +14,243.02235721302515,0.0,0.0,57.22698227243133,0.07994483299989952 +15,243.41158898109774,0.0,0.0,57.318638693456954,0.08007287500004168 +16,242.4810070275498,0.0,0.0,57.099504957905,0.07976675000099931 +17,242.8655512932365,0.0,0.0,57.1900575643721,0.07989324999653036 +18,227.67858753326496,0.0,0.0,53.61382648904712,0.0748973340014345 +19,244.21563610620777,0.0,0.0,57.50797596720637,0.08033737499863491 +20,244.89530368100628,0.0,0.0,57.668024304734615,0.08056095899883076 +21,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072 +22,245.05122194988178,0.0,0.0,57.7047399884734,0.08061224999983096 +23,242.19943853992356,0.0,0.0,57.03320112053526,0.07967412500147475 +24,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844 +25,245.99079585749843,0.0,0.0,57.92599115224054,0.08092133299942361 +26,245.43513393916336,0.0,0.0,57.79514370629074,0.08073854200119968 +27,240.29419641988633,0.0,0.0,56.584554097773946,0.07904737499848125 +28,244.3516705522685,0.0,0.0,57.540009401999924,0.08038212500105146 +29,241.889751197847,0.0,0.0,56.96027584634135,0.07957225000063772 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7b66bad5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..da45c8a20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ae55a8de2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..14d2bd526 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c0468c3c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..75309ffb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f51b78f66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..05303c6fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..865129beb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c639db1d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fb95c3373 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7537251db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1b1abaa43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..43ea85cbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..31a6c04f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7f21de9b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2d427fbed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c04b49783 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695 +1,1781.4314907183507,1.865233779826259,0.0,474.93515118826116,0.512870540998847 +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603 +3,1776.1253612297892,1.8596780388315794,0.0,473.5205206374909,0.511342916997819 +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071 +5,1779.3196350329554,1.8630225780017482,0.0,474.37212392369514,0.5122625419971882 +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342 +7,1775.9211500186464,1.8594642210949854,0.0,473.4660772963107,0.5112841250011115 +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882 +9,1797.5348509506603,1.8820946760383848,0.0,479.22835688627373,0.5175066660012817 +10,1782.1034613760824,1.8659373613989345,0.0,475.11430064620373,0.5130639999988489 +11,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154 +12,1779.8063525884374,1.8635321917760919,0.0,474.5018843309874,0.5124026670018793 +13,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311 +14,1800.139363767342,1.8848217106231986,0.0,479.92272806743193,0.518256499999552 +15,1768.3179047798128,1.8515033031872994,0.0,471.4390285740661,0.5090951659985876 +16,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909 +17,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675 +18,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749 +19,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233 +20,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352 +21,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055 +22,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763 +23,1776.9346756835873,1.8605254251417414,0.0,473.7362863767159,0.5115759170003003 +24,1775.9308478967102,1.8594743751816574,0.0,473.46866278062953,0.5112869170006888 +25,1774.2983217244703,1.857765051540093,0.0,473.03342624839615,0.5108169160012039 +26,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252 +27,1781.2621633934934,1.8650564869874287,0.0,474.890007999174,0.5128217920027964 +28,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..eec5d1949 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,219.4740765737124,0.0,0.0,54.50948419192974,0.07637899999826914 +1,224.61151246000796,0.0,0.0,55.78543889511322,0.07816687500235275 +2,228.51035754085146,0.0,0.0,56.75377209244936,0.0795237089987495 +3,229.6376006964406,0.0,0.0,57.03373883808645,0.07991599999877508 +4,230.7343159231135,0.0,0.0,57.30612354175918,0.08029766699837637 +5,226.04921290785495,0.0,0.0,56.14251209053602,0.07866720799938776 +6,230.46205301041525,0.0,0.0,57.23850320514603,0.08020291699722293 +7,231.10774857892207,0.0,0.0,57.39887081180731,0.08042762500190292 +8,236.03733649309027,0.0,0.0,58.62320353790871,0.08214316699741175 +9,230.05844876046567,0.0,0.0,57.138262393903645,0.08006245900105569 +10,229.0068702685671,0.0,0.0,56.87708803529338,0.07969650000086403 +11,231.19179807051853,0.0,0.0,57.419745689173425,0.08045687499907217 +12,231.6291686756857,0.0,0.0,57.52837285125362,0.08060908399784239 +13,228.26024347869043,0.0,0.0,56.69165273543744,0.07943666700157337 +14,229.64203161645344,0.0,0.0,57.03483931960193,0.07991754199974821 +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065 +16,230.78484044554267,0.0,0.0,57.318672019919575,0.08031524999751127 +17,228.86259822421835,0.0,0.0,56.84125603707502,0.07964629200068885 +18,233.46328968448563,0.0,0.0,57.98390268737843,0.08124737500111223 +19,230.21050220418272,0.0,0.0,57.17602701246824,0.08011537499987753 +20,228.4539624795744,0.0,0.0,56.73976558311954,0.07950408299802803 +21,229.74487946877807,0.0,0.0,57.06038303514221,0.07995333399958326 +22,229.0921151390923,0.0,0.0,56.89825980188594,0.07972616600090987 +23,229.87753688320998,0.0,0.0,57.093330376112064,0.07999950000157696 +24,230.25444357048204,0.0,0.0,57.18694047090059,0.08013066700004856 +25,230.96970050207182,0.0,0.0,57.36458462375144,0.0803795829997398 +26,231.0153171132757,0.0,0.0,57.37591415289732,0.08039545800056658 +27,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631 +28,229.60838883425131,0.0,0.0,57.0264836598664,0.07990583400169271 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..bd440d67b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..716dbebf9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1bc73434e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..076cb84a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f2ecf901b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4d9c13111 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8b32c6e5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..048ce7886 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..163612b24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..95e9b8e50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e929b020a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..21388df02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b48eb3f85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8f5adb269 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3d88c86e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1a206e2e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9bef450cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..33d122e08 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695 +1,1781.4314907183507,1.865233779826259,0.0,474.93515118826116,0.512870540998847 +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603 +3,1776.1253612297892,1.8596780388315794,0.0,473.5205206374909,0.511342916997819 +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071 +5,1779.3196350329554,1.8630225780017482,0.0,474.37212392369514,0.5122625419971882 +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342 +7,1775.9211500186464,1.8594642210949854,0.0,473.4660772963107,0.5112841250011115 +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882 +9,1828.1563779527191,1.9141567041610998,0.0,487.39215079702007,0.5263225419985247 +10,1797.5348509506603,1.8820946760383848,0.0,479.22835688627373,0.5175066660012817 +11,1782.1034613760824,1.8659373613989345,0.0,475.11430064620373,0.5130639999988489 +12,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154 +13,1779.8063525884374,1.8635321917760919,0.0,474.5018843309874,0.5124026670018793 +14,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311 +15,1800.139363767342,1.8848217106231986,0.0,479.92272806743193,0.518256499999552 +16,1768.3179047798128,1.8515033031872994,0.0,471.4390285740661,0.5090951659985876 +17,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909 +18,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675 +19,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749 +20,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233 +21,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352 +22,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055 +23,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763 +24,1776.9346756835873,1.8605254251417414,0.0,473.7362863767159,0.5115759170003003 +25,1775.9308478967102,1.8594743751816574,0.0,473.46866278062953,0.5112869170006888 +26,1774.2983217244703,1.857765051540093,0.0,473.03342624839615,0.5108169160012039 +27,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252 +28,1781.2621633934934,1.8650564869874287,0.0,474.890007999174,0.5128217920027964 +29,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f9b036f7a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,219.4740765737124,0.0,0.0,54.50948419192974,0.07637899999826914 +1,224.61151246000796,0.0,0.0,55.78543889511322,0.07816687500235275 +2,228.51035754085146,0.0,0.0,56.75377209244936,0.0795237089987495 +3,229.6376006964406,0.0,0.0,57.03373883808645,0.07991599999877508 +4,230.7343159231135,0.0,0.0,57.30612354175918,0.08029766699837637 +5,226.04921290785495,0.0,0.0,56.14251209053602,0.07866720799938776 +6,230.46205301041525,0.0,0.0,57.23850320514603,0.08020291699722293 +7,231.10774857892207,0.0,0.0,57.39887081180731,0.08042762500190292 +8,236.03733649309027,0.0,0.0,58.62320353790871,0.08214316699741175 +9,230.05844876046567,0.0,0.0,57.138262393903645,0.08006245900105569 +10,229.0068702685671,0.0,0.0,56.87708803529338,0.07969650000086403 +11,231.19179807051853,0.0,0.0,57.419745689173425,0.08045687499907217 +12,231.6291686756857,0.0,0.0,57.52837285125362,0.08060908399784239 +13,228.26024347869043,0.0,0.0,56.69165273543744,0.07943666700157337 +14,229.64203161645344,0.0,0.0,57.03483931960193,0.07991754199974821 +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065 +16,230.78484044554267,0.0,0.0,57.318672019919575,0.08031524999751127 +17,228.86259822421835,0.0,0.0,56.84125603707502,0.07964629200068885 +18,215.11787003326216,0.0,0.0,53.42755882169722,0.07486300000164192 +19,233.46328968448563,0.0,0.0,57.98390268737843,0.08124737500111223 +20,230.21050220418272,0.0,0.0,57.17602701246824,0.08011537499987753 +21,228.4539624795744,0.0,0.0,56.73976558311954,0.07950408299802803 +22,229.74487946877807,0.0,0.0,57.06038303514221,0.07995333399958326 +23,229.0921151390923,0.0,0.0,56.89825980188594,0.07972616600090987 +24,229.87753688320998,0.0,0.0,57.093330376112064,0.07999950000157696 +25,230.25444357048204,0.0,0.0,57.18694047090059,0.08013066700004856 +26,230.96970050207182,0.0,0.0,57.36458462375144,0.0803795829997398 +27,231.0153171132757,0.0,0.0,57.37591415289732,0.08039545800056658 +28,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631 +29,229.60838883425131,0.0,0.0,57.0264836598664,0.07990583400169271 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c0d7fef7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c60fa7ae4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..944a49dfe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a6b36bb49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2f9f66f78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a489cd9dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a3b270795 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7ca726492 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0a457c58f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c7917212f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c82d393c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ec8b43bd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..14e0b48c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..894ef70d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e0b5afc82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6bf3ae1aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d85afa968 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..512de8217 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1713.1590640651793,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777 +1,1728.2893886349445,2.1460685837030025,0.0,476.25956397396476,0.5165718749994994 +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307 +3,1714.3446896304943,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393 +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168 +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578 +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113 +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508 +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844 +9,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575 +10,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702 +11,1729.394162260291,2.1474404141296954,0.0,476.5640031544385,0.5169020829998772 +12,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946 +13,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174 +14,1724.1615030085018,2.1409428647590096,0.0,475.12205481519084,0.5153380830015521 +15,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531 +16,1717.9330827404174,2.133208849176126,0.0,473.40570757575813,0.5134764579997864 +17,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229 +18,1715.88106060893,2.1306607919708878,0.0,472.84023794316437,0.5128631249972386 +19,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654 +20,1716.7397888432881,2.131727100482537,0.0,473.076875127398,0.5131197919981787 +21,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105 +22,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427 +23,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432 +24,1720.8540106882153,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171 +25,1712.4761217310593,2.1264327776098213,0.0,471.90194906862956,0.511845416000142 +26,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266 +27,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126 +28,1710.0783794175961,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..686466ed9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.74900516849095,0.0,0.0,56.40772130442817,0.07991675000084797 +1,231.44620836593853,0.0,0.0,56.3340205451182,0.07981233299869928 +2,233.38067208769255,0.0,0.0,56.80486912723355,0.0804794169998786 +3,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277 +4,230.28251252118744,0.0,0.0,56.05077690898644,0.07941104199926485 +5,231.06523660858218,0.0,0.0,56.24129199727312,0.07968095800242736 +6,232.49512115383507,0.0,0.0,56.58932597855168,0.08017404199927114 +7,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101 +8,224.10794249743364,0.0,0.0,54.54788620694715,0.07728179200057639 +9,233.06518831792772,0.0,0.0,56.72808035936796,0.08037062500079628 +10,230.32105483741717,0.0,0.0,56.06015811099304,0.07942433300195262 +11,231.99791348728908,0.0,0.0,56.46830560366566,0.08000258399988525 +12,231.9559841150949,0.0,0.0,56.4580999920408,0.07998812499863561 +13,231.27282163561787,0.0,0.0,56.291818204898,0.07975254200209747 +14,232.3729636964068,0.0,0.0,56.55959284632588,0.08013191699865274 +15,230.21448714015344,0.0,0.0,56.03421952729583,0.07938758400268853 +16,232.06509211751913,0.0,0.0,56.48465688616146,0.08002575000136858 +17,233.97236945534013,0.0,0.0,56.94888830085012,0.08068345900028362 +18,214.36216993645792,0.0,0.0,52.17576460014163,0.07392104199971072 +19,232.36365799337193,0.0,0.0,56.557327837667266,0.08012870800303062 +20,232.1677971782116,0.0,0.0,56.509655303893105,0.08006116700198618 +21,231.68605456379217,0.0,0.0,56.392399123592,0.07989504199940711 +22,230.5801127299852,0.0,0.0,56.123212817075014,0.07951366699853679 +23,231.682548612676,0.0,0.0,56.39154577488691,0.07989383300082409 +24,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836 +25,224.88571357316403,0.0,0.0,54.73719573190735,0.07754999999815482 +26,230.4003201673142,0.0,0.0,56.07945129688906,0.07945166700301343 +27,232.91258211809028,0.0,0.0,56.69093600147309,0.08031800000026124 +28,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2abbf3917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e02ab3079 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c0fa8f8cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3a071a05d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ebd3d1aeb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9cbe3f8c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bae44c5aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..286e2dc3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2b7a6bb16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..de8b3cd30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..720e2ec28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c2d240e73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..34b3b2c6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dfa686033 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9cc3c5a48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b83187ff9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d224d9625 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..50f9de572 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1713.1590640651793,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777 +1,1728.2893886349445,2.1460685837030025,0.0,476.25956397396476,0.5165718749994994 +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307 +3,1714.3446896304943,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393 +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168 +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578 +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113 +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508 +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844 +9,1748.2277475268788,2.1708266397958953,0.0,481.7539182034547,0.5225312910006323 +10,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575 +11,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702 +12,1729.394162260291,2.1474404141296954,0.0,476.5640031544385,0.5169020829998772 +13,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946 +14,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174 +15,1724.1615030085018,2.1409428647590096,0.0,475.12205481519084,0.5153380830015521 +16,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531 +17,1717.9330827404174,2.133208849176126,0.0,473.40570757575813,0.5134764579997864 +18,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229 +19,1715.88106060893,2.1306607919708878,0.0,472.84023794316437,0.5128631249972386 +20,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654 +21,1716.7397888432881,2.131727100482537,0.0,473.076875127398,0.5131197919981787 +22,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105 +23,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427 +24,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432 +25,1720.8540106882153,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171 +26,1712.4761217310593,2.1264327776098213,0.0,471.90194906862956,0.511845416000142 +27,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266 +28,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126 +29,1710.0783794175961,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e6fce9fc6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,211.7681052623423,0.0,0.0,51.544369107950445,0.07302650000201538 +1,231.74900516849095,0.0,0.0,56.40772130442817,0.07991675000084797 +2,231.44620836593853,0.0,0.0,56.3340205451182,0.07981233299869928 +3,233.38067208769255,0.0,0.0,56.80486912723355,0.0804794169998786 +4,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277 +5,230.28251252118744,0.0,0.0,56.05077690898644,0.07941104199926485 +6,231.06523660858218,0.0,0.0,56.24129199727312,0.07968095800242736 +7,232.49512115383507,0.0,0.0,56.58932597855168,0.08017404199927114 +8,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101 +9,224.10794249743364,0.0,0.0,54.54788620694715,0.07728179200057639 +10,233.06518831792772,0.0,0.0,56.72808035936796,0.08037062500079628 +11,230.32105483741717,0.0,0.0,56.06015811099304,0.07942433300195262 +12,231.99791348728908,0.0,0.0,56.46830560366566,0.08000258399988525 +13,231.9559841150949,0.0,0.0,56.4580999920408,0.07998812499863561 +14,231.27282163561787,0.0,0.0,56.291818204898,0.07975254200209747 +15,232.3729636964068,0.0,0.0,56.55959284632588,0.08013191699865274 +16,230.21448714015344,0.0,0.0,56.03421952729583,0.07938758400268853 +17,232.06509211751913,0.0,0.0,56.48465688616146,0.08002575000136858 +18,233.97236945534013,0.0,0.0,56.94888830085012,0.08068345900028362 +19,214.36216993645792,0.0,0.0,52.17576460014163,0.07392104199971072 +20,232.36365799337193,0.0,0.0,56.557327837667266,0.08012870800303062 +21,232.1677971782116,0.0,0.0,56.509655303893105,0.08006116700198618 +22,231.68605456379217,0.0,0.0,56.392399123592,0.07989504199940711 +23,230.5801127299852,0.0,0.0,56.123212817075014,0.07951366699853679 +24,231.682548612676,0.0,0.0,56.39154577488691,0.07989383300082409 +25,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836 +26,224.88571357316403,0.0,0.0,54.73719573190735,0.07754999999815482 +27,230.4003201673142,0.0,0.0,56.07945129688906,0.07945166700301343 +28,232.91258211809028,0.0,0.0,56.69093600147309,0.08031800000026124 +29,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f4c939966 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3600b4560 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f73bf4f30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cc2772d78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..21f09fc99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fcbf3d5c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..65f73300e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..90ebedee9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..857076744 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ddbafc8f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..19dc8a232 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d248e7ba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f70fb9fbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f4039d975 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2660098e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b0ab98644 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2b202cc88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2a5a4e332 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1700.6486549674398,2.2455453053253414,0.0,471.7991233293258,0.5144435829970462 +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695 +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564 +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469 +4,1710.1798343752503,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836 +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368 +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275 +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373 +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759 +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611 +10,1701.9282747589207,2.247234921935432,0.0,472.1541193445534,0.5148306660012167 +11,1688.9306908234441,2.230072844688242,0.0,468.5482900697967,0.5108989170003042 +12,1689.5541088888795,2.2308960091355274,0.0,468.72124060598236,0.5110874999991211 +13,1689.9560382136613,2.2314267187007863,0.0,468.83274506195477,0.5112090829970839 +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964 +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932 +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191 +17,1694.2118484628922,2.2370461126288634,0.0,470.0134048877091,0.5124964590031595 +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352004,0.5130589580003289 +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098 +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675 +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118 +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824 +23,1685.6937585346259,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166 +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946 +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076 +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012 +27,1689.4828952994171,2.2308019783426145,0.0,468.70148431535796,0.5110659579986532 +28,1692.2129390426721,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244 +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c3bbb4b6e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,232.9169939317484,0.0,0.0,56.31584657411337,0.08029879099922255 +1,237.47883911982245,0.0,0.0,57.41883253219986,0.08187150000230758 +2,235.63126033438007,0.0,0.0,56.972115606748524,0.08123454200176639 +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643 +4,233.22591381073582,0.0,0.0,56.39053878190413,0.08040529199934099 +5,232.05152169027792,0.0,0.0,56.10658832660616,0.08000041700142901 +6,231.51224545439288,0.0,0.0,55.976199395989674,0.07981449999715551 +7,230.47563320063986,0.0,0.0,55.72556205238602,0.07945712499713409 +8,237.39157949081192,0.0,0.0,57.39773445860497,0.08184141699894099 +9,238.7171669043764,0.0,0.0,57.71824167511468,0.08229841700085672 +10,233.33565330551497,0.0,0.0,56.41707215092448,0.08044312499987427 +11,231.42716131362363,0.0,0.0,55.95562732292378,0.07978516699949978 +12,235.6416532820299,0.0,0.0,56.97462846609562,0.08123812499979977 +13,231.260615912246,0.0,0.0,55.91535913504585,0.07972775000234833 +14,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142 +15,231.26617350593338,0.0,0.0,55.916702878102704,0.07972966599845677 +16,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022 +17,237.3270376003675,0.0,0.0,57.38212919452134,0.08181916600005934 +18,234.63030260863508,0.0,0.0,56.7300989949132,0.08088945900090039 +19,231.03231320527357,0.0,0.0,55.860158954066,0.07964904199980083 +20,233.7110410932738,0.0,0.0,56.50783530523265,0.08057254099912825 +21,231.71746496061323,0.0,0.0,56.02581840416606,0.07988525000109803 +22,227.65827556405924,0.0,0.0,55.04436710079492,0.07848583300074097 +23,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255 +24,231.77136734596337,0.0,0.0,56.03885119499903,0.07990383300057147 +25,233.15122261761638,0.0,0.0,56.372479568185334,0.08037954199971864 +26,230.73777754985747,0.0,0.0,55.78894463646289,0.07954750000135391 +27,232.8224856404988,0.0,0.0,56.29299588237056,0.08026620899909176 +28,237.83126552404042,0.0,0.0,57.50404396728485,0.08199299999978393 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..26960fb21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d302ea6e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..fbdffc39b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5e5444aa1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d3d1995c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cb82ff205 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6e76e6339 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..52bbce68e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4ecbf8e82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d99eb0adc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f49199ce0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1e28f9f49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f1f7af825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..49bddd95b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c383a85b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3a2cbc251 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c750ccdf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2a5a4e332 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1700.6486549674398,2.2455453053253414,0.0,471.7991233293258,0.5144435829970462 +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695 +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564 +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469 +4,1710.1798343752503,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836 +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368 +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275 +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373 +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759 +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611 +10,1701.9282747589207,2.247234921935432,0.0,472.1541193445534,0.5148306660012167 +11,1688.9306908234441,2.230072844688242,0.0,468.5482900697967,0.5108989170003042 +12,1689.5541088888795,2.2308960091355274,0.0,468.72124060598236,0.5110874999991211 +13,1689.9560382136613,2.2314267187007863,0.0,468.83274506195477,0.5112090829970839 +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964 +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932 +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191 +17,1694.2118484628922,2.2370461126288634,0.0,470.0134048877091,0.5124964590031595 +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352004,0.5130589580003289 +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098 +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675 +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118 +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824 +23,1685.6937585346259,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166 +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946 +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076 +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012 +27,1689.4828952994171,2.2308019783426145,0.0,468.70148431535796,0.5110659579986532 +28,1692.2129390426721,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244 +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..be6999e58 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,232.9169939317484,0.0,0.0,56.31584657411337,0.08029879099922255 +1,237.47883911982245,0.0,0.0,57.41883253219986,0.08187150000230758 +2,235.63126033438007,0.0,0.0,56.972115606748524,0.08123454200176639 +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643 +4,233.22591381073582,0.0,0.0,56.39053878190413,0.08040529199934099 +5,232.05152169027792,0.0,0.0,56.10658832660616,0.08000041700142901 +6,231.51224545439288,0.0,0.0,55.976199395989674,0.07981449999715551 +7,230.47563320063986,0.0,0.0,55.72556205238602,0.07945712499713409 +8,237.39157949081192,0.0,0.0,57.39773445860497,0.08184141699894099 +9,238.7171669043764,0.0,0.0,57.71824167511468,0.08229841700085672 +10,233.33565330551497,0.0,0.0,56.41707215092448,0.08044312499987427 +11,213.50066847479712,0.0,0.0,51.62126939016117,0.07360495800094213 +12,231.42716131362363,0.0,0.0,55.95562732292378,0.07978516699949978 +13,235.6416532820299,0.0,0.0,56.97462846609562,0.08123812499979977 +14,231.260615912246,0.0,0.0,55.91535913504585,0.07972775000234833 +15,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142 +16,231.26617350593338,0.0,0.0,55.916702878102704,0.07972966599845677 +17,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022 +18,237.3270376003675,0.0,0.0,57.38212919452134,0.08181916600005934 +19,234.63030260863508,0.0,0.0,56.7300989949132,0.08088945900090039 +20,231.03231320527357,0.0,0.0,55.860158954066,0.07964904199980083 +21,233.7110410932738,0.0,0.0,56.50783530523265,0.08057254099912825 +22,231.71746496061323,0.0,0.0,56.02581840416606,0.07988525000109803 +23,227.65827556405924,0.0,0.0,55.04436710079492,0.07848583300074097 +24,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255 +25,231.77136734596337,0.0,0.0,56.03885119499903,0.07990383300057147 +26,233.15122261761638,0.0,0.0,56.372479568185334,0.08037954199971864 +27,230.73777754985747,0.0,0.0,55.78894463646289,0.07954750000135391 +28,232.8224856404988,0.0,0.0,56.29299588237056,0.08026620899909176 +29,237.83126552404042,0.0,0.0,57.50404396728485,0.08199299999978393 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3c69fb1f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..72c129421 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d3d3499a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d87058b12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5faa2d672 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9caafd1ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f501530af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..52bbce68e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dae0d39d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..98cfa9981 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1a8c0fc96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9013bc7cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d5d1fae9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7fcc79f03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..41ecf9dbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3a2cbc251 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a81abfe6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ac6491bbe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931 +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782 +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094 +3,1677.138960668916,0.7677832068506811,0.0,468.28099242179803,0.5116080420011713 +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182 +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746 +6,1665.3088555742995,0.7623674623954318,0.0,464.97785923839643,0.5079992909995781 +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733 +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189 +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731 +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449 +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992 +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349 +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844 +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853 +15,1664.5897099541967,0.7620382422512794,0.0,464.77706357830203,0.507779916999425 +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326 +17,1674.6639410974453,0.7666501591377807,0.0,467.58993184281684,0.5108530420002353 +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989 +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774 +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128 +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219 +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212 +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154 +24,1672.1874201243459,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954 +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098 +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352 +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691 +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941 +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..013ecf684 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.07091032445197,0.9675218595739399,0.0,58.35157697913175,0.0799369160013157 +1,227.65017155015875,0.9531988124393017,0.0,57.48774906745996,0.0787535419985943 +2,230.51493989102954,0.9651939441004702,0.0,58.211179594197326,0.07974458299941034 +3,234.6926746579278,0.9826866250476329,0.0,59.26616921407965,0.08118983299937099 +4,232.37014607795874,0.9729619168727698,0.0,58.67966871070601,0.08038637499703327 +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.07709883400093531 +6,237.31390729238282,0.9936620432398358,0.0,59.928100469878366,0.08209662499939441 +7,230.30332002617052,0.9643078661217073,0.0,58.157739925754,0.07967137499872479 +8,230.46507591515578,0.9649851576002769,0.0,58.19858760837532,0.07972733300266555 +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019 +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.07951470799889648 +11,230.59611846684558,0.9655338486194806,0.0,58.23167935294729,0.07977266600209987 +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.08271716700255638 +13,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.08086712500153226 +14,231.67843288576282,0.9700656300443433,0.0,58.50499265336401,0.08014708300106577 +15,230.71487857136052,0.9660311115462684,0.0,58.261669451531844,0.0798137499987206 +16,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.08009408300131327 +17,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.07971449999968172 +18,231.78587024977804,0.9705154832866825,0.0,58.5321234575313,0.08018424999681883 +19,231.19713702261603,0.9680503860317449,0.0,58.38345259205248,0.07998058299926925 +20,230.58287343156198,0.9654783900541867,0.0,58.228334627750776,0.07976808400053415 +21,231.63676104641166,0.9698911450109643,0.0,58.49446940083367,0.08013266700072563 +22,232.1529848272166,0.9720526364408435,0.0,58.62482969431156,0.08031125000343309 +23,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.07993208300104016 +24,232.75243664028173,0.9745626137118351,0.0,58.77620728903447,0.08051862499996787 +25,232.66162348649672,0.9741823680491489,0.0,58.75327454199867,0.08048720900114859 +26,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.07947312499891268 +27,230.7071720615588,0.9659988434572921,0.0,58.259723351958755,0.07981108400053927 +28,230.77582537158145,0.9662863031729515,0.0,58.27706014653421,0.07983483399948454 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..13e837861 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..783eeaac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..259d5e150 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d74eb7982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0c20cb60b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4d28b411a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c1d7a372f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d8cb52184 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..18e877410 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a6fefb5a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0e1087c00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7d936fe5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a1321eefc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f0d299b54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0934b12f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0944b8936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2ea8f0436 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ac6491bbe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931 +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782 +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094 +3,1677.138960668916,0.7677832068506811,0.0,468.28099242179803,0.5116080420011713 +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182 +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746 +6,1665.3088555742995,0.7623674623954318,0.0,464.97785923839643,0.5079992909995781 +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733 +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189 +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731 +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449 +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992 +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349 +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844 +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853 +15,1664.5897099541967,0.7620382422512794,0.0,464.77706357830203,0.507779916999425 +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326 +17,1674.6639410974453,0.7666501591377807,0.0,467.58993184281684,0.5108530420002353 +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989 +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774 +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128 +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219 +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212 +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154 +24,1672.1874201243459,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954 +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098 +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352 +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691 +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941 +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..713194591 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,231.07091032445197,0.9675218595739399,0.0,58.35157697913175,0.0799369160013157 +1,227.65017155015875,0.9531988124393017,0.0,57.48774906745996,0.0787535419985943 +2,230.51493989102954,0.9651939441004702,0.0,58.211179594197326,0.07974458299941034 +3,234.6926746579278,0.9826866250476329,0.0,59.26616921407965,0.08118983299937099 +4,232.37014607795874,0.9729619168727698,0.0,58.67966871070601,0.08038637499703327 +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.07709883400093531 +6,237.31390729238282,0.9936620432398358,0.0,59.928100469878366,0.08209662499939441 +7,230.30332002617052,0.9643078661217073,0.0,58.157739925754,0.07967137499872479 +8,230.46507591515578,0.9649851576002769,0.0,58.19858760837532,0.07972733300266555 +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019 +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.07951470799889648 +11,230.59611846684558,0.9655338486194806,0.0,58.23167935294729,0.07977266600209987 +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.08271716700255638 +13,214.01309135748147,0.8960987076764312,0.0,54.04402205951994,0.07403591600086656 +14,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.08086712500153226 +15,231.67843288576282,0.9700656300443433,0.0,58.50499265336401,0.08014708300106577 +16,230.71487857136052,0.9660311115462684,0.0,58.261669451531844,0.0798137499987206 +17,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.08009408300131327 +18,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.07971449999968172 +19,231.78587024977804,0.9705154832866825,0.0,58.5321234575313,0.08018424999681883 +20,231.19713702261603,0.9680503860317449,0.0,58.38345259205248,0.07998058299926925 +21,230.58287343156198,0.9654783900541867,0.0,58.228334627750776,0.07976808400053415 +22,231.63676104641166,0.9698911450109643,0.0,58.49446940083367,0.08013266700072563 +23,232.1529848272166,0.9720526364408435,0.0,58.62482969431156,0.08031125000343309 +24,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.07993208300104016 +25,232.75243664028173,0.9745626137118351,0.0,58.77620728903447,0.08051862499996787 +26,232.66162348649672,0.9741823680491489,0.0,58.75327454199867,0.08048720900114859 +27,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.07947312499891268 +28,230.7071720615588,0.9659988434572921,0.0,58.259723351958755,0.07981108400053927 +29,230.77582537158145,0.9662863031729515,0.0,58.27706014653421,0.07983483399948454 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5a752cf14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..74bbd0611 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..fb7eee7b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..06f0a6b0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..dedfa4cf9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f5e46e881 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1bef9f392 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..df2504533 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bcc0f61e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f3d9ca3e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f5002633b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b61f4405a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ddc4267a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ff2634fb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3fa100313 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..08df0ce15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b04c27be4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..58606b062 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1732.0687055344301,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916 +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742 +2,1714.7743044983765,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323 +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244 +4,1718.4740985032195,0.8668385565940498,0.0,470.1265571743345,0.51150675000099 +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666 +6,1723.3339429500197,0.8692899758788708,0.0,471.4560749949214,0.512953290999576 +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181 +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825 +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474 +10,1722.9278508751697,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269 +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256 +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189 +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964 +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105 +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909 +16,1717.1701415920413,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535 +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987 +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623 +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693 +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156 +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148 +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023 +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228 +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297 +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899 +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371 +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394 +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368 +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9418aca64 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.08284687500054133 +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248 +2,491.68411173811717,0.8712456147475667,0.0,76.43504797073845,0.07840737500009709 +3,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.07974516700051026 +4,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.07371654100279557 +5,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.08070095799848787 +6,514.8391200881973,0.9122754121374723,0.0,80.03462365713747,0.0820998339986545 +7,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.07511450000311015 +8,484.35814318072363,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234 +9,500.52868318362573,0.8869178602040666,0.0,77.80998612021061,0.07981779200054007 +10,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.07957325000097626 +11,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.08035362499867915 +12,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.07949825000105193 +13,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.07623408400104381 +14,497.84291067254077,0.8821587730856716,0.0,77.39246774647758,0.07938949999879696 +15,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.07717087500350317 +16,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.07935070899839047 +17,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752 +18,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.07523424999817507 +19,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.07746000000042841 +20,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.07479041700207745 +21,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.07449445900056162 +22,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.07777600000190432 +23,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.07944012499865494 +24,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.07879425000282936 +25,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.07996862499931012 +26,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.07926666699859197 +27,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.07597354199970141 +28,509.06075103220076,0.9020363611284141,0.0,79.13634383591972,0.08117837499958114 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c7fcb44cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..305781703 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c311d1ee8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9c253b2d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f2ffe22fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..974ab1e42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..80e3c041e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..137b96693 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e2bb7bc5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0cf0fa85b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7eeec87ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..97d192b11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e1a9530a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b60486840 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ad903a6a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..29e13953e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..769bfe9c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..58606b062 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1732.0687055344301,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916 +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742 +2,1714.7743044983765,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323 +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244 +4,1718.4740985032195,0.8668385565940498,0.0,470.1265571743345,0.51150675000099 +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666 +6,1723.3339429500197,0.8692899758788708,0.0,471.4560749949214,0.512953290999576 +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181 +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825 +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474 +10,1722.9278508751697,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269 +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256 +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189 +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964 +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105 +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909 +16,1717.1701415920413,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535 +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987 +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623 +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693 +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156 +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148 +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023 +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228 +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297 +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899 +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371 +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394 +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368 +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6d4afb812 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.08284687500054133 +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248 +2,403.3808155336163,0.7147755199259882,0.0,62.70780619042996,0.06432591600241722 +3,491.68411173811717,0.8712456147475667,0.0,76.43504797073845,0.07840737500009709 +4,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.07974516700051026 +5,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.07371654100279557 +6,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.08070095799848787 +7,514.8391200881973,0.9122754121374723,0.0,80.03462365713747,0.0820998339986545 +8,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.07511450000311015 +9,484.35814318072363,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234 +10,500.52868318362573,0.8869178602040666,0.0,77.80998612021061,0.07981779200054007 +11,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.07957325000097626 +12,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.08035362499867915 +13,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.07949825000105193 +14,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.07623408400104381 +15,497.84291067254077,0.8821587730856716,0.0,77.39246774647758,0.07938949999879696 +16,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.07717087500350317 +17,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.07935070899839047 +18,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752 +19,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.07523424999817507 +20,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.07746000000042841 +21,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.07479041700207745 +22,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.07449445900056162 +23,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.07777600000190432 +24,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.07944012499865494 +25,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.07879425000282936 +26,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.07996862499931012 +27,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.07926666699859197 +28,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.07597354199970141 +29,509.06075103220076,0.9020363611284141,0.0,79.13634383591972,0.08117837499958114 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..800328bef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4f749399b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2de8d40d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bf321e5ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..de5b6e005 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..76ff41b58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0381c1798 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c6b2bb302 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..705abe1ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..434396cab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6da06dea5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bb7148df1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9ef86e4c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..23d25d6a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..87c9d2b42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f0cff5f12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7f067b17b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a0df12d98 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.6861586522207,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038 +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148 +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852 +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037 +4,1681.3039830173152,2.5037288286533763,0.0,471.33529775676027,0.5120100000021921 +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298 +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512 +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499 +8,1673.0168005136268,2.4913878968811454,0.0,469.0120762141986,0.5094862920013838 +9,1674.6516856505996,2.493822500671014,0.0,469.47039849298733,0.5099841660012316 +10,1674.6326695540079,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829 +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715 +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677 +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509 +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898 +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368 +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927 +17,1674.9585800219634,2.4942795151625616,0.0,469.55643299440277,0.5100776250001218 +18,1677.5125031328741,2.498082712551933,0.0,470.27239758027656,0.5108553749996645 +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581 +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195 +21,1692.7334251702798,2.520749084420836,0.0,474.53941763917044,0.5154906250027125 +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146 +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418 +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472 +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981 +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635 +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165 +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868 +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c59d195b8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.0955342560187,0.0,0.0,57.8043656552693,0.08040412499758531 +1,240.37357538885556,0.0,0.0,57.15712585245829,0.07950383400020655 +2,240.57790726684235,0.0,0.0,57.205712819003466,0.07957141700171633 +3,241.00357775344693,0.0,0.0,57.306930690124176,0.07971220800027368 +4,228.7827823794463,0.0,0.0,54.40101418878283,0.07567016600296483 +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123004 +6,239.8171358810357,0.0,0.0,57.024813126626064,0.07931979099885211 +7,243.10473150771742,0.0,0.0,57.80655261975568,0.08040716699906625 +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972 +9,241.96893194067064,0.0,0.0,57.53647701476525,0.08003149999785819 +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959002 +11,226.91166561939926,0.0,0.0,53.95609150555676,0.07505129200217198 +12,241.0369623717528,0.0,0.0,57.314869037036715,0.07972325000082492 +13,259.1807637955834,0.0,0.0,61.629184950282394,0.08572433299923432 +14,245.7031080501689,0.0,0.0,58.42440645335082,0.08126658300170675 +15,240.7667441033004,0.0,0.0,57.25061530385252,0.07963387500058161 +16,239.96490559435284,0.0,0.0,57.059950483498945,0.07936866599993664 +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382 +18,244.9626238231499,0.0,0.0,58.2483307341832,0.08102166699973168 +19,244.61392358457164,0.0,0.0,58.16541519994048,0.08090633399842773 +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304 +21,240.89272099625768,0.0,0.0,57.280570664434954,0.07967554200149607 +22,232.55651691475,0.0,0.0,55.29835001040627,0.07691833300123108 +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555 +24,242.54275309588132,0.0,0.0,57.67292282804619,0.08022129199889605 +25,242.09024671523045,0.0,0.0,57.5653237955566,0.08007162499779952 +26,234.0747792582066,0.0,0.0,55.65936935998167,0.07742050000160816 +27,240.06505943827122,0.0,0.0,57.08376552162113,0.07940179199795239 +28,237.81349047900775,0.0,0.0,56.548377178031686,0.07865708299868857 +29,243.5262478163098,0.0,0.0,57.90678269146844,0.08054658399851178 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..694ac8d08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f5c68e7c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6d928690d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0872d5801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..751951fb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..465639620 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a9d88c0e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..64572156e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..30a6ed2fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3cd546709 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f6b6c64ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..09febe67a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fcca87112 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..773333fe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4d9307e65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4e42dea37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a442ab1d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a0df12d98 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.6861586522207,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038 +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148 +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852 +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037 +4,1681.3039830173152,2.5037288286533763,0.0,471.33529775676027,0.5120100000021921 +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298 +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512 +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499 +8,1673.0168005136268,2.4913878968811454,0.0,469.0120762141986,0.5094862920013838 +9,1674.6516856505996,2.493822500671014,0.0,469.47039849298733,0.5099841660012316 +10,1674.6326695540079,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829 +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715 +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677 +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509 +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898 +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368 +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927 +17,1674.9585800219634,2.4942795151625616,0.0,469.55643299440277,0.5100776250001218 +18,1677.5125031328741,2.498082712551933,0.0,470.27239758027656,0.5108553749996645 +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581 +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195 +21,1692.7334251702798,2.520749084420836,0.0,474.53941763917044,0.5154906250027125 +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146 +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418 +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472 +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981 +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635 +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165 +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868 +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c59d195b8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.0955342560187,0.0,0.0,57.8043656552693,0.08040412499758531 +1,240.37357538885556,0.0,0.0,57.15712585245829,0.07950383400020655 +2,240.57790726684235,0.0,0.0,57.205712819003466,0.07957141700171633 +3,241.00357775344693,0.0,0.0,57.306930690124176,0.07971220800027368 +4,228.7827823794463,0.0,0.0,54.40101418878283,0.07567016600296483 +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123004 +6,239.8171358810357,0.0,0.0,57.024813126626064,0.07931979099885211 +7,243.10473150771742,0.0,0.0,57.80655261975568,0.08040716699906625 +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972 +9,241.96893194067064,0.0,0.0,57.53647701476525,0.08003149999785819 +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959002 +11,226.91166561939926,0.0,0.0,53.95609150555676,0.07505129200217198 +12,241.0369623717528,0.0,0.0,57.314869037036715,0.07972325000082492 +13,259.1807637955834,0.0,0.0,61.629184950282394,0.08572433299923432 +14,245.7031080501689,0.0,0.0,58.42440645335082,0.08126658300170675 +15,240.7667441033004,0.0,0.0,57.25061530385252,0.07963387500058161 +16,239.96490559435284,0.0,0.0,57.059950483498945,0.07936866599993664 +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382 +18,244.9626238231499,0.0,0.0,58.2483307341832,0.08102166699973168 +19,244.61392358457164,0.0,0.0,58.16541519994048,0.08090633399842773 +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304 +21,240.89272099625768,0.0,0.0,57.280570664434954,0.07967554200149607 +22,232.55651691475,0.0,0.0,55.29835001040627,0.07691833300123108 +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555 +24,242.54275309588132,0.0,0.0,57.67292282804619,0.08022129199889605 +25,242.09024671523045,0.0,0.0,57.5653237955566,0.08007162499779952 +26,234.0747792582066,0.0,0.0,55.65936935998167,0.07742050000160816 +27,240.06505943827122,0.0,0.0,57.08376552162113,0.07940179199795239 +28,237.81349047900775,0.0,0.0,56.548377178031686,0.07865708299868857 +29,243.5262478163098,0.0,0.0,57.90678269146844,0.08054658399851178 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..694ac8d08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f5c68e7c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6d928690d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0872d5801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..751951fb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..465639620 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a9d88c0e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..64572156e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..30a6ed2fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3cd546709 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f6b6c64ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..09febe67a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fcca87112 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..773333fe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..4d9307e65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4e42dea37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a442ab1d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..5290d4029 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/mac_report.md @@ -0,0 +1,41 @@ +## Energy Report β€” `mac` (cleaned) + +> 887 samples (with smell) vs 872 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 505.49 ms | 77.68 ms | +| **Average Power** | 4.241 W | 3.619 W | +| **Total Energy** | 1901.70 J | 245.10 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.32% | 0.00e+00 | +84.860 | large | βœ… | +| `gpu_mj` | +81.92% | 0.00e+00 | +2.516 | large | βœ… | +| `dram_mj` | +87.77% | 0.00e+00 | +177.673 | large | βœ… | +| `time_s` | +84.39% | 0.00e+00 | +250.581 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.3% lower energy (Cohen’s d = +84.860, large) +- **`gpu_mj`**: 81.9% lower energy (Cohen’s d = +2.516, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +177.673, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +250.581, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..efc857317 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/with_smell.csv @@ -0,0 +1,888 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.686158652221,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038 +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148 +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852 +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037 +4,1681.3039830173152,2.5037288286533763,0.0,471.3352977567602,0.5120100000021921 +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298 +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512 +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499 +8,1673.0168005136268,2.491387896881146,0.0,469.0120762141986,0.5094862920013838 +9,1674.6516856505996,2.493822500671014,0.0,469.4703984929874,0.5099841660012316 +10,1674.632669554008,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829 +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715 +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677 +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509 +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898 +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368 +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927 +17,1674.9585800219634,2.4942795151625616,0.0,469.5564329944028,0.5100776250001218 +18,1677.512503132874,2.498082712551933,0.0,470.27239758027656,0.5108553749996645 +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581 +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195 +21,1692.7334251702798,2.520749084420836,0.0,474.5394176391704,0.5154906250027125 +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146 +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418 +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472 +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981 +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635 +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165 +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868 +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495 +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931 +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782 +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094 +3,1677.138960668916,0.7677832068506811,0.0,468.280992421798,0.5116080420011713 +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182 +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746 +6,1665.3088555742995,0.7623674623954318,0.0,464.9778592383964,0.5079992909995781 +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733 +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189 +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731 +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449 +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992 +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349 +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844 +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853 +15,1664.589709954197,0.7620382422512794,0.0,464.777063578302,0.507779916999425 +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326 +17,1674.663941097445,0.7666501591377807,0.0,467.5899318428168,0.5108530420002353 +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989 +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774 +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128 +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219 +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212 +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154 +24,1672.187420124346,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954 +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098 +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352 +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691 +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941 +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253 +0,1700.6486549674398,2.245545305325342,0.0,471.7991233293258,0.5144435829970462 +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695 +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564 +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469 +4,1710.1798343752505,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836 +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368 +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275 +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373 +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759 +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611 +10,1701.928274758921,2.247234921935432,0.0,472.1541193445534,0.5148306660012167 +11,1688.930690823444,2.230072844688242,0.0,468.5482900697967,0.5108989170003042 +12,1689.5541088888797,2.230896009135527,0.0,468.7212406059824,0.5110874999991211 +13,1689.9560382136613,2.2314267187007863,0.0,468.8327450619548,0.5112090829970839 +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964 +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932 +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191 +17,1694.2118484628922,2.237046112628863,0.0,470.0134048877091,0.5124964590031595 +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352,0.5130589580003289 +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098 +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675 +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118 +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824 +23,1685.693758534626,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166 +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946 +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076 +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012 +27,1689.4828952994171,2.2308019783426145,0.0,468.7014843153579,0.5110659579986532 +28,1692.212939042672,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244 +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817 +0,1687.6458569919555,2.580242062394627,0.0,472.3853552412604,0.5138203749993409 +1,1687.0327514894282,2.579304685278597,0.0,472.21374218665426,0.5136337090007146 +2,1686.205052807527,2.578039216610996,0.0,471.9820628125352,0.5133817079986329 +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591 +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687 +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105 +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369 +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193 +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238 +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068 +10,1674.4885384554077,2.560125835654476,0.0,468.7025182496253,0.5098145000010845 +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899 +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134 +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728 +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324 +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712 +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159 +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711 +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754 +19,1677.22863718545,2.564315173108823,0.0,469.4694934456504,0.5106487500015646 +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355 +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079 +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851 +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817 +24,1676.759911976087,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167 +25,1671.2162151657417,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102 +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854 +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +29,1673.131765055717,2.5580514645531487,0.0,468.3227466987758,0.509401416999026 +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989 +1,1672.6596167167916,1.2258528268930255,0.0,466.5860908414723,0.5084176670025045 +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325 +3,1688.6244236034297,1.237553057745254,0.0,471.0394516817949,0.5132702920018346 +4,1677.695815207165,1.2295437381187877,0.0,467.9909314574833,0.5099484580023272 +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074 +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681 +7,1682.5739653539526,1.2331188194369973,0.0,469.3516847062496,0.5114312090008752 +8,1682.5384603989162,1.2330927986919125,0.0,469.3417806480596,0.5114204169985896 +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372 +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728 +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108 +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387 +13,1688.8170195135012,1.2376942067503771,0.0,471.0931760450152,0.5133288329998322 +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376 +15,1680.177795933706,1.2313627233202695,0.0,468.6832765545771,0.5107028750026075 +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091 +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639 +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985 +19,1676.2396122854952,1.2284765213041895,0.0,467.5847256628893,0.5095058340011747 +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945 +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434 +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412 +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696 +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816 +25,1681.8361980700215,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372 +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078 +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441 +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516 +29,1685.436887323359,1.235216987500778,0.0,470.1502928371205,0.5123014160017192 +0,1732.06870553443,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916 +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742 +2,1714.7743044983763,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323 +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244 +4,1718.4740985032197,0.8668385565940498,0.0,470.1265571743345,0.51150675000099 +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666 +6,1723.3339429500195,0.8692899758788708,0.0,471.4560749949214,0.512953290999576 +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181 +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825 +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474 +10,1722.9278508751695,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269 +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256 +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189 +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964 +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105 +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909 +16,1717.170141592041,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535 +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987 +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623 +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693 +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156 +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148 +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023 +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228 +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297 +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899 +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371 +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394 +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368 +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232 +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829 +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254 +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306 +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439 +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705 +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659 +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573 +7,1692.6743412442531,1.2348953116578076,0.0,469.0599651361846,0.5122992920005345 +8,1692.9432102016283,1.2350914657595289,0.0,469.13447188606534,0.5123806670017075 +9,1690.9101016469,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765 +10,1675.4391953781826,1.2223213626664713,0.0,464.283903538232,0.5070829590003996 +11,1692.3177755698923,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009 +12,1692.9842335608655,1.235121394466283,0.0,469.1458399413283,0.5123930829977326 +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145 +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459 +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755 +16,1699.368532235995,1.2397790774653328,0.0,470.9150041810212,0.5143253339992953 +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365 +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959 +19,1687.3626306301558,1.2310201382860588,0.0,467.5880276614127,0.5106916670010833 +20,1680.005011470021,1.2256523665981305,0.0,465.54914486946274,0.5084648339980049 +21,1684.214949163509,1.2287237384464431,0.0,466.7157681115221,0.5097390000009909 +22,1684.449402886166,1.228894784817181,0.0,466.780737995153,0.50980995899954 +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316 +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298 +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991 +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632 +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746 +28,1690.2974702999934,1.233161258796036,0.0,468.40130624647264,0.5115799159975722 +29,1691.2523507598814,1.2338578945128875,0.0,468.6659148509223,0.5118689170012658 +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285 +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228 +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163 +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576 +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558 +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698 +6,1705.732973585949,1.300279235547624,0.0,470.9678072139933,0.5133861249996698 +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658 +8,1690.866381337352,1.2889464410812284,0.0,466.86301094137,0.5089116250019288 +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358 +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521 +11,1704.729298359376,1.2995141345168324,0.0,470.69068369704553,0.513084041998809 +12,1708.1326598617934,1.302108514974491,0.0,471.6303816033247,0.5141083749986137 +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769 +14,1710.3444845159795,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929 +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019 +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924 +17,1689.277667739587,1.2877353656465649,0.0,466.4243532082916,0.5084334589992068 +18,1706.946246334542,1.3012041126453189,0.0,471.3028024417377,0.5137512920009613 +19,1708.998869357254,1.3027688259598698,0.0,471.869549628439,0.5143690839977353 +20,1700.2184297275633,1.2960755020303545,0.0,469.4451933764304,0.5117263749998529 +21,1704.764045228913,1.2995406220349015,0.0,470.7002776119237,0.5130945000018983 +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248 +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265 +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966 +25,1700.2915250526698,1.2961312225533927,0.0,469.4653756356212,0.5117483750000247 +26,1705.0802389809708,1.29978165634483,0.0,470.7875814750531,0.5131896669990965 +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194 +28,1718.6114560769083,1.3100964951232272,0.0,474.5236689771976,0.5172622499994759 +29,1692.044212804571,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484 +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022 +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477 +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489 +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622 +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736 +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334 +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919 +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642 +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257 +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721 +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471 +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143 +12,1684.754023901845,1.632642733391156,0.0,468.8016991594605,0.5105005830009759 +13,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683 +14,1680.4535893809157,1.6284753160284955,0.0,467.6050550310395,0.5091974999995728 +15,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277 +16,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582 +17,1693.226188437825,1.6408528445821813,0.0,471.159173944312,0.5130677500019374 +18,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046 +19,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097 +20,1681.29431533333,1.629290037404738,0.0,467.8389964547891,0.5094522500003222 +21,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562 +22,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328 +23,1686.877702600274,1.6347007243772926,0.0,469.392636571194,0.5111440830005449 +24,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942 +25,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622 +26,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196 +27,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728 +28,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667 +0,1662.7812272807057,2.154162194272734,0.0,465.3321749197454,0.5084949170013715 +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157 +2,1674.2807447957823,2.1690600205633683,0.0,468.55033459585,0.5120115829995484 +3,1676.0206591942217,2.171314110131433,0.0,469.0372526208532,0.512543666001875 +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335 +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408 +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195 +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926 +8,1676.5832374996228,2.1720429401764987,0.0,469.1946911233573,0.5127157080023608 +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787 +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531 +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761 +12,1674.719334293978,2.169628220937727,0.0,468.6730746182557,0.5121457079985703 +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101 +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844 +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353 +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996 +17,1671.4410196159442,2.165381106870954,0.0,467.7556326396163,0.511143167001137 +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402 +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448 +20,1673.6356021221727,2.1682242269336345,0.0,468.369790313464,0.5118142920000537 +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956 +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397 +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555 +24,1668.7934039933843,2.1619510744737207,0.0,467.0146928720848,0.5103335000021616 +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461 +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556 +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112 +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633 +29,1665.1493914950968,2.157230192477653,0.0,465.9949097319805,0.5092191250005271 +0,1704.031251704515,1.508941838063347,0.0,474.7466342955749,0.5159355420000793 +1,1703.1359158085138,1.508149006481623,0.0,474.4971918614849,0.5156644579983549 +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892 +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993 +4,1699.9833977413236,1.505357410727686,0.0,473.6188938018352,0.5147099590030848 +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734 +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086 +7,1715.943482298202,1.5194902731988489,0.0,478.0654063988733,0.5195422500000859 +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202 +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601 +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236 +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794 +12,1698.53539461143,1.504075185121696,0.0,473.21547713228824,0.5142715419970045 +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858 +14,1697.3195518477353,1.5029985405397317,0.0,472.8767408213671,0.5139034170024388 +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179 +16,1690.2733048896132,1.4967589972063555,0.0,470.91364183216854,0.511770000000979 +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182 +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302 +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851 +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124 +21,1690.6414282331857,1.497084975215344,0.0,471.016201757752,0.5118814580018807 +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229 +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126 +24,1690.3525720618825,1.4968291893184444,0.0,470.9357258304563,0.511794000001828 +25,1680.0227915903563,1.4876820343493653,0.0,468.0578276070737,0.5086664159971406 +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605 +27,1688.493922067436,1.4951833305725255,0.0,470.4179020943516,0.5112312499986729 +28,1697.0385398110468,1.5027497007260635,0.0,472.7984502862135,0.5138183339986426 +29,1689.9230695070262,1.4964488592194929,0.0,470.8160655295461,0.5116639580010087 +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339 +1,1714.765226996136,0.8643137448752406,0.0,469.821006012376,0.5111364580006921 +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871 +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353 +4,1715.331632824615,0.8645992372184634,0.0,469.97619306186704,0.511305291998724 +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863 +6,1714.1556313455656,0.8640064830464437,0.0,469.6539855728995,0.5109547499996552 +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976 +8,1706.9988473425583,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914 +9,1714.837774733343,0.8643503119839272,0.0,469.8408830488016,0.5111580829980085 +10,1711.608911909124,0.8627228294135127,0.0,468.9562210808144,0.5101956250000512 +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073 +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134 +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773 +14,1723.523935681039,0.8687285021752712,0.0,472.220766201658,0.5137472499991418 +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045 +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471 +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021 +18,1711.1150571741512,0.8624739058706925,0.0,468.8209119873269,0.5100484169997799 +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914 +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916 +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258 +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475 +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923 +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017 +25,1734.4994753767116,0.8742606354766979,0.0,475.2279061996989,0.5170188340016466 +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984 +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638 +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264 +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878 +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037 +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928 +2,1699.015023621691,1.6596805935544503,0.0,467.7311848755153,0.5085318749988801 +3,1726.676996415299,1.686702155333886,0.0,475.34640141619576,0.5168113750005432 +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602 +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556 +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734 +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054 +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878 +9,1707.556617845926,1.6680244386499228,0.0,470.0826473003213,0.5110884579989943 +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489 +11,1706.9871143093417,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469 +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288 +13,1700.5875280107632,1.661216692400863,0.0,468.16408825241115,0.5090025409990631 +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047 +15,1701.9577670717792,1.662555208627312,0.0,468.54130889534906,0.5094126670010155 +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634 +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211 +18,1700.088466524394,1.6607291848436008,0.0,468.0266988726236,0.5088531669971417 +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262 +20,1700.4806187224335,1.6611122582030222,0.0,468.1346566067757,0.508970541999588 +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707 +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749 +23,1732.7583505809405,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043 +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133 +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451 +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454 +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582 +28,1703.033989709958,1.663606515297409,0.0,468.83758814111593,0.5097347910013923 +29,1702.9419746789297,1.663516630535244,0.0,468.8122568174425,0.5097072499993374 +0,1733.253563906018,2.0984102566650487,0.0,473.074934530376,0.5129103750005015 +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176 +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007 +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304 +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974 +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383 +6,1723.4772484529751,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127 +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419 +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738,0.5151641660013411 +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893 +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816 +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324 +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498 +13,1732.2086720593063,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571 +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222 +15,1732.4094537173592,2.097388311858747,0.0,472.8445427512664,0.5126605830009794 +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996 +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384 +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215 +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757 +20,1738.3252572752317,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475 +21,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968 +22,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178 +23,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871 +24,1726.5571530732716,2.090303065964912,0.0,471.2472134269785,0.5109287500017672 +25,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585 +26,1724.678430716105,2.0880285399833696,0.0,470.7344341806953,0.5103727919995436 +27,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824 +28,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853 +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695 +1,1781.4314907183507,1.865233779826259,0.0,474.9351511882611,0.512870540998847 +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603 +3,1776.1253612297892,1.8596780388315792,0.0,473.5205206374909,0.511342916997819 +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071 +5,1779.3196350329554,1.863022578001748,0.0,474.37212392369514,0.5122625419971882 +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342 +7,1775.9211500186464,1.8594642210949857,0.0,473.4660772963107,0.5112841250011115 +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882 +9,1797.5348509506605,1.8820946760383848,0.0,479.2283568862738,0.5175066660012817 +10,1782.1034613760824,1.8659373613989343,0.0,475.1143006462038,0.5130639999988489 +11,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154 +12,1779.8063525884374,1.863532191776092,0.0,474.5018843309874,0.5124026670018793 +13,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311 +14,1800.139363767342,1.8848217106231984,0.0,479.92272806743193,0.518256499999552 +15,1768.3179047798128,1.8515033031872992,0.0,471.4390285740661,0.5090951659985876 +16,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909 +17,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675 +18,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749 +19,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233 +20,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352 +21,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055 +22,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763 +23,1776.934675683587,1.8605254251417416,0.0,473.7362863767159,0.5115759170003003 +24,1775.9308478967102,1.8594743751816576,0.0,473.46866278062953,0.5112869170006888 +25,1774.2983217244705,1.857765051540093,0.0,473.03342624839615,0.5108169160012039 +26,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252 +27,1781.2621633934934,1.8650564869874289,0.0,474.890007999174,0.5128217920027964 +28,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208 +0,1715.2126246543712,1.878141390259372,0.0,473.25809210624993,0.5145006249986182 +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795 +2,1708.659320247143,1.870965584721755,0.0,471.44991725015507,0.5125348750007106 +3,1714.9127245161242,1.877813002481384,0.0,473.1753442502645,0.5144106660009129 +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142 +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918 +6,1705.8313331065865,1.8678689658982608,0.0,470.6696246033992,0.5116865829986637 +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889 +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202 +9,1701.5545581455729,1.8631859382924425,0.0,469.4895852722259,0.5104037080018315 +10,1696.2627985811607,1.8573915122706384,0.0,468.02949338662467,0.5088163750006061 +11,1708.47193391554,1.8707603984840295,0.0,471.3982139822882,0.512478666001698 +12,1702.070178101452,1.8637505372038896,0.0,469.6318541157872,0.5105583750009828 +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232 +14,1713.0868103835694,1.8758136440006232,0.0,472.6715416159428,0.5138629590001074 +15,1700.5874961044965,1.8621270146230455,0.0,469.2227554168893,0.5101136250013951 +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033 +17,1700.0421524930027,1.861529868593488,0.0,469.07228528076257,0.5099500420001277 +18,1701.0918613432752,1.8626792897271016,0.0,469.36191888105583,0.5102649159998691 +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436 +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308 +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339 +22,1703.169756399106,1.8649545649045784,0.0,469.93524759586614,0.5108882079985051 +23,1698.6667036618285,1.8600237653017555,0.0,468.69277414594774,0.5095374580014322 +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047 +25,1725.2339947819305,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259 +26,1695.9577611438835,1.8570574991994344,0.0,467.9453280572003,0.5087248750023718 +27,1697.33251321659,1.8585628395473195,0.0,468.32464694378984,0.5091372499991849 +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549 +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464 +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402 +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579 +2,1726.3235530469292,2.147168598317076,0.0,474.0210175878432,0.5159650419991522 +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943 +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624 +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454 +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892 +7,1703.9014336143955,2.119280390067656,0.0,467.8642598635299,0.5092635000000882 +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641 +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499 +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533 +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063 +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957 +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029 +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525 +15,1729.2027639938808,2.1507497064600507,0.0,474.8116031652197,0.516825582999445 +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779 +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395 +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429 +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318 +20,1713.5996964840365,2.131342906074672,0.0,470.52724874889134,0.5121621250000317 +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474 +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845 +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164 +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658 +25,1699.874186562006,2.114271376320903,0.0,466.7584418130943,0.508059832998697 +26,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921 +27,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897 +28,1702.7397365525153,2.1178354932245216,0.0,467.5452763088947,0.5089162910007872 +0,1713.159064065179,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777 +1,1728.2893886349443,2.1460685837030025,0.0,476.2595639739648,0.5165718749994994 +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307 +3,1714.3446896304945,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393 +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168 +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578 +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113 +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508 +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844 +9,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575 +10,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702 +11,1729.394162260291,2.147440414129695,0.0,476.5640031544385,0.5169020829998772 +12,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946 +13,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174 +14,1724.1615030085018,2.1409428647590096,0.0,475.1220548151909,0.5153380830015521 +15,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531 +16,1717.9330827404174,2.133208849176126,0.0,473.4057075757582,0.5134764579997864 +17,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229 +18,1715.88106060893,2.130660791970888,0.0,472.8402379431644,0.5128631249972386 +19,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654 +20,1716.739788843288,2.131727100482537,0.0,473.076875127398,0.5131197919981787 +21,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105 +22,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427 +23,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432 +24,1720.854010688215,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171 +25,1712.4761217310593,2.1264327776098213,0.0,471.9019490686296,0.511845416000142 +26,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266 +27,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126 +28,1710.078379417596,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527 +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942 +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453 +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553 +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522 +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363 +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014 +6,1702.066685738554,2.7700300963980387,0.0,474.5094928986423,0.5151506249967497 +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673 +8,1700.0186079028213,2.766696950116356,0.0,473.9385209247512,0.5145307500024501 +9,1682.723315235478,2.738549709108719,0.0,469.1168646278044,0.5092961250011285 +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456 +11,1697.882008804488,2.763219739819069,0.0,473.34287061141595,0.5138840830004483 +12,1695.3888533669428,2.7591622515579655,0.0,472.6478179837488,0.5131295000028331 +13,1721.269774292272,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763 +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644 +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555 +16,1693.919391580334,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454 +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678 +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103 +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901 +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161 +21,1699.9142571169934,2.7665271243276557,0.0,473.9094295625374,0.5144991670022137 +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584 +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284 +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527 +25,1694.6464141966617,2.75795396820241,0.0,472.44083758917907,0.5129047920017911 +26,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241 +27,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143 +28,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524 +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961 +1,1694.9927135001717,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363 +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444 +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167 +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291 +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369 +6,1688.8411757749657,1.7647243216039348,0.0,469.3167794907069,0.5113532079994911 +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479 +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306 +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447 +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125 +11,1682.606935383067,1.758209963827656,0.0,467.58432905944926,0.5094655829998374 +12,1688.212838993708,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873 +13,1684.5242856987225,1.7602134646799608,0.0,468.1171468804538,0.5100461250003718 +14,1691.2586095165043,1.7672503756703288,0.0,469.9885668881752,0.5120851669998956 +15,1684.9852883959743,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345 +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871 +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087 +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969 +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531 +20,1697.7310531269818,1.77401363963112,0.0,471.78721227548374,0.5140449159989657 +21,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576 +22,1684.149156241156,1.759821479875816,0.0,468.0129011103703,0.5099325419978413 +23,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992 +24,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528 +25,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477 +26,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427 +27,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625 +28,1683.942460695321,1.7596054970693007,0.0,467.9554619092792,0.509869958001218 +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231 +1,1684.3804086585617,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504 +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881 +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921 +4,1687.8337375501524,0.9008719984551876,0.0,468.55353608541475,0.5111366669989366 +5,1681.843830358663,0.8976749183506088,0.0,466.890699199911,0.5093227079996723 +6,1686.948083015424,0.900399285205718,0.0,468.3076726719962,0.5108684590013581 +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708 +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256 +9,1689.3941238414432,0.9017048460783412,0.0,468.9867093880794,0.5116092080024828 +10,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164 +11,1692.884875635795,0.9035680156993332,0.0,469.9557646098421,0.512666333001107 +12,1689.6578805301597,0.9018456247640516,0.0,469.059929946725,0.51168908299951 +13,1688.3434987592047,0.9011440807041184,0.0,468.69504908621974,0.5112910409989126 +14,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817 +15,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927 +16,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944 +17,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707 +18,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894 +19,1685.8418700821012,0.8998088501209175,0.0,468.0005808240016,0.5105334580002818 +20,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062 +21,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702 +22,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496 +23,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146 +24,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888 +25,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105 +26,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763 +27,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561 +28,1684.6551746223745,0.8991754579291524,0.0,467.6711465073736,0.5101740840000275 +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922 +1,1684.9120118880196,0.9001310708543041,0.0,468.9682879150925,0.5117798330029473 +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045 +3,1683.044204417893,0.8991332314856176,0.0,468.4484136040067,0.5112124999977823 +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105 +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793 +6,1681.6389594309271,0.898382507016918,0.0,468.05728615581427,0.5107856670001638 +7,1686.120547663472,0.9007767072994408,0.0,469.3046645030087,0.5121469170007913 +8,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845 +9,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436 +10,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695 +11,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919 +12,1697.2951611645233,0.906746524563556,0.0,472.4149392976128,0.5155411250016186 +13,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666 +14,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893 +15,1677.7029249314749,0.8962797580757781,0.0,466.9617539574804,0.5095901249987946 +16,1688.7147098689277,0.902162587385458,0.0,470.0267080278236,0.5129348750015197 +17,1680.573640225599,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004 +18,1683.2713703277295,0.8992545904006469,0.0,468.511641598737,0.5112814999993134 +19,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354 +20,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451 +21,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416 +22,1681.8592675604157,0.8985002022978081,0.0,468.118605397158,0.5108525840005314 +23,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924 +24,1702.0110496161594,0.909265895125372,0.0,473.7275313603189,0.5169735419985955 +25,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375 +26,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133 +27,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034 +28,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037 +0,1697.203423819641,0.4319175559316277,0.0,469.49438329767935,0.5124109589996806 +1,1702.970913758122,0.433385311725145,0.0,471.08983384523265,0.5141522500016436 +2,1698.55258888602,0.4322609019736166,0.0,469.8676004453214,0.5128182920016116 +3,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953 +4,1704.3090392776437,0.4337258483372035,0.0,471.45999714254026,0.5145562500001688 +5,1696.1240599722423,0.4316428710067762,0.0,469.19580078436576,0.5120850829989649 +6,1698.2136390256214,0.4321746433712405,0.0,469.7738373445384,0.5127159579969884 +7,1701.9096344739723,0.4331152291009071,0.0,470.7962540326861,0.5138318339995749 +8,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588 +9,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589 +10,1705.7160285840569,0.4340839099425002,0.0,471.84921010749775,0.5149810410002829 +11,1727.832226093905,0.4397122122667182,0.0,477.9671747339228,0.5216582499997457 +12,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364 +13,1702.5864245755272,0.4332874639211059,0.0,470.9834732822422,0.5140361669982667 +14,1699.7292450503628,0.4325603466056166,0.0,470.1930967603053,0.5131735420000041 +15,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262 +16,1691.5910504622384,0.4304892754146995,0.0,467.9418423757784,0.5107165000008536 +17,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608 +18,1697.6634011631045,0.4320346145512275,0.0,469.6216260171843,0.5125498330016853 +19,1697.9111266140835,0.4320976576548574,0.0,469.6901538708301,0.5126246250001714 +20,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183 +21,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172 +22,1695.7074127257792,0.4315368393679918,0.0,469.0805443930072,0.5119592909977655 +23,1695.3634979136232,0.4314493172459938,0.0,468.9854078463953,0.5118554580003547 +24,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883 +25,1698.0149108307794,0.4321240694712552,0.0,469.7188635152545,0.5126559589989483 +26,1693.4629920169104,0.4309656616921448,0.0,468.45967425936146,0.5112816670007305 +27,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756 +28,1714.7917125952802,0.4363935607489505,0.0,474.3598005341093,0.5177211250011169 +0,1706.4500436920816,0.9036096252071272,0.0,472.01889458967855,0.5143917909990705 +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102 +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231 +3,1697.45142476899,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798 +4,1707.4593666243693,0.9041440879181388,0.0,472.2980820739788,0.5146960410020256 +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587 +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588 +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391 +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746 +9,1692.1716258741417,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998 +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885 +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757 +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119 +13,1699.6750602015395,0.9000220954606203,0.0,470.1448753472811,0.512349542001175 +14,1701.1311258658325,0.9007931200529032,0.0,470.54763574911647,0.5127884579997044 +15,1700.9127306150654,0.9006774740945451,0.0,470.4872257270172,0.5127226250006061 +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582 +17,1691.921847883786,0.8959165681394461,0.0,468.0002695199536,0.5100124159980624 +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093 +19,1696.5682995533305,0.8983769849955858,0.0,469.2855183843608,0.5114130410001962 +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749 +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367 +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291 +23,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214 +24,1699.7398857679125,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216 +25,1704.6099874632089,0.902635267636287,0.0,471.5099190645256,0.5138371249995544 +26,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361 +27,1701.2077050215437,0.9008336707050868,0.0,470.56881820831654,0.5128115419975074 +28,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599 +0,1691.7368270144957,0.9352332949595424,0.0,471.9254008744063,0.5151577079996059 +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978 +2,1691.7194485071643,0.935223687697696,0.0,471.9205529814552,0.5151524159991823 +3,1689.084378366222,0.933766956786002,0.0,471.1854761581936,0.5143500000012864 +4,1693.5933387749658,0.9362596198483492,0.0,472.4432917441903,0.515723041997262 +5,1693.8493466310365,0.9364011472224332,0.0,472.51470746806285,0.5158009999977367 +6,1686.4976048238766,0.9323369254095548,0.0,470.46387211112864,0.5135622909983795 +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559 +8,1688.5101028010365,0.933449483275662,0.0,471.02527675720825,0.5141751249975641 +9,1699.7612240655442,0.9396693769637156,0.0,474.1638795400121,0.5176012500014622 +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392 +11,1692.366929218863,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073 +12,1689.6277292335435,0.9340673343706531,0.0,471.33704883296286,0.5145154579986411 +13,1697.3383739763035,0.9383299664620526,0.0,473.488003433655,0.5168634580004436 +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696 +15,1694.925927355849,0.9369963072511552,0.0,472.8150294696991,0.516128834002302 +16,1671.365031052581,0.923971270300939,0.0,466.2425027886417,0.5089542089990573 +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399 +18,1690.4551425000311,0.9345247485636612,0.0,471.5678633019989,0.5147674170002574 +19,1684.268371406136,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615 +20,1696.6806343047017,0.937966351962164,0.0,473.3045209597648,0.5166631669999333 +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752 +22,1680.6578390184325,0.9291085607320204,0.0,468.8348162350971,0.5117840000020806 +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838 +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711 +25,1690.4400890135123,0.9345164266299107,0.0,471.56366399478605,0.5147628330014413 +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478 +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382 +28,1682.6264145623704,0.930196837207968,0.0,469.3839683182635,0.5123834590012848 +29,1679.3658889613605,0.9283943392943216,0.0,468.4744149960525,0.5113905830003205 +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787 +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475 +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321 +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932 +4,1765.9374046561293,1.4666423640474469,0.0,474.2921408643437,0.5136094170011347 +5,1760.7687938821498,1.4623497410448405,0.0,472.9039651210689,0.5121061660029227 +6,1765.694572073473,1.4664406872767095,0.0,474.22692134682507,0.5135387909976998 +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474 +8,1775.629506989212,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826 +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419 +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038 +11,1770.4399845493308,1.470381836579976,0.0,475.5014352885564,0.514918958000635 +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858 +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353 +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058 +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538 +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251 +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272 +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988 +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226 +20,1769.5408755153906,1.46963511056602,0.0,475.2599542782705,0.5146574589998636 +21,1767.2834912096223,1.4677603128262782,0.0,474.6536702546616,0.51400091600226 +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654 +23,1761.1276686756316,1.462647792931686,0.0,473.0003510369309,0.5122105419977743 +24,1753.0491242413011,1.455938418366093,0.0,470.8306307938895,0.5098609590022534 +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936 +26,1760.151335689559,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767 +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245 +28,1777.3232973655329,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984 +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584 +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516 +1,1708.5795885529983,1.966259571752885,0.0,469.8693847821005,0.5122209580003982 +2,1714.6152742499144,1.9732055313401136,0.0,471.5292336671909,0.5140304169981391 +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946 +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964 +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978 +6,1709.5649903497754,1.9673935872403203,0.0,470.14037604239456,0.5125163749980857 +7,1713.8351537921171,1.972307756763184,0.0,471.3146959763412,0.5137965419999091 +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049 +9,1713.8143061036951,1.9722837649238905,0.0,471.3089627400327,0.5137902919996122 +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476 +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156 +12,1709.076183799929,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007 +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221 +14,1704.6249223381478,1.9617084812739085,0.0,468.7818284318785,0.5110353749987553 +15,1705.365015246795,1.962560191533918,0.0,468.98535831248665,0.5112572500001988 +16,1701.6139625675005,1.95824342263171,0.0,467.95379687600814,0.510132709001482 +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774 +18,1707.2698000702223,1.964752247096495,0.0,469.5091852849744,0.5118282920011552 +19,1713.4863002655777,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812 +20,1688.421819469822,1.9430617022064345,0.0,464.3258803289579,0.5061777909977536 +21,1707.8000251380013,1.9653624382293453,0.0,469.6550002812804,0.5119872499999474 +22,1709.2365675547344,1.9670156332552335,0.0,470.05005785195834,0.5124179159975029 +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883 +24,1702.1062448464766,1.9588099486217936,0.0,468.0891773833673,0.5102802920009708 +25,1709.7403911188364,1.967595441133092,0.0,470.188612280262,0.5125689589985996 +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112 +27,1713.4480806178635,1.971862307022976,0.0,471.20824858842275,0.5136805000001914 +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611 +29,1707.9331701381714,1.9655156635357751,0.0,469.6916159354389,0.5120271659980062 +0,1740.8475467300475,0.8670057698492718,0.0,476.0195140230136,0.5090652500002761 +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093 +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814 +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254 +4,1743.64428559599,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949 +5,1742.4530932244463,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856 +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411 +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279 +8,1738.451339551393,0.8658123710053869,0.0,475.3642921577653,0.5083645419981622 +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625 +10,1757.4058468687897,0.875252409129174,0.0,480.5472361661138,0.513907291002397 +11,1739.8851866112857,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523 +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187 +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124 +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298 +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439 +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813 +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888 +18,1733.1724702832205,0.8631833009743076,0.0,473.92083159262467,0.506820875001722 +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895 +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733 +21,1753.020803602176,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888 +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614 +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498 +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713 +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178 +26,1731.9024812868108,0.8625507999896003,0.0,473.5735642250594,0.5064494999969611 +27,1736.6560000323225,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919 +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532 +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277 +0,1707.9951880275323,2.0066518754973948,0.0,471.1953045647133,0.5138533329991333 +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253 +2,1693.5739088739952,1.989708919765806,0.0,467.2168161763406,0.5095146659987222 +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224 +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637 +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599 +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382 +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533 +8,1700.851719406768,1.998259313969181,0.0,469.2245912418632,0.5117042079982639 +9,1698.8143105967222,1.9958656478520331,0.0,468.6625185431216,0.5110912500022096 +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894 +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684 +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475 +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241 +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905 +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494 +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538 +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385 +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468 +19,1699.5277018289198,1.9967037812754096,0.0,468.8593262398208,0.5113058749993797 +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675 +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391 +22,1697.8531494743247,1.994736419981584,0.0,468.3973570186755,0.510802083001181 +23,1697.3617679212994,1.994159116414293,0.0,468.2617965193497,0.5106542500034266 +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853 +25,1699.613843927194,1.9968049860119763,0.0,468.88309079871226,0.511331790999975 +26,1698.3545027196003,1.995325438871667,0.0,468.5356684710486,0.5109529159999511 +27,1698.6356511649765,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842 +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118 +0,1696.056708219553,2.13210562208661,0.0,468.996608558364,0.5107068340003025 +1,1698.1034097991303,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625 +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451 +3,1690.6943979681755,2.1253646848414536,0.0,467.5138130187185,0.50909216600121 +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757 +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803 +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638 +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929 +8,1698.1573760274025,2.1347463625887086,0.0,469.577488945685,0.5113393749998068 +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113 +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842 +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512 +12,1697.0918900604795,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553 +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115 +14,1697.2283266475597,2.133578458593306,0.0,469.3205865636963,0.5110596249978698 +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593 +16,1695.755878881392,2.131727450814344,0.0,468.9134226963178,0.5106162500014761 +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632 +18,1690.365619098878,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368 +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195 +20,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764 +21,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929 +22,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595 +23,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202 +24,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783 +25,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809 +26,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155 +27,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467 +28,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..2d2ff04eb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/cleaned/mac/without_smell.csv @@ -0,0 +1,873 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.0955342560187,0.0,0.0,57.8043656552693,0.0804041249975853 +1,240.37357538885556,0.0,0.0,57.15712585245829,0.0795038340002065 +2,240.57790726684237,0.0,0.0,57.205712819003466,0.0795714170017163 +3,241.00357775344693,0.0,0.0,57.306930690124176,0.0797122080002736 +4,228.7827823794463,0.0,0.0,54.40101418878283,0.0756701660029648 +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123 +6,239.8171358810357,0.0,0.0,57.024813126626064,0.0793197909988521 +7,243.10473150771745,0.0,0.0,57.80655261975568,0.0804071669990662 +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972 +9,241.96893194067064,0.0,0.0,57.53647701476525,0.0800314999978581 +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959 +11,226.9116656193993,0.0,0.0,53.95609150555676,0.0750512920021719 +12,241.0369623717528,0.0,0.0,57.314869037036715,0.0797232500008249 +13,259.1807637955834,0.0,0.0,61.629184950282394,0.0857243329992343 +14,245.7031080501689,0.0,0.0,58.42440645335082,0.0812665830017067 +15,240.7667441033004,0.0,0.0,57.25061530385252,0.0796338750005816 +16,239.96490559435284,0.0,0.0,57.059950483498945,0.0793686659999366 +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382 +18,244.9626238231499,0.0,0.0,58.2483307341832,0.0810216669997316 +19,244.61392358457164,0.0,0.0,58.16541519994048,0.0809063339984277 +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304 +21,240.89272099625768,0.0,0.0,57.280570664434954,0.079675542001496 +22,232.55651691475,0.0,0.0,55.29835001040627,0.076918333001231 +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555 +24,242.54275309588132,0.0,0.0,57.67292282804619,0.080221291998896 +25,242.09024671523045,0.0,0.0,57.5653237955566,0.0800716249977995 +26,234.0747792582066,0.0,0.0,55.65936935998167,0.0774205000016081 +27,240.0650594382712,0.0,0.0,57.08376552162113,0.0794017919979523 +28,237.81349047900775,0.0,0.0,56.548377178031686,0.0786570829986885 +29,243.5262478163098,0.0,0.0,57.90678269146844,0.0805465839985117 +0,231.07091032445197,0.96752185957394,0.0,58.35157697913175,0.0799369160013157 +1,227.65017155015877,0.9531988124393016,0.0,57.48774906745996,0.0787535419985943 +2,230.5149398910295,0.9651939441004702,0.0,58.211179594197326,0.0797445829994103 +3,234.6926746579278,0.9826866250476328,0.0,59.26616921407965,0.0811898329993709 +4,232.3701460779587,0.9729619168727698,0.0,58.67966871070601,0.0803863749970332 +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.0770988340009353 +6,237.3139072923828,0.9936620432398358,0.0,59.928100469878366,0.0820966249993944 +7,230.30332002617052,0.9643078661217072,0.0,58.157739925754,0.0796713749987247 +8,230.46507591515575,0.9649851576002768,0.0,58.19858760837532,0.0797273330026655 +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019 +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.0795147079988964 +11,230.5961184668456,0.9655338486194806,0.0,58.23167935294729,0.0797726660020998 +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.0827171670025563 +13,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.0808671250015322 +14,231.6784328857628,0.9700656300443432,0.0,58.50499265336401,0.0801470830010657 +15,230.71487857136052,0.9660311115462684,0.0,58.26166945153184,0.0798137499987206 +16,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.0800940830013132 +17,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.0797144999996817 +18,231.78587024977804,0.9705154832866824,0.0,58.5321234575313,0.0801842499968188 +19,231.19713702261603,0.9680503860317448,0.0,58.38345259205248,0.0799805829992692 +20,230.582873431562,0.9654783900541868,0.0,58.228334627750776,0.0797680840005341 +21,231.6367610464117,0.9698911450109644,0.0,58.49446940083367,0.0801326670007256 +22,232.1529848272166,0.9720526364408436,0.0,58.62482969431156,0.080311250003433 +23,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.0799320830010401 +24,232.75243664028173,0.9745626137118352,0.0,58.77620728903447,0.0805186249999678 +25,232.66162348649672,0.9741823680491488,0.0,58.75327454199867,0.0804872090011485 +26,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.0794731249989126 +27,230.7071720615588,0.965998843457292,0.0,58.259723351958755,0.0798110840005392 +28,230.77582537158145,0.9662863031729516,0.0,58.27706014653421,0.0798348339994845 +0,232.9169939317484,0.0,0.0,56.31584657411337,0.0802987909992225 +1,237.47883911982245,0.0,0.0,57.41883253219986,0.0818715000023075 +2,235.63126033438007,0.0,0.0,56.97211560674853,0.0812345420017663 +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643 +4,233.22591381073585,0.0,0.0,56.39053878190413,0.0804052919993409 +5,232.05152169027792,0.0,0.0,56.10658832660616,0.080000417001429 +6,231.51224545439288,0.0,0.0,55.976199395989674,0.0798144999971555 +7,230.47563320063983,0.0,0.0,55.72556205238602,0.079457124997134 +8,237.39157949081192,0.0,0.0,57.39773445860497,0.0818414169989409 +9,238.7171669043764,0.0,0.0,57.71824167511468,0.0822984170008567 +10,233.33565330551497,0.0,0.0,56.41707215092448,0.0804431249998742 +11,231.42716131362363,0.0,0.0,55.95562732292378,0.0797851669994997 +12,235.6416532820299,0.0,0.0,56.97462846609562,0.0812381249997997 +13,231.260615912246,0.0,0.0,55.91535913504585,0.0797277500023483 +14,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142 +15,231.26617350593335,0.0,0.0,55.916702878102704,0.0797296659984567 +16,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022 +17,237.3270376003675,0.0,0.0,57.38212919452134,0.0818191660000593 +18,234.63030260863508,0.0,0.0,56.7300989949132,0.0808894590009003 +19,231.03231320527357,0.0,0.0,55.860158954066,0.0796490419998008 +20,233.7110410932738,0.0,0.0,56.50783530523265,0.0805725409991282 +21,231.71746496061323,0.0,0.0,56.02581840416606,0.079885250001098 +22,227.65827556405924,0.0,0.0,55.04436710079492,0.0784858330007409 +23,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255 +24,231.77136734596337,0.0,0.0,56.03885119499903,0.0799038330005714 +25,233.1512226176164,0.0,0.0,56.372479568185334,0.0803795419997186 +26,230.73777754985747,0.0,0.0,55.78894463646289,0.0795475000013539 +27,232.8224856404988,0.0,0.0,56.29299588237056,0.0802662089990917 +28,237.8312655240404,0.0,0.0,57.50404396728485,0.0819929999997839 +0,240.68532811369528,0.0,0.0,56.67665791391861,0.0791760419997444 +1,237.4792714962241,0.0,0.0,55.92169467795753,0.0781213749978633 +2,229.61777289781264,0.0,0.0,54.070466477863675,0.0755352500018489 +3,237.8056781604508,0.0,0.0,55.99855702346976,0.0782287500005622 +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688 +5,243.35345135751976,0.0,0.0,57.30494842729374,0.0800537499999336 +6,243.4134889068341,0.0,0.0,57.319086088575986,0.0800735000011627 +7,244.52633573416657,0.0,0.0,57.58113961480306,0.080439583001862 +8,247.25107666319172,0.0,0.0,58.222762478767,0.0813359160019899 +9,243.32786471626991,0.0,0.0,57.29892327684254,0.0800453329975425 +10,244.4880849635703,0.0,0.0,57.57213231112975,0.0804269999971438 +11,241.4227502834867,0.0,0.0,56.85030632191656,0.0794186249986523 +12,245.31417120068048,0.0,0.0,57.766659362009946,0.0806987500000104 +13,243.4813784481399,0.0,0.0,57.335072739439504,0.0800958330000867 +14,243.02235721302517,0.0,0.0,57.22698227243133,0.0799448329998995 +15,243.41158898109776,0.0,0.0,57.318638693456954,0.0800728750000416 +16,242.4810070275498,0.0,0.0,57.099504957905,0.0797667500009993 +17,242.8655512932365,0.0,0.0,57.1900575643721,0.0798932499965303 +18,244.21563610620777,0.0,0.0,57.50797596720637,0.0803373749986349 +19,244.89530368100628,0.0,0.0,57.668024304734615,0.0805609589988307 +20,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072 +21,245.05122194988175,0.0,0.0,57.7047399884734,0.0806122499998309 +22,242.19943853992356,0.0,0.0,57.03320112053526,0.0796741250014747 +23,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844 +24,245.99079585749843,0.0,0.0,57.92599115224054,0.0809213329994236 +25,245.43513393916336,0.0,0.0,57.79514370629074,0.0807385420011996 +26,240.29419641988633,0.0,0.0,56.584554097773946,0.0790473749984812 +27,244.3516705522685,0.0,0.0,57.54000940199992,0.0803821250010514 +28,241.889751197847,0.0,0.0,56.96027584634135,0.0795722500006377 +0,238.41283703560313,0.0695081157538201,0.0,61.79271490514612,0.0831266669993056 +1,234.37913907907773,0.0683321105186815,0.0,60.7472462511079,0.0817202500002167 +2,229.3925259214554,0.0668782874406575,0.0,59.45479753474456,0.0799815830032457 +3,221.67814600297828,0.0646291970854164,0.0,57.455356208935186,0.0772918340007891 +4,231.8804534306275,0.0676036307377922,0.0,60.09962772589734,0.0808490409981459 +5,229.33420950258335,0.0668612855692663,0.0,59.439682871077736,0.0799612499977229 +6,223.15663158869825,0.0650602424456846,0.0,57.838555534213626,0.0778073330002371 +7,235.0478747510722,0.0685270771869015,0.0,60.920571619155446,0.081953416000033 +8,231.3115035490765,0.0674377561367569,0.0,59.95216520557696,0.0806506670014641 +9,229.6267523252653,0.0669465750219432,0.0,59.51550519450753,0.0800632499995117 +10,232.2332285257856,0.0677064806197625,0.0,60.19106127096891,0.0809720420002122 +11,230.43757777224496,0.0671829672805378,0.0,59.72565791239818,0.0803459580019989 +12,231.26095387219027,0.0674230186216298,0.0,59.93906355462891,0.0806330420018639 +13,226.7150679276371,0.0660976874424598,0.0,58.76084413634677,0.0790480420000676 +14,229.0763215445606,0.0667860995756736,0.0,59.37284252277387,0.0798713330004829 +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.0792341249980381 +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.0806579169984615 +17,230.3895405214245,0.0671689622511441,0.0,59.71320744126716,0.0803292090022296 +18,227.8955154857735,0.0664418412494966,0.0,59.06679687080252,0.0794596250016184 +19,221.77446141446887,0.0646572773803116,0.0,57.48031959109704,0.0773254159976204 +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.0797048750027897 +21,228.23203436741105,0.0665399517106154,0.0,59.15401707073714,0.0795769579999614 +22,215.52590171771973,0.0628355398593935,0.0,55.86079493500083,0.075146750001295 +23,236.72832386273487,0.0690170040416136,0.0,61.356116592994546,0.0825393329978396 +24,220.5298408730013,0.0642944142486884,0.0,57.15773426708401,0.0768914580003183 +25,228.89658839783272,0.0667336992413506,0.0,59.32625862556073,0.0798086659997352 +26,229.44773620070688,0.0668943837319845,0.0,59.46910713773422,0.0800008330006676 +27,229.6753890074541,0.0669607548126688,0.0,59.52811102846259,0.0800802080011635 +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.079968000001827 +29,220.42790404735163,0.0642646950575369,0.0,57.13131390615032,0.0768559160023869 +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.0828468750005413 +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248 +2,491.6841117381172,0.8712456147475667,0.0,76.43504797073845,0.078407375000097 +3,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.0797451670005102 +4,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.0737165410027955 +5,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.0807009579984878 +6,514.8391200881973,0.9122754121374724,0.0,80.03462365713747,0.0820998339986545 +7,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.0751145000031101 +8,484.3581431807236,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234 +9,500.5286831836258,0.8869178602040666,0.0,77.80998612021061,0.07981779200054 +10,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.0795732500009762 +11,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.0803536249986791 +12,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.0794982500010519 +13,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.0762340840010438 +14,497.8429106725408,0.8821587730856716,0.0,77.39246774647758,0.0793894999987969 +15,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.0771708750035031 +16,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.0793507089983904 +17,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752 +18,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.075234249998175 +19,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.0774600000004284 +20,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.0747904170020774 +21,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.0744944590005616 +22,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.0777760000019043 +23,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.0794401249986549 +24,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.0787942500028293 +25,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.0799686249993101 +26,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.0792666669985919 +27,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.0759735419997014 +28,509.0607510322008,0.902036361128414,0.0,79.13634383591972,0.0811783749995811 +0,235.05822270976108,0.0,0.0,56.90602555177452,0.0796164580024196 +1,234.8477444205732,0.0,0.0,56.85507016393681,0.0795451670019247 +2,236.67440697832672,0.0,0.0,57.29729296723922,0.0801638750017446 +3,237.84588865760452,0.0,0.0,57.58090085640774,0.0805606670000997 +4,238.03791455643773,0.0,0.0,57.62738904380077,0.0806257080002978 +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256 +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836 +7,235.89399490105237,0.0,0.0,57.10836041640851,0.0798995420009305 +8,237.1091452658675,0.0,0.0,57.40254020264302,0.0803111249988433 +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639 +10,240.1701486799902,0.0,0.0,58.14358868199451,0.0813479159987764 +11,237.3678477706916,0.0,0.0,57.46517035095314,0.0803987500003131 +12,233.8212985099349,0.0,0.0,56.606574465530976,0.0791974999992817 +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732 +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766 +15,239.42184376859217,0.0,0.0,57.962429061549685,0.0810944580007344 +16,235.06720385039952,0.0,0.0,56.908199825929934,0.0796195000002626 +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046 +18,235.1504876044873,0.0,0.0,56.92836226646714,0.0796477090007101 +19,233.54008410112257,0.0,0.0,56.53849433564263,0.0791022500015969 +20,236.13485910454932,0.0,0.0,57.166672031125465,0.0799811249999038 +21,236.4991092645872,0.0,0.0,57.25485456171471,0.0801044999971054 +22,233.79657231308929,0.0,0.0,56.60058841844326,0.0791891250009939 +23,225.861185687578,0.0,0.0,54.679484324024344,0.076501333998749 +24,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449 +25,226.48622570091325,0.0,0.0,54.8308023360458,0.0767130410022218 +26,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544 +27,236.39749713231657,0.0,0.0,57.230254943251225,0.0800700830004643 +28,240.4058491717482,0.0,0.0,58.20065019659257,0.0814277499994204 +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463 +1,222.34524711035735,0.0,0.0,53.789566230930056,0.0762266249985259 +2,234.88450207831713,0.0,0.0,56.82305174209469,0.0805254580009204 +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092 +4,231.14880819995636,0.0,0.0,55.91931597126064,0.0792447500025446 +5,226.3184260321476,0.0,0.0,54.75075417417805,0.0775887499985401 +6,233.75602738491304,0.0,0.0,56.550052138776614,0.0801385830018261 +7,234.5266979302004,0.0,0.0,56.73649207791049,0.0804027919984946 +8,232.1996204913718,0.0,0.0,56.1735275547325,0.0796049999989918 +9,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767 +10,232.00807659282628,0.0,0.0,56.12718942360155,0.0795393330008664 +11,235.28654971516897,0.0,0.0,56.92031475208247,0.0806632919993717 +12,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185 +13,232.4236148875455,0.0,0.0,56.22771608165147,0.0796817920017929 +14,237.5479969606639,0.0,0.0,57.467402076728234,0.0814385839985334 +15,236.38512621563677,0.0,0.0,57.186081410914305,0.0810399170004529 +16,233.71664925617893,0.0,0.0,56.5405258165767,0.0801250829972559 +17,235.04529604296468,0.0,0.0,56.86195087631657,0.0805805829986638 +18,233.1673012201283,0.0,0.0,56.40762802382869,0.0799367500003427 +19,237.1459493238121,0.0,0.0,57.37013906674045,0.0813007500000821 +20,233.21457829256337,0.0,0.0,56.419065251527506,0.0799529579999216 +21,215.0150838520788,0.0,0.0,52.01625959546593,0.0737136249990726 +22,232.95108619602212,0.0,0.0,56.35532147574445,0.0798626249998051 +23,232.76695704397656,0.0,0.0,56.31077711355224,0.0797994999993534 +24,232.50881162889073,0.0,0.0,56.24832680223491,0.0797110000021348 +25,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835 +26,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423 +27,233.43504906083848,0.0,0.0,56.47240134549057,0.0800285419973079 +28,220.28603711570713,0.0,0.0,53.291403963779565,0.0755206659996474 +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.0795444169998518 +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.0758981670005596 +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.0805557909989147 +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.0807310410018544 +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.0746782089991029 +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.0837202080001588 +6,246.7651896921608,0.8144065666407948,0.0,66.67511152107028,0.0849927500021294 +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164 +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.0833640839991858 +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.0810425419986131 +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.0838655829975323 +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.0809435420014779 +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884 +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.0840073340004892 +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.0828537080014939 +15,220.82130434738664,0.7287831826646424,0.0,59.66516230250094,0.0760569590020168 +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.0821004999997967 +17,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.0811298329972487 +18,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.0812817919977533 +19,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.080107333997148 +20,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.0805614580021938 +21,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.0783772499999031 +22,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.0739163329999428 +23,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.0811356670019449 +24,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.0798642080007994 +25,230.1259904385399,0.7594917176189435,0.0,62.17925670767264,0.0792617500010237 +26,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.0804298330003803 +27,238.17642466410143,0.786060807472282,0.0,64.35445654218726,0.0820345419997465 +28,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.0799495419996674 +0,241.9872343116464,0.0,0.0,57.15813260782817,0.0795744579991151 +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178 +2,242.65575313120232,0.0,0.0,57.31603881906987,0.0797942920034984 +3,243.91080493823523,0.0,0.0,57.61248593463834,0.0802070000027015 +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623 +5,243.5832631360067,0.0,0.0,57.5351195486815,0.0800992920012504 +6,244.43005848717624,0.0,0.0,57.73513522765531,0.0803777500004798 +7,245.45361291465915,0.0,0.0,57.97690194672964,0.0807143329984683 +8,244.62937278860463,0.0,0.0,57.782213881635094,0.0804432920012914 +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736 +10,238.4692861580264,0.0,0.0,56.327182381697185,0.078417625001748 +11,241.07885838454743,0.0,0.0,56.94357140650459,0.0792757500021252 +12,242.28411354448383,0.0,0.0,57.22825640013194,0.0796720830003323 +13,246.60273699779663,0.0,0.0,58.24832860654358,0.0810922079981537 +14,241.59570345181905,0.0,0.0,57.065651808707806,0.0794457080010033 +15,231.5265209579827,0.0,0.0,54.687279784777374,0.0761345840001013 +16,248.01263127655392,0.0,0.0,58.58134999247521,0.0815558339963899 +17,243.81577315917053,0.0,0.0,57.590039134726815,0.0801757499975792 +18,244.07033057552212,0.0,0.0,57.65016638318072,0.0802594580018194 +19,242.9038483716201,0.0,0.0,57.3746396815968,0.0798758750024717 +20,243.88077489357264,0.0,0.0,57.60539274528096,0.0801971250002679 +21,242.48862493919952,0.0,0.0,57.27656262360784,0.0797393339998961 +22,243.75697815249185,0.0,0.0,57.57615157244288,0.0801564159992267 +23,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107 +24,247.45054804601023,0.0,0.0,58.44858419629822,0.0813709999965794 +25,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359 +26,243.3441601704367,0.0,0.0,57.478642689264305,0.0800206659987452 +27,242.30248736229245,0.0,0.0,57.23259635268276,0.0796781249991909 +28,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873 +0,228.51614058990577,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781 +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.0799711670006217 +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.0796211670021875 +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.0794739169978129 +4,229.52454429292905,0.803352641538617,0.0,56.83719938885715,0.0798063750007713 +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.0803199590009171 +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.0803647499997168 +7,230.02868718081663,0.8051171784074085,0.0,56.962040372324154,0.0799816670005384 +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.0793937079979514 +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.0795502499968279 +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844 +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.0796230419982748 +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532 +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.0812716660002479 +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.0813294170002336 +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.0794567499979166 +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.079882500001986 +17,230.13929307294055,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928 +18,233.4668454975468,0.8171509832202308,0.0,57.81343206283133,0.0811771249973389 +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.0776905000020633 +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.0788508750010805 +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.0794899579996126 +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.0768046659977699 +23,231.4062996484221,0.8099389224970295,0.0,57.30317876666483,0.080460667002626 +24,232.7924193674008,0.81479044258679,0.0,57.64642381301539,0.0809426250016258 +25,221.0030247376175,0.7735267017212804,0.0,54.72701414678058,0.0768434169985994 +26,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.0776983750001818 +27,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.0798696249985368 +28,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.079886333001923 +0,217.31809402608985,0.662843859774566,0.0,54.132248548256214,0.0751640829985262 +1,229.9303272649387,0.7013125450346716,0.0,57.273857844498174,0.0795262920000823 +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.0799910829991858 +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.0798349590004363 +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546 +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.0802340410009492 +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.074771250001504 +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.0808146669987763 +8,234.6474003152265,0.7157001316804293,0.0,58.44884408723506,0.0811577919994306 +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.0792908749972411 +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438 +11,229.3134040808069,0.6994308621201081,0.0,57.120187073142155,0.0793129160010721 +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.0796832499981974 +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.0801722920004976 +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.0801286669993714 +15,242.73663270778175,0.7403731716577222,0.0,60.463809018713974,0.083955624999362 +16,225.1590403972453,0.6867596003401816,0.0,56.08536736111483,0.0778760409993992 +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.0797353329980978 +18,230.14114558595097,0.7019555638787175,0.0,57.32637105009526,0.0795992079983989 +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.0801895000004151 +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758 +21,231.5017183127908,0.7061054589061156,0.0,57.66527914399945,0.0800697910017333 +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.0792922079999698 +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.0770003340003313 +24,234.9810967368232,0.7167179421166722,0.0,58.53196527286156,0.081273208001221 +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.0736666250013513 +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.080062208999152 +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205 +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416 +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.0792593750011292 +0,231.66268036286448,0.0672070439114779,0.0,59.881476125126845,0.0804943750008533 +1,231.99748654195568,0.0673041736414144,0.0,59.968018714500296,0.0806107079988578 +2,232.69804026717333,0.0675074094189652,0.0,60.14910179229807,0.0808541249971313 +3,232.398368697592,0.0674204724971256,0.0,60.071640994938925,0.0807500000009895 +4,218.63578046305977,0.0634278446368029,0.0,56.51420957139142,0.0759679999973741 +5,236.23653928270616,0.0685339539549481,0.0,61.06375297385877,0.0820836250022694 +6,224.8190391019204,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951 +7,232.2963206294109,0.0673908676035424,0.0,60.045263034756346,0.0807145420003507 +8,235.48322320982325,0.0683154114330789,0.0,60.869031586873376,0.0818218750027881 +9,233.22039698135623,0.0676589489356995,0.0,60.284123501708265,0.0810356250003678 +10,222.17847558987393,0.0644556064954667,0.0,57.42994538746088,0.0771989579989167 +11,235.83937549829105,0.06841873382602,0.0,60.96109183898384,0.0819456249992072 +12,229.9330033409012,0.0667052519120688,0.0,59.434379453653314,0.0798933750011201 +13,228.71740877714217,0.0663525990070038,0.0,59.1201657152404,0.0794710000009217 +14,231.33051329738623,0.0671106798077708,0.0,59.79561570872386,0.0803789589990628 +15,229.53188230999976,0.0665888837568899,0.0,59.330695427388974,0.0797539999985019 +16,229.48139935482175,0.0665742382810623,0.0,59.31764630842652,0.0797364590034703 +17,230.42646205313747,0.0668484079063352,0.0,59.56193144454467,0.0800648339973122 +18,231.01585022398584,0.0670193937406399,0.0,59.71427982291018,0.0802696249993459 +19,230.07786450510628,0.0667472771990444,0.0,59.471823984348624,0.0799437089990533 +20,228.97666749951748,0.0664278118652502,0.0,59.187180371937934,0.0795610829991346 +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.0809936670011666 +22,229.52001057054088,0.0665854396781377,0.0,59.32762675322075,0.0797498749998339 +23,231.32547392448515,0.0671092178487047,0.0,59.794313103195904,0.0803772079998452 +24,230.29359350566224,0.0668098617654952,0.0,59.52758683305629,0.0800186669985123 +25,231.8720547369228,0.0672677849541406,0.0,59.93559639413931,0.0805671249981969 +26,231.05506295725297,0.067030769642371,0.0,59.724415751352595,0.08028325000123 +27,229.7340616961576,0.0666475374807535,0.0,59.38295589535144,0.0798242499986372 +28,228.61583845949133,0.066323132712356,0.0,59.09391124670925,0.0794357080012559 +0,232.09826942958523,0.0,0.0,56.551862602132445,0.080378708000353 +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795 +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539 +3,229.08763101285805,0.0,0.0,55.81830603358978,0.0793360839998058 +4,230.24289431199097,0.0,0.0,56.09979150749018,0.0797361669974634 +5,230.65509338121083,0.0,0.0,56.20022579846761,0.0798789170003146 +6,229.2921654886054,0.0,0.0,55.86814184493939,0.0794069170005968 +7,231.28662566367748,0.0,0.0,56.354101684550855,0.0800976250029634 +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006 +9,232.53862219376708,0.0,0.0,56.65915667665391,0.080531208001048 +10,229.66092988839787,0.0,0.0,55.95799306925431,0.0795346250015427 +11,230.27249179749467,0.0,0.0,56.107003077562155,0.0797464169991144 +12,231.61833400897208,0.0,0.0,56.43492402249065,0.0802125000009255 +13,230.59806408551117,0.0,0.0,56.18633033555602,0.0798591669990855 +14,230.8875418936153,0.0,0.0,56.25686299945956,0.0799594170021009 +15,231.22706975553947,0.0,0.0,56.33959060033449,0.0800770000023476 +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293 +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725 +18,232.0170568313989,0.0,0.0,56.532074760949975,0.0803505830008362 +19,230.92965116248496,0.0,0.0,56.26712312588466,0.0799740000002202 +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622 +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255 +22,230.93169844780863,0.0,0.0,56.267621956826474,0.079974709002272 +23,230.3377015469545,0.0,0.0,56.1228917474813,0.079768999999942 +24,231.03432517839207,0.0,0.0,56.2926274546336,0.0800102499997592 +25,231.1403216955104,0.0,0.0,56.318454017180194,0.0800469579990021 +26,232.6395683748504,0.0,0.0,56.68375270047117,0.0805661670019617 +27,232.01200359601728,0.0,0.0,56.53084351578086,0.0803488329984247 +28,231.3346313210155,0.0,0.0,56.365798494460634,0.0801142499985871 +0,219.4740765737124,0.0,0.0,54.50948419192974,0.0763789999982691 +1,224.61151246000796,0.0,0.0,55.78543889511322,0.0781668750023527 +2,228.51035754085143,0.0,0.0,56.75377209244936,0.0795237089987495 +3,229.6376006964406,0.0,0.0,57.03373883808645,0.079915999998775 +4,230.7343159231135,0.0,0.0,57.30612354175918,0.0802976669983763 +5,226.04921290785495,0.0,0.0,56.14251209053602,0.0786672079993877 +6,230.46205301041525,0.0,0.0,57.23850320514603,0.0802029169972229 +7,231.10774857892207,0.0,0.0,57.39887081180731,0.0804276250019029 +8,236.0373364930903,0.0,0.0,58.62320353790871,0.0821431669974117 +9,230.05844876046567,0.0,0.0,57.138262393903645,0.0800624590010556 +10,229.0068702685671,0.0,0.0,56.87708803529338,0.079696500000864 +11,231.19179807051853,0.0,0.0,57.419745689173425,0.0804568749990721 +12,231.6291686756857,0.0,0.0,57.52837285125362,0.0806090839978423 +13,228.26024347869043,0.0,0.0,56.69165273543744,0.0794366670015733 +14,229.64203161645344,0.0,0.0,57.03483931960193,0.0799175419997482 +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065 +16,230.78484044554267,0.0,0.0,57.318672019919575,0.0803152499975112 +17,228.86259822421837,0.0,0.0,56.84125603707502,0.0796462920006888 +18,233.46328968448563,0.0,0.0,57.98390268737843,0.0812473750011122 +19,230.21050220418272,0.0,0.0,57.17602701246824,0.0801153749998775 +20,228.4539624795744,0.0,0.0,56.73976558311954,0.079504082998028 +21,229.74487946877807,0.0,0.0,57.06038303514221,0.0799533339995832 +22,229.0921151390923,0.0,0.0,56.89825980188594,0.0797261660009098 +23,229.87753688321,0.0,0.0,57.093330376112064,0.0799995000015769 +24,230.25444357048204,0.0,0.0,57.18694047090059,0.0801306670000485 +25,230.96970050207184,0.0,0.0,57.36458462375144,0.0803795829997398 +26,231.0153171132757,0.0,0.0,57.37591415289732,0.0803954580005665 +27,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631 +28,229.60838883425131,0.0,0.0,57.0264836598664,0.0799058340016927 +0,233.03169757350443,0.0,0.0,57.14590514588489,0.080589625002176 +1,230.56252454563105,0.0,0.0,56.540394697697366,0.0797357080009533 +2,229.26155447947497,0.0,0.0,56.2213603655772,0.0792857919987 +3,228.48962291036645,0.0,0.0,56.03206110420322,0.0790188339997257 +4,230.6690331650355,0.0,0.0,56.56651359707923,0.0797725420015922 +5,220.39776413510504,0.0,0.0,54.04771048220629,0.0762204169986944 +6,220.29306275915428,0.0,0.0,54.022034769584245,0.0761842079991765 +7,231.44915659141645,0.0,0.0,56.757821731510106,0.0800423330001649 +8,233.91712382953764,0.0,0.0,57.36303648624681,0.0808958330017048 +9,232.205545892069,0.0,0.0,56.94330959294072,0.080303915998229 +10,230.29842747184577,0.0,0.0,56.47563069140557,0.0796443750004982 +11,227.92781120901137,0.0,0.0,55.89428912498413,0.0788245420008024 +12,229.44806166938773,0.0,0.0,56.26709715715861,0.0793502919987076 +13,229.2592643478582,0.0,0.0,56.22079876110234,0.0792849999997997 +14,229.88360367044356,0.0,0.0,56.37390426597064,0.0795009159992332 +15,229.66167746902968,0.0,0.0,56.31948173981888,0.0794241670009796 +16,233.4874835436179,0.0,0.0,57.25767664343713,0.0807472499982395 +17,213.5309742305619,0.0,0.0,52.363781091364665,0.0738456670005689 +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171 +19,231.8804855552513,0.0,0.0,56.86359568548564,0.0801915000010922 +20,230.5933690691165,0.0,0.0,56.54795863956332,0.0797463749986491 +21,232.7323000327177,0.0,0.0,57.07248447545736,0.0804860839998582 +22,231.33204741758416,0.0,0.0,56.729103279002494,0.0800018329973681 +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533 +24,229.07625018644575,0.0,0.0,56.17591855803412,0.0792217079979309 +25,230.23830565490223,0.0,0.0,56.460887136412715,0.0796235830021032 +26,231.3146979161939,0.0,0.0,56.724848694878965,0.0799958329989749 +27,227.2761174880526,0.0,0.0,55.734475554770874,0.0785991659977298 +28,231.517470276152,0.0,0.0,56.77457416213956,0.0800659580017963 +0,227.44231616412424,0.0,0.0,55.812647893416646,0.0788156249982421 +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113 +2,232.46123844002852,0.0,0.0,57.04425398375972,0.0805548329990415 +3,231.72020051948184,0.0,0.0,56.86240880546275,0.0802980410007876 +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412 +5,228.2878413970284,0.0,0.0,56.02013347879481,0.0791086250028456 +6,233.16163633716695,0.0,0.0,57.216126403446424,0.0807975420029833 +7,233.40656160322865,0.0,0.0,57.2762292368393,0.0808824159976211 +8,229.68887379156396,0.0,0.0,56.36393637810691,0.0795941249998577 +9,231.72140676401816,0.0,0.0,56.86270480887458,0.0802984590009145 +10,230.73183059687105,0.0,0.0,56.619870198709755,0.0799555410012544 +11,230.14337967589475,0.0,0.0,56.47546873196024,0.0797516250022454 +12,228.8957740192038,0.0,0.0,56.16931560970449,0.079319291999127 +13,231.420685462694,0.0,0.0,56.78891004461117,0.0801942499965662 +14,226.5801978801324,0.0,0.0,55.60109049706921,0.0785168750007869 +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736 +16,231.71876053022535,0.0,0.0,56.86205544284009,0.0802975420010625 +17,230.5897102165952,0.0,0.0,56.584994917466624,0.0799062920013966 +18,230.15408003990945,0.0,0.0,56.47809452147538,0.0797553330012306 +19,231.50172891975,0.0,0.0,56.8087975044692,0.0802223339996999 +20,231.60729837620207,0.0,0.0,56.834703461639485,0.080258917001629 +21,232.95806964037587,0.0,0.0,57.166172654458805,0.0807270000004791 +22,230.15576242448788,0.0,0.0,56.478507366102015,0.0797559159982483 +23,231.49847956893817,0.0,0.0,56.808000138016894,0.0802212080016033 +24,232.94869093924265,0.0,0.0,57.163871191156474,0.0807237499975599 +25,232.1919025824176,0.0,0.0,56.97816097327938,0.0804614999979094 +26,231.04902374637277,0.0,0.0,56.69770703165235,0.0800654579979891 +27,233.78796274238013,0.0,0.0,57.36982223151427,0.0810145830000692 +28,229.2454318904766,0.0,0.0,56.2551190432152,0.0794404590014892 +0,231.74900516849095,0.0,0.0,56.40772130442817,0.0799167500008479 +1,231.44620836593853,0.0,0.0,56.3340205451182,0.0798123329986992 +2,233.38067208769257,0.0,0.0,56.80486912723355,0.0804794169998786 +3,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277 +4,230.28251252118744,0.0,0.0,56.05077690898644,0.0794110419992648 +5,231.06523660858215,0.0,0.0,56.24129199727312,0.0796809580024273 +6,232.49512115383507,0.0,0.0,56.58932597855168,0.0801740419992711 +7,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101 +8,224.10794249743364,0.0,0.0,54.54788620694715,0.0772817920005763 +9,233.06518831792772,0.0,0.0,56.72808035936796,0.0803706250007962 +10,230.32105483741717,0.0,0.0,56.06015811099304,0.0794243330019526 +11,231.99791348728908,0.0,0.0,56.46830560366566,0.0800025839998852 +12,231.9559841150949,0.0,0.0,56.4580999920408,0.0799881249986356 +13,231.27282163561787,0.0,0.0,56.291818204898,0.0797525420020974 +14,232.3729636964068,0.0,0.0,56.55959284632588,0.0801319169986527 +15,230.21448714015344,0.0,0.0,56.03421952729583,0.0793875840026885 +16,232.06509211751913,0.0,0.0,56.48465688616146,0.0800257500013685 +17,233.97236945534013,0.0,0.0,56.94888830085012,0.0806834590002836 +18,214.36216993645792,0.0,0.0,52.17576460014163,0.0739210419997107 +19,232.36365799337193,0.0,0.0,56.557327837667266,0.0801287080030306 +20,232.1677971782116,0.0,0.0,56.509655303893105,0.0800611670019861 +21,231.68605456379217,0.0,0.0,56.392399123592,0.0798950419994071 +22,230.5801127299852,0.0,0.0,56.123212817075014,0.0795136669985367 +23,231.682548612676,0.0,0.0,56.39154577488691,0.079893833000824 +24,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836 +25,224.88571357316405,0.0,0.0,54.73719573190735,0.0775499999981548 +26,230.4003201673142,0.0,0.0,56.07945129688906,0.0794516670030134 +27,232.91258211809028,0.0,0.0,56.69093600147309,0.0803180000002612 +28,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247 +0,228.4317049341564,0.0,0.0,55.90521754742971,0.07943662499747 +1,224.63081830801715,0.0,0.0,54.975007821206816,0.0781148749993008 +2,229.29176212320093,0.0,0.0,56.115703584254696,0.0797357080009533 +3,230.26313272867944,0.0,0.0,56.35343190237108,0.0800735000011627 +4,230.50408894930908,0.0,0.0,56.412402306403166,0.0801572919990576 +5,231.4912756090507,0.0,0.0,56.654001365468474,0.080500583997491 +6,231.25858687418443,0.0,0.0,56.597054303994305,0.0804196669996599 +7,233.34570857816615,0.0,0.0,57.10784589022658,0.081145459000254 +8,234.07839758501584,0.0,0.0,57.28716048376931,0.0814002499973867 +9,232.5652090520479,0.0,0.0,56.91683039254912,0.0808740419997775 +10,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632 +11,229.16762905823128,0.0,0.0,56.08532388716335,0.079692540999531 +12,231.3745703445235,0.0,0.0,56.62543951060597,0.0804599999974016 +13,230.06686980122603,0.0,0.0,56.305399508361056,0.0800052499980665 +14,232.03033867738873,0.0,0.0,56.78592892830791,0.0806880419986555 +15,235.10392526784705,0.0,0.0,57.53814293047527,0.0817568750026112 +16,233.6283588093202,0.0,0.0,57.177020275047866,0.0812437499989755 +17,228.53918224908057,0.0,0.0,55.93152100068275,0.0794739999982994 +18,230.63636872152335,0.0,0.0,56.44477578732998,0.0802032920000783 +19,230.2772722892251,0.0,0.0,56.35689234674573,0.0800784170023689 +20,230.43650836221164,0.0,0.0,56.3958629760823,0.0801337909979338 +21,228.8680844073801,0.0,0.0,56.01201484770305,0.0795883750033681 +22,222.30861533511248,0.0,0.0,54.40668363684307,0.0773073340023984 +23,229.35538580934664,0.0,0.0,56.131274522694135,0.0797578329984389 +24,231.67831058690103,0.0,0.0,56.69977535786903,0.0805656250013271 +25,217.02748644269255,0.0,0.0,53.114206921704714,0.0754708329986897 +26,229.4719703058166,0.0,0.0,56.15980682139448,0.079798375001701 +27,230.24671853567145,0.0,0.0,56.349414775977685,0.0800677920015004 +28,232.43436710389943,0.0,0.0,56.88480879739587,0.080828541998926 +0,233.25053223547215,0.0,0.0,56.63698268361321,0.0794133329982287 +1,221.60881151463116,0.0,0.0,53.81018555455842,0.0754497499983699 +2,238.10873630723785,0.0,0.0,57.81663281023447,0.0810673750020214 +3,231.07861771633884,0.0,0.0,56.10960688801906,0.0786738750030053 +4,229.07742623183637,0.0,0.0,55.6236853925005,0.077992541999265 +5,234.276462541354,0.0,0.0,56.886095071104634,0.0797626249986933 +6,236.55130141861645,0.0,0.0,57.43846255710658,0.0805371249989548 +7,235.73072929591643,0.0,0.0,57.23921444110614,0.0802577499998733 +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205 +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879 +10,233.68327444202225,0.0,0.0,56.74205945503127,0.0795606659994518 +11,230.57134184737788,0.0,0.0,55.98643214397538,0.0785011659972951 +12,233.56836056947228,0.0,0.0,56.71415651758738,0.0795215420002932 +13,237.12197023826567,0.0,0.0,57.577030129693824,0.080731417001516 +14,234.29359506112613,0.0,0.0,56.890255122601026,0.0797684579993074 +15,234.53138547652537,0.0,0.0,56.9479944619724,0.0798494169976038 +16,234.16852151095043,0.0,0.0,56.859885251940554,0.079725874998985 +17,234.93438883615585,0.0,0.0,57.04585016280221,0.0799866250017657 +18,234.65144234374125,0.0,0.0,56.977146201282,0.079890291999618 +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866 +20,229.93275390578643,0.0,0.0,55.83137271562917,0.0782837500009918 +21,234.6409155169552,0.0,0.0,56.974590118341126,0.0798867079975025 +22,237.23517173824405,0.0,0.0,57.60451727552191,0.0807699580000189 +23,235.77833496092907,0.0,0.0,57.250773862639385,0.0802739579994522 +24,233.97001868432088,0.0,0.0,56.81168557133654,0.0796582919974753 +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417 +26,231.6775567969512,0.0,0.0,56.255038934891886,0.0788777920024585 +27,234.7314802516568,0.0,0.0,56.99658069329023,0.0799175419997482 +28,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256 +0,226.42116177213327,0.0,0.0,56.03535537217832,0.0791302920006273 +1,224.91178830861125,0.0,0.0,55.661811319335285,0.0786027920003107 +2,228.6300203842071,0.0,0.0,56.582010006072565,0.0799022499995771 +3,229.0332362707683,0.0,0.0,56.68179902454736,0.0800431669995305 +4,228.41553770137455,0.0,0.0,56.52892921954344,0.0798272920001181 +5,231.42689083939575,0.0,0.0,57.27418748921862,0.0808797079989744 +6,219.32257694174305,0.0,0.0,54.27857733739913,0.0766494589988724 +7,226.24316157257405,0.0,0.0,55.99130337473889,0.0790680840000277 +8,229.2636968600091,0.0,0.0,56.73883406895891,0.0801237090017821 +9,230.3898811711504,0.0,0.0,57.01754537666294,0.080517291000433 +10,230.30606873637544,0.0,0.0,56.99680323608533,0.0804879999996046 +11,228.31634253998695,0.0,0.0,56.504380117878,0.0797926250015734 +12,228.8224476250095,0.0,0.0,56.62963244885686,0.0799695000023348 +13,224.49235988305836,0.0,0.0,55.5580099754366,0.0784562089975224 +14,216.08373905100171,0.0,0.0,53.477020491828235,0.075517541001318 +15,226.49722560636775,0.0,0.0,56.05417986697792,0.0791568749991711 +16,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319 +17,227.09393887275,0.0,0.0,56.20185616929578,0.0793654159970174 +18,228.4411698641868,0.0,0.0,56.53527274035617,0.0798362499990616 +19,228.40921978706487,0.0,0.0,56.52736564407734,0.0798250839980028 +20,228.2586401211186,0.0,0.0,56.490099758560795,0.0797724590011057 +21,229.08092389643008,0.0,0.0,56.693600894257315,0.0800598330024513 +22,228.80122768941447,0.0,0.0,56.62438087862935,0.0799620840007264 +23,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063 +24,233.76201033495235,0.0,0.0,57.85208952693407,0.0816957919996639 +25,228.461082144718,0.0,0.0,56.540200688376146,0.0798432089977723 +26,227.8610268005468,0.0,0.0,56.39169727910804,0.0796335000013641 +27,227.20291135293743,0.0,0.0,56.228824989724494,0.0794034999998984 +28,228.72158427175552,0.0,0.0,56.60467049830692,0.0799342499994963 +0,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.0793974170010187 +1,231.44524097492229,0.7330543192410438,0.0,57.97793252179165,0.0797550839997711 +2,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.0800826669983507 +3,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.0800887080004031 +4,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297 +5,232.4248898509369,0.7361571518457545,0.0,58.22333837325513,0.0800926669980981 +6,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.0803107920000911 +7,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.0799042079997889 +8,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.0808812920004129 +9,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859 +10,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.0794993339986831 +11,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.0802035840024473 +12,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.0801895829972636 +13,232.42766991836817,0.7361659571269938,0.0,58.22403479095315,0.0800936249979713 +14,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.0797295000011217 +15,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.0799505420000059 +16,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.0796424159998423 +17,239.55219725510383,0.7587314050694335,0.0,60.008756582764285,0.0825487079964659 +18,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.0812833330019202 +19,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.0804598750000877 +20,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.0804541249999601 +21,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.0794215829992026 +22,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.080049083000631 +23,232.1192158874564,0.7351889935968963,0.0,58.14676585720907,0.0799873329997353 +24,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.0798464580002473 +25,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.0792702500002633 +26,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.0836044580028101 +27,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.0798420829996757 +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.0789188749986351 +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.0791977920016506 +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.0790694999996048 +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.0798704169974371 +4,232.7516641096096,1.0435784766268297,0.0,58.70970526571582,0.0802916249995178 +5,230.0622758174019,1.0315201837343737,0.0,58.03132904621767,0.0793638750001264 +6,230.98301627009252,1.0356484675112625,0.0,58.26357830127876,0.0796814999994239 +7,226.34355984443872,1.0148467392504483,0.0,57.09331333073491,0.0780810409996775 +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.0827262089987925 +9,232.50767840573172,1.0424845285764657,0.0,58.64816186572117,0.0802074580024054 +10,230.61547089220113,1.0340005203439735,0.0,58.170867983222266,0.0795547090019681 +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.0818103749988949 +12,223.25292728760996,1.0009894049632495,0.0,56.31372652438411,0.0770148750016233 +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.079476541999611 +14,231.05210405201868,1.035958233383364,0.0,58.281005129696354,0.0797053329988557 +15,230.8566737288988,1.0350819909742357,0.0,58.23170942771182,0.0796379160019569 +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.0801497499996912 +17,235.03425108209285,1.0538128121991437,0.0,59.28546917662278,0.0810790420000557 +18,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.0816356670002278 +19,233.53797138226943,1.0471040082224985,0.0,58.90804484967861,0.0805628749985771 +20,230.25214908541847,1.032371510218104,0.0,58.07922302646367,0.0794293749968346 +21,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.0800244170022779 +22,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.0798051670026325 +23,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.0763507919982657 +24,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.0793419999972684 +25,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.0790835829975549 +26,236.30393803482497,1.059505652166557,0.0,59.60573733478951,0.0815170419991773 +27,233.44375945039985,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887 +28,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058 +0,230.518560530242,0.8053050149528105,0.0,57.34442793976471,0.080327292002039 +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.0802637079978012 +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285 +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.0799302919986075 +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.0747683330009749 +5,232.19999083317265,0.811179007277459,0.0,57.762705143215726,0.0809132089998456 +6,228.9162862924588,0.7997075503666682,0.0,56.94584181569317,0.0797689579994767 +7,229.74181621161017,0.8025914976824808,0.0,57.151202897473325,0.0800566249999974 +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.0797927080020599 +9,229.8543330351777,0.8029845695552058,0.0,57.17919289041028,0.0800958330000867 +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.0801922499995271 +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447 +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.0796882089998689 +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.0825952499981212 +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.0810012080000888 +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.0809156670002266 +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.0799027920002117 +17,229.4390584890892,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617 +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.0801350420006201 +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.0804691659977834 +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.0799565829984203 +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.0798089579984662 +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.0805384579980454 +23,229.24403659660769,0.8008525295951359,0.0,57.027373878253634,0.0798831669999344 +24,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.0800860000017564 +25,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434 +26,227.427249190088,0.7945056740265084,0.0,56.575424871304286,0.0792500829993514 +27,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.079899625001417 +28,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.0798307090008165 +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987 +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.0773468749976018 +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888 +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.0805877500024507 +4,230.5488593174952,0.8730367524402673,0.0,57.25106395810215,0.0799453340005129 +5,231.88767512675335,0.8781065472320985,0.0,57.58352550118184,0.0804095829989819 +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.0736084160016616 +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.0800470840003981 +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.0799534170000697 +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.0799360419987351 +10,233.5648652940369,0.8844576897239966,0.0,58.00001388382362,0.0809911670003202 +11,240.11716945213135,0.909269794022053,0.0,59.62711533875386,0.0832632500023464 +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.0759962089978216 +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.0802892920000886 +14,218.27767539201488,0.8265685348372249,0.0,54.20382122682572,0.0756901670029037 +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.0803171670013398 +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995 +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.079914791000192 +18,230.85646606210256,0.874201590098262,0.0,57.32745042759757,0.0800519999975222 +19,232.308354026224,0.8796995637462603,0.0,57.6879906225913,0.0805554580001626 +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418 +21,229.6469381758771,0.869621379634839,0.0,57.02709431836155,0.0796325829978741 +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.0763502500012691 +23,225.7957025466795,0.8550376152364794,0.0,56.07073592223835,0.0782971249973343 +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.0806615000001329 +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.0789183339984447 +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.0803770000020449 +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.0772449169999163 +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.0793845000007422 +29,229.30784864573525,0.8683373237385839,0.0,56.94288988362637,0.0795150000012654 +0,250.52289280398944,0.0,0.0,59.092548476657214,0.0806277090014191 +1,248.85123961316407,0.0,0.0,58.69824420326574,0.0800897080007416 +2,244.3419790590411,0.0,0.0,57.6346140698836,0.0786384580023877 +3,252.30082937497212,0.0,0.0,59.5119225379787,0.0811999159996048 +4,250.19896865042335,0.0,0.0,59.01614227068889,0.0805234580002434 +5,253.6747113428116,0.0,0.0,59.83598947604204,0.0816420829978596 +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064 +7,252.90957722267183,0.0,0.0,59.65551205707467,0.0813958340004319 +8,251.272752152766,0.0,0.0,59.26942293081308,0.0808690420017228 +9,249.41985231096191,0.0,0.0,58.832366770002,0.0802727089976542 +10,250.0490483597647,0.0,0.0,58.98077954617207,0.0804752080002799 +11,251.42707217541096,0.0,0.0,59.30582345021072,0.0809187080012634 +12,248.47915764070973,0.0,0.0,58.61047868312323,0.0799699579984007 +13,250.05034404295012,0.0,0.0,58.98108516782839,0.0804756249999627 +14,249.42062599741175,0.0,0.0,58.83254926471747,0.0802729579991137 +15,247.92867519320183,0.0,0.0,58.48063262254641,0.0797927919993526 +16,248.99960632515408,0.0,0.0,58.73324047455442,0.0801374580005358 +17,247.65887149478823,0.0,0.0,58.41699217855648,0.0797059590004209 +18,249.7995685662133,0.0,0.0,58.92193304065166,0.0803949159999319 +19,243.1112872649154,0.0,0.0,57.34432237761458,0.0782423749988083 +20,248.4247855184506,0.0,0.0,58.5976535587028,0.0799524590001965 +21,250.2673260892368,0.0,0.0,59.03226620739428,0.0805454580004152 +22,246.058297611157,0.0,0.0,58.039453867584825,0.0791908339997462 +23,248.9287911192123,0.0,0.0,58.71653680750362,0.0801146669982699 +24,247.1768707710309,0.0,0.0,58.30329937062335,0.0795508330011216 +25,248.9422544277273,0.0,0.0,58.71971249018146,0.0801189999983762 +26,251.83799359197425,0.0,0.0,59.40275029572405,0.08105095800056 +27,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028 +28,248.2156956504442,0.0,0.0,58.548334101215886,0.0798851660001673 +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552 +1,224.81426846497675,0.0,0.0,54.81441236053592,0.0781784999999217 +2,226.5529604006259,0.0,0.0,55.23834175513952,0.0787831250017916 +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438 +4,231.3919661313005,0.0,0.0,56.418192381824795,0.080465874998481 +5,230.0666493794804,0.0,0.0,56.09505248755288,0.0800049999998009 +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661 +7,233.63006128224424,0.0,0.0,56.96388670693858,0.0812441659982141 +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709 +9,229.45976573945956,0.0,0.0,55.94708158550068,0.0797939580006641 +10,230.95702356067633,0.0,0.0,56.312144302305065,0.0803146250000281 +11,225.23255524946725,0.0,0.0,54.916399411654055,0.0783239579977816 +12,228.58460950675445,0.0,0.0,55.733700224313345,0.0794896249972225 +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901 +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385 +15,229.41974814640807,0.0,0.0,55.937324460820925,0.0797800420004932 +16,227.88570495852065,0.0,0.0,55.56329270361139,0.0792465829981665 +17,230.7855627294707,0.0,0.0,56.27033857187008,0.0802550000007613 +18,231.2199071705155,0.0,0.0,56.37624081491051,0.0804060420014138 +19,228.32004939956545,0.0,0.0,55.669194946651814,0.079397624998819 +20,229.05094560519663,0.0,0.0,55.84740270135428,0.0796517920025507 +21,228.0491398436106,0.0,0.0,55.60314154081637,0.0793034169983002 +22,229.22600099912444,0.0,0.0,55.8900848612288,0.0797126670004217 +23,229.4193886869974,0.0,0.0,55.93723681711175,0.0797799169995414 +24,228.67255850144625,0.0,0.0,55.75514402543258,0.0795202090012026 +25,230.46097335054304,0.0,0.0,56.19119690445779,0.0801421249998384 +26,235.15859470850617,0.0,0.0,57.33657506923012,0.0817757089971564 +27,229.769617397626,0.0,0.0,56.022629888894855,0.0799017080025805 +28,230.28699632438577,0.0,0.0,56.148777673160055,0.0800816250011848 +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887 +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.0796174999995855 +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.0796333750004123 +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.0792222920026688 +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.0796523749995685 +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398 +6,242.56584621915377,0.8435312498927311,0.0,63.60225624191192,0.0801713749970076 +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.079640541000117 +8,238.9652650419552,0.8310101023854332,0.0,62.65816171986166,0.0789813330011384 +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.0791503330001432 +10,240.76927408882528,0.8372836072083226,0.0,63.131183983507526,0.0795775830010825 +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.0801001669969991 +12,241.2736644165797,0.8390376422888429,0.0,63.26343822857876,0.0797442909970413 +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.0799174999992828 +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.0786007089991471 +15,239.97114719201255,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209 +16,241.24731757307185,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015 +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.0798793750000186 +18,243.9540875360528,0.8483589078315926,0.0,63.96626165050208,0.0806302079981833 +19,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842 +20,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.0790053750024526 +21,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.0793227089998254 +22,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263 +23,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.0781720000013592 +24,239.45074845867185,0.8326983880187502,0.0,62.78545845661377,0.0791417920008825 +25,240.48108950298655,0.8362814351891312,0.0,63.0556202132605,0.0794823340002039 +26,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.0798562079980911 +27,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.0802619999994931 +0,231.5143790184337,0.0,0.0,56.43350933210195,0.07974941700013 +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043 +2,232.4218146090488,0.0,0.0,56.654704123926024,0.0800620000009075 +3,230.38631370178572,0.0,0.0,56.15853425347324,0.0793608340027276 +4,231.63461351252136,0.0,0.0,56.46281746610602,0.0797908339991408 +5,235.2815330550488,0.0,0.0,57.351783710488874,0.0810470830001577 +6,233.1955921220685,0.0,0.0,56.843318674292625,0.0803285420006432 +7,232.45447362177313,0.0,0.0,56.662665023405225,0.0800732500028971 +8,230.41134935946187,0.0,0.0,56.16463689827264,0.0793694579988368 +9,231.09162631947495,0.0,0.0,56.3304599298013,0.0796037920008529 +10,230.3859508211676,0.0,0.0,56.15844579837669,0.0793607090017758 +11,231.53022371058705,0.0,0.0,56.43737160444242,0.0797548749978886 +12,231.62904551287176,0.0,0.0,56.461460220990105,0.0797889159985061 +13,232.76678951884415,0.0,0.0,56.738794558713785,0.0801808329997584 +14,232.42798352675112,0.0,0.0,56.656207847695576,0.0800641249988984 +15,231.8744757845807,0.0,0.0,56.52128584213549,0.079873459002556 +16,232.59188239161537,0.0,0.0,56.69615952654616,0.0801205829993705 +17,222.8084544625911,0.0,0.0,54.31136954644485,0.0767504999967059 +18,231.10819677286457,0.0,0.0,56.33449911233486,0.0796095000005152 +19,231.5256282331062,0.0,0.0,56.43625141950013,0.0797532920005323 +20,233.51710189953573,0.0,0.0,56.92168929258419,0.0804392919999372 +21,232.29395967478635,0.0,0.0,56.62353844576622,0.0800179580000985 +22,230.4144962399048,0.0,0.0,56.165403975927155,0.079370542000106 +23,230.3471199864287,0.0,0.0,56.14898046717825,0.0793473330013512 +24,233.2193011110168,0.0,0.0,56.84909793281966,0.0803367090011306 +25,231.8840296201605,0.0,0.0,56.523614667116625,0.0798767499982204 +26,232.6371201920523,0.0,0.0,56.7071866076456,0.0801361659978283 +27,230.12782273774823,0.0,0.0,56.09552498254536,0.0792717920012364 +28,233.83401619952215,0.0,0.0,56.998939725933454,0.080548459001875 +0,230.37705684275676,0.1002220374895983,0.0,57.32700544405026,0.0798094169986143 +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.0802579999981389 +2,230.45222653474644,0.1002547389217284,0.0,57.345710663228665,0.0798354580001614 +3,234.36824654926497,0.1019583439164435,0.0,58.320172720205726,0.0811920829983137 +4,233.63132613550113,0.1016377578895741,0.0,58.13679751283642,0.0809367920010117 +5,230.04329489624553,0.1000768394270209,0.0,57.24395215225599,0.0796937920022173 +6,229.48124985739312,0.0998323302743879,0.0,57.10409291694992,0.0794990829999733 +7,226.653234646772,0.0986020452349646,0.0,56.400369874399765,0.0785193750016333 +8,228.51640718827412,0.0994125901341099,0.0,56.8640015567109,0.079164833001414 +9,230.26363694955552,0.1001726958887277,0.0,57.29878204835227,0.0797701249975944 +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.0796512080014508 +11,230.75483929485844,0.1003863860041437,0.0,57.42101279437023,0.0799402919983549 +12,237.0613136942452,0.1031299218507447,0.0,58.99031529862598,0.082125041000836 +13,217.22370668195057,0.0944998723964402,0.0,54.05392701076379,0.0752527080003346 +14,232.80949090029833,0.1012802309601065,0.0,57.93229210918096,0.0806520840014854 +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.0799674589979986 +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.079922290999093 +17,232.13462926046583,0.1009866426597154,0.0,57.76435960135722,0.080418291996466 +18,230.06325854563016,0.1000855243092938,0.0,57.24891990491609,0.0797007080000185 +19,232.48498623238729,0.1011390601358993,0.0,57.85154239773443,0.0805396659998223 +20,232.0403330344357,0.100945620519621,0.0,57.74089493722326,0.0803856249985983 +21,229.7789294389717,0.0999618312524528,0.0,57.17816747640304,0.0796022079994145 +22,230.30609579896037,0.100191166965905,0.0,57.30934750449767,0.0797848339971096 +23,232.81899066563767,0.1012843636886474,0.0,57.93465602990636,0.0806553750007879 +24,233.0890051681689,0.101401829394505,0.0,58.001846413656885,0.0807489159997203 +25,234.19324993623465,0.101882214299406,0.0,58.27662657926024,0.0811314590027905 +26,218.84922050226433,0.0952070274806834,0.0,54.45841971895093,0.0758158339995134 +27,225.17289320878123,0.0979580451894349,0.0,56.03200184835682,0.0780065410035604 +28,239.13076194741328,0.1040302038634338,0.0,59.50527660988416,0.0828419589997793 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/mac_report.md new file mode 100644 index 000000000..cfd12a070 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/mac_report.md @@ -0,0 +1,41 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 504.53 ms | 78.18 ms | +| **Average Power** | 4.258 W | 3.585 W | +| **Total Energy** | 1933.48 J | 252.27 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.36% | 0.00e+00 | +81.417 | large | βœ… | +| `gpu_mj` | +81.96% | 0.00e+00 | +2.519 | large | βœ… | +| `dram_mj` | +87.79% | 0.00e+00 | +170.568 | large | βœ… | +| `time_s` | +84.43% | 0.00e+00 | +221.489 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.4% lower energy (Cohen’s d = +81.417, large) +- **`gpu_mj`**: 82.0% lower energy (Cohen’s d = +2.519, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +170.568, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +221.489, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..c0f6243ae --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.686158652221,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038 +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148 +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852 +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037 +4,1681.3039830173152,2.5037288286533763,0.0,471.3352977567602,0.5120100000021921 +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298 +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512 +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499 +8,1673.0168005136268,2.491387896881146,0.0,469.0120762141986,0.5094862920013838 +9,1674.6516856505996,2.493822500671014,0.0,469.4703984929874,0.5099841660012316 +10,1674.632669554008,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829 +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715 +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677 +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509 +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898 +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368 +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927 +17,1674.9585800219634,2.4942795151625616,0.0,469.5564329944028,0.5100776250001218 +18,1677.512503132874,2.498082712551933,0.0,470.27239758027656,0.5108553749996645 +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581 +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195 +21,1692.7334251702798,2.520749084420836,0.0,474.5394176391704,0.5154906250027125 +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146 +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418 +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472 +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981 +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635 +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165 +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868 +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495 +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931 +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782 +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094 +3,1677.138960668916,0.7677832068506811,0.0,468.280992421798,0.5116080420011713 +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182 +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746 +6,1665.3088555742995,0.7623674623954318,0.0,464.9778592383964,0.5079992909995781 +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733 +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189 +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731 +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449 +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992 +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349 +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844 +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853 +15,1664.589709954197,0.7620382422512794,0.0,464.777063578302,0.507779916999425 +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326 +17,1674.663941097445,0.7666501591377807,0.0,467.5899318428168,0.5108530420002353 +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989 +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774 +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128 +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219 +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212 +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154 +24,1672.187420124346,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954 +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098 +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352 +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691 +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941 +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253 +0,1700.6486549674398,2.245545305325342,0.0,471.7991233293258,0.5144435829970462 +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695 +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564 +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469 +4,1710.1798343752505,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836 +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368 +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275 +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373 +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759 +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611 +10,1701.928274758921,2.247234921935432,0.0,472.1541193445534,0.5148306660012167 +11,1688.930690823444,2.230072844688242,0.0,468.5482900697967,0.5108989170003042 +12,1689.5541088888797,2.230896009135527,0.0,468.7212406059824,0.5110874999991211 +13,1689.9560382136613,2.2314267187007863,0.0,468.8327450619548,0.5112090829970839 +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964 +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932 +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191 +17,1694.2118484628922,2.237046112628863,0.0,470.0134048877091,0.5124964590031595 +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352,0.5130589580003289 +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098 +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675 +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118 +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824 +23,1685.693758534626,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166 +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946 +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076 +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012 +27,1689.4828952994171,2.2308019783426145,0.0,468.7014843153579,0.5110659579986532 +28,1692.212939042672,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244 +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817 +0,1687.6458569919555,2.580242062394627,0.0,472.3853552412604,0.5138203749993409 +1,1687.0327514894282,2.579304685278597,0.0,472.21374218665426,0.5136337090007146 +2,1686.205052807527,2.578039216610996,0.0,471.9820628125352,0.5133817079986329 +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591 +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687 +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105 +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369 +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193 +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238 +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068 +10,1674.4885384554077,2.560125835654476,0.0,468.7025182496253,0.5098145000010845 +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899 +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134 +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728 +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324 +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712 +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159 +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711 +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754 +19,1677.22863718545,2.564315173108823,0.0,469.4694934456504,0.5106487500015646 +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355 +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079 +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851 +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817 +24,1676.759911976087,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167 +25,1671.2162151657417,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102 +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854 +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +29,1673.131765055717,2.5580514645531487,0.0,468.3227466987758,0.509401416999026 +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989 +1,1672.6596167167916,1.2258528268930255,0.0,466.5860908414723,0.5084176670025045 +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325 +3,1688.6244236034297,1.237553057745254,0.0,471.0394516817949,0.5132702920018346 +4,1677.695815207165,1.2295437381187877,0.0,467.9909314574833,0.5099484580023272 +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074 +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681 +7,1682.5739653539526,1.2331188194369973,0.0,469.3516847062496,0.5114312090008752 +8,1682.5384603989162,1.2330927986919125,0.0,469.3417806480596,0.5114204169985896 +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372 +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728 +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108 +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387 +13,1688.8170195135012,1.2376942067503771,0.0,471.0931760450152,0.5133288329998322 +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376 +15,1680.177795933706,1.2313627233202695,0.0,468.6832765545771,0.5107028750026075 +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091 +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639 +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985 +19,1676.2396122854952,1.2284765213041895,0.0,467.5847256628893,0.5095058340011747 +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945 +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434 +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412 +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696 +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816 +25,1681.8361980700215,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372 +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078 +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441 +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516 +29,1685.436887323359,1.235216987500778,0.0,470.1502928371205,0.5123014160017192 +0,1732.06870553443,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916 +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742 +2,1714.7743044983763,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323 +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244 +4,1718.4740985032197,0.8668385565940498,0.0,470.1265571743345,0.51150675000099 +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666 +6,1723.3339429500195,0.8692899758788708,0.0,471.4560749949214,0.512953290999576 +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181 +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825 +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474 +10,1722.9278508751695,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269 +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256 +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189 +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964 +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105 +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909 +16,1717.170141592041,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535 +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987 +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623 +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693 +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156 +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148 +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023 +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228 +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297 +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899 +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371 +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394 +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368 +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232 +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829 +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254 +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306 +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439 +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705 +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659 +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573 +7,1692.6743412442531,1.2348953116578076,0.0,469.0599651361846,0.5122992920005345 +8,1692.9432102016283,1.2350914657595289,0.0,469.13447188606534,0.5123806670017075 +9,1690.9101016469,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765 +10,1675.4391953781826,1.2223213626664713,0.0,464.283903538232,0.5070829590003996 +11,1692.3177755698923,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009 +12,1692.9842335608655,1.235121394466283,0.0,469.1458399413283,0.5123930829977326 +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145 +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459 +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755 +16,1699.368532235995,1.2397790774653328,0.0,470.9150041810212,0.5143253339992953 +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365 +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959 +19,1687.3626306301558,1.2310201382860588,0.0,467.5880276614127,0.5106916670010833 +20,1680.005011470021,1.2256523665981305,0.0,465.54914486946274,0.5084648339980049 +21,1684.214949163509,1.2287237384464431,0.0,466.7157681115221,0.5097390000009909 +22,1684.449402886166,1.228894784817181,0.0,466.780737995153,0.50980995899954 +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316 +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298 +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991 +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632 +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746 +28,1690.2974702999934,1.233161258796036,0.0,468.40130624647264,0.5115799159975722 +29,1691.2523507598814,1.2338578945128875,0.0,468.6659148509223,0.5118689170012658 +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285 +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228 +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163 +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576 +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558 +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698 +6,1705.732973585949,1.300279235547624,0.0,470.9678072139933,0.5133861249996698 +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658 +8,1690.866381337352,1.2889464410812284,0.0,466.86301094137,0.5089116250019288 +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358 +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521 +11,1704.729298359376,1.2995141345168324,0.0,470.69068369704553,0.513084041998809 +12,1708.1326598617934,1.302108514974491,0.0,471.6303816033247,0.5141083749986137 +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769 +14,1710.3444845159795,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929 +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019 +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924 +17,1689.277667739587,1.2877353656465649,0.0,466.4243532082916,0.5084334589992068 +18,1706.946246334542,1.3012041126453189,0.0,471.3028024417377,0.5137512920009613 +19,1708.998869357254,1.3027688259598698,0.0,471.869549628439,0.5143690839977353 +20,1700.2184297275633,1.2960755020303545,0.0,469.4451933764304,0.5117263749998529 +21,1704.764045228913,1.2995406220349015,0.0,470.7002776119237,0.5130945000018983 +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248 +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265 +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966 +25,1700.2915250526698,1.2961312225533927,0.0,469.4653756356212,0.5117483750000247 +26,1705.0802389809708,1.29978165634483,0.0,470.7875814750531,0.5131896669990965 +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194 +28,1718.6114560769083,1.3100964951232272,0.0,474.5236689771976,0.5172622499994759 +29,1692.044212804571,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484 +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022 +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477 +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489 +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622 +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736 +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334 +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919 +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642 +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257 +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721 +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471 +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143 +12,1709.5432022817854,1.65666515528454,0.0,475.6995660174179,0.5180120000004536 +13,1684.754023901845,1.632642733391156,0.0,468.8016991594605,0.5105005830009759 +14,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683 +15,1680.4535893809157,1.6284753160284955,0.0,467.6050550310395,0.5091974999995728 +16,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277 +17,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582 +18,1693.226188437825,1.6408528445821813,0.0,471.159173944312,0.5130677500019374 +19,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046 +20,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097 +21,1681.29431533333,1.629290037404738,0.0,467.8389964547891,0.5094522500003222 +22,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562 +23,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328 +24,1686.877702600274,1.6347007243772926,0.0,469.392636571194,0.5111440830005449 +25,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942 +26,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622 +27,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196 +28,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728 +29,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667 +0,1662.7812272807057,2.154162194272734,0.0,465.3321749197454,0.5084949170013715 +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157 +2,1674.2807447957823,2.1690600205633683,0.0,468.55033459585,0.5120115829995484 +3,1676.0206591942217,2.171314110131433,0.0,469.0372526208532,0.512543666001875 +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335 +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408 +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195 +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926 +8,1676.5832374996228,2.1720429401764987,0.0,469.1946911233573,0.5127157080023608 +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787 +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531 +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761 +12,1674.719334293978,2.169628220937727,0.0,468.6730746182557,0.5121457079985703 +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101 +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844 +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353 +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996 +17,1671.4410196159442,2.165381106870954,0.0,467.7556326396163,0.511143167001137 +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402 +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448 +20,1673.6356021221727,2.1682242269336345,0.0,468.369790313464,0.5118142920000537 +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956 +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397 +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555 +24,1668.7934039933843,2.1619510744737207,0.0,467.0146928720848,0.5103335000021616 +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461 +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556 +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112 +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633 +29,1665.1493914950968,2.157230192477653,0.0,465.9949097319805,0.5092191250005271 +0,1704.031251704515,1.508941838063347,0.0,474.7466342955749,0.5159355420000793 +1,1703.1359158085138,1.508149006481623,0.0,474.4971918614849,0.5156644579983549 +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892 +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993 +4,1699.9833977413236,1.505357410727686,0.0,473.6188938018352,0.5147099590030848 +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734 +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086 +7,1715.943482298202,1.5194902731988489,0.0,478.0654063988733,0.5195422500000859 +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202 +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601 +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236 +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794 +12,1698.53539461143,1.504075185121696,0.0,473.21547713228824,0.5142715419970045 +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858 +14,1697.3195518477353,1.5029985405397317,0.0,472.8767408213671,0.5139034170024388 +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179 +16,1690.2733048896132,1.4967589972063555,0.0,470.91364183216854,0.511770000000979 +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182 +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302 +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851 +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124 +21,1690.6414282331857,1.497084975215344,0.0,471.016201757752,0.5118814580018807 +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229 +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126 +24,1690.3525720618825,1.4968291893184444,0.0,470.9357258304563,0.511794000001828 +25,1680.0227915903563,1.4876820343493653,0.0,468.0578276070737,0.5086664159971406 +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605 +27,1688.493922067436,1.4951833305725255,0.0,470.4179020943516,0.5112312499986729 +28,1697.0385398110468,1.5027497007260635,0.0,472.7984502862135,0.5138183339986426 +29,1689.9230695070262,1.4964488592194929,0.0,470.8160655295461,0.5116639580010087 +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339 +1,1714.765226996136,0.8643137448752406,0.0,469.821006012376,0.5111364580006921 +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871 +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353 +4,1715.331632824615,0.8645992372184634,0.0,469.97619306186704,0.511305291998724 +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863 +6,1714.1556313455656,0.8640064830464437,0.0,469.6539855728995,0.5109547499996552 +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976 +8,1706.9988473425583,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914 +9,1714.837774733343,0.8643503119839272,0.0,469.8408830488016,0.5111580829980085 +10,1711.608911909124,0.8627228294135127,0.0,468.9562210808144,0.5101956250000512 +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073 +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134 +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773 +14,1723.523935681039,0.8687285021752712,0.0,472.220766201658,0.5137472499991418 +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045 +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471 +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021 +18,1711.1150571741512,0.8624739058706925,0.0,468.8209119873269,0.5100484169997799 +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914 +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916 +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258 +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475 +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923 +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017 +25,1734.4994753767116,0.8742606354766979,0.0,475.2279061996989,0.5170188340016466 +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984 +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638 +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264 +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878 +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037 +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928 +2,1699.015023621691,1.6596805935544503,0.0,467.7311848755153,0.5085318749988801 +3,1726.676996415299,1.686702155333886,0.0,475.34640141619576,0.5168113750005432 +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602 +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556 +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734 +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054 +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878 +9,1707.556617845926,1.6680244386499228,0.0,470.0826473003213,0.5110884579989943 +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489 +11,1706.9871143093417,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469 +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288 +13,1700.5875280107632,1.661216692400863,0.0,468.16408825241115,0.5090025409990631 +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047 +15,1701.9577670717792,1.662555208627312,0.0,468.54130889534906,0.5094126670010155 +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634 +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211 +18,1700.088466524394,1.6607291848436008,0.0,468.0266988726236,0.5088531669971417 +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262 +20,1700.4806187224335,1.6611122582030222,0.0,468.1346566067757,0.508970541999588 +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707 +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749 +23,1732.7583505809405,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043 +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133 +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451 +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454 +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582 +28,1703.033989709958,1.663606515297409,0.0,468.83758814111593,0.5097347910013923 +29,1702.9419746789297,1.663516630535244,0.0,468.8122568174425,0.5097072499993374 +0,1733.253563906018,2.0984102566650487,0.0,473.074934530376,0.5129103750005015 +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176 +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007 +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304 +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974 +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383 +6,1723.4772484529751,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127 +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419 +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738,0.5151641660013411 +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893 +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816 +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324 +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498 +13,1732.2086720593063,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571 +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222 +15,1732.4094537173592,2.097388311858747,0.0,472.8445427512664,0.5126605830009794 +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996 +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384 +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215 +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757 +20,1780.438908568486,2.155536469047305,0.0,485.95372174410915,0.5268736250000075 +21,1738.3252572752317,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475 +22,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968 +23,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178 +24,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871 +25,1726.5571530732716,2.090303065964912,0.0,471.2472134269785,0.5109287500017672 +26,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585 +27,1724.678430716105,2.0880285399833696,0.0,470.7344341806953,0.5103727919995436 +28,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824 +29,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853 +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695 +1,1781.4314907183507,1.865233779826259,0.0,474.9351511882611,0.512870540998847 +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603 +3,1776.1253612297892,1.8596780388315792,0.0,473.5205206374909,0.511342916997819 +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071 +5,1779.3196350329554,1.863022578001748,0.0,474.37212392369514,0.5122625419971882 +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342 +7,1775.9211500186464,1.8594642210949857,0.0,473.4660772963107,0.5112841250011115 +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882 +9,1828.1563779527191,1.9141567041611,0.0,487.39215079702007,0.5263225419985247 +10,1797.5348509506605,1.8820946760383848,0.0,479.2283568862738,0.5175066660012817 +11,1782.1034613760824,1.8659373613989343,0.0,475.1143006462038,0.5130639999988489 +12,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154 +13,1779.8063525884374,1.863532191776092,0.0,474.5018843309874,0.5124026670018793 +14,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311 +15,1800.139363767342,1.8848217106231984,0.0,479.92272806743193,0.518256499999552 +16,1768.3179047798128,1.8515033031872992,0.0,471.4390285740661,0.5090951659985876 +17,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909 +18,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675 +19,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749 +20,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233 +21,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352 +22,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055 +23,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763 +24,1776.934675683587,1.8605254251417416,0.0,473.7362863767159,0.5115759170003003 +25,1775.9308478967102,1.8594743751816576,0.0,473.46866278062953,0.5112869170006888 +26,1774.2983217244705,1.857765051540093,0.0,473.03342624839615,0.5108169160012039 +27,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252 +28,1781.2621633934934,1.8650564869874289,0.0,474.890007999174,0.5128217920027964 +29,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208 +0,1715.2126246543712,1.878141390259372,0.0,473.25809210624993,0.5145006249986182 +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795 +2,1708.659320247143,1.870965584721755,0.0,471.44991725015507,0.5125348750007106 +3,1714.9127245161242,1.877813002481384,0.0,473.1753442502645,0.5144106660009129 +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142 +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918 +6,1705.8313331065865,1.8678689658982608,0.0,470.6696246033992,0.5116865829986637 +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889 +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202 +9,1701.5545581455729,1.8631859382924425,0.0,469.4895852722259,0.5104037080018315 +10,1696.2627985811607,1.8573915122706384,0.0,468.02949338662467,0.5088163750006061 +11,1708.47193391554,1.8707603984840295,0.0,471.3982139822882,0.512478666001698 +12,1702.070178101452,1.8637505372038896,0.0,469.6318541157872,0.5105583750009828 +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232 +14,1713.0868103835694,1.8758136440006232,0.0,472.6715416159428,0.5138629590001074 +15,1700.5874961044965,1.8621270146230455,0.0,469.2227554168893,0.5101136250013951 +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033 +17,1700.0421524930027,1.861529868593488,0.0,469.07228528076257,0.5099500420001277 +18,1701.0918613432752,1.8626792897271016,0.0,469.36191888105583,0.5102649159998691 +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436 +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308 +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339 +22,1703.169756399106,1.8649545649045784,0.0,469.93524759586614,0.5108882079985051 +23,1698.6667036618285,1.8600237653017555,0.0,468.69277414594774,0.5095374580014322 +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047 +25,1725.2339947819305,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259 +26,1695.9577611438835,1.8570574991994344,0.0,467.9453280572003,0.5087248750023718 +27,1697.33251321659,1.8585628395473195,0.0,468.32464694378984,0.5091372499991849 +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549 +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464 +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402 +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579 +2,1726.3235530469292,2.147168598317076,0.0,474.0210175878432,0.5159650419991522 +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943 +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624 +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454 +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892 +7,1703.9014336143955,2.119280390067656,0.0,467.8642598635299,0.5092635000000882 +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641 +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499 +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533 +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063 +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957 +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029 +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525 +15,1729.2027639938808,2.1507497064600507,0.0,474.8116031652197,0.516825582999445 +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779 +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395 +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429 +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318 +20,1713.5996964840365,2.131342906074672,0.0,470.52724874889134,0.5121621250000317 +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474 +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845 +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164 +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658 +25,1748.3943619242975,2.1746198531396734,0.0,480.08131101578823,0.5225615840026876 +26,1699.874186562006,2.114271376320903,0.0,466.7584418130943,0.508059832998697 +27,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921 +28,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897 +29,1702.7397365525153,2.1178354932245216,0.0,467.5452763088947,0.5089162910007872 +0,1713.159064065179,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777 +1,1728.2893886349443,2.1460685837030025,0.0,476.2595639739648,0.5165718749994994 +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307 +3,1714.3446896304945,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393 +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168 +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578 +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113 +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508 +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844 +9,1748.2277475268788,2.1708266397958953,0.0,481.7539182034547,0.5225312910006323 +10,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575 +11,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702 +12,1729.394162260291,2.147440414129695,0.0,476.5640031544385,0.5169020829998772 +13,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946 +14,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174 +15,1724.1615030085018,2.1409428647590096,0.0,475.1220548151909,0.5153380830015521 +16,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531 +17,1717.9330827404174,2.133208849176126,0.0,473.4057075757582,0.5134764579997864 +18,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229 +19,1715.88106060893,2.130660791970888,0.0,472.8402379431644,0.5128631249972386 +20,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654 +21,1716.739788843288,2.131727100482537,0.0,473.076875127398,0.5131197919981787 +22,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105 +23,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427 +24,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432 +25,1720.854010688215,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171 +26,1712.4761217310593,2.1264327776098213,0.0,471.9019490686296,0.511845416000142 +27,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266 +28,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126 +29,1710.078379417596,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527 +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942 +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453 +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553 +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522 +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363 +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014 +6,1702.066685738554,2.7700300963980387,0.0,474.5094928986423,0.5151506249967497 +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673 +8,1700.0186079028213,2.766696950116356,0.0,473.9385209247512,0.5145307500024501 +9,1682.723315235478,2.738549709108719,0.0,469.1168646278044,0.5092961250011285 +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456 +11,1697.882008804488,2.763219739819069,0.0,473.34287061141595,0.5138840830004483 +12,1695.3888533669428,2.7591622515579655,0.0,472.6478179837488,0.5131295000028331 +13,1721.269774292272,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763 +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644 +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555 +16,1693.919391580334,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454 +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678 +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103 +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901 +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161 +21,1699.9142571169934,2.7665271243276557,0.0,473.9094295625374,0.5144991670022137 +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584 +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284 +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527 +25,1750.7250904090572,2.8492192647833674,0.0,488.07469285168577,0.5298776670024381 +26,1694.6464141966617,2.75795396820241,0.0,472.44083758917907,0.5129047920017911 +27,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241 +28,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143 +29,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524 +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961 +1,1694.9927135001717,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363 +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444 +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167 +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291 +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369 +6,1688.8411757749657,1.7647243216039348,0.0,469.3167794907069,0.5113532079994911 +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479 +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306 +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447 +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125 +11,1682.606935383067,1.758209963827656,0.0,467.58432905944926,0.5094655829998374 +12,1688.212838993708,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873 +13,1684.5242856987225,1.7602134646799608,0.0,468.1171468804538,0.5100461250003718 +14,1691.2586095165043,1.7672503756703288,0.0,469.9885668881752,0.5120851669998956 +15,1684.9852883959743,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345 +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871 +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087 +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969 +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531 +20,1716.313368140092,1.7934308966981107,0.0,476.9511035652806,0.5196713340010319 +21,1697.7310531269818,1.77401363963112,0.0,471.78721227548374,0.5140449159989657 +22,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576 +23,1684.149156241156,1.759821479875816,0.0,468.0129011103703,0.5099325419978413 +24,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992 +25,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528 +26,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477 +27,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427 +28,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625 +29,1683.942460695321,1.7596054970693007,0.0,467.9554619092792,0.509869958001218 +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231 +1,1684.3804086585617,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504 +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881 +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921 +4,1687.8337375501524,0.9008719984551876,0.0,468.55353608541475,0.5111366669989366 +5,1681.843830358663,0.8976749183506088,0.0,466.890699199911,0.5093227079996723 +6,1686.948083015424,0.900399285205718,0.0,468.3076726719962,0.5108684590013581 +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708 +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256 +9,1710.9085274184995,0.9131880409658696,0.0,474.95924664013734,0.5181245420026244 +10,1689.3941238414432,0.9017048460783412,0.0,468.9867093880794,0.5116092080024828 +11,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164 +12,1692.884875635795,0.9035680156993332,0.0,469.9557646098421,0.512666333001107 +13,1689.6578805301597,0.9018456247640516,0.0,469.059929946725,0.51168908299951 +14,1688.3434987592047,0.9011440807041184,0.0,468.69504908621974,0.5112910409989126 +15,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817 +16,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927 +17,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944 +18,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707 +19,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894 +20,1685.8418700821012,0.8998088501209175,0.0,468.0005808240016,0.5105334580002818 +21,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062 +22,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702 +23,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496 +24,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146 +25,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888 +26,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105 +27,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763 +28,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561 +29,1684.6551746223745,0.8991754579291524,0.0,467.6711465073736,0.5101740840000275 +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922 +1,1684.9120118880196,0.9001310708543041,0.0,468.9682879150925,0.5117798330029473 +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045 +3,1683.044204417893,0.8991332314856176,0.0,468.4484136040067,0.5112124999977823 +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105 +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793 +6,1709.3699343703154,0.9131972344281464,0.0,475.77575913706426,0.5192087499999616 +7,1681.6389594309271,0.898382507016918,0.0,468.05728615581427,0.5107856670001638 +8,1686.120547663472,0.9007767072994408,0.0,469.3046645030087,0.5121469170007913 +9,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845 +10,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436 +11,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695 +12,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919 +13,1697.2951611645233,0.906746524563556,0.0,472.4149392976128,0.5155411250016186 +14,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666 +15,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893 +16,1677.7029249314749,0.8962797580757781,0.0,466.9617539574804,0.5095901249987946 +17,1688.7147098689277,0.902162587385458,0.0,470.0267080278236,0.5129348750015197 +18,1680.573640225599,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004 +19,1683.2713703277295,0.8992545904006469,0.0,468.511641598737,0.5112814999993134 +20,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354 +21,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451 +22,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416 +23,1681.8592675604157,0.8985002022978081,0.0,468.118605397158,0.5108525840005314 +24,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924 +25,1702.0110496161594,0.909265895125372,0.0,473.7275313603189,0.5169735419985955 +26,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375 +27,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133 +28,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034 +29,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037 +0,1697.203423819641,0.4319175559316277,0.0,469.49438329767935,0.5124109589996806 +1,1702.970913758122,0.433385311725145,0.0,471.08983384523265,0.5141522500016436 +2,1698.55258888602,0.4322609019736166,0.0,469.8676004453214,0.5128182920016116 +3,1752.3333375660038,0.4459474460849607,0.0,484.74487389435234,0.529055499999231 +4,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953 +5,1704.3090392776437,0.4337258483372035,0.0,471.45999714254026,0.5145562500001688 +6,1696.1240599722423,0.4316428710067762,0.0,469.19580078436576,0.5120850829989649 +7,1698.2136390256214,0.4321746433712405,0.0,469.7738373445384,0.5127159579969884 +8,1701.9096344739723,0.4331152291009071,0.0,470.7962540326861,0.5138318339995749 +9,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588 +10,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589 +11,1705.7160285840569,0.4340839099425002,0.0,471.84921010749775,0.5149810410002829 +12,1727.832226093905,0.4397122122667182,0.0,477.9671747339228,0.5216582499997457 +13,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364 +14,1702.5864245755272,0.4332874639211059,0.0,470.9834732822422,0.5140361669982667 +15,1699.7292450503628,0.4325603466056166,0.0,470.1930967603053,0.5131735420000041 +16,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262 +17,1691.5910504622384,0.4304892754146995,0.0,467.9418423757784,0.5107165000008536 +18,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608 +19,1697.6634011631045,0.4320346145512275,0.0,469.6216260171843,0.5125498330016853 +20,1697.9111266140835,0.4320976576548574,0.0,469.6901538708301,0.5126246250001714 +21,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183 +22,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172 +23,1695.7074127257792,0.4315368393679918,0.0,469.0805443930072,0.5119592909977655 +24,1695.3634979136232,0.4314493172459938,0.0,468.9854078463953,0.5118554580003547 +25,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883 +26,1698.0149108307794,0.4321240694712552,0.0,469.7188635152545,0.5126559589989483 +27,1693.4629920169104,0.4309656616921448,0.0,468.45967425936146,0.5112816670007305 +28,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756 +29,1714.7917125952802,0.4363935607489505,0.0,474.3598005341093,0.5177211250011169 +0,1706.4500436920816,0.9036096252071272,0.0,472.01889458967855,0.5143917909990705 +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102 +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231 +3,1697.45142476899,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798 +4,1707.4593666243693,0.9041440879181388,0.0,472.2980820739788,0.5146960410020256 +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587 +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588 +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391 +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746 +9,1692.1716258741417,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998 +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885 +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757 +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119 +13,1699.6750602015395,0.9000220954606203,0.0,470.1448753472811,0.512349542001175 +14,1701.1311258658325,0.9007931200529032,0.0,470.54763574911647,0.5127884579997044 +15,1700.9127306150654,0.9006774740945451,0.0,470.4872257270172,0.5127226250006061 +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582 +17,1691.921847883786,0.8959165681394461,0.0,468.0002695199536,0.5100124159980624 +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093 +19,1696.5682995533305,0.8983769849955858,0.0,469.2855183843608,0.5114130410001962 +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749 +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367 +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291 +23,1723.2436212518203,0.912502260758186,0.0,476.6641439160539,0.5194540419979603 +24,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214 +25,1699.7398857679125,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216 +26,1704.6099874632089,0.902635267636287,0.0,471.5099190645256,0.5138371249995544 +27,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361 +28,1701.2077050215437,0.9008336707050868,0.0,470.56881820831654,0.5128115419975074 +29,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599 +0,1691.7368270144957,0.9352332949595424,0.0,471.9254008744063,0.5151577079996059 +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978 +2,1691.7194485071643,0.935223687697696,0.0,471.9205529814552,0.5151524159991823 +3,1689.084378366222,0.933766956786002,0.0,471.1854761581936,0.5143500000012864 +4,1693.5933387749658,0.9362596198483492,0.0,472.4432917441903,0.515723041997262 +5,1693.8493466310365,0.9364011472224332,0.0,472.51470746806285,0.5158009999977367 +6,1686.4976048238766,0.9323369254095548,0.0,470.46387211112864,0.5135622909983795 +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559 +8,1688.5101028010365,0.933449483275662,0.0,471.02527675720825,0.5141751249975641 +9,1699.7612240655442,0.9396693769637156,0.0,474.1638795400121,0.5176012500014622 +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392 +11,1692.366929218863,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073 +12,1689.6277292335435,0.9340673343706531,0.0,471.33704883296286,0.5145154579986411 +13,1697.3383739763035,0.9383299664620526,0.0,473.488003433655,0.5168634580004436 +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696 +15,1694.925927355849,0.9369963072511552,0.0,472.8150294696991,0.516128834002302 +16,1671.365031052581,0.923971270300939,0.0,466.2425027886417,0.5089542089990573 +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399 +18,1690.4551425000311,0.9345247485636612,0.0,471.5678633019989,0.5147674170002574 +19,1684.268371406136,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615 +20,1696.6806343047017,0.937966351962164,0.0,473.3045209597648,0.5166631669999333 +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752 +22,1680.6578390184325,0.9291085607320204,0.0,468.8348162350971,0.5117840000020806 +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838 +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711 +25,1690.4400890135123,0.9345164266299107,0.0,471.56366399478605,0.5147628330014413 +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478 +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382 +28,1682.6264145623704,0.930196837207968,0.0,469.3839683182635,0.5123834590012848 +29,1679.3658889613605,0.9283943392943216,0.0,468.4744149960525,0.5113905830003205 +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787 +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475 +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321 +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932 +4,1765.9374046561293,1.4666423640474469,0.0,474.2921408643437,0.5136094170011347 +5,1760.7687938821498,1.4623497410448405,0.0,472.9039651210689,0.5121061660029227 +6,1765.694572073473,1.4664406872767095,0.0,474.22692134682507,0.5135387909976998 +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474 +8,1775.629506989212,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826 +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419 +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038 +11,1770.4399845493308,1.470381836579976,0.0,475.5014352885564,0.514918958000635 +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858 +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353 +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058 +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538 +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251 +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272 +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988 +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226 +20,1769.5408755153906,1.46963511056602,0.0,475.2599542782705,0.5146574589998636 +21,1767.2834912096223,1.4677603128262782,0.0,474.6536702546616,0.51400091600226 +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654 +23,1761.1276686756316,1.462647792931686,0.0,473.0003510369309,0.5122105419977743 +24,1753.0491242413011,1.455938418366093,0.0,470.8306307938895,0.5098609590022534 +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936 +26,1760.151335689559,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767 +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245 +28,1777.3232973655329,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984 +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584 +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516 +1,1708.5795885529983,1.966259571752885,0.0,469.8693847821005,0.5122209580003982 +2,1714.6152742499144,1.9732055313401136,0.0,471.5292336671909,0.5140304169981391 +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946 +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964 +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978 +6,1709.5649903497754,1.9673935872403203,0.0,470.14037604239456,0.5125163749980857 +7,1713.8351537921171,1.972307756763184,0.0,471.3146959763412,0.5137965419999091 +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049 +9,1713.8143061036951,1.9722837649238905,0.0,471.3089627400327,0.5137902919996122 +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476 +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156 +12,1709.076183799929,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007 +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221 +14,1704.6249223381478,1.9617084812739085,0.0,468.7818284318785,0.5110353749987553 +15,1705.365015246795,1.962560191533918,0.0,468.98535831248665,0.5112572500001988 +16,1701.6139625675005,1.95824342263171,0.0,467.95379687600814,0.510132709001482 +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774 +18,1707.2698000702223,1.964752247096495,0.0,469.5091852849744,0.5118282920011552 +19,1713.4863002655777,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812 +20,1688.421819469822,1.9430617022064345,0.0,464.3258803289579,0.5061777909977536 +21,1707.8000251380013,1.9653624382293453,0.0,469.6550002812804,0.5119872499999474 +22,1709.2365675547344,1.9670156332552335,0.0,470.05005785195834,0.5124179159975029 +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883 +24,1702.1062448464766,1.9588099486217936,0.0,468.0891773833673,0.5102802920009708 +25,1709.7403911188364,1.967595441133092,0.0,470.188612280262,0.5125689589985996 +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112 +27,1713.4480806178635,1.971862307022976,0.0,471.20824858842275,0.5136805000001914 +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611 +29,1707.9331701381714,1.9655156635357751,0.0,469.6916159354389,0.5120271659980062 +0,1740.8475467300475,0.8670057698492718,0.0,476.0195140230136,0.5090652500002761 +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093 +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814 +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254 +4,1743.64428559599,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949 +5,1742.4530932244463,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856 +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411 +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279 +8,1738.451339551393,0.8658123710053869,0.0,475.3642921577653,0.5083645419981622 +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625 +10,1757.4058468687897,0.875252409129174,0.0,480.5472361661138,0.513907291002397 +11,1739.8851866112857,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523 +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187 +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124 +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298 +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439 +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813 +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888 +18,1733.1724702832205,0.8631833009743076,0.0,473.92083159262467,0.506820875001722 +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895 +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733 +21,1753.020803602176,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888 +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614 +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498 +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713 +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178 +26,1731.9024812868108,0.8625507999896003,0.0,473.5735642250594,0.5064494999969611 +27,1736.6560000323225,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919 +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532 +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277 +0,1707.9951880275323,2.0066518754973948,0.0,471.1953045647133,0.5138533329991333 +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253 +2,1693.5739088739952,1.989708919765806,0.0,467.2168161763406,0.5095146659987222 +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224 +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637 +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599 +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382 +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533 +8,1700.851719406768,1.998259313969181,0.0,469.2245912418632,0.5117042079982639 +9,1698.8143105967222,1.9958656478520331,0.0,468.6625185431216,0.5110912500022096 +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894 +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684 +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475 +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241 +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905 +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494 +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538 +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385 +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468 +19,1699.5277018289198,1.9967037812754096,0.0,468.8593262398208,0.5113058749993797 +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675 +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391 +22,1697.8531494743247,1.994736419981584,0.0,468.3973570186755,0.510802083001181 +23,1697.3617679212994,1.994159116414293,0.0,468.2617965193497,0.5106542500034266 +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853 +25,1699.613843927194,1.9968049860119763,0.0,468.88309079871226,0.511331790999975 +26,1698.3545027196003,1.995325438871667,0.0,468.5356684710486,0.5109529159999511 +27,1698.6356511649765,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842 +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118 +29,1744.0226240557995,2.0489789983032693,0.0,481.1344184515794,0.5246922500009532 +0,1696.056708219553,2.13210562208661,0.0,468.996608558364,0.5107068340003025 +1,1698.1034097991303,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625 +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451 +3,1690.6943979681755,2.1253646848414536,0.0,467.5138130187185,0.50909216600121 +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757 +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803 +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638 +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929 +8,1698.1573760274025,2.1347463625887086,0.0,469.577488945685,0.5113393749998068 +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113 +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842 +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512 +12,1697.0918900604795,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553 +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115 +14,1697.2283266475597,2.133578458593306,0.0,469.3205865636963,0.5110596249978698 +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593 +16,1695.755878881392,2.131727450814344,0.0,468.9134226963178,0.5106162500014761 +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632 +18,1690.365619098878,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368 +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195 +20,1722.8095641598518,2.165736522681356,0.0,476.3943557235645,0.5187624999998661 +21,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764 +22,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929 +23,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595 +24,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202 +25,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783 +26,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809 +27,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155 +28,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467 +29,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..c99b2de5a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n100/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.0955342560187,0.0,0.0,57.8043656552693,0.0804041249975853 +1,240.37357538885556,0.0,0.0,57.15712585245829,0.0795038340002065 +2,240.57790726684237,0.0,0.0,57.205712819003466,0.0795714170017163 +3,241.00357775344693,0.0,0.0,57.306930690124176,0.0797122080002736 +4,228.7827823794463,0.0,0.0,54.40101418878283,0.0756701660029648 +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123 +6,239.8171358810357,0.0,0.0,57.024813126626064,0.0793197909988521 +7,243.10473150771745,0.0,0.0,57.80655261975568,0.0804071669990662 +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972 +9,241.96893194067064,0.0,0.0,57.53647701476525,0.0800314999978581 +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959 +11,226.9116656193993,0.0,0.0,53.95609150555676,0.0750512920021719 +12,241.0369623717528,0.0,0.0,57.314869037036715,0.0797232500008249 +13,259.1807637955834,0.0,0.0,61.629184950282394,0.0857243329992343 +14,245.7031080501689,0.0,0.0,58.42440645335082,0.0812665830017067 +15,240.7667441033004,0.0,0.0,57.25061530385252,0.0796338750005816 +16,239.96490559435284,0.0,0.0,57.059950483498945,0.0793686659999366 +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382 +18,244.9626238231499,0.0,0.0,58.2483307341832,0.0810216669997316 +19,244.61392358457164,0.0,0.0,58.16541519994048,0.0809063339984277 +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304 +21,240.89272099625768,0.0,0.0,57.280570664434954,0.079675542001496 +22,232.55651691475,0.0,0.0,55.29835001040627,0.076918333001231 +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555 +24,242.54275309588132,0.0,0.0,57.67292282804619,0.080221291998896 +25,242.09024671523045,0.0,0.0,57.5653237955566,0.0800716249977995 +26,234.0747792582066,0.0,0.0,55.65936935998167,0.0774205000016081 +27,240.0650594382712,0.0,0.0,57.08376552162113,0.0794017919979523 +28,237.81349047900775,0.0,0.0,56.548377178031686,0.0786570829986885 +29,243.5262478163098,0.0,0.0,57.90678269146844,0.0805465839985117 +0,231.07091032445197,0.96752185957394,0.0,58.35157697913175,0.0799369160013157 +1,227.65017155015877,0.9531988124393016,0.0,57.48774906745996,0.0787535419985943 +2,230.5149398910295,0.9651939441004702,0.0,58.211179594197326,0.0797445829994103 +3,234.6926746579278,0.9826866250476328,0.0,59.26616921407965,0.0811898329993709 +4,232.3701460779587,0.9729619168727698,0.0,58.67966871070601,0.0803863749970332 +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.0770988340009353 +6,237.3139072923828,0.9936620432398358,0.0,59.928100469878366,0.0820966249993944 +7,230.30332002617052,0.9643078661217072,0.0,58.157739925754,0.0796713749987247 +8,230.46507591515575,0.9649851576002768,0.0,58.19858760837532,0.0797273330026655 +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019 +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.0795147079988964 +11,230.5961184668456,0.9655338486194806,0.0,58.23167935294729,0.0797726660020998 +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.0827171670025563 +13,214.01309135748147,0.8960987076764312,0.0,54.04402205951994,0.0740359160008665 +14,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.0808671250015322 +15,231.6784328857628,0.9700656300443432,0.0,58.50499265336401,0.0801470830010657 +16,230.71487857136052,0.9660311115462684,0.0,58.26166945153184,0.0798137499987206 +17,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.0800940830013132 +18,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.0797144999996817 +19,231.78587024977804,0.9705154832866824,0.0,58.5321234575313,0.0801842499968188 +20,231.19713702261603,0.9680503860317448,0.0,58.38345259205248,0.0799805829992692 +21,230.582873431562,0.9654783900541868,0.0,58.228334627750776,0.0797680840005341 +22,231.6367610464117,0.9698911450109644,0.0,58.49446940083367,0.0801326670007256 +23,232.1529848272166,0.9720526364408436,0.0,58.62482969431156,0.080311250003433 +24,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.0799320830010401 +25,232.75243664028173,0.9745626137118352,0.0,58.77620728903447,0.0805186249999678 +26,232.66162348649672,0.9741823680491488,0.0,58.75327454199867,0.0804872090011485 +27,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.0794731249989126 +28,230.7071720615588,0.965998843457292,0.0,58.259723351958755,0.0798110840005392 +29,230.77582537158145,0.9662863031729516,0.0,58.27706014653421,0.0798348339994845 +0,232.9169939317484,0.0,0.0,56.31584657411337,0.0802987909992225 +1,237.47883911982245,0.0,0.0,57.41883253219986,0.0818715000023075 +2,235.63126033438007,0.0,0.0,56.97211560674853,0.0812345420017663 +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643 +4,233.22591381073585,0.0,0.0,56.39053878190413,0.0804052919993409 +5,232.05152169027792,0.0,0.0,56.10658832660616,0.080000417001429 +6,231.51224545439288,0.0,0.0,55.976199395989674,0.0798144999971555 +7,230.47563320063983,0.0,0.0,55.72556205238602,0.079457124997134 +8,237.39157949081192,0.0,0.0,57.39773445860497,0.0818414169989409 +9,238.7171669043764,0.0,0.0,57.71824167511468,0.0822984170008567 +10,233.33565330551497,0.0,0.0,56.41707215092448,0.0804431249998742 +11,213.50066847479712,0.0,0.0,51.62126939016117,0.0736049580009421 +12,231.42716131362363,0.0,0.0,55.95562732292378,0.0797851669994997 +13,235.6416532820299,0.0,0.0,56.97462846609562,0.0812381249997997 +14,231.260615912246,0.0,0.0,55.91535913504585,0.0797277500023483 +15,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142 +16,231.26617350593335,0.0,0.0,55.916702878102704,0.0797296659984567 +17,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022 +18,237.3270376003675,0.0,0.0,57.38212919452134,0.0818191660000593 +19,234.63030260863508,0.0,0.0,56.7300989949132,0.0808894590009003 +20,231.03231320527357,0.0,0.0,55.860158954066,0.0796490419998008 +21,233.7110410932738,0.0,0.0,56.50783530523265,0.0805725409991282 +22,231.71746496061323,0.0,0.0,56.02581840416606,0.079885250001098 +23,227.65827556405924,0.0,0.0,55.04436710079492,0.0784858330007409 +24,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255 +25,231.77136734596337,0.0,0.0,56.03885119499903,0.0799038330005714 +26,233.1512226176164,0.0,0.0,56.372479568185334,0.0803795419997186 +27,230.73777754985747,0.0,0.0,55.78894463646289,0.0795475000013539 +28,232.8224856404988,0.0,0.0,56.29299588237056,0.0802662089990917 +29,237.8312655240404,0.0,0.0,57.50404396728485,0.0819929999997839 +0,240.68532811369528,0.0,0.0,56.67665791391861,0.0791760419997444 +1,237.4792714962241,0.0,0.0,55.92169467795753,0.0781213749978633 +2,229.61777289781264,0.0,0.0,54.070466477863675,0.0755352500018489 +3,237.8056781604508,0.0,0.0,55.99855702346976,0.0782287500005622 +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688 +5,243.35345135751976,0.0,0.0,57.30494842729374,0.0800537499999336 +6,243.4134889068341,0.0,0.0,57.319086088575986,0.0800735000011627 +7,244.52633573416657,0.0,0.0,57.58113961480306,0.080439583001862 +8,247.25107666319172,0.0,0.0,58.222762478767,0.0813359160019899 +9,243.32786471626991,0.0,0.0,57.29892327684254,0.0800453329975425 +10,244.4880849635703,0.0,0.0,57.57213231112975,0.0804269999971438 +11,241.4227502834867,0.0,0.0,56.85030632191656,0.0794186249986523 +12,245.31417120068048,0.0,0.0,57.766659362009946,0.0806987500000104 +13,243.4813784481399,0.0,0.0,57.335072739439504,0.0800958330000867 +14,243.02235721302517,0.0,0.0,57.22698227243133,0.0799448329998995 +15,243.41158898109776,0.0,0.0,57.318638693456954,0.0800728750000416 +16,242.4810070275498,0.0,0.0,57.099504957905,0.0797667500009993 +17,242.8655512932365,0.0,0.0,57.1900575643721,0.0798932499965303 +18,227.67858753326496,0.0,0.0,53.61382648904712,0.0748973340014345 +19,244.21563610620777,0.0,0.0,57.50797596720637,0.0803373749986349 +20,244.89530368100628,0.0,0.0,57.668024304734615,0.0805609589988307 +21,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072 +22,245.05122194988175,0.0,0.0,57.7047399884734,0.0806122499998309 +23,242.19943853992356,0.0,0.0,57.03320112053526,0.0796741250014747 +24,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844 +25,245.99079585749843,0.0,0.0,57.92599115224054,0.0809213329994236 +26,245.43513393916336,0.0,0.0,57.79514370629074,0.0807385420011996 +27,240.29419641988633,0.0,0.0,56.584554097773946,0.0790473749984812 +28,244.3516705522685,0.0,0.0,57.54000940199992,0.0803821250010514 +29,241.889751197847,0.0,0.0,56.96027584634135,0.0795722500006377 +0,238.41283703560313,0.0695081157538201,0.0,61.79271490514612,0.0831266669993056 +1,234.37913907907773,0.0683321105186815,0.0,60.7472462511079,0.0817202500002167 +2,229.3925259214554,0.0668782874406575,0.0,59.45479753474456,0.0799815830032457 +3,221.67814600297828,0.0646291970854164,0.0,57.455356208935186,0.0772918340007891 +4,231.8804534306275,0.0676036307377922,0.0,60.09962772589734,0.0808490409981459 +5,229.33420950258335,0.0668612855692663,0.0,59.439682871077736,0.0799612499977229 +6,223.15663158869825,0.0650602424456846,0.0,57.838555534213626,0.0778073330002371 +7,235.0478747510722,0.0685270771869015,0.0,60.920571619155446,0.081953416000033 +8,231.3115035490765,0.0674377561367569,0.0,59.95216520557696,0.0806506670014641 +9,229.6267523252653,0.0669465750219432,0.0,59.51550519450753,0.0800632499995117 +10,232.2332285257856,0.0677064806197625,0.0,60.19106127096891,0.0809720420002122 +11,230.43757777224496,0.0671829672805378,0.0,59.72565791239818,0.0803459580019989 +12,231.26095387219027,0.0674230186216298,0.0,59.93906355462891,0.0806330420018639 +13,226.7150679276371,0.0660976874424598,0.0,58.76084413634677,0.0790480420000676 +14,229.0763215445606,0.0667860995756736,0.0,59.37284252277387,0.0798713330004829 +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.0792341249980381 +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.0806579169984615 +17,230.3895405214245,0.0671689622511441,0.0,59.71320744126716,0.0803292090022296 +18,227.8955154857735,0.0664418412494966,0.0,59.06679687080252,0.0794596250016184 +19,221.77446141446887,0.0646572773803116,0.0,57.48031959109704,0.0773254159976204 +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.0797048750027897 +21,228.23203436741105,0.0665399517106154,0.0,59.15401707073714,0.0795769579999614 +22,215.52590171771973,0.0628355398593935,0.0,55.86079493500083,0.075146750001295 +23,236.72832386273487,0.0690170040416136,0.0,61.356116592994546,0.0825393329978396 +24,220.5298408730013,0.0642944142486884,0.0,57.15773426708401,0.0768914580003183 +25,228.89658839783272,0.0667336992413506,0.0,59.32625862556073,0.0798086659997352 +26,229.44773620070688,0.0668943837319845,0.0,59.46910713773422,0.0800008330006676 +27,229.6753890074541,0.0669607548126688,0.0,59.52811102846259,0.0800802080011635 +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.079968000001827 +29,220.42790404735163,0.0642646950575369,0.0,57.13131390615032,0.0768559160023869 +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.0828468750005413 +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248 +2,403.3808155336163,0.7147755199259882,0.0,62.70780619042996,0.0643259160024172 +3,491.6841117381172,0.8712456147475667,0.0,76.43504797073845,0.078407375000097 +4,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.0797451670005102 +5,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.0737165410027955 +6,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.0807009579984878 +7,514.8391200881973,0.9122754121374724,0.0,80.03462365713747,0.0820998339986545 +8,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.0751145000031101 +9,484.3581431807236,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234 +10,500.5286831836258,0.8869178602040666,0.0,77.80998612021061,0.07981779200054 +11,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.0795732500009762 +12,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.0803536249986791 +13,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.0794982500010519 +14,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.0762340840010438 +15,497.8429106725408,0.8821587730856716,0.0,77.39246774647758,0.0793894999987969 +16,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.0771708750035031 +17,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.0793507089983904 +18,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752 +19,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.075234249998175 +20,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.0774600000004284 +21,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.0747904170020774 +22,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.0744944590005616 +23,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.0777760000019043 +24,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.0794401249986549 +25,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.0787942500028293 +26,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.0799686249993101 +27,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.0792666669985919 +28,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.0759735419997014 +29,509.0607510322008,0.902036361128414,0.0,79.13634383591972,0.0811783749995811 +0,235.05822270976108,0.0,0.0,56.90602555177452,0.0796164580024196 +1,234.8477444205732,0.0,0.0,56.85507016393681,0.0795451670019247 +2,236.67440697832672,0.0,0.0,57.29729296723922,0.0801638750017446 +3,237.84588865760452,0.0,0.0,57.58090085640774,0.0805606670000997 +4,238.03791455643773,0.0,0.0,57.62738904380077,0.0806257080002978 +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256 +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836 +7,235.89399490105237,0.0,0.0,57.10836041640851,0.0798995420009305 +8,237.1091452658675,0.0,0.0,57.40254020264302,0.0803111249988433 +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639 +10,240.1701486799902,0.0,0.0,58.14358868199451,0.0813479159987764 +11,237.3678477706916,0.0,0.0,57.46517035095314,0.0803987500003131 +12,233.8212985099349,0.0,0.0,56.606574465530976,0.0791974999992817 +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732 +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766 +15,239.42184376859217,0.0,0.0,57.962429061549685,0.0810944580007344 +16,235.06720385039952,0.0,0.0,56.908199825929934,0.0796195000002626 +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046 +18,235.1504876044873,0.0,0.0,56.92836226646714,0.0796477090007101 +19,233.54008410112257,0.0,0.0,56.53849433564263,0.0791022500015969 +20,217.5081550780071,0.0,0.0,52.65727141088613,0.0736720830027479 +21,236.13485910454932,0.0,0.0,57.166672031125465,0.0799811249999038 +22,236.4991092645872,0.0,0.0,57.25485456171471,0.0801044999971054 +23,233.79657231308929,0.0,0.0,56.60058841844326,0.0791891250009939 +24,225.861185687578,0.0,0.0,54.679484324024344,0.076501333998749 +25,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449 +26,226.48622570091325,0.0,0.0,54.8308023360458,0.0767130410022218 +27,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544 +28,236.39749713231657,0.0,0.0,57.230254943251225,0.0800700830004643 +29,240.4058491717482,0.0,0.0,58.20065019659257,0.0814277499994204 +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463 +1,222.34524711035735,0.0,0.0,53.789566230930056,0.0762266249985259 +2,234.88450207831713,0.0,0.0,56.82305174209469,0.0805254580009204 +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092 +4,231.14880819995636,0.0,0.0,55.91931597126064,0.0792447500025446 +5,189.5080321108016,0.0,0.0,45.84561611725291,0.0649690419995749 +6,226.3184260321476,0.0,0.0,54.75075417417805,0.0775887499985401 +7,233.75602738491304,0.0,0.0,56.550052138776614,0.0801385830018261 +8,234.5266979302004,0.0,0.0,56.73649207791049,0.0804027919984946 +9,232.1996204913718,0.0,0.0,56.1735275547325,0.0796049999989918 +10,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767 +11,232.00807659282628,0.0,0.0,56.12718942360155,0.0795393330008664 +12,235.28654971516897,0.0,0.0,56.92031475208247,0.0806632919993717 +13,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185 +14,232.4236148875455,0.0,0.0,56.22771608165147,0.0796817920017929 +15,237.5479969606639,0.0,0.0,57.467402076728234,0.0814385839985334 +16,236.38512621563677,0.0,0.0,57.186081410914305,0.0810399170004529 +17,233.71664925617893,0.0,0.0,56.5405258165767,0.0801250829972559 +18,235.04529604296468,0.0,0.0,56.86195087631657,0.0805805829986638 +19,233.1673012201283,0.0,0.0,56.40762802382869,0.0799367500003427 +20,237.1459493238121,0.0,0.0,57.37013906674045,0.0813007500000821 +21,233.21457829256337,0.0,0.0,56.419065251527506,0.0799529579999216 +22,215.0150838520788,0.0,0.0,52.01625959546593,0.0737136249990726 +23,232.95108619602212,0.0,0.0,56.35532147574445,0.0798626249998051 +24,232.76695704397656,0.0,0.0,56.31077711355224,0.0797994999993534 +25,232.50881162889073,0.0,0.0,56.24832680223491,0.0797110000021348 +26,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835 +27,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423 +28,233.43504906083848,0.0,0.0,56.47240134549057,0.0800285419973079 +29,220.28603711570713,0.0,0.0,53.291403963779565,0.0755206659996474 +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.0795444169998518 +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.0758981670005596 +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.0805557909989147 +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.0807310410018544 +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.0746782089991029 +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.0837202080001588 +6,246.7651896921608,0.8144065666407948,0.0,66.67511152107028,0.0849927500021294 +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164 +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.0833640839991858 +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.0810425419986131 +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.0838655829975323 +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.0809435420014779 +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884 +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.0840073340004892 +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.0828537080014939 +15,220.82130434738664,0.7287831826646424,0.0,59.66516230250094,0.0760569590020168 +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.0821004999997967 +17,192.67871910188725,0.6359033633725651,0.0,52.06113187958871,0.0663638750011159 +18,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.0811298329972487 +19,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.0812817919977533 +20,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.080107333997148 +21,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.0805614580021938 +22,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.0783772499999031 +23,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.0739163329999428 +24,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.0811356670019449 +25,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.0798642080007994 +26,230.1259904385399,0.7594917176189435,0.0,62.17925670767264,0.0792617500010237 +27,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.0804298330003803 +28,238.17642466410143,0.786060807472282,0.0,64.35445654218726,0.0820345419997465 +29,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.0799495419996674 +0,241.9872343116464,0.0,0.0,57.15813260782817,0.0795744579991151 +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178 +2,242.65575313120232,0.0,0.0,57.31603881906987,0.0797942920034984 +3,243.91080493823523,0.0,0.0,57.61248593463834,0.0802070000027015 +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623 +5,243.5832631360067,0.0,0.0,57.5351195486815,0.0800992920012504 +6,244.43005848717624,0.0,0.0,57.73513522765531,0.0803777500004798 +7,245.45361291465915,0.0,0.0,57.97690194672964,0.0807143329984683 +8,244.62937278860463,0.0,0.0,57.782213881635094,0.0804432920012914 +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736 +10,196.29494977021145,0.0,0.0,46.36547378678283,0.0645491249997576 +11,238.4692861580264,0.0,0.0,56.327182381697185,0.078417625001748 +12,241.07885838454743,0.0,0.0,56.94357140650459,0.0792757500021252 +13,242.28411354448383,0.0,0.0,57.22825640013194,0.0796720830003323 +14,246.60273699779663,0.0,0.0,58.24832860654358,0.0810922079981537 +15,241.59570345181905,0.0,0.0,57.065651808707806,0.0794457080010033 +16,231.5265209579827,0.0,0.0,54.687279784777374,0.0761345840001013 +17,248.01263127655392,0.0,0.0,58.58134999247521,0.0815558339963899 +18,243.81577315917053,0.0,0.0,57.590039134726815,0.0801757499975792 +19,244.07033057552212,0.0,0.0,57.65016638318072,0.0802594580018194 +20,242.9038483716201,0.0,0.0,57.3746396815968,0.0798758750024717 +21,243.88077489357264,0.0,0.0,57.60539274528096,0.0801971250002679 +22,242.48862493919952,0.0,0.0,57.27656262360784,0.0797393339998961 +23,243.75697815249185,0.0,0.0,57.57615157244288,0.0801564159992267 +24,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107 +25,247.45054804601023,0.0,0.0,58.44858419629822,0.0813709999965794 +26,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359 +27,243.3441601704367,0.0,0.0,57.478642689264305,0.0800206659987452 +28,242.30248736229245,0.0,0.0,57.23259635268276,0.0796781249991909 +29,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873 +0,228.51614058990577,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781 +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.0799711670006217 +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.0796211670021875 +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.0794739169978129 +4,229.52454429292905,0.803352641538617,0.0,56.83719938885715,0.0798063750007713 +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.0803199590009171 +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.0803647499997168 +7,230.02868718081663,0.8051171784074085,0.0,56.962040372324154,0.0799816670005384 +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.0793937079979514 +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.0795502499968279 +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844 +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.0796230419982748 +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532 +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.0812716660002479 +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.0813294170002336 +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.0794567499979166 +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.079882500001986 +17,230.13929307294055,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928 +18,233.4668454975468,0.8171509832202308,0.0,57.81343206283133,0.0811771249973389 +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.0776905000020633 +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.0788508750010805 +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.0794899579996126 +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.0768046659977699 +23,231.4062996484221,0.8099389224970295,0.0,57.30317876666483,0.080460667002626 +24,216.33236918131308,0.7571790666984853,0.0,53.570418968917835,0.0752194160013459 +25,232.7924193674008,0.81479044258679,0.0,57.64642381301539,0.0809426250016258 +26,221.0030247376175,0.7735267017212804,0.0,54.72701414678058,0.0768434169985994 +27,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.0776983750001818 +28,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.0798696249985368 +29,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.079886333001923 +0,217.31809402608985,0.662843859774566,0.0,54.132248548256214,0.0751640829985262 +1,229.9303272649387,0.7013125450346716,0.0,57.273857844498174,0.0795262920000823 +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.0799910829991858 +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.0798349590004363 +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546 +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.0802340410009492 +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.074771250001504 +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.0808146669987763 +8,234.6474003152265,0.7157001316804293,0.0,58.44884408723506,0.0811577919994306 +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.0792908749972411 +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438 +11,229.3134040808069,0.6994308621201081,0.0,57.120187073142155,0.0793129160010721 +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.0796832499981974 +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.0801722920004976 +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.0801286669993714 +15,242.73663270778175,0.7403731716577222,0.0,60.463809018713974,0.083955624999362 +16,225.1590403972453,0.6867596003401816,0.0,56.08536736111483,0.0778760409993992 +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.0797353329980978 +18,230.14114558595097,0.7019555638787175,0.0,57.32637105009526,0.0795992079983989 +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.0801895000004151 +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758 +21,231.5017183127908,0.7061054589061156,0.0,57.66527914399945,0.0800697910017333 +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.0792922079999698 +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.0770003340003313 +24,234.9810967368232,0.7167179421166722,0.0,58.53196527286156,0.081273208001221 +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.0736666250013513 +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.080062208999152 +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205 +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416 +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.0792593750011292 +0,231.66268036286448,0.0672070439114779,0.0,59.881476125126845,0.0804943750008533 +1,231.99748654195568,0.0673041736414144,0.0,59.968018714500296,0.0806107079988578 +2,232.69804026717333,0.0675074094189652,0.0,60.14910179229807,0.0808541249971313 +3,232.398368697592,0.0674204724971256,0.0,60.071640994938925,0.0807500000009895 +4,218.63578046305977,0.0634278446368029,0.0,56.51420957139142,0.0759679999973741 +5,236.23653928270616,0.0685339539549481,0.0,61.06375297385877,0.0820836250022694 +6,224.8190391019204,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951 +7,232.2963206294109,0.0673908676035424,0.0,60.045263034756346,0.0807145420003507 +8,235.48322320982325,0.0683154114330789,0.0,60.869031586873376,0.0818218750027881 +9,233.22039698135623,0.0676589489356995,0.0,60.284123501708265,0.0810356250003678 +10,222.17847558987393,0.0644556064954667,0.0,57.42994538746088,0.0771989579989167 +11,235.83937549829105,0.06841873382602,0.0,60.96109183898384,0.0819456249992072 +12,229.9330033409012,0.0667052519120688,0.0,59.434379453653314,0.0798933750011201 +13,228.71740877714217,0.0663525990070038,0.0,59.1201657152404,0.0794710000009217 +14,231.33051329738623,0.0671106798077708,0.0,59.79561570872386,0.0803789589990628 +15,229.53188230999976,0.0665888837568899,0.0,59.330695427388974,0.0797539999985019 +16,229.48139935482175,0.0665742382810623,0.0,59.31764630842652,0.0797364590034703 +17,230.42646205313747,0.0668484079063352,0.0,59.56193144454467,0.0800648339973122 +18,231.01585022398584,0.0670193937406399,0.0,59.71427982291018,0.0802696249993459 +19,230.07786450510628,0.0667472771990444,0.0,59.471823984348624,0.0799437089990533 +20,228.97666749951748,0.0664278118652502,0.0,59.187180371937934,0.0795610829991346 +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.0809936670011666 +22,229.52001057054088,0.0665854396781377,0.0,59.32762675322075,0.0797498749998339 +23,211.52748423357997,0.0613656757277574,0.0,54.6768170734319,0.0734981249988777 +24,231.32547392448515,0.0671092178487047,0.0,59.794313103195904,0.0803772079998452 +25,230.29359350566224,0.0668098617654952,0.0,59.52758683305629,0.0800186669985123 +26,231.8720547369228,0.0672677849541406,0.0,59.93559639413931,0.0805671249981969 +27,231.05506295725297,0.067030769642371,0.0,59.724415751352595,0.08028325000123 +28,229.7340616961576,0.0666475374807535,0.0,59.38295589535144,0.0798242499986372 +29,228.61583845949133,0.066323132712356,0.0,59.09391124670925,0.0794357080012559 +0,232.09826942958523,0.0,0.0,56.551862602132445,0.080378708000353 +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795 +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539 +3,229.08763101285805,0.0,0.0,55.81830603358978,0.0793360839998058 +4,230.24289431199097,0.0,0.0,56.09979150749018,0.0797361669974634 +5,230.65509338121083,0.0,0.0,56.20022579846761,0.0798789170003146 +6,229.2921654886054,0.0,0.0,55.86814184493939,0.0794069170005968 +7,231.28662566367748,0.0,0.0,56.354101684550855,0.0800976250029634 +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006 +9,232.53862219376708,0.0,0.0,56.65915667665391,0.080531208001048 +10,229.66092988839787,0.0,0.0,55.95799306925431,0.0795346250015427 +11,230.27249179749467,0.0,0.0,56.107003077562155,0.0797464169991144 +12,231.61833400897208,0.0,0.0,56.43492402249065,0.0802125000009255 +13,230.59806408551117,0.0,0.0,56.18633033555602,0.0798591669990855 +14,230.8875418936153,0.0,0.0,56.25686299945956,0.0799594170021009 +15,231.22706975553947,0.0,0.0,56.33959060033449,0.0800770000023476 +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293 +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725 +18,232.0170568313989,0.0,0.0,56.532074760949975,0.0803505830008362 +19,230.92965116248496,0.0,0.0,56.26712312588466,0.0799740000002202 +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622 +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255 +22,230.93169844780863,0.0,0.0,56.267621956826474,0.079974709002272 +23,230.3377015469545,0.0,0.0,56.1228917474813,0.079768999999942 +24,231.03432517839207,0.0,0.0,56.2926274546336,0.0800102499997592 +25,231.1403216955104,0.0,0.0,56.318454017180194,0.0800469579990021 +26,232.6395683748504,0.0,0.0,56.68375270047117,0.0805661670019617 +27,211.57097564534644,0.0,0.0,51.55028848211487,0.0732698339998023 +28,232.01200359601728,0.0,0.0,56.53084351578086,0.0803488329984247 +29,231.3346313210155,0.0,0.0,56.365798494460634,0.0801142499985871 +0,219.4740765737124,0.0,0.0,54.50948419192974,0.0763789999982691 +1,224.61151246000796,0.0,0.0,55.78543889511322,0.0781668750023527 +2,228.51035754085143,0.0,0.0,56.75377209244936,0.0795237089987495 +3,229.6376006964406,0.0,0.0,57.03373883808645,0.079915999998775 +4,230.7343159231135,0.0,0.0,57.30612354175918,0.0802976669983763 +5,226.04921290785495,0.0,0.0,56.14251209053602,0.0786672079993877 +6,230.46205301041525,0.0,0.0,57.23850320514603,0.0802029169972229 +7,231.10774857892207,0.0,0.0,57.39887081180731,0.0804276250019029 +8,236.0373364930903,0.0,0.0,58.62320353790871,0.0821431669974117 +9,230.05844876046567,0.0,0.0,57.138262393903645,0.0800624590010556 +10,229.0068702685671,0.0,0.0,56.87708803529338,0.079696500000864 +11,231.19179807051853,0.0,0.0,57.419745689173425,0.0804568749990721 +12,231.6291686756857,0.0,0.0,57.52837285125362,0.0806090839978423 +13,228.26024347869043,0.0,0.0,56.69165273543744,0.0794366670015733 +14,229.64203161645344,0.0,0.0,57.03483931960193,0.0799175419997482 +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065 +16,230.78484044554267,0.0,0.0,57.318672019919575,0.0803152499975112 +17,228.86259822421837,0.0,0.0,56.84125603707502,0.0796462920006888 +18,215.11787003326216,0.0,0.0,53.42755882169722,0.0748630000016419 +19,233.46328968448563,0.0,0.0,57.98390268737843,0.0812473750011122 +20,230.21050220418272,0.0,0.0,57.17602701246824,0.0801153749998775 +21,228.4539624795744,0.0,0.0,56.73976558311954,0.079504082998028 +22,229.74487946877807,0.0,0.0,57.06038303514221,0.0799533339995832 +23,229.0921151390923,0.0,0.0,56.89825980188594,0.0797261660009098 +24,229.87753688321,0.0,0.0,57.093330376112064,0.0799995000015769 +25,230.25444357048204,0.0,0.0,57.18694047090059,0.0801306670000485 +26,230.96970050207184,0.0,0.0,57.36458462375144,0.0803795829997398 +27,231.0153171132757,0.0,0.0,57.37591415289732,0.0803954580005665 +28,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631 +29,229.60838883425131,0.0,0.0,57.0264836598664,0.0799058340016927 +0,233.03169757350443,0.0,0.0,57.14590514588489,0.080589625002176 +1,230.56252454563105,0.0,0.0,56.540394697697366,0.0797357080009533 +2,229.26155447947497,0.0,0.0,56.2213603655772,0.0792857919987 +3,228.48962291036645,0.0,0.0,56.03206110420322,0.0790188339997257 +4,230.6690331650355,0.0,0.0,56.56651359707923,0.0797725420015922 +5,220.39776413510504,0.0,0.0,54.04771048220629,0.0762204169986944 +6,220.29306275915428,0.0,0.0,54.022034769584245,0.0761842079991765 +7,231.44915659141645,0.0,0.0,56.757821731510106,0.0800423330001649 +8,233.91712382953764,0.0,0.0,57.36303648624681,0.0808958330017048 +9,232.205545892069,0.0,0.0,56.94330959294072,0.080303915998229 +10,230.29842747184577,0.0,0.0,56.47563069140557,0.0796443750004982 +11,227.92781120901137,0.0,0.0,55.89428912498413,0.0788245420008024 +12,229.44806166938773,0.0,0.0,56.26709715715861,0.0793502919987076 +13,229.2592643478582,0.0,0.0,56.22079876110234,0.0792849999997997 +14,229.88360367044356,0.0,0.0,56.37390426597064,0.0795009159992332 +15,229.66167746902968,0.0,0.0,56.31948173981888,0.0794241670009796 +16,233.4874835436179,0.0,0.0,57.25767664343713,0.0807472499982395 +17,213.5309742305619,0.0,0.0,52.363781091364665,0.0738456670005689 +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171 +19,231.8804855552513,0.0,0.0,56.86359568548564,0.0801915000010922 +20,230.5933690691165,0.0,0.0,56.54795863956332,0.0797463749986491 +21,232.7323000327177,0.0,0.0,57.07248447545736,0.0804860839998582 +22,231.33204741758416,0.0,0.0,56.729103279002494,0.0800018329973681 +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533 +24,229.07625018644575,0.0,0.0,56.17591855803412,0.0792217079979309 +25,230.23830565490223,0.0,0.0,56.460887136412715,0.0796235830021032 +26,212.0825304729018,0.0,0.0,52.008582075753125,0.073344749998796 +27,231.3146979161939,0.0,0.0,56.724848694878965,0.0799958329989749 +28,227.2761174880526,0.0,0.0,55.734475554770874,0.0785991659977298 +29,231.517470276152,0.0,0.0,56.77457416213956,0.0800659580017963 +0,227.44231616412424,0.0,0.0,55.812647893416646,0.0788156249982421 +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113 +2,232.46123844002852,0.0,0.0,57.04425398375972,0.0805548329990415 +3,231.72020051948184,0.0,0.0,56.86240880546275,0.0802980410007876 +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412 +5,228.2878413970284,0.0,0.0,56.02013347879481,0.0791086250028456 +6,233.16163633716695,0.0,0.0,57.216126403446424,0.0807975420029833 +7,233.40656160322865,0.0,0.0,57.2762292368393,0.0808824159976211 +8,229.68887379156396,0.0,0.0,56.36393637810691,0.0795941249998577 +9,231.72140676401816,0.0,0.0,56.86270480887458,0.0802984590009145 +10,230.73183059687105,0.0,0.0,56.619870198709755,0.0799555410012544 +11,230.14337967589475,0.0,0.0,56.47546873196024,0.0797516250022454 +12,228.8957740192038,0.0,0.0,56.16931560970449,0.079319291999127 +13,231.420685462694,0.0,0.0,56.78891004461117,0.0801942499965662 +14,226.5801978801324,0.0,0.0,55.60109049706921,0.0785168750007869 +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736 +16,231.71876053022535,0.0,0.0,56.86205544284009,0.0802975420010625 +17,230.5897102165952,0.0,0.0,56.584994917466624,0.0799062920013966 +18,230.15408003990945,0.0,0.0,56.47809452147538,0.0797553330012306 +19,231.50172891975,0.0,0.0,56.8087975044692,0.0802223339996999 +20,231.60729837620207,0.0,0.0,56.834703461639485,0.080258917001629 +21,232.95806964037587,0.0,0.0,57.166172654458805,0.0807270000004791 +22,230.15576242448788,0.0,0.0,56.478507366102015,0.0797559159982483 +23,231.49847956893817,0.0,0.0,56.808000138016894,0.0802212080016033 +24,212.7223396474506,0.0,0.0,52.20047545259599,0.0737147090003418 +25,232.94869093924265,0.0,0.0,57.163871191156474,0.0807237499975599 +26,232.1919025824176,0.0,0.0,56.97816097327938,0.0804614999979094 +27,231.04902374637277,0.0,0.0,56.69770703165235,0.0800654579979891 +28,233.78796274238013,0.0,0.0,57.36982223151427,0.0810145830000692 +29,229.2454318904766,0.0,0.0,56.2551190432152,0.0794404590014892 +0,211.7681052623423,0.0,0.0,51.544369107950445,0.0730265000020153 +1,231.74900516849095,0.0,0.0,56.40772130442817,0.0799167500008479 +2,231.44620836593853,0.0,0.0,56.3340205451182,0.0798123329986992 +3,233.38067208769257,0.0,0.0,56.80486912723355,0.0804794169998786 +4,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277 +5,230.28251252118744,0.0,0.0,56.05077690898644,0.0794110419992648 +6,231.06523660858215,0.0,0.0,56.24129199727312,0.0796809580024273 +7,232.49512115383507,0.0,0.0,56.58932597855168,0.0801740419992711 +8,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101 +9,224.10794249743364,0.0,0.0,54.54788620694715,0.0772817920005763 +10,233.06518831792772,0.0,0.0,56.72808035936796,0.0803706250007962 +11,230.32105483741717,0.0,0.0,56.06015811099304,0.0794243330019526 +12,231.99791348728908,0.0,0.0,56.46830560366566,0.0800025839998852 +13,231.9559841150949,0.0,0.0,56.4580999920408,0.0799881249986356 +14,231.27282163561787,0.0,0.0,56.291818204898,0.0797525420020974 +15,232.3729636964068,0.0,0.0,56.55959284632588,0.0801319169986527 +16,230.21448714015344,0.0,0.0,56.03421952729583,0.0793875840026885 +17,232.06509211751913,0.0,0.0,56.48465688616146,0.0800257500013685 +18,233.97236945534013,0.0,0.0,56.94888830085012,0.0806834590002836 +19,214.36216993645792,0.0,0.0,52.17576460014163,0.0739210419997107 +20,232.36365799337193,0.0,0.0,56.557327837667266,0.0801287080030306 +21,232.1677971782116,0.0,0.0,56.509655303893105,0.0800611670019861 +22,231.68605456379217,0.0,0.0,56.392399123592,0.0798950419994071 +23,230.5801127299852,0.0,0.0,56.123212817075014,0.0795136669985367 +24,231.682548612676,0.0,0.0,56.39154577488691,0.079893833000824 +25,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836 +26,224.88571357316405,0.0,0.0,54.73719573190735,0.0775499999981548 +27,230.4003201673142,0.0,0.0,56.07945129688906,0.0794516670030134 +28,232.91258211809028,0.0,0.0,56.69093600147309,0.0803180000002612 +29,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247 +0,228.4317049341564,0.0,0.0,55.90521754742971,0.07943662499747 +1,224.63081830801715,0.0,0.0,54.975007821206816,0.0781148749993008 +2,229.29176212320093,0.0,0.0,56.115703584254696,0.0797357080009533 +3,230.26313272867944,0.0,0.0,56.35343190237108,0.0800735000011627 +4,230.50408894930908,0.0,0.0,56.412402306403166,0.0801572919990576 +5,231.4912756090507,0.0,0.0,56.654001365468474,0.080500583997491 +6,231.25858687418443,0.0,0.0,56.597054303994305,0.0804196669996599 +7,215.66143327236227,0.0,0.0,52.7798859933087,0.0749957910011289 +8,233.34570857816615,0.0,0.0,57.10784589022658,0.081145459000254 +9,234.07839758501584,0.0,0.0,57.28716048376931,0.0814002499973867 +10,232.5652090520479,0.0,0.0,56.91683039254912,0.0808740419997775 +11,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632 +12,229.16762905823128,0.0,0.0,56.08532388716335,0.079692540999531 +13,231.3745703445235,0.0,0.0,56.62543951060597,0.0804599999974016 +14,230.06686980122603,0.0,0.0,56.305399508361056,0.0800052499980665 +15,232.03033867738873,0.0,0.0,56.78592892830791,0.0806880419986555 +16,235.10392526784705,0.0,0.0,57.53814293047527,0.0817568750026112 +17,233.6283588093202,0.0,0.0,57.177020275047866,0.0812437499989755 +18,228.53918224908057,0.0,0.0,55.93152100068275,0.0794739999982994 +19,230.63636872152335,0.0,0.0,56.44477578732998,0.0802032920000783 +20,230.2772722892251,0.0,0.0,56.35689234674573,0.0800784170023689 +21,230.43650836221164,0.0,0.0,56.3958629760823,0.0801337909979338 +22,228.8680844073801,0.0,0.0,56.01201484770305,0.0795883750033681 +23,222.30861533511248,0.0,0.0,54.40668363684307,0.0773073340023984 +24,229.35538580934664,0.0,0.0,56.131274522694135,0.0797578329984389 +25,231.67831058690103,0.0,0.0,56.69977535786903,0.0805656250013271 +26,217.02748644269255,0.0,0.0,53.114206921704714,0.0754708329986897 +27,229.4719703058166,0.0,0.0,56.15980682139448,0.079798375001701 +28,230.24671853567145,0.0,0.0,56.349414775977685,0.0800677920015004 +29,232.43436710389943,0.0,0.0,56.88480879739587,0.080828541998926 +0,233.25053223547215,0.0,0.0,56.63698268361321,0.0794133329982287 +1,221.60881151463116,0.0,0.0,53.81018555455842,0.0754497499983699 +2,238.10873630723785,0.0,0.0,57.81663281023447,0.0810673750020214 +3,231.07861771633884,0.0,0.0,56.10960688801906,0.0786738750030053 +4,229.07742623183637,0.0,0.0,55.6236853925005,0.077992541999265 +5,234.276462541354,0.0,0.0,56.886095071104634,0.0797626249986933 +6,236.55130141861645,0.0,0.0,57.43846255710658,0.0805371249989548 +7,235.73072929591643,0.0,0.0,57.23921444110614,0.0802577499998733 +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205 +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879 +10,233.68327444202225,0.0,0.0,56.74205945503127,0.0795606659994518 +11,230.57134184737788,0.0,0.0,55.98643214397538,0.0785011659972951 +12,233.56836056947228,0.0,0.0,56.71415651758738,0.0795215420002932 +13,237.12197023826567,0.0,0.0,57.577030129693824,0.080731417001516 +14,234.29359506112613,0.0,0.0,56.890255122601026,0.0797684579993074 +15,234.53138547652537,0.0,0.0,56.9479944619724,0.0798494169976038 +16,234.16852151095043,0.0,0.0,56.859885251940554,0.079725874998985 +17,234.93438883615585,0.0,0.0,57.04585016280221,0.0799866250017657 +18,234.65144234374125,0.0,0.0,56.977146201282,0.079890291999618 +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866 +20,229.93275390578643,0.0,0.0,55.83137271562917,0.0782837500009918 +21,234.6409155169552,0.0,0.0,56.974590118341126,0.0798867079975025 +22,237.23517173824405,0.0,0.0,57.60451727552191,0.0807699580000189 +23,235.77833496092907,0.0,0.0,57.250773862639385,0.0802739579994522 +24,233.97001868432088,0.0,0.0,56.81168557133654,0.0796582919974753 +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417 +26,186.94272839226807,0.0,0.0,45.39270272743291,0.063647208000475 +27,231.6775567969512,0.0,0.0,56.255038934891886,0.0788777920024585 +28,234.7314802516568,0.0,0.0,56.99658069329023,0.0799175419997482 +29,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256 +0,226.42116177213327,0.0,0.0,56.03535537217832,0.0791302920006273 +1,224.91178830861125,0.0,0.0,55.661811319335285,0.0786027920003107 +2,228.6300203842071,0.0,0.0,56.582010006072565,0.0799022499995771 +3,229.0332362707683,0.0,0.0,56.68179902454736,0.0800431669995305 +4,228.41553770137455,0.0,0.0,56.52892921954344,0.0798272920001181 +5,244.43862004235896,0.0,0.0,60.494367370763285,0.0854270830022869 +6,231.42689083939575,0.0,0.0,57.27418748921862,0.0808797079989744 +7,219.32257694174305,0.0,0.0,54.27857733739913,0.0766494589988724 +8,226.24316157257405,0.0,0.0,55.99130337473889,0.0790680840000277 +9,229.2636968600091,0.0,0.0,56.73883406895891,0.0801237090017821 +10,230.3898811711504,0.0,0.0,57.01754537666294,0.080517291000433 +11,230.30606873637544,0.0,0.0,56.99680323608533,0.0804879999996046 +12,228.31634253998695,0.0,0.0,56.504380117878,0.0797926250015734 +13,228.8224476250095,0.0,0.0,56.62963244885686,0.0799695000023348 +14,224.49235988305836,0.0,0.0,55.5580099754366,0.0784562089975224 +15,216.08373905100171,0.0,0.0,53.477020491828235,0.075517541001318 +16,226.49722560636775,0.0,0.0,56.05417986697792,0.0791568749991711 +17,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319 +18,227.09393887275,0.0,0.0,56.20185616929578,0.0793654159970174 +19,228.4411698641868,0.0,0.0,56.53527274035617,0.0798362499990616 +20,228.40921978706487,0.0,0.0,56.52736564407734,0.0798250839980028 +21,228.2586401211186,0.0,0.0,56.490099758560795,0.0797724590011057 +22,229.08092389643008,0.0,0.0,56.693600894257315,0.0800598330024513 +23,228.80122768941447,0.0,0.0,56.62438087862935,0.0799620840007264 +24,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063 +25,233.76201033495235,0.0,0.0,57.85208952693407,0.0816957919996639 +26,228.461082144718,0.0,0.0,56.540200688376146,0.0798432089977723 +27,227.8610268005468,0.0,0.0,56.39169727910804,0.0796335000013641 +28,227.20291135293743,0.0,0.0,56.228824989724494,0.0794034999998984 +29,228.72158427175552,0.0,0.0,56.60467049830692,0.0799342499994963 +0,212.6893336470748,0.6736489116377261,0.0,53.279504829529245,0.0732918749999953 +1,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.0793974170010187 +2,231.44524097492229,0.7330543192410438,0.0,57.97793252179165,0.0797550839997711 +3,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.0800826669983507 +4,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.0800887080004031 +5,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297 +6,232.4248898509369,0.7361571518457545,0.0,58.22333837325513,0.0800926669980981 +7,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.0803107920000911 +8,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.0799042079997889 +9,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.0808812920004129 +10,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859 +11,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.0794993339986831 +12,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.0802035840024473 +13,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.0801895829972636 +14,232.42766991836817,0.7361659571269938,0.0,58.22403479095315,0.0800936249979713 +15,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.0797295000011217 +16,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.0799505420000059 +17,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.0796424159998423 +18,239.55219725510383,0.7587314050694335,0.0,60.008756582764285,0.0825487079964659 +19,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.0812833330019202 +20,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.0804598750000877 +21,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.0804541249999601 +22,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.0794215829992026 +23,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.080049083000631 +24,232.1192158874564,0.7351889935968963,0.0,58.14676585720907,0.0799873329997353 +25,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.0798464580002473 +26,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.0792702500002633 +27,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.0836044580028101 +28,212.9931909855094,0.6746113161072859,0.0,53.35562227393988,0.0733965829967928 +29,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.0798420829996757 +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.0789188749986351 +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.0791977920016506 +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.0790694999996048 +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.0798704169974371 +4,232.7516641096096,1.0435784766268297,0.0,58.70970526571582,0.0802916249995178 +5,230.0622758174019,1.0315201837343737,0.0,58.03132904621767,0.0793638750001264 +6,230.98301627009252,1.0356484675112625,0.0,58.26357830127876,0.0796814999994239 +7,226.34355984443872,1.0148467392504483,0.0,57.09331333073491,0.0780810409996775 +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.0827262089987925 +9,232.50767840573172,1.0424845285764657,0.0,58.64816186572117,0.0802074580024054 +10,230.61547089220113,1.0340005203439735,0.0,58.170867983222266,0.0795547090019681 +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.0818103749988949 +12,223.25292728760996,1.0009894049632495,0.0,56.31372652438411,0.0770148750016233 +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.079476541999611 +14,231.05210405201868,1.035958233383364,0.0,58.281005129696354,0.0797053329988557 +15,230.8566737288988,1.0350819909742357,0.0,58.23170942771182,0.0796379160019569 +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.0801497499996912 +17,235.03425108209285,1.0538128121991437,0.0,59.28546917662278,0.0810790420000557 +18,212.5300383012911,0.9529116556754448,0.0,53.608965403160504,0.0733158330003789 +19,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.0816356670002278 +20,233.53797138226943,1.0471040082224985,0.0,58.90804484967861,0.0805628749985771 +21,230.25214908541847,1.032371510218104,0.0,58.07922302646367,0.0794293749968346 +22,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.0800244170022779 +23,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.0798051670026325 +24,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.0763507919982657 +25,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.0793419999972684 +26,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.0790835829975549 +27,236.30393803482497,1.059505652166557,0.0,59.60573733478951,0.0815170419991773 +28,233.44375945039985,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887 +29,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058 +0,230.518560530242,0.8053050149528105,0.0,57.34442793976471,0.080327292002039 +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.0802637079978012 +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285 +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.0799302919986075 +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.0747683330009749 +5,232.19999083317265,0.811179007277459,0.0,57.762705143215726,0.0809132089998456 +6,228.9162862924588,0.7997075503666682,0.0,56.94584181569317,0.0797689579994767 +7,229.74181621161017,0.8025914976824808,0.0,57.151202897473325,0.0800566249999974 +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.0797927080020599 +9,229.8543330351777,0.8029845695552058,0.0,57.17919289041028,0.0800958330000867 +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.0801922499995271 +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447 +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.0796882089998689 +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.0825952499981212 +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.0810012080000888 +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.0809156670002266 +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.0799027920002117 +17,229.4390584890892,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617 +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.0801350420006201 +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.0804691659977834 +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.0799565829984203 +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.0798089579984662 +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.0805384579980454 +23,209.77332001183171,0.7328325589932985,0.0,52.18378513831446,0.0730983339999511 +24,229.24403659660769,0.8008525295951359,0.0,57.027373878253634,0.0798831669999344 +25,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.0800860000017564 +26,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434 +27,227.427249190088,0.7945056740265084,0.0,56.575424871304286,0.0792500829993514 +28,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.079899625001417 +29,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.0798307090008165 +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987 +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.0773468749976018 +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888 +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.0805877500024507 +4,230.5488593174952,0.8730367524402673,0.0,57.25106395810215,0.0799453340005129 +5,231.88767512675335,0.8781065472320985,0.0,57.58352550118184,0.0804095829989819 +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.0736084160016616 +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.0800470840003981 +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.0799534170000697 +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.0799360419987351 +10,233.5648652940369,0.8844576897239966,0.0,58.00001388382362,0.0809911670003202 +11,240.11716945213135,0.909269794022053,0.0,59.62711533875386,0.0832632500023464 +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.0759962089978216 +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.0802892920000886 +14,218.27767539201488,0.8265685348372249,0.0,54.20382122682572,0.0756901670029037 +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.0803171670013398 +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995 +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.079914791000192 +18,230.85646606210256,0.874201590098262,0.0,57.32745042759757,0.0800519999975222 +19,232.308354026224,0.8796995637462603,0.0,57.6879906225913,0.0805554580001626 +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418 +21,229.6469381758771,0.869621379634839,0.0,57.02709431836155,0.0796325829978741 +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.0763502500012691 +23,225.7957025466795,0.8550376152364794,0.0,56.07073592223835,0.0782971249973343 +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.0806615000001329 +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.0789183339984447 +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.0803770000020449 +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.0772449169999163 +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.0793845000007422 +29,229.30784864573525,0.8683373237385839,0.0,56.94288988362637,0.0795150000012654 +0,250.52289280398944,0.0,0.0,59.092548476657214,0.0806277090014191 +1,248.85123961316407,0.0,0.0,58.69824420326574,0.0800897080007416 +2,244.3419790590411,0.0,0.0,57.6346140698836,0.0786384580023877 +3,252.30082937497212,0.0,0.0,59.5119225379787,0.0811999159996048 +4,250.19896865042335,0.0,0.0,59.01614227068889,0.0805234580002434 +5,253.6747113428116,0.0,0.0,59.83598947604204,0.0816420829978596 +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064 +7,252.90957722267183,0.0,0.0,59.65551205707467,0.0813958340004319 +8,251.272752152766,0.0,0.0,59.26942293081308,0.0808690420017228 +9,249.41985231096191,0.0,0.0,58.832366770002,0.0802727089976542 +10,250.0490483597647,0.0,0.0,58.98077954617207,0.0804752080002799 +11,251.42707217541096,0.0,0.0,59.30582345021072,0.0809187080012634 +12,240.21308724761124,0.0,0.0,56.66070411382744,0.0773096250013622 +13,248.47915764070973,0.0,0.0,58.61047868312323,0.0799699579984007 +14,250.05034404295012,0.0,0.0,58.98108516782839,0.0804756249999627 +15,249.42062599741175,0.0,0.0,58.83254926471747,0.0802729579991137 +16,247.92867519320183,0.0,0.0,58.48063262254641,0.0797927919993526 +17,248.99960632515408,0.0,0.0,58.73324047455442,0.0801374580005358 +18,247.65887149478823,0.0,0.0,58.41699217855648,0.0797059590004209 +19,249.7995685662133,0.0,0.0,58.92193304065166,0.0803949159999319 +20,243.1112872649154,0.0,0.0,57.34432237761458,0.0782423749988083 +21,248.4247855184506,0.0,0.0,58.5976535587028,0.0799524590001965 +22,250.2673260892368,0.0,0.0,59.03226620739428,0.0805454580004152 +23,246.058297611157,0.0,0.0,58.039453867584825,0.0791908339997462 +24,248.9287911192123,0.0,0.0,58.71653680750362,0.0801146669982699 +25,247.1768707710309,0.0,0.0,58.30329937062335,0.0795508330011216 +26,248.9422544277273,0.0,0.0,58.71971249018146,0.0801189999983762 +27,251.83799359197425,0.0,0.0,59.40275029572405,0.08105095800056 +28,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028 +29,248.2156956504442,0.0,0.0,58.548334101215886,0.0798851660001673 +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552 +1,224.81426846497675,0.0,0.0,54.81441236053592,0.0781784999999217 +2,226.5529604006259,0.0,0.0,55.23834175513952,0.0787831250017916 +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438 +4,231.3919661313005,0.0,0.0,56.418192381824795,0.080465874998481 +5,230.0666493794804,0.0,0.0,56.09505248755288,0.0800049999998009 +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661 +7,233.63006128224424,0.0,0.0,56.96388670693858,0.0812441659982141 +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709 +9,229.45976573945956,0.0,0.0,55.94708158550068,0.0797939580006641 +10,230.95702356067633,0.0,0.0,56.312144302305065,0.0803146250000281 +11,225.23255524946725,0.0,0.0,54.916399411654055,0.0783239579977816 +12,228.58460950675445,0.0,0.0,55.733700224313345,0.0794896249972225 +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901 +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385 +15,229.41974814640807,0.0,0.0,55.937324460820925,0.0797800420004932 +16,227.88570495852065,0.0,0.0,55.56329270361139,0.0792465829981665 +17,215.252720952998,0.0,0.0,52.48310744957511,0.0748535000020638 +18,230.7855627294707,0.0,0.0,56.27033857187008,0.0802550000007613 +19,231.2199071705155,0.0,0.0,56.37624081491051,0.0804060420014138 +20,228.32004939956545,0.0,0.0,55.669194946651814,0.079397624998819 +21,229.05094560519663,0.0,0.0,55.84740270135428,0.0796517920025507 +22,228.0491398436106,0.0,0.0,55.60314154081637,0.0793034169983002 +23,229.22600099912444,0.0,0.0,55.8900848612288,0.0797126670004217 +24,229.4193886869974,0.0,0.0,55.93723681711175,0.0797799169995414 +25,228.67255850144625,0.0,0.0,55.75514402543258,0.0795202090012026 +26,230.46097335054304,0.0,0.0,56.19119690445779,0.0801421249998384 +27,235.15859470850617,0.0,0.0,57.33657506923012,0.0817757089971564 +28,229.769617397626,0.0,0.0,56.022629888894855,0.0799017080025805 +29,230.28699632438577,0.0,0.0,56.148777673160055,0.0800816250011848 +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887 +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.0796174999995855 +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.0796333750004123 +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.0792222920026688 +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.0796523749995685 +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398 +6,242.56584621915377,0.8435312498927311,0.0,63.60225624191192,0.0801713749970076 +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.079640541000117 +8,238.9652650419552,0.8310101023854332,0.0,62.65816171986166,0.0789813330011384 +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.0791503330001432 +10,240.76927408882528,0.8372836072083226,0.0,63.131183983507526,0.0795775830010825 +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.0801001669969991 +12,241.2736644165797,0.8390376422888429,0.0,63.26343822857876,0.0797442909970413 +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.0799174999992828 +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.0786007089991471 +15,239.97114719201255,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209 +16,241.24731757307185,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015 +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.0798793750000186 +18,243.9540875360528,0.8483589078315926,0.0,63.96626165050208,0.0806302079981833 +19,221.8673952599436,0.7715516596882167,0.0,58.17499514049154,0.0733302500011632 +20,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842 +21,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.0790053750024526 +22,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.0793227089998254 +23,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263 +24,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.0781720000013592 +25,239.45074845867185,0.8326983880187502,0.0,62.78545845661377,0.0791417920008825 +26,240.48108950298655,0.8362814351891312,0.0,63.0556202132605,0.0794823340002039 +27,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.0798562079980911 +28,225.32123524538264,0.7835625095471646,0.0,59.08061321985621,0.0744717919988033 +29,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.0802619999994931 +0,231.5143790184337,0.0,0.0,56.43350933210195,0.07974941700013 +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043 +2,232.4218146090488,0.0,0.0,56.654704123926024,0.0800620000009075 +3,230.38631370178572,0.0,0.0,56.15853425347324,0.0793608340027276 +4,231.63461351252136,0.0,0.0,56.46281746610602,0.0797908339991408 +5,235.2815330550488,0.0,0.0,57.351783710488874,0.0810470830001577 +6,233.1955921220685,0.0,0.0,56.843318674292625,0.0803285420006432 +7,232.45447362177313,0.0,0.0,56.662665023405225,0.0800732500028971 +8,230.41134935946187,0.0,0.0,56.16463689827264,0.0793694579988368 +9,231.09162631947495,0.0,0.0,56.3304599298013,0.0796037920008529 +10,230.3859508211676,0.0,0.0,56.15844579837669,0.0793607090017758 +11,231.53022371058705,0.0,0.0,56.43737160444242,0.0797548749978886 +12,231.62904551287176,0.0,0.0,56.461460220990105,0.0797889159985061 +13,232.76678951884415,0.0,0.0,56.738794558713785,0.0801808329997584 +14,232.42798352675112,0.0,0.0,56.656207847695576,0.0800641249988984 +15,212.8962049068824,0.0,0.0,51.89517824905821,0.0733360419981181 +16,231.8744757845807,0.0,0.0,56.52128584213549,0.079873459002556 +17,232.59188239161537,0.0,0.0,56.69615952654616,0.0801205829993705 +18,222.8084544625911,0.0,0.0,54.31136954644485,0.0767504999967059 +19,231.10819677286457,0.0,0.0,56.33449911233486,0.0796095000005152 +20,231.5256282331062,0.0,0.0,56.43625141950013,0.0797532920005323 +21,233.51710189953573,0.0,0.0,56.92168929258419,0.0804392919999372 +22,232.29395967478635,0.0,0.0,56.62353844576622,0.0800179580000985 +23,230.4144962399048,0.0,0.0,56.165403975927155,0.079370542000106 +24,230.3471199864287,0.0,0.0,56.14898046717825,0.0793473330013512 +25,233.2193011110168,0.0,0.0,56.84909793281966,0.0803367090011306 +26,231.8840296201605,0.0,0.0,56.523614667116625,0.0798767499982204 +27,232.6371201920523,0.0,0.0,56.7071866076456,0.0801361659978283 +28,230.12782273774823,0.0,0.0,56.09552498254536,0.0792717920012364 +29,233.83401619952215,0.0,0.0,56.998939725933454,0.080548459001875 +0,230.37705684275676,0.1002220374895983,0.0,57.32700544405026,0.0798094169986143 +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.0802579999981389 +2,230.45222653474644,0.1002547389217284,0.0,57.345710663228665,0.0798354580001614 +3,234.36824654926497,0.1019583439164435,0.0,58.320172720205726,0.0811920829983137 +4,233.63132613550113,0.1016377578895741,0.0,58.13679751283642,0.0809367920010117 +5,230.04329489624553,0.1000768394270209,0.0,57.24395215225599,0.0796937920022173 +6,229.48124985739312,0.0998323302743879,0.0,57.10409291694992,0.0794990829999733 +7,226.653234646772,0.0986020452349646,0.0,56.400369874399765,0.0785193750016333 +8,228.51640718827412,0.0994125901341099,0.0,56.8640015567109,0.079164833001414 +9,230.26363694955552,0.1001726958887277,0.0,57.29878204835227,0.0797701249975944 +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.0796512080014508 +11,230.75483929485844,0.1003863860041437,0.0,57.42101279437023,0.0799402919983549 +12,237.0613136942452,0.1031299218507447,0.0,58.99031529862598,0.082125041000836 +13,217.22370668195057,0.0944998723964402,0.0,54.05392701076379,0.0752527080003346 +14,232.80949090029833,0.1012802309601065,0.0,57.93229210918096,0.0806520840014854 +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.0799674589979986 +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.079922290999093 +17,232.13462926046583,0.1009866426597154,0.0,57.76435960135722,0.080418291996466 +18,230.06325854563016,0.1000855243092938,0.0,57.24891990491609,0.0797007080000185 +19,232.48498623238729,0.1011390601358993,0.0,57.85154239773443,0.0805396659998223 +20,232.0403330344357,0.100945620519621,0.0,57.74089493722326,0.0803856249985983 +21,229.7789294389717,0.0999618312524528,0.0,57.17816747640304,0.0796022079994145 +22,211.1731746677069,0.091867680394884,0.0,52.54831318587369,0.0731566249996831 +23,230.30609579896037,0.100191166965905,0.0,57.30934750449767,0.0797848339971096 +24,232.81899066563767,0.1012843636886474,0.0,57.93465602990636,0.0806553750007879 +25,233.0890051681689,0.101401829394505,0.0,58.001846413656885,0.0807489159997203 +26,234.19324993623465,0.101882214299406,0.0,58.27662657926024,0.0811314590027905 +27,218.84922050226433,0.0952070274806834,0.0,54.45841971895093,0.0758158339995134 +28,225.17289320878123,0.0979580451894349,0.0,56.03200184835682,0.0780065410035604 +29,239.13076194741328,0.1040302038634338,0.0,59.50527660988416,0.0828419589997793 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a5b1274c7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929 +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168 +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774 +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706 +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299 +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821 +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113 +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128 +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182 +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069 +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556 +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651 +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213 +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805 +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555 +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695 +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733 +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352 +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509 +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757 +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149 +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264 +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836 +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148 +24,4215.132051569963,2.0191377236736034,0.0,667.6063729307034,0.6637141249993874 +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339 +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552 +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064 +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687 +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..03eb86207 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,376.19058039632665,0.0,0.0,81.35316209688087,0.12724116599929403 +1,373.31118188113396,0.0,0.0,80.73047724947932,0.12626725000154693 +2,375.9587422141797,0.0,0.0,81.30302588881162,0.12716274999911548 +3,358.0380640968126,0.0,0.0,77.42758639685981,0.12110133299938752 +4,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658 +5,375.96440985647655,0.0,0.0,81.304251545823,0.12716466699930606 +6,375.1544485619503,0.0,0.0,81.12909321938014,0.12689070899796207 +7,372.8164561803528,0.0,0.0,80.62349025345529,0.12609991600038484 +8,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354 +9,341.7689728538709,0.0,0.0,73.9093111235619,0.11559854200095288 +10,376.41096503447875,0.0,0.0,81.40082141671914,0.12731570799951442 +11,377.2984136638453,0.0,0.0,81.59273678079191,0.12761587500062888 +12,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929 +13,331.6252896252523,0.0,0.0,71.71568706979686,0.11216758400041726 +14,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419 +15,355.2765537051657,0.0,0.0,76.83039546696682,0.12016729099923396 +16,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539 +17,377.2072553916621,0.0,0.0,81.57302333213093,0.12758504199882736 +18,375.10048919039974,0.0,0.0,81.11742422571268,0.12687245800043456 +19,372.6835400780478,0.0,0.0,80.5947464576784,0.12605495900061214 +20,376.06837871407083,0.0,0.0,81.32673534995224,0.12719983300121385 +21,374.12397846496765,0.0,0.0,80.90624872192488,0.12654216699957033 +22,376.20314854727656,0.0,0.0,81.35588002464081,0.12724541699935799 +23,374.47284738731366,0.0,0.0,80.98169343391177,0.12666016699949978 +24,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582 +25,377.63409948635586,0.0,0.0,81.66533057913625,0.12772941600269405 +26,377.70049987596684,0.0,0.0,81.67969000741759,0.127751874999376 +27,370.2482309866334,0.0,0.0,80.0680982490467,0.12523124999643187 +28,376.1321921537387,0.0,0.0,81.3405353369051,0.12722141699850908 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a7821ad58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c38681f80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..aaba9e1fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6ff24f49f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e33dfe6b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ff4bbf229 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8b11e19bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d45be08df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..27d154231 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bd147a0c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d17924dfd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4043dd7a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5fa8e8b9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b6fec5cd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..545b92029 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b6443ca80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f7640e3ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a5b1274c7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929 +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168 +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774 +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706 +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299 +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821 +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113 +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128 +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182 +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069 +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556 +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651 +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213 +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805 +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555 +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695 +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733 +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352 +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509 +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757 +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149 +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264 +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836 +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148 +24,4215.132051569963,2.0191377236736034,0.0,667.6063729307034,0.6637141249993874 +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339 +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552 +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064 +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687 +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a6a361b61 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,330.44415841729904,0.0,0.0,71.46026132650186,0.11176808300297125 +1,376.19058039632665,0.0,0.0,81.35316209688087,0.12724116599929403 +2,373.31118188113396,0.0,0.0,80.73047724947932,0.12626725000154693 +3,375.9587422141797,0.0,0.0,81.30302588881162,0.12716274999911548 +4,358.0380640968126,0.0,0.0,77.42758639685981,0.12110133299938752 +5,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658 +6,375.96440985647655,0.0,0.0,81.304251545823,0.12716466699930606 +7,375.1544485619503,0.0,0.0,81.12909321938014,0.12689070899796207 +8,372.8164561803528,0.0,0.0,80.62349025345529,0.12609991600038484 +9,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354 +10,341.7689728538709,0.0,0.0,73.9093111235619,0.11559854200095288 +11,376.41096503447875,0.0,0.0,81.40082141671914,0.12731570799951442 +12,377.2984136638453,0.0,0.0,81.59273678079191,0.12761587500062888 +13,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929 +14,331.6252896252523,0.0,0.0,71.71568706979686,0.11216758400041726 +15,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419 +16,355.2765537051657,0.0,0.0,76.83039546696682,0.12016729099923396 +17,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539 +18,377.2072553916621,0.0,0.0,81.57302333213093,0.12758504199882736 +19,375.10048919039974,0.0,0.0,81.11742422571268,0.12687245800043456 +20,372.6835400780478,0.0,0.0,80.5947464576784,0.12605495900061214 +21,376.06837871407083,0.0,0.0,81.32673534995224,0.12719983300121385 +22,374.12397846496765,0.0,0.0,80.90624872192488,0.12654216699957033 +23,376.20314854727656,0.0,0.0,81.35588002464081,0.12724541699935799 +24,374.47284738731366,0.0,0.0,80.98169343391177,0.12666016699949978 +25,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582 +26,377.63409948635586,0.0,0.0,81.66533057913625,0.12772941600269405 +27,377.70049987596684,0.0,0.0,81.67969000741759,0.127751874999376 +28,370.2482309866334,0.0,0.0,80.0680982490467,0.12523124999643187 +29,376.1321921537387,0.0,0.0,81.3405353369051,0.12722141699850908 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..101f54e0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..60fe5f47a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6c21c408b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fb389123e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fd7c75725 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7f3131342 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f43b50cba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d45be08df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..57b2824a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..78d818e00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cc47dbf24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5576cdabf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8690be526 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5dab9bf91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ec6426637 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b6443ca80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6d26ea81b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a7b1c7273 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5371.099961810868,5.280857460896809,106.01822699977643,756.2655808083043,0.6856771669990849 +1,5363.880609010041,5.273759404004894,105.87572676900963,755.2490761672071,0.6847555409985944 +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719 +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525 +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345 +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059 +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297 +7,5372.151900565224,5.281891725509057,106.03899084376411,756.4136966651483,0.6858114579990797 +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158 +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337 +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927 +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227 +12,5366.100043041169,5.27594154822965,105.91953538597751,755.5615785556473,0.6850388749990088 +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364 +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973 +15,5366.646735355581,5.276479055296713,105.93032635064033,755.6385543303717,0.685108665998996 +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709 +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213 +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005 +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962 +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437 +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114 +22,5365.320631859079,5.275175232319444,105.90415086656503,755.4518353271649,0.6849393749980663 +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881 +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078 +25,5378.330406530226,5.287966423346458,106.16094616996813,757.2836472219007,0.6866002089991525 +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997 +27,5403.673998780062,5.3128842053967,106.66119430074895,760.8520944019692,0.6898355839985015 +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381 +29,5330.02779723041,5.240475370021187,105.20751818802029,750.4825075789203,0.6804338750007446 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d41a71b77 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.13082254199980525 +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984023,0.129822625000088 +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.13055995800095843 +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.71645110124179,0.13036845799797447 +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478837,0.13366908300304203 +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.12805870900047012 +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.13114983400009805 +7,597.649025563058,0.5265920154749121,20.602912605455934,108.41213118589752,0.12881862500216812 +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518 +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390813,0.1328884159993322 +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.12748537499646773 +11,617.1983607546819,0.5438170478591833,21.276841997490546,111.95833472800936,0.13303233300030115 +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332357,0.1315104169989354 +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224583,0.13271016699945903 +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480085,0.12373945899889804 +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.12261900000157766 +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105 +17,609.4197285876301,0.5369632500359095,21.008687157654958,110.54730910114287,0.131355708999763 +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206 +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864 +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176745,0.12948654199863086 +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163 +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.12865220800085808 +23,598.978231220104,0.5277631862724634,20.648734662910133,108.65324597384341,0.12910512500093319 +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.13152870799967786 +25,599.235721308217,0.5279900622793916,20.657611186681198,108.69995407176975,0.12916062499789405 +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.13306229099907796 +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.12997237499803305 +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964275,0.12917070899857208 +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0496759da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..58e9cc35e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..85fec164f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9d04fd1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2fd7a9d1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..83b437f86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6c687a3f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2b7a3fea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..11aeaaa63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..88d544868 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b315fdbd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4400b74f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..34956a46d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8e7cf114f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..41482b669 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..602386fba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7aaea9c1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0c6fece6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..efd7726b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1b7091c3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a7b1c7273 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5371.099961810868,5.280857460896809,106.01822699977643,756.2655808083043,0.6856771669990849 +1,5363.880609010041,5.273759404004894,105.87572676900963,755.2490761672071,0.6847555409985944 +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719 +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525 +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345 +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059 +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297 +7,5372.151900565224,5.281891725509057,106.03899084376411,756.4136966651483,0.6858114579990797 +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158 +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337 +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927 +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227 +12,5366.100043041169,5.27594154822965,105.91953538597751,755.5615785556473,0.6850388749990088 +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364 +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973 +15,5366.646735355581,5.276479055296713,105.93032635064033,755.6385543303717,0.685108665998996 +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709 +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213 +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005 +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962 +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437 +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114 +22,5365.320631859079,5.275175232319444,105.90415086656503,755.4518353271649,0.6849393749980663 +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881 +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078 +25,5378.330406530226,5.287966423346458,106.16094616996813,757.2836472219007,0.6866002089991525 +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997 +27,5403.673998780062,5.3128842053967,106.66119430074895,760.8520944019692,0.6898355839985015 +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381 +29,5330.02779723041,5.240475370021187,105.20751818802029,750.4825075789203,0.6804338750007446 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d41a71b77 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.13082254199980525 +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984023,0.129822625000088 +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.13055995800095843 +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.71645110124179,0.13036845799797447 +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478837,0.13366908300304203 +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.12805870900047012 +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.13114983400009805 +7,597.649025563058,0.5265920154749121,20.602912605455934,108.41213118589752,0.12881862500216812 +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518 +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390813,0.1328884159993322 +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.12748537499646773 +11,617.1983607546819,0.5438170478591833,21.276841997490546,111.95833472800936,0.13303233300030115 +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332357,0.1315104169989354 +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224583,0.13271016699945903 +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480085,0.12373945899889804 +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.12261900000157766 +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105 +17,609.4197285876301,0.5369632500359095,21.008687157654958,110.54730910114287,0.131355708999763 +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206 +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864 +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176745,0.12948654199863086 +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163 +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.12865220800085808 +23,598.978231220104,0.5277631862724634,20.648734662910133,108.65324597384341,0.12910512500093319 +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.13152870799967786 +25,599.235721308217,0.5279900622793916,20.657611186681198,108.69995407176975,0.12916062499789405 +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.13306229099907796 +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.12997237499803305 +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964275,0.12917070899857208 +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0496759da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..58e9cc35e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..85fec164f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9d04fd1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2fd7a9d1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..83b437f86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6c687a3f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2b7a3fea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..11aeaaa63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..88d544868 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b315fdbd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4400b74f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..34956a46d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8e7cf114f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..41482b669 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..602386fba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7aaea9c1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0c6fece6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..efd7726b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1b7091c3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..20b91774a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682 +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186 +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859 +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746 +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048 +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973 +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401 +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178 +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143 +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177 +10,5419.407102652684,4.659793684661683,94.00044238698821,754.4842925683155,0.6892624579995754 +11,5393.631146430152,4.637630625908802,93.55335449675023,750.8957904079389,0.6859841660007078 +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406 +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715 +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774 +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974 +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185 +17,5448.457186507701,4.684771951605358,94.50432052015411,758.5286154160444,0.6929571670007135 +18,5396.272993802559,4.639902177661347,93.59917774217567,751.2635856866639,0.6863201670021226 +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951 +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026 +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316 +22,5408.767675900578,4.650645537521451,93.81589990798669,753.0030824996963,0.6879092919989489 +23,5393.128921742544,4.637198795750398,93.54464333297925,750.8258712025788,0.6859202910018212 +24,5398.73039199595,4.642015133629659,93.64180168847169,751.6057021400655,0.686632708999241 +25,5350.694712888532,4.6007123951744475,92.80861551128885,744.9182242143605,0.6805233340019186 +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455 +27,5407.841192231741,4.649848914815828,93.79982990750779,752.8740983945686,0.6877914579999924 +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925 +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..deb5a8d03 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.12976995799908764 +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.12810116599939647 +2,596.3705986768317,0.49983566967382664,17.56089319454044,107.19808995604669,0.12927791699985391 +3,588.5562142436058,0.49328620515472354,17.330788674435954,105.79344813218304,0.12758395800119615 +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.12783091700111981 +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598811,0.13447433300098055 +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338 +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092005 +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083 +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.13008770800297498 +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.13168691699684132 +11,593.7434442190689,0.49763377455920177,17.48353327951329,106.72585685046347,0.12870841699987068 +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.11801637499956996 +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336 +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383 +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.12676316700162715 +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053045,0.12994595800046227 +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988685,0.13102920800156426 +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111335,0.13087108300169348 +19,592.0333350469189,0.49620048196366895,17.433176932990236,106.41846336514153,0.12833770900033414 +20,640.5170945999755,0.5368361411968281,18.860843094048562,115.13345774867973,0.13884775000042282 +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.13145425000038813 +22,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.13361791699935566 +23,576.81763141262,0.48344775499744647,16.985131125576952,103.68342852178569,0.1250393329974031 +24,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.12942629200188094 +25,588.7255561438179,0.49342813556223214,17.33577516275309,105.82388747358006,0.12762066700088326 +26,574.9945015603392,0.48191973645890873,16.931446740922993,103.35571947922062,0.12464412500048638 +27,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.13296808399900328 +28,594.1982164073472,0.49801493245293665,17.496924626846507,106.80760251340648,0.12880699999732315 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8c59e0257 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f860a4410 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bf937dea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..90870b7eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9c853b526 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5a34d439a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..83cb4b2be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..502e25909 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a0e02d64a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ae84f310c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b0129c863 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c71e99dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..01303a391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aea1301a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..26a27788f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..661aedd51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c5d6fc1a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..dede7908d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..61d359079 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..aa7fc9ab9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..20b91774a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682 +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186 +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859 +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746 +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048 +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973 +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401 +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178 +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143 +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177 +10,5419.407102652684,4.659793684661683,94.00044238698821,754.4842925683155,0.6892624579995754 +11,5393.631146430152,4.637630625908802,93.55335449675023,750.8957904079389,0.6859841660007078 +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406 +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715 +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774 +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974 +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185 +17,5448.457186507701,4.684771951605358,94.50432052015411,758.5286154160444,0.6929571670007135 +18,5396.272993802559,4.639902177661347,93.59917774217567,751.2635856866639,0.6863201670021226 +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951 +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026 +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316 +22,5408.767675900578,4.650645537521451,93.81589990798669,753.0030824996963,0.6879092919989489 +23,5393.128921742544,4.637198795750398,93.54464333297925,750.8258712025788,0.6859202910018212 +24,5398.73039199595,4.642015133629659,93.64180168847169,751.6057021400655,0.686632708999241 +25,5350.694712888532,4.6007123951744475,92.80861551128885,744.9182242143605,0.6805233340019186 +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455 +27,5407.841192231741,4.649848914815828,93.79982990750779,752.8740983945686,0.6877914579999924 +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925 +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2aa1f44c5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.12976995799908764 +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.12810116599939647 +2,596.3705986768317,0.49983566967382664,17.56089319454044,107.19808995604669,0.12927791699985391 +3,588.5562142436058,0.49328620515472354,17.330788674435954,105.79344813218304,0.12758395800119615 +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.12783091700111981 +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598811,0.13447433300098055 +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338 +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092005 +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083 +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.13008770800297498 +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.13168691699684132 +11,593.7434442190689,0.49763377455920177,17.48353327951329,106.72585685046347,0.12870841699987068 +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.11801637499956996 +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336 +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383 +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.12676316700162715 +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053045,0.12994595800046227 +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988685,0.13102920800156426 +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111335,0.13087108300169348 +19,592.0333350469189,0.49620048196366895,17.433176932990236,106.41846336514153,0.12833770900033414 +20,640.5170945999755,0.5368361411968281,18.860843094048562,115.13345774867973,0.13884775000042282 +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.13145425000038813 +22,527.3991446022711,0.44202867346672997,15.52994072779778,94.80041616949802,0.11432666699693073 +23,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.13361791699935566 +24,576.81763141262,0.48344775499744647,16.985131125576952,103.68342852178569,0.1250393329974031 +25,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.12942629200188094 +26,588.7255561438179,0.49342813556223214,17.33577516275309,105.82388747358006,0.12762066700088326 +27,574.9945015603392,0.48191973645890873,16.931446740922993,103.35571947922062,0.12464412500048638 +28,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.13296808399900328 +29,594.1982164073472,0.49801493245293665,17.496924626846507,106.80760251340648,0.12880699999732315 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8568d4f88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..7b165e5de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c073a7d3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e390b48e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d9051d57a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..99dcdf13d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9eb06262e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a8dad060d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ffdd8cb68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..96a5df278 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a43130bc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6708ff8b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5b81e4d52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..16cec9f6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..969a755b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..54856df68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..35af01946 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f41a74635 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b806f9d96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2ec77b99e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..56a119dc2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583 +1,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217 +2,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334 +3,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716 +4,4423.116844673827,3.4563989666894583,10.469868714632145,687.3200352983833,0.6737360840015754 +5,4372.552212189364,3.41688575697609,10.350178215306213,679.4626609163522,0.6660340000016731 +6,4367.830293810635,3.4131958626372865,10.339001059639159,678.7289093061835,0.6653147500001069 +7,4402.0599576700315,3.4399442798617175,10.420025391425785,684.0479489332786,0.6705286659998819 +8,4377.090584625613,3.420432221234205,10.360920903156039,680.1678908283396,0.6667252919978637 +9,4383.548140369233,3.4254784114623615,10.376206450254921,681.1713478016708,0.6677089170007093 +10,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672 +11,4356.017836464776,3.403965139869143,10.311040035331773,676.8933397553377,0.6635154579998925 +12,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577 +13,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067 +14,4402.389306963763,3.4402016464650678,10.420804987350497,684.099127406772,0.670578833000036 +15,4315.28000684407,3.3721309837410414,10.214610358516552,670.5629787280001,0.6573102080001263 +16,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107 +17,4374.957761226749,3.4187655484216073,10.355872340849917,679.8364656579744,0.6664004169979307 +18,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159 +19,4380.030910237862,3.4227299083098126,10.367880887307393,680.624795941763,0.6671731669994188 +20,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498 +21,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315 +22,4376.213328707104,3.419746698658895,10.358844368753159,680.0315716692378,0.666591667002649 +23,4380.196677962882,3.4228594457861194,10.368273272672516,680.6505550348669,0.6671984169988718 +24,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699 +25,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136 +26,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095 +27,4405.482821650499,3.4426190415604627,10.428127582202567,684.5798369829262,0.6710500420012977 +28,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..78aefd5d6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888 +1,414.74347979123286,0.0,0.0,83.8936897077914,0.12803224999879603 +2,413.80730265227277,0.0,0.0,83.70432119873855,0.12774324999918463 +3,414.58259013722255,0.0,0.0,83.86114518962916,0.12798258299881127 +4,405.33865396257676,0.0,0.0,81.99129562983686,0.1251289589999942 +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936 +6,413.99828927188275,0.0,0.0,83.74295368600988,0.12780220800050301 +7,409.3646465046534,0.0,0.0,82.80566736935371,0.12637179200100945 +8,412.4757866594092,0.0,0.0,83.43498413862977,0.12733220800146228 +9,412.46337016487814,0.0,0.0,83.43247254871889,0.12732837500152527 +10,410.6350162053592,0.0,0.0,83.06263584909651,0.12676395800008322 +11,412.46282918595386,0.0,0.0,83.43236312031262,0.12732820800010813 +12,413.48687415937496,0.0,0.0,83.63950540327329,0.12764433299889788 +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001 +14,409.1943076028259,0.0,0.0,82.77121147150024,0.12631920799685759 +15,406.66274208677544,0.0,0.0,82.25913019180082,0.12553770799786435 +16,411.9619420265209,0.0,0.0,83.3310444161506,0.12717358300142223 +17,411.52084710331684,0.0,0.0,83.24182039595,0.12703741600125795 +18,411.8797430808043,0.0,0.0,83.31441733656462,0.12714820800101734 +19,410.98729740297114,0.0,0.0,83.13389476194843,0.12687270800233819 +20,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163 +21,430.42633868348526,0.0,0.0,87.06599490786343,0.13287358399975346 +22,394.2393637064164,0.0,0.0,79.7461478261975,0.12170258300102432 +23,398.69146909006815,0.0,0.0,80.64671303288978,0.12307695799972862 +24,393.4677205138221,0.0,0.0,79.59006099730456,0.12146437500268803 +25,399.4925386960174,0.0,0.0,80.80875219258839,0.12332424999840441 +26,418.38884992099725,0.0,0.0,84.63106971600862,0.12915758400049526 +27,409.7174654168141,0.0,0.0,82.87703505029891,0.12648070799696143 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..58224feb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..7b39f7fba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7854e108f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d9f8194d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b07bfbc65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4742ab93c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9adbd4286 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b22630661 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..432820424 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8194f77e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..230ef8368 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..418551c5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e6f730826 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..434424a16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dabd04e87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..0707211b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5f0d928ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..40ccdf831 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0dfa632f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..13cf8052d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3994f5805 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583 +1,4531.796465296956,3.541325533545661,10.727122004526663,704.2080541561381,0.6902903339978366 +2,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217 +3,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334 +4,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716 +5,4423.116844673827,3.4563989666894583,10.469868714632145,687.3200352983833,0.6737360840015754 +6,4372.552212189364,3.41688575697609,10.350178215306213,679.4626609163522,0.6660340000016731 +7,4367.830293810635,3.4131958626372865,10.339001059639159,678.7289093061835,0.6653147500001069 +8,4402.0599576700315,3.4399442798617175,10.420025391425785,684.0479489332786,0.6705286659998819 +9,4377.090584625613,3.420432221234205,10.360920903156039,680.1678908283396,0.6667252919978637 +10,4383.548140369233,3.4254784114623615,10.376206450254921,681.1713478016708,0.6677089170007093 +11,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672 +12,4356.017836464776,3.403965139869143,10.311040035331773,676.8933397553377,0.6635154579998925 +13,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577 +14,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067 +15,4402.389306963763,3.4402016464650678,10.420804987350497,684.099127406772,0.670578833000036 +16,4315.28000684407,3.3721309837410414,10.214610358516552,670.5629787280001,0.6573102080001263 +17,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107 +18,4374.957761226749,3.4187655484216073,10.355872340849917,679.8364656579744,0.6664004169979307 +19,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159 +20,4380.030910237862,3.4227299083098126,10.367880887307393,680.624795941763,0.6671731669994188 +21,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498 +22,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315 +23,4376.213328707104,3.419746698658895,10.358844368753159,680.0315716692378,0.666591667002649 +24,4380.196677962882,3.4228594457861194,10.368273272672516,680.6505550348669,0.6671984169988718 +25,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699 +26,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136 +27,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095 +28,4405.482821650499,3.4426190415604627,10.428127582202567,684.5798369829262,0.6710500420012977 +29,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d9572ea75 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888 +1,414.74347979123286,0.0,0.0,83.8936897077914,0.12803224999879603 +2,413.80730265227277,0.0,0.0,83.70432119873855,0.12774324999918463 +3,414.58259013722255,0.0,0.0,83.86114518962916,0.12798258299881127 +4,405.33865396257676,0.0,0.0,81.99129562983686,0.1251289589999942 +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936 +6,413.99828927188275,0.0,0.0,83.74295368600988,0.12780220800050301 +7,409.3646465046534,0.0,0.0,82.80566736935371,0.12637179200100945 +8,412.4757866594092,0.0,0.0,83.43498413862977,0.12733220800146228 +9,412.46337016487814,0.0,0.0,83.43247254871889,0.12732837500152527 +10,410.6350162053592,0.0,0.0,83.06263584909651,0.12676395800008322 +11,412.46282918595386,0.0,0.0,83.43236312031262,0.12732820800010813 +12,413.48687415937496,0.0,0.0,83.63950540327329,0.12764433299889788 +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001 +14,409.1943076028259,0.0,0.0,82.77121147150024,0.12631920799685759 +15,363.8779890686815,0.0,0.0,73.60469445303713,0.11232995799946366 +16,406.66274208677544,0.0,0.0,82.25913019180082,0.12553770799786435 +17,361.25707207713594,0.0,0.0,73.07453929074433,0.11152087499795016 +18,411.9619420265209,0.0,0.0,83.3310444161506,0.12717358300142223 +19,411.52084710331684,0.0,0.0,83.24182039595,0.12703741600125795 +20,411.8797430808043,0.0,0.0,83.31441733656462,0.12714820800101734 +21,410.98729740297114,0.0,0.0,83.13389476194843,0.12687270800233819 +22,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163 +23,430.42633868348526,0.0,0.0,87.06599490786343,0.13287358399975346 +24,394.2393637064164,0.0,0.0,79.7461478261975,0.12170258300102432 +25,398.69146909006815,0.0,0.0,80.64671303288978,0.12307695799972862 +26,393.4677205138221,0.0,0.0,79.59006099730456,0.12146437500268803 +27,399.4925386960174,0.0,0.0,80.80875219258839,0.12332424999840441 +28,418.38884992099725,0.0,0.0,84.63106971600862,0.12915758400049526 +29,409.7174654168141,0.0,0.0,82.87703505029891,0.12648070799696143 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8d517c23d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8e417cd22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ff294b82b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..17531d932 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7b416daa3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4df3d8230 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6776adcb0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c4fb5745e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bc49b04bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fa204dfed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..37031033f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..579a281a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8134a19ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..70e9d82e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4a5bf7d48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..3b821496e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c945cbe11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1af660453 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9f4285aad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7c759e18e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..87f6e2d49 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987 +1,4232.037816623077,1.6331163903552641,0.0,670.8442184708318,0.6674780419998569 +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916 +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375 +4,4243.973240627595,1.6377221943230493,0.0,672.7361699455987,0.6693605000000389 +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998 +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657 +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266 +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238 +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002 +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034 +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991 +12,4237.355510600818,1.6351684545310219,0.0,671.6871561796002,0.6683167499977571 +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947 +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404 +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294 +16,4265.879642022094,1.6461757348444819,0.0,676.208677366321,0.6728155829987372 +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048 +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143 +19,4242.011171658709,1.6369650444271981,0.0,672.4251513108294,0.6690510420012288 +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099 +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737 +22,4208.176472784298,1.6239084500183543,0.0,667.0618220810089,0.6637146249995567 +23,4214.574135928659,1.6263772674046237,0.0,668.0759518024544,0.6647236659991904 +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738 +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659 +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104 +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474 +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761 +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a1cb78a9a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.12666424999770243 +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.12747229099841206 +2,362.06830888108055,0.9323075821841323,0.0,78.97977089074149,0.12582737499906216 +3,368.62949009525886,0.9492022919502711,0.0,80.4109941609301,0.12810754199745134 +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.12651595799979987 +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.12659595900186105 +6,364.54559780380356,0.938686475860447,0.0,79.52015431217787,0.12668829199901666 +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.12683887499952107 +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.12600804199973936 +9,367.52488967442747,0.9463580017366167,0.0,80.17004214711623,0.12772366699937265 +10,364.9063615290765,0.9396154242058251,0.0,79.59884950772204,0.12681366600008914 +11,363.73042498992356,0.9365874470956281,0.0,79.3423365896725,0.1264049999990675 +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.12581904100079555 +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.12616404099753709 +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.11996945799910463 +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.12766454099983093 +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.12693379200209165 +17,365.2405141303859,0.9404758502529709,0.0,79.67173988571597,0.1269297920007375 +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482 +19,364.44404506429737,0.9384249826926915,0.0,79.4980021052523,0.12665299999935087 +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.11972237500231131 +21,363.56424934911365,0.9361595532256007,0.0,79.3060878661116,0.12634724999952596 +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.12648979199730093 +23,365.373837350975,0.9408191508025843,0.0,79.70082234656178,0.12697612500051036 +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.12662970800010953 +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164 +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.12031324999770732 +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905 +28,364.4625099886328,0.9384725289389111,0.0,79.50202995153919,0.12665941700106487 +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.12635816599868122 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..718d0c90b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5888c7b32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5df6ca0d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bf6434504 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..78ded802d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4993fa4c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8ef2c306a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1b46774dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..66e21e5da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1f994d7fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c8ee0d004 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..75bc092ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7fc27b9d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c25858180 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0669d07de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1c716746 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..069766c11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..87f6e2d49 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987 +1,4232.037816623077,1.6331163903552641,0.0,670.8442184708318,0.6674780419998569 +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916 +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375 +4,4243.973240627595,1.6377221943230493,0.0,672.7361699455987,0.6693605000000389 +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998 +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657 +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266 +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238 +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002 +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034 +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991 +12,4237.355510600818,1.6351684545310219,0.0,671.6871561796002,0.6683167499977571 +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947 +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404 +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294 +16,4265.879642022094,1.6461757348444819,0.0,676.208677366321,0.6728155829987372 +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048 +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143 +19,4242.011171658709,1.6369650444271981,0.0,672.4251513108294,0.6690510420012288 +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099 +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737 +22,4208.176472784298,1.6239084500183543,0.0,667.0618220810089,0.6637146249995567 +23,4214.574135928659,1.6263772674046237,0.0,668.0759518024544,0.6647236659991904 +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738 +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659 +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104 +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474 +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761 +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a1cb78a9a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.12666424999770243 +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.12747229099841206 +2,362.06830888108055,0.9323075821841323,0.0,78.97977089074149,0.12582737499906216 +3,368.62949009525886,0.9492022919502711,0.0,80.4109941609301,0.12810754199745134 +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.12651595799979987 +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.12659595900186105 +6,364.54559780380356,0.938686475860447,0.0,79.52015431217787,0.12668829199901666 +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.12683887499952107 +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.12600804199973936 +9,367.52488967442747,0.9463580017366167,0.0,80.17004214711623,0.12772366699937265 +10,364.9063615290765,0.9396154242058251,0.0,79.59884950772204,0.12681366600008914 +11,363.73042498992356,0.9365874470956281,0.0,79.3423365896725,0.1264049999990675 +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.12581904100079555 +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.12616404099753709 +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.11996945799910463 +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.12766454099983093 +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.12693379200209165 +17,365.2405141303859,0.9404758502529709,0.0,79.67173988571597,0.1269297920007375 +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482 +19,364.44404506429737,0.9384249826926915,0.0,79.4980021052523,0.12665299999935087 +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.11972237500231131 +21,363.56424934911365,0.9361595532256007,0.0,79.3060878661116,0.12634724999952596 +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.12648979199730093 +23,365.373837350975,0.9408191508025843,0.0,79.70082234656178,0.12697612500051036 +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.12662970800010953 +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164 +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.12031324999770732 +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905 +28,364.4625099886328,0.9384725289389111,0.0,79.50202995153919,0.12665941700106487 +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.12635816599868122 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..718d0c90b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5888c7b32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5df6ca0d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bf6434504 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..78ded802d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4993fa4c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8ef2c306a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1b46774dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..66e21e5da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1f994d7fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c8ee0d004 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..75bc092ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7fc27b9d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c25858180 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0669d07de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1c716746 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..069766c11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b773b47b4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179 +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888 +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684 +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505 +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456 +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906 +6,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492 +7,4279.214199576053,3.2235761065419726,0.0,674.2591301611349,0.6668920000010985 +8,4289.831616235325,3.2315743158065198,0.0,675.9320751896751,0.6685466659982922 +9,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947 +10,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687 +11,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766 +12,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288 +13,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154 +14,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639 +15,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175 +16,4306.362254109225,3.2440270154824282,0.0,678.5367434754947,0.6711228750027658 +17,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187 +18,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203 +19,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345 +20,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055 +21,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631 +22,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103 +23,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301 +24,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826 +25,4277.992096765777,3.2226554839147314,0.0,674.0665681767628,0.6667015419989184 +26,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038 +27,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906 +28,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..abaf8f74b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.91148801796203,0.937586825790073,0.0,81.70399481884921,0.1261905419996765 +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.12736500000028173 +2,358.4963540466036,0.9086537443020639,0.0,79.182683432037,0.12229641600060859 +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.12754791699990164 +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467 +5,373.2398182137489,0.9460228939970099,0.0,82.43913790545372,0.1273259589979716 +6,372.4002203609801,0.9438948284699413,0.0,82.25369219523775,0.12703954099924886 +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.12707120800041594 +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.12104733299929649 +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482 +10,374.8352147805899,0.9500666256772443,0.0,82.79152023758844,0.1278702079980576 +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.13118008299716166 +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.12674095799957286 +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.12198875000103726 +14,373.0092159450698,0.9454384037713365,0.0,82.38820375721647,0.12724729200272122 +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.12684854200051632 +16,371.02992975079917,0.940421655926711,0.0,81.95103001647053,0.12657208399832598 +17,372.40693906507727,0.9439118578638693,0.0,82.25517618528004,0.1270418329986569 +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.12775370799863595 +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.12828729200191447 +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.12059674999909475 +21,371.27811733858584,0.9410507183380469,0.0,82.0058483123155,0.1266567499988014 +22,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.12433295799928601 +23,371.9971566406658,0.9428732131744947,0.0,82.16466571949168,0.12690204099999391 +24,369.46359774845956,0.9364515920120275,0.0,81.60506730390526,0.12603775000025053 +25,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.11988824999934877 +26,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.12743758400029037 +27,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.12715333400046802 +28,371.3744862190492,0.9412949772909729,0.0,82.0271337353562,0.1266896250017453 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d4b3b09cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5b3ae3af5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b548103bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..623cfac58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d9a9322eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fee956baf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0a3dca4b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..372579237 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c39ec48dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7ea3cf788 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7405a8689 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4bb0a3cc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b58d86f14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..53e65e093 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c7200fa0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..404676789 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5ab0b68fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..914b4e2eb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179 +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888 +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684 +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505 +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456 +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906 +6,4351.687882995867,3.278171278302327,0.0,685.6785264482053,0.6781866250021267 +7,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492 +8,4279.214199576053,3.2235761065419726,0.0,674.2591301611349,0.6668920000010985 +9,4289.831616235325,3.2315743158065198,0.0,675.9320751896751,0.6685466659982922 +10,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947 +11,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687 +12,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766 +13,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288 +14,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154 +15,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639 +16,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175 +17,4306.362254109225,3.2440270154824282,0.0,678.5367434754947,0.6711228750027658 +18,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187 +19,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203 +20,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345 +21,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055 +22,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631 +23,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103 +24,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301 +25,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826 +26,4277.992096765777,3.2226554839147314,0.0,674.0665681767628,0.6667015419989184 +27,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038 +28,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906 +29,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..053de3e53 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.91148801796203,0.937586825790073,0.0,81.70399481884921,0.1261905419996765 +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.12736500000028173 +2,358.4963540466036,0.9086537443020639,0.0,79.182683432037,0.12229641600060859 +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.12754791699990164 +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467 +5,373.2398182137489,0.9460228939970099,0.0,82.43913790545372,0.1273259589979716 +6,372.4002203609801,0.9438948284699413,0.0,82.25369219523775,0.12703954099924886 +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.12707120800041594 +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.12104733299929649 +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482 +10,374.8352147805899,0.9500666256772443,0.0,82.79152023758844,0.1278702079980576 +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.13118008299716166 +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.12674095799957286 +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.12198875000103726 +14,373.0092159450698,0.9454384037713365,0.0,82.38820375721647,0.12724729200272122 +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.12684854200051632 +16,371.02992975079917,0.940421655926711,0.0,81.95103001647053,0.12657208399832598 +17,372.40693906507727,0.9439118578638693,0.0,82.25517618528004,0.1270418329986569 +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.12775370799863595 +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.12828729200191447 +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.12059674999909475 +21,371.27811733858584,0.9410507183380469,0.0,82.0058483123155,0.1266567499988014 +22,326.0047805771626,0.8262997968824616,0.0,72.00612515690023,0.11121233399899211 +23,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.12433295799928601 +24,371.9971566406658,0.9428732131744947,0.0,82.16466571949168,0.12690204099999391 +25,369.46359774845956,0.9364515920120275,0.0,81.60506730390526,0.12603775000025053 +26,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.11988824999934877 +27,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.12743758400029037 +28,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.12715333400046802 +29,371.3744862190492,0.9412949772909729,0.0,82.0271337353562,0.1266896250017453 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a17311c92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d5ca8f51a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..87f0d6f5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..629db8cd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bca11fbb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ee14add24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..55657c11f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1aaae7579 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..37e0ea1e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2485ab582 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..81d2bf4bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6110ba58e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0c6297e87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..adadfb805 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d461948a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d64564f37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9b3a7f76f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7c8d1ea99 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615 +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135 +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816 +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988 +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868 +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682 +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318 +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657 +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435 +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166 +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583 +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683 +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049 +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155 +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538 +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964 +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264 +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035 +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506 +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285 +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116 +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129 +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858 +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954 +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173 +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859 +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842 +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256 +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1998d76da --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.12694624999858206 +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.12953079100043396 +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878 +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836747,0.12771029099894804 +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596 +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.12454129199977615 +6,773.1125247644942,0.8169198518182477,0.0,116.54723219273667,0.12978225000188104 +7,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971 +8,741.2949626305472,0.7832993925563833,0.0,111.75071333804401,0.12444104200039874 +9,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.13154462500096997 +10,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268 +11,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.12523137499738368 +12,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.12646637500074576 +13,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.12908879200040246 +14,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.12603204200058826 +15,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.12894404200051213 +16,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.12858820800101967 +17,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.12192816700189724 +18,790.462774080707,0.8352532284566974,0.0,119.16279392648883,0.13269483299882268 +19,751.1743926154271,0.7937386264593074,0.0,113.24004404152787,0.12609950000114623 +20,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.13072208399898955 +21,774.9388388883993,0.8188496514472585,0.0,116.82255027314223,0.13008883300062735 +22,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128 +23,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.12067045799994958 +24,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.12683991700032493 +25,756.88342996767,0.7997711583332929,0.0,114.10068525554979,0.12705787499726284 +26,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334 +27,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802 +28,760.1081492584486,0.8031786017788388,0.0,114.58681385378101,0.12759920800090185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..20e0f762c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4e13fef46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..330135436 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bdcc0b9a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f67e4a0a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..45a0592f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..dbb3c1298 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..39d16939c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..99099cbe3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b8dae5985 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a8a1848f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..90ff246c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..79ec0b111 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..18e281627 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..36ac0b7f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fe263284a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9d7200624 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..290e9301a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615 +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135 +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816 +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988 +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868 +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682 +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318 +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657 +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435 +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166 +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583 +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683 +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049 +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155 +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538 +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964 +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264 +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035 +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506 +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285 +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116 +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129 +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858 +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954 +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173 +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859 +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842 +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256 +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392 +29,4394.9357444520365,2.1957352998409876,0.0,690.0441263390903,0.6867462920017715 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..bcfe40312 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.12694624999858206 +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.12953079100043396 +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878 +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836747,0.12771029099894804 +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596 +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.12454129199977615 +6,680.491389862858,0.7190504713912117,0.0,102.58453391847954,0.11423395800011349 +7,773.1125247644942,0.8169198518182477,0.0,116.54723219273667,0.12978225000188104 +8,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971 +9,741.2949626305472,0.7832993925563833,0.0,111.75071333804401,0.12444104200039874 +10,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.13154462500096997 +11,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268 +12,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.12523137499738368 +13,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.12646637500074576 +14,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.12908879200040246 +15,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.12603204200058826 +16,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.12894404200051213 +17,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.12858820800101967 +18,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.12192816700189724 +19,790.462774080707,0.8352532284566974,0.0,119.16279392648883,0.13269483299882268 +20,751.1743926154271,0.7937386264593074,0.0,113.24004404152787,0.12609950000114623 +21,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.13072208399898955 +22,774.9388388883993,0.8188496514472585,0.0,116.82255027314223,0.13008883300062735 +23,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128 +24,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.12067045799994958 +25,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.12683991700032493 +26,756.88342996767,0.7997711583332929,0.0,114.10068525554979,0.12705787499726284 +27,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334 +28,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802 +29,760.1081492584486,0.8031786017788388,0.0,114.58681385378101,0.12759920800090185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6c828b81b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..63f989626 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..967b93852 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ad40aa34b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6554cdd01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2b91d49b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a593f3407 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5e549d32a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..abf159a9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3fdd8a657 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e363027eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..809bf8077 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1445095ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..30caf5b47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b5092a27d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1c30fee5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7bfe29a5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4052b6465 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203 +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171 +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709 +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271 +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992 +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234 +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881 +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039 +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999 +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505 +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424 +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857 +12,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828 +13,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863 +14,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767 +15,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978 +16,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894 +17,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856 +18,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611 +19,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634 +20,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011 +21,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656 +22,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471 +23,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497 +24,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462 +25,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372 +26,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194 +27,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..cdc30e9f0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.90417448019963,0.7311672810929373,0.0,80.96015894283615,0.12639258399940445 +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.12391474999822094 +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.12762195899995277 +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.12706229200193775 +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696 +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.12650924999979907 +6,372.74958639836956,0.7367916352887809,0.0,81.5829283437941,0.12736483300250256 +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.12270058300055098 +8,376.14691658370805,0.7435069330495576,0.0,82.32649495039648,0.12852566699802992 +9,375.51500767680284,0.7422578768094935,0.0,82.18819035945118,0.12830974999815226 +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718 +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.12652212499961024 +12,372.64483941867917,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737 +13,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.12696266700004344 +14,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.12786899999991874 +15,371.62527511408564,0.7345692769550659,0.0,81.33685266647912,0.12698066699886112 +16,372.50411833108836,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274 +17,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.12873187500008498 +18,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.12741270800324855 +19,371.54369241577405,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037 +20,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.12696733299890184 +21,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.12635470900204382 +22,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.12778583299950697 +23,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187 +24,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782 +25,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.12784683300196775 +26,370.97105066312923,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306 +27,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.12663283300207695 +28,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.12735354200049187 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..286b579fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ac571ca32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d272acbf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..06f32a59b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6b17d5499 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..949bb230c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a55940f28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6a215f34c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..665eeefce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..56b29b884 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..75bd72d59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d9b0f5179 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3060042d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..148160e8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5ce21915d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e31e75dd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ea87f56f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7fdce53f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d82e34a9f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203 +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171 +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709 +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271 +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992 +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234 +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881 +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039 +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999 +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505 +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424 +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857 +12,4724.174633692797,2.151358301301202,0.0,707.7621818006551,0.69712887499918 +13,4713.35774514804,2.146432360841879,0.0,706.1416268401905,0.6955326669994975 +14,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828 +15,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863 +16,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767 +17,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978 +18,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894 +19,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856 +20,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611 +21,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634 +22,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011 +23,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656 +24,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471 +25,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497 +26,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462 +27,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372 +28,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194 +29,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..db09c5661 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.90417448019963,0.7311672810929373,0.0,80.96015894283615,0.12639258399940445 +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.12391474999822094 +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.12762195899995277 +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.12706229200193775 +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696 +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.12650924999979907 +6,372.74958639836956,0.7367916352887809,0.0,81.5829283437941,0.12736483300250256 +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.12270058300055098 +8,376.14691658370805,0.7435069330495576,0.0,82.32649495039648,0.12852566699802992 +9,375.51500767680284,0.7422578768094935,0.0,82.18819035945118,0.12830974999815226 +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718 +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.12652212499961024 +12,372.64483941867917,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737 +13,352.6584027037055,0.697078603727001,0.0,77.18561266722611,0.12049987499995041 +14,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.12696266700004344 +15,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.12786899999991874 +16,371.62527511408564,0.7345692769550659,0.0,81.33685266647912,0.12698066699886112 +17,372.50411833108836,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274 +18,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.12873187500008498 +19,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.12741270800324855 +20,371.54369241577405,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037 +21,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.12696733299890184 +22,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.12635470900204382 +23,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.12778583299950697 +24,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187 +25,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782 +26,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.12784683300196775 +27,370.97105066312923,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306 +28,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.12663283300207695 +29,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.12735354200049187 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..14daeb730 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d9bd248e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3feebbf88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c31af4350 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f1139c0ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7c285e336 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5a92fc6cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..604745c6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ebf0d7d71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..04a9c4edf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b8d02f340 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0ade2c62f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cc2cc752c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..945c60981 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b0e01ffb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..37be8846b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f9361ff8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ed64cfdab --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4233.7459268513485,1.8343208499560766,0.0,671.7282952539152,0.6684168749998207 +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618 +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474 +3,4217.2807193634335,1.8271871026987399,0.0,669.1159170082785,0.6658173750001879 +4,4233.164257526582,1.8340688347929954,0.0,671.6360073011949,0.6683250419991964 +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054 +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184 +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005 +8,4236.48775285413,1.8355087787290234,0.0,672.1633147705684,0.6688497499999357 +9,4259.023032178145,1.8452724569085421,0.0,675.7387737199081,0.6724075830024958 +10,4220.165585871843,1.8284370054744719,0.0,669.5736314047516,0.6662728330011305 +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739 +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104 +13,4233.0040582703405,1.8339994265571333,0.0,671.6105900052222,0.668299750002916 +14,4226.978850104824,1.8313889333545919,0.0,670.6546273944516,0.667348500002845 +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113 +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328 +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272 +18,4233.944921816377,1.8344070668948573,0.0,671.7598678968967,0.6684482919990842 +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066 +20,4249.650576202317,1.8412117287239054,0.0,674.2517350586942,0.670927874998597 +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719 +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693 +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316 +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798 +25,4220.752005679336,1.8286910788407762,0.0,669.6666730714923,0.6663654160001897 +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681 +27,4221.91720018277,1.8291959132377453,0.0,669.8515434276624,0.6665493750006135 +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876 +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..33f25292a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.12751945899799466 +1,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944 +2,365.15527192647676,1.1348518505941692,0.0,79.53976352840897,0.12661820799985435 +3,368.1911850271189,1.1442870467021977,0.0,80.20105977327462,0.1276709160010796 +4,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.12738491599884583 +5,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688 +6,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.12507033300062176 +7,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.12850712499857764 +8,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042 +9,362.37939217285157,1.1262248019997214,0.0,78.93510891662754,0.12565566700141062 +10,367.18182008164734,1.1411500806925055,0.0,79.98119536147766,0.12732091699945158 +11,368.02740499563134,1.1437780411198781,0.0,80.16538447025499,0.12761412499821745 +12,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.12753583300218452 +13,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604 +14,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.12688087499918765 +15,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.12667504199998803 +16,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412 +17,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.12921504100086167 +18,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.12705704200197943 +19,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.12632320799821173 +20,363.19974289841315,1.128774338075507,0.0,79.11380140099804,0.12594012500267127 +21,367.0620167726892,1.1407777486536959,0.0,79.95509926593404,0.12727937499948894 +22,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.12811391599825583 +23,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.12957312499929685 +24,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.12700904199664365 +25,364.50134865037404,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141 +26,363.1987825501328,1.1287713534464823,0.0,79.11359221361668,0.12593979200028116 +27,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.12707366700124112 +28,365.77963802528427,1.1367922936800425,0.0,79.6757657599865,0.12683470800038776 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b7db7d5d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5fc1347e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a1159b21d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..169b04984 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..67332a915 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..846a94061 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..279d6fc25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a9e63713c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..558b541e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e456d7d6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a6c7f4c47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0b5e3c1ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..00bc263b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..77585f980 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..feacde20c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bf36edbb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..375a804b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ed64cfdab --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4233.7459268513485,1.8343208499560766,0.0,671.7282952539152,0.6684168749998207 +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618 +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474 +3,4217.2807193634335,1.8271871026987399,0.0,669.1159170082785,0.6658173750001879 +4,4233.164257526582,1.8340688347929954,0.0,671.6360073011949,0.6683250419991964 +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054 +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184 +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005 +8,4236.48775285413,1.8355087787290234,0.0,672.1633147705684,0.6688497499999357 +9,4259.023032178145,1.8452724569085421,0.0,675.7387737199081,0.6724075830024958 +10,4220.165585871843,1.8284370054744719,0.0,669.5736314047516,0.6662728330011305 +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739 +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104 +13,4233.0040582703405,1.8339994265571333,0.0,671.6105900052222,0.668299750002916 +14,4226.978850104824,1.8313889333545919,0.0,670.6546273944516,0.667348500002845 +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113 +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328 +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272 +18,4233.944921816377,1.8344070668948573,0.0,671.7598678968967,0.6684482919990842 +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066 +20,4249.650576202317,1.8412117287239054,0.0,674.2517350586942,0.670927874998597 +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719 +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693 +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316 +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798 +25,4220.752005679336,1.8286910788407762,0.0,669.6666730714923,0.6663654160001897 +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681 +27,4221.91720018277,1.8291959132377453,0.0,669.8515434276624,0.6665493750006135 +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876 +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..91476fda0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,305.3505916825048,0.9489872136384975,0.0,66.5128391206041,0.10588083399852621 +1,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.12751945899799466 +2,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944 +3,365.15527192647676,1.1348518505941692,0.0,79.53976352840897,0.12661820799985435 +4,368.1911850271189,1.1442870467021977,0.0,80.20105977327462,0.1276709160010796 +5,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.12738491599884583 +6,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688 +7,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.12507033300062176 +8,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.12850712499857764 +9,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042 +10,362.37939217285157,1.1262248019997214,0.0,78.93510891662754,0.12565566700141062 +11,367.18182008164734,1.1411500806925055,0.0,79.98119536147766,0.12732091699945158 +12,368.02740499563134,1.1437780411198781,0.0,80.16538447025499,0.12761412499821745 +13,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.12753583300218452 +14,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604 +15,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.12688087499918765 +16,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.12667504199998803 +17,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412 +18,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.12921504100086167 +19,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.12705704200197943 +20,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.12632320799821173 +21,363.19974289841315,1.128774338075507,0.0,79.11380140099804,0.12594012500267127 +22,367.0620167726892,1.1407777486536959,0.0,79.95509926593404,0.12727937499948894 +23,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.12811391599825583 +24,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.12957312499929685 +25,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.12700904199664365 +26,364.50134865037404,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141 +27,363.1987825501328,1.1287713534464823,0.0,79.11359221361668,0.12593979200028116 +28,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.12707366700124112 +29,365.77963802528427,1.1367922936800425,0.0,79.6757657599865,0.12683470800038776 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f48993656 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a3a9897ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..dd92fbcc2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..025b4117a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..98a328407 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6cd07a445 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..599e85b07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e7fd95697 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..960a03b30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f854055f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c6c58af3b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..897abc49c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4032279f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0ab40b1c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1a3f99c2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0232228ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8e0339434 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e95e3cd45 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636 +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234 +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285 +3,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504 +4,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946 +5,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274 +6,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965 +7,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027 +8,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538 +9,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695 +10,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498 +11,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783 +12,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614 +13,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265 +14,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494 +15,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688 +16,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763 +17,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674 +18,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219 +19,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243 +20,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514 +21,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831 +22,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491 +23,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778 +24,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625 +25,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292 +26,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944 +27,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629 +28,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..83bbc3c38 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.12726245800149627 +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.12692491599955247 +2,367.4705435091116,0.43396775668772264,0.0,80.11712431157956,0.12696250000226428 +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.12637091699798475 +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.12709125000037602 +5,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.12665983399710967 +6,367.1217775287856,0.43355587825892195,0.0,80.04108521703175,0.1268420000014885 +7,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.12994516699836822 +8,370.55613254945854,0.43761171176807423,0.0,80.78985448025985,0.128028582999832 +9,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.12677458399775787 +10,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448 +11,364.35685346744197,0.4302906154684544,0.0,79.43826747109927,0.125886707999598 +12,366.21742300664187,0.43248787237339614,0.0,79.8439148997039,0.12652954200166278 +13,367.6326256151,0.43415916905853014,0.0,80.15246198003634,0.1270184999993944 +14,367.63057643996024,0.43415674906608676,0.0,80.15201521220062,0.12701779200142482 +15,368.71896362732775,0.43544209003954043,0.0,80.3893089303767,0.12739383400185034 +16,367.2385171663555,0.43369374301986025,0.0,80.06653717289728,0.1268823339996743 +17,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.12658195900075953 +18,367.51130426059996,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143 +19,368.5741258840442,0.43527104255928184,0.0,80.35773093402126,0.12734379199901014 +20,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212 +21,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.12679454200042528 +22,368.75055805987637,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056 +23,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.12742720900132554 +24,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.12735820899979444 +25,357.5469937001284,0.42224844822871266,0.0,77.95355967299311,0.12353387500115787 +26,367.53795807863906,0.43404737055071835,0.0,80.13182225551724,0.12698579199786764 +27,363.36880378758116,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172 +28,366.4730872800551,0.43278980147535573,0.0,79.89965565698876,0.12661787500110222 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e9919ec96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d96807cab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..76ac46fee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f3a49c837 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8fbc5737a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..afb83cb18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b31f42bcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..94b9311e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..16bbe15d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..43a07603a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4248234bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..31a4380f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c93daa8ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7311c8f73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e853ce3ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3f1b82371 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..665839540 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a76d771f1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636 +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234 +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285 +3,4361.984865902042,2.435313583419511,0.0,683.8834075438763,0.6773193749977509 +4,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504 +5,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946 +6,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274 +7,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965 +8,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027 +9,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538 +10,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695 +11,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498 +12,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783 +13,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614 +14,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265 +15,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494 +16,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688 +17,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763 +18,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674 +19,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219 +20,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243 +21,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514 +22,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831 +23,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491 +24,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778 +25,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625 +26,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292 +27,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944 +28,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629 +29,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..04087df69 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.12726245800149627 +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.12692491599955247 +2,367.4705435091116,0.43396775668772264,0.0,80.11712431157956,0.12696250000226428 +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.12637091699798475 +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.12709125000037602 +5,353.7846134202577,0.41780523023831306,0.0,77.13327327476549,0.1222339580017433 +6,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.12665983399710967 +7,367.1217775287856,0.43355587825892195,0.0,80.04108521703175,0.1268420000014885 +8,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.12994516699836822 +9,370.55613254945854,0.43761171176807423,0.0,80.78985448025985,0.128028582999832 +10,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.12677458399775787 +11,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448 +12,364.35685346744197,0.4302906154684544,0.0,79.43826747109927,0.125886707999598 +13,366.21742300664187,0.43248787237339614,0.0,79.8439148997039,0.12652954200166278 +14,367.6326256151,0.43415916905853014,0.0,80.15246198003634,0.1270184999993944 +15,367.63057643996024,0.43415674906608676,0.0,80.15201521220062,0.12701779200142482 +16,368.71896362732775,0.43544209003954043,0.0,80.3893089303767,0.12739383400185034 +17,367.2385171663555,0.43369374301986025,0.0,80.06653717289728,0.1268823339996743 +18,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.12658195900075953 +19,367.51130426059996,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143 +20,368.5741258840442,0.43527104255928184,0.0,80.35773093402126,0.12734379199901014 +21,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212 +22,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.12679454200042528 +23,368.75055805987637,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056 +24,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.12742720900132554 +25,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.12735820899979444 +26,357.5469937001284,0.42224844822871266,0.0,77.95355967299311,0.12353387500115787 +27,367.53795807863906,0.43404737055071835,0.0,80.13182225551724,0.12698579199786764 +28,363.36880378758116,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172 +29,366.4730872800551,0.43278980147535573,0.0,79.89965565698876,0.12661787500110222 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7363d33a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6c2c7e4a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d89610a5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fe3f270d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b2fb39728 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..22b6a0753 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6f2205e53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..796e07c6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..40f6fdcf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..01410a8fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4d647867c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..abac7822a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..38b3fe1ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7f7f71ff2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..693129138 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..307a24bc2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d9d7e7e5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..0fda3b36c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4220.528551913251,1.8985583643147874,0.0,669.9579463127654,0.6673571669998637 +1,4206.953299792034,1.8924516864081218,0.0,667.8030389546134,0.6652106250003271 +2,4215.018030714928,1.8960795169419697,0.0,669.0832176100137,0.6664858339972852 +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112 +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162 +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398 +6,4233.671377624534,1.9044705199554774,0.0,672.0442111997277,0.6694353329985461 +7,4228.464944991696,1.9021284634803861,0.0,671.217752884991,0.6686120829981519 +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751 +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449 +10,4221.611053511575,1.8990453157566747,0.0,670.1297803706974,0.6675283339973248 +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534 +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175 +13,4230.499504402044,1.9030436876611254,0.0,671.54071462484,0.6689337909992901 +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926 +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654 +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086 +17,4230.842860190899,1.9031981424875406,0.0,671.5952182104279,0.6689880830017501 +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248 +19,4227.523423400034,1.9017049303444182,0.0,671.0682977008356,0.6684632079995936 +20,4219.778073043047,1.8982207696465503,0.0,669.8388168538721,0.6672385000019858 +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676 +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166 +23,4221.082448049655,1.8988075284016535,0.0,670.0458706363308,0.6674447500008682 +24,4206.322456585602,1.8921679085278373,0.0,667.7029002127881,0.665110874997481 +25,4242.370638791378,1.9083837869428986,0.0,673.4251138696396,0.670810874999006 +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935 +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882 +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524 +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..bbdb63d24 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612 +1,383.59709143073366,0.0,0.0,82.02532419427872,0.12965495900061796 +2,366.3914775833742,0.0,0.0,78.34621378046563,0.12383950000003097 +3,374.1168748582736,0.0,0.0,79.99815074807854,0.12645066700133611 +4,367.66885289590334,0.0,0.0,78.61935746812284,0.12427124999885564 +5,383.91181244430237,0.0,0.0,82.09262161061848,0.12976133399934042 +6,375.5611654777607,0.0,0.0,80.30698626571066,0.12693883400061168 +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152005 +8,374.86182356292346,0.0,0.0,80.1574446018956,0.12670245799745317 +9,377.0421871072083,0.0,0.0,80.62367604779706,0.12743941599910613 +10,375.67655085263283,0.0,0.0,80.33165934846492,0.12697783399926266 +11,375.1464674630339,0.0,0.0,80.21831056962074,0.12679866699909326 +12,378.4867262518033,0.0,0.0,80.93256470804418,0.12792766699931235 +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779 +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733 +15,375.68382309122796,0.0,0.0,80.33321438561643,0.12698029199964367 +16,373.6414012930972,0.0,0.0,79.8964792959204,0.12628995799968834 +17,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284 +18,383.49859372980546,0.0,0.0,82.00426223622037,0.12962166699799127 +19,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624 +20,374.5009986985629,0.0,0.0,80.08028870802231,0.12658050000027288 +21,332.15382500117937,0.0,0.0,71.02510886220082,0.11226724999869475 +22,381.9548202102259,0.0,0.0,81.67415409344545,0.12909987500097486 +23,370.0998334750992,0.0,0.0,79.13917884991385,0.12509291599781136 +24,377.0426841466608,0.0,0.0,80.62378233072553,0.12743958399732946 +25,378.23080739815214,0.0,0.0,80.87784107377504,0.12784116699913284 +26,377.1951733191553,0.0,0.0,80.65638939185659,0.12749112499659532 +27,374.3644119900847,0.0,0.0,80.05108210220116,0.12653433399827918 +28,379.98685748159807,0.0,0.0,81.25334073374067,0.12843470799998613 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a211450c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d2dc47aef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1f640f55e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8613338e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8e680e983 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f27cc28b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7f210e889 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..92b2589a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6c8633a36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0851f03b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..569a6608c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..59b1b845e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..56cc947f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e51df561d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5b13c01fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..faaadf84f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d510c5f87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..0fda3b36c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4220.528551913251,1.8985583643147874,0.0,669.9579463127654,0.6673571669998637 +1,4206.953299792034,1.8924516864081218,0.0,667.8030389546134,0.6652106250003271 +2,4215.018030714928,1.8960795169419697,0.0,669.0832176100137,0.6664858339972852 +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112 +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162 +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398 +6,4233.671377624534,1.9044705199554774,0.0,672.0442111997277,0.6694353329985461 +7,4228.464944991696,1.9021284634803861,0.0,671.217752884991,0.6686120829981519 +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751 +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449 +10,4221.611053511575,1.8990453157566747,0.0,670.1297803706974,0.6675283339973248 +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534 +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175 +13,4230.499504402044,1.9030436876611254,0.0,671.54071462484,0.6689337909992901 +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926 +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654 +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086 +17,4230.842860190899,1.9031981424875406,0.0,671.5952182104279,0.6689880830017501 +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248 +19,4227.523423400034,1.9017049303444182,0.0,671.0682977008356,0.6684632079995936 +20,4219.778073043047,1.8982207696465503,0.0,669.8388168538721,0.6672385000019858 +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676 +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166 +23,4221.082448049655,1.8988075284016535,0.0,670.0458706363308,0.6674447500008682 +24,4206.322456585602,1.8921679085278373,0.0,667.7029002127881,0.665110874997481 +25,4242.370638791378,1.9083837869428986,0.0,673.4251138696396,0.670810874999006 +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935 +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882 +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524 +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6d45d5807 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612 +1,383.59709143073366,0.0,0.0,82.02532419427872,0.12965495900061796 +2,366.3914775833742,0.0,0.0,78.34621378046563,0.12383950000003097 +3,374.1168748582736,0.0,0.0,79.99815074807854,0.12645066700133611 +4,367.66885289590334,0.0,0.0,78.61935746812284,0.12427124999885564 +5,383.91181244430237,0.0,0.0,82.09262161061848,0.12976133399934042 +6,375.5611654777607,0.0,0.0,80.30698626571066,0.12693883400061168 +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152005 +8,374.86182356292346,0.0,0.0,80.1574446018956,0.12670245799745317 +9,377.0421871072083,0.0,0.0,80.62367604779706,0.12743941599910613 +10,375.67655085263283,0.0,0.0,80.33165934846492,0.12697783399926266 +11,375.1464674630339,0.0,0.0,80.21831056962074,0.12679866699909326 +12,378.4867262518033,0.0,0.0,80.93256470804418,0.12792766699931235 +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779 +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733 +15,375.68382309122796,0.0,0.0,80.33321438561643,0.12698029199964367 +16,373.6414012930972,0.0,0.0,79.8964792959204,0.12628995799968834 +17,314.9850723569249,0.0,0.0,67.3538805522994,0.1064642500023183 +18,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284 +19,383.49859372980546,0.0,0.0,82.00426223622037,0.12962166699799127 +20,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624 +21,374.5009986985629,0.0,0.0,80.08028870802231,0.12658050000027288 +22,332.15382500117937,0.0,0.0,71.02510886220082,0.11226724999869475 +23,381.9548202102259,0.0,0.0,81.67415409344545,0.12909987500097486 +24,370.0998334750992,0.0,0.0,79.13917884991385,0.12509291599781136 +25,377.0426841466608,0.0,0.0,80.62378233072553,0.12743958399732946 +26,378.23080739815214,0.0,0.0,80.87784107377504,0.12784116699913284 +27,377.1951733191553,0.0,0.0,80.65638939185659,0.12749112499659532 +28,374.3644119900847,0.0,0.0,80.05108210220116,0.12653433399827918 +29,379.98685748159807,0.0,0.0,81.25334073374067,0.12843470799998613 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3b13f9298 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2557bcbbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ffa0dc76e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d5ea042e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5b4878912 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d4dc4351c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bca4baf7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..92b2589a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f8062eaa5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9c1a3c474 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c37dca921 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3f130d0b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8020617d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..25866b7f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cf7aa5920 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..faaadf84f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e29dea43c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4b056e045 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055 +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373 +2,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072 +3,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403 +4,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909 +5,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192 +6,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766 +7,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976 +8,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494 +9,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305 +10,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639 +11,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842 +12,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747 +13,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965 +14,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545 +15,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915 +16,4227.847230305918,1.6290232386706873,0.0,669.462060349217,0.6648805420009012 +17,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213 +18,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505 +19,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857 +20,4215.308450834855,1.6241919469919077,0.0,667.4765966648173,0.6629086659995664 +21,4231.468303978479,1.6304184672208715,0.0,670.0354423352385,0.6654500000004191 +22,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565 +23,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735 +24,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721 +25,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212 +26,4228.263999257775,1.6291838230699687,0.0,669.5280539828562,0.6649460840017127 +27,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414 +28,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..30d96a9e5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.12831587500113528 +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.12819862499964074 +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687 +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156 +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992 +5,365.65551205651843,0.8698118310585068,0.0,85.27501374492822,0.12654729099813267 +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.12675779200071702 +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424 +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.12662379199900897 +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.12680279099731706 +10,366.24123509404404,0.8712051338010197,0.0,85.41161100226151,0.12674999999944703 +11,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.12597495799855096 +12,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.12827450000258978 +13,365.43470976824636,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312 +14,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.12608479099799297 +15,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.12711654199665645 +16,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071 +17,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.12729645799845457 +18,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.12789891700231237 +19,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.12529037500280538 +20,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.12905191599929822 +21,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.12727983399963705 +22,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.12600458299857564 +23,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.12858616700032144 +24,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498 +25,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.12421974999961094 +26,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.12801662499987287 +27,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.12993670899959398 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6a55c0437 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c5dbd2015 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..938fcb778 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0232ef6c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c4f1c0e2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b1cbb1597 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7acdf2c6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1b5a04b65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9b5cbecae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ef60eb830 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c10fd3e50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6eb68af95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7ed521042 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..96116bebd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2402fd4b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f7762330f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9308e84dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..98984ab45 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055 +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373 +2,4316.2545227606615,1.6630872731619033,0.0,683.460988156352,0.678783667000971 +3,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072 +4,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403 +5,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909 +6,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192 +7,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766 +8,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976 +9,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494 +10,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305 +11,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639 +12,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842 +13,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747 +14,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965 +15,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545 +16,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915 +17,4227.847230305918,1.6290232386706873,0.0,669.462060349217,0.6648805420009012 +18,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213 +19,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505 +20,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857 +21,4215.308450834855,1.6241919469919077,0.0,667.4765966648173,0.6629086659995664 +22,4231.468303978479,1.6304184672208715,0.0,670.0354423352385,0.6654500000004191 +23,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565 +24,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735 +25,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721 +26,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212 +27,4228.263999257775,1.6291838230699687,0.0,669.5280539828562,0.6649460840017127 +28,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414 +29,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8c2d1d405 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.12831587500113528 +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.12819862499964074 +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687 +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156 +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992 +5,365.65551205651843,0.8698118310585068,0.0,85.27501374492822,0.12654729099813267 +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.12675779200071702 +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424 +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.12662379199900897 +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.12680279099731706 +10,366.24123509404404,0.8712051338010197,0.0,85.41161100226151,0.12674999999944703 +11,324.8559755248956,0.7727589536731277,0.0,75.76009895818471,0.11242724999829079 +12,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.12597495799855096 +13,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.12827450000258978 +14,326.7121034467617,0.7771742625449043,0.0,76.19296904719081,0.11306962500020745 +15,365.43470976824636,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312 +16,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.12608479099799297 +17,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.12711654199665645 +18,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071 +19,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.12729645799845457 +20,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.12789891700231237 +21,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.12529037500280538 +22,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.12905191599929822 +23,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.12727983399963705 +24,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.12600458299857564 +25,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.12858616700032144 +26,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498 +27,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.12421974999961094 +28,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.12801662499987287 +29,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.12993670899959398 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..25edd5890 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4008cd271 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0513beaeb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ba1bb49c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0b567b322 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4f20758bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..844ab0c92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bbffe8e44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b31e50fa2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5c902ff62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cc1865a19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8405adf21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1620171ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..534c0728a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..674ef1d01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c9603dcaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6c24a31fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..be43d4cbe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385 +1,4235.03031838744,2.4997424438004314,0.0,671.8641090950546,0.6674069170003349 +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319 +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128 +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237 +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381 +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611 +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384 +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259 +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215 +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887 +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787 +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297 +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471 +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294 +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329 +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508 +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221 +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391 +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437 +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421 +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773 +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718 +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409 +24,4223.243286387955,2.4927851041923486,0.0,669.9941617374582,0.6655493750004098 +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896 +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204 +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584 +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693 +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..163fdb283 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.7851773109551,0.0,0.0,80.6080421172184,0.12693975000001956 +1,374.92032490521166,0.0,0.0,81.72743310137321,0.12870254199879128 +2,370.56236276808175,0.0,0.0,80.7774577723199,0.12720654200165882 +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313 +4,367.7597386710104,0.0,0.0,80.16652457348731,0.12624445800247486 +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078 +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382 +7,368.1525174790658,0.0,0.0,80.25214490833339,0.12637929099946632 +8,368.5888759246009,0.0,0.0,80.34726499998142,0.12652908400195884 +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434 +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949 +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178 +12,371.52986822542886,0.0,0.0,80.98836054895796,0.12753866699858918 +13,323.38193430333433,0.0,0.0,70.49277845539667,0.11101045800023712 +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533 +15,370.7117773569245,0.0,0.0,80.81002808127047,0.12725783299902105 +16,366.30344520570907,0.0,0.0,79.8490727874539,0.12574454199784668 +17,369.4200698015571,0.0,0.0,80.52845374185712,0.12681441599852405 +18,370.49609027570733,0.0,0.0,80.76301128775451,0.1271837919994141 +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574 +20,373.687726585192,0.0,0.0,81.45874375580162,0.12827941599971382 +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511 +22,371.68098115026265,0.0,0.0,81.02130107160961,0.12759054100024514 +23,370.30334076110285,0.0,0.0,80.72099456576393,0.12711762500111945 +24,369.25851641569744,0.0,0.0,80.49323734344371,0.12675895799839054 +25,370.04164746358737,0.0,0.0,80.66394905490458,0.12702779100072803 +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348 +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206 +28,366.14965808656615,0.0,0.0,79.8155493275167,0.12569174999953248 +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cc22a05b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..648eb02d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b6398650d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..21cbfb3d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..729969435 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ff30e6157 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fece4be9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..71aa63bd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1beb68935 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4c9f9e486 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b8848bb9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4219a64fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5f45968e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6c20d05c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..16042b0e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..27817de41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..479298328 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..be43d4cbe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385 +1,4235.03031838744,2.4997424438004314,0.0,671.8641090950546,0.6674069170003349 +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319 +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128 +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237 +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381 +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611 +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384 +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259 +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215 +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887 +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787 +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297 +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471 +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294 +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329 +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508 +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221 +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391 +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437 +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421 +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773 +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718 +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409 +24,4223.243286387955,2.4927851041923486,0.0,669.9941617374582,0.6655493750004098 +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896 +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204 +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584 +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693 +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..163fdb283 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.7851773109551,0.0,0.0,80.6080421172184,0.12693975000001956 +1,374.92032490521166,0.0,0.0,81.72743310137321,0.12870254199879128 +2,370.56236276808175,0.0,0.0,80.7774577723199,0.12720654200165882 +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313 +4,367.7597386710104,0.0,0.0,80.16652457348731,0.12624445800247486 +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078 +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382 +7,368.1525174790658,0.0,0.0,80.25214490833339,0.12637929099946632 +8,368.5888759246009,0.0,0.0,80.34726499998142,0.12652908400195884 +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434 +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949 +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178 +12,371.52986822542886,0.0,0.0,80.98836054895796,0.12753866699858918 +13,323.38193430333433,0.0,0.0,70.49277845539667,0.11101045800023712 +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533 +15,370.7117773569245,0.0,0.0,80.81002808127047,0.12725783299902105 +16,366.30344520570907,0.0,0.0,79.8490727874539,0.12574454199784668 +17,369.4200698015571,0.0,0.0,80.52845374185712,0.12681441599852405 +18,370.49609027570733,0.0,0.0,80.76301128775451,0.1271837919994141 +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574 +20,373.687726585192,0.0,0.0,81.45874375580162,0.12827941599971382 +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511 +22,371.68098115026265,0.0,0.0,81.02130107160961,0.12759054100024514 +23,370.30334076110285,0.0,0.0,80.72099456576393,0.12711762500111945 +24,369.25851641569744,0.0,0.0,80.49323734344371,0.12675895799839054 +25,370.04164746358737,0.0,0.0,80.66394905490458,0.12702779100072803 +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348 +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206 +28,366.14965808656615,0.0,0.0,79.8155493275167,0.12569174999953248 +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cc22a05b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..648eb02d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b6398650d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..21cbfb3d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..729969435 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ff30e6157 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fece4be9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..71aa63bd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1beb68935 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4c9f9e486 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b8848bb9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4219a64fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5f45968e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6c20d05c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..16042b0e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..27817de41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..479298328 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a7018aaaa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437 +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811 +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996 +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752 +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475 +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028 +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979 +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447 +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314 +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629 +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477 +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285 +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075 +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229 +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999 +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096 +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847 +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059 +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166 +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332 +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261 +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364 +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932 +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939 +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151 +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543 +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614 +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847 +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008 +29,4236.218136169378,2.0991830998196486,0.0,670.8389420423648,0.6676307919988176 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..89d41258e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.4033142582579,0.0,0.0,82.61925110554331,0.13326045899884775 +1,362.55955683134994,0.0,0.0,78.5373329144196,0.12667654200049583 +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517 +3,364.84779423975084,0.0,0.0,79.0330088930131,0.12747604099786258 +4,344.4926161941541,0.0,0.0,74.62368809432583,0.12036404100217624 +5,363.3133567014207,0.0,0.0,78.70062038052308,0.12693991600099253 +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374 +7,363.50917225752414,0.0,0.0,78.74303777438224,0.12700833300186787 +8,364.41526388697804,0.0,0.0,78.93931454770832,0.12732491700080573 +9,362.471785151328,0.0,0.0,78.51831989014688,0.12664587500330526 +10,344.8277210316543,0.0,0.0,74.69627821004087,0.12048112499905983 +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794 +12,363.52276718039843,0.0,0.0,78.74598269464046,0.12701308300165692 +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383 +14,363.0369275435488,0.0,0.0,78.6407405390185,0.12684333300057915 +15,363.51000797351264,0.0,0.0,78.74321880644601,0.12700862499696086 +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366 +17,361.4334449521908,0.0,0.0,78.29339554775532,0.12628308399871457 +18,363.57273639099617,0.0,0.0,78.75680698117282,0.12703054200028419 +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433 +20,366.3633906583192,0.0,0.0,79.36131605868071,0.12800558299932163 +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325 +22,346.6831905324902,0.0,0.0,75.09820838441907,0.12112941699888324 +23,365.82126518573983,0.0,0.0,79.24388131473557,0.12781616700158338 +24,364.1797368434446,0.0,0.0,78.88829488630428,0.12724262499978067 +25,363.9925075577076,0.0,0.0,78.84773744279413,0.12717720799992094 +26,362.5031479127712,0.0,0.0,78.52511366399774,0.12665683299928787 +27,362.4386307071827,0.0,0.0,78.511138003562,0.12663429100211943 +28,363.69341924406274,0.0,0.0,78.78294919485816,0.12707270800092374 +29,367.1670423932719,0.0,0.0,79.53540239199062,0.12828637499842444 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..86f38b1c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..23b14ded6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..42061bdf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..83db85e9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d24942589 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ecb3ad779 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..94b63fd23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..64a796f02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..22b6b5300 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..42d519140 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..51eb3eec1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f778cf943 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a4e757881 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..681ef4195 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b69eef8cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..af29c0557 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7b598de52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a7018aaaa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437 +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811 +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996 +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752 +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475 +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028 +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979 +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447 +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314 +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629 +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477 +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285 +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075 +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229 +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999 +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096 +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847 +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059 +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166 +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332 +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261 +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364 +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932 +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939 +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151 +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543 +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614 +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847 +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008 +29,4236.218136169378,2.0991830998196486,0.0,670.8389420423648,0.6676307919988176 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..89d41258e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.4033142582579,0.0,0.0,82.61925110554331,0.13326045899884775 +1,362.55955683134994,0.0,0.0,78.5373329144196,0.12667654200049583 +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517 +3,364.84779423975084,0.0,0.0,79.0330088930131,0.12747604099786258 +4,344.4926161941541,0.0,0.0,74.62368809432583,0.12036404100217624 +5,363.3133567014207,0.0,0.0,78.70062038052308,0.12693991600099253 +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374 +7,363.50917225752414,0.0,0.0,78.74303777438224,0.12700833300186787 +8,364.41526388697804,0.0,0.0,78.93931454770832,0.12732491700080573 +9,362.471785151328,0.0,0.0,78.51831989014688,0.12664587500330526 +10,344.8277210316543,0.0,0.0,74.69627821004087,0.12048112499905983 +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794 +12,363.52276718039843,0.0,0.0,78.74598269464046,0.12701308300165692 +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383 +14,363.0369275435488,0.0,0.0,78.6407405390185,0.12684333300057915 +15,363.51000797351264,0.0,0.0,78.74321880644601,0.12700862499696086 +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366 +17,361.4334449521908,0.0,0.0,78.29339554775532,0.12628308399871457 +18,363.57273639099617,0.0,0.0,78.75680698117282,0.12703054200028419 +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433 +20,366.3633906583192,0.0,0.0,79.36131605868071,0.12800558299932163 +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325 +22,346.6831905324902,0.0,0.0,75.09820838441907,0.12112941699888324 +23,365.82126518573983,0.0,0.0,79.24388131473557,0.12781616700158338 +24,364.1797368434446,0.0,0.0,78.88829488630428,0.12724262499978067 +25,363.9925075577076,0.0,0.0,78.84773744279413,0.12717720799992094 +26,362.5031479127712,0.0,0.0,78.52511366399774,0.12665683299928787 +27,362.4386307071827,0.0,0.0,78.511138003562,0.12663429100211943 +28,363.69341924406274,0.0,0.0,78.78294919485816,0.12707270800092374 +29,367.1670423932719,0.0,0.0,79.53540239199062,0.12828637499842444 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..86f38b1c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..23b14ded6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..42061bdf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..83db85e9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d24942589 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ecb3ad779 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..94b63fd23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..64a796f02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..22b6b5300 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..42d519140 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..51eb3eec1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f778cf943 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a4e757881 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..681ef4195 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b69eef8cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..af29c0557 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7b598de52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c6110c0a5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4233.805184421818,2.8643699129950306,0.0,671.3616783283818,0.6663879580009962 +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342 +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766 +3,4232.574753845726,2.8635374683811046,0.0,671.1665668623015,0.6661942920000001 +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978 +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734 +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708 +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662 +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107 +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705 +10,4212.616188554973,2.8500345528157562,0.0,668.0017032686884,0.6630528750029043 +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905 +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128 +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049 +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436 +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658 +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247 +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384 +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947 +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966 +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179 +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067 +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647 +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332 +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924 +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472 +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219 +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785 +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212 +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..faf7d103f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,361.5172471330565,0.0,0.0,78.12605136820386,0.12618087499868125 +1,365.56714624354925,0.0,0.0,79.00125892317271,0.12759441700109164 +2,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753 +3,363.29860543222503,0.0,0.0,78.511013610226,0.12680262499998207 +4,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168 +5,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412 +6,361.57550264021995,0.0,0.0,78.13864073366628,0.1262012080005661 +7,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971 +8,363.87567957423045,0.0,0.0,78.63572280299373,0.12700404200222692 +9,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991 +10,364.5024111287863,0.0,0.0,78.77116326126676,0.12722279100125888 +11,363.39912073440485,0.0,0.0,78.53273557155335,0.1268377079977654 +12,362.13132653995166,0.0,0.0,78.25875762127396,0.12639520800075843 +13,364.4982367205501,0.0,0.0,78.77026114654089,0.12722133400166058 +14,360.4311471743661,0.0,0.0,77.89133863503122,0.12580179199721897 +15,362.40422461795254,0.0,0.0,78.31773253721299,0.12649045800208114 +16,361.2869669971778,0.0,0.0,78.0762864458733,0.12610049999784678 +17,363.55037360229466,0.0,0.0,78.56542222598009,0.12689049999971758 +18,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709 +19,363.6459953773748,0.0,0.0,78.58608666667018,0.12692387500283075 +20,366.4062541016947,0.0,0.0,79.18259517794013,0.12788729200110538 +21,362.061848555091,0.0,0.0,78.24374301088613,0.12637095800164388 +22,362.24270905991347,0.0,0.0,78.28282805372238,0.12643408399890177 +23,362.0681746289213,0.0,0.0,78.24511011348758,0.12637316600012127 +24,362.6975363200963,0.0,0.0,78.38111896010236,0.12659283299944946 +25,358.52527861331754,0.0,0.0,77.47946897657832,0.12513658400348504 +26,355.4742151019403,0.0,0.0,76.82011580184641,0.12407166699995287 +27,363.61639058594017,0.0,0.0,78.57968889318992,0.12691354200069327 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..eff81c391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c158bda3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..999b33a43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f1030ebaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8a70d0859 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c249feb85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f21cc36fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a6230633e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fc9cfe5e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d533e03ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..acbe6dc87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dc3fd5695 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c9190c553 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0aeccb0a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c3f38d50a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1bcd1e867 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ac5918133 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c6110c0a5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4233.805184421818,2.8643699129950306,0.0,671.3616783283818,0.6663879580009962 +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342 +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766 +3,4232.574753845726,2.8635374683811046,0.0,671.1665668623015,0.6661942920000001 +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978 +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734 +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708 +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662 +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107 +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705 +10,4212.616188554973,2.8500345528157562,0.0,668.0017032686884,0.6630528750029043 +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905 +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128 +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049 +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436 +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658 +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247 +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384 +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947 +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966 +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179 +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067 +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647 +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332 +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924 +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472 +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219 +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785 +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212 +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d5beba4b4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,317.8188162702387,0.0,0.0,68.6825576445368,0.110928750000312 +1,361.5172471330565,0.0,0.0,78.12605136820386,0.12618087499868125 +2,365.56714624354925,0.0,0.0,79.00125892317271,0.12759441700109164 +3,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753 +4,363.29860543222503,0.0,0.0,78.511013610226,0.12680262499998207 +5,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168 +6,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412 +7,361.57550264021995,0.0,0.0,78.13864073366628,0.1262012080005661 +8,320.61966160542903,0.0,0.0,69.28783716651473,0.1119063330006611 +9,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971 +10,363.87567957423045,0.0,0.0,78.63572280299373,0.12700404200222692 +11,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991 +12,364.5024111287863,0.0,0.0,78.77116326126676,0.12722279100125888 +13,363.39912073440485,0.0,0.0,78.53273557155335,0.1268377079977654 +14,362.13132653995166,0.0,0.0,78.25875762127396,0.12639520800075843 +15,364.4982367205501,0.0,0.0,78.77026114654089,0.12722133400166058 +16,360.4311471743661,0.0,0.0,77.89133863503122,0.12580179199721897 +17,362.40422461795254,0.0,0.0,78.31773253721299,0.12649045800208114 +18,361.2869669971778,0.0,0.0,78.0762864458733,0.12610049999784678 +19,363.55037360229466,0.0,0.0,78.56542222598009,0.12689049999971758 +20,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709 +21,363.6459953773748,0.0,0.0,78.58608666667018,0.12692387500283075 +22,366.4062541016947,0.0,0.0,79.18259517794013,0.12788729200110538 +23,362.061848555091,0.0,0.0,78.24374301088613,0.12637095800164388 +24,362.24270905991347,0.0,0.0,78.28282805372238,0.12643408399890177 +25,362.0681746289213,0.0,0.0,78.24511011348758,0.12637316600012127 +26,362.6975363200963,0.0,0.0,78.38111896010236,0.12659283299944946 +27,358.52527861331754,0.0,0.0,77.47946897657832,0.12513658400348504 +28,355.4742151019403,0.0,0.0,76.82011580184641,0.12407166699995287 +29,363.61639058594017,0.0,0.0,78.57968889318992,0.12691354200069327 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..86680fdb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6e73a4f67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9c4ea3fc4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c5d63d186 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5e973be93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4a04bf719 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..27e1a663f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a6230633e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a61be2774 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e5977d059 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f7adb8e33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ba51435f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8d96a6624 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..073dbde9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..bb4874473 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1bcd1e867 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..73be0a1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2fbfa52f1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4282.915524281316,1.9366110579895246,0.0,675.6769201633797,0.6687819170001603 +1,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549 +2,4262.6173435256915,1.9274328052115859,0.0,672.4746594183043,0.6656123339998885 +3,4282.052840567513,1.9362209772582502,0.0,675.540822341344,0.6686472080000385 +4,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313 +5,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988 +6,4289.356664180724,1.9395235559560458,0.0,676.6930806608025,0.6697877080005128 +7,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468 +8,4270.16291377157,1.9308446947747022,0.0,673.6650559217393,0.6667905829999654 +9,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788 +10,4291.628771306302,1.9405509373646646,0.0,677.051530491575,0.6701424999992014 +11,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963 +12,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255 +13,4277.141731638064,1.9340003152335519,0.0,674.766041018382,0.6678803329996299 +14,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693 +15,4245.205514749945,1.9195596776759714,0.0,669.7277523698441,0.6628934580003261 +16,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677 +17,4243.843590196685,1.9189438546145454,0.0,669.5128938272403,0.6626807920001738 +18,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941 +19,4297.038595942507,1.9429971042696295,0.0,677.904989689659,0.6709872499995981 +20,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116 +21,4266.908322293752,1.9293730622362018,0.0,673.1516084036514,0.6662823750011739 +22,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164 +23,4269.309579982598,1.9304588418101714,0.0,673.5304331529419,0.6666573340007744 +24,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687 +25,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072 +26,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284 +27,4260.173921548421,1.9263279601606642,0.0,672.0891827898483,0.6652307910007949 +28,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..188fd5d36 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,361.1273800704231,0.0,0.0,78.14745763956928,0.12681325000085053 +1,362.07910759150786,0.0,0.0,78.3534101378924,0.12714745800258243 +2,357.35440047061826,0.0,0.0,77.33099015545547,0.12548833300024853 +3,363.2426363907271,0.0,0.0,78.60519613520911,0.12755604199992376 +4,362.3479798378803,0.0,0.0,78.41159371422422,0.12724187500134576 +5,352.9112606909941,0.0,0.0,76.36950095004781,0.12392808299773606 +6,360.94382237042606,0.0,0.0,78.10773601120054,0.12674879200130817 +7,360.55380282733665,0.0,0.0,78.02333633007905,0.12661183299860568 +8,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646 +9,364.2208248292936,0.0,0.0,78.81687473889593,0.12789954199979547 +10,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028 +11,374.00840463719953,0.0,0.0,80.93489325713479,0.13133654199918965 +12,360.17292159439404,0.0,0.0,77.94091416643339,0.12647808299880126 +13,360.17102501617666,0.0,0.0,77.94050374957197,0.12647741699765902 +14,362.5744923942769,0.0,0.0,78.46061071316345,0.12732141699962085 +15,360.86337170818086,0.0,0.0,78.09032660092915,0.12672054100039531 +16,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175 +17,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644 +18,361.46791779675897,0.0,0.0,78.2211495250705,0.12693283300177427 +19,362.3516590767534,0.0,0.0,78.4123898963468,0.12724316700041527 +20,360.9834510950976,0.0,0.0,78.1163116115385,0.12676270799784106 +21,364.26057316947674,0.0,0.0,78.82547622386255,0.12791350000043167 +22,364.3102884882237,0.0,0.0,78.83623454898611,0.12793095799861476 +23,362.54803147679524,0.0,0.0,78.45488460779974,0.12731212500148104 +24,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774 +25,360.08998204684286,0.0,0.0,77.92296616487883,0.12644895800258382 +26,362.7770357881926,0.0,0.0,78.50444081902006,0.12739254200278083 +27,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133 +28,369.760449773745,0.0,0.0,80.0156417933386,0.12984483300169813 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e54e6d58d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c908c9218 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..41c56d207 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..de33e3758 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..523547253 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..43448e322 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2c1c910dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bc36176fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2e8a219bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2bc4c2458 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..32f9903c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..280b13123 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..043a12063 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ac252d48d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..483914f6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0d6de318c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..bb6b4f801 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9f3388b1e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4282.915524281316,1.9366110579895246,0.0,675.6769201633797,0.6687819170001603 +1,4391.654228983149,1.9857795687301991,0.0,692.8316440142122,0.6857615839981008 +2,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549 +3,4262.6173435256915,1.9274328052115859,0.0,672.4746594183043,0.6656123339998885 +4,4282.052840567513,1.9362209772582502,0.0,675.540822341344,0.6686472080000385 +5,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313 +6,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988 +7,4289.356664180724,1.9395235559560458,0.0,676.6930806608025,0.6697877080005128 +8,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468 +9,4270.16291377157,1.9308446947747022,0.0,673.6650559217393,0.6667905829999654 +10,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788 +11,4291.628771306302,1.9405509373646646,0.0,677.051530491575,0.6701424999992014 +12,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963 +13,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255 +14,4277.141731638064,1.9340003152335519,0.0,674.766041018382,0.6678803329996299 +15,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693 +16,4245.205514749945,1.9195596776759714,0.0,669.7277523698441,0.6628934580003261 +17,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677 +18,4243.843590196685,1.9189438546145454,0.0,669.5128938272403,0.6626807920001738 +19,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941 +20,4297.038595942507,1.9429971042696295,0.0,677.904989689659,0.6709872499995981 +21,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116 +22,4266.908322293752,1.9293730622362018,0.0,673.1516084036514,0.6662823750011739 +23,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164 +24,4269.309579982598,1.9304588418101714,0.0,673.5304331529419,0.6666573340007744 +25,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687 +26,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072 +27,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284 +28,4260.173921548421,1.9263279601606642,0.0,672.0891827898483,0.6652307910007949 +29,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..960d53138 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,361.1273800704231,0.0,0.0,78.14745763956928,0.12681325000085053 +1,362.07910759150786,0.0,0.0,78.3534101378924,0.12714745800258243 +2,315.9812070935933,0.0,0.0,68.37788924071934,0.11095974999989267 +3,357.35440047061826,0.0,0.0,77.33099015545547,0.12548833300024853 +4,363.2426363907271,0.0,0.0,78.60519613520911,0.12755604199992376 +5,362.3479798378803,0.0,0.0,78.41159371422422,0.12724187500134576 +6,352.9112606909941,0.0,0.0,76.36950095004781,0.12392808299773606 +7,360.94382237042606,0.0,0.0,78.10773601120054,0.12674879200130817 +8,360.55380282733665,0.0,0.0,78.02333633007905,0.12661183299860568 +9,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646 +10,364.2208248292936,0.0,0.0,78.81687473889593,0.12789954199979547 +11,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028 +12,374.00840463719953,0.0,0.0,80.93489325713479,0.13133654199918965 +13,360.17292159439404,0.0,0.0,77.94091416643339,0.12647808299880126 +14,360.17102501617666,0.0,0.0,77.94050374957197,0.12647741699765902 +15,362.5744923942769,0.0,0.0,78.46061071316345,0.12732141699962085 +16,360.86337170818086,0.0,0.0,78.09032660092915,0.12672054100039531 +17,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175 +18,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644 +19,361.46791779675897,0.0,0.0,78.2211495250705,0.12693283300177427 +20,362.3516590767534,0.0,0.0,78.4123898963468,0.12724316700041527 +21,360.9834510950976,0.0,0.0,78.1163116115385,0.12676270799784106 +22,364.26057316947674,0.0,0.0,78.82547622386255,0.12791350000043167 +23,364.3102884882237,0.0,0.0,78.83623454898611,0.12793095799861476 +24,362.54803147679524,0.0,0.0,78.45488460779974,0.12731212500148104 +25,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774 +26,360.08998204684286,0.0,0.0,77.92296616487883,0.12644895800258382 +27,362.7770357881926,0.0,0.0,78.50444081902006,0.12739254200278083 +28,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133 +29,369.760449773745,0.0,0.0,80.0156417933386,0.12984483300169813 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8f8638ea6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cbf6c55a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..462d50c4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..76fa8b9b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d600b0c9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a3a9c2c0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4e7f03083 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9fe4cda64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5daa53390 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..53dae1dc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e06ec29b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ab9880044 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f780547f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..037904c77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..734c68950 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..af9618feb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..aa58f8adc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b69fdb143 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697 +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935 +2,4294.070878255385,2.0084052656651554,0.0,675.7279516330415,0.6701891660013644 +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936 +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585 +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677 +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344 +7,4270.762102767754,1.9975033805419677,0.0,672.0600123833451,0.6665512920008041 +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336 +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748 +10,4261.827183417434,1.9933243766130042,0.0,670.6539865114453,0.6651567909975711 +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531 +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177 +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957 +14,4268.013923464058,1.9962180133598646,0.0,671.6275505949264,0.6661223750015779 +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092 +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146 +17,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839 +18,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792 +19,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211 +20,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756 +21,4251.740304272998,1.9886065827613941,0.0,669.0666847700711,0.6635825000012119 +22,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028 +23,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502 +24,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149 +25,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017 +26,4263.9447802230125,1.9943148103285762,0.0,670.9872179350494,0.6654872910003178 +27,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692 +28,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6f653b27a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,492.1706690195863,0.0,0.0,92.06965491809225,0.1276172920006502 +1,486.08444962833966,0.0,0.0,90.9311146628915,0.12603916700027185 +2,486.62068099010315,0.0,0.0,91.03142668784857,0.12617820900049992 +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815 +4,491.069285551624,0.0,0.0,91.86362070636285,0.12733170900173718 +5,491.66914718394423,0.0,0.0,91.97583595396455,0.12748724999983096 +6,489.3934208087073,0.0,0.0,91.55011911376063,0.12689716599925305 +7,484.9412836048319,0.0,0.0,90.71726424895256,0.12574275000224588 +8,489.216660608546,0.0,0.0,91.5170528388757,0.12685133299964946 +9,486.77108895533576,0.0,0.0,91.05956328827517,0.12621720900278888 +10,481.332938877034,0.0,0.0,90.04225642173755,0.12480712500109803 +11,494.5105077458341,0.0,0.0,92.50736516303382,0.12822400000004563 +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553 +13,482.32457080883734,0.0,0.0,90.22775957240023,0.12506424999810406 +14,487.23500493783496,0.0,0.0,91.14634737986839,0.1263375000016822 +15,490.88593053013517,0.0,0.0,91.82932074779441,0.12728416599929915 +16,492.7372712254749,0.0,0.0,92.17564837291538,0.12776420900263474 +17,491.31883549484917,0.0,0.0,91.91030365316125,0.127396416002739 +18,487.494200264288,0.0,0.0,91.19483467455105,0.12640470800033654 +19,491.90504470972667,0.0,0.0,92.01996496278599,0.1275484170000709 +20,489.6739895004024,0.0,0.0,91.6026046929534,0.12696991600023466 +21,497.94691303592106,0.0,0.0,93.1502085284202,0.12911504200019408 +22,489.38040860701557,0.0,0.0,91.54768494001787,0.12689379200310213 +23,489.13647389090073,0.0,0.0,91.50205242563018,0.12683054100125446 +24,488.2921993203388,0.0,0.0,91.34411520331948,0.12661162500080536 +25,488.2168333511135,0.0,0.0,91.33001660050562,0.12659208299737656 +26,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081 +27,480.867734774439,0.0,0.0,89.95523136338183,0.12468649999937043 +28,492.06428817424865,0.0,0.0,92.04975440728033,0.12758970800132374 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..dd0995bdc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3f77bbd01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4fc041512 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..16f01a3b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..80f7509ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8f600dc65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5559e8041 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..01653d923 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..155f7b057 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0b741fd08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1af016a7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f88c22d77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c9903bd57 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..af66d972e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0110e0408 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2b701035d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6ac5b0951 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..bf8230744 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697 +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935 +2,4294.070878255385,2.0084052656651554,0.0,675.7279516330415,0.6701891660013644 +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936 +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585 +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677 +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344 +7,4270.762102767754,1.9975033805419677,0.0,672.0600123833451,0.6665512920008041 +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336 +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748 +10,4261.827183417434,1.9933243766130042,0.0,670.6539865114453,0.6651567909975711 +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531 +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177 +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957 +14,4268.013923464058,1.9962180133598646,0.0,671.6275505949264,0.6661223750015779 +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092 +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146 +17,4363.564209013365,2.0409084020548467,0.0,686.6636318713531,0.6810352089996741 +18,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839 +19,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792 +20,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211 +21,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756 +22,4251.740304272998,1.9886065827613941,0.0,669.0666847700711,0.6635825000012119 +23,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028 +24,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502 +25,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149 +26,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017 +27,4263.9447802230125,1.9943148103285762,0.0,670.9872179350494,0.6654872910003178 +28,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692 +29,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c5e1c2d85 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,492.1706690195863,0.0,0.0,92.06965491809225,0.1276172920006502 +1,486.08444962833966,0.0,0.0,90.9311146628915,0.12603916700027185 +2,486.62068099010315,0.0,0.0,91.03142668784857,0.12617820900049992 +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815 +4,491.069285551624,0.0,0.0,91.86362070636285,0.12733170900173718 +5,491.66914718394423,0.0,0.0,91.97583595396455,0.12748724999983096 +6,489.3934208087073,0.0,0.0,91.55011911376063,0.12689716599925305 +7,484.9412836048319,0.0,0.0,90.71726424895256,0.12574275000224588 +8,489.216660608546,0.0,0.0,91.5170528388757,0.12685133299964946 +9,486.77108895533576,0.0,0.0,91.05956328827517,0.12621720900278888 +10,481.332938877034,0.0,0.0,90.04225642173755,0.12480712500109803 +11,494.5105077458341,0.0,0.0,92.50736516303382,0.12822400000004563 +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553 +13,431.91926254013924,0.0,0.0,80.79851148741447,0.11199441599819693 +14,482.32457080883734,0.0,0.0,90.22775957240023,0.12506424999810406 +15,487.23500493783496,0.0,0.0,91.14634737986839,0.1263375000016822 +16,490.88593053013517,0.0,0.0,91.82932074779441,0.12728416599929915 +17,492.7372712254749,0.0,0.0,92.17564837291538,0.12776420900263474 +18,491.31883549484917,0.0,0.0,91.91030365316125,0.127396416002739 +19,487.494200264288,0.0,0.0,91.19483467455105,0.12640470800033654 +20,491.90504470972667,0.0,0.0,92.01996496278599,0.1275484170000709 +21,489.6739895004024,0.0,0.0,91.6026046929534,0.12696991600023466 +22,497.94691303592106,0.0,0.0,93.1502085284202,0.12911504200019408 +23,489.38040860701557,0.0,0.0,91.54768494001787,0.12689379200310213 +24,489.13647389090073,0.0,0.0,91.50205242563018,0.12683054100125446 +25,488.2921993203388,0.0,0.0,91.34411520331948,0.12661162500080536 +26,488.2168333511135,0.0,0.0,91.33001660050562,0.12659208299737656 +27,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081 +28,480.867734774439,0.0,0.0,89.95523136338183,0.12468649999937043 +29,492.06428817424865,0.0,0.0,92.04975440728033,0.12758970800132374 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4eb803922 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..aa53237c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8205437b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b18ca6817 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..31aad801f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c0a7f85e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2927370c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..18987af29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5d31a6559 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..309e29cce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..90a14f549 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f63bc703a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3dc2d76a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1e0369edb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2a50e23bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c237bae47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..891937321 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..fb23d5a0b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494 +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887 +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709 +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783 +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572 +5,4241.797005501357,1.7569867632493605,0.0,670.3401762201004,0.6658014579988958 +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688 +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704 +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198 +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689 +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537 +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878 +12,4249.790443577442,1.7602977102075295,0.0,671.6033961906878,0.6670561249993625 +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807 +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101 +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622 +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319 +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364 +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109 +19,4259.435815226876,1.7642929014655497,0.0,673.1276747270732,0.6685700829984853 +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986 +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958 +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543 +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503 +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133 +25,4247.644486345279,1.7594088372967043,0.0,671.2642660184275,0.6667192909990263 +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146 +27,4250.709990274736,1.7606785939163065,0.0,671.7487141053139,0.6672004590000142 +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455 +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..25eb40806 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,395.68466763994917,0.0,0.0,81.77438952733165,0.12668466699687997 +1,396.35098819705064,0.0,0.0,81.91209503184734,0.12689799999861862 +2,396.2011939034781,0.0,0.0,81.88113771175549,0.12685004100057995 +3,386.0664705823485,0.0,0.0,79.78663954088394,0.12360524999894551 +4,386.56829507674564,0.0,0.0,79.89034937610185,0.12376591700012796 +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057 +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384 +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581 +8,398.01523257383474,0.0,0.0,82.25603701157462,0.12743083399982424 +9,397.0782147101372,0.0,0.0,82.06238769926466,0.12713083299968275 +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144006 +11,396.4767043441066,0.0,0.0,81.93807622854256,0.12693824999951175 +12,396.02576599844105,0.0,0.0,81.84488280724774,0.12679387499883887 +13,399.89589611974867,0.0,0.0,82.64470537795509,0.1280329580004036 +14,396.5793855518793,0.0,0.0,81.9592968968379,0.12697112500245566 +15,401.0316391948003,0.0,0.0,82.87942434540003,0.12839658400116605 +16,401.0917611744532,0.0,0.0,82.89184948740166,0.12841583299814374 +17,395.67907055230995,0.0,0.0,81.7732328021354,0.12668287500127917 +18,395.42282512416557,0.0,0.0,81.72027569975218,0.12660083399896394 +19,389.6295971968901,0.0,0.0,80.52301506296472,0.12474604100134457 +20,397.27212678745883,0.0,0.0,82.10246264540683,0.12719291699977475 +21,377.60744195350105,0.0,0.0,78.0384497354916,0.12089695899703656 +22,403.68586149940114,0.0,0.0,83.42796065822493,0.12924637499963865 +23,397.46993997509657,0.0,0.0,82.14334381665871,0.12725625000166474 +24,396.65291621411296,0.0,0.0,81.97449315160198,0.12699466699996265 +25,396.98334197253644,0.0,0.0,82.0427807727533,0.12710045800122316 +26,398.6449814389623,0.0,0.0,82.38618440724828,0.12763245799942524 +27,376.28130373520236,0.0,0.0,77.76438265101989,0.12047237499791663 +28,400.71474393952803,0.0,0.0,82.81393301312637,0.1282951250032056 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9e5abd3b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4f763ef18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..175291f76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9750b0cdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..49cbd9acd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..55667ec8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..19dfbf806 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5ae816514 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7013c54b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..db5406aed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..28d4cb6e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3a009bcf6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4efa44585 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cd9868274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6fe37ca50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1c5674fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..3789130fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..fb23d5a0b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494 +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887 +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709 +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783 +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572 +5,4241.797005501357,1.7569867632493605,0.0,670.3401762201004,0.6658014579988958 +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688 +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704 +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198 +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689 +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537 +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878 +12,4249.790443577442,1.7602977102075295,0.0,671.6033961906878,0.6670561249993625 +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807 +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101 +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622 +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319 +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364 +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109 +19,4259.435815226876,1.7642929014655497,0.0,673.1276747270732,0.6685700829984853 +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986 +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958 +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543 +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503 +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133 +25,4247.644486345279,1.7594088372967043,0.0,671.2642660184275,0.6667192909990263 +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146 +27,4250.709990274736,1.7606785939163065,0.0,671.7487141053139,0.6672004590000142 +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455 +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..042d940f3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,395.68466763994917,0.0,0.0,81.77438952733165,0.12668466699687997 +1,396.35098819705064,0.0,0.0,81.91209503184734,0.12689799999861862 +2,396.2011939034781,0.0,0.0,81.88113771175549,0.12685004100057995 +3,386.0664705823485,0.0,0.0,79.78663954088394,0.12360524999894551 +4,386.56829507674564,0.0,0.0,79.89034937610185,0.12376591700012796 +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057 +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384 +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581 +8,398.01523257383474,0.0,0.0,82.25603701157462,0.12743083399982424 +9,397.0782147101372,0.0,0.0,82.06238769926466,0.12713083299968275 +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144006 +11,396.4767043441066,0.0,0.0,81.93807622854256,0.12693824999951175 +12,396.02576599844105,0.0,0.0,81.84488280724774,0.12679387499883887 +13,399.89589611974867,0.0,0.0,82.64470537795509,0.1280329580004036 +14,396.5793855518793,0.0,0.0,81.9592968968379,0.12697112500245566 +15,401.0316391948003,0.0,0.0,82.87942434540003,0.12839658400116605 +16,480.5304403215797,0.0,0.0,99.30908781725495,0.15384937500130036 +17,401.0917611744532,0.0,0.0,82.89184948740166,0.12841583299814374 +18,395.67907055230995,0.0,0.0,81.7732328021354,0.12668287500127917 +19,395.42282512416557,0.0,0.0,81.72027569975218,0.12660083399896394 +20,389.6295971968901,0.0,0.0,80.52301506296472,0.12474604100134457 +21,397.27212678745883,0.0,0.0,82.10246264540683,0.12719291699977475 +22,377.60744195350105,0.0,0.0,78.0384497354916,0.12089695899703656 +23,403.68586149940114,0.0,0.0,83.42796065822493,0.12924637499963865 +24,397.46993997509657,0.0,0.0,82.14334381665871,0.12725625000166474 +25,396.65291621411296,0.0,0.0,81.97449315160198,0.12699466699996265 +26,396.98334197253644,0.0,0.0,82.0427807727533,0.12710045800122316 +27,398.6449814389623,0.0,0.0,82.38618440724828,0.12763245799942524 +28,376.28130373520236,0.0,0.0,77.76438265101989,0.12047237499791663 +29,400.71474393952803,0.0,0.0,82.81393301312637,0.1282951250032056 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..66d0bbb4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0878cbbfe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5b52f545a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d2242c4ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..85cc57e7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..42629994b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e6de3f6dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5ae816514 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ffd910282 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4e680076a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bcf5b88d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b0b5f1b7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..144c06744 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4b04c724a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..83f5c5ea9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1c5674fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d7c88724b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..819f693c6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575 +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671 +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872 +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984 +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695 +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884 +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729 +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931 +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438 +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557 +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739 +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657 +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443 +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984 +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266 +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819 +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884 +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955 +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664 +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512 +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685 +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929 +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905 +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121 +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751 +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741 +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306 +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247 +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..0ce3723e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,380.3526569408623,0.0,0.0,80.10239659227442,0.12718141699951957 +1,387.17328681307646,0.0,0.0,81.53882352150227,0.12946208299763384 +2,385.3726788755025,0.0,0.0,81.15961488843315,0.12885999999707565 +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086 +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787 +5,394.23827814550515,0.0,0.0,83.02671305586976,0.1318244579997554 +6,373.8768198704676,0.0,0.0,78.73858314227304,0.12501604199860594 +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807 +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013 +9,380.00524434700867,0.0,0.0,80.02923138397054,0.12706525000248803 +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719 +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198 +12,382.215942515876,0.0,0.0,80.49480515672312,0.12780445799944573 +13,361.8984704460614,0.0,0.0,76.21593875263807,0.12101075000100536 +14,378.87839859669845,0.0,0.0,79.79191729258059,0.12668845799998962 +15,380.88423856576446,0.0,0.0,80.21434786003091,0.12735916599922348 +16,379.1726048879838,0.0,0.0,79.85387723579232,0.12678683400008595 +17,378.95814974542776,0.0,0.0,79.80871291114045,0.12671512499946402 +18,380.36461647596656,0.0,0.0,80.10491527436194,0.12718541600042954 +19,364.3920344346489,0.0,0.0,76.74108416150293,0.12184454199814354 +20,380.75203175892756,0.0,0.0,80.18650506235302,0.12731495900152368 +21,382.7415458800854,0.0,0.0,80.60549740078093,0.12798020800255472 +22,380.34679830413467,0.0,0.0,80.10116276142276,0.12717945800250163 +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071 +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658 +25,363.53484190384074,0.0,0.0,76.56055912820624,0.12155791599798249 +26,380.69109765029833,0.0,0.0,80.17367231872328,0.12729458399917348 +27,379.47166496381067,0.0,0.0,79.91685938764968,0.12688683299711556 +28,379.2726654116168,0.0,0.0,79.87495001549036,0.12682029200004763 +29,384.0864564464969,0.0,0.0,80.88873601527702,0.12842991599973175 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..afc5beb47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f4ccc61c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..01c88ddc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..76d4fe900 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6be71de75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..92d6db57e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7f0a9813d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b04e8d571 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6983fd435 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bc1700b7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..49c22b39f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..52af21fa4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bd6f9639a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..563bc64dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0e93d7af6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..532842960 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..bb44b82c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..09e9efe82 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575 +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671 +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872 +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984 +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695 +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884 +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729 +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931 +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438 +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557 +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739 +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657 +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443 +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984 +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266 +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819 +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884 +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955 +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664 +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512 +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685 +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929 +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905 +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121 +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751 +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741 +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306 +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247 +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952 +29,4766.67763709578,2.552409740466019,0.0,712.716714378895,0.701130875000672 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0ce3723e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,380.3526569408623,0.0,0.0,80.10239659227442,0.12718141699951957 +1,387.17328681307646,0.0,0.0,81.53882352150227,0.12946208299763384 +2,385.3726788755025,0.0,0.0,81.15961488843315,0.12885999999707565 +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086 +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787 +5,394.23827814550515,0.0,0.0,83.02671305586976,0.1318244579997554 +6,373.8768198704676,0.0,0.0,78.73858314227304,0.12501604199860594 +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807 +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013 +9,380.00524434700867,0.0,0.0,80.02923138397054,0.12706525000248803 +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719 +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198 +12,382.215942515876,0.0,0.0,80.49480515672312,0.12780445799944573 +13,361.8984704460614,0.0,0.0,76.21593875263807,0.12101075000100536 +14,378.87839859669845,0.0,0.0,79.79191729258059,0.12668845799998962 +15,380.88423856576446,0.0,0.0,80.21434786003091,0.12735916599922348 +16,379.1726048879838,0.0,0.0,79.85387723579232,0.12678683400008595 +17,378.95814974542776,0.0,0.0,79.80871291114045,0.12671512499946402 +18,380.36461647596656,0.0,0.0,80.10491527436194,0.12718541600042954 +19,364.3920344346489,0.0,0.0,76.74108416150293,0.12184454199814354 +20,380.75203175892756,0.0,0.0,80.18650506235302,0.12731495900152368 +21,382.7415458800854,0.0,0.0,80.60549740078093,0.12798020800255472 +22,380.34679830413467,0.0,0.0,80.10116276142276,0.12717945800250163 +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071 +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658 +25,363.53484190384074,0.0,0.0,76.56055912820624,0.12155791599798249 +26,380.69109765029833,0.0,0.0,80.17367231872328,0.12729458399917348 +27,379.47166496381067,0.0,0.0,79.91685938764968,0.12688683299711556 +28,379.2726654116168,0.0,0.0,79.87495001549036,0.12682029200004763 +29,384.0864564464969,0.0,0.0,80.88873601527702,0.12842991599973175 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8cfd40825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..605342808 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5af984cbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1db884edb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5251f33fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c4fc7c679 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a9dfd8fb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7e2c16979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b43a0d1f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6d5b5cfba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d006f6895 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f0644ad23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2016c0e77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4651c406b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3787212d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..206a6c2ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..472dfed21 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..266faa450 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416 +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251 +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694 +3,4252.917010990448,1.8079994850813175,0.0,673.0110675855475,0.6701307500006806 +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295 +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529 +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722 +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746 +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708 +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747 +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627 +11,4218.894760122639,1.7935359505492903,0.0,667.6271507776164,0.6647698749984556 +12,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405 +13,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344 +14,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605 +15,4236.082134553483,1.8008426447642403,0.0,670.3470000445554,0.6674780839966843 +16,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561 +17,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166 +18,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142 +19,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264 +20,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589 +21,4223.751874950823,1.7956008065259395,0.0,668.3957742958872,0.6655352090019733 +22,4240.11870444225,1.8025586707909713,0.0,670.9857748438761,0.6681141250010114 +23,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789 +24,4245.349196909234,1.8047822570172223,0.0,671.8134842278367,0.6689382919976197 +25,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449 +26,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376 +27,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237 +28,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..42b2dc585 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277 +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.12447816600251826 +2,362.381369627801,0.9030269478496195,0.0,79.29914419820177,0.12601550000181305 +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.12233437499889988 +4,365.53192544718695,0.9108778945153713,0.0,79.98857362577574,0.12711108299845364 +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.12690808300249046 +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.12648845900184824 +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.12626470800023526 +8,366.083701130626,0.9122528777597511,0.0,80.10931752475443,0.12730295900109923 +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.11996554100187495 +10,364.26746204656644,0.9077269474164553,0.0,79.71187378979317,0.126671374997386 +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.12412645899894414 +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474 +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.12504270899808034 +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496 +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.12176083300073515 +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.12649758300176472 +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924 +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957 +19,364.75057778178666,0.9089308352661043,0.0,79.8175929783679,0.12683937499969034 +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226 +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.11964541699853726 +22,367.629021552613,0.9161036993004661,0.0,80.44747670523722,0.12784033299976727 +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.12610474999746657 +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.12691166600052384 +25,364.2674620570281,0.9077269474425251,0.0,79.71187379208249,0.126671375001024 +26,370.1547160771413,0.9223975389093507,0.0,81.00016906496558,0.12871862500105635 +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.12045720799869741 +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.12722895899787545 +29,365.1832510520659,0.9100090243106395,0.0,79.91227394964912,0.1269898339996871 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6ab042d66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a94249710 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bfb47cf17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9ec55fb84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2c0d2401e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..dfd04cb84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0707be8f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b5cb909c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..49e44ac5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e1190c41a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..344ed5812 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4c1181269 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6dc954023 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a3198f8b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b2f3dccfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bd9da25ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..86c61cfb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2c5016b36 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416 +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251 +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694 +3,4252.917010990448,1.8079994850813175,0.0,673.0110675855475,0.6701307500006806 +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295 +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529 +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722 +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746 +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708 +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747 +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627 +11,4218.894760122639,1.7935359505492903,0.0,667.6271507776164,0.6647698749984556 +12,4301.269696958708,1.828555172179607,0.0,680.6627317774496,0.677749667000171 +13,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405 +14,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344 +15,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605 +16,4236.082134553483,1.8008426447642403,0.0,670.3470000445554,0.6674780839966843 +17,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561 +18,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166 +19,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142 +20,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264 +21,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589 +22,4223.751874950823,1.7956008065259395,0.0,668.3957742958872,0.6655352090019733 +23,4240.11870444225,1.8025586707909713,0.0,670.9857748438761,0.6681141250010114 +24,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789 +25,4245.349196909234,1.8047822570172223,0.0,671.8134842278367,0.6689382919976197 +26,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449 +27,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376 +28,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237 +29,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..42b2dc585 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277 +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.12447816600251826 +2,362.381369627801,0.9030269478496195,0.0,79.29914419820177,0.12601550000181305 +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.12233437499889988 +4,365.53192544718695,0.9108778945153713,0.0,79.98857362577574,0.12711108299845364 +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.12690808300249046 +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.12648845900184824 +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.12626470800023526 +8,366.083701130626,0.9122528777597511,0.0,80.10931752475443,0.12730295900109923 +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.11996554100187495 +10,364.26746204656644,0.9077269474164553,0.0,79.71187378979317,0.126671374997386 +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.12412645899894414 +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474 +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.12504270899808034 +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496 +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.12176083300073515 +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.12649758300176472 +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924 +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957 +19,364.75057778178666,0.9089308352661043,0.0,79.8175929783679,0.12683937499969034 +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226 +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.11964541699853726 +22,367.629021552613,0.9161036993004661,0.0,80.44747670523722,0.12784033299976727 +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.12610474999746657 +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.12691166600052384 +25,364.2674620570281,0.9077269474425251,0.0,79.71187379208249,0.126671375001024 +26,370.1547160771413,0.9223975389093507,0.0,81.00016906496558,0.12871862500105635 +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.12045720799869741 +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.12722895899787545 +29,365.1832510520659,0.9100090243106395,0.0,79.91227394964912,0.1269898339996871 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c696da1bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..901ddea9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7e092458c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8db58bc66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e88c9e3e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..44521e09e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..97ede480d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c0af742fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6ccfe3afb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f3dcd5d37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a6f9ffd16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..34e5fc20a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..347c3f4d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1669bd1e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..01455e970 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1bd864194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..dcf353d0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..adc623669 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4252.8818824273885,2.9163308198119586,0.0,674.9126980010802,0.6707283750001807 +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045 +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782 +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198 +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159 +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758 +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135 +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865 +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883 +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335 +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151 +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731 +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696 +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756 +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148 +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991 +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702 +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562 +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955 +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849 +20,4236.875066042591,2.9053544576084986,0.0,672.3724902240174,0.6682039160004933 +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241 +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549 +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001 +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152 +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356 +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508 +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006 +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678 +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..7ce469d3f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,392.35717841459865,1.1193729478414243,0.0,83.85120991103034,0.12769987499996205 +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.12669275000007474 +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.12105320800037589 +3,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.12506225000106497 +4,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.12642220799898496 +5,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.12736983400100144 +6,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.12691183300194098 +7,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.12562575000265497 +8,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.12768379199769697 +9,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.12635737499658717 +10,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.12594658300076844 +11,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134 +12,381.0208254600399,1.0870309708810681,0.0,81.42850181872728,0.1240102499978093 +13,385.72212629163045,1.1004435175606297,0.0,82.433223497269,0.12554037500012782 +14,388.1155996030598,1.1072719622115479,0.0,82.94473607839231,0.1263193750019127 +15,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.12662550000095507 +16,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.12662958299915772 +17,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009 +18,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.12654329200086067 +19,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.12728362499910872 +20,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.12680633400304941 +21,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.12665312500030268 +22,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.12707662499815342 +23,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.12647691699748975 +24,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.12222883299909881 +25,406.88751856580285,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041 +26,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.12667366599998786 +27,391.19795385274,1.1160657454085259,0.0,83.60347038332958,0.12732258400137653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d26930ba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c47948db7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ea07ed565 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0acf18009 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f5d34d8ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3cd93d344 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1ba2d7ed8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d0f688d32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c68a08b46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4f59bc074 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..dda45fbcd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fb98361cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b8fc99d92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2c248340c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e9f6a1a49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8effd0842 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9f29490e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..adc623669 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4252.8818824273885,2.9163308198119586,0.0,674.9126980010802,0.6707283750001807 +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045 +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782 +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198 +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159 +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758 +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135 +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865 +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883 +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335 +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151 +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731 +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696 +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756 +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148 +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991 +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702 +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562 +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955 +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849 +20,4236.875066042591,2.9053544576084986,0.0,672.3724902240174,0.6682039160004933 +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241 +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549 +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001 +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152 +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356 +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508 +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006 +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678 +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ff7b061e7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,392.35717841459865,1.1193729478414243,0.0,83.85120991103034,0.12769987499996205 +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.12669275000007474 +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.12105320800037589 +3,347.0769311623034,0.9901909508391123,0.0,74.17430395376623,0.11296258400034276 +4,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.12506225000106497 +5,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.12642220799898496 +6,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.12736983400100144 +7,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.12691183300194098 +8,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.12562575000265497 +9,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.12768379199769697 +10,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.12635737499658717 +11,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.12594658300076844 +12,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134 +13,381.0208254600399,1.0870309708810681,0.0,81.42850181872728,0.1240102499978093 +14,385.72212629163045,1.1004435175606297,0.0,82.433223497269,0.12554037500012782 +15,343.1331262252372,0.9789394973141549,0.0,73.33146779880578,0.11167899999782094 +16,388.1155996030598,1.1072719622115479,0.0,82.94473607839231,0.1263193750019127 +17,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.12662550000095507 +18,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.12662958299915772 +19,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009 +20,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.12654329200086067 +21,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.12728362499910872 +22,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.12680633400304941 +23,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.12665312500030268 +24,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.12707662499815342 +25,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.12647691699748975 +26,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.12222883299909881 +27,406.88751856580285,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041 +28,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.12667366599998786 +29,391.19795385274,1.1160657454085259,0.0,83.60347038332958,0.12732258400137653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..da61ec07c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..07b203de4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5d3e4cbfa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2b2bace7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7af11a91c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..249d7136c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..00346dc8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5a2d56133 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..accbb248e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..53bdb1654 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b1425f50c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..343ec195e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..809c106d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..eda519170 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e05c860e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4e952af0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..522cc96e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ead8227c7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754 +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034 +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907 +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888 +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375 +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376 +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414 +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597 +8,4249.175090223917,1.6719688560820005,0.0,674.1044033951409,0.6699446659986279 +9,4241.42578773114,1.6689196542606655,0.0,672.8750262048151,0.6687228750015493 +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961 +11,4233.126786808715,1.6656541566560095,0.0,671.5584428805699,0.6674144159987918 +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814 +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955 +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012 +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068 +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584 +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977 +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389 +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907 +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867 +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752 +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945 +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916 +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299 +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818 +26,4236.9941789942895,1.6671759012655483,0.0,672.1719798722437,0.6680241670001124 +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245 +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405 +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ae38570f4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.87667424290413,0.8046531454405679,0.0,80.39826011527006,0.12686837500223191 +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.12702183299916214 +2,366.44147366800684,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891 +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623 +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.12707666699861875 +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.12767341699873214 +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.12608170899693505 +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.12806866699975217 +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.12713145800080383 +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.12263945899758255 +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565 +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.12506966699947952 +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885 +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.12541358299858985 +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.12742254199838499 +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.12046954099787399 +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874 +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.12670920800155727 +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.12644300000101794 +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.12627804200019455 +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.12698162499873433 +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.12072541700035799 +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.12750933399729547 +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.12669512499996927 +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.12582054200174753 +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.12629504200231167 +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248 +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.11967374999949243 +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.12697245800154633 +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6a7a27dcb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cf8d55c90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..03419bea6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cb5b256ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..266f61750 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..55d11de46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e25b3c389 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ca62e33b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1f1f71f6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fdcd316f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..13edce419 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ebbf205c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dcdb3bba7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..681675e28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..cac5a6fdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3b7d76ee7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c563ff853 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ead8227c7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754 +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034 +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907 +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888 +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375 +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376 +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414 +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597 +8,4249.175090223917,1.6719688560820005,0.0,674.1044033951409,0.6699446659986279 +9,4241.42578773114,1.6689196542606655,0.0,672.8750262048151,0.6687228750015493 +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961 +11,4233.126786808715,1.6656541566560095,0.0,671.5584428805699,0.6674144159987918 +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814 +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955 +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012 +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068 +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584 +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977 +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389 +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907 +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867 +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752 +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945 +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916 +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299 +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818 +26,4236.9941789942895,1.6671759012655483,0.0,672.1719798722437,0.6680241670001124 +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245 +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405 +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ae38570f4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.87667424290413,0.8046531454405679,0.0,80.39826011527006,0.12686837500223191 +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.12702183299916214 +2,366.44147366800684,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891 +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623 +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.12707666699861875 +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.12767341699873214 +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.12608170899693505 +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.12806866699975217 +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.12713145800080383 +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.12263945899758255 +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565 +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.12506966699947952 +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885 +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.12541358299858985 +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.12742254199838499 +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.12046954099787399 +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874 +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.12670920800155727 +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.12644300000101794 +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.12627804200019455 +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.12698162499873433 +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.12072541700035799 +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.12750933399729547 +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.12669512499996927 +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.12582054200174753 +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.12629504200231167 +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248 +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.11967374999949243 +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.12697245800154633 +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6a7a27dcb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cf8d55c90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..03419bea6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cb5b256ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..266f61750 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..55d11de46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e25b3c389 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ca62e33b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1f1f71f6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fdcd316f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..13edce419 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ebbf205c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dcdb3bba7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..681675e28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cac5a6fdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3b7d76ee7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c563ff853 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f45e909d7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888 +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896 +2,4296.3093777503855,1.8312061917425835,0.0,673.4510480068589,0.6612518339970848 +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919 +4,4281.318895847793,1.8248168326756147,0.0,671.1012740823575,0.6589446250000037 +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367 +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265 +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202 +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616 +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722 +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922 +11,4294.81365551898,1.8305686734517774,0.0,673.2165919619837,0.6610216250010126 +12,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633 +13,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174 +14,4304.474772925574,1.8346865095893998,0.0,674.7309823539053,0.6625085830019088 +15,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507 +16,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669 +17,4304.719237909603,1.8347907073445098,0.0,674.7693024992254,0.66254620899781 +18,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735 +19,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411 +20,4289.335939610233,1.8282339190365922,0.0,672.3579541882391,0.6601785410020966 +21,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537 +22,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059 +23,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462 +24,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423 +25,4296.307207702341,1.8312052668079322,0.0,673.450707849528,0.6612515000015264 +26,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959 +27,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385 +28,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..95a80dafa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,387.6502443930199,0.0,0.0,86.02535538551267,0.13111695900079212 +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788 +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028 +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004 +4,377.59806480196255,0.0,0.0,83.79462721178557,0.12771695799892768 +5,378.2879220367919,0.0,0.0,83.94771679356664,0.12795029200060526 +6,358.1112551934011,0.0,0.0,79.47021430052544,0.12112583300040569 +7,375.73853630594704,0.0,0.0,83.38197017871778,0.12708800000109477 +8,366.0266051541871,0.0,0.0,81.22674819474109,0.12380308299907483 +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211 +10,368.70472380202636,0.0,0.0,81.82106255872576,0.12470891700286302 +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617 +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764 +13,376.62154905599033,0.0,0.0,83.57792384244205,0.12738666599761928 +14,373.97903582377523,0.0,0.0,82.99151084980181,0.12649287499880302 +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924 +16,375.11520378706575,0.0,0.0,83.24364342093624,0.12687716700020246 +17,375.4187381278567,0.0,0.0,83.31100220611935,0.12697983299949556 +18,376.0866668397095,0.0,0.0,83.45922552247323,0.12720575000275858 +19,375.74247734780164,0.0,0.0,83.38284475452687,0.12708933300018543 +20,377.30007394011795,0.0,0.0,83.72849860703786,0.12761616699935985 +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222 +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624 +23,370.43059382087716,0.0,0.0,82.20405878759003,0.12529266699857544 +24,378.135167384867,0.0,0.0,83.91381826413529,0.12789862499994342 +25,373.97989913536014,0.0,0.0,82.99170243148396,0.12649316700117197 +26,375.5505517329566,0.0,0.0,83.34025360576987,0.12702441700093914 +27,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871 +28,376.91141244131677,0.0,0.0,83.64224883925715,0.1274847079985193 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1d568225b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4bf64a51b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ca448437f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..19c992503 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..66ff083fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8ee0b49a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..eaa6346cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e2738bb44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e6b4f6a08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b8d7c39f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..626716452 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aff7b20f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..840548bb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e1bfa7ad0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9dcf9ecf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..70f3262ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d0b6be8f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..28924d951 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888 +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896 +2,4296.3093777503855,1.8312061917425835,0.0,673.4510480068589,0.6612518339970848 +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919 +4,4281.318895847793,1.8248168326756147,0.0,671.1012740823575,0.6589446250000037 +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367 +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265 +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202 +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616 +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722 +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922 +11,4294.81365551898,1.8305686734517774,0.0,673.2165919619837,0.6610216250010126 +12,4367.050740155173,1.8613581220292665,0.0,684.5398315324722,0.6721397500004969 +13,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633 +14,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174 +15,4304.474772925574,1.8346865095893998,0.0,674.7309823539053,0.6625085830019088 +16,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507 +17,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669 +18,4304.719237909603,1.8347907073445098,0.0,674.7693024992254,0.66254620899781 +19,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735 +20,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411 +21,4289.335939610233,1.8282339190365922,0.0,672.3579541882391,0.6601785410020966 +22,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537 +23,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059 +24,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462 +25,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423 +26,4296.307207702341,1.8312052668079322,0.0,673.450707849528,0.6612515000015264 +27,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959 +28,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385 +29,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..88b1460e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,387.6502443930199,0.0,0.0,86.02535538551267,0.13111695900079212 +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788 +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028 +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004 +4,377.59806480196255,0.0,0.0,83.79462721178557,0.12771695799892768 +5,378.2879220367919,0.0,0.0,83.94771679356664,0.12795029200060526 +6,358.1112551934011,0.0,0.0,79.47021430052544,0.12112583300040569 +7,375.73853630594704,0.0,0.0,83.38197017871778,0.12708800000109477 +8,366.0266051541871,0.0,0.0,81.22674819474109,0.12380308299907483 +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211 +10,368.70472380202636,0.0,0.0,81.82106255872576,0.12470891700286302 +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617 +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764 +13,376.62154905599033,0.0,0.0,83.57792384244205,0.12738666599761928 +14,373.97903582377523,0.0,0.0,82.99151084980181,0.12649287499880302 +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924 +16,375.11520378706575,0.0,0.0,83.24364342093624,0.12687716700020246 +17,375.4187381278567,0.0,0.0,83.31100220611935,0.12697983299949556 +18,376.0866668397095,0.0,0.0,83.45922552247323,0.12720575000275858 +19,375.74247734780164,0.0,0.0,83.38284475452687,0.12708933300018543 +20,377.30007394011795,0.0,0.0,83.72849860703786,0.12761616699935985 +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222 +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624 +23,370.43059382087716,0.0,0.0,82.20405878759003,0.12529266699857544 +24,378.135167384867,0.0,0.0,83.91381826413529,0.12789862499994342 +25,331.56981324082483,0.0,0.0,73.58027353706892,0.11214858300081687 +26,373.97989913536014,0.0,0.0,82.99170243148396,0.12649316700117197 +27,375.5505517329566,0.0,0.0,83.34025360576987,0.12702441700093914 +28,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871 +29,376.91141244131677,0.0,0.0,83.64224883925715,0.1274847079985193 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b880e3b55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..502e81265 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5ab202e0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d6aaef9ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1f91e5474 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a6bc5852a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..82e26fd3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d73b4ef47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..17a36b9fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c0366e83c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0a6edff06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f51464c86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c59a0c0ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fb03f7c77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..943cd1a33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c3b9b4dac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8e8446441 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4bf372e50 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041 +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858 +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505 +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749 +4,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599 +5,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206 +6,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374 +7,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374 +8,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463 +9,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212 +10,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746 +11,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392 +12,4208.039275310504,2.2558766267579666,0.0,669.3650396778748,0.6640276660000382 +13,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421 +14,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857 +15,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983 +16,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557 +17,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472 +18,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811 +19,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253 +20,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509 +21,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295 +22,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041 +23,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841 +24,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323 +25,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186 +26,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896 +27,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796 +28,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..398115ed3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892 +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.12318604200117989 +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.12674829199750093 +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.12529695899866056 +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.12737899999774527 +5,364.74524954386317,0.775049957456472,0.0,79.9986347392028,0.12772641600167844 +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789 +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.12728804099970148 +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.12743612499980372 +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.12690270799794234 +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.12688874999730615 +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329 +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.12770725000154926 +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.12733170799765503 +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511 +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.12370316599844955 +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.12754741699973238 +17,363.62201796787116,0.7726631941298076,0.0,79.75227925496361,0.127333083000849 +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.12791274999835878 +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.12609354099913617 +20,362.95581447641507,0.7712475732591968,0.0,79.6061625616232,0.12709979200008092 +21,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.12630320799871697 +22,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.12525000000096043 +23,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.12694470900169108 +24,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.12697487500190618 +25,362.26021751587035,0.7697694939823556,0.0,79.45359907452662,0.12685620800039032 +26,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.12225666599988472 +27,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758 +28,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.12652958299804595 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b6b37ffe5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bfe7e24a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2366e5590 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fe6d2aba3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4bf4f4b24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..71b705329 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..04f104ad2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..54fe752be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..323d42948 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..abd29bf29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e1d2bbf7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7d207efda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1caa397d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1bfc308ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0aba96b57 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c15ad76ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2b80e55c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..70066193e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041 +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858 +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505 +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749 +4,4183.686687295611,2.242821512366286,0.0,665.4913184560963,0.6601848330028588 +5,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599 +6,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206 +7,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374 +8,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374 +9,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463 +10,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212 +11,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746 +12,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392 +13,4208.039275310504,2.2558766267579666,0.0,669.3650396778748,0.6640276660000382 +14,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421 +15,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857 +16,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983 +17,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557 +18,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472 +19,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811 +20,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253 +21,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509 +22,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295 +23,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041 +24,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841 +25,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323 +26,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186 +27,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896 +28,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796 +29,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..112afe4aa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892 +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.12318604200117989 +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.12674829199750093 +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.12529695899866056 +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.12737899999774527 +5,364.74524954386317,0.775049957456472,0.0,79.9986347392028,0.12772641600167844 +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789 +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.12728804099970148 +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.12743612499980372 +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.12690270799794234 +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.12688874999730615 +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329 +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.12770725000154926 +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.12733170799765503 +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511 +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.12370316599844955 +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.12754741699973238 +17,363.62201796787116,0.7726631941298076,0.0,79.75227925496361,0.127333083000849 +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.12791274999835878 +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.12609354099913617 +20,362.95581447641507,0.7712475732591968,0.0,79.6061625616232,0.12709979200008092 +21,341.77800196980706,0.7262466782433077,0.0,74.96128757172228,0.11968374999923981 +22,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.12630320799871697 +23,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.12525000000096043 +24,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.12694470900169108 +25,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.12697487500190618 +26,362.26021751587035,0.7697694939823556,0.0,79.45359907452662,0.12685620800039032 +27,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.12225666599988472 +28,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758 +29,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.12652958299804595 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5bd282a93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..215c3d52a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1b3101aaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..688372e6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6aecd384d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f7a6ae934 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..722844b56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..acea6367d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..944f8775e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..17666280a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5b7239c85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9835fb4de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5eadd1939 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8f02d9c31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..4a6759f38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0d0435160 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1b10e6a9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a72216817 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083 +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339 +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718 +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503 +4,4332.218872799026,3.0013986925308482,0.0,676.281823175923,0.6688972499978263 +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471 +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487 +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688 +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175 +9,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898 +10,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943 +11,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758 +12,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134 +13,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097 +14,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611 +15,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152 +16,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642 +17,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146 +18,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455 +19,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713 +20,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074 +21,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953 +22,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337 +23,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074 +24,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496 +25,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735 +26,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393 +27,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164 +28,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..fc4b34671 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,365.0774252251925,0.0,0.0,78.66773310494989,0.12708075000045937 +1,367.5883720326905,0.0,0.0,79.20879776588075,0.12795479200212867 +2,350.57697332024804,0.0,0.0,75.54314198662561,0.12203325000155019 +3,361.880120821408,0.0,0.0,77.97877051205046,0.12596779199884622 +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142 +5,364.4711468988576,0.0,0.0,78.53709084041105,0.12686970900176675 +6,369.5311022105454,0.0,0.0,79.62742178524363,0.12863104200005182 +7,362.71598461213733,0.0,0.0,78.15888438669123,0.12625874999866937 +8,364.6465054066651,0.0,0.0,78.57487749972414,0.12693075000061071 +9,357.7011552221953,0.0,0.0,77.07827728048227,0.12451312499979394 +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524 +11,363.63528023405354,0.0,0.0,78.35697634645797,0.12657875000149943 +12,364.8904548594365,0.0,0.0,78.62744429546584,0.12701566699979594 +13,363.9725956478543,0.0,0.0,78.42966185674032,0.12669616700077313 +14,364.7223961358544,0.0,0.0,78.59123061064388,0.12695716700181947 +15,365.02679214761287,0.0,0.0,78.65682257157232,0.12706312500085915 +16,361.9313514452685,0.0,0.0,77.98980980609107,0.12598562499988475 +17,345.0865750669766,0.0,0.0,74.36005819512079,0.12012208300075145 +18,364.13442902088667,0.0,0.0,78.46453408853974,0.12675250000029337 +19,364.22934916661006,0.0,0.0,78.48498770241478,0.12678554100057227 +20,363.6205571430931,0.0,0.0,78.3538037805579,0.12657362500249292 +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022 +22,362.82335546941124,0.0,0.0,78.18202090886338,0.12629612499949872 +23,351.26608593148893,0.0,0.0,75.69163357562735,0.12227312500181142 +24,365.8098711297876,0.0,0.0,78.82556225283807,0.12733570899945335 +25,362.3659829171635,0.0,0.0,78.08346520702132,0.12613691699880292 +26,362.8579468409589,0.0,0.0,78.1894747380969,0.12630816599994432 +27,372.2966479317493,0.0,0.0,80.22334801253913,0.12959370799944736 +28,364.57612183330957,0.0,0.0,78.55971108355833,0.12690624999959255 +29,346.7069542397634,0.0,0.0,74.70922126981647,0.12068612499933806 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..691ca9ece Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..33d4aebf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0b4cca0f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9c5fae362 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0ffc8eae6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c5c72487e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..63a648c51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9036b8bf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f0ea3c90a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..874675c10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c1bb05e6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..756dee3ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3d1cafda9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7018d1efc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5d8d102ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e4e488ab0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c4886bbaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9dc2663dd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083 +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339 +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718 +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503 +4,4332.218872799026,3.0013986925308482,0.0,676.281823175923,0.6688972499978263 +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471 +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487 +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688 +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175 +9,4403.067309093179,3.0504831017688643,0.0,687.3416313418977,0.6798362919980718 +10,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898 +11,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943 +12,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758 +13,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134 +14,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097 +15,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611 +16,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152 +17,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642 +18,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146 +19,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455 +20,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713 +21,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074 +22,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953 +23,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337 +24,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074 +25,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496 +26,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735 +27,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393 +28,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164 +29,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..fc4b34671 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,365.0774252251925,0.0,0.0,78.66773310494989,0.12708075000045937 +1,367.5883720326905,0.0,0.0,79.20879776588075,0.12795479200212867 +2,350.57697332024804,0.0,0.0,75.54314198662561,0.12203325000155019 +3,361.880120821408,0.0,0.0,77.97877051205046,0.12596779199884622 +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142 +5,364.4711468988576,0.0,0.0,78.53709084041105,0.12686970900176675 +6,369.5311022105454,0.0,0.0,79.62742178524363,0.12863104200005182 +7,362.71598461213733,0.0,0.0,78.15888438669123,0.12625874999866937 +8,364.6465054066651,0.0,0.0,78.57487749972414,0.12693075000061071 +9,357.7011552221953,0.0,0.0,77.07827728048227,0.12451312499979394 +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524 +11,363.63528023405354,0.0,0.0,78.35697634645797,0.12657875000149943 +12,364.8904548594365,0.0,0.0,78.62744429546584,0.12701566699979594 +13,363.9725956478543,0.0,0.0,78.42966185674032,0.12669616700077313 +14,364.7223961358544,0.0,0.0,78.59123061064388,0.12695716700181947 +15,365.02679214761287,0.0,0.0,78.65682257157232,0.12706312500085915 +16,361.9313514452685,0.0,0.0,77.98980980609107,0.12598562499988475 +17,345.0865750669766,0.0,0.0,74.36005819512079,0.12012208300075145 +18,364.13442902088667,0.0,0.0,78.46453408853974,0.12675250000029337 +19,364.22934916661006,0.0,0.0,78.48498770241478,0.12678554100057227 +20,363.6205571430931,0.0,0.0,78.3538037805579,0.12657362500249292 +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022 +22,362.82335546941124,0.0,0.0,78.18202090886338,0.12629612499949872 +23,351.26608593148893,0.0,0.0,75.69163357562735,0.12227312500181142 +24,365.8098711297876,0.0,0.0,78.82556225283807,0.12733570899945335 +25,362.3659829171635,0.0,0.0,78.08346520702132,0.12613691699880292 +26,362.8579468409589,0.0,0.0,78.1894747380969,0.12630816599994432 +27,372.2966479317493,0.0,0.0,80.22334801253913,0.12959370799944736 +28,364.57612183330957,0.0,0.0,78.55971108355833,0.12690624999959255 +29,346.7069542397634,0.0,0.0,74.70922126981647,0.12068612499933806 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..fc523ffa6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e068fd21c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6b137e0b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..99c17b41a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..395268528 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4a88c5d7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a2c04833a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..05d5108a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..54a1570ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0fefe09c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..76e73af86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3aa4074e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..324f30917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9d6c88903 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..8dc0586c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3ee5fbc70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2f4efba4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..77eab1096 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123 +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618 +2,4259.939212365175,1.8003969434743639,0.0,670.4811580235084,0.6678189169979305 +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758 +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047 +5,4269.997117263699,1.8046477602898938,0.0,672.0641936931438,0.6693956669987529 +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345 +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504 +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013 +9,4296.453269566179,1.8158290409061097,0.0,676.2281854189235,0.6735431250017427 +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246 +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127 +12,4258.273787900644,1.7996930777697013,0.0,670.2190332212722,0.6675578329995915 +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711 +14,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011 +15,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155 +16,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318 +17,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518 +18,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639 +19,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803 +20,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353 +21,4280.57356799962,1.8091177324252914,0.0,673.7288444272706,0.6710537079998176 +22,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939 +23,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774 +24,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006 +25,4258.146210229622,1.7996391590545477,0.0,670.198953492351,0.6675378330000967 +26,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034 +27,4263.6413570172435,1.8019615972366843,0.0,671.0638466746244,0.6683992920006858 +28,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2a1c714c1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392 +1,363.05448090538937,0.0,0.0,79.35981489298555,0.12722704199768486 +2,362.5024300899116,0.0,0.0,79.23914250679553,0.12703358400176512 +3,363.9394521290133,0.0,0.0,79.55326010902385,0.12753716699808137 +4,363.6331643510986,0.0,0.0,79.48630888644514,0.12742983300267952 +5,361.9330179821863,0.0,0.0,79.11467512836181,0.12683404199924553 +6,367.93805246242096,0.0,0.0,80.42731124729627,0.12893841700133635 +7,364.20709368215694,0.0,0.0,79.61176368144136,0.12763095799891744 +8,364.8000479429753,0.0,0.0,79.74137712199497,0.12783874999877298 +9,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772 +10,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003 +11,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107 +12,363.7586055346067,0.0,0.0,79.51372898350148,0.12747379199936404 +13,362.0657101640452,0.0,0.0,79.14368021587322,0.12688054200043553 +14,356.5336590933504,0.0,0.0,77.93443319637895,0.12494191699806834 +15,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913004 +16,364.2592916495958,0.0,0.0,79.62317359717468,0.12764925000010408 +17,363.8922479704996,0.0,0.0,79.54294178635095,0.12752062500294414 +18,364.0480086058659,0.0,0.0,79.57698939033439,0.12757520900049713 +19,362.696591566812,0.0,0.0,79.2815841227969,0.12710162500297884 +20,362.9481816283438,0.0,0.0,79.33657901133893,0.12718979099736316 +21,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978 +22,362.2359756302134,0.0,0.0,79.18089842027075,0.12694020900016767 +23,363.4732460078574,0.0,0.0,79.45135245212167,0.12737379199825227 +24,363.7713268548058,0.0,0.0,79.51650972763022,0.12747824999678414 +25,363.4419763123466,0.0,0.0,79.44451723212573,0.12736283399863169 +26,363.1935936838931,0.0,0.0,79.39022345404717,0.12727579200145556 +27,363.63114400108435,0.0,0.0,79.48586725960514,0.12742912500107195 +28,364.6958917231345,0.0,0.0,79.71860968966385,0.12780225000096834 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3d762b885 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2072edcee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..219c29aaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..048c486a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..8cd287ed5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8c5b7d530 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e6e139753 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1ebc3f955 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1ac89d7d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9a1234f5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5406f5e5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1d0614bc3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bd6092f15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9055b89f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d1b3d67bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fd4de343e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..46619d047 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..0981cf46b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123 +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618 +2,4259.939212365175,1.8003969434743639,0.0,670.4811580235084,0.6678189169979305 +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758 +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047 +5,4269.997117263699,1.8046477602898938,0.0,672.0641936931438,0.6693956669987529 +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345 +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504 +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013 +9,4296.453269566179,1.8158290409061097,0.0,676.2281854189235,0.6735431250017427 +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246 +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127 +12,4258.273787900644,1.7996930777697013,0.0,670.2190332212722,0.6675578329995915 +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711 +14,4308.839199102784,1.8210637610671543,0.0,678.1776339826014,0.675484833001974 +15,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011 +16,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155 +17,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318 +18,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518 +19,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639 +20,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803 +21,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353 +22,4280.57356799962,1.8091177324252914,0.0,673.7288444272706,0.6710537079998176 +23,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939 +24,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774 +25,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006 +26,4258.146210229622,1.7996391590545477,0.0,670.198953492351,0.6675378330000967 +27,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034 +28,4263.6413570172435,1.8019615972366843,0.0,671.0638466746244,0.6683992920006858 +29,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ac5b74618 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392 +1,363.05448090538937,0.0,0.0,79.35981489298555,0.12722704199768486 +2,362.5024300899116,0.0,0.0,79.23914250679553,0.12703358400176512 +3,363.9394521290133,0.0,0.0,79.55326010902385,0.12753716699808137 +4,363.6331643510986,0.0,0.0,79.48630888644514,0.12742983300267952 +5,361.9330179821863,0.0,0.0,79.11467512836181,0.12683404199924553 +6,367.93805246242096,0.0,0.0,80.42731124729627,0.12893841700133635 +7,364.20709368215694,0.0,0.0,79.61176368144136,0.12763095799891744 +8,364.8000479429753,0.0,0.0,79.74137712199497,0.12783874999877298 +9,346.9887368845201,0.0,0.0,75.84801559378747,0.12159704100122326 +10,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772 +11,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003 +12,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107 +13,363.7586055346067,0.0,0.0,79.51372898350148,0.12747379199936404 +14,362.0657101640452,0.0,0.0,79.14368021587322,0.12688054200043553 +15,356.5336590933504,0.0,0.0,77.93443319637895,0.12494191699806834 +16,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913004 +17,364.2592916495958,0.0,0.0,79.62317359717468,0.12764925000010408 +18,363.8922479704996,0.0,0.0,79.54294178635095,0.12752062500294414 +19,364.0480086058659,0.0,0.0,79.57698939033439,0.12757520900049713 +20,362.696591566812,0.0,0.0,79.2815841227969,0.12710162500297884 +21,362.9481816283438,0.0,0.0,79.33657901133893,0.12718979099736316 +22,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978 +23,362.2359756302134,0.0,0.0,79.18089842027075,0.12694020900016767 +24,363.4732460078574,0.0,0.0,79.45135245212167,0.12737379199825227 +25,363.7713268548058,0.0,0.0,79.51650972763022,0.12747824999678414 +26,363.4419763123466,0.0,0.0,79.44451723212573,0.12736283399863169 +27,363.1935936838931,0.0,0.0,79.39022345404717,0.12727579200145556 +28,363.63114400108435,0.0,0.0,79.48586725960514,0.12742912500107195 +29,364.6958917231345,0.0,0.0,79.71860968966385,0.12780225000096834 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1984e93d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0f893ca93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5d4e17d6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4ca73b149 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3b08e8e81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a2c0d90a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..92b451dc4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b9eb6088a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..95c95144a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8ba45747e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d2401a0b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..31286835f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..61e2a4a11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d655f0388 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ca70159cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..106f87fda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..94affdd1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..91939c925 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5614.990553964228,5.7756058115323325,109.76989542380525,759.4420867094653,0.6870545829988259 +1,5608.692244635915,5.769127340801201,109.64676703210607,758.5902239800331,0.6862839170025836 +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555 +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757 +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752 +5,5554.87393461145,5.713769572848289,108.59464945390275,751.3111574748722,0.679698667001503 +6,5565.841836903626,5.7250512089632934,108.80906575185729,752.794594806341,0.6810407080010918 +7,5597.4321653440575,5.75754517004395,109.42663883875439,757.0672689489005,0.684906124999543 +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146 +9,5600.578598587723,5.760781606143541,109.48814983236973,757.492832234412,0.68529112500255 +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432 +11,5601.160557946362,5.761380212289274,109.49952680928979,757.5715437523492,0.6853623339993646 +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837 +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055 +14,5770.126400037058,5.935179275733913,112.80271363360177,780.4246136670234,0.7060371250008757 +15,5596.661223842662,5.756752175973343,109.41156736763209,756.9629971042867,0.6848117920017103 +16,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294 +17,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648 +18,5610.2365140437805,5.77071578360995,109.67695662722265,758.7990904367581,0.6864728750006179 +19,5580.16526722144,5.739784357058483,109.08908072837163,754.7318760367998,0.6827933340027812 +20,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064 +21,5583.60488260023,5.743322361687386,109.15632326721459,755.1970929691598,0.6832142079983896 +22,5543.578786923836,5.702151330573483,108.37383569321163,749.7834593519398,0.6783165840024594 +23,5576.76786301207,5.736289771037868,109.02266339406077,754.2723682749679,0.6823776249984803 +24,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237 +25,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617 +26,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385 +27,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194 +28,5630.7145475367815,5.791779585608233,110.07729062127093,761.568797765411,0.6889785830026085 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..489e4e131 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.12910733299941057 +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893637,0.12924145799843245 +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.12969162499939557 +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185 +4,570.7923075604117,0.4995848181471686,22.614539434795166,108.64304511973761,0.12891508399843588 +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.11888112499946146 +6,546.1066178825615,0.47797871795066066,21.636503299233237,103.944438530337,0.12333975000001374 +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137713,0.13539687500087894 +8,564.8324897164598,0.49436849957678236,22.378414080842347,107.50866970796427,0.12756904200068675 +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427 +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.12665683299928787 +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681 +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.12702012500085402 +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.11805741700300132 +14,565.4239499832644,0.49488617398465196,22.401847475705246,107.62124663586232,0.127702625002712 +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.13302691600256367 +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177 +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.13279200000033597 +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.12971995800035074 +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.13151041599849123 +20,573.9317008573986,0.5023325658105368,22.738920812356962,109.24058864493139,0.12962412500201026 +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.13262783299796865 +22,569.2309991369702,0.49821828609257524,22.55268108379057,108.34586994893202,0.12856245800139732 +23,586.1692027690232,0.5130434147237337,23.223765239827678,111.56984125525462,0.13238799999817275 +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.99295502763319,0.13526324999838835 +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.12957641699904343 +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880931,0.13200399999914225 +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889295,0.1308776250007213 +28,569.554032432905,0.49850102033455335,22.56547952047745,108.40735522208753,0.12863541600017925 +29,569.8029068334558,0.49871884715263376,22.575339814442557,108.45472529412609,0.12869162499919184 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..01daf792b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5ab83f830 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..70a69e764 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7468793eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7537584af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5f03b60f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..10f99a959 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..aa9263aba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c78e947dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..78f06ba29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cd5fca993 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bf80189c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2b12760d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2ad402d0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7fd5c56f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..7266a25b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ae3710306 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e816b3481 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d5ca443cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f1de95447 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..34044c7ec --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5614.990553964228,5.7756058115323325,109.76989542380525,759.4420867094653,0.6870545829988259 +1,5608.692244635915,5.769127340801201,109.64676703210607,758.5902239800331,0.6862839170025836 +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555 +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757 +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752 +5,5554.87393461145,5.713769572848289,108.59464945390275,751.3111574748722,0.679698667001503 +6,5565.841836903626,5.7250512089632934,108.80906575185729,752.794594806341,0.6810407080010918 +7,5597.4321653440575,5.75754517004395,109.42663883875439,757.0672689489005,0.684906124999543 +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146 +9,5600.578598587723,5.760781606143541,109.48814983236973,757.492832234412,0.68529112500255 +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432 +11,5601.160557946362,5.761380212289274,109.49952680928979,757.5715437523492,0.6853623339993646 +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837 +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055 +14,5770.126400037058,5.935179275733913,112.80271363360177,780.4246136670234,0.7060371250008757 +15,5876.410462417555,6.044503564431901,114.88050705116817,794.799809732352,0.7190421250015788 +16,5596.661223842662,5.756752175973343,109.41156736763209,756.9629971042867,0.6848117920017103 +17,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294 +18,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648 +19,5610.2365140437805,5.77071578360995,109.67695662722265,758.7990904367581,0.6864728750006179 +20,5580.16526722144,5.739784357058483,109.08908072837163,754.7318760367998,0.6827933340027812 +21,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064 +22,5583.60488260023,5.743322361687386,109.15632326721459,755.1970929691598,0.6832142079983896 +23,5543.578786923836,5.702151330573483,108.37383569321163,749.7834593519398,0.6783165840024594 +24,5576.76786301207,5.736289771037868,109.02266339406077,754.2723682749679,0.6823776249984803 +25,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237 +26,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617 +27,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385 +28,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194 +29,5630.7145475367815,5.791779585608233,110.07729062127093,761.568797765411,0.6889785830026085 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..489e4e131 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.12910733299941057 +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893637,0.12924145799843245 +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.12969162499939557 +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185 +4,570.7923075604117,0.4995848181471686,22.614539434795166,108.64304511973761,0.12891508399843588 +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.11888112499946146 +6,546.1066178825615,0.47797871795066066,21.636503299233237,103.944438530337,0.12333975000001374 +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137713,0.13539687500087894 +8,564.8324897164598,0.49436849957678236,22.378414080842347,107.50866970796427,0.12756904200068675 +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427 +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.12665683299928787 +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681 +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.12702012500085402 +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.11805741700300132 +14,565.4239499832644,0.49488617398465196,22.401847475705246,107.62124663586232,0.127702625002712 +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.13302691600256367 +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177 +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.13279200000033597 +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.12971995800035074 +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.13151041599849123 +20,573.9317008573986,0.5023325658105368,22.738920812356962,109.24058864493139,0.12962412500201026 +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.13262783299796865 +22,569.2309991369702,0.49821828609257524,22.55268108379057,108.34586994893202,0.12856245800139732 +23,586.1692027690232,0.5130434147237337,23.223765239827678,111.56984125525462,0.13238799999817275 +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.99295502763319,0.13526324999838835 +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.12957641699904343 +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880931,0.13200399999914225 +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889295,0.1308776250007213 +28,569.554032432905,0.49850102033455335,22.56547952047745,108.40735522208753,0.12863541600017925 +29,569.8029068334558,0.49871884715263376,22.575339814442557,108.45472529412609,0.12869162499919184 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..43bc4dbb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f02745ac7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e18cdc4b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e247dd257 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7f5973814 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2cbdc4be8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7ec1d6872 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..eb3c17584 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..49325cbc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3c37e186b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0e7c9d754 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b720618d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b010289e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1d0324757 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f47f520f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..d3927abdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a89086c76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7675faec6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..48f1d254b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ad0a6aa6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..5fc81e0fe --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5280.146632019839,4.743466790750807,114.64491567504767,752.2737473782265,0.6850735419975535 +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585 +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048 +3,5269.918567599515,4.734278317912334,114.42283934559953,750.8165332351111,0.6837465000025986 +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337 +5,5263.781853767582,4.728765346342646,114.28959625808423,749.9422225326506,0.6829502910004521 +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321 +7,5262.373654944431,4.727500278378077,114.25902081263071,749.7415934441852,0.6827675839995209 +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202 +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963 +10,5299.006038748264,4.76040930688607,115.05439958614781,754.9606872610865,0.6875204589996429 +11,5278.689930447888,4.742158149909533,114.61328711612335,752.0662079997371,0.6848845419990539 +12,5264.9964191743065,4.729856462001642,114.31596744781433,750.1152642554716,0.6831078750001325 +13,5280.20732793269,4.743521317465122,114.64623353197393,752.2823948543278,0.68508141699931 +14,5301.849427752589,4.76296369074227,115.11613652554557,755.3657909543374,0.6878893749999406 +15,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437 +16,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943 +17,5232.454106576423,4.700621785417813,113.60939413770377,745.4788916028814,0.6788856669991219 +18,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411 +19,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461 +20,5283.768793744757,4.746720792022038,114.72356167760307,752.7898044812416,0.6855434999997669 +21,5270.446525563299,4.734752613654982,114.43430260608379,750.8917525317619,0.6838150000003225 +22,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389 +23,5253.691243355732,4.719700356537864,114.07050439181653,748.5045917551598,0.6816410829997039 +24,5232.72739613028,4.70086729752445,113.61532792326699,745.5178277482438,0.6789211249997607 +25,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278 +26,5286.654257518006,4.749312974121929,114.78621216328493,753.20090265652,0.6859178749982675 +27,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178 +28,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..59a2cda7c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.13317024999923888 +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.12682562500049244 +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767625,0.1291754999983823 +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172 +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089053,0.12955499999952735 +5,574.3023135305887,0.5387451346440795,22.862996651458122,110.67845359844307,0.13152774999980466 +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967 +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.13104820900116465 +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084653,0.12873929100169335 +9,581.0269266320039,0.5450534020938123,23.130703751356158,111.97440829264755,0.13306783300140523 +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799495,0.12825512500057812 +11,564.9127401658633,0.5299369044707911,22.489197383479198,108.86891281221816,0.12937733299986576 +12,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.13157487499847775 +13,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557427,0.13037904199882178 +14,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969 +15,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.13002729099753196 +16,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.13327900000149384 +17,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.13049987500198768 +18,577.1835894549931,0.5414480201266352,22.97770035412408,111.23372763476561,0.13218762500036974 +19,572.4775221883025,0.5370333228783325,22.790351639649234,110.32678326881744,0.13110983300066437 +20,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821 +21,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.12766529099826585 +22,550.3919260419447,0.516315127619085,21.911123228334922,106.07048903024578,0.12605175000135205 +23,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.12955520800096565 +24,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.12926866699854145 +25,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367845,0.13455883400092716 +26,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156 +27,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.12822808399869245 +28,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544233,0.13183754199781106 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..78559b30d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6487655f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..81c663303 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..25ff3fe7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..da3f206e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..13c5c5b1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..54365d2f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..580464520 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d4a9105d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ab35c5cd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..2045babe9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..603cb4a08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cfad2d732 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b3578d7e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b18f90b1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..37f02f072 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cb3071bf5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b63091f3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7e17cbe7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..68b72f16e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..e6fbf37e5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5280.146632019839,4.743466790750807,114.64491567504767,752.2737473782265,0.6850735419975535 +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585 +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048 +3,5269.918567599515,4.734278317912334,114.42283934559953,750.8165332351111,0.6837465000025986 +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337 +5,5263.781853767582,4.728765346342646,114.28959625808423,749.9422225326506,0.6829502910004521 +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321 +7,5262.373654944431,4.727500278378077,114.25902081263071,749.7415934441852,0.6827675839995209 +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202 +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963 +10,5299.006038748264,4.76040930688607,115.05439958614781,754.9606872610865,0.6875204589996429 +11,5278.689930447888,4.742158149909533,114.61328711612335,752.0662079997371,0.6848845419990539 +12,5264.9964191743065,4.729856462001642,114.31596744781433,750.1152642554716,0.6831078750001325 +13,5280.20732793269,4.743521317465122,114.64623353197393,752.2823948543278,0.68508141699931 +14,5175.084273188565,4.649083084235549,112.36375454293243,737.3052891336941,0.6714422080003715 +15,5301.849427752589,4.76296369074227,115.11613652554557,755.3657909543374,0.6878893749999406 +16,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437 +17,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943 +18,5232.454106576423,4.700621785417813,113.60939413770377,745.4788916028814,0.6788856669991219 +19,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411 +20,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461 +21,5283.768793744757,4.746720792022038,114.72356167760307,752.7898044812416,0.6855434999997669 +22,5270.446525563299,4.734752613654982,114.43430260608379,750.8917525317619,0.6838150000003225 +23,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389 +24,5253.691243355732,4.719700356537864,114.07050439181653,748.5045917551598,0.6816410829997039 +25,5232.72739613028,4.70086729752445,113.61532792326699,745.5178277482438,0.6789211249997607 +26,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278 +27,5286.654257518006,4.749312974121929,114.78621216328493,753.20090265652,0.6859178749982675 +28,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178 +29,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..3ce35341e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.13317024999923888 +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.12682562500049244 +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767625,0.1291754999983823 +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172 +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089053,0.12955499999952735 +5,574.3023135305887,0.5387451346440795,22.862996651458122,110.67845359844307,0.13152774999980466 +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967 +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.13104820900116465 +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084653,0.12873929100169335 +9,581.0269266320039,0.5450534020938123,23.130703751356158,111.97440829264755,0.13306783300140523 +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799495,0.12825512500057812 +11,534.6144979163302,0.5015145383830489,21.28302322263064,103.02989297906761,0.12243837500136578 +12,564.9127401658633,0.5299369044707911,22.489197383479198,108.86891281221816,0.12937733299986576 +13,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.13157487499847775 +14,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557427,0.13037904199882178 +15,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969 +16,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.13002729099753196 +17,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.13327900000149384 +18,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.13049987500198768 +19,577.1835894549931,0.5414480201266352,22.97770035412408,111.23372763476561,0.13218762500036974 +20,572.4775221883025,0.5370333228783325,22.790351639649234,110.32678326881744,0.13110983300066437 +21,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821 +22,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.12766529099826585 +23,550.3919260419447,0.516315127619085,21.911123228334922,106.07048903024578,0.12605175000135205 +24,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.12955520800096565 +25,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.12926866699854145 +26,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367845,0.13455883400092716 +27,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156 +28,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.12822808399869245 +29,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544233,0.13183754199781106 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c08a067c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..b81a99b29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e66089e1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e1596f341 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..914a1728c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..65237c7e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7151ac98e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c0ac2e079 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..adbd6a5d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6fc4bfd8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..173915d1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..719b07e57 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9d5761f48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6d9bcf3bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7ddae4e96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..cd0259c1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..15a644f7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c2e3cf79e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..73bc4f80d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..387df4d20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b54c2a672 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5266.955267504172,5.9290178909972004,113.87689111311941,750.0704477186123,0.680035332999978 +1,5288.670973052095,5.95346328689863,114.34640659417593,753.1629951498295,0.6828391250019195 +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001 +3,5398.076602054193,6.076621335293567,116.71186676390661,768.7435203224738,0.6969648749982298 +4,5305.467876791607,5.972371581677469,114.70957261344769,755.5550528887501,0.6850078330026008 +5,5313.715786732026,5.981656263835639,114.88790075456383,756.7296429863577,0.686072749998857 +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053 +7,5302.962655734788,5.969551451315166,114.65540720458961,755.1982827655415,0.6846843749990512 +8,5282.032111733405,5.945989912712749,114.20286770897447,752.2175506892748,0.6819819579977775 +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789 +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687 +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497 +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034 +13,5321.700680193805,5.990644868026885,115.06054221383481,757.8667767400492,0.6871037080018141 +14,5331.095193216626,6.001220282656504,115.26366107135789,759.2046553114891,0.6883166670013452 +15,5357.676119786506,6.031142463724653,115.83836754349363,762.9900619611441,0.6917486249985814 +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533 +17,5283.988405148097,5.948192114566884,114.24516474793825,752.4961476780284,0.6822345420005149 +18,5247.942934153031,5.907615684435091,113.46582526864715,747.3628892404057,0.6775805830002355 +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738 +20,5257.917355280346,5.918843902316692,113.68148232494295,748.7833528936396,0.678868415998295 +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691 +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859 +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158 +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561 +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575 +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268 +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813 +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286 +29,5284.043589125742,5.9482542352370125,114.24635788125613,752.5040064633639,0.6822416670001985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..4f86f613f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,581.4317776280168,0.5649808642284244,22.034253704908554,108.27692092095334,0.12902912500067032 +1,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199 +2,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056123,0.1326433750000433 +3,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.13095829200028675 +4,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.12964074999763397 +5,595.3991361810349,0.5785530331567643,22.56356829311381,110.87798717792579,0.1321287079990725 +6,575.798831243909,0.5595072952927381,21.820784516416786,107.22792753316124,0.12777908299904084 +7,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995 +8,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.13337787500131526 +9,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.12943299999824376 +10,599.6841637858541,0.5827168210551312,22.725956021150118,111.6759648822128,0.1330796250003914 +11,575.4691302135833,0.55918692275684,21.808289987516762,107.16652907892852,0.1277059170024586 +12,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468509,0.13053558399769827 +13,582.9858553137769,0.5664909711537129,22.093147874994806,108.56632847169394,0.12937400000009802 +14,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141 +15,601.3137204179325,0.5843002713406603,22.787710582285754,111.97942847222774,0.1334412500000326 +16,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170693,0.12872883300224203 +17,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534 +18,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.12940900000103284 +19,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.12893758300197078 +20,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666797,0.12906537500020931 +21,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853933,0.12268683300135308 +22,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881 +23,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684627,0.12761083299847087 +24,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817 +25,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.12885754200033261 +26,596.8328621274222,0.5799461935505104,22.617901548469902,111.14498226985663,0.13244687499900465 +27,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.12919720900026732 +28,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.13272929199956707 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3e5be234f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..c583ee7c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0eb6174d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..338b87712 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..44836c36e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7ae369114 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..bde71d48b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3dc84fe81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7a5fa02e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7a1aa21b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..323f5d9c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..308f039d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c1927d193 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..45ab1427a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..6ed248873 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..d5300cf67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6a1b82071 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3e697aad3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..05482e016 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c4e279ca1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b54c2a672 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5266.955267504172,5.9290178909972004,113.87689111311941,750.0704477186123,0.680035332999978 +1,5288.670973052095,5.95346328689863,114.34640659417593,753.1629951498295,0.6828391250019195 +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001 +3,5398.076602054193,6.076621335293567,116.71186676390661,768.7435203224738,0.6969648749982298 +4,5305.467876791607,5.972371581677469,114.70957261344769,755.5550528887501,0.6850078330026008 +5,5313.715786732026,5.981656263835639,114.88790075456383,756.7296429863577,0.686072749998857 +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053 +7,5302.962655734788,5.969551451315166,114.65540720458961,755.1982827655415,0.6846843749990512 +8,5282.032111733405,5.945989912712749,114.20286770897447,752.2175506892748,0.6819819579977775 +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789 +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687 +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497 +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034 +13,5321.700680193805,5.990644868026885,115.06054221383481,757.8667767400492,0.6871037080018141 +14,5331.095193216626,6.001220282656504,115.26366107135789,759.2046553114891,0.6883166670013452 +15,5357.676119786506,6.031142463724653,115.83836754349363,762.9900619611441,0.6917486249985814 +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533 +17,5283.988405148097,5.948192114566884,114.24516474793825,752.4961476780284,0.6822345420005149 +18,5247.942934153031,5.907615684435091,113.46582526864715,747.3628892404057,0.6775805830002355 +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738 +20,5257.917355280346,5.918843902316692,113.68148232494295,748.7833528936396,0.678868415998295 +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691 +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859 +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158 +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561 +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575 +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268 +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813 +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286 +29,5284.043589125742,5.9482542352370125,114.24635788125613,752.5040064633639,0.6822416670001985 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a1764a583 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,581.4317776280168,0.5649808642284244,22.034253704908554,108.27692092095334,0.12902912500067032 +1,520.8723160480156,0.5061348598351681,19.739259533571555,96.99925725546927,0.11559000000124797 +2,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199 +3,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056123,0.1326433750000433 +4,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.13095829200028675 +5,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.12964074999763397 +6,595.3991361810349,0.5785530331567643,22.56356829311381,110.87798717792579,0.1321287079990725 +7,575.798831243909,0.5595072952927381,21.820784516416786,107.22792753316124,0.12777908299904084 +8,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995 +9,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.13337787500131526 +10,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.12943299999824376 +11,599.6841637858541,0.5827168210551312,22.725956021150118,111.6759648822128,0.1330796250003914 +12,575.4691302135833,0.55918692275684,21.808289987516762,107.16652907892852,0.1277059170024586 +13,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468509,0.13053558399769827 +14,582.9858553137769,0.5664909711537129,22.093147874994806,108.56632847169394,0.12937400000009802 +15,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141 +16,601.3137204179325,0.5843002713406603,22.787710582285754,111.97942847222774,0.1334412500000326 +17,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170693,0.12872883300224203 +18,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534 +19,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.12940900000103284 +20,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.12893758300197078 +21,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666797,0.12906537500020931 +22,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853933,0.12268683300135308 +23,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881 +24,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684627,0.12761083299847087 +25,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817 +26,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.12885754200033261 +27,596.8328621274222,0.5799461935505104,22.617901548469902,111.14498226985663,0.13244687499900465 +28,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.12919720900026732 +29,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.13272929199956707 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9fc026c73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5162a9a92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..872b186fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..118cc1733 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b30723abb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3afd72f05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..0288828f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..090357cdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e7155fa4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6b3b8f3eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..600ebf880 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..77e72bbe3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..216660175 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..150f25158 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c37ef1b6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..ce703884d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7c9974de9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3165eb4c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..78cea2cc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d6b28c461 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..12e15f047 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924 +1,5273.426802443005,4.4973222381334175,113.86553636992609,749.9201548342323,0.6835363749996759 +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748 +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018 +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096 +5,5253.551246024907,4.480371821407624,113.43637693015745,747.0937042348667,0.6809601250024571 +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886 +7,5300.365365947626,4.520296179984014,114.44720254211377,753.7510170934825,0.687028125001234 +8,5279.4904036420885,4.502493442653253,113.99646360732457,750.7824436116101,0.6843223329997272 +9,5247.4468174506055,4.475165798188416,113.30456813487413,746.2256095038477,0.6801688749983441 +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533 +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705 +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357 +13,5277.8400593125725,4.501085983987045,113.96082883902015,750.547752485425,0.6841084169973328 +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567 +15,5321.702899266701,4.538493410494227,114.90792945977235,756.7853715824855,0.6897938750007597 +16,5253.426202615801,4.480265180977107,113.43367695244261,747.0759221405605,0.6809439169992402 +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378 +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265 +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317 +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039 +21,5253.3349120036255,4.480187325852603,113.43170577603107,747.0629399427254,0.6809320840002329 +22,5313.903441611766,4.531841820234043,114.73952104859231,755.6762312243596,0.6887829170009354 +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552 +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096 +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999 +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763 +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127 +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852 +29,5275.819074951675,4.49936243339088,113.91719109133355,750.2603536152749,0.6838464590000513 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..e2cf2d5bf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.12940900000103284 +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437 +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.12381244162341,0.12901279099969543 +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285 +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.12897220900049433 +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688 +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894871,0.1277482500008773 +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.12982766700224602 +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167937,0.1300582920011948 +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276 +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.12532024999745772 +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.13054654199731885 +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.33482488182419,0.12807137499839882 +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971 +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.13392179100264912 +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.12941049999790266 +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.72373114245721,0.12853541599906748 +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.13045508399954997 +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479165,0.13188725000145496 +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596355,0.130042582997703 +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.12899199999810662 +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381305,0.1297635419978178 +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451523,0.1310055829999328 +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.13412337499903515 +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.13446187500085216 +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.13003220799873816 +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.13173133300006157 +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.13028837500314694 +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921 +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.13093450000087614 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c21504c43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f11ef08a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a6b22ba8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cb6372040 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ee406c757 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e22cfce23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f89109207 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4402e4abc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..053a977c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f9ef4b4f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f6b9755e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4196bbb4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2d7ba8120 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..de4783529 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3b4608491 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..ff72b3c55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9bb9c1d39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..69bec9d99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..44dac5f17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ad6d0b101 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..12e15f047 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924 +1,5273.426802443005,4.4973222381334175,113.86553636992609,749.9201548342323,0.6835363749996759 +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748 +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018 +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096 +5,5253.551246024907,4.480371821407624,113.43637693015745,747.0937042348667,0.6809601250024571 +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886 +7,5300.365365947626,4.520296179984014,114.44720254211377,753.7510170934825,0.687028125001234 +8,5279.4904036420885,4.502493442653253,113.99646360732457,750.7824436116101,0.6843223329997272 +9,5247.4468174506055,4.475165798188416,113.30456813487413,746.2256095038477,0.6801688749983441 +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533 +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705 +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357 +13,5277.8400593125725,4.501085983987045,113.96082883902015,750.547752485425,0.6841084169973328 +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567 +15,5321.702899266701,4.538493410494227,114.90792945977235,756.7853715824855,0.6897938750007597 +16,5253.426202615801,4.480265180977107,113.43367695244261,747.0759221405605,0.6809439169992402 +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378 +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265 +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317 +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039 +21,5253.3349120036255,4.480187325852603,113.43170577603107,747.0629399427254,0.6809320840002329 +22,5313.903441611766,4.531841820234043,114.73952104859231,755.6762312243596,0.6887829170009354 +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552 +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096 +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999 +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763 +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127 +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852 +29,5275.819074951675,4.49936243339088,113.91719109133355,750.2603536152749,0.6838464590000513 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e2cf2d5bf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.12940900000103284 +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437 +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.12381244162341,0.12901279099969543 +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285 +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.12897220900049433 +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688 +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894871,0.1277482500008773 +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.12982766700224602 +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167937,0.1300582920011948 +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276 +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.12532024999745772 +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.13054654199731885 +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.33482488182419,0.12807137499839882 +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971 +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.13392179100264912 +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.12941049999790266 +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.72373114245721,0.12853541599906748 +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.13045508399954997 +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479165,0.13188725000145496 +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596355,0.130042582997703 +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.12899199999810662 +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381305,0.1297635419978178 +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451523,0.1310055829999328 +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.13412337499903515 +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.13446187500085216 +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.13003220799873816 +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.13173133300006157 +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.13028837500314694 +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921 +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.13093450000087614 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c21504c43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f11ef08a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a6b22ba8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cb6372040 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ee406c757 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e22cfce23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f89109207 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4402e4abc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..053a977c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f9ef4b4f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f6b9755e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4196bbb4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2d7ba8120 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..de4783529 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3b4608491 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..ff72b3c55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9bb9c1d39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..69bec9d99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..44dac5f17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ad6d0b101 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..ad3eea23d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 883 samples (with smell) vs 876 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 667.61 ms | 125.92 ms | +| **Average Power** | 7.811 W | 4.028 W | +| **Total Energy** | 4604.63 J | 444.29 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.58% | 0.00e+00 | +12.693 | large | βœ… | +| `gpu_mj` | +85.03% | 2.06e-296 | +2.501 | large | βœ… | +| `ane_mj` | +81.14% | 2.51e-31 | +0.575 | medium | βœ… | +| `dram_mj` | +87.28% | 0.00e+00 | +24.469 | large | βœ… | +| `time_s` | +81.01% | 0.00e+00 | +98.450 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.693, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.501, large) +- **`ane_mj`**: 81.1% lower energy (Cohen’s d = +0.575, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.469, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +98.450, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..1909cc898 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/with_smell.csv @@ -0,0 +1,884 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924 +1,5273.426802443005,4.4973222381334175,113.86553636992608,749.9201548342323,0.6835363749996759 +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748 +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018 +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096 +5,5253.551246024907,4.480371821407624,113.43637693015744,747.0937042348667,0.6809601250024571 +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886 +7,5300.365365947626,4.520296179984014,114.44720254211376,753.7510170934825,0.687028125001234 +8,5279.4904036420885,4.502493442653253,113.99646360732456,750.7824436116101,0.6843223329997272 +9,5247.4468174506055,4.475165798188416,113.30456813487412,746.2256095038477,0.6801688749983441 +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533 +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705 +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357 +13,5277.8400593125725,4.501085983987045,113.96082883902017,750.547752485425,0.6841084169973328 +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567 +15,5321.702899266701,4.538493410494227,114.90792945977236,756.7853715824855,0.6897938750007597 +16,5253.426202615801,4.480265180977107,113.4336769524426,747.0759221405605,0.6809439169992402 +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378 +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265 +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317 +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039 +21,5253.3349120036255,4.480187325852603,113.43170577603108,747.0629399427254,0.6809320840002329 +22,5313.903441611766,4.531841820234043,114.73952104859232,755.6762312243596,0.6887829170009354 +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552 +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096 +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999 +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763 +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127 +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852 +29,5275.819074951675,4.49936243339088,113.91719109133356,750.2603536152749,0.6838464590000513 +0,5280.146632019839,4.743466790750807,114.64491567504768,752.2737473782265,0.6850735419975535 +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585 +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048 +3,5269.918567599515,4.734278317912334,114.42283934559951,750.8165332351111,0.6837465000025986 +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337 +5,5263.781853767582,4.728765346342646,114.28959625808425,749.9422225326506,0.6829502910004521 +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321 +7,5262.373654944431,4.727500278378077,114.25902081263072,749.7415934441852,0.6827675839995209 +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202 +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963 +10,5299.006038748264,4.76040930688607,115.0543995861478,754.9606872610865,0.6875204589996429 +11,5278.689930447888,4.742158149909533,114.61328711612336,752.0662079997371,0.6848845419990539 +12,5264.9964191743065,4.729856462001642,114.31596744781432,750.1152642554716,0.6831078750001325 +13,5280.20732793269,4.743521317465122,114.64623353197392,752.2823948543278,0.68508141699931 +14,5301.849427752589,4.76296369074227,115.11613652554556,755.3657909543374,0.6878893749999406 +15,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437 +16,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943 +17,5232.454106576423,4.700621785417813,113.60939413770376,745.4788916028814,0.6788856669991219 +18,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411 +19,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461 +20,5283.768793744757,4.746720792022038,114.72356167760309,752.7898044812416,0.6855434999997669 +21,5270.446525563299,4.734752613654982,114.4343026060838,750.8917525317619,0.6838150000003225 +22,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389 +23,5253.691243355732,4.719700356537864,114.07050439181651,748.5045917551598,0.6816410829997039 +24,5232.72739613028,4.70086729752445,113.615327923267,745.5178277482438,0.6789211249997607 +25,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278 +26,5286.654257518006,4.749312974121929,114.78621216328492,753.20090265652,0.6859178749982675 +27,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178 +28,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675 +0,5614.990553964228,5.7756058115323325,109.76989542380524,759.4420867094653,0.6870545829988259 +1,5608.692244635915,5.769127340801201,109.64676703210608,758.5902239800331,0.6862839170025836 +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555 +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757 +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752 +5,5554.87393461145,5.713769572848289,108.59464945390276,751.3111574748722,0.679698667001503 +6,5565.841836903626,5.7250512089632934,108.80906575185728,752.794594806341,0.6810407080010918 +7,5597.4321653440575,5.75754517004395,109.4266388387544,757.0672689489005,0.684906124999543 +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146 +9,5600.578598587723,5.760781606143541,109.48814983236971,757.492832234412,0.68529112500255 +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432 +11,5601.160557946362,5.761380212289274,109.4995268092898,757.5715437523492,0.6853623339993646 +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837 +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055 +14,5770.126400037058,5.935179275733913,112.80271363360175,780.4246136670234,0.7060371250008757 +15,5596.661223842662,5.756752175973343,109.41156736763207,756.9629971042867,0.6848117920017103 +16,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294 +17,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648 +18,5610.2365140437805,5.77071578360995,109.67695662722264,758.7990904367581,0.6864728750006179 +19,5580.16526722144,5.739784357058483,109.08908072837164,754.7318760367998,0.6827933340027812 +20,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064 +21,5583.60488260023,5.743322361687386,109.1563232672146,755.1970929691598,0.6832142079983896 +22,5543.578786923836,5.702151330573483,108.37383569321165,749.7834593519398,0.6783165840024594 +23,5576.76786301207,5.736289771037868,109.02266339406076,754.2723682749679,0.6823776249984803 +24,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237 +25,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617 +26,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385 +27,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194 +28,5630.7145475367815,5.791779585608233,110.07729062127092,761.568797765411,0.6889785830026085 +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041 +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858 +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505 +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749 +4,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599 +5,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206 +6,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374 +7,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374 +8,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463 +9,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212 +10,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746 +11,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392 +12,4208.039275310504,2.255876626757966,0.0,669.3650396778748,0.6640276660000382 +13,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421 +14,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857 +15,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983 +16,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557 +17,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472 +18,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811 +19,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253 +20,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509 +21,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295 +22,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041 +23,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841 +24,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323 +25,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186 +26,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896 +27,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796 +28,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598 +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929 +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168 +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774 +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706 +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299 +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821 +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113 +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128 +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182 +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069 +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556 +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651 +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213 +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805 +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555 +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695 +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733 +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352 +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509 +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757 +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149 +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264 +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836 +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148 +24,4215.132051569963,2.019137723673603,0.0,667.6063729307034,0.6637141249993874 +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339 +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552 +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064 +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687 +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651 +0,5266.955267504172,5.9290178909972,113.8768911131194,750.0704477186123,0.680035332999978 +1,5288.670973052095,5.95346328689863,114.34640659417592,753.1629951498295,0.6828391250019195 +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001 +3,5398.076602054193,6.076621335293567,116.7118667639066,768.7435203224738,0.6969648749982298 +4,5305.467876791607,5.972371581677469,114.70957261344768,755.5550528887501,0.6850078330026008 +5,5313.715786732026,5.981656263835639,114.88790075456384,756.7296429863577,0.686072749998857 +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053 +7,5302.962655734788,5.969551451315166,114.6554072045896,755.1982827655415,0.6846843749990512 +8,5282.032111733405,5.945989912712749,114.20286770897448,752.2175506892748,0.6819819579977775 +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789 +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687 +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497 +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034 +13,5321.700680193805,5.990644868026885,115.0605422138348,757.8667767400492,0.6871037080018141 +14,5331.095193216626,6.001220282656504,115.26366107135787,759.2046553114891,0.6883166670013452 +15,5357.676119786506,6.031142463724653,115.83836754349365,762.9900619611441,0.6917486249985814 +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533 +17,5283.988405148097,5.948192114566884,114.24516474793823,752.4961476780284,0.6822345420005149 +18,5247.942934153031,5.907615684435091,113.46582526864717,747.3628892404057,0.6775805830002355 +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738 +20,5257.917355280346,5.918843902316692,113.68148232494296,748.7833528936396,0.678868415998295 +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691 +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859 +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158 +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561 +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575 +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268 +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813 +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286 +29,5284.043589125742,5.9482542352370125,114.24635788125612,752.5040064633639,0.6822416670001985 +0,4282.915524281316,1.9366110579895248,0.0,675.6769201633797,0.6687819170001603 +1,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549 +2,4262.6173435256915,1.927432805211586,0.0,672.4746594183043,0.6656123339998885 +3,4282.052840567513,1.9362209772582504,0.0,675.540822341344,0.6686472080000385 +4,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313 +5,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988 +6,4289.356664180724,1.9395235559560455,0.0,676.6930806608025,0.6697877080005128 +7,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468 +8,4270.16291377157,1.9308446947747024,0.0,673.6650559217393,0.6667905829999654 +9,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788 +10,4291.628771306302,1.9405509373646648,0.0,677.051530491575,0.6701424999992014 +11,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963 +12,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255 +13,4277.141731638064,1.934000315233552,0.0,674.766041018382,0.6678803329996299 +14,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693 +15,4245.205514749945,1.9195596776759711,0.0,669.7277523698441,0.6628934580003261 +16,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677 +17,4243.843590196685,1.9189438546145456,0.0,669.5128938272403,0.6626807920001738 +18,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941 +19,4297.038595942507,1.9429971042696297,0.0,677.904989689659,0.6709872499995981 +20,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116 +21,4266.908322293752,1.9293730622362015,0.0,673.1516084036514,0.6662823750011739 +22,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164 +23,4269.309579982598,1.9304588418101711,0.0,673.5304331529419,0.6666573340007744 +24,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687 +25,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072 +26,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284 +27,4260.173921548421,1.926327960160664,0.0,672.0891827898483,0.6652307910007949 +28,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389 +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697 +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935 +2,4294.070878255385,2.008405265665155,0.0,675.7279516330415,0.6701891660013644 +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936 +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585 +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677 +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344 +7,4270.762102767754,1.9975033805419675,0.0,672.0600123833451,0.6665512920008041 +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336 +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748 +10,4261.827183417434,1.993324376613004,0.0,670.6539865114453,0.6651567909975711 +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531 +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177 +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957 +14,4268.013923464058,1.9962180133598648,0.0,671.6275505949264,0.6661223750015779 +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092 +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146 +17,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839 +18,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792 +19,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211 +20,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756 +21,4251.740304272998,1.988606582761394,0.0,669.0666847700711,0.6635825000012119 +22,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028 +23,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502 +24,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149 +25,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017 +26,4263.9447802230125,1.994314810328576,0.0,670.9872179350494,0.6654872910003178 +27,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692 +28,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221 +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583 +1,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217 +2,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334 +3,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716 +4,4423.116844673827,3.4563989666894583,10.469868714632144,687.3200352983833,0.6737360840015754 +5,4372.552212189364,3.41688575697609,10.350178215306212,679.4626609163522,0.6660340000016731 +6,4367.830293810635,3.4131958626372865,10.33900105963916,678.7289093061835,0.6653147500001069 +7,4402.0599576700315,3.4399442798617175,10.420025391425783,684.0479489332786,0.6705286659998819 +8,4377.090584625613,3.420432221234205,10.36092090315604,680.1678908283396,0.6667252919978637 +9,4383.548140369233,3.4254784114623615,10.37620645025492,681.1713478016708,0.6677089170007093 +10,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672 +11,4356.017836464776,3.403965139869143,10.311040035331771,676.8933397553377,0.6635154579998925 +12,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577 +13,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067 +14,4402.389306963763,3.440201646465068,10.420804987350497,684.099127406772,0.670578833000036 +15,4315.28000684407,3.372130983741042,10.214610358516552,670.5629787280001,0.6573102080001263 +16,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107 +17,4374.957761226749,3.4187655484216073,10.355872340849915,679.8364656579744,0.6664004169979307 +18,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159 +19,4380.030910237862,3.4227299083098126,10.367880887307392,680.624795941763,0.6671731669994188 +20,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498 +21,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315 +22,4376.213328707104,3.419746698658895,10.35884436875316,680.0315716692378,0.666591667002649 +23,4380.196677962882,3.422859445786119,10.368273272672516,680.6505550348669,0.6671984169988718 +24,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699 +25,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136 +26,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095 +27,4405.482821650499,3.4426190415604627,10.428127582202569,684.5798369829262,0.6710500420012977 +28,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227 +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615 +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135 +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816 +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988 +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868 +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682 +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318 +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657 +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435 +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166 +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583 +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683 +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049 +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155 +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538 +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964 +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264 +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035 +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506 +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285 +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116 +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129 +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858 +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954 +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173 +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859 +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842 +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256 +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392 +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179 +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888 +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684 +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505 +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456 +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906 +6,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492 +7,4279.214199576053,3.223576106541973,0.0,674.2591301611349,0.6668920000010985 +8,4289.831616235325,3.23157431580652,0.0,675.9320751896751,0.6685466659982922 +9,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947 +10,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687 +11,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766 +12,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288 +13,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154 +14,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639 +15,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175 +16,4306.362254109225,3.244027015482428,0.0,678.5367434754947,0.6711228750027658 +17,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187 +18,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203 +19,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345 +20,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055 +21,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631 +22,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103 +23,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301 +24,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826 +25,4277.992096765777,3.222655483914731,0.0,674.0665681767628,0.6667015419989184 +26,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038 +27,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906 +28,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585 +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987 +1,4232.037816623077,1.633116390355264,0.0,670.8442184708318,0.6674780419998569 +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916 +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375 +4,4243.973240627595,1.637722194323049,0.0,672.7361699455987,0.6693605000000389 +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998 +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657 +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266 +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238 +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002 +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034 +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991 +12,4237.355510600818,1.635168454531022,0.0,671.6871561796002,0.6683167499977571 +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947 +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404 +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294 +16,4265.879642022094,1.646175734844482,0.0,676.208677366321,0.6728155829987372 +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048 +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143 +19,4242.011171658709,1.636965044427198,0.0,672.4251513108294,0.6690510420012288 +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099 +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737 +22,4208.176472784298,1.6239084500183545,0.0,667.0618220810089,0.6637146249995567 +23,4214.574135928659,1.6263772674046235,0.0,668.0759518024544,0.6647236659991904 +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738 +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659 +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104 +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474 +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761 +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561 +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494 +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887 +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709 +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783 +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572 +5,4241.797005501357,1.7569867632493603,0.0,670.3401762201004,0.6658014579988958 +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688 +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704 +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198 +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689 +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537 +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878 +12,4249.790443577442,1.7602977102075297,0.0,671.6033961906878,0.6670561249993625 +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807 +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101 +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622 +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319 +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364 +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109 +19,4259.435815226876,1.7642929014655495,0.0,673.1276747270732,0.6685700829984853 +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986 +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958 +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543 +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503 +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133 +25,4247.644486345279,1.7594088372967045,0.0,671.2642660184275,0.6667192909990263 +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146 +27,4250.709990274736,1.7606785939163063,0.0,671.7487141053139,0.6672004590000142 +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455 +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169 +0,4233.805184421818,2.86436991299503,0.0,671.3616783283818,0.6663879580009962 +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342 +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766 +3,4232.574753845726,2.863537468381105,0.0,671.1665668623015,0.6661942920000001 +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978 +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734 +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708 +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662 +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107 +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705 +10,4212.616188554973,2.850034552815756,0.0,668.0017032686884,0.6630528750029043 +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905 +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128 +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049 +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436 +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658 +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247 +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384 +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947 +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966 +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179 +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067 +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647 +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332 +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924 +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472 +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219 +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785 +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212 +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668 +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083 +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339 +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718 +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503 +4,4332.218872799026,3.001398692530848,0.0,676.281823175923,0.6688972499978263 +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471 +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487 +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688 +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175 +9,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898 +10,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943 +11,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758 +12,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134 +13,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097 +14,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611 +15,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152 +16,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642 +17,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146 +18,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455 +19,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713 +20,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074 +21,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953 +22,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337 +23,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074 +24,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496 +25,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735 +26,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393 +27,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164 +28,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869 +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888 +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896 +2,4296.3093777503855,1.8312061917425837,0.0,673.4510480068589,0.6612518339970848 +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919 +4,4281.318895847793,1.824816832675615,0.0,671.1012740823575,0.6589446250000037 +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367 +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265 +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202 +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616 +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722 +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922 +11,4294.81365551898,1.8305686734517777,0.0,673.2165919619837,0.6610216250010126 +12,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633 +13,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174 +14,4304.474772925574,1.8346865095894,0.0,674.7309823539053,0.6625085830019088 +15,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507 +16,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669 +17,4304.719237909603,1.8347907073445096,0.0,674.7693024992254,0.66254620899781 +18,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735 +19,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411 +20,4289.335939610233,1.828233919036592,0.0,672.3579541882391,0.6601785410020966 +21,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537 +22,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059 +23,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462 +24,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423 +25,4296.307207702341,1.831205266807932,0.0,673.450707849528,0.6612515000015264 +26,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959 +27,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385 +28,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169 +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055 +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373 +2,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072 +3,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403 +4,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909 +5,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192 +6,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766 +7,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976 +8,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494 +9,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305 +10,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639 +11,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842 +12,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747 +13,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965 +14,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545 +15,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915 +16,4227.847230305918,1.629023238670687,0.0,669.462060349217,0.6648805420009012 +17,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213 +18,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505 +19,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857 +20,4215.308450834855,1.6241919469919075,0.0,667.4765966648173,0.6629086659995664 +21,4231.468303978479,1.6304184672208717,0.0,670.0354423352385,0.6654500000004191 +22,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565 +23,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735 +24,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721 +25,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212 +26,4228.263999257775,1.629183823069969,0.0,669.5280539828562,0.6649460840017127 +27,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414 +28,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668 +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123 +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618 +2,4259.939212365175,1.800396943474364,0.0,670.4811580235084,0.6678189169979305 +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758 +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047 +5,4269.997117263699,1.8046477602898936,0.0,672.0641936931438,0.6693956669987529 +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345 +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504 +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013 +9,4296.453269566179,1.8158290409061095,0.0,676.2281854189235,0.6735431250017427 +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246 +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127 +12,4258.273787900644,1.799693077769701,0.0,670.2190332212722,0.6675578329995915 +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711 +14,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011 +15,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155 +16,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318 +17,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518 +18,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639 +19,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803 +20,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353 +21,4280.57356799962,1.8091177324252912,0.0,673.7288444272706,0.6710537079998176 +22,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939 +23,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774 +24,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006 +25,4258.146210229622,1.7996391590545475,0.0,670.198953492351,0.6675378330000967 +26,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034 +27,4263.6413570172435,1.8019615972366845,0.0,671.0638466746244,0.6683992920006858 +28,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724 +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416 +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251 +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694 +3,4252.917010990448,1.8079994850813177,0.0,673.0110675855475,0.6701307500006806 +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295 +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529 +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722 +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746 +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708 +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747 +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627 +11,4218.894760122639,1.7935359505492905,0.0,667.6271507776164,0.6647698749984556 +12,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405 +13,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344 +14,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605 +15,4236.082134553483,1.8008426447642405,0.0,670.3470000445554,0.6674780839966843 +16,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561 +17,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166 +18,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142 +19,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264 +20,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589 +21,4223.751874950823,1.7956008065259397,0.0,668.3957742958872,0.6655352090019733 +22,4240.11870444225,1.802558670790971,0.0,670.9857748438761,0.6681141250010114 +23,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789 +24,4245.349196909234,1.8047822570172225,0.0,671.8134842278367,0.6689382919976197 +25,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449 +26,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376 +27,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237 +28,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428 +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636 +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234 +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285 +3,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504 +4,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946 +5,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274 +6,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965 +7,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027 +8,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538 +9,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695 +10,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498 +11,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783 +12,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614 +13,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265 +14,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494 +15,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688 +16,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763 +17,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674 +18,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219 +19,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243 +20,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514 +21,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831 +22,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491 +23,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778 +24,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625 +25,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292 +26,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944 +27,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629 +28,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866 +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385 +1,4235.03031838744,2.499742443800431,0.0,671.8641090950546,0.6674069170003349 +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319 +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128 +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237 +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381 +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611 +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384 +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259 +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215 +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887 +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787 +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297 +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471 +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294 +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329 +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508 +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221 +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391 +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437 +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421 +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773 +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718 +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409 +24,4223.243286387955,2.492785104192349,0.0,669.9941617374582,0.6655493750004098 +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896 +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204 +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584 +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693 +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033 +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203 +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171 +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709 +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271 +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992 +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234 +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881 +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039 +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999 +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505 +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424 +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857 +12,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828 +13,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863 +14,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767 +15,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978 +16,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894 +17,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856 +18,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611 +19,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634 +20,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011 +21,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656 +22,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471 +23,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497 +24,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462 +25,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372 +26,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194 +27,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452 +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754 +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034 +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907 +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888 +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375 +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376 +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414 +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597 +8,4249.175090223917,1.6719688560820003,0.0,674.1044033951409,0.6699446659986279 +9,4241.42578773114,1.6689196542606657,0.0,672.8750262048151,0.6687228750015493 +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961 +11,4233.126786808715,1.6656541566560097,0.0,671.5584428805699,0.6674144159987918 +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814 +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955 +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012 +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068 +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584 +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977 +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389 +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907 +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867 +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752 +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945 +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916 +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299 +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818 +26,4236.9941789942895,1.6671759012655485,0.0,672.1719798722437,0.6680241670001124 +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245 +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405 +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837 +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682 +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186 +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859 +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746 +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048 +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973 +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401 +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178 +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143 +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177 +10,5419.407102652684,4.659793684661683,94.0004423869882,754.4842925683155,0.6892624579995754 +11,5393.631146430152,4.637630625908802,93.55335449675025,750.8957904079389,0.6859841660007078 +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406 +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715 +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774 +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974 +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185 +17,5448.457186507701,4.684771951605358,94.50432052015412,758.5286154160444,0.6929571670007135 +18,5396.272993802559,4.639902177661347,93.59917774217568,751.2635856866639,0.6863201670021226 +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951 +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026 +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316 +22,5408.767675900578,4.650645537521451,93.81589990798668,753.0030824996963,0.6879092919989489 +23,5393.128921742544,4.637198795750398,93.54464333297923,750.8258712025788,0.6859202910018212 +24,5398.73039199595,4.642015133629659,93.64180168847167,751.6057021400655,0.686632708999241 +25,5350.694712888532,4.6007123951744475,92.80861551128883,744.9182242143605,0.6805233340019186 +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455 +27,5407.841192231741,4.649848914815828,93.7998299075078,752.8740983945686,0.6877914579999924 +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925 +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382 +0,5371.099961810868,5.280857460896809,106.01822699977645,756.2655808083043,0.6856771669990849 +1,5363.880609010041,5.273759404004894,105.87572676900965,755.2490761672071,0.6847555409985944 +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719 +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525 +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345 +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059 +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297 +7,5372.151900565224,5.281891725509057,106.03899084376413,756.4136966651483,0.6858114579990797 +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158 +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337 +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927 +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227 +12,5366.100043041169,5.27594154822965,105.91953538597753,755.5615785556473,0.6850388749990088 +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364 +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973 +15,5366.646735355581,5.276479055296713,105.93032635064031,755.6385543303717,0.685108665998996 +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709 +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213 +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005 +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962 +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437 +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114 +22,5365.320631859079,5.275175232319444,105.90415086656505,755.4518353271649,0.6849393749980663 +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881 +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078 +25,5378.330406530226,5.287966423346458,106.16094616996811,757.2836472219007,0.6866002089991525 +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997 +27,5403.673998780062,5.3128842053967,106.66119430074896,760.8520944019692,0.6898355839985015 +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381 +29,5330.02779723041,5.240475370021187,105.20751818802027,750.4825075789203,0.6804338750007446 +0,4233.7459268513485,1.8343208499560768,0.0,671.7282952539152,0.6684168749998207 +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618 +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474 +3,4217.2807193634335,1.82718710269874,0.0,669.1159170082785,0.6658173750001879 +4,4233.164257526582,1.8340688347929952,0.0,671.6360073011949,0.6683250419991964 +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054 +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184 +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005 +8,4236.48775285413,1.8355087787290232,0.0,672.1633147705684,0.6688497499999357 +9,4259.023032178145,1.845272456908542,0.0,675.7387737199081,0.6724075830024958 +10,4220.165585871843,1.828437005474472,0.0,669.5736314047516,0.6662728330011305 +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739 +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104 +13,4233.0040582703405,1.833999426557133,0.0,671.6105900052222,0.668299750002916 +14,4226.978850104824,1.831388933354592,0.0,670.6546273944516,0.667348500002845 +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113 +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328 +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272 +18,4233.944921816377,1.834407066894857,0.0,671.7598678968967,0.6684482919990842 +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066 +20,4249.650576202317,1.8412117287239056,0.0,674.2517350586942,0.670927874998597 +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719 +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693 +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316 +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798 +25,4220.752005679336,1.828691078840776,0.0,669.6666730714923,0.6663654160001897 +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681 +27,4221.91720018277,1.829195913237745,0.0,669.8515434276624,0.6665493750006135 +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876 +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709 +0,4252.8818824273885,2.916330819811958,0.0,674.9126980010802,0.6707283750001807 +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045 +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782 +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198 +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159 +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758 +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135 +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865 +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883 +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335 +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151 +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731 +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696 +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756 +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148 +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991 +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702 +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562 +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955 +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849 +20,4236.875066042591,2.905354457608498,0.0,672.3724902240174,0.6682039160004933 +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241 +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549 +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001 +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152 +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356 +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508 +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006 +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678 +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801 +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437 +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811 +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996 +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752 +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475 +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028 +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979 +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447 +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314 +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629 +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477 +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285 +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075 +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229 +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999 +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096 +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847 +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059 +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166 +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332 +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261 +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364 +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932 +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939 +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151 +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543 +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614 +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847 +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008 +29,4236.218136169378,2.099183099819649,0.0,670.8389420423648,0.6676307919988176 +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575 +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671 +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872 +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984 +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695 +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884 +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729 +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931 +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438 +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557 +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739 +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657 +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443 +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984 +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266 +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819 +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884 +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955 +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664 +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512 +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685 +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929 +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905 +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121 +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751 +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741 +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306 +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247 +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952 +0,4220.528551913251,1.8985583643147872,0.0,669.9579463127654,0.6673571669998637 +1,4206.953299792034,1.8924516864081216,0.0,667.8030389546134,0.6652106250003271 +2,4215.018030714928,1.8960795169419695,0.0,669.0832176100137,0.6664858339972852 +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112 +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162 +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398 +6,4233.671377624534,1.9044705199554777,0.0,672.0442111997277,0.6694353329985461 +7,4228.464944991696,1.902128463480386,0.0,671.217752884991,0.6686120829981519 +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751 +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449 +10,4221.611053511575,1.899045315756675,0.0,670.1297803706974,0.6675283339973248 +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534 +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175 +13,4230.499504402044,1.9030436876611256,0.0,671.54071462484,0.6689337909992901 +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926 +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654 +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086 +17,4230.842860190899,1.9031981424875408,0.0,671.5952182104279,0.6689880830017501 +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248 +19,4227.523423400034,1.9017049303444185,0.0,671.0682977008356,0.6684632079995936 +20,4219.778073043047,1.8982207696465505,0.0,669.8388168538721,0.6672385000019858 +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676 +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166 +23,4221.082448049655,1.8988075284016537,0.0,670.0458706363308,0.6674447500008682 +24,4206.322456585602,1.8921679085278371,0.0,667.7029002127881,0.665110874997481 +25,4242.370638791378,1.9083837869428983,0.0,673.4251138696396,0.670810874999006 +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935 +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882 +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524 +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..b8c5abca6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/cleaned/mac/without_smell.csv @@ -0,0 +1,877 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.1294090000010328 +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437 +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.1238124416234,0.1290127909996954 +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285 +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.1289722090004943 +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688 +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894872,0.1277482500008773 +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.129827667002246 +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167936,0.1300582920011948 +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276 +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.1253202499974577 +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.1305465419973188 +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.3348248818242,0.1280713749983988 +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971 +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.1339217910026491 +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.1294104999979026 +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.7237311424572,0.1285354159990674 +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.1304550839995499 +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479164,0.1318872500014549 +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596356,0.130042582997703 +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.1289919999981066 +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381303,0.1297635419978178 +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451525,0.1310055829999328 +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.1341233749990351 +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.1344618750008521 +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.1300322079987381 +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.1317313330000615 +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.1302883750031469 +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921 +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.1309345000008761 +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.1331702499992388 +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.1268256250004924 +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767624,0.1291754999983823 +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172 +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089052,0.1295549999995273 +5,574.3023135305887,0.5387451346440795,22.86299665145812,110.67845359844308,0.1315277499998046 +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967 +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.1310482090011646 +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084652,0.1287392910016933 +9,581.0269266320039,0.5450534020938123,23.13070375135616,111.97440829264757,0.1330678330014052 +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799497,0.1282551250005781 +11,564.9127401658633,0.5299369044707911,22.4891973834792,108.86891281221816,0.1293773329998657 +12,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.1315748749984777 +13,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557429,0.1303790419988217 +14,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969 +15,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.1300272909975319 +16,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.1332790000014938 +17,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.1304998750019876 +18,577.1835894549931,0.5414480201266352,22.97770035412408,111.2337276347656,0.1321876250003697 +19,572.4775221883025,0.5370333228783325,22.79035163964923,110.32678326881744,0.1311098330006643 +20,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821 +21,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.1276652909982658 +22,550.3919260419447,0.516315127619085,21.91112322833492,106.07048903024578,0.126051750001352 +23,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.1295552080009656 +24,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.1292686669985414 +25,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367843,0.1345588340009271 +26,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156 +27,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.1282280839986924 +28,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544232,0.131837541997811 +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.1291073329994105 +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893635,0.1292414579984324 +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.1296916249993955 +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185 +4,570.7923075604117,0.4995848181471686,22.61453943479517,108.6430451197376,0.1289150839984358 +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.1188811249994614 +6,546.1066178825615,0.4779787179506606,21.636503299233237,103.944438530337,0.1233397500000137 +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137712,0.1353968750008789 +8,564.8324897164598,0.4943684995767823,22.378414080842347,107.50866970796427,0.1275690420006867 +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427 +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.1266568329992878 +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681 +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.127020125000854 +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.1180574170030013 +14,565.4239499832644,0.4948861739846519,22.40184747570525,107.62124663586232,0.127702625002712 +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.1330269160025636 +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177 +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.1327920000003359 +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.1297199580003507 +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.1315104159984912 +20,573.9317008573986,0.5023325658105368,22.73892081235696,109.2405886449314,0.1296241250020102 +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.1326278329979686 +22,569.2309991369702,0.4982182860925752,22.55268108379057,108.34586994893202,0.1285624580013973 +23,586.1692027690232,0.5130434147237337,23.22376523982768,111.56984125525462,0.1323879999981727 +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.9929550276332,0.1352632499983883 +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.1295764169990434 +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880932,0.1320039999991422 +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889296,0.1308776250007213 +28,569.554032432905,0.4985010203345533,22.56547952047745,108.40735522208752,0.1286354160001792 +29,569.8029068334558,0.4987188471526337,22.575339814442557,108.45472529412608,0.1286916249991918 +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892 +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.1231860420011798 +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.1267482919975009 +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.1252969589986605 +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.1273789999977452 +5,364.7452495438632,0.775049957456472,0.0,79.9986347392028,0.1277264160016784 +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789 +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.1272880409997014 +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.1274361249998037 +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.1269027079979423 +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.1268887499973061 +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329 +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.1277072500015492 +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.127331707997655 +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511 +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.1237031659984495 +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.1275474169997323 +17,363.6220179678712,0.7726631941298076,0.0,79.75227925496361,0.127333083000849 +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.1279127499983587 +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.1260935409991361 +20,362.955814476415,0.7712475732591968,0.0,79.6061625616232,0.1270997920000809 +21,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.1263032079987169 +22,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.1252500000009604 +23,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.126944709001691 +24,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.1269748750019061 +25,362.2602175158703,0.7697694939823556,0.0,79.45359907452662,0.1268562080003903 +26,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.1222566659998847 +27,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758 +28,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.1265295829980459 +0,376.19058039632665,0.0,0.0,81.35316209688087,0.127241165999294 +1,373.3111818811339,0.0,0.0,80.73047724947932,0.1262672500015469 +2,375.9587422141797,0.0,0.0,81.30302588881162,0.1271627499991154 +3,358.0380640968126,0.0,0.0,77.42758639685981,0.1211013329993875 +4,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658 +5,375.96440985647655,0.0,0.0,81.304251545823,0.127164666999306 +6,375.1544485619503,0.0,0.0,81.12909321938014,0.126890708997962 +7,372.8164561803528,0.0,0.0,80.62349025345529,0.1260999160003848 +8,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354 +9,341.7689728538709,0.0,0.0,73.9093111235619,0.1155985420009528 +10,376.4109650344787,0.0,0.0,81.40082141671914,0.1273157079995144 +11,377.2984136638453,0.0,0.0,81.59273678079191,0.1276158750006288 +12,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929 +13,331.6252896252523,0.0,0.0,71.71568706979686,0.1121675840004172 +14,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419 +15,355.2765537051657,0.0,0.0,76.83039546696682,0.1201672909992339 +16,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539 +17,377.2072553916621,0.0,0.0,81.57302333213093,0.1275850419988273 +18,375.10048919039974,0.0,0.0,81.11742422571268,0.1268724580004345 +19,372.6835400780478,0.0,0.0,80.5947464576784,0.1260549590006121 +20,376.0683787140708,0.0,0.0,81.32673534995224,0.1271998330012138 +21,374.1239784649677,0.0,0.0,80.90624872192488,0.1265421669995703 +22,376.20314854727656,0.0,0.0,81.35588002464081,0.1272454169993579 +23,374.47284738731366,0.0,0.0,80.98169343391177,0.1266601669994997 +24,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582 +25,377.63409948635586,0.0,0.0,81.66533057913625,0.127729416002694 +26,377.7004998759669,0.0,0.0,81.67969000741759,0.127751874999376 +27,370.2482309866334,0.0,0.0,80.0680982490467,0.1252312499964318 +28,376.1321921537387,0.0,0.0,81.3405353369051,0.127221416998509 +0,581.4317776280168,0.5649808642284244,22.03425370490855,108.27692092095334,0.1290291250006703 +1,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199 +2,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056125,0.1326433750000433 +3,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.1309582920002867 +4,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.1296407499976339 +5,595.3991361810349,0.5785530331567643,22.56356829311381,110.8779871779258,0.1321287079990725 +6,575.798831243909,0.5595072952927381,21.820784516416783,107.22792753316124,0.1277790829990408 +7,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995 +8,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.1333778750013152 +9,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.1294329999982437 +10,599.6841637858541,0.5827168210551312,22.72595602115012,111.6759648822128,0.1330796250003914 +11,575.4691302135833,0.55918692275684,21.80828998751676,107.16652907892852,0.1277059170024586 +12,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468507,0.1305355839976982 +13,582.9858553137769,0.5664909711537129,22.09314787499481,108.56632847169394,0.129374000000098 +14,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141 +15,601.3137204179325,0.5843002713406603,22.78771058228575,111.97942847222774,0.1334412500000326 +16,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170692,0.128728833002242 +17,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534 +18,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.1294090000010328 +19,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.1289375830019707 +20,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666796,0.1290653750002093 +21,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853932,0.122686833001353 +22,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881 +23,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684628,0.1276108329984708 +24,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817 +25,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.1288575420003326 +26,596.8328621274222,0.5799461935505104,22.617901548469906,111.14498226985664,0.1324468749990046 +27,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.1291972090002673 +28,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.132729291999567 +0,361.1273800704231,0.0,0.0,78.14745763956928,0.1268132500008505 +1,362.07910759150786,0.0,0.0,78.3534101378924,0.1271474580025824 +2,357.35440047061826,0.0,0.0,77.33099015545547,0.1254883330002485 +3,363.2426363907271,0.0,0.0,78.60519613520911,0.1275560419999237 +4,362.3479798378803,0.0,0.0,78.41159371422422,0.1272418750013457 +5,352.9112606909941,0.0,0.0,76.36950095004781,0.123928082997736 +6,360.94382237042606,0.0,0.0,78.10773601120054,0.1267487920013081 +7,360.55380282733665,0.0,0.0,78.02333633007905,0.1266118329986056 +8,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646 +9,364.2208248292936,0.0,0.0,78.81687473889593,0.1278995419997954 +10,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028 +11,374.00840463719953,0.0,0.0,80.93489325713479,0.1313365419991896 +12,360.17292159439404,0.0,0.0,77.94091416643339,0.1264780829988012 +13,360.17102501617666,0.0,0.0,77.94050374957197,0.126477416997659 +14,362.5744923942769,0.0,0.0,78.46061071316345,0.1273214169996208 +15,360.86337170818086,0.0,0.0,78.09032660092915,0.1267205410003953 +16,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175 +17,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644 +18,361.46791779675897,0.0,0.0,78.2211495250705,0.1269328330017742 +19,362.3516590767534,0.0,0.0,78.4123898963468,0.1272431670004152 +20,360.9834510950976,0.0,0.0,78.1163116115385,0.126762707997841 +21,364.26057316947674,0.0,0.0,78.82547622386255,0.1279135000004316 +22,364.3102884882237,0.0,0.0,78.83623454898611,0.1279309579986147 +23,362.5480314767952,0.0,0.0,78.45488460779974,0.127312125001481 +24,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774 +25,360.08998204684286,0.0,0.0,77.92296616487883,0.1264489580025838 +26,362.7770357881926,0.0,0.0,78.50444081902006,0.1273925420027808 +27,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133 +28,369.760449773745,0.0,0.0,80.0156417933386,0.1298448330016981 +0,492.1706690195863,0.0,0.0,92.06965491809224,0.1276172920006502 +1,486.08444962833966,0.0,0.0,90.9311146628915,0.1260391670002718 +2,486.6206809901031,0.0,0.0,91.03142668784857,0.1261782090004999 +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815 +4,491.069285551624,0.0,0.0,91.86362070636284,0.1273317090017371 +5,491.66914718394423,0.0,0.0,91.97583595396456,0.1274872499998309 +6,489.3934208087073,0.0,0.0,91.55011911376064,0.126897165999253 +7,484.9412836048319,0.0,0.0,90.71726424895256,0.1257427500022458 +8,489.216660608546,0.0,0.0,91.5170528388757,0.1268513329996494 +9,486.77108895533576,0.0,0.0,91.05956328827516,0.1262172090027888 +10,481.332938877034,0.0,0.0,90.04225642173755,0.124807125001098 +11,494.5105077458341,0.0,0.0,92.50736516303382,0.1282240000000456 +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553 +13,482.32457080883734,0.0,0.0,90.22775957240025,0.125064249998104 +14,487.23500493783496,0.0,0.0,91.1463473798684,0.1263375000016822 +15,490.8859305301352,0.0,0.0,91.8293207477944,0.1272841659992991 +16,492.7372712254749,0.0,0.0,92.17564837291538,0.1277642090026347 +17,491.3188354948492,0.0,0.0,91.91030365316124,0.127396416002739 +18,487.494200264288,0.0,0.0,91.19483467455105,0.1264047080003365 +19,491.90504470972667,0.0,0.0,92.019964962786,0.1275484170000709 +20,489.6739895004024,0.0,0.0,91.6026046929534,0.1269699160002346 +21,497.94691303592106,0.0,0.0,93.1502085284202,0.129115042000194 +22,489.3804086070156,0.0,0.0,91.54768494001787,0.1268937920031021 +23,489.13647389090073,0.0,0.0,91.50205242563018,0.1268305410012544 +24,488.2921993203388,0.0,0.0,91.34411520331948,0.1266116250008053 +25,488.2168333511135,0.0,0.0,91.33001660050562,0.1265920829973765 +26,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081 +27,480.867734774439,0.0,0.0,89.95523136338183,0.1246864999993704 +28,492.06428817424865,0.0,0.0,92.04975440728032,0.1275897080013237 +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888 +1,414.74347979123286,0.0,0.0,83.8936897077914,0.128032249998796 +2,413.8073026522728,0.0,0.0,83.70432119873855,0.1277432499991846 +3,414.58259013722255,0.0,0.0,83.86114518962916,0.1279825829988112 +4,405.3386539625768,0.0,0.0,81.99129562983686,0.1251289589999942 +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936 +6,413.9982892718827,0.0,0.0,83.74295368600988,0.127802208000503 +7,409.3646465046534,0.0,0.0,82.80566736935371,0.1263717920010094 +8,412.4757866594092,0.0,0.0,83.43498413862977,0.1273322080014622 +9,412.46337016487814,0.0,0.0,83.43247254871889,0.1273283750015252 +10,410.6350162053592,0.0,0.0,83.06263584909651,0.1267639580000832 +11,412.46282918595386,0.0,0.0,83.43236312031262,0.1273282080001081 +12,413.48687415937496,0.0,0.0,83.63950540327329,0.1276443329988978 +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001 +14,409.1943076028259,0.0,0.0,82.77121147150024,0.1263192079968575 +15,406.66274208677544,0.0,0.0,82.25913019180082,0.1255377079978643 +16,411.9619420265209,0.0,0.0,83.3310444161506,0.1271735830014222 +17,411.5208471033168,0.0,0.0,83.24182039595,0.1270374160012579 +18,411.8797430808043,0.0,0.0,83.31441733656462,0.1271482080010173 +19,410.98729740297114,0.0,0.0,83.13389476194843,0.1268727080023381 +20,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163 +21,430.42633868348526,0.0,0.0,87.06599490786343,0.1328735839997534 +22,394.2393637064164,0.0,0.0,79.7461478261975,0.1217025830010243 +23,398.69146909006815,0.0,0.0,80.64671303288978,0.1230769579997286 +24,393.4677205138221,0.0,0.0,79.59006099730456,0.121464375002688 +25,399.4925386960174,0.0,0.0,80.80875219258839,0.1233242499984044 +26,418.3888499209973,0.0,0.0,84.63106971600862,0.1291575840004952 +27,409.7174654168141,0.0,0.0,82.87703505029891,0.1264807079969614 +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.126946249998582 +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.1295307910004339 +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878 +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836749,0.127710290998948 +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596 +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.1245412919997761 +6,773.1125247644942,0.8169198518182477,0.0,116.54723219273669,0.129782250001881 +7,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971 +8,741.2949626305472,0.7832993925563833,0.0,111.750713338044,0.1244410420003987 +9,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.1315446250009699 +10,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268 +11,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.1252313749973836 +12,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.1264663750007457 +13,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.1290887920004024 +14,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.1260320420005882 +15,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.1289440420005121 +16,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.1285882080010196 +17,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.1219281670018972 +18,790.462774080707,0.8352532284566974,0.0,119.16279392648885,0.1326948329988226 +19,751.1743926154271,0.7937386264593074,0.0,113.24004404152788,0.1260995000011462 +20,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.1307220839989895 +21,774.9388388883993,0.8188496514472585,0.0,116.82255027314224,0.1300888330006273 +22,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128 +23,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.1206704579999495 +24,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.1268399170003249 +25,756.88342996767,0.7997711583332929,0.0,114.1006852555498,0.1270578749972628 +26,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334 +27,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802 +28,760.1081492584486,0.8031786017788388,0.0,114.586813853781,0.1275992080009018 +0,369.911488017962,0.937586825790073,0.0,81.70399481884921,0.1261905419996765 +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.1273650000002817 +2,358.4963540466036,0.908653744302064,0.0,79.182683432037,0.1222964160006085 +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.1275479169999016 +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467 +5,373.2398182137489,0.94602289399701,0.0,82.43913790545372,0.1273259589979716 +6,372.4002203609801,0.9438948284699412,0.0,82.25369219523775,0.1270395409992488 +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.1270712080004159 +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.1210473329992964 +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482 +10,374.8352147805899,0.9500666256772444,0.0,82.79152023758844,0.1278702079980576 +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.1311800829971616 +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.1267409579995728 +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.1219887500010372 +14,373.0092159450698,0.9454384037713364,0.0,82.38820375721647,0.1272472920027212 +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.1268485420005163 +16,371.0299297507992,0.940421655926711,0.0,81.95103001647053,0.1265720839983259 +17,372.40693906507727,0.9439118578638692,0.0,82.25517618528004,0.1270418329986569 +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.1277537079986359 +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.1282872920019144 +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.1205967499990947 +21,371.27811733858584,0.9410507183380468,0.0,82.0058483123155,0.1266567499988014 +22,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.124332957999286 +23,371.9971566406658,0.9428732131744948,0.0,82.16466571949168,0.1269020409999939 +24,369.4635977484595,0.9364515920120275,0.0,81.60506730390526,0.1260377500002505 +25,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.1198882499993487 +26,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.1274375840002903 +27,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.127153334000468 +28,371.3744862190492,0.9412949772909728,0.0,82.0271337353562,0.1266896250017453 +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.1266642499977024 +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.127472290998412 +2,362.06830888108055,0.9323075821841325,0.0,78.97977089074149,0.1258273749990621 +3,368.62949009525886,0.9492022919502712,0.0,80.4109941609301,0.1281075419974513 +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.1265159579997998 +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.126595959001861 +6,364.5455978038035,0.938686475860447,0.0,79.52015431217787,0.1266882919990166 +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.126838874999521 +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.1260080419997393 +9,367.5248896744274,0.9463580017366168,0.0,80.17004214711623,0.1277236669993726 +10,364.9063615290765,0.9396154242058252,0.0,79.59884950772204,0.1268136660000891 +11,363.7304249899235,0.936587447095628,0.0,79.3423365896725,0.1264049999990675 +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.1258190410007955 +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.126164040997537 +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.1199694579991046 +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.1276645409998309 +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.1269337920020916 +17,365.2405141303859,0.9404758502529708,0.0,79.67173988571597,0.1269297920007375 +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482 +19,364.44404506429737,0.9384249826926916,0.0,79.4980021052523,0.1266529999993508 +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.1197223750023113 +21,363.56424934911365,0.9361595532256008,0.0,79.3060878661116,0.1263472499995259 +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.1264897919973009 +23,365.373837350975,0.9408191508025844,0.0,79.70082234656178,0.1269761250005103 +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.1266297080001095 +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164 +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.1203132499977073 +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905 +28,364.4625099886328,0.9384725289389112,0.0,79.50202995153919,0.1266594170010648 +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.1263581659986812 +0,395.6846676399492,0.0,0.0,81.77438952733165,0.1266846669968799 +1,396.35098819705064,0.0,0.0,81.91209503184734,0.1268979999986186 +2,396.2011939034781,0.0,0.0,81.88113771175549,0.1268500410005799 +3,386.0664705823485,0.0,0.0,79.78663954088394,0.1236052499989455 +4,386.5682950767456,0.0,0.0,79.89034937610185,0.1237659170001279 +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057 +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384 +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581 +8,398.01523257383474,0.0,0.0,82.25603701157462,0.1274308339998242 +9,397.0782147101372,0.0,0.0,82.06238769926466,0.1271308329996827 +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144 +11,396.4767043441066,0.0,0.0,81.93807622854256,0.1269382499995117 +12,396.02576599844105,0.0,0.0,81.84488280724774,0.1267938749988388 +13,399.8958961197486,0.0,0.0,82.64470537795509,0.1280329580004036 +14,396.5793855518793,0.0,0.0,81.9592968968379,0.1269711250024556 +15,401.0316391948003,0.0,0.0,82.87942434540003,0.128396584001166 +16,401.0917611744532,0.0,0.0,82.89184948740166,0.1284158329981437 +17,395.6790705523099,0.0,0.0,81.7732328021354,0.1266828750012791 +18,395.4228251241656,0.0,0.0,81.72027569975218,0.1266008339989639 +19,389.6295971968901,0.0,0.0,80.52301506296472,0.1247460410013445 +20,397.2721267874588,0.0,0.0,82.10246264540683,0.1271929169997747 +21,377.60744195350105,0.0,0.0,78.0384497354916,0.1208969589970365 +22,403.68586149940114,0.0,0.0,83.42796065822493,0.1292463749996386 +23,397.46993997509657,0.0,0.0,82.14334381665871,0.1272562500016647 +24,396.65291621411296,0.0,0.0,81.97449315160198,0.1269946669999626 +25,396.9833419725365,0.0,0.0,82.0427807727533,0.1271004580012231 +26,398.6449814389623,0.0,0.0,82.38618440724828,0.1276324579994252 +27,376.2813037352024,0.0,0.0,77.76438265101989,0.1204723749979166 +28,400.714743939528,0.0,0.0,82.81393301312637,0.1282951250032056 +0,361.5172471330565,0.0,0.0,78.12605136820386,0.1261808749986812 +1,365.5671462435493,0.0,0.0,79.00125892317271,0.1275944170010916 +2,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753 +3,363.29860543222503,0.0,0.0,78.511013610226,0.126802624999982 +4,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168 +5,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412 +6,361.5755026402199,0.0,0.0,78.13864073366628,0.1262012080005661 +7,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971 +8,363.8756795742305,0.0,0.0,78.63572280299373,0.1270040420022269 +9,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991 +10,364.5024111287863,0.0,0.0,78.77116326126676,0.1272227910012588 +11,363.3991207344049,0.0,0.0,78.53273557155335,0.1268377079977654 +12,362.13132653995166,0.0,0.0,78.25875762127396,0.1263952080007584 +13,364.4982367205501,0.0,0.0,78.77026114654089,0.1272213340016605 +14,360.4311471743661,0.0,0.0,77.89133863503122,0.1258017919972189 +15,362.40422461795254,0.0,0.0,78.31773253721299,0.1264904580020811 +16,361.2869669971778,0.0,0.0,78.0762864458733,0.1261004999978467 +17,363.55037360229466,0.0,0.0,78.56542222598009,0.1268904999997175 +18,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709 +19,363.6459953773748,0.0,0.0,78.58608666667018,0.1269238750028307 +20,366.4062541016947,0.0,0.0,79.18259517794013,0.1278872920011053 +21,362.061848555091,0.0,0.0,78.24374301088613,0.1263709580016438 +22,362.24270905991347,0.0,0.0,78.28282805372238,0.1264340839989017 +23,362.0681746289213,0.0,0.0,78.24511011348758,0.1263731660001212 +24,362.6975363200963,0.0,0.0,78.38111896010236,0.1265928329994494 +25,358.52527861331754,0.0,0.0,77.47946897657832,0.125136584003485 +26,355.4742151019403,0.0,0.0,76.82011580184641,0.1240716669999528 +27,363.61639058594017,0.0,0.0,78.57968889318992,0.1269135420006932 +0,365.0774252251925,0.0,0.0,78.66773310494989,0.1270807500004593 +1,367.5883720326905,0.0,0.0,79.20879776588075,0.1279547920021286 +2,350.57697332024804,0.0,0.0,75.54314198662561,0.1220332500015501 +3,361.880120821408,0.0,0.0,77.97877051205046,0.1259677919988462 +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142 +5,364.4711468988576,0.0,0.0,78.53709084041105,0.1268697090017667 +6,369.5311022105454,0.0,0.0,79.62742178524363,0.1286310420000518 +7,362.71598461213733,0.0,0.0,78.15888438669123,0.1262587499986693 +8,364.6465054066651,0.0,0.0,78.57487749972414,0.1269307500006107 +9,357.7011552221953,0.0,0.0,77.07827728048227,0.1245131249997939 +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524 +11,363.63528023405354,0.0,0.0,78.35697634645797,0.1265787500014994 +12,364.8904548594365,0.0,0.0,78.62744429546584,0.1270156669997959 +13,363.9725956478543,0.0,0.0,78.42966185674032,0.1266961670007731 +14,364.7223961358544,0.0,0.0,78.59123061064388,0.1269571670018194 +15,365.02679214761287,0.0,0.0,78.65682257157232,0.1270631250008591 +16,361.9313514452685,0.0,0.0,77.98980980609107,0.1259856249998847 +17,345.0865750669766,0.0,0.0,74.36005819512079,0.1201220830007514 +18,364.1344290208866,0.0,0.0,78.46453408853974,0.1267525000002933 +19,364.22934916661006,0.0,0.0,78.48498770241478,0.1267855410005722 +20,363.6205571430931,0.0,0.0,78.3538037805579,0.1265736250024929 +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022 +22,362.8233554694112,0.0,0.0,78.18202090886338,0.1262961249994987 +23,351.26608593148893,0.0,0.0,75.69163357562735,0.1222731250018114 +24,365.8098711297876,0.0,0.0,78.82556225283807,0.1273357089994533 +25,362.3659829171635,0.0,0.0,78.08346520702132,0.1261369169988029 +26,362.8579468409589,0.0,0.0,78.1894747380969,0.1263081659999443 +27,372.2966479317493,0.0,0.0,80.22334801253913,0.1295937079994473 +28,364.5761218333096,0.0,0.0,78.55971108355833,0.1269062499995925 +29,346.7069542397634,0.0,0.0,74.70922126981647,0.120686124999338 +0,387.6502443930199,0.0,0.0,86.02535538551267,0.1311169590007921 +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788 +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028 +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004 +4,377.59806480196255,0.0,0.0,83.79462721178557,0.1277169579989276 +5,378.2879220367919,0.0,0.0,83.94771679356664,0.1279502920006052 +6,358.1112551934011,0.0,0.0,79.47021430052544,0.1211258330004056 +7,375.73853630594704,0.0,0.0,83.38197017871778,0.1270880000010947 +8,366.0266051541871,0.0,0.0,81.22674819474109,0.1238030829990748 +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211 +10,368.7047238020264,0.0,0.0,81.82106255872576,0.124708917002863 +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617 +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764 +13,376.62154905599033,0.0,0.0,83.57792384244205,0.1273866659976192 +14,373.9790358237752,0.0,0.0,82.99151084980181,0.126492874998803 +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924 +16,375.11520378706575,0.0,0.0,83.24364342093624,0.1268771670002024 +17,375.4187381278567,0.0,0.0,83.31100220611935,0.1269798329994955 +18,376.0866668397095,0.0,0.0,83.45922552247323,0.1272057500027585 +19,375.7424773478016,0.0,0.0,83.38284475452687,0.1270893330001854 +20,377.3000739401179,0.0,0.0,83.72849860703786,0.1276161669993598 +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222 +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624 +23,370.4305938208771,0.0,0.0,82.20405878759003,0.1252926669985754 +24,378.135167384867,0.0,0.0,83.91381826413529,0.1278986249999434 +25,373.97989913536014,0.0,0.0,82.99170243148396,0.1264931670011719 +26,375.5505517329566,0.0,0.0,83.34025360576987,0.1270244170009391 +27,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871 +28,376.9114124413168,0.0,0.0,83.64224883925715,0.1274847079985193 +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.1283158750011352 +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.1281986249996407 +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687 +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156 +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992 +5,365.6555120565184,0.8698118310585068,0.0,85.27501374492822,0.1265472909981326 +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.126757792000717 +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424 +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.1266237919990089 +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.126802790997317 +10,366.241235094044,0.8712051338010197,0.0,85.41161100226151,0.126749999999447 +11,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.1259749579985509 +12,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.1282745000025897 +13,365.4347097682464,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312 +14,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.1260847909979929 +15,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.1271165419966564 +16,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071 +17,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.1272964579984545 +18,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.1278989170023123 +19,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.1252903750028053 +20,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.1290519159992982 +21,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.127279833999637 +22,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.1260045829985756 +23,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.1285861670003214 +24,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498 +25,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.1242197499996109 +26,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.1280166249998728 +27,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.1299367089995939 +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392 +1,363.05448090538937,0.0,0.0,79.35981489298555,0.1272270419976848 +2,362.5024300899116,0.0,0.0,79.23914250679553,0.1270335840017651 +3,363.9394521290133,0.0,0.0,79.55326010902385,0.1275371669980813 +4,363.6331643510986,0.0,0.0,79.48630888644514,0.1274298330026795 +5,361.9330179821863,0.0,0.0,79.11467512836181,0.1268340419992455 +6,367.93805246242096,0.0,0.0,80.42731124729627,0.1289384170013363 +7,364.20709368215694,0.0,0.0,79.61176368144136,0.1276309579989174 +8,364.8000479429753,0.0,0.0,79.74137712199497,0.1278387499987729 +9,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772 +10,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003 +11,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107 +12,363.7586055346067,0.0,0.0,79.51372898350148,0.127473791999364 +13,362.0657101640452,0.0,0.0,79.14368021587322,0.1268805420004355 +14,356.5336590933504,0.0,0.0,77.93443319637895,0.1249419169980683 +15,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913 +16,364.2592916495958,0.0,0.0,79.62317359717468,0.127649250000104 +17,363.8922479704996,0.0,0.0,79.54294178635095,0.1275206250029441 +18,364.0480086058659,0.0,0.0,79.57698939033439,0.1275752090004971 +19,362.696591566812,0.0,0.0,79.2815841227969,0.1271016250029788 +20,362.9481816283438,0.0,0.0,79.33657901133893,0.1271897909973631 +21,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978 +22,362.2359756302134,0.0,0.0,79.18089842027075,0.1269402090001676 +23,363.4732460078574,0.0,0.0,79.45135245212167,0.1273737919982522 +24,363.7713268548058,0.0,0.0,79.51650972763022,0.1274782499967841 +25,363.4419763123466,0.0,0.0,79.44451723212573,0.1273628339986316 +26,363.1935936838931,0.0,0.0,79.39022345404717,0.1272757920014555 +27,363.6311440010843,0.0,0.0,79.48586725960514,0.1274291250010719 +28,364.6958917231345,0.0,0.0,79.71860968966385,0.1278022500009683 +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277 +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.1244781660025182 +2,362.381369627801,0.9030269478496196,0.0,79.29914419820177,0.126015500001813 +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.1223343749988998 +4,365.53192544718695,0.9108778945153712,0.0,79.98857362577574,0.1271110829984536 +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.1269080830024904 +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.1264884590018482 +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.1262647080002352 +8,366.083701130626,0.9122528777597512,0.0,80.10931752475443,0.1273029590010992 +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.1199655410018749 +10,364.2674620465664,0.9077269474164552,0.0,79.71187378979317,0.126671374997386 +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.1241264589989441 +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474 +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.1250427089980803 +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496 +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.1217608330007351 +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.1264975830017647 +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924 +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957 +19,364.75057778178666,0.9089308352661044,0.0,79.8175929783679,0.1268393749996903 +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226 +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.1196454169985372 +22,367.629021552613,0.916103699300466,0.0,80.44747670523722,0.1278403329997672 +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.1261047499974665 +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.1269116660005238 +25,364.2674620570281,0.9077269474425252,0.0,79.71187379208249,0.126671375001024 +26,370.1547160771413,0.9223975389093508,0.0,81.00016906496558,0.1287186250010563 +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.1204572079986974 +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.1272289589978754 +29,365.1832510520659,0.9100090243106396,0.0,79.91227394964912,0.1269898339996871 +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.1272624580014962 +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.1269249159995524 +2,367.4705435091116,0.4339677566877226,0.0,80.11712431157956,0.1269625000022642 +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.1263709169979847 +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.127091250000376 +5,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.1266598339971096 +6,367.1217775287856,0.4335558782589219,0.0,80.04108521703175,0.1268420000014885 +7,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.1299451669983682 +8,370.55613254945854,0.4376117117680742,0.0,80.78985448025985,0.128028582999832 +9,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.1267745839977578 +10,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448 +11,364.356853467442,0.4302906154684544,0.0,79.43826747109927,0.125886707999598 +12,366.21742300664187,0.4324878723733961,0.0,79.8439148997039,0.1265295420016627 +13,367.6326256151,0.4341591690585301,0.0,80.15246198003634,0.1270184999993944 +14,367.63057643996024,0.4341567490660867,0.0,80.15201521220062,0.1270177920014248 +15,368.71896362732775,0.4354420900395404,0.0,80.3893089303767,0.1273938340018503 +16,367.2385171663555,0.4336937430198602,0.0,80.06653717289728,0.1268823339996743 +17,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.1265819590007595 +18,367.5113042606,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143 +19,368.5741258840442,0.4352710425592818,0.0,80.35773093402126,0.1273437919990101 +20,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212 +21,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.1267945420004252 +22,368.7505580598764,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056 +23,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.1274272090013255 +24,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.1273582089997944 +25,357.5469937001284,0.4222484482287126,0.0,77.95355967299311,0.1235338750011578 +26,367.53795807863906,0.4340473705507183,0.0,80.13182225551724,0.1269857919978676 +27,363.3688037875811,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172 +28,366.4730872800551,0.4327898014753557,0.0,79.89965565698876,0.1266178750011022 +0,369.7851773109551,0.0,0.0,80.6080421172184,0.1269397500000195 +1,374.92032490521166,0.0,0.0,81.72743310137321,0.1287025419987912 +2,370.56236276808175,0.0,0.0,80.7774577723199,0.1272065420016588 +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313 +4,367.7597386710104,0.0,0.0,80.16652457348731,0.1262444580024748 +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078 +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382 +7,368.1525174790658,0.0,0.0,80.25214490833339,0.1263792909994663 +8,368.5888759246009,0.0,0.0,80.34726499998142,0.1265290840019588 +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434 +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949 +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178 +12,371.52986822542886,0.0,0.0,80.98836054895796,0.1275386669985891 +13,323.38193430333433,0.0,0.0,70.49277845539667,0.1110104580002371 +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533 +15,370.7117773569245,0.0,0.0,80.81002808127047,0.127257832999021 +16,366.30344520570907,0.0,0.0,79.8490727874539,0.1257445419978466 +17,369.4200698015571,0.0,0.0,80.52845374185712,0.126814415998524 +18,370.4960902757074,0.0,0.0,80.76301128775451,0.1271837919994141 +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574 +20,373.687726585192,0.0,0.0,81.45874375580162,0.1282794159997138 +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511 +22,371.68098115026265,0.0,0.0,81.02130107160961,0.1275905410002451 +23,370.3033407611029,0.0,0.0,80.72099456576393,0.1271176250011194 +24,369.25851641569744,0.0,0.0,80.49323734344371,0.1267589579983905 +25,370.04164746358737,0.0,0.0,80.66394905490458,0.127027791000728 +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348 +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206 +28,366.14965808656615,0.0,0.0,79.8155493275167,0.1256917499995324 +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539 +0,369.9041744801996,0.7311672810929373,0.0,80.96015894283615,0.1263925839994044 +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.1239147499982209 +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.1276219589999527 +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.1270622920019377 +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696 +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.126509249999799 +6,372.7495863983696,0.7367916352887809,0.0,81.5829283437941,0.1273648330025025 +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.1227005830005509 +8,376.1469165837081,0.7435069330495576,0.0,82.32649495039648,0.1285256669980299 +9,375.5150076768029,0.7422578768094935,0.0,82.18819035945118,0.1283097499981522 +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718 +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.1265221249996102 +12,372.6448394186792,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737 +13,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.1269626670000434 +14,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.1278689999999187 +15,371.6252751140856,0.7345692769550659,0.0,81.33685266647912,0.1269806669988611 +16,372.5041183310883,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274 +17,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.1287318750000849 +18,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.1274127080032485 +19,371.5436924157741,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037 +20,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.1269673329989018 +21,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.1263547090020438 +22,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.1277858329995069 +23,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187 +24,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782 +25,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.1278468330019677 +26,370.9710506631292,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306 +27,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.1266328330020769 +28,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.1273535420004918 +0,364.8766742429042,0.8046531454405679,0.0,80.39826011527006,0.1268683750022319 +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.1270218329991621 +2,366.4414736680069,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891 +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623 +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.1270766669986187 +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.1276734169987321 +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.126081708996935 +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.1280686669997521 +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.1271314580008038 +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.1226394589975825 +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565 +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.1250696669994795 +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885 +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.1254135829985898 +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.1274225419983849 +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.1204695409978739 +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874 +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.1267092080015572 +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.1264430000010179 +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.1262780420001945 +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.1269816249987343 +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.1207254170003579 +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.1275093339972954 +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.1266951249999692 +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.1258205420017475 +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.1262950420023116 +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248 +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.1196737499994924 +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.1269724580015463 +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645 +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.1297699579990876 +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.1281011659993964 +2,596.3705986768317,0.4998356696738266,17.56089319454044,107.19808995604669,0.1292779169998539 +3,588.5562142436058,0.4932862051547235,17.330788674435954,105.79344813218304,0.1275839580011961 +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.1278309170011198 +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598812,0.1344743330009805 +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338 +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092 +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083 +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.1300877080029749 +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.1316869169968413 +11,593.7434442190689,0.4976337745592017,17.48353327951329,106.72585685046349,0.1287084169998706 +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.1180163749995699 +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336 +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383 +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.1267631670016271 +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053044,0.1299459580004622 +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988683,0.1310292080015642 +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111336,0.1308710830016934 +19,592.0333350469189,0.4962004819636689,17.433176932990236,106.41846336514152,0.1283377090003341 +20,640.5170945999755,0.5368361411968281,18.86084309404856,115.13345774867972,0.1388477500004228 +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.1314542500003881 +22,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.1336179169993556 +23,576.81763141262,0.4834477549974464,16.985131125576952,103.68342852178569,0.1250393329974031 +24,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.1294262920018809 +25,588.7255561438179,0.4934281355622321,17.33577516275309,105.82388747358006,0.1276206670008832 +26,574.9945015603392,0.4819197364589087,16.931446740922993,103.35571947922062,0.1246441250004863 +27,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.1329680839990032 +28,594.1982164073472,0.4980149324529366,17.496924626846507,106.80760251340648,0.1288069999973231 +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.1308225419998052 +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984025,0.129822625000088 +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.1305599580009584 +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.7164511012418,0.1303684579979744 +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478836,0.133669083003042 +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.1280587090004701 +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.131149834000098 +7,597.649025563058,0.5265920154749121,20.602912605455938,108.41213118589752,0.1288186250021681 +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518 +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390812,0.1328884159993322 +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.1274853749964677 +11,617.1983607546819,0.5438170478591833,21.276841997490543,111.95833472800936,0.1330323330003011 +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332355,0.1315104169989354 +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224584,0.132710166999459 +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480084,0.123739458998898 +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.1226190000015776 +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105 +17,609.4197285876301,0.5369632500359095,21.00868715765496,110.54730910114289,0.131355708999763 +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206 +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864 +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176743,0.1294865419986308 +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163 +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.128652208000858 +23,598.978231220104,0.5277631862724634,20.648734662910133,108.6532459738434,0.1291051250009331 +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.1315287079996778 +25,599.235721308217,0.5279900622793916,20.6576111866812,108.69995407176977,0.129160624997894 +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.1330622909990779 +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.129972374998033 +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964276,0.129170708998572 +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398 +0,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.1275194589979946 +1,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944 +2,365.1552719264768,1.1348518505941692,0.0,79.53976352840897,0.1266182079998543 +3,368.1911850271189,1.1442870467021975,0.0,80.20105977327462,0.1276709160010796 +4,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.1273849159988458 +5,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688 +6,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.1250703330006217 +7,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.1285071249985776 +8,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042 +9,362.3793921728516,1.1262248019997214,0.0,78.93510891662754,0.1256556670014106 +10,367.18182008164734,1.1411500806925057,0.0,79.98119536147766,0.1273209169994515 +11,368.02740499563134,1.143778041119878,0.0,80.16538447025499,0.1276141249982174 +12,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.1275358330021845 +13,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604 +14,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.1268808749991876 +15,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.126675041999988 +16,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412 +17,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.1292150410008616 +18,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.1270570420019794 +19,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.1263232079982117 +20,363.1997428984131,1.128774338075507,0.0,79.11380140099804,0.1259401250026712 +21,367.0620167726892,1.140777748653696,0.0,79.95509926593404,0.1272793749994889 +22,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.1281139159982558 +23,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.1295731249992968 +24,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.1270090419966436 +25,364.5013486503741,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141 +26,363.1987825501328,1.1287713534464825,0.0,79.11359221361668,0.1259397920002811 +27,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.1270736670012411 +28,365.7796380252842,1.1367922936800423,0.0,79.6757657599865,0.1268347080003877 +0,392.35717841459865,1.1193729478414245,0.0,83.85120991103034,0.127699874999962 +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.1266927500000747 +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.1210532080003758 +3,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.1250622500010649 +4,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.1264222079989849 +5,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.1273698340010014 +6,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.1269118330019409 +7,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.1256257500026549 +8,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.1276837919976969 +9,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.1263573749965871 +10,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.1259465830007684 +11,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134 +12,381.0208254600399,1.087030970881068,0.0,81.42850181872728,0.1240102499978093 +13,385.7221262916305,1.1004435175606295,0.0,82.433223497269,0.1255403750001278 +14,388.1155996030598,1.107271962211548,0.0,82.94473607839231,0.1263193750019127 +15,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.126625500000955 +16,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.1266295829991577 +17,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009 +18,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.1265432920008606 +19,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.1272836249991087 +20,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.1268063340030494 +21,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.1266531250003026 +22,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.1270766249981534 +23,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.1264769169974897 +24,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.1222288329990988 +25,406.8875185658029,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041 +26,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.1266736659999878 +27,391.19795385274,1.116065745408526,0.0,83.60347038332958,0.1273225840013765 +0,381.4033142582579,0.0,0.0,82.61925110554331,0.1332604589988477 +1,362.55955683134994,0.0,0.0,78.5373329144196,0.1266765420004958 +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517 +3,364.8477942397509,0.0,0.0,79.0330088930131,0.1274760409978625 +4,344.4926161941541,0.0,0.0,74.62368809432583,0.1203640410021762 +5,363.3133567014207,0.0,0.0,78.70062038052308,0.1269399160009925 +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374 +7,363.50917225752414,0.0,0.0,78.74303777438224,0.1270083330018678 +8,364.4152638869781,0.0,0.0,78.93931454770832,0.1273249170008057 +9,362.471785151328,0.0,0.0,78.51831989014688,0.1266458750033052 +10,344.8277210316543,0.0,0.0,74.69627821004087,0.1204811249990598 +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794 +12,363.5227671803984,0.0,0.0,78.74598269464046,0.1270130830016569 +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383 +14,363.0369275435488,0.0,0.0,78.6407405390185,0.1268433330005791 +15,363.51000797351264,0.0,0.0,78.74321880644601,0.1270086249969608 +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366 +17,361.4334449521908,0.0,0.0,78.29339554775532,0.1262830839987145 +18,363.57273639099617,0.0,0.0,78.75680698117282,0.1270305420002841 +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433 +20,366.3633906583192,0.0,0.0,79.36131605868071,0.1280055829993216 +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325 +22,346.6831905324902,0.0,0.0,75.09820838441907,0.1211294169988832 +23,365.82126518573983,0.0,0.0,79.24388131473557,0.1278161670015833 +24,364.1797368434446,0.0,0.0,78.88829488630428,0.1272426249997806 +25,363.9925075577076,0.0,0.0,78.84773744279413,0.1271772079999209 +26,362.5031479127712,0.0,0.0,78.52511366399774,0.1266568329992878 +27,362.4386307071827,0.0,0.0,78.511138003562,0.1266342910021194 +28,363.69341924406274,0.0,0.0,78.78294919485816,0.1270727080009237 +29,367.1670423932719,0.0,0.0,79.53540239199062,0.1282863749984244 +0,380.3526569408623,0.0,0.0,80.10239659227442,0.1271814169995195 +1,387.17328681307646,0.0,0.0,81.53882352150227,0.1294620829976338 +2,385.3726788755025,0.0,0.0,81.15961488843315,0.1288599999970756 +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086 +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787 +5,394.2382781455051,0.0,0.0,83.02671305586976,0.1318244579997554 +6,373.8768198704676,0.0,0.0,78.73858314227304,0.1250160419986059 +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807 +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013 +9,380.0052443470086,0.0,0.0,80.02923138397054,0.127065250002488 +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719 +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198 +12,382.215942515876,0.0,0.0,80.49480515672312,0.1278044579994457 +13,361.8984704460614,0.0,0.0,76.21593875263807,0.1210107500010053 +14,378.8783985966985,0.0,0.0,79.79191729258059,0.1266884579999896 +15,380.88423856576446,0.0,0.0,80.21434786003091,0.1273591659992234 +16,379.1726048879838,0.0,0.0,79.85387723579232,0.1267868340000859 +17,378.95814974542776,0.0,0.0,79.80871291114045,0.126715124999464 +18,380.36461647596656,0.0,0.0,80.10491527436194,0.1271854160004295 +19,364.3920344346489,0.0,0.0,76.74108416150293,0.1218445419981435 +20,380.7520317589275,0.0,0.0,80.18650506235302,0.1273149590015236 +21,382.7415458800854,0.0,0.0,80.60549740078093,0.1279802080025547 +22,380.34679830413467,0.0,0.0,80.10116276142276,0.1271794580025016 +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071 +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658 +25,363.53484190384074,0.0,0.0,76.56055912820624,0.1215579159979824 +26,380.69109765029833,0.0,0.0,80.17367231872328,0.1272945839991734 +27,379.47166496381067,0.0,0.0,79.91685938764968,0.1268868329971155 +28,379.2726654116168,0.0,0.0,79.87495001549036,0.1268202920000476 +29,384.0864564464969,0.0,0.0,80.88873601527702,0.1284299159997317 +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612 +1,383.59709143073366,0.0,0.0,82.02532419427872,0.1296549590006179 +2,366.3914775833742,0.0,0.0,78.34621378046563,0.1238395000000309 +3,374.1168748582736,0.0,0.0,79.99815074807854,0.1264506670013361 +4,367.66885289590334,0.0,0.0,78.61935746812284,0.1242712499988556 +5,383.9118124443024,0.0,0.0,82.09262161061848,0.1297613339993404 +6,375.5611654777607,0.0,0.0,80.30698626571066,0.1269388340006116 +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152 +8,374.86182356292346,0.0,0.0,80.1574446018956,0.1267024579974531 +9,377.0421871072083,0.0,0.0,80.62367604779706,0.1274394159991061 +10,375.6765508526328,0.0,0.0,80.33165934846492,0.1269778339992626 +11,375.1464674630339,0.0,0.0,80.21831056962074,0.1267986669990932 +12,378.4867262518033,0.0,0.0,80.93256470804418,0.1279276669993123 +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779 +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733 +15,375.683823091228,0.0,0.0,80.33321438561643,0.1269802919996436 +16,373.6414012930972,0.0,0.0,79.8964792959204,0.1262899579996883 +17,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284 +18,383.49859372980546,0.0,0.0,82.00426223622037,0.1296216669979912 +19,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624 +20,374.5009986985629,0.0,0.0,80.08028870802231,0.1265805000002728 +21,332.15382500117937,0.0,0.0,71.02510886220082,0.1122672499986947 +22,381.9548202102259,0.0,0.0,81.67415409344545,0.1290998750009748 +23,370.0998334750992,0.0,0.0,79.13917884991385,0.1250929159978113 +24,377.0426841466608,0.0,0.0,80.62378233072553,0.1274395839973294 +25,378.23080739815214,0.0,0.0,80.87784107377504,0.1278411669991328 +26,377.1951733191553,0.0,0.0,80.65638939185659,0.1274911249965953 +27,374.3644119900847,0.0,0.0,80.05108210220116,0.1265343339982791 +28,379.98685748159807,0.0,0.0,81.25334073374067,0.1284347079999861 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/mac_report.md new file mode 100644 index 000000000..3003b419e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 665.57 ms | 123.63 ms | +| **Average Power** | 7.826 W | 4.087 W | +| **Total Energy** | 4687.65 J | 454.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.61% | 0.00e+00 | +12.775 | large | βœ… | +| `gpu_mj` | +85.05% | 1.48e-302 | +2.504 | large | βœ… | +| `ane_mj` | +81.23% | 1.02e-31 | +0.573 | medium | βœ… | +| `dram_mj` | +87.31% | 0.00e+00 | +24.607 | large | βœ… | +| `time_s` | +81.02% | 0.00e+00 | +97.082 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.775, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.504, large) +- **`ane_mj`**: 81.2% lower energy (Cohen’s d = +0.573, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.607, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +97.082, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..630c9e720 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924 +1,5273.426802443005,4.4973222381334175,113.86553636992608,749.9201548342323,0.6835363749996759 +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748 +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018 +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096 +5,5253.551246024907,4.480371821407624,113.43637693015744,747.0937042348667,0.6809601250024571 +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886 +7,5300.365365947626,4.520296179984014,114.44720254211376,753.7510170934825,0.687028125001234 +8,5279.4904036420885,4.502493442653253,113.99646360732456,750.7824436116101,0.6843223329997272 +9,5247.4468174506055,4.475165798188416,113.30456813487412,746.2256095038477,0.6801688749983441 +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533 +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705 +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357 +13,5277.8400593125725,4.501085983987045,113.96082883902017,750.547752485425,0.6841084169973328 +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567 +15,5321.702899266701,4.538493410494227,114.90792945977236,756.7853715824855,0.6897938750007597 +16,5253.426202615801,4.480265180977107,113.4336769524426,747.0759221405605,0.6809439169992402 +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378 +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265 +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317 +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039 +21,5253.3349120036255,4.480187325852603,113.43170577603108,747.0629399427254,0.6809320840002329 +22,5313.903441611766,4.531841820234043,114.73952104859232,755.6762312243596,0.6887829170009354 +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552 +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096 +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999 +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763 +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127 +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852 +29,5275.819074951675,4.49936243339088,113.91719109133356,750.2603536152749,0.6838464590000513 +0,5280.146632019839,4.743466790750807,114.64491567504768,752.2737473782265,0.6850735419975535 +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585 +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048 +3,5269.918567599515,4.734278317912334,114.42283934559951,750.8165332351111,0.6837465000025986 +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337 +5,5263.781853767582,4.728765346342646,114.28959625808425,749.9422225326506,0.6829502910004521 +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321 +7,5262.373654944431,4.727500278378077,114.25902081263072,749.7415934441852,0.6827675839995209 +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202 +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963 +10,5299.006038748264,4.76040930688607,115.0543995861478,754.9606872610865,0.6875204589996429 +11,5278.689930447888,4.742158149909533,114.61328711612336,752.0662079997371,0.6848845419990539 +12,5264.9964191743065,4.729856462001642,114.31596744781432,750.1152642554716,0.6831078750001325 +13,5280.20732793269,4.743521317465122,114.64623353197392,752.2823948543278,0.68508141699931 +14,5175.084273188565,4.649083084235549,112.36375454293244,737.3052891336941,0.6714422080003715 +15,5301.849427752589,4.76296369074227,115.11613652554556,755.3657909543374,0.6878893749999406 +16,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437 +17,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943 +18,5232.454106576423,4.700621785417813,113.60939413770376,745.4788916028814,0.6788856669991219 +19,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411 +20,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461 +21,5283.768793744757,4.746720792022038,114.72356167760309,752.7898044812416,0.6855434999997669 +22,5270.446525563299,4.734752613654982,114.4343026060838,750.8917525317619,0.6838150000003225 +23,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389 +24,5253.691243355732,4.719700356537864,114.07050439181651,748.5045917551598,0.6816410829997039 +25,5232.72739613028,4.70086729752445,113.615327923267,745.5178277482438,0.6789211249997607 +26,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278 +27,5286.654257518006,4.749312974121929,114.78621216328492,753.20090265652,0.6859178749982675 +28,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178 +29,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675 +0,5614.990553964228,5.7756058115323325,109.76989542380524,759.4420867094653,0.6870545829988259 +1,5608.692244635915,5.769127340801201,109.64676703210608,758.5902239800331,0.6862839170025836 +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555 +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757 +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752 +5,5554.87393461145,5.713769572848289,108.59464945390276,751.3111574748722,0.679698667001503 +6,5565.841836903626,5.7250512089632934,108.80906575185728,752.794594806341,0.6810407080010918 +7,5597.4321653440575,5.75754517004395,109.4266388387544,757.0672689489005,0.684906124999543 +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146 +9,5600.578598587723,5.760781606143541,109.48814983236971,757.492832234412,0.68529112500255 +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432 +11,5601.160557946362,5.761380212289274,109.4995268092898,757.5715437523492,0.6853623339993646 +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837 +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055 +14,5770.126400037058,5.935179275733913,112.80271363360175,780.4246136670234,0.7060371250008757 +15,5876.410462417555,6.044503564431901,114.88050705116817,794.799809732352,0.7190421250015788 +16,5596.661223842662,5.756752175973343,109.41156736763207,756.9629971042867,0.6848117920017103 +17,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294 +18,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648 +19,5610.2365140437805,5.77071578360995,109.67695662722264,758.7990904367581,0.6864728750006179 +20,5580.16526722144,5.739784357058483,109.08908072837164,754.7318760367998,0.6827933340027812 +21,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064 +22,5583.60488260023,5.743322361687386,109.1563232672146,755.1970929691598,0.6832142079983896 +23,5543.578786923836,5.702151330573483,108.37383569321165,749.7834593519398,0.6783165840024594 +24,5576.76786301207,5.736289771037868,109.02266339406076,754.2723682749679,0.6823776249984803 +25,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237 +26,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617 +27,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385 +28,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194 +29,5630.7145475367815,5.791779585608233,110.07729062127092,761.568797765411,0.6889785830026085 +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041 +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858 +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505 +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749 +4,4183.686687295611,2.242821512366286,0.0,665.4913184560963,0.6601848330028588 +5,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599 +6,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206 +7,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374 +8,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374 +9,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463 +10,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212 +11,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746 +12,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392 +13,4208.039275310504,2.255876626757966,0.0,669.3650396778748,0.6640276660000382 +14,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421 +15,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857 +16,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983 +17,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557 +18,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472 +19,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811 +20,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253 +21,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509 +22,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295 +23,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041 +24,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841 +25,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323 +26,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186 +27,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896 +28,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796 +29,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598 +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929 +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168 +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774 +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706 +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299 +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821 +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113 +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128 +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182 +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069 +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556 +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651 +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213 +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805 +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555 +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695 +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733 +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352 +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509 +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757 +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149 +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264 +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836 +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148 +24,4215.132051569963,2.019137723673603,0.0,667.6063729307034,0.6637141249993874 +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339 +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552 +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064 +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687 +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651 +0,5266.955267504172,5.9290178909972,113.8768911131194,750.0704477186123,0.680035332999978 +1,5288.670973052095,5.95346328689863,114.34640659417592,753.1629951498295,0.6828391250019195 +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001 +3,5398.076602054193,6.076621335293567,116.7118667639066,768.7435203224738,0.6969648749982298 +4,5305.467876791607,5.972371581677469,114.70957261344768,755.5550528887501,0.6850078330026008 +5,5313.715786732026,5.981656263835639,114.88790075456384,756.7296429863577,0.686072749998857 +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053 +7,5302.962655734788,5.969551451315166,114.6554072045896,755.1982827655415,0.6846843749990512 +8,5282.032111733405,5.945989912712749,114.20286770897448,752.2175506892748,0.6819819579977775 +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789 +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687 +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497 +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034 +13,5321.700680193805,5.990644868026885,115.0605422138348,757.8667767400492,0.6871037080018141 +14,5331.095193216626,6.001220282656504,115.26366107135787,759.2046553114891,0.6883166670013452 +15,5357.676119786506,6.031142463724653,115.83836754349365,762.9900619611441,0.6917486249985814 +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533 +17,5283.988405148097,5.948192114566884,114.24516474793823,752.4961476780284,0.6822345420005149 +18,5247.942934153031,5.907615684435091,113.46582526864717,747.3628892404057,0.6775805830002355 +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738 +20,5257.917355280346,5.918843902316692,113.68148232494296,748.7833528936396,0.678868415998295 +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691 +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859 +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158 +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561 +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575 +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268 +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813 +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286 +29,5284.043589125742,5.9482542352370125,114.24635788125612,752.5040064633639,0.6822416670001985 +0,4282.915524281316,1.9366110579895248,0.0,675.6769201633797,0.6687819170001603 +1,4391.654228983149,1.9857795687301991,0.0,692.8316440142122,0.6857615839981008 +2,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549 +3,4262.6173435256915,1.927432805211586,0.0,672.4746594183043,0.6656123339998885 +4,4282.052840567513,1.9362209772582504,0.0,675.540822341344,0.6686472080000385 +5,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313 +6,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988 +7,4289.356664180724,1.9395235559560455,0.0,676.6930806608025,0.6697877080005128 +8,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468 +9,4270.16291377157,1.9308446947747024,0.0,673.6650559217393,0.6667905829999654 +10,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788 +11,4291.628771306302,1.9405509373646648,0.0,677.051530491575,0.6701424999992014 +12,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963 +13,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255 +14,4277.141731638064,1.934000315233552,0.0,674.766041018382,0.6678803329996299 +15,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693 +16,4245.205514749945,1.9195596776759711,0.0,669.7277523698441,0.6628934580003261 +17,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677 +18,4243.843590196685,1.9189438546145456,0.0,669.5128938272403,0.6626807920001738 +19,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941 +20,4297.038595942507,1.9429971042696297,0.0,677.904989689659,0.6709872499995981 +21,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116 +22,4266.908322293752,1.9293730622362015,0.0,673.1516084036514,0.6662823750011739 +23,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164 +24,4269.309579982598,1.9304588418101711,0.0,673.5304331529419,0.6666573340007744 +25,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687 +26,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072 +27,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284 +28,4260.173921548421,1.926327960160664,0.0,672.0891827898483,0.6652307910007949 +29,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389 +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697 +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935 +2,4294.070878255385,2.008405265665155,0.0,675.7279516330415,0.6701891660013644 +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936 +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585 +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677 +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344 +7,4270.762102767754,1.9975033805419675,0.0,672.0600123833451,0.6665512920008041 +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336 +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748 +10,4261.827183417434,1.993324376613004,0.0,670.6539865114453,0.6651567909975711 +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531 +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177 +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957 +14,4268.013923464058,1.9962180133598648,0.0,671.6275505949264,0.6661223750015779 +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092 +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146 +17,4363.564209013365,2.0409084020548467,0.0,686.6636318713531,0.6810352089996741 +18,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839 +19,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792 +20,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211 +21,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756 +22,4251.740304272998,1.988606582761394,0.0,669.0666847700711,0.6635825000012119 +23,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028 +24,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502 +25,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149 +26,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017 +27,4263.9447802230125,1.994314810328576,0.0,670.9872179350494,0.6654872910003178 +28,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692 +29,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221 +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583 +1,4531.796465296956,3.541325533545661,10.727122004526665,704.2080541561381,0.6902903339978366 +2,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217 +3,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334 +4,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716 +5,4423.116844673827,3.4563989666894583,10.469868714632144,687.3200352983833,0.6737360840015754 +6,4372.552212189364,3.41688575697609,10.350178215306212,679.4626609163522,0.6660340000016731 +7,4367.830293810635,3.4131958626372865,10.33900105963916,678.7289093061835,0.6653147500001069 +8,4402.0599576700315,3.4399442798617175,10.420025391425783,684.0479489332786,0.6705286659998819 +9,4377.090584625613,3.420432221234205,10.36092090315604,680.1678908283396,0.6667252919978637 +10,4383.548140369233,3.4254784114623615,10.37620645025492,681.1713478016708,0.6677089170007093 +11,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672 +12,4356.017836464776,3.403965139869143,10.311040035331771,676.8933397553377,0.6635154579998925 +13,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577 +14,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067 +15,4402.389306963763,3.440201646465068,10.420804987350497,684.099127406772,0.670578833000036 +16,4315.28000684407,3.372130983741042,10.214610358516552,670.5629787280001,0.6573102080001263 +17,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107 +18,4374.957761226749,3.4187655484216073,10.355872340849915,679.8364656579744,0.6664004169979307 +19,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159 +20,4380.030910237862,3.4227299083098126,10.367880887307392,680.624795941763,0.6671731669994188 +21,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498 +22,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315 +23,4376.213328707104,3.419746698658895,10.35884436875316,680.0315716692378,0.666591667002649 +24,4380.196677962882,3.422859445786119,10.368273272672516,680.6505550348669,0.6671984169988718 +25,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699 +26,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136 +27,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095 +28,4405.482821650499,3.4426190415604627,10.428127582202569,684.5798369829262,0.6710500420012977 +29,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227 +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615 +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135 +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816 +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988 +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868 +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682 +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318 +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657 +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435 +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166 +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583 +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683 +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049 +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155 +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538 +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964 +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264 +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035 +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506 +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285 +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116 +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129 +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858 +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954 +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173 +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859 +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842 +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256 +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392 +29,4394.9357444520365,2.1957352998409876,0.0,690.0441263390903,0.6867462920017715 +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179 +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888 +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684 +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505 +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456 +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906 +6,4351.687882995867,3.278171278302327,0.0,685.6785264482053,0.6781866250021267 +7,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492 +8,4279.214199576053,3.223576106541973,0.0,674.2591301611349,0.6668920000010985 +9,4289.831616235325,3.23157431580652,0.0,675.9320751896751,0.6685466659982922 +10,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947 +11,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687 +12,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766 +13,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288 +14,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154 +15,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639 +16,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175 +17,4306.362254109225,3.244027015482428,0.0,678.5367434754947,0.6711228750027658 +18,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187 +19,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203 +20,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345 +21,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055 +22,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631 +23,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103 +24,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301 +25,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826 +26,4277.992096765777,3.222655483914731,0.0,674.0665681767628,0.6667015419989184 +27,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038 +28,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906 +29,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585 +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987 +1,4232.037816623077,1.633116390355264,0.0,670.8442184708318,0.6674780419998569 +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916 +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375 +4,4243.973240627595,1.637722194323049,0.0,672.7361699455987,0.6693605000000389 +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998 +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657 +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266 +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238 +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002 +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034 +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991 +12,4237.355510600818,1.635168454531022,0.0,671.6871561796002,0.6683167499977571 +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947 +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404 +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294 +16,4265.879642022094,1.646175734844482,0.0,676.208677366321,0.6728155829987372 +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048 +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143 +19,4242.011171658709,1.636965044427198,0.0,672.4251513108294,0.6690510420012288 +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099 +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737 +22,4208.176472784298,1.6239084500183545,0.0,667.0618220810089,0.6637146249995567 +23,4214.574135928659,1.6263772674046235,0.0,668.0759518024544,0.6647236659991904 +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738 +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659 +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104 +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474 +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761 +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561 +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494 +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887 +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709 +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783 +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572 +5,4241.797005501357,1.7569867632493603,0.0,670.3401762201004,0.6658014579988958 +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688 +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704 +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198 +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689 +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537 +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878 +12,4249.790443577442,1.7602977102075297,0.0,671.6033961906878,0.6670561249993625 +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807 +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101 +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622 +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319 +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364 +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109 +19,4259.435815226876,1.7642929014655495,0.0,673.1276747270732,0.6685700829984853 +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986 +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958 +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543 +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503 +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133 +25,4247.644486345279,1.7594088372967045,0.0,671.2642660184275,0.6667192909990263 +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146 +27,4250.709990274736,1.7606785939163063,0.0,671.7487141053139,0.6672004590000142 +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455 +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169 +0,4233.805184421818,2.86436991299503,0.0,671.3616783283818,0.6663879580009962 +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342 +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766 +3,4232.574753845726,2.863537468381105,0.0,671.1665668623015,0.6661942920000001 +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978 +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734 +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708 +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662 +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107 +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705 +10,4212.616188554973,2.850034552815756,0.0,668.0017032686884,0.6630528750029043 +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905 +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128 +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049 +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436 +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658 +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247 +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384 +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947 +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966 +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179 +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067 +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647 +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332 +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924 +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472 +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219 +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785 +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212 +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668 +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083 +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339 +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718 +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503 +4,4332.218872799026,3.001398692530848,0.0,676.281823175923,0.6688972499978263 +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471 +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487 +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688 +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175 +9,4403.067309093179,3.0504831017688643,0.0,687.3416313418977,0.6798362919980718 +10,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898 +11,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943 +12,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758 +13,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134 +14,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097 +15,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611 +16,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152 +17,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642 +18,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146 +19,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455 +20,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713 +21,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074 +22,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953 +23,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337 +24,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074 +25,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496 +26,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735 +27,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393 +28,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164 +29,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869 +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888 +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896 +2,4296.3093777503855,1.8312061917425837,0.0,673.4510480068589,0.6612518339970848 +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919 +4,4281.318895847793,1.824816832675615,0.0,671.1012740823575,0.6589446250000037 +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367 +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265 +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202 +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616 +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722 +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922 +11,4294.81365551898,1.8305686734517777,0.0,673.2165919619837,0.6610216250010126 +12,4367.050740155173,1.8613581220292663,0.0,684.5398315324722,0.6721397500004969 +13,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633 +14,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174 +15,4304.474772925574,1.8346865095894,0.0,674.7309823539053,0.6625085830019088 +16,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507 +17,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669 +18,4304.719237909603,1.8347907073445096,0.0,674.7693024992254,0.66254620899781 +19,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735 +20,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411 +21,4289.335939610233,1.828233919036592,0.0,672.3579541882391,0.6601785410020966 +22,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537 +23,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059 +24,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462 +25,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423 +26,4296.307207702341,1.831205266807932,0.0,673.450707849528,0.6612515000015264 +27,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959 +28,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385 +29,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169 +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055 +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373 +2,4316.2545227606615,1.6630872731619033,0.0,683.460988156352,0.678783667000971 +3,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072 +4,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403 +5,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909 +6,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192 +7,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766 +8,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976 +9,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494 +10,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305 +11,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639 +12,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842 +13,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747 +14,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965 +15,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545 +16,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915 +17,4227.847230305918,1.629023238670687,0.0,669.462060349217,0.6648805420009012 +18,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213 +19,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505 +20,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857 +21,4215.308450834855,1.6241919469919075,0.0,667.4765966648173,0.6629086659995664 +22,4231.468303978479,1.6304184672208717,0.0,670.0354423352385,0.6654500000004191 +23,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565 +24,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735 +25,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721 +26,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212 +27,4228.263999257775,1.629183823069969,0.0,669.5280539828562,0.6649460840017127 +28,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414 +29,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668 +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123 +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618 +2,4259.939212365175,1.800396943474364,0.0,670.4811580235084,0.6678189169979305 +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758 +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047 +5,4269.997117263699,1.8046477602898936,0.0,672.0641936931438,0.6693956669987529 +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345 +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504 +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013 +9,4296.453269566179,1.8158290409061095,0.0,676.2281854189235,0.6735431250017427 +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246 +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127 +12,4258.273787900644,1.799693077769701,0.0,670.2190332212722,0.6675578329995915 +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711 +14,4308.839199102784,1.8210637610671545,0.0,678.1776339826014,0.675484833001974 +15,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011 +16,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155 +17,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318 +18,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518 +19,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639 +20,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803 +21,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353 +22,4280.57356799962,1.8091177324252912,0.0,673.7288444272706,0.6710537079998176 +23,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939 +24,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774 +25,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006 +26,4258.146210229622,1.7996391590545475,0.0,670.198953492351,0.6675378330000967 +27,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034 +28,4263.6413570172435,1.8019615972366845,0.0,671.0638466746244,0.6683992920006858 +29,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724 +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416 +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251 +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694 +3,4252.917010990448,1.8079994850813177,0.0,673.0110675855475,0.6701307500006806 +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295 +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529 +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722 +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746 +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708 +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747 +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627 +11,4218.894760122639,1.7935359505492905,0.0,667.6271507776164,0.6647698749984556 +12,4301.269696958708,1.828555172179607,0.0,680.6627317774496,0.677749667000171 +13,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405 +14,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344 +15,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605 +16,4236.082134553483,1.8008426447642405,0.0,670.3470000445554,0.6674780839966843 +17,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561 +18,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166 +19,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142 +20,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264 +21,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589 +22,4223.751874950823,1.7956008065259397,0.0,668.3957742958872,0.6655352090019733 +23,4240.11870444225,1.802558670790971,0.0,670.9857748438761,0.6681141250010114 +24,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789 +25,4245.349196909234,1.8047822570172225,0.0,671.8134842278367,0.6689382919976197 +26,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449 +27,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376 +28,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237 +29,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428 +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636 +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234 +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285 +3,4361.984865902042,2.435313583419511,0.0,683.8834075438763,0.6773193749977509 +4,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504 +5,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946 +6,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274 +7,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965 +8,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027 +9,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538 +10,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695 +11,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498 +12,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783 +13,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614 +14,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265 +15,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494 +16,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688 +17,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763 +18,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674 +19,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219 +20,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243 +21,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514 +22,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831 +23,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491 +24,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778 +25,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625 +26,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292 +27,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944 +28,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629 +29,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866 +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385 +1,4235.03031838744,2.499742443800431,0.0,671.8641090950546,0.6674069170003349 +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319 +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128 +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237 +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381 +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611 +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384 +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259 +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215 +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887 +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787 +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297 +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471 +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294 +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329 +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508 +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221 +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391 +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437 +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421 +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773 +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718 +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409 +24,4223.243286387955,2.492785104192349,0.0,669.9941617374582,0.6655493750004098 +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896 +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204 +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584 +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693 +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033 +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203 +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171 +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709 +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271 +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992 +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234 +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881 +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039 +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999 +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505 +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424 +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857 +12,4724.174633692797,2.151358301301202,0.0,707.7621818006551,0.69712887499918 +13,4713.35774514804,2.146432360841879,0.0,706.1416268401905,0.6955326669994975 +14,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828 +15,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863 +16,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767 +17,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978 +18,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894 +19,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856 +20,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611 +21,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634 +22,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011 +23,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656 +24,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471 +25,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497 +26,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462 +27,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372 +28,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194 +29,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452 +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754 +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034 +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907 +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888 +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375 +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376 +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414 +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597 +8,4249.175090223917,1.6719688560820003,0.0,674.1044033951409,0.6699446659986279 +9,4241.42578773114,1.6689196542606657,0.0,672.8750262048151,0.6687228750015493 +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961 +11,4233.126786808715,1.6656541566560097,0.0,671.5584428805699,0.6674144159987918 +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814 +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955 +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012 +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068 +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584 +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977 +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389 +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907 +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867 +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752 +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945 +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916 +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299 +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818 +26,4236.9941789942895,1.6671759012655485,0.0,672.1719798722437,0.6680241670001124 +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245 +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405 +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837 +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682 +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186 +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859 +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746 +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048 +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973 +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401 +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178 +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143 +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177 +10,5419.407102652684,4.659793684661683,94.0004423869882,754.4842925683155,0.6892624579995754 +11,5393.631146430152,4.637630625908802,93.55335449675025,750.8957904079389,0.6859841660007078 +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406 +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715 +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774 +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974 +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185 +17,5448.457186507701,4.684771951605358,94.50432052015412,758.5286154160444,0.6929571670007135 +18,5396.272993802559,4.639902177661347,93.59917774217568,751.2635856866639,0.6863201670021226 +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951 +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026 +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316 +22,5408.767675900578,4.650645537521451,93.81589990798668,753.0030824996963,0.6879092919989489 +23,5393.128921742544,4.637198795750398,93.54464333297923,750.8258712025788,0.6859202910018212 +24,5398.73039199595,4.642015133629659,93.64180168847167,751.6057021400655,0.686632708999241 +25,5350.694712888532,4.6007123951744475,92.80861551128883,744.9182242143605,0.6805233340019186 +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455 +27,5407.841192231741,4.649848914815828,93.7998299075078,752.8740983945686,0.6877914579999924 +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925 +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382 +0,5371.099961810868,5.280857460896809,106.01822699977645,756.2655808083043,0.6856771669990849 +1,5363.880609010041,5.273759404004894,105.87572676900965,755.2490761672071,0.6847555409985944 +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719 +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525 +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345 +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059 +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297 +7,5372.151900565224,5.281891725509057,106.03899084376413,756.4136966651483,0.6858114579990797 +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158 +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337 +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927 +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227 +12,5366.100043041169,5.27594154822965,105.91953538597753,755.5615785556473,0.6850388749990088 +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364 +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973 +15,5366.646735355581,5.276479055296713,105.93032635064031,755.6385543303717,0.685108665998996 +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709 +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213 +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005 +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962 +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437 +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114 +22,5365.320631859079,5.275175232319444,105.90415086656505,755.4518353271649,0.6849393749980663 +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881 +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078 +25,5378.330406530226,5.287966423346458,106.16094616996811,757.2836472219007,0.6866002089991525 +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997 +27,5403.673998780062,5.3128842053967,106.66119430074896,760.8520944019692,0.6898355839985015 +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381 +29,5330.02779723041,5.240475370021187,105.20751818802027,750.4825075789203,0.6804338750007446 +0,4233.7459268513485,1.8343208499560768,0.0,671.7282952539152,0.6684168749998207 +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618 +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474 +3,4217.2807193634335,1.82718710269874,0.0,669.1159170082785,0.6658173750001879 +4,4233.164257526582,1.8340688347929952,0.0,671.6360073011949,0.6683250419991964 +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054 +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184 +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005 +8,4236.48775285413,1.8355087787290232,0.0,672.1633147705684,0.6688497499999357 +9,4259.023032178145,1.845272456908542,0.0,675.7387737199081,0.6724075830024958 +10,4220.165585871843,1.828437005474472,0.0,669.5736314047516,0.6662728330011305 +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739 +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104 +13,4233.0040582703405,1.833999426557133,0.0,671.6105900052222,0.668299750002916 +14,4226.978850104824,1.831388933354592,0.0,670.6546273944516,0.667348500002845 +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113 +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328 +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272 +18,4233.944921816377,1.834407066894857,0.0,671.7598678968967,0.6684482919990842 +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066 +20,4249.650576202317,1.8412117287239056,0.0,674.2517350586942,0.670927874998597 +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719 +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693 +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316 +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798 +25,4220.752005679336,1.828691078840776,0.0,669.6666730714923,0.6663654160001897 +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681 +27,4221.91720018277,1.829195913237745,0.0,669.8515434276624,0.6665493750006135 +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876 +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709 +0,4252.8818824273885,2.916330819811958,0.0,674.9126980010802,0.6707283750001807 +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045 +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782 +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198 +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159 +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758 +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135 +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865 +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883 +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335 +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151 +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731 +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696 +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756 +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148 +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991 +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702 +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562 +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955 +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849 +20,4236.875066042591,2.905354457608498,0.0,672.3724902240174,0.6682039160004933 +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241 +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549 +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001 +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152 +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356 +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508 +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006 +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678 +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801 +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437 +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811 +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996 +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752 +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475 +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028 +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979 +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447 +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314 +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629 +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477 +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285 +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075 +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229 +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999 +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096 +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847 +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059 +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166 +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332 +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261 +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364 +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932 +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939 +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151 +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543 +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614 +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847 +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008 +29,4236.218136169378,2.099183099819649,0.0,670.8389420423648,0.6676307919988176 +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575 +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671 +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872 +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984 +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695 +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884 +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729 +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931 +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438 +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557 +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739 +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657 +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443 +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984 +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266 +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819 +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884 +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955 +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664 +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512 +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685 +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929 +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905 +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121 +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751 +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741 +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306 +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247 +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952 +29,4766.67763709578,2.552409740466019,0.0,712.716714378895,0.701130875000672 +0,4220.528551913251,1.8985583643147872,0.0,669.9579463127654,0.6673571669998637 +1,4206.953299792034,1.8924516864081216,0.0,667.8030389546134,0.6652106250003271 +2,4215.018030714928,1.8960795169419695,0.0,669.0832176100137,0.6664858339972852 +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112 +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162 +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398 +6,4233.671377624534,1.9044705199554777,0.0,672.0442111997277,0.6694353329985461 +7,4228.464944991696,1.902128463480386,0.0,671.217752884991,0.6686120829981519 +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751 +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449 +10,4221.611053511575,1.899045315756675,0.0,670.1297803706974,0.6675283339973248 +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534 +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175 +13,4230.499504402044,1.9030436876611256,0.0,671.54071462484,0.6689337909992901 +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926 +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654 +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086 +17,4230.842860190899,1.9031981424875408,0.0,671.5952182104279,0.6689880830017501 +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248 +19,4227.523423400034,1.9017049303444185,0.0,671.0682977008356,0.6684632079995936 +20,4219.778073043047,1.8982207696465505,0.0,669.8388168538721,0.6672385000019858 +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676 +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166 +23,4221.082448049655,1.8988075284016537,0.0,670.0458706363308,0.6674447500008682 +24,4206.322456585602,1.8921679085278371,0.0,667.7029002127881,0.665110874997481 +25,4242.370638791378,1.9083837869428983,0.0,673.4251138696396,0.670810874999006 +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935 +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882 +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524 +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..a3ed60d24 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n1000/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.1294090000010328 +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437 +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.1238124416234,0.1290127909996954 +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285 +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.1289722090004943 +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688 +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894872,0.1277482500008773 +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.129827667002246 +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167936,0.1300582920011948 +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276 +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.1253202499974577 +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.1305465419973188 +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.3348248818242,0.1280713749983988 +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971 +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.1339217910026491 +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.1294104999979026 +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.7237311424572,0.1285354159990674 +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.1304550839995499 +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479164,0.1318872500014549 +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596356,0.130042582997703 +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.1289919999981066 +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381303,0.1297635419978178 +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451525,0.1310055829999328 +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.1341233749990351 +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.1344618750008521 +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.1300322079987381 +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.1317313330000615 +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.1302883750031469 +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921 +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.1309345000008761 +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.1331702499992388 +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.1268256250004924 +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767624,0.1291754999983823 +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172 +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089052,0.1295549999995273 +5,574.3023135305887,0.5387451346440795,22.86299665145812,110.67845359844308,0.1315277499998046 +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967 +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.1310482090011646 +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084652,0.1287392910016933 +9,581.0269266320039,0.5450534020938123,23.13070375135616,111.97440829264757,0.1330678330014052 +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799497,0.1282551250005781 +11,534.6144979163302,0.5015145383830489,21.28302322263064,103.0298929790676,0.1224383750013657 +12,564.9127401658633,0.5299369044707911,22.4891973834792,108.86891281221816,0.1293773329998657 +13,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.1315748749984777 +14,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557429,0.1303790419988217 +15,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969 +16,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.1300272909975319 +17,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.1332790000014938 +18,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.1304998750019876 +19,577.1835894549931,0.5414480201266352,22.97770035412408,111.2337276347656,0.1321876250003697 +20,572.4775221883025,0.5370333228783325,22.79035163964923,110.32678326881744,0.1311098330006643 +21,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821 +22,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.1276652909982658 +23,550.3919260419447,0.516315127619085,21.91112322833492,106.07048903024578,0.126051750001352 +24,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.1295552080009656 +25,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.1292686669985414 +26,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367843,0.1345588340009271 +27,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156 +28,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.1282280839986924 +29,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544232,0.131837541997811 +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.1291073329994105 +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893635,0.1292414579984324 +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.1296916249993955 +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185 +4,570.7923075604117,0.4995848181471686,22.61453943479517,108.6430451197376,0.1289150839984358 +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.1188811249994614 +6,546.1066178825615,0.4779787179506606,21.636503299233237,103.944438530337,0.1233397500000137 +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137712,0.1353968750008789 +8,564.8324897164598,0.4943684995767823,22.378414080842347,107.50866970796427,0.1275690420006867 +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427 +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.1266568329992878 +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681 +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.127020125000854 +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.1180574170030013 +14,565.4239499832644,0.4948861739846519,22.40184747570525,107.62124663586232,0.127702625002712 +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.1330269160025636 +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177 +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.1327920000003359 +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.1297199580003507 +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.1315104159984912 +20,573.9317008573986,0.5023325658105368,22.73892081235696,109.2405886449314,0.1296241250020102 +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.1326278329979686 +22,569.2309991369702,0.4982182860925752,22.55268108379057,108.34586994893202,0.1285624580013973 +23,586.1692027690232,0.5130434147237337,23.22376523982768,111.56984125525462,0.1323879999981727 +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.9929550276332,0.1352632499983883 +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.1295764169990434 +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880932,0.1320039999991422 +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889296,0.1308776250007213 +28,569.554032432905,0.4985010203345533,22.56547952047745,108.40735522208752,0.1286354160001792 +29,569.8029068334558,0.4987188471526337,22.575339814442557,108.45472529412608,0.1286916249991918 +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892 +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.1231860420011798 +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.1267482919975009 +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.1252969589986605 +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.1273789999977452 +5,364.7452495438632,0.775049957456472,0.0,79.9986347392028,0.1277264160016784 +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789 +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.1272880409997014 +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.1274361249998037 +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.1269027079979423 +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.1268887499973061 +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329 +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.1277072500015492 +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.127331707997655 +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511 +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.1237031659984495 +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.1275474169997323 +17,363.6220179678712,0.7726631941298076,0.0,79.75227925496361,0.127333083000849 +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.1279127499983587 +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.1260935409991361 +20,362.955814476415,0.7712475732591968,0.0,79.6061625616232,0.1270997920000809 +21,341.77800196980706,0.7262466782433077,0.0,74.96128757172228,0.1196837499992398 +22,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.1263032079987169 +23,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.1252500000009604 +24,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.126944709001691 +25,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.1269748750019061 +26,362.2602175158703,0.7697694939823556,0.0,79.45359907452662,0.1268562080003903 +27,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.1222566659998847 +28,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758 +29,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.1265295829980459 +0,330.44415841729904,0.0,0.0,71.46026132650186,0.1117680830029712 +1,376.19058039632665,0.0,0.0,81.35316209688087,0.127241165999294 +2,373.3111818811339,0.0,0.0,80.73047724947932,0.1262672500015469 +3,375.9587422141797,0.0,0.0,81.30302588881162,0.1271627499991154 +4,358.0380640968126,0.0,0.0,77.42758639685981,0.1211013329993875 +5,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658 +6,375.96440985647655,0.0,0.0,81.304251545823,0.127164666999306 +7,375.1544485619503,0.0,0.0,81.12909321938014,0.126890708997962 +8,372.8164561803528,0.0,0.0,80.62349025345529,0.1260999160003848 +9,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354 +10,341.7689728538709,0.0,0.0,73.9093111235619,0.1155985420009528 +11,376.4109650344787,0.0,0.0,81.40082141671914,0.1273157079995144 +12,377.2984136638453,0.0,0.0,81.59273678079191,0.1276158750006288 +13,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929 +14,331.6252896252523,0.0,0.0,71.71568706979686,0.1121675840004172 +15,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419 +16,355.2765537051657,0.0,0.0,76.83039546696682,0.1201672909992339 +17,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539 +18,377.2072553916621,0.0,0.0,81.57302333213093,0.1275850419988273 +19,375.10048919039974,0.0,0.0,81.11742422571268,0.1268724580004345 +20,372.6835400780478,0.0,0.0,80.5947464576784,0.1260549590006121 +21,376.0683787140708,0.0,0.0,81.32673534995224,0.1271998330012138 +22,374.1239784649677,0.0,0.0,80.90624872192488,0.1265421669995703 +23,376.20314854727656,0.0,0.0,81.35588002464081,0.1272454169993579 +24,374.47284738731366,0.0,0.0,80.98169343391177,0.1266601669994997 +25,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582 +26,377.63409948635586,0.0,0.0,81.66533057913625,0.127729416002694 +27,377.7004998759669,0.0,0.0,81.67969000741759,0.127751874999376 +28,370.2482309866334,0.0,0.0,80.0680982490467,0.1252312499964318 +29,376.1321921537387,0.0,0.0,81.3405353369051,0.127221416998509 +0,581.4317776280168,0.5649808642284244,22.03425370490855,108.27692092095334,0.1290291250006703 +1,520.8723160480156,0.5061348598351681,19.739259533571555,96.99925725546927,0.1155900000012479 +2,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199 +3,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056125,0.1326433750000433 +4,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.1309582920002867 +5,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.1296407499976339 +6,595.3991361810349,0.5785530331567643,22.56356829311381,110.8779871779258,0.1321287079990725 +7,575.798831243909,0.5595072952927381,21.820784516416783,107.22792753316124,0.1277790829990408 +8,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995 +9,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.1333778750013152 +10,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.1294329999982437 +11,599.6841637858541,0.5827168210551312,22.72595602115012,111.6759648822128,0.1330796250003914 +12,575.4691302135833,0.55918692275684,21.80828998751676,107.16652907892852,0.1277059170024586 +13,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468507,0.1305355839976982 +14,582.9858553137769,0.5664909711537129,22.09314787499481,108.56632847169394,0.129374000000098 +15,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141 +16,601.3137204179325,0.5843002713406603,22.78771058228575,111.97942847222774,0.1334412500000326 +17,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170692,0.128728833002242 +18,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534 +19,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.1294090000010328 +20,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.1289375830019707 +21,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666796,0.1290653750002093 +22,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853932,0.122686833001353 +23,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881 +24,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684628,0.1276108329984708 +25,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817 +26,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.1288575420003326 +27,596.8328621274222,0.5799461935505104,22.617901548469906,111.14498226985664,0.1324468749990046 +28,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.1291972090002673 +29,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.132729291999567 +0,361.1273800704231,0.0,0.0,78.14745763956928,0.1268132500008505 +1,362.07910759150786,0.0,0.0,78.3534101378924,0.1271474580025824 +2,315.9812070935933,0.0,0.0,68.37788924071934,0.1109597499998926 +3,357.35440047061826,0.0,0.0,77.33099015545547,0.1254883330002485 +4,363.2426363907271,0.0,0.0,78.60519613520911,0.1275560419999237 +5,362.3479798378803,0.0,0.0,78.41159371422422,0.1272418750013457 +6,352.9112606909941,0.0,0.0,76.36950095004781,0.123928082997736 +7,360.94382237042606,0.0,0.0,78.10773601120054,0.1267487920013081 +8,360.55380282733665,0.0,0.0,78.02333633007905,0.1266118329986056 +9,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646 +10,364.2208248292936,0.0,0.0,78.81687473889593,0.1278995419997954 +11,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028 +12,374.00840463719953,0.0,0.0,80.93489325713479,0.1313365419991896 +13,360.17292159439404,0.0,0.0,77.94091416643339,0.1264780829988012 +14,360.17102501617666,0.0,0.0,77.94050374957197,0.126477416997659 +15,362.5744923942769,0.0,0.0,78.46061071316345,0.1273214169996208 +16,360.86337170818086,0.0,0.0,78.09032660092915,0.1267205410003953 +17,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175 +18,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644 +19,361.46791779675897,0.0,0.0,78.2211495250705,0.1269328330017742 +20,362.3516590767534,0.0,0.0,78.4123898963468,0.1272431670004152 +21,360.9834510950976,0.0,0.0,78.1163116115385,0.126762707997841 +22,364.26057316947674,0.0,0.0,78.82547622386255,0.1279135000004316 +23,364.3102884882237,0.0,0.0,78.83623454898611,0.1279309579986147 +24,362.5480314767952,0.0,0.0,78.45488460779974,0.127312125001481 +25,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774 +26,360.08998204684286,0.0,0.0,77.92296616487883,0.1264489580025838 +27,362.7770357881926,0.0,0.0,78.50444081902006,0.1273925420027808 +28,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133 +29,369.760449773745,0.0,0.0,80.0156417933386,0.1298448330016981 +0,492.1706690195863,0.0,0.0,92.06965491809224,0.1276172920006502 +1,486.08444962833966,0.0,0.0,90.9311146628915,0.1260391670002718 +2,486.6206809901031,0.0,0.0,91.03142668784857,0.1261782090004999 +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815 +4,491.069285551624,0.0,0.0,91.86362070636284,0.1273317090017371 +5,491.66914718394423,0.0,0.0,91.97583595396456,0.1274872499998309 +6,489.3934208087073,0.0,0.0,91.55011911376064,0.126897165999253 +7,484.9412836048319,0.0,0.0,90.71726424895256,0.1257427500022458 +8,489.216660608546,0.0,0.0,91.5170528388757,0.1268513329996494 +9,486.77108895533576,0.0,0.0,91.05956328827516,0.1262172090027888 +10,481.332938877034,0.0,0.0,90.04225642173755,0.124807125001098 +11,494.5105077458341,0.0,0.0,92.50736516303382,0.1282240000000456 +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553 +13,431.9192625401392,0.0,0.0,80.79851148741447,0.1119944159981969 +14,482.32457080883734,0.0,0.0,90.22775957240025,0.125064249998104 +15,487.23500493783496,0.0,0.0,91.1463473798684,0.1263375000016822 +16,490.8859305301352,0.0,0.0,91.8293207477944,0.1272841659992991 +17,492.7372712254749,0.0,0.0,92.17564837291538,0.1277642090026347 +18,491.3188354948492,0.0,0.0,91.91030365316124,0.127396416002739 +19,487.494200264288,0.0,0.0,91.19483467455105,0.1264047080003365 +20,491.90504470972667,0.0,0.0,92.019964962786,0.1275484170000709 +21,489.6739895004024,0.0,0.0,91.6026046929534,0.1269699160002346 +22,497.94691303592106,0.0,0.0,93.1502085284202,0.129115042000194 +23,489.3804086070156,0.0,0.0,91.54768494001787,0.1268937920031021 +24,489.13647389090073,0.0,0.0,91.50205242563018,0.1268305410012544 +25,488.2921993203388,0.0,0.0,91.34411520331948,0.1266116250008053 +26,488.2168333511135,0.0,0.0,91.33001660050562,0.1265920829973765 +27,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081 +28,480.867734774439,0.0,0.0,89.95523136338183,0.1246864999993704 +29,492.06428817424865,0.0,0.0,92.04975440728032,0.1275897080013237 +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888 +1,414.74347979123286,0.0,0.0,83.8936897077914,0.128032249998796 +2,413.8073026522728,0.0,0.0,83.70432119873855,0.1277432499991846 +3,414.58259013722255,0.0,0.0,83.86114518962916,0.1279825829988112 +4,405.3386539625768,0.0,0.0,81.99129562983686,0.1251289589999942 +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936 +6,413.9982892718827,0.0,0.0,83.74295368600988,0.127802208000503 +7,409.3646465046534,0.0,0.0,82.80566736935371,0.1263717920010094 +8,412.4757866594092,0.0,0.0,83.43498413862977,0.1273322080014622 +9,412.46337016487814,0.0,0.0,83.43247254871889,0.1273283750015252 +10,410.6350162053592,0.0,0.0,83.06263584909651,0.1267639580000832 +11,412.46282918595386,0.0,0.0,83.43236312031262,0.1273282080001081 +12,413.48687415937496,0.0,0.0,83.63950540327329,0.1276443329988978 +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001 +14,409.1943076028259,0.0,0.0,82.77121147150024,0.1263192079968575 +15,363.8779890686815,0.0,0.0,73.60469445303713,0.1123299579994636 +16,406.66274208677544,0.0,0.0,82.25913019180082,0.1255377079978643 +17,361.25707207713594,0.0,0.0,73.07453929074433,0.1115208749979501 +18,411.9619420265209,0.0,0.0,83.3310444161506,0.1271735830014222 +19,411.5208471033168,0.0,0.0,83.24182039595,0.1270374160012579 +20,411.8797430808043,0.0,0.0,83.31441733656462,0.1271482080010173 +21,410.98729740297114,0.0,0.0,83.13389476194843,0.1268727080023381 +22,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163 +23,430.42633868348526,0.0,0.0,87.06599490786343,0.1328735839997534 +24,394.2393637064164,0.0,0.0,79.7461478261975,0.1217025830010243 +25,398.69146909006815,0.0,0.0,80.64671303288978,0.1230769579997286 +26,393.4677205138221,0.0,0.0,79.59006099730456,0.121464375002688 +27,399.4925386960174,0.0,0.0,80.80875219258839,0.1233242499984044 +28,418.3888499209973,0.0,0.0,84.63106971600862,0.1291575840004952 +29,409.7174654168141,0.0,0.0,82.87703505029891,0.1264807079969614 +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.126946249998582 +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.1295307910004339 +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878 +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836749,0.127710290998948 +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596 +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.1245412919997761 +6,680.491389862858,0.7190504713912117,0.0,102.58453391847954,0.1142339580001134 +7,773.1125247644942,0.8169198518182477,0.0,116.54723219273669,0.129782250001881 +8,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971 +9,741.2949626305472,0.7832993925563833,0.0,111.750713338044,0.1244410420003987 +10,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.1315446250009699 +11,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268 +12,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.1252313749973836 +13,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.1264663750007457 +14,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.1290887920004024 +15,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.1260320420005882 +16,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.1289440420005121 +17,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.1285882080010196 +18,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.1219281670018972 +19,790.462774080707,0.8352532284566974,0.0,119.16279392648885,0.1326948329988226 +20,751.1743926154271,0.7937386264593074,0.0,113.24004404152788,0.1260995000011462 +21,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.1307220839989895 +22,774.9388388883993,0.8188496514472585,0.0,116.82255027314224,0.1300888330006273 +23,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128 +24,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.1206704579999495 +25,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.1268399170003249 +26,756.88342996767,0.7997711583332929,0.0,114.1006852555498,0.1270578749972628 +27,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334 +28,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802 +29,760.1081492584486,0.8031786017788388,0.0,114.586813853781,0.1275992080009018 +0,369.911488017962,0.937586825790073,0.0,81.70399481884921,0.1261905419996765 +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.1273650000002817 +2,358.4963540466036,0.908653744302064,0.0,79.182683432037,0.1222964160006085 +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.1275479169999016 +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467 +5,373.2398182137489,0.94602289399701,0.0,82.43913790545372,0.1273259589979716 +6,372.4002203609801,0.9438948284699412,0.0,82.25369219523775,0.1270395409992488 +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.1270712080004159 +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.1210473329992964 +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482 +10,374.8352147805899,0.9500666256772444,0.0,82.79152023758844,0.1278702079980576 +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.1311800829971616 +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.1267409579995728 +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.1219887500010372 +14,373.0092159450698,0.9454384037713364,0.0,82.38820375721647,0.1272472920027212 +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.1268485420005163 +16,371.0299297507992,0.940421655926711,0.0,81.95103001647053,0.1265720839983259 +17,372.40693906507727,0.9439118578638692,0.0,82.25517618528004,0.1270418329986569 +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.1277537079986359 +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.1282872920019144 +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.1205967499990947 +21,371.27811733858584,0.9410507183380468,0.0,82.0058483123155,0.1266567499988014 +22,326.0047805771626,0.8262997968824616,0.0,72.00612515690023,0.1112123339989921 +23,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.124332957999286 +24,371.9971566406658,0.9428732131744948,0.0,82.16466571949168,0.1269020409999939 +25,369.4635977484595,0.9364515920120275,0.0,81.60506730390526,0.1260377500002505 +26,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.1198882499993487 +27,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.1274375840002903 +28,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.127153334000468 +29,371.3744862190492,0.9412949772909728,0.0,82.0271337353562,0.1266896250017453 +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.1266642499977024 +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.127472290998412 +2,362.06830888108055,0.9323075821841325,0.0,78.97977089074149,0.1258273749990621 +3,368.62949009525886,0.9492022919502712,0.0,80.4109941609301,0.1281075419974513 +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.1265159579997998 +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.126595959001861 +6,364.5455978038035,0.938686475860447,0.0,79.52015431217787,0.1266882919990166 +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.126838874999521 +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.1260080419997393 +9,367.5248896744274,0.9463580017366168,0.0,80.17004214711623,0.1277236669993726 +10,364.9063615290765,0.9396154242058252,0.0,79.59884950772204,0.1268136660000891 +11,363.7304249899235,0.936587447095628,0.0,79.3423365896725,0.1264049999990675 +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.1258190410007955 +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.126164040997537 +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.1199694579991046 +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.1276645409998309 +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.1269337920020916 +17,365.2405141303859,0.9404758502529708,0.0,79.67173988571597,0.1269297920007375 +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482 +19,364.44404506429737,0.9384249826926916,0.0,79.4980021052523,0.1266529999993508 +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.1197223750023113 +21,363.56424934911365,0.9361595532256008,0.0,79.3060878661116,0.1263472499995259 +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.1264897919973009 +23,365.373837350975,0.9408191508025844,0.0,79.70082234656178,0.1269761250005103 +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.1266297080001095 +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164 +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.1203132499977073 +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905 +28,364.4625099886328,0.9384725289389112,0.0,79.50202995153919,0.1266594170010648 +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.1263581659986812 +0,395.6846676399492,0.0,0.0,81.77438952733165,0.1266846669968799 +1,396.35098819705064,0.0,0.0,81.91209503184734,0.1268979999986186 +2,396.2011939034781,0.0,0.0,81.88113771175549,0.1268500410005799 +3,386.0664705823485,0.0,0.0,79.78663954088394,0.1236052499989455 +4,386.5682950767456,0.0,0.0,79.89034937610185,0.1237659170001279 +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057 +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384 +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581 +8,398.01523257383474,0.0,0.0,82.25603701157462,0.1274308339998242 +9,397.0782147101372,0.0,0.0,82.06238769926466,0.1271308329996827 +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144 +11,396.4767043441066,0.0,0.0,81.93807622854256,0.1269382499995117 +12,396.02576599844105,0.0,0.0,81.84488280724774,0.1267938749988388 +13,399.8958961197486,0.0,0.0,82.64470537795509,0.1280329580004036 +14,396.5793855518793,0.0,0.0,81.9592968968379,0.1269711250024556 +15,401.0316391948003,0.0,0.0,82.87942434540003,0.128396584001166 +16,480.5304403215797,0.0,0.0,99.30908781725496,0.1538493750013003 +17,401.0917611744532,0.0,0.0,82.89184948740166,0.1284158329981437 +18,395.6790705523099,0.0,0.0,81.7732328021354,0.1266828750012791 +19,395.4228251241656,0.0,0.0,81.72027569975218,0.1266008339989639 +20,389.6295971968901,0.0,0.0,80.52301506296472,0.1247460410013445 +21,397.2721267874588,0.0,0.0,82.10246264540683,0.1271929169997747 +22,377.60744195350105,0.0,0.0,78.0384497354916,0.1208969589970365 +23,403.68586149940114,0.0,0.0,83.42796065822493,0.1292463749996386 +24,397.46993997509657,0.0,0.0,82.14334381665871,0.1272562500016647 +25,396.65291621411296,0.0,0.0,81.97449315160198,0.1269946669999626 +26,396.9833419725365,0.0,0.0,82.0427807727533,0.1271004580012231 +27,398.6449814389623,0.0,0.0,82.38618440724828,0.1276324579994252 +28,376.2813037352024,0.0,0.0,77.76438265101989,0.1204723749979166 +29,400.714743939528,0.0,0.0,82.81393301312637,0.1282951250032056 +0,317.8188162702387,0.0,0.0,68.6825576445368,0.110928750000312 +1,361.5172471330565,0.0,0.0,78.12605136820386,0.1261808749986812 +2,365.5671462435493,0.0,0.0,79.00125892317271,0.1275944170010916 +3,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753 +4,363.29860543222503,0.0,0.0,78.511013610226,0.126802624999982 +5,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168 +6,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412 +7,361.5755026402199,0.0,0.0,78.13864073366628,0.1262012080005661 +8,320.61966160542903,0.0,0.0,69.28783716651473,0.1119063330006611 +9,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971 +10,363.8756795742305,0.0,0.0,78.63572280299373,0.1270040420022269 +11,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991 +12,364.5024111287863,0.0,0.0,78.77116326126676,0.1272227910012588 +13,363.3991207344049,0.0,0.0,78.53273557155335,0.1268377079977654 +14,362.13132653995166,0.0,0.0,78.25875762127396,0.1263952080007584 +15,364.4982367205501,0.0,0.0,78.77026114654089,0.1272213340016605 +16,360.4311471743661,0.0,0.0,77.89133863503122,0.1258017919972189 +17,362.40422461795254,0.0,0.0,78.31773253721299,0.1264904580020811 +18,361.2869669971778,0.0,0.0,78.0762864458733,0.1261004999978467 +19,363.55037360229466,0.0,0.0,78.56542222598009,0.1268904999997175 +20,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709 +21,363.6459953773748,0.0,0.0,78.58608666667018,0.1269238750028307 +22,366.4062541016947,0.0,0.0,79.18259517794013,0.1278872920011053 +23,362.061848555091,0.0,0.0,78.24374301088613,0.1263709580016438 +24,362.24270905991347,0.0,0.0,78.28282805372238,0.1264340839989017 +25,362.0681746289213,0.0,0.0,78.24511011348758,0.1263731660001212 +26,362.6975363200963,0.0,0.0,78.38111896010236,0.1265928329994494 +27,358.52527861331754,0.0,0.0,77.47946897657832,0.125136584003485 +28,355.4742151019403,0.0,0.0,76.82011580184641,0.1240716669999528 +29,363.61639058594017,0.0,0.0,78.57968889318992,0.1269135420006932 +0,365.0774252251925,0.0,0.0,78.66773310494989,0.1270807500004593 +1,367.5883720326905,0.0,0.0,79.20879776588075,0.1279547920021286 +2,350.57697332024804,0.0,0.0,75.54314198662561,0.1220332500015501 +3,361.880120821408,0.0,0.0,77.97877051205046,0.1259677919988462 +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142 +5,364.4711468988576,0.0,0.0,78.53709084041105,0.1268697090017667 +6,369.5311022105454,0.0,0.0,79.62742178524363,0.1286310420000518 +7,362.71598461213733,0.0,0.0,78.15888438669123,0.1262587499986693 +8,364.6465054066651,0.0,0.0,78.57487749972414,0.1269307500006107 +9,357.7011552221953,0.0,0.0,77.07827728048227,0.1245131249997939 +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524 +11,363.63528023405354,0.0,0.0,78.35697634645797,0.1265787500014994 +12,364.8904548594365,0.0,0.0,78.62744429546584,0.1270156669997959 +13,363.9725956478543,0.0,0.0,78.42966185674032,0.1266961670007731 +14,364.7223961358544,0.0,0.0,78.59123061064388,0.1269571670018194 +15,365.02679214761287,0.0,0.0,78.65682257157232,0.1270631250008591 +16,361.9313514452685,0.0,0.0,77.98980980609107,0.1259856249998847 +17,345.0865750669766,0.0,0.0,74.36005819512079,0.1201220830007514 +18,364.1344290208866,0.0,0.0,78.46453408853974,0.1267525000002933 +19,364.22934916661006,0.0,0.0,78.48498770241478,0.1267855410005722 +20,363.6205571430931,0.0,0.0,78.3538037805579,0.1265736250024929 +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022 +22,362.8233554694112,0.0,0.0,78.18202090886338,0.1262961249994987 +23,351.26608593148893,0.0,0.0,75.69163357562735,0.1222731250018114 +24,365.8098711297876,0.0,0.0,78.82556225283807,0.1273357089994533 +25,362.3659829171635,0.0,0.0,78.08346520702132,0.1261369169988029 +26,362.8579468409589,0.0,0.0,78.1894747380969,0.1263081659999443 +27,372.2966479317493,0.0,0.0,80.22334801253913,0.1295937079994473 +28,364.5761218333096,0.0,0.0,78.55971108355833,0.1269062499995925 +29,346.7069542397634,0.0,0.0,74.70922126981647,0.120686124999338 +0,387.6502443930199,0.0,0.0,86.02535538551267,0.1311169590007921 +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788 +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028 +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004 +4,377.59806480196255,0.0,0.0,83.79462721178557,0.1277169579989276 +5,378.2879220367919,0.0,0.0,83.94771679356664,0.1279502920006052 +6,358.1112551934011,0.0,0.0,79.47021430052544,0.1211258330004056 +7,375.73853630594704,0.0,0.0,83.38197017871778,0.1270880000010947 +8,366.0266051541871,0.0,0.0,81.22674819474109,0.1238030829990748 +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211 +10,368.7047238020264,0.0,0.0,81.82106255872576,0.124708917002863 +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617 +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764 +13,376.62154905599033,0.0,0.0,83.57792384244205,0.1273866659976192 +14,373.9790358237752,0.0,0.0,82.99151084980181,0.126492874998803 +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924 +16,375.11520378706575,0.0,0.0,83.24364342093624,0.1268771670002024 +17,375.4187381278567,0.0,0.0,83.31100220611935,0.1269798329994955 +18,376.0866668397095,0.0,0.0,83.45922552247323,0.1272057500027585 +19,375.7424773478016,0.0,0.0,83.38284475452687,0.1270893330001854 +20,377.3000739401179,0.0,0.0,83.72849860703786,0.1276161669993598 +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222 +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624 +23,370.4305938208771,0.0,0.0,82.20405878759003,0.1252926669985754 +24,378.135167384867,0.0,0.0,83.91381826413529,0.1278986249999434 +25,331.56981324082483,0.0,0.0,73.58027353706892,0.1121485830008168 +26,373.97989913536014,0.0,0.0,82.99170243148396,0.1264931670011719 +27,375.5505517329566,0.0,0.0,83.34025360576987,0.1270244170009391 +28,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871 +29,376.9114124413168,0.0,0.0,83.64224883925715,0.1274847079985193 +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.1283158750011352 +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.1281986249996407 +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687 +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156 +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992 +5,365.6555120565184,0.8698118310585068,0.0,85.27501374492822,0.1265472909981326 +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.126757792000717 +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424 +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.1266237919990089 +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.126802790997317 +10,366.241235094044,0.8712051338010197,0.0,85.41161100226151,0.126749999999447 +11,324.8559755248956,0.7727589536731277,0.0,75.76009895818471,0.1124272499982907 +12,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.1259749579985509 +13,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.1282745000025897 +14,326.7121034467617,0.7771742625449043,0.0,76.19296904719081,0.1130696250002074 +15,365.4347097682464,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312 +16,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.1260847909979929 +17,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.1271165419966564 +18,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071 +19,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.1272964579984545 +20,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.1278989170023123 +21,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.1252903750028053 +22,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.1290519159992982 +23,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.127279833999637 +24,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.1260045829985756 +25,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.1285861670003214 +26,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498 +27,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.1242197499996109 +28,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.1280166249998728 +29,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.1299367089995939 +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392 +1,363.05448090538937,0.0,0.0,79.35981489298555,0.1272270419976848 +2,362.5024300899116,0.0,0.0,79.23914250679553,0.1270335840017651 +3,363.9394521290133,0.0,0.0,79.55326010902385,0.1275371669980813 +4,363.6331643510986,0.0,0.0,79.48630888644514,0.1274298330026795 +5,361.9330179821863,0.0,0.0,79.11467512836181,0.1268340419992455 +6,367.93805246242096,0.0,0.0,80.42731124729627,0.1289384170013363 +7,364.20709368215694,0.0,0.0,79.61176368144136,0.1276309579989174 +8,364.8000479429753,0.0,0.0,79.74137712199497,0.1278387499987729 +9,346.9887368845201,0.0,0.0,75.84801559378747,0.1215970410012232 +10,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772 +11,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003 +12,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107 +13,363.7586055346067,0.0,0.0,79.51372898350148,0.127473791999364 +14,362.0657101640452,0.0,0.0,79.14368021587322,0.1268805420004355 +15,356.5336590933504,0.0,0.0,77.93443319637895,0.1249419169980683 +16,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913 +17,364.2592916495958,0.0,0.0,79.62317359717468,0.127649250000104 +18,363.8922479704996,0.0,0.0,79.54294178635095,0.1275206250029441 +19,364.0480086058659,0.0,0.0,79.57698939033439,0.1275752090004971 +20,362.696591566812,0.0,0.0,79.2815841227969,0.1271016250029788 +21,362.9481816283438,0.0,0.0,79.33657901133893,0.1271897909973631 +22,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978 +23,362.2359756302134,0.0,0.0,79.18089842027075,0.1269402090001676 +24,363.4732460078574,0.0,0.0,79.45135245212167,0.1273737919982522 +25,363.7713268548058,0.0,0.0,79.51650972763022,0.1274782499967841 +26,363.4419763123466,0.0,0.0,79.44451723212573,0.1273628339986316 +27,363.1935936838931,0.0,0.0,79.39022345404717,0.1272757920014555 +28,363.6311440010843,0.0,0.0,79.48586725960514,0.1274291250010719 +29,364.6958917231345,0.0,0.0,79.71860968966385,0.1278022500009683 +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277 +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.1244781660025182 +2,362.381369627801,0.9030269478496196,0.0,79.29914419820177,0.126015500001813 +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.1223343749988998 +4,365.53192544718695,0.9108778945153712,0.0,79.98857362577574,0.1271110829984536 +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.1269080830024904 +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.1264884590018482 +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.1262647080002352 +8,366.083701130626,0.9122528777597512,0.0,80.10931752475443,0.1273029590010992 +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.1199655410018749 +10,364.2674620465664,0.9077269474164552,0.0,79.71187378979317,0.126671374997386 +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.1241264589989441 +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474 +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.1250427089980803 +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496 +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.1217608330007351 +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.1264975830017647 +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924 +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957 +19,364.75057778178666,0.9089308352661044,0.0,79.8175929783679,0.1268393749996903 +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226 +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.1196454169985372 +22,367.629021552613,0.916103699300466,0.0,80.44747670523722,0.1278403329997672 +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.1261047499974665 +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.1269116660005238 +25,364.2674620570281,0.9077269474425252,0.0,79.71187379208249,0.126671375001024 +26,370.1547160771413,0.9223975389093508,0.0,81.00016906496558,0.1287186250010563 +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.1204572079986974 +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.1272289589978754 +29,365.1832510520659,0.9100090243106396,0.0,79.91227394964912,0.1269898339996871 +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.1272624580014962 +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.1269249159995524 +2,367.4705435091116,0.4339677566877226,0.0,80.11712431157956,0.1269625000022642 +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.1263709169979847 +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.127091250000376 +5,353.7846134202577,0.417805230238313,0.0,77.13327327476549,0.1222339580017433 +6,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.1266598339971096 +7,367.1217775287856,0.4335558782589219,0.0,80.04108521703175,0.1268420000014885 +8,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.1299451669983682 +9,370.55613254945854,0.4376117117680742,0.0,80.78985448025985,0.128028582999832 +10,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.1267745839977578 +11,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448 +12,364.356853467442,0.4302906154684544,0.0,79.43826747109927,0.125886707999598 +13,366.21742300664187,0.4324878723733961,0.0,79.8439148997039,0.1265295420016627 +14,367.6326256151,0.4341591690585301,0.0,80.15246198003634,0.1270184999993944 +15,367.63057643996024,0.4341567490660867,0.0,80.15201521220062,0.1270177920014248 +16,368.71896362732775,0.4354420900395404,0.0,80.3893089303767,0.1273938340018503 +17,367.2385171663555,0.4336937430198602,0.0,80.06653717289728,0.1268823339996743 +18,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.1265819590007595 +19,367.5113042606,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143 +20,368.5741258840442,0.4352710425592818,0.0,80.35773093402126,0.1273437919990101 +21,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212 +22,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.1267945420004252 +23,368.7505580598764,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056 +24,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.1274272090013255 +25,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.1273582089997944 +26,357.5469937001284,0.4222484482287126,0.0,77.95355967299311,0.1235338750011578 +27,367.53795807863906,0.4340473705507183,0.0,80.13182225551724,0.1269857919978676 +28,363.3688037875811,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172 +29,366.4730872800551,0.4327898014753557,0.0,79.89965565698876,0.1266178750011022 +0,369.7851773109551,0.0,0.0,80.6080421172184,0.1269397500000195 +1,374.92032490521166,0.0,0.0,81.72743310137321,0.1287025419987912 +2,370.56236276808175,0.0,0.0,80.7774577723199,0.1272065420016588 +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313 +4,367.7597386710104,0.0,0.0,80.16652457348731,0.1262444580024748 +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078 +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382 +7,368.1525174790658,0.0,0.0,80.25214490833339,0.1263792909994663 +8,368.5888759246009,0.0,0.0,80.34726499998142,0.1265290840019588 +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434 +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949 +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178 +12,371.52986822542886,0.0,0.0,80.98836054895796,0.1275386669985891 +13,323.38193430333433,0.0,0.0,70.49277845539667,0.1110104580002371 +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533 +15,370.7117773569245,0.0,0.0,80.81002808127047,0.127257832999021 +16,366.30344520570907,0.0,0.0,79.8490727874539,0.1257445419978466 +17,369.4200698015571,0.0,0.0,80.52845374185712,0.126814415998524 +18,370.4960902757074,0.0,0.0,80.76301128775451,0.1271837919994141 +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574 +20,373.687726585192,0.0,0.0,81.45874375580162,0.1282794159997138 +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511 +22,371.68098115026265,0.0,0.0,81.02130107160961,0.1275905410002451 +23,370.3033407611029,0.0,0.0,80.72099456576393,0.1271176250011194 +24,369.25851641569744,0.0,0.0,80.49323734344371,0.1267589579983905 +25,370.04164746358737,0.0,0.0,80.66394905490458,0.127027791000728 +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348 +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206 +28,366.14965808656615,0.0,0.0,79.8155493275167,0.1256917499995324 +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539 +0,369.9041744801996,0.7311672810929373,0.0,80.96015894283615,0.1263925839994044 +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.1239147499982209 +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.1276219589999527 +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.1270622920019377 +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696 +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.126509249999799 +6,372.7495863983696,0.7367916352887809,0.0,81.5829283437941,0.1273648330025025 +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.1227005830005509 +8,376.1469165837081,0.7435069330495576,0.0,82.32649495039648,0.1285256669980299 +9,375.5150076768029,0.7422578768094935,0.0,82.18819035945118,0.1283097499981522 +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718 +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.1265221249996102 +12,372.6448394186792,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737 +13,352.6584027037055,0.697078603727001,0.0,77.18561266722611,0.1204998749999504 +14,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.1269626670000434 +15,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.1278689999999187 +16,371.6252751140856,0.7345692769550659,0.0,81.33685266647912,0.1269806669988611 +17,372.5041183310883,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274 +18,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.1287318750000849 +19,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.1274127080032485 +20,371.5436924157741,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037 +21,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.1269673329989018 +22,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.1263547090020438 +23,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.1277858329995069 +24,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187 +25,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782 +26,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.1278468330019677 +27,370.9710506631292,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306 +28,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.1266328330020769 +29,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.1273535420004918 +0,364.8766742429042,0.8046531454405679,0.0,80.39826011527006,0.1268683750022319 +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.1270218329991621 +2,366.4414736680069,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891 +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623 +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.1270766669986187 +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.1276734169987321 +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.126081708996935 +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.1280686669997521 +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.1271314580008038 +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.1226394589975825 +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565 +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.1250696669994795 +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885 +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.1254135829985898 +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.1274225419983849 +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.1204695409978739 +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874 +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.1267092080015572 +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.1264430000010179 +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.1262780420001945 +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.1269816249987343 +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.1207254170003579 +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.1275093339972954 +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.1266951249999692 +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.1258205420017475 +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.1262950420023116 +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248 +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.1196737499994924 +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.1269724580015463 +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645 +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.1297699579990876 +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.1281011659993964 +2,596.3705986768317,0.4998356696738266,17.56089319454044,107.19808995604669,0.1292779169998539 +3,588.5562142436058,0.4932862051547235,17.330788674435954,105.79344813218304,0.1275839580011961 +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.1278309170011198 +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598812,0.1344743330009805 +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338 +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092 +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083 +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.1300877080029749 +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.1316869169968413 +11,593.7434442190689,0.4976337745592017,17.48353327951329,106.72585685046349,0.1287084169998706 +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.1180163749995699 +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336 +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383 +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.1267631670016271 +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053044,0.1299459580004622 +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988683,0.1310292080015642 +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111336,0.1308710830016934 +19,592.0333350469189,0.4962004819636689,17.433176932990236,106.41846336514152,0.1283377090003341 +20,640.5170945999755,0.5368361411968281,18.86084309404856,115.13345774867972,0.1388477500004228 +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.1314542500003881 +22,527.3991446022711,0.4420286734667299,15.52994072779778,94.80041616949802,0.1143266669969307 +23,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.1336179169993556 +24,576.81763141262,0.4834477549974464,16.985131125576952,103.68342852178569,0.1250393329974031 +25,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.1294262920018809 +26,588.7255561438179,0.4934281355622321,17.33577516275309,105.82388747358006,0.1276206670008832 +27,574.9945015603392,0.4819197364589087,16.931446740922993,103.35571947922062,0.1246441250004863 +28,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.1329680839990032 +29,594.1982164073472,0.4980149324529366,17.496924626846507,106.80760251340648,0.1288069999973231 +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.1308225419998052 +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984025,0.129822625000088 +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.1305599580009584 +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.7164511012418,0.1303684579979744 +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478836,0.133669083003042 +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.1280587090004701 +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.131149834000098 +7,597.649025563058,0.5265920154749121,20.602912605455938,108.41213118589752,0.1288186250021681 +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518 +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390812,0.1328884159993322 +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.1274853749964677 +11,617.1983607546819,0.5438170478591833,21.276841997490543,111.95833472800936,0.1330323330003011 +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332355,0.1315104169989354 +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224584,0.132710166999459 +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480084,0.123739458998898 +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.1226190000015776 +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105 +17,609.4197285876301,0.5369632500359095,21.00868715765496,110.54730910114289,0.131355708999763 +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206 +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864 +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176743,0.1294865419986308 +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163 +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.128652208000858 +23,598.978231220104,0.5277631862724634,20.648734662910133,108.6532459738434,0.1291051250009331 +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.1315287079996778 +25,599.235721308217,0.5279900622793916,20.6576111866812,108.69995407176977,0.129160624997894 +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.1330622909990779 +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.129972374998033 +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964276,0.129170708998572 +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398 +0,305.3505916825048,0.9489872136384976,0.0,66.5128391206041,0.1058808339985262 +1,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.1275194589979946 +2,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944 +3,365.1552719264768,1.1348518505941692,0.0,79.53976352840897,0.1266182079998543 +4,368.1911850271189,1.1442870467021975,0.0,80.20105977327462,0.1276709160010796 +5,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.1273849159988458 +6,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688 +7,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.1250703330006217 +8,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.1285071249985776 +9,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042 +10,362.3793921728516,1.1262248019997214,0.0,78.93510891662754,0.1256556670014106 +11,367.18182008164734,1.1411500806925057,0.0,79.98119536147766,0.1273209169994515 +12,368.02740499563134,1.143778041119878,0.0,80.16538447025499,0.1276141249982174 +13,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.1275358330021845 +14,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604 +15,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.1268808749991876 +16,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.126675041999988 +17,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412 +18,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.1292150410008616 +19,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.1270570420019794 +20,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.1263232079982117 +21,363.1997428984131,1.128774338075507,0.0,79.11380140099804,0.1259401250026712 +22,367.0620167726892,1.140777748653696,0.0,79.95509926593404,0.1272793749994889 +23,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.1281139159982558 +24,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.1295731249992968 +25,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.1270090419966436 +26,364.5013486503741,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141 +27,363.1987825501328,1.1287713534464825,0.0,79.11359221361668,0.1259397920002811 +28,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.1270736670012411 +29,365.7796380252842,1.1367922936800423,0.0,79.6757657599865,0.1268347080003877 +0,392.35717841459865,1.1193729478414245,0.0,83.85120991103034,0.127699874999962 +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.1266927500000747 +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.1210532080003758 +3,347.0769311623034,0.9901909508391123,0.0,74.17430395376623,0.1129625840003427 +4,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.1250622500010649 +5,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.1264222079989849 +6,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.1273698340010014 +7,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.1269118330019409 +8,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.1256257500026549 +9,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.1276837919976969 +10,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.1263573749965871 +11,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.1259465830007684 +12,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134 +13,381.0208254600399,1.087030970881068,0.0,81.42850181872728,0.1240102499978093 +14,385.7221262916305,1.1004435175606295,0.0,82.433223497269,0.1255403750001278 +15,343.1331262252372,0.9789394973141547,0.0,73.33146779880578,0.1116789999978209 +16,388.1155996030598,1.107271962211548,0.0,82.94473607839231,0.1263193750019127 +17,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.126625500000955 +18,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.1266295829991577 +19,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009 +20,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.1265432920008606 +21,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.1272836249991087 +22,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.1268063340030494 +23,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.1266531250003026 +24,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.1270766249981534 +25,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.1264769169974897 +26,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.1222288329990988 +27,406.8875185658029,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041 +28,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.1266736659999878 +29,391.19795385274,1.116065745408526,0.0,83.60347038332958,0.1273225840013765 +0,381.4033142582579,0.0,0.0,82.61925110554331,0.1332604589988477 +1,362.55955683134994,0.0,0.0,78.5373329144196,0.1266765420004958 +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517 +3,364.8477942397509,0.0,0.0,79.0330088930131,0.1274760409978625 +4,344.4926161941541,0.0,0.0,74.62368809432583,0.1203640410021762 +5,363.3133567014207,0.0,0.0,78.70062038052308,0.1269399160009925 +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374 +7,363.50917225752414,0.0,0.0,78.74303777438224,0.1270083330018678 +8,364.4152638869781,0.0,0.0,78.93931454770832,0.1273249170008057 +9,362.471785151328,0.0,0.0,78.51831989014688,0.1266458750033052 +10,344.8277210316543,0.0,0.0,74.69627821004087,0.1204811249990598 +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794 +12,363.5227671803984,0.0,0.0,78.74598269464046,0.1270130830016569 +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383 +14,363.0369275435488,0.0,0.0,78.6407405390185,0.1268433330005791 +15,363.51000797351264,0.0,0.0,78.74321880644601,0.1270086249969608 +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366 +17,361.4334449521908,0.0,0.0,78.29339554775532,0.1262830839987145 +18,363.57273639099617,0.0,0.0,78.75680698117282,0.1270305420002841 +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433 +20,366.3633906583192,0.0,0.0,79.36131605868071,0.1280055829993216 +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325 +22,346.6831905324902,0.0,0.0,75.09820838441907,0.1211294169988832 +23,365.82126518573983,0.0,0.0,79.24388131473557,0.1278161670015833 +24,364.1797368434446,0.0,0.0,78.88829488630428,0.1272426249997806 +25,363.9925075577076,0.0,0.0,78.84773744279413,0.1271772079999209 +26,362.5031479127712,0.0,0.0,78.52511366399774,0.1266568329992878 +27,362.4386307071827,0.0,0.0,78.511138003562,0.1266342910021194 +28,363.69341924406274,0.0,0.0,78.78294919485816,0.1270727080009237 +29,367.1670423932719,0.0,0.0,79.53540239199062,0.1282863749984244 +0,380.3526569408623,0.0,0.0,80.10239659227442,0.1271814169995195 +1,387.17328681307646,0.0,0.0,81.53882352150227,0.1294620829976338 +2,385.3726788755025,0.0,0.0,81.15961488843315,0.1288599999970756 +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086 +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787 +5,394.2382781455051,0.0,0.0,83.02671305586976,0.1318244579997554 +6,373.8768198704676,0.0,0.0,78.73858314227304,0.1250160419986059 +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807 +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013 +9,380.0052443470086,0.0,0.0,80.02923138397054,0.127065250002488 +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719 +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198 +12,382.215942515876,0.0,0.0,80.49480515672312,0.1278044579994457 +13,361.8984704460614,0.0,0.0,76.21593875263807,0.1210107500010053 +14,378.8783985966985,0.0,0.0,79.79191729258059,0.1266884579999896 +15,380.88423856576446,0.0,0.0,80.21434786003091,0.1273591659992234 +16,379.1726048879838,0.0,0.0,79.85387723579232,0.1267868340000859 +17,378.95814974542776,0.0,0.0,79.80871291114045,0.126715124999464 +18,380.36461647596656,0.0,0.0,80.10491527436194,0.1271854160004295 +19,364.3920344346489,0.0,0.0,76.74108416150293,0.1218445419981435 +20,380.7520317589275,0.0,0.0,80.18650506235302,0.1273149590015236 +21,382.7415458800854,0.0,0.0,80.60549740078093,0.1279802080025547 +22,380.34679830413467,0.0,0.0,80.10116276142276,0.1271794580025016 +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071 +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658 +25,363.53484190384074,0.0,0.0,76.56055912820624,0.1215579159979824 +26,380.69109765029833,0.0,0.0,80.17367231872328,0.1272945839991734 +27,379.47166496381067,0.0,0.0,79.91685938764968,0.1268868329971155 +28,379.2726654116168,0.0,0.0,79.87495001549036,0.1268202920000476 +29,384.0864564464969,0.0,0.0,80.88873601527702,0.1284299159997317 +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612 +1,383.59709143073366,0.0,0.0,82.02532419427872,0.1296549590006179 +2,366.3914775833742,0.0,0.0,78.34621378046563,0.1238395000000309 +3,374.1168748582736,0.0,0.0,79.99815074807854,0.1264506670013361 +4,367.66885289590334,0.0,0.0,78.61935746812284,0.1242712499988556 +5,383.9118124443024,0.0,0.0,82.09262161061848,0.1297613339993404 +6,375.5611654777607,0.0,0.0,80.30698626571066,0.1269388340006116 +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152 +8,374.86182356292346,0.0,0.0,80.1574446018956,0.1267024579974531 +9,377.0421871072083,0.0,0.0,80.62367604779706,0.1274394159991061 +10,375.6765508526328,0.0,0.0,80.33165934846492,0.1269778339992626 +11,375.1464674630339,0.0,0.0,80.21831056962074,0.1267986669990932 +12,378.4867262518033,0.0,0.0,80.93256470804418,0.1279276669993123 +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779 +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733 +15,375.683823091228,0.0,0.0,80.33321438561643,0.1269802919996436 +16,373.6414012930972,0.0,0.0,79.8964792959204,0.1262899579996883 +17,314.9850723569249,0.0,0.0,67.3538805522994,0.1064642500023183 +18,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284 +19,383.49859372980546,0.0,0.0,82.00426223622037,0.1296216669979912 +20,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624 +21,374.5009986985629,0.0,0.0,80.08028870802231,0.1265805000002728 +22,332.15382500117937,0.0,0.0,71.02510886220082,0.1122672499986947 +23,381.9548202102259,0.0,0.0,81.67415409344545,0.1290998750009748 +24,370.0998334750992,0.0,0.0,79.13917884991385,0.1250929159978113 +25,377.0426841466608,0.0,0.0,80.62378233072553,0.1274395839973294 +26,378.23080739815214,0.0,0.0,80.87784107377504,0.1278411669991328 +27,377.1951733191553,0.0,0.0,80.65638939185659,0.1274911249965953 +28,374.3644119900847,0.0,0.0,80.05108210220116,0.1265343339982791 +29,379.98685748159807,0.0,0.0,81.25334073374067,0.1284347079999861 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..592015ffd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1541.6676935631917,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725 +1,1539.9339925655117,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675 +2,1537.4033292502133,1.4726085529216604,0.0,466.34835400932764,0.4953739999982645 +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.49654833399836207 +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737 +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737 +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.49639645899878815 +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326006 +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491 +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484 +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793 +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.49016595800276264 +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843 +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972 +14,1541.2718674655523,1.4763140492965061,0.0,467.5218173385799,0.49662049999824376 +15,1540.4087008558997,1.4754872613562258,0.0,467.2599886304011,0.49634237500140443 +16,1531.2747826396396,1.4667382975475476,0.0,464.48935086426195,0.4933992920014134 +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.49630495800010976 +18,1522.1950456773989,1.4580412314917615,0.0,461.73514817286826,0.4904736669996055 +19,1538.0370960592613,1.4732156092521662,0.0,466.54059771181096,0.49557820900008664 +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977 +21,1559.845791710162,1.4941051644733354,0.0,473.15594004026036,0.5026052920002257 +22,1514.2267569754817,1.450408771049312,0.0,459.3180867227526,0.48790616699989187 +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.49041137500171317 +24,1521.4884764967405,1.4573644410888318,0.0,461.52082095754054,0.490246000001207 +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.48776545800137683 +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.48868429199865204 +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.48857779200261575 +28,1545.923787001248,1.4807699109207357,0.0,468.9329076993075,0.4981194169995433 +29,1523.710854713787,1.4594931558561177,0.0,462.1949462204351,0.4909620830003405 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a837aa109 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.31231985583563,0.7304738829883385,0.0,65.27780245250334,0.07626404099937645 +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.07851154099989799 +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844 +3,254.08107578790055,0.7355946397333613,0.0,65.7354118961722,0.07679866600301466 +4,254.81416534506246,0.7377170203436471,0.0,65.925075545255,0.07702024999889545 +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552 +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.07641050000165706 +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283 +8,255.13438916087838,0.7386441060059645,0.0,66.00792329126028,0.07711704100074712 +9,254.33927029643834,0.7363421432453802,0.0,65.80221152820079,0.07687670799714397 +10,254.15483004207022,0.7358081669858593,0.0,65.75449346791815,0.07682095899872365 +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.07831520800027647 +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539 +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.07618895799896563 +14,254.00884336579398,0.7353855183639252,0.0,65.71672405015805,0.07677683299698401 +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.07684900000094785 +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.07785433300159639 +17,255.57027480120902,0.7399060462727463,0.0,66.1206948623736,0.07724879200031864 +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.07670766699811793 +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801 +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.07534466700235498 +21,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.07748124999852735 +22,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745 +23,252.95552999281614,0.7323360520913219,0.0,65.44421265506995,0.07645845799925155 +24,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.07691516599879833 +25,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.07675020799797494 +26,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.07672208399890224 +27,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.07638395799949649 +28,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..dac272559 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c4a29947f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0ae10d4f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b5e353bec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..15527645a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4929ff135 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0db01aca3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..76b9a03f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6c539705f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..14baf566b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2942a3813 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e7b51f15d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..31327837e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b252b1364 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..48641c981 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4f5c19b29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e905a487f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..592015ffd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1541.6676935631917,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725 +1,1539.9339925655117,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675 +2,1537.4033292502133,1.4726085529216604,0.0,466.34835400932764,0.4953739999982645 +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.49654833399836207 +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737 +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737 +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.49639645899878815 +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326006 +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491 +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484 +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793 +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.49016595800276264 +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843 +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972 +14,1541.2718674655523,1.4763140492965061,0.0,467.5218173385799,0.49662049999824376 +15,1540.4087008558997,1.4754872613562258,0.0,467.2599886304011,0.49634237500140443 +16,1531.2747826396396,1.4667382975475476,0.0,464.48935086426195,0.4933992920014134 +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.49630495800010976 +18,1522.1950456773989,1.4580412314917615,0.0,461.73514817286826,0.4904736669996055 +19,1538.0370960592613,1.4732156092521662,0.0,466.54059771181096,0.49557820900008664 +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977 +21,1559.845791710162,1.4941051644733354,0.0,473.15594004026036,0.5026052920002257 +22,1514.2267569754817,1.450408771049312,0.0,459.3180867227526,0.48790616699989187 +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.49041137500171317 +24,1521.4884764967405,1.4573644410888318,0.0,461.52082095754054,0.490246000001207 +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.48776545800137683 +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.48868429199865204 +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.48857779200261575 +28,1545.923787001248,1.4807699109207357,0.0,468.9329076993075,0.4981194169995433 +29,1523.710854713787,1.4594931558561177,0.0,462.1949462204351,0.4909620830003405 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a2f245362 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.31231985583563,0.7304738829883385,0.0,65.27780245250334,0.07626404099937645 +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.07851154099989799 +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844 +3,254.08107578790055,0.7355946397333613,0.0,65.7354118961722,0.07679866600301466 +4,254.81416534506246,0.7377170203436471,0.0,65.925075545255,0.07702024999889545 +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552 +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.07641050000165706 +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283 +8,255.13438916087838,0.7386441060059645,0.0,66.00792329126028,0.07711704100074712 +9,254.33927029643834,0.7363421432453802,0.0,65.80221152820079,0.07687670799714397 +10,254.15483004207022,0.7358081669858593,0.0,65.75449346791815,0.07682095899872365 +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.07831520800027647 +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539 +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.07618895799896563 +14,254.00884336579398,0.7353855183639252,0.0,65.71672405015805,0.07677683299698401 +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.07684900000094785 +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.07785433300159639 +17,255.57027480120902,0.7399060462727463,0.0,66.1206948623736,0.07724879200031864 +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.07670766699811793 +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801 +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.07534466700235498 +21,220.4004131405646,0.6380851545061746,0.0,57.02160971632452,0.06661833299949649 +22,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.07748124999852735 +23,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745 +24,252.95552999281614,0.7323360520913219,0.0,65.44421265506995,0.07645845799925155 +25,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.07691516599879833 +26,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.07675020799797494 +27,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.07672208399890224 +28,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.07638395799949649 +29,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1b34fab04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..20668a2ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..301554dde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a5c249e6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e64e8aa04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a3964c399 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..908a6754a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..65ad8e089 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..592f0f58a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8967cab80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..17a1c7158 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..21b949f77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..eb381c84f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e3beedc9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7748ef94a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..aabb33bbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0a8d1e7d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..012e3d28c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919 +1,1537.0330531240643,0.8380038018079471,0.0,481.5169845188464,0.49864629200237687 +2,1534.5546648251739,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392 +3,1535.0925456304747,0.8369458202285922,0.0,480.9090683033491,0.49801674999980605 +4,1531.808106737977,0.8351551155504301,0.0,479.88012939527715,0.4969512079987908 +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388 +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.49785987499853945 +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567 +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.49001229199711815 +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.49712879200160387 +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442 +11,1542.3129650510032,0.8408824557568605,0.0,483.17105907789204,0.5003592079992814 +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785 +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.49779004200172494 +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406 +15,1515.0810186523638,0.8260353615019213,0.0,474.63991871900396,0.49152458400203614 +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891 +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457 +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533 +19,1532.7389950049985,0.8356626439378236,0.0,480.1717552066734,0.49725320799916517 +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.49178124999889405 +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092 +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712 +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.48989633299788693 +24,1538.5186459913161,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767 +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646 +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.49837933299932047 +27,1537.7394370277207,0.8383889284619229,0.0,481.73827829422095,0.498875458000839 +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.49307525000040187 +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.49735962500199093 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d1c45134c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,261.6846194438566,0.0,0.0,70.7870578236059,0.07614516600006027 +1,264.8513555634606,0.0,0.0,71.64367650179537,0.07706662499913364 +2,269.77737005954486,0.0,0.0,72.97618917951907,0.07849999999962165 +3,266.95043658088093,0.0,0.0,72.21148889242174,0.07767741700081388 +4,245.5969253936852,0.0,0.0,66.43525246569763,0.07146395800009486 +5,264.9049123942919,0.0,0.0,71.65816390456655,0.07708220900167362 +6,268.0374194355293,0.0,0.0,72.50552343808509,0.07799370800057659 +7,249.45056281499606,0.0,0.0,67.47768153758304,0.07258529200043995 +8,261.54973419510105,0.0,0.0,70.7505706585463,0.07610591699994984 +9,243.28004640834678,0.0,0.0,65.80852458595446,0.07078979099969729 +10,270.3172100512772,0.0,0.0,73.12221871993097,0.07865708300232654 +11,272.70482912023755,0.0,0.0,73.76808216217084,0.07935183399968082 +12,270.90029688215856,0.0,0.0,73.2799467564564,0.07882674999927985 +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053 +14,264.864243015556,0.0,0.0,71.64716262497149,0.07707037499858416 +15,267.43801192267176,0.0,0.0,72.34338057174956,0.07781929200064042 +16,268.4402228149727,0.0,0.0,72.61448385835281,0.07811091599796782 +17,245.10605773741895,0.0,0.0,66.30247019808976,0.07132112500039511 +18,270.45009515394486,0.0,0.0,73.15816483501571,0.07869574999858742 +19,269.58577658088814,0.0,0.0,72.92436214176223,0.07844425000075717 +20,264.0393016153403,0.0,0.0,71.42401166286199,0.07683033299690578 +21,264.65732548978616,0.0,0.0,71.59119035234609,0.07701016599821742 +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325 +23,267.9255872644627,0.0,0.0,72.47527225107741,0.07796116700046696 +24,268.883125097681,0.0,0.0,72.73429124161788,0.07823979200111353 +25,266.39670220014995,0.0,0.0,72.06170084713644,0.07751629099948332 +26,270.10857762340623,0.0,0.0,73.06578255732055,0.07859637499859673 +27,269.86486039771097,0.0,0.0,72.99985577345161,0.07852545799687505 +28,266.2155630292543,0.0,0.0,72.01270175429117,0.07746358300209977 +29,267.78210693862854,0.0,0.0,72.43646007272716,0.07791941699906602 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8f002859f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..68992c9c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f3bf33d60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1ae8afae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f1f6b4deb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..90f899f3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..50269a541 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..43e4e3bb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..38c537026 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..76b40e11a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c703d33db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ac201afe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3a280eb97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b3cb7fd33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..703c62dbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..91c12e974 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..0d225923f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..012e3d28c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919 +1,1537.0330531240643,0.8380038018079471,0.0,481.5169845188464,0.49864629200237687 +2,1534.5546648251739,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392 +3,1535.0925456304747,0.8369458202285922,0.0,480.9090683033491,0.49801674999980605 +4,1531.808106737977,0.8351551155504301,0.0,479.88012939527715,0.4969512079987908 +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388 +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.49785987499853945 +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567 +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.49001229199711815 +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.49712879200160387 +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442 +11,1542.3129650510032,0.8408824557568605,0.0,483.17105907789204,0.5003592079992814 +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785 +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.49779004200172494 +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406 +15,1515.0810186523638,0.8260353615019213,0.0,474.63991871900396,0.49152458400203614 +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891 +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457 +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533 +19,1532.7389950049985,0.8356626439378236,0.0,480.1717552066734,0.49725320799916517 +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.49178124999889405 +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092 +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712 +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.48989633299788693 +24,1538.5186459913161,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767 +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646 +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.49837933299932047 +27,1537.7394370277207,0.8383889284619229,0.0,481.73827829422095,0.498875458000839 +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.49307525000040187 +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.49735962500199093 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d1c45134c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,261.6846194438566,0.0,0.0,70.7870578236059,0.07614516600006027 +1,264.8513555634606,0.0,0.0,71.64367650179537,0.07706662499913364 +2,269.77737005954486,0.0,0.0,72.97618917951907,0.07849999999962165 +3,266.95043658088093,0.0,0.0,72.21148889242174,0.07767741700081388 +4,245.5969253936852,0.0,0.0,66.43525246569763,0.07146395800009486 +5,264.9049123942919,0.0,0.0,71.65816390456655,0.07708220900167362 +6,268.0374194355293,0.0,0.0,72.50552343808509,0.07799370800057659 +7,249.45056281499606,0.0,0.0,67.47768153758304,0.07258529200043995 +8,261.54973419510105,0.0,0.0,70.7505706585463,0.07610591699994984 +9,243.28004640834678,0.0,0.0,65.80852458595446,0.07078979099969729 +10,270.3172100512772,0.0,0.0,73.12221871993097,0.07865708300232654 +11,272.70482912023755,0.0,0.0,73.76808216217084,0.07935183399968082 +12,270.90029688215856,0.0,0.0,73.2799467564564,0.07882674999927985 +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053 +14,264.864243015556,0.0,0.0,71.64716262497149,0.07707037499858416 +15,267.43801192267176,0.0,0.0,72.34338057174956,0.07781929200064042 +16,268.4402228149727,0.0,0.0,72.61448385835281,0.07811091599796782 +17,245.10605773741895,0.0,0.0,66.30247019808976,0.07132112500039511 +18,270.45009515394486,0.0,0.0,73.15816483501571,0.07869574999858742 +19,269.58577658088814,0.0,0.0,72.92436214176223,0.07844425000075717 +20,264.0393016153403,0.0,0.0,71.42401166286199,0.07683033299690578 +21,264.65732548978616,0.0,0.0,71.59119035234609,0.07701016599821742 +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325 +23,267.9255872644627,0.0,0.0,72.47527225107741,0.07796116700046696 +24,268.883125097681,0.0,0.0,72.73429124161788,0.07823979200111353 +25,266.39670220014995,0.0,0.0,72.06170084713644,0.07751629099948332 +26,270.10857762340623,0.0,0.0,73.06578255732055,0.07859637499859673 +27,269.86486039771097,0.0,0.0,72.99985577345161,0.07852545799687505 +28,266.2155630292543,0.0,0.0,72.01270175429117,0.07746358300209977 +29,267.78210693862854,0.0,0.0,72.43646007272716,0.07791941699906602 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8f002859f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..68992c9c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f3bf33d60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1ae8afae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f1f6b4deb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..90f899f3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..50269a541 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..43e4e3bb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..38c537026 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..76b40e11a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c703d33db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ac201afe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3a280eb97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b3cb7fd33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..703c62dbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..91c12e974 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0d225923f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d38b4c356 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553 +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.49463816700153984 +2,1513.0155314201527,1.7770758373213904,0.0,472.4389022330719,0.489482125001814 +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.49837687499893946 +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381 +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.49876279199816054 +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078 +7,1540.8432585109908,1.8097602218460394,0.0,481.1281063855878,0.49848479199863505 +8,1521.9490629730979,1.7875685009689248,0.0,475.2283962946275,0.49237224999887985 +9,1537.8767464620303,1.806275976791144,0.0,480.20181338543824,0.4975250829993456 +10,1540.0165314743188,1.8087892095791982,0.0,480.8699609762772,0.49821733399949153 +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.48852954099857016 +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686 +13,1514.3150598492307,1.7786021670405963,0.0,472.84467981545924,0.48990254100135644 +14,1541.9176562329637,1.81102212973247,0.0,481.4635869340618,0.4988323750003474 +15,1515.38856114981,1.779863022056937,0.0,473.17988045647013,0.4902498339979502 +16,1539.5401197356418,1.8082296516818483,0.0,480.72120147304844,0.4980632080005307 +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.49961987500137184 +18,1541.4078889281657,1.8104233948608175,0.0,481.30441215966476,0.49866745799954515 +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968 +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977 +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.49756745799822966 +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822 +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.49152458300159196 +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001 +25,1541.7235658764823,1.8107941655935713,0.0,481.40298224557984,0.498769583999092 +26,1538.245614273331,1.8067092215669018,0.0,480.31699231137856,0.4976444170024479 +27,1538.7954354415917,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098 +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118 +29,1539.4867990582093,1.8081670251684205,0.0,480.70455209847864,0.49804595800014795 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..42f2d264d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878 +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405 +2,255.3331764989173,0.0,0.0,70.37239576741659,0.07697704100064584 +3,259.2942335745159,0.0,0.0,71.46410300265921,0.07817120799882105 +4,258.6612396991297,0.0,0.0,71.28964351357979,0.07798037500106147 +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063 +6,257.37410271121684,0.0,0.0,70.9348955925995,0.07759233300021151 +7,256.01136788270634,0.0,0.0,70.55931214514888,0.07718150000073365 +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919 +9,259.045318948124,0.0,0.0,71.39549962396424,0.07809616600206937 +10,258.8377308561513,0.0,0.0,71.33828625449453,0.07803358299861429 +11,256.8371626413573,0.0,0.0,70.78690950000609,0.07743045800089021 +12,257.99811414343014,0.0,0.0,71.1068794298479,0.07778045799932443 +13,258.1165610601165,0.0,0.0,71.13952459336632,0.07781616700231098 +14,256.135891547354,0.0,0.0,70.5936321216249,0.07721904100253596 +15,256.2543384519732,0.0,0.0,70.62627728181748,0.07725475000188453 +16,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197 +17,253.0893623898181,0.0,0.0,69.75397799390524,0.07630058299764642 +18,253.0000819108746,0.0,0.0,69.72937139446263,0.07627366700035054 +19,240.37099932043577,0.0,0.0,66.24866900231768,0.07246629099972779 +20,247.79459427718265,0.0,0.0,68.29468656053892,0.07470433300113655 +21,256.24618193564646,0.0,0.0,70.62402926374595,0.07725229100105935 +22,254.47628482944975,0.0,0.0,70.13622779065612,0.07671870800186298 +23,257.38833929398254,0.0,0.0,70.93881933823452,0.07759662500029663 +24,256.62086741918284,0.0,0.0,70.7272963577338,0.07736524999927497 +25,257.5863909862953,0.0,0.0,70.99340437988461,0.07765633300004993 +26,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218 +27,256.10728569098626,0.0,0.0,70.5857480594236,0.07721041699915077 +28,261.6339654918951,0.0,0.0,72.1089566904453,0.07887658300023759 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4aa621f00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..57fbd2322 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cadcfb05c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..811d27e04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e451c3ecf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ae5d7965c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0cb850a15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..721d5509b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9172092a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..06aec8c88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8923cf26c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5ba593ba6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fef2b8a4f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..97e371170 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..7749baebf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..797784263 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c005fcd22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d38b4c356 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553 +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.49463816700153984 +2,1513.0155314201527,1.7770758373213904,0.0,472.4389022330719,0.489482125001814 +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.49837687499893946 +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381 +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.49876279199816054 +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078 +7,1540.8432585109908,1.8097602218460394,0.0,481.1281063855878,0.49848479199863505 +8,1521.9490629730979,1.7875685009689248,0.0,475.2283962946275,0.49237224999887985 +9,1537.8767464620303,1.806275976791144,0.0,480.20181338543824,0.4975250829993456 +10,1540.0165314743188,1.8087892095791982,0.0,480.8699609762772,0.49821733399949153 +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.48852954099857016 +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686 +13,1514.3150598492307,1.7786021670405963,0.0,472.84467981545924,0.48990254100135644 +14,1541.9176562329637,1.81102212973247,0.0,481.4635869340618,0.4988323750003474 +15,1515.38856114981,1.779863022056937,0.0,473.17988045647013,0.4902498339979502 +16,1539.5401197356418,1.8082296516818483,0.0,480.72120147304844,0.4980632080005307 +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.49961987500137184 +18,1541.4078889281657,1.8104233948608175,0.0,481.30441215966476,0.49866745799954515 +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968 +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977 +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.49756745799822966 +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822 +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.49152458300159196 +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001 +25,1541.7235658764823,1.8107941655935713,0.0,481.40298224557984,0.498769583999092 +26,1538.245614273331,1.8067092215669018,0.0,480.31699231137856,0.4976444170024479 +27,1538.7954354415917,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098 +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118 +29,1539.4867990582093,1.8081670251684205,0.0,480.70455209847864,0.49804595800014795 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..b34ea773c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878 +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405 +2,255.3331764989173,0.0,0.0,70.37239576741659,0.07697704100064584 +3,259.2942335745159,0.0,0.0,71.46410300265921,0.07817120799882105 +4,258.6612396991297,0.0,0.0,71.28964351357979,0.07798037500106147 +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063 +6,257.37410271121684,0.0,0.0,70.9348955925995,0.07759233300021151 +7,256.01136788270634,0.0,0.0,70.55931214514888,0.07718150000073365 +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919 +9,259.045318948124,0.0,0.0,71.39549962396424,0.07809616600206937 +10,238.6136802942901,0.0,0.0,65.7643341748063,0.07193650000044727 +11,258.8377308561513,0.0,0.0,71.33828625449453,0.07803358299861429 +12,256.8371626413573,0.0,0.0,70.78690950000609,0.07743045800089021 +13,257.99811414343014,0.0,0.0,71.1068794298479,0.07778045799932443 +14,258.1165610601165,0.0,0.0,71.13952459336632,0.07781616700231098 +15,256.135891547354,0.0,0.0,70.5936321216249,0.07721904100253596 +16,256.2543384519732,0.0,0.0,70.62627728181748,0.07725475000188453 +17,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197 +18,253.0893623898181,0.0,0.0,69.75397799390524,0.07630058299764642 +19,253.0000819108746,0.0,0.0,69.72937139446263,0.07627366700035054 +20,240.37099932043577,0.0,0.0,66.24866900231768,0.07246629099972779 +21,247.79459427718265,0.0,0.0,68.29468656053892,0.07470433300113655 +22,256.24618193564646,0.0,0.0,70.62402926374595,0.07725229100105935 +23,254.47628482944975,0.0,0.0,70.13622779065612,0.07671870800186298 +24,257.38833929398254,0.0,0.0,70.93881933823452,0.07759662500029663 +25,256.62086741918284,0.0,0.0,70.7272963577338,0.07736524999927497 +26,257.5863909862953,0.0,0.0,70.99340437988461,0.07765633300004993 +27,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218 +28,256.10728569098626,0.0,0.0,70.5857480594236,0.07721041699915077 +29,261.6339654918951,0.0,0.0,72.1089566904453,0.07887658300023759 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..942039904 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ab418d734 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8d2ebf0a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f215336a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0f549f798 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0adbc10cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..909b30042 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..721d5509b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a15e956ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..16287a809 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5b914e792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..004b55a0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f8032be89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..97df49a5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..08dcac3d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..797784263 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7ff7216b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..dce511bcc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903 +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644 +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.49774491599964676 +3,1546.2059346063343,2.2033334416620187,0.0,467.473911872625,0.496353624999756 +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.49697345800086623 +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.49078937499871245 +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513 +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531 +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.49759083300159546 +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121 +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.49140729200007627 +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572 +12,1543.2675884952519,2.199146317486109,0.0,466.5855436933028,0.49541037500239327 +13,1529.3375071110681,2.179296041742173,0.0,462.3739768562977,0.4909386250001262 +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619 +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023 +16,1530.0441213304555,2.180302962427888,0.0,462.58761186178356,0.4911654579991591 +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.49716904099841486 +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865 +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.49742129200240015 +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434 +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.49698870800057193 +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.49657083300189697 +23,1529.5659520299541,2.1796215742718923,0.0,462.44304400801985,0.49101195899856975 +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.49240658399867243 +25,1550.7246888389986,2.209772637174495,0.0,468.84009452052203,0.49780420800016145 +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.49119670799700543 +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781 +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396 +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2eff4c613 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,251.53573576786724,0.0,0.0,62.72152708777785,0.07440958300139755 +1,261.23641907506607,0.0,0.0,65.1404345601695,0.07727924999926472 +2,259.69001833656097,0.0,0.0,64.75483282643327,0.07682179200128303 +3,261.4181167235588,0.0,0.0,65.18574165717872,0.07733300000109011 +4,260.86401158116945,0.0,0.0,65.04757313574873,0.07716908399743261 +5,249.72157861360998,0.0,0.0,62.269159130020775,0.07387291700069909 +6,260.1970815239249,0.0,0.0,64.88127123227001,0.07697179200113169 +7,259.727625526503,0.0,0.0,64.764210342417,0.07683291700232076 +8,261.2393769415889,0.0,0.0,65.14117211702067,0.07728012499865144 +9,267.88415944731423,0.0,0.0,66.79807746549119,0.07924579199971049 +10,260.33046618014515,0.0,0.0,64.91453127503361,0.07701124999948661 +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019 +12,262.63957446676875,0.0,0.0,65.49031744516148,0.07769433299836237 +13,258.95505728780233,0.0,0.0,64.57156710004472,0.07660437500089756 +14,259.6273385675486,0.0,0.0,64.73920335407234,0.07680325000183075 +15,261.7203838407915,0.0,0.0,65.26111327435025,0.07742241699816077 +16,262.19885205972054,0.0,0.0,65.38042140073868,0.07756395800242899 +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099 +18,260.1817276561712,0.0,0.0,64.8774426787276,0.07696725000278093 +19,238.90592081951175,0.0,0.0,59.57222793162153,0.07067341700167162 +20,244.5389668999695,0.0,0.0,60.97685241268609,0.07233979100055876 +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988009 +22,259.8796025059062,0.0,0.0,64.80210646163543,0.07687787500253762 +23,259.9752413748415,0.0,0.0,64.82595442856649,0.07690616699983366 +24,260.9768297690729,0.0,0.0,65.07570484040285,0.07720245800010161 +25,261.8691223893613,0.0,0.0,65.29820187678934,0.07746641700214241 +26,259.81227464687464,0.0,0.0,64.78531796786092,0.07685795799989137 +27,259.9996074518044,0.0,0.0,64.83203021557779,0.07691337500000373 +28,259.53803797523506,0.0,0.0,64.71693586391773,0.07677683300062199 +29,238.99902099587555,0.0,0.0,59.5954428645449,0.07070095800008858 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..edcba0887 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cd4785ed2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..150d1713e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6b78cbb1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..de0daf22f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5ec5c8ceb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..075ea9760 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d1b222dbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..82a8341ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..679e7be13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..74e22e8f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d45728ec2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..498fe78b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1dabb4fda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5ee2b3d60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f0acbac02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c3d473d16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dce511bcc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903 +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644 +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.49774491599964676 +3,1546.2059346063343,2.2033334416620187,0.0,467.473911872625,0.496353624999756 +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.49697345800086623 +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.49078937499871245 +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513 +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531 +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.49759083300159546 +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121 +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.49140729200007627 +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572 +12,1543.2675884952519,2.199146317486109,0.0,466.5855436933028,0.49541037500239327 +13,1529.3375071110681,2.179296041742173,0.0,462.3739768562977,0.4909386250001262 +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619 +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023 +16,1530.0441213304555,2.180302962427888,0.0,462.58761186178356,0.4911654579991591 +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.49716904099841486 +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865 +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.49742129200240015 +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434 +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.49698870800057193 +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.49657083300189697 +23,1529.5659520299541,2.1796215742718923,0.0,462.44304400801985,0.49101195899856975 +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.49240658399867243 +25,1550.7246888389986,2.209772637174495,0.0,468.84009452052203,0.49780420800016145 +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.49119670799700543 +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781 +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396 +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2eff4c613 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,251.53573576786724,0.0,0.0,62.72152708777785,0.07440958300139755 +1,261.23641907506607,0.0,0.0,65.1404345601695,0.07727924999926472 +2,259.69001833656097,0.0,0.0,64.75483282643327,0.07682179200128303 +3,261.4181167235588,0.0,0.0,65.18574165717872,0.07733300000109011 +4,260.86401158116945,0.0,0.0,65.04757313574873,0.07716908399743261 +5,249.72157861360998,0.0,0.0,62.269159130020775,0.07387291700069909 +6,260.1970815239249,0.0,0.0,64.88127123227001,0.07697179200113169 +7,259.727625526503,0.0,0.0,64.764210342417,0.07683291700232076 +8,261.2393769415889,0.0,0.0,65.14117211702067,0.07728012499865144 +9,267.88415944731423,0.0,0.0,66.79807746549119,0.07924579199971049 +10,260.33046618014515,0.0,0.0,64.91453127503361,0.07701124999948661 +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019 +12,262.63957446676875,0.0,0.0,65.49031744516148,0.07769433299836237 +13,258.95505728780233,0.0,0.0,64.57156710004472,0.07660437500089756 +14,259.6273385675486,0.0,0.0,64.73920335407234,0.07680325000183075 +15,261.7203838407915,0.0,0.0,65.26111327435025,0.07742241699816077 +16,262.19885205972054,0.0,0.0,65.38042140073868,0.07756395800242899 +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099 +18,260.1817276561712,0.0,0.0,64.8774426787276,0.07696725000278093 +19,238.90592081951175,0.0,0.0,59.57222793162153,0.07067341700167162 +20,244.5389668999695,0.0,0.0,60.97685241268609,0.07233979100055876 +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988009 +22,259.8796025059062,0.0,0.0,64.80210646163543,0.07687787500253762 +23,259.9752413748415,0.0,0.0,64.82595442856649,0.07690616699983366 +24,260.9768297690729,0.0,0.0,65.07570484040285,0.07720245800010161 +25,261.8691223893613,0.0,0.0,65.29820187678934,0.07746641700214241 +26,259.81227464687464,0.0,0.0,64.78531796786092,0.07685795799989137 +27,259.9996074518044,0.0,0.0,64.83203021557779,0.07691337500000373 +28,259.53803797523506,0.0,0.0,64.71693586391773,0.07677683300062199 +29,238.99902099587555,0.0,0.0,59.5954428645449,0.07070095800008858 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..edcba0887 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cd4785ed2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..150d1713e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6b78cbb1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..de0daf22f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5ec5c8ceb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..075ea9760 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d1b222dbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..82a8341ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..679e7be13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..74e22e8f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d45728ec2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..498fe78b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1dabb4fda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5ee2b3d60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f0acbac02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c3d473d16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b50d7e444 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892 +1,1550.9128816299099,0.8958868617275533,0.0,462.0121726923871,0.49238141699970583 +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.49119641699871863 +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874 +4,1565.1120060356702,0.904089004577632,0.0,466.24204813847956,0.49688933300058125 +5,1571.375161858294,0.9077069247592893,0.0,468.10782297586456,0.49887775000024703 +6,1570.1072269824244,0.9069745005140125,0.0,467.730109079893,0.49847520800176426 +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487 +8,1565.5201723263629,0.9043247823711901,0.0,466.36363961986854,0.49701891700169654 +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015 +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518 +11,1560.7225994317741,0.9015534580915663,0.0,464.93445742470254,0.4954957909976656 +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.48715066599834245 +13,1570.2996305808672,0.9070856427051927,0.0,467.78742551952234,0.49853629199787974 +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609 +15,1547.5227554628377,0.8939285508974267,0.0,461.00226454428775,0.49130512500050827 +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.49157375000140746 +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721 +18,1564.0133771354122,0.9034543801513901,0.0,465.9147699714058,0.49654054200073006 +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579 +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017 +21,1554.6354429575943,0.898037204164546,0.0,463.1211122513755,0.4935632499982603 +22,1566.8541179900308,0.9050953378346812,0.0,466.76101792630004,0.4974424160027411 +23,1563.1480932062545,0.902954547753982,0.0,465.6570045528313,0.496265833000507 +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334 +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029 +26,1544.1073015837853,0.8919556094812306,0.0,459.98481134876505,0.49022079199858126 +27,1567.236953417524,0.9053164832218641,0.0,466.8750634215273,0.49756395800068276 +28,1564.9869329670676,0.9040167559553887,0.0,466.2047892564012,0.4968496249966847 +29,1569.5676911434848,0.9066628369284802,0.0,467.56938301452436,0.4983039170001575 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..56ef502d2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,261.95098582591453,0.9150830142708879,0.0,66.25878862591058,0.0779010410005867 +1,245.40833969424457,0.8572939800419981,0.0,62.07443448081875,0.07298145900131203 +2,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.07655512500059558 +3,258.9009587470573,0.9044282424855151,0.0,65.48730422441415,0.07699399999910383 +4,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227 +5,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.07746258399856742 +6,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.07754108300287044 +7,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.07707945799847948 +8,258.61457516789665,0.9034278081942307,0.0,65.41486537110077,0.07690883300165297 +9,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.07071595800152863 +10,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.07803116699869861 +11,260.6072019459684,0.9103887246139407,0.0,65.91888728223164,0.07750141599899507 +12,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548 +13,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.07680120899749454 +14,260.0306551965286,0.9083746526466905,0.0,65.77305355275111,0.07732995799960918 +15,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.07721795800171094 +16,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619 +17,260.3005048322299,0.9093173283051115,0.0,65.84131025320345,0.07741020800312981 +18,264.0587854421345,0.9224462682025657,0.0,66.79194275318578,0.07852787500087288 +19,263.0532231845429,0.9189335005799791,0.0,66.5375923568096,0.07822883300104877 +20,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.07759904200065648 +21,258.78481075864437,0.9040224984452577,0.0,65.45792535038811,0.07695945899831713 +22,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.07753724999929545 +23,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.07745091700053308 +24,252.42470901509446,0.8818045210774421,0.0,63.84917921134812,0.07506804200238548 +25,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.07682187499813153 +26,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.07727141700161155 +27,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766 +28,251.73803334741706,0.8794057317091811,0.0,63.67548909227589,0.07486383300056332 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ead37c1d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3079168a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7b7b87066 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..65a26e842 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3da482647 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5e807aff1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d4fb65c24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..5262b834d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cfab3a198 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..cdcae551d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fb08c236b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..731a9c86f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..997d20133 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..22b1c656d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..477b8607b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1a16c5dd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..158e507eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b50d7e444 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892 +1,1550.9128816299099,0.8958868617275533,0.0,462.0121726923871,0.49238141699970583 +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.49119641699871863 +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874 +4,1565.1120060356702,0.904089004577632,0.0,466.24204813847956,0.49688933300058125 +5,1571.375161858294,0.9077069247592893,0.0,468.10782297586456,0.49887775000024703 +6,1570.1072269824244,0.9069745005140125,0.0,467.730109079893,0.49847520800176426 +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487 +8,1565.5201723263629,0.9043247823711901,0.0,466.36363961986854,0.49701891700169654 +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015 +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518 +11,1560.7225994317741,0.9015534580915663,0.0,464.93445742470254,0.4954957909976656 +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.48715066599834245 +13,1570.2996305808672,0.9070856427051927,0.0,467.78742551952234,0.49853629199787974 +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609 +15,1547.5227554628377,0.8939285508974267,0.0,461.00226454428775,0.49130512500050827 +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.49157375000140746 +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721 +18,1564.0133771354122,0.9034543801513901,0.0,465.9147699714058,0.49654054200073006 +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579 +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017 +21,1554.6354429575943,0.898037204164546,0.0,463.1211122513755,0.4935632499982603 +22,1566.8541179900308,0.9050953378346812,0.0,466.76101792630004,0.4974424160027411 +23,1563.1480932062545,0.902954547753982,0.0,465.6570045528313,0.496265833000507 +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334 +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029 +26,1544.1073015837853,0.8919556094812306,0.0,459.98481134876505,0.49022079199858126 +27,1567.236953417524,0.9053164832218641,0.0,466.8750634215273,0.49756395800068276 +28,1564.9869329670676,0.9040167559553887,0.0,466.2047892564012,0.4968496249966847 +29,1569.5676911434848,0.9066628369284802,0.0,467.56938301452436,0.4983039170001575 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..023abc403 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,236.6567212800667,0.8267216295202227,0.0,59.860769841186496,0.07037883399971179 +1,261.95098582591453,0.9150830142708879,0.0,66.25878862591058,0.0779010410005867 +2,245.40833969424457,0.8572939800419981,0.0,62.07443448081875,0.07298145900131203 +3,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.07655512500059558 +4,258.9009587470573,0.9044282424855151,0.0,65.48730422441415,0.07699399999910383 +5,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227 +6,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.07746258399856742 +7,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.07754108300287044 +8,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.07707945799847948 +9,258.61457516789665,0.9034278081942307,0.0,65.41486537110077,0.07690883300165297 +10,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.07071595800152863 +11,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.07803116699869861 +12,260.6072019459684,0.9103887246139407,0.0,65.91888728223164,0.07750141599899507 +13,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548 +14,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.07680120899749454 +15,260.0306551965286,0.9083746526466905,0.0,65.77305355275111,0.07732995799960918 +16,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.07721795800171094 +17,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619 +18,260.3005048322299,0.9093173283051115,0.0,65.84131025320345,0.07741020800312981 +19,264.0587854421345,0.9224462682025657,0.0,66.79194275318578,0.07852787500087288 +20,263.0532231845429,0.9189335005799791,0.0,66.5375923568096,0.07822883300104877 +21,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.07759904200065648 +22,258.78481075864437,0.9040224984452577,0.0,65.45792535038811,0.07695945899831713 +23,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.07753724999929545 +24,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.07745091700053308 +25,252.42470901509446,0.8818045210774421,0.0,63.84917921134812,0.07506804200238548 +26,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.07682187499813153 +27,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.07727141700161155 +28,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766 +29,251.73803334741706,0.8794057317091811,0.0,63.67548909227589,0.07486383300056332 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a1bd7ed24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0186104cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ca86958ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..22be679df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..185b1d1d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8a5b7ae37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..970774511 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6f9eca914 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7c0a76bab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e4db6ad57 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b8c548935 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e46231a33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8d205a629 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..704b25a5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..427509274 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..261af470a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..49d0a674d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..12ca985ad --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481 +1,1517.4803328343041,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702 +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304 +3,1542.4872208574875,0.5718522026949577,0.0,467.27052633150925,0.498356000000058 +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855 +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593 +6,1541.2370366249843,0.5713887171000923,0.0,466.8918040727872,0.49795208299838123 +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821 +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392 +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442 +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468 +11,1517.2779873087343,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378 +12,1518.0660902189236,0.5627984632803773,0.0,459.87255608398357,0.4904658750019735 +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126 +14,1517.2394279134517,0.5624919915936906,0.0,459.62213266046797,0.49019879199840943 +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855 +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978 +17,1518.3874690557577,0.5629176092890171,0.0,459.96991239021986,0.49056970799938426 +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193 +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163 +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935 +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.49134745800256496 +22,1526.2178180359679,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091 +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.49066970800049603 +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.49425204200088046 +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378 +26,1534.4233179404341,0.5688626410421411,0.0,464.82770274802243,0.4957506659993669 +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833 +28,1517.5623543489799,0.5626117113495291,0.0,459.71995778566526,0.49030312500326545 +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..7c0b3d428 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.3603261187444,0.0,0.0,65.0750093613154,0.07723841600090964 +1,259.0137620395562,0.0,0.0,64.98805442477995,0.07713520800098195 +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189 +3,242.06494915581177,0.0,0.0,60.73549901826075,0.07208779199936544 +4,264.44449718901984,0.0,0.0,66.35065735630297,0.07875250000142842 +5,258.4949635864557,0.0,0.0,64.85788488536977,0.07698070799960988 +6,260.75512162880096,0.0,0.0,65.42497164055966,0.07765379100237624 +7,258.54729338873193,0.0,0.0,64.87101473612205,0.07699629199851188 +8,258.4187119612678,0.0,0.0,64.83875291057171,0.07695799999783048 +9,256.03319274883137,0.0,0.0,64.24021231107454,0.07624758399833809 +10,259.9925953597714,0.0,0.0,65.23364937921801,0.07742670800143969 +11,260.68391024286916,0.0,0.0,65.40710429100974,0.07763258400154882 +12,266.00341096992025,0.0,0.0,66.74179786111225,0.07921675000034156 +13,262.4791342007781,0.0,0.0,65.85753638914451,0.07816720800110488 +14,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304 +15,259.2768012481966,0.0,0.0,65.0540524870928,0.07721354200111818 +16,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263005 +17,249.63999413559765,0.0,0.0,62.63612171699325,0.07434366699817474 +18,256.52512449555974,0.0,0.0,64.36364083810693,0.07639408300019568 +19,257.38978857591655,0.0,0.0,64.58059006841385,0.07665158300005714 +20,260.0975303138043,0.0,0.0,65.25997816750345,0.07745795799928601 +21,258.5177705738045,0.0,0.0,64.86360729071002,0.07698750000054133 +22,248.91608058597623,0.0,0.0,62.45448761079295,0.07412808300068718 +23,261.7960764426832,0.0,0.0,65.68615323788339,0.07796379100182094 +24,259.62770375529885,0.0,0.0,65.14209596034219,0.07731804200011538 +25,260.6953808942086,0.0,0.0,65.40998234392734,0.07763600000180304 +26,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981 +27,258.4513106522235,0.0,0.0,64.84693211111042,0.07696770800248487 +28,259.19789015504335,0.0,0.0,65.03425323636505,0.07719004200043855 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..79c6e11cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..dd66db456 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..26b2613f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..604f255e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c2d4a3020 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..afc394ae9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bd972dc3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d989d16b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f86590eeb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c943723ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a42a4981b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7d23762ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b69005fd2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5256d36fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a17bd90a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca6d63c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..91c60b462 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..12ca985ad --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481 +1,1517.4803328343041,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702 +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304 +3,1542.4872208574875,0.5718522026949577,0.0,467.27052633150925,0.498356000000058 +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855 +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593 +6,1541.2370366249843,0.5713887171000923,0.0,466.8918040727872,0.49795208299838123 +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821 +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392 +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442 +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468 +11,1517.2779873087343,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378 +12,1518.0660902189236,0.5627984632803773,0.0,459.87255608398357,0.4904658750019735 +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126 +14,1517.2394279134517,0.5624919915936906,0.0,459.62213266046797,0.49019879199840943 +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855 +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978 +17,1518.3874690557577,0.5629176092890171,0.0,459.96991239021986,0.49056970799938426 +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193 +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163 +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935 +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.49134745800256496 +22,1526.2178180359679,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091 +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.49066970800049603 +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.49425204200088046 +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378 +26,1534.4233179404341,0.5688626410421411,0.0,464.82770274802243,0.4957506659993669 +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833 +28,1517.5623543489799,0.5626117113495291,0.0,459.71995778566526,0.49030312500326545 +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1bae2ded7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,259.3603261187444,0.0,0.0,65.0750093613154,0.07723841600090964 +1,259.0137620395562,0.0,0.0,64.98805442477995,0.07713520800098195 +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189 +3,242.06494915581177,0.0,0.0,60.73549901826075,0.07208779199936544 +4,235.64265081788608,0.0,0.0,59.124107134560184,0.07017520899898955 +5,264.44449718901984,0.0,0.0,66.35065735630297,0.07875250000142842 +6,258.4949635864557,0.0,0.0,64.85788488536977,0.07698070799960988 +7,260.75512162880096,0.0,0.0,65.42497164055966,0.07765379100237624 +8,258.54729338873193,0.0,0.0,64.87101473612205,0.07699629199851188 +9,258.4187119612678,0.0,0.0,64.83875291057171,0.07695799999783048 +10,256.03319274883137,0.0,0.0,64.24021231107454,0.07624758399833809 +11,259.9925953597714,0.0,0.0,65.23364937921801,0.07742670800143969 +12,260.68391024286916,0.0,0.0,65.40710429100974,0.07763258400154882 +13,266.00341096992025,0.0,0.0,66.74179786111225,0.07921675000034156 +14,262.4791342007781,0.0,0.0,65.85753638914451,0.07816720800110488 +15,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304 +16,259.2768012481966,0.0,0.0,65.0540524870928,0.07721354200111818 +17,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263005 +18,249.63999413559765,0.0,0.0,62.63612171699325,0.07434366699817474 +19,256.52512449555974,0.0,0.0,64.36364083810693,0.07639408300019568 +20,257.38978857591655,0.0,0.0,64.58059006841385,0.07665158300005714 +21,260.0975303138043,0.0,0.0,65.25997816750345,0.07745795799928601 +22,258.5177705738045,0.0,0.0,64.86360729071002,0.07698750000054133 +23,248.91608058597623,0.0,0.0,62.45448761079295,0.07412808300068718 +24,261.7960764426832,0.0,0.0,65.68615323788339,0.07796379100182094 +25,259.62770375529885,0.0,0.0,65.14209596034219,0.07731804200011538 +26,260.6953808942086,0.0,0.0,65.40998234392734,0.07763600000180304 +27,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981 +28,258.4513106522235,0.0,0.0,64.84693211111042,0.07696770800248487 +29,259.19789015504335,0.0,0.0,65.03425323636505,0.07719004200043855 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..030bf3ab8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8cdcf01da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5cb759c07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8c2e313f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ac57d2acd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..158c83a36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0155ac131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d989d16b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..285f64ce9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..94a06e648 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f5ed16efc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8d454fb98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a79adf559 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9a37ee6a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..c415ad17d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca6d63c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7cac99ea5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e2b672a27 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253 +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469 +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869 +3,1547.1728294886955,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128 +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.49163079199934145 +5,1522.8403915260485,1.2869631461713593,0.0,460.69980727431664,0.4899240839986305 +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.49819208400003845 +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766005 +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749 +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258 +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.49055912499898113 +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.49084683299952303 +12,1548.5445027423802,1.3086858716943925,0.0,468.4759860186004,0.49819354100327473 +13,1548.346997027624,1.3085189582230505,0.0,468.41623527569254,0.49812999999994645 +14,1526.1627930048307,1.2897709310736847,0.0,461.7049222748644,0.49099295799896936 +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149 +16,1549.442548959939,1.3094448168812867,0.0,468.7476689353755,0.4984824579987617 +17,1525.4153728060248,1.289139280996684,0.0,461.47880774345396,0.49075249999805237 +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293 +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.48974837500281865 +20,1553.0553234008996,1.312497998020176,0.0,469.84062949640196,0.49964475000160746 +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527 +22,1549.7637440107094,1.3097162610821198,0.0,468.84483899916603,0.49858579200008535 +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.49680754099972546 +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552 +25,1525.1998637277711,1.2889571527559822,0.0,461.41361050323763,0.49068316700140713 +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956 +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903 +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556 +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..bc8d9e0cc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,237.29030271271714,0.37353845369967276,0.0,63.37702431104448,0.07201508299840498 +1,254.30572604705935,0.40032385052665775,0.0,67.92161330602293,0.0771790830003738 +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.07637591699676705 +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.07446191700000782 +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.07725387499885983 +5,254.06793847194996,0.39994952927500976,0.0,67.85810346699333,0.0771069170004921 +6,236.36440535324107,0.37208092145335075,0.0,63.129729673251845,0.07173408299786388 +7,253.92130730041657,0.39971870491997885,0.0,67.81894026808975,0.077062415999535 +8,255.63416469347314,0.40241505658161847,0.0,68.27642126668127,0.07758224999997765 +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.07740649999686866 +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.07370787499894504 +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.07940062499983469 +12,242.49408311058815,0.38173015837951696,0.0,64.76688353839138,0.073594375000539 +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.07570262499939417 +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.07866862500304705 +15,240.73660801776333,0.37896357027589667,0.0,64.29748575681046,0.07306100000278093 +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.08007649999854038 +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.08020195899734972 +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.07848570900023333 +19,255.15996026423593,0.4016685718445272,0.0,68.14976768962146,0.07743833399945288 +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.07856445899960818 +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.07992491700133542 +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.07849037499909173 +23,254.37094085870467,0.40042651060008605,0.0,67.93903129848127,0.07719887500206823 +24,257.3998773220497,0.40519461207721325,0.0,68.74801918243385,0.07811812500222004 +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.07820129199899384 +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.07961133400021936 +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.07931262499914737 +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.07857158400292974 +29,253.68324295352306,0.3993439479787848,0.0,67.75535650706716,0.07699016600236064 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2a620f1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b981fc433 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ba322fa24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0d82dd6fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..278036678 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e605f5eba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..faab44eb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d1b3e28fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b4092a296 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..954ef0c96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..40ce8b909 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b0a41fc44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..edbb05188 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..970eb0ecf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..01665d8c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..496dfe55b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..337878b6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..e2b672a27 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253 +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469 +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869 +3,1547.1728294886955,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128 +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.49163079199934145 +5,1522.8403915260485,1.2869631461713593,0.0,460.69980727431664,0.4899240839986305 +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.49819208400003845 +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766005 +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749 +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258 +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.49055912499898113 +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.49084683299952303 +12,1548.5445027423802,1.3086858716943925,0.0,468.4759860186004,0.49819354100327473 +13,1548.346997027624,1.3085189582230505,0.0,468.41623527569254,0.49812999999994645 +14,1526.1627930048307,1.2897709310736847,0.0,461.7049222748644,0.49099295799896936 +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149 +16,1549.442548959939,1.3094448168812867,0.0,468.7476689353755,0.4984824579987617 +17,1525.4153728060248,1.289139280996684,0.0,461.47880774345396,0.49075249999805237 +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293 +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.48974837500281865 +20,1553.0553234008996,1.312497998020176,0.0,469.84062949640196,0.49964475000160746 +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527 +22,1549.7637440107094,1.3097162610821198,0.0,468.84483899916603,0.49858579200008535 +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.49680754099972546 +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552 +25,1525.1998637277711,1.2889571527559822,0.0,461.41361050323763,0.49068316700140713 +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956 +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903 +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556 +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..bc8d9e0cc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,237.29030271271714,0.37353845369967276,0.0,63.37702431104448,0.07201508299840498 +1,254.30572604705935,0.40032385052665775,0.0,67.92161330602293,0.0771790830003738 +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.07637591699676705 +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.07446191700000782 +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.07725387499885983 +5,254.06793847194996,0.39994952927500976,0.0,67.85810346699333,0.0771069170004921 +6,236.36440535324107,0.37208092145335075,0.0,63.129729673251845,0.07173408299786388 +7,253.92130730041657,0.39971870491997885,0.0,67.81894026808975,0.077062415999535 +8,255.63416469347314,0.40241505658161847,0.0,68.27642126668127,0.07758224999997765 +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.07740649999686866 +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.07370787499894504 +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.07940062499983469 +12,242.49408311058815,0.38173015837951696,0.0,64.76688353839138,0.073594375000539 +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.07570262499939417 +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.07866862500304705 +15,240.73660801776333,0.37896357027589667,0.0,64.29748575681046,0.07306100000278093 +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.08007649999854038 +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.08020195899734972 +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.07848570900023333 +19,255.15996026423593,0.4016685718445272,0.0,68.14976768962146,0.07743833399945288 +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.07856445899960818 +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.07992491700133542 +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.07849037499909173 +23,254.37094085870467,0.40042651060008605,0.0,67.93903129848127,0.07719887500206823 +24,257.3998773220497,0.40519461207721325,0.0,68.74801918243385,0.07811812500222004 +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.07820129199899384 +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.07961133400021936 +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.07931262499914737 +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.07857158400292974 +29,253.68324295352306,0.3993439479787848,0.0,67.75535650706716,0.07699016600236064 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2a620f1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b981fc433 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ba322fa24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0d82dd6fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..278036678 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e605f5eba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..faab44eb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d1b3e28fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b4092a296 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..954ef0c96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..40ce8b909 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b0a41fc44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..edbb05188 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..970eb0ecf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..01665d8c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..496dfe55b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..337878b6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..f894a5fe5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723 +1,1532.1004752886365,1.944206307094024,0.0,458.20658813800685,0.48963575000016135 +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.49781754200012074 +3,1559.2145772362046,1.9786135857731335,0.0,466.31562559619357,0.4983009999996284 +4,1530.2639789041189,1.9418758281787545,0.0,457.65734560721324,0.4890488339988224 +5,1553.2082118735123,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419 +6,1559.1806769844559,1.9785705669996752,0.0,466.30548701916075,0.49829016600051546 +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907 +8,1558.6548663303993,1.977903323299642,0.0,466.14823238104276,0.49812212500182795 +9,1553.3620584498415,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574 +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101 +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699 +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511 +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693 +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.49471300000004703 +15,1555.7903386278185,1.974268292232144,0.0,465.2915356523383,0.4972066660011478 +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439 +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097 +18,1553.6139479227759,1.97150649390123,0.0,464.64064063892545,0.49651112500214367 +19,1556.3417074494225,1.9749679687597526,0.0,465.45643399329424,0.49738287499712897 +20,1559.2432582169981,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102 +21,1546.4155414555316,1.9623718532687306,0.0,462.48780711358813,0.49421062499823165 +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894 +23,1528.3264357327582,1.9394171228165513,0.0,457.07788292820584,0.48842962499838904 +24,1559.6077970344065,1.979112574203768,0.0,466.4332261746338,0.49842666699987603 +25,1535.5840315256835,1.9486268735754146,0.0,459.24841825535833,0.49074904100052663 +26,1533.0749182963104,1.9454428567015598,0.0,458.4980156344947,0.48994716699962737 +27,1555.842230984777,1.9743341426442518,0.0,465.3070551435309,0.49722325000038836 +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.48834999999962747 +29,1555.619285336731,1.9740512288653833,0.0,465.240378599545,0.49715199999991455 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..269410888 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,255.4535357322803,0.0,0.0,63.94788166253961,0.07732066700191353 +1,253.46435879218197,0.0,0.0,63.44992945684153,0.07671858299727319 +2,231.36937798580226,0.0,0.0,57.91887578051573,0.0700308750019758 +3,256.5681585689286,0.0,0.0,64.22690606144654,0.07765804100199603 +4,259.27963304187745,0.0,0.0,64.90567156856736,0.07847874999788473 +5,257.07130386219023,0.0,0.0,64.35285881281608,0.07781033300125273 +6,257.34139440968914,0.0,0.0,64.42047078898278,0.07789208399844938 +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725 +8,256.468082553313,0.0,0.0,64.2018539548648,0.07762774999719113 +9,255.38512022018003,0.0,0.0,63.93075515435044,0.07729995899717323 +10,254.8657300539408,0.0,0.0,63.800735811333155,0.07714275000034831 +11,256.0687333702568,0.0,0.0,64.10188456423998,0.07750687500083586 +12,233.89707419467393,0.0,0.0,58.55163593229996,0.07079595799950766 +13,255.41444162612115,0.0,0.0,63.93809520463366,0.07730883399926824 +14,256.2091457030477,0.0,0.0,64.13703409237446,0.07754937500067172 +15,255.03298592111852,0.0,0.0,63.84260510224348,0.07719337500020629 +16,238.25646746995207,0.0,0.0,59.64292623090094,0.07211545899917837 +17,253.54145012996145,0.0,0.0,63.469227791199664,0.07674191700061783 +18,254.73825878542036,0.0,0.0,63.768825829851195,0.07710416700138012 +19,257.11687012908976,0.0,0.0,64.36426545173828,0.07782412499727798 +20,251.67767959146326,0.0,0.0,63.002668667246425,0.07617779100110056 +21,257.5273697281309,0.0,0.0,64.46702613464193,0.07794837500114227 +22,237.10632196795063,0.0,0.0,59.355009415634115,0.07176733300002525 +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745 +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247 +25,254.1629811907558,0.0,0.0,63.624816143544585,0.07693004199973075 +26,254.68470717332062,0.0,0.0,63.7554202132737,0.07708795800135704 +27,254.7956626434966,0.0,0.0,63.78319578215078,0.07712154199907673 +28,255.26521799895795,0.0,0.0,63.90073993834724,0.07726366699716891 +29,237.74451089433737,0.0,0.0,59.51476774438824,0.07196050000129617 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f1bc32645 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9c28e3cb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4c88ec881 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8982cd40b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1fb0d7ab9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8094fca9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7b807a845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8b7f047b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d0e3acd20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..787b2f067 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4034d4462 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6a55b08da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..553910794 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f65186660 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..cecf56724 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..76520b653 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1f91068cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f894a5fe5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723 +1,1532.1004752886365,1.944206307094024,0.0,458.20658813800685,0.48963575000016135 +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.49781754200012074 +3,1559.2145772362046,1.9786135857731335,0.0,466.31562559619357,0.4983009999996284 +4,1530.2639789041189,1.9418758281787545,0.0,457.65734560721324,0.4890488339988224 +5,1553.2082118735123,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419 +6,1559.1806769844559,1.9785705669996752,0.0,466.30548701916075,0.49829016600051546 +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907 +8,1558.6548663303993,1.977903323299642,0.0,466.14823238104276,0.49812212500182795 +9,1553.3620584498415,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574 +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101 +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699 +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511 +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693 +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.49471300000004703 +15,1555.7903386278185,1.974268292232144,0.0,465.2915356523383,0.4972066660011478 +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439 +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097 +18,1553.6139479227759,1.97150649390123,0.0,464.64064063892545,0.49651112500214367 +19,1556.3417074494225,1.9749679687597526,0.0,465.45643399329424,0.49738287499712897 +20,1559.2432582169981,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102 +21,1546.4155414555316,1.9623718532687306,0.0,462.48780711358813,0.49421062499823165 +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894 +23,1528.3264357327582,1.9394171228165513,0.0,457.07788292820584,0.48842962499838904 +24,1559.6077970344065,1.979112574203768,0.0,466.4332261746338,0.49842666699987603 +25,1535.5840315256835,1.9486268735754146,0.0,459.24841825535833,0.49074904100052663 +26,1533.0749182963104,1.9454428567015598,0.0,458.4980156344947,0.48994716699962737 +27,1555.842230984777,1.9743341426442518,0.0,465.3070551435309,0.49722325000038836 +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.48834999999962747 +29,1555.619285336731,1.9740512288653833,0.0,465.240378599545,0.49715199999991455 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..269410888 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,255.4535357322803,0.0,0.0,63.94788166253961,0.07732066700191353 +1,253.46435879218197,0.0,0.0,63.44992945684153,0.07671858299727319 +2,231.36937798580226,0.0,0.0,57.91887578051573,0.0700308750019758 +3,256.5681585689286,0.0,0.0,64.22690606144654,0.07765804100199603 +4,259.27963304187745,0.0,0.0,64.90567156856736,0.07847874999788473 +5,257.07130386219023,0.0,0.0,64.35285881281608,0.07781033300125273 +6,257.34139440968914,0.0,0.0,64.42047078898278,0.07789208399844938 +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725 +8,256.468082553313,0.0,0.0,64.2018539548648,0.07762774999719113 +9,255.38512022018003,0.0,0.0,63.93075515435044,0.07729995899717323 +10,254.8657300539408,0.0,0.0,63.800735811333155,0.07714275000034831 +11,256.0687333702568,0.0,0.0,64.10188456423998,0.07750687500083586 +12,233.89707419467393,0.0,0.0,58.55163593229996,0.07079595799950766 +13,255.41444162612115,0.0,0.0,63.93809520463366,0.07730883399926824 +14,256.2091457030477,0.0,0.0,64.13703409237446,0.07754937500067172 +15,255.03298592111852,0.0,0.0,63.84260510224348,0.07719337500020629 +16,238.25646746995207,0.0,0.0,59.64292623090094,0.07211545899917837 +17,253.54145012996145,0.0,0.0,63.469227791199664,0.07674191700061783 +18,254.73825878542036,0.0,0.0,63.768825829851195,0.07710416700138012 +19,257.11687012908976,0.0,0.0,64.36426545173828,0.07782412499727798 +20,251.67767959146326,0.0,0.0,63.002668667246425,0.07617779100110056 +21,257.5273697281309,0.0,0.0,64.46702613464193,0.07794837500114227 +22,237.10632196795063,0.0,0.0,59.355009415634115,0.07176733300002525 +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745 +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247 +25,254.1629811907558,0.0,0.0,63.624816143544585,0.07693004199973075 +26,254.68470717332062,0.0,0.0,63.7554202132737,0.07708795800135704 +27,254.7956626434966,0.0,0.0,63.78319578215078,0.07712154199907673 +28,255.26521799895795,0.0,0.0,63.90073993834724,0.07726366699716891 +29,237.74451089433737,0.0,0.0,59.51476774438824,0.07196050000129617 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f1bc32645 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9c28e3cb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4c88ec881 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8982cd40b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1fb0d7ab9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8094fca9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7b807a845 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8b7f047b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d0e3acd20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..787b2f067 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4034d4462 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6a55b08da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..553910794 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f65186660 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cecf56724 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..76520b653 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..1f91068cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b4d552c6c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1550.1230309870655,1.3179917364115765,0.0,458.95767241192124,0.49024295900017023 +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.49782541699823923 +2,1573.7945638369017,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331 +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943 +4,1559.3314125989507,1.3258211606750563,0.0,461.68407367607153,0.49315520800155355 +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.49100962500233436 +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715 +7,1575.5656502813995,1.3396243173824207,0.0,466.49067792049345,0.49828945899935206 +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.49874349999663536 +9,1578.9038743347267,1.3424626415854835,0.0,467.47905336610495,0.4993452079979761 +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413 +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208 +12,1553.4810203833467,1.3208468660927595,0.0,459.9518999451511,0.4913049589995353 +13,1572.2751115779797,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662 +14,1570.6119266223695,1.3354124150259281,0.0,465.0239882224038,0.4967227910019574 +15,1573.5109085929757,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935 +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629 +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.48922599999787053 +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967 +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979 +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978 +21,1569.6302775428119,1.3345777681307784,0.0,464.73334330734036,0.49641233399961493 +22,1574.2479082049676,1.3385039074970497,0.0,466.10052318816014,0.49787270899832947 +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383 +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.49852929199914797 +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484 +26,1553.7065716648651,1.3210386410159338,0.0,460.01868076777356,0.4913762920004956 +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761 +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531 +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a71d0d4e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185 +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.07719420799912768 +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.07783754200136173 +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.07701579100103118 +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.07758508299957612 +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.07412312499945983 +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.07874645899937605 +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.07468170900028781 +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.07832541700190632 +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.07846141700065346 +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.07739087500158348 +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.08081099999981234 +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595 +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.07782770899939351 +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.07937349999701837 +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.07838750000155414 +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.07900570799756679 +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.07853695800076821 +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.07824666599844932 +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.07894291699994938 +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107 +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.07966995900278562 +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185 +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641 +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732 +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.07850012500057346 +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594 +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134 +28,255.42040166006763,0.5993439225500219,0.0,68.29191028611638,0.07782737500019721 +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.07585699999981443 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4b2ae3a96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8ce71f8a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..69b7bd9da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fa5ad7a44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..289b65e29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..50deb88be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..edb14eec9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9e0d3d4d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ca0caa697 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0bf0399a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..07b3a445e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5e5d68fe9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..448310273 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7187eb9c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..deb21efdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4f150599f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..88e76ff1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b4d552c6c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1550.1230309870655,1.3179917364115765,0.0,458.95767241192124,0.49024295900017023 +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.49782541699823923 +2,1573.7945638369017,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331 +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943 +4,1559.3314125989507,1.3258211606750563,0.0,461.68407367607153,0.49315520800155355 +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.49100962500233436 +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715 +7,1575.5656502813995,1.3396243173824207,0.0,466.49067792049345,0.49828945899935206 +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.49874349999663536 +9,1578.9038743347267,1.3424626415854835,0.0,467.47905336610495,0.4993452079979761 +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413 +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208 +12,1553.4810203833467,1.3208468660927595,0.0,459.9518999451511,0.4913049589995353 +13,1572.2751115779797,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662 +14,1570.6119266223695,1.3354124150259281,0.0,465.0239882224038,0.4967227910019574 +15,1573.5109085929757,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935 +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629 +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.48922599999787053 +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967 +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979 +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978 +21,1569.6302775428119,1.3345777681307784,0.0,464.73334330734036,0.49641233399961493 +22,1574.2479082049676,1.3385039074970497,0.0,466.10052318816014,0.49787270899832947 +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383 +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.49852929199914797 +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484 +26,1553.7065716648651,1.3210386410159338,0.0,460.01868076777356,0.4913762920004956 +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761 +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531 +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a71d0d4e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185 +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.07719420799912768 +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.07783754200136173 +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.07701579100103118 +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.07758508299957612 +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.07412312499945983 +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.07874645899937605 +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.07468170900028781 +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.07832541700190632 +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.07846141700065346 +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.07739087500158348 +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.08081099999981234 +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595 +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.07782770899939351 +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.07937349999701837 +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.07838750000155414 +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.07900570799756679 +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.07853695800076821 +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.07824666599844932 +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.07894291699994938 +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107 +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.07966995900278562 +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185 +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641 +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732 +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.07850012500057346 +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594 +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134 +28,255.42040166006763,0.5993439225500219,0.0,68.29191028611638,0.07782737500019721 +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.07585699999981443 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4b2ae3a96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8ce71f8a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..69b7bd9da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fa5ad7a44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..289b65e29 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..50deb88be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..edb14eec9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9e0d3d4d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ca0caa697 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0bf0399a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..07b3a445e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5e5d68fe9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..448310273 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7187eb9c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..deb21efdf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4f150599f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..88e76ff1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..29a7e31a9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501 +1,1551.1857223593659,1.974412823748249,0.0,466.16221414937473,0.4965388329983398 +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298 +3,1547.1130708458957,1.9692289858241718,0.0,464.9383012293342,0.4952351660031127 +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.49576587499905145 +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.48974141699727625 +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082 +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806 +8,1541.253365057029,1.9617705119056954,0.0,463.17734289570063,0.4933594579997589 +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013 +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192 +11,1550.8496334220874,1.9739850359610633,0.0,466.06121272775613,0.4964312500014785 +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.48996191599871963 +13,1555.5371906072128,1.9799515510501058,0.0,467.4699170530165,0.49793175000013434 +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.49026429199875565 +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985 +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.49724558400339447 +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555 +18,1523.894748786755,1.9396757529915762,0.0,457.9607328673332,0.48780291699949885 +19,1528.9590068812288,1.946121748451934,0.0,459.48264332093964,0.489423999999417 +20,1532.1890914847395,1.9502331326472855,0.0,460.45334809790995,0.49045795900019584 +21,1551.7233091012433,1.9750970862074377,0.0,466.32376967575607,0.49671091599884676 +22,1555.2119044417307,1.9795375134740387,0.0,467.37216207954845,0.4978276250003546 +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.49747483400278725 +24,1553.8895447160521,1.9778543597662952,0.0,466.9747666363473,0.49740433400074835 +25,1553.1610005454645,1.9769270388579467,0.0,466.75582459815587,0.4971711250000226 +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.48995137499878183 +27,1556.0137313297807,1.9805581116315463,0.0,467.6131270343634,0.49808429200129467 +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549 +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..3bf428663 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.8448031031451,0.0,0.0,63.327795876031466,0.07653595800002222 +1,250.71246289168695,0.0,0.0,62.793727530579304,0.07589050000024145 +2,255.84957332742798,0.0,0.0,64.08037403101984,0.07744549999915762 +3,259.473357102869,0.0,0.0,64.98799102141685,0.07854241699897102 +4,255.35499678935534,0.0,0.0,63.956501830904415,0.07729579200167791 +5,253.22472132458208,0.0,0.0,63.42295062424645,0.07665095899938024 +6,253.2219661176063,0.0,0.0,63.42226055198546,0.07665012500001467 +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966 +8,254.19074916093854,0.0,0.0,63.664903050717285,0.07694337499924586 +9,255.66691023668932,0.0,0.0,64.0346240263434,0.07739020799999707 +10,245.09178683055006,0.0,0.0,61.38596663568849,0.07418912499997532 +11,254.09728348032925,0.0,0.0,63.64149353044874,0.07691508299831185 +12,258.4168897008931,0.0,0.0,64.72338699886663,0.07822262500121724 +13,241.31589833068384,0.0,0.0,60.44025332366666,0.07304616599867586 +14,236.29620473564802,0.0,0.0,59.18301517819063,0.0715267080013291 +15,254.9943518084654,0.0,0.0,63.86617428035477,0.07718662499974016 +16,257.59167485304476,0.0,0.0,64.5167027530485,0.07797283300169511 +17,255.1975237091272,0.0,0.0,63.917060944802486,0.07724812500237022 +18,254.1328005774134,0.0,0.0,63.65038918282778,0.07692583400057629 +19,254.61044282269503,0.0,0.0,63.770020000783035,0.07707041599860531 +20,252.7502373251944,0.0,0.0,63.30411082413631,0.07650733300033608 +21,256.13602257519875,0.0,0.0,64.1521184341835,0.07753220800077543 +22,257.93167227093824,0.0,0.0,64.6018588915749,0.07807574999969802 +23,256.7664632982533,0.0,0.0,64.31001933201313,0.07772304199897917 +24,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739 +25,255.20371797321877,0.0,0.0,63.918612367205384,0.07725000000209548 +26,253.60793655700468,0.0,0.0,63.51893114556863,0.07676695800182642 +27,254.7793397817627,0.0,0.0,63.81232212452318,0.07712154099863255 +28,254.67445023433228,0.0,0.0,63.78605136962657,0.07708979100061697 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..fbab01ebc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..15a976a5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a481608ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..86303342a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2394b8ea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fcc4e50e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3c4767672 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d32130825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e97942fc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2d828f6f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ec871ddad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a2a532c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dedb1adff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..bee6cbfed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..70f6ddba3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..04a07ca2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..76b8b3a07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..29a7e31a9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501 +1,1551.1857223593659,1.974412823748249,0.0,466.16221414937473,0.4965388329983398 +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298 +3,1547.1130708458957,1.9692289858241718,0.0,464.9383012293342,0.4952351660031127 +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.49576587499905145 +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.48974141699727625 +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082 +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806 +8,1541.253365057029,1.9617705119056954,0.0,463.17734289570063,0.4933594579997589 +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013 +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192 +11,1550.8496334220874,1.9739850359610633,0.0,466.06121272775613,0.4964312500014785 +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.48996191599871963 +13,1555.5371906072128,1.9799515510501058,0.0,467.4699170530165,0.49793175000013434 +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.49026429199875565 +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985 +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.49724558400339447 +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555 +18,1523.894748786755,1.9396757529915762,0.0,457.9607328673332,0.48780291699949885 +19,1528.9590068812288,1.946121748451934,0.0,459.48264332093964,0.489423999999417 +20,1532.1890914847395,1.9502331326472855,0.0,460.45334809790995,0.49045795900019584 +21,1551.7233091012433,1.9750970862074377,0.0,466.32376967575607,0.49671091599884676 +22,1555.2119044417307,1.9795375134740387,0.0,467.37216207954845,0.4978276250003546 +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.49747483400278725 +24,1553.8895447160521,1.9778543597662952,0.0,466.9747666363473,0.49740433400074835 +25,1553.1610005454645,1.9769270388579467,0.0,466.75582459815587,0.4971711250000226 +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.48995137499878183 +27,1556.0137313297807,1.9805581116315463,0.0,467.6131270343634,0.49808429200129467 +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549 +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a21c014a4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.8448031031451,0.0,0.0,63.327795876031466,0.07653595800002222 +1,250.71246289168695,0.0,0.0,62.793727530579304,0.07589050000024145 +2,255.84957332742798,0.0,0.0,64.08037403101984,0.07744549999915762 +3,259.473357102869,0.0,0.0,64.98799102141685,0.07854241699897102 +4,255.35499678935534,0.0,0.0,63.956501830904415,0.07729579200167791 +5,253.22472132458208,0.0,0.0,63.42295062424645,0.07665095899938024 +6,253.2219661176063,0.0,0.0,63.42226055198546,0.07665012500001467 +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966 +8,254.19074916093854,0.0,0.0,63.664903050717285,0.07694337499924586 +9,255.66691023668932,0.0,0.0,64.0346240263434,0.07739020799999707 +10,245.09178683055006,0.0,0.0,61.38596663568849,0.07418912499997532 +11,254.09728348032925,0.0,0.0,63.64149353044874,0.07691508299831185 +12,258.4168897008931,0.0,0.0,64.72338699886663,0.07822262500121724 +13,241.31589833068384,0.0,0.0,60.44025332366666,0.07304616599867586 +14,236.29620473564802,0.0,0.0,59.18301517819063,0.0715267080013291 +15,254.9943518084654,0.0,0.0,63.86617428035477,0.07718662499974016 +16,257.59167485304476,0.0,0.0,64.5167027530485,0.07797283300169511 +17,255.1975237091272,0.0,0.0,63.917060944802486,0.07724812500237022 +18,254.1328005774134,0.0,0.0,63.65038918282778,0.07692583400057629 +19,254.61044282269503,0.0,0.0,63.770020000783035,0.07707041599860531 +20,252.7502373251944,0.0,0.0,63.30411082413631,0.07650733300033608 +21,256.13602257519875,0.0,0.0,64.1521184341835,0.07753220800077543 +22,233.69544263395284,0.0,0.0,58.53162535535499,0.07073945899901446 +23,257.93167227093824,0.0,0.0,64.6018588915749,0.07807574999969802 +24,256.7664632982533,0.0,0.0,64.31001933201313,0.07772304199897917 +25,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739 +26,255.20371797321877,0.0,0.0,63.918612367205384,0.07725000000209548 +27,253.60793655700468,0.0,0.0,63.51893114556863,0.07676695800182642 +28,254.7793397817627,0.0,0.0,63.81232212452318,0.07712154099863255 +29,254.67445023433228,0.0,0.0,63.78605136962657,0.07708979100061697 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b3476e244 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..705e8d6de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7dc1eddc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2f6dc4bda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..37f69ccef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6c015ca71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1a896c0e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d32130825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..70bd0e6c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..80c5a1659 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b7f244bf0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6336f742a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..357e5001d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..29bfe9f24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..271b3e086 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..04a07ca2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9d95a6c99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..586d57133 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1510.9616102840157,1.9734793986904293,0.0,456.5315675637193,0.4877955420015496 +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732 +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151 +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.48731416699956753 +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508 +5,1541.5013227819381,2.013367568612397,0.0,465.7590308723345,0.4976549159982824 +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.49599441700047464 +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.49050595800144947 +8,1540.2512151985861,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841 +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.49783362499874784 +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284 +11,1545.2964451374799,2.0183244091655883,0.0,466.9057133203061,0.49888012500014156 +12,1538.6722489839171,2.009672492033502,0.0,464.90423649041685,0.4967415840001195 +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.49672199999986333 +14,1519.289578347493,1.9843566263409287,0.0,459.04783289353486,0.4904841249990568 +15,1518.7244091137609,1.9836184541518058,0.0,458.87706906045105,0.490301666999585 +16,1541.7541618243265,2.0136978037672426,0.0,465.83542527148876,0.4977365420018032 +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.49740166699848487 +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905 +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.49717929100006586 +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.49810237500059884 +21,1539.6550675608858,2.0109561594682646,0.0,465.2011915569919,0.4970588750002207 +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936 +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943 +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205 +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.49673349999648053 +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164 +27,1543.1662485701581,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906 +28,1517.437899341542,1.9819381331466874,0.0,458.488354801267,0.48988633299813955 +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9414f52a2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,254.77015581964238,0.0,0.0,63.11246118665094,0.07609537499956787 +1,253.09222999705185,0.0,0.0,62.69680014498916,0.07559420799952932 +2,263.90234613131526,0.0,0.0,65.374715981528,0.07882299999982934 +3,259.7544057697603,0.0,0.0,64.3471751997949,0.07758408299923758 +4,258.13381843399344,0.0,0.0,63.9457182277288,0.07710004199907416 +5,258.38938416388623,0.0,0.0,64.00902777101736,0.07717637499808916 +6,257.3555370297845,0.0,0.0,63.75291991994662,0.07686758300042129 +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052 +8,245.76644644425735,0.0,0.0,60.88203409183789,0.07340612500047428 +9,256.3932541903437,0.0,0.0,63.51454020015801,0.07658016600180417 +10,256.7573565822389,0.0,0.0,63.6047367853998,0.07668891699722735 +11,256.6365493698801,0.0,0.0,63.57481004426902,0.07665283400274348 +12,254.0235434990149,0.0,0.0,62.92750804347181,0.07587237500047195 +13,259.3886326959798,0.0,0.0,64.25656474800229,0.07747483300045133 +14,257.7577233561085,0.0,0.0,63.8525507767409,0.07698770899878582 +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107 +16,258.37473651085224,0.0,0.0,64.00539920851713,0.07717200000115554 +17,257.275184131123,0.0,0.0,63.733014648147055,0.07684358299957239 +18,251.4304885893039,0.0,0.0,62.28514835727747,0.07509787500021048 +19,260.1250602942841,0.0,0.0,64.43899489985908,0.07769479100170429 +20,258.7400910767803,0.0,0.0,64.09590598623336,0.07728112499898998 +21,257.76525643655174,0.0,0.0,63.8544168950292,0.07698995899772854 +22,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708 +23,254.92263212776274,0.0,0.0,63.150233095402065,0.07614091699724668 +24,261.7944753894208,0.0,0.0,64.85254763745215,0.07819341599679319 +25,259.7657053965152,0.0,0.0,64.34997437873601,0.07758745799947064 +26,255.6566859729138,0.0,0.0,63.33207521369086,0.07636016600008588 +27,259.06303605935,0.0,0.0,64.17590692909216,0.07737758299845154 +28,258.87526808998655,0.0,0.0,64.12939245945022,0.07732150000083493 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1135ec2de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4dbe6e245 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..addaf97fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..93bf86f68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..960c59048 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f4bd27581 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..09d15587d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8c247f315 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5a96bd762 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..10b39807c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0a13e14f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6f9a5d009 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8592aba2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0b112845e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..68d7c105a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e535f0a17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e379ba4f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..586d57133 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1510.9616102840157,1.9734793986904293,0.0,456.5315675637193,0.4877955420015496 +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732 +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151 +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.48731416699956753 +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508 +5,1541.5013227819381,2.013367568612397,0.0,465.7590308723345,0.4976549159982824 +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.49599441700047464 +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.49050595800144947 +8,1540.2512151985861,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841 +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.49783362499874784 +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284 +11,1545.2964451374799,2.0183244091655883,0.0,466.9057133203061,0.49888012500014156 +12,1538.6722489839171,2.009672492033502,0.0,464.90423649041685,0.4967415840001195 +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.49672199999986333 +14,1519.289578347493,1.9843566263409287,0.0,459.04783289353486,0.4904841249990568 +15,1518.7244091137609,1.9836184541518058,0.0,458.87706906045105,0.490301666999585 +16,1541.7541618243265,2.0136978037672426,0.0,465.83542527148876,0.4977365420018032 +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.49740166699848487 +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905 +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.49717929100006586 +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.49810237500059884 +21,1539.6550675608858,2.0109561594682646,0.0,465.2011915569919,0.4970588750002207 +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936 +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943 +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205 +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.49673349999648053 +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164 +27,1543.1662485701581,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906 +28,1517.437899341542,1.9819381331466874,0.0,458.488354801267,0.48988633299813955 +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f531f0ff0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,254.77015581964238,0.0,0.0,63.11246118665094,0.07609537499956787 +1,253.09222999705185,0.0,0.0,62.69680014498916,0.07559420799952932 +2,263.90234613131526,0.0,0.0,65.374715981528,0.07882299999982934 +3,259.7544057697603,0.0,0.0,64.3471751997949,0.07758408299923758 +4,258.13381843399344,0.0,0.0,63.9457182277288,0.07710004199907416 +5,258.38938416388623,0.0,0.0,64.00902777101736,0.07717637499808916 +6,257.3555370297845,0.0,0.0,63.75291991994662,0.07686758300042129 +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052 +8,245.76644644425735,0.0,0.0,60.88203409183789,0.07340612500047428 +9,256.3932541903437,0.0,0.0,63.51454020015801,0.07658016600180417 +10,256.7573565822389,0.0,0.0,63.6047367853998,0.07668891699722735 +11,256.6365493698801,0.0,0.0,63.57481004426902,0.07665283400274348 +12,254.0235434990149,0.0,0.0,62.92750804347181,0.07587237500047195 +13,259.3886326959798,0.0,0.0,64.25656474800229,0.07747483300045133 +14,257.7577233561085,0.0,0.0,63.8525507767409,0.07698770899878582 +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107 +16,258.37473651085224,0.0,0.0,64.00539920851713,0.07717200000115554 +17,257.275184131123,0.0,0.0,63.733014648147055,0.07684358299957239 +18,251.4304885893039,0.0,0.0,62.28514835727747,0.07509787500021048 +19,260.1250602942841,0.0,0.0,64.43899489985908,0.07769479100170429 +20,258.7400910767803,0.0,0.0,64.09590598623336,0.07728112499898998 +21,257.76525643655174,0.0,0.0,63.8544168950292,0.07698995899772854 +22,234.9518673671031,0.0,0.0,58.203012681103864,0.07017599999744562 +23,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708 +24,254.92263212776274,0.0,0.0,63.150233095402065,0.07614091699724668 +25,261.7944753894208,0.0,0.0,64.85254763745215,0.07819341599679319 +26,259.7657053965152,0.0,0.0,64.34997437873601,0.07758745799947064 +27,255.6566859729138,0.0,0.0,63.33207521369086,0.07636016600008588 +28,259.06303605935,0.0,0.0,64.17590692909216,0.07737758299845154 +29,258.87526808998655,0.0,0.0,64.12939245945022,0.07732150000083493 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..61e198422 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d2c08abc3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c9d45397a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5954d3aba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4f00c4565 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..800657cb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c9a6617a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8c247f315 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b8fb79001 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..35465cc56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ff75e54b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..524c3610c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e60a380f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d5848b966 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..16af32eb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e535f0a17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4e93496bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c5a32791a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.49672145799922873 +1,1525.8224518527581,0.9878217819888807,0.0,458.15174248644286,0.48790749999898253 +2,1551.4175283280858,1.0043921070770319,0.0,465.83705926232733,0.4960919580007612 +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014 +4,1517.1578055606183,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886 +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844 +6,1536.6455705433632,0.9948286997194781,0.0,461.4015509298939,0.4913683750019118 +7,1523.3509920954475,0.9862217519338661,0.0,457.4096485469271,0.48711720899882494 +8,1523.3483839474748,0.986220063411473,0.0,457.40886541024116,0.48711637499945937 +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242 +10,1552.6602304699818,1.0051966359675317,0.0,466.2101997617412,0.49648933299977216 +11,1535.8703964688004,0.9943268498255037,0.0,461.16879294906863,0.49112049999894225 +12,1528.3973744832786,0.9894887942013931,0.0,458.9249027506061,0.4887308750003285 +13,1531.9027936882028,0.9917582125347134,0.0,459.97745897360005,0.48985179199735285 +14,1541.5801558574808,0.9980233642444685,0.0,462.8832363365845,0.4929462920008518 +15,1553.6147007694763,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625 +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.49652337500083377 +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.49482849999913014 +18,1572.9461018499128,1.0183297666220115,0.0,472.3013457592889,0.5029760830002488 +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299 +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069 +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.49480441600098857 +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.49658337499931804 +23,1551.7935835191104,1.0046355662740523,0.0,465.9499756379054,0.4962122079996334 +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908 +25,1528.5850111774257,0.9896102707292511,0.0,458.9812435642267,0.4887908750024508 +26,1549.1668012392042,1.0029349799774732,0.0,465.16124371355204,0.49537224999949103 +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072 +28,1551.2523048367277,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879 +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.49665708300017286 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5f7533780 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,249.7923844146721,0.0,0.0,64.11304733285456,0.07595445799961453 +1,251.5237567706763,0.0,0.0,64.55743060767458,0.07648091699957149 +2,236.44843625054182,0.0,0.0,60.68811833728591,0.07189695899796789 +3,254.81671512475305,0.0,0.0,65.40261888398953,0.07748220800203853 +4,254.0024857747179,0.0,0.0,65.19363443083687,0.07723462499779998 +5,250.58400715096883,0.0,0.0,64.3162294518006,0.07619516700287932 +6,253.13741623502708,0.0,0.0,64.97160106310882,0.07697158299924922 +7,247.96660298643684,0.0,0.0,63.64443252138948,0.07539929199992912 +8,251.19145867599534,0.0,0.0,64.47214120414525,0.07637987500129384 +9,256.62427379017913,0.0,0.0,65.86655654383826,0.07803183299984084 +10,252.7525020227826,0.0,0.0,64.87280692586343,0.07685454199963715 +11,252.65411359951872,0.0,0.0,64.84755402773163,0.07682462499724352 +12,257.1501948549435,0.0,0.0,66.00154225286055,0.07819175000258838 +13,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418 +14,251.44934635326925,0.0,0.0,64.53833203257409,0.07645829099783441 +15,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126 +16,251.21776837388163,0.0,0.0,64.4788939917046,0.07638787500036415 +17,251.41660064555398,0.0,0.0,64.52992734436225,0.07644833399899653 +18,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213 +19,252.05912958228944,0.0,0.0,64.69484225251759,0.07664370799830067 +20,255.11256441560653,0.0,0.0,65.47855314288348,0.07757216699974379 +21,244.42520870193502,0.0,0.0,62.73547935246641,0.07432245899690315 +22,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758 +23,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994 +24,252.46364123963494,0.0,0.0,64.7986663746775,0.0767667079999228 +25,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086008 +26,255.64108684697413,0.0,0.0,65.61420653255007,0.07773287500094739 +27,250.51795663338612,0.0,0.0,64.29927657323282,0.07617508299881592 +28,252.8123829029725,0.0,0.0,64.88817627235069,0.07687274999989313 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7009590de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..800ecd04a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..78e3abb25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..613b64932 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6df157825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..580cb0ea4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8961efade Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c5c19442a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9fd204dab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1a19fe69b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3d46f9fe2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b6a30926a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..14308d429 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b848ade2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..13a6ed00e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1af7ccfa6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2294f73ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c5a32791a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.49672145799922873 +1,1525.8224518527581,0.9878217819888807,0.0,458.15174248644286,0.48790749999898253 +2,1551.4175283280858,1.0043921070770319,0.0,465.83705926232733,0.4960919580007612 +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014 +4,1517.1578055606183,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886 +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844 +6,1536.6455705433632,0.9948286997194781,0.0,461.4015509298939,0.4913683750019118 +7,1523.3509920954475,0.9862217519338661,0.0,457.4096485469271,0.48711720899882494 +8,1523.3483839474748,0.986220063411473,0.0,457.40886541024116,0.48711637499945937 +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242 +10,1552.6602304699818,1.0051966359675317,0.0,466.2101997617412,0.49648933299977216 +11,1535.8703964688004,0.9943268498255037,0.0,461.16879294906863,0.49112049999894225 +12,1528.3973744832786,0.9894887942013931,0.0,458.9249027506061,0.4887308750003285 +13,1531.9027936882028,0.9917582125347134,0.0,459.97745897360005,0.48985179199735285 +14,1541.5801558574808,0.9980233642444685,0.0,462.8832363365845,0.4929462920008518 +15,1553.6147007694763,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625 +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.49652337500083377 +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.49482849999913014 +18,1572.9461018499128,1.0183297666220115,0.0,472.3013457592889,0.5029760830002488 +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299 +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069 +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.49480441600098857 +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.49658337499931804 +23,1551.7935835191104,1.0046355662740523,0.0,465.9499756379054,0.4962122079996334 +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908 +25,1528.5850111774257,0.9896102707292511,0.0,458.9812435642267,0.4887908750024508 +26,1549.1668012392042,1.0029349799774732,0.0,465.16124371355204,0.49537224999949103 +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072 +28,1551.2523048367277,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879 +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.49665708300017286 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..4ea1d9af1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,249.7923844146721,0.0,0.0,64.11304733285456,0.07595445799961453 +1,251.5237567706763,0.0,0.0,64.55743060767458,0.07648091699957149 +2,236.44843625054182,0.0,0.0,60.68811833728591,0.07189695899796789 +3,254.81671512475305,0.0,0.0,65.40261888398953,0.07748220800203853 +4,254.0024857747179,0.0,0.0,65.19363443083687,0.07723462499779998 +5,250.58400715096883,0.0,0.0,64.3162294518006,0.07619516700287932 +6,253.13741623502708,0.0,0.0,64.97160106310882,0.07697158299924922 +7,247.96660298643684,0.0,0.0,63.64443252138948,0.07539929199992912 +8,251.19145867599534,0.0,0.0,64.47214120414525,0.07637987500129384 +9,256.62427379017913,0.0,0.0,65.86655654383826,0.07803183299984084 +10,252.7525020227826,0.0,0.0,64.87280692586343,0.07685454199963715 +11,252.65411359951872,0.0,0.0,64.84755402773163,0.07682462499724352 +12,234.1139962204404,0.0,0.0,60.08894849271152,0.07118712499868707 +13,257.1501948549435,0.0,0.0,66.00154225286055,0.07819175000258838 +14,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418 +15,251.44934635326925,0.0,0.0,64.53833203257409,0.07645829099783441 +16,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126 +17,251.21776837388163,0.0,0.0,64.4788939917046,0.07638787500036415 +18,251.41660064555398,0.0,0.0,64.52992734436225,0.07644833399899653 +19,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213 +20,252.05912958228944,0.0,0.0,64.69484225251759,0.07664370799830067 +21,255.11256441560653,0.0,0.0,65.47855314288348,0.07757216699974379 +22,244.42520870193502,0.0,0.0,62.73547935246641,0.07432245899690315 +23,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758 +24,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994 +25,252.46364123963494,0.0,0.0,64.7986663746775,0.0767667079999228 +26,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086008 +27,255.64108684697413,0.0,0.0,65.61420653255007,0.07773287500094739 +28,250.51795663338612,0.0,0.0,64.29927657323282,0.07617508299881592 +29,252.8123829029725,0.0,0.0,64.88817627235069,0.07687274999989313 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..64a9cc27b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4417795e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0bf3bdbf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..91f303076 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b67a9f17f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fe02bd08f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4d7b00aac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c5c19442a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bcc20443a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..17c18d9b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6c3d1d085 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0c532e2be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a899869a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fc58fad4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..09c8e4fc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1af7ccfa6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..404e44505 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..40fbddaee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1625.5597601283662,2.2574452413660273,0.0,464.33656751450917,0.4921481670025969 +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114 +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426 +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874 +4,1619.1962752309119,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753 +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.49692091600081767 +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.49606637499891804 +7,1645.2563032830215,2.2847981992248796,0.0,469.96282959644697,0.49811141600002884 +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988 +9,1617.3511432497999,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262 +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978 +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753 +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172 +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.49322504199881223 +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461 +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823 +16,1618.5698106059185,2.247738167732763,0.0,462.33990811879636,0.49003191700103343 +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.48849820800023736 +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.49028595900017535 +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689 +20,1625.9434583893583,2.257978090317289,0.0,464.44616984217527,0.49226433399962843 +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012 +22,1643.0470201217047,2.2817301263790366,0.0,469.33175408328805,0.4974425420004991 +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037 +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533 +25,1644.8577448609653,2.284244713690023,0.0,469.84898250562276,0.4979907499982801 +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.49658116700084065 +27,1642.3811937703595,2.2808054808721243,0.0,469.141562661153,0.49724095899728127 +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.49725916700117523 +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.48944987499999115 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..05154d723 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,256.736730168257,0.0,0.0,62.78061796370678,0.07594145899929572 +1,246.83770108103627,0.0,0.0,60.35997810072678,0.07301337500030058 +2,249.48762015903063,0.0,0.0,61.00797091874418,0.07379720799872302 +3,261.96853136599685,0.0,0.0,64.05996631422177,0.07748899999933201 +4,260.9436089466303,0.0,0.0,63.809338899864194,0.07718583300083992 +5,259.1546474245066,0.0,0.0,63.37187866657925,0.07665666700268048 +6,261.2578738137402,0.0,0.0,63.88618704912788,0.07727879099911661 +7,260.56553299065286,0.0,0.0,63.71688682984707,0.07707399999708286 +8,260.5077801721833,0.0,0.0,63.70276435648577,0.07705691699811723 +9,260.269297511551,0.0,0.0,63.64444746198333,0.07698637500288896 +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342 +11,268.07593877521344,0.0,0.0,65.55342933003354,0.07929554099973757 +12,261.1346195586505,0.0,0.0,63.85604730910659,0.07724233299813932 +13,259.16746372829186,0.0,0.0,63.375012676547826,0.07666045800215215 +14,260.80992855999216,0.0,0.0,63.776649626002715,0.07714629100155435 +15,259.6238641522187,0.0,0.0,63.48661766830046,0.07679545899736695 +16,250.8287784191757,0.0,0.0,61.33592845058567,0.07419391599978553 +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235 +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625 +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357 +20,260.7072425967597,0.0,0.0,63.75153951330592,0.07711591699990095 +21,260.39015821218334,0.0,0.0,63.6740018988115,0.07702212500225869 +22,262.73187065656884,0.0,0.0,64.24662800593482,0.07771479199800524 +23,262.80286575413186,0.0,0.0,64.26398865430983,0.07773579199783853 +24,259.5470914101739,0.0,0.0,63.467844194847004,0.07677274999878136 +25,259.2690272739524,0.0,0.0,63.39984832104239,0.07669049999822164 +26,263.9649879020873,0.0,0.0,64.54816593798147,0.07807954199961387 +27,259.8130390424965,0.0,0.0,63.53287718288986,0.07685141599722556 +28,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..129303e40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..489404330 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b9646a405 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..301661f4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..810650a9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..53e05f6aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e5c40bce8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a1d09fb71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ee101e89c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5743f9da8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a04d68183 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..79b196a7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a3a5ba3dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8dd88ed3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4c02c7939 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bf65cbb2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..00304edfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..40fbddaee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1625.5597601283662,2.2574452413660273,0.0,464.33656751450917,0.4921481670025969 +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114 +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426 +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874 +4,1619.1962752309119,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753 +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.49692091600081767 +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.49606637499891804 +7,1645.2563032830215,2.2847981992248796,0.0,469.96282959644697,0.49811141600002884 +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988 +9,1617.3511432497999,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262 +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978 +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753 +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172 +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.49322504199881223 +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461 +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823 +16,1618.5698106059185,2.247738167732763,0.0,462.33990811879636,0.49003191700103343 +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.48849820800023736 +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.49028595900017535 +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689 +20,1625.9434583893583,2.257978090317289,0.0,464.44616984217527,0.49226433399962843 +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012 +22,1643.0470201217047,2.2817301263790366,0.0,469.33175408328805,0.4974425420004991 +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037 +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533 +25,1644.8577448609653,2.284244713690023,0.0,469.84898250562276,0.4979907499982801 +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.49658116700084065 +27,1642.3811937703595,2.2808054808721243,0.0,469.141562661153,0.49724095899728127 +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.49725916700117523 +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.48944987499999115 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..639adba21 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,256.736730168257,0.0,0.0,62.78061796370678,0.07594145899929572 +1,246.83770108103627,0.0,0.0,60.35997810072678,0.07301337500030058 +2,249.48762015903063,0.0,0.0,61.00797091874418,0.07379720799872302 +3,261.96853136599685,0.0,0.0,64.05996631422177,0.07748899999933201 +4,260.9436089466303,0.0,0.0,63.809338899864194,0.07718583300083992 +5,259.1546474245066,0.0,0.0,63.37187866657925,0.07665666700268048 +6,261.2578738137402,0.0,0.0,63.88618704912788,0.07727879099911661 +7,260.56553299065286,0.0,0.0,63.71688682984707,0.07707399999708286 +8,260.5077801721833,0.0,0.0,63.70276435648577,0.07705691699811723 +9,260.269297511551,0.0,0.0,63.64444746198333,0.07698637500288896 +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342 +11,268.07593877521344,0.0,0.0,65.55342933003354,0.07929554099973757 +12,261.1346195586505,0.0,0.0,63.85604730910659,0.07724233299813932 +13,259.16746372829186,0.0,0.0,63.375012676547826,0.07666045800215215 +14,260.80992855999216,0.0,0.0,63.776649626002715,0.07714629100155435 +15,259.6238641522187,0.0,0.0,63.48661766830046,0.07679545899736695 +16,250.8287784191757,0.0,0.0,61.33592845058567,0.07419391599978553 +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235 +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625 +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357 +20,260.7072425967597,0.0,0.0,63.75153951330592,0.07711591699990095 +21,240.3277041436231,0.0,0.0,58.768068636098214,0.07108775000233436 +22,260.39015821218334,0.0,0.0,63.6740018988115,0.07702212500225869 +23,262.73187065656884,0.0,0.0,64.24662800593482,0.07771479199800524 +24,262.80286575413186,0.0,0.0,64.26398865430983,0.07773579199783853 +25,259.5470914101739,0.0,0.0,63.467844194847004,0.07677274999878136 +26,259.2690272739524,0.0,0.0,63.39984832104239,0.07669049999822164 +27,263.9649879020873,0.0,0.0,64.54816593798147,0.07807954199961387 +28,259.8130390424965,0.0,0.0,63.53287718288986,0.07685141599722556 +29,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9771125f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6f025a425 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ecda2dac5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3bce0cf01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4f8a1f932 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a53748be5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3646c9157 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a1d09fb71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8654aa8b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..43370f37b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fbf45e085 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..da2d92c79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..75fb1d102 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8f71393ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..61ca245a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bf65cbb2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a059a57e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..466d5055c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1550.0754940354377,0.8369738088744263,0.0,464.92221135356635,0.4976810830012255 +1,1538.0192823716247,0.8304639753626484,0.0,461.30612903444387,0.49381020800137776 +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189 +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839 +4,1528.3809066387753,0.8252596688114338,0.0,458.41524083137523,0.4907156250010303 +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.49822833299913327 +6,1548.6955972049807,0.8362287241927542,0.0,464.50833171459107,0.49723804099994595 +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205 +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483 +9,1527.9665376723801,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396 +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764 +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.48929150000185473 +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.48953866599913454 +13,1526.3592753499975,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508 +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895 +15,1545.9810991200075,0.8347630124838054,0.0,463.6941581745042,0.49636649999956717 +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642 +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.49720275000072434 +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156 +19,1529.9212051478567,0.826091363470765,0.0,458.8772305807405,0.49121016699791653 +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.49590587499915273 +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002 +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318 +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.49742491700089886 +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943 +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.49725445800140733 +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859 +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.49765145799756283 +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.49819816699891817 +29,1549.7088811696053,0.8367758537632858,0.0,464.81225124842996,0.497563375000027 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..334b79f26 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.61769021404155,0.0,0.0,60.71178863926628,0.0740814170021622 +1,251.46161214338602,0.0,0.0,62.666566758453214,0.07646666599976015 +2,254.063240155725,0.0,0.0,63.314916596530836,0.07725779200336547 +3,252.81360526435807,0.0,0.0,63.00349598773077,0.07687779199841316 +4,252.19796606709363,0.0,0.0,62.850072987990785,0.07669058299870812 +5,255.2020225366119,0.0,0.0,63.598711731251065,0.07760408299873234 +6,255.21956346696606,0.0,0.0,63.60308309383669,0.07760941699962132 +7,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134 +8,251.7152386884793,0.0,0.0,62.72977284658861,0.07654379099767539 +9,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569 +10,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293 +11,256.09101607265075,0.0,0.0,63.82025716834245,0.07787441599793965 +12,258.54822246754117,0.0,0.0,64.43261579943601,0.07862162500168779 +13,251.91734740702606,0.0,0.0,62.78014021437615,0.07660525000028429 +14,256.0914304298579,0.0,0.0,63.82036043000281,0.07787454199933563 +15,256.1073238132674,0.0,0.0,63.82432120860419,0.07787937499961117 +16,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663 +17,252.78893813177984,0.0,0.0,62.99734870943538,0.07687029099906795 +18,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129 +19,254.19532983990766,0.0,0.0,63.34783457133176,0.07729795900013414 +20,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895003 +21,254.8345312291614,0.0,0.0,63.507129487920956,0.07749233299909974 +22,256.2513343634823,0.0,0.0,63.86020997381984,0.07792316699851654 +23,256.51962110224747,0.0,0.0,63.927069518232734,0.07800474999748985 +24,254.42100073848022,0.0,0.0,63.404073852987096,0.07736658299836563 +25,252.18371695261894,0.0,0.0,62.84652197646316,0.07668625000223983 +26,253.7606969687288,0.0,0.0,63.23952002739407,0.07716579200132401 +27,252.71604495264393,0.0,0.0,62.97918305290586,0.07684812499792315 +28,253.57256771842907,0.0,0.0,63.192636472792486,0.07710858399877907 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..610d2292c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c2b61738f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0ef910b06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..941b41eba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..357a5f7c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..40f129c6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e2e5bfddb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3033ea73a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1d84e37ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3935f1160 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9f3da5e80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e739ff88a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..27f579ee9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ad34ff95a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ab2ff2e35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..be8d3847f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..88727dba0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..466d5055c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1550.0754940354377,0.8369738088744263,0.0,464.92221135356635,0.4976810830012255 +1,1538.0192823716247,0.8304639753626484,0.0,461.30612903444387,0.49381020800137776 +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189 +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839 +4,1528.3809066387753,0.8252596688114338,0.0,458.41524083137523,0.4907156250010303 +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.49822833299913327 +6,1548.6955972049807,0.8362287241927542,0.0,464.50833171459107,0.49723804099994595 +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205 +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483 +9,1527.9665376723801,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396 +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764 +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.48929150000185473 +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.48953866599913454 +13,1526.3592753499975,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508 +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895 +15,1545.9810991200075,0.8347630124838054,0.0,463.6941581745042,0.49636649999956717 +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642 +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.49720275000072434 +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156 +19,1529.9212051478567,0.826091363470765,0.0,458.8772305807405,0.49121016699791653 +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.49590587499915273 +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002 +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318 +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.49742491700089886 +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943 +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.49725445800140733 +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859 +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.49765145799756283 +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.49819816699891817 +29,1549.7088811696053,0.8367758537632858,0.0,464.81225124842996,0.497563375000027 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a23ebbcc8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.61769021404155,0.0,0.0,60.71178863926628,0.0740814170021622 +1,251.46161214338602,0.0,0.0,62.666566758453214,0.07646666599976015 +2,254.063240155725,0.0,0.0,63.314916596530836,0.07725779200336547 +3,232.2594398453139,0.0,0.0,57.881207267723845,0.07062750000113738 +4,252.81360526435807,0.0,0.0,63.00349598773077,0.07687779199841316 +5,252.19796606709363,0.0,0.0,62.850072987990785,0.07669058299870812 +6,255.2020225366119,0.0,0.0,63.598711731251065,0.07760408299873234 +7,255.21956346696606,0.0,0.0,63.60308309383669,0.07760941699962132 +8,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134 +9,251.7152386884793,0.0,0.0,62.72977284658861,0.07654379099767539 +10,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569 +11,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293 +12,256.09101607265075,0.0,0.0,63.82025716834245,0.07787441599793965 +13,258.54822246754117,0.0,0.0,64.43261579943601,0.07862162500168779 +14,251.91734740702606,0.0,0.0,62.78014021437615,0.07660525000028429 +15,256.0914304298579,0.0,0.0,63.82036043000281,0.07787454199933563 +16,256.1073238132674,0.0,0.0,63.82432120860419,0.07787937499961117 +17,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663 +18,252.78893813177984,0.0,0.0,62.99734870943538,0.07687029099906795 +19,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129 +20,254.19532983990766,0.0,0.0,63.34783457133176,0.07729795900013414 +21,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895003 +22,254.8345312291614,0.0,0.0,63.507129487920956,0.07749233299909974 +23,256.2513343634823,0.0,0.0,63.86020997381984,0.07792316699851654 +24,256.51962110224747,0.0,0.0,63.927069518232734,0.07800474999748985 +25,254.42100073848022,0.0,0.0,63.404073852987096,0.07736658299836563 +26,252.18371695261894,0.0,0.0,62.84652197646316,0.07668625000223983 +27,253.7606969687288,0.0,0.0,63.23952002739407,0.07716579200132401 +28,252.71604495264393,0.0,0.0,62.97918305290586,0.07684812499792315 +29,253.57256771842907,0.0,0.0,63.192636472792486,0.07710858399877907 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c7f251f1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5f7562e5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a84ba1b94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f4168125d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..90c6a5e01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5e5649f4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c12797cf9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3033ea73a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..84b3a541f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..571e712c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..862227624 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..21964cb97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5e56a0b62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..007d7904a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..973fa5624 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..be8d3847f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..36c829b8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7b19815fb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1543.0372939029867,0.9050268700391154,0.0,464.4128623848868,0.49695283400069457 +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.49680737500239047 +2,1522.6647565357835,0.8930779082084145,0.0,458.2812747491697,0.49039162500048405 +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.49550400000225636 +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488 +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.48765587500020047 +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299 +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.49114224999721046 +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522 +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697 +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.48916537500190316 +11,1540.3509525440622,0.9034512690335335,0.0,463.60434564665206,0.4960876669974823 +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175 +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979 +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759 +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943 +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511 +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.49707220799973584 +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232 +19,1517.3107069267535,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729 +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.49690162499973667 +21,1542.9237006680557,0.9049602449936461,0.0,464.378673866184,0.4969162499983213 +22,1543.855845753035,0.9055069695297377,0.0,464.65922454942654,0.4972164579994569 +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416 +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507 +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.49533687499933876 +26,1524.4368065342999,0.8941172562980861,0.0,458.81461429666604,0.4909623339990503 +27,1540.8696144444589,0.9037554761697961,0.0,463.7604489752787,0.4962547080031072 +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629 +29,1542.3754109042263,0.9046386604338991,0.0,464.2136533448767,0.4967396669999289 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..88afe22e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.07540091700138873 +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.07719037499919068 +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.07707124999797088 +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.07766795800125692 +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.07797962499898858 +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.07739137499811477 +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.07756979199984926 +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.07639291700252215 +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.07731050000074902 +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.07815850000042701 +10,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.07713762499770382 +11,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673 +12,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.07693879200087395 +13,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766 +14,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.07723233299839194 +15,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.07683004200225696 +16,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.07763970799715025 +17,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665 +18,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.07713708300070721 +19,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.07769091699810815 +20,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.07724287500241189 +21,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409 +22,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.07767545799651998 +23,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.07695483299903572 +24,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.07704849999936414 +25,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.07684279199747834 +26,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.07679870799984201 +27,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.07778104099998018 +28,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3d3e2c430 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6f0fe3f8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3fd285a16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..586a82876 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d77696315 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..838e63f47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f697c2474 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..435ea6114 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a985b6d30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..96131cbfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b28fc8401 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..66c96c4c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f46f79058 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..333340933 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4d00958f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ba7fd2e69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5a840d5aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7b19815fb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1543.0372939029867,0.9050268700391154,0.0,464.4128623848868,0.49695283400069457 +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.49680737500239047 +2,1522.6647565357835,0.8930779082084145,0.0,458.2812747491697,0.49039162500048405 +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.49550400000225636 +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488 +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.48765587500020047 +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299 +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.49114224999721046 +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522 +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697 +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.48916537500190316 +11,1540.3509525440622,0.9034512690335335,0.0,463.60434564665206,0.4960876669974823 +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175 +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979 +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759 +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943 +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511 +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.49707220799973584 +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232 +19,1517.3107069267535,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729 +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.49690162499973667 +21,1542.9237006680557,0.9049602449936461,0.0,464.378673866184,0.4969162499983213 +22,1543.855845753035,0.9055069695297377,0.0,464.65922454942654,0.4972164579994569 +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416 +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507 +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.49533687499933876 +26,1524.4368065342999,0.8941172562980861,0.0,458.81461429666604,0.4909623339990503 +27,1540.8696144444589,0.9037554761697961,0.0,463.7604489752787,0.4962547080031072 +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629 +29,1542.3754109042263,0.9046386604338991,0.0,464.2136533448767,0.4967396669999289 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..861ad9812 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.07540091700138873 +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.07719037499919068 +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.07707124999797088 +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.07766795800125692 +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.07797962499898858 +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.07739137499811477 +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.07756979199984926 +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.07639291700252215 +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.07731050000074902 +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.07815850000042701 +10,235.2985150178381,0.7924561386611128,0.0,58.42840068512897,0.07032933300069999 +11,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.07713762499770382 +12,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673 +13,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.07693879200087395 +14,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766 +15,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.07723233299839194 +16,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.07683004200225696 +17,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.07763970799715025 +18,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665 +19,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.07713708300070721 +20,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.07769091699810815 +21,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.07724287500241189 +22,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409 +23,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.07767545799651998 +24,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.07695483299903572 +25,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.07704849999936414 +26,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.07684279199747834 +27,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.07679870799984201 +28,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.07778104099998018 +29,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ac782fb69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4ba0eb441 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cd24ab7eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aedaff0a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..63e114f03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1e7aa5d6d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5c703596f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b1da190b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fa5a44d14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..456f5384d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a07d704e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5422b9e4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..cac27294f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..27b8857ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..87da5a94d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..62a220e3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d59cf1de2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..49a9dc42e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1552.5755589394023,1.2755469102479253,0.0,466.24596271957057,0.49759883300066576 +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.49654833399836207 +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.49745762500242563 +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449 +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334 +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.49778216699996847 +6,1537.7049952925079,1.2633297260959353,0.0,461.7802604071722,0.49283283299882896 +7,1550.9853290718897,1.2742404277502393,0.0,465.7684089855479,0.49708916600138764 +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838 +9,1551.9411325247233,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125 +10,1520.1867380960591,1.2489372807742254,0.0,456.51944289352605,0.4872182500002964 +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.49706208299903665 +12,1524.5508959441925,1.2525227346524401,0.0,457.83002064006297,0.4886169579986017 +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.49792724999861093 +14,1552.3800325555057,1.275386271963099,0.0,466.1872451991433,0.4975361670003622 +15,1533.3947877007581,1.2597885960397988,0.0,460.4858841840212,0.49145141600092757 +16,1553.2691400031185,1.2761167344846496,0.0,466.454248473468,0.4978211250017921 +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.49891041700175265 +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086 +19,1554.660720229109,1.2772600127279559,0.0,466.87214675766603,0.49826712499998393 +20,1560.0134398376556,1.28165763764147,0.0,468.47959439052676,0.49998266600232455 +21,1528.100442701547,1.2554389298566317,0.0,458.89596672917406,0.48975458399945637 +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346 +23,1528.2429267943644,1.2555559902749194,0.0,458.93875539259557,0.4898002500012808 +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.49744837500111316 +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.49788400000034017 +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246 +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913 +28,1526.2605989035876,1.2539273724587883,0.0,458.34345272243604,0.48916491599811707 +29,1549.6854059286075,1.2731724520633707,0.0,465.3780357673742,0.49667254200176103 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5357d569b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292 +1,242.77578502676266,0.4671759814498319,0.0,63.69165880432708,0.07244295900090947 +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993 +3,258.51333715491046,0.49745991755274627,0.0,67.82036875969108,0.07713895800043247 +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.08546566700169933 +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141 +6,243.74387927163866,0.4690388953270789,0.0,63.94563606292509,0.07273183299912489 +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.07422579200283508 +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.07765441699666553 +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708 +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.07308395799918799 +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632 +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.07994341700032237 +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.07944887499979814 +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.07973058399875299 +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.07778379199953633 +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.07757349999883445 +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.07812266600012663 +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.07808187500268104 +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.07913362500039511 +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488 +21,257.9793695450014,0.49643239809814255,0.0,67.6802836073801,0.07697962500242284 +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.07825616700210958 +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.07925375000195345 +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041 +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.07805912499679835 +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.07750962499994785 +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.07820391700079199 +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.07764737500110641 +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.07819804199971259 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..19d2672f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9c728f9a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..657f99080 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4f37f4c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a486e25f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ecbde0747 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f5ac69697 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..50e4d0661 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..447e4b348 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1a6ab6c2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7c6450956 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..26997a1b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..71fddd25e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..44007d293 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..d9fe2f1e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..420d30347 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c2f9784b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..49a9dc42e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1552.5755589394023,1.2755469102479253,0.0,466.24596271957057,0.49759883300066576 +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.49654833399836207 +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.49745762500242563 +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449 +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334 +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.49778216699996847 +6,1537.7049952925079,1.2633297260959353,0.0,461.7802604071722,0.49283283299882896 +7,1550.9853290718897,1.2742404277502393,0.0,465.7684089855479,0.49708916600138764 +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838 +9,1551.9411325247233,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125 +10,1520.1867380960591,1.2489372807742254,0.0,456.51944289352605,0.4872182500002964 +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.49706208299903665 +12,1524.5508959441925,1.2525227346524401,0.0,457.83002064006297,0.4886169579986017 +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.49792724999861093 +14,1552.3800325555057,1.275386271963099,0.0,466.1872451991433,0.4975361670003622 +15,1533.3947877007581,1.2597885960397988,0.0,460.4858841840212,0.49145141600092757 +16,1553.2691400031185,1.2761167344846496,0.0,466.454248473468,0.4978211250017921 +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.49891041700175265 +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086 +19,1554.660720229109,1.2772600127279559,0.0,466.87214675766603,0.49826712499998393 +20,1560.0134398376556,1.28165763764147,0.0,468.47959439052676,0.49998266600232455 +21,1528.100442701547,1.2554389298566317,0.0,458.89596672917406,0.48975458399945637 +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346 +23,1528.2429267943644,1.2555559902749194,0.0,458.93875539259557,0.4898002500012808 +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.49744837500111316 +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.49788400000034017 +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246 +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913 +28,1526.2605989035876,1.2539273724587883,0.0,458.34345272243604,0.48916491599811707 +29,1549.6854059286075,1.2731724520633707,0.0,465.3780357673742,0.49667254200176103 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..5357d569b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292 +1,242.77578502676266,0.4671759814498319,0.0,63.69165880432708,0.07244295900090947 +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993 +3,258.51333715491046,0.49745991755274627,0.0,67.82036875969108,0.07713895800043247 +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.08546566700169933 +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141 +6,243.74387927163866,0.4690388953270789,0.0,63.94563606292509,0.07273183299912489 +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.07422579200283508 +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.07765441699666553 +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708 +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.07308395799918799 +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632 +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.07994341700032237 +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.07944887499979814 +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.07973058399875299 +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.07778379199953633 +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.07757349999883445 +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.07812266600012663 +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.07808187500268104 +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.07913362500039511 +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488 +21,257.9793695450014,0.49643239809814255,0.0,67.6802836073801,0.07697962500242284 +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.07825616700210958 +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.07925375000195345 +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041 +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.07805912499679835 +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.07750962499994785 +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.07820391700079199 +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.07764737500110641 +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.07819804199971259 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..19d2672f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9c728f9a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..657f99080 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4f37f4c87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a486e25f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ecbde0747 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f5ac69697 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..50e4d0661 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..447e4b348 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1a6ab6c2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7c6450956 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..26997a1b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..71fddd25e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..44007d293 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..d9fe2f1e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..420d30347 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c2f9784b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..da547990e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143 +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629 +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.49058591699940735 +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484 +4,1572.3927908809337,1.7548657145168245,0.0,461.7945683087953,0.49259149999852525 +5,1564.3827924950485,1.7459261724238786,0.0,459.44211937350633,0.490082166998036 +6,1587.637379706137,1.7718794062714578,0.0,466.27173734467965,0.4973672500018438 +7,1586.1069069337877,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081 +8,1565.8796111487761,1.747596693779299,0.0,459.88171864414875,0.4905510830030835 +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.48968883299676236 +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949 +11,1565.9028878075114,1.7476226716460255,0.0,459.8885547442853,0.4905583750005462 +12,1583.3814014098812,1.7671295305170396,0.0,465.02180305888965,0.49603395799931604 +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357 +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462 +15,1611.7074099564165,1.7987427136324219,0.0,473.3408420194601,0.5049077910007327 +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.49806733399964287 +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919 +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489 +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508 +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334 +21,1572.3998421997235,1.754873584126542,0.0,461.79663920401657,0.4925937090010848 +22,1585.7182708706089,1.7697375888340936,0.0,465.70811606545476,0.49676604100022814 +23,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159 +24,1590.2483692515932,1.7747933957407913,0.0,467.03855642258145,0.49818520799817634 +25,1591.9827363009795,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986 +26,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312 +27,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873 +28,1587.966697298727,1.7722469404879557,0.0,466.3684543204815,0.4974704170017503 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2daa10e19 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,255.65537390140065,0.0,0.0,64.03179678521767,0.07761079099873314 +1,252.3971302607853,0.0,0.0,63.2157325989312,0.07662166699810768 +2,254.03647687991125,0.0,0.0,63.626325609258025,0.07711933300015517 +3,252.92870751153595,0.0,0.0,63.34887216872111,0.07678304100045352 +4,256.21770129194005,0.0,0.0,64.172638077338,0.07778150000012829 +5,261.83806978347053,0.0,0.0,65.58032330458661,0.07948770800066995 +6,257.89026530262356,0.0,0.0,64.59155076126875,0.07828924999921583 +7,254.00381288625172,0.0,0.0,63.61814454045324,0.07710941700133844 +8,255.43041857262065,0.0,0.0,63.97545416398356,0.07754249999925378 +9,254.5701162116187,0.0,0.0,63.75998165068225,0.07728133300042828 +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248 +11,250.66526969948472,0.0,0.0,62.78196841932783,0.07609591599975829 +12,253.81728616949164,0.0,0.0,63.57142680227183,0.07705279199944925 +13,252.96713941908894,0.0,0.0,63.35849787717756,0.07679470799848787 +14,239.62560934353886,0.0,0.0,60.01695989358342,0.07274454200160108 +15,251.76288345726073,0.0,0.0,63.05687827165771,0.07642912500159582 +16,257.5634672163916,0.0,0.0,64.50970046284525,0.07819004200064228 +17,255.07685287249387,0.0,0.0,63.88689961214584,0.07743516600021394 +18,253.78612756335778,0.0,0.0,63.56362277489847,0.0770433329998923 +19,261.432764118169,0.0,0.0,65.47880988986569,0.07936466699902667 +20,253.1580604236211,0.0,0.0,63.40631621472186,0.07685266699991189 +21,255.3783986189558,0.0,0.0,63.96242517479779,0.07752670799891348 +22,255.35575189540887,0.0,0.0,63.95675304525136,0.07751983300113352 +23,249.2891719762051,0.0,0.0,62.437309089742904,0.07567816599839716 +24,253.92571378551102,0.0,0.0,63.59858373220023,0.07708570800241432 +25,253.67358237649094,0.0,0.0,63.53543455250894,0.07700916700196103 +26,253.70103185415508,0.0,0.0,63.542309586461194,0.07701749999978347 +27,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622 +28,254.50876744267654,0.0,0.0,63.74461615358363,0.0772627089972957 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b79b40231 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9b551e19d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..965cb7896 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fdf75fd8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1e9a20bf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d0284320d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2d818308c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..989d7fc2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c2786db24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6961838e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..79c5cfdb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..dceb226d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a3c90a667 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..12e30e936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2aff425b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..10c665d90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..72d10da96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..f83c629f5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143 +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629 +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.49058591699940735 +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484 +4,1572.3927908809337,1.7548657145168245,0.0,461.7945683087953,0.49259149999852525 +5,1564.3827924950485,1.7459261724238786,0.0,459.44211937350633,0.490082166998036 +6,1587.637379706137,1.7718794062714578,0.0,466.27173734467965,0.4973672500018438 +7,1586.1069069337877,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081 +8,1565.8796111487761,1.747596693779299,0.0,459.88171864414875,0.4905510830030835 +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.48968883299676236 +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949 +11,1565.9028878075114,1.7476226716460255,0.0,459.8885547442853,0.4905583750005462 +12,1583.3814014098812,1.7671295305170396,0.0,465.02180305888965,0.49603395799931604 +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357 +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462 +15,1611.7074099564165,1.7987427136324219,0.0,473.3408420194601,0.5049077910007327 +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.49806733399964287 +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919 +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489 +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508 +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334 +21,1627.0202327275636,1.8158325577409689,0.0,477.83805061911875,0.5097049169999082 +22,1572.3998421997235,1.754873584126542,0.0,461.79663920401657,0.4925937090010848 +23,1585.7182708706089,1.7697375888340936,0.0,465.70811606545476,0.49676604100022814 +24,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159 +25,1590.2483692515932,1.7747933957407913,0.0,467.03855642258145,0.49818520799817634 +26,1591.9827363009795,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986 +27,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312 +28,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873 +29,1587.966697298727,1.7722469404879557,0.0,466.3684543204815,0.4974704170017503 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1e6c7912e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,255.65537390140065,0.0,0.0,64.03179678521767,0.07761079099873314 +1,252.3971302607853,0.0,0.0,63.2157325989312,0.07662166699810768 +2,254.03647687991125,0.0,0.0,63.626325609258025,0.07711933300015517 +3,252.92870751153595,0.0,0.0,63.34887216872111,0.07678304100045352 +4,256.21770129194005,0.0,0.0,64.172638077338,0.07778150000012829 +5,261.83806978347053,0.0,0.0,65.58032330458661,0.07948770800066995 +6,257.89026530262356,0.0,0.0,64.59155076126875,0.07828924999921583 +7,254.00381288625172,0.0,0.0,63.61814454045324,0.07710941700133844 +8,255.43041857262065,0.0,0.0,63.97545416398356,0.07754249999925378 +9,254.5701162116187,0.0,0.0,63.75998165068225,0.07728133300042828 +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248 +11,250.66526969948472,0.0,0.0,62.78196841932783,0.07609591599975829 +12,253.81728616949164,0.0,0.0,63.57142680227183,0.07705279199944925 +13,252.96713941908894,0.0,0.0,63.35849787717756,0.07679470799848787 +14,239.62560934353886,0.0,0.0,60.01695989358342,0.07274454200160108 +15,251.76288345726073,0.0,0.0,63.05687827165771,0.07642912500159582 +16,257.5634672163916,0.0,0.0,64.50970046284525,0.07819004200064228 +17,255.07685287249387,0.0,0.0,63.88689961214584,0.07743516600021394 +18,253.78612756335778,0.0,0.0,63.56362277489847,0.0770433329998923 +19,261.432764118169,0.0,0.0,65.47880988986569,0.07936466699902667 +20,253.1580604236211,0.0,0.0,63.40631621472186,0.07685266699991189 +21,255.3783986189558,0.0,0.0,63.96242517479779,0.07752670799891348 +22,255.35575189540887,0.0,0.0,63.95675304525136,0.07751983300113352 +23,249.2891719762051,0.0,0.0,62.437309089742904,0.07567816599839716 +24,253.92571378551102,0.0,0.0,63.59858373220023,0.07708570800241432 +25,232.28381259426416,0.0,0.0,58.178123375837316,0.0705157499978668 +26,253.67358237649094,0.0,0.0,63.53543455250894,0.07700916700196103 +27,253.70103185415508,0.0,0.0,63.542309586461194,0.07701749999978347 +28,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622 +29,254.50876744267654,0.0,0.0,63.74461615358363,0.0772627089972957 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d420e58ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e286c7017 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a2287ffbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..11c365be2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5d47b4c8d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8ea9eaded Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..98f266899 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bb76e7836 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..29ccee1e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ede341278 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..dd86006ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..40faf20ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b4ec28821 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6ef221edc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5a75c1061 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a0a307d3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4ea6c5987 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..b7ceeecee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744 +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192 +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263 +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.49834049999844865 +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052 +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.49752587500188383 +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626 +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.49733395899966126 +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957 +9,1548.8857390933792,0.8386499063790712,0.0,465.24942206285357,0.4981867919996148 +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573 +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854 +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442 +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.48904004199721385 +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909 +15,1548.8552953071999,0.8386334224785583,0.0,465.240277454205,0.49817699999766774 +16,1525.4255233559127,0.8259472858853377,0.0,458.20251631775,0.4906410000003234 +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796 +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922 +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205 +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.49764404199959245 +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.49662491700291866 +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363 +23,1523.6436512727457,0.8249824846621034,0.0,457.6672831911485,0.49006787500184146 +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.49410079199878965 +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.49616508400140447 +26,1546.0182906866473,0.8370973158443685,0.0,464.3881069378219,0.49726450000162004 +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.48868099999890546 +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.48927116699996986 +29,1544.9793531592713,0.8365347792814213,0.0,464.0760341541612,0.49693033400035347 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c4a95bb77 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.07509804200162762 +1,246.76674350378298,0.5470832863281573,0.0,65.48908751045883,0.07489699999860022 +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.07537025000056019 +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.08010316600120859 +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.07875391700144974 +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.08029458400051226 +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732 +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008 +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956 +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.07954999999856227 +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.07886250000228756 +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.07370820900177932 +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.07772870899862028 +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.08099308300006669 +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.07824120900113485 +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.07822466699872166 +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.07644595799865783 +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.07859079199988628 +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.07981724999990547 +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879 +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.07771900000079768 +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.07459929100150475 +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.07896912500291364 +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.07796929200048908 +24,251.71874980934942,0.5580619127228665,0.0,66.80329367006078,0.07640000000174041 +25,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.07738070899722516 +26,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.07781391699973028 +27,252.35079120270458,0.5594631521186721,0.0,66.9710302683234,0.07659183299983852 +28,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.07673337500091293 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4e522b369 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8c3d162f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8b9b9fa98 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7bf45ee27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a24307d88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..53dccee3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3239878ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..88d30619e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..02d1dc976 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e29df6f0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..373457f88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..26af63654 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..38f06ad92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5bf671f57 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..aa72789aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ad513416c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e8f8c81b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b7ceeecee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744 +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192 +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263 +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.49834049999844865 +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052 +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.49752587500188383 +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626 +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.49733395899966126 +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957 +9,1548.8857390933792,0.8386499063790712,0.0,465.24942206285357,0.4981867919996148 +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573 +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854 +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442 +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.48904004199721385 +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909 +15,1548.8552953071999,0.8386334224785583,0.0,465.240277454205,0.49817699999766774 +16,1525.4255233559127,0.8259472858853377,0.0,458.20251631775,0.4906410000003234 +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796 +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922 +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205 +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.49764404199959245 +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.49662491700291866 +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363 +23,1523.6436512727457,0.8249824846621034,0.0,457.6672831911485,0.49006787500184146 +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.49410079199878965 +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.49616508400140447 +26,1546.0182906866473,0.8370973158443685,0.0,464.3881069378219,0.49726450000162004 +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.48868099999890546 +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.48927116699996986 +29,1544.9793531592713,0.8365347792814213,0.0,464.0760341541612,0.49693033400035347 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a254a22e9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.07509804200162762 +1,246.76674350378298,0.5470832863281573,0.0,65.48908751045883,0.07489699999860022 +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.07537025000056019 +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.08010316600120859 +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.07875391700144974 +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.08029458400051226 +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732 +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008 +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956 +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.07954999999856227 +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.07886250000228756 +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.07370820900177932 +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.07772870899862028 +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.08099308300006669 +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.07824120900113485 +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.07822466699872166 +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.07644595799865783 +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.07859079199988628 +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.07981724999990547 +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879 +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.07771900000079768 +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.07459929100150475 +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.07896912500291364 +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.07796929200048908 +24,251.71874980934942,0.5580619127228665,0.0,66.80329367006078,0.07640000000174041 +25,232.25845891939954,0.51491833615412,0.0,61.6387537690373,0.07049354199989466 +26,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.07738070899722516 +27,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.07781391699973028 +28,252.35079120270458,0.5594631521186721,0.0,66.9710302683234,0.07659183299983852 +29,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.07673337500091293 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d8f619166 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ba1281286 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0014e039d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8f63db35f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a53722db6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..69c2d5446 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..82cbaa995 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3fc459916 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7cc2ed862 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..981fa217e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c43b4e9fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..404cfe442 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b897dd897 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b91ba9efd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..8921a792a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8912a803d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e3b5c01b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3cec40928 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.49609670900099445 +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625 +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175 +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248 +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133 +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024 +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.93615605382877,0.4992987500008894 +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069 +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808 +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982 +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676 +11,2383.245600577661,3.9684933333701427,85.35567744523615,511.86949844919224,0.5002108339976985 +12,2393.684776374659,3.9858762667724843,85.72955537116485,514.1116071425375,0.5024018750009418 +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633 +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925 +15,2396.267721266653,3.9901772920557605,85.82206325663266,514.6663677203255,0.5029439999998431 +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309 +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842 +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849 +19,2370.2641685954413,3.9468771280295973,84.89074889536992,509.0813682303509,0.49748620800164645 +20,2385.3405815094175,3.9719818189291627,85.43070895546808,512.3194549448798,0.5006505419987661 +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261 +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995 +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786 +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882 +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378 +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566 +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169 +28,2422.4273107384734,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318 +29,2386.7347881131845,3.9743034007296485,85.48064231069353,512.6189003041125,0.5009431670005142 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..0054bed68 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,388.73038558373344,0.37234711262809717,12.795200779401885,75.75571255106195,0.07907612500275718 +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.08185108299949206 +2,386.16305637510675,0.36988798503362713,12.710696212973733,75.25539186411433,0.07855387499876088 +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597 +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908 +5,374.82924555374433,0.35903184440013824,12.337639743932023,73.04666070613722,0.07624833400041098 +6,356.617671661771,0.34158780810514466,11.738199223976789,69.4975922308467,0.07254370800001197 +7,391.64449222473655,0.37513840251411545,12.891119650030513,76.32361316605368,0.07966891699834378 +8,394.2085425197358,0.37759438938672013,12.975516289834564,76.82329485886179,0.08019050000075367 +9,394.23025605863455,0.37761518779562697,12.976230998795183,76.82752638969211,0.0801949170017906 +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.07700937499976135 +11,390.7969073771063,0.3743265396332436,12.863221089215099,76.15843597265447,0.07949650000227848 +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.07939025000086986 +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.07702312499895925 +14,361.2965867125136,0.34606952750240766,11.89220739962819,70.40941841367166,0.07349550000071758 +15,395.7865466718811,0.37910588761674435,13.027456865375397,77.13081604420672,0.08051150000028429 +16,391.401769634818,0.3749059096118946,12.883130348481469,76.27631142831092,0.07961954200072796 +17,381.2733721004155,0.3652043794065282,12.549750492333425,74.30249101016456,0.07755920800263993 +18,379.52065191266564,0.3635255286519786,12.492059075495265,73.96092119301164,0.07720266700198408 +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.07311720799771138 +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.07599074999961886 +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.07852804199865204 +22,386.9403832051992,0.37063255096283454,12.736282205813769,75.40687718680215,0.07871200000226963 +23,390.2086362678317,0.3737630615592258,12.843857933580667,76.04379379723157,0.07937683300042409 +24,376.20897175435175,0.36035342122064346,12.383053929218475,73.31554151743637,0.0765289999981178 +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.07302237499970943 +26,382.8300756539037,0.36669547476427555,12.60098995099056,74.60586113840442,0.07787587500206428 +27,379.25150633362836,0.36326772637320726,12.48320005173385,73.90847014756707,0.07714791699982015 +28,386.50532596295153,0.37021582946642867,12.721962139846367,75.32209330416975,0.07862349999777507 +29,385.28085865824175,0.36904296806344994,12.681658357089463,75.08346932054555,0.07837441700030467 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0cb8ec51f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6411de701 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..72fa6a85a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..71a4eeb32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..28606f3be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ab8f0ad5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ade4aee52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8039f8bd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..236c253b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..74ce31007 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d29fe6ac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4dd0c4997 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..384330ca4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b1e26c104 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0e3a6351e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..c3fde5629 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..48b44e0bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e17b36d27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..dd57e7a0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f7d338cf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3cec40928 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.49609670900099445 +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625 +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175 +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248 +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133 +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024 +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.93615605382877,0.4992987500008894 +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069 +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808 +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982 +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676 +11,2383.245600577661,3.9684933333701427,85.35567744523615,511.86949844919224,0.5002108339976985 +12,2393.684776374659,3.9858762667724843,85.72955537116485,514.1116071425375,0.5024018750009418 +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633 +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925 +15,2396.267721266653,3.9901772920557605,85.82206325663266,514.6663677203255,0.5029439999998431 +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309 +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842 +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849 +19,2370.2641685954413,3.9468771280295973,84.89074889536992,509.0813682303509,0.49748620800164645 +20,2385.3405815094175,3.9719818189291627,85.43070895546808,512.3194549448798,0.5006505419987661 +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261 +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995 +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786 +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882 +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378 +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566 +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169 +28,2422.4273107384734,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318 +29,2386.7347881131845,3.9743034007296485,85.48064231069353,512.6189003041125,0.5009431670005142 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0054bed68 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,388.73038558373344,0.37234711262809717,12.795200779401885,75.75571255106195,0.07907612500275718 +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.08185108299949206 +2,386.16305637510675,0.36988798503362713,12.710696212973733,75.25539186411433,0.07855387499876088 +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597 +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908 +5,374.82924555374433,0.35903184440013824,12.337639743932023,73.04666070613722,0.07624833400041098 +6,356.617671661771,0.34158780810514466,11.738199223976789,69.4975922308467,0.07254370800001197 +7,391.64449222473655,0.37513840251411545,12.891119650030513,76.32361316605368,0.07966891699834378 +8,394.2085425197358,0.37759438938672013,12.975516289834564,76.82329485886179,0.08019050000075367 +9,394.23025605863455,0.37761518779562697,12.976230998795183,76.82752638969211,0.0801949170017906 +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.07700937499976135 +11,390.7969073771063,0.3743265396332436,12.863221089215099,76.15843597265447,0.07949650000227848 +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.07939025000086986 +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.07702312499895925 +14,361.2965867125136,0.34606952750240766,11.89220739962819,70.40941841367166,0.07349550000071758 +15,395.7865466718811,0.37910588761674435,13.027456865375397,77.13081604420672,0.08051150000028429 +16,391.401769634818,0.3749059096118946,12.883130348481469,76.27631142831092,0.07961954200072796 +17,381.2733721004155,0.3652043794065282,12.549750492333425,74.30249101016456,0.07755920800263993 +18,379.52065191266564,0.3635255286519786,12.492059075495265,73.96092119301164,0.07720266700198408 +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.07311720799771138 +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.07599074999961886 +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.07852804199865204 +22,386.9403832051992,0.37063255096283454,12.736282205813769,75.40687718680215,0.07871200000226963 +23,390.2086362678317,0.3737630615592258,12.843857933580667,76.04379379723157,0.07937683300042409 +24,376.20897175435175,0.36035342122064346,12.383053929218475,73.31554151743637,0.0765289999981178 +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.07302237499970943 +26,382.8300756539037,0.36669547476427555,12.60098995099056,74.60586113840442,0.07787587500206428 +27,379.25150633362836,0.36326772637320726,12.48320005173385,73.90847014756707,0.07714791699982015 +28,386.50532596295153,0.37021582946642867,12.721962139846367,75.32209330416975,0.07862349999777507 +29,385.28085865824175,0.36904296806344994,12.681658357089463,75.08346932054555,0.07837441700030467 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0cb8ec51f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6411de701 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..72fa6a85a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..71a4eeb32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..28606f3be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ab8f0ad5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ade4aee52 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8039f8bd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..236c253b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..74ce31007 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d29fe6ac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4dd0c4997 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..384330ca4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b1e26c104 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0e3a6351e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..c3fde5629 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..48b44e0bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e17b36d27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..dd57e7a0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f7d338cf4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..68659d0c8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612 +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576 +2,2756.6629408744075,3.7859013829243917,84.37621951682796,523.1457293569697,0.5001827079977375 +3,2741.474911483684,3.7650426915618573,83.91134276933079,520.2634209705171,0.49742691600113176 +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654 +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.49782158299785806 +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554 +7,2774.160435980272,3.8099318111413405,84.91178462569788,526.4663166160612,0.5033575410016056 +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454 +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631 +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016 +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793 +12,2770.4892187897412,3.8048898939622173,84.79941563674055,525.7696113474226,0.5026914169975498 +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978 +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901 +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394 +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222 +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375 +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477 +19,2745.556043502129,3.7706475709700107,84.0362584730099,521.0379178285604,0.4981674170012411 +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818 +21,2757.1403582791954,3.7865570507560364,84.39083235728454,523.2363312483842,0.5002693329988688 +22,2771.5646135441475,3.8063668023021995,84.83233142870031,525.9736943946457,0.5028865419990325 +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276 +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584 +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005 +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075 +27,2829.818723513932,3.8863708942880266,86.61537914834967,537.0288685315742,0.5134564589970978 +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049 +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8437fb2dc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.07752766699923086 +1,389.80022614651443,0.34313400188953735,12.901838471046604,76.62182262193369,0.0799885419983184 +2,389.79007528132496,0.3431250662687719,12.901502491705825,76.61982729781678,0.07998645900079282 +3,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.07664966700031073 +4,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.07839591700030724 +5,368.8117548208933,0.32465823487754697,12.207149631395765,72.49618384815624,0.07568162499956088 +6,379.99108210302904,0.33449919199210304,12.577169618903074,74.69366957183661,0.07797566699809977 +7,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.07521300000007614 +8,388.8351277233648,0.34228444341845493,12.869895072533906,76.43211621534098,0.07979049999994459 +9,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.08039324999845121 +10,381.6621806372591,0.33597022943420696,12.632480626726181,75.02215223265841,0.07831858300050953 +11,366.6756700911541,0.32277787860136803,12.136448235411438,72.07630029168548,0.07524329199804924 +12,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.07859391599777155 +13,384.18386223037226,0.33819001956898964,12.715944735794011,75.51783136975538,0.07883604199741967 +14,378.7553163563533,0.33341137003200116,12.536267513203242,74.45075892814586,0.07772208299866179 +15,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.07866904099864769 +16,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.07858775000204332 +17,381.69061089583147,0.3359952560702742,12.63342162824231,75.02774068049223,0.07832441700156778 +18,388.1719679438419,0.34170067600690307,12.847945417859556,76.30176095234145,0.07965441700071096 +19,378.52526231523035,0.3332088576718577,12.528653048461848,74.40553791812582,0.07767487500314019 +20,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513 +21,383.54607720273344,0.33762858908691323,12.694834949667937,75.39246394310773,0.07870516599723487 +22,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758 +23,373.0230141252263,0.32836532933558654,12.346536383018055,73.32397804063648,0.07654579199879663 +24,383.6628342422502,0.33773136817099486,12.698699443229406,75.41541451258315,0.0787291250017006 +25,383.9716733361366,0.33800323357054274,12.708921582252408,75.4761220563022,0.07879250000041793 +26,388.3768470521449,0.3418810273346346,12.854726627782261,76.3420334038239,0.07969645900084288 +27,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.07672649999949499 +28,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.07181041700096102 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5646c4bb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5e54bb82a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f4301a37c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d1e2feb39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..41f3dd68a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..92ec9c8b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..29b032c6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1f97035af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c968eebee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9789fe494 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..10e0718ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9ba628c1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..22d82005b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9b0ce93b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e814c6b99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..14188b4ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..18c3bc1e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..901526604 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5c4faa036 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..dc4080c9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..68659d0c8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612 +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576 +2,2756.6629408744075,3.7859013829243917,84.37621951682796,523.1457293569697,0.5001827079977375 +3,2741.474911483684,3.7650426915618573,83.91134276933079,520.2634209705171,0.49742691600113176 +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654 +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.49782158299785806 +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554 +7,2774.160435980272,3.8099318111413405,84.91178462569788,526.4663166160612,0.5033575410016056 +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454 +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631 +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016 +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793 +12,2770.4892187897412,3.8048898939622173,84.79941563674055,525.7696113474226,0.5026914169975498 +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978 +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901 +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394 +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222 +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375 +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477 +19,2745.556043502129,3.7706475709700107,84.0362584730099,521.0379178285604,0.4981674170012411 +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818 +21,2757.1403582791954,3.7865570507560364,84.39083235728454,523.2363312483842,0.5002693329988688 +22,2771.5646135441475,3.8063668023021995,84.83233142870031,525.9736943946457,0.5028865419990325 +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276 +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584 +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005 +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075 +27,2829.818723513932,3.8863708942880266,86.61537914834967,537.0288685315742,0.5134564589970978 +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049 +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ab4d8a5d1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,346.01329874466325,0.3045891714301613,11.452552845774065,68.01476198035502,0.07100329199965927 +1,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.07752766699923086 +2,389.80022614651443,0.34313400188953735,12.901838471046604,76.62182262193369,0.0799885419983184 +3,389.79007528132496,0.3431250662687719,12.901502491705825,76.61982729781678,0.07998645900079282 +4,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.07664966700031073 +5,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.07839591700030724 +6,368.8117548208933,0.32465823487754697,12.207149631395765,72.49618384815624,0.07568162499956088 +7,379.99108210302904,0.33449919199210304,12.577169618903074,74.69366957183661,0.07797566699809977 +8,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.07521300000007614 +9,388.8351277233648,0.34228444341845493,12.869895072533906,76.43211621534098,0.07979049999994459 +10,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.08039324999845121 +11,381.6621806372591,0.33597022943420696,12.632480626726181,75.02215223265841,0.07831858300050953 +12,366.6756700911541,0.32277787860136803,12.136448235411438,72.07630029168548,0.07524329199804924 +13,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.07859391599777155 +14,384.18386223037226,0.33819001956898964,12.715944735794011,75.51783136975538,0.07883604199741967 +15,378.7553163563533,0.33341137003200116,12.536267513203242,74.45075892814586,0.07772208299866179 +16,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.07866904099864769 +17,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.07858775000204332 +18,381.69061089583147,0.3359952560702742,12.63342162824231,75.02774068049223,0.07832441700156778 +19,388.1719679438419,0.34170067600690307,12.847945417859556,76.30176095234145,0.07965441700071096 +20,378.52526231523035,0.3332088576718577,12.528653048461848,74.40553791812582,0.07767487500314019 +21,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513 +22,383.54607720273344,0.33762858908691323,12.694834949667937,75.39246394310773,0.07870516599723487 +23,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758 +24,373.0230141252263,0.32836532933558654,12.346536383018055,73.32397804063648,0.07654579199879663 +25,383.6628342422502,0.33773136817099486,12.698699443229406,75.41541451258315,0.0787291250017006 +26,383.9716733361366,0.33800323357054274,12.708921582252408,75.4761220563022,0.07879250000041793 +27,388.3768470521449,0.3418810273346346,12.854726627782261,76.3420334038239,0.07969645900084288 +28,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.07672649999949499 +29,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.07181041700096102 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..65a8ae597 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..50393154d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..168f6bdae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..df8c3a254 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a8b20c9f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1fe91f168 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f863ec502 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e07471f96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..40174e3d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..94cf26221 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ebbe26855 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..20e90949f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0f0ed5042 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..726cb436d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8e8418c35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..f2b3c8465 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..07e4ebedf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..fc9d71668 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..52c50bef1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7c55e0cd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..bb552bcc5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305 +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298 +2,2349.7954456830466,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945 +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512 +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063 +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291 +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763 +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418 +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142 +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085 +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949 +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573 +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898 +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496 +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966 +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723 +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122 +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662 +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014 +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694 +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.49820145800185855 +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375 +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518 +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471 +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199 +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108 +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048 +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745 +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778 +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ffa2b5b99 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,405.84313692822076,0.30141840504654127,12.492118342484432,76.292347410669,0.07780783300040639 +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.07785045799755608 +2,374.8841940857946,0.2784252968123578,11.539181745667717,70.47253623761678,0.0718724159996782 +3,395.92910555470706,0.2940552855250341,12.186957944537525,74.42866004733642,0.07590712499950314 +4,396.96491328086944,0.29482457662385086,12.21884078674404,74.6233761721258,0.07610570900214952 +5,403.6617775393808,0.29979831637683013,12.424974667617516,75.88228496737989,0.07738962499934132 +6,410.7431055614168,0.3050575961423297,12.642942595676553,77.21346711246967,0.07874724999783211 +7,408.4530767282583,0.30335679902247276,12.57245400393137,76.7829764636881,0.0783082080015447 +8,412.0644822883901,0.30603897842841316,12.6836154393109,77.46186587332501,0.07900058299856028 +9,414.61052649200695,0.30792991734841246,12.76198435232865,77.94048352440929,0.07948870800100849 +10,401.44934142631365,0.2981551471230255,12.356874430765389,75.46638057180579,0.07696545900034835 +11,418.55140908310005,0.3108567982957502,12.883287307146091,78.68130961307988,0.08024424999894109 +12,371.5974824961197,0.27598426658401365,11.438014603981898,69.85468436426478,0.07124229100008961 +13,412.4000411444283,0.30628819692192233,12.69394416131967,77.52494584312656,0.0790649160007888 +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549 +15,411.7995528547654,0.30584221618195157,12.675460737318659,77.4120631624984,0.07894979099728516 +16,409.77163159678435,0.30433608552327607,12.613039988909108,77.03084475800254,0.07856099999844446 +17,420.85773782530964,0.31256970130613854,12.954277620798852,79.11486439726484,0.08068641699719592 +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.07906083399939234 +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.07615583300139406 +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.07872108299852698 +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.08150358300190419 +22,410.9195773893686,0.30518866120682603,12.648374514460679,77.24664113657218,0.07878108299701125 +23,408.3198556922807,0.30325785618340706,12.568353372934537,76.7579329317557,0.07828266700016684 +24,402.4147283665603,0.2988721369284571,12.386589674923833,75.64785865811392,0.0771505420016183 +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.07921566699951654 +26,382.7631322481759,0.2842769590884291,11.781700637776005,71.95365697816015,0.07338295800218475 +27,386.7318315968666,0.28722449945302847,11.903859810664404,72.69971219488876,0.07414383300056215 +28,399.20016925522276,0.29648469411594364,12.28764343391633,75.0435703551244,0.0765342500017141 +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.07570612499694107 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..12b518e67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..a958696ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ded7ffb5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6b34e7f5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5485d931b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c5f5c96c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c22cb5337 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1ed3899f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..20ca10a39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9ed8fcc63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f94e22e94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b42d2b55a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3141c49a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..80146ce87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..83ec43e9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..609d27c17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7881d6699 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b0da81253 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..65accbe23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..3374d192d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..bb552bcc5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305 +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298 +2,2349.7954456830466,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945 +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512 +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063 +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291 +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763 +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418 +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142 +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085 +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949 +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573 +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898 +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496 +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966 +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723 +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122 +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662 +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014 +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694 +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.49820145800185855 +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375 +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518 +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471 +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199 +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108 +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048 +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745 +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778 +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ffa2b5b99 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,405.84313692822076,0.30141840504654127,12.492118342484432,76.292347410669,0.07780783300040639 +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.07785045799755608 +2,374.8841940857946,0.2784252968123578,11.539181745667717,70.47253623761678,0.0718724159996782 +3,395.92910555470706,0.2940552855250341,12.186957944537525,74.42866004733642,0.07590712499950314 +4,396.96491328086944,0.29482457662385086,12.21884078674404,74.6233761721258,0.07610570900214952 +5,403.6617775393808,0.29979831637683013,12.424974667617516,75.88228496737989,0.07738962499934132 +6,410.7431055614168,0.3050575961423297,12.642942595676553,77.21346711246967,0.07874724999783211 +7,408.4530767282583,0.30335679902247276,12.57245400393137,76.7829764636881,0.0783082080015447 +8,412.0644822883901,0.30603897842841316,12.6836154393109,77.46186587332501,0.07900058299856028 +9,414.61052649200695,0.30792991734841246,12.76198435232865,77.94048352440929,0.07948870800100849 +10,401.44934142631365,0.2981551471230255,12.356874430765389,75.46638057180579,0.07696545900034835 +11,418.55140908310005,0.3108567982957502,12.883287307146091,78.68130961307988,0.08024424999894109 +12,371.5974824961197,0.27598426658401365,11.438014603981898,69.85468436426478,0.07124229100008961 +13,412.4000411444283,0.30628819692192233,12.69394416131967,77.52494584312656,0.0790649160007888 +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549 +15,411.7995528547654,0.30584221618195157,12.675460737318659,77.4120631624984,0.07894979099728516 +16,409.77163159678435,0.30433608552327607,12.613039988909108,77.03084475800254,0.07856099999844446 +17,420.85773782530964,0.31256970130613854,12.954277620798852,79.11486439726484,0.08068641699719592 +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.07906083399939234 +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.07615583300139406 +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.07872108299852698 +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.08150358300190419 +22,410.9195773893686,0.30518866120682603,12.648374514460679,77.24664113657218,0.07878108299701125 +23,408.3198556922807,0.30325785618340706,12.568353372934537,76.7579329317557,0.07828266700016684 +24,402.4147283665603,0.2988721369284571,12.386589674923833,75.64785865811392,0.0771505420016183 +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.07921566699951654 +26,382.7631322481759,0.2842769590884291,11.781700637776005,71.95365697816015,0.07338295800218475 +27,386.7318315968666,0.28722449945302847,11.903859810664404,72.69971219488876,0.07414383300056215 +28,399.20016925522276,0.29648469411594364,12.28764343391633,75.0435703551244,0.0765342500017141 +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.07570612499694107 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..12b518e67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..a958696ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ded7ffb5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6b34e7f5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5485d931b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c5f5c96c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c22cb5337 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1ed3899f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..20ca10a39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9ed8fcc63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f94e22e94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b42d2b55a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3141c49a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..80146ce87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..83ec43e9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..609d27c17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7881d6699 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b0da81253 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..65accbe23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..3374d192d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a93a6f47b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597 +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385 +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235 +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116 +4,2392.7939583178036,3.0942161645701454,88.53450767657158,515.4365249625881,0.5038726669990865 +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987 +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502 +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484 +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611 +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628 +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102 +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241 +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865 +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589 +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126 +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535 +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978 +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702 +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992 +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001 +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963 +21,2390.4211362618494,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558 +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539 +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549 +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028 +25,2377.3678535229838,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472 +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107 +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148 +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216 +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..571c60883 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,406.90110086989495,1.1695525766824268,9.356420613459415,76.36490353632317,0.08016287500140606 +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242 +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.07847812500040163 +3,401.51109823696424,1.1540601352656001,9.232481082124801,75.35333824381271,0.07910099999935483 +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.07367870800226228 +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.07811108299938496 +6,396.616846417644,1.1399926264434777,9.119941011547821,74.43481266778001,0.07813679199898615 +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764 +8,399.3405038898903,1.1478212133110381,9.182569706488305,74.94597333972072,0.07867337499919813 +9,383.8921206281695,1.1034180489777465,8.827344391821972,72.0467079038411,0.0756299160020717 +10,396.6972136294903,1.1402236252770876,9.121789002216701,74.44989553279808,0.07815262500298559 +11,396.09402568829523,1.1384898870066817,9.107919096053454,74.33669262220099,0.07803379200049676 +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.07811550000042189 +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.08285370800149394 +14,396.0908481484921,1.1384807538294641,9.107846030635713,74.33609627945324,0.07803316599893151 +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.07544379200044204 +16,374.5642575893283,1.0766070469217315,8.612856375373852,70.29610718136011,0.07379225000113365 +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.07558450000215089 +18,381.37974870457487,1.0961967584711763,8.76957406776941,71.57520011194151,0.07513495799867087 +19,408.46512164122043,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255 +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.07777866700052982 +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.07363870799963479 +22,400.4768776142425,1.1510874832094213,9.20869986567537,75.1592415507328,0.07889725000131875 +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.07922675000008894 +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.07781495900053415 +25,389.6991971410489,1.1201092825087213,8.96087426006977,73.13654726968709,0.0767739580005582 +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.07796933300051023 +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.07442058300148346 +28,405.38318984373973,1.165189657171963,9.321517257375705,76.08003055652229,0.07986383400202612 +29,398.0772319408369,1.1441902008613116,9.153521606890493,74.70888958565034,0.07842449999952805 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1f628651e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..7fe9d7153 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a796e6dc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ae5b3b38c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d0ea01252 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f08d91100 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..560ef63c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ed469bdd1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d8385f33f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3332b082d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e984b46ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c9b4ef937 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..634841ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2b72b8c81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f895f53e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..f86292414 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b015a607e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..58fb02ade Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cccda1a6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b13bd5066 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a93a6f47b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597 +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385 +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235 +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116 +4,2392.7939583178036,3.0942161645701454,88.53450767657158,515.4365249625881,0.5038726669990865 +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987 +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502 +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484 +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611 +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628 +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102 +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241 +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865 +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589 +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126 +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535 +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978 +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702 +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992 +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001 +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963 +21,2390.4211362618494,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558 +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539 +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549 +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028 +25,2377.3678535229838,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472 +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107 +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148 +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216 +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..571c60883 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,406.90110086989495,1.1695525766824268,9.356420613459415,76.36490353632317,0.08016287500140606 +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242 +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.07847812500040163 +3,401.51109823696424,1.1540601352656001,9.232481082124801,75.35333824381271,0.07910099999935483 +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.07367870800226228 +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.07811108299938496 +6,396.616846417644,1.1399926264434777,9.119941011547821,74.43481266778001,0.07813679199898615 +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764 +8,399.3405038898903,1.1478212133110381,9.182569706488305,74.94597333972072,0.07867337499919813 +9,383.8921206281695,1.1034180489777465,8.827344391821972,72.0467079038411,0.0756299160020717 +10,396.6972136294903,1.1402236252770876,9.121789002216701,74.44989553279808,0.07815262500298559 +11,396.09402568829523,1.1384898870066817,9.107919096053454,74.33669262220099,0.07803379200049676 +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.07811550000042189 +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.08285370800149394 +14,396.0908481484921,1.1384807538294641,9.107846030635713,74.33609627945324,0.07803316599893151 +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.07544379200044204 +16,374.5642575893283,1.0766070469217315,8.612856375373852,70.29610718136011,0.07379225000113365 +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.07558450000215089 +18,381.37974870457487,1.0961967584711763,8.76957406776941,71.57520011194151,0.07513495799867087 +19,408.46512164122043,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255 +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.07777866700052982 +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.07363870799963479 +22,400.4768776142425,1.1510874832094213,9.20869986567537,75.1592415507328,0.07889725000131875 +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.07922675000008894 +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.07781495900053415 +25,389.6991971410489,1.1201092825087213,8.96087426006977,73.13654726968709,0.0767739580005582 +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.07796933300051023 +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.07442058300148346 +28,405.38318984373973,1.165189657171963,9.321517257375705,76.08003055652229,0.07986383400202612 +29,398.0772319408369,1.1441902008613116,9.153521606890493,74.70888958565034,0.07842449999952805 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1f628651e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..7fe9d7153 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a796e6dc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ae5b3b38c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d0ea01252 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f08d91100 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..560ef63c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ed469bdd1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d8385f33f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3332b082d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e984b46ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c9b4ef937 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..634841ec8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2b72b8c81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f895f53e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..f86292414 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b015a607e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..58fb02ade Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cccda1a6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b13bd5066 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..714678e44 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.49069704199791886 +1,1543.8582876666146,1.8192368422728842,0.0,468.79038259679965,0.498959583001124 +2,1514.9563025535929,1.7851795997445559,0.0,460.0143357489906,0.4896187500016822 +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.48863320800228394 +4,1513.8533631439175,1.783879928638143,0.0,459.67942975925484,0.4892622909974307 +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127 +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044 +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288004,0.488077041998622 +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.49683687500146334 +9,1536.9881032582239,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808 +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314 +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129 +12,1537.6380057586473,1.8119070464576215,0.0,466.9016028047741,0.49694924999857903 +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181 +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273 +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.49686354100049357 +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761 +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.49625641600141535 +18,1534.6338380789525,1.8083670243150927,0.0,465.9893915434169,0.49597833300140337 +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864 +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.49748866700247163 +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.49044058399886126 +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546 +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.49594633399829036 +24,1536.071073078166,1.8100606194348394,0.0,466.4258059154776,0.49644283300222014 +25,1534.2024633575504,1.8078587051304438,0.0,465.85840522018754,0.49583891699876403 +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429 +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.48797820799882174 +28,1533.3456392419216,1.8068490489910478,0.0,465.59823179093394,0.49556200000006356 +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.49609166699883644 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..738718479 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645 +1,247.59900572459188,0.0,0.0,63.635412235396764,0.07497091700133751 +2,252.59749193776693,0.0,0.0,64.92007301098222,0.07648441700075637 +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751 +4,255.00742611955113,0.0,0.0,65.53945011497832,0.07721412500177394 +5,254.3331440184321,0.0,0.0,65.36615289457113,0.07700995799677912 +6,239.82151969851242,0.0,0.0,61.63652081022233,0.07261595900126849 +7,252.36520681402698,0.0,0.0,64.86037341904694,0.07641408299969044 +8,252.1722820871298,0.0,0.0,64.81078984139654,0.07635566699900664 +9,253.17365705842755,0.0,0.0,65.06815318950152,0.07665887500115787 +10,254.77032910786434,0.0,0.0,65.47851381988168,0.0771423340011097 +11,257.12521884407045,0.0,0.0,66.08374395274846,0.07785537500240025 +12,257.5769881962842,0.0,0.0,66.19985317895198,0.07799216700004763 +13,252.49634648493628,0.0,0.0,64.89407762151053,0.07645379099994898 +14,256.16553921217854,0.0,0.0,65.83709672243897,0.07756479200179456 +15,252.85330477462892,0.0,0.0,64.98581945968536,0.07656187499742373 +16,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322 +17,253.63189290358326,0.0,0.0,65.1859243688412,0.07679762499901699 +18,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254005 +19,245.8200036875109,0.0,0.0,63.178190980949644,0.07443224999951781 +20,253.09219510207856,0.0,0.0,65.04721665480663,0.07663420899916673 +21,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297 +22,237.6873493714192,0.0,0.0,61.08801776535877,0.07196974999897066 +23,252.67647692470263,0.0,0.0,64.94037293985049,0.07650833299703663 +24,252.3727763729606,0.0,0.0,64.86231887113699,0.07641637499909848 +25,255.23420249743802,0.0,0.0,65.59773390432493,0.07728279100047075 +26,252.58785824967035,0.0,0.0,64.91759705712458,0.07648150000022724 +27,254.14255755018047,0.0,0.0,65.31717027269754,0.07695225000134087 +28,253.90256744879193,0.0,0.0,65.25549042471276,0.07687958299720776 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b3bc7d4e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fb1cd60ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..266d642b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c3428f01d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1e155d4b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b7a1cdd7d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9e70c7b9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3f68e7afd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5aaccaee4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ab1431922 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f1b1b08c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..008934284 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..53bd6992e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cb4ff70db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..dad27e946 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..95a02432c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..daa1b3ed4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..714678e44 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.49069704199791886 +1,1543.8582876666146,1.8192368422728842,0.0,468.79038259679965,0.498959583001124 +2,1514.9563025535929,1.7851795997445559,0.0,460.0143357489906,0.4896187500016822 +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.48863320800228394 +4,1513.8533631439175,1.783879928638143,0.0,459.67942975925484,0.4892622909974307 +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127 +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044 +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288004,0.488077041998622 +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.49683687500146334 +9,1536.9881032582239,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808 +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314 +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129 +12,1537.6380057586473,1.8119070464576215,0.0,466.9016028047741,0.49694924999857903 +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181 +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273 +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.49686354100049357 +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761 +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.49625641600141535 +18,1534.6338380789525,1.8083670243150927,0.0,465.9893915434169,0.49597833300140337 +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864 +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.49748866700247163 +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.49044058399886126 +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546 +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.49594633399829036 +24,1536.071073078166,1.8100606194348394,0.0,466.4258059154776,0.49644283300222014 +25,1534.2024633575504,1.8078587051304438,0.0,465.85840522018754,0.49583891699876403 +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429 +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.48797820799882174 +28,1533.3456392419216,1.8068490489910478,0.0,465.59823179093394,0.49556200000006356 +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.49609166699883644 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..53a022029 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645 +1,247.59900572459188,0.0,0.0,63.635412235396764,0.07497091700133751 +2,252.59749193776693,0.0,0.0,64.92007301098222,0.07648441700075637 +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751 +4,255.00742611955113,0.0,0.0,65.53945011497832,0.07721412500177394 +5,254.3331440184321,0.0,0.0,65.36615289457113,0.07700995799677912 +6,239.82151969851242,0.0,0.0,61.63652081022233,0.07261595900126849 +7,252.36520681402698,0.0,0.0,64.86037341904694,0.07641408299969044 +8,252.1722820871298,0.0,0.0,64.81078984139654,0.07635566699900664 +9,253.17365705842755,0.0,0.0,65.06815318950152,0.07665887500115787 +10,254.77032910786434,0.0,0.0,65.47851381988168,0.0771423340011097 +11,257.12521884407045,0.0,0.0,66.08374395274846,0.07785537500240025 +12,257.5769881962842,0.0,0.0,66.19985317895198,0.07799216700004763 +13,230.86734014931574,0.0,0.0,59.33520742176434,0.0699047080015589 +14,252.49634648493628,0.0,0.0,64.89407762151053,0.07645379099994898 +15,256.16553921217854,0.0,0.0,65.83709672243897,0.07756479200179456 +16,252.85330477462892,0.0,0.0,64.98581945968536,0.07656187499742373 +17,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322 +18,253.63189290358326,0.0,0.0,65.1859243688412,0.07679762499901699 +19,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254005 +20,245.8200036875109,0.0,0.0,63.178190980949644,0.07443224999951781 +21,253.09219510207856,0.0,0.0,65.04721665480663,0.07663420899916673 +22,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297 +23,237.6873493714192,0.0,0.0,61.08801776535877,0.07196974999897066 +24,252.67647692470263,0.0,0.0,64.94037293985049,0.07650833299703663 +25,252.3727763729606,0.0,0.0,64.86231887113699,0.07641637499909848 +26,255.23420249743802,0.0,0.0,65.59773390432493,0.07728279100047075 +27,252.58785824967035,0.0,0.0,64.91759705712458,0.07648150000022724 +28,254.14255755018047,0.0,0.0,65.31717027269754,0.07695225000134087 +29,253.90256744879193,0.0,0.0,65.25549042471276,0.07687958299720776 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..fd613c09e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5fe66b446 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ae7c60163 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..dcee0e0e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..95526dc91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c85a24083 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..58eb8e83f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..3f68e7afd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cc7af5354 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a5290d1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fafadf516 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a8232b2f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..815a6d42c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e0b5ac54d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..042cd9715 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..95a02432c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..073fba4fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ac0ba7c63 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2388.293804473947,3.9482567307563365,88.5680980195934,516.2847572505955,0.5047006250024424 +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839 +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086 +3,2411.1969694915374,3.9861195662529267,89.41744484636862,521.2358042990056,0.5095405829997617 +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725 +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035 +6,2372.850397511069,3.9227261468002204,87.99539076762868,512.9463088570119,0.5014370829994732 +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908 +8,2354.685839084009,3.8926970356680357,87.32177163909569,509.0196208504898,0.49759850000191364 +9,2376.2567192107217,3.9283573771591405,88.12171167237496,513.6826638098775,0.5021569159980572 +10,2377.0903590593543,3.9297355259184035,88.15262658564419,513.8628742789912,0.502333082997211 +11,2387.2517582095043,3.9465340506699755,88.52945450952055,516.0594949308281,0.5044804170029238 +12,2356.9182072270733,3.8963875207037835,87.4045573500247,509.50219868185917,0.4980702499997278 +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117 +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978 +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944 +16,2396.136077101009,3.9612213440824773,88.85892286259592,517.9800452473951,0.5063578749977751 +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.49898004200076684 +18,2405.7156219480958,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489 +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676 +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362 +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782 +22,2396.5872071287085,3.9619671389109756,88.87565268387587,518.077567401664,0.5064532090000284 +23,2363.0508100276948,3.9065257584027004,87.63198036010125,510.8279021368955,0.4993662080014474 +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441 +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081 +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673 +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922 +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745 +29,2355.1391363948715,3.8934464133850044,87.33858183245853,509.11761151297134,0.49769429200023296 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..db81efc7b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.30816590442413,0.19803072755358303,9.967546620197012,73.07333846727214,0.07628570899760234 +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957 +2,387.4458082495051,0.20121828525032726,10.12798702426647,74.24954725737075,0.07751362499766401 +3,381.1904880655916,0.19796961208288316,9.964470474838453,73.05078685858389,0.07626216599965119 +4,377.4216778769259,0.19601229700177925,9.865952282422889,72.32853759365653,0.07550816599905374 +5,395.2054385543479,0.20524821529698672,10.330826836614998,75.7365914445881,0.07906604100207915 +6,382.2245416168645,0.19850664327024903,9.991501044602535,73.2489513667219,0.07646904200009885 +7,388.2468053820079,0.20163427960634012,10.148925406852452,74.40304917473951,0.07767387499916367 +8,361.77536742490526,0.18788645412874852,9.456951524480342,69.3301015735082,0.07237791599982302 +9,396.60916539527284,0.2059772346898327,10.367520812721578,76.00559960054827,0.07934687500164728 +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.07574920799743268 +11,389.1548487153577,0.20210586793838364,10.17266201956531,74.57706526926356,0.07785554099973524 +12,398.0607921145172,0.20673113067489857,10.405466910636562,76.28378721903758,0.07963729200128 +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.07985845799703384 +14,394.0549717448149,0.2046507253933082,10.300753178129845,75.51611767013073,0.07883587499964051 +15,389.67822848863034,0.20237768293359143,10.186343374324103,74.67736500249524,0.0779602500006149 +16,390.66458707880736,0.20288994395160082,10.21212717889724,74.8663893181407,0.07815758399738115 +17,382.3307530923388,0.19856180373530968,9.994277454677253,73.26930557832927,0.0764902910013916 +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962 +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.07253379200119525 +20,388.52755176123173,0.20178008400998793,10.156264228502726,74.45685099968554,0.07773004200134892 +21,389.50432339303006,0.20228736608311093,10.18179742618325,74.64403808466793,0.07792545800111839 +22,381.15924792662696,0.19795338765340273,9.963653845221272,73.04480004410561,0.07625591599935433 +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.07801575000121375 +24,385.52849854792015,0.20022253884597258,10.077867788580619,73.88211683416388,0.0771300419983163 +25,377.8184326260527,0.196218349844743,9.876323608852065,72.40457109271017,0.07558754199999385 +26,373.01390441782655,0.19372313914195094,9.750731336811532,71.4838383433799,0.07462633300019661 +27,392.390082348607,0.20378607237008933,10.257232309294496,75.19706070456296,0.07850279199919896 +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.07883000000219909 +29,389.200049447067,0.20212934274062166,10.17384358461129,74.58572747128939,0.07786458400005358 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7b515f5ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..9b62592eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ddd608cef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b1b9f8e6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d1769fbd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..090112de6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..4d9313cec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3ad609333 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..59ace459e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d2734da7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..883c87f94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ed051275e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4718d221f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5f9877158 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fc1ac3858 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..6bf2f166d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c941f5b53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..79e5dea7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c59547fd7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..17ee96d5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ac0ba7c63 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2388.293804473947,3.9482567307563365,88.5680980195934,516.2847572505955,0.5047006250024424 +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839 +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086 +3,2411.1969694915374,3.9861195662529267,89.41744484636862,521.2358042990056,0.5095405829997617 +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725 +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035 +6,2372.850397511069,3.9227261468002204,87.99539076762868,512.9463088570119,0.5014370829994732 +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908 +8,2354.685839084009,3.8926970356680357,87.32177163909569,509.0196208504898,0.49759850000191364 +9,2376.2567192107217,3.9283573771591405,88.12171167237496,513.6826638098775,0.5021569159980572 +10,2377.0903590593543,3.9297355259184035,88.15262658564419,513.8628742789912,0.502333082997211 +11,2387.2517582095043,3.9465340506699755,88.52945450952055,516.0594949308281,0.5044804170029238 +12,2356.9182072270733,3.8963875207037835,87.4045573500247,509.50219868185917,0.4980702499997278 +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117 +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978 +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944 +16,2396.136077101009,3.9612213440824773,88.85892286259592,517.9800452473951,0.5063578749977751 +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.49898004200076684 +18,2405.7156219480958,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489 +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676 +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362 +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782 +22,2396.5872071287085,3.9619671389109756,88.87565268387587,518.077567401664,0.5064532090000284 +23,2363.0508100276948,3.9065257584027004,87.63198036010125,510.8279021368955,0.4993662080014474 +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441 +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081 +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673 +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922 +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745 +29,2355.1391363948715,3.8934464133850044,87.33858183245853,509.11761151297134,0.49769429200023296 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..db81efc7b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,381.30816590442413,0.19803072755358303,9.967546620197012,73.07333846727214,0.07628570899760234 +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957 +2,387.4458082495051,0.20121828525032726,10.12798702426647,74.24954725737075,0.07751362499766401 +3,381.1904880655916,0.19796961208288316,9.964470474838453,73.05078685858389,0.07626216599965119 +4,377.4216778769259,0.19601229700177925,9.865952282422889,72.32853759365653,0.07550816599905374 +5,395.2054385543479,0.20524821529698672,10.330826836614998,75.7365914445881,0.07906604100207915 +6,382.2245416168645,0.19850664327024903,9.991501044602535,73.2489513667219,0.07646904200009885 +7,388.2468053820079,0.20163427960634012,10.148925406852452,74.40304917473951,0.07767387499916367 +8,361.77536742490526,0.18788645412874852,9.456951524480342,69.3301015735082,0.07237791599982302 +9,396.60916539527284,0.2059772346898327,10.367520812721578,76.00559960054827,0.07934687500164728 +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.07574920799743268 +11,389.1548487153577,0.20210586793838364,10.17266201956531,74.57706526926356,0.07785554099973524 +12,398.0607921145172,0.20673113067489857,10.405466910636562,76.28378721903758,0.07963729200128 +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.07985845799703384 +14,394.0549717448149,0.2046507253933082,10.300753178129845,75.51611767013073,0.07883587499964051 +15,389.67822848863034,0.20237768293359143,10.186343374324103,74.67736500249524,0.0779602500006149 +16,390.66458707880736,0.20288994395160082,10.21212717889724,74.8663893181407,0.07815758399738115 +17,382.3307530923388,0.19856180373530968,9.994277454677253,73.26930557832927,0.0764902910013916 +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962 +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.07253379200119525 +20,388.52755176123173,0.20178008400998793,10.156264228502726,74.45685099968554,0.07773004200134892 +21,389.50432339303006,0.20228736608311093,10.18179742618325,74.64403808466793,0.07792545800111839 +22,381.15924792662696,0.19795338765340273,9.963653845221272,73.04480004410561,0.07625591599935433 +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.07801575000121375 +24,385.52849854792015,0.20022253884597258,10.077867788580619,73.88211683416388,0.0771300419983163 +25,377.8184326260527,0.196218349844743,9.876323608852065,72.40457109271017,0.07558754199999385 +26,373.01390441782655,0.19372313914195094,9.750731336811532,71.4838383433799,0.07462633300019661 +27,392.390082348607,0.20378607237008933,10.257232309294496,75.19706070456296,0.07850279199919896 +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.07883000000219909 +29,389.200049447067,0.20212934274062166,10.17384358461129,74.58572747128939,0.07786458400005358 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7b515f5ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..9b62592eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ddd608cef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b1b9f8e6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d1769fbd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..090112de6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..4d9313cec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3ad609333 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..59ace459e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d2734da7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..883c87f94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..ed051275e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4718d221f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5f9877158 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fc1ac3858 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..6bf2f166d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c941f5b53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..79e5dea7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c59547fd7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..17ee96d5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..bdefcccfd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601 +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.49053837500105146 +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.49491916700208094 +3,1543.9666529760673,2.517118054369295,0.0,468.65382014950444,0.49703766699894913 +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.49110962499980815 +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.48926120800024364 +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668 +7,1541.4305863957322,2.5129835227301953,0.0,467.88402548539267,0.49622125000314554 +8,1518.9797912579406,2.4763821481685406,0.0,461.06933756034005,0.4889938330015866 +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282 +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875 +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.49096941699826857 +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736 +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168 +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129 +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858 +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407 +17,1539.7092872207181,2.5101773007032837,0.0,467.36154436027533,0.49566712500018184 +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.49655054199683946 +19,1509.6842072989825,2.461227622542033,0.0,458.247766949026,0.4860013750003418 +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097 +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844 +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.49077787499845726 +23,1518.3726327778963,2.4753923019377058,0.0,460.88504139010837,0.4887983750013518 +24,1542.6089226370732,2.5149045560773082,0.0,468.24169628084707,0.4966005829992355 +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.49528791600096156 +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364 +27,1524.6620618997295,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219 +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333 +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ea9505424 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,253.53427688728462,0.0,0.0,64.57760820245201,0.07620600000154809 +1,258.26881641088414,0.0,0.0,65.78354075771735,0.07762908299991977 +2,255.55817948186007,0.0,0.0,65.09311557446122,0.07681433400284732 +3,258.37666645619265,0.0,0.0,65.81101119704435,0.07766149999952177 +4,251.41098138285446,0.0,0.0,64.03678450450256,0.07556779100195854 +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029 +6,257.9566378142825,0.0,0.0,65.70402587969754,0.07753524999861838 +7,257.22664634671185,0.0,0.0,65.51809006240816,0.07731583300119382 +8,253.8991312230035,0.0,0.0,64.67054009565513,0.07631566599957296 +9,251.0245017908568,0.0,0.0,63.938344451438795,0.07545162499809521 +10,254.54456469819945,0.0,0.0,64.83493818254766,0.07650966700020945 +11,255.85774223615337,0.0,0.0,65.16941707663403,0.07690437500059488 +12,255.93204323154933,0.0,0.0,65.188342251678,0.07692670800315682 +13,259.880176018943,0.0,0.0,66.19396948049216,0.07811341699925833 +14,255.01172304341273,0.0,0.0,64.95392788664633,0.07665008299954934 +15,257.21028768275835,0.0,0.0,65.51392335404637,0.07731091599998763 +16,258.4208884003968,0.0,0.0,65.8222749497086,0.07767479199901572 +17,254.56563433542095,0.0,0.0,64.84030482091373,0.07651600000099279 +18,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036 +19,253.8269129094721,0.0,0.0,64.65214539962614,0.07629395899857627 +20,253.50017554675208,0.0,0.0,64.56892226445922,0.07619574999989709 +21,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575 +22,256.791646381911,0.0,0.0,65.40729140575363,0.07718508299876703 +23,258.8575518455188,0.0,0.0,65.93349731073064,0.07780604200161179 +24,254.13770416501094,0.0,0.0,64.73130690859188,0.07638737500019488 +25,255.17931863433267,0.0,0.0,64.99661608857218,0.07670045800114167 +26,255.7738762440398,0.0,0.0,65.14805560533038,0.07687916700160713 +27,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329 +28,254.6501956683362,0.0,0.0,64.86184340217827,0.07654141700186301 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b91bd3ef2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..406fff956 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3c8bf9f5f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0bac49d82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..77ffc80f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9b7a60f5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ae9543b87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4d001c18e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..18bc928ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6a05cb1e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cd5e1715b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7d04c29be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f67b101fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..740d50943 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c34426f83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..073ae3810 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ebf623c49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..bdefcccfd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601 +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.49053837500105146 +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.49491916700208094 +3,1543.9666529760673,2.517118054369295,0.0,468.65382014950444,0.49703766699894913 +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.49110962499980815 +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.48926120800024364 +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668 +7,1541.4305863957322,2.5129835227301953,0.0,467.88402548539267,0.49622125000314554 +8,1518.9797912579406,2.4763821481685406,0.0,461.06933756034005,0.4889938330015866 +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282 +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875 +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.49096941699826857 +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736 +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168 +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129 +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858 +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407 +17,1539.7092872207181,2.5101773007032837,0.0,467.36154436027533,0.49566712500018184 +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.49655054199683946 +19,1509.6842072989825,2.461227622542033,0.0,458.247766949026,0.4860013750003418 +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097 +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844 +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.49077787499845726 +23,1518.3726327778963,2.4753923019377058,0.0,460.88504139010837,0.4887983750013518 +24,1542.6089226370732,2.5149045560773082,0.0,468.24169628084707,0.4966005829992355 +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.49528791600096156 +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364 +27,1524.6620618997295,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219 +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333 +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6cb456734 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,253.53427688728462,0.0,0.0,64.57760820245201,0.07620600000154809 +1,258.26881641088414,0.0,0.0,65.78354075771735,0.07762908299991977 +2,255.55817948186007,0.0,0.0,65.09311557446122,0.07681433400284732 +3,258.37666645619265,0.0,0.0,65.81101119704435,0.07766149999952177 +4,251.41098138285446,0.0,0.0,64.03678450450256,0.07556779100195854 +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029 +6,257.9566378142825,0.0,0.0,65.70402587969754,0.07753524999861838 +7,257.22664634671185,0.0,0.0,65.51809006240816,0.07731583300119382 +8,253.8991312230035,0.0,0.0,64.67054009565513,0.07631566599957296 +9,251.0245017908568,0.0,0.0,63.938344451438795,0.07545162499809521 +10,254.54456469819945,0.0,0.0,64.83493818254766,0.07650966700020945 +11,255.85774223615337,0.0,0.0,65.16941707663403,0.07690437500059488 +12,255.93204323154933,0.0,0.0,65.188342251678,0.07692670800315682 +13,259.880176018943,0.0,0.0,66.19396948049216,0.07811341699925833 +14,255.01172304341273,0.0,0.0,64.95392788664633,0.07665008299954934 +15,257.21028768275835,0.0,0.0,65.51392335404637,0.07731091599998763 +16,258.4208884003968,0.0,0.0,65.8222749497086,0.07767479199901572 +17,234.06796061376548,0.0,0.0,59.61935103545283,0.07035491699934937 +18,254.56563433542095,0.0,0.0,64.84030482091373,0.07651600000099279 +19,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036 +20,253.8269129094721,0.0,0.0,64.65214539962614,0.07629395899857627 +21,253.50017554675208,0.0,0.0,64.56892226445922,0.07619574999989709 +22,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575 +23,256.791646381911,0.0,0.0,65.40729140575363,0.07718508299876703 +24,258.8575518455188,0.0,0.0,65.93349731073064,0.07780604200161179 +25,254.13770416501094,0.0,0.0,64.73130690859188,0.07638737500019488 +26,255.17931863433267,0.0,0.0,64.99661608857218,0.07670045800114167 +27,255.7738762440398,0.0,0.0,65.14805560533038,0.07687916700160713 +28,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329 +29,254.6501956683362,0.0,0.0,64.86184340217827,0.07654141700186301 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b997d6a02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..adf6dd2e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..373d43dd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8681d3fa1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b343301da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..bdd431a32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..07c7d3637 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4d001c18e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d17972544 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8cd88801c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7361f4113 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bc700e461 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d0bbb18b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..02940e370 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a725c8c49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..073ae3810 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a264094fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d3a6f5526 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.48680283300200244 +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.49485899999854155 +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249 +3,1533.950680078919,1.3417162800541593,0.0,466.5818363888339,0.49731599999722675 +4,1509.4877083165243,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007 +5,1530.701332361488,1.3388741399588797,0.0,465.5934821707004,0.49626254200120457 +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036 +7,1511.6775444702155,1.3222344094554814,0.0,459.80701588814367,0.49009491600008914 +8,1506.085294324647,1.3173429790073665,0.0,458.1060209498117,0.4882818750011211 +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001 +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716 +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.49699675000010757 +12,1535.0179028145483,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828 +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468 +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.49620895800035214 +15,1529.1070527547117,1.3374796551614543,0.0,465.1085500823957,0.4957456670017564 +16,1511.5118843562993,1.3220895098347285,0.0,459.75662704502685,0.4900412079987291 +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.49651845799962757 +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.49700408299759147 +19,1531.0605422535905,1.339188333737369,0.0,465.70274305717004,0.4963790000001609 +20,1529.8004113116285,1.3380861221592606,0.0,465.31944898088284,0.4959704579996469 +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173003 +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.49732199999925797 +23,1508.4587853165553,1.319419024571127,0.0,458.82796579460944,0.48905137499968987 +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.49905020900041563 +25,1507.4511944376343,1.318537704784618,0.0,458.52148683885093,0.48872470800051815 +26,1531.4239932863043,1.3395062371575555,0.0,465.81329397153996,0.4964968330023112 +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.49582816600013757 +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602 +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..155495b24 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.07595566699819756 +1,250.99028861469162,0.9006828538804723,0.0,65.11603447313637,0.07663645899810945 +2,251.08826581851415,0.9010344467171559,0.0,65.14145333303291,0.0766663750000589 +3,251.6577197956367,0.9030779418503709,0.0,65.28919046266385,0.07684024999980466 +4,254.8982707317584,0.9147067131522431,0.0,66.12990755826587,0.07782970799962641 +5,256.4147688442029,0.9201486920246517,0.0,66.5233424752637,0.0782927500004007 +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.07757658300033654 +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.07642325000051642 +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.07764125000176136 +9,254.6710622884788,0.9138913718486081,0.0,66.07096140179567,0.07776033300251584 +10,253.76932556597777,0.9106554745190589,0.0,65.83701800967418,0.07748500000161584 +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.07572354100193479 +12,251.66945440127165,0.9031200516792045,0.0,65.29223484732618,0.07684383300147601 +13,251.27644517181554,0.9017097314778069,0.0,65.1902739201733,0.07672383299723151 +14,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.07710295899960329 +15,250.18161649107026,0.8977809204225009,0.0,64.90623543202673,0.07638954200228909 +16,253.47757189478065,0.9096085115841411,0.0,65.76132646712013,0.07739591700010351 +17,248.61012328683918,0.8921415907422459,0.0,64.49853278255051,0.07590970800083596 +18,251.72608702009606,0.903323278780249,0.0,65.30692741403874,0.07686112499868614 +19,251.30523965227658,0.9018130609531456,0.0,65.19774425853853,0.07673262499884004 +20,252.35899561673511,0.9055944818782361,0.0,65.47112698615987,0.07705437500044354 +21,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.07708287499917787 +22,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.07533800000237534 +23,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.07230412499848171 +24,253.50431617204092,0.9097044838709603,0.0,65.76826490800424,0.07740408300014678 +25,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.07663816700005555 +26,252.60531086151022,0.906478388259008,0.0,65.53503014376236,0.07712958399861236 +27,253.74831266909396,0.9105800693867009,0.0,65.83156649788296,0.07747858400034602 +28,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.07686649999959627 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ca1dde294 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a625ea3ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e4466f7c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..775a1955c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b2853fcc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..eca6938ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..541bfadc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7a72400f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..23014554d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..63985bcb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..162c2eac6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e6538a325 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a75448e50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2e22755e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1632cd761 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..63831c888 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..031786e8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d3a6f5526 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.48680283300200244 +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.49485899999854155 +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249 +3,1533.950680078919,1.3417162800541593,0.0,466.5818363888339,0.49731599999722675 +4,1509.4877083165243,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007 +5,1530.701332361488,1.3388741399588797,0.0,465.5934821707004,0.49626254200120457 +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036 +7,1511.6775444702155,1.3222344094554814,0.0,459.80701588814367,0.49009491600008914 +8,1506.085294324647,1.3173429790073665,0.0,458.1060209498117,0.4882818750011211 +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001 +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716 +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.49699675000010757 +12,1535.0179028145483,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828 +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468 +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.49620895800035214 +15,1529.1070527547117,1.3374796551614543,0.0,465.1085500823957,0.4957456670017564 +16,1511.5118843562993,1.3220895098347285,0.0,459.75662704502685,0.4900412079987291 +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.49651845799962757 +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.49700408299759147 +19,1531.0605422535905,1.339188333737369,0.0,465.70274305717004,0.4963790000001609 +20,1529.8004113116285,1.3380861221592606,0.0,465.31944898088284,0.4959704579996469 +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173003 +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.49732199999925797 +23,1508.4587853165553,1.319419024571127,0.0,458.82796579460944,0.48905137499968987 +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.49905020900041563 +25,1507.4511944376343,1.318537704784618,0.0,458.52148683885093,0.48872470800051815 +26,1531.4239932863043,1.3395062371575555,0.0,465.81329397153996,0.4964968330023112 +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.49582816600013757 +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602 +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..780e799be --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.07595566699819756 +1,250.99028861469162,0.9006828538804723,0.0,65.11603447313637,0.07663645899810945 +2,251.08826581851415,0.9010344467171559,0.0,65.14145333303291,0.0766663750000589 +3,251.6577197956367,0.9030779418503709,0.0,65.28919046266385,0.07684024999980466 +4,254.8982707317584,0.9147067131522431,0.0,66.12990755826587,0.07782970799962641 +5,256.4147688442029,0.9201486920246517,0.0,66.5233424752637,0.0782927500004007 +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.07757658300033654 +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.07642325000051642 +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.07764125000176136 +9,254.6710622884788,0.9138913718486081,0.0,66.07096140179567,0.07776033300251584 +10,253.76932556597777,0.9106554745190589,0.0,65.83701800967418,0.07748500000161584 +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.07572354100193479 +12,251.66945440127165,0.9031200516792045,0.0,65.29223484732618,0.07684383300147601 +13,251.27644517181554,0.9017097314778069,0.0,65.1902739201733,0.07672383299723151 +14,233.39411648723728,0.8375386955283635,0.0,60.55094569153206,0.07126370799960569 +15,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.07710295899960329 +16,250.18161649107026,0.8977809204225009,0.0,64.90623543202673,0.07638954200228909 +17,253.47757189478065,0.9096085115841411,0.0,65.76132646712013,0.07739591700010351 +18,248.61012328683918,0.8921415907422459,0.0,64.49853278255051,0.07590970800083596 +19,251.72608702009606,0.903323278780249,0.0,65.30692741403874,0.07686112499868614 +20,251.30523965227658,0.9018130609531456,0.0,65.19774425853853,0.07673262499884004 +21,252.35899561673511,0.9055944818782361,0.0,65.47112698615987,0.07705437500044354 +22,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.07708287499917787 +23,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.07533800000237534 +24,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.07230412499848171 +25,253.50431617204092,0.9097044838709603,0.0,65.76826490800424,0.07740408300014678 +26,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.07663816700005555 +27,252.60531086151022,0.906478388259008,0.0,65.53503014376236,0.07712958399861236 +28,253.74831266909396,0.9105800693867009,0.0,65.83156649788296,0.07747858400034602 +29,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.07686649999959627 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c8f9dfbe3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..59f709761 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1bc7b05ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d81b3db71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bc815bad2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a387c164c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9bdbb6f85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..85c991de0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..20a516426 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..19018895a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e0c9c132f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..09b33a60f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2d9d4fac5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c1d8dc069 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0531971d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..af1674316 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4fa38dd4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..d09d12efd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976 +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595 +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.49053804199866136 +3,1542.6536762485857,0.7725528459014843,0.0,473.2725912500832,0.49814899999910267 +4,1543.4019336836807,0.7729275692887551,0.0,473.5021500555895,0.49839062499813735 +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.49499683400063077 +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.49834499999997206 +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.49814949999927194 +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449 +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929 +10,1537.626197619399,0.7700351110511502,0.0,471.73020498742204,0.49652554199929 +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289 +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177 +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.49865324999700533 +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.48998133299755864 +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.48927079100030824 +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.49291741600245587 +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781 +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552 +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.49072412500026985 +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491 +21,1516.8447946320177,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654 +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525 +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571 +24,1541.3760009365583,0.7719129928264602,0.0,472.8806116923837,0.49773641700085136 +25,1542.6927729835681,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102 +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.49009041599856573 +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.49663191700165044 +28,1518.9014380720841,0.760657849971867,0.0,465.98561330885246,0.4904790000000503 +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1829e0006 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,251.2126028110106,0.0,0.0,63.04752093895013,0.07475504099784303 +1,251.92782659925052,0.0,0.0,63.22702262899478,0.07496787499985658 +2,258.018691325029,0.0,0.0,64.75566377612596,0.07678037499863422 +3,260.54003040902114,0.0,0.0,65.38845121160259,0.07753066700024647 +4,259.9749090575512,0.0,0.0,65.24662114479398,0.07736250000016298 +5,257.4462911868574,0.0,0.0,64.61200693211013,0.07661004200053867 +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752 +7,258.55804789756263,0.0,0.0,64.89102758518595,0.07694087499839952 +8,261.25119137299276,0.0,0.0,65.56693324341647,0.07774229200003901 +9,260.1166102987462,0.0,0.0,65.28218429676703,0.07740466700124671 +10,237.00576584766733,0.0,0.0,59.48199181779978,0.07052741599909496 +11,261.5736560314424,0.0,0.0,65.64786308960325,0.07783824999933131 +12,258.20715696601536,0.0,0.0,64.80296351870814,0.07683645799988881 +13,256.72603004324225,0.0,0.0,64.43124100307053,0.07639570899846149 +14,259.4536150402221,0.0,0.0,65.1157905451141,0.07720737499766983 +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666 +16,258.93344008202195,0.0,0.0,64.98524079879539,0.07705258300120477 +17,259.39424550343654,0.0,0.0,65.10089040845003,0.07718970800124225 +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765001 +19,247.2062185079991,0.0,0.0,62.042027602202104,0.07356283400076791 +20,240.2339275243244,0.0,0.0,60.29217247205807,0.07148804200187442 +21,261.37664806550475,0.0,0.0,65.59841945612862,0.07777962500040303 +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121 +23,259.09586538480823,0.0,0.0,65.02600512575927,0.07710091700209887 +24,259.9893288635479,0.0,0.0,65.25024012334178,0.07736679099980392 +25,257.87783357147384,0.0,0.0,64.72031231657613,0.07673845899989828 +26,259.9124613012882,0.0,0.0,65.23094845888362,0.07734391699705156 +27,259.9603447479832,0.0,0.0,65.24296589978566,0.07735816599961254 +28,257.0997419885865,0.0,0.0,64.52503252242737,0.07650691700109746 +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..52567074e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b7c2ab5da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..aa6f9ad4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e7631253b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1a9a50e9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..50b50c3f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..240c44573 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1471ae97b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d076e42b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..35465cc56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c29fcc000 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2ae4d3c14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..872cc6f50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c278132f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f8216581c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..78227de89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..00ec0a03b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d09d12efd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976 +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595 +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.49053804199866136 +3,1542.6536762485857,0.7725528459014843,0.0,473.2725912500832,0.49814899999910267 +4,1543.4019336836807,0.7729275692887551,0.0,473.5021500555895,0.49839062499813735 +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.49499683400063077 +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.49834499999997206 +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.49814949999927194 +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449 +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929 +10,1537.626197619399,0.7700351110511502,0.0,471.73020498742204,0.49652554199929 +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289 +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177 +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.49865324999700533 +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.48998133299755864 +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.48927079100030824 +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.49291741600245587 +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781 +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552 +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.49072412500026985 +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491 +21,1516.8447946320177,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654 +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525 +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571 +24,1541.3760009365583,0.7719129928264602,0.0,472.8806116923837,0.49773641700085136 +25,1542.6927729835681,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102 +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.49009041599856573 +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.49663191700165044 +28,1518.9014380720841,0.760657849971867,0.0,465.98561330885246,0.4904790000000503 +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1829e0006 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,251.2126028110106,0.0,0.0,63.04752093895013,0.07475504099784303 +1,251.92782659925052,0.0,0.0,63.22702262899478,0.07496787499985658 +2,258.018691325029,0.0,0.0,64.75566377612596,0.07678037499863422 +3,260.54003040902114,0.0,0.0,65.38845121160259,0.07753066700024647 +4,259.9749090575512,0.0,0.0,65.24662114479398,0.07736250000016298 +5,257.4462911868574,0.0,0.0,64.61200693211013,0.07661004200053867 +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752 +7,258.55804789756263,0.0,0.0,64.89102758518595,0.07694087499839952 +8,261.25119137299276,0.0,0.0,65.56693324341647,0.07774229200003901 +9,260.1166102987462,0.0,0.0,65.28218429676703,0.07740466700124671 +10,237.00576584766733,0.0,0.0,59.48199181779978,0.07052741599909496 +11,261.5736560314424,0.0,0.0,65.64786308960325,0.07783824999933131 +12,258.20715696601536,0.0,0.0,64.80296351870814,0.07683645799988881 +13,256.72603004324225,0.0,0.0,64.43124100307053,0.07639570899846149 +14,259.4536150402221,0.0,0.0,65.1157905451141,0.07720737499766983 +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666 +16,258.93344008202195,0.0,0.0,64.98524079879539,0.07705258300120477 +17,259.39424550343654,0.0,0.0,65.10089040845003,0.07718970800124225 +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765001 +19,247.2062185079991,0.0,0.0,62.042027602202104,0.07356283400076791 +20,240.2339275243244,0.0,0.0,60.29217247205807,0.07148804200187442 +21,261.37664806550475,0.0,0.0,65.59841945612862,0.07777962500040303 +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121 +23,259.09586538480823,0.0,0.0,65.02600512575927,0.07710091700209887 +24,259.9893288635479,0.0,0.0,65.25024012334178,0.07736679099980392 +25,257.87783357147384,0.0,0.0,64.72031231657613,0.07673845899989828 +26,259.9124613012882,0.0,0.0,65.23094845888362,0.07734391699705156 +27,259.9603447479832,0.0,0.0,65.24296589978566,0.07735816599961254 +28,257.0997419885865,0.0,0.0,64.52503252242737,0.07650691700109746 +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..52567074e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b7c2ab5da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..aa6f9ad4b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e7631253b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1a9a50e9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..50b50c3f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..240c44573 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1471ae97b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d076e42b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..35465cc56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c29fcc000 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2ae4d3c14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..872cc6f50 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c278132f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f8216581c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..78227de89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..00ec0a03b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..95be89013 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.49965824999890174 +1,1533.5334001790511,1.8921445940257142,0.0,474.4635558317462,0.493004457999632 +2,1543.8059871684454,1.9048193880252267,0.0,477.6418160183257,0.4963069170007657 +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377 +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006 +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134 +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524 +7,1522.6814694210657,1.8787549788298101,0.0,471.10605109499085,0.48951574999955483 +8,1546.9721730979702,1.9087259749893781,0.0,478.62140983374,0.4973247910020291 +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562 +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276 +11,1522.9656993374065,1.8791056748756882,0.0,471.1939896666353,0.4896071250004752 +12,1544.25585273976,1.9053744530200298,0.0,477.7810010002682,0.49645154099926003 +13,1546.7443256761674,1.9084448462787962,0.0,478.55091557654094,0.4972515419976844 +14,1550.8537971977225,1.9135153027311338,0.0,479.8223547708087,0.4985726659979264 +15,1523.3470075656658,1.8795761506427462,0.0,471.3119635287153,0.48972970899922075 +16,1517.6756261895746,1.8725785374116446,0.0,469.55728131973046,0.48790645800181665 +17,1526.438800689855,1.8833909483152962,0.0,472.26854077667593,0.4907236670005659 +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595 +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093 +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216 +21,1532.4807276685026,1.8908457578869762,0.0,474.13786697330795,0.49266604199874564 +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.49910758400073973 +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354 +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.48866287500277394 +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164 +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348 +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517 +28,1550.5286132950594,1.9131140757585638,0.0,479.72174534766935,0.498468124998908 +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..67112a729 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.07684720800170908 +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.07704595900213462 +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.07736808299887343 +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.07601799999974901 +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.07622550000087358 +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.07756379199781804 +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.07702483300090535 +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.07332741699792678 +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.07751504100087914 +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.07736633300009998 +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.07576041700303904 +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.07736875000045984 +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887 +13,248.11253105893138,0.76910270012068,0.0,68.17326333869708,0.07118879200061201 +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.07544537500143633 +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.07760070899894345 +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.07764658399901236 +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.07843233400126337 +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.07524175000071409 +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392 +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.07801225000002887 +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.07687429200086626 +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.07804029100225307 +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483 +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.07990408399928128 +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.07878262500162236 +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.07938424999883864 +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.07943220900051529 +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.08236633300111862 +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.08021087499946589 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..27363aca1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..31f3624a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..85297716d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3331f17dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c9d345a1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c34cced95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6217333db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..98fbdf7d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..639222645 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..57b8d52f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f06ccb1cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1218a1852 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..650b6dca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6f3872e2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..627cfd9a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2f8aa096c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ab23a7e14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..95be89013 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.49965824999890174 +1,1533.5334001790511,1.8921445940257142,0.0,474.4635558317462,0.493004457999632 +2,1543.8059871684454,1.9048193880252267,0.0,477.6418160183257,0.4963069170007657 +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377 +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006 +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134 +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524 +7,1522.6814694210657,1.8787549788298101,0.0,471.10605109499085,0.48951574999955483 +8,1546.9721730979702,1.9087259749893781,0.0,478.62140983374,0.4973247910020291 +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562 +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276 +11,1522.9656993374065,1.8791056748756882,0.0,471.1939896666353,0.4896071250004752 +12,1544.25585273976,1.9053744530200298,0.0,477.7810010002682,0.49645154099926003 +13,1546.7443256761674,1.9084448462787962,0.0,478.55091557654094,0.4972515419976844 +14,1550.8537971977225,1.9135153027311338,0.0,479.8223547708087,0.4985726659979264 +15,1523.3470075656658,1.8795761506427462,0.0,471.3119635287153,0.48972970899922075 +16,1517.6756261895746,1.8725785374116446,0.0,469.55728131973046,0.48790645800181665 +17,1526.438800689855,1.8833909483152962,0.0,472.26854077667593,0.4907236670005659 +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595 +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093 +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216 +21,1532.4807276685026,1.8908457578869762,0.0,474.13786697330795,0.49266604199874564 +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.49910758400073973 +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354 +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.48866287500277394 +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164 +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348 +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517 +28,1550.5286132950594,1.9131140757585638,0.0,479.72174534766935,0.498468124998908 +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..67112a729 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.07684720800170908 +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.07704595900213462 +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.07736808299887343 +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.07601799999974901 +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.07622550000087358 +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.07756379199781804 +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.07702483300090535 +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.07332741699792678 +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.07751504100087914 +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.07736633300009998 +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.07576041700303904 +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.07736875000045984 +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887 +13,248.11253105893138,0.76910270012068,0.0,68.17326333869708,0.07118879200061201 +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.07544537500143633 +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.07760070899894345 +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.07764658399901236 +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.07843233400126337 +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.07524175000071409 +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392 +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.07801225000002887 +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.07687429200086626 +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.07804029100225307 +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483 +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.07990408399928128 +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.07878262500162236 +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.07938424999883864 +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.07943220900051529 +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.08236633300111862 +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.08021087499946589 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..27363aca1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..31f3624a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..85297716d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3331f17dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c9d345a1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c34cced95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6217333db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..98fbdf7d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..639222645 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..57b8d52f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f06ccb1cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1218a1852 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..650b6dca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6f3872e2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..627cfd9a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2f8aa096c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ab23a7e14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7955d5549 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1526.7707914568139,1.689345447459375,0.0,462.4831595574077,0.4918107500016049 +1,1530.8290010789995,1.6938357861457298,0.0,463.71245580718977,0.49311800000214134 +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.49029341600180487 +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388 +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.49191116700239945 +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108 +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786 +7,1541.6151929447517,1.705770520701691,0.0,466.97976490268644,0.4965924999996787 +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964 +9,1541.7118169849887,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112 +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.49135670799660147 +11,1522.1852241350612,1.684271596608698,0.0,461.09411827158124,0.49033362500267685 +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.49711370799923316 +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119 +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.49663020899970434 +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702 +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.49847412500093924 +17,1542.4716156529473,1.706718137600892,0.0,467.2391889643854,0.4968683750012133 +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831 +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757 +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121 +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.49735887499991804 +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191 +23,1544.7746825942847,1.7092664412980239,0.0,467.9368245765296,0.49761025000043446 +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246 +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499 +26,1542.6620170112014,1.7069288134073435,0.0,467.29686456457506,0.4969297080024262 +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994 +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048 +29,1542.809736148168,1.7070922620749058,0.0,467.34161104097717,0.4969772920012474 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..401602be2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,254.55862726842622,0.0,0.0,64.64502264360112,0.07706754199898569 +1,249.45099505649355,0.0,0.0,63.34794226750606,0.07552120800028206 +2,260.34668630262985,0.0,0.0,66.11489703498854,0.07881987499786192 +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234 +4,254.45815813069174,0.0,0.0,64.61950856162512,0.07703712500006077 +5,255.8519102420228,0.0,0.0,64.97345113966061,0.07745908300057636 +6,248.69707187526592,0.0,0.0,63.15648389249447,0.07529295800122782 +7,255.1022546097663,0.0,0.0,64.78307650635061,0.07723212500059162 +8,252.78860060747465,0.0,0.0,64.1955253517402,0.07653166700038128 +9,254.73506346907226,0.0,0.0,64.68982851919962,0.07712095800161478 +10,253.83333170049056,0.0,0.0,64.46083423515617,0.07684795900058816 +11,253.73712680720126,0.0,0.0,64.43640305569922,0.07681883300028858 +12,240.22252605510252,0.0,0.0,61.00437766723181,0.07272729199758032 +13,258.0346838423428,0.0,0.0,65.52776528855703,0.07811991700145882 +14,254.20038081866608,0.0,0.0,64.5540461557671,0.07695908300229348 +15,254.68827233043686,0.0,0.0,64.67794593541505,0.07710679199954029 +16,255.76066324322383,0.0,0.0,64.95027901476814,0.07743145800122875 +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999009 +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448 +19,253.69515152852122,0.0,0.0,64.4257434568875,0.07680612499825656 +20,253.3447531357101,0.0,0.0,64.3367599787763,0.07670004199826508 +21,255.2514405716164,0.0,0.0,64.82096219887414,0.07727729100224678 +22,256.95678343157175,0.0,0.0,65.25403307523722,0.07779358300103922 +23,255.03110341882658,0.0,0.0,64.76500770075256,0.0772105840005679 +24,255.734925804407,0.0,0.0,64.94374300641141,0.07742366599995876 +25,256.5582165256291,0.0,0.0,65.15281722984973,0.07767291699929046 +26,256.4007696213289,0.0,0.0,65.11283367555865,0.07762524999998277 +27,240.76863068541655,0.0,0.0,61.143060636146465,0.07289262499762117 +28,253.9838950248202,0.0,0.0,64.49906970811983,0.07689354199828813 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c09823b91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c8f7c71ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..92d08699c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..914cc728b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e5971b6a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..93daaf5fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6ba976bd6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2d28cc600 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..94309ce6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fc8fc6487 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..adae78b58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2cf306de0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0b73af840 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6ee4ff81a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..399aa51a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..49e6e9549 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7bdefeea5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7955d5549 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1526.7707914568139,1.689345447459375,0.0,462.4831595574077,0.4918107500016049 +1,1530.8290010789995,1.6938357861457298,0.0,463.71245580718977,0.49311800000214134 +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.49029341600180487 +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388 +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.49191116700239945 +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108 +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786 +7,1541.6151929447517,1.705770520701691,0.0,466.97976490268644,0.4965924999996787 +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964 +9,1541.7118169849887,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112 +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.49135670799660147 +11,1522.1852241350612,1.684271596608698,0.0,461.09411827158124,0.49033362500267685 +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.49711370799923316 +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119 +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.49663020899970434 +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702 +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.49847412500093924 +17,1542.4716156529473,1.706718137600892,0.0,467.2391889643854,0.4968683750012133 +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831 +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757 +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121 +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.49735887499991804 +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191 +23,1544.7746825942847,1.7092664412980239,0.0,467.9368245765296,0.49761025000043446 +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246 +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499 +26,1542.6620170112014,1.7069288134073435,0.0,467.29686456457506,0.4969297080024262 +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994 +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048 +29,1542.809736148168,1.7070922620749058,0.0,467.34161104097717,0.4969772920012474 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..eb8699d5e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,254.55862726842622,0.0,0.0,64.64502264360112,0.07706754199898569 +1,249.45099505649355,0.0,0.0,63.34794226750606,0.07552120800028206 +2,260.34668630262985,0.0,0.0,66.11489703498854,0.07881987499786192 +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234 +4,254.45815813069174,0.0,0.0,64.61950856162512,0.07703712500006077 +5,255.8519102420228,0.0,0.0,64.97345113966061,0.07745908300057636 +6,248.69707187526592,0.0,0.0,63.15648389249447,0.07529295800122782 +7,255.1022546097663,0.0,0.0,64.78307650635061,0.07723212500059162 +8,252.78860060747465,0.0,0.0,64.1955253517402,0.07653166700038128 +9,254.73506346907226,0.0,0.0,64.68982851919962,0.07712095800161478 +10,253.83333170049056,0.0,0.0,64.46083423515617,0.07684795900058816 +11,253.73712680720126,0.0,0.0,64.43640305569922,0.07681883300028858 +12,240.22252605510252,0.0,0.0,61.00437766723181,0.07272729199758032 +13,258.0346838423428,0.0,0.0,65.52776528855703,0.07811991700145882 +14,254.20038081866608,0.0,0.0,64.5540461557671,0.07695908300229348 +15,254.68827233043686,0.0,0.0,64.67794593541505,0.07710679199954029 +16,255.76066324322383,0.0,0.0,64.95027901476814,0.07743145800122875 +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999009 +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448 +19,253.69515152852122,0.0,0.0,64.4257434568875,0.07680612499825656 +20,253.3447531357101,0.0,0.0,64.3367599787763,0.07670004199826508 +21,255.2514405716164,0.0,0.0,64.82096219887414,0.07727729100224678 +22,236.06342334742243,0.0,0.0,59.94817583427829,0.07146812499922817 +23,256.95678343157175,0.0,0.0,65.25403307523722,0.07779358300103922 +24,255.03110341882658,0.0,0.0,64.76500770075256,0.0772105840005679 +25,255.734925804407,0.0,0.0,64.94374300641141,0.07742366599995876 +26,256.5582165256291,0.0,0.0,65.15281722984973,0.07767291699929046 +27,256.4007696213289,0.0,0.0,65.11283367555865,0.07762524999998277 +28,240.76863068541655,0.0,0.0,61.143060636146465,0.07289262499762117 +29,253.9838950248202,0.0,0.0,64.49906970811983,0.07689354199828813 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cde67cc76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..02844239c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..dd86810a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d4e452b12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..46940bf84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d25ea191b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..221016115 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2d28cc600 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..50db5e993 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..82e96488f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cc85aeb40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f1931cf15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1d41825e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..610073821 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..0ae4f26b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..49e6e9549 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c3ed80ec0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2fc915720 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.7525821795537,1.3534612562180335,0.0,463.18085087793236,0.48982524999883026 +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384 +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099 +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248 +4,1587.2227722401722,1.3746542809853626,0.0,470.43351747574684,0.4974951250005688 +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653 +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598 +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184 +8,1564.2617858074793,1.35476834005295,0.0,463.62816047031566,0.49029829099890776 +9,1583.7046608844691,1.3716073319869717,0.0,469.3907920758341,0.49639241700060666 +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031 +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.49843254100051126 +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.49165200000061304 +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357 +14,1582.78900463182,1.3708143048142083,0.0,469.11940270361356,0.49610541600122815 +15,1586.2664412042632,1.3738260263915247,0.0,470.15007259267037,0.49719537499913713 +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225 +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.49555645800137427 +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672 +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756 +20,1562.7080469921623,1.3534226853966762,0.0,463.1676511902626,0.48981129100138787 +21,1563.4943568701915,1.3541036888820839,0.0,463.40070387084194,0.4900577499975043 +22,1565.3155589192559,1.3556809868121988,0.0,463.9404859990722,0.49062858300021617 +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271 +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.49631125000087195 +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042 +26,1585.4583311232375,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681 +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.49425375000282656 +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..679600151 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.07613175000005867 +1,256.12393460719073,0.9064551362425153,0.0,65.29834222191452,0.07725716699860641 +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.07672000000093249 +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752 +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.07654275000095367 +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.07688129199959803 +6,253.37879933322742,0.8967397538336794,0.0,64.59847485950024,0.07642912500159582 +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.07854758300163667 +8,256.86308778885234,0.9090710932362057,0.0,65.4867880127563,0.07748012500087498 +9,255.65027029969852,0.9047787780956691,0.0,65.17758234800283,0.07711429100163514 +10,254.20898161600167,0.8996778743782993,0.0,64.8101283579923,0.07667954100179486 +11,258.8750074470721,0.9161915324512971,0.0,65.99972335621382,0.07808700000168756 +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.07751504200132331 +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.07732654100254877 +14,253.74416228062046,0.898032819711201,0.0,64.69162349401059,0.07653933300025528 +15,251.57449486593754,0.890354091149602,0.0,64.13847064022133,0.07588487500106567 +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.07696058399960748 +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.07735437500014086 +18,257.3632704895553,0.9108413033448675,0.0,65.6143087039173,0.07763100000011036 +19,254.9952406394763,0.9024605449293301,0.0,65.01058369953878,0.07691670799977146 +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.07624249999935273 +21,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.07790908300012234 +22,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.07734962500035181 +23,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142 +24,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496 +25,254.63913044761702,0.9012002257288845,0.0,64.91979403861778,0.07680929100024514 +26,255.21888157057143,0.9032520385903039,0.0,65.06760055770893,0.0769841670007736 +27,255.84725028042521,0.9054759152669394,0.0,65.22780204422952,0.07717370799946366 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a7f20174b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a0759f1f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5b8956a48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3434fcf46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..130bf6105 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..73b20697b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..940017a41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0f272cfe5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6f4426c1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..98744f038 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fc8c69c1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..254c5f6f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c4de8523f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d3a51d83b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..fe6c34d81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..047c35a6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..479318ff5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..17ce3cd76 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.7525821795537,1.3534612562180335,0.0,463.18085087793236,0.48982524999883026 +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384 +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099 +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248 +4,1587.2227722401722,1.3746542809853626,0.0,470.43351747574684,0.4974951250005688 +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653 +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598 +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184 +8,1564.2617858074793,1.35476834005295,0.0,463.62816047031566,0.49029829099890776 +9,1583.7046608844691,1.3716073319869717,0.0,469.3907920758341,0.49639241700060666 +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031 +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.49843254100051126 +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.49165200000061304 +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357 +14,1582.78900463182,1.3708143048142083,0.0,469.11940270361356,0.49610541600122815 +15,1586.2664412042632,1.3738260263915247,0.0,470.15007259267037,0.49719537499913713 +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225 +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.49555645800137427 +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672 +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756 +20,1562.7080469921623,1.3534226853966762,0.0,463.1676511902626,0.48981129100138787 +21,1563.4943568701915,1.3541036888820839,0.0,463.40070387084194,0.4900577499975043 +22,1565.3155589192559,1.3556809868121988,0.0,463.9404859990722,0.49062858300021617 +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271 +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.49631125000087195 +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042 +26,1585.4583311232375,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681 +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.49425375000282656 +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749 +29,1529.1152277892556,1.3243287777642476,0.0,453.2111483124429,0.4792820420007047 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..afa365ffd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.07613175000005867 +1,256.12393460719073,0.9064551362425153,0.0,65.29834222191452,0.07725716699860641 +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.07672000000093249 +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752 +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.07654275000095367 +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.07688129199959803 +6,253.37879933322742,0.8967397538336794,0.0,64.59847485950024,0.07642912500159582 +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.07854758300163667 +8,256.86308778885234,0.9090710932362057,0.0,65.4867880127563,0.07748012500087498 +9,255.65027029969852,0.9047787780956691,0.0,65.17758234800283,0.07711429100163514 +10,254.20898161600167,0.8996778743782993,0.0,64.8101283579923,0.07667954100179486 +11,258.8750074470721,0.9161915324512971,0.0,65.99972335621382,0.07808700000168756 +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.07751504200132331 +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.07732654100254877 +14,253.74416228062046,0.898032819711201,0.0,64.69162349401059,0.07653933300025528 +15,251.57449486593754,0.890354091149602,0.0,64.13847064022133,0.07588487500106567 +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.07696058399960748 +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.07735437500014086 +18,257.3632704895553,0.9108413033448675,0.0,65.6143087039173,0.07763100000011036 +19,254.9952406394763,0.9024605449293301,0.0,65.01058369953878,0.07691670799977146 +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.07624249999935273 +21,237.13135670060404,0.8392379906824367,0.0,60.456218217679236,0.07152824999866425 +22,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.07790908300012234 +23,239.82482771688112,0.8487705267211679,0.0,61.14291386935821,0.07234070800041081 +24,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.07734962500035181 +25,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142 +26,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496 +27,254.63913044761702,0.9012002257288845,0.0,64.91979403861778,0.07680929100024514 +28,255.21888157057143,0.9032520385903039,0.0,65.06760055770893,0.0769841670007736 +29,255.84725028042521,0.9054759152669394,0.0,65.22780204422952,0.07717370799946366 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..603fb0786 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4c7250907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c62499091 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..79c661b92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..33b92fd78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2d29bbe67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..796f0b2f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..caa7ddeb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..76654b068 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0568cdad3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9b9599f1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f030ca889 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0cdbf2576 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dd82e616e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ff08b41fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1b5b7a6ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cb2639026 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..e935a0298 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 898 samples (with smell) vs 881 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 490.02 ms | 75.55 ms | +| **Average Power** | 4.325 W | 4.612 W | +| **Total Energy** | 1903.20 J | 307.00 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.33% | 0.00e+00 | +6.279 | large | βœ… | +| `gpu_mj` | +83.08% | 8.41e-224 | +1.932 | large | βœ… | +| `ane_mj` | +86.82% | 6.94e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.80% | 0.00e+00 | +28.191 | large | βœ… | +| `time_s` | +84.45% | 0.00e+00 | +112.566 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.3% lower energy (Cohen’s d = +6.279, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.932, large) +- **`ane_mj`**: 86.8% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.191, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +112.566, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..e5077d203 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/with_smell.csv @@ -0,0 +1,899 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.7525821795537,1.3534612562180337,0.0,463.1808508779323,0.4898252499988302 +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384 +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099 +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248 +4,1587.2227722401722,1.3746542809853626,0.0,470.4335174757469,0.4974951250005688 +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653 +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598 +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184 +8,1564.261785807479,1.35476834005295,0.0,463.62816047031566,0.4902982909989077 +9,1583.7046608844691,1.3716073319869715,0.0,469.3907920758341,0.4963924170006066 +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031 +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.4984325410005112 +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.491652000000613 +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357 +14,1582.78900463182,1.3708143048142083,0.0,469.1194027036136,0.4961054160012281 +15,1586.2664412042632,1.3738260263915247,0.0,470.1500725926704,0.4971953749991371 +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225 +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.4955564580013742 +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672 +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756 +20,1562.7080469921625,1.3534226853966762,0.0,463.1676511902626,0.4898112910013878 +21,1563.4943568701915,1.354103688882084,0.0,463.40070387084194,0.4900577499975043 +22,1565.315558919256,1.3556809868121988,0.0,463.9404859990722,0.4906285830002161 +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271 +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.4963112500008719 +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042 +26,1585.4583311232377,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681 +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.4942537500028265 +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749 +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.4996582499989017 +1,1533.5334001790511,1.8921445940257144,0.0,474.4635558317462,0.493004457999632 +2,1543.8059871684454,1.9048193880252269,0.0,477.6418160183257,0.4963069170007657 +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377 +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006 +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134 +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524 +7,1522.6814694210657,1.87875497882981,0.0,471.1060510949909,0.4895157499995548 +8,1546.9721730979702,1.908725974989378,0.0,478.62140983374,0.4973247910020291 +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562 +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276 +11,1522.9656993374065,1.879105674875688,0.0,471.1939896666353,0.4896071250004752 +12,1544.25585273976,1.9053744530200296,0.0,477.7810010002682,0.49645154099926 +13,1546.7443256761674,1.908444846278796,0.0,478.55091557654094,0.4972515419976844 +14,1550.8537971977223,1.9135153027311336,0.0,479.8223547708087,0.4985726659979264 +15,1523.3470075656658,1.8795761506427464,0.0,471.3119635287153,0.4897297089992207 +16,1517.6756261895746,1.8725785374116448,0.0,469.55728131973046,0.4879064580018166 +17,1526.438800689855,1.883390948315296,0.0,472.26854077667593,0.4907236670005659 +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595 +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093 +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216 +21,1532.4807276685026,1.890845757886976,0.0,474.1378669733079,0.4926660419987456 +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.4991075840007397 +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354 +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.4886628750027739 +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164 +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348 +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517 +28,1550.5286132950594,1.913114075758564,0.0,479.72174534766935,0.498468124998908 +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037 +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976 +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595 +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.4905380419986613 +3,1542.6536762485855,0.7725528459014843,0.0,473.2725912500832,0.4981489999991026 +4,1543.401933683681,0.7729275692887551,0.0,473.5021500555895,0.4983906249981373 +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.4949968340006307 +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.498344999999972 +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.4981494999992719 +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449 +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929 +10,1537.626197619399,0.7700351110511502,0.0,471.7302049874221,0.49652554199929 +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289 +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177 +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.4986532499970053 +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.4899813329975586 +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.4892707910003082 +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.4929174160024558 +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781 +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552 +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.4907241250002698 +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491 +21,1516.8447946320175,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654 +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525 +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571 +24,1541.3760009365585,0.7719129928264602,0.0,472.8806116923837,0.4977364170008513 +25,1542.692772983568,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102 +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.4900904159985657 +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.4966319170016504 +28,1518.901438072084,0.760657849971867,0.0,465.98561330885246,0.4904790000000503 +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882 +0,2388.293804473947,3.948256730756337,88.5680980195934,516.2847572505955,0.5047006250024424 +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839 +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086 +3,2411.1969694915374,3.9861195662529263,89.41744484636862,521.2358042990056,0.5095405829997617 +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725 +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035 +6,2372.850397511069,3.922726146800221,87.99539076762868,512.9463088570119,0.5014370829994732 +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908 +8,2354.685839084009,3.892697035668036,87.32177163909569,509.0196208504898,0.4975985000019136 +9,2376.2567192107217,3.928357377159141,88.12171167237496,513.6826638098775,0.5021569159980572 +10,2377.0903590593543,3.929735525918403,88.15262658564419,513.8628742789912,0.502333082997211 +11,2387.2517582095043,3.946534050669975,88.52945450952055,516.0594949308281,0.5044804170029238 +12,2356.9182072270733,3.896387520703783,87.4045573500247,509.5021986818592,0.4980702499997278 +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117 +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978 +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944 +16,2396.136077101009,3.9612213440824777,88.85892286259592,517.9800452473951,0.5063578749977751 +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.4989800420007668 +18,2405.715621948096,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489 +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676 +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362 +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782 +22,2396.5872071287085,3.961967138910976,88.87565268387587,518.077567401664,0.5064532090000284 +23,2363.0508100276948,3.906525758402701,87.63198036010125,510.8279021368955,0.4993662080014474 +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441 +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081 +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673 +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922 +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745 +29,2355.1391363948715,3.893446413385005,87.33858183245853,509.11761151297134,0.4976942920002329 +0,1541.6676935631915,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725 +1,1539.9339925655115,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675 +2,1537.4033292502131,1.4726085529216604,0.0,466.3483540093277,0.4953739999982645 +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.496548333998362 +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737 +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737 +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.4963964589987881 +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326 +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491 +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484 +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793 +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.4901659580027626 +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843 +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972 +14,1541.2718674655523,1.476314049296506,0.0,467.5218173385799,0.4966204999982437 +15,1540.4087008558995,1.4754872613562258,0.0,467.2599886304011,0.4963423750014044 +16,1531.2747826396396,1.4667382975475476,0.0,464.4893508642619,0.4933992920014134 +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.4963049580001097 +18,1522.1950456773989,1.4580412314917617,0.0,461.73514817286826,0.4904736669996055 +19,1538.037096059261,1.4732156092521662,0.0,466.54059771181096,0.4955782090000866 +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977 +21,1559.845791710162,1.4941051644733354,0.0,473.1559400402603,0.5026052920002257 +22,1514.2267569754815,1.450408771049312,0.0,459.3180867227526,0.4879061669998918 +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.4904113750017131 +24,1521.4884764967403,1.4573644410888318,0.0,461.52082095754054,0.490246000001207 +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.4877654580013768 +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.488684291998652 +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.4885777920026157 +28,1545.923787001248,1.4807699109207355,0.0,468.9329076993075,0.4981194169995433 +29,1523.710854713787,1.4594931558561175,0.0,462.1949462204351,0.4909620830003405 +0,1526.770791456814,1.689345447459375,0.0,462.4831595574077,0.4918107500016049 +1,1530.8290010789997,1.6938357861457298,0.0,463.71245580718977,0.4931180000021413 +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.4902934160018048 +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388 +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.4919111670023994 +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108 +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786 +7,1541.6151929447517,1.705770520701691,0.0,466.9797649026864,0.4965924999996787 +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964 +9,1541.711816984989,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112 +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.4913567079966014 +11,1522.1852241350612,1.684271596608698,0.0,461.0941182715813,0.4903336250026768 +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.4971137079992331 +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119 +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.4966302089997043 +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702 +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.4984741250009392 +17,1542.471615652947,1.706718137600892,0.0,467.2391889643854,0.4968683750012133 +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831 +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757 +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121 +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.497358874999918 +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191 +23,1544.7746825942847,1.709266441298024,0.0,467.9368245765296,0.4976102500004344 +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246 +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499 +26,1542.6620170112014,1.7069288134073437,0.0,467.29686456457506,0.4969297080024262 +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994 +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048 +29,1542.809736148168,1.7070922620749058,0.0,467.3416110409772,0.4969772920012474 +0,1552.5755589394023,1.275546910247925,0.0,466.24596271957057,0.4975988330006657 +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.496548333998362 +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.4974576250024256 +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449 +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334 +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.4977821669999684 +6,1537.704995292508,1.2633297260959353,0.0,461.7802604071722,0.4928328329988289 +7,1550.9853290718895,1.2742404277502393,0.0,465.7684089855479,0.4970891660013876 +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838 +9,1551.9411325247231,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125 +10,1520.1867380960591,1.2489372807742254,0.0,456.5194428935261,0.4872182500002964 +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.4970620829990366 +12,1524.5508959441925,1.25252273465244,0.0,457.83002064006297,0.4886169579986017 +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.4979272499986109 +14,1552.3800325555055,1.275386271963099,0.0,466.1872451991433,0.4975361670003622 +15,1533.394787700758,1.2597885960397988,0.0,460.4858841840212,0.4914514160009275 +16,1553.2691400031183,1.2761167344846496,0.0,466.454248473468,0.4978211250017921 +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.4989104170017526 +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086 +19,1554.660720229109,1.277260012727956,0.0,466.872146757666,0.4982671249999839 +20,1560.0134398376556,1.28165763764147,0.0,468.4795943905267,0.4999826660023245 +21,1528.100442701547,1.2554389298566315,0.0,458.89596672917406,0.4897545839994563 +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346 +23,1528.2429267943644,1.2555559902749194,0.0,458.9387553925956,0.4898002500012808 +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.4974483750011131 +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.4978840000003401 +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246 +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913 +28,1526.2605989035876,1.2539273724587885,0.0,458.343452722436,0.489164915998117 +29,1549.6854059286077,1.2731724520633707,0.0,465.3780357673742,0.496672542001761 +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143 +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629 +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.4905859169994073 +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484 +4,1572.3927908809335,1.7548657145168245,0.0,461.7945683087953,0.4925914999985252 +5,1564.3827924950483,1.7459261724238786,0.0,459.44211937350633,0.490082166998036 +6,1587.637379706137,1.7718794062714578,0.0,466.2717373446797,0.4973672500018438 +7,1586.1069069337875,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081 +8,1565.879611148776,1.747596693779299,0.0,459.88171864414875,0.4905510830030835 +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.4896888329967623 +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949 +11,1565.9028878075114,1.7476226716460257,0.0,459.8885547442853,0.4905583750005462 +12,1583.3814014098812,1.7671295305170396,0.0,465.0218030588897,0.496033957999316 +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357 +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462 +15,1611.7074099564163,1.798742713632422,0.0,473.3408420194601,0.5049077910007327 +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.4980673339996428 +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919 +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489 +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508 +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334 +21,1572.3998421997237,1.754873584126542,0.0,461.79663920401657,0.4925937090010848 +22,1585.7182708706089,1.7697375888340936,0.0,465.7081160654547,0.4967660410002281 +23,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159 +24,1590.2483692515932,1.774793395740791,0.0,467.03855642258145,0.4981852079981763 +25,1591.9827363009797,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986 +26,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312 +27,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873 +28,1587.966697298727,1.7722469404879555,0.0,466.3684543204815,0.4974704170017503 +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903 +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644 +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.4977449159996467 +3,1546.2059346063345,2.2033334416620187,0.0,467.473911872625,0.496353624999756 +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.4969734580008662 +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.4907893749987124 +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513 +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531 +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.4975908330015954 +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121 +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.4914072920000762 +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572 +12,1543.267588495252,2.199146317486109,0.0,466.5855436933028,0.4954103750023932 +13,1529.337507111068,2.179296041742173,0.0,462.3739768562977,0.4909386250001262 +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619 +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023 +16,1530.0441213304557,2.180302962427888,0.0,462.5876118617835,0.4911654579991591 +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.4971690409984148 +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865 +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.4974212920024001 +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434 +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.4969887080005719 +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.4965708330018969 +23,1529.565952029954,2.1796215742718923,0.0,462.44304400801985,0.4910119589985697 +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.4924065839986724 +25,1550.7246888389986,2.209772637174495,0.0,468.840094520522,0.4978042080001614 +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.4911967079970054 +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781 +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396 +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681 +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253 +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469 +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869 +3,1547.1728294886957,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128 +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.4916307919993414 +5,1522.8403915260485,1.286963146171359,0.0,460.69980727431664,0.4899240839986305 +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.4981920840000384 +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766 +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749 +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258 +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.4905591249989811 +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.490846832999523 +12,1548.5445027423802,1.3086858716943923,0.0,468.4759860186004,0.4981935410032747 +13,1548.346997027624,1.3085189582230503,0.0,468.41623527569254,0.4981299999999464 +14,1526.1627930048307,1.289770931073685,0.0,461.7049222748644,0.4909929579989693 +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149 +16,1549.442548959939,1.3094448168812869,0.0,468.7476689353755,0.4984824579987617 +17,1525.4153728060248,1.289139280996684,0.0,461.4788077434539,0.4907524999980523 +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293 +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.4897483750028186 +20,1553.0553234008996,1.312497998020176,0.0,469.8406294964019,0.4996447500016074 +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527 +22,1549.7637440107094,1.3097162610821198,0.0,468.844838999166,0.4985857920000853 +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.4968075409997254 +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552 +25,1525.1998637277711,1.2889571527559822,0.0,461.4136105032376,0.4906831670014071 +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956 +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903 +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556 +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313 +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481 +1,1517.480332834304,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702 +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304 +3,1542.4872208574875,0.5718522026949577,0.0,467.2705263315093,0.498356000000058 +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855 +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593 +6,1541.2370366249845,0.5713887171000923,0.0,466.8918040727872,0.4979520829983812 +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821 +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392 +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442 +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468 +11,1517.2779873087345,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378 +12,1518.0660902189236,0.5627984632803773,0.0,459.8725560839836,0.4904658750019735 +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126 +14,1517.2394279134517,0.5624919915936906,0.0,459.622132660468,0.4901987919984094 +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855 +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978 +17,1518.3874690557575,0.5629176092890171,0.0,459.96991239021986,0.4905697079993842 +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193 +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163 +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935 +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.4913474580025649 +22,1526.217818035968,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091 +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.490669708000496 +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.4942520420008804 +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378 +26,1534.423317940434,0.5688626410421411,0.0,464.8277027480224,0.4957506659993669 +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833 +28,1517.56235434898,0.5626117113495291,0.0,459.71995778566526,0.4903031250032654 +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216 +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892 +1,1550.91288162991,0.8958868617275533,0.0,462.0121726923871,0.4923814169997058 +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.4911964169987186 +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874 +4,1565.1120060356702,0.904089004577632,0.0,466.2420481384795,0.4968893330005812 +5,1571.375161858294,0.9077069247592892,0.0,468.10782297586456,0.498877750000247 +6,1570.1072269824244,0.9069745005140124,0.0,467.730109079893,0.4984752080017642 +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487 +8,1565.5201723263629,0.90432478237119,0.0,466.36363961986854,0.4970189170016965 +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015 +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518 +11,1560.722599431774,0.9015534580915664,0.0,464.93445742470254,0.4954957909976656 +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.4871506659983424 +13,1570.2996305808672,0.9070856427051928,0.0,467.78742551952234,0.4985362919978797 +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609 +15,1547.5227554628375,0.8939285508974267,0.0,461.00226454428775,0.4913051250005082 +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.4915737500014074 +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721 +18,1564.0133771354122,0.90345438015139,0.0,465.9147699714058,0.49654054200073 +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579 +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017 +21,1554.6354429575945,0.898037204164546,0.0,463.1211122513755,0.4935632499982603 +22,1566.8541179900308,0.9050953378346812,0.0,466.7610179263,0.4974424160027411 +23,1563.1480932062543,0.902954547753982,0.0,465.6570045528313,0.496265833000507 +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334 +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029 +26,1544.107301583785,0.8919556094812306,0.0,459.98481134876505,0.4902207919985812 +27,1567.236953417524,0.905316483221864,0.0,466.8750634215273,0.4975639580006827 +28,1564.9869329670676,0.9040167559553888,0.0,466.2047892564012,0.4968496249966847 +29,1569.5676911434848,0.9066628369284802,0.0,467.5693830145243,0.4983039170001575 +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744 +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192 +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263 +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.4983404999984486 +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052 +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.4975258750018838 +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626 +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.4973339589996612 +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957 +9,1548.8857390933792,0.8386499063790712,0.0,465.2494220628536,0.4981867919996148 +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573 +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854 +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442 +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.4890400419972138 +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909 +15,1548.8552953072,0.8386334224785583,0.0,465.240277454205,0.4981769999976677 +16,1525.425523355913,0.8259472858853377,0.0,458.20251631775,0.4906410000003234 +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796 +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922 +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205 +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.4976440419995924 +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.4966249170029186 +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363 +23,1523.6436512727455,0.8249824846621034,0.0,457.6672831911485,0.4900678750018414 +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.4941007919987896 +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.4961650840014044 +26,1546.018290686647,0.8370973158443685,0.0,464.3881069378219,0.49726450000162 +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.4886809999989054 +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.4892711669999698 +29,1544.979353159271,0.8365347792814213,0.0,464.0760341541612,0.4969303340003534 +0,1543.037293902987,0.9050268700391154,0.0,464.4128623848868,0.4969528340006945 +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.4968073750023904 +2,1522.6647565357837,0.8930779082084145,0.0,458.2812747491697,0.490391625000484 +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.4955040000022563 +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488 +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.4876558750002004 +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299 +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.4911422499972104 +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522 +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697 +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.4891653750019031 +11,1540.3509525440622,0.9034512690335336,0.0,463.60434564665206,0.4960876669974823 +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175 +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979 +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759 +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943 +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511 +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.4970722079997358 +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232 +19,1517.3107069267537,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729 +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.4969016249997366 +21,1542.9237006680555,0.904960244993646,0.0,464.378673866184,0.4969162499983213 +22,1543.855845753035,0.9055069695297376,0.0,464.65922454942654,0.4972164579994569 +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416 +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507 +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.4953368749993387 +26,1524.4368065343,0.8941172562980861,0.0,458.8146142966661,0.4909623339990503 +27,1540.8696144444589,0.903755476169796,0.0,463.7604489752787,0.4962547080031072 +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629 +29,1542.3754109042263,0.9046386604338992,0.0,464.2136533448767,0.4967396669999289 +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601 +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.4905383750010514 +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.4949191670020809 +3,1543.9666529760673,2.517118054369295,0.0,468.6538201495045,0.4970376669989491 +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.4911096249998081 +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.4892612080002436 +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668 +7,1541.4305863957322,2.5129835227301953,0.0,467.8840254853926,0.4962212500031455 +8,1518.9797912579406,2.4763821481685406,0.0,461.0693375603401,0.4889938330015866 +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282 +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875 +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.4909694169982685 +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736 +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168 +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129 +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858 +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407 +17,1539.709287220718,2.5101773007032837,0.0,467.36154436027533,0.4956671250001818 +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.4965505419968394 +19,1509.6842072989823,2.461227622542033,0.0,458.247766949026,0.4860013750003418 +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097 +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844 +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.4907778749984572 +23,1518.3726327778963,2.4753923019377058,0.0,460.8850413901084,0.4887983750013518 +24,1542.6089226370732,2.514904556077308,0.0,468.24169628084707,0.4966005829992355 +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.4952879160009615 +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364 +27,1524.6620618997297,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219 +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333 +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925 +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.4906970419979188 +1,1543.8582876666146,1.819236842272884,0.0,468.7903825967997,0.498959583001124 +2,1514.9563025535929,1.785179599744556,0.0,460.0143357489906,0.4896187500016822 +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.4886332080022839 +4,1513.8533631439177,1.783879928638143,0.0,459.6794297592549,0.4892622909974307 +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127 +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044 +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288,0.488077041998622 +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.4968368750014633 +9,1536.988103258224,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808 +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314 +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129 +12,1537.6380057586473,1.8119070464576217,0.0,466.9016028047741,0.496949249998579 +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181 +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273 +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.4968635410004935 +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761 +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.4962564160014153 +18,1534.6338380789523,1.8083670243150929,0.0,465.9893915434169,0.4959783330014033 +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864 +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.4974886670024716 +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.4904405839988612 +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546 +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.4959463339982903 +24,1536.071073078166,1.8100606194348392,0.0,466.4258059154776,0.4964428330022201 +25,1534.2024633575504,1.807858705130444,0.0,465.85840522018754,0.495838916998764 +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429 +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.4879782079988217 +28,1533.3456392419216,1.806849048991048,0.0,465.59823179093394,0.4955620000000635 +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.4960916669988364 +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.4967214579992287 +1,1525.822451852758,0.9878217819888808,0.0,458.15174248644286,0.4879074999989825 +2,1551.4175283280858,1.004392107077032,0.0,465.8370592623274,0.4960919580007612 +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014 +4,1517.1578055606185,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886 +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844 +6,1536.6455705433632,0.994828699719478,0.0,461.4015509298939,0.4913683750019118 +7,1523.3509920954475,0.986221751933866,0.0,457.4096485469271,0.4871172089988249 +8,1523.3483839474748,0.986220063411473,0.0,457.4088654102411,0.4871163749994593 +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242 +10,1552.6602304699818,1.0051966359675315,0.0,466.2101997617412,0.4964893329997721 +11,1535.8703964688004,0.9943268498255036,0.0,461.16879294906863,0.4911204999989422 +12,1528.3973744832786,0.9894887942013932,0.0,458.9249027506061,0.4887308750003285 +13,1531.9027936882028,0.9917582125347134,0.0,459.9774589736001,0.4898517919973528 +14,1541.5801558574808,0.9980233642444684,0.0,462.8832363365845,0.4929462920008518 +15,1553.6147007694765,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625 +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.4965233750008337 +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.4948284999991301 +18,1572.9461018499128,1.0183297666220117,0.0,472.3013457592889,0.5029760830002488 +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299 +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069 +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.4948044160009885 +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.496583374999318 +23,1551.7935835191104,1.0046355662740525,0.0,465.9499756379054,0.4962122079996334 +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908 +25,1528.5850111774257,0.9896102707292512,0.0,458.9812435642267,0.4887908750024508 +26,1549.1668012392042,1.0029349799774732,0.0,465.161243713552,0.495372249999491 +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072 +28,1551.2523048367275,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879 +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.4966570830001728 +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.4868028330020024 +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.4948589999985415 +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249 +3,1533.950680078919,1.341716280054159,0.0,466.5818363888339,0.4973159999972267 +4,1509.4877083165245,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007 +5,1530.701332361488,1.3388741399588795,0.0,465.5934821707004,0.4962625420012045 +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036 +7,1511.6775444702157,1.3222344094554814,0.0,459.80701588814367,0.4900949160000891 +8,1506.085294324647,1.3173429790073663,0.0,458.1060209498117,0.4882818750011211 +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001 +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716 +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.4969967500001075 +12,1535.0179028145485,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828 +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468 +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.4962089580003521 +15,1529.1070527547115,1.3374796551614545,0.0,465.1085500823957,0.4957456670017564 +16,1511.511884356299,1.3220895098347285,0.0,459.7566270450269,0.4900412079987291 +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.4965184579996275 +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.4970040829975914 +19,1531.0605422535905,1.339188333737369,0.0,465.7027430571701,0.4963790000001609 +20,1529.8004113116283,1.3380861221592606,0.0,465.3194489808829,0.4959704579996469 +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173 +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.4973219999992579 +23,1508.4587853165551,1.319419024571127,0.0,458.82796579460944,0.4890513749996898 +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.4990502090004156 +25,1507.4511944376345,1.318537704784618,0.0,458.52148683885093,0.4887247080005181 +26,1531.4239932863045,1.3395062371575557,0.0,465.81329397154,0.4964968330023112 +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.4958281660001375 +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602 +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631 +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612 +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576 +2,2756.6629408744075,3.785901382924392,84.37621951682796,523.1457293569697,0.5001827079977375 +3,2741.474911483684,3.765042691561858,83.91134276933079,520.2634209705171,0.4974269160011317 +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654 +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.497821582997858 +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554 +7,2774.160435980272,3.809931811141341,84.91178462569788,526.4663166160612,0.5033575410016056 +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454 +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631 +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016 +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793 +12,2770.4892187897412,3.8048898939622178,84.79941563674055,525.7696113474226,0.5026914169975498 +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978 +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901 +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394 +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222 +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375 +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477 +19,2745.556043502129,3.7706475709700102,84.0362584730099,521.0379178285604,0.4981674170012411 +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818 +21,2757.1403582791954,3.786557050756037,84.39083235728454,523.2363312483842,0.5002693329988688 +22,2771.5646135441475,3.806366802302199,84.83233142870031,525.9736943946457,0.5028865419990325 +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276 +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584 +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005 +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075 +27,2829.818723513932,3.886370894288026,86.61537914834967,537.0288685315742,0.5134564589970978 +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049 +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177 +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501 +1,1551.185722359366,1.974412823748249,0.0,466.16221414937473,0.4965388329983398 +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298 +3,1547.1130708458957,1.969228985824172,0.0,464.9383012293342,0.4952351660031127 +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.4957658749990514 +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.4897414169972762 +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082 +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806 +8,1541.253365057029,1.9617705119056952,0.0,463.17734289570063,0.4933594579997589 +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013 +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192 +11,1550.8496334220874,1.9739850359610631,0.0,466.0612127277562,0.4964312500014785 +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.4899619159987196 +13,1555.5371906072128,1.9799515510501056,0.0,467.4699170530165,0.4979317500001343 +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.4902642919987556 +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985 +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.4972455840033944 +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555 +18,1523.894748786755,1.939675752991576,0.0,457.9607328673332,0.4878029169994988 +19,1528.9590068812288,1.946121748451934,0.0,459.4826433209397,0.489423999999417 +20,1532.1890914847395,1.9502331326472857,0.0,460.4533480979099,0.4904579590001958 +21,1551.723309101243,1.9750970862074375,0.0,466.32376967575607,0.4967109159988467 +22,1555.211904441731,1.9795375134740387,0.0,467.3721620795485,0.4978276250003546 +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.4974748340027872 +24,1553.889544716052,1.9778543597662952,0.0,466.9747666363473,0.4974043340007483 +25,1553.1610005454645,1.9769270388579467,0.0,466.7558245981558,0.4971711250000226 +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.4899513749987818 +27,1556.0137313297807,1.9805581116315465,0.0,467.6131270343634,0.4980842920012946 +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549 +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403 +0,1625.5597601283662,2.2574452413660273,0.0,464.3365675145092,0.4921481670025969 +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114 +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426 +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874 +4,1619.196275230912,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753 +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.4969209160008176 +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.496066374998918 +7,1645.2563032830217,2.2847981992248796,0.0,469.96282959644697,0.4981114160000288 +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988 +9,1617.3511432498,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262 +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978 +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753 +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172 +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.4932250419988122 +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461 +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823 +16,1618.5698106059183,2.247738167732763,0.0,462.3399081187963,0.4900319170010334 +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.4884982080002373 +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.4902859590001753 +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689 +20,1625.9434583893585,2.257978090317289,0.0,464.44616984217527,0.4922643339996284 +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012 +22,1643.0470201217047,2.2817301263790366,0.0,469.3317540832881,0.4974425420004991 +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037 +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533 +25,1644.857744860965,2.284244713690023,0.0,469.8489825056227,0.4979907499982801 +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.4965811670008406 +27,1642.3811937703597,2.2808054808721243,0.0,469.141562661153,0.4972409589972812 +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.4972591670011752 +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.4894498749999911 +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723 +1,1532.1004752886363,1.944206307094024,0.0,458.2065881380069,0.4896357500001613 +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.4978175420001207 +3,1559.2145772362046,1.9786135857731335,0.0,466.3156255961936,0.4983009999996284 +4,1530.2639789041189,1.9418758281787545,0.0,457.6573456072133,0.4890488339988224 +5,1553.2082118735125,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419 +6,1559.180676984456,1.9785705669996752,0.0,466.3054870191607,0.4982901660005154 +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907 +8,1558.6548663303993,1.977903323299642,0.0,466.1482323810427,0.4981221250018279 +9,1553.3620584498417,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574 +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101 +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699 +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511 +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693 +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.494713000000047 +15,1555.7903386278183,1.974268292232144,0.0,465.2915356523383,0.4972066660011478 +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439 +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097 +18,1553.613947922776,1.97150649390123,0.0,464.64064063892545,0.4965111250021436 +19,1556.3417074494223,1.9749679687597528,0.0,465.45643399329424,0.4973828749971289 +20,1559.243258216998,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102 +21,1546.4155414555316,1.9623718532687304,0.0,462.48780711358813,0.4942106249982316 +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894 +23,1528.3264357327582,1.939417122816551,0.0,457.07788292820584,0.488429624998389 +24,1559.6077970344063,1.979112574203768,0.0,466.4332261746338,0.498426666999876 +25,1535.5840315256837,1.9486268735754144,0.0,459.24841825535833,0.4907490410005266 +26,1533.0749182963104,1.94544285670156,0.0,458.4980156344947,0.4899471669996273 +27,1555.842230984777,1.974334142644252,0.0,465.3070551435309,0.4972232500003883 +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.4883499999996274 +29,1555.619285336731,1.974051228865383,0.0,465.240378599545,0.4971519999999145 +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597 +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385 +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235 +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116 +4,2392.7939583178036,3.094216164570146,88.53450767657158,515.4365249625881,0.5038726669990865 +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987 +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502 +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484 +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611 +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628 +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102 +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241 +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865 +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589 +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126 +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535 +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978 +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702 +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992 +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001 +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963 +21,2390.42113626185,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558 +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539 +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549 +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028 +25,2377.367853522984,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472 +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107 +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148 +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216 +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105 +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553 +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.4946381670015398 +2,1513.015531420153,1.7770758373213904,0.0,472.4389022330719,0.489482125001814 +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.4983768749989394 +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381 +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.4987627919981605 +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078 +7,1540.8432585109908,1.8097602218460391,0.0,481.1281063855878,0.498484791998635 +8,1521.949062973098,1.7875685009689248,0.0,475.2283962946275,0.4923722499988798 +9,1537.8767464620305,1.806275976791144,0.0,480.20181338543824,0.4975250829993456 +10,1540.0165314743188,1.8087892095791984,0.0,480.8699609762772,0.4982173339994915 +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.4885295409985701 +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686 +13,1514.3150598492307,1.7786021670405965,0.0,472.8446798154592,0.4899025410013564 +14,1541.9176562329635,1.81102212973247,0.0,481.4635869340618,0.4988323750003474 +15,1515.38856114981,1.779863022056937,0.0,473.1798804564702,0.4902498339979502 +16,1539.5401197356418,1.8082296516818483,0.0,480.7212014730485,0.4980632080005307 +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.4996198750013718 +18,1541.4078889281657,1.8104233948608175,0.0,481.3044121596648,0.4986674579995451 +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968 +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977 +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.4975674579982296 +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822 +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.4915245830015919 +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001 +25,1541.7235658764823,1.810794165593571,0.0,481.40298224557984,0.498769583999092 +26,1538.245614273331,1.8067092215669016,0.0,480.31699231137856,0.4976444170024479 +27,1538.7954354415915,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098 +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118 +29,1539.4867990582093,1.8081670251684203,0.0,480.70455209847864,0.4980459580001479 +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919 +1,1537.0330531240645,0.8380038018079471,0.0,481.5169845188464,0.4986462920023768 +2,1534.554664825174,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392 +3,1535.092545630475,0.8369458202285922,0.0,480.9090683033491,0.498016749999806 +4,1531.808106737977,0.8351551155504301,0.0,479.8801293952771,0.4969512079987908 +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388 +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.4978598749985394 +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567 +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.4900122919971181 +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.4971287920016038 +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442 +11,1542.3129650510032,0.8408824557568605,0.0,483.171059077892,0.5003592079992814 +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785 +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.4977900420017249 +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406 +15,1515.0810186523638,0.8260353615019213,0.0,474.639918719004,0.4915245840020361 +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891 +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457 +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533 +19,1532.7389950049983,0.8356626439378236,0.0,480.1717552066734,0.4972532079991651 +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.491781249998894 +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092 +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712 +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.4898963329978869 +24,1538.518645991316,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767 +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646 +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.4983793329993204 +27,1537.739437027721,0.8383889284619229,0.0,481.73827829422095,0.498875458000839 +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.4930752500004018 +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.4973596250019909 +0,1550.1230309870657,1.3179917364115763,0.0,458.9576724119213,0.4902429590001702 +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.4978254169982392 +2,1573.7945638369015,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331 +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943 +4,1559.3314125989507,1.3258211606750565,0.0,461.68407367607153,0.4931552080015535 +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.4910096250023343 +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715 +7,1575.5656502813997,1.3396243173824207,0.0,466.49067792049345,0.498289458999352 +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.4987434999966353 +9,1578.9038743347269,1.3424626415854837,0.0,467.47905336610495,0.4993452079979761 +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413 +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208 +12,1553.4810203833467,1.3208468660927597,0.0,459.9518999451511,0.4913049589995353 +13,1572.2751115779795,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662 +14,1570.6119266223695,1.335412415025928,0.0,465.0239882224038,0.4967227910019574 +15,1573.5109085929755,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935 +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629 +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.4892259999978705 +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967 +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979 +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978 +21,1569.630277542812,1.3345777681307784,0.0,464.7333433073403,0.4964123339996149 +22,1574.2479082049676,1.3385039074970495,0.0,466.10052318816014,0.4978727089983294 +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383 +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.4985292919991479 +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484 +26,1553.7065716648651,1.3210386410159338,0.0,460.0186807677736,0.4913762920004956 +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761 +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531 +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107 +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305 +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298 +2,2349.795445683046,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945 +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512 +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063 +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291 +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763 +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418 +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142 +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085 +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949 +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573 +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898 +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496 +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966 +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723 +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122 +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662 +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014 +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694 +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.4982014580018585 +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375 +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518 +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471 +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199 +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108 +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048 +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745 +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778 +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413 +0,1550.0754940354375,0.8369738088744263,0.0,464.9222113535663,0.4976810830012255 +1,1538.0192823716247,0.8304639753626484,0.0,461.3061290344438,0.4938102080013777 +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189 +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839 +4,1528.3809066387753,0.8252596688114338,0.0,458.4152408313752,0.4907156250010303 +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.4982283329991332 +6,1548.695597204981,0.8362287241927542,0.0,464.50833171459107,0.4972380409999459 +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205 +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483 +9,1527.96653767238,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396 +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764 +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.4892915000018547 +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.4895386659991345 +13,1526.3592753499977,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508 +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895 +15,1545.9810991200077,0.8347630124838054,0.0,463.6941581745042,0.4963664999995671 +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642 +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.4972027500007243 +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156 +19,1529.9212051478569,0.826091363470765,0.0,458.8772305807405,0.4912101669979165 +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.4959058749991527 +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002 +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318 +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.4974249170008988 +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943 +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.4972544580014073 +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859 +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.4976514579975628 +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.4981981669989181 +29,1549.708881169605,0.8367758537632858,0.0,464.8122512484299,0.497563375000027 +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.4960967090009944 +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625 +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175 +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248 +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133 +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024 +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.9361560538288,0.4992987500008894 +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069 +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808 +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982 +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676 +11,2383.245600577661,3.968493333370142,85.35567744523615,511.86949844919224,0.5002108339976985 +12,2393.684776374659,3.985876266772484,85.72955537116485,514.1116071425375,0.5024018750009418 +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633 +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925 +15,2396.267721266653,3.990177292055761,85.82206325663266,514.6663677203255,0.5029439999998431 +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309 +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842 +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849 +19,2370.2641685954413,3.946877128029598,84.89074889536992,509.0813682303509,0.4974862080016464 +20,2385.3405815094175,3.9719818189291622,85.43070895546808,512.3194549448798,0.5006505419987661 +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261 +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995 +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786 +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882 +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378 +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566 +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169 +28,2422.427310738474,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318 +29,2386.7347881131845,3.974303400729649,85.48064231069353,512.6189003041125,0.5009431670005142 +0,1510.9616102840157,1.973479398690429,0.0,456.5315675637193,0.4877955420015496 +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732 +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151 +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.4873141669995675 +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508 +5,1541.501322781938,2.013367568612397,0.0,465.7590308723345,0.4976549159982824 +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.4959944170004746 +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.4905059580014494 +8,1540.251215198586,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841 +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.4978336249987478 +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284 +11,1545.29644513748,2.0183244091655883,0.0,466.9057133203061,0.4988801250001415 +12,1538.6722489839171,2.009672492033502,0.0,464.9042364904169,0.4967415840001195 +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.4967219999998633 +14,1519.289578347493,1.984356626340929,0.0,459.04783289353486,0.4904841249990568 +15,1518.7244091137609,1.9836184541518056,0.0,458.87706906045105,0.490301666999585 +16,1541.7541618243265,2.0136978037672426,0.0,465.8354252714888,0.4977365420018032 +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.4974016669984848 +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905 +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.4971792910000658 +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.4981023750005988 +21,1539.6550675608858,2.010956159468265,0.0,465.2011915569919,0.4970588750002207 +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936 +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943 +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205 +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.4967334999964805 +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164 +27,1543.166248570158,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906 +28,1517.437899341542,1.9819381331466872,0.0,458.488354801267,0.4898863329981395 +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..2147ba783 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/cleaned/mac/without_smell.csv @@ -0,0 +1,882 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.0761317500000586 +1,256.12393460719073,0.9064551362425152,0.0,65.29834222191452,0.0772571669986064 +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.0767200000009324 +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752 +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.0765427500009536 +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.076881291999598 +6,253.37879933322745,0.8967397538336794,0.0,64.59847485950024,0.0764291250015958 +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.0785475830016366 +8,256.86308778885234,0.9090710932362056,0.0,65.4867880127563,0.0774801250008749 +9,255.65027029969852,0.9047787780956692,0.0,65.17758234800283,0.0771142910016351 +10,254.2089816160017,0.8996778743782993,0.0,64.8101283579923,0.0766795410017948 +11,258.8750074470721,0.9161915324512973,0.0,65.99972335621382,0.0780870000016875 +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.0775150420013233 +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.0773265410025487 +14,253.7441622806205,0.898032819711201,0.0,64.69162349401059,0.0765393330002552 +15,251.5744948659375,0.890354091149602,0.0,64.13847064022133,0.0758848750010656 +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.0769605839996074 +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.0773543750001408 +18,257.3632704895553,0.9108413033448676,0.0,65.6143087039173,0.0776310000001103 +19,254.9952406394763,0.90246054492933,0.0,65.01058369953878,0.0769167079997714 +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.0762424999993527 +21,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.0779090830001223 +22,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.0773496250003518 +23,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142 +24,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496 +25,254.63913044761705,0.9012002257288844,0.0,64.91979403861778,0.0768092910002451 +26,255.21888157057143,0.903252038590304,0.0,65.06760055770893,0.0769841670007736 +27,255.8472502804252,0.9054759152669394,0.0,65.22780204422952,0.0771737079994636 +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.076847208001709 +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.0770459590021346 +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.0773680829988734 +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.076017999999749 +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.0762255000008735 +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.077563791997818 +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.0770248330009053 +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.0733274169979267 +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.0775150410008791 +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.0773663330000999 +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.075760417003039 +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.0773687500004598 +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887 +13,248.11253105893135,0.76910270012068,0.0,68.17326333869708,0.071188792000612 +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.0754453750014363 +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.0776007089989434 +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.0776465839990123 +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.0784323340012633 +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.075241750000714 +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392 +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.0780122500000288 +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.0768742920008662 +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.078040291002253 +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483 +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.0799040839992812 +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.0787826250016223 +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.0793842499988386 +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.0794322090005152 +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.0823663330011186 +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.0802108749994658 +0,251.2126028110106,0.0,0.0,63.04752093895013,0.074755040997843 +1,251.92782659925052,0.0,0.0,63.22702262899478,0.0749678749998565 +2,258.018691325029,0.0,0.0,64.75566377612596,0.0767803749986342 +3,260.54003040902114,0.0,0.0,65.38845121160259,0.0775306670002464 +4,259.9749090575512,0.0,0.0,65.24662114479398,0.0773625000001629 +5,257.4462911868574,0.0,0.0,64.61200693211013,0.0766100420005386 +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752 +7,258.55804789756263,0.0,0.0,64.89102758518595,0.0769408749983995 +8,261.25119137299276,0.0,0.0,65.56693324341647,0.077742292000039 +9,260.1166102987462,0.0,0.0,65.28218429676703,0.0774046670012467 +10,237.00576584766733,0.0,0.0,59.48199181779978,0.0705274159990949 +11,261.5736560314424,0.0,0.0,65.64786308960325,0.0778382499993313 +12,258.20715696601536,0.0,0.0,64.80296351870814,0.0768364579998888 +13,256.72603004324225,0.0,0.0,64.43124100307053,0.0763957089984614 +14,259.4536150402221,0.0,0.0,65.1157905451141,0.0772073749976698 +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666 +16,258.93344008202195,0.0,0.0,64.98524079879539,0.0770525830012047 +17,259.39424550343654,0.0,0.0,65.10089040845003,0.0771897080012422 +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765 +19,247.2062185079991,0.0,0.0,62.042027602202104,0.0735628340007679 +20,240.2339275243244,0.0,0.0,60.29217247205807,0.0714880420018744 +21,261.37664806550475,0.0,0.0,65.59841945612862,0.077779625000403 +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121 +23,259.09586538480823,0.0,0.0,65.02600512575927,0.0771009170020988 +24,259.9893288635479,0.0,0.0,65.25024012334178,0.0773667909998039 +25,257.87783357147384,0.0,0.0,64.72031231657613,0.0767384589998982 +26,259.9124613012882,0.0,0.0,65.23094845888362,0.0773439169970515 +27,259.9603447479832,0.0,0.0,65.24296589978566,0.0773581659996125 +28,257.0997419885865,0.0,0.0,64.52503252242737,0.0765069170010974 +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405 +0,381.3081659044242,0.198030727553583,9.967546620197012,73.07333846727214,0.0762857089976023 +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957 +2,387.4458082495051,0.2012182852503272,10.12798702426647,74.24954725737075,0.077513624997664 +3,381.1904880655916,0.1979696120828831,9.964470474838452,73.05078685858389,0.0762621659996511 +4,377.4216778769259,0.1960122970017792,9.865952282422889,72.32853759365653,0.0755081659990537 +5,395.2054385543479,0.2052482152969867,10.330826836614998,75.7365914445881,0.0790660410020791 +6,382.2245416168645,0.198506643270249,9.991501044602536,73.2489513667219,0.0764690420000988 +7,388.2468053820079,0.2016342796063401,10.148925406852452,74.40304917473951,0.0776738749991636 +8,361.77536742490526,0.1878864541287485,9.456951524480342,69.3301015735082,0.072377915999823 +9,396.6091653952728,0.2059772346898327,10.367520812721578,76.00559960054827,0.0793468750016472 +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.0757492079974326 +11,389.1548487153577,0.2021058679383836,10.17266201956531,74.57706526926356,0.0778555409997352 +12,398.0607921145172,0.2067311306748985,10.405466910636562,76.28378721903758,0.07963729200128 +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.0798584579970338 +14,394.0549717448149,0.2046507253933082,10.300753178129844,75.51611767013073,0.0788358749996405 +15,389.67822848863034,0.2023776829335914,10.186343374324103,74.67736500249524,0.0779602500006149 +16,390.66458707880736,0.2028899439516008,10.21212717889724,74.8663893181407,0.0781575839973811 +17,382.3307530923388,0.1985618037353096,9.994277454677253,73.26930557832927,0.0764902910013916 +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962 +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.0725337920011952 +20,388.52755176123173,0.2017800840099879,10.156264228502726,74.45685099968554,0.0777300420013489 +21,389.50432339303006,0.2022873660831109,10.18179742618325,74.64403808466793,0.0779254580011183 +22,381.15924792662696,0.1979533876534027,9.963653845221272,73.04480004410561,0.0762559159993543 +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.0780157500012137 +24,385.52849854792015,0.2002225388459725,10.07786778858062,73.88211683416388,0.0771300419983163 +25,377.8184326260527,0.196218349844743,9.876323608852063,72.40457109271017,0.0755875419999938 +26,373.01390441782655,0.1937231391419509,9.750731336811532,71.4838383433799,0.0746263330001966 +27,392.390082348607,0.2037860723700893,10.257232309294496,75.19706070456296,0.0785027919991989 +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.078830000002199 +29,389.200049447067,0.2021293427406216,10.17384358461129,74.58572747128939,0.0778645840000535 +0,252.31231985583565,0.7304738829883385,0.0,65.27780245250334,0.0762640409993764 +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.0785115409998979 +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844 +3,254.08107578790057,0.7355946397333613,0.0,65.7354118961722,0.0767986660030146 +4,254.8141653450625,0.7377170203436471,0.0,65.925075545255,0.0770202499988954 +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552 +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.076410500001657 +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283 +8,255.1343891608784,0.7386441060059645,0.0,66.00792329126028,0.0771170410007471 +9,254.33927029643831,0.7363421432453802,0.0,65.80221152820079,0.0768767079971439 +10,254.15483004207024,0.7358081669858593,0.0,65.75449346791815,0.0768209589987236 +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.0783152080002764 +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539 +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.0761889579989656 +14,254.008843365794,0.7353855183639252,0.0,65.71672405015805,0.076776832996984 +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.0768490000009478 +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.0778543330015963 +17,255.57027480120905,0.7399060462727463,0.0,66.1206948623736,0.0772487920003186 +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.0767076669981179 +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801 +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.0753446670023549 +21,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.0774812499985273 +22,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745 +23,252.95552999281617,0.7323360520913219,0.0,65.44421265506995,0.0764584579992515 +24,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.0769151659987983 +25,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.0767502079979749 +26,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.0767220839989022 +27,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.0763839579994964 +28,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787 +0,254.55862726842625,0.0,0.0,64.64502264360112,0.0770675419989856 +1,249.45099505649355,0.0,0.0,63.34794226750606,0.075521208000282 +2,260.34668630262985,0.0,0.0,66.11489703498854,0.0788198749978619 +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234 +4,254.45815813069177,0.0,0.0,64.61950856162512,0.0770371250000607 +5,255.8519102420228,0.0,0.0,64.97345113966061,0.0774590830005763 +6,248.69707187526592,0.0,0.0,63.15648389249447,0.0752929580012278 +7,255.1022546097663,0.0,0.0,64.78307650635061,0.0772321250005916 +8,252.78860060747465,0.0,0.0,64.1955253517402,0.0765316670003812 +9,254.73506346907223,0.0,0.0,64.68982851919962,0.0771209580016147 +10,253.83333170049056,0.0,0.0,64.46083423515617,0.0768479590005881 +11,253.7371268072013,0.0,0.0,64.43640305569922,0.0768188330002885 +12,240.22252605510252,0.0,0.0,61.00437766723181,0.0727272919975803 +13,258.0346838423428,0.0,0.0,65.52776528855703,0.0781199170014588 +14,254.20038081866608,0.0,0.0,64.5540461557671,0.0769590830022934 +15,254.6882723304369,0.0,0.0,64.67794593541505,0.0771067919995402 +16,255.76066324322383,0.0,0.0,64.95027901476814,0.0774314580012287 +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999 +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448 +19,253.6951515285212,0.0,0.0,64.4257434568875,0.0768061249982565 +20,253.3447531357101,0.0,0.0,64.3367599787763,0.076700041998265 +21,255.2514405716164,0.0,0.0,64.82096219887414,0.0772772910022467 +22,256.95678343157175,0.0,0.0,65.25403307523722,0.0777935830010392 +23,255.03110341882655,0.0,0.0,64.76500770075256,0.0772105840005679 +24,255.734925804407,0.0,0.0,64.94374300641141,0.0774236659999587 +25,256.5582165256291,0.0,0.0,65.15281722984973,0.0776729169992904 +26,256.4007696213289,0.0,0.0,65.11283367555865,0.0776252499999827 +27,240.76863068541655,0.0,0.0,61.143060636146465,0.0728926249976211 +28,253.9838950248202,0.0,0.0,64.49906970811983,0.0768935419982881 +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292 +1,242.77578502676263,0.4671759814498319,0.0,63.69165880432708,0.0724429590009094 +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993 +3,258.51333715491046,0.4974599175527462,0.0,67.82036875969108,0.0771389580004324 +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.0854656670016993 +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141 +6,243.74387927163863,0.4690388953270789,0.0,63.94563606292509,0.0727318329991248 +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.074225792002835 +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.0776544169966655 +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708 +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.0730839579991879 +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632 +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.0799434170003223 +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.0794488749997981 +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.0797305839987529 +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.0777837919995363 +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.0775734999988344 +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.0781226660001266 +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.078081875002681 +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.0791336250003951 +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488 +21,257.9793695450014,0.4964323980981425,0.0,67.6802836073801,0.0769796250024228 +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.0782561670021095 +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.0792537500019534 +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041 +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.0780591249967983 +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.0775096249999478 +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.0782039170007919 +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.0776473750011064 +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.0781980419997125 +0,255.65537390140065,0.0,0.0,64.03179678521767,0.0776107909987331 +1,252.3971302607853,0.0,0.0,63.2157325989312,0.0766216669981076 +2,254.03647687991125,0.0,0.0,63.626325609258025,0.0771193330001551 +3,252.92870751153595,0.0,0.0,63.34887216872111,0.0767830410004535 +4,256.21770129194005,0.0,0.0,64.172638077338,0.0777815000001282 +5,261.83806978347053,0.0,0.0,65.58032330458661,0.0794877080006699 +6,257.89026530262356,0.0,0.0,64.59155076126875,0.0782892499992158 +7,254.00381288625172,0.0,0.0,63.61814454045324,0.0771094170013384 +8,255.43041857262065,0.0,0.0,63.97545416398356,0.0775424999992537 +9,254.5701162116187,0.0,0.0,63.75998165068225,0.0772813330004282 +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248 +11,250.66526969948472,0.0,0.0,62.78196841932783,0.0760959159997582 +12,253.81728616949164,0.0,0.0,63.57142680227183,0.0770527919994492 +13,252.96713941908897,0.0,0.0,63.35849787717756,0.0767947079984878 +14,239.62560934353888,0.0,0.0,60.01695989358342,0.072744542001601 +15,251.76288345726073,0.0,0.0,63.05687827165771,0.0764291250015958 +16,257.5634672163916,0.0,0.0,64.50970046284525,0.0781900420006422 +17,255.07685287249387,0.0,0.0,63.88689961214584,0.0774351660002139 +18,253.78612756335775,0.0,0.0,63.56362277489847,0.0770433329998923 +19,261.432764118169,0.0,0.0,65.47880988986569,0.0793646669990266 +20,253.1580604236211,0.0,0.0,63.40631621472186,0.0768526669999118 +21,255.3783986189558,0.0,0.0,63.96242517479779,0.0775267079989134 +22,255.35575189540887,0.0,0.0,63.95675304525136,0.0775198330011335 +23,249.2891719762051,0.0,0.0,62.437309089742904,0.0756781659983971 +24,253.92571378551105,0.0,0.0,63.59858373220023,0.0770857080024143 +25,253.67358237649097,0.0,0.0,63.53543455250894,0.077009167001961 +26,253.70103185415508,0.0,0.0,63.542309586461194,0.0770174999997834 +27,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622 +28,254.50876744267657,0.0,0.0,63.74461615358363,0.0772627089972957 +0,251.53573576786724,0.0,0.0,62.72152708777785,0.0744095830013975 +1,261.23641907506607,0.0,0.0,65.1404345601695,0.0772792499992647 +2,259.69001833656097,0.0,0.0,64.75483282643327,0.076821792001283 +3,261.4181167235588,0.0,0.0,65.18574165717872,0.0773330000010901 +4,260.86401158116945,0.0,0.0,65.04757313574873,0.0771690839974326 +5,249.72157861361,0.0,0.0,62.269159130020775,0.073872917000699 +6,260.1970815239249,0.0,0.0,64.88127123227001,0.0769717920011316 +7,259.727625526503,0.0,0.0,64.764210342417,0.0768329170023207 +8,261.2393769415889,0.0,0.0,65.14117211702067,0.0772801249986514 +9,267.88415944731423,0.0,0.0,66.79807746549119,0.0792457919997104 +10,260.33046618014515,0.0,0.0,64.91453127503361,0.0770112499994866 +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019 +12,262.63957446676875,0.0,0.0,65.49031744516148,0.0776943329983623 +13,258.95505728780233,0.0,0.0,64.57156710004472,0.0766043750008975 +14,259.6273385675486,0.0,0.0,64.73920335407234,0.0768032500018307 +15,261.7203838407915,0.0,0.0,65.26111327435025,0.0774224169981607 +16,262.19885205972054,0.0,0.0,65.38042140073868,0.0775639580024289 +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099 +18,260.1817276561712,0.0,0.0,64.8774426787276,0.0769672500027809 +19,238.90592081951175,0.0,0.0,59.57222793162153,0.0706734170016716 +20,244.5389668999695,0.0,0.0,60.97685241268609,0.0723397910005587 +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988 +22,259.8796025059062,0.0,0.0,64.80210646163543,0.0768778750025376 +23,259.9752413748415,0.0,0.0,64.82595442856649,0.0769061669998336 +24,260.9768297690729,0.0,0.0,65.07570484040285,0.0772024580001016 +25,261.8691223893613,0.0,0.0,65.29820187678934,0.0774664170021424 +26,259.81227464687464,0.0,0.0,64.78531796786092,0.0768579579998913 +27,259.9996074518044,0.0,0.0,64.83203021557779,0.0769133750000037 +28,259.53803797523506,0.0,0.0,64.71693586391773,0.0767768330006219 +29,238.99902099587555,0.0,0.0,59.5954428645449,0.0707009580000885 +0,237.2903027127171,0.3735384536996727,0.0,63.37702431104448,0.0720150829984049 +1,254.30572604705935,0.4003238505266577,0.0,67.92161330602293,0.0771790830003738 +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.076375916996767 +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.0744619170000078 +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.0772538749988598 +5,254.06793847194996,0.3999495292750097,0.0,67.85810346699333,0.0771069170004921 +6,236.36440535324107,0.3720809214533507,0.0,63.129729673251845,0.0717340829978638 +7,253.92130730041657,0.3997187049199788,0.0,67.81894026808975,0.077062415999535 +8,255.6341646934731,0.4024150565816184,0.0,68.27642126668127,0.0775822499999776 +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.0774064999968686 +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.073707874998945 +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.0794006249998346 +12,242.49408311058815,0.3817301583795169,0.0,64.76688353839138,0.073594375000539 +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.0757026249993941 +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.078668625003047 +15,240.73660801776333,0.3789635702758966,0.0,64.29748575681046,0.0730610000027809 +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.0800764999985403 +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.0802019589973497 +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.0784857090002333 +19,255.1599602642359,0.4016685718445272,0.0,68.14976768962146,0.0774383339994528 +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.0785644589996081 +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.0799249170013354 +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.0784903749990917 +23,254.37094085870467,0.400426510600086,0.0,67.93903129848127,0.0771988750020682 +24,257.3998773220497,0.4051946120772132,0.0,68.74801918243385,0.07811812500222 +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.0782012919989938 +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.0796113340002193 +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.0793126249991473 +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.0785715840029297 +29,253.68324295352303,0.3993439479787848,0.0,67.75535650706716,0.0769901660023606 +0,259.3603261187444,0.0,0.0,65.0750093613154,0.0772384160009096 +1,259.0137620395562,0.0,0.0,64.98805442477995,0.0771352080009819 +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189 +3,242.06494915581175,0.0,0.0,60.73549901826075,0.0720877919993654 +4,264.44449718901984,0.0,0.0,66.35065735630297,0.0787525000014284 +5,258.4949635864557,0.0,0.0,64.85788488536977,0.0769807079996098 +6,260.75512162880096,0.0,0.0,65.42497164055966,0.0776537910023762 +7,258.54729338873193,0.0,0.0,64.87101473612205,0.0769962919985118 +8,258.4187119612678,0.0,0.0,64.83875291057171,0.0769579999978304 +9,256.03319274883137,0.0,0.0,64.24021231107454,0.076247583998338 +10,259.9925953597714,0.0,0.0,65.23364937921801,0.0774267080014396 +11,260.68391024286916,0.0,0.0,65.40710429100974,0.0776325840015488 +12,266.00341096992025,0.0,0.0,66.74179786111225,0.0792167500003415 +13,262.4791342007781,0.0,0.0,65.85753638914451,0.0781672080011048 +14,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304 +15,259.2768012481966,0.0,0.0,65.0540524870928,0.0772135420011181 +16,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263 +17,249.63999413559765,0.0,0.0,62.63612171699325,0.0743436669981747 +18,256.52512449555974,0.0,0.0,64.36364083810693,0.0763940830001956 +19,257.38978857591655,0.0,0.0,64.58059006841385,0.0766515830000571 +20,260.0975303138043,0.0,0.0,65.25997816750345,0.077457957999286 +21,258.5177705738045,0.0,0.0,64.86360729071002,0.0769875000005413 +22,248.91608058597623,0.0,0.0,62.45448761079295,0.0741280830006871 +23,261.7960764426832,0.0,0.0,65.68615323788339,0.0779637910018209 +24,259.62770375529885,0.0,0.0,65.14209596034219,0.0773180420001153 +25,260.6953808942086,0.0,0.0,65.40998234392734,0.077636000001803 +26,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981 +27,258.4513106522235,0.0,0.0,64.84693211111042,0.0769677080024848 +28,259.19789015504335,0.0,0.0,65.03425323636505,0.0771900420004385 +0,261.95098582591453,0.915083014270888,0.0,66.25878862591058,0.0779010410005867 +1,245.40833969424455,0.8572939800419981,0.0,62.07443448081875,0.072981459001312 +2,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.0765551250005955 +3,258.9009587470573,0.9044282424855152,0.0,65.48730422441415,0.0769939999991038 +4,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227 +5,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.0774625839985674 +6,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.0775410830028704 +7,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.0770794579984794 +8,258.61457516789665,0.9034278081942309,0.0,65.41486537110077,0.0769088330016529 +9,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.0707159580015286 +10,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.0780311669986986 +11,260.6072019459684,0.9103887246139408,0.0,65.91888728223164,0.077501415998995 +12,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548 +13,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.0768012089974945 +14,260.0306551965286,0.9083746526466904,0.0,65.77305355275111,0.0773299579996091 +15,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.0772179580017109 +16,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619 +17,260.3005048322299,0.9093173283051116,0.0,65.84131025320345,0.0774102080031298 +18,264.0587854421345,0.9224462682025656,0.0,66.79194275318578,0.0785278750008728 +19,263.0532231845429,0.9189335005799792,0.0,66.5375923568096,0.0782288330010487 +20,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.0775990420006564 +21,258.78481075864437,0.9040224984452576,0.0,65.45792535038811,0.0769594589983171 +22,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.0775372499992954 +23,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.077450917000533 +24,252.4247090150945,0.8818045210774421,0.0,63.84917921134812,0.0750680420023854 +25,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.0768218749981315 +26,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.0772714170016115 +27,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766 +28,251.73803334741703,0.8794057317091811,0.0,63.67548909227589,0.0748638330005633 +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.0750980420016276 +1,246.76674350378295,0.5470832863281573,0.0,65.48908751045883,0.0748969999986002 +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.0753702500005601 +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.0801031660012085 +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.0787539170014497 +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.0802945840005122 +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732 +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008 +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956 +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.0795499999985622 +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.0788625000022875 +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.0737082090017793 +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.0777287089986202 +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.0809930830000666 +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.0782412090011348 +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.0782246669987216 +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.0764459579986578 +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.0785907919998862 +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.0798172499999054 +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879 +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.0777190000007976 +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.0745992910015047 +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.0789691250029136 +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.077969292000489 +24,251.71874980934945,0.5580619127228665,0.0,66.80329367006078,0.0764000000017404 +25,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.0773807089972251 +26,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.0778139169997302 +27,252.35079120270456,0.5594631521186721,0.0,66.9710302683234,0.0765918329998385 +28,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.0767333750009129 +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.0754009170013887 +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.0771903749991906 +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.0770712499979708 +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.0776679580012569 +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.0779796249989885 +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.0773913749981147 +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.0775697919998492 +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.0763929170025221 +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.077310500000749 +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.078158500000427 +10,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.0771376249977038 +11,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673 +12,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.0769387920008739 +13,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766 +14,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.0772323329983919 +15,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.0768300420022569 +16,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.0776397079971502 +17,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665 +18,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.0771370830007072 +19,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.0776909169981081 +20,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.0772428750024118 +21,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409 +22,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.0776754579965199 +23,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.0769548329990357 +24,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.0770484999993641 +25,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.0768427919974783 +26,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.076798707999842 +27,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.0777810409999801 +28,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901 +0,253.53427688728465,0.0,0.0,64.57760820245201,0.076206000001548 +1,258.26881641088414,0.0,0.0,65.78354075771735,0.0776290829999197 +2,255.5581794818601,0.0,0.0,65.09311557446122,0.0768143340028473 +3,258.37666645619265,0.0,0.0,65.81101119704435,0.0776614999995217 +4,251.4109813828545,0.0,0.0,64.03678450450256,0.0755677910019585 +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029 +6,257.9566378142825,0.0,0.0,65.70402587969754,0.0775352499986183 +7,257.22664634671185,0.0,0.0,65.51809006240816,0.0773158330011938 +8,253.8991312230035,0.0,0.0,64.67054009565513,0.0763156659995729 +9,251.0245017908568,0.0,0.0,63.938344451438795,0.0754516249980952 +10,254.54456469819945,0.0,0.0,64.83493818254766,0.0765096670002094 +11,255.85774223615337,0.0,0.0,65.16941707663403,0.0769043750005948 +12,255.93204323154933,0.0,0.0,65.188342251678,0.0769267080031568 +13,259.880176018943,0.0,0.0,66.19396948049216,0.0781134169992583 +14,255.01172304341273,0.0,0.0,64.95392788664633,0.0766500829995493 +15,257.21028768275835,0.0,0.0,65.51392335404637,0.0773109159999876 +16,258.4208884003968,0.0,0.0,65.8222749497086,0.0776747919990157 +17,254.56563433542095,0.0,0.0,64.84030482091373,0.0765160000009927 +18,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036 +19,253.8269129094721,0.0,0.0,64.65214539962614,0.0762939589985762 +20,253.50017554675208,0.0,0.0,64.56892226445922,0.076195749999897 +21,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575 +22,256.791646381911,0.0,0.0,65.40729140575363,0.077185082998767 +23,258.8575518455188,0.0,0.0,65.93349731073064,0.0778060420016117 +24,254.13770416501097,0.0,0.0,64.73130690859188,0.0763873750001948 +25,255.17931863433267,0.0,0.0,64.99661608857218,0.0767004580011416 +26,255.7738762440398,0.0,0.0,65.14805560533038,0.0768791670016071 +27,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329 +28,254.6501956683362,0.0,0.0,64.86184340217827,0.076541417001863 +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645 +1,247.59900572459188,0.0,0.0,63.63541223539677,0.0749709170013375 +2,252.59749193776693,0.0,0.0,64.92007301098222,0.0764844170007563 +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751 +4,255.00742611955113,0.0,0.0,65.53945011497832,0.0772141250017739 +5,254.3331440184321,0.0,0.0,65.36615289457113,0.0770099579967791 +6,239.8215196985124,0.0,0.0,61.63652081022233,0.0726159590012684 +7,252.36520681402695,0.0,0.0,64.86037341904694,0.0764140829996904 +8,252.1722820871298,0.0,0.0,64.81078984139654,0.0763556669990066 +9,253.17365705842755,0.0,0.0,65.06815318950152,0.0766588750011578 +10,254.7703291078643,0.0,0.0,65.47851381988168,0.0771423340011097 +11,257.12521884407045,0.0,0.0,66.08374395274846,0.0778553750024002 +12,257.5769881962842,0.0,0.0,66.19985317895198,0.0779921670000476 +13,252.49634648493628,0.0,0.0,64.89407762151053,0.0764537909999489 +14,256.16553921217854,0.0,0.0,65.83709672243897,0.0775647920017945 +15,252.85330477462892,0.0,0.0,64.98581945968536,0.0765618749974237 +16,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322 +17,253.6318929035833,0.0,0.0,65.1859243688412,0.0767976249990169 +18,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254 +19,245.8200036875109,0.0,0.0,63.17819098094965,0.0744322499995178 +20,253.09219510207856,0.0,0.0,65.04721665480663,0.0766342089991667 +21,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297 +22,237.6873493714192,0.0,0.0,61.08801776535877,0.0719697499989706 +23,252.67647692470263,0.0,0.0,64.94037293985049,0.0765083329970366 +24,252.3727763729606,0.0,0.0,64.86231887113699,0.0764163749990984 +25,255.234202497438,0.0,0.0,65.59773390432493,0.0772827910004707 +26,252.58785824967035,0.0,0.0,64.91759705712458,0.0764815000002272 +27,254.14255755018047,0.0,0.0,65.31717027269754,0.0769522500013408 +28,253.90256744879193,0.0,0.0,65.25549042471276,0.0768795829972077 +0,249.7923844146721,0.0,0.0,64.11304733285456,0.0759544579996145 +1,251.5237567706763,0.0,0.0,64.55743060767458,0.0764809169995714 +2,236.44843625054185,0.0,0.0,60.68811833728591,0.0718969589979678 +3,254.81671512475305,0.0,0.0,65.40261888398953,0.0774822080020385 +4,254.0024857747179,0.0,0.0,65.19363443083687,0.0772346249977999 +5,250.58400715096883,0.0,0.0,64.3162294518006,0.0761951670028793 +6,253.13741623502708,0.0,0.0,64.97160106310882,0.0769715829992492 +7,247.96660298643684,0.0,0.0,63.64443252138948,0.0753992919999291 +8,251.19145867599536,0.0,0.0,64.47214120414525,0.0763798750012938 +9,256.62427379017913,0.0,0.0,65.86655654383826,0.0780318329998408 +10,252.7525020227826,0.0,0.0,64.87280692586343,0.0768545419996371 +11,252.65411359951872,0.0,0.0,64.84755402773163,0.0768246249972435 +12,257.1501948549435,0.0,0.0,66.00154225286055,0.0781917500025883 +13,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418 +14,251.44934635326925,0.0,0.0,64.53833203257409,0.0764582909978344 +15,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126 +16,251.21776837388165,0.0,0.0,64.4788939917046,0.0763878750003641 +17,251.416600645554,0.0,0.0,64.52992734436225,0.0764483339989965 +18,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213 +19,252.05912958228944,0.0,0.0,64.69484225251759,0.0766437079983006 +20,255.11256441560653,0.0,0.0,65.47855314288348,0.0775721669997437 +21,244.42520870193505,0.0,0.0,62.73547935246641,0.0743224589969031 +22,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758 +23,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994 +24,252.46364123963497,0.0,0.0,64.7986663746775,0.0767667079999228 +25,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086 +26,255.64108684697413,0.0,0.0,65.61420653255007,0.0777328750009473 +27,250.51795663338612,0.0,0.0,64.29927657323282,0.0761750829988159 +28,252.8123829029725,0.0,0.0,64.88817627235069,0.0768727499998931 +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.0759556669981975 +1,250.9902886146916,0.9006828538804723,0.0,65.11603447313637,0.0766364589981094 +2,251.08826581851417,0.901034446717156,0.0,65.14145333303291,0.0766663750000589 +3,251.6577197956367,0.9030779418503708,0.0,65.28919046266385,0.0768402499998046 +4,254.8982707317584,0.9147067131522432,0.0,66.12990755826587,0.0778297079996264 +5,256.4147688442029,0.9201486920246515,0.0,66.5233424752637,0.0782927500004007 +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.0775765830003365 +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.0764232500005164 +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.0776412500017613 +9,254.6710622884788,0.913891371848608,0.0,66.07096140179567,0.0777603330025158 +10,253.76932556597777,0.9106554745190588,0.0,65.83701800967418,0.0774850000016158 +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.0757235410019347 +12,251.66945440127165,0.9031200516792044,0.0,65.29223484732618,0.076843833001476 +13,251.2764451718155,0.9017097314778068,0.0,65.1902739201733,0.0767238329972315 +14,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.0771029589996032 +15,250.18161649107023,0.8977809204225009,0.0,64.90623543202673,0.076389542002289 +16,253.47757189478065,0.9096085115841412,0.0,65.76132646712013,0.0773959170001035 +17,248.6101232868392,0.8921415907422459,0.0,64.49853278255051,0.0759097080008359 +18,251.7260870200961,0.903323278780249,0.0,65.30692741403874,0.0768611249986861 +19,251.30523965227655,0.9018130609531456,0.0,65.19774425853853,0.07673262499884 +20,252.35899561673511,0.905594481878236,0.0,65.47112698615987,0.0770543750004435 +21,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.0770828749991778 +22,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.0753380000023753 +23,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.0723041249984817 +24,253.50431617204092,0.9097044838709604,0.0,65.76826490800424,0.0774040830001467 +25,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.0766381670000555 +26,252.60531086151025,0.906478388259008,0.0,65.53503014376236,0.0771295839986123 +27,253.74831266909396,0.9105800693867008,0.0,65.83156649788296,0.077478584000346 +28,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.0768664999995962 +0,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.0775276669992308 +1,389.8002261465144,0.3431340018895373,12.901838471046604,76.62182262193369,0.0799885419983184 +2,389.79007528132496,0.3431250662687719,12.901502491705823,76.61982729781678,0.0799864590007928 +3,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.0766496670003107 +4,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.0783959170003072 +5,368.8117548208933,0.3246582348775469,12.207149631395763,72.49618384815624,0.0756816249995608 +6,379.99108210302904,0.334499191992103,12.577169618903074,74.69366957183661,0.0779756669980997 +7,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.0752130000000761 +8,388.8351277233648,0.3422844434184549,12.869895072533906,76.43211621534098,0.0797904999999445 +9,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.0803932499984512 +10,381.6621806372591,0.3359702294342069,12.63248062672618,75.02215223265841,0.0783185830005095 +11,366.6756700911541,0.322777878601368,12.136448235411438,72.07630029168548,0.0752432919980492 +12,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.0785939159977715 +13,384.18386223037226,0.3381900195689896,12.715944735794013,75.51783136975538,0.0788360419974196 +14,378.7553163563533,0.3334113700320011,12.536267513203242,74.45075892814586,0.0777220829986617 +15,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.0786690409986476 +16,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.0785877500020433 +17,381.6906108958314,0.3359952560702742,12.63342162824231,75.02774068049223,0.0783244170015677 +18,388.1719679438419,0.341700676006903,12.847945417859556,76.30176095234145,0.0796544170007109 +19,378.5252623152303,0.3332088576718577,12.528653048461848,74.40553791812582,0.0776748750031401 +20,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513 +21,383.54607720273344,0.3376285890869132,12.694834949667936,75.39246394310773,0.0787051659972348 +22,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758 +23,373.0230141252263,0.3283653293355865,12.346536383018057,73.32397804063648,0.0765457919987966 +24,383.6628342422502,0.3377313681709948,12.698699443229406,75.41541451258315,0.0787291250017006 +25,383.9716733361366,0.3380032335705427,12.708921582252408,75.4761220563022,0.0787925000004179 +26,388.3768470521449,0.3418810273346346,12.85472662778226,76.3420334038239,0.0796964590008428 +27,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.0767264999994949 +28,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.071810417000961 +0,252.8448031031451,0.0,0.0,63.327795876031466,0.0765359580000222 +1,250.71246289168695,0.0,0.0,62.793727530579304,0.0758905000002414 +2,255.849573327428,0.0,0.0,64.08037403101984,0.0774454999991576 +3,259.473357102869,0.0,0.0,64.98799102141685,0.078542416998971 +4,255.35499678935537,0.0,0.0,63.956501830904415,0.0772957920016779 +5,253.22472132458208,0.0,0.0,63.42295062424645,0.0766509589993802 +6,253.2219661176063,0.0,0.0,63.42226055198546,0.0766501250000146 +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966 +8,254.19074916093857,0.0,0.0,63.664903050717285,0.0769433749992458 +9,255.66691023668932,0.0,0.0,64.0346240263434,0.077390207999997 +10,245.0917868305501,0.0,0.0,61.38596663568849,0.0741891249999753 +11,254.09728348032925,0.0,0.0,63.64149353044874,0.0769150829983118 +12,258.4168897008931,0.0,0.0,64.72338699886663,0.0782226250012172 +13,241.31589833068384,0.0,0.0,60.44025332366666,0.0730461659986758 +14,236.296204735648,0.0,0.0,59.18301517819063,0.0715267080013291 +15,254.9943518084654,0.0,0.0,63.86617428035477,0.0771866249997401 +16,257.59167485304476,0.0,0.0,64.5167027530485,0.0779728330016951 +17,255.1975237091272,0.0,0.0,63.917060944802486,0.0772481250023702 +18,254.1328005774134,0.0,0.0,63.65038918282778,0.0769258340005762 +19,254.61044282269503,0.0,0.0,63.770020000783035,0.0770704159986053 +20,252.7502373251944,0.0,0.0,63.30411082413631,0.076507333000336 +21,256.13602257519875,0.0,0.0,64.1521184341835,0.0775322080007754 +22,257.93167227093824,0.0,0.0,64.6018588915749,0.078075749999698 +23,256.7664632982533,0.0,0.0,64.31001933201313,0.0777230419989791 +24,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739 +25,255.20371797321877,0.0,0.0,63.918612367205384,0.0772500000020954 +26,253.60793655700468,0.0,0.0,63.51893114556863,0.0767669580018264 +27,254.7793397817627,0.0,0.0,63.81232212452318,0.0771215409986325 +28,254.67445023433228,0.0,0.0,63.78605136962657,0.0770897910006169 +0,256.736730168257,0.0,0.0,62.78061796370678,0.0759414589992957 +1,246.83770108103627,0.0,0.0,60.35997810072678,0.0730133750003005 +2,249.48762015903063,0.0,0.0,61.00797091874418,0.073797207998723 +3,261.96853136599685,0.0,0.0,64.05996631422177,0.077488999999332 +4,260.9436089466303,0.0,0.0,63.809338899864194,0.0771858330008399 +5,259.1546474245066,0.0,0.0,63.37187866657925,0.0766566670026804 +6,261.2578738137402,0.0,0.0,63.88618704912788,0.0772787909991166 +7,260.56553299065286,0.0,0.0,63.71688682984707,0.0770739999970828 +8,260.5077801721833,0.0,0.0,63.70276435648577,0.0770569169981172 +9,260.269297511551,0.0,0.0,63.64444746198333,0.0769863750028889 +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342 +11,268.07593877521344,0.0,0.0,65.55342933003354,0.0792955409997375 +12,261.1346195586505,0.0,0.0,63.85604730910659,0.0772423329981393 +13,259.16746372829186,0.0,0.0,63.375012676547826,0.0766604580021521 +14,260.80992855999216,0.0,0.0,63.776649626002715,0.0771462910015543 +15,259.6238641522187,0.0,0.0,63.48661766830046,0.0767954589973669 +16,250.8287784191757,0.0,0.0,61.33592845058567,0.0741939159997855 +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235 +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625 +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357 +20,260.7072425967597,0.0,0.0,63.75153951330592,0.0771159169999009 +21,260.39015821218334,0.0,0.0,63.6740018988115,0.0770221250022586 +22,262.73187065656884,0.0,0.0,64.24662800593482,0.0777147919980052 +23,262.80286575413186,0.0,0.0,64.26398865430983,0.0777357919978385 +24,259.5470914101739,0.0,0.0,63.46784419484701,0.0767727499987813 +25,259.2690272739524,0.0,0.0,63.39984832104239,0.0766904999982216 +26,263.9649879020873,0.0,0.0,64.54816593798147,0.0780795419996138 +27,259.8130390424965,0.0,0.0,63.53287718288986,0.0768514159972255 +28,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653 +0,255.4535357322803,0.0,0.0,63.94788166253961,0.0773206670019135 +1,253.46435879218197,0.0,0.0,63.44992945684153,0.0767185829972731 +2,231.36937798580223,0.0,0.0,57.91887578051573,0.0700308750019758 +3,256.5681585689286,0.0,0.0,64.22690606144654,0.077658041001996 +4,259.27963304187745,0.0,0.0,64.90567156856736,0.0784787499978847 +5,257.07130386219023,0.0,0.0,64.35285881281608,0.0778103330012527 +6,257.34139440968914,0.0,0.0,64.42047078898278,0.0778920839984493 +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725 +8,256.468082553313,0.0,0.0,64.2018539548648,0.0776277499971911 +9,255.38512022018003,0.0,0.0,63.93075515435044,0.0772999589971732 +10,254.8657300539408,0.0,0.0,63.800735811333155,0.0771427500003483 +11,256.0687333702568,0.0,0.0,64.10188456423998,0.0775068750008358 +12,233.89707419467393,0.0,0.0,58.55163593229996,0.0707959579995076 +13,255.41444162612115,0.0,0.0,63.93809520463366,0.0773088339992682 +14,256.2091457030477,0.0,0.0,64.13703409237446,0.0775493750006717 +15,255.03298592111852,0.0,0.0,63.84260510224348,0.0771933750002062 +16,238.25646746995207,0.0,0.0,59.64292623090094,0.0721154589991783 +17,253.54145012996145,0.0,0.0,63.469227791199664,0.0767419170006178 +18,254.73825878542036,0.0,0.0,63.768825829851195,0.0771041670013801 +19,257.11687012908976,0.0,0.0,64.36426545173828,0.0778241249972779 +20,251.6776795914633,0.0,0.0,63.002668667246425,0.0761777910011005 +21,257.5273697281309,0.0,0.0,64.46702613464193,0.0779483750011422 +22,237.10632196795063,0.0,0.0,59.355009415634115,0.0717673330000252 +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745 +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247 +25,254.1629811907558,0.0,0.0,63.624816143544585,0.0769300419997307 +26,254.68470717332065,0.0,0.0,63.7554202132737,0.077087958001357 +27,254.7956626434966,0.0,0.0,63.78319578215078,0.0771215419990767 +28,255.26521799895795,0.0,0.0,63.90073993834724,0.0772636669971689 +29,237.74451089433737,0.0,0.0,59.51476774438824,0.0719605000012961 +0,406.90110086989495,1.1695525766824268,9.356420613459417,76.36490353632317,0.080162875001406 +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242 +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.0784781250004016 +3,401.51109823696424,1.1540601352656,9.2324810821248,75.35333824381271,0.0791009999993548 +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.0736787080022622 +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.0781110829993849 +6,396.616846417644,1.1399926264434777,9.11994101154782,74.43481266778001,0.0781367919989861 +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764 +8,399.3405038898903,1.147821213311038,9.182569706488303,74.94597333972072,0.0786733749991981 +9,383.8921206281695,1.1034180489777463,8.827344391821972,72.0467079038411,0.0756299160020717 +10,396.6972136294903,1.1402236252770876,9.1217890022167,74.44989553279808,0.0781526250029855 +11,396.0940256882952,1.1384898870066815,9.107919096053454,74.33669262220099,0.0780337920004967 +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.0781155000004218 +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.0828537080014939 +14,396.0908481484921,1.138480753829464,9.107846030635711,74.33609627945324,0.0780331659989315 +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.075443792000442 +16,374.5642575893283,1.0766070469217317,8.612856375373852,70.29610718136011,0.0737922500011336 +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.0755845000021508 +18,381.37974870457487,1.0961967584711765,8.76957406776941,71.57520011194151,0.0751349579986708 +19,408.4651216412204,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255 +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.0777786670005298 +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.0736387079996347 +22,400.4768776142425,1.1510874832094211,9.20869986567537,75.1592415507328,0.0788972500013187 +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.0792267500000889 +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.0778149590005341 +25,389.6991971410489,1.120109282508721,8.96087426006977,73.13654726968709,0.0767739580005582 +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.0779693330005102 +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.0744205830014834 +28,405.3831898437398,1.165189657171963,9.321517257375705,76.08003055652229,0.0798638340020261 +29,398.0772319408369,1.1441902008613116,9.153521606890491,74.70888958565034,0.078424499999528 +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878 +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405 +2,255.3331764989173,0.0,0.0,70.37239576741659,0.0769770410006458 +3,259.2942335745159,0.0,0.0,71.46410300265921,0.078171207998821 +4,258.6612396991297,0.0,0.0,71.28964351357979,0.0779803750010614 +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063 +6,257.37410271121684,0.0,0.0,70.9348955925995,0.0775923330002115 +7,256.01136788270634,0.0,0.0,70.55931214514888,0.0771815000007336 +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919 +9,259.045318948124,0.0,0.0,71.39549962396424,0.0780961660020693 +10,258.8377308561513,0.0,0.0,71.33828625449453,0.0780335829986142 +11,256.8371626413573,0.0,0.0,70.78690950000609,0.0774304580008902 +12,257.99811414343014,0.0,0.0,71.1068794298479,0.0777804579993244 +13,258.1165610601165,0.0,0.0,71.13952459336632,0.0778161670023109 +14,256.135891547354,0.0,0.0,70.5936321216249,0.0772190410025359 +15,256.2543384519732,0.0,0.0,70.62627728181748,0.0772547500018845 +16,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197 +17,253.0893623898181,0.0,0.0,69.75397799390524,0.0763005829976464 +18,253.0000819108746,0.0,0.0,69.72937139446263,0.0762736670003505 +19,240.37099932043577,0.0,0.0,66.24866900231768,0.0724662909997277 +20,247.79459427718265,0.0,0.0,68.29468656053892,0.0747043330011365 +21,256.24618193564646,0.0,0.0,70.62402926374595,0.0772522910010593 +22,254.47628482944975,0.0,0.0,70.13622779065612,0.0767187080018629 +23,257.38833929398254,0.0,0.0,70.93881933823452,0.0775966250002966 +24,256.62086741918284,0.0,0.0,70.7272963577338,0.0773652499992749 +25,257.5863909862953,0.0,0.0,70.99340437988461,0.0776563330000499 +26,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218 +27,256.10728569098626,0.0,0.0,70.5857480594236,0.0772104169991507 +28,261.6339654918951,0.0,0.0,72.1089566904453,0.0788765830002375 +0,261.6846194438566,0.0,0.0,70.7870578236059,0.0761451660000602 +1,264.8513555634606,0.0,0.0,71.64367650179537,0.0770666249991336 +2,269.77737005954486,0.0,0.0,72.97618917951907,0.0784999999996216 +3,266.95043658088093,0.0,0.0,72.21148889242174,0.0776774170008138 +4,245.5969253936852,0.0,0.0,66.43525246569763,0.0714639580000948 +5,264.9049123942919,0.0,0.0,71.65816390456655,0.0770822090016736 +6,268.0374194355293,0.0,0.0,72.50552343808509,0.0779937080005765 +7,249.4505628149961,0.0,0.0,67.47768153758304,0.0725852920004399 +8,261.54973419510105,0.0,0.0,70.7505706585463,0.0761059169999498 +9,243.2800464083468,0.0,0.0,65.80852458595446,0.0707897909996972 +10,270.3172100512772,0.0,0.0,73.12221871993097,0.0786570830023265 +11,272.70482912023755,0.0,0.0,73.76808216217084,0.0793518339996808 +12,270.90029688215856,0.0,0.0,73.2799467564564,0.0788267499992798 +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053 +14,264.864243015556,0.0,0.0,71.64716262497149,0.0770703749985841 +15,267.43801192267176,0.0,0.0,72.34338057174956,0.0778192920006404 +16,268.4402228149727,0.0,0.0,72.61448385835281,0.0781109159979678 +17,245.10605773741895,0.0,0.0,66.30247019808976,0.0713211250003951 +18,270.45009515394486,0.0,0.0,73.15816483501571,0.0786957499985874 +19,269.58577658088814,0.0,0.0,72.92436214176223,0.0784442500007571 +20,264.0393016153403,0.0,0.0,71.42401166286199,0.0768303329969057 +21,264.65732548978616,0.0,0.0,71.59119035234609,0.0770101659982174 +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325 +23,267.9255872644627,0.0,0.0,72.47527225107741,0.0779611670004669 +24,268.883125097681,0.0,0.0,72.73429124161788,0.0782397920011135 +25,266.39670220014995,0.0,0.0,72.06170084713644,0.0775162909994833 +26,270.10857762340623,0.0,0.0,73.06578255732055,0.0785963749985967 +27,269.86486039771097,0.0,0.0,72.99985577345161,0.078525457996875 +28,266.2155630292543,0.0,0.0,72.01270175429117,0.0774635830020997 +29,267.78210693862854,0.0,0.0,72.43646007272716,0.077919416999066 +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185 +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.0771942079991276 +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.0778375420013617 +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.0770157910010311 +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.0775850829995761 +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.0741231249994598 +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.078746458999376 +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.0746817090002878 +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.0783254170019063 +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.0784614170006534 +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.0773908750015834 +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.0808109999998123 +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595 +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.0778277089993935 +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.0793734999970183 +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.0783875000015541 +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.0790057079975667 +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.0785369580007682 +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.0782466659984493 +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.0789429169999493 +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107 +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.0796699590027856 +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185 +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641 +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732 +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.0785001250005734 +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594 +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134 +28,255.42040166006765,0.5993439225500219,0.0,68.29191028611638,0.0778273750001972 +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.0758569999998144 +0,405.8431369282208,0.3014184050465412,12.492118342484432,76.292347410669,0.0778078330004063 +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.077850457997556 +2,374.8841940857946,0.2784252968123578,11.539181745667715,70.47253623761678,0.0718724159996782 +3,395.92910555470706,0.2940552855250341,12.186957944537523,74.42866004733642,0.0759071249995031 +4,396.96491328086944,0.2948245766238508,12.21884078674404,74.6233761721258,0.0761057090021495 +5,403.6617775393808,0.2997983163768301,12.424974667617516,75.88228496737989,0.0773896249993413 +6,410.7431055614168,0.3050575961423297,12.642942595676551,77.21346711246967,0.0787472499978321 +7,408.4530767282583,0.3033567990224727,12.57245400393137,76.7829764636881,0.0783082080015447 +8,412.0644822883901,0.3060389784284131,12.6836154393109,77.46186587332501,0.0790005829985602 +9,414.61052649200695,0.3079299173484124,12.76198435232865,77.94048352440929,0.0794887080010084 +10,401.4493414263137,0.2981551471230255,12.356874430765387,75.46638057180579,0.0769654590003483 +11,418.55140908310005,0.3108567982957502,12.883287307146093,78.68130961307988,0.080244249998941 +12,371.5974824961197,0.2759842665840136,11.438014603981898,69.85468436426478,0.0712422910000896 +13,412.4000411444283,0.3062881969219223,12.69394416131967,77.52494584312656,0.0790649160007888 +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549 +15,411.7995528547654,0.3058422161819515,12.67546073731866,77.4120631624984,0.0789497909972851 +16,409.77163159678435,0.304336085523276,12.613039988909108,77.03084475800254,0.0785609999984444 +17,420.8577378253096,0.3125697013061385,12.954277620798852,79.11486439726484,0.0806864169971959 +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.0790608339993923 +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.076155833001394 +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.0787210829985269 +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.0815035830019041 +22,410.9195773893686,0.305188661206826,12.64837451446068,77.24664113657218,0.0787810829970112 +23,408.3198556922807,0.303257856183407,12.568353372934537,76.7579329317557,0.0782826670001668 +24,402.4147283665603,0.2988721369284571,12.386589674923831,75.64785865811392,0.0771505420016183 +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.0792156669995165 +26,382.7631322481759,0.2842769590884291,11.781700637776003,71.95365697816015,0.0733829580021847 +27,386.7318315968666,0.2872244994530284,11.903859810664404,72.69971219488876,0.0741438330005621 +28,399.2001692552227,0.2964846941159436,12.28764343391633,75.0435703551244,0.0765342500017141 +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.075706124996941 +0,243.61769021404157,0.0,0.0,60.71178863926628,0.0740814170021622 +1,251.461612143386,0.0,0.0,62.666566758453214,0.0764666659997601 +2,254.063240155725,0.0,0.0,63.31491659653083,0.0772577920033654 +3,252.81360526435807,0.0,0.0,63.00349598773077,0.0768777919984131 +4,252.19796606709363,0.0,0.0,62.850072987990785,0.0766905829987081 +5,255.2020225366119,0.0,0.0,63.598711731251065,0.0776040829987323 +6,255.2195634669661,0.0,0.0,63.60308309383669,0.0776094169996213 +7,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134 +8,251.7152386884793,0.0,0.0,62.72977284658861,0.0765437909976753 +9,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569 +10,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293 +11,256.09101607265075,0.0,0.0,63.82025716834245,0.0778744159979396 +12,258.54822246754117,0.0,0.0,64.43261579943601,0.0786216250016877 +13,251.91734740702609,0.0,0.0,62.78014021437615,0.0766052500002842 +14,256.0914304298579,0.0,0.0,63.82036043000281,0.0778745419993356 +15,256.1073238132674,0.0,0.0,63.82432120860419,0.0778793749996111 +16,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663 +17,252.78893813177984,0.0,0.0,62.99734870943538,0.0768702909990679 +18,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129 +19,254.19532983990769,0.0,0.0,63.34783457133176,0.0772979590001341 +20,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895 +21,254.8345312291614,0.0,0.0,63.50712948792096,0.0774923329990997 +22,256.2513343634823,0.0,0.0,63.86020997381984,0.0779231669985165 +23,256.51962110224747,0.0,0.0,63.927069518232734,0.0780047499974898 +24,254.42100073848025,0.0,0.0,63.404073852987096,0.0773665829983656 +25,252.18371695261897,0.0,0.0,62.84652197646316,0.0766862500022398 +26,253.7606969687288,0.0,0.0,63.23952002739407,0.077165792001324 +27,252.71604495264393,0.0,0.0,62.97918305290586,0.0768481249979231 +28,253.57256771842907,0.0,0.0,63.192636472792486,0.077108583998779 +0,388.73038558373344,0.3723471126280971,12.795200779401885,75.75571255106195,0.0790761250027571 +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.081851082999492 +2,386.16305637510675,0.3698879850336271,12.710696212973732,75.25539186411433,0.0785538749987608 +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597 +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908 +5,374.82924555374433,0.3590318444001382,12.337639743932025,73.04666070613722,0.0762483340004109 +6,356.617671661771,0.3415878081051446,11.738199223976787,69.4975922308467,0.0725437080000119 +7,391.64449222473655,0.3751384025141154,12.891119650030513,76.32361316605368,0.0796689169983437 +8,394.2085425197358,0.3775943893867201,12.975516289834564,76.82329485886179,0.0801905000007536 +9,394.23025605863455,0.3776151877956269,12.976230998795184,76.82752638969211,0.0801949170017906 +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.0770093749997613 +11,390.7969073771063,0.3743265396332436,12.8632210892151,76.15843597265447,0.0794965000022784 +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.0793902500008698 +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.0770231249989592 +14,361.2965867125136,0.3460695275024076,11.89220739962819,70.40941841367166,0.0734955000007175 +15,395.7865466718811,0.3791058876167443,13.027456865375395,77.13081604420672,0.0805115000002842 +16,391.401769634818,0.3749059096118946,12.883130348481467,76.27631142831092,0.0796195420007279 +17,381.2733721004155,0.3652043794065282,12.549750492333423,74.30249101016456,0.0775592080026399 +18,379.5206519126656,0.3635255286519786,12.492059075495265,73.96092119301164,0.077202667001984 +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.0731172079977113 +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.0759907499996188 +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.078528041998652 +22,386.9403832051992,0.3706325509628345,12.736282205813769,75.40687718680215,0.0787120000022696 +23,390.2086362678317,0.3737630615592258,12.843857933580669,76.04379379723157,0.079376833000424 +24,376.20897175435175,0.3603534212206434,12.383053929218477,73.31554151743637,0.0765289999981178 +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.0730223749997094 +26,382.8300756539037,0.3666954747642755,12.60098995099056,74.60586113840442,0.0778758750020642 +27,379.2515063336283,0.3632677263732072,12.48320005173385,73.90847014756707,0.0771479169998201 +28,386.50532596295153,0.3702158294664286,12.721962139846369,75.32209330416975,0.078623499997775 +29,385.28085865824175,0.3690429680634499,12.681658357089464,75.08346932054555,0.0783744170003046 +0,254.7701558196424,0.0,0.0,63.11246118665094,0.0760953749995678 +1,253.09222999705185,0.0,0.0,62.69680014498916,0.0755942079995293 +2,263.90234613131526,0.0,0.0,65.374715981528,0.0788229999998293 +3,259.7544057697603,0.0,0.0,64.3471751997949,0.0775840829992375 +4,258.13381843399344,0.0,0.0,63.9457182277288,0.0771000419990741 +5,258.38938416388623,0.0,0.0,64.00902777101736,0.0771763749980891 +6,257.3555370297845,0.0,0.0,63.75291991994662,0.0768675830004212 +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052 +8,245.76644644425735,0.0,0.0,60.88203409183789,0.0734061250004742 +9,256.3932541903437,0.0,0.0,63.51454020015801,0.0765801660018041 +10,256.7573565822389,0.0,0.0,63.6047367853998,0.0766889169972273 +11,256.6365493698801,0.0,0.0,63.57481004426902,0.0766528340027434 +12,254.0235434990149,0.0,0.0,62.92750804347181,0.0758723750004719 +13,259.3886326959798,0.0,0.0,64.25656474800229,0.0774748330004513 +14,257.7577233561085,0.0,0.0,63.8525507767409,0.0769877089987858 +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107 +16,258.37473651085224,0.0,0.0,64.00539920851713,0.0771720000011555 +17,257.275184131123,0.0,0.0,63.733014648147055,0.0768435829995723 +18,251.4304885893039,0.0,0.0,62.28514835727747,0.0750978750002104 +19,260.1250602942841,0.0,0.0,64.43899489985908,0.0776947910017042 +20,258.7400910767803,0.0,0.0,64.09590598623336,0.0772811249989899 +21,257.76525643655174,0.0,0.0,63.8544168950292,0.0769899589977285 +22,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708 +23,254.9226321277627,0.0,0.0,63.150233095402065,0.0761409169972466 +24,261.7944753894208,0.0,0.0,64.85254763745215,0.0781934159967931 +25,259.7657053965152,0.0,0.0,64.34997437873601,0.0775874579994706 +26,255.6566859729138,0.0,0.0,63.33207521369086,0.0763601660000858 +27,259.06303605935,0.0,0.0,64.17590692909216,0.0773775829984515 +28,258.87526808998655,0.0,0.0,64.12939245945022,0.0773215000008349 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/mac_report.md new file mode 100644 index 000000000..abd4a7433 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 489.50 ms | 75.33 ms | +| **Average Power** | 4.329 W | 4.613 W | +| **Total Energy** | 1907.29 J | 312.72 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.37% | 0.00e+00 | +6.288 | large | βœ… | +| `gpu_mj` | +83.10% | 1.39e-224 | +1.934 | large | βœ… | +| `ane_mj` | +86.98% | 5.53e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.83% | 0.00e+00 | +28.185 | large | βœ… | +| `time_s` | +84.47% | 0.00e+00 | +111.097 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.4% lower energy (Cohen’s d = +6.288, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.934, large) +- **`ane_mj`**: 87.0% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.185, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +111.097, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..7aa2a9216 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.7525821795537,1.3534612562180337,0.0,463.1808508779323,0.4898252499988302 +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384 +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099 +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248 +4,1587.2227722401722,1.3746542809853626,0.0,470.4335174757469,0.4974951250005688 +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653 +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598 +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184 +8,1564.261785807479,1.35476834005295,0.0,463.62816047031566,0.4902982909989077 +9,1583.7046608844691,1.3716073319869715,0.0,469.3907920758341,0.4963924170006066 +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031 +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.4984325410005112 +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.491652000000613 +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357 +14,1582.78900463182,1.3708143048142083,0.0,469.1194027036136,0.4961054160012281 +15,1586.2664412042632,1.3738260263915247,0.0,470.1500725926704,0.4971953749991371 +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225 +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.4955564580013742 +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672 +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756 +20,1562.7080469921625,1.3534226853966762,0.0,463.1676511902626,0.4898112910013878 +21,1563.4943568701915,1.354103688882084,0.0,463.40070387084194,0.4900577499975043 +22,1565.315558919256,1.3556809868121988,0.0,463.9404859990722,0.4906285830002161 +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271 +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.4963112500008719 +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042 +26,1585.4583311232377,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681 +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.4942537500028265 +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749 +29,1529.1152277892556,1.3243287777642476,0.0,453.2111483124429,0.4792820420007047 +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.4996582499989017 +1,1533.5334001790511,1.8921445940257144,0.0,474.4635558317462,0.493004457999632 +2,1543.8059871684454,1.9048193880252269,0.0,477.6418160183257,0.4963069170007657 +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377 +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006 +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134 +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524 +7,1522.6814694210657,1.87875497882981,0.0,471.1060510949909,0.4895157499995548 +8,1546.9721730979702,1.908725974989378,0.0,478.62140983374,0.4973247910020291 +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562 +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276 +11,1522.9656993374065,1.879105674875688,0.0,471.1939896666353,0.4896071250004752 +12,1544.25585273976,1.9053744530200296,0.0,477.7810010002682,0.49645154099926 +13,1546.7443256761674,1.908444846278796,0.0,478.55091557654094,0.4972515419976844 +14,1550.8537971977223,1.9135153027311336,0.0,479.8223547708087,0.4985726659979264 +15,1523.3470075656658,1.8795761506427464,0.0,471.3119635287153,0.4897297089992207 +16,1517.6756261895746,1.8725785374116448,0.0,469.55728131973046,0.4879064580018166 +17,1526.438800689855,1.883390948315296,0.0,472.26854077667593,0.4907236670005659 +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595 +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093 +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216 +21,1532.4807276685026,1.890845757886976,0.0,474.1378669733079,0.4926660419987456 +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.4991075840007397 +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354 +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.4886628750027739 +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164 +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348 +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517 +28,1550.5286132950594,1.913114075758564,0.0,479.72174534766935,0.498468124998908 +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037 +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976 +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595 +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.4905380419986613 +3,1542.6536762485855,0.7725528459014843,0.0,473.2725912500832,0.4981489999991026 +4,1543.401933683681,0.7729275692887551,0.0,473.5021500555895,0.4983906249981373 +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.4949968340006307 +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.498344999999972 +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.4981494999992719 +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449 +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929 +10,1537.626197619399,0.7700351110511502,0.0,471.7302049874221,0.49652554199929 +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289 +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177 +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.4986532499970053 +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.4899813329975586 +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.4892707910003082 +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.4929174160024558 +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781 +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552 +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.4907241250002698 +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491 +21,1516.8447946320175,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654 +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525 +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571 +24,1541.3760009365585,0.7719129928264602,0.0,472.8806116923837,0.4977364170008513 +25,1542.692772983568,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102 +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.4900904159985657 +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.4966319170016504 +28,1518.901438072084,0.760657849971867,0.0,465.98561330885246,0.4904790000000503 +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882 +0,2388.293804473947,3.948256730756337,88.5680980195934,516.2847572505955,0.5047006250024424 +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839 +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086 +3,2411.1969694915374,3.9861195662529263,89.41744484636862,521.2358042990056,0.5095405829997617 +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725 +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035 +6,2372.850397511069,3.922726146800221,87.99539076762868,512.9463088570119,0.5014370829994732 +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908 +8,2354.685839084009,3.892697035668036,87.32177163909569,509.0196208504898,0.4975985000019136 +9,2376.2567192107217,3.928357377159141,88.12171167237496,513.6826638098775,0.5021569159980572 +10,2377.0903590593543,3.929735525918403,88.15262658564419,513.8628742789912,0.502333082997211 +11,2387.2517582095043,3.946534050669975,88.52945450952055,516.0594949308281,0.5044804170029238 +12,2356.9182072270733,3.896387520703783,87.4045573500247,509.5021986818592,0.4980702499997278 +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117 +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978 +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944 +16,2396.136077101009,3.9612213440824777,88.85892286259592,517.9800452473951,0.5063578749977751 +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.4989800420007668 +18,2405.715621948096,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489 +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676 +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362 +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782 +22,2396.5872071287085,3.961967138910976,88.87565268387587,518.077567401664,0.5064532090000284 +23,2363.0508100276948,3.906525758402701,87.63198036010125,510.8279021368955,0.4993662080014474 +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441 +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081 +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673 +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922 +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745 +29,2355.1391363948715,3.893446413385005,87.33858183245853,509.11761151297134,0.4976942920002329 +0,1541.6676935631915,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725 +1,1539.9339925655115,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675 +2,1537.4033292502131,1.4726085529216604,0.0,466.3483540093277,0.4953739999982645 +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.496548333998362 +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737 +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737 +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.4963964589987881 +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326 +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491 +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484 +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793 +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.4901659580027626 +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843 +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972 +14,1541.2718674655523,1.476314049296506,0.0,467.5218173385799,0.4966204999982437 +15,1540.4087008558995,1.4754872613562258,0.0,467.2599886304011,0.4963423750014044 +16,1531.2747826396396,1.4667382975475476,0.0,464.4893508642619,0.4933992920014134 +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.4963049580001097 +18,1522.1950456773989,1.4580412314917617,0.0,461.73514817286826,0.4904736669996055 +19,1538.037096059261,1.4732156092521662,0.0,466.54059771181096,0.4955782090000866 +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977 +21,1559.845791710162,1.4941051644733354,0.0,473.1559400402603,0.5026052920002257 +22,1514.2267569754815,1.450408771049312,0.0,459.3180867227526,0.4879061669998918 +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.4904113750017131 +24,1521.4884764967403,1.4573644410888318,0.0,461.52082095754054,0.490246000001207 +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.4877654580013768 +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.488684291998652 +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.4885777920026157 +28,1545.923787001248,1.4807699109207355,0.0,468.9329076993075,0.4981194169995433 +29,1523.710854713787,1.4594931558561175,0.0,462.1949462204351,0.4909620830003405 +0,1526.770791456814,1.689345447459375,0.0,462.4831595574077,0.4918107500016049 +1,1530.8290010789997,1.6938357861457298,0.0,463.71245580718977,0.4931180000021413 +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.4902934160018048 +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388 +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.4919111670023994 +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108 +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786 +7,1541.6151929447517,1.705770520701691,0.0,466.9797649026864,0.4965924999996787 +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964 +9,1541.711816984989,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112 +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.4913567079966014 +11,1522.1852241350612,1.684271596608698,0.0,461.0941182715813,0.4903336250026768 +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.4971137079992331 +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119 +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.4966302089997043 +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702 +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.4984741250009392 +17,1542.471615652947,1.706718137600892,0.0,467.2391889643854,0.4968683750012133 +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831 +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757 +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121 +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.497358874999918 +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191 +23,1544.7746825942847,1.709266441298024,0.0,467.9368245765296,0.4976102500004344 +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246 +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499 +26,1542.6620170112014,1.7069288134073437,0.0,467.29686456457506,0.4969297080024262 +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994 +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048 +29,1542.809736148168,1.7070922620749058,0.0,467.3416110409772,0.4969772920012474 +0,1552.5755589394023,1.275546910247925,0.0,466.24596271957057,0.4975988330006657 +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.496548333998362 +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.4974576250024256 +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449 +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334 +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.4977821669999684 +6,1537.704995292508,1.2633297260959353,0.0,461.7802604071722,0.4928328329988289 +7,1550.9853290718895,1.2742404277502393,0.0,465.7684089855479,0.4970891660013876 +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838 +9,1551.9411325247231,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125 +10,1520.1867380960591,1.2489372807742254,0.0,456.5194428935261,0.4872182500002964 +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.4970620829990366 +12,1524.5508959441925,1.25252273465244,0.0,457.83002064006297,0.4886169579986017 +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.4979272499986109 +14,1552.3800325555055,1.275386271963099,0.0,466.1872451991433,0.4975361670003622 +15,1533.394787700758,1.2597885960397988,0.0,460.4858841840212,0.4914514160009275 +16,1553.2691400031183,1.2761167344846496,0.0,466.454248473468,0.4978211250017921 +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.4989104170017526 +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086 +19,1554.660720229109,1.277260012727956,0.0,466.872146757666,0.4982671249999839 +20,1560.0134398376556,1.28165763764147,0.0,468.4795943905267,0.4999826660023245 +21,1528.100442701547,1.2554389298566315,0.0,458.89596672917406,0.4897545839994563 +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346 +23,1528.2429267943644,1.2555559902749194,0.0,458.9387553925956,0.4898002500012808 +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.4974483750011131 +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.4978840000003401 +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246 +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913 +28,1526.2605989035876,1.2539273724587885,0.0,458.343452722436,0.489164915998117 +29,1549.6854059286077,1.2731724520633707,0.0,465.3780357673742,0.496672542001761 +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143 +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629 +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.4905859169994073 +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484 +4,1572.3927908809335,1.7548657145168245,0.0,461.7945683087953,0.4925914999985252 +5,1564.3827924950483,1.7459261724238786,0.0,459.44211937350633,0.490082166998036 +6,1587.637379706137,1.7718794062714578,0.0,466.2717373446797,0.4973672500018438 +7,1586.1069069337875,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081 +8,1565.879611148776,1.747596693779299,0.0,459.88171864414875,0.4905510830030835 +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.4896888329967623 +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949 +11,1565.9028878075114,1.7476226716460257,0.0,459.8885547442853,0.4905583750005462 +12,1583.3814014098812,1.7671295305170396,0.0,465.0218030588897,0.496033957999316 +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357 +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462 +15,1611.7074099564163,1.798742713632422,0.0,473.3408420194601,0.5049077910007327 +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.4980673339996428 +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919 +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489 +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508 +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334 +21,1627.0202327275636,1.8158325577409689,0.0,477.83805061911875,0.5097049169999082 +22,1572.3998421997237,1.754873584126542,0.0,461.79663920401657,0.4925937090010848 +23,1585.7182708706089,1.7697375888340936,0.0,465.7081160654547,0.4967660410002281 +24,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159 +25,1590.2483692515932,1.774793395740791,0.0,467.03855642258145,0.4981852079981763 +26,1591.9827363009797,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986 +27,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312 +28,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873 +29,1587.966697298727,1.7722469404879555,0.0,466.3684543204815,0.4974704170017503 +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903 +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644 +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.4977449159996467 +3,1546.2059346063345,2.2033334416620187,0.0,467.473911872625,0.496353624999756 +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.4969734580008662 +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.4907893749987124 +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513 +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531 +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.4975908330015954 +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121 +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.4914072920000762 +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572 +12,1543.267588495252,2.199146317486109,0.0,466.5855436933028,0.4954103750023932 +13,1529.337507111068,2.179296041742173,0.0,462.3739768562977,0.4909386250001262 +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619 +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023 +16,1530.0441213304557,2.180302962427888,0.0,462.5876118617835,0.4911654579991591 +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.4971690409984148 +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865 +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.4974212920024001 +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434 +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.4969887080005719 +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.4965708330018969 +23,1529.565952029954,2.1796215742718923,0.0,462.44304400801985,0.4910119589985697 +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.4924065839986724 +25,1550.7246888389986,2.209772637174495,0.0,468.840094520522,0.4978042080001614 +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.4911967079970054 +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781 +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396 +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681 +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253 +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469 +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869 +3,1547.1728294886957,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128 +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.4916307919993414 +5,1522.8403915260485,1.286963146171359,0.0,460.69980727431664,0.4899240839986305 +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.4981920840000384 +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766 +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749 +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258 +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.4905591249989811 +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.490846832999523 +12,1548.5445027423802,1.3086858716943923,0.0,468.4759860186004,0.4981935410032747 +13,1548.346997027624,1.3085189582230503,0.0,468.41623527569254,0.4981299999999464 +14,1526.1627930048307,1.289770931073685,0.0,461.7049222748644,0.4909929579989693 +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149 +16,1549.442548959939,1.3094448168812869,0.0,468.7476689353755,0.4984824579987617 +17,1525.4153728060248,1.289139280996684,0.0,461.4788077434539,0.4907524999980523 +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293 +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.4897483750028186 +20,1553.0553234008996,1.312497998020176,0.0,469.8406294964019,0.4996447500016074 +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527 +22,1549.7637440107094,1.3097162610821198,0.0,468.844838999166,0.4985857920000853 +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.4968075409997254 +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552 +25,1525.1998637277711,1.2889571527559822,0.0,461.4136105032376,0.4906831670014071 +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956 +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903 +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556 +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313 +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481 +1,1517.480332834304,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702 +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304 +3,1542.4872208574875,0.5718522026949577,0.0,467.2705263315093,0.498356000000058 +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855 +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593 +6,1541.2370366249845,0.5713887171000923,0.0,466.8918040727872,0.4979520829983812 +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821 +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392 +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442 +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468 +11,1517.2779873087345,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378 +12,1518.0660902189236,0.5627984632803773,0.0,459.8725560839836,0.4904658750019735 +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126 +14,1517.2394279134517,0.5624919915936906,0.0,459.622132660468,0.4901987919984094 +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855 +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978 +17,1518.3874690557575,0.5629176092890171,0.0,459.96991239021986,0.4905697079993842 +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193 +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163 +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935 +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.4913474580025649 +22,1526.217818035968,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091 +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.490669708000496 +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.4942520420008804 +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378 +26,1534.423317940434,0.5688626410421411,0.0,464.8277027480224,0.4957506659993669 +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833 +28,1517.56235434898,0.5626117113495291,0.0,459.71995778566526,0.4903031250032654 +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216 +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892 +1,1550.91288162991,0.8958868617275533,0.0,462.0121726923871,0.4923814169997058 +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.4911964169987186 +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874 +4,1565.1120060356702,0.904089004577632,0.0,466.2420481384795,0.4968893330005812 +5,1571.375161858294,0.9077069247592892,0.0,468.10782297586456,0.498877750000247 +6,1570.1072269824244,0.9069745005140124,0.0,467.730109079893,0.4984752080017642 +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487 +8,1565.5201723263629,0.90432478237119,0.0,466.36363961986854,0.4970189170016965 +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015 +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518 +11,1560.722599431774,0.9015534580915664,0.0,464.93445742470254,0.4954957909976656 +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.4871506659983424 +13,1570.2996305808672,0.9070856427051928,0.0,467.78742551952234,0.4985362919978797 +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609 +15,1547.5227554628375,0.8939285508974267,0.0,461.00226454428775,0.4913051250005082 +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.4915737500014074 +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721 +18,1564.0133771354122,0.90345438015139,0.0,465.9147699714058,0.49654054200073 +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579 +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017 +21,1554.6354429575945,0.898037204164546,0.0,463.1211122513755,0.4935632499982603 +22,1566.8541179900308,0.9050953378346812,0.0,466.7610179263,0.4974424160027411 +23,1563.1480932062543,0.902954547753982,0.0,465.6570045528313,0.496265833000507 +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334 +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029 +26,1544.107301583785,0.8919556094812306,0.0,459.98481134876505,0.4902207919985812 +27,1567.236953417524,0.905316483221864,0.0,466.8750634215273,0.4975639580006827 +28,1564.9869329670676,0.9040167559553888,0.0,466.2047892564012,0.4968496249966847 +29,1569.5676911434848,0.9066628369284802,0.0,467.5693830145243,0.4983039170001575 +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744 +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192 +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263 +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.4983404999984486 +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052 +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.4975258750018838 +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626 +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.4973339589996612 +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957 +9,1548.8857390933792,0.8386499063790712,0.0,465.2494220628536,0.4981867919996148 +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573 +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854 +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442 +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.4890400419972138 +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909 +15,1548.8552953072,0.8386334224785583,0.0,465.240277454205,0.4981769999976677 +16,1525.425523355913,0.8259472858853377,0.0,458.20251631775,0.4906410000003234 +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796 +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922 +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205 +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.4976440419995924 +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.4966249170029186 +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363 +23,1523.6436512727455,0.8249824846621034,0.0,457.6672831911485,0.4900678750018414 +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.4941007919987896 +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.4961650840014044 +26,1546.018290686647,0.8370973158443685,0.0,464.3881069378219,0.49726450000162 +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.4886809999989054 +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.4892711669999698 +29,1544.979353159271,0.8365347792814213,0.0,464.0760341541612,0.4969303340003534 +0,1543.037293902987,0.9050268700391154,0.0,464.4128623848868,0.4969528340006945 +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.4968073750023904 +2,1522.6647565357837,0.8930779082084145,0.0,458.2812747491697,0.490391625000484 +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.4955040000022563 +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488 +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.4876558750002004 +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299 +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.4911422499972104 +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522 +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697 +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.4891653750019031 +11,1540.3509525440622,0.9034512690335336,0.0,463.60434564665206,0.4960876669974823 +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175 +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979 +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759 +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943 +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511 +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.4970722079997358 +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232 +19,1517.3107069267537,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729 +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.4969016249997366 +21,1542.9237006680555,0.904960244993646,0.0,464.378673866184,0.4969162499983213 +22,1543.855845753035,0.9055069695297376,0.0,464.65922454942654,0.4972164579994569 +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416 +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507 +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.4953368749993387 +26,1524.4368065343,0.8941172562980861,0.0,458.8146142966661,0.4909623339990503 +27,1540.8696144444589,0.903755476169796,0.0,463.7604489752787,0.4962547080031072 +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629 +29,1542.3754109042263,0.9046386604338992,0.0,464.2136533448767,0.4967396669999289 +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601 +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.4905383750010514 +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.4949191670020809 +3,1543.9666529760673,2.517118054369295,0.0,468.6538201495045,0.4970376669989491 +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.4911096249998081 +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.4892612080002436 +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668 +7,1541.4305863957322,2.5129835227301953,0.0,467.8840254853926,0.4962212500031455 +8,1518.9797912579406,2.4763821481685406,0.0,461.0693375603401,0.4889938330015866 +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282 +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875 +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.4909694169982685 +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736 +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168 +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129 +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858 +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407 +17,1539.709287220718,2.5101773007032837,0.0,467.36154436027533,0.4956671250001818 +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.4965505419968394 +19,1509.6842072989823,2.461227622542033,0.0,458.247766949026,0.4860013750003418 +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097 +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844 +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.4907778749984572 +23,1518.3726327778963,2.4753923019377058,0.0,460.8850413901084,0.4887983750013518 +24,1542.6089226370732,2.514904556077308,0.0,468.24169628084707,0.4966005829992355 +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.4952879160009615 +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364 +27,1524.6620618997297,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219 +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333 +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925 +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.4906970419979188 +1,1543.8582876666146,1.819236842272884,0.0,468.7903825967997,0.498959583001124 +2,1514.9563025535929,1.785179599744556,0.0,460.0143357489906,0.4896187500016822 +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.4886332080022839 +4,1513.8533631439177,1.783879928638143,0.0,459.6794297592549,0.4892622909974307 +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127 +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044 +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288,0.488077041998622 +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.4968368750014633 +9,1536.988103258224,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808 +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314 +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129 +12,1537.6380057586473,1.8119070464576217,0.0,466.9016028047741,0.496949249998579 +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181 +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273 +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.4968635410004935 +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761 +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.4962564160014153 +18,1534.6338380789523,1.8083670243150929,0.0,465.9893915434169,0.4959783330014033 +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864 +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.4974886670024716 +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.4904405839988612 +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546 +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.4959463339982903 +24,1536.071073078166,1.8100606194348392,0.0,466.4258059154776,0.4964428330022201 +25,1534.2024633575504,1.807858705130444,0.0,465.85840522018754,0.495838916998764 +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429 +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.4879782079988217 +28,1533.3456392419216,1.806849048991048,0.0,465.59823179093394,0.4955620000000635 +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.4960916669988364 +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.4967214579992287 +1,1525.822451852758,0.9878217819888808,0.0,458.15174248644286,0.4879074999989825 +2,1551.4175283280858,1.004392107077032,0.0,465.8370592623274,0.4960919580007612 +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014 +4,1517.1578055606185,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886 +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844 +6,1536.6455705433632,0.994828699719478,0.0,461.4015509298939,0.4913683750019118 +7,1523.3509920954475,0.986221751933866,0.0,457.4096485469271,0.4871172089988249 +8,1523.3483839474748,0.986220063411473,0.0,457.4088654102411,0.4871163749994593 +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242 +10,1552.6602304699818,1.0051966359675315,0.0,466.2101997617412,0.4964893329997721 +11,1535.8703964688004,0.9943268498255036,0.0,461.16879294906863,0.4911204999989422 +12,1528.3973744832786,0.9894887942013932,0.0,458.9249027506061,0.4887308750003285 +13,1531.9027936882028,0.9917582125347134,0.0,459.9774589736001,0.4898517919973528 +14,1541.5801558574808,0.9980233642444684,0.0,462.8832363365845,0.4929462920008518 +15,1553.6147007694765,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625 +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.4965233750008337 +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.4948284999991301 +18,1572.9461018499128,1.0183297666220117,0.0,472.3013457592889,0.5029760830002488 +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299 +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069 +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.4948044160009885 +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.496583374999318 +23,1551.7935835191104,1.0046355662740525,0.0,465.9499756379054,0.4962122079996334 +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908 +25,1528.5850111774257,0.9896102707292512,0.0,458.9812435642267,0.4887908750024508 +26,1549.1668012392042,1.0029349799774732,0.0,465.161243713552,0.495372249999491 +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072 +28,1551.2523048367275,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879 +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.4966570830001728 +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.4868028330020024 +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.4948589999985415 +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249 +3,1533.950680078919,1.341716280054159,0.0,466.5818363888339,0.4973159999972267 +4,1509.4877083165245,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007 +5,1530.701332361488,1.3388741399588795,0.0,465.5934821707004,0.4962625420012045 +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036 +7,1511.6775444702157,1.3222344094554814,0.0,459.80701588814367,0.4900949160000891 +8,1506.085294324647,1.3173429790073663,0.0,458.1060209498117,0.4882818750011211 +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001 +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716 +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.4969967500001075 +12,1535.0179028145485,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828 +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468 +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.4962089580003521 +15,1529.1070527547115,1.3374796551614545,0.0,465.1085500823957,0.4957456670017564 +16,1511.511884356299,1.3220895098347285,0.0,459.7566270450269,0.4900412079987291 +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.4965184579996275 +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.4970040829975914 +19,1531.0605422535905,1.339188333737369,0.0,465.7027430571701,0.4963790000001609 +20,1529.8004113116283,1.3380861221592606,0.0,465.3194489808829,0.4959704579996469 +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173 +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.4973219999992579 +23,1508.4587853165551,1.319419024571127,0.0,458.82796579460944,0.4890513749996898 +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.4990502090004156 +25,1507.4511944376345,1.318537704784618,0.0,458.52148683885093,0.4887247080005181 +26,1531.4239932863045,1.3395062371575557,0.0,465.81329397154,0.4964968330023112 +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.4958281660001375 +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602 +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631 +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612 +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576 +2,2756.6629408744075,3.785901382924392,84.37621951682796,523.1457293569697,0.5001827079977375 +3,2741.474911483684,3.765042691561858,83.91134276933079,520.2634209705171,0.4974269160011317 +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654 +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.497821582997858 +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554 +7,2774.160435980272,3.809931811141341,84.91178462569788,526.4663166160612,0.5033575410016056 +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454 +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631 +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016 +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793 +12,2770.4892187897412,3.8048898939622178,84.79941563674055,525.7696113474226,0.5026914169975498 +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978 +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901 +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394 +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222 +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375 +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477 +19,2745.556043502129,3.7706475709700102,84.0362584730099,521.0379178285604,0.4981674170012411 +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818 +21,2757.1403582791954,3.786557050756037,84.39083235728454,523.2363312483842,0.5002693329988688 +22,2771.5646135441475,3.806366802302199,84.83233142870031,525.9736943946457,0.5028865419990325 +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276 +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584 +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005 +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075 +27,2829.818723513932,3.886370894288026,86.61537914834967,537.0288685315742,0.5134564589970978 +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049 +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177 +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501 +1,1551.185722359366,1.974412823748249,0.0,466.16221414937473,0.4965388329983398 +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298 +3,1547.1130708458957,1.969228985824172,0.0,464.9383012293342,0.4952351660031127 +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.4957658749990514 +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.4897414169972762 +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082 +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806 +8,1541.253365057029,1.9617705119056952,0.0,463.17734289570063,0.4933594579997589 +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013 +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192 +11,1550.8496334220874,1.9739850359610631,0.0,466.0612127277562,0.4964312500014785 +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.4899619159987196 +13,1555.5371906072128,1.9799515510501056,0.0,467.4699170530165,0.4979317500001343 +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.4902642919987556 +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985 +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.4972455840033944 +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555 +18,1523.894748786755,1.939675752991576,0.0,457.9607328673332,0.4878029169994988 +19,1528.9590068812288,1.946121748451934,0.0,459.4826433209397,0.489423999999417 +20,1532.1890914847395,1.9502331326472857,0.0,460.4533480979099,0.4904579590001958 +21,1551.723309101243,1.9750970862074375,0.0,466.32376967575607,0.4967109159988467 +22,1555.211904441731,1.9795375134740387,0.0,467.3721620795485,0.4978276250003546 +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.4974748340027872 +24,1553.889544716052,1.9778543597662952,0.0,466.9747666363473,0.4974043340007483 +25,1553.1610005454645,1.9769270388579467,0.0,466.7558245981558,0.4971711250000226 +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.4899513749987818 +27,1556.0137313297807,1.9805581116315465,0.0,467.6131270343634,0.4980842920012946 +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549 +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403 +0,1625.5597601283662,2.2574452413660273,0.0,464.3365675145092,0.4921481670025969 +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114 +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426 +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874 +4,1619.196275230912,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753 +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.4969209160008176 +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.496066374998918 +7,1645.2563032830217,2.2847981992248796,0.0,469.96282959644697,0.4981114160000288 +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988 +9,1617.3511432498,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262 +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978 +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753 +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172 +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.4932250419988122 +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461 +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823 +16,1618.5698106059183,2.247738167732763,0.0,462.3399081187963,0.4900319170010334 +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.4884982080002373 +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.4902859590001753 +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689 +20,1625.9434583893585,2.257978090317289,0.0,464.44616984217527,0.4922643339996284 +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012 +22,1643.0470201217047,2.2817301263790366,0.0,469.3317540832881,0.4974425420004991 +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037 +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533 +25,1644.857744860965,2.284244713690023,0.0,469.8489825056227,0.4979907499982801 +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.4965811670008406 +27,1642.3811937703597,2.2808054808721243,0.0,469.141562661153,0.4972409589972812 +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.4972591670011752 +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.4894498749999911 +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723 +1,1532.1004752886363,1.944206307094024,0.0,458.2065881380069,0.4896357500001613 +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.4978175420001207 +3,1559.2145772362046,1.9786135857731335,0.0,466.3156255961936,0.4983009999996284 +4,1530.2639789041189,1.9418758281787545,0.0,457.6573456072133,0.4890488339988224 +5,1553.2082118735125,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419 +6,1559.180676984456,1.9785705669996752,0.0,466.3054870191607,0.4982901660005154 +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907 +8,1558.6548663303993,1.977903323299642,0.0,466.1482323810427,0.4981221250018279 +9,1553.3620584498417,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574 +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101 +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699 +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511 +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693 +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.494713000000047 +15,1555.7903386278183,1.974268292232144,0.0,465.2915356523383,0.4972066660011478 +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439 +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097 +18,1553.613947922776,1.97150649390123,0.0,464.64064063892545,0.4965111250021436 +19,1556.3417074494223,1.9749679687597528,0.0,465.45643399329424,0.4973828749971289 +20,1559.243258216998,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102 +21,1546.4155414555316,1.9623718532687304,0.0,462.48780711358813,0.4942106249982316 +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894 +23,1528.3264357327582,1.939417122816551,0.0,457.07788292820584,0.488429624998389 +24,1559.6077970344063,1.979112574203768,0.0,466.4332261746338,0.498426666999876 +25,1535.5840315256837,1.9486268735754144,0.0,459.24841825535833,0.4907490410005266 +26,1533.0749182963104,1.94544285670156,0.0,458.4980156344947,0.4899471669996273 +27,1555.842230984777,1.974334142644252,0.0,465.3070551435309,0.4972232500003883 +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.4883499999996274 +29,1555.619285336731,1.974051228865383,0.0,465.240378599545,0.4971519999999145 +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597 +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385 +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235 +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116 +4,2392.7939583178036,3.094216164570146,88.53450767657158,515.4365249625881,0.5038726669990865 +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987 +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502 +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484 +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611 +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628 +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102 +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241 +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865 +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589 +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126 +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535 +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978 +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702 +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992 +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001 +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963 +21,2390.42113626185,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558 +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539 +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549 +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028 +25,2377.367853522984,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472 +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107 +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148 +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216 +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105 +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553 +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.4946381670015398 +2,1513.015531420153,1.7770758373213904,0.0,472.4389022330719,0.489482125001814 +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.4983768749989394 +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381 +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.4987627919981605 +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078 +7,1540.8432585109908,1.8097602218460391,0.0,481.1281063855878,0.498484791998635 +8,1521.949062973098,1.7875685009689248,0.0,475.2283962946275,0.4923722499988798 +9,1537.8767464620305,1.806275976791144,0.0,480.20181338543824,0.4975250829993456 +10,1540.0165314743188,1.8087892095791984,0.0,480.8699609762772,0.4982173339994915 +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.4885295409985701 +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686 +13,1514.3150598492307,1.7786021670405965,0.0,472.8446798154592,0.4899025410013564 +14,1541.9176562329635,1.81102212973247,0.0,481.4635869340618,0.4988323750003474 +15,1515.38856114981,1.779863022056937,0.0,473.1798804564702,0.4902498339979502 +16,1539.5401197356418,1.8082296516818483,0.0,480.7212014730485,0.4980632080005307 +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.4996198750013718 +18,1541.4078889281657,1.8104233948608175,0.0,481.3044121596648,0.4986674579995451 +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968 +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977 +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.4975674579982296 +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822 +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.4915245830015919 +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001 +25,1541.7235658764823,1.810794165593571,0.0,481.40298224557984,0.498769583999092 +26,1538.245614273331,1.8067092215669016,0.0,480.31699231137856,0.4976444170024479 +27,1538.7954354415915,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098 +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118 +29,1539.4867990582093,1.8081670251684203,0.0,480.70455209847864,0.4980459580001479 +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919 +1,1537.0330531240645,0.8380038018079471,0.0,481.5169845188464,0.4986462920023768 +2,1534.554664825174,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392 +3,1535.092545630475,0.8369458202285922,0.0,480.9090683033491,0.498016749999806 +4,1531.808106737977,0.8351551155504301,0.0,479.8801293952771,0.4969512079987908 +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388 +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.4978598749985394 +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567 +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.4900122919971181 +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.4971287920016038 +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442 +11,1542.3129650510032,0.8408824557568605,0.0,483.171059077892,0.5003592079992814 +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785 +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.4977900420017249 +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406 +15,1515.0810186523638,0.8260353615019213,0.0,474.639918719004,0.4915245840020361 +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891 +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457 +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533 +19,1532.7389950049983,0.8356626439378236,0.0,480.1717552066734,0.4972532079991651 +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.491781249998894 +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092 +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712 +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.4898963329978869 +24,1538.518645991316,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767 +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646 +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.4983793329993204 +27,1537.739437027721,0.8383889284619229,0.0,481.73827829422095,0.498875458000839 +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.4930752500004018 +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.4973596250019909 +0,1550.1230309870657,1.3179917364115763,0.0,458.9576724119213,0.4902429590001702 +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.4978254169982392 +2,1573.7945638369015,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331 +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943 +4,1559.3314125989507,1.3258211606750565,0.0,461.68407367607153,0.4931552080015535 +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.4910096250023343 +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715 +7,1575.5656502813997,1.3396243173824207,0.0,466.49067792049345,0.498289458999352 +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.4987434999966353 +9,1578.9038743347269,1.3424626415854837,0.0,467.47905336610495,0.4993452079979761 +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413 +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208 +12,1553.4810203833467,1.3208468660927597,0.0,459.9518999451511,0.4913049589995353 +13,1572.2751115779795,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662 +14,1570.6119266223695,1.335412415025928,0.0,465.0239882224038,0.4967227910019574 +15,1573.5109085929755,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935 +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629 +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.4892259999978705 +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967 +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979 +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978 +21,1569.630277542812,1.3345777681307784,0.0,464.7333433073403,0.4964123339996149 +22,1574.2479082049676,1.3385039074970495,0.0,466.10052318816014,0.4978727089983294 +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383 +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.4985292919991479 +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484 +26,1553.7065716648651,1.3210386410159338,0.0,460.0186807677736,0.4913762920004956 +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761 +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531 +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107 +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305 +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298 +2,2349.795445683046,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945 +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512 +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063 +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291 +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763 +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418 +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142 +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085 +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949 +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573 +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898 +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496 +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966 +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723 +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122 +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662 +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014 +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694 +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.4982014580018585 +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375 +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518 +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471 +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199 +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108 +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048 +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745 +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778 +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413 +0,1550.0754940354375,0.8369738088744263,0.0,464.9222113535663,0.4976810830012255 +1,1538.0192823716247,0.8304639753626484,0.0,461.3061290344438,0.4938102080013777 +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189 +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839 +4,1528.3809066387753,0.8252596688114338,0.0,458.4152408313752,0.4907156250010303 +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.4982283329991332 +6,1548.695597204981,0.8362287241927542,0.0,464.50833171459107,0.4972380409999459 +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205 +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483 +9,1527.96653767238,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396 +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764 +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.4892915000018547 +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.4895386659991345 +13,1526.3592753499977,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508 +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895 +15,1545.9810991200077,0.8347630124838054,0.0,463.6941581745042,0.4963664999995671 +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642 +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.4972027500007243 +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156 +19,1529.9212051478569,0.826091363470765,0.0,458.8772305807405,0.4912101669979165 +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.4959058749991527 +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002 +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318 +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.4974249170008988 +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943 +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.4972544580014073 +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859 +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.4976514579975628 +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.4981981669989181 +29,1549.708881169605,0.8367758537632858,0.0,464.8122512484299,0.497563375000027 +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.4960967090009944 +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625 +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175 +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248 +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133 +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024 +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.9361560538288,0.4992987500008894 +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069 +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808 +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982 +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676 +11,2383.245600577661,3.968493333370142,85.35567744523615,511.86949844919224,0.5002108339976985 +12,2393.684776374659,3.985876266772484,85.72955537116485,514.1116071425375,0.5024018750009418 +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633 +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925 +15,2396.267721266653,3.990177292055761,85.82206325663266,514.6663677203255,0.5029439999998431 +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309 +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842 +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849 +19,2370.2641685954413,3.946877128029598,84.89074889536992,509.0813682303509,0.4974862080016464 +20,2385.3405815094175,3.9719818189291622,85.43070895546808,512.3194549448798,0.5006505419987661 +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261 +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995 +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786 +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882 +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378 +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566 +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169 +28,2422.427310738474,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318 +29,2386.7347881131845,3.974303400729649,85.48064231069353,512.6189003041125,0.5009431670005142 +0,1510.9616102840157,1.973479398690429,0.0,456.5315675637193,0.4877955420015496 +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732 +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151 +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.4873141669995675 +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508 +5,1541.501322781938,2.013367568612397,0.0,465.7590308723345,0.4976549159982824 +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.4959944170004746 +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.4905059580014494 +8,1540.251215198586,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841 +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.4978336249987478 +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284 +11,1545.29644513748,2.0183244091655883,0.0,466.9057133203061,0.4988801250001415 +12,1538.6722489839171,2.009672492033502,0.0,464.9042364904169,0.4967415840001195 +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.4967219999998633 +14,1519.289578347493,1.984356626340929,0.0,459.04783289353486,0.4904841249990568 +15,1518.7244091137609,1.9836184541518056,0.0,458.87706906045105,0.490301666999585 +16,1541.7541618243265,2.0136978037672426,0.0,465.8354252714888,0.4977365420018032 +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.4974016669984848 +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905 +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.4971792910000658 +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.4981023750005988 +21,1539.6550675608858,2.010956159468265,0.0,465.2011915569919,0.4970588750002207 +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936 +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943 +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205 +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.4967334999964805 +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164 +27,1543.166248570158,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906 +28,1517.437899341542,1.9819381331466872,0.0,458.488354801267,0.4898863329981395 +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..6ab34db75 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n30/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.0761317500000586 +1,256.12393460719073,0.9064551362425152,0.0,65.29834222191452,0.0772571669986064 +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.0767200000009324 +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752 +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.0765427500009536 +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.076881291999598 +6,253.37879933322745,0.8967397538336794,0.0,64.59847485950024,0.0764291250015958 +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.0785475830016366 +8,256.86308778885234,0.9090710932362056,0.0,65.4867880127563,0.0774801250008749 +9,255.65027029969852,0.9047787780956692,0.0,65.17758234800283,0.0771142910016351 +10,254.2089816160017,0.8996778743782993,0.0,64.8101283579923,0.0766795410017948 +11,258.8750074470721,0.9161915324512973,0.0,65.99972335621382,0.0780870000016875 +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.0775150420013233 +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.0773265410025487 +14,253.7441622806205,0.898032819711201,0.0,64.69162349401059,0.0765393330002552 +15,251.5744948659375,0.890354091149602,0.0,64.13847064022133,0.0758848750010656 +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.0769605839996074 +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.0773543750001408 +18,257.3632704895553,0.9108413033448676,0.0,65.6143087039173,0.0776310000001103 +19,254.9952406394763,0.90246054492933,0.0,65.01058369953878,0.0769167079997714 +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.0762424999993527 +21,237.13135670060404,0.8392379906824367,0.0,60.45621821767923,0.0715282499986642 +22,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.0779090830001223 +23,239.82482771688112,0.8487705267211679,0.0,61.14291386935821,0.0723407080004108 +24,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.0773496250003518 +25,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142 +26,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496 +27,254.63913044761705,0.9012002257288844,0.0,64.91979403861778,0.0768092910002451 +28,255.21888157057143,0.903252038590304,0.0,65.06760055770893,0.0769841670007736 +29,255.8472502804252,0.9054759152669394,0.0,65.22780204422952,0.0771737079994636 +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.076847208001709 +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.0770459590021346 +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.0773680829988734 +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.076017999999749 +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.0762255000008735 +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.077563791997818 +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.0770248330009053 +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.0733274169979267 +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.0775150410008791 +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.0773663330000999 +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.075760417003039 +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.0773687500004598 +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887 +13,248.11253105893135,0.76910270012068,0.0,68.17326333869708,0.071188792000612 +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.0754453750014363 +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.0776007089989434 +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.0776465839990123 +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.0784323340012633 +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.075241750000714 +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392 +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.0780122500000288 +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.0768742920008662 +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.078040291002253 +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483 +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.0799040839992812 +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.0787826250016223 +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.0793842499988386 +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.0794322090005152 +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.0823663330011186 +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.0802108749994658 +0,251.2126028110106,0.0,0.0,63.04752093895013,0.074755040997843 +1,251.92782659925052,0.0,0.0,63.22702262899478,0.0749678749998565 +2,258.018691325029,0.0,0.0,64.75566377612596,0.0767803749986342 +3,260.54003040902114,0.0,0.0,65.38845121160259,0.0775306670002464 +4,259.9749090575512,0.0,0.0,65.24662114479398,0.0773625000001629 +5,257.4462911868574,0.0,0.0,64.61200693211013,0.0766100420005386 +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752 +7,258.55804789756263,0.0,0.0,64.89102758518595,0.0769408749983995 +8,261.25119137299276,0.0,0.0,65.56693324341647,0.077742292000039 +9,260.1166102987462,0.0,0.0,65.28218429676703,0.0774046670012467 +10,237.00576584766733,0.0,0.0,59.48199181779978,0.0705274159990949 +11,261.5736560314424,0.0,0.0,65.64786308960325,0.0778382499993313 +12,258.20715696601536,0.0,0.0,64.80296351870814,0.0768364579998888 +13,256.72603004324225,0.0,0.0,64.43124100307053,0.0763957089984614 +14,259.4536150402221,0.0,0.0,65.1157905451141,0.0772073749976698 +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666 +16,258.93344008202195,0.0,0.0,64.98524079879539,0.0770525830012047 +17,259.39424550343654,0.0,0.0,65.10089040845003,0.0771897080012422 +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765 +19,247.2062185079991,0.0,0.0,62.042027602202104,0.0735628340007679 +20,240.2339275243244,0.0,0.0,60.29217247205807,0.0714880420018744 +21,261.37664806550475,0.0,0.0,65.59841945612862,0.077779625000403 +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121 +23,259.09586538480823,0.0,0.0,65.02600512575927,0.0771009170020988 +24,259.9893288635479,0.0,0.0,65.25024012334178,0.0773667909998039 +25,257.87783357147384,0.0,0.0,64.72031231657613,0.0767384589998982 +26,259.9124613012882,0.0,0.0,65.23094845888362,0.0773439169970515 +27,259.9603447479832,0.0,0.0,65.24296589978566,0.0773581659996125 +28,257.0997419885865,0.0,0.0,64.52503252242737,0.0765069170010974 +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405 +0,381.3081659044242,0.198030727553583,9.967546620197012,73.07333846727214,0.0762857089976023 +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957 +2,387.4458082495051,0.2012182852503272,10.12798702426647,74.24954725737075,0.077513624997664 +3,381.1904880655916,0.1979696120828831,9.964470474838452,73.05078685858389,0.0762621659996511 +4,377.4216778769259,0.1960122970017792,9.865952282422889,72.32853759365653,0.0755081659990537 +5,395.2054385543479,0.2052482152969867,10.330826836614998,75.7365914445881,0.0790660410020791 +6,382.2245416168645,0.198506643270249,9.991501044602536,73.2489513667219,0.0764690420000988 +7,388.2468053820079,0.2016342796063401,10.148925406852452,74.40304917473951,0.0776738749991636 +8,361.77536742490526,0.1878864541287485,9.456951524480342,69.3301015735082,0.072377915999823 +9,396.6091653952728,0.2059772346898327,10.367520812721578,76.00559960054827,0.0793468750016472 +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.0757492079974326 +11,389.1548487153577,0.2021058679383836,10.17266201956531,74.57706526926356,0.0778555409997352 +12,398.0607921145172,0.2067311306748985,10.405466910636562,76.28378721903758,0.07963729200128 +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.0798584579970338 +14,394.0549717448149,0.2046507253933082,10.300753178129844,75.51611767013073,0.0788358749996405 +15,389.67822848863034,0.2023776829335914,10.186343374324103,74.67736500249524,0.0779602500006149 +16,390.66458707880736,0.2028899439516008,10.21212717889724,74.8663893181407,0.0781575839973811 +17,382.3307530923388,0.1985618037353096,9.994277454677253,73.26930557832927,0.0764902910013916 +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962 +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.0725337920011952 +20,388.52755176123173,0.2017800840099879,10.156264228502726,74.45685099968554,0.0777300420013489 +21,389.50432339303006,0.2022873660831109,10.18179742618325,74.64403808466793,0.0779254580011183 +22,381.15924792662696,0.1979533876534027,9.963653845221272,73.04480004410561,0.0762559159993543 +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.0780157500012137 +24,385.52849854792015,0.2002225388459725,10.07786778858062,73.88211683416388,0.0771300419983163 +25,377.8184326260527,0.196218349844743,9.876323608852063,72.40457109271017,0.0755875419999938 +26,373.01390441782655,0.1937231391419509,9.750731336811532,71.4838383433799,0.0746263330001966 +27,392.390082348607,0.2037860723700893,10.257232309294496,75.19706070456296,0.0785027919991989 +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.078830000002199 +29,389.200049447067,0.2021293427406216,10.17384358461129,74.58572747128939,0.0778645840000535 +0,252.31231985583565,0.7304738829883385,0.0,65.27780245250334,0.0762640409993764 +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.0785115409998979 +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844 +3,254.08107578790057,0.7355946397333613,0.0,65.7354118961722,0.0767986660030146 +4,254.8141653450625,0.7377170203436471,0.0,65.925075545255,0.0770202499988954 +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552 +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.076410500001657 +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283 +8,255.1343891608784,0.7386441060059645,0.0,66.00792329126028,0.0771170410007471 +9,254.33927029643831,0.7363421432453802,0.0,65.80221152820079,0.0768767079971439 +10,254.15483004207024,0.7358081669858593,0.0,65.75449346791815,0.0768209589987236 +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.0783152080002764 +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539 +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.0761889579989656 +14,254.008843365794,0.7353855183639252,0.0,65.71672405015805,0.076776832996984 +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.0768490000009478 +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.0778543330015963 +17,255.57027480120905,0.7399060462727463,0.0,66.1206948623736,0.0772487920003186 +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.0767076669981179 +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801 +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.0753446670023549 +21,220.4004131405646,0.6380851545061746,0.0,57.02160971632452,0.0666183329994964 +22,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.0774812499985273 +23,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745 +24,252.95552999281617,0.7323360520913219,0.0,65.44421265506995,0.0764584579992515 +25,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.0769151659987983 +26,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.0767502079979749 +27,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.0767220839989022 +28,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.0763839579994964 +29,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787 +0,254.55862726842625,0.0,0.0,64.64502264360112,0.0770675419989856 +1,249.45099505649355,0.0,0.0,63.34794226750606,0.075521208000282 +2,260.34668630262985,0.0,0.0,66.11489703498854,0.0788198749978619 +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234 +4,254.45815813069177,0.0,0.0,64.61950856162512,0.0770371250000607 +5,255.8519102420228,0.0,0.0,64.97345113966061,0.0774590830005763 +6,248.69707187526592,0.0,0.0,63.15648389249447,0.0752929580012278 +7,255.1022546097663,0.0,0.0,64.78307650635061,0.0772321250005916 +8,252.78860060747465,0.0,0.0,64.1955253517402,0.0765316670003812 +9,254.73506346907223,0.0,0.0,64.68982851919962,0.0771209580016147 +10,253.83333170049056,0.0,0.0,64.46083423515617,0.0768479590005881 +11,253.7371268072013,0.0,0.0,64.43640305569922,0.0768188330002885 +12,240.22252605510252,0.0,0.0,61.00437766723181,0.0727272919975803 +13,258.0346838423428,0.0,0.0,65.52776528855703,0.0781199170014588 +14,254.20038081866608,0.0,0.0,64.5540461557671,0.0769590830022934 +15,254.6882723304369,0.0,0.0,64.67794593541505,0.0771067919995402 +16,255.76066324322383,0.0,0.0,64.95027901476814,0.0774314580012287 +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999 +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448 +19,253.6951515285212,0.0,0.0,64.4257434568875,0.0768061249982565 +20,253.3447531357101,0.0,0.0,64.3367599787763,0.076700041998265 +21,255.2514405716164,0.0,0.0,64.82096219887414,0.0772772910022467 +22,236.06342334742243,0.0,0.0,59.94817583427829,0.0714681249992281 +23,256.95678343157175,0.0,0.0,65.25403307523722,0.0777935830010392 +24,255.03110341882655,0.0,0.0,64.76500770075256,0.0772105840005679 +25,255.734925804407,0.0,0.0,64.94374300641141,0.0774236659999587 +26,256.5582165256291,0.0,0.0,65.15281722984973,0.0776729169992904 +27,256.4007696213289,0.0,0.0,65.11283367555865,0.0776252499999827 +28,240.76863068541655,0.0,0.0,61.143060636146465,0.0728926249976211 +29,253.9838950248202,0.0,0.0,64.49906970811983,0.0768935419982881 +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292 +1,242.77578502676263,0.4671759814498319,0.0,63.69165880432708,0.0724429590009094 +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993 +3,258.51333715491046,0.4974599175527462,0.0,67.82036875969108,0.0771389580004324 +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.0854656670016993 +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141 +6,243.74387927163863,0.4690388953270789,0.0,63.94563606292509,0.0727318329991248 +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.074225792002835 +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.0776544169966655 +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708 +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.0730839579991879 +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632 +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.0799434170003223 +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.0794488749997981 +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.0797305839987529 +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.0777837919995363 +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.0775734999988344 +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.0781226660001266 +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.078081875002681 +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.0791336250003951 +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488 +21,257.9793695450014,0.4964323980981425,0.0,67.6802836073801,0.0769796250024228 +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.0782561670021095 +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.0792537500019534 +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041 +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.0780591249967983 +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.0775096249999478 +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.0782039170007919 +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.0776473750011064 +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.0781980419997125 +0,255.65537390140065,0.0,0.0,64.03179678521767,0.0776107909987331 +1,252.3971302607853,0.0,0.0,63.2157325989312,0.0766216669981076 +2,254.03647687991125,0.0,0.0,63.626325609258025,0.0771193330001551 +3,252.92870751153595,0.0,0.0,63.34887216872111,0.0767830410004535 +4,256.21770129194005,0.0,0.0,64.172638077338,0.0777815000001282 +5,261.83806978347053,0.0,0.0,65.58032330458661,0.0794877080006699 +6,257.89026530262356,0.0,0.0,64.59155076126875,0.0782892499992158 +7,254.00381288625172,0.0,0.0,63.61814454045324,0.0771094170013384 +8,255.43041857262065,0.0,0.0,63.97545416398356,0.0775424999992537 +9,254.5701162116187,0.0,0.0,63.75998165068225,0.0772813330004282 +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248 +11,250.66526969948472,0.0,0.0,62.78196841932783,0.0760959159997582 +12,253.81728616949164,0.0,0.0,63.57142680227183,0.0770527919994492 +13,252.96713941908897,0.0,0.0,63.35849787717756,0.0767947079984878 +14,239.62560934353888,0.0,0.0,60.01695989358342,0.072744542001601 +15,251.76288345726073,0.0,0.0,63.05687827165771,0.0764291250015958 +16,257.5634672163916,0.0,0.0,64.50970046284525,0.0781900420006422 +17,255.07685287249387,0.0,0.0,63.88689961214584,0.0774351660002139 +18,253.78612756335775,0.0,0.0,63.56362277489847,0.0770433329998923 +19,261.432764118169,0.0,0.0,65.47880988986569,0.0793646669990266 +20,253.1580604236211,0.0,0.0,63.40631621472186,0.0768526669999118 +21,255.3783986189558,0.0,0.0,63.96242517479779,0.0775267079989134 +22,255.35575189540887,0.0,0.0,63.95675304525136,0.0775198330011335 +23,249.2891719762051,0.0,0.0,62.437309089742904,0.0756781659983971 +24,253.92571378551105,0.0,0.0,63.59858373220023,0.0770857080024143 +25,232.28381259426416,0.0,0.0,58.17812337583731,0.0705157499978668 +26,253.67358237649097,0.0,0.0,63.53543455250894,0.077009167001961 +27,253.70103185415508,0.0,0.0,63.542309586461194,0.0770174999997834 +28,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622 +29,254.50876744267657,0.0,0.0,63.74461615358363,0.0772627089972957 +0,251.53573576786724,0.0,0.0,62.72152708777785,0.0744095830013975 +1,261.23641907506607,0.0,0.0,65.1404345601695,0.0772792499992647 +2,259.69001833656097,0.0,0.0,64.75483282643327,0.076821792001283 +3,261.4181167235588,0.0,0.0,65.18574165717872,0.0773330000010901 +4,260.86401158116945,0.0,0.0,65.04757313574873,0.0771690839974326 +5,249.72157861361,0.0,0.0,62.269159130020775,0.073872917000699 +6,260.1970815239249,0.0,0.0,64.88127123227001,0.0769717920011316 +7,259.727625526503,0.0,0.0,64.764210342417,0.0768329170023207 +8,261.2393769415889,0.0,0.0,65.14117211702067,0.0772801249986514 +9,267.88415944731423,0.0,0.0,66.79807746549119,0.0792457919997104 +10,260.33046618014515,0.0,0.0,64.91453127503361,0.0770112499994866 +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019 +12,262.63957446676875,0.0,0.0,65.49031744516148,0.0776943329983623 +13,258.95505728780233,0.0,0.0,64.57156710004472,0.0766043750008975 +14,259.6273385675486,0.0,0.0,64.73920335407234,0.0768032500018307 +15,261.7203838407915,0.0,0.0,65.26111327435025,0.0774224169981607 +16,262.19885205972054,0.0,0.0,65.38042140073868,0.0775639580024289 +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099 +18,260.1817276561712,0.0,0.0,64.8774426787276,0.0769672500027809 +19,238.90592081951175,0.0,0.0,59.57222793162153,0.0706734170016716 +20,244.5389668999695,0.0,0.0,60.97685241268609,0.0723397910005587 +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988 +22,259.8796025059062,0.0,0.0,64.80210646163543,0.0768778750025376 +23,259.9752413748415,0.0,0.0,64.82595442856649,0.0769061669998336 +24,260.9768297690729,0.0,0.0,65.07570484040285,0.0772024580001016 +25,261.8691223893613,0.0,0.0,65.29820187678934,0.0774664170021424 +26,259.81227464687464,0.0,0.0,64.78531796786092,0.0768579579998913 +27,259.9996074518044,0.0,0.0,64.83203021557779,0.0769133750000037 +28,259.53803797523506,0.0,0.0,64.71693586391773,0.0767768330006219 +29,238.99902099587555,0.0,0.0,59.5954428645449,0.0707009580000885 +0,237.2903027127171,0.3735384536996727,0.0,63.37702431104448,0.0720150829984049 +1,254.30572604705935,0.4003238505266577,0.0,67.92161330602293,0.0771790830003738 +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.076375916996767 +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.0744619170000078 +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.0772538749988598 +5,254.06793847194996,0.3999495292750097,0.0,67.85810346699333,0.0771069170004921 +6,236.36440535324107,0.3720809214533507,0.0,63.129729673251845,0.0717340829978638 +7,253.92130730041657,0.3997187049199788,0.0,67.81894026808975,0.077062415999535 +8,255.6341646934731,0.4024150565816184,0.0,68.27642126668127,0.0775822499999776 +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.0774064999968686 +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.073707874998945 +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.0794006249998346 +12,242.49408311058815,0.3817301583795169,0.0,64.76688353839138,0.073594375000539 +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.0757026249993941 +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.078668625003047 +15,240.73660801776333,0.3789635702758966,0.0,64.29748575681046,0.0730610000027809 +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.0800764999985403 +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.0802019589973497 +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.0784857090002333 +19,255.1599602642359,0.4016685718445272,0.0,68.14976768962146,0.0774383339994528 +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.0785644589996081 +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.0799249170013354 +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.0784903749990917 +23,254.37094085870467,0.400426510600086,0.0,67.93903129848127,0.0771988750020682 +24,257.3998773220497,0.4051946120772132,0.0,68.74801918243385,0.07811812500222 +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.0782012919989938 +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.0796113340002193 +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.0793126249991473 +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.0785715840029297 +29,253.68324295352303,0.3993439479787848,0.0,67.75535650706716,0.0769901660023606 +0,259.3603261187444,0.0,0.0,65.0750093613154,0.0772384160009096 +1,259.0137620395562,0.0,0.0,64.98805442477995,0.0771352080009819 +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189 +3,242.06494915581175,0.0,0.0,60.73549901826075,0.0720877919993654 +4,235.64265081788608,0.0,0.0,59.124107134560184,0.0701752089989895 +5,264.44449718901984,0.0,0.0,66.35065735630297,0.0787525000014284 +6,258.4949635864557,0.0,0.0,64.85788488536977,0.0769807079996098 +7,260.75512162880096,0.0,0.0,65.42497164055966,0.0776537910023762 +8,258.54729338873193,0.0,0.0,64.87101473612205,0.0769962919985118 +9,258.4187119612678,0.0,0.0,64.83875291057171,0.0769579999978304 +10,256.03319274883137,0.0,0.0,64.24021231107454,0.076247583998338 +11,259.9925953597714,0.0,0.0,65.23364937921801,0.0774267080014396 +12,260.68391024286916,0.0,0.0,65.40710429100974,0.0776325840015488 +13,266.00341096992025,0.0,0.0,66.74179786111225,0.0792167500003415 +14,262.4791342007781,0.0,0.0,65.85753638914451,0.0781672080011048 +15,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304 +16,259.2768012481966,0.0,0.0,65.0540524870928,0.0772135420011181 +17,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263 +18,249.63999413559765,0.0,0.0,62.63612171699325,0.0743436669981747 +19,256.52512449555974,0.0,0.0,64.36364083810693,0.0763940830001956 +20,257.38978857591655,0.0,0.0,64.58059006841385,0.0766515830000571 +21,260.0975303138043,0.0,0.0,65.25997816750345,0.077457957999286 +22,258.5177705738045,0.0,0.0,64.86360729071002,0.0769875000005413 +23,248.91608058597623,0.0,0.0,62.45448761079295,0.0741280830006871 +24,261.7960764426832,0.0,0.0,65.68615323788339,0.0779637910018209 +25,259.62770375529885,0.0,0.0,65.14209596034219,0.0773180420001153 +26,260.6953808942086,0.0,0.0,65.40998234392734,0.077636000001803 +27,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981 +28,258.4513106522235,0.0,0.0,64.84693211111042,0.0769677080024848 +29,259.19789015504335,0.0,0.0,65.03425323636505,0.0771900420004385 +0,236.6567212800667,0.8267216295202227,0.0,59.860769841186496,0.0703788339997117 +1,261.95098582591453,0.915083014270888,0.0,66.25878862591058,0.0779010410005867 +2,245.40833969424455,0.8572939800419981,0.0,62.07443448081875,0.072981459001312 +3,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.0765551250005955 +4,258.9009587470573,0.9044282424855152,0.0,65.48730422441415,0.0769939999991038 +5,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227 +6,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.0774625839985674 +7,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.0775410830028704 +8,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.0770794579984794 +9,258.61457516789665,0.9034278081942309,0.0,65.41486537110077,0.0769088330016529 +10,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.0707159580015286 +11,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.0780311669986986 +12,260.6072019459684,0.9103887246139408,0.0,65.91888728223164,0.077501415998995 +13,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548 +14,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.0768012089974945 +15,260.0306551965286,0.9083746526466904,0.0,65.77305355275111,0.0773299579996091 +16,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.0772179580017109 +17,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619 +18,260.3005048322299,0.9093173283051116,0.0,65.84131025320345,0.0774102080031298 +19,264.0587854421345,0.9224462682025656,0.0,66.79194275318578,0.0785278750008728 +20,263.0532231845429,0.9189335005799792,0.0,66.5375923568096,0.0782288330010487 +21,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.0775990420006564 +22,258.78481075864437,0.9040224984452576,0.0,65.45792535038811,0.0769594589983171 +23,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.0775372499992954 +24,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.077450917000533 +25,252.4247090150945,0.8818045210774421,0.0,63.84917921134812,0.0750680420023854 +26,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.0768218749981315 +27,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.0772714170016115 +28,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766 +29,251.73803334741703,0.8794057317091811,0.0,63.67548909227589,0.0748638330005633 +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.0750980420016276 +1,246.76674350378295,0.5470832863281573,0.0,65.48908751045883,0.0748969999986002 +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.0753702500005601 +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.0801031660012085 +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.0787539170014497 +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.0802945840005122 +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732 +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008 +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956 +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.0795499999985622 +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.0788625000022875 +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.0737082090017793 +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.0777287089986202 +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.0809930830000666 +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.0782412090011348 +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.0782246669987216 +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.0764459579986578 +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.0785907919998862 +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.0798172499999054 +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879 +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.0777190000007976 +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.0745992910015047 +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.0789691250029136 +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.077969292000489 +24,251.71874980934945,0.5580619127228665,0.0,66.80329367006078,0.0764000000017404 +25,232.25845891939952,0.51491833615412,0.0,61.6387537690373,0.0704935419998946 +26,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.0773807089972251 +27,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.0778139169997302 +28,252.35079120270456,0.5594631521186721,0.0,66.9710302683234,0.0765918329998385 +29,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.0767333750009129 +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.0754009170013887 +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.0771903749991906 +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.0770712499979708 +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.0776679580012569 +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.0779796249989885 +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.0773913749981147 +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.0775697919998492 +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.0763929170025221 +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.077310500000749 +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.078158500000427 +10,235.2985150178381,0.7924561386611128,0.0,58.42840068512897,0.0703293330006999 +11,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.0771376249977038 +12,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673 +13,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.0769387920008739 +14,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766 +15,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.0772323329983919 +16,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.0768300420022569 +17,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.0776397079971502 +18,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665 +19,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.0771370830007072 +20,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.0776909169981081 +21,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.0772428750024118 +22,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409 +23,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.0776754579965199 +24,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.0769548329990357 +25,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.0770484999993641 +26,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.0768427919974783 +27,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.076798707999842 +28,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.0777810409999801 +29,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901 +0,253.53427688728465,0.0,0.0,64.57760820245201,0.076206000001548 +1,258.26881641088414,0.0,0.0,65.78354075771735,0.0776290829999197 +2,255.5581794818601,0.0,0.0,65.09311557446122,0.0768143340028473 +3,258.37666645619265,0.0,0.0,65.81101119704435,0.0776614999995217 +4,251.4109813828545,0.0,0.0,64.03678450450256,0.0755677910019585 +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029 +6,257.9566378142825,0.0,0.0,65.70402587969754,0.0775352499986183 +7,257.22664634671185,0.0,0.0,65.51809006240816,0.0773158330011938 +8,253.8991312230035,0.0,0.0,64.67054009565513,0.0763156659995729 +9,251.0245017908568,0.0,0.0,63.938344451438795,0.0754516249980952 +10,254.54456469819945,0.0,0.0,64.83493818254766,0.0765096670002094 +11,255.85774223615337,0.0,0.0,65.16941707663403,0.0769043750005948 +12,255.93204323154933,0.0,0.0,65.188342251678,0.0769267080031568 +13,259.880176018943,0.0,0.0,66.19396948049216,0.0781134169992583 +14,255.01172304341273,0.0,0.0,64.95392788664633,0.0766500829995493 +15,257.21028768275835,0.0,0.0,65.51392335404637,0.0773109159999876 +16,258.4208884003968,0.0,0.0,65.8222749497086,0.0776747919990157 +17,234.06796061376548,0.0,0.0,59.61935103545283,0.0703549169993493 +18,254.56563433542095,0.0,0.0,64.84030482091373,0.0765160000009927 +19,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036 +20,253.8269129094721,0.0,0.0,64.65214539962614,0.0762939589985762 +21,253.50017554675208,0.0,0.0,64.56892226445922,0.076195749999897 +22,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575 +23,256.791646381911,0.0,0.0,65.40729140575363,0.077185082998767 +24,258.8575518455188,0.0,0.0,65.93349731073064,0.0778060420016117 +25,254.13770416501097,0.0,0.0,64.73130690859188,0.0763873750001948 +26,255.17931863433267,0.0,0.0,64.99661608857218,0.0767004580011416 +27,255.7738762440398,0.0,0.0,65.14805560533038,0.0768791670016071 +28,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329 +29,254.6501956683362,0.0,0.0,64.86184340217827,0.076541417001863 +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645 +1,247.59900572459188,0.0,0.0,63.63541223539677,0.0749709170013375 +2,252.59749193776693,0.0,0.0,64.92007301098222,0.0764844170007563 +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751 +4,255.00742611955113,0.0,0.0,65.53945011497832,0.0772141250017739 +5,254.3331440184321,0.0,0.0,65.36615289457113,0.0770099579967791 +6,239.8215196985124,0.0,0.0,61.63652081022233,0.0726159590012684 +7,252.36520681402695,0.0,0.0,64.86037341904694,0.0764140829996904 +8,252.1722820871298,0.0,0.0,64.81078984139654,0.0763556669990066 +9,253.17365705842755,0.0,0.0,65.06815318950152,0.0766588750011578 +10,254.7703291078643,0.0,0.0,65.47851381988168,0.0771423340011097 +11,257.12521884407045,0.0,0.0,66.08374395274846,0.0778553750024002 +12,257.5769881962842,0.0,0.0,66.19985317895198,0.0779921670000476 +13,230.86734014931577,0.0,0.0,59.33520742176434,0.0699047080015589 +14,252.49634648493628,0.0,0.0,64.89407762151053,0.0764537909999489 +15,256.16553921217854,0.0,0.0,65.83709672243897,0.0775647920017945 +16,252.85330477462892,0.0,0.0,64.98581945968536,0.0765618749974237 +17,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322 +18,253.6318929035833,0.0,0.0,65.1859243688412,0.0767976249990169 +19,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254 +20,245.8200036875109,0.0,0.0,63.17819098094965,0.0744322499995178 +21,253.09219510207856,0.0,0.0,65.04721665480663,0.0766342089991667 +22,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297 +23,237.6873493714192,0.0,0.0,61.08801776535877,0.0719697499989706 +24,252.67647692470263,0.0,0.0,64.94037293985049,0.0765083329970366 +25,252.3727763729606,0.0,0.0,64.86231887113699,0.0764163749990984 +26,255.234202497438,0.0,0.0,65.59773390432493,0.0772827910004707 +27,252.58785824967035,0.0,0.0,64.91759705712458,0.0764815000002272 +28,254.14255755018047,0.0,0.0,65.31717027269754,0.0769522500013408 +29,253.90256744879193,0.0,0.0,65.25549042471276,0.0768795829972077 +0,249.7923844146721,0.0,0.0,64.11304733285456,0.0759544579996145 +1,251.5237567706763,0.0,0.0,64.55743060767458,0.0764809169995714 +2,236.44843625054185,0.0,0.0,60.68811833728591,0.0718969589979678 +3,254.81671512475305,0.0,0.0,65.40261888398953,0.0774822080020385 +4,254.0024857747179,0.0,0.0,65.19363443083687,0.0772346249977999 +5,250.58400715096883,0.0,0.0,64.3162294518006,0.0761951670028793 +6,253.13741623502708,0.0,0.0,64.97160106310882,0.0769715829992492 +7,247.96660298643684,0.0,0.0,63.64443252138948,0.0753992919999291 +8,251.19145867599536,0.0,0.0,64.47214120414525,0.0763798750012938 +9,256.62427379017913,0.0,0.0,65.86655654383826,0.0780318329998408 +10,252.7525020227826,0.0,0.0,64.87280692586343,0.0768545419996371 +11,252.65411359951872,0.0,0.0,64.84755402773163,0.0768246249972435 +12,234.1139962204404,0.0,0.0,60.08894849271152,0.071187124998687 +13,257.1501948549435,0.0,0.0,66.00154225286055,0.0781917500025883 +14,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418 +15,251.44934635326925,0.0,0.0,64.53833203257409,0.0764582909978344 +16,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126 +17,251.21776837388165,0.0,0.0,64.4788939917046,0.0763878750003641 +18,251.416600645554,0.0,0.0,64.52992734436225,0.0764483339989965 +19,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213 +20,252.05912958228944,0.0,0.0,64.69484225251759,0.0766437079983006 +21,255.11256441560653,0.0,0.0,65.47855314288348,0.0775721669997437 +22,244.42520870193505,0.0,0.0,62.73547935246641,0.0743224589969031 +23,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758 +24,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994 +25,252.46364123963497,0.0,0.0,64.7986663746775,0.0767667079999228 +26,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086 +27,255.64108684697413,0.0,0.0,65.61420653255007,0.0777328750009473 +28,250.51795663338612,0.0,0.0,64.29927657323282,0.0761750829988159 +29,252.8123829029725,0.0,0.0,64.88817627235069,0.0768727499998931 +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.0759556669981975 +1,250.9902886146916,0.9006828538804723,0.0,65.11603447313637,0.0766364589981094 +2,251.08826581851417,0.901034446717156,0.0,65.14145333303291,0.0766663750000589 +3,251.6577197956367,0.9030779418503708,0.0,65.28919046266385,0.0768402499998046 +4,254.8982707317584,0.9147067131522432,0.0,66.12990755826587,0.0778297079996264 +5,256.4147688442029,0.9201486920246515,0.0,66.5233424752637,0.0782927500004007 +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.0775765830003365 +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.0764232500005164 +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.0776412500017613 +9,254.6710622884788,0.913891371848608,0.0,66.07096140179567,0.0777603330025158 +10,253.76932556597777,0.9106554745190588,0.0,65.83701800967418,0.0774850000016158 +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.0757235410019347 +12,251.66945440127165,0.9031200516792044,0.0,65.29223484732618,0.076843833001476 +13,251.2764451718155,0.9017097314778068,0.0,65.1902739201733,0.0767238329972315 +14,233.39411648723728,0.8375386955283635,0.0,60.55094569153206,0.0712637079996056 +15,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.0771029589996032 +16,250.18161649107023,0.8977809204225009,0.0,64.90623543202673,0.076389542002289 +17,253.47757189478065,0.9096085115841412,0.0,65.76132646712013,0.0773959170001035 +18,248.6101232868392,0.8921415907422459,0.0,64.49853278255051,0.0759097080008359 +19,251.7260870200961,0.903323278780249,0.0,65.30692741403874,0.0768611249986861 +20,251.30523965227655,0.9018130609531456,0.0,65.19774425853853,0.07673262499884 +21,252.35899561673511,0.905594481878236,0.0,65.47112698615987,0.0770543750004435 +22,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.0770828749991778 +23,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.0753380000023753 +24,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.0723041249984817 +25,253.50431617204092,0.9097044838709604,0.0,65.76826490800424,0.0774040830001467 +26,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.0766381670000555 +27,252.60531086151025,0.906478388259008,0.0,65.53503014376236,0.0771295839986123 +28,253.74831266909396,0.9105800693867008,0.0,65.83156649788296,0.077478584000346 +29,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.0768664999995962 +0,346.01329874466325,0.3045891714301613,11.452552845774065,68.01476198035502,0.0710032919996592 +1,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.0775276669992308 +2,389.8002261465144,0.3431340018895373,12.901838471046604,76.62182262193369,0.0799885419983184 +3,389.79007528132496,0.3431250662687719,12.901502491705823,76.61982729781678,0.0799864590007928 +4,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.0766496670003107 +5,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.0783959170003072 +6,368.8117548208933,0.3246582348775469,12.207149631395763,72.49618384815624,0.0756816249995608 +7,379.99108210302904,0.334499191992103,12.577169618903074,74.69366957183661,0.0779756669980997 +8,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.0752130000000761 +9,388.8351277233648,0.3422844434184549,12.869895072533906,76.43211621534098,0.0797904999999445 +10,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.0803932499984512 +11,381.6621806372591,0.3359702294342069,12.63248062672618,75.02215223265841,0.0783185830005095 +12,366.6756700911541,0.322777878601368,12.136448235411438,72.07630029168548,0.0752432919980492 +13,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.0785939159977715 +14,384.18386223037226,0.3381900195689896,12.715944735794013,75.51783136975538,0.0788360419974196 +15,378.7553163563533,0.3334113700320011,12.536267513203242,74.45075892814586,0.0777220829986617 +16,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.0786690409986476 +17,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.0785877500020433 +18,381.6906108958314,0.3359952560702742,12.63342162824231,75.02774068049223,0.0783244170015677 +19,388.1719679438419,0.341700676006903,12.847945417859556,76.30176095234145,0.0796544170007109 +20,378.5252623152303,0.3332088576718577,12.528653048461848,74.40553791812582,0.0776748750031401 +21,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513 +22,383.54607720273344,0.3376285890869132,12.694834949667936,75.39246394310773,0.0787051659972348 +23,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758 +24,373.0230141252263,0.3283653293355865,12.346536383018057,73.32397804063648,0.0765457919987966 +25,383.6628342422502,0.3377313681709948,12.698699443229406,75.41541451258315,0.0787291250017006 +26,383.9716733361366,0.3380032335705427,12.708921582252408,75.4761220563022,0.0787925000004179 +27,388.3768470521449,0.3418810273346346,12.85472662778226,76.3420334038239,0.0796964590008428 +28,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.0767264999994949 +29,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.071810417000961 +0,252.8448031031451,0.0,0.0,63.327795876031466,0.0765359580000222 +1,250.71246289168695,0.0,0.0,62.793727530579304,0.0758905000002414 +2,255.849573327428,0.0,0.0,64.08037403101984,0.0774454999991576 +3,259.473357102869,0.0,0.0,64.98799102141685,0.078542416998971 +4,255.35499678935537,0.0,0.0,63.956501830904415,0.0772957920016779 +5,253.22472132458208,0.0,0.0,63.42295062424645,0.0766509589993802 +6,253.2219661176063,0.0,0.0,63.42226055198546,0.0766501250000146 +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966 +8,254.19074916093857,0.0,0.0,63.664903050717285,0.0769433749992458 +9,255.66691023668932,0.0,0.0,64.0346240263434,0.077390207999997 +10,245.0917868305501,0.0,0.0,61.38596663568849,0.0741891249999753 +11,254.09728348032925,0.0,0.0,63.64149353044874,0.0769150829983118 +12,258.4168897008931,0.0,0.0,64.72338699886663,0.0782226250012172 +13,241.31589833068384,0.0,0.0,60.44025332366666,0.0730461659986758 +14,236.296204735648,0.0,0.0,59.18301517819063,0.0715267080013291 +15,254.9943518084654,0.0,0.0,63.86617428035477,0.0771866249997401 +16,257.59167485304476,0.0,0.0,64.5167027530485,0.0779728330016951 +17,255.1975237091272,0.0,0.0,63.917060944802486,0.0772481250023702 +18,254.1328005774134,0.0,0.0,63.65038918282778,0.0769258340005762 +19,254.61044282269503,0.0,0.0,63.770020000783035,0.0770704159986053 +20,252.7502373251944,0.0,0.0,63.30411082413631,0.076507333000336 +21,256.13602257519875,0.0,0.0,64.1521184341835,0.0775322080007754 +22,233.69544263395284,0.0,0.0,58.53162535535499,0.0707394589990144 +23,257.93167227093824,0.0,0.0,64.6018588915749,0.078075749999698 +24,256.7664632982533,0.0,0.0,64.31001933201313,0.0777230419989791 +25,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739 +26,255.20371797321877,0.0,0.0,63.918612367205384,0.0772500000020954 +27,253.60793655700468,0.0,0.0,63.51893114556863,0.0767669580018264 +28,254.7793397817627,0.0,0.0,63.81232212452318,0.0771215409986325 +29,254.67445023433228,0.0,0.0,63.78605136962657,0.0770897910006169 +0,256.736730168257,0.0,0.0,62.78061796370678,0.0759414589992957 +1,246.83770108103627,0.0,0.0,60.35997810072678,0.0730133750003005 +2,249.48762015903063,0.0,0.0,61.00797091874418,0.073797207998723 +3,261.96853136599685,0.0,0.0,64.05996631422177,0.077488999999332 +4,260.9436089466303,0.0,0.0,63.809338899864194,0.0771858330008399 +5,259.1546474245066,0.0,0.0,63.37187866657925,0.0766566670026804 +6,261.2578738137402,0.0,0.0,63.88618704912788,0.0772787909991166 +7,260.56553299065286,0.0,0.0,63.71688682984707,0.0770739999970828 +8,260.5077801721833,0.0,0.0,63.70276435648577,0.0770569169981172 +9,260.269297511551,0.0,0.0,63.64444746198333,0.0769863750028889 +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342 +11,268.07593877521344,0.0,0.0,65.55342933003354,0.0792955409997375 +12,261.1346195586505,0.0,0.0,63.85604730910659,0.0772423329981393 +13,259.16746372829186,0.0,0.0,63.375012676547826,0.0766604580021521 +14,260.80992855999216,0.0,0.0,63.776649626002715,0.0771462910015543 +15,259.6238641522187,0.0,0.0,63.48661766830046,0.0767954589973669 +16,250.8287784191757,0.0,0.0,61.33592845058567,0.0741939159997855 +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235 +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625 +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357 +20,260.7072425967597,0.0,0.0,63.75153951330592,0.0771159169999009 +21,240.3277041436231,0.0,0.0,58.768068636098214,0.0710877500023343 +22,260.39015821218334,0.0,0.0,63.6740018988115,0.0770221250022586 +23,262.73187065656884,0.0,0.0,64.24662800593482,0.0777147919980052 +24,262.80286575413186,0.0,0.0,64.26398865430983,0.0777357919978385 +25,259.5470914101739,0.0,0.0,63.46784419484701,0.0767727499987813 +26,259.2690272739524,0.0,0.0,63.39984832104239,0.0766904999982216 +27,263.9649879020873,0.0,0.0,64.54816593798147,0.0780795419996138 +28,259.8130390424965,0.0,0.0,63.53287718288986,0.0768514159972255 +29,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653 +0,255.4535357322803,0.0,0.0,63.94788166253961,0.0773206670019135 +1,253.46435879218197,0.0,0.0,63.44992945684153,0.0767185829972731 +2,231.36937798580223,0.0,0.0,57.91887578051573,0.0700308750019758 +3,256.5681585689286,0.0,0.0,64.22690606144654,0.077658041001996 +4,259.27963304187745,0.0,0.0,64.90567156856736,0.0784787499978847 +5,257.07130386219023,0.0,0.0,64.35285881281608,0.0778103330012527 +6,257.34139440968914,0.0,0.0,64.42047078898278,0.0778920839984493 +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725 +8,256.468082553313,0.0,0.0,64.2018539548648,0.0776277499971911 +9,255.38512022018003,0.0,0.0,63.93075515435044,0.0772999589971732 +10,254.8657300539408,0.0,0.0,63.800735811333155,0.0771427500003483 +11,256.0687333702568,0.0,0.0,64.10188456423998,0.0775068750008358 +12,233.89707419467393,0.0,0.0,58.55163593229996,0.0707959579995076 +13,255.41444162612115,0.0,0.0,63.93809520463366,0.0773088339992682 +14,256.2091457030477,0.0,0.0,64.13703409237446,0.0775493750006717 +15,255.03298592111852,0.0,0.0,63.84260510224348,0.0771933750002062 +16,238.25646746995207,0.0,0.0,59.64292623090094,0.0721154589991783 +17,253.54145012996145,0.0,0.0,63.469227791199664,0.0767419170006178 +18,254.73825878542036,0.0,0.0,63.768825829851195,0.0771041670013801 +19,257.11687012908976,0.0,0.0,64.36426545173828,0.0778241249972779 +20,251.6776795914633,0.0,0.0,63.002668667246425,0.0761777910011005 +21,257.5273697281309,0.0,0.0,64.46702613464193,0.0779483750011422 +22,237.10632196795063,0.0,0.0,59.355009415634115,0.0717673330000252 +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745 +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247 +25,254.1629811907558,0.0,0.0,63.624816143544585,0.0769300419997307 +26,254.68470717332065,0.0,0.0,63.7554202132737,0.077087958001357 +27,254.7956626434966,0.0,0.0,63.78319578215078,0.0771215419990767 +28,255.26521799895795,0.0,0.0,63.90073993834724,0.0772636669971689 +29,237.74451089433737,0.0,0.0,59.51476774438824,0.0719605000012961 +0,406.90110086989495,1.1695525766824268,9.356420613459417,76.36490353632317,0.080162875001406 +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242 +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.0784781250004016 +3,401.51109823696424,1.1540601352656,9.2324810821248,75.35333824381271,0.0791009999993548 +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.0736787080022622 +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.0781110829993849 +6,396.616846417644,1.1399926264434777,9.11994101154782,74.43481266778001,0.0781367919989861 +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764 +8,399.3405038898903,1.147821213311038,9.182569706488303,74.94597333972072,0.0786733749991981 +9,383.8921206281695,1.1034180489777463,8.827344391821972,72.0467079038411,0.0756299160020717 +10,396.6972136294903,1.1402236252770876,9.1217890022167,74.44989553279808,0.0781526250029855 +11,396.0940256882952,1.1384898870066815,9.107919096053454,74.33669262220099,0.0780337920004967 +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.0781155000004218 +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.0828537080014939 +14,396.0908481484921,1.138480753829464,9.107846030635711,74.33609627945324,0.0780331659989315 +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.075443792000442 +16,374.5642575893283,1.0766070469217317,8.612856375373852,70.29610718136011,0.0737922500011336 +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.0755845000021508 +18,381.37974870457487,1.0961967584711765,8.76957406776941,71.57520011194151,0.0751349579986708 +19,408.4651216412204,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255 +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.0777786670005298 +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.0736387079996347 +22,400.4768776142425,1.1510874832094211,9.20869986567537,75.1592415507328,0.0788972500013187 +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.0792267500000889 +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.0778149590005341 +25,389.6991971410489,1.120109282508721,8.96087426006977,73.13654726968709,0.0767739580005582 +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.0779693330005102 +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.0744205830014834 +28,405.3831898437398,1.165189657171963,9.321517257375705,76.08003055652229,0.0798638340020261 +29,398.0772319408369,1.1441902008613116,9.153521606890491,74.70888958565034,0.078424499999528 +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878 +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405 +2,255.3331764989173,0.0,0.0,70.37239576741659,0.0769770410006458 +3,259.2942335745159,0.0,0.0,71.46410300265921,0.078171207998821 +4,258.6612396991297,0.0,0.0,71.28964351357979,0.0779803750010614 +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063 +6,257.37410271121684,0.0,0.0,70.9348955925995,0.0775923330002115 +7,256.01136788270634,0.0,0.0,70.55931214514888,0.0771815000007336 +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919 +9,259.045318948124,0.0,0.0,71.39549962396424,0.0780961660020693 +10,238.6136802942901,0.0,0.0,65.7643341748063,0.0719365000004472 +11,258.8377308561513,0.0,0.0,71.33828625449453,0.0780335829986142 +12,256.8371626413573,0.0,0.0,70.78690950000609,0.0774304580008902 +13,257.99811414343014,0.0,0.0,71.1068794298479,0.0777804579993244 +14,258.1165610601165,0.0,0.0,71.13952459336632,0.0778161670023109 +15,256.135891547354,0.0,0.0,70.5936321216249,0.0772190410025359 +16,256.2543384519732,0.0,0.0,70.62627728181748,0.0772547500018845 +17,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197 +18,253.0893623898181,0.0,0.0,69.75397799390524,0.0763005829976464 +19,253.0000819108746,0.0,0.0,69.72937139446263,0.0762736670003505 +20,240.37099932043577,0.0,0.0,66.24866900231768,0.0724662909997277 +21,247.79459427718265,0.0,0.0,68.29468656053892,0.0747043330011365 +22,256.24618193564646,0.0,0.0,70.62402926374595,0.0772522910010593 +23,254.47628482944975,0.0,0.0,70.13622779065612,0.0767187080018629 +24,257.38833929398254,0.0,0.0,70.93881933823452,0.0775966250002966 +25,256.62086741918284,0.0,0.0,70.7272963577338,0.0773652499992749 +26,257.5863909862953,0.0,0.0,70.99340437988461,0.0776563330000499 +27,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218 +28,256.10728569098626,0.0,0.0,70.5857480594236,0.0772104169991507 +29,261.6339654918951,0.0,0.0,72.1089566904453,0.0788765830002375 +0,261.6846194438566,0.0,0.0,70.7870578236059,0.0761451660000602 +1,264.8513555634606,0.0,0.0,71.64367650179537,0.0770666249991336 +2,269.77737005954486,0.0,0.0,72.97618917951907,0.0784999999996216 +3,266.95043658088093,0.0,0.0,72.21148889242174,0.0776774170008138 +4,245.5969253936852,0.0,0.0,66.43525246569763,0.0714639580000948 +5,264.9049123942919,0.0,0.0,71.65816390456655,0.0770822090016736 +6,268.0374194355293,0.0,0.0,72.50552343808509,0.0779937080005765 +7,249.4505628149961,0.0,0.0,67.47768153758304,0.0725852920004399 +8,261.54973419510105,0.0,0.0,70.7505706585463,0.0761059169999498 +9,243.2800464083468,0.0,0.0,65.80852458595446,0.0707897909996972 +10,270.3172100512772,0.0,0.0,73.12221871993097,0.0786570830023265 +11,272.70482912023755,0.0,0.0,73.76808216217084,0.0793518339996808 +12,270.90029688215856,0.0,0.0,73.2799467564564,0.0788267499992798 +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053 +14,264.864243015556,0.0,0.0,71.64716262497149,0.0770703749985841 +15,267.43801192267176,0.0,0.0,72.34338057174956,0.0778192920006404 +16,268.4402228149727,0.0,0.0,72.61448385835281,0.0781109159979678 +17,245.10605773741895,0.0,0.0,66.30247019808976,0.0713211250003951 +18,270.45009515394486,0.0,0.0,73.15816483501571,0.0786957499985874 +19,269.58577658088814,0.0,0.0,72.92436214176223,0.0784442500007571 +20,264.0393016153403,0.0,0.0,71.42401166286199,0.0768303329969057 +21,264.65732548978616,0.0,0.0,71.59119035234609,0.0770101659982174 +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325 +23,267.9255872644627,0.0,0.0,72.47527225107741,0.0779611670004669 +24,268.883125097681,0.0,0.0,72.73429124161788,0.0782397920011135 +25,266.39670220014995,0.0,0.0,72.06170084713644,0.0775162909994833 +26,270.10857762340623,0.0,0.0,73.06578255732055,0.0785963749985967 +27,269.86486039771097,0.0,0.0,72.99985577345161,0.078525457996875 +28,266.2155630292543,0.0,0.0,72.01270175429117,0.0774635830020997 +29,267.78210693862854,0.0,0.0,72.43646007272716,0.077919416999066 +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185 +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.0771942079991276 +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.0778375420013617 +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.0770157910010311 +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.0775850829995761 +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.0741231249994598 +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.078746458999376 +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.0746817090002878 +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.0783254170019063 +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.0784614170006534 +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.0773908750015834 +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.0808109999998123 +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595 +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.0778277089993935 +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.0793734999970183 +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.0783875000015541 +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.0790057079975667 +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.0785369580007682 +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.0782466659984493 +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.0789429169999493 +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107 +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.0796699590027856 +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185 +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641 +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732 +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.0785001250005734 +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594 +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134 +28,255.42040166006765,0.5993439225500219,0.0,68.29191028611638,0.0778273750001972 +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.0758569999998144 +0,405.8431369282208,0.3014184050465412,12.492118342484432,76.292347410669,0.0778078330004063 +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.077850457997556 +2,374.8841940857946,0.2784252968123578,11.539181745667715,70.47253623761678,0.0718724159996782 +3,395.92910555470706,0.2940552855250341,12.186957944537523,74.42866004733642,0.0759071249995031 +4,396.96491328086944,0.2948245766238508,12.21884078674404,74.6233761721258,0.0761057090021495 +5,403.6617775393808,0.2997983163768301,12.424974667617516,75.88228496737989,0.0773896249993413 +6,410.7431055614168,0.3050575961423297,12.642942595676551,77.21346711246967,0.0787472499978321 +7,408.4530767282583,0.3033567990224727,12.57245400393137,76.7829764636881,0.0783082080015447 +8,412.0644822883901,0.3060389784284131,12.6836154393109,77.46186587332501,0.0790005829985602 +9,414.61052649200695,0.3079299173484124,12.76198435232865,77.94048352440929,0.0794887080010084 +10,401.4493414263137,0.2981551471230255,12.356874430765387,75.46638057180579,0.0769654590003483 +11,418.55140908310005,0.3108567982957502,12.883287307146093,78.68130961307988,0.080244249998941 +12,371.5974824961197,0.2759842665840136,11.438014603981898,69.85468436426478,0.0712422910000896 +13,412.4000411444283,0.3062881969219223,12.69394416131967,77.52494584312656,0.0790649160007888 +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549 +15,411.7995528547654,0.3058422161819515,12.67546073731866,77.4120631624984,0.0789497909972851 +16,409.77163159678435,0.304336085523276,12.613039988909108,77.03084475800254,0.0785609999984444 +17,420.8577378253096,0.3125697013061385,12.954277620798852,79.11486439726484,0.0806864169971959 +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.0790608339993923 +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.076155833001394 +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.0787210829985269 +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.0815035830019041 +22,410.9195773893686,0.305188661206826,12.64837451446068,77.24664113657218,0.0787810829970112 +23,408.3198556922807,0.303257856183407,12.568353372934537,76.7579329317557,0.0782826670001668 +24,402.4147283665603,0.2988721369284571,12.386589674923831,75.64785865811392,0.0771505420016183 +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.0792156669995165 +26,382.7631322481759,0.2842769590884291,11.781700637776003,71.95365697816015,0.0733829580021847 +27,386.7318315968666,0.2872244994530284,11.903859810664404,72.69971219488876,0.0741438330005621 +28,399.2001692552227,0.2964846941159436,12.28764343391633,75.0435703551244,0.0765342500017141 +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.075706124996941 +0,243.61769021404157,0.0,0.0,60.71178863926628,0.0740814170021622 +1,251.461612143386,0.0,0.0,62.666566758453214,0.0764666659997601 +2,254.063240155725,0.0,0.0,63.31491659653083,0.0772577920033654 +3,232.2594398453139,0.0,0.0,57.881207267723845,0.0706275000011373 +4,252.81360526435807,0.0,0.0,63.00349598773077,0.0768777919984131 +5,252.19796606709363,0.0,0.0,62.850072987990785,0.0766905829987081 +6,255.2020225366119,0.0,0.0,63.598711731251065,0.0776040829987323 +7,255.2195634669661,0.0,0.0,63.60308309383669,0.0776094169996213 +8,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134 +9,251.7152386884793,0.0,0.0,62.72977284658861,0.0765437909976753 +10,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569 +11,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293 +12,256.09101607265075,0.0,0.0,63.82025716834245,0.0778744159979396 +13,258.54822246754117,0.0,0.0,64.43261579943601,0.0786216250016877 +14,251.91734740702609,0.0,0.0,62.78014021437615,0.0766052500002842 +15,256.0914304298579,0.0,0.0,63.82036043000281,0.0778745419993356 +16,256.1073238132674,0.0,0.0,63.82432120860419,0.0778793749996111 +17,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663 +18,252.78893813177984,0.0,0.0,62.99734870943538,0.0768702909990679 +19,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129 +20,254.19532983990769,0.0,0.0,63.34783457133176,0.0772979590001341 +21,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895 +22,254.8345312291614,0.0,0.0,63.50712948792096,0.0774923329990997 +23,256.2513343634823,0.0,0.0,63.86020997381984,0.0779231669985165 +24,256.51962110224747,0.0,0.0,63.927069518232734,0.0780047499974898 +25,254.42100073848025,0.0,0.0,63.404073852987096,0.0773665829983656 +26,252.18371695261897,0.0,0.0,62.84652197646316,0.0766862500022398 +27,253.7606969687288,0.0,0.0,63.23952002739407,0.077165792001324 +28,252.71604495264393,0.0,0.0,62.97918305290586,0.0768481249979231 +29,253.57256771842907,0.0,0.0,63.192636472792486,0.077108583998779 +0,388.73038558373344,0.3723471126280971,12.795200779401885,75.75571255106195,0.0790761250027571 +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.081851082999492 +2,386.16305637510675,0.3698879850336271,12.710696212973732,75.25539186411433,0.0785538749987608 +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597 +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908 +5,374.82924555374433,0.3590318444001382,12.337639743932025,73.04666070613722,0.0762483340004109 +6,356.617671661771,0.3415878081051446,11.738199223976787,69.4975922308467,0.0725437080000119 +7,391.64449222473655,0.3751384025141154,12.891119650030513,76.32361316605368,0.0796689169983437 +8,394.2085425197358,0.3775943893867201,12.975516289834564,76.82329485886179,0.0801905000007536 +9,394.23025605863455,0.3776151877956269,12.976230998795184,76.82752638969211,0.0801949170017906 +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.0770093749997613 +11,390.7969073771063,0.3743265396332436,12.8632210892151,76.15843597265447,0.0794965000022784 +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.0793902500008698 +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.0770231249989592 +14,361.2965867125136,0.3460695275024076,11.89220739962819,70.40941841367166,0.0734955000007175 +15,395.7865466718811,0.3791058876167443,13.027456865375395,77.13081604420672,0.0805115000002842 +16,391.401769634818,0.3749059096118946,12.883130348481467,76.27631142831092,0.0796195420007279 +17,381.2733721004155,0.3652043794065282,12.549750492333423,74.30249101016456,0.0775592080026399 +18,379.5206519126656,0.3635255286519786,12.492059075495265,73.96092119301164,0.077202667001984 +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.0731172079977113 +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.0759907499996188 +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.078528041998652 +22,386.9403832051992,0.3706325509628345,12.736282205813769,75.40687718680215,0.0787120000022696 +23,390.2086362678317,0.3737630615592258,12.843857933580669,76.04379379723157,0.079376833000424 +24,376.20897175435175,0.3603534212206434,12.383053929218477,73.31554151743637,0.0765289999981178 +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.0730223749997094 +26,382.8300756539037,0.3666954747642755,12.60098995099056,74.60586113840442,0.0778758750020642 +27,379.2515063336283,0.3632677263732072,12.48320005173385,73.90847014756707,0.0771479169998201 +28,386.50532596295153,0.3702158294664286,12.721962139846369,75.32209330416975,0.078623499997775 +29,385.28085865824175,0.3690429680634499,12.681658357089464,75.08346932054555,0.0783744170003046 +0,254.7701558196424,0.0,0.0,63.11246118665094,0.0760953749995678 +1,253.09222999705185,0.0,0.0,62.69680014498916,0.0755942079995293 +2,263.90234613131526,0.0,0.0,65.374715981528,0.0788229999998293 +3,259.7544057697603,0.0,0.0,64.3471751997949,0.0775840829992375 +4,258.13381843399344,0.0,0.0,63.9457182277288,0.0771000419990741 +5,258.38938416388623,0.0,0.0,64.00902777101736,0.0771763749980891 +6,257.3555370297845,0.0,0.0,63.75291991994662,0.0768675830004212 +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052 +8,245.76644644425735,0.0,0.0,60.88203409183789,0.0734061250004742 +9,256.3932541903437,0.0,0.0,63.51454020015801,0.0765801660018041 +10,256.7573565822389,0.0,0.0,63.6047367853998,0.0766889169972273 +11,256.6365493698801,0.0,0.0,63.57481004426902,0.0766528340027434 +12,254.0235434990149,0.0,0.0,62.92750804347181,0.0758723750004719 +13,259.3886326959798,0.0,0.0,64.25656474800229,0.0774748330004513 +14,257.7577233561085,0.0,0.0,63.8525507767409,0.0769877089987858 +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107 +16,258.37473651085224,0.0,0.0,64.00539920851713,0.0771720000011555 +17,257.275184131123,0.0,0.0,63.733014648147055,0.0768435829995723 +18,251.4304885893039,0.0,0.0,62.28514835727747,0.0750978750002104 +19,260.1250602942841,0.0,0.0,64.43899489985908,0.0776947910017042 +20,258.7400910767803,0.0,0.0,64.09590598623336,0.0772811249989899 +21,257.76525643655174,0.0,0.0,63.8544168950292,0.0769899589977285 +22,234.9518673671031,0.0,0.0,58.203012681103864,0.0701759999974456 +23,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708 +24,254.9226321277627,0.0,0.0,63.150233095402065,0.0761409169972466 +25,261.7944753894208,0.0,0.0,64.85254763745215,0.0781934159967931 +26,259.7657053965152,0.0,0.0,64.34997437873601,0.0775874579994706 +27,255.6566859729138,0.0,0.0,63.33207521369086,0.0763601660000858 +28,259.06303605935,0.0,0.0,64.17590692909216,0.0773775829984515 +29,258.87526808998655,0.0,0.0,64.12939245945022,0.0773215000008349 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..8f40df3e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713 +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006 +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059 +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968 +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581 +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476 +6,2441.8114041555423,3.6186400599475634,85.3731006735777,503.0244742591923,0.5088992080018215 +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948 +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731 +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782 +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501 +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053 +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794 +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086 +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143 +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084 +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.49433815624883,0.5113979170018865 +17,2419.5950410391,3.585716542012196,84.59634952821366,498.44780041878795,0.5042690839982242 +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158 +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739 +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313 +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094 +22,2415.987574562841,3.5803704605401814,84.47022160607762,497.70464559342355,0.5035172499992768 +23,2406.0582537899954,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208 +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778 +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196 +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.28965194017013,0.5071441250001953 +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398 +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694 +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5cf18fa22 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.6707450554323,0.34066350385551425,11.684758182244138,66.53158230298193,0.0646891249998589 +1,373.51100062489115,0.32321824214684247,11.086385705636697,63.12452269127834,0.06137641699751839 +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.06378570800006855 +3,390.97305681589523,0.33832905574238076,11.604686611963661,66.07566458648697,0.06424583300031372 +4,408.37096492483516,0.35338435870961854,12.121083503739916,69.0159652559885,0.06710470800317125 +5,401.99100267653665,0.34786344987585377,11.931716330741784,67.93773176075425,0.06605633399885846 +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.06394129199907184 +7,383.0780350607198,0.33149708814530965,11.37035012338412,64.74138131477898,0.06294849999903818 +8,386.1588591424435,0.33416308337006184,11.461793759593121,65.26205018217308,0.06345474999761791 +9,361.0748654835688,0.3124566160293949,10.717261929808245,61.02277711054082,0.0593328750001092 +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331 +11,384.8334749313357,0.33301616037671833,11.422454300921437,65.03805612157308,0.06323695899845916 +12,403.72462575497076,0.34936364291707406,11.98317295205564,68.23071946170457,0.06634120799935772 +13,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.06401800000094227 +14,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.06182191699917894 +15,374.78998230121243,0.32432501064487057,11.124347865119061,63.34067457894322,0.06158658299682429 +16,399.8438036989407,0.34600536837914564,11.867984135404695,67.57484844444714,0.06570350000038161 +17,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.06246408300285111 +18,390.02142447908176,0.33750555943153493,11.576440688501648,65.91483575697877,0.06408945799921639 +19,398.35714556030706,0.34471888677769735,11.82385781647502,67.32359858768429,0.06545920799908345 +20,394.66852432990555,0.34152693348036134,11.714373818376393,66.70021010871457,0.06485308300034376 +21,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.06627633400057675 +22,374.6576210026007,0.32421047161872685,11.120419176522331,63.31830510713735,0.061564833002194064 +23,387.9335659886732,0.33569882830449393,11.514469810844142,65.56198116786766,0.06374637500266545 +24,384.9361629864913,0.33310502162209354,11.425502241637808,65.05541072279487,0.0632538329991803 +25,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.06230212500304333 +26,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.06129624999812222 +27,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.06245325000054436 +28,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.06307220800226787 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a411193b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..54f80da94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a3a8ca35a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b183cd73c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..46286b7ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ac09de529 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..d0c9b8a07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..59f2a143d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ea1abc36a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bc4b22539 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4387c0cdc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4f14ea0e4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..107d21659 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..32af2884c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ce7b1961e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..3465df0ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d7c600eb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..7a73976d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ced78127a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..8dbb55e05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..8f40df3e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713 +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006 +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059 +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968 +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581 +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476 +6,2441.8114041555423,3.6186400599475634,85.3731006735777,503.0244742591923,0.5088992080018215 +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948 +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731 +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782 +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501 +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053 +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794 +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086 +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143 +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084 +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.49433815624883,0.5113979170018865 +17,2419.5950410391,3.585716542012196,84.59634952821366,498.44780041878795,0.5042690839982242 +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158 +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739 +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313 +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094 +22,2415.987574562841,3.5803704605401814,84.47022160607762,497.70464559342355,0.5035172499992768 +23,2406.0582537899954,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208 +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778 +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196 +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.28965194017013,0.5071441250001953 +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398 +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694 +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..7e83738f4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.6707450554323,0.34066350385551425,11.684758182244138,66.53158230298193,0.0646891249998589 +1,373.51100062489115,0.32321824214684247,11.086385705636697,63.12452269127834,0.06137641699751839 +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.06378570800006855 +3,390.97305681589523,0.33832905574238076,11.604686611963661,66.07566458648697,0.06424583300031372 +4,408.37096492483516,0.35338435870961854,12.121083503739916,69.0159652559885,0.06710470800317125 +5,401.99100267653665,0.34786344987585377,11.931716330741784,67.93773176075425,0.06605633399885846 +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.06394129199907184 +7,383.0780350607198,0.33149708814530965,11.37035012338412,64.74138131477898,0.06294849999903818 +8,386.1588591424435,0.33416308337006184,11.461793759593121,65.26205018217308,0.06345474999761791 +9,361.0748654835688,0.3124566160293949,10.717261929808245,61.02277711054082,0.0593328750001092 +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331 +11,339.917840818384,0.29414835654065763,10.089288629344557,57.447174032390436,0.05585629100096412 +12,384.8334749313357,0.33301616037671833,11.422454300921437,65.03805612157308,0.06323695899845916 +13,403.72462575497076,0.34936364291707406,11.98317295205564,68.23071946170457,0.06634120799935772 +14,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.06401800000094227 +15,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.06182191699917894 +16,374.78998230121243,0.32432501064487057,11.124347865119061,63.34067457894322,0.06158658299682429 +17,399.8438036989407,0.34600536837914564,11.867984135404695,67.57484844444714,0.06570350000038161 +18,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.06246408300285111 +19,390.02142447908176,0.33750555943153493,11.576440688501648,65.91483575697877,0.06408945799921639 +20,398.35714556030706,0.34471888677769735,11.82385781647502,67.32359858768429,0.06545920799908345 +21,394.66852432990555,0.34152693348036134,11.714373818376393,66.70021010871457,0.06485308300034376 +22,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.06627633400057675 +23,374.6576210026007,0.32421047161872685,11.120419176522331,63.31830510713735,0.061564833002194064 +24,387.9335659886732,0.33569882830449393,11.514469810844142,65.56198116786766,0.06374637500266545 +25,384.9361629864913,0.33310502162209354,11.425502241637808,65.05541072279487,0.0632538329991803 +26,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.06230212500304333 +27,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.06129624999812222 +28,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.06245325000054436 +29,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.06307220800226787 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c012f103d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..a29986b82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a3df6a244 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0a3341654 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a56e9fb69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..45321dbf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..dcc1fd126 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7c05a91a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f0e536b0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..972ea53a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7438cb182 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..28d680cef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7dc526ca1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2cab5f929 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5a00ca1b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..45c29f185 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..4541ea2bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..004f7daec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..478561eb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..705c87cfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..070d5f4dc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2413.4555541118834,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306 +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237 +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544 +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555 +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645 +5,2400.6071022676642,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602 +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546 +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905 +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967 +9,2419.322533895495,4.473549974361046,80.79097714890844,502.70683219349723,0.5066046669999196 +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114 +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656 +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344 +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755 +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583 +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172 +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128 +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602 +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134 +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.92875630271675,0.5128748340030143 +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.29336737617075,0.5071957499967539 +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831 +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194 +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012 +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208 +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382 +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622 +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875 +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928 +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..378084e43 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.06106958400050644 +1,348.61418586415783,0.32804571926616904,8.988452707893032,60.78687178002113,0.060986500000581145 +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.06290591599827167 +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471016 +4,358.8403201050791,0.33766850485092603,9.252117032915374,62.5699739488766,0.06277545799821382 +5,342.5880675551526,0.32237514590679645,8.833078997846224,59.736114536529385,0.059932291998848086 +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.061067292001098394 +7,345.5035960299564,0.32511865628112957,8.908251182102951,60.24448700889331,0.060442334000981646 +8,376.33157594924216,0.35412776507880134,9.703100763159156,65.61987486910189,0.06583537500046077 +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.05688245800047298 +10,374.6764809907141,0.35257032181303666,9.660426817677205,65.33128063195569,0.06554583300021477 +11,345.8784849508381,0.32547142650874006,8.917917086339479,60.30985533206954,0.06050791699817637 +12,362.25983335779995,0.34088626456930454,9.340283649198945,63.16622482469214,0.06337366700245184 +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.06185604200072703 +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.06439087499893503 +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.06222712499948102 +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.06215825000253972 +17,360.4265799552419,0.3391611743250606,9.293016176506661,62.846565602433735,0.06305295799757005 +18,349.90653892523665,0.32926182264537185,9.021773940483188,61.0122157361874,0.06121258400162333 +19,360.72001805303375,0.3394372993817952,9.300582003061189,62.89773157544665,0.06310429200311773 +20,358.5747544990663,0.33741860779059596,9.245269853462329,62.52366802359742,0.06272900000112713 +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.056816125001205364 +22,362.48109802913564,0.34109447447928454,9.345988600732396,63.20480612101142,0.06341237500237185 +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079 +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.06376720899788779 +25,332.0330087474858,0.31244284252139437,8.560933885086206,57.895658719214374,0.05808579199947417 +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.06030391700187465 +27,366.3288499695804,0.3447152065207306,9.445196658668019,63.875727768291384,0.06408550000196556 +28,354.5207373187578,0.3336037802943049,9.140743580063955,61.8167804885347,0.062019790999329416 +29,361.63414385434453,0.34029749115869434,9.324151257748225,63.057125111706064,0.06326420899858931 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..90825ba7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..852feb139 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f6043a4aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0cf87d111 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c3ba6a078 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e7e561489 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c1d6ff936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7db036306 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3082651e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c84e0252e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bf6776163 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0a033b084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ce1f37417 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1d43f2763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4a12e3133 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..b853563ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1e277fdba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..bf6d371fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..90131098c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..df08f5678 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..070d5f4dc --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2413.4555541118834,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306 +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237 +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544 +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555 +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645 +5,2400.6071022676642,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602 +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546 +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905 +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967 +9,2419.322533895495,4.473549974361046,80.79097714890844,502.70683219349723,0.5066046669999196 +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114 +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656 +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344 +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755 +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583 +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172 +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128 +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602 +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134 +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.92875630271675,0.5128748340030143 +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.29336737617075,0.5071957499967539 +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831 +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194 +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012 +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208 +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382 +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622 +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875 +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928 +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..378084e43 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.06106958400050644 +1,348.61418586415783,0.32804571926616904,8.988452707893032,60.78687178002113,0.060986500000581145 +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.06290591599827167 +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471016 +4,358.8403201050791,0.33766850485092603,9.252117032915374,62.5699739488766,0.06277545799821382 +5,342.5880675551526,0.32237514590679645,8.833078997846224,59.736114536529385,0.059932291998848086 +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.061067292001098394 +7,345.5035960299564,0.32511865628112957,8.908251182102951,60.24448700889331,0.060442334000981646 +8,376.33157594924216,0.35412776507880134,9.703100763159156,65.61987486910189,0.06583537500046077 +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.05688245800047298 +10,374.6764809907141,0.35257032181303666,9.660426817677205,65.33128063195569,0.06554583300021477 +11,345.8784849508381,0.32547142650874006,8.917917086339479,60.30985533206954,0.06050791699817637 +12,362.25983335779995,0.34088626456930454,9.340283649198945,63.16622482469214,0.06337366700245184 +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.06185604200072703 +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.06439087499893503 +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.06222712499948102 +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.06215825000253972 +17,360.4265799552419,0.3391611743250606,9.293016176506661,62.846565602433735,0.06305295799757005 +18,349.90653892523665,0.32926182264537185,9.021773940483188,61.0122157361874,0.06121258400162333 +19,360.72001805303375,0.3394372993817952,9.300582003061189,62.89773157544665,0.06310429200311773 +20,358.5747544990663,0.33741860779059596,9.245269853462329,62.52366802359742,0.06272900000112713 +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.056816125001205364 +22,362.48109802913564,0.34109447447928454,9.345988600732396,63.20480612101142,0.06341237500237185 +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079 +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.06376720899788779 +25,332.0330087474858,0.31244284252139437,8.560933885086206,57.895658719214374,0.05808579199947417 +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.06030391700187465 +27,366.3288499695804,0.3447152065207306,9.445196658668019,63.875727768291384,0.06408550000196556 +28,354.5207373187578,0.3336037802943049,9.140743580063955,61.8167804885347,0.062019790999329416 +29,361.63414385434453,0.34029749115869434,9.324151257748225,63.057125111706064,0.06326420899858931 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..90825ba7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..852feb139 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f6043a4aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..0cf87d111 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c3ba6a078 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e7e561489 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c1d6ff936 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7db036306 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3082651e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c84e0252e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bf6776163 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0a033b084 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ce1f37417 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1d43f2763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4a12e3133 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..b853563ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1e277fdba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..bf6d371fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..90131098c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..df08f5678 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..5de27c77d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731 +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064 +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738 +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141 +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031 +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806 +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741 +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907 +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344 +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595 +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087 +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484 +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554 +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421 +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195 +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687 +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761 +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689 +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782 +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762 +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611 +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179 +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539 +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082 +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504 +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451 +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206 +27,2420.701363746525,3.272075332025206,80.19923415841373,498.32371765792044,0.5071317910005746 +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987 +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f09c8eba3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,378.2830151197381,0.24295633597927946,9.718253439171178,64.97346585045874,0.06555629200011026 +1,353.2040927683805,0.22684912830339146,9.073965132135658,60.66593831199269,0.06121012500079814 +2,357.24886858454886,0.2294469290844887,9.177877163379547,61.36066446373754,0.06191108299753978 +3,348.1538269708763,0.22360554076485314,8.944221630594125,59.79851033025787,0.06033491600101115 +4,358.26397198427844,0.23009889016331306,9.203955606532523,61.53501748367458,0.062087000002065906 +5,356.8740379487522,0.22920619007626986,9.168247603050794,61.29628397468245,0.061846125001466135 +6,349.28482212183866,0.22433193456765488,8.973277382706195,59.99276878723571,0.060530916998686735 +7,362.52080833113473,0.23283288910156372,9.313315564062549,62.266166914018186,0.06282470800215378 +8,368.1793617620893,0.23646715591656345,9.458686236662539,63.23807369654383,0.06380533300034585 +9,372.05703967465683,0.23895763627145591,9.558305450858237,63.90409930002364,0.06447733299864922 +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.06196987500152318 +11,363.98119261159053,0.23377083661630732,9.350833464652293,62.517000877961046,0.0630777920014225 +12,354.28483392042943,0.22754324593476521,9.101729837390607,60.851565198554354,0.06139741700098966 +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.06306812500042724 +14,356.9596353834419,0.22926116594954518,9.170446637981808,61.31098609393551,0.061860959001933224 +15,378.40779325868374,0.24303647608136397,9.72145904325456,64.99489760347333,0.06557791600062046 +16,387.2890894266006,0.24874058408901772,9.94962336356071,66.52033905923446,0.06711704099870985 +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.06303791699974681 +18,365.2316744876873,0.23457397205374908,9.382958882149962,62.731782240659754,0.06329449999975623 +19,373.77107717779,0.2400584952972319,9.602339811889275,64.19850045663115,0.06477437499779626 +20,344.6805585467942,0.22137479675452423,8.85499187018097,59.20194564635276,0.059733000001870096 +21,362.17699331162976,0.23261207020657018,9.304482808262808,62.20711363238563,0.06276512499971432 +22,356.0515201334432,0.22867791916084984,9.147116766433992,61.155009238444414,0.061703583000053186 +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.06317458299963619 +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986 +25,373.78310260490974,0.24006621875716744,9.602648750286699,64.20056593048821,0.06477645899940399 +26,367.32919818161645,0.23592112921105746,9.436845168442298,63.0920505547285,0.0636579999991227 +27,372.0101555478638,0.23892752443664983,9.557100977465993,63.89604653505835,0.0644692079986271 +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603 +29,358.8888493859939,0.23050022439691326,9.22000897587653,61.64234572443166,0.06219529100053478 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..422e3d704 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..82a1a31d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..16bba7c13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..67d7906a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d997078ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..53c86087e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f510cba88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..657a3a24d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..68af8bd7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9daaf2eae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dcf295f9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7b017039d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b581484df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..26f61683d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4069e26ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..842edd07a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..be90d2861 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..585dbc0f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1a0e9b669 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b12562660 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..5de27c77d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731 +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064 +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738 +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141 +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031 +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806 +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741 +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907 +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344 +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595 +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087 +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484 +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554 +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421 +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195 +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687 +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761 +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689 +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782 +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762 +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611 +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179 +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539 +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082 +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504 +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451 +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206 +27,2420.701363746525,3.272075332025206,80.19923415841373,498.32371765792044,0.5071317910005746 +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987 +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f09c8eba3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,378.2830151197381,0.24295633597927946,9.718253439171178,64.97346585045874,0.06555629200011026 +1,353.2040927683805,0.22684912830339146,9.073965132135658,60.66593831199269,0.06121012500079814 +2,357.24886858454886,0.2294469290844887,9.177877163379547,61.36066446373754,0.06191108299753978 +3,348.1538269708763,0.22360554076485314,8.944221630594125,59.79851033025787,0.06033491600101115 +4,358.26397198427844,0.23009889016331306,9.203955606532523,61.53501748367458,0.062087000002065906 +5,356.8740379487522,0.22920619007626986,9.168247603050794,61.29628397468245,0.061846125001466135 +6,349.28482212183866,0.22433193456765488,8.973277382706195,59.99276878723571,0.060530916998686735 +7,362.52080833113473,0.23283288910156372,9.313315564062549,62.266166914018186,0.06282470800215378 +8,368.1793617620893,0.23646715591656345,9.458686236662539,63.23807369654383,0.06380533300034585 +9,372.05703967465683,0.23895763627145591,9.558305450858237,63.90409930002364,0.06447733299864922 +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.06196987500152318 +11,363.98119261159053,0.23377083661630732,9.350833464652293,62.517000877961046,0.0630777920014225 +12,354.28483392042943,0.22754324593476521,9.101729837390607,60.851565198554354,0.06139741700098966 +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.06306812500042724 +14,356.9596353834419,0.22926116594954518,9.170446637981808,61.31098609393551,0.061860959001933224 +15,378.40779325868374,0.24303647608136397,9.72145904325456,64.99489760347333,0.06557791600062046 +16,387.2890894266006,0.24874058408901772,9.94962336356071,66.52033905923446,0.06711704099870985 +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.06303791699974681 +18,365.2316744876873,0.23457397205374908,9.382958882149962,62.731782240659754,0.06329449999975623 +19,373.77107717779,0.2400584952972319,9.602339811889275,64.19850045663115,0.06477437499779626 +20,344.6805585467942,0.22137479675452423,8.85499187018097,59.20194564635276,0.059733000001870096 +21,362.17699331162976,0.23261207020657018,9.304482808262808,62.20711363238563,0.06276512499971432 +22,356.0515201334432,0.22867791916084984,9.147116766433992,61.155009238444414,0.061703583000053186 +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.06317458299963619 +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986 +25,373.78310260490974,0.24006621875716744,9.602648750286699,64.20056593048821,0.06477645899940399 +26,367.32919818161645,0.23592112921105746,9.436845168442298,63.0920505547285,0.0636579999991227 +27,372.0101555478638,0.23892752443664983,9.557100977465993,63.89604653505835,0.0644692079986271 +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603 +29,358.8888493859939,0.23050022439691326,9.22000897587653,61.64234572443166,0.06219529100053478 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..422e3d704 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..82a1a31d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..16bba7c13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..67d7906a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d997078ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..53c86087e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f510cba88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..657a3a24d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..68af8bd7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9daaf2eae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dcf295f9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7b017039d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b581484df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..26f61683d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4069e26ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..842edd07a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..be90d2861 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..585dbc0f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..1a0e9b669 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b12562660 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..671a00437 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472 +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257 +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665 +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586 +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182 +5,2469.9891663526682,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784 +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424 +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046 +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.44427935424443,0.5079350840023835 +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228 +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109 +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367 +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832 +13,2470.8813367618554,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803 +14,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149 +15,2459.7036085349296,4.698005439592715,79.17131702074202,497.82315387008157,0.5032634579984006 +16,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562 +17,2454.9010269917126,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756 +18,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631 +19,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852 +20,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367 +21,2476.252506411417,4.729613643106841,79.70398202784979,501.17251047766644,0.5066494169986981 +22,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254 +23,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172 +24,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842 +25,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839 +26,2498.7167098677137,4.772520011852896,80.42704498847873,505.71907477711636,0.5112456669994572 +27,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802 +28,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..4916f271f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,361.4635469396571,0.17045343154751347,7.124953438686063,62.82913486841347,0.06324512500214041 +1,355.6449183357349,0.16770957197761716,7.010260108664397,61.81774823094969,0.06222704199899454 +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846 +3,359.06288961197356,0.16932136641138051,7.077633115995706,62.41185565923486,0.06282508299773326 +4,356.22239586901475,0.16798188996935526,7.02164300071905,61.91812464270435,0.062328083000465995 +5,358.4918360781341,0.16905207775069986,7.066376849979254,62.31259585890797,0.06272516600074596 +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.06370237499868381 +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.060314166999887675 +8,331.99176104587264,0.15655557910302398,6.5440232065064015,57.706386457374634,0.05808845900173765 +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839008 +10,355.5541882946238,0.16766678689739878,7.008471692311268,61.80197765038118,0.062211167001805734 +11,353.1251946264822,0.16652135934475254,6.960592820610656,61.379773054475784,0.06178616699980921 +12,349.0251905083527,0.16458794233158197,6.879775989460126,60.66711554342111,0.061068791001162026 +13,360.0216334165911,0.16977347609949595,7.09653130095893,62.578503290274206,0.06299283399857813 +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.06265766600336065 +15,358.13035037901693,0.16888161387296846,7.059251459890081,62.249762873576174,0.06266191699978663 +16,362.65327374016647,0.17101446465159223,7.148404622436555,63.03593167057689,0.06345329100076924 +17,356.01021613514007,0.16788183350709238,7.017460640596461,61.88124383071425,0.062290958001540275 +18,356.18572663045944,0.16796459805265465,7.020920198600964,61.911750842208505,0.06232166699919617 +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.06223958299960941 +20,344.49440292303365,0.16245138306282828,6.790467812026222,59.8795797969585,0.06027604100017925 +21,361.4361650173394,0.17044051920085795,7.124413702595863,62.82437537743625,0.06324033399869222 +22,356.7505848359848,0.16823096521549788,7.032054346007811,62.00993377843252,0.06242050000219024 +23,339.33422020631144,0.16001802329827006,6.688753373867688,58.98264338774234,0.05937316599738551 +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.05748854099874734 +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.059383124997111736 +26,340.30344013425093,0.16047507315582898,6.7078580579136515,59.15111196523856,0.0595427500011283 +27,342.4523851103312,0.16148843964459644,6.750216777144131,59.524638852998244,0.05991875000108848 +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.06704349999927217 +29,331.530252230005,0.15633794785909882,6.5349262205103305,57.62616758086382,0.05800770899804775 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..57ce08d83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..9dd1232cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e47b000ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f76e6be56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c75fdcd27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9fae03987 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6079fad1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..86c1fdfe9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ce56ae59c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a7cb10c45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f19fd48a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4d4067dbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f96191bc3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..b87cb3a8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..80fa24a3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..95c341ce7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..09334c48b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f6dedc0b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..947a0461c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ad873f5ff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..6bd55a0e7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472 +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257 +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665 +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586 +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182 +5,2469.9891663526682,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784 +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424 +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046 +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.44427935424443,0.5079350840023835 +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228 +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109 +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367 +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832 +13,2470.8813367618554,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803 +14,2547.5194825611934,4.865732743169632,81.99787643947133,515.5963421582637,0.5212308749978547 +15,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149 +16,2459.7036085349296,4.698005439592715,79.17131702074202,497.82315387008157,0.5032634579984006 +17,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562 +18,2454.9010269917126,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756 +19,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631 +20,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852 +21,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367 +22,2476.252506411417,4.729613643106841,79.70398202784979,501.17251047766644,0.5066494169986981 +23,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254 +24,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172 +25,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842 +26,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839 +27,2498.7167098677137,4.772520011852896,80.42704498847873,505.71907477711636,0.5112456669994572 +28,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802 +29,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..4916f271f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,361.4635469396571,0.17045343154751347,7.124953438686063,62.82913486841347,0.06324512500214041 +1,355.6449183357349,0.16770957197761716,7.010260108664397,61.81774823094969,0.06222704199899454 +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846 +3,359.06288961197356,0.16932136641138051,7.077633115995706,62.41185565923486,0.06282508299773326 +4,356.22239586901475,0.16798188996935526,7.02164300071905,61.91812464270435,0.062328083000465995 +5,358.4918360781341,0.16905207775069986,7.066376849979254,62.31259585890797,0.06272516600074596 +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.06370237499868381 +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.060314166999887675 +8,331.99176104587264,0.15655557910302398,6.5440232065064015,57.706386457374634,0.05808845900173765 +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839008 +10,355.5541882946238,0.16766678689739878,7.008471692311268,61.80197765038118,0.062211167001805734 +11,353.1251946264822,0.16652135934475254,6.960592820610656,61.379773054475784,0.06178616699980921 +12,349.0251905083527,0.16458794233158197,6.879775989460126,60.66711554342111,0.061068791001162026 +13,360.0216334165911,0.16977347609949595,7.09653130095893,62.578503290274206,0.06299283399857813 +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.06265766600336065 +15,358.13035037901693,0.16888161387296846,7.059251459890081,62.249762873576174,0.06266191699978663 +16,362.65327374016647,0.17101446465159223,7.148404622436555,63.03593167057689,0.06345329100076924 +17,356.01021613514007,0.16788183350709238,7.017460640596461,61.88124383071425,0.062290958001540275 +18,356.18572663045944,0.16796459805265465,7.020920198600964,61.911750842208505,0.06232166699919617 +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.06223958299960941 +20,344.49440292303365,0.16245138306282828,6.790467812026222,59.8795797969585,0.06027604100017925 +21,361.4361650173394,0.17044051920085795,7.124413702595863,62.82437537743625,0.06324033399869222 +22,356.7505848359848,0.16823096521549788,7.032054346007811,62.00993377843252,0.06242050000219024 +23,339.33422020631144,0.16001802329827006,6.688753373867688,58.98264338774234,0.05937316599738551 +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.05748854099874734 +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.059383124997111736 +26,340.30344013425093,0.16047507315582898,6.7078580579136515,59.15111196523856,0.0595427500011283 +27,342.4523851103312,0.16148843964459644,6.750216777144131,59.524638852998244,0.05991875000108848 +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.06704349999927217 +29,331.530252230005,0.15633794785909882,6.5349262205103305,57.62616758086382,0.05800770899804775 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..727dea114 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..5d52fecf6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4816fc53b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..de720017d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..31ee85b9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fc88c5489 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..32aa6d5d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0478483f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..18ac59f4d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4afa2bedb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..05215e2a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..cd31c9c81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a2ee3a891 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..73135ad0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a07f9baee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..b163f30fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ee298a0b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..8a48e679b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..44021ea5c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4e6072990 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e7ecf5162 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337 +1,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345 +2,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745 +3,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228 +4,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257003,0.501494084001024 +5,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946 +6,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837 +7,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348 +8,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026 +9,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378 +10,2378.356060681969,3.9701577097644405,81.78524882114748,500.90156438194686,0.5014024589982 +11,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271 +12,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075 +13,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049 +14,2390.123657190451,3.9898011999784955,82.189904719557,503.37991806395354,0.5038832909995108 +15,2371.816282415134,3.9592409460655764,81.56036348895087,499.52423269527355,0.5000237499989453 +16,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303 +17,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822 +18,2397.1812542605517,4.0015823516249975,82.43259644347495,504.86630669668716,0.5053711660002591 +19,2413.429795818861,4.028705823003649,82.99133995387517,508.28838466896036,0.5087966660030361 +20,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703 +21,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542 +22,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094 +23,2386.9390568875947,3.984485189624151,82.08039490625751,502.70921475758036,0.5032119169991347 +24,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828 +25,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.49994812500153785 +26,2394.9224057847664,3.997811686315634,82.35492073810207,504.39057442348917,0.5048949580013868 +27,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275 +28,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8b131479b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893 +1,348.55779789257946,0.23321588465380005,10.361448589618831,61.6356266585043,0.06173045800096588 +2,358.33485910912873,0.23975760024506798,10.652087668030877,63.36450863619653,0.06346200000189128 +3,346.03077541432424,0.23152508391323548,10.286328728145177,61.188772177069374,0.061282915998162935 +4,319.4310664622174,0.21372753443275874,9.495609029798281,56.485134100086235,0.05657204099770752 +5,354.87217509222506,0.23744075947673252,10.549153742466258,62.75220071885074,0.06284874999983003 +6,354.41904767108167,0.23713757729856352,10.535683791407608,62.672074000334646,0.06276849999994738 +7,358.9152630876629,0.24014594165681896,10.669341122181528,63.46714172358787,0.06356479099849821 +8,339.35785444139424,0.22706031170806343,10.087965277315389,60.00879666570248,0.06010112500007381 +9,340.8776918175967,0.22807721685367777,10.133144920213399,60.27755016847198,0.060370292001607595 +10,354.0640272849366,0.23690003737283083,10.525130231850056,62.60929559139101,0.06270562500139931 +11,354.00708848272853,0.23686194029622443,10.523437633160828,62.59922707828788,0.0626955409970833 +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.06278995799948461 +13,343.10921309321594,0.22957030124761152,10.199480526858169,60.67215104401161,0.0607655000021623 +14,340.4605604865636,0.22779811923207277,10.120745011596377,60.20378865419067,0.060296416999335634 +15,356.3056669698578,0.23839989187430743,10.591766624701373,63.00568570963839,0.06310262499755481 +16,320.99748703681513,0.21477560784340527,9.542173434185576,56.762124930042816,0.056849458000215236 +17,354.8119444278913,0.23740045985425726,10.547363287810573,62.74155010433942,0.06283808299849625 +18,351.575824142101,0.23523521018875043,10.451164338385912,62.169305549884044,0.0622649580000143 +19,343.1440347346409,0.22959359999450263,10.200515656898617,60.6783085699757,0.06077166700197267 +20,356.72044373402287,0.23867741408317342,10.60409653998099,63.079030864838685,0.06317608300014399 +21,350.96718789534884,0.23482797890149512,10.43307163405214,62.061680138252285,0.06215716699807672 +22,352.7963997956422,0.23605188286842815,10.487447938868737,62.3851404723703,0.06248112500179559 +23,353.666658527277,0.23663416265445794,10.513317797933775,62.539028701535315,0.06263525000031223 +24,364.4598431575399,0.24385575435889692,10.834162800802421,64.44759222342276,0.0645467499998631 +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554 +26,338.0789340735709,0.22620460127270087,10.04994728511571,59.78264462207094,0.05987462500343099 +27,355.0131047850516,0.23753505386115095,10.553343107259707,62.77712137758989,0.06287370900099631 +28,329.98898622367545,0.22079171320643548,9.809460401028776,58.35209563312938,0.05844187500042608 +29,353.84475877944084,0.23675332741885738,10.518612118180663,62.5705222464123,0.0626667920005275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..aa2a9a4a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..7592769e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..36bcaebfa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..14786c8f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9f74f9396 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a926b6753 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..78253e6b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..723dfa4fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b5b615b00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7553d55ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3494e1e05 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..92a96852b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c2a51e3b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a361163e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4fcd3e6e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..d3a7b31f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f462c2f78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c8429f68e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..124f38fa8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..536802fb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c8f7377b0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2466.661303363247,4.117564460939943,84.82182789536282,519.4993828219228,0.520018874998641 +1,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337 +2,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345 +3,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745 +4,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228 +5,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257003,0.501494084001024 +6,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946 +7,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837 +8,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348 +9,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026 +10,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378 +11,2378.356060681969,3.9701577097644405,81.78524882114748,500.90156438194686,0.5014024589982 +12,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271 +13,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075 +14,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049 +15,2390.123657190451,3.9898011999784955,82.189904719557,503.37991806395354,0.5038832909995108 +16,2371.816282415134,3.9592409460655764,81.56036348895087,499.52423269527355,0.5000237499989453 +17,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303 +18,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822 +19,2397.1812542605517,4.0015823516249975,82.43259644347495,504.86630669668716,0.5053711660002591 +20,2413.429795818861,4.028705823003649,82.99133995387517,508.28838466896036,0.5087966660030361 +21,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703 +22,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542 +23,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094 +24,2386.9390568875947,3.984485189624151,82.08039490625751,502.70921475758036,0.5032119169991347 +25,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828 +26,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.49994812500153785 +27,2394.9224057847664,3.997811686315634,82.35492073810207,504.39057442348917,0.5048949580013868 +28,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275 +29,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8b131479b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893 +1,348.55779789257946,0.23321588465380005,10.361448589618831,61.6356266585043,0.06173045800096588 +2,358.33485910912873,0.23975760024506798,10.652087668030877,63.36450863619653,0.06346200000189128 +3,346.03077541432424,0.23152508391323548,10.286328728145177,61.188772177069374,0.061282915998162935 +4,319.4310664622174,0.21372753443275874,9.495609029798281,56.485134100086235,0.05657204099770752 +5,354.87217509222506,0.23744075947673252,10.549153742466258,62.75220071885074,0.06284874999983003 +6,354.41904767108167,0.23713757729856352,10.535683791407608,62.672074000334646,0.06276849999994738 +7,358.9152630876629,0.24014594165681896,10.669341122181528,63.46714172358787,0.06356479099849821 +8,339.35785444139424,0.22706031170806343,10.087965277315389,60.00879666570248,0.06010112500007381 +9,340.8776918175967,0.22807721685367777,10.133144920213399,60.27755016847198,0.060370292001607595 +10,354.0640272849366,0.23690003737283083,10.525130231850056,62.60929559139101,0.06270562500139931 +11,354.00708848272853,0.23686194029622443,10.523437633160828,62.59922707828788,0.0626955409970833 +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.06278995799948461 +13,343.10921309321594,0.22957030124761152,10.199480526858169,60.67215104401161,0.0607655000021623 +14,340.4605604865636,0.22779811923207277,10.120745011596377,60.20378865419067,0.060296416999335634 +15,356.3056669698578,0.23839989187430743,10.591766624701373,63.00568570963839,0.06310262499755481 +16,320.99748703681513,0.21477560784340527,9.542173434185576,56.762124930042816,0.056849458000215236 +17,354.8119444278913,0.23740045985425726,10.547363287810573,62.74155010433942,0.06283808299849625 +18,351.575824142101,0.23523521018875043,10.451164338385912,62.169305549884044,0.0622649580000143 +19,343.1440347346409,0.22959359999450263,10.200515656898617,60.6783085699757,0.06077166700197267 +20,356.72044373402287,0.23867741408317342,10.60409653998099,63.079030864838685,0.06317608300014399 +21,350.96718789534884,0.23482797890149512,10.43307163405214,62.061680138252285,0.06215716699807672 +22,352.7963997956422,0.23605188286842815,10.487447938868737,62.3851404723703,0.06248112500179559 +23,353.666658527277,0.23663416265445794,10.513317797933775,62.539028701535315,0.06263525000031223 +24,364.4598431575399,0.24385575435889692,10.834162800802421,64.44759222342276,0.0645467499998631 +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554 +26,338.0789340735709,0.22620460127270087,10.04994728511571,59.78264462207094,0.05987462500343099 +27,355.0131047850516,0.23753505386115095,10.553343107259707,62.77712137758989,0.06287370900099631 +28,329.98898622367545,0.22079171320643548,9.809460401028776,58.35209563312938,0.05844187500042608 +29,353.84475877944084,0.23675332741885738,10.518612118180663,62.5705222464123,0.0626667920005275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6652d392e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..27b2c995a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4b3b63e82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8e624437c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..de52f6649 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d45d67783 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..fd5b3783f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a34cd95b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d41f43268 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..352632c7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9a5677b04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b5545ad75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2505e020e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3ce1e63d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8b18bfcf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..da3c9964f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b198c28a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1f48a69e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..88c978c37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..131a261ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..cd2a1864d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542 +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952 +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867 +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424 +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363 +5,2400.453980450238,4.138080849367165,83.32893452314363,495.86889790924755,0.5058198340011586 +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694 +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958 +8,2403.5809782872598,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683 +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267 +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853 +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238 +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056 +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391 +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556 +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674 +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163 +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075 +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524 +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076 +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709 +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594 +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088 +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206 +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243 +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182 +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494 +27,2425.9704558611506,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935 +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056 +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..797f86ce2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.15282863641005,0.2364171040077792,5.944201472195592,62.00882899404038,0.06268141599866794 +1,380.0216765811429,0.23821543262004122,5.989416591589608,62.480504898627956,0.06315820799864014 +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744 +3,384.3681985530305,0.24094003670378916,6.057920922838127,63.195129626879556,0.06388058399898 +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.06279037500280538 +5,381.03628983828423,0.23885143985564516,6.005407630656221,62.64732051070922,0.06332683299842756 +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.06203845900017768 +7,375.29157816409594,0.23525038480779722,5.914866818024616,61.702815215302245,0.06237208300080965 +8,373.86480778600804,0.2343560181339712,5.892379884511276,61.46823561342445,0.06213495900010457 +9,366.9212068192651,0.23000344297795788,5.782943709160084,60.32661732964724,0.06098095800189185 +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666 +11,376.9342197202937,0.23628006967332818,5.940756037500822,61.97288684574722,0.06264508399908664 +12,379.717825115604,0.23802496425263975,5.984627672637799,62.430547766835225,0.06310770900017815 +13,366.60255957296516,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667 +14,363.89742763866343,0.22810799619151467,5.7352867613866545,59.82946871537442,0.0604784169991035 +15,369.6993006425364,0.23174488264509313,5.82672847793377,60.78337207662728,0.0614426669999375 +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.06112254199979361 +17,350.4494712628639,0.21967818562192598,5.523337238494139,57.61844982883658,0.058243416002369486 +18,349.70537539320884,0.21921175138823873,5.5116097491900025,57.49611079268662,0.05811974999960512 +19,355.4250143168058,0.22279708965860487,5.601755397130637,58.436493801885504,0.059070332998089725 +20,355.92618062609483,0.22311124423593298,5.609654140789172,58.51889205959614,0.059153624999453314 +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.06053975000031642 +22,374.2340939261083,0.23458750402818643,5.898200101280116,61.52895105653575,0.062196333001338644 +23,349.4985417056227,0.21908209831999273,5.50834990061696,57.46210464507238,0.058085374999791384 +24,363.71014915375633,0.22799060124261614,5.732335116957206,59.79867769734903,0.060447292002209 +25,352.26058825141075,0.22081347880002467,5.551881752686334,57.9162210109779,0.058544416999211535 +26,380.41729905164124,0.2384634273628986,5.995651887981451,62.5455503768974,0.06322395900133415 +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.06328816599852871 +28,366.66724211929517,0.22984424597788716,5.778941041729735,60.28486223077155,0.06093875000078697 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c3e7584e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f46ccd775 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1c8a5d45a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f6476acff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c33b887ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b56b9b680 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9bfc9e149 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e886c6391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0d831c121 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..59db34cdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4b6a61b7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4bc96dae4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1060a9f5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..cd54e78ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..9f0c77cbf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..9774b2989 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..323531343 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..e26462849 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..971d3ffd0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c78b15719 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..cd2a1864d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542 +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952 +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867 +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424 +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363 +5,2400.453980450238,4.138080849367165,83.32893452314363,495.86889790924755,0.5058198340011586 +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694 +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958 +8,2403.5809782872598,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683 +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267 +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853 +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238 +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056 +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391 +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556 +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674 +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163 +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075 +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524 +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076 +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709 +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594 +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088 +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206 +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243 +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182 +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494 +27,2425.9704558611506,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935 +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056 +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9a440d763 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.15282863641005,0.2364171040077792,5.944201472195592,62.00882899404038,0.06268141599866794 +1,380.0216765811429,0.23821543262004122,5.989416591589608,62.480504898627956,0.06315820799864014 +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744 +3,384.3681985530305,0.24094003670378916,6.057920922838127,63.195129626879556,0.06388058399898 +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.06279037500280538 +5,381.03628983828423,0.23885143985564516,6.005407630656221,62.64732051070922,0.06332683299842756 +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.06203845900017768 +7,375.29157816409594,0.23525038480779722,5.914866818024616,61.702815215302245,0.06237208300080965 +8,373.86480778600804,0.2343560181339712,5.892379884511276,61.46823561342445,0.06213495900010457 +9,366.9212068192651,0.23000344297795788,5.782943709160084,60.32661732964724,0.06098095800189185 +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666 +11,376.9342197202937,0.23628006967332818,5.940756037500822,61.97288684574722,0.06264508399908664 +12,379.717825115604,0.23802496425263975,5.984627672637799,62.430547766835225,0.06310770900017815 +13,366.60255957296516,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667 +14,363.89742763866343,0.22810799619151467,5.7352867613866545,59.82946871537442,0.0604784169991035 +15,369.6993006425364,0.23174488264509313,5.82672847793377,60.78337207662728,0.0614426669999375 +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.06112254199979361 +17,350.4494712628639,0.21967818562192598,5.523337238494139,57.61844982883658,0.058243416002369486 +18,349.70537539320884,0.21921175138823873,5.5116097491900025,57.49611079268662,0.05811974999960512 +19,355.4250143168058,0.22279708965860487,5.601755397130637,58.436493801885504,0.059070332998089725 +20,355.92618062609483,0.22311124423593298,5.609654140789172,58.51889205959614,0.059153624999453314 +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.06053975000031642 +22,374.2340939261083,0.23458750402818643,5.898200101280116,61.52895105653575,0.062196333001338644 +23,349.4985417056227,0.21908209831999273,5.50834990061696,57.46210464507238,0.058085374999791384 +24,363.71014915375633,0.22799060124261614,5.732335116957206,59.79867769734903,0.060447292002209 +25,352.26058825141075,0.22081347880002467,5.551881752686334,57.9162210109779,0.058544416999211535 +26,380.41729905164124,0.2384634273628986,5.995651887981451,62.5455503768974,0.06322395900133415 +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.06328816599852871 +28,452.55511938118707,0.2836828007225136,7.132596132451771,74.40594601807642,0.07521300000007614 +29,366.66724211929517,0.22984424597788716,5.778941041729735,60.28486223077155,0.06093875000078697 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d20d3956d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2bfb70ffe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1d88e6a2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b7de503d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1aadde100 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..2f0ab6d7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..e278797e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a50932a33 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..60ce13753 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0b58d952c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6d9b2df0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0610e5ee1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b4a5f78a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..399aac3cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f2c106e09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..e94d7a26c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..234607e3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a985200cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2b09ea886 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4b9b146c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c5eaa354c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.30023294854516,0.5093542920003529 +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653 +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335 +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.97093861363453,0.5059579579974525 +4,2399.1780833992198,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849 +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149 +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775 +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634 +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.39907562288045,0.509455125000386 +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049 +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456 +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895 +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751 +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829 +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234 +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.73416848843164,0.5016358749999199 +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729 +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007 +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672 +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455 +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208 +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947 +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.46238383034563,0.5095197080008802 +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746 +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.87919176108835,0.506884500002343 +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028 +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497 +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293 +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212 +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f4823919f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.42379519516624,0.30717664478575535,10.170960016239453,63.756219162198995,0.06385745799707365 +1,344.73567152495644,0.29962540258084097,9.920929996565622,62.188916891223435,0.06228766699859989 +2,351.2821477228619,0.30531524186438985,10.109326897287575,63.369874644742254,0.06347050000113086 +3,345.7318892341187,0.30049126056079845,9.949599516346437,62.368630525285724,0.06246766600088449 +4,351.83422142570913,0.30579507415078533,10.125214677437114,63.46946650151855,0.063570250000339 +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.06412495800032048 +6,366.57348249544907,0.3186056342307138,10.54938655563919,66.12836941588593,0.06623337500059279 +7,348.3338361205126,0.30275273057311575,10.024479301198722,62.83801119006447,0.06293779199768323 +8,338.34369848808836,0.2940698489997871,9.736979444659617,61.035830881289144,0.06113274999734131 +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.06207712499963236 +10,351.68294492465503,0.30566359288477984,10.120861186629378,63.442176834307645,0.06354291699972237 +11,347.70289474870646,0.30220435081973523,10.006321838253456,62.724191925696154,0.06282379199910793 +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049 +13,345.35761370997443,0.30016596073295704,9.938828477602355,62.301112738795965,0.06240004100254737 +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.06602441699942574 +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.06365254100091988 +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.059257917000650195 +17,347.8889892534473,0.30236609399140757,10.011677334382162,62.75776261954993,0.06285741600004258 +18,342.946615110539,0.29807045253451003,9.869443872809331,61.86617837049608,0.06196441599968239 +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.060562540998944314 +20,326.0613287092618,0.28339468453726274,9.38351288801159,58.820141190622984,0.05891354200139176 +21,345.1205513106695,0.29995991905321345,9.932006208650845,62.258347643489195,0.06235720800032141 +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113006 +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.060111792001407593 +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.06097116700038896 +25,345.27367635482636,0.30009300697184327,9.936412897512145,62.28597078037814,0.06238487500013434 +26,358.1507803712324,0.31128508192574517,10.306994934874673,64.60894811525466,0.06471154100290732 +27,318.84747151039136,0.2771247941664435,9.175909851288907,57.51879061143516,0.05761012500079232 +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.06283799999800976 +29,346.3464648714801,0.3010254161123439,9.967286000164277,62.47949747753983,0.0625787089993537 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6bf8ae493 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..35e1ab72b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5a1e7507e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..71064d9d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3cce7bda8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fa77184c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..15fd24a47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..73a377d90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a90244373 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4b09d9809 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..06c74b241 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..73f32eac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..179eaf277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bd738a8d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..10e1a51eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..d4e24d7ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..213a5bfa5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..062e288e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cbf659bc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a769e0053 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c5eaa354c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.30023294854516,0.5093542920003529 +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653 +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335 +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.97093861363453,0.5059579579974525 +4,2399.1780833992198,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849 +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149 +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775 +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634 +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.39907562288045,0.509455125000386 +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049 +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456 +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895 +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751 +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829 +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234 +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.73416848843164,0.5016358749999199 +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729 +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007 +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672 +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455 +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208 +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947 +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.46238383034563,0.5095197080008802 +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746 +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.87919176108835,0.506884500002343 +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028 +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497 +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293 +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212 +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f4823919f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.42379519516624,0.30717664478575535,10.170960016239453,63.756219162198995,0.06385745799707365 +1,344.73567152495644,0.29962540258084097,9.920929996565622,62.188916891223435,0.06228766699859989 +2,351.2821477228619,0.30531524186438985,10.109326897287575,63.369874644742254,0.06347050000113086 +3,345.7318892341187,0.30049126056079845,9.949599516346437,62.368630525285724,0.06246766600088449 +4,351.83422142570913,0.30579507415078533,10.125214677437114,63.46946650151855,0.063570250000339 +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.06412495800032048 +6,366.57348249544907,0.3186056342307138,10.54938655563919,66.12836941588593,0.06623337500059279 +7,348.3338361205126,0.30275273057311575,10.024479301198722,62.83801119006447,0.06293779199768323 +8,338.34369848808836,0.2940698489997871,9.736979444659617,61.035830881289144,0.06113274999734131 +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.06207712499963236 +10,351.68294492465503,0.30566359288477984,10.120861186629378,63.442176834307645,0.06354291699972237 +11,347.70289474870646,0.30220435081973523,10.006321838253456,62.724191925696154,0.06282379199910793 +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049 +13,345.35761370997443,0.30016596073295704,9.938828477602355,62.301112738795965,0.06240004100254737 +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.06602441699942574 +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.06365254100091988 +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.059257917000650195 +17,347.8889892534473,0.30236609399140757,10.011677334382162,62.75776261954993,0.06285741600004258 +18,342.946615110539,0.29807045253451003,9.869443872809331,61.86617837049608,0.06196441599968239 +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.060562540998944314 +20,326.0613287092618,0.28339468453726274,9.38351288801159,58.820141190622984,0.05891354200139176 +21,345.1205513106695,0.29995991905321345,9.932006208650845,62.258347643489195,0.06235720800032141 +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113006 +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.060111792001407593 +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.06097116700038896 +25,345.27367635482636,0.30009300697184327,9.936412897512145,62.28597078037814,0.06238487500013434 +26,358.1507803712324,0.31128508192574517,10.306994934874673,64.60894811525466,0.06471154100290732 +27,318.84747151039136,0.2771247941664435,9.175909851288907,57.51879061143516,0.05761012500079232 +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.06283799999800976 +29,346.3464648714801,0.3010254161123439,9.967286000164277,62.47949747753983,0.0625787089993537 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6bf8ae493 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..35e1ab72b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5a1e7507e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..71064d9d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3cce7bda8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fa77184c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..15fd24a47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..73a377d90 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a90244373 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4b09d9809 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..06c74b241 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..73f32eac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..179eaf277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bd738a8d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..10e1a51eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..d4e24d7ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..213a5bfa5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..062e288e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cbf659bc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a769e0053 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3f18ab4cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798 +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374 +2,2403.6605833088347,2.9713566297361838,84.43326872587426,501.95895424812943,0.5054153749988473 +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712 +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205 +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399 +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625 +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132 +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868 +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569 +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995 +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116 +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444 +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508 +14,2396.948743680305,2.963059589248669,84.19750226078521,500.55731375678357,0.5040040830026555 +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352 +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.49831958299910184 +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919 +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.02504953744227,0.5085025830012455 +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087 +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.06840856297515,0.5055255830011447 +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335 +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108 +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.26734995369316,0.5077396660017257 +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774 +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248 +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372 +27,2387.9067605728574,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619 +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972 +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d7291fb22 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.06348404199889046 +1,347.5338735270447,0.26574947316157116,9.998823927704114,61.52100303690372,0.062095291999867186 +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.06123004199980642 +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.06248691699875053 +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.06285824999940814 +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.06311187500250526 +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.06060083300326369 +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822001 +8,349.36704941119723,0.26715125170039933,10.051565845227525,61.845514768642445,0.06242283299798146 +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.06330645900015952 +10,347.2269851313199,0.2655148041531791,9.989994506263363,61.46667716146096,0.06204045900085475 +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.06021308299750672 +12,350.48943947996935,0.26800951212385343,10.083857893659985,62.04420205667207,0.06262337500083959 +13,360.8859284017174,0.27595941762700626,10.382973088216112,63.88460518065195,0.0644809580007859 +14,353.76099420840256,0.27051117890147397,10.177983106167957,62.62333791569122,0.06320791700272821 +15,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.061818541998945875 +16,355.1032874398208,0.27153759314840054,10.21660194220857,62.86095281385472,0.06344774999888614 +17,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587 +18,344.7340828392565,0.26360855120570176,9.918271739114529,61.025379604119955,0.06159504199968069 +19,349.0872158684356,0.26693727078450435,10.043514813266976,61.79597818661276,0.06237283399968874 +20,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.06486550000045099 +21,351.9040263790746,0.26909120732485153,10.124556675597539,62.29461449570313,0.062876125000912 +22,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.062235624998720596 +23,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.06325462499808054 +24,326.03476636272546,0.24930970473158132,9.380277640525748,57.715196645361075,0.05825395899955765 +25,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.06294037499901606 +26,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.06314441699942108 +27,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.06323016700116568 +28,353.3169846035595,0.2701716571237312,10.165208599280387,62.544738624143775,0.06312858399905963 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..62b10692c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f29239327 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2f3e8d4b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2b6328253 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..69870c9ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..cdb053ae5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..8ce914d81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..504d03adf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2a0c34397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..efda9c3d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..840bfcfca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1ae379f85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f0766e3bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3a6793e76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..da0fad6f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..559a56522 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b06a5d817 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..4e9bd7bf9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..7a5595bb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6749ec86c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3f18ab4cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798 +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374 +2,2403.6605833088347,2.9713566297361838,84.43326872587426,501.95895424812943,0.5054153749988473 +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712 +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205 +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399 +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625 +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132 +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868 +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569 +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995 +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116 +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444 +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508 +14,2396.948743680305,2.963059589248669,84.19750226078521,500.55731375678357,0.5040040830026555 +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352 +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.49831958299910184 +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919 +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.02504953744227,0.5085025830012455 +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087 +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.06840856297515,0.5055255830011447 +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335 +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108 +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.26734995369316,0.5077396660017257 +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774 +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248 +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372 +27,2387.9067605728574,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619 +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972 +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..fd386a83c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.06348404199889046 +1,347.5338735270447,0.26574947316157116,9.998823927704114,61.52100303690372,0.062095291999867186 +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.06123004199980642 +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.06248691699875053 +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.06285824999940814 +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.06311187500250526 +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.06060083300326369 +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822001 +8,349.36704941119723,0.26715125170039933,10.051565845227525,61.845514768642445,0.06242283299798146 +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.06330645900015952 +10,347.2269851313199,0.2655148041531791,9.989994506263363,61.46667716146096,0.06204045900085475 +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.06021308299750672 +12,350.48943947996935,0.26800951212385343,10.083857893659985,62.04420205667207,0.06262337500083959 +13,317.649151194063,0.24289745837817855,9.139016871478969,56.230761614548335,0.05675566699937917 +14,360.8859284017174,0.27595941762700626,10.382973088216112,63.88460518065195,0.0644809580007859 +15,353.76099420840256,0.27051117890147397,10.177983106167957,62.62333791569122,0.06320791700272821 +16,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.061818541998945875 +17,355.1032874398208,0.27153759314840054,10.21660194220857,62.86095281385472,0.06344774999888614 +18,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587 +19,344.7340828392565,0.26360855120570176,9.918271739114529,61.025379604119955,0.06159504199968069 +20,349.0872158684356,0.26693727078450435,10.043514813266976,61.79597818661276,0.06237283399968874 +21,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.06486550000045099 +22,351.9040263790746,0.26909120732485153,10.124556675597539,62.29461449570313,0.062876125000912 +23,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.062235624998720596 +24,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.06325462499808054 +25,326.03476636272546,0.24930970473158132,9.380277640525748,57.715196645361075,0.05825395899955765 +26,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.06294037499901606 +27,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.06314441699942108 +28,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.06323016700116568 +29,353.3169846035595,0.2701716571237312,10.165208599280387,62.544738624143775,0.06312858399905963 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..de9f1ec03 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..aaf41b170 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3156c6018 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c780befd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e64b31b65 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..cc97c67d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..79153901e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..32167e450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9dca4e4c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c268f9499 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9a0dd1f79 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b85b69494 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a74af441c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4ba5463e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..229bfebff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..104d1244b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f39f7938d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1c07c4143 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..85b30b7e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cad3676bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..9c2f20f85 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887 +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971 +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208 +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851 +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478 +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485 +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799 +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703 +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879 +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654 +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245 +11,2434.9111821006754,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574 +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438 +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585 +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624 +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299 +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.58105897547813,0.5055243339993467 +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575 +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045 +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954 +20,2450.4400554907274,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001 +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975 +22,2443.288889685493,5.003412429886074,75.68075489973373,505.77541278000683,0.505718665997847 +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681 +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135 +25,2480.8556280259118,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902 +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095 +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126 +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983 +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..13d32fa18 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,352.49020382752724,0.33935708465151365,10.68974816652268,63.3579677044376,0.06378741700245882 +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375 +2,345.6512964466877,0.3327729820416748,10.482348934312759,62.12871574718069,0.06254983300095773 +3,348.5358761098863,0.33555008771530404,10.569827763032078,62.64720137644727,0.06307183299941244 +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.06383283299874165 +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.06297141599861789 +6,333.6775775330467,0.32124538127760344,10.119229510244509,59.976512684528565,0.06038304200046696 +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.062061917000391986 +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463 +9,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.06154812499880791 +10,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.06387720800194074 +11,347.3698925446688,0.33442754649530065,10.534467714601972,62.43762293067263,0.06286083400118514 +12,348.5754810580413,0.33558821705790054,10.571028837323867,62.65432012471003,0.06307899999956135 +13,346.10834760015814,0.33321300433249074,10.496209636473457,62.21086790887602,0.06263254200166557 +14,353.50238182134535,0.3403315508051847,10.720443850363317,63.53990053532798,0.06397058299990022 +15,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.062059250001766486 +16,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.06164004099991871 +17,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.06254837500091526 +18,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.06302812500143773 +19,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407 +20,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.06182199999966542 +21,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.06406062500172993 +22,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.06128720799824805 +23,345.3885786449535,0.33252005260898576,10.47438165718305,62.08149382209764,0.06250229099896387 +24,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502 +25,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.05978770900037489 +26,347.5174813223003,0.334569636393858,10.538943546406527,62.46415111473329,0.06288754199704272 +27,346.21679562001196,0.33331741178397223,10.499498471195126,62.23036078006762,0.06265216699830489 +28,349.8149219362817,0.33678147871019704,10.608616579371207,62.87710207519379,0.06330329199772677 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e9edd6dd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..1ea3f2d34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5268dfa1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bdc717cfd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..35fad20c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bf9af608d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ebc89cbe1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0b032f83e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..75fa49596 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ea57dbbdd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..287dea3f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..24a84c4a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c7c19556c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4a0f78b73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f4d5aceed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..8ff7a022c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fd48db5b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f7ecf667d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fb036e78d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..45a15ce92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9c2f20f85 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887 +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971 +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208 +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851 +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478 +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485 +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799 +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703 +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879 +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654 +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245 +11,2434.9111821006754,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574 +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438 +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585 +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624 +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299 +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.58105897547813,0.5055243339993467 +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575 +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045 +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954 +20,2450.4400554907274,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001 +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975 +22,2443.288889685493,5.003412429886074,75.68075489973373,505.77541278000683,0.505718665997847 +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681 +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135 +25,2480.8556280259118,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902 +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095 +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126 +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983 +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..f2b11157c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,352.49020382752724,0.33935708465151365,10.68974816652268,63.3579677044376,0.06378741700245882 +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375 +2,345.6512964466877,0.3327729820416748,10.482348934312759,62.12871574718069,0.06254983300095773 +3,348.5358761098863,0.33555008771530404,10.569827763032078,62.64720137644727,0.06307183299941244 +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.06383283299874165 +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.06297141599861789 +6,333.6775775330467,0.32124538127760344,10.119229510244509,59.976512684528565,0.06038304200046696 +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.062061917000391986 +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463 +9,317.4674720822513,0.3056392337366432,9.62763586270426,57.06284493863128,0.057449625001027016 +10,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.06154812499880791 +11,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.06387720800194074 +12,347.3698925446688,0.33442754649530065,10.534467714601972,62.43762293067263,0.06286083400118514 +13,348.5754810580413,0.33558821705790054,10.571028837323867,62.65432012471003,0.06307899999956135 +14,346.10834760015814,0.33321300433249074,10.496209636473457,62.21086790887602,0.06263254200166557 +15,353.50238182134535,0.3403315508051847,10.720443850363317,63.53990053532798,0.06397058299990022 +16,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.062059250001766486 +17,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.06164004099991871 +18,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.06254837500091526 +19,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.06302812500143773 +20,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407 +21,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.06182199999966542 +22,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.06406062500172993 +23,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.06128720799824805 +24,345.3885786449535,0.33252005260898576,10.47438165718305,62.08149382209764,0.06250229099896387 +25,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502 +26,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.05978770900037489 +27,347.5174813223003,0.334569636393858,10.538943546406527,62.46415111473329,0.06288754199704272 +28,346.21679562001196,0.33331741178397223,10.499498471195126,62.23036078006762,0.06265216699830489 +29,349.8149219362817,0.33678147871019704,10.608616579371207,62.87710207519379,0.06330329199772677 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..be0bc77bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..7bc9779f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b60e322eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c258f1914 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b57e9bf36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d09e3aa35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..78f875a37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..01e502238 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..be8cd4521 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8e232c6ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9da06119d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7bca25971 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a63580a24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fe4f49d07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..dbecde043 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..4adbffb75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..81faf7726 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..fdca20041 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..926ad0e49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..7661827c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4ef7a4da0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2451.1992010427684,3.9002108812762324,77.23750950356437,510.1942524609636,0.5080816660010896 +1,2446.842754857934,3.8932791481039315,77.10023748851974,509.28749881821085,0.5071786669977882 +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055 +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268 +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444 +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424 +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.57914344981333,0.5034856669990404 +7,2429.938186012844,3.8663815449532555,76.56757298851875,505.76897047444083,0.5036747079975612 +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405 +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.43028230025203,0.5063249999984691 +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838 +11,2416.3685021296574,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795 +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131 +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048 +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614 +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951 +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134 +17,2475.6551928157946,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459 +18,2453.373007356547,3.9036697201315893,77.30600633799054,510.6467099710596,0.5085322499980975 +19,2459.984671943299,3.9141898305141436,77.51434048975445,512.0228662907604,0.5099027079995722 +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151 +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142 +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269 +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548 +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.05760463415197,0.5079455839986622 +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254 +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.15534033730484,0.500076040996646 +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147 +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387 +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6780e4d14 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,344.373267273601,0.2352735575751715,10.587310090882717,63.08692393837098,0.06346212499920512 +1,342.4823762323536,0.23398171321749708,10.529177094787368,62.74052510132029,0.06311366600129986 +2,345.31927445296463,0.23591986347557606,10.616393856400922,63.260226249093755,0.06363645800229278 +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.06363341600081185 +4,328.0017047540005,0.22408861343724415,10.083987604675986,60.08776106024389,0.060445125000114786 +5,318.0521033356242,0.21729111100423285,9.778099995190479,58.26505933642072,0.058611583001038525 +6,346.70889830534406,0.23686924537745543,10.659116041985495,63.51479622478341,0.06389254199893912 +7,314.29836506293805,0.2147265816358156,9.662696173611701,57.57739910434655,0.05791983300150605 +8,346.87417673892634,0.23698216251927431,10.664197313367344,63.54507414981113,0.0639229999978852 +9,339.65000365733727,0.23204665485080622,10.44209946828628,62.221653022137616,0.06259170799967251 +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.06350795899925288 +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.061656208999920636 +12,348.17607141497996,0.23787160842327346,10.704222379047305,63.783572715783464,0.06416291700224974 +13,341.54157300846134,0.2333389626253396,10.500253318140281,62.56817612110891,0.06294029199852957 +14,339.28033302634714,0.23179409830025668,10.43073442351155,62.15393178708312,0.06252358400161029 +15,319.2664966692951,0.21812077656500742,9.815434945425334,58.48752823035984,0.058835374999034684 +16,353.3388710465269,0.24139879927051416,10.862945967173138,64.72936374725073,0.06511433299965574 +17,341.457685719264,0.23328165137954793,10.497674312079658,62.55280851991593,0.06292483300057938 +18,314.12879430577607,0.21461073200667896,9.657482940300552,57.54633485379091,0.057888584000465926 +19,342.5287288615394,0.23401338102974584,10.530602146338563,62.74901659897613,0.06312220800100476 +20,341.5811371692552,0.2333659926005062,10.501469667022779,62.57542401587859,0.06294758299918612 +21,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.06382933299755678 +22,338.38881272636,0.23118501747848139,10.403325786531662,61.99061111530136,0.062359292001929134 +23,344.76916932805335,0.23554403526218753,10.599481586798438,63.15945059816086,0.06353508300162503 +24,344.2170292735118,0.23516681679822202,10.58250675591999,63.0583021614661,0.06343333299810183 +25,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.06350404100157903 +26,334.4460499034867,0.22849134777712343,10.282110649970555,61.2683228253801,0.06163270799879683 +27,341.1402445342186,0.23306477764391276,10.487914993976075,62.494655376803465,0.06286633399940911 +28,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462044 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..59e4924b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f26d8383e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6cb50a7bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ea0419f3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..de1a59ed5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9398bab9a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..af4c071f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0c005292a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..32abd00dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f398d5ef4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cd2484b1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bac737d3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..193ef7f28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fd25feb97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..577fdd5ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..b8d5b2e7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..359179c0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8e023d14b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..973add4dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..8b7bbf56a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4ef7a4da0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2451.1992010427684,3.9002108812762324,77.23750950356437,510.1942524609636,0.5080816660010896 +1,2446.842754857934,3.8932791481039315,77.10023748851974,509.28749881821085,0.5071786669977882 +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055 +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268 +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444 +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424 +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.57914344981333,0.5034856669990404 +7,2429.938186012844,3.8663815449532555,76.56757298851875,505.76897047444083,0.5036747079975612 +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405 +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.43028230025203,0.5063249999984691 +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838 +11,2416.3685021296574,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795 +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131 +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048 +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614 +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951 +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134 +17,2475.6551928157946,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459 +18,2453.373007356547,3.9036697201315893,77.30600633799054,510.6467099710596,0.5085322499980975 +19,2459.984671943299,3.9141898305141436,77.51434048975445,512.0228662907604,0.5099027079995722 +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151 +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142 +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269 +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548 +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.05760463415197,0.5079455839986622 +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254 +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.15534033730484,0.500076040996646 +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147 +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387 +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..24a6634e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,344.373267273601,0.2352735575751715,10.587310090882717,63.08692393837098,0.06346212499920512 +1,342.4823762323536,0.23398171321749708,10.529177094787368,62.74052510132029,0.06311366600129986 +2,345.31927445296463,0.23591986347557606,10.616393856400922,63.260226249093755,0.06363645800229278 +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.06363341600081185 +4,328.0017047540005,0.22408861343724415,10.083987604675986,60.08776106024389,0.060445125000114786 +5,318.0521033356242,0.21729111100423285,9.778099995190479,58.26505933642072,0.058611583001038525 +6,346.70889830534406,0.23686924537745543,10.659116041985495,63.51479622478341,0.06389254199893912 +7,314.29836506293805,0.2147265816358156,9.662696173611701,57.57739910434655,0.05791983300150605 +8,346.87417673892634,0.23698216251927431,10.664197313367344,63.54507414981113,0.0639229999978852 +9,339.65000365733727,0.23204665485080622,10.44209946828628,62.221653022137616,0.06259170799967251 +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.06350795899925288 +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.061656208999920636 +12,348.17607141497996,0.23787160842327346,10.704222379047305,63.783572715783464,0.06416291700224974 +13,341.54157300846134,0.2333389626253396,10.500253318140281,62.56817612110891,0.06294029199852957 +14,339.28033302634714,0.23179409830025668,10.43073442351155,62.15393178708312,0.06252358400161029 +15,319.2664966692951,0.21812077656500742,9.815434945425334,58.48752823035984,0.058835374999034684 +16,353.3388710465269,0.24139879927051416,10.862945967173138,64.72936374725073,0.06511433299965574 +17,341.457685719264,0.23328165137954793,10.497674312079658,62.55280851991593,0.06292483300057938 +18,422.2055693438154,0.28844807587416627,12.980163414337483,77.3452912022586,0.0778052919995389 +19,314.12879430577607,0.21461073200667896,9.657482940300552,57.54633485379091,0.057888584000465926 +20,342.5287288615394,0.23401338102974584,10.530602146338563,62.74901659897613,0.06312220800100476 +21,341.5811371692552,0.2333659926005062,10.501469667022779,62.57542401587859,0.06294758299918612 +22,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.06382933299755678 +23,338.38881272636,0.23118501747848139,10.403325786531662,61.99061111530136,0.062359292001929134 +24,344.76916932805335,0.23554403526218753,10.599481586798438,63.15945059816086,0.06353508300162503 +25,344.2170292735118,0.23516681679822202,10.58250675591999,63.0583021614661,0.06343333299810183 +26,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.06350404100157903 +27,334.4460499034867,0.22849134777712343,10.282110649970555,61.2683228253801,0.06163270799879683 +28,341.1402445342186,0.23306477764391276,10.487914993976075,62.494655376803465,0.06286633399940911 +29,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462044 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c050483e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2427c8ca8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..7b7b1de94 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5841756cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..04eee3207 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0ebe3ec87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..de536a69d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c7d33c5e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8ba8ca0d6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a5348917e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fda41c59d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4111c64e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d2aa9c41c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7b59599cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..fd331d6d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..2d234d55b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d53a6c18e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..dba84a519 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..87df461c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6317ebedb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..cc7c31553 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664 +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817 +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246 +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286 +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.13461769155236,0.5108064580017526 +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325 +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404 +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.94118941951973,0.509611458001018 +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942 +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001 +10,2442.0640025445678,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774 +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285 +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915 +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681 +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428 +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787235996,0.5053130829983274 +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368 +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215 +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688 +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261 +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151 +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867 +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316 +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.43202890820044,0.5040950420006993 +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234 +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785 +26,2406.404834514243,3.097979270904169,78.14158352461473,500.91688232417516,0.5015765830030432 +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403 +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163 +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..69a1efb3d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.06268125000133296 +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.05951979200108326 +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.06323645799784572 +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282 +4,360.278246721321,1.1641760490899937,10.648786801970237,64.88569450075113,0.06395291700027883 +5,351.330385453154,1.1352626026807866,10.384313806874253,63.274195061179135,0.062364583998714807 +6,354.42246275922594,1.1452541088969475,10.475706701969138,63.83107459881516,0.06291345800127601 +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553 +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.06298845800120034 +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.109788902962684,0.06121691699809162 +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.061282792001293274 +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.554175874414916,0.05968366700108163 +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.06322137499955716 +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.057817167002212955 +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.06323258300108137 +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.06197183300173492 +16,356.72656097066806,1.1526993986887202,10.543809205652705,64.24604001515073,0.06332245799785596 +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.059875208000448765 +18,351.34986607256644,1.1353255508902547,10.384889597849094,63.277703498148014,0.062368041999434354 +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.06318083299993305 +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.06222850000267499 +21,351.2292135769868,1.1349356834838957,10.381323457749751,63.25597412358772,0.062346624999918276 +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.058059959003003314 +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.06313870800295263 +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.06468716699964716 +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.06429745800051023 +26,347.6089907752034,1.1232375676066257,10.2743201036959,62.60397619454575,0.06170399999973597 +27,359.7827304146522,1.1625748749380511,10.634140767815703,64.79645258845903,0.06386495800325065 +28,357.17747694959303,1.1541564546936098,10.557136982638607,64.32724946012914,0.0634024999999383 +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.06365683299736702 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..503860a24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..3d8222f6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..374193fed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c7290aeef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5f9663e61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..752465fcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..fd0c584f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ee3e8990b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b6a494f38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..89f5e5c89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..44f4d1a93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6b0a96b58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0b04b0669 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3571dd041 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..02a2b10b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..bdf142525 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..77bf3309e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..a42dad90c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c10db1ae5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..350bbc2b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..cc7c31553 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664 +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817 +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246 +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286 +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.13461769155236,0.5108064580017526 +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325 +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404 +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.94118941951973,0.509611458001018 +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942 +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001 +10,2442.0640025445678,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774 +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285 +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915 +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681 +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428 +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787235996,0.5053130829983274 +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368 +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215 +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688 +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261 +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151 +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867 +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316 +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.43202890820044,0.5040950420006993 +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234 +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785 +26,2406.404834514243,3.097979270904169,78.14158352461473,500.91688232417516,0.5015765830030432 +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403 +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163 +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..69a1efb3d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.06268125000133296 +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.05951979200108326 +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.06323645799784572 +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282 +4,360.278246721321,1.1641760490899937,10.648786801970237,64.88569450075113,0.06395291700027883 +5,351.330385453154,1.1352626026807866,10.384313806874253,63.274195061179135,0.062364583998714807 +6,354.42246275922594,1.1452541088969475,10.475706701969138,63.83107459881516,0.06291345800127601 +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553 +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.06298845800120034 +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.109788902962684,0.06121691699809162 +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.061282792001293274 +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.554175874414916,0.05968366700108163 +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.06322137499955716 +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.057817167002212955 +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.06323258300108137 +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.06197183300173492 +16,356.72656097066806,1.1526993986887202,10.543809205652705,64.24604001515073,0.06332245799785596 +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.059875208000448765 +18,351.34986607256644,1.1353255508902547,10.384889597849094,63.277703498148014,0.062368041999434354 +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.06318083299993305 +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.06222850000267499 +21,351.2292135769868,1.1349356834838957,10.381323457749751,63.25597412358772,0.062346624999918276 +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.058059959003003314 +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.06313870800295263 +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.06468716699964716 +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.06429745800051023 +26,347.6089907752034,1.1232375676066257,10.2743201036959,62.60397619454575,0.06170399999973597 +27,359.7827304146522,1.1625748749380511,10.634140767815703,64.79645258845903,0.06386495800325065 +28,357.17747694959303,1.1541564546936098,10.557136982638607,64.32724946012914,0.0634024999999383 +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.06365683299736702 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..503860a24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..3d8222f6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..374193fed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c7290aeef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5f9663e61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..752465fcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..fd0c584f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ee3e8990b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b6a494f38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..89f5e5c89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..44f4d1a93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6b0a96b58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0b04b0669 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3571dd041 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..02a2b10b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..bdf142525 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..77bf3309e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a42dad90c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c10db1ae5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..350bbc2b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4fea09136 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533 +1,2427.481988160699,4.084415548016843,85.00271374110463,501.11091739931237,0.5075136669984204 +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661 +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051 +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116 +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043 +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739 +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679 +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423 +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579 +10,2395.320511638591,4.030301517348542,83.87652092252418,494.47174681699164,0.5007896669994807 +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515 +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875 +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489 +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053 +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869 +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392 +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.46826848696355,0.5078755840004305 +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414 +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279 +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696 +21,2427.790497267815,4.08493463709761,85.01351675074451,501.17460367276243,0.5075781669984281 +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145 +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996 +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155 +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793 +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597 +27,2413.707893578892,4.061239628959905,84.5203886715508,498.26749808419555,0.5046339170003193 +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983 +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c4a2ae282 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.0910376507284,0.23663936496283305,11.25727264751763,63.11509919794418,0.06308895899928757 +1,356.37546692202835,0.24088724106355722,11.459350182023508,64.24806843795162,0.06422145900069154 +2,332.9498947627177,0.22505303817487676,10.706094530319138,60.024860324642134,0.06000000000130967 +3,344.6223300836617,0.23294286506234377,11.08142486653721,62.12918986734226,0.06210345799991046 +4,354.8452791425179,0.23985293105423183,11.410146577294173,63.97220318260727,0.06394570799966459 +5,360.71722232740564,0.24382199268943988,11.598960509369068,65.03080862159774,0.06500387499909266 +6,345.0863790001193,0.23325653273472718,11.096346485809166,62.212849516533666,0.06218708300002618 +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.06303133300025365 +8,348.98767498943727,0.23589356169622064,11.22179372069164,62.91618281240628,0.06289012499837554 +9,350.3400508932428,0.23680768214104864,11.265279736138456,63.1599917939054,0.06313383300221176 +10,345.9441911217454,0.23383635939090552,11.123929668167364,62.36749756897438,0.062341667002328904 +11,351.08109746493335,0.23730858268197502,11.289108290442528,63.29358912389249,0.06326737500057789 +12,329.7454850782693,0.2228870602112674,10.603055864336007,59.447163059205174,0.05942254199908348 +13,345.43644252185425,0.23349315350067398,11.107602873674919,62.27595965510834,0.06225016700045671 +14,335.9221662007163,0.22706210538866492,10.801668727775061,60.56070725151963,0.06053562499801046 +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.06256075000055716 +16,343.85677837624013,0.23242540060193906,11.056808342920815,61.99117470340289,0.0619654999973136 +17,355.4441283707007,0.24025771519842648,11.429402737296574,64.08016489649461,0.06405362499936018 +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.233948755745324,0.05920941600197693 +19,343.34116662973724,0.23207687972268837,11.04022870680789,61.89821920603703,0.06187258299905807 +20,348.2829310492102,0.23541719943457623,11.199132487387697,62.78913019205054,0.06276312499903725 +21,343.4116854085347,0.23212454595014897,11.042496257342801,61.91093246984688,0.0618852909974521 +22,353.14099187217386,0.2387009408174215,11.355344756028765,63.664950929446555,0.06363858300028369 +23,348.2216627188161,0.23537578592426733,11.197162387540146,62.77808461722959,0.06275208399893017 +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.058797624998987885 +25,328.22177318395427,0.22185712749011974,10.554060493458554,59.17246528915051,0.059147957999812206 +26,344.13585700434845,0.23261404007632666,11.065782192202397,62.0414875460717,0.062015792002057424 +27,347.5217742944843,0.2349027056837959,11.174657284672005,62.6519073588067,0.0626259589989786 +28,341.68127822516465,0.23095490030669685,10.986854543161435,61.59897126751471,0.061573458999191644 +29,354.82354305874037,0.23983823883846878,11.409447647601445,63.968284558774464,0.06394179099879693 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7b6e8ce0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..b81ad4288 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3a12b4792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..71ebde09d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..89b0c6967 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fdbd316a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6380f53e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b5ed946dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..86ba49658 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f1bdae7e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c9b304e81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..664d7eefc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f76f6c48f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..54dcb7b61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a2d44a114 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..fd9889ac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8f6736352 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..5247a88f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b6547990e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..4bd46f4a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4fea09136 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533 +1,2427.481988160699,4.084415548016843,85.00271374110463,501.11091739931237,0.5075136669984204 +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661 +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051 +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116 +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043 +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739 +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679 +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423 +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579 +10,2395.320511638591,4.030301517348542,83.87652092252418,494.47174681699164,0.5007896669994807 +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515 +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875 +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489 +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053 +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869 +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392 +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.46826848696355,0.5078755840004305 +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414 +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279 +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696 +21,2427.790497267815,4.08493463709761,85.01351675074451,501.17460367276243,0.5075781669984281 +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145 +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996 +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155 +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793 +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597 +27,2413.707893578892,4.061239628959905,84.5203886715508,498.26749808419555,0.5046339170003193 +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983 +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c4a2ae282 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.0910376507284,0.23663936496283305,11.25727264751763,63.11509919794418,0.06308895899928757 +1,356.37546692202835,0.24088724106355722,11.459350182023508,64.24806843795162,0.06422145900069154 +2,332.9498947627177,0.22505303817487676,10.706094530319138,60.024860324642134,0.06000000000130967 +3,344.6223300836617,0.23294286506234377,11.08142486653721,62.12918986734226,0.06210345799991046 +4,354.8452791425179,0.23985293105423183,11.410146577294173,63.97220318260727,0.06394570799966459 +5,360.71722232740564,0.24382199268943988,11.598960509369068,65.03080862159774,0.06500387499909266 +6,345.0863790001193,0.23325653273472718,11.096346485809166,62.212849516533666,0.06218708300002618 +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.06303133300025365 +8,348.98767498943727,0.23589356169622064,11.22179372069164,62.91618281240628,0.06289012499837554 +9,350.3400508932428,0.23680768214104864,11.265279736138456,63.1599917939054,0.06313383300221176 +10,345.9441911217454,0.23383635939090552,11.123929668167364,62.36749756897438,0.062341667002328904 +11,351.08109746493335,0.23730858268197502,11.289108290442528,63.29358912389249,0.06326737500057789 +12,329.7454850782693,0.2228870602112674,10.603055864336007,59.447163059205174,0.05942254199908348 +13,345.43644252185425,0.23349315350067398,11.107602873674919,62.27595965510834,0.06225016700045671 +14,335.9221662007163,0.22706210538866492,10.801668727775061,60.56070725151963,0.06053562499801046 +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.06256075000055716 +16,343.85677837624013,0.23242540060193906,11.056808342920815,61.99117470340289,0.0619654999973136 +17,355.4441283707007,0.24025771519842648,11.429402737296574,64.08016489649461,0.06405362499936018 +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.233948755745324,0.05920941600197693 +19,343.34116662973724,0.23207687972268837,11.04022870680789,61.89821920603703,0.06187258299905807 +20,348.2829310492102,0.23541719943457623,11.199132487387697,62.78913019205054,0.06276312499903725 +21,343.4116854085347,0.23212454595014897,11.042496257342801,61.91093246984688,0.0618852909974521 +22,353.14099187217386,0.2387009408174215,11.355344756028765,63.664950929446555,0.06363858300028369 +23,348.2216627188161,0.23537578592426733,11.197162387540146,62.77808461722959,0.06275208399893017 +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.058797624998987885 +25,328.22177318395427,0.22185712749011974,10.554060493458554,59.17246528915051,0.059147957999812206 +26,344.13585700434845,0.23261404007632666,11.065782192202397,62.0414875460717,0.062015792002057424 +27,347.5217742944843,0.2349027056837959,11.174657284672005,62.6519073588067,0.0626259589989786 +28,341.68127822516465,0.23095490030669685,10.986854543161435,61.59897126751471,0.061573458999191644 +29,354.82354305874037,0.23983823883846878,11.409447647601445,63.968284558774464,0.06394179099879693 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..7b6e8ce0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..b81ad4288 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3a12b4792 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..71ebde09d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..89b0c6967 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..fdbd316a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6380f53e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b5ed946dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..86ba49658 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f1bdae7e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c9b304e81 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..664d7eefc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f76f6c48f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..54dcb7b61 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a2d44a114 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..fd9889ac2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..8f6736352 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5247a88f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b6547990e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4bd46f4a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2429f3581 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896 +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294 +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021 +3,2357.806900571939,4.149006707691834,79.90183885458144,503.60241901185316,0.5101947919974918 +4,2346.305810578593,4.128768366919913,79.51208758229639,501.14590879444853,0.5077061250012775 +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982 +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412 +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624 +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255 +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223 +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191 +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826 +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185 +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488 +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016 +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732 +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316 +17,2343.330793546818,4.123533262375373,79.41126960122897,500.51047687106245,0.5070623749998049 +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544 +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428 +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128 +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923 +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731 +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271 +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.99306274803956,0.509577458997228 +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235 +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313 +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421 +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664 +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8d3dc82db --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,329.80854336715817,0.2333393777612803,10.666942983372813,62.50161904320008,0.06328241700248327 +1,335.5288092279848,0.23738646296703997,10.851952592778972,63.58565972331428,0.06437999999980093 +2,321.7799299616298,0.22765913783418323,10.407274872419805,60.980126205584796,0.06174191700119991 +3,329.7051746137013,0.23326624442044763,10.663599744934748,62.48202975547704,0.06326258299668552 +4,331.94620271569426,0.23485177067008894,10.736080944918351,62.90672428663097,0.06369258300037473 +5,333.0858280497938,0.23565805501804699,10.77293965796786,63.12269330840544,0.06391125000300235 +6,312.36717422581074,0.22099961790789116,10.10283967578931,59.19632622532799,0.05993583300005412 +7,327.8797790820893,0.2319747780043082,10.604561280196947,62.13610125115399,0.06291233299998567 +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.06309029099793406 +9,331.0710760494818,0.23423261899599482,10.707776868388335,62.7408800882129,0.06352466700263903 +10,310.75220077947944,0.21985702501074955,10.050606857634266,58.89027455645078,0.05962595799792325 +11,341.9923928625649,0.24195944512208956,11.061003205581237,64.81056565770255,0.065620208002656 +12,327.95947629563574,0.23203116374261679,10.607138913948194,62.15120457391521,0.0629276250001567 +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519 +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.06256675000258838 +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.06417608300034772 +16,327.93276637308287,0.23201226648590864,10.606275039355824,62.14614280872553,0.06292250000115018 +17,324.008361361325,0.22923575192331463,10.479348659351526,61.40243355088785,0.0621694999972533 +18,324.96622889461435,0.22991344271905198,10.510328810013805,61.58395787117464,0.06235329199989792 +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.06356720800249605 +20,327.4695771381485,0.2316845603362684,10.591294186800841,62.058364375786184,0.06283362500107614 +21,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.06075224999949569 +22,329.8941037233372,0.23339991167003843,10.669710247773185,62.517833483046005,0.06329883400030667 +23,323.0526671214134,0.22855959873154374,10.448438799156285,61.22132108880636,0.06198612499792944 +24,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.06332833299893537 +25,315.26661635015887,0.22305097174561472,10.1966158512281,59.745796003289655,0.0604921669983014 +26,333.9946170348847,0.23630102276573606,10.802332469290793,63.29491681225073,0.06408562499927939 +27,316.09592705316356,0.22363770864889276,10.22343810966367,59.90295767381056,0.06065129200214869 +28,325.3592739458097,0.23019152189414474,10.523041000875189,61.65844336450306,0.06242870799906086 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4f1b3830c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2a7aa05ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..19b5abeda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ce96289d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..dd0487e7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..aeaf867c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..9f2b8c7ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ee651006b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e6e3eaf41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9cf161bb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bf604c71d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0bb0742ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..34578ebf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e94373c3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..248d68c8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..f2b0f53ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..24da3e962 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..db334a460 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c74b1f50a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..4fdb2eb6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2429f3581 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896 +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294 +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021 +3,2357.806900571939,4.149006707691834,79.90183885458144,503.60241901185316,0.5101947919974918 +4,2346.305810578593,4.128768366919913,79.51208758229639,501.14590879444853,0.5077061250012775 +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982 +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412 +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624 +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255 +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223 +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191 +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826 +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185 +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488 +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016 +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732 +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316 +17,2343.330793546818,4.123533262375373,79.41126960122897,500.51047687106245,0.5070623749998049 +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544 +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428 +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128 +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923 +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731 +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271 +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.99306274803956,0.509577458997228 +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235 +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313 +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421 +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664 +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..998047f14 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,329.80854336715817,0.2333393777612803,10.666942983372813,62.50161904320008,0.06328241700248327 +1,335.5288092279848,0.23738646296703997,10.851952592778972,63.58565972331428,0.06437999999980093 +2,321.7799299616298,0.22765913783418323,10.407274872419805,60.980126205584796,0.06174191700119991 +3,329.7051746137013,0.23326624442044763,10.663599744934748,62.48202975547704,0.06326258299668552 +4,331.94620271569426,0.23485177067008894,10.736080944918351,62.90672428663097,0.06369258300037473 +5,333.0858280497938,0.23565805501804699,10.77293965796786,63.12269330840544,0.06391125000300235 +6,312.36717422581074,0.22099961790789116,10.10283967578931,59.19632622532799,0.05993583300005412 +7,327.8797790820893,0.2319747780043082,10.604561280196947,62.13610125115399,0.06291233299998567 +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.06309029099793406 +9,331.0710760494818,0.23423261899599482,10.707776868388335,62.7408800882129,0.06352466700263903 +10,310.75220077947944,0.21985702501074955,10.050606857634266,58.89027455645078,0.05962595799792325 +11,341.9923928625649,0.24195944512208956,11.061003205581237,64.81056565770255,0.065620208002656 +12,327.95947629563574,0.23203116374261679,10.607138913948194,62.15120457391521,0.0629276250001567 +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519 +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.06256675000258838 +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.06417608300034772 +16,327.93276637308287,0.23201226648590864,10.606275039355824,62.14614280872553,0.06292250000115018 +17,324.008361361325,0.22923575192331463,10.479348659351526,61.40243355088785,0.0621694999972533 +18,324.96622889461435,0.22991344271905198,10.510328810013805,61.58395787117464,0.06235329199989792 +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.06356720800249605 +20,327.4695771381485,0.2316845603362684,10.591294186800841,62.058364375786184,0.06283362500107614 +21,416.4333992141598,0.2946264194965756,13.468636319843455,78.91779093658275,0.0799036669995985 +22,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.06075224999949569 +23,329.8941037233372,0.23339991167003843,10.669710247773185,62.517833483046005,0.06329883400030667 +24,323.0526671214134,0.22855959873154374,10.448438799156285,61.22132108880636,0.06198612499792944 +25,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.06332833299893537 +26,315.26661635015887,0.22305097174561472,10.1966158512281,59.745796003289655,0.0604921669983014 +27,333.9946170348847,0.23630102276573606,10.802332469290793,63.29491681225073,0.06408562499927939 +28,316.09592705316356,0.22363770864889276,10.22343810966367,59.90295767381056,0.06065129200214869 +29,325.3592739458097,0.23019152189414474,10.523041000875189,61.65844336450306,0.06242870799906086 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a32611fe3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..fcae7534e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0c7656d13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3ec0f57ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ae2b65431 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..664db944f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..30b70496d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..36cbf84f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..54820fa31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..58181d78f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..75c718238 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6e807bbd0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..810fb908b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..288ef15de Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2d304b980 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..55bf3d91c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..387cea0bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..29debd454 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..29b705401 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..71ae86675 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7d53ed78f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109 +1,2362.707427351115,3.053665668998252,75.27949714443517,505.71358840062356,0.5069546670019918 +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826 +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.83570958566156,0.5080795419999049 +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101 +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.78612715354933,0.5090322920004837 +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142 +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332 +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337 +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512 +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.73412976069324,0.508980167000118 +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.09860541135083,0.5083430830018187 +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818 +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084 +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371 +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821 +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582 +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027 +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168 +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.18572072895483,0.5074279579966969 +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884 +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119 +22,2355.571678502875,3.044443117349149,75.05214119725946,504.18625365143083,0.5054235839998 +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808 +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835 +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.65770497577483,0.5119109170009324 +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616 +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251 +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333 +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8a0397256 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,356.01103457289975,0.23027880632140993,9.967782616483888,63.58984751704077,0.0625623749983788 +1,351.19450650439023,0.22716332891616445,9.832926951656832,62.72953068499227,0.061715959000139264 +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.07013016699784203 +3,372.26214494736774,0.24079052066453283,10.422789680193349,66.49258234922029,0.0654182079997554 +4,374.1580309147266,0.24201683759037945,10.475871684269283,66.83122100888622,0.0657513750011276 +5,405.53899035120986,0.26231500022717325,11.354492152690499,72.43641363416084,0.07126600000265171 +6,333.0413416768214,0.21542130768229067,9.324665175390583,59.48705539283827,0.05852587499975925 +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.06452437500047381 +8,366.1896728586104,0.2368626603225164,10.252769439674639,65.40793177191775,0.06435108299774583 +9,352.4134565857517,0.22795178304382385,9.867055751754089,62.947256660530215,0.061930167001264635 +10,360.33604592969425,0.23307635571131582,10.088876540075528,64.36237079856764,0.06332241599739064 +11,359.41703628607354,0.23248191221608897,10.063145628782136,64.1982194733857,0.06316091699773096 +12,358.8771446574472,0.23213269382758553,10.048029461394059,64.10178530981754,0.06306604099881952 +13,358.17342362709223,0.23167750558026665,10.028326312974398,63.976088326665064,0.06294237500333111 +14,354.21164807047495,0.22911490819565003,9.917402454754566,63.268445363170216,0.0622461659986584 +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.06286983300014981 +16,345.8859837170851,0.22372961430600585,9.684296162102825,61.781334921929904,0.06078308400174137 +17,349.5224448786402,0.22608178840791732,9.78611169822842,62.43087099892917,0.06142212499980815 +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.05652616699808277 +19,360.39580184533213,0.23311500766192245,10.090549617366072,64.3730442586423,0.06333291699775145 +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.06218662500032224 +21,366.208166991892,0.23687462289255629,10.253287248063508,65.41123515018734,0.06435433300066506 +22,359.1301384857916,0.23229633795976168,10.05511291454397,64.14697446803133,0.06311049999931129 +23,365.57154258781645,0.23646283479160185,10.235462705979337,65.29752280745234,0.06424245800008066 +24,349.0676830815694,0.22578763459351192,9.773379040262016,62.349642524179785,0.061342208999121794 +25,357.242315974124,0.23107523672323674,10.00225667530582,63.809776083716656,0.06277875000159838 +26,354.99835934867855,0.22962377706900294,9.939429207415413,63.408965867768956,0.06238441599998623 +27,365.0418539985884,0.23612021604048408,10.220632208609526,65.20291108660797,0.06414937499721418 +28,374.29508086512277,0.24210548568248563,10.479708880256164,66.85570054632068,0.06577545900290716 +29,373.26936300344295,0.24144202005397342,10.450990296621994,66.67248925204723,0.06559520800146856 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..567533131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8b2ad3c5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f981b37f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8653f7ec1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..54d911ec0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..89e1cdeca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..4d9c8e5a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2c2743589 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..25ae65e80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f91330d67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..546b028e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9675ea739 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9989dde88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4b24e9b36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..83414a64f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..353c7a884 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1feaa3bd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..efa621a45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e4e820b5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..de0eb5128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7d53ed78f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109 +1,2362.707427351115,3.053665668998252,75.27949714443517,505.71358840062356,0.5069546670019918 +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826 +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.83570958566156,0.5080795419999049 +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101 +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.78612715354933,0.5090322920004837 +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142 +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332 +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337 +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512 +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.73412976069324,0.508980167000118 +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.09860541135083,0.5083430830018187 +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818 +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084 +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371 +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821 +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582 +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027 +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168 +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.18572072895483,0.5074279579966969 +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884 +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119 +22,2355.571678502875,3.044443117349149,75.05214119725946,504.18625365143083,0.5054235839998 +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808 +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835 +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.65770497577483,0.5119109170009324 +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616 +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251 +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333 +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8a0397256 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,356.01103457289975,0.23027880632140993,9.967782616483888,63.58984751704077,0.0625623749983788 +1,351.19450650439023,0.22716332891616445,9.832926951656832,62.72953068499227,0.061715959000139264 +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.07013016699784203 +3,372.26214494736774,0.24079052066453283,10.422789680193349,66.49258234922029,0.0654182079997554 +4,374.1580309147266,0.24201683759037945,10.475871684269283,66.83122100888622,0.0657513750011276 +5,405.53899035120986,0.26231500022717325,11.354492152690499,72.43641363416084,0.07126600000265171 +6,333.0413416768214,0.21542130768229067,9.324665175390583,59.48705539283827,0.05852587499975925 +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.06452437500047381 +8,366.1896728586104,0.2368626603225164,10.252769439674639,65.40793177191775,0.06435108299774583 +9,352.4134565857517,0.22795178304382385,9.867055751754089,62.947256660530215,0.061930167001264635 +10,360.33604592969425,0.23307635571131582,10.088876540075528,64.36237079856764,0.06332241599739064 +11,359.41703628607354,0.23248191221608897,10.063145628782136,64.1982194733857,0.06316091699773096 +12,358.8771446574472,0.23213269382758553,10.048029461394059,64.10178530981754,0.06306604099881952 +13,358.17342362709223,0.23167750558026665,10.028326312974398,63.976088326665064,0.06294237500333111 +14,354.21164807047495,0.22911490819565003,9.917402454754566,63.268445363170216,0.0622461659986584 +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.06286983300014981 +16,345.8859837170851,0.22372961430600585,9.684296162102825,61.781334921929904,0.06078308400174137 +17,349.5224448786402,0.22608178840791732,9.78611169822842,62.43087099892917,0.06142212499980815 +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.05652616699808277 +19,360.39580184533213,0.23311500766192245,10.090549617366072,64.3730442586423,0.06333291699775145 +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.06218662500032224 +21,366.208166991892,0.23687462289255629,10.253287248063508,65.41123515018734,0.06435433300066506 +22,359.1301384857916,0.23229633795976168,10.05511291454397,64.14697446803133,0.06311049999931129 +23,365.57154258781645,0.23646283479160185,10.235462705979337,65.29752280745234,0.06424245800008066 +24,349.0676830815694,0.22578763459351192,9.773379040262016,62.349642524179785,0.061342208999121794 +25,357.242315974124,0.23107523672323674,10.00225667530582,63.809776083716656,0.06277875000159838 +26,354.99835934867855,0.22962377706900294,9.939429207415413,63.408965867768956,0.06238441599998623 +27,365.0418539985884,0.23612021604048408,10.220632208609526,65.20291108660797,0.06414937499721418 +28,374.29508086512277,0.24210548568248563,10.479708880256164,66.85570054632068,0.06577545900290716 +29,373.26936300344295,0.24144202005397342,10.450990296621994,66.67248925204723,0.06559520800146856 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..567533131 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8b2ad3c5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f981b37f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8653f7ec1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..54d911ec0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..89e1cdeca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..4d9c8e5a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2c2743589 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..25ae65e80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f91330d67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..546b028e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9675ea739 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..9989dde88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4b24e9b36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..83414a64f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..353c7a884 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..1feaa3bd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..efa621a45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e4e820b5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..de0eb5128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..3b4d159e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618 +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904 +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659 +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492 +4,2340.6909225377162,4.507878606273955,80.50737273871486,493.76297000720723,0.5085929999986547 +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951 +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227 +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618 +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373 +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693 +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235 +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706 +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046 +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578 +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701 +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975 +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283 +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956 +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957 +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134 +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105 +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781 +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063 +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187 +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935 +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673 +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902 +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685 +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548 +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8756dce82 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,330.77706061011514,0.26081376748284263,10.33474553650764,61.4542439631448,0.061166292001871625 +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.06247058299777564 +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886 +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.06220070800191024 +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.06389470900103333 +5,339.8455414183246,0.26796415645048266,10.618079699350375,63.13905436364497,0.06284320800114074 +6,345.3511691216465,0.27230527823508494,10.79009665006524,64.16193118414189,0.06386129199745483 +7,342.53413726212943,0.27008408220944563,10.702081757549283,63.638561870600626,0.06334037499982514 +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.06315929199990933 +9,311.5008417190181,0.24561469877312686,9.732482438885151,57.872963398418015,0.05760179199933191 +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.05914479200146161 +11,313.26424396705994,0.24700512041558048,9.787577896467377,58.20058149792115,0.057927875001041684 +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.06414345799930743 +13,340.49019830223455,0.26847246071534364,10.638221255845492,63.258823556052846,0.06296241599920904 +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.06333420800001477 +15,339.41178997419223,0.26762214860965283,10.604527638657494,63.058468766149446,0.06276299999808543 +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.06385783299992909 +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.06361325000034412 +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.06452866700055893 +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.06404270800339873 +20,341.9755514445675,0.26964364395392665,10.684629391674344,63.53478360664397,0.06323708300260478 +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.06150412499846425 +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.05865241699939361 +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.06365387500045472 +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.06400912500248523 +25,343.06680876474195,0.2705040873366781,10.718724460715869,63.73752557870477,0.0634388750004291 +26,345.3649158389056,0.272316117357702,10.790526150298941,64.16448515240853,0.0638638339987665 +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.06406312500257627 +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.06252254200080642 +29,339.69705314558837,0.26784707521828377,10.613440355524494,63.11146709830811,0.06281574999957229 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9b1ae0030 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2e5a109fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f225b3a0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c57ca8e02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1e0a18a5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..cd010d208 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c6b21e9a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f76010d00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7c17bb64c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cfe58c89b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b45342050 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..31b1de693 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4b9ae68e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..43d8f958d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bf75f34a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..d4fff172e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..163e3f450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..338a643fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1a61a350 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..489ff3d6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3b4d159e6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618 +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904 +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659 +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492 +4,2340.6909225377162,4.507878606273955,80.50737273871486,493.76297000720723,0.5085929999986547 +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951 +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227 +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618 +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373 +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693 +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235 +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706 +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046 +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578 +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701 +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975 +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283 +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956 +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957 +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134 +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105 +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781 +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063 +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187 +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935 +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673 +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902 +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685 +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548 +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8756dce82 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,330.77706061011514,0.26081376748284263,10.33474553650764,61.4542439631448,0.061166292001871625 +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.06247058299777564 +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886 +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.06220070800191024 +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.06389470900103333 +5,339.8455414183246,0.26796415645048266,10.618079699350375,63.13905436364497,0.06284320800114074 +6,345.3511691216465,0.27230527823508494,10.79009665006524,64.16193118414189,0.06386129199745483 +7,342.53413726212943,0.27008408220944563,10.702081757549283,63.638561870600626,0.06334037499982514 +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.06315929199990933 +9,311.5008417190181,0.24561469877312686,9.732482438885151,57.872963398418015,0.05760179199933191 +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.05914479200146161 +11,313.26424396705994,0.24700512041558048,9.787577896467377,58.20058149792115,0.057927875001041684 +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.06414345799930743 +13,340.49019830223455,0.26847246071534364,10.638221255845492,63.258823556052846,0.06296241599920904 +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.06333420800001477 +15,339.41178997419223,0.26762214860965283,10.604527638657494,63.058468766149446,0.06276299999808543 +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.06385783299992909 +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.06361325000034412 +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.06452866700055893 +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.06404270800339873 +20,341.9755514445675,0.26964364395392665,10.684629391674344,63.53478360664397,0.06323708300260478 +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.06150412499846425 +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.05865241699939361 +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.06365387500045472 +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.06400912500248523 +25,343.06680876474195,0.2705040873366781,10.718724460715869,63.73752557870477,0.0634388750004291 +26,345.3649158389056,0.272316117357702,10.790526150298941,64.16448515240853,0.0638638339987665 +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.06406312500257627 +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.06252254200080642 +29,339.69705314558837,0.26784707521828377,10.613440355524494,63.11146709830811,0.06281574999957229 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9b1ae0030 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..2e5a109fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f225b3a0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..c57ca8e02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1e0a18a5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..cd010d208 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c6b21e9a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f76010d00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7c17bb64c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cfe58c89b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b45342050 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..31b1de693 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4b9ae68e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..43d8f958d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bf75f34a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..d4fff172e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..163e3f450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..338a643fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c1a61a350 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..489ff3d6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c0e744e06 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767 +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903 +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114 +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558 +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153 +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502 +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542 +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336 +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.89359845360957,0.5130170830016141 +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846 +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546 +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943 +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843 +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183 +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798 +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369 +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819 +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662 +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346 +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835 +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325 +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111 +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748 +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375 +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.97424813561923,0.5100448750017677 +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458 +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488 +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479 +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.65742740299515,0.5066679999981716 +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..f3aad3227 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,336.97433817066894,0.36732907738354553,10.452181929186342,62.212188287776854,0.06315970799914794 +1,330.7703056824168,0.36056618397647255,10.259746871330536,61.066800068015304,0.06199687499974971 +2,334.2737986243397,0.3643852725069603,10.368417299516233,61.713614789133366,0.06265354100105469 +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.06196908300262294 +4,339.2787336454407,0.36984105342382795,10.523659065605285,62.6376256844174,0.06359162499938975 +5,326.52765323109134,0.35594135224873696,10.12814938671406,60.28352174903609,0.06120166699838592 +6,347.80605915722936,0.37913652271623455,10.788157419107401,64.21194016548591,0.06518991700068 +7,312.5587912483423,0.34071417141331534,9.694866877487973,57.70459103118241,0.05858345800152165 +8,375.7459972937605,0.40959329801123434,11.65479111613785,69.37021038135724,0.07042675000047893 +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.05968133300120826 +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925 +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.06330849999721977 +12,337.0256901842581,0.36738505520036063,10.453774752519353,62.22166889438835,0.06316933299967786 +13,317.6766526799566,0.3462930511821943,9.853611365456983,58.64945039567527,0.05954270800066297 +14,328.40589370391314,0.35798878512962484,10.186408158688415,60.630282426953734,0.06155370899796253 +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.06400583299910068 +16,331.6672985956367,0.36154397825309714,10.287569563019947,61.23240286232,0.062164999999367865 +17,337.1901926729352,0.36756437611755893,10.458877247708722,62.252039337001115,0.0632001659978414 +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.059826249998877756 +19,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.06413475000226754 +20,337.3818197078384,0.36777326496741874,10.464821084982006,62.28741751220919,0.06323608299862826 +21,338.1547675106831,0.3686158401166896,10.488796177865803,62.43011910339933,0.06338095799947041 +22,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.06131654199998593 +23,335.28106096612464,0.3654832693119979,10.399660299514123,61.8995755207502,0.06284233399856021 +24,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.061192165998363635 +25,330.93325561554514,0.3607438124834998,10.264801209757767,61.09688387788729,0.06202741699962644 +26,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.06325554200157057 +27,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.06242891700094333 +28,344.64868676424874,0.37569473336703363,10.690222867625593,63.6290262057076,0.06459812499815598 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e2abba656 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..33c8c91e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..002c2b03e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bf7c84bc2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5d1db1fe6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..02a4cdc62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..cfbbfb473 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..17f332c3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1f88d3f28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a4098125b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fbd00c5c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..775f3059a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8647552a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d5b7532f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..61d6dc13f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..96b1c7fe9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cecce5cce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8e1fd142f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5446f1b27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f5d85ef42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c0e744e06 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767 +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903 +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114 +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558 +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153 +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502 +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542 +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336 +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.89359845360957,0.5130170830016141 +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846 +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546 +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943 +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843 +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183 +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798 +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369 +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819 +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662 +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346 +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835 +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325 +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111 +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748 +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375 +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.97424813561923,0.5100448750017677 +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458 +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488 +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479 +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.65742740299515,0.5066679999981716 +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..fe8fab4b1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,336.97433817066894,0.36732907738354553,10.452181929186342,62.212188287776854,0.06315970799914794 +1,330.7703056824168,0.36056618397647255,10.259746871330536,61.066800068015304,0.06199687499974971 +2,334.2737986243397,0.3643852725069603,10.368417299516233,61.713614789133366,0.06265354100105469 +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.06196908300262294 +4,339.2787336454407,0.36984105342382795,10.523659065605285,62.6376256844174,0.06359162499938975 +5,326.52765323109134,0.35594135224873696,10.12814938671406,60.28352174903609,0.06120166699838592 +6,347.80605915722936,0.37913652271623455,10.788157419107401,64.21194016548591,0.06518991700068 +7,312.5587912483423,0.34071417141331534,9.694866877487973,57.70459103118241,0.05858345800152165 +8,375.7459972937605,0.40959329801123434,11.65479111613785,69.37021038135724,0.07042675000047893 +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.05968133300120826 +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925 +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.06330849999721977 +12,337.0256901842581,0.36738505520036063,10.453774752519353,62.22166889438835,0.06316933299967786 +13,317.6766526799566,0.3462930511821943,9.853611365456983,58.64945039567527,0.05954270800066297 +14,328.40589370391314,0.35798878512962484,10.186408158688415,60.630282426953734,0.06155370899796253 +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.06400583299910068 +16,331.6672985956367,0.36154397825309714,10.287569563019947,61.23240286232,0.062164999999367865 +17,337.1901926729352,0.36756437611755893,10.458877247708722,62.252039337001115,0.0632001659978414 +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.059826249998877756 +19,401.922184598819,0.4381274433244484,12.466717250959304,74.20285699213157,0.07533300000068266 +20,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.06413475000226754 +21,337.3818197078384,0.36777326496741874,10.464821084982006,62.28741751220919,0.06323608299862826 +22,338.1547675106831,0.3686158401166896,10.488796177865803,62.43011910339933,0.06338095799947041 +23,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.06131654199998593 +24,335.28106096612464,0.3654832693119979,10.399660299514123,61.8995755207502,0.06284233399856021 +25,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.061192165998363635 +26,330.93325561554514,0.3607438124834998,10.264801209757767,61.09688387788729,0.06202741699962644 +27,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.06325554200157057 +28,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.06242891700094333 +29,344.64868676424874,0.37569473336703363,10.690222867625593,63.6290262057076,0.06459812499815598 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..e5ff2a82a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..52cf10d28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..d3b1590b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d5af66ecb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a199ca063 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d6105fd97 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..575038b30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4da1ec984 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..47d7aa022 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..f07408915 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3e1c621be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..57fd6fde0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..525ab3f43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e0de6238e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e2e582f1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..93cc30cf8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..82cd73ff2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..756b218cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5d072148a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..255a4d410 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..ed1021510 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552 +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887 +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551 +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776 +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338 +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639 +6,2337.3659448461394,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552 +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931 +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839 +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006 +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587 +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081 +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149 +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471 +14,2353.7900950612166,3.1273854940882333,76.58767454671397,495.29136011161205,0.5069090830002096 +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043 +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.80884514495244,0.5064152499980992 +17,2369.900043850338,3.148790130066317,77.11186041928363,498.68126240741765,0.5103784999992058 +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193 +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772 +20,2361.4066543108734,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665 +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113 +22,2365.1860054558238,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555 +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592 +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598 +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374 +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287 +27,2323.0195285501377,3.0865018895758602,75.58646116812372,488.81652797995565,0.5002823750000971 +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055 +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..cf8e8ba68 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.39992586587454,1.1889836975204853,9.545840542950183,63.42378752202132,0.06433129200013354 +1,352.47862696982486,1.1858840665138777,9.520954934011419,63.25844434804028,0.064163582999754 +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.061324250000325264 +3,347.78700620443374,1.1700995114058619,9.39422750585849,62.41645107984983,0.06330954200166161 +4,349.67239785603925,1.1764427496838772,9.445154647461985,62.75481753313711,0.06365274999916437 +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.05823170800067601 +6,343.4510799857494,1.1555116600501039,9.277107899259406,61.6382934089584,0.0625202499977604 +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.059800832998007536 +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774 +9,350.0937884628729,1.1778604821878835,9.456537014137007,62.8304434355651,0.0637294580010348 +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.06395024999801535 +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.06752575000064098 +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.062174499998945976 +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.06418383400159655 +14,350.38540207791414,1.1788415911493795,9.464413917513589,62.882778590739754,0.06378254199807998 +15,348.5869825268699,1.1727909630337834,9.415836017499803,62.56002079954495,0.0634551660004945 +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.06215354199957801 +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.06024408300072537 +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.06381458299802034 +19,346.13004814041824,1.1645248183134325,9.349470684173559,62.1190810226051,0.06300791700050468 +20,348.3924269467375,1.1721363974945507,9.410580791313393,62.525104403495035,0.06341975000032107 +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.06494504199872608 +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.06364466699960758 +23,350.6754061403116,1.1798172849092479,9.472247344557106,62.934824883587595,0.06383533299958799 +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047005 +25,354.05204084193906,1.1911776823481561,9.563455106852338,63.54082094125735,0.06445000000167056 +26,348.6677854950157,1.173062817680049,9.418018621945537,62.574522303104324,0.06346987500000978 +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.06434320799962734 +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307 +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.057348624999576714 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9d4415db9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..4a5b19917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..318652397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7b956b636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..dc7263f41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7f90e1144 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..85bcff666 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6a8fe93cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4c20c72e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..634e1936e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7d96112c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1d132083c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ec837ab63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6e457daa3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4cc7ede3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..9d7003c20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e0aff1128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..68e711495 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f9d366c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..0006f033a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ed1021510 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552 +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887 +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551 +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776 +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338 +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639 +6,2337.3659448461394,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552 +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931 +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839 +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006 +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587 +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081 +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149 +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471 +14,2353.7900950612166,3.1273854940882333,76.58767454671397,495.29136011161205,0.5069090830002096 +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043 +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.80884514495244,0.5064152499980992 +17,2369.900043850338,3.148790130066317,77.11186041928363,498.68126240741765,0.5103784999992058 +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193 +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772 +20,2361.4066543108734,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665 +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113 +22,2365.1860054558238,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555 +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592 +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598 +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374 +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287 +27,2323.0195285501377,3.0865018895758602,75.58646116812372,488.81652797995565,0.5002823750000971 +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055 +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..cf8e8ba68 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,353.39992586587454,1.1889836975204853,9.545840542950183,63.42378752202132,0.06433129200013354 +1,352.47862696982486,1.1858840665138777,9.520954934011419,63.25844434804028,0.064163582999754 +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.061324250000325264 +3,347.78700620443374,1.1700995114058619,9.39422750585849,62.41645107984983,0.06330954200166161 +4,349.67239785603925,1.1764427496838772,9.445154647461985,62.75481753313711,0.06365274999916437 +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.05823170800067601 +6,343.4510799857494,1.1555116600501039,9.277107899259406,61.6382934089584,0.0625202499977604 +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.059800832998007536 +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774 +9,350.0937884628729,1.1778604821878835,9.456537014137007,62.8304434355651,0.0637294580010348 +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.06395024999801535 +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.06752575000064098 +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.062174499998945976 +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.06418383400159655 +14,350.38540207791414,1.1788415911493795,9.464413917513589,62.882778590739754,0.06378254199807998 +15,348.5869825268699,1.1727909630337834,9.415836017499803,62.56002079954495,0.0634551660004945 +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.06215354199957801 +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.06024408300072537 +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.06381458299802034 +19,346.13004814041824,1.1645248183134325,9.349470684173559,62.1190810226051,0.06300791700050468 +20,348.3924269467375,1.1721363974945507,9.410580791313393,62.525104403495035,0.06341975000032107 +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.06494504199872608 +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.06364466699960758 +23,350.6754061403116,1.1798172849092479,9.472247344557106,62.934824883587595,0.06383533299958799 +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047005 +25,354.05204084193906,1.1911776823481561,9.563455106852338,63.54082094125735,0.06445000000167056 +26,348.6677854950157,1.173062817680049,9.418018621945537,62.574522303104324,0.06346987500000978 +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.06434320799962734 +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307 +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.057348624999576714 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9d4415db9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..4a5b19917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..318652397 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7b956b636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..dc7263f41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7f90e1144 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..85bcff666 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6a8fe93cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..4c20c72e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..634e1936e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..7d96112c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..1d132083c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ec837ab63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6e457daa3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4cc7ede3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..9d7003c20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e0aff1128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..68e711495 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f9d366c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..0006f033a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..842029707 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1531.1537366320806,2.8707672142483798,0.0,463.19495191756414,0.4997307500016177 +1,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.49923370800024713 +2,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331 +3,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553 +4,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.49679337499765097 +5,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.49387491599918576 +6,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974 +7,1529.5491176101661,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789 +8,1534.5397925705695,2.87711574616994,0.0,464.21928016109405,0.5008358750019397 +9,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685 +10,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412 +11,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775 +12,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.49719249999907333 +13,1530.105222825464,2.868801350868558,0.0,462.87776214711755,0.49938854100037133 +14,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475 +15,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071 +16,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474 +17,1523.8910085724553,2.8571502918579252,0.0,460.997877323495,0.49736037500042585 +18,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.49894154200228513 +19,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.49791095799810137 +20,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227 +21,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.49721587500243913 +22,1523.6794668185387,2.856753671246252,0.0,460.93388304898826,0.4972913329984294 +23,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626 +24,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481 +25,1518.296859631195,2.8466617961647906,0.0,459.30557073933295,0.49553458299851627 +26,1517.1233670108359,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685 +27,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821 +28,1513.0786858616545,2.8368782180579974,0.0,457.7270017880555,0.49383150000358 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2e85afac1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,246.26397969829708,0.0,0.0,54.43476538811038,0.06307433300025878 +1,242.48099699164638,0.0,0.0,53.598566052925044,0.0621054169969284 +2,239.1234239616921,0.0,0.0,52.85640026650788,0.06124545899729128 +3,235.2940732640157,0.0,0.0,52.009951642262514,0.06026466699768207 +4,238.8820026774676,0.0,0.0,52.803035941840676,0.061183624999102904 +5,234.2631621094942,0.0,0.0,51.782076632278866,0.06000062499879277 +6,239.56428704081338,0.0,0.0,52.95384967144987,0.061358375001873355 +7,240.1634400598459,0.0,0.0,53.08628785450275,0.061511832998803584 +8,240.7378668708275,0.0,0.0,53.213260498763326,0.06165895799858845 +9,239.34922398149794,0.0,0.0,52.906311630393986,0.0613032920009573 +10,242.81286245451162,0.0,0.0,53.67192237013237,0.06219041599979391 +11,232.12976143215943,0.0,0.0,51.31050476256479,0.059454207999806385 +12,245.03915532867254,0.0,0.0,54.164027348045266,0.06276062500182888 +13,236.23550854991882,0.0,0.0,52.218048697215536,0.060505792000185465 +14,239.34987210662737,0.0,0.0,52.906454893486725,0.06130345800193027 +15,238.92934287039128,0.0,0.0,52.81350012867948,0.061195750000479165 +16,238.7121636534104,0.0,0.0,52.7654943271895,0.06114012499892851 +17,240.5050741873832,0.0,0.0,53.161803460170496,0.061599333999765804 +18,239.09170116971927,0.0,0.0,52.84938818646023,0.06123733400090714 +19,242.39574953227938,0.0,0.0,53.579722755353636,0.062083583001367515 +20,239.42991118529753,0.0,0.0,52.92414691842122,0.06132395800159429 +21,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058 +22,241.4102263831343,0.0,0.0,53.36188041611268,0.06183116600004723 +23,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936 +24,226.55614444164797,0.0,0.0,50.07849944204095,0.05802666599993245 +25,244.4723732267422,0.0,0.0,54.038744508132766,0.06261545800225576 +26,238.2831737209998,0.0,0.0,52.670669390334176,0.06103025000265916 +27,242.49953873943076,0.0,0.0,53.602664564172066,0.06211016599991126 +28,238.44536412992605,0.0,0.0,52.70652033722831,0.06107179100217763 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..92c25a72d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..00ef1e0ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..39097dbcf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..113bde2ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c834cd228 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b93eee815 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5b8c4cdf3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..45bb956f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..98ff70c6a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..70dd85709 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2a70d2676 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..08bc60022 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..16e311e24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d5d1b0159 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..66dc366a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..210a62220 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b8cad62c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ba330de52 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.658112747968,2.9298349145681235,0.0,472.7254566807824,0.5100129999991623 +1,1531.1537366320806,2.8707672142483798,0.0,463.19495191756414,0.4997307500016177 +2,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.49923370800024713 +3,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331 +4,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553 +5,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.49679337499765097 +6,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.49387491599918576 +7,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974 +8,1529.5491176101661,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789 +9,1534.5397925705695,2.87711574616994,0.0,464.21928016109405,0.5008358750019397 +10,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685 +11,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412 +12,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775 +13,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.49719249999907333 +14,1530.105222825464,2.868801350868558,0.0,462.87776214711755,0.49938854100037133 +15,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475 +16,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071 +17,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474 +18,1523.8910085724553,2.8571502918579252,0.0,460.997877323495,0.49736037500042585 +19,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.49894154200228513 +20,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.49791095799810137 +21,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227 +22,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.49721587500243913 +23,1523.6794668185387,2.856753671246252,0.0,460.93388304898826,0.4972913329984294 +24,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626 +25,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481 +26,1518.296859631195,2.8466617961647906,0.0,459.30557073933295,0.49553458299851627 +27,1517.1233670108359,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685 +28,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821 +29,1513.0786858616545,2.8368782180579974,0.0,457.7270017880555,0.49383150000358 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2c0b68b36 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,246.26397969829708,0.0,0.0,54.43476538811038,0.06307433300025878 +1,242.48099699164638,0.0,0.0,53.598566052925044,0.0621054169969284 +2,239.1234239616921,0.0,0.0,52.85640026650788,0.06124545899729128 +3,235.2940732640157,0.0,0.0,52.009951642262514,0.06026466699768207 +4,238.8820026774676,0.0,0.0,52.803035941840676,0.061183624999102904 +5,234.2631621094942,0.0,0.0,51.782076632278866,0.06000062499879277 +6,239.56428704081338,0.0,0.0,52.95384967144987,0.061358375001873355 +7,240.1634400598459,0.0,0.0,53.08628785450275,0.061511832998803584 +8,240.7378668708275,0.0,0.0,53.213260498763326,0.06165895799858845 +9,239.34922398149794,0.0,0.0,52.906311630393986,0.0613032920009573 +10,242.81286245451162,0.0,0.0,53.67192237013237,0.06219041599979391 +11,232.12976143215943,0.0,0.0,51.31050476256479,0.059454207999806385 +12,245.03915532867254,0.0,0.0,54.164027348045266,0.06276062500182888 +13,216.43592117453935,0.0,0.0,47.841501648473,0.055434624999179505 +14,236.23550854991882,0.0,0.0,52.218048697215536,0.060505792000185465 +15,239.34987210662737,0.0,0.0,52.906454893486725,0.06130345800193027 +16,238.92934287039128,0.0,0.0,52.81350012867948,0.061195750000479165 +17,238.7121636534104,0.0,0.0,52.7654943271895,0.06114012499892851 +18,240.5050741873832,0.0,0.0,53.161803460170496,0.061599333999765804 +19,239.09170116971927,0.0,0.0,52.84938818646023,0.06123733400090714 +20,242.39574953227938,0.0,0.0,53.579722755353636,0.062083583001367515 +21,239.42991118529753,0.0,0.0,52.92414691842122,0.06132395800159429 +22,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058 +23,241.4102263831343,0.0,0.0,53.36188041611268,0.06183116600004723 +24,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936 +25,226.55614444164797,0.0,0.0,50.07849944204095,0.05802666599993245 +26,244.4723732267422,0.0,0.0,54.038744508132766,0.06261545800225576 +27,238.2831737209998,0.0,0.0,52.670669390334176,0.06103025000265916 +28,242.49953873943076,0.0,0.0,53.602664564172066,0.06211016599991126 +29,238.44536412992605,0.0,0.0,52.70652033722831,0.06107179100217763 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9d3682ae3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bc3ef3b18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2bc98022a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..17e6bbf4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5ffde63dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c84b3023b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..813a07d19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..c43550287 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f6d8efee1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..332d57472 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..11c2c0b58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2ebda7a7f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d421092df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a93e07b71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..bbfbf80db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b90502481 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..aae94553e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4565bdc1f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.49558333300228696 +1,1562.7387326973612,1.9266414389721958,2.092731218193937,449.07354505974337,0.4933393750034156 +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927 +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056 +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994 +5,1567.5576911020446,1.932582550407452,2.0991844944080946,450.458336188937,0.4948606670004665 +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495 +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.49341350000031525 +8,1572.8194619481283,1.9390695885427023,2.1062307599687973,451.9703753018757,0.49652174999937415 +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045 +10,1561.3753115790362,1.9249605286764606,2.0909054018382247,448.68174805477713,0.49290895800004364 +11,1564.2604044990444,1.9285174505461702,2.0947689549035986,449.5108174816151,0.4938197500014212 +12,1566.0254582717266,1.9306935185409746,2.0971326149669207,450.018028916473,0.494376958002249 +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921 +14,1568.229238167961,1.933410475369152,2.1000837922113202,450.6513140778545,0.4950726669994765 +15,1568.8164427249465,1.9341344176436794,2.1008701433026173,450.82005503663623,0.49525804099903326 +16,1563.7106830354621,1.9278397197588861,2.0940327990484455,449.35284778311006,0.49364620900087175 +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454 +18,1560.7671180085995,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284 +19,1563.612085984862,1.9277181631867786,2.093900763461501,449.32451462279414,0.4936150829998951 +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719 +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155 +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.49572149999949033 +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.49431141700188164 +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.49365366699930746 +25,1556.033423900803,1.9183747175310144,2.0837518483526534,447.146686315548,0.49122258300121757 +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.49354441600007704 +27,1574.1810331293302,1.9407482181209725,2.1080540989934704,452.3616407030591,0.49695158299800823 +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..2183a3c06 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.16152554376833,0.0,0.0,54.62988385920401,0.0630969579979137 +1,241.02349681651853,0.0,0.0,53.7077977844241,0.06203195799753303 +2,241.07967688935514,0.0,0.0,53.72031651405535,0.06204641700242064 +3,239.89379555329384,0.0,0.0,53.456063958454976,0.06174120799914817 +4,238.74985015186837,0.0,0.0,53.20115607973081,0.061446792002243455 +5,242.92899882711714,0.0,0.0,54.132405003283566,0.06252237499938929 +6,222.20890597794013,0.0,0.0,49.51530098016318,0.05718966700078454 +7,239.96163203488715,0.0,0.0,53.471180111377585,0.061758667001413414 +8,237.5137840474237,0.0,0.0,52.92572074142338,0.06112866699913866 +9,240.0446801289891,0.0,0.0,53.48968590149068,0.06178004100001999 +10,239.2075238922962,0.0,0.0,53.30314052949111,0.06156458300029044 +11,241.35311704054806,0.0,0.0,53.781247786484734,0.06211679199986975 +12,237.1938775091375,0.0,0.0,52.85443526139705,0.06104633299764828 +13,236.38327460023032,0.0,0.0,52.67380682603668,0.06083770899931551 +14,236.86118776917695,0.0,0.0,52.78030127232645,0.06096070899729966 +15,228.8396288104752,0.0,0.0,50.9928395843162,0.058896209000522504 +16,234.1374673466227,0.0,0.0,52.173368638753345,0.060259708003286505 +17,238.49162938758172,0.0,0.0,53.143616176878076,0.06138033400202403 +18,221.11886761338675,0.0,0.0,49.27240532544921,0.05690912499994738 +19,238.6339309293796,0.0,0.0,53.17532554352589,0.06141695799669833 +20,240.64174911522755,0.0,0.0,53.622732101549154,0.06193370800247067 +21,238.31677921354478,0.0,0.0,53.10465392666686,0.06133533300089766 +22,237.09123886601094,0.0,0.0,52.83156406600441,0.06101991700052167 +23,236.76323889711762,0.0,0.0,52.758475108972014,0.060935500001505716 +24,235.63175807428223,0.0,0.0,52.50634473980698,0.06064429199977894 +25,226.50542703780658,0.0,0.0,50.47270425124547,0.05829545800224878 +26,236.4643838585177,0.0,0.0,52.6918805810858,0.06085858400183497 +27,237.71679612865094,0.0,0.0,52.97095837157298,0.061180916000012076 +28,237.03425063747616,0.0,0.0,52.818865253255176,0.06100525000147172 +29,237.04752730136903,0.0,0.0,52.82182372157477,0.061008667002170114 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..11175a92c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..30dba74b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8db8c9d28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ac5fd460b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5d2fe63d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..96425c0ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..18963c45d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f75108902 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..50e4c0f83 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0a48a47d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..797574d07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..fcdde16e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..949fd08a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..229baeb42 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7f20d2f36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..31e6d8804 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..907bccad9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..220a7aca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..2786dc713 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..3ad51e0b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..1fbe73afb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.49558333300228696 +1,1562.7387326973612,1.9266414389721958,2.092731218193937,449.07354505974337,0.4933393750034156 +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927 +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056 +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994 +5,1567.5576911020446,1.932582550407452,2.0991844944080946,450.458336188937,0.4948606670004665 +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495 +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.49341350000031525 +8,1572.8194619481283,1.9390695885427023,2.1062307599687973,451.9703753018757,0.49652174999937415 +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045 +10,1561.3753115790362,1.9249605286764606,2.0909054018382247,448.68174805477713,0.49290895800004364 +11,1564.2604044990444,1.9285174505461702,2.0947689549035986,449.5108174816151,0.4938197500014212 +12,1566.0254582717266,1.9306935185409746,2.0971326149669207,450.018028916473,0.494376958002249 +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921 +14,1568.229238167961,1.933410475369152,2.1000837922113202,450.6513140778545,0.4950726669994765 +15,1568.8164427249465,1.9341344176436794,2.1008701433026173,450.82005503663623,0.49525804099903326 +16,1563.7106830354621,1.9278397197588861,2.0940327990484455,449.35284778311006,0.49364620900087175 +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454 +18,1560.7671180085995,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284 +19,1563.612085984862,1.9277181631867786,2.093900763461501,449.32451462279414,0.4936150829998951 +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719 +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155 +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.49572149999949033 +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.49431141700188164 +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.49365366699930746 +25,1556.033423900803,1.9183747175310144,2.0837518483526534,447.146686315548,0.49122258300121757 +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.49354441600007704 +27,1574.1810331293302,1.9407482181209725,2.1080540989934704,452.3616407030591,0.49695158299800823 +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807 +29,1607.7780546805436,1.9821687144536408,2.1530453277686097,462.0161870810133,0.5075577919997158 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..2183a3c06 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,245.16152554376833,0.0,0.0,54.62988385920401,0.0630969579979137 +1,241.02349681651853,0.0,0.0,53.7077977844241,0.06203195799753303 +2,241.07967688935514,0.0,0.0,53.72031651405535,0.06204641700242064 +3,239.89379555329384,0.0,0.0,53.456063958454976,0.06174120799914817 +4,238.74985015186837,0.0,0.0,53.20115607973081,0.061446792002243455 +5,242.92899882711714,0.0,0.0,54.132405003283566,0.06252237499938929 +6,222.20890597794013,0.0,0.0,49.51530098016318,0.05718966700078454 +7,239.96163203488715,0.0,0.0,53.471180111377585,0.061758667001413414 +8,237.5137840474237,0.0,0.0,52.92572074142338,0.06112866699913866 +9,240.0446801289891,0.0,0.0,53.48968590149068,0.06178004100001999 +10,239.2075238922962,0.0,0.0,53.30314052949111,0.06156458300029044 +11,241.35311704054806,0.0,0.0,53.781247786484734,0.06211679199986975 +12,237.1938775091375,0.0,0.0,52.85443526139705,0.06104633299764828 +13,236.38327460023032,0.0,0.0,52.67380682603668,0.06083770899931551 +14,236.86118776917695,0.0,0.0,52.78030127232645,0.06096070899729966 +15,228.8396288104752,0.0,0.0,50.9928395843162,0.058896209000522504 +16,234.1374673466227,0.0,0.0,52.173368638753345,0.060259708003286505 +17,238.49162938758172,0.0,0.0,53.143616176878076,0.06138033400202403 +18,221.11886761338675,0.0,0.0,49.27240532544921,0.05690912499994738 +19,238.6339309293796,0.0,0.0,53.17532554352589,0.06141695799669833 +20,240.64174911522755,0.0,0.0,53.622732101549154,0.06193370800247067 +21,238.31677921354478,0.0,0.0,53.10465392666686,0.06133533300089766 +22,237.09123886601094,0.0,0.0,52.83156406600441,0.06101991700052167 +23,236.76323889711762,0.0,0.0,52.758475108972014,0.060935500001505716 +24,235.63175807428223,0.0,0.0,52.50634473980698,0.06064429199977894 +25,226.50542703780658,0.0,0.0,50.47270425124547,0.05829545800224878 +26,236.4643838585177,0.0,0.0,52.6918805810858,0.06085858400183497 +27,237.71679612865094,0.0,0.0,52.97095837157298,0.061180916000012076 +28,237.03425063747616,0.0,0.0,52.818865253255176,0.06100525000147172 +29,237.04752730136903,0.0,0.0,52.82182372157477,0.061008667002170114 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d6d7d457e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..b08a13da2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fa3f8cd45 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..8d6042b49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3d8bc3ae9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d07df5763 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..724a752bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..044c08ce8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..7f7881eaa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..93e9609f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..831e18f12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f46dfab5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c2ae54bcc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3b136d345 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..0f0e63023 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..b30764fc9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9739d13ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..574fb1504 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3e3250cac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c7d58b820 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..0c950915c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667 +1,1498.8418894173947,1.2033252607887024,0.0,459.93765523479294,0.499227249998512 +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.49653783299800125 +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442 +4,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427 +5,1489.3145129999891,1.1956763334448297,0.0,457.01406522780155,0.4960539159983455 +6,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085 +7,1491.8328382512898,1.1976981373530124,0.0,457.78684361048477,0.4968927080008143 +8,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469 +9,1511.818683773937,1.2137435074120053,0.0,463.91974061081095,0.5035495000010997 +10,1488.9657450555078,1.195396329742831,0.0,456.90704159059317,0.4959377500017581 +11,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.49842474999968545 +12,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.49806674999854295 +13,1496.3713521590184,1.2013418228345636,0.0,459.17954117232205,0.49840437499733525 +14,1507.2595288744199,1.210083250584936,0.0,462.52070911246443,0.5020309579995228 +15,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.49363287500091246 +16,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439 +17,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.49784504199851654 +18,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462 +19,1489.0232905879304,1.1954425294075846,0.0,456.92470012912116,0.4959569169986935 +20,1493.38228955567,1.1989420937089745,0.0,458.26231137320804,0.49740879199816845 +21,1495.050954155259,1.2002817588722223,0.0,458.77436116893836,0.4979645830026129 +22,1482.5875601832554,1.1902756889141006,0.0,454.94981887383403,0.49381333400015137 +23,1491.5192214979224,1.1974463543169243,0.0,457.6906065389133,0.49678824999864446 +24,1491.4764383846693,1.197412006463908,0.0,457.6774780262048,0.4967739999992773 +25,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.49696533299720613 +26,1493.5562982454915,1.1990817942694787,0.0,458.31570803188964,0.4974667499991483 +27,1494.5570718752197,1.1998852520574455,0.0,458.622807453068,0.4978000830014935 +28,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.49669791699852794 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..d18adb892 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.061071500000252854 +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.05850374999863561 +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.06115416700049536 +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.06130016699898988 +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.059375167002144735 +5,234.91751197548186,0.5667089121020564,0.0,53.77067501297747,0.06065491600020323 +6,236.52417105423334,0.5705847747867131,0.0,54.138425984174596,0.061069750001479406 +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.06086074999984703 +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.057903084001736715 +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.06160016600188101 +10,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.062475124999764375 +11,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.06113079200076754 +12,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.06094329199913773 +13,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.06105000000025029 +14,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.06081658299808623 +15,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.06169633299941779 +16,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.06197374999828753 +17,236.88194099104118,0.5714478497016745,0.0,54.22031656287064,0.06116212500273832 +18,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.06100766599774943 +19,235.34757951947722,0.5677463958891886,0.0,53.8691139158389,0.06076595800186624 +20,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.06106862500018906 +21,238.75179866317842,0.5759586458456127,0.0,54.64831151464549,0.06164491600065958 +22,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.06167733400070574 +23,237.28021878254526,0.5724086447145267,0.0,54.31147905438421,0.06126495899661677 +24,236.24418678957838,0.5699093480094838,0.0,54.074339902311614,0.060997459000645904 +25,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.06109058299989556 +26,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.058789207996596815 +27,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.06209412500174949 +28,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.059740042001067195 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a026fa2c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3a6adb4fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b866c3bc1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9c5aa3010 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..47182c8af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7b5d55310 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..cf8640273 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0e3d65031 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e7795b324 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..6af8b49b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1f7ec84c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4efb1fc38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..89e2dcbb4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6470030df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f2fb415b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0251f4153 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b6975a40b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c89e1d06e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667 +1,1498.8418894173947,1.2033252607887024,0.0,459.93765523479294,0.499227249998512 +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.49653783299800125 +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442 +4,1524.1527316288148,1.2236457335616362,0.0,467.70459149466984,0.5076576670035138 +5,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427 +6,1489.3145129999891,1.1956763334448297,0.0,457.01406522780155,0.4960539159983455 +7,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085 +8,1491.8328382512898,1.1976981373530124,0.0,457.78684361048477,0.4968927080008143 +9,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469 +10,1511.818683773937,1.2137435074120053,0.0,463.91974061081095,0.5035495000010997 +11,1488.9657450555078,1.195396329742831,0.0,456.90704159059317,0.4959377500017581 +12,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.49842474999968545 +13,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.49806674999854295 +14,1496.3713521590184,1.2013418228345636,0.0,459.17954117232205,0.49840437499733525 +15,1507.2595288744199,1.210083250584936,0.0,462.52070911246443,0.5020309579995228 +16,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.49363287500091246 +17,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439 +18,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.49784504199851654 +19,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462 +20,1489.0232905879304,1.1954425294075846,0.0,456.92470012912116,0.4959569169986935 +21,1493.38228955567,1.1989420937089745,0.0,458.26231137320804,0.49740879199816845 +22,1495.050954155259,1.2002817588722223,0.0,458.77436116893836,0.4979645830026129 +23,1482.5875601832554,1.1902756889141006,0.0,454.94981887383403,0.49381333400015137 +24,1491.5192214979224,1.1974463543169243,0.0,457.6906065389133,0.49678824999864446 +25,1491.4764383846693,1.197412006463908,0.0,457.6774780262048,0.4967739999992773 +26,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.49696533299720613 +27,1493.5562982454915,1.1990817942694787,0.0,458.31570803188964,0.4974667499991483 +28,1494.5570718752197,1.1998852520574455,0.0,458.622807453068,0.4978000830014935 +29,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.49669791699852794 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..0278a0e74 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.061071500000252854 +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.05850374999863561 +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.06115416700049536 +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.06130016699898988 +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.059375167002144735 +5,234.91751197548186,0.5667089121020564,0.0,53.77067501297747,0.06065491600020323 +6,236.52417105423334,0.5705847747867131,0.0,54.138425984174596,0.061069750001479406 +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.06086074999984703 +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.057903084001736715 +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.06160016600188101 +10,211.58113691439135,0.5104128462529662,0.0,48.42917182388438,0.05462954199902015 +11,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.062475124999764375 +12,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.06113079200076754 +13,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.06094329199913773 +14,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.06105000000025029 +15,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.06081658299808623 +16,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.06169633299941779 +17,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.06197374999828753 +18,236.88194099104118,0.5714478497016745,0.0,54.22031656287064,0.06116212500273832 +19,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.06100766599774943 +20,235.34757951947722,0.5677463958891886,0.0,53.8691139158389,0.06076595800186624 +21,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.06106862500018906 +22,238.75179866317842,0.5759586458456127,0.0,54.64831151464549,0.06164491600065958 +23,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.06167733400070574 +24,237.28021878254526,0.5724086447145267,0.0,54.31147905438421,0.06126495899661677 +25,236.24418678957838,0.5699093480094838,0.0,54.074339902311614,0.060997459000645904 +26,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.06109058299989556 +27,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.058789207996596815 +28,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.06209412500174949 +29,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.059740042001067195 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..259fc1ed4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..00743378f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..866b2694e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d4e287dd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a90a9e9e8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9f6ad94ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0f42c5ea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..082c9d74f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..18acae4e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7747f5aa2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..99e7ae725 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bd3331ff8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b8e7657c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d414204a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3427dcb0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bb662958c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cc56cd8f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..fd39e7ab1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734 +1,1498.847619915133,2.2333049533939846,0.0,456.12753704840725,0.49712779100082116 +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.49644037499820115 +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377 +4,1497.8009093110907,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296 +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.49620887499986566 +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006 +7,1487.4342846121733,2.216298916270418,0.0,452.654244332006,0.49334229200030677 +8,1508.8235499563523,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729 +9,1496.828313791734,2.2302961576312366,0.0,455.5130241944155,0.4964580410014605 +10,1497.5461405556873,2.231365730045613,0.0,455.73147238722646,0.49669612499928917 +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964 +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341 +13,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.49602900000172667 +14,1494.2857789928514,2.2265077434621947,0.0,454.73928300801003,0.4956147500015504 +15,1492.916332152243,2.224467247569281,0.0,454.32253456325435,0.49516054099876783 +16,1501.7675380811675,2.2376556743192237,0.0,457.01612309528747,0.4980962500012538 +17,1493.4925798730521,2.22532586513131,0.0,454.4978975889082,0.4953516670029785 +18,1494.3088951118593,2.226542186818809,0.0,454.74631767803857,0.4956224170018686 +19,1491.9323097299355,2.223001039716801,0.0,454.0230780221598,0.49483416699877125 +20,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469 +21,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.49627999999938766 +22,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.49681300000156625 +23,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199 +24,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731 +25,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.49557904199900804 +26,1494.5827579360664,2.2269502464465694,0.0,454.82965928917696,0.4957132499985164 +27,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.49498762499933946 +28,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.49409825000111596 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1be29f3ea --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,250.10934507332675,0.0,0.0,55.11416653061159,0.06355237499883515 +1,239.83888139782601,0.0,0.0,52.85096422926539,0.06094266699801665 +2,241.89828862855623,0.0,0.0,53.304775793305645,0.06146595900281682 +3,226.9506637505054,0.0,0.0,50.01091291695259,0.057667791999847395 +4,240.77109914478746,0.0,0.0,53.05638799755266,0.061179542000900256 +5,241.309764565714,0.0,0.0,53.17508846316111,0.061316416002227925 +6,232.60595403074322,0.0,0.0,51.257114294164616,0.059104791998834116 +7,229.17355489939848,0.0,0.0,50.50074984377193,0.05823262500052806 +8,237.46430883475074,0.0,0.0,52.32770274280641,0.060339291998388944 +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362 +10,246.9017604503701,0.0,0.0,54.40734226933166,0.06273733299894957 +11,227.72021219973772,0.0,0.0,50.18049083245163,0.05786333300056867 +12,241.19055480567744,0.0,0.0,53.1488193664794,0.06128612499742303 +13,239.55814760206837,0.0,0.0,52.789101650057795,0.06087133300025016 +14,237.7916072840164,0.0,0.0,52.3998263223262,0.06042245799835655 +15,240.87981688341813,0.0,0.0,53.08034506940843,0.061207167000247864 +16,240.89932900283105,0.0,0.0,53.084644765600814,0.061212124997837236 +17,240.4998774005804,0.0,0.0,52.99662149673451,0.061110624999855645 +18,241.5399942998725,0.0,0.0,53.225821952967294,0.061374917000648566 +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666 +20,241.08921611249076,0.0,0.0,53.12648834317978,0.06126037500143866 +21,240.12551449843392,0.0,0.0,52.914126780970356,0.061015499999484746 +22,242.95922422123854,0.0,0.0,53.538563862744645,0.061735540999507066 +23,240.68271211186973,0.0,0.0,53.03691100579953,0.061157083000580315 +24,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842094 +25,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115 +26,241.06396210591663,0.0,0.0,53.120923363096836,0.06125395799972466 +27,240.81127256853605,0.0,0.0,53.06524062465436,0.06118975000208593 +28,238.5282000000232,0.0,0.0,52.562142103063344,0.060609625001234235 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4e98b42d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4a8eb7613 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..03dc2d3f3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6f0bdd533 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0d50be341 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8f65d6daf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..25a0afdcd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..59e083dd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8a1f96ef2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..eee064faf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..96a279981 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3939acb28 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ebf81cb2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..372500b13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..bd17a9cda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bc152242d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..822a66410 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..8b9577ffb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734 +1,1498.847619915133,2.2333049533939846,0.0,456.12753704840725,0.49712779100082116 +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.49644037499820115 +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377 +4,1497.8009093110907,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296 +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.49620887499986566 +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006 +7,1487.4342846121733,2.216298916270418,0.0,452.654244332006,0.49334229200030677 +8,1508.8235499563523,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729 +9,1496.828313791734,2.2302961576312366,0.0,455.5130241944155,0.4964580410014605 +10,1497.5461405556873,2.231365730045613,0.0,455.73147238722646,0.49669612499928917 +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964 +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341 +13,1547.3486576230418,2.3055722114651913,0.0,470.88731554760716,0.5132142920010665 +14,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.49602900000172667 +15,1494.2857789928514,2.2265077434621947,0.0,454.73928300801003,0.4956147500015504 +16,1492.916332152243,2.224467247569281,0.0,454.32253456325435,0.49516054099876783 +17,1501.7675380811675,2.2376556743192237,0.0,457.01612309528747,0.4980962500012538 +18,1493.4925798730521,2.22532586513131,0.0,454.4978975889082,0.4953516670029785 +19,1494.3088951118593,2.226542186818809,0.0,454.74631767803857,0.4956224170018686 +20,1491.9323097299355,2.223001039716801,0.0,454.0230780221598,0.49483416699877125 +21,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469 +22,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.49627999999938766 +23,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.49681300000156625 +24,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199 +25,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731 +26,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.49557904199900804 +27,1494.5827579360664,2.2269502464465694,0.0,454.82965928917696,0.4957132499985164 +28,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.49498762499933946 +29,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.49409825000111596 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..853c612b9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,250.10934507332675,0.0,0.0,55.11416653061159,0.06355237499883515 +1,239.83888139782601,0.0,0.0,52.85096422926539,0.06094266699801665 +2,241.89828862855623,0.0,0.0,53.304775793305645,0.06146595900281682 +3,226.9506637505054,0.0,0.0,50.01091291695259,0.057667791999847395 +4,240.77109914478746,0.0,0.0,53.05638799755266,0.061179542000900256 +5,241.309764565714,0.0,0.0,53.17508846316111,0.061316416002227925 +6,232.60595403074322,0.0,0.0,51.257114294164616,0.059104791998834116 +7,229.17355489939848,0.0,0.0,50.50074984377193,0.05823262500052806 +8,237.46430883475074,0.0,0.0,52.32770274280641,0.060339291998388944 +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362 +10,246.9017604503701,0.0,0.0,54.40734226933166,0.06273733299894957 +11,227.72021219973772,0.0,0.0,50.18049083245163,0.05786333300056867 +12,241.19055480567744,0.0,0.0,53.1488193664794,0.06128612499742303 +13,239.55814760206837,0.0,0.0,52.789101650057795,0.06087133300025016 +14,237.7916072840164,0.0,0.0,52.3998263223262,0.06042245799835655 +15,240.87981688341813,0.0,0.0,53.08034506940843,0.061207167000247864 +16,240.89932900283105,0.0,0.0,53.084644765600814,0.061212124997837236 +17,240.4998774005804,0.0,0.0,52.99662149673451,0.061110624999855645 +18,241.5399942998725,0.0,0.0,53.225821952967294,0.061374917000648566 +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666 +20,241.08921611249076,0.0,0.0,53.12648834317978,0.06126037500143866 +21,240.12551449843392,0.0,0.0,52.914126780970356,0.061015499999484746 +22,242.95922422123854,0.0,0.0,53.538563862744645,0.061735540999507066 +23,218.386555036205,0.0,0.0,48.123723480956784,0.055491666000307305 +24,240.68271211186973,0.0,0.0,53.03691100579953,0.061157083000580315 +25,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842094 +26,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115 +27,241.06396210591663,0.0,0.0,53.120923363096836,0.06125395799972466 +28,240.81127256853605,0.0,0.0,53.06524062465436,0.06118975000208593 +29,238.5282000000232,0.0,0.0,52.562142103063344,0.060609625001234235 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..df2b673d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..59dbaade2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..35fd58f11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d126568cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4bb9c425d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..cfb2e51b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..f73e5b87d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..53343d4ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8c9514aa9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d59b372dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..00de1ec54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ff66573af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f101b2d23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f47cc92b7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7c3959b54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..504b5ab2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..65bd64981 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..de30cc656 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1540.449502109736,0.9411635876644179,0.0,464.2625526007479,0.5018101659989043 +1,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.49943987499864306 +2,1530.7264696366958,0.9352231370928339,0.0,461.33221319736504,0.49864283300121315 +3,1527.4287557774683,0.9332083432274131,0.0,460.3383441663225,0.4975685839999642 +4,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.49737733299843967 +5,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467 +6,1528.0593388059153,0.93359360855715,0.0,460.52839004969127,0.497773999999481 +7,1545.3676850578215,0.944168434432761,0.0,465.74480058518907,0.5034122920005757 +8,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942 +9,1528.570586995457,0.9339059642556633,0.0,460.68247065354365,0.4979405419981049 +10,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875 +11,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752 +12,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.49640124999859836 +13,1528.2171779672315,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772 +14,1519.295356383413,0.9282391057787769,0.0,457.88709032201666,0.4949190829975123 +15,1522.767283641807,0.9303603382567935,0.0,458.9334640001012,0.49605008300204645 +16,1521.8159080349367,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944 +17,1523.6480572437645,0.9308984617343911,0.0,459.19891262412176,0.4963370000004943 +18,1522.5087831425037,0.930202403019706,0.0,458.8555568038635,0.495965874997637 +19,1523.1306694814207,0.9305823549603914,0.0,459.0429816683188,0.49616845800119336 +20,1519.5053818912152,0.9283674244027587,0.0,457.9503880661037,0.49498749999838765 +21,1526.9093204634178,0.9328909854671867,0.0,460.1817961168851,0.4973993749990768 +22,1529.5480557755704,0.9345031652821569,0.0,460.97706138846974,0.4982589579994965 +23,1524.9894245219973,0.9317179926818373,0.0,459.6031755329121,0.49677395800244994 +24,1540.853307819904,0.9414102995692097,0.0,464.38425205892594,0.5019417080002313 +25,1520.174211377246,0.9287760570504023,0.0,458.151960713577,0.49520537499847705 +26,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.49720795800021733 +27,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.49522208299822523 +28,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.49545483399924706 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..09cec32de --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057 +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.06115074999979697 +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.06148337500053458 +3,232.13575724922018,0.7657034323778565,0.0,52.259259259788706,0.05850862499937648 +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.06187041599696386 +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.05666045899852179 +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.06219520899685449 +7,244.08766522209842,0.8051269880882851,0.0,54.949916937025456,0.061521042000094894 +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702 +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.05990262500199606 +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.06064383299963083 +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.06117733399878489 +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.05756854099672637 +13,243.28010263868015,0.8024632302540302,0.0,54.768115464837564,0.06131749999985914 +14,241.72548654155145,0.7973353047000047,0.0,54.418134545775324,0.0609256669995375 +15,242.03363405863686,0.7983517341131507,0.0,54.48750585322254,0.06100333399808733 +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.062142874998244224 +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.06132245800108649 +18,250.56832102039974,0.8265035327775692,0.0,56.4088661120691,0.06315445799918962 +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.06168795899793622 +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.06142383400219842 +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.060837917000753805 +22,249.01370493770486,0.821375607271154,0.0,56.05888519625626,0.06276262500250596 +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.06163012499746401 +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.06074612500015064 +25,242.13265613002582,0.7986783599671,0.0,54.50979806775457,0.061028292002447415 +26,233.01622352722862,0.7686076641909685,0.0,52.4574730810336,0.05873054200128536 +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.06299595800010138 +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.062229082999692764 +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.06321712499993737 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..9b9ca24c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..a61461dfe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1187485a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..0ed452917 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e5d74773d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f67ad8b46 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..be6993bc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..2964345a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ba64524ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b0bae7cb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..287d06f9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4eae541ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d9fb943cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ab1943166 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..0bfc81605 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..97b8c67c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ded90d56f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..44ba75416 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1554.8732723619028,0.9499760332133207,0.0,468.60960609794233,0.5065087910006696 +1,1540.449502109736,0.9411635876644179,0.0,464.2625526007479,0.5018101659989043 +2,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.49943987499864306 +3,1530.7264696366958,0.9352231370928339,0.0,461.33221319736504,0.49864283300121315 +4,1527.4287557774683,0.9332083432274131,0.0,460.3383441663225,0.4975685839999642 +5,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.49737733299843967 +6,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467 +7,1528.0593388059153,0.93359360855715,0.0,460.52839004969127,0.497773999999481 +8,1545.3676850578215,0.944168434432761,0.0,465.74480058518907,0.5034122920005757 +9,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942 +10,1528.570586995457,0.9339059642556633,0.0,460.68247065354365,0.4979405419981049 +11,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875 +12,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752 +13,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.49640124999859836 +14,1528.2171779672315,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772 +15,1519.295356383413,0.9282391057787769,0.0,457.88709032201666,0.4949190829975123 +16,1522.767283641807,0.9303603382567935,0.0,458.9334640001012,0.49605008300204645 +17,1521.8159080349367,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944 +18,1523.6480572437645,0.9308984617343911,0.0,459.19891262412176,0.4963370000004943 +19,1522.5087831425037,0.930202403019706,0.0,458.8555568038635,0.495965874997637 +20,1523.1306694814207,0.9305823549603914,0.0,459.0429816683188,0.49616845800119336 +21,1519.5053818912152,0.9283674244027587,0.0,457.9503880661037,0.49498749999838765 +22,1526.9093204634178,0.9328909854671867,0.0,460.1817961168851,0.4973993749990768 +23,1529.5480557755704,0.9345031652821569,0.0,460.97706138846974,0.4982589579994965 +24,1524.9894245219973,0.9317179926818373,0.0,459.6031755329121,0.49677395800244994 +25,1540.853307819904,0.9414102995692097,0.0,464.38425205892594,0.5019417080002313 +26,1520.174211377246,0.9287760570504023,0.0,458.151960713577,0.49520537499847705 +27,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.49720795800021733 +28,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.49522208299822523 +29,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.49545483399924706 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..09cec32de --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057 +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.06115074999979697 +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.06148337500053458 +3,232.13575724922018,0.7657034323778565,0.0,52.259259259788706,0.05850862499937648 +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.06187041599696386 +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.05666045899852179 +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.06219520899685449 +7,244.08766522209842,0.8051269880882851,0.0,54.949916937025456,0.061521042000094894 +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702 +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.05990262500199606 +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.06064383299963083 +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.06117733399878489 +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.05756854099672637 +13,243.28010263868015,0.8024632302540302,0.0,54.768115464837564,0.06131749999985914 +14,241.72548654155145,0.7973353047000047,0.0,54.418134545775324,0.0609256669995375 +15,242.03363405863686,0.7983517341131507,0.0,54.48750585322254,0.06100333399808733 +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.062142874998244224 +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.06132245800108649 +18,250.56832102039974,0.8265035327775692,0.0,56.4088661120691,0.06315445799918962 +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.06168795899793622 +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.06142383400219842 +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.060837917000753805 +22,249.01370493770486,0.821375607271154,0.0,56.05888519625626,0.06276262500250596 +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.06163012499746401 +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.06074612500015064 +25,242.13265613002582,0.7986783599671,0.0,54.50979806775457,0.061028292002447415 +26,233.01622352722862,0.7686076641909685,0.0,52.4574730810336,0.05873054200128536 +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.06299595800010138 +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.062229082999692764 +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.06321712499993737 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..14b4c9828 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..260306a18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ce25cae95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9ef11a157 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d49995bda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..df71a0671 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..840d55e84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..48593610d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b5e83b00e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a840c20b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..10d9a0042 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..54b867667 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..502ebeaca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7682535cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1081b3c63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4df087e06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e62bfe562 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..9c5abc0e5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566 +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745 +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915 +3,2787.134152130027,3.8928297660070923,84.81750278308672,513.8535291129361,0.5036684170008812 +4,2786.4908576217686,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919 +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812 +6,2781.0252087558233,3.8842973182281515,84.6315966539371,512.7272460061159,0.5025644579982327 +7,2806.3717189238073,3.9196991481583403,85.40293652470417,517.4002875569009,0.5071448749986303 +8,2787.611657926017,3.8934967051189573,84.83203414288847,513.9415650757024,0.5037547079991782 +9,2778.4739606086464,3.8807339537879395,84.5539575863457,512.256881900008,0.5021034169985796 +10,2803.5843657274604,3.9158060124501715,85.3181123560118,516.8863936434227,0.5066411669977242 +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174 +12,2812.886462833527,3.9287983832957267,85.60119189367214,518.6013865950359,0.5083221670029161 +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987 +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392 +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828 +16,2785.3977311460985,3.8904044822124852,84.7646603709178,513.5333916520481,0.5033546249978826 +17,2790.556261375991,3.8976094744847187,84.92164371949332,514.4844506319829,0.5042868329983321 +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193 +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849 +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448 +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673 +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759 +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572 +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778 +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124 +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425 +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436 +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288 +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..e683e603d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.80027211049406,0.31168782188967337,10.909073766138567,64.90033091347199,0.06462912500137463 +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.06271966599888401 +2,365.138799454798,0.3012420199003742,10.543470696513097,62.72528281036681,0.06246316600299906 +3,372.9749204140684,0.30770687356555276,10.769740574794348,64.07140900687176,0.06380366699886508 +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.05742570899747079 +5,353.0611685087077,0.29127789133544496,10.194726196740575,60.65052981806932,0.060397083001589635 +6,358.20146127741265,0.29551866820943384,10.343153387330185,61.533553802719894,0.0612764170000446 +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.06271974999981467 +8,370.3431490069413,0.30553564406109374,10.693747542138281,63.61931077449885,0.06335345799743664 +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.965089716961444,0.06369779199667391 +10,376.00955173580917,0.3102104652692531,10.85736628442386,64.59271243495337,0.06432279200089397 +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.06315441600236227 +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.060236499997699866 +13,356.8106779834024,0.29437126243016054,10.302994185055619,61.29463842156898,0.06103849999999511 +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.06374974999926053 +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.06526858299912419 +16,368.50737025878874,0.3040211139727838,10.640738989047433,63.30395195388854,0.06303941700025462 +17,375.27104536938856,0.30960119243968254,10.83604173538889,64.46584829244057,0.06419645799905993 +18,361.6927852373143,0.29839903447940497,10.443966206779173,62.133310068267214,0.06187366700032726 +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.06026966699937475 +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.059603415997116826 +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.06103745799919125 +22,365.37117048424915,0.3014337275972355,10.550180465903242,62.76520061302437,0.06250291699689114 +23,360.55117343559215,0.29745719689433764,10.411001891301817,61.93719855333208,0.061678374997427454 +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.05906512499859673 +25,363.9940309949737,0.30029757805067037,10.510415231773463,62.52862902966181,0.062267334000353 +26,358.9745505884595,0.2961564722060808,10.365476527212829,61.66635876824394,0.06140866699934122 +27,374.9619557919834,0.30934619141331476,10.827116699466018,64.41275141206133,0.06414358300025924 +28,361.38807990018444,0.2981476504814062,10.435167766849217,62.080966333572796,0.06182154199996148 +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.06300491699948907 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6366528a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..48a2a0e32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8cda25b2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..483ca3ca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..82d5cab36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..803030894 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ec5a1e8b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..df65b3b8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..99d8f32fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d886ad578 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..78ed39e6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3223a830b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f21dd9f48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a68bfbea6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..411af7391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..107df9ca4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..95286b69b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2ba2b6103 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a784b4732 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f284279a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9c5abc0e5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566 +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745 +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915 +3,2787.134152130027,3.8928297660070923,84.81750278308672,513.8535291129361,0.5036684170008812 +4,2786.4908576217686,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919 +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812 +6,2781.0252087558233,3.8842973182281515,84.6315966539371,512.7272460061159,0.5025644579982327 +7,2806.3717189238073,3.9196991481583403,85.40293652470417,517.4002875569009,0.5071448749986303 +8,2787.611657926017,3.8934967051189573,84.83203414288847,513.9415650757024,0.5037547079991782 +9,2778.4739606086464,3.8807339537879395,84.5539575863457,512.256881900008,0.5021034169985796 +10,2803.5843657274604,3.9158060124501715,85.3181123560118,516.8863936434227,0.5066411669977242 +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174 +12,2812.886462833527,3.9287983832957267,85.60119189367214,518.6013865950359,0.5083221670029161 +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987 +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392 +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828 +16,2785.3977311460985,3.8904044822124852,84.7646603709178,513.5333916520481,0.5033546249978826 +17,2790.556261375991,3.8976094744847187,84.92164371949332,514.4844506319829,0.5042868329983321 +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193 +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849 +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448 +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673 +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759 +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572 +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778 +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124 +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425 +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436 +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288 +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e683e603d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,377.80027211049406,0.31168782188967337,10.909073766138567,64.90033091347199,0.06462912500137463 +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.06271966599888401 +2,365.138799454798,0.3012420199003742,10.543470696513097,62.72528281036681,0.06246316600299906 +3,372.9749204140684,0.30770687356555276,10.769740574794348,64.07140900687176,0.06380366699886508 +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.05742570899747079 +5,353.0611685087077,0.29127789133544496,10.194726196740575,60.65052981806932,0.060397083001589635 +6,358.20146127741265,0.29551866820943384,10.343153387330185,61.533553802719894,0.0612764170000446 +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.06271974999981467 +8,370.3431490069413,0.30553564406109374,10.693747542138281,63.61931077449885,0.06335345799743664 +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.965089716961444,0.06369779199667391 +10,376.00955173580917,0.3102104652692531,10.85736628442386,64.59271243495337,0.06432279200089397 +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.06315441600236227 +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.060236499997699866 +13,356.8106779834024,0.29437126243016054,10.302994185055619,61.29463842156898,0.06103849999999511 +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.06374974999926053 +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.06526858299912419 +16,368.50737025878874,0.3040211139727838,10.640738989047433,63.30395195388854,0.06303941700025462 +17,375.27104536938856,0.30960119243968254,10.83604173538889,64.46584829244057,0.06419645799905993 +18,361.6927852373143,0.29839903447940497,10.443966206779173,62.133310068267214,0.06187366700032726 +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.06026966699937475 +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.059603415997116826 +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.06103745799919125 +22,365.37117048424915,0.3014337275972355,10.550180465903242,62.76520061302437,0.06250291699689114 +23,360.55117343559215,0.29745719689433764,10.411001891301817,61.93719855333208,0.061678374997427454 +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.05906512499859673 +25,363.9940309949737,0.30029757805067037,10.510415231773463,62.52862902966181,0.062267334000353 +26,358.9745505884595,0.2961564722060808,10.365476527212829,61.66635876824394,0.06140866699934122 +27,374.9619557919834,0.30934619141331476,10.827116699466018,64.41275141206133,0.06414358300025924 +28,361.38807990018444,0.2981476504814062,10.435167766849217,62.080966333572796,0.06182154199996148 +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.06300491699948907 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6366528a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..48a2a0e32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8cda25b2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..483ca3ca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..82d5cab36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..803030894 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..ec5a1e8b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..df65b3b8c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..99d8f32fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d886ad578 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..78ed39e6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3223a830b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f21dd9f48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a68bfbea6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..411af7391 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..107df9ca4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..95286b69b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2ba2b6103 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a784b4732 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f284279a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..4e0dd6257 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1521.3288350694506,1.7571209502823384,0.0,461.51457574915725,0.503729125000973 +1,1495.5083368471767,1.7272985099740834,0.0,453.6815971005006,0.495179667002958 +2,1500.0214208877321,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655 +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.49421116699886625 +4,1500.8048946803585,1.7334159860374627,0.0,455.2883757173012,0.49693341700185556 +5,1504.431192242494,1.7376043266982741,0.0,456.3884595008659,0.4981341249986144 +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176 +7,1501.5407983498537,1.7342659480741058,0.0,455.51162151531037,0.49717708300158847 +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.49678216699976474 +9,1494.8181096605138,1.7265013038591515,0.0,453.47220784823634,0.4949511250015348 +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753 +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.49758216699774493 +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215 +13,1495.3773385798581,1.727147208168287,0.0,453.6418570992782,0.49513629200009746 +14,1493.8437393132476,1.7253759149813175,0.0,453.1766201310545,0.4946284999969066 +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.49867483300113236 +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988 +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807 +18,1510.2273283587142,1.7442988111290731,0.0,458.14679158463235,0.5000532909980393 +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.49800924999726703 +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538 +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508 +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381 +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588 +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561 +25,1492.5965513345484,1.7239354242236353,0.0,452.79826969320027,0.49421554199943785 +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.49469412499820464 +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.49353537500064704 +28,1487.032962421571,1.7175095296948535,0.0,451.1104837802367,0.4923733750001702 +29,1498.2415539693545,1.7304553508597227,0.0,454.51075350080947,0.4960846659996605 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..024a21142 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,240.42885516643568,0.0,0.0,53.417286003417956,0.06196875000023283 +1,228.54878409089892,0.0,0.0,50.77783095987262,0.058906750000460306 +2,213.1201140526296,0.0,0.0,47.34996586640836,0.05493012499937322 +3,237.0842698478049,0.0,0.0,52.67420268921069,0.061106707998987986 +4,238.04340130189988,0.0,0.0,52.88729774039662,0.06135391700081527 +5,237.97744402226846,0.0,0.0,52.872643680393544,0.06133691700233612 +6,233.25082854773103,0.0,0.0,51.82250778694279,0.06011866700282553 +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123074 +8,239.07317300806952,0.0,0.0,53.11608729108766,0.06161933300245437 +9,234.15515335358452,0.0,0.0,52.02342616989155,0.060351749998517334 +10,235.7027246756318,0.0,0.0,52.3672578612385,0.06075062500167405 +11,231.79378555125,0.0,0.0,51.49878922825138,0.059743125002569286 +12,238.1722430460066,0.0,0.0,52.91592315763018,0.06138712500251131 +13,238.89534827385802,0.0,0.0,53.076579076987144,0.0615734999992128 +14,245.18230748969597,0.0,0.0,54.473384374303734,0.06319391699798871 +15,239.73953556253844,0.0,0.0,53.26413640578063,0.061791082996933255 +16,237.05193913270705,0.0,0.0,52.6670196118971,0.06109837499752757 +17,238.06603239878575,0.0,0.0,52.89232580482793,0.06135974999779137 +18,238.4611281800858,0.0,0.0,52.98010621843028,0.06146158299816307 +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632 +20,236.73621713579013,0.0,0.0,52.59687407052601,0.06101699999999255 +21,239.5788481011822,0.0,0.0,53.22843566564073,0.06174966699836659 +22,240.51291579071102,0.0,0.0,53.43596217440181,0.06199041600120836 +23,237.5108932275132,0.0,0.0,52.76898774765905,0.061216667003463954 +24,237.61047320422924,0.0,0.0,52.79111193110106,0.06124233300215565 +25,235.96202604191544,0.0,0.0,52.42486814780024,0.060817458001110936 +26,250.03841264717278,0.0,0.0,55.55228964081196,0.06444554200061248 +27,216.35622292125154,0.0,0.0,48.068948423030825,0.055764208002074156 +28,237.4518847231131,0.0,0.0,52.75587753194059,0.06120145800014143 +29,235.66344128962422,0.0,0.0,52.35853007411787,0.06074050000097486 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..93f72a02b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..07b812b8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bffaea311 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c9db4aab4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..86ad73d2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..60eb2b58a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..68293fb5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..36a2a22df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1af4960cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f7dc4b9e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..38d20a85c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..884948ab6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c3ac6af02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..92cf8d4a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..cfe8770f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f3e845b51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b947c472d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..4e0dd6257 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1521.3288350694506,1.7571209502823384,0.0,461.51457574915725,0.503729125000973 +1,1495.5083368471767,1.7272985099740834,0.0,453.6815971005006,0.495179667002958 +2,1500.0214208877321,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655 +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.49421116699886625 +4,1500.8048946803585,1.7334159860374627,0.0,455.2883757173012,0.49693341700185556 +5,1504.431192242494,1.7376043266982741,0.0,456.3884595008659,0.4981341249986144 +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176 +7,1501.5407983498537,1.7342659480741058,0.0,455.51162151531037,0.49717708300158847 +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.49678216699976474 +9,1494.8181096605138,1.7265013038591515,0.0,453.47220784823634,0.4949511250015348 +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753 +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.49758216699774493 +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215 +13,1495.3773385798581,1.727147208168287,0.0,453.6418570992782,0.49513629200009746 +14,1493.8437393132476,1.7253759149813175,0.0,453.1766201310545,0.4946284999969066 +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.49867483300113236 +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988 +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807 +18,1510.2273283587142,1.7442988111290731,0.0,458.14679158463235,0.5000532909980393 +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.49800924999726703 +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538 +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508 +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381 +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588 +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561 +25,1492.5965513345484,1.7239354242236353,0.0,452.79826969320027,0.49421554199943785 +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.49469412499820464 +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.49353537500064704 +28,1487.032962421571,1.7175095296948535,0.0,451.1104837802367,0.4923733750001702 +29,1498.2415539693545,1.7304553508597227,0.0,454.51075350080947,0.4960846659996605 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..024a21142 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,240.42885516643568,0.0,0.0,53.417286003417956,0.06196875000023283 +1,228.54878409089892,0.0,0.0,50.77783095987262,0.058906750000460306 +2,213.1201140526296,0.0,0.0,47.34996586640836,0.05493012499937322 +3,237.0842698478049,0.0,0.0,52.67420268921069,0.061106707998987986 +4,238.04340130189988,0.0,0.0,52.88729774039662,0.06135391700081527 +5,237.97744402226846,0.0,0.0,52.872643680393544,0.06133691700233612 +6,233.25082854773103,0.0,0.0,51.82250778694279,0.06011866700282553 +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123074 +8,239.07317300806952,0.0,0.0,53.11608729108766,0.06161933300245437 +9,234.15515335358452,0.0,0.0,52.02342616989155,0.060351749998517334 +10,235.7027246756318,0.0,0.0,52.3672578612385,0.06075062500167405 +11,231.79378555125,0.0,0.0,51.49878922825138,0.059743125002569286 +12,238.1722430460066,0.0,0.0,52.91592315763018,0.06138712500251131 +13,238.89534827385802,0.0,0.0,53.076579076987144,0.0615734999992128 +14,245.18230748969597,0.0,0.0,54.473384374303734,0.06319391699798871 +15,239.73953556253844,0.0,0.0,53.26413640578063,0.061791082996933255 +16,237.05193913270705,0.0,0.0,52.6670196118971,0.06109837499752757 +17,238.06603239878575,0.0,0.0,52.89232580482793,0.06135974999779137 +18,238.4611281800858,0.0,0.0,52.98010621843028,0.06146158299816307 +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632 +20,236.73621713579013,0.0,0.0,52.59687407052601,0.06101699999999255 +21,239.5788481011822,0.0,0.0,53.22843566564073,0.06174966699836659 +22,240.51291579071102,0.0,0.0,53.43596217440181,0.06199041600120836 +23,237.5108932275132,0.0,0.0,52.76898774765905,0.061216667003463954 +24,237.61047320422924,0.0,0.0,52.79111193110106,0.06124233300215565 +25,235.96202604191544,0.0,0.0,52.42486814780024,0.060817458001110936 +26,250.03841264717278,0.0,0.0,55.55228964081196,0.06444554200061248 +27,216.35622292125154,0.0,0.0,48.068948423030825,0.055764208002074156 +28,237.4518847231131,0.0,0.0,52.75587753194059,0.06120145800014143 +29,235.66344128962422,0.0,0.0,52.35853007411787,0.06074050000097486 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..93f72a02b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..07b812b8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bffaea311 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c9db4aab4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..86ad73d2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..60eb2b58a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..68293fb5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..36a2a22df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1af4960cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f7dc4b9e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..38d20a85c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..884948ab6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c3ac6af02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..92cf8d4a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cfe8770f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f3e845b51 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b947c472d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..60d14ccb9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292 +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295 +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367 +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.96580282119965,0.5026861250007642 +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364 +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283 +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152 +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727 +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829 +9,2374.2174260842758,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384 +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447 +11,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732 +12,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935 +13,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878 +14,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826 +15,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144 +16,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896 +17,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942 +18,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896 +19,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372 +20,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246 +21,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155 +22,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018 +23,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907 +24,2359.7523495532514,3.489381431713207,86.53665950648752,499.64618881721964,0.5033715839999786 +25,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014 +26,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501 +27,2369.1011810593163,3.503205610793547,86.87949914767998,501.62567960267603,0.5053658340002585 +28,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.49847700000100303 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8dfe9409e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452057 +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.06339949999892269 +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.06330708300083643 +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.06251700000211713 +4,341.2276327610607,1.1792449629834103,10.514934253268743,61.61554931588319,0.06130775000201538 +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.062329499996849336 +6,346.9583356729764,1.1990496384973743,10.691525943268255,62.65034361148781,0.06233737500224379 +7,349.52325272198976,1.2079137081685354,10.770563897836107,63.11349125180597,0.06279820899726474 +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.06303625000145985 +9,349.6454613517626,1.208336047678166,10.774329758463645,63.13555849118416,0.06282016600016505 +10,380.98262851741083,1.3166338318735518,11.739985000872505,68.79411771539309,0.06845045799855143 +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.05680420799762942 +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.062226916998042725 +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.061776749997079605 +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.06417050000163727 +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.06113420900146593 +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687 +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.06235791699873516 +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578 +19,357.74395683758917,1.2363235524770289,11.023885009586841,64.59790561692476,0.06427520799843478 +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.06394124999860651 +21,350.5608098293886,1.2114993907898615,10.802536234542933,63.300843168770264,0.06298462500126334 +22,352.93602165071184,1.2197078601733347,10.8757284198789,63.729735694056735,0.06341137500203331 +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.05705845799820963 +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.06305191699721036 +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.06294391700066626 +26,347.9465017031017,1.202464631017727,10.721976293241399,62.82877697067623,0.06251491700095357 +27,352.52809188308873,1.2182981000087545,10.863158058411393,63.65607572545742,0.0633380830004171 +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023 +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.06110574999911478 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..aa09cea5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..a027be4dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8e2217a1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..14a0641cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..ff2bf11c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0361f3fa0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c49420646 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1e42eb3ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..341c67d3f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..04e6ecf84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..17698f853 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3fa394d8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bb69da346 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c95994133 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..345470fb2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..37a5be0fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..781c36fd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..70a837adc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6da61e186 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..643526c1b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c49cffdbb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292 +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295 +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367 +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.96580282119965,0.5026861250007642 +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364 +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283 +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152 +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727 +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829 +9,2374.2174260842758,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384 +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447 +11,2408.4701102273693,3.561420707157979,88.32323353751788,509.96152697257344,0.5137638340020203 +12,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732 +13,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935 +14,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878 +15,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826 +16,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144 +17,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896 +18,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942 +19,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896 +20,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372 +21,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246 +22,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155 +23,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018 +24,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907 +25,2359.7523495532514,3.489381431713207,86.53665950648752,499.64618881721964,0.5033715839999786 +26,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014 +27,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501 +28,2369.1011810593163,3.503205610793547,86.87949914767998,501.62567960267603,0.5053658340002585 +29,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.49847700000100303 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..8dfe9409e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452057 +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.06339949999892269 +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.06330708300083643 +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.06251700000211713 +4,341.2276327610607,1.1792449629834103,10.514934253268743,61.61554931588319,0.06130775000201538 +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.062329499996849336 +6,346.9583356729764,1.1990496384973743,10.691525943268255,62.65034361148781,0.06233737500224379 +7,349.52325272198976,1.2079137081685354,10.770563897836107,63.11349125180597,0.06279820899726474 +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.06303625000145985 +9,349.6454613517626,1.208336047678166,10.774329758463645,63.13555849118416,0.06282016600016505 +10,380.98262851741083,1.3166338318735518,11.739985000872505,68.79411771539309,0.06845045799855143 +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.05680420799762942 +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.062226916998042725 +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.061776749997079605 +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.06417050000163727 +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.06113420900146593 +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687 +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.06235791699873516 +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578 +19,357.74395683758917,1.2363235524770289,11.023885009586841,64.59790561692476,0.06427520799843478 +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.06394124999860651 +21,350.5608098293886,1.2114993907898615,10.802536234542933,63.300843168770264,0.06298462500126334 +22,352.93602165071184,1.2197078601733347,10.8757284198789,63.729735694056735,0.06341137500203331 +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.05705845799820963 +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.06305191699721036 +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.06294391700066626 +26,347.9465017031017,1.202464631017727,10.721976293241399,62.82877697067623,0.06251491700095357 +27,352.52809188308873,1.2182981000087545,10.863158058411393,63.65607572545742,0.0633380830004171 +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023 +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.06110574999911478 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d7f331495 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..f91981b5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9ac1056ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2699a5015 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..444993d89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ad977ad37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..b26b894ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..738a42e96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..bc7810cb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8c6848d1a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f25238c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9daac285e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..fdfe1ca04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ff0dbec3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..01520ab3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..acf35ed7a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..381d66905 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a6283278a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0a63bec88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c9157e21f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..462811493 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763 +1,2430.8668931937323,3.1460030631892186,86.86280036574021,500.4462977991102,0.5033938749984372 +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439 +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242 +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859 +5,2473.312006736001,3.200935094883456,88.37950267241374,509.18453846188197,0.5121835829995689 +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638 +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033 +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118 +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504 +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.28650019725603,0.5052449159993557 +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.06125607004765,0.50703012500162 +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356 +13,2442.717957764811,3.1613405897099254,87.28627754535931,502.88609464943573,0.505848042001162 +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.03608621379084,0.5059989170003973 +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502 +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592 +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984 +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331 +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831 +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758 +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022 +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.34197764531405,0.5073124999980791 +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608 +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987 +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.01991923042635,0.5039708750009595 +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441 +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.74838982084964,0.5067154160024074 +28,2460.460343865354,3.18430260428048,87.92027085292314,506.53874690406957,0.5095222080017265 +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..581010f93 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,341.6843896416646,0.22655969759322273,10.162820720610277,60.03831986220403,0.06032899999991059 +1,355.1767007392971,0.23550600598418864,10.56412655414789,62.40909158580999,0.06271124999693711 +2,361.3328929961324,0.23958797489560735,10.747232016745816,63.490813347335944,0.06379820899746846 +3,325.33522572126685,0.2157191039167252,9.676542661407387,57.165562537932175,0.057442334000370465 +4,359.5754915168495,0.23842269968911117,10.69496110034013,63.18201541761446,0.06348791599884862 +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.06377058299767668 +6,362.51211732161676,0.24036987981920216,10.782306037604211,63.69801815208857,0.0640064170002006 +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.06253258400101913 +8,366.4686706564167,0.24299334039925324,10.899986983623647,64.39323520580211,0.06470500000068569 +9,326.0245413625624,0.21617616648081242,9.6970451821393,57.28668411741529,0.05756404199928511 +10,353.9262046474312,0.23467684309292586,10.526932675882675,62.18936341962535,0.06249045799995656 +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.06488675000218791 +12,362.23199716425125,0.24018414134221452,10.773974340207909,63.64879745568685,0.06395695799801615 +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.062164083999959985 +14,349.1769734349746,0.23152778384435185,10.385674875303783,61.35486271875324,0.06165191699983552 +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.06159408300300129 +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.06199587499941117 +17,355.15546194816227,0.23549192323928542,10.563494842447945,62.40535965841063,0.06270750000112457 +18,351.3492284590744,0.2329681348123066,10.450284904437755,61.736555725261255,0.06203545800235588 +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.06134070900225197 +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604 +21,323.2755250958313,0.21435338407415166,9.61528037132623,56.80364677965019,0.057078665999142686 +22,346.4812920955575,0.22974036607643294,10.305496421142848,60.88119701025472,0.0611759580024227 +23,362.6600753923095,0.24046798595682167,10.786706798634572,63.72401627855775,0.06403254099859623 +24,355.4261350672641,0.23567139769544843,10.571545553767258,62.45292038929383,0.0627552910009399 +25,358.8557392353121,0.23794545558844224,10.673553293538694,63.05554573093719,0.06336083399946801 +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057 +27,349.93779309502264,0.23203225837502683,10.408304161394062,61.48854846938211,0.061786250000295695 +28,343.8514567140059,0.22799660860074278,10.227276442947606,60.41910127919684,0.060711624999385094 +29,341.386570501989,0.22636222350231344,10.153962597103774,59.98598922811306,0.06027641600303468 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..49241ecd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..b2f444581 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b31916abc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cfe7f29a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d94bf8a6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4b77aba64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..396ec3d6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..bfb5c472b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aabcb1128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e203bb354 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f503419a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5a32e1531 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f300e48e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..533dbbf17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..484f72923 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..191028c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f8e789d54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..527605277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..839448c15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..2a1e9aa14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..462811493 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763 +1,2430.8668931937323,3.1460030631892186,86.86280036574021,500.4462977991102,0.5033938749984372 +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439 +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242 +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859 +5,2473.312006736001,3.200935094883456,88.37950267241374,509.18453846188197,0.5121835829995689 +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638 +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033 +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118 +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504 +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.28650019725603,0.5052449159993557 +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.06125607004765,0.50703012500162 +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356 +13,2442.717957764811,3.1613405897099254,87.28627754535931,502.88609464943573,0.505848042001162 +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.03608621379084,0.5059989170003973 +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502 +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592 +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984 +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331 +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831 +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758 +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022 +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.34197764531405,0.5073124999980791 +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608 +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987 +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.01991923042635,0.5039708750009595 +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441 +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.74838982084964,0.5067154160024074 +28,2460.460343865354,3.18430260428048,87.92027085292314,506.53874690406957,0.5095222080017265 +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..581010f93 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,341.6843896416646,0.22655969759322273,10.162820720610277,60.03831986220403,0.06032899999991059 +1,355.1767007392971,0.23550600598418864,10.56412655414789,62.40909158580999,0.06271124999693711 +2,361.3328929961324,0.23958797489560735,10.747232016745816,63.490813347335944,0.06379820899746846 +3,325.33522572126685,0.2157191039167252,9.676542661407387,57.165562537932175,0.057442334000370465 +4,359.5754915168495,0.23842269968911117,10.69496110034013,63.18201541761446,0.06348791599884862 +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.06377058299767668 +6,362.51211732161676,0.24036987981920216,10.782306037604211,63.69801815208857,0.0640064170002006 +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.06253258400101913 +8,366.4686706564167,0.24299334039925324,10.899986983623647,64.39323520580211,0.06470500000068569 +9,326.0245413625624,0.21617616648081242,9.6970451821393,57.28668411741529,0.05756404199928511 +10,353.9262046474312,0.23467684309292586,10.526932675882675,62.18936341962535,0.06249045799995656 +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.06488675000218791 +12,362.23199716425125,0.24018414134221452,10.773974340207909,63.64879745568685,0.06395695799801615 +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.062164083999959985 +14,349.1769734349746,0.23152778384435185,10.385674875303783,61.35486271875324,0.06165191699983552 +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.06159408300300129 +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.06199587499941117 +17,355.15546194816227,0.23549192323928542,10.563494842447945,62.40535965841063,0.06270750000112457 +18,351.3492284590744,0.2329681348123066,10.450284904437755,61.736555725261255,0.06203545800235588 +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.06134070900225197 +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604 +21,323.2755250958313,0.21435338407415166,9.61528037132623,56.80364677965019,0.057078665999142686 +22,346.4812920955575,0.22974036607643294,10.305496421142848,60.88119701025472,0.0611759580024227 +23,362.6600753923095,0.24046798595682167,10.786706798634572,63.72401627855775,0.06403254099859623 +24,355.4261350672641,0.23567139769544843,10.571545553767258,62.45292038929383,0.0627552910009399 +25,358.8557392353121,0.23794545558844224,10.673553293538694,63.05554573093719,0.06336083399946801 +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057 +27,349.93779309502264,0.23203225837502683,10.408304161394062,61.48854846938211,0.061786250000295695 +28,343.8514567140059,0.22799660860074278,10.227276442947606,60.41910127919684,0.060711624999385094 +29,341.386570501989,0.22636222350231344,10.153962597103774,59.98598922811306,0.06027641600303468 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..49241ecd9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..b2f444581 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..b31916abc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cfe7f29a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d94bf8a6c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4b77aba64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..396ec3d6f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..bfb5c472b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aabcb1128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e203bb354 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f503419a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5a32e1531 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f300e48e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..533dbbf17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..484f72923 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..191028c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f8e789d54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..527605277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..839448c15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2a1e9aa14 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..70a3360e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.04075976575325,0.5058008339983644 +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779 +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403 +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998 +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058 +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037 +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125 +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338 +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.40439789701435,0.5051622499995574 +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222 +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.49353591890196,0.5092656669985445 +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208 +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372 +13,2398.9191436633346,3.9493024472350284,88.77633652398067,502.29153394035427,0.5040455000016664 +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032 +15,2410.4932406132943,3.9683566990341155,89.20465689005259,504.7149465536247,0.5064773749982123 +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413 +17,2373.612793217755,3.9076410048269725,87.83982931018615,496.99282863912794,0.49872829200103297 +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098 +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619 +20,2393.140126541887,3.93978854322512,88.56247355569073,501.08150925808565,0.5028312499998719 +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148 +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179003,0.5074979160017392 +23,2411.814549757005,3.9705319492707045,89.25355432184146,504.991605480774,0.5067549999985204 +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327 +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187 +26,2412.5966695833,3.9718195407062797,89.28249807890167,505.15536763520623,0.5069193339986668 +27,2417.6673365095417,3.9801672990514563,89.47014726859365,506.2170762280991,0.5079847500019241 +28,2397.318028700774,3.9466665571273323,88.71708437240011,501.95628858926193,0.5037090839978191 +29,2408.6785459670446,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..69b68a9fa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.06330808400161914 +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.06272791599985794 +2,365.8669906637541,0.2818969397389996,11.452063176896859,66.06959525132802,0.06611662499926751 +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.06256104199928814 +4,345.2937631135986,0.26604546902713944,10.80809717922754,62.354406803235804,0.06239879200074938 +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.062292999999044696 +6,352.2442682349835,0.27140076527784535,11.025656089412466,63.609554361995,0.06365483300032793 +7,336.95937238273893,0.2596239024426381,10.547221036732173,60.84935213499331,0.06089266600247356 +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.06292783300159499 +9,337.41659112344763,0.25997618501276903,10.561532516143743,60.93191836236774,0.06097529100225074 +10,334.9993053726752,0.25811368997220474,10.485868655120818,60.495396087235484,0.06053845800124691 +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.05980983300105436 +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.06117233300028602 +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.06055325000124867 +14,352.943817073241,0.2719397608192168,11.047552783280683,63.73588144200393,0.06378125000264845 +15,345.08740182486946,0.26588646967147794,10.801637830403791,62.31714132925264,0.06236150000040652 +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.061105332999431994 +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.06426708299841266 +18,352.07434056761844,0.27126983767128454,11.020337155395934,63.57886820420732,0.06362412499947823 +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.06317879199923482 +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.06355858299866668 +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.06435229199996684 +22,345.28015583657924,0.26603498475321524,10.807671255599368,62.35194955153482,0.0623963329999242 +23,344.455645883133,0.26539970789416006,10.781863133200252,62.20305653769376,0.062247334000858245 +24,346.3271743070028,0.26684170224944836,10.84044415388384,62.54102396471446,0.0625855420003063 +25,339.3314757733539,0.26145158491638554,10.621470637228162,61.277715214777864,0.06132133400024031 +26,351.40222764763104,0.27075198123673777,10.999299237742472,63.45749560236042,0.06350266600202303 +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.062220209001679905 +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.06238149999990128 +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.06352083300225786 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..03f6b38ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..26deab1c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3d09d3c64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1cbc29963 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..707a32dd0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..775a80b67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..b38a47bb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2ee5a148b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5195fa941 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..45b419c86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ae426da18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7b4f62141 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..51865cad2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..381d8f54f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7066d1c6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..b735a11b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..201d367b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..8559f59ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4ef1fe14b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9dc038f11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..70a3360e3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.04075976575325,0.5058008339983644 +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779 +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403 +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998 +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058 +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037 +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125 +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338 +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.40439789701435,0.5051622499995574 +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222 +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.49353591890196,0.5092656669985445 +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208 +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372 +13,2398.9191436633346,3.9493024472350284,88.77633652398067,502.29153394035427,0.5040455000016664 +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032 +15,2410.4932406132943,3.9683566990341155,89.20465689005259,504.7149465536247,0.5064773749982123 +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413 +17,2373.612793217755,3.9076410048269725,87.83982931018615,496.99282863912794,0.49872829200103297 +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098 +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619 +20,2393.140126541887,3.93978854322512,88.56247355569073,501.08150925808565,0.5028312499998719 +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148 +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179003,0.5074979160017392 +23,2411.814549757005,3.9705319492707045,89.25355432184146,504.991605480774,0.5067549999985204 +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327 +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187 +26,2412.5966695833,3.9718195407062797,89.28249807890167,505.15536763520623,0.5069193339986668 +27,2417.6673365095417,3.9801672990514563,89.47014726859365,506.2170762280991,0.5079847500019241 +28,2397.318028700774,3.9466665571273323,88.71708437240011,501.95628858926193,0.5037090839978191 +29,2408.6785459670446,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..69b68a9fa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.06330808400161914 +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.06272791599985794 +2,365.8669906637541,0.2818969397389996,11.452063176896859,66.06959525132802,0.06611662499926751 +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.06256104199928814 +4,345.2937631135986,0.26604546902713944,10.80809717922754,62.354406803235804,0.06239879200074938 +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.062292999999044696 +6,352.2442682349835,0.27140076527784535,11.025656089412466,63.609554361995,0.06365483300032793 +7,336.95937238273893,0.2596239024426381,10.547221036732173,60.84935213499331,0.06089266600247356 +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.06292783300159499 +9,337.41659112344763,0.25997618501276903,10.561532516143743,60.93191836236774,0.06097529100225074 +10,334.9993053726752,0.25811368997220474,10.485868655120818,60.495396087235484,0.06053845800124691 +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.05980983300105436 +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.06117233300028602 +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.06055325000124867 +14,352.943817073241,0.2719397608192168,11.047552783280683,63.73588144200393,0.06378125000264845 +15,345.08740182486946,0.26588646967147794,10.801637830403791,62.31714132925264,0.06236150000040652 +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.061105332999431994 +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.06426708299841266 +18,352.07434056761844,0.27126983767128454,11.020337155395934,63.57886820420732,0.06362412499947823 +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.06317879199923482 +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.06355858299866668 +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.06435229199996684 +22,345.28015583657924,0.26603498475321524,10.807671255599368,62.35194955153482,0.0623963329999242 +23,344.455645883133,0.26539970789416006,10.781863133200252,62.20305653769376,0.062247334000858245 +24,346.3271743070028,0.26684170224944836,10.84044415388384,62.54102396471446,0.0625855420003063 +25,339.3314757733539,0.26145158491638554,10.621470637228162,61.277715214777864,0.06132133400024031 +26,351.40222764763104,0.27075198123673777,10.999299237742472,63.45749560236042,0.06350266600202303 +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.062220209001679905 +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.06238149999990128 +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.06352083300225786 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..03f6b38ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..26deab1c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3d09d3c64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..1cbc29963 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..707a32dd0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..775a80b67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..b38a47bb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2ee5a148b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5195fa941 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..45b419c86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ae426da18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..7b4f62141 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..51865cad2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..381d8f54f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7066d1c6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..b735a11b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..201d367b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..8559f59ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4ef1fe14b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9dc038f11 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..db87955d0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876 +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299 +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715 +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753 +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591 +5,2569.2265577810626,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354 +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132 +7,2536.3977394596554,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457 +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515 +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187 +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992 +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.04018219509004,0.5058779999999388 +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219 +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024 +14,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052 +15,2522.4157528639216,4.245050776489145,80.09653945716727,504.20672866175715,0.5030510409997078 +16,2532.4287624670173,4.2619019772249285,80.414491570275,506.20823329488644,0.5050479580022511 +17,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621 +18,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573 +19,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543 +20,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337 +21,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537 +22,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612 +23,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669 +24,2557.594577302347,4.304254298283186,81.21360435675406,511.23863843639515,0.5100668329978362 +25,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346 +26,2521.414791373941,4.243366227720586,80.06475502536362,504.00664605530875,0.5028514170007838 +27,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381 +28,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a182aa312 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.059355083998525515 +1,359.1743921729426,0.29328339045150453,9.450242581215146,59.406180088121424,0.05799620800098637 +2,369.50288557151976,0.30171710852328776,9.721995719083717,61.1144765375504,0.059663959000317845 +3,367.9933193312075,0.30048447414088797,9.68227750009528,60.86479959542653,0.059420207999210106 +4,368.5615394097468,0.30094845351911825,9.697227946727143,60.958781196150284,0.059511958999792114 +5,348.39381726937063,0.2844805258051475,9.166594720388085,57.62311094919821,0.056255458999658 +6,365.2779196413032,0.29826721799779793,9.610832579929044,60.41568204555396,0.058981750000384636 +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.06106908400033717 +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.05941979099952732 +9,361.87482941390203,0.29548842902604955,9.521293824172709,59.85282290160982,0.05843224999989616 +10,366.4269936562932,0.29920549291477394,9.641065882809384,60.605734842625886,0.05916729200180271 +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.06124999999883585 +12,372.0247519362511,0.30377633527728726,9.788348581157033,61.53158435672162,0.060071167001297 +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.057855333001498366 +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.05800237499715877 +15,374.3120558659924,0.3056440303750618,9.848529867640883,61.90989637485975,0.06044049999763956 +16,367.87616507164813,0.3003888119801155,9.679195052692611,60.84542269330562,0.05940129099690239 +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.057377291999728186 +18,350.9303921671755,0.28655176279301214,9.233334578885946,58.04265150796235,0.056665042000531685 +19,373.7742933228857,0.30520492105842595,9.834380789660392,61.82095234327895,0.0603536670023459 +20,375.95244447471293,0.3069834875950296,9.891690155839843,62.18121087619322,0.060705375002726214 +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.06028091699772631 +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292 +23,366.18365566800003,0.29900679559172566,9.63466341351116,60.56548759596843,0.05912800000078278 +24,382.3439433397997,0.3122024578169295,10.059856974101063,63.238342288918055,0.061737415999232326 +25,366.5838826179828,0.2993336003957399,9.645193790529397,60.63168372460376,0.05919262500174227 +26,361.2944833317239,0.29501454817506034,9.506024330085278,59.756835702570555,0.058338541002740385 +27,363.42541852315316,0.2967545605796025,9.562091396453857,60.10928488184614,0.05868262500007404 +28,370.63260004465667,0.30263957543112957,9.75171965278084,61.30132733454991,0.059846374999324325 +29,390.48189327540445,0.3188474904262965,10.273974691513997,64.58433056079316,0.06305145800070022 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ec9c076c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6839760e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..dbd299ea2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5692e2fb7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f0851f8aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..91a7de38c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..421b3ec24 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..6622f3bed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ebcf542f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d8fd9210c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c82c96f36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..57bebd776 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5117ad077 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fc377cad3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3e7e8fbb0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..9883a29da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dd686deed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c6fb36e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..367295da3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c46833825 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..3cbb9363d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876 +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299 +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715 +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753 +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591 +5,2569.2265577810626,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354 +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132 +7,2536.3977394596554,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457 +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515 +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187 +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992 +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.04018219509004,0.5058779999999388 +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219 +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024 +14,2717.7183010787217,4.573731420434627,86.29815718866575,543.2458358441811,0.542000666999229 +15,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052 +16,2522.4157528639216,4.245050776489145,80.09653945716727,504.20672866175715,0.5030510409997078 +17,2532.4287624670173,4.2619019772249285,80.414491570275,506.20823329488644,0.5050479580022511 +18,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621 +19,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573 +20,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543 +21,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337 +22,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537 +23,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612 +24,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669 +25,2557.594577302347,4.304254298283186,81.21360435675406,511.23863843639515,0.5100668329978362 +26,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346 +27,2521.414791373941,4.243366227720586,80.06475502536362,504.00664605530875,0.5028514170007838 +28,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381 +29,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a182aa312 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.059355083998525515 +1,359.1743921729426,0.29328339045150453,9.450242581215146,59.406180088121424,0.05799620800098637 +2,369.50288557151976,0.30171710852328776,9.721995719083717,61.1144765375504,0.059663959000317845 +3,367.9933193312075,0.30048447414088797,9.68227750009528,60.86479959542653,0.059420207999210106 +4,368.5615394097468,0.30094845351911825,9.697227946727143,60.958781196150284,0.059511958999792114 +5,348.39381726937063,0.2844805258051475,9.166594720388085,57.62311094919821,0.056255458999658 +6,365.2779196413032,0.29826721799779793,9.610832579929044,60.41568204555396,0.058981750000384636 +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.06106908400033717 +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.05941979099952732 +9,361.87482941390203,0.29548842902604955,9.521293824172709,59.85282290160982,0.05843224999989616 +10,366.4269936562932,0.29920549291477394,9.641065882809384,60.605734842625886,0.05916729200180271 +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.06124999999883585 +12,372.0247519362511,0.30377633527728726,9.788348581157033,61.53158435672162,0.060071167001297 +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.057855333001498366 +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.05800237499715877 +15,374.3120558659924,0.3056440303750618,9.848529867640883,61.90989637485975,0.06044049999763956 +16,367.87616507164813,0.3003888119801155,9.679195052692611,60.84542269330562,0.05940129099690239 +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.057377291999728186 +18,350.9303921671755,0.28655176279301214,9.233334578885946,58.04265150796235,0.056665042000531685 +19,373.7742933228857,0.30520492105842595,9.834380789660392,61.82095234327895,0.0603536670023459 +20,375.95244447471293,0.3069834875950296,9.891690155839843,62.18121087619322,0.060705375002726214 +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.06028091699772631 +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292 +23,366.18365566800003,0.29900679559172566,9.63466341351116,60.56548759596843,0.05912800000078278 +24,382.3439433397997,0.3122024578169295,10.059856974101063,63.238342288918055,0.061737415999232326 +25,366.5838826179828,0.2993336003957399,9.645193790529397,60.63168372460376,0.05919262500174227 +26,361.2944833317239,0.29501454817506034,9.506024330085278,59.756835702570555,0.058338541002740385 +27,363.42541852315316,0.2967545605796025,9.562091396453857,60.10928488184614,0.05868262500007404 +28,370.63260004465667,0.30263957543112957,9.75171965278084,61.30132733454991,0.059846374999324325 +29,390.48189327540445,0.3188474904262965,10.273974691513997,64.58433056079316,0.06305145800070022 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..41730c007 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..16ac0172f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5ad851f92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..199fb11a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4e5478c60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d545d36aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..a2c9ae7b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4c0ec9c69 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1db88471d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..101e39ca4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..54b3cb2b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..98e0b5a41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ecca86249 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..72dea17ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a3a3f49a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..92f29eb38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..5bd46020c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..e248a15ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..942404d01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ed598e503 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..feeb4aac1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184 +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056 +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889 +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905 +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046 +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422 +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449 +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683 +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593 +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301 +10,2398.899124274176,3.0106997891122362,85.65606323089648,496.23611139444426,0.5013167500001146 +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011 +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.10144356867676,0.49713975000122446 +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381 +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393 +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535 +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158 +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682 +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018 +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.33957995063884,0.5074827079988609 +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256 +21,2413.457682465012,3.028971273574173,86.17589700311575,499.24769376196724,0.5043591659996309 +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458 +23,2440.0641737605915,3.0623633228362914,87.12591915190285,504.75151076067624,0.5099193329988339 +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291 +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119 +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032 +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706 +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758 +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..cd150884e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.6184613008034,1.3503643869405861,9.688864476298706,63.33208974751349,0.06334237500050222 +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.062075791000097524 +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.06163445800120826 +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.06196270899818046 +4,346.1149788313074,1.3142774969861681,9.429941040875756,61.639614608651286,0.06164962500042748 +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.06321566599945072 +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.05990949999977602 +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.06502833400008967 +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.06296287499935715 +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.06290795799941407 +10,355.0965683959524,1.3483826405769976,9.674645446139959,63.239145843061195,0.06324941600178136 +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.823997068650804,0.06083387500257231 +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.06357199999911245 +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.06222124999840162 +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.06431491700277547 +15,362.2671094199502,1.3756108198972858,9.870007632763025,64.5161474531827,0.06452662499941653 +16,347.40601521064906,1.3191798565052175,9.465115470424937,61.86953527009471,0.06187958300142782 +17,352.59402676578674,1.3388799193688503,9.606463421471501,62.79346821839908,0.06280366599821718 +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.05982591700012563 +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.06261704200005624 +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.06273995900119189 +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.06365191700024297 +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.06018204199790489 +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.06309708299886552 +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284 +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.06542187499871943 +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.06003258299824665 +27,355.2156405220305,1.3488347845909645,9.677889579440171,63.260351397316235,0.06327062499985914 +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.06240304200036917 +29,347.1143112188389,1.3180721899329368,9.457167962768821,61.81758570785473,0.06182762500247918 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0ee7c9623 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..be7440d25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3cd8e0650 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..56d08e85e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c26c30eb0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..13df652f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2d3ffcedb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9917861b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ca9e95979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a8fc242fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4fbf9ac07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..33023c1f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4351c94c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aca3c2b35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1b842edd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..09e2bc1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dd602fc53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..bea206852 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c980fafc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..cf0da2636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..feeb4aac1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184 +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056 +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889 +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905 +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046 +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422 +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449 +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683 +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593 +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301 +10,2398.899124274176,3.0106997891122362,85.65606323089648,496.23611139444426,0.5013167500001146 +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011 +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.10144356867676,0.49713975000122446 +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381 +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393 +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535 +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158 +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682 +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018 +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.33957995063884,0.5074827079988609 +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256 +21,2413.457682465012,3.028971273574173,86.17589700311575,499.24769376196724,0.5043591659996309 +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458 +23,2440.0641737605915,3.0623633228362914,87.12591915190285,504.75151076067624,0.5099193329988339 +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291 +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119 +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032 +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706 +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758 +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..cd150884e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.6184613008034,1.3503643869405861,9.688864476298706,63.33208974751349,0.06334237500050222 +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.062075791000097524 +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.06163445800120826 +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.06196270899818046 +4,346.1149788313074,1.3142774969861681,9.429941040875756,61.639614608651286,0.06164962500042748 +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.06321566599945072 +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.05990949999977602 +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.06502833400008967 +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.06296287499935715 +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.06290795799941407 +10,355.0965683959524,1.3483826405769976,9.674645446139959,63.239145843061195,0.06324941600178136 +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.823997068650804,0.06083387500257231 +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.06357199999911245 +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.06222124999840162 +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.06431491700277547 +15,362.2671094199502,1.3756108198972858,9.870007632763025,64.5161474531827,0.06452662499941653 +16,347.40601521064906,1.3191798565052175,9.465115470424937,61.86953527009471,0.06187958300142782 +17,352.59402676578674,1.3388799193688503,9.606463421471501,62.79346821839908,0.06280366599821718 +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.05982591700012563 +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.06261704200005624 +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.06273995900119189 +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.06365191700024297 +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.06018204199790489 +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.06309708299886552 +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284 +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.06542187499871943 +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.06003258299824665 +27,355.2156405220305,1.3488347845909645,9.677889579440171,63.260351397316235,0.06327062499985914 +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.06240304200036917 +29,347.1143112188389,1.3180721899329368,9.457167962768821,61.81758570785473,0.06182762500247918 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..0ee7c9623 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..be7440d25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3cd8e0650 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..56d08e85e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c26c30eb0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..13df652f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2d3ffcedb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9917861b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ca9e95979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a8fc242fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4fbf9ac07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..33023c1f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4351c94c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..aca3c2b35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1b842edd4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..09e2bc1cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..dd602fc53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..bea206852 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c980fafc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cf0da2636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..2f7e81365 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081 +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.65957789835755,0.5096410420010216 +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707 +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663 +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053 +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341 +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594 +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114 +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416 +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249 +10,2437.183217540223,4.046977031692036,79.90271180753945,501.55758320044436,0.5075140840017411 +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847 +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441 +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.52435284866596,0.5064685830002418 +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114 +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727 +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319 +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087 +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663 +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326 +20,2401.802815837927,3.9882273767499092,78.74277027318622,494.27651026232763,0.5001465409986849 +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738 +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097 +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266 +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476 +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851 +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238 +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105 +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783 +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..b56f243a7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.06336312500206986 +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774 +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.061989750000066124 +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.06226733300354681 +4,344.6413629741717,1.1293182672630917,9.864927216974653,62.477872374172804,0.062405250002484536 +5,350.37501142418506,1.1481062440653713,10.029045720218095,63.51728956138127,0.06344345900288317 +6,331.7819094104552,1.0871805050072743,9.496841470210603,60.146662644667146,0.06007675000000745 +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.06273745799990138 +8,344.36385060606943,1.1284089167893563,9.856983773130555,62.42756389649351,0.06235500000184402 +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.06398175000140327 +10,333.26358795573077,1.0920356582974986,9.539252662186973,60.4152668605175,0.060345041998516535 +11,344.4812065706353,1.1287934679454126,9.860342940581987,62.448838623685916,0.062376249999942956 +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.05983837499661604 +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.06410083400260191 +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.060202833999937866 +15,332.94188901480146,1.0909815175889794,9.530044433056673,60.356948076025596,0.06028679100199952 +16,331.5582427131216,1.0864475956289645,9.490439291229483,60.106115511120066,0.06003624999721069 +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.06400012500307639 +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.05966387499938719 +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.062237165999249555 +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.06250870900112204 +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.06409845800226321 +22,353.40509298276,1.1580351928887662,10.115778008469517,64.06659405364027,0.0639921250003681 +23,374.3218432757152,1.2265750454292905,10.714493779191155,67.85846060154398,0.0677795839983446 +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.06403024999963236 +25,352.0352477660601,1.1535464942218623,10.07656790540862,63.81826340092126,0.06374408299961942 +26,353.2720858728606,1.1575993561755262,10.111970846592097,64.04248202841661,0.06396804100222653 +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.06261070799882873 +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.06226745800086064 +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.06353654200211167 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..780251e2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6a2a75d17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..480718536 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..46cf89f2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c77ad9d00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..762f9eb5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..192981a56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8d7eb45b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5958888cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1430eecd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..be7c20bd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5658f48a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..02b251120 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f27e88993 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b2a84ad0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..aa263a9c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c493deacf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3331b5f4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bcb3bfc0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c50b05262 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2f7e81365 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081 +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.65957789835755,0.5096410420010216 +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707 +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663 +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053 +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341 +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594 +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114 +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416 +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249 +10,2437.183217540223,4.046977031692036,79.90271180753945,501.55758320044436,0.5075140840017411 +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847 +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441 +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.52435284866596,0.5064685830002418 +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114 +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727 +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319 +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087 +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663 +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326 +20,2401.802815837927,3.9882273767499092,78.74277027318622,494.27651026232763,0.5001465409986849 +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738 +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097 +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266 +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476 +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851 +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238 +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105 +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783 +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..b56f243a7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.06336312500206986 +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774 +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.061989750000066124 +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.06226733300354681 +4,344.6413629741717,1.1293182672630917,9.864927216974653,62.477872374172804,0.062405250002484536 +5,350.37501142418506,1.1481062440653713,10.029045720218095,63.51728956138127,0.06344345900288317 +6,331.7819094104552,1.0871805050072743,9.496841470210603,60.146662644667146,0.06007675000000745 +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.06273745799990138 +8,344.36385060606943,1.1284089167893563,9.856983773130555,62.42756389649351,0.06235500000184402 +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.06398175000140327 +10,333.26358795573077,1.0920356582974986,9.539252662186973,60.4152668605175,0.060345041998516535 +11,344.4812065706353,1.1287934679454126,9.860342940581987,62.448838623685916,0.062376249999942956 +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.05983837499661604 +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.06410083400260191 +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.060202833999937866 +15,332.94188901480146,1.0909815175889794,9.530044433056673,60.356948076025596,0.06028679100199952 +16,331.5582427131216,1.0864475956289645,9.490439291229483,60.106115511120066,0.06003624999721069 +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.06400012500307639 +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.05966387499938719 +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.062237165999249555 +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.06250870900112204 +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.06409845800226321 +22,353.40509298276,1.1580351928887662,10.115778008469517,64.06659405364027,0.0639921250003681 +23,374.3218432757152,1.2265750454292905,10.714493779191155,67.85846060154398,0.0677795839983446 +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.06403024999963236 +25,352.0352477660601,1.1535464942218623,10.07656790540862,63.81826340092126,0.06374408299961942 +26,353.2720858728606,1.1575993561755262,10.111970846592097,64.04248202841661,0.06396804100222653 +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.06261070799882873 +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.06226745800086064 +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.06353654200211167 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..780251e2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..6a2a75d17 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..480718536 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..46cf89f2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c77ad9d00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..762f9eb5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..192981a56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8d7eb45b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..5958888cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1430eecd5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..be7c20bd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5658f48a5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..02b251120 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f27e88993 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b2a84ad0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..aa263a9c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..c493deacf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..3331b5f4e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bcb3bfc0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c50b05262 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..9ad8b0ac5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 890 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 500.03 ms | 61.56 ms | +| **Average Power** | 5.624 W | 6.458 W | +| **Total Energy** | 2505.74 J | 353.85 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.38% | 0.00e+00 | +7.249 | large | βœ… | +| `gpu_mj` | +87.81% | 0.00e+00 | +3.995 | large | βœ… | +| `ane_mj` | +87.93% | 1.45e-279 | +2.494 | large | βœ… | +| `dram_mj` | +87.72% | 0.00e+00 | +31.230 | large | βœ… | +| `time_s` | +87.70% | 0.00e+00 | +115.051 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.249, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.995, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.494, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.230, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +115.051, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..9f8557a3c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/with_smell.csv @@ -0,0 +1,892 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081 +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.6595778983575,0.5096410420010216 +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707 +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663 +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053 +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341 +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594 +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114 +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416 +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249 +10,2437.183217540223,4.046977031692036,79.90271180753945,501.5575832004443,0.5075140840017411 +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847 +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441 +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.5243528486659,0.5064685830002418 +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114 +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727 +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319 +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087 +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663 +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326 +20,2401.802815837927,3.988227376749909,78.74277027318622,494.2765102623276,0.5001465409986849 +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738 +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097 +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266 +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476 +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851 +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238 +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105 +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783 +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012 +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876 +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299 +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715 +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753 +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591 +5,2569.226557781062,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354 +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132 +7,2536.397739459655,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457 +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515 +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187 +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992 +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.0401821950901,0.5058779999999388 +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219 +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024 +14,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052 +15,2522.4157528639216,4.245050776489145,80.09653945716727,504.2067286617571,0.5030510409997078 +16,2532.4287624670173,4.2619019772249285,80.414491570275,506.2082332948864,0.5050479580022511 +17,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621 +18,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573 +19,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543 +20,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337 +21,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537 +22,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612 +23,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669 +24,2557.594577302347,4.304254298283186,81.21360435675406,511.2386384363951,0.5100668329978362 +25,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346 +26,2521.414791373941,4.243366227720586,80.06475502536362,504.0066460553087,0.5028514170007838 +27,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381 +28,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018 +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.0407597657533,0.5058008339983644 +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779 +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403 +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998 +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058 +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037 +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125 +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338 +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.4043978970143,0.5051622499995574 +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222 +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.4935359189019,0.5092656669985445 +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208 +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372 +13,2398.9191436633346,3.949302447235029,88.77633652398067,502.2915339403542,0.5040455000016664 +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032 +15,2410.4932406132943,3.968356699034115,89.20465689005259,504.7149465536247,0.5064773749982123 +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413 +17,2373.612793217755,3.907641004826973,87.83982931018615,496.99282863912794,0.4987282920010329 +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098 +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619 +20,2393.140126541887,3.93978854322512,88.56247355569073,501.0815092580857,0.5028312499998719 +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148 +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179,0.5074979160017392 +23,2411.814549757005,3.970531949270705,89.25355432184146,504.991605480774,0.5067549999985204 +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327 +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187 +26,2412.5966695833,3.97181954070628,89.28249807890167,505.15536763520623,0.5069193339986668 +27,2417.6673365095417,3.980167299051456,89.47014726859365,506.2170762280991,0.5079847500019241 +28,2397.318028700774,3.946666557127332,88.71708437240011,501.95628858926193,0.5037090839978191 +29,2408.678545967045,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665 +0,1521.3288350694506,1.7571209502823384,0.0,461.5145757491573,0.503729125000973 +1,1495.508336847177,1.7272985099740834,0.0,453.6815971005006,0.495179667002958 +2,1500.021420887732,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655 +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.4942111669988662 +4,1500.8048946803583,1.7334159860374627,0.0,455.2883757173012,0.4969334170018555 +5,1504.431192242494,1.737604326698274,0.0,456.3884595008659,0.4981341249986144 +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176 +7,1501.5407983498535,1.7342659480741058,0.0,455.5116215153104,0.4971770830015884 +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.4967821669997647 +9,1494.8181096605138,1.7265013038591517,0.0,453.47220784823634,0.4949511250015348 +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753 +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.4975821669977449 +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215 +13,1495.377338579858,1.727147208168287,0.0,453.6418570992782,0.4951362920000974 +14,1493.8437393132476,1.7253759149813177,0.0,453.1766201310545,0.4946284999969066 +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.4986748330011323 +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988 +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807 +18,1510.2273283587142,1.7442988111290731,0.0,458.1467915846323,0.5000532909980393 +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.498009249997267 +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538 +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508 +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381 +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588 +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561 +25,1492.5965513345484,1.723935424223635,0.0,452.79826969320027,0.4942155419994378 +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.4946941249982046 +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.493535375000647 +28,1487.032962421571,1.7175095296948537,0.0,451.1104837802367,0.4923733750001702 +29,1498.2415539693543,1.730455350859723,0.0,454.5107535008094,0.4960846659996605 +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713 +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006 +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059 +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968 +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581 +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476 +6,2441.8114041555423,3.618640059947563,85.3731006735777,503.0244742591923,0.5088992080018215 +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948 +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731 +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782 +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501 +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053 +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794 +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086 +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143 +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084 +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.4943381562488,0.5113979170018865 +17,2419.5950410391,3.585716542012196,84.59634952821366,498.4478004187879,0.5042690839982242 +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158 +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739 +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313 +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094 +22,2415.987574562841,3.580370460540182,84.47022160607762,497.7046455934235,0.5035172499992768 +23,2406.058253789995,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208 +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778 +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196 +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.2896519401702,0.5071441250001953 +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398 +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694 +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691 +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184 +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056 +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889 +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905 +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046 +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422 +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449 +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683 +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593 +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301 +10,2398.899124274176,3.010699789112236,85.65606323089648,496.23611139444426,0.5013167500001146 +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011 +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.1014435686768,0.4971397500012244 +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381 +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393 +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535 +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158 +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682 +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018 +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.3395799506389,0.5074827079988609 +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256 +21,2413.457682465012,3.028971273574173,86.17589700311575,499.2476937619672,0.5043591659996309 +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458 +23,2440.0641737605915,3.062363322836291,87.12591915190285,504.75151076067624,0.5099193329988339 +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291 +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119 +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032 +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706 +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758 +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817 +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767 +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903 +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114 +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558 +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153 +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502 +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542 +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336 +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.8935984536096,0.5130170830016141 +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846 +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546 +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943 +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843 +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183 +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798 +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369 +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819 +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662 +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346 +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835 +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325 +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111 +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748 +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375 +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.9742481356192,0.5100448750017677 +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458 +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488 +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479 +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.6574274029951,0.5066679999981716 +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148 +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552 +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887 +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551 +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776 +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338 +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639 +6,2337.365944846139,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552 +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931 +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839 +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006 +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587 +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081 +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149 +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471 +14,2353.790095061217,3.1273854940882333,76.58767454671397,495.2913601116121,0.5069090830002096 +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043 +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.8088451449525,0.5064152499980992 +17,2369.900043850338,3.148790130066317,77.11186041928363,498.6812624074177,0.5103784999992058 +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193 +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772 +20,2361.406654310874,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665 +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113 +22,2365.186005455824,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555 +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592 +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598 +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374 +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287 +27,2323.0195285501377,3.08650188957586,75.58646116812372,488.8165279799557,0.5002823750000971 +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055 +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038 +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472 +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257 +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665 +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586 +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182 +5,2469.989166352668,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784 +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424 +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046 +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.4442793542444,0.5079350840023835 +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228 +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109 +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367 +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832 +13,2470.881336761855,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803 +14,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149 +15,2459.7036085349296,4.698005439592715,79.17131702074202,497.8231538700816,0.5032634579984006 +16,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562 +17,2454.901026991713,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756 +18,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631 +19,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852 +20,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367 +21,2476.252506411417,4.729613643106841,79.70398202784979,501.1725104776664,0.5066494169986981 +22,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254 +23,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172 +24,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842 +25,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839 +26,2498.7167098677137,4.772520011852896,80.42704498847873,505.7190747771163,0.5112456669994572 +27,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802 +28,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411 +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.3002329485451,0.5093542920003529 +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653 +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335 +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.9709386136346,0.5059579579974525 +4,2399.17808339922,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849 +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149 +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775 +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634 +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.3990756228805,0.509455125000386 +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049 +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456 +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895 +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751 +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829 +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234 +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.7341684884317,0.5016358749999199 +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729 +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007 +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672 +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455 +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208 +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947 +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.4623838303456,0.5095197080008802 +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746 +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.8791917610883,0.506884500002343 +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028 +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497 +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293 +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212 +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411 +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542 +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952 +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867 +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424 +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363 +5,2400.453980450238,4.138080849367165,83.32893452314363,495.8688979092475,0.5058198340011586 +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694 +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958 +8,2403.58097828726,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683 +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267 +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853 +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238 +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056 +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391 +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556 +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674 +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163 +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075 +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524 +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076 +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709 +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594 +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088 +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206 +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243 +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182 +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494 +27,2425.97045586115,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935 +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056 +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254 +0,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337 +1,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345 +2,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745 +3,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228 +4,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257,0.501494084001024 +5,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946 +6,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837 +7,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348 +8,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026 +9,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378 +10,2378.356060681969,3.970157709764441,81.78524882114748,500.90156438194686,0.5014024589982 +11,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271 +12,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075 +13,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049 +14,2390.123657190451,3.989801199978495,82.189904719557,503.37991806395354,0.5038832909995108 +15,2371.816282415134,3.959240946065576,81.56036348895087,499.5242326952735,0.5000237499989453 +16,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303 +17,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822 +18,2397.1812542605517,4.0015823516249975,82.43259644347495,504.8663066966872,0.5053711660002591 +19,2413.429795818861,4.028705823003649,82.99133995387517,508.2883846689603,0.5087966660030361 +20,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703 +21,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542 +22,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094 +23,2386.9390568875947,3.984485189624151,82.08039490625751,502.7092147575803,0.5032119169991347 +24,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828 +25,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.4999481250015378 +26,2394.9224057847664,3.997811686315634,82.35492073810207,504.3905744234892,0.5048949580013868 +27,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275 +28,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585 +0,1531.1537366320806,2.87076721424838,0.0,463.19495191756414,0.4997307500016177 +1,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.4992337080002471 +2,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331 +3,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553 +4,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.4967933749976509 +5,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.4938749159991857 +6,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974 +7,1529.549117610166,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789 +8,1534.5397925705695,2.87711574616994,0.0,464.2192801610941,0.5008358750019397 +9,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685 +10,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412 +11,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775 +12,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.4971924999990733 +13,1530.105222825464,2.868801350868558,0.0,462.8777621471175,0.4993885410003713 +14,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475 +15,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071 +16,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474 +17,1523.8910085724551,2.8571502918579252,0.0,460.997877323495,0.4973603750004258 +18,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.4989415420022851 +19,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.4979109579981013 +20,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227 +21,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.4972158750024391 +22,1523.679466818539,2.856753671246252,0.0,460.93388304898826,0.4972913329984294 +23,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626 +24,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481 +25,1518.296859631195,2.84666179616479,0.0,459.30557073933295,0.4955345829985162 +26,1517.123367010836,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685 +27,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821 +28,1513.0786858616543,2.8368782180579974,0.0,457.7270017880555,0.49383150000358 +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618 +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904 +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659 +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492 +4,2340.690922537716,4.507878606273955,80.50737273871486,493.7629700072072,0.5085929999986547 +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951 +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227 +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618 +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373 +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693 +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235 +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706 +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046 +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578 +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701 +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975 +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283 +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956 +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957 +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134 +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105 +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781 +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063 +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187 +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935 +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673 +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902 +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685 +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548 +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566 +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292 +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295 +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367 +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.9658028211997,0.5026861250007642 +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364 +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283 +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152 +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727 +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829 +9,2374.217426084276,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384 +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447 +11,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732 +12,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935 +13,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878 +14,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826 +15,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144 +16,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896 +17,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942 +18,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896 +19,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372 +20,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246 +21,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155 +22,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018 +23,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907 +24,2359.7523495532514,3.489381431713207,86.53665950648752,499.6461888172197,0.5033715839999786 +25,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014 +26,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501 +27,2369.1011810593163,3.503205610793547,86.87949914767998,501.625679602676,0.5053658340002585 +28,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.498477000001003 +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566 +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745 +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915 +3,2787.134152130027,3.892829766007092,84.81750278308672,513.8535291129361,0.5036684170008812 +4,2786.490857621769,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919 +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812 +6,2781.0252087558233,3.884297318228151,84.6315966539371,512.7272460061159,0.5025644579982327 +7,2806.3717189238073,3.91969914815834,85.40293652470417,517.4002875569009,0.5071448749986303 +8,2787.611657926017,3.8934967051189577,84.83203414288847,513.9415650757024,0.5037547079991782 +9,2778.4739606086464,3.880733953787939,84.5539575863457,512.256881900008,0.5021034169985796 +10,2803.5843657274604,3.915806012450171,85.3181123560118,516.8863936434227,0.5066411669977242 +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174 +12,2812.886462833527,3.9287983832957263,85.60119189367214,518.6013865950359,0.5083221670029161 +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987 +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392 +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828 +16,2785.3977311460985,3.890404482212485,84.7646603709178,513.5333916520481,0.5033546249978826 +17,2790.556261375991,3.8976094744847183,84.92164371949332,514.4844506319829,0.5042868329983321 +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193 +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849 +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448 +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673 +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759 +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572 +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778 +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124 +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425 +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436 +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288 +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019 +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533 +1,2427.481988160699,4.084415548016843,85.00271374110463,501.1109173993124,0.5075136669984204 +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661 +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051 +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116 +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043 +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739 +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679 +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423 +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579 +10,2395.320511638591,4.030301517348542,83.87652092252418,494.4717468169917,0.5007896669994807 +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515 +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875 +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489 +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053 +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869 +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392 +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.4682684869635,0.5078755840004305 +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414 +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279 +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696 +21,2427.790497267815,4.08493463709761,85.01351675074451,501.1746036727624,0.5075781669984281 +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145 +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996 +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155 +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793 +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597 +27,2413.707893578892,4.061239628959905,84.5203886715508,498.2674980841955,0.5046339170003193 +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983 +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103 +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763 +1,2430.8668931937323,3.146003063189218,86.86280036574021,500.4462977991102,0.5033938749984372 +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439 +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242 +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859 +5,2473.312006736001,3.200935094883456,88.37950267241374,509.184538461882,0.5121835829995689 +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638 +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033 +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118 +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504 +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.286500197256,0.5052449159993557 +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.0612560700477,0.50703012500162 +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356 +13,2442.717957764811,3.161340589709926,87.28627754535931,502.88609464943573,0.505848042001162 +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.0360862137909,0.5059989170003973 +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502 +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592 +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984 +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331 +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831 +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758 +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022 +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.3419776453141,0.5073124999980791 +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608 +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987 +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.0199192304263,0.5039708750009595 +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441 +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.7483898208496,0.5067154160024074 +28,2460.460343865354,3.18430260428048,87.92027085292314,506.5387469040696,0.5095222080017265 +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324 +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667 +1,1498.841889417395,1.2033252607887024,0.0,459.93765523479294,0.499227249998512 +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.4965378329980012 +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442 +4,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427 +5,1489.3145129999891,1.1956763334448297,0.0,457.0140652278015,0.4960539159983455 +6,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085 +7,1491.8328382512898,1.1976981373530124,0.0,457.7868436104848,0.4968927080008143 +8,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469 +9,1511.818683773937,1.213743507412005,0.0,463.91974061081095,0.5035495000010997 +10,1488.9657450555078,1.195396329742831,0.0,456.9070415905932,0.4959377500017581 +11,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.4984247499996854 +12,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.4980667499985429 +13,1496.3713521590184,1.2013418228345636,0.0,459.1795411723221,0.4984043749973352 +14,1507.25952887442,1.210083250584936,0.0,462.5207091124644,0.5020309579995228 +15,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.4936328750009124 +16,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439 +17,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.4978450419985165 +18,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462 +19,1489.0232905879304,1.1954425294075846,0.0,456.9247001291211,0.4959569169986935 +20,1493.38228955567,1.1989420937089743,0.0,458.262311373208,0.4974087919981684 +21,1495.050954155259,1.2002817588722223,0.0,458.7743611689384,0.4979645830026129 +22,1482.5875601832554,1.1902756889141006,0.0,454.949818873834,0.4938133340001513 +23,1491.5192214979224,1.1974463543169245,0.0,457.6906065389133,0.4967882499986444 +24,1491.476438384669,1.197412006463908,0.0,457.6774780262048,0.4967739999992773 +25,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.4969653329972061 +26,1493.5562982454917,1.1990817942694787,0.0,458.3157080318896,0.4974667499991483 +27,1494.5570718752197,1.1998852520574457,0.0,458.622807453068,0.4978000830014935 +28,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.4966979169985279 +0,2451.1992010427684,3.900210881276232,77.23750950356437,510.1942524609636,0.5080816660010896 +1,2446.842754857934,3.893279148103931,77.10023748851974,509.2874988182109,0.5071786669977882 +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055 +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268 +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444 +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424 +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.5791434498134,0.5034856669990404 +7,2429.938186012844,3.866381544953255,76.56757298851875,505.7689704744408,0.5036747079975612 +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405 +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.430282300252,0.5063249999984691 +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838 +11,2416.368502129658,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795 +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131 +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048 +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614 +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951 +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134 +17,2475.655192815794,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459 +18,2453.373007356547,3.9036697201315897,77.30600633799054,510.6467099710596,0.5085322499980975 +19,2459.984671943299,3.914189830514144,77.51434048975445,512.0228662907604,0.5099027079995722 +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151 +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142 +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269 +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548 +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.057604634152,0.5079455839986622 +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254 +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.1553403373048,0.500076040996646 +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147 +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387 +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264 +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896 +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294 +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021 +3,2357.806900571939,4.149006707691834,79.90183885458144,503.6024190118531,0.5101947919974918 +4,2346.305810578593,4.128768366919913,79.51208758229639,501.1459087944486,0.5077061250012775 +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982 +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412 +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624 +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255 +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223 +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191 +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826 +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185 +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488 +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016 +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732 +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316 +17,2343.330793546818,4.123533262375373,79.41126960122897,500.5104768710625,0.5070623749998049 +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544 +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428 +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128 +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923 +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731 +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271 +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.9930627480395,0.509577458997228 +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235 +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313 +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421 +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664 +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945 +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798 +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374 +2,2403.6605833088347,2.971356629736184,84.43326872587426,501.95895424812943,0.5054153749988473 +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712 +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205 +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399 +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625 +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132 +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868 +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569 +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995 +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116 +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444 +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508 +14,2396.948743680305,2.963059589248669,84.19750226078521,500.5573137567836,0.5040040830026555 +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352 +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.4983195829991018 +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919 +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.0250495374422,0.5085025830012455 +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087 +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.0684085629751,0.5055255830011447 +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335 +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108 +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.2673499536931,0.5077396660017257 +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774 +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248 +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372 +27,2387.906760572858,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619 +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972 +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049 +0,1540.449502109736,0.941163587664418,0.0,464.2625526007479,0.5018101659989043 +1,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.499439874998643 +2,1530.7264696366958,0.935223137092834,0.0,461.33221319736504,0.4986428330012131 +3,1527.4287557774685,0.9332083432274132,0.0,460.3383441663225,0.4975685839999642 +4,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.4973773329984396 +5,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467 +6,1528.059338805915,0.93359360855715,0.0,460.52839004969127,0.497773999999481 +7,1545.3676850578215,0.944168434432761,0.0,465.744800585189,0.5034122920005757 +8,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942 +9,1528.570586995457,0.9339059642556632,0.0,460.6824706535437,0.4979405419981049 +10,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875 +11,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752 +12,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.4964012499985983 +13,1528.2171779672317,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772 +14,1519.295356383413,0.9282391057787768,0.0,457.88709032201666,0.4949190829975123 +15,1522.767283641807,0.9303603382567937,0.0,458.9334640001012,0.4960500830020464 +16,1521.815908034937,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944 +17,1523.6480572437645,0.9308984617343912,0.0,459.19891262412176,0.4963370000004943 +18,1522.5087831425035,0.930202403019706,0.0,458.8555568038635,0.495965874997637 +19,1523.130669481421,0.9305823549603914,0.0,459.0429816683188,0.4961684580011933 +20,1519.5053818912152,0.9283674244027588,0.0,457.9503880661037,0.4949874999983876 +21,1526.9093204634178,0.9328909854671869,0.0,460.1817961168851,0.4973993749990768 +22,1529.5480557755704,0.9345031652821568,0.0,460.97706138846974,0.4982589579994965 +23,1524.9894245219973,0.9317179926818372,0.0,459.6031755329121,0.4967739580024499 +24,1540.853307819904,0.9414102995692096,0.0,464.38425205892594,0.5019417080002313 +25,1520.174211377246,0.9287760570504024,0.0,458.151960713577,0.495205374998477 +26,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.4972079580002173 +27,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.4952220829982252 +28,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.495454833999247 +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731 +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064 +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738 +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141 +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031 +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806 +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741 +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907 +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344 +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595 +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087 +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484 +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554 +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421 +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195 +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687 +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761 +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689 +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782 +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762 +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611 +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179 +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539 +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082 +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504 +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451 +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206 +27,2420.701363746525,3.272075332025206,80.19923415841373,498.3237176579205,0.5071317910005746 +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987 +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072 +0,2413.455554111883,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306 +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237 +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544 +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555 +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645 +5,2400.607102267664,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602 +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546 +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905 +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967 +9,2419.322533895495,4.473549974361046,80.79097714890844,502.7068321934972,0.5066046669999196 +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114 +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656 +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344 +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755 +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583 +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172 +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128 +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602 +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134 +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.9287563027167,0.5128748340030143 +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.2933673761707,0.5071957499967539 +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831 +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194 +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012 +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208 +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382 +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622 +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875 +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928 +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759 +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887 +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971 +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208 +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851 +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478 +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485 +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799 +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703 +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879 +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654 +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245 +11,2434.911182100675,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574 +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438 +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585 +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624 +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299 +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.5810589754782,0.5055243339993467 +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575 +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045 +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954 +20,2450.440055490727,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001 +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975 +22,2443.288889685493,5.003412429886074,75.68075489973373,505.7754127800068,0.505718665997847 +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681 +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135 +25,2480.855628025912,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902 +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095 +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126 +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983 +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049 +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734 +1,1498.847619915133,2.2333049533939846,0.0,456.1275370484073,0.4971277910008211 +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.4964403749982011 +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377 +4,1497.800909311091,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296 +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.4962088749998656 +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006 +7,1487.434284612173,2.216298916270418,0.0,452.654244332006,0.4933422920003067 +8,1508.8235499563525,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729 +9,1496.828313791734,2.230296157631237,0.0,455.5130241944155,0.4964580410014605 +10,1497.546140555687,2.231365730045613,0.0,455.73147238722646,0.4966961249992891 +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964 +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341 +13,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.4960290000017266 +14,1494.2857789928514,2.2265077434621947,0.0,454.73928300801,0.4956147500015504 +15,1492.916332152243,2.224467247569281,0.0,454.3225345632543,0.4951605409987678 +16,1501.7675380811677,2.2376556743192237,0.0,457.0161230952874,0.4980962500012538 +17,1493.492579873052,2.22532586513131,0.0,454.4978975889082,0.4953516670029785 +18,1494.308895111859,2.226542186818809,0.0,454.74631767803857,0.4956224170018686 +19,1491.9323097299357,2.223001039716801,0.0,454.0230780221598,0.4948341669987712 +20,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469 +21,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.4962799999993876 +22,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.4968130000015662 +23,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199 +24,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731 +25,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.495579041999008 +26,1494.5827579360664,2.22695024644657,0.0,454.82965928917696,0.4957132499985164 +27,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.4949876249993394 +28,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.4940982500011159 +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109 +1,2362.707427351115,3.053665668998252,75.27949714443517,505.7135884006235,0.5069546670019918 +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826 +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.8357095856616,0.5080795419999049 +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101 +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.7861271535494,0.5090322920004837 +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142 +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332 +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337 +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512 +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.7341297606933,0.508980167000118 +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.0986054113508,0.5083430830018187 +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818 +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084 +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371 +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821 +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582 +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027 +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168 +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.1857207289548,0.5074279579966969 +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884 +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119 +22,2355.571678502875,3.044443117349149,75.05214119725946,504.1862536514308,0.5054235839998 +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808 +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835 +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.6577049757748,0.5119109170009324 +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616 +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251 +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333 +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061 +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.4955833330022869 +1,1562.7387326973612,1.926641438972196,2.092731218193937,449.07354505974337,0.4933393750034156 +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927 +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056 +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994 +5,1567.5576911020446,1.932582550407452,2.099184494408094,450.458336188937,0.4948606670004665 +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495 +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.4934135000003152 +8,1572.8194619481285,1.9390695885427025,2.1062307599687973,451.9703753018757,0.4965217499993741 +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045 +10,1561.3753115790362,1.9249605286764608,2.0909054018382247,448.68174805477713,0.4929089580000436 +11,1564.2604044990444,1.9285174505461704,2.0947689549035986,449.5108174816151,0.4938197500014212 +12,1566.0254582717266,1.9306935185409744,2.0971326149669207,450.018028916473,0.494376958002249 +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921 +14,1568.229238167961,1.933410475369152,2.10008379221132,450.6513140778545,0.4950726669994765 +15,1568.8164427249465,1.9341344176436792,2.1008701433026173,450.82005503663623,0.4952580409990332 +16,1563.710683035462,1.927839719758886,2.0940327990484455,449.35284778311006,0.4936462090008717 +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454 +18,1560.7671180085997,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284 +19,1563.612085984862,1.9277181631867784,2.093900763461501,449.32451462279414,0.4936150829998951 +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719 +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155 +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.4957214999994903 +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.4943114170018816 +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.4936536669993074 +25,1556.033423900803,1.9183747175310144,2.083751848352654,447.146686315548,0.4912225830012175 +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.493544416000077 +27,1574.1810331293302,1.9407482181209723,2.1080540989934704,452.3616407030591,0.4969515829980082 +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807 +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664 +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817 +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246 +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286 +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.1346176915523,0.5108064580017526 +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325 +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404 +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.9411894195198,0.509611458001018 +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942 +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001 +10,2442.064002544568,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774 +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285 +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915 +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681 +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428 +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787236,0.5053130829983274 +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368 +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215 +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688 +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261 +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151 +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867 +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316 +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.4320289082005,0.5040950420006993 +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234 +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785 +26,2406.404834514243,3.097979270904169,78.14158352461473,500.9168823241752,0.5015765830030432 +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403 +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163 +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..abcbda028 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/cleaned/mac/without_smell.csv @@ -0,0 +1,891 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.0633631250020698 +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774 +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.0619897500000661 +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.0622673330035468 +4,344.6413629741717,1.1293182672630917,9.864927216974651,62.4778723741728,0.0624052500024845 +5,350.37501142418506,1.148106244065371,10.029045720218097,63.51728956138127,0.0634434590028831 +6,331.7819094104552,1.0871805050072745,9.496841470210605,60.146662644667146,0.0600767500000074 +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.0627374579999013 +8,344.36385060606943,1.1284089167893565,9.856983773130557,62.42756389649351,0.062355000001844 +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.0639817500014032 +10,333.26358795573077,1.0920356582974986,9.539252662186971,60.4152668605175,0.0603450419985165 +11,344.4812065706353,1.1287934679454126,9.860342940581988,62.44883862368592,0.0623762499999429 +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.059838374996616 +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.0641008340026019 +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.0602028339999378 +15,332.94188901480146,1.0909815175889794,9.530044433056672,60.3569480760256,0.0602867910019995 +16,331.5582427131216,1.0864475956289643,9.490439291229483,60.106115511120066,0.0600362499972106 +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.0640001250030763 +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.0596638749993871 +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.0622371659992495 +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.062508709001122 +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.0640984580022632 +22,353.40509298276,1.1580351928887662,10.115778008469515,64.06659405364027,0.0639921250003681 +23,374.3218432757152,1.2265750454292903,10.714493779191155,67.85846060154398,0.0677795839983446 +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.0640302499996323 +25,352.0352477660601,1.1535464942218625,10.07656790540862,63.81826340092126,0.0637440829996194 +26,353.2720858728606,1.1575993561755262,10.111970846592095,64.04248202841661,0.0639680410022265 +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.0626107079988287 +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.0622674580008606 +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.0635365420021116 +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.0593550839985255 +1,359.1743921729426,0.2932833904515045,9.450242581215146,59.406180088121424,0.0579962080009863 +2,369.50288557151976,0.3017171085232877,9.721995719083717,61.1144765375504,0.0596639590003178 +3,367.9933193312075,0.3004844741408879,9.68227750009528,60.86479959542653,0.0594202079992101 +4,368.5615394097468,0.3009484535191182,9.697227946727144,60.95878119615029,0.0595119589997921 +5,348.39381726937063,0.2844805258051475,9.166594720388083,57.62311094919821,0.056255458999658 +6,365.2779196413032,0.2982672179977979,9.610832579929044,60.41568204555396,0.0589817500003846 +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.0610690840003371 +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.0594197909995273 +9,361.874829413902,0.2954884290260495,9.521293824172709,59.85282290160982,0.0584322499998961 +10,366.4269936562932,0.2992054929147739,9.641065882809384,60.605734842625886,0.0591672920018027 +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.0612499999988358 +12,372.0247519362511,0.3037763352772872,9.788348581157033,61.53158435672162,0.060071167001297 +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.0578553330014983 +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.0580023749971587 +15,374.3120558659924,0.3056440303750618,9.848529867640885,61.90989637485975,0.0604404999976395 +16,367.8761650716482,0.3003888119801155,9.679195052692611,60.84542269330562,0.0594012909969023 +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.0573772919997281 +18,350.9303921671755,0.2865517627930121,9.233334578885946,58.04265150796235,0.0566650420005316 +19,373.7742933228857,0.3052049210584259,9.834380789660392,61.82095234327895,0.0603536670023459 +20,375.95244447471293,0.3069834875950296,9.891690155839845,62.18121087619322,0.0607053750027262 +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.0602809169977263 +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292 +23,366.183655668,0.2990067955917256,9.63466341351116,60.56548759596843,0.0591280000007827 +24,382.3439433397997,0.3122024578169295,10.059856974101065,63.238342288918055,0.0617374159992323 +25,366.5838826179828,0.2993336003957399,9.645193790529396,60.63168372460376,0.0591926250017422 +26,361.2944833317239,0.2950145481750603,9.506024330085278,59.756835702570555,0.0583385410027403 +27,363.4254185231531,0.2967545605796025,9.562091396453855,60.10928488184614,0.058682625000074 +28,370.6326000446566,0.3026395754311295,9.75171965278084,61.30132733454991,0.0598463749993243 +29,390.4818932754045,0.3188474904262965,10.273974691513995,64.58433056079316,0.0630514580007002 +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.0633080840016191 +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.0627279159998579 +2,365.8669906637541,0.2818969397389996,11.45206317689686,66.06959525132802,0.0661166249992675 +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.0625610419992881 +4,345.2937631135986,0.2660454690271394,10.80809717922754,62.35440680323581,0.0623987920007493 +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.0622929999990446 +6,352.2442682349835,0.2714007652778453,11.025656089412466,63.609554361995,0.0636548330003279 +7,336.95937238273893,0.2596239024426381,10.547221036732171,60.84935213499331,0.0608926660024735 +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.0629278330015949 +9,337.41659112344763,0.259976185012769,10.561532516143744,60.93191836236774,0.0609752910022507 +10,334.9993053726752,0.2581136899722047,10.485868655120818,60.49539608723549,0.0605384580012469 +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.0598098330010543 +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.061172333000286 +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.0605532500012486 +14,352.943817073241,0.2719397608192168,11.047552783280684,63.73588144200393,0.0637812500026484 +15,345.08740182486946,0.2658864696714779,10.801637830403791,62.31714132925264,0.0623615000004065 +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.0611053329994319 +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.0642670829984126 +18,352.07434056761844,0.2712698376712845,11.020337155395934,63.57886820420732,0.0636241249994782 +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.0631787919992348 +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.0635585829986666 +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.0643522919999668 +22,345.28015583657924,0.2660349847532152,10.807671255599368,62.35194955153482,0.0623963329999242 +23,344.455645883133,0.26539970789416,10.781863133200252,62.20305653769376,0.0622473340008582 +24,346.3271743070028,0.2668417022494483,10.84044415388384,62.54102396471446,0.0625855420003063 +25,339.3314757733539,0.2614515849163855,10.621470637228162,61.277715214777864,0.0613213340002403 +26,351.40222764763104,0.2707519812367377,10.999299237742472,63.45749560236042,0.063502666002023 +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.0622202090016799 +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.0623814999999012 +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.0635208330022578 +0,240.42885516643568,0.0,0.0,53.41728600341795,0.0619687500002328 +1,228.54878409089892,0.0,0.0,50.77783095987262,0.0589067500004603 +2,213.1201140526296,0.0,0.0,47.34996586640836,0.0549301249993732 +3,237.0842698478049,0.0,0.0,52.67420268921069,0.0611067079989879 +4,238.04340130189988,0.0,0.0,52.88729774039662,0.0613539170008152 +5,237.9774440222685,0.0,0.0,52.872643680393544,0.0613369170023361 +6,233.25082854773103,0.0,0.0,51.82250778694279,0.0601186670028255 +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123 +8,239.07317300806952,0.0,0.0,53.11608729108766,0.0616193330024543 +9,234.15515335358452,0.0,0.0,52.02342616989155,0.0603517499985173 +10,235.7027246756318,0.0,0.0,52.3672578612385,0.060750625001674 +11,231.79378555125,0.0,0.0,51.49878922825138,0.0597431250025692 +12,238.1722430460066,0.0,0.0,52.91592315763018,0.0613871250025113 +13,238.895348273858,0.0,0.0,53.076579076987144,0.0615734999992128 +14,245.18230748969597,0.0,0.0,54.473384374303734,0.0631939169979887 +15,239.73953556253844,0.0,0.0,53.26413640578063,0.0617910829969332 +16,237.05193913270705,0.0,0.0,52.6670196118971,0.0610983749975275 +17,238.06603239878575,0.0,0.0,52.89232580482793,0.0613597499977913 +18,238.4611281800858,0.0,0.0,52.98010621843028,0.061461582998163 +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632 +20,236.73621713579013,0.0,0.0,52.59687407052601,0.0610169999999925 +21,239.5788481011822,0.0,0.0,53.22843566564073,0.0617496669983665 +22,240.51291579071105,0.0,0.0,53.43596217440181,0.0619904160012083 +23,237.5108932275132,0.0,0.0,52.76898774765905,0.0612166670034639 +24,237.61047320422924,0.0,0.0,52.79111193110106,0.0612423330021556 +25,235.96202604191544,0.0,0.0,52.42486814780024,0.0608174580011109 +26,250.0384126471728,0.0,0.0,55.55228964081196,0.0644455420006124 +27,216.35622292125151,0.0,0.0,48.068948423030825,0.0557642080020741 +28,237.4518847231131,0.0,0.0,52.75587753194059,0.0612014580001414 +29,235.66344128962425,0.0,0.0,52.35853007411787,0.0607405000009748 +0,393.6707450554323,0.3406635038555142,11.684758182244138,66.53158230298193,0.0646891249998589 +1,373.5110006248911,0.3232182421468424,11.086385705636696,63.12452269127834,0.0613764169975183 +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.0637857080000685 +3,390.9730568158952,0.3383290557423807,11.60468661196366,66.07566458648697,0.0642458330003137 +4,408.3709649248352,0.3533843587096185,12.121083503739916,69.0159652559885,0.0671047080031712 +5,401.99100267653665,0.3478634498758537,11.931716330741784,67.93773176075425,0.0660563339988584 +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.0639412919990718 +7,383.0780350607198,0.3314970881453096,11.37035012338412,64.74138131477898,0.0629484999990381 +8,386.1588591424435,0.3341630833700618,11.46179375959312,65.26205018217308,0.0634547499976179 +9,361.0748654835688,0.3124566160293949,10.717261929808243,61.02277711054082,0.0593328750001092 +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331 +11,384.8334749313357,0.3330161603767183,11.422454300921435,65.03805612157308,0.0632369589984591 +12,403.7246257549707,0.349363642917074,11.98317295205564,68.23071946170457,0.0663412079993577 +13,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.0640180000009422 +14,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.0618219169991789 +15,374.7899823012124,0.3243250106448705,11.12434786511906,63.34067457894322,0.0615865829968242 +16,399.8438036989407,0.3460053683791456,11.867984135404695,67.57484844444714,0.0657035000003816 +17,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.0624640830028511 +18,390.02142447908176,0.3375055594315349,11.576440688501648,65.91483575697877,0.0640894579992163 +19,398.35714556030706,0.3447188867776973,11.82385781647502,67.32359858768429,0.0654592079990834 +20,394.6685243299055,0.3415269334803613,11.714373818376393,66.70021010871457,0.0648530830003437 +21,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.0662763340005767 +22,374.6576210026007,0.3242104716187268,11.120419176522333,63.31830510713735,0.061564833002194 +23,387.9335659886732,0.3356988283044939,11.514469810844142,65.56198116786766,0.0637463750026654 +24,384.9361629864913,0.3331050216220935,11.425502241637808,65.05541072279487,0.0632538329991803 +25,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.0623021250030433 +26,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.0612962499981222 +27,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.0624532500005443 +28,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.0630722080022678 +0,355.6184613008034,1.350364386940586,9.688864476298706,63.33208974751349,0.0633423750005022 +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.0620757910000975 +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.0616344580012082 +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.0619627089981804 +4,346.1149788313074,1.314277496986168,9.429941040875756,61.639614608651286,0.0616496250004274 +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.0632156659994507 +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.059909499999776 +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.0650283340000896 +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.0629628749993571 +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.062907957999414 +10,355.0965683959524,1.3483826405769976,9.67464544613996,63.239145843061195,0.0632494160017813 +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.8239970686508,0.0608338750025723 +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.0635719999991124 +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.0622212499984016 +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.0643149170027754 +15,362.2671094199502,1.3756108198972858,9.870007632763024,64.5161474531827,0.0645266249994165 +16,347.40601521064906,1.3191798565052175,9.465115470424935,61.86953527009471,0.0618795830014278 +17,352.59402676578674,1.3388799193688503,9.6064634214715,62.79346821839908,0.0628036659982171 +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.0598259170001256 +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.0626170420000562 +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.0627399590011918 +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.0636519170002429 +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.0601820419979048 +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.0630970829988655 +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284 +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.0654218749987194 +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.0600325829982466 +27,355.2156405220305,1.3488347845909645,9.677889579440173,63.260351397316235,0.0632706249998591 +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.0624030420003691 +29,347.1143112188389,1.3180721899329368,9.45716796276882,61.81758570785473,0.0618276250024791 +0,336.97433817066894,0.3673290773835455,10.452181929186342,62.212188287776854,0.0631597079991479 +1,330.7703056824168,0.3605661839764725,10.259746871330536,61.066800068015304,0.0619968749997497 +2,334.2737986243397,0.3643852725069603,10.368417299516231,61.713614789133366,0.0626535410010546 +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.0619690830026229 +4,339.2787336454407,0.3698410534238279,10.523659065605283,62.6376256844174,0.0635916249993897 +5,326.52765323109134,0.3559413522487369,10.12814938671406,60.28352174903609,0.0612016669983859 +6,347.80605915722936,0.3791365227162345,10.7881574191074,64.21194016548591,0.06518991700068 +7,312.5587912483423,0.3407141714133153,9.694866877487971,57.70459103118241,0.0585834580015216 +8,375.7459972937605,0.4095932980112343,11.65479111613785,69.37021038135724,0.0704267500004789 +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.0596813330012082 +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925 +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.0633084999972197 +12,337.0256901842581,0.3673850552003606,10.453774752519353,62.22166889438835,0.0631693329996778 +13,317.6766526799566,0.3462930511821943,9.853611365456985,58.64945039567527,0.0595427080006629 +14,328.40589370391314,0.3579887851296248,10.186408158688415,60.630282426953734,0.0615537089979625 +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.0640058329991006 +16,331.6672985956367,0.3615439782530971,10.287569563019948,61.23240286232,0.0621649999993678 +17,337.1901926729352,0.3675643761175589,10.458877247708722,62.252039337001115,0.0632001659978414 +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.0598262499988777 +19,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.0641347500022675 +20,337.3818197078384,0.3677732649674187,10.464821084982006,62.28741751220919,0.0632360829986282 +21,338.1547675106831,0.3686158401166896,10.488796177865805,62.43011910339933,0.0633809579994704 +22,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.0613165419999859 +23,335.28106096612464,0.3654832693119979,10.399660299514125,61.8995755207502,0.0628423339985602 +24,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.0611921659983636 +25,330.93325561554514,0.3607438124834998,10.264801209757769,61.09688387788729,0.0620274169996264 +26,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.0632555420015705 +27,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.0624289170009433 +28,344.64868676424874,0.3756947333670336,10.690222867625591,63.6290262057076,0.0645981249981559 +0,353.39992586587454,1.1889836975204853,9.545840542950184,63.42378752202132,0.0643312920001335 +1,352.47862696982486,1.1858840665138777,9.52095493401142,63.25844434804028,0.064163582999754 +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.0613242500003252 +3,347.78700620443374,1.170099511405862,9.39422750585849,62.41645107984983,0.0633095420016616 +4,349.67239785603925,1.1764427496838772,9.445154647461983,62.75481753313711,0.0636527499991643 +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.058231708000676 +6,343.4510799857494,1.155511660050104,9.277107899259406,61.6382934089584,0.0625202499977604 +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.0598008329980075 +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774 +9,350.0937884628729,1.1778604821878835,9.456537014137009,62.8304434355651,0.0637294580010348 +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.0639502499980153 +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.0675257500006409 +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.0621744999989459 +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.0641838340015965 +14,350.38540207791414,1.1788415911493797,9.464413917513587,62.882778590739754,0.0637825419980799 +15,348.5869825268699,1.1727909630337834,9.415836017499805,62.56002079954495,0.0634551660004945 +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.062153541999578 +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.0602440830007253 +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.0638145829980203 +19,346.13004814041824,1.1645248183134325,9.34947068417356,62.1190810226051,0.0630079170005046 +20,348.3924269467375,1.172136397494551,9.410580791313391,62.525104403495035,0.063419750000321 +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.064945041998726 +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.0636446669996075 +23,350.6754061403116,1.179817284909248,9.472247344557106,62.934824883587595,0.0638353329995879 +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047 +25,354.05204084193906,1.191177682348156,9.563455106852338,63.54082094125735,0.0644500000016705 +26,348.6677854950157,1.173062817680049,9.418018621945537,62.57452230310432,0.0634698750000097 +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.0643432079996273 +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307 +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.0573486249995767 +0,361.4635469396571,0.1704534315475134,7.124953438686063,62.82913486841347,0.0632451250021404 +1,355.6449183357349,0.1677095719776171,7.010260108664397,61.81774823094969,0.0622270419989945 +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846 +3,359.06288961197356,0.1693213664113805,7.077633115995706,62.41185565923486,0.0628250829977332 +4,356.22239586901475,0.1679818899693552,7.02164300071905,61.91812464270435,0.0623280830004659 +5,358.4918360781341,0.1690520777506998,7.066376849979254,62.31259585890797,0.0627251660007459 +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.0637023749986838 +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.0603141669998876 +8,331.99176104587264,0.1565555791030239,6.5440232065064015,57.706386457374634,0.0580884590017376 +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839 +10,355.5541882946238,0.1676667868973987,7.008471692311268,61.80197765038118,0.0622111670018057 +11,353.1251946264822,0.1665213593447525,6.960592820610656,61.379773054475784,0.0617861669998092 +12,349.0251905083527,0.1645879423315819,6.879775989460126,60.66711554342111,0.061068791001162 +13,360.0216334165911,0.1697734760994959,7.09653130095893,62.578503290274206,0.0629928339985781 +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.0626576660033606 +15,358.13035037901693,0.1688816138729684,7.059251459890081,62.249762873576174,0.0626619169997866 +16,362.65327374016647,0.1710144646515922,7.148404622436555,63.03593167057689,0.0634532910007692 +17,356.01021613514007,0.1678818335070923,7.017460640596461,61.88124383071425,0.0622909580015402 +18,356.18572663045944,0.1679645980526546,7.020920198600964,61.911750842208505,0.0623216669991961 +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.0622395829996094 +20,344.49440292303365,0.1624513830628282,6.790467812026222,59.8795797969585,0.0602760410001792 +21,361.4361650173394,0.1704405192008579,7.124413702595863,62.82437537743625,0.0632403339986922 +22,356.7505848359848,0.1682309652154978,7.032054346007811,62.00993377843252,0.0624205000021902 +23,339.33422020631144,0.16001802329827,6.688753373867688,58.98264338774234,0.0593731659973855 +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.0574885409987473 +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.0593831249971117 +26,340.30344013425093,0.1604750731558289,6.7078580579136515,59.15111196523856,0.0595427500011283 +27,342.4523851103312,0.1614884396445964,6.750216777144131,59.52463885299824,0.0599187500010884 +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.0670434999992721 +29,331.530252230005,0.1563379478590988,6.5349262205103305,57.62616758086382,0.0580077089980477 +0,353.42379519516624,0.3071766447857553,10.170960016239452,63.756219162198995,0.0638574579970736 +1,344.73567152495644,0.2996254025808409,9.920929996565622,62.188916891223435,0.0622876669985998 +2,351.2821477228619,0.3053152418643898,10.109326897287575,63.369874644742254,0.0634705000011308 +3,345.7318892341187,0.3004912605607984,9.949599516346437,62.36863052528573,0.0624676660008844 +4,351.83422142570913,0.3057950741507853,10.125214677437114,63.46946650151855,0.063570250000339 +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.0641249580003204 +6,366.573482495449,0.3186056342307138,10.54938655563919,66.12836941588593,0.0662333750005927 +7,348.3338361205126,0.3027527305731157,10.024479301198722,62.83801119006447,0.0629377919976832 +8,338.34369848808836,0.2940698489997871,9.736979444659616,61.035830881289144,0.0611327499973413 +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.0620771249996323 +10,351.68294492465503,0.3056635928847798,10.120861186629378,63.442176834307645,0.0635429169997223 +11,347.70289474870646,0.3022043508197352,10.006321838253456,62.724191925696154,0.0628237919991079 +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049 +13,345.35761370997443,0.300165960732957,9.938828477602357,62.301112738795965,0.0624000410025473 +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.0660244169994257 +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.0636525410009198 +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.0592579170006501 +17,347.8889892534473,0.3023660939914075,10.011677334382162,62.75776261954993,0.0628574160000425 +18,342.946615110539,0.29807045253451,9.869443872809333,61.86617837049608,0.0619644159996823 +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.0605625409989443 +20,326.0613287092618,0.2833946845372627,9.38351288801159,58.820141190622984,0.0589135420013917 +21,345.1205513106695,0.2999599190532134,9.932006208650844,62.258347643489195,0.0623572080003214 +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113 +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.0601117920014075 +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.0609711670003889 +25,345.27367635482636,0.3000930069718432,9.936412897512144,62.28597078037814,0.0623848750001343 +26,358.1507803712324,0.3112850819257451,10.306994934874671,64.60894811525466,0.0647115410029073 +27,318.84747151039136,0.2771247941664435,9.175909851288909,57.51879061143516,0.0576101250007923 +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.0628379999980097 +29,346.3464648714801,0.3010254161123439,9.967286000164275,62.47949747753983,0.0625787089993537 +0,377.1528286364101,0.2364171040077792,5.944201472195592,62.00882899404038,0.0626814159986679 +1,380.0216765811429,0.2382154326200412,5.989416591589608,62.48050489862795,0.0631582079986401 +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744 +3,384.3681985530305,0.2409400367037891,6.057920922838127,63.19512962687955,0.06388058399898 +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.0627903750028053 +5,381.03628983828423,0.2388514398556451,6.005407630656221,62.64732051070922,0.0633268329984275 +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.0620384590001776 +7,375.29157816409594,0.2352503848077972,5.914866818024616,61.702815215302245,0.0623720830008096 +8,373.864807786008,0.2343560181339712,5.892379884511276,61.46823561342445,0.0621349590001045 +9,366.9212068192651,0.2300034429779578,5.782943709160084,60.32661732964724,0.0609809580018918 +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666 +11,376.9342197202937,0.2362800696733281,5.940756037500822,61.97288684574722,0.0626450839990866 +12,379.717825115604,0.2380249642526397,5.984627672637799,62.430547766835225,0.0631077090001781 +13,366.6025595729651,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667 +14,363.89742763866343,0.2281079961915146,5.7352867613866545,59.82946871537442,0.0604784169991035 +15,369.6993006425364,0.2317448826450931,5.82672847793377,60.78337207662728,0.0614426669999375 +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.0611225419997936 +17,350.4494712628639,0.2196781856219259,5.523337238494139,57.61844982883658,0.0582434160023694 +18,349.70537539320884,0.2192117513882387,5.5116097491900025,57.49611079268662,0.0581197499996051 +19,355.4250143168058,0.2227970896586048,5.601755397130637,58.436493801885504,0.0590703329980897 +20,355.92618062609483,0.2231112442359329,5.609654140789172,58.51889205959614,0.0591536249994533 +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.0605397500003164 +22,374.2340939261083,0.2345875040281864,5.898200101280116,61.52895105653575,0.0621963330013386 +23,349.4985417056227,0.2190820983199927,5.50834990061696,57.46210464507238,0.0580853749997913 +24,363.71014915375633,0.2279906012426161,5.732335116957206,59.79867769734903,0.060447292002209 +25,352.26058825141075,0.2208134788000246,5.551881752686334,57.9162210109779,0.0585444169992115 +26,380.4172990516413,0.2384634273628986,5.995651887981451,62.5455503768974,0.0632239590013341 +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.0632881659985287 +28,366.6672421192952,0.2298442459778871,5.778941041729735,60.28486223077155,0.0609387500007869 +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893 +1,348.55779789257946,0.2332158846538,10.361448589618831,61.6356266585043,0.0617304580009658 +2,358.33485910912873,0.2397576002450679,10.652087668030877,63.36450863619653,0.0634620000018912 +3,346.03077541432424,0.2315250839132354,10.286328728145175,61.188772177069374,0.0612829159981629 +4,319.4310664622174,0.2137275344327587,9.49560902979828,56.485134100086235,0.0565720409977075 +5,354.87217509222506,0.2374407594767325,10.549153742466258,62.75220071885074,0.06284874999983 +6,354.41904767108167,0.2371375772985635,10.535683791407608,62.672074000334646,0.0627684999999473 +7,358.9152630876629,0.2401459416568189,10.669341122181528,63.46714172358787,0.0635647909984982 +8,339.35785444139424,0.2270603117080634,10.087965277315387,60.00879666570248,0.0601011250000738 +9,340.8776918175967,0.2280772168536777,10.1331449202134,60.27755016847198,0.0603702920016075 +10,354.0640272849366,0.2369000373728308,10.525130231850056,62.60929559139101,0.0627056250013993 +11,354.00708848272853,0.2368619402962244,10.523437633160828,62.59922707828788,0.0626955409970833 +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.0627899579994846 +13,343.10921309321594,0.2295703012476115,10.199480526858167,60.67215104401161,0.0607655000021623 +14,340.4605604865636,0.2277981192320727,10.120745011596377,60.20378865419067,0.0602964169993356 +15,356.3056669698578,0.2383998918743074,10.591766624701371,63.00568570963839,0.0631026249975548 +16,320.99748703681513,0.2147756078434052,9.542173434185576,56.762124930042816,0.0568494580002152 +17,354.8119444278913,0.2374004598542572,10.547363287810573,62.74155010433942,0.0628380829984962 +18,351.575824142101,0.2352352101887504,10.451164338385912,62.16930554988405,0.0622649580000143 +19,343.1440347346409,0.2295935999945026,10.200515656898617,60.6783085699757,0.0607716670019726 +20,356.72044373402287,0.2386774140831734,10.60409653998099,63.079030864838685,0.0631760830001439 +21,350.96718789534884,0.2348279789014951,10.43307163405214,62.061680138252285,0.0621571669980767 +22,352.7963997956422,0.2360518828684281,10.487447938868735,62.3851404723703,0.0624811250017955 +23,353.666658527277,0.2366341626544579,10.513317797933777,62.539028701535315,0.0626352500003122 +24,364.4598431575399,0.2438557543588969,10.83416280080242,64.44759222342276,0.0645467499998631 +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554 +26,338.0789340735709,0.2262046012727008,10.04994728511571,59.78264462207094,0.0598746250034309 +27,355.0131047850516,0.2375350538611509,10.553343107259709,62.77712137758989,0.0628737090009963 +28,329.98898622367545,0.2207917132064354,9.809460401028776,58.35209563312938,0.058441875000426 +29,353.84475877944084,0.2367533274188573,10.518612118180664,62.5705222464123,0.0626667920005275 +0,246.26397969829708,0.0,0.0,54.43476538811038,0.0630743330002587 +1,242.4809969916464,0.0,0.0,53.59856605292504,0.0621054169969284 +2,239.1234239616921,0.0,0.0,52.85640026650788,0.0612454589972912 +3,235.2940732640157,0.0,0.0,52.009951642262514,0.060264666997682 +4,238.8820026774676,0.0,0.0,52.80303594184067,0.0611836249991029 +5,234.2631621094942,0.0,0.0,51.782076632278866,0.0600006249987927 +6,239.56428704081335,0.0,0.0,52.95384967144987,0.0613583750018733 +7,240.1634400598459,0.0,0.0,53.08628785450275,0.0615118329988035 +8,240.7378668708275,0.0,0.0,53.213260498763326,0.0616589579985884 +9,239.34922398149791,0.0,0.0,52.906311630393986,0.0613032920009573 +10,242.8128624545116,0.0,0.0,53.67192237013237,0.0621904159997939 +11,232.12976143215943,0.0,0.0,51.31050476256479,0.0594542079998063 +12,245.03915532867256,0.0,0.0,54.164027348045266,0.0627606250018288 +13,236.2355085499188,0.0,0.0,52.218048697215536,0.0605057920001854 +14,239.34987210662737,0.0,0.0,52.906454893486725,0.0613034580019302 +15,238.92934287039128,0.0,0.0,52.81350012867948,0.0611957500004791 +16,238.7121636534104,0.0,0.0,52.7654943271895,0.0611401249989285 +17,240.5050741873832,0.0,0.0,53.161803460170496,0.0615993339997658 +18,239.09170116971927,0.0,0.0,52.84938818646023,0.0612373340009071 +19,242.39574953227935,0.0,0.0,53.57972275535363,0.0620835830013675 +20,239.42991118529753,0.0,0.0,52.92414691842122,0.0613239580015942 +21,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058 +22,241.4102263831343,0.0,0.0,53.36188041611268,0.0618311660000472 +23,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936 +24,226.55614444164797,0.0,0.0,50.07849944204095,0.0580266659999324 +25,244.4723732267422,0.0,0.0,54.038744508132766,0.0626154580022557 +26,238.2831737209998,0.0,0.0,52.670669390334176,0.0610302500026591 +27,242.49953873943076,0.0,0.0,53.602664564172066,0.0621101659999112 +28,238.44536412992605,0.0,0.0,52.70652033722831,0.0610717910021776 +0,330.77706061011514,0.2608137674828426,10.33474553650764,61.4542439631448,0.0611662920018716 +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.0624705829977756 +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886 +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.0622007080019102 +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.0638947090010333 +5,339.8455414183246,0.2679641564504826,10.618079699350377,63.13905436364497,0.0628432080011407 +6,345.3511691216465,0.2723052782350849,10.79009665006524,64.16193118414189,0.0638612919974548 +7,342.53413726212943,0.2700840822094456,10.702081757549283,63.638561870600626,0.0633403749998251 +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.0631592919999093 +9,311.5008417190181,0.2456146987731268,9.732482438885151,57.872963398418015,0.0576017919993319 +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.0591447920014616 +11,313.26424396705994,0.2470051204155804,9.787577896467376,58.20058149792115,0.0579278750010416 +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.0641434579993074 +13,340.49019830223455,0.2684724607153436,10.638221255845492,63.258823556052846,0.062962415999209 +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.0633342080000147 +15,339.41178997419223,0.2676221486096528,10.604527638657494,63.058468766149446,0.0627629999980854 +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.063857832999929 +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.0636132500003441 +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.0645286670005589 +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.0640427080033987 +20,341.9755514445675,0.2696436439539266,10.684629391674344,63.53478360664397,0.0632370830026047 +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.0615041249984642 +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.0586524169993936 +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.0636538750004547 +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.0640091250024852 +25,343.06680876474195,0.2705040873366781,10.718724460715867,63.73752557870477,0.0634388750004291 +26,345.3649158389056,0.272316117357702,10.79052615029894,64.16448515240853,0.0638638339987665 +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.0640631250025762 +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.0625225420008064 +29,339.69705314558837,0.2678470752182837,10.613440355524494,63.11146709830811,0.0628157499995722 +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452 +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.0633994999989226 +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.0633070830008364 +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.0625170000021171 +4,341.2276327610607,1.1792449629834103,10.514934253268745,61.61554931588319,0.0613077500020153 +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.0623294999968493 +6,346.9583356729764,1.1990496384973743,10.691525943268257,62.65034361148781,0.0623373750022437 +7,349.52325272198976,1.2079137081685354,10.770563897836109,63.11349125180597,0.0627982089972647 +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.0630362500014598 +9,349.6454613517626,1.208336047678166,10.774329758463644,63.13555849118416,0.062820166000165 +10,380.9826285174108,1.3166338318735518,11.739985000872505,68.79411771539309,0.0684504579985514 +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.0568042079976294 +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.0622269169980427 +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.0617767499970796 +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.0641705000016372 +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.0611342090014659 +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687 +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.0623579169987351 +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578 +19,357.74395683758917,1.2363235524770289,11.02388500958684,64.59790561692476,0.0642752079984347 +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.0639412499986065 +21,350.5608098293886,1.2114993907898617,10.802536234542933,63.300843168770264,0.0629846250012633 +22,352.93602165071184,1.2197078601733349,10.8757284198789,63.729735694056735,0.0634113750020333 +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.0570584579982096 +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.0630519169972103 +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.0629439170006662 +26,347.9465017031017,1.202464631017727,10.7219762932414,62.82877697067623,0.0625149170009535 +27,352.52809188308873,1.2182981000087545,10.863158058411392,63.65607572545742,0.0633380830004171 +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023 +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.0611057499991147 +0,377.80027211049406,0.3116878218896733,10.909073766138569,64.90033091347199,0.0646291250013746 +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.062719665998884 +2,365.138799454798,0.3012420199003742,10.543470696513095,62.72528281036681,0.062463166002999 +3,372.9749204140684,0.3077068735655527,10.769740574794348,64.07140900687176,0.063803666998865 +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.0574257089974707 +5,353.0611685087077,0.2912778913354449,10.194726196740575,60.65052981806932,0.0603970830015896 +6,358.20146127741265,0.2955186682094338,10.343153387330185,61.533553802719894,0.0612764170000446 +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.0627197499998146 +8,370.3431490069413,0.3055356440610937,10.69374754213828,63.61931077449885,0.0633534579974366 +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.96508971696144,0.0636977919966739 +10,376.0095517358092,0.3102104652692531,10.85736628442386,64.59271243495337,0.0643227920008939 +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.0631544160023622 +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.0602364999976998 +13,356.8106779834024,0.2943712624301605,10.30299418505562,61.29463842156898,0.0610384999999951 +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.0637497499992605 +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.0652685829991241 +16,368.50737025878874,0.3040211139727838,10.640738989047431,63.30395195388854,0.0630394170002546 +17,375.27104536938856,0.3096011924396825,10.83604173538889,64.46584829244057,0.0641964579990599 +18,361.6927852373143,0.2983990344794049,10.443966206779171,62.133310068267214,0.0618736670003272 +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.0602696669993747 +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.0596034159971168 +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.0610374579991912 +22,365.3711704842491,0.3014337275972355,10.550180465903242,62.76520061302437,0.0625029169968911 +23,360.55117343559215,0.2974571968943376,10.411001891301815,61.93719855333208,0.0616783749974274 +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.0590651249985967 +25,363.9940309949737,0.3002975780506703,10.510415231773464,62.52862902966181,0.062267334000353 +26,358.9745505884595,0.2961564722060808,10.365476527212827,61.66635876824394,0.0614086669993412 +27,374.9619557919834,0.3093461914133147,10.827116699466018,64.41275141206133,0.0641435830002592 +28,361.3880799001845,0.2981476504814062,10.435167766849217,62.0809663335728,0.0618215419999614 +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.063004916999489 +0,350.0910376507284,0.236639364962833,11.25727264751763,63.11509919794418,0.0630889589992875 +1,356.37546692202835,0.2408872410635572,11.459350182023508,64.24806843795162,0.0642214590006915 +2,332.9498947627177,0.2250530381748767,10.706094530319138,60.024860324642134,0.0600000000013096 +3,344.6223300836617,0.2329428650623437,11.08142486653721,62.12918986734226,0.0621034579999104 +4,354.8452791425179,0.2398529310542318,11.410146577294173,63.97220318260727,0.0639457079996645 +5,360.7172223274056,0.2438219926894398,11.598960509369068,65.03080862159774,0.0650038749990926 +6,345.0863790001193,0.2332565327347271,11.096346485809166,62.212849516533666,0.0621870830000261 +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.0630313330002536 +8,348.98767498943727,0.2358935616962206,11.22179372069164,62.91618281240628,0.0628901249983755 +9,350.3400508932428,0.2368076821410486,11.265279736138456,63.1599917939054,0.0631338330022117 +10,345.9441911217454,0.2338363593909055,11.123929668167364,62.36749756897438,0.0623416670023289 +11,351.08109746493335,0.237308582681975,11.289108290442528,63.29358912389249,0.0632673750005778 +12,329.7454850782693,0.2228870602112674,10.603055864336008,59.447163059205174,0.0594225419990834 +13,345.43644252185425,0.2334931535006739,11.10760287367492,62.27595965510834,0.0622501670004567 +14,335.9221662007163,0.2270621053886649,10.80166872777506,60.56070725151963,0.0605356249980104 +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.0625607500005571 +16,343.85677837624013,0.232425400601939,11.056808342920815,61.99117470340289,0.0619654999973136 +17,355.4441283707007,0.2402577151984264,11.429402737296574,64.08016489649461,0.0640536249993601 +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.23394875574533,0.0592094160019769 +19,343.34116662973724,0.2320768797226883,11.04022870680789,61.89821920603703,0.061872582999058 +20,348.2829310492102,0.2354171994345762,11.199132487387695,62.78913019205054,0.0627631249990372 +21,343.4116854085347,0.2321245459501489,11.0424962573428,61.91093246984688,0.0618852909974521 +22,353.14099187217386,0.2387009408174215,11.355344756028764,63.664950929446555,0.0636385830002836 +23,348.2216627188161,0.2353757859242673,11.197162387540146,62.77808461722959,0.0627520839989301 +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.0587976249989878 +25,328.22177318395427,0.2218571274901197,10.554060493458554,59.17246528915051,0.0591479579998122 +26,344.13585700434845,0.2326140400763266,11.065782192202397,62.0414875460717,0.0620157920020574 +27,347.5217742944843,0.2349027056837959,11.174657284672003,62.6519073588067,0.0626259589989786 +28,341.68127822516465,0.2309549003066968,10.986854543161437,61.59897126751471,0.0615734589991916 +29,354.82354305874037,0.2398382388384687,11.409447647601445,63.968284558774464,0.0639417909987969 +0,341.6843896416646,0.2265596975932227,10.162820720610275,60.03831986220403,0.0603289999999105 +1,355.1767007392971,0.2355060059841886,10.56412655414789,62.40909158580999,0.0627112499969371 +2,361.3328929961324,0.2395879748956073,10.747232016745816,63.490813347335944,0.0637982089974684 +3,325.33522572126685,0.2157191039167252,9.676542661407389,57.165562537932175,0.0574423340003704 +4,359.5754915168495,0.2384226996891111,10.69496110034013,63.18201541761446,0.0634879159988486 +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.0637705829976766 +6,362.5121173216168,0.2403698798192021,10.782306037604211,63.69801815208857,0.0640064170002006 +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.0625325840010191 +8,366.4686706564167,0.2429933403992532,10.899986983623648,64.39323520580211,0.0647050000006856 +9,326.0245413625624,0.2161761664808124,9.6970451821393,57.28668411741529,0.0575640419992851 +10,353.9262046474312,0.2346768430929258,10.526932675882676,62.18936341962535,0.0624904579999565 +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.0648867500021879 +12,362.23199716425125,0.2401841413422145,10.773974340207907,63.64879745568685,0.0639569579980161 +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.0621640839999599 +14,349.1769734349746,0.2315277838443518,10.385674875303785,61.35486271875324,0.0616519169998355 +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.0615940830030012 +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.0619958749994111 +17,355.15546194816227,0.2354919232392854,10.563494842447945,62.40535965841063,0.0627075000011245 +18,351.3492284590744,0.2329681348123066,10.450284904437757,61.736555725261255,0.0620354580023558 +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.0613407090022519 +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604 +21,323.2755250958313,0.2143533840741516,9.61528037132623,56.80364677965019,0.0570786659991426 +22,346.4812920955575,0.2297403660764329,10.305496421142848,60.88119701025472,0.0611759580024227 +23,362.6600753923095,0.2404679859568216,10.786706798634572,63.72401627855775,0.0640325409985962 +24,355.4261350672641,0.2356713976954484,10.571545553767258,62.45292038929383,0.0627552910009399 +25,358.8557392353121,0.2379454555884422,10.673553293538694,63.05554573093719,0.063360833999468 +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057 +27,349.93779309502264,0.2320322583750268,10.408304161394062,61.48854846938211,0.0617862500002956 +28,343.8514567140059,0.2279966086007427,10.227276442947606,60.41910127919684,0.060711624999385 +29,341.386570501989,0.2263622235023134,10.153962597103774,59.98598922811306,0.0602764160030346 +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.0610715000002528 +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.0585037499986356 +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.0611541670004953 +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.0613001669989898 +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.0593751670021447 +5,234.91751197548183,0.5667089121020564,0.0,53.77067501297747,0.0606549160002032 +6,236.52417105423336,0.5705847747867131,0.0,54.13842598417459,0.0610697500014794 +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.060860749999847 +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.0579030840017367 +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.061600166001881 +10,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.0624751249997643 +11,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.0611307920007675 +12,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.0609432919991377 +13,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.0610500000002502 +14,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.0608165829980862 +15,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.0616963329994177 +16,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.0619737499982875 +17,236.8819409910412,0.5714478497016745,0.0,54.22031656287064,0.0611621250027383 +18,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.0610076659977494 +19,235.3475795194772,0.5677463958891886,0.0,53.8691139158389,0.0607659580018662 +20,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.061068625000189 +21,238.7517986631784,0.5759586458456127,0.0,54.64831151464549,0.0616449160006595 +22,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.0616773340007057 +23,237.2802187825453,0.5724086447145267,0.0,54.31147905438421,0.0612649589966167 +24,236.2441867895784,0.5699093480094838,0.0,54.074339902311614,0.0609974590006459 +25,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.0610905829998955 +26,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.0587892079965968 +27,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.0620941250017494 +28,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.0597400420010671 +0,344.373267273601,0.2352735575751715,10.587310090882715,63.08692393837098,0.0634621249992051 +1,342.4823762323536,0.233981713217497,10.529177094787368,62.74052510132029,0.0631136660012998 +2,345.31927445296463,0.235919863475576,10.616393856400922,63.260226249093755,0.0636364580022927 +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.0636334160008118 +4,328.0017047540005,0.2240886134372441,10.083987604675986,60.08776106024389,0.0604451250001147 +5,318.0521033356242,0.2172911110042328,9.77809999519048,58.26505933642072,0.0586115830010385 +6,346.70889830534406,0.2368692453774554,10.659116041985495,63.51479622478341,0.0638925419989391 +7,314.29836506293805,0.2147265816358156,9.6626961736117,57.57739910434655,0.057919833001506 +8,346.87417673892634,0.2369821625192743,10.664197313367344,63.54507414981113,0.0639229999978852 +9,339.65000365733727,0.2320466548508062,10.44209946828628,62.221653022137616,0.0625917079996725 +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.0635079589992528 +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.0616562089999206 +12,348.17607141497996,0.2378716084232734,10.704222379047303,63.783572715783464,0.0641629170022497 +13,341.54157300846134,0.2333389626253396,10.50025331814028,62.56817612110891,0.0629402919985295 +14,339.28033302634714,0.2317940983002566,10.43073442351155,62.15393178708312,0.0625235840016102 +15,319.2664966692951,0.2181207765650074,9.815434945425334,58.48752823035984,0.0588353749990346 +16,353.3388710465269,0.2413987992705141,10.862945967173138,64.72936374725073,0.0651143329996557 +17,341.457685719264,0.2332816513795479,10.497674312079658,62.55280851991593,0.0629248330005793 +18,314.12879430577607,0.2146107320066789,9.657482940300552,57.54633485379091,0.0578885840004659 +19,342.5287288615394,0.2340133810297458,10.530602146338564,62.74901659897613,0.0631222080010047 +20,341.5811371692552,0.2333659926005062,10.50146966702278,62.57542401587859,0.0629475829991861 +21,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.0638293329975567 +22,338.38881272636,0.2311850174784813,10.403325786531662,61.99061111530136,0.0623592920019291 +23,344.76916932805335,0.2355440352621875,10.599481586798438,63.15945059816086,0.063535083001625 +24,344.2170292735118,0.235166816798222,10.58250675591999,63.0583021614661,0.0634333329981018 +25,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.063504041001579 +26,334.4460499034867,0.2284913477771234,10.282110649970557,61.2683228253801,0.0616327079987968 +27,341.1402445342186,0.2330647776439127,10.487914993976077,62.494655376803465,0.0628663339994091 +28,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462 +0,329.80854336715817,0.2333393777612803,10.666942983372811,62.50161904320008,0.0632824170024832 +1,335.5288092279848,0.2373864629670399,10.851952592778972,63.58565972331428,0.0643799999998009 +2,321.7799299616298,0.2276591378341832,10.407274872419803,60.9801262055848,0.0617419170011999 +3,329.7051746137013,0.2332662444204476,10.663599744934748,62.48202975547704,0.0632625829966855 +4,331.94620271569426,0.2348517706700889,10.736080944918353,62.90672428663097,0.0636925830003747 +5,333.0858280497938,0.2356580550180469,10.77293965796786,63.12269330840544,0.0639112500030023 +6,312.36717422581074,0.2209996179078911,10.10283967578931,59.19632622532799,0.0599358330000541 +7,327.8797790820893,0.2319747780043082,10.604561280196949,62.13610125115399,0.0629123329999856 +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.063090290997934 +9,331.0710760494818,0.2342326189959948,10.707776868388336,62.7408800882129,0.063524667002639 +10,310.75220077947944,0.2198570250107495,10.050606857634266,58.89027455645078,0.0596259579979232 +11,341.9923928625649,0.2419594451220895,11.061003205581237,64.81056565770255,0.065620208002656 +12,327.95947629563574,0.2320311637426167,10.607138913948194,62.15120457391521,0.0629276250001567 +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519 +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.0625667500025883 +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.0641760830003477 +16,327.93276637308287,0.2320122664859086,10.606275039355824,62.14614280872553,0.0629225000011501 +17,324.008361361325,0.2292357519233146,10.479348659351526,61.40243355088785,0.0621694999972533 +18,324.96622889461435,0.2299134427190519,10.510328810013805,61.58395787117464,0.0623532919998979 +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.063567208002496 +20,327.4695771381485,0.2316845603362684,10.59129418680084,62.058364375786184,0.0628336250010761 +21,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.0607522499994956 +22,329.8941037233372,0.2333999116700384,10.669710247773184,62.517833483046005,0.0632988340003066 +23,323.0526671214134,0.2285595987315437,10.448438799156284,61.22132108880636,0.0619861249979294 +24,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.0633283329989353 +25,315.26661635015887,0.2230509717456147,10.1966158512281,59.745796003289655,0.0604921669983014 +26,333.9946170348847,0.236301022765736,10.802332469290793,63.29491681225073,0.0640856249992793 +27,316.09592705316356,0.2236377086488927,10.22343810966367,59.90295767381056,0.0606512920021486 +28,325.3592739458097,0.2301915218941447,10.523041000875187,61.65844336450306,0.0624287079990608 +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.0634840419988904 +1,347.5338735270447,0.2657494731615711,9.998823927704114,61.52100303690372,0.0620952919998671 +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.0612300419998064 +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.0624869169987505 +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.0628582499994081 +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.0631118750025052 +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.0606008330032636 +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822 +8,349.36704941119723,0.2671512517003993,10.051565845227524,61.845514768642445,0.0624228329979814 +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.0633064590001595 +10,347.2269851313199,0.2655148041531791,9.989994506263365,61.46667716146096,0.0620404590008547 +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.0602130829975067 +12,350.48943947996935,0.2680095121238534,10.083857893659983,62.04420205667207,0.0626233750008395 +13,360.8859284017174,0.2759594176270062,10.382973088216112,63.88460518065195,0.0644809580007859 +14,353.76099420840256,0.2705111789014739,10.177983106167956,62.62333791569122,0.0632079170027282 +15,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.0618185419989458 +16,355.1032874398208,0.2715375931484005,10.21660194220857,62.86095281385472,0.0634477499988861 +17,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587 +18,344.7340828392565,0.2636085512057017,9.918271739114529,61.025379604119955,0.0615950419996806 +19,349.0872158684356,0.2669372707845043,10.043514813266976,61.79597818661276,0.0623728339996887 +20,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.0648655000004509 +21,351.9040263790746,0.2690912073248515,10.12455667559754,62.29461449570313,0.062876125000912 +22,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.0622356249987205 +23,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.0632546249980805 +24,326.03476636272546,0.2493097047315813,9.380277640525748,57.715196645361075,0.0582539589995576 +25,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.062940374999016 +26,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.063144416999421 +27,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.0632301670011656 +28,353.3169846035595,0.2701716571237312,10.165208599280389,62.544738624143775,0.0631285839990596 +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057 +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.0611507499997969 +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.0614833750005345 +3,232.13575724922015,0.7657034323778565,0.0,52.259259259788706,0.0585086249993764 +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.0618704159969638 +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.0566604589985217 +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.0621952089968544 +7,244.0876652220984,0.8051269880882851,0.0,54.949916937025456,0.0615210420000948 +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702 +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.059902625001996 +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.0606438329996308 +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.0611773339987848 +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.0575685409967263 +13,243.28010263868015,0.8024632302540302,0.0,54.76811546483757,0.0613174999998591 +14,241.72548654155145,0.7973353047000047,0.0,54.41813454577533,0.0609256669995375 +15,242.0336340586369,0.7983517341131507,0.0,54.48750585322254,0.0610033339980873 +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.0621428749982442 +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.0613224580010864 +18,250.56832102039976,0.8265035327775692,0.0,56.4088661120691,0.0631544579991896 +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.0616879589979362 +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.0614238340021984 +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.0608379170007538 +22,249.0137049377049,0.821375607271154,0.0,56.05888519625626,0.0627626250025059 +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.061630124997464 +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.0607461250001506 +25,242.13265613002585,0.7986783599671,0.0,54.50979806775457,0.0610282920024474 +26,233.01622352722865,0.7686076641909685,0.0,52.4574730810336,0.0587305420012853 +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.0629959580001013 +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.0622290829996927 +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.0632171249999373 +0,378.2830151197381,0.2429563359792794,9.718253439171178,64.97346585045874,0.0655562920001102 +1,353.2040927683805,0.2268491283033914,9.073965132135658,60.66593831199269,0.0612101250007981 +2,357.24886858454886,0.2294469290844887,9.177877163379549,61.36066446373754,0.0619110829975397 +3,348.1538269708763,0.2236055407648531,8.944221630594125,59.79851033025787,0.0603349160010111 +4,358.26397198427844,0.230098890163313,9.203955606532524,61.53501748367458,0.0620870000020659 +5,356.8740379487522,0.2292061900762698,9.168247603050794,61.29628397468245,0.0618461250014661 +6,349.28482212183866,0.2243319345676548,8.973277382706195,59.99276878723571,0.0605309169986867 +7,362.52080833113473,0.2328328891015637,9.313315564062547,62.266166914018186,0.0628247080021537 +8,368.1793617620893,0.2364671559165634,9.45868623666254,63.23807369654383,0.0638053330003458 +9,372.0570396746568,0.2389576362714559,9.558305450858237,63.90409930002364,0.0644773329986492 +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.0619698750015231 +11,363.9811926115906,0.2337708366163073,9.350833464652291,62.517000877961046,0.0630777920014225 +12,354.28483392042943,0.2275432459347652,9.101729837390607,60.851565198554354,0.0613974170009896 +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.0630681250004272 +14,356.9596353834419,0.2292611659495451,9.170446637981808,61.31098609393551,0.0618609590019332 +15,378.40779325868374,0.2430364760813639,9.72145904325456,64.99489760347333,0.0655779160006204 +16,387.2890894266006,0.2487405840890177,9.94962336356071,66.52033905923446,0.0671170409987098 +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.0630379169997468 +18,365.2316744876873,0.234573972053749,9.382958882149962,62.731782240659754,0.0632944999997562 +19,373.77107717779,0.2400584952972319,9.602339811889276,64.19850045663115,0.0647743749977962 +20,344.6805585467942,0.2213747967545242,8.85499187018097,59.20194564635276,0.05973300000187 +21,362.17699331162976,0.2326120702065701,9.304482808262808,62.20711363238563,0.0627651249997143 +22,356.0515201334432,0.2286779191608498,9.147116766433992,61.155009238444414,0.0617035830000531 +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.0631745829996361 +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986 +25,373.78310260490974,0.2400662187571674,9.6026487502867,64.20056593048821,0.0647764589994039 +26,367.3291981816165,0.2359211292110574,9.436845168442298,63.0920505547285,0.0636579999991227 +27,372.0101555478638,0.2389275244366498,9.557100977465993,63.89604653505835,0.0644692079986271 +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603 +29,358.8888493859939,0.2305002243969132,9.22000897587653,61.64234572443166,0.0621952910005347 +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.0610695840005064 +1,348.61418586415783,0.328045719266169,8.988452707893032,60.78687178002113,0.0609865000005811 +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.0629059159982716 +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471 +4,358.8403201050791,0.337668504850926,9.252117032915374,62.5699739488766,0.0627754579982138 +5,342.5880675551526,0.3223751459067964,8.833078997846224,59.736114536529385,0.059932291998848 +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.0610672920010983 +7,345.5035960299564,0.3251186562811295,8.908251182102951,60.24448700889331,0.0604423340009816 +8,376.33157594924216,0.3541277650788013,9.703100763159156,65.61987486910189,0.0658353750004607 +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.0568824580004729 +10,374.6764809907141,0.3525703218130366,9.660426817677203,65.33128063195569,0.0655458330002147 +11,345.8784849508381,0.32547142650874,8.917917086339479,60.30985533206954,0.0605079169981763 +12,362.25983335779995,0.3408862645693045,9.340283649198945,63.16622482469214,0.0633736670024518 +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.061856042000727 +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.064390874998935 +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.062227124999481 +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.0621582500025397 +17,360.4265799552419,0.3391611743250606,9.29301617650666,62.846565602433735,0.06305295799757 +18,349.90653892523665,0.3292618226453718,9.021773940483188,61.0122157361874,0.0612125840016233 +19,360.72001805303375,0.3394372993817952,9.300582003061187,62.89773157544665,0.0631042920031177 +20,358.5747544990663,0.3374186077905959,9.245269853462329,62.52366802359742,0.0627290000011271 +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.0568161250012053 +22,362.4810980291357,0.3410944744792845,9.345988600732396,63.20480612101142,0.0634123750023718 +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079 +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.0637672089978877 +25,332.0330087474858,0.3124428425213943,8.560933885086206,57.895658719214374,0.0580857919994741 +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.0603039170018746 +27,366.3288499695804,0.3447152065207306,9.44519665866802,63.875727768291384,0.0640855000019655 +28,354.5207373187578,0.3336037802943049,9.140743580063956,61.8167804885347,0.0620197909993294 +29,361.6341438543446,0.3402974911586943,9.324151257748223,63.057125111706064,0.0632642089985893 +0,352.49020382752724,0.3393570846515136,10.68974816652268,63.3579677044376,0.0637874170024588 +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375 +2,345.6512964466877,0.3327729820416748,10.48234893431276,62.12871574718069,0.0625498330009577 +3,348.5358761098863,0.335550087715304,10.569827763032078,62.64720137644727,0.0630718329994124 +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.0638328329987416 +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.0629714159986178 +6,333.6775775330467,0.3212453812776034,10.119229510244509,59.976512684528565,0.0603830420004669 +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.0620619170003919 +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463 +9,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.0615481249988079 +10,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.0638772080019407 +11,347.3698925446688,0.3344275464953006,10.534467714601972,62.43762293067263,0.0628608340011851 +12,348.5754810580413,0.3355882170579005,10.571028837323867,62.65432012471003,0.0630789999995613 +13,346.10834760015814,0.3332130043324907,10.496209636473456,62.21086790887602,0.0626325420016655 +14,353.50238182134535,0.3403315508051847,10.720443850363315,63.53990053532798,0.0639705829999002 +15,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.0620592500017664 +16,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.0616400409999187 +17,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.0625483750009152 +18,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.0630281250014377 +19,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407 +20,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.0618219999996654 +21,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.0640606250017299 +22,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.061287207998248 +23,345.3885786449535,0.3325200526089857,10.47438165718305,62.08149382209764,0.0625022909989638 +24,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502 +25,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.0597877090003748 +26,347.5174813223003,0.334569636393858,10.538943546406529,62.46415111473329,0.0628875419970427 +27,346.21679562001196,0.3333174117839722,10.499498471195126,62.23036078006762,0.0626521669983048 +28,349.8149219362817,0.336781478710197,10.608616579371208,62.87710207519379,0.0633032919977267 +0,250.10934507332675,0.0,0.0,55.11416653061159,0.0635523749988351 +1,239.838881397826,0.0,0.0,52.85096422926539,0.0609426669980166 +2,241.89828862855623,0.0,0.0,53.304775793305645,0.0614659590028168 +3,226.9506637505054,0.0,0.0,50.01091291695259,0.0576677919998473 +4,240.77109914478743,0.0,0.0,53.05638799755266,0.0611795420009002 +5,241.309764565714,0.0,0.0,53.17508846316111,0.0613164160022279 +6,232.6059540307432,0.0,0.0,51.257114294164616,0.0591047919988341 +7,229.17355489939848,0.0,0.0,50.50074984377193,0.058232625000528 +8,237.4643088347507,0.0,0.0,52.32770274280641,0.0603392919983889 +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362 +10,246.9017604503701,0.0,0.0,54.40734226933166,0.0627373329989495 +11,227.72021219973772,0.0,0.0,50.18049083245163,0.0578633330005686 +12,241.19055480567744,0.0,0.0,53.1488193664794,0.061286124997423 +13,239.55814760206837,0.0,0.0,52.789101650057795,0.0608713330002501 +14,237.7916072840164,0.0,0.0,52.3998263223262,0.0604224579983565 +15,240.87981688341813,0.0,0.0,53.08034506940843,0.0612071670002478 +16,240.89932900283105,0.0,0.0,53.084644765600814,0.0612121249978372 +17,240.4998774005804,0.0,0.0,52.99662149673451,0.0611106249998556 +18,241.5399942998725,0.0,0.0,53.225821952967294,0.0613749170006485 +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666 +20,241.08921611249076,0.0,0.0,53.12648834317978,0.0612603750014386 +21,240.12551449843392,0.0,0.0,52.91412678097035,0.0610154999994847 +22,242.95922422123857,0.0,0.0,53.538563862744645,0.061735540999507 +23,240.68271211186973,0.0,0.0,53.03691100579953,0.0611570830005803 +24,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842 +25,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115 +26,241.06396210591663,0.0,0.0,53.12092336309683,0.0612539579997246 +27,240.81127256853603,0.0,0.0,53.06524062465436,0.0611897500020859 +28,238.5282000000232,0.0,0.0,52.562142103063344,0.0606096250012342 +0,356.01103457289975,0.2302788063214099,9.967782616483888,63.58984751704077,0.0625623749983788 +1,351.19450650439023,0.2271633289161644,9.832926951656832,62.72953068499227,0.0617159590001392 +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.070130166997842 +3,372.26214494736774,0.2407905206645328,10.422789680193349,66.49258234922029,0.0654182079997554 +4,374.1580309147266,0.2420168375903794,10.475871684269285,66.83122100888622,0.0657513750011276 +5,405.53899035120986,0.2623150002271732,11.3544921526905,72.43641363416084,0.0712660000026517 +6,333.0413416768214,0.2154213076822906,9.324665175390583,59.48705539283827,0.0585258749997592 +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.0645243750004738 +8,366.1896728586104,0.2368626603225164,10.25276943967464,65.40793177191775,0.0643510829977458 +9,352.4134565857517,0.2279517830438238,9.867055751754089,62.947256660530215,0.0619301670012646 +10,360.33604592969425,0.2330763557113158,10.088876540075528,64.36237079856764,0.0633224159973906 +11,359.41703628607354,0.2324819122160889,10.063145628782136,64.1982194733857,0.0631609169977309 +12,358.8771446574472,0.2321326938275855,10.04802946139406,64.10178530981754,0.0630660409988195 +13,358.17342362709223,0.2316775055802666,10.028326312974398,63.976088326665064,0.0629423750033311 +14,354.21164807047495,0.22911490819565,9.917402454754566,63.268445363170216,0.0622461659986584 +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.0628698330001498 +16,345.8859837170851,0.2237296143060058,9.684296162102823,61.781334921929904,0.0607830840017413 +17,349.5224448786402,0.2260817884079173,9.78611169822842,62.43087099892917,0.0614221249998081 +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.0565261669980827 +19,360.3958018453322,0.2331150076619224,10.090549617366072,64.3730442586423,0.0633329169977514 +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.0621866250003222 +21,366.208166991892,0.2368746228925562,10.253287248063508,65.41123515018734,0.064354333000665 +22,359.1301384857916,0.2322963379597616,10.05511291454397,64.14697446803133,0.0631104999993112 +23,365.57154258781645,0.2364628347916018,10.235462705979335,65.29752280745234,0.0642424580000806 +24,349.0676830815694,0.2257876345935119,9.773379040262016,62.349642524179785,0.0613422089991217 +25,357.242315974124,0.2310752367232367,10.00225667530582,63.809776083716656,0.0627787500015983 +26,354.99835934867855,0.2296237770690029,9.939429207415412,63.40896586776896,0.0623844159999862 +27,365.0418539985884,0.236120216040484,10.220632208609526,65.20291108660797,0.0641493749972141 +28,374.2950808651228,0.2421054856824856,10.479708880256164,66.85570054632068,0.0657754590029071 +29,373.26936300344295,0.2414420200539734,10.450990296621994,66.67248925204723,0.0655952080014685 +0,245.1615255437683,0.0,0.0,54.62988385920401,0.0630969579979137 +1,241.02349681651853,0.0,0.0,53.7077977844241,0.062031957997533 +2,241.0796768893551,0.0,0.0,53.72031651405535,0.0620464170024206 +3,239.89379555329384,0.0,0.0,53.456063958454976,0.0617412079991481 +4,238.74985015186837,0.0,0.0,53.20115607973081,0.0614467920022434 +5,242.9289988271171,0.0,0.0,54.132405003283566,0.0625223749993892 +6,222.20890597794013,0.0,0.0,49.51530098016318,0.0571896670007845 +7,239.96163203488717,0.0,0.0,53.471180111377585,0.0617586670014134 +8,237.5137840474237,0.0,0.0,52.92572074142338,0.0611286669991386 +9,240.0446801289891,0.0,0.0,53.48968590149068,0.0617800410000199 +10,239.2075238922962,0.0,0.0,53.30314052949111,0.0615645830002904 +11,241.35311704054809,0.0,0.0,53.781247786484734,0.0621167919998697 +12,237.1938775091375,0.0,0.0,52.85443526139705,0.0610463329976482 +13,236.38327460023032,0.0,0.0,52.67380682603668,0.0608377089993155 +14,236.86118776917695,0.0,0.0,52.78030127232645,0.0609607089972996 +15,228.8396288104752,0.0,0.0,50.9928395843162,0.0588962090005225 +16,234.1374673466227,0.0,0.0,52.173368638753345,0.0602597080032865 +17,238.49162938758172,0.0,0.0,53.14361617687808,0.061380334002024 +18,221.11886761338675,0.0,0.0,49.27240532544921,0.0569091249999473 +19,238.6339309293796,0.0,0.0,53.17532554352589,0.0614169579966983 +20,240.64174911522755,0.0,0.0,53.622732101549154,0.0619337080024706 +21,238.3167792135448,0.0,0.0,53.10465392666686,0.0613353330008976 +22,237.09123886601097,0.0,0.0,52.83156406600441,0.0610199170005216 +23,236.7632388971176,0.0,0.0,52.758475108972014,0.0609355000015057 +24,235.63175807428223,0.0,0.0,52.50634473980698,0.0606442919997789 +25,226.50542703780656,0.0,0.0,50.47270425124547,0.0582954580022487 +26,236.4643838585177,0.0,0.0,52.6918805810858,0.0608585840018349 +27,237.71679612865097,0.0,0.0,52.97095837157298,0.061180916000012 +28,237.03425063747616,0.0,0.0,52.818865253255176,0.0610052500014717 +29,237.04752730136903,0.0,0.0,52.82182372157477,0.0610086670021701 +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.0626812500013329 +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.0595197920010832 +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.0632364579978457 +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282 +4,360.278246721321,1.1641760490899935,10.648786801970235,64.88569450075113,0.0639529170002788 +5,351.330385453154,1.1352626026807866,10.384313806874252,63.274195061179135,0.0623645839987148 +6,354.42246275922594,1.1452541088969477,10.475706701969138,63.83107459881516,0.062913458001276 +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553 +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.0629884580012003 +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.10978890296269,0.0612169169980916 +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.0612827920012932 +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.55417587441491,0.0596836670010816 +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.0632213749995571 +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.0578171670022129 +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.0632325830010813 +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.0619718330017349 +16,356.72656097066806,1.1526993986887202,10.543809205652703,64.24604001515073,0.0633224579978559 +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.0598752080004487 +18,351.34986607256644,1.1353255508902549,10.384889597849094,63.277703498148014,0.0623680419994343 +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.063180832999933 +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.0622285000026749 +21,351.2292135769868,1.1349356834838955,10.381323457749753,63.25597412358772,0.0623466249999182 +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.0580599590030033 +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.0631387080029526 +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.0646871669996471 +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.0642974580005102 +26,347.6089907752034,1.1232375676066255,10.2743201036959,62.60397619454575,0.0617039999997359 +27,359.7827304146522,1.1625748749380511,10.634140767815705,64.79645258845903,0.0638649580032506 +28,357.17747694959303,1.1541564546936098,10.557136982638609,64.32724946012914,0.0634024999999383 +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.063656832997367 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/mac_report.md new file mode 100644 index 000000000..73643e782 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 499.59 ms | 61.33 ms | +| **Average Power** | 5.623 W | 6.479 W | +| **Total Energy** | 2528.48 J | 357.61 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.36% | 0.00e+00 | +7.194 | large | βœ… | +| `gpu_mj` | +87.85% | 0.00e+00 | +3.974 | large | βœ… | +| `ane_mj` | +87.88% | 7.64e-279 | +2.465 | large | βœ… | +| `dram_mj` | +87.74% | 0.00e+00 | +31.039 | large | βœ… | +| `time_s` | +87.71% | 0.00e+00 | +113.485 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.194, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.974, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.465, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.039, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +113.485, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..e21f0f73b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081 +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.6595778983575,0.5096410420010216 +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707 +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663 +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053 +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341 +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594 +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114 +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416 +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249 +10,2437.183217540223,4.046977031692036,79.90271180753945,501.5575832004443,0.5075140840017411 +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847 +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441 +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.5243528486659,0.5064685830002418 +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114 +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727 +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319 +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087 +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663 +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326 +20,2401.802815837927,3.988227376749909,78.74277027318622,494.2765102623276,0.5001465409986849 +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738 +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097 +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266 +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476 +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851 +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238 +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105 +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783 +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012 +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876 +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299 +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715 +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753 +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591 +5,2569.226557781062,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354 +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132 +7,2536.397739459655,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457 +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515 +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187 +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992 +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.0401821950901,0.5058779999999388 +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219 +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024 +14,2717.7183010787217,4.573731420434627,86.29815718866575,543.2458358441811,0.542000666999229 +15,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052 +16,2522.4157528639216,4.245050776489145,80.09653945716727,504.2067286617571,0.5030510409997078 +17,2532.4287624670173,4.2619019772249285,80.414491570275,506.2082332948864,0.5050479580022511 +18,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621 +19,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573 +20,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543 +21,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337 +22,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537 +23,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612 +24,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669 +25,2557.594577302347,4.304254298283186,81.21360435675406,511.2386384363951,0.5100668329978362 +26,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346 +27,2521.414791373941,4.243366227720586,80.06475502536362,504.0066460553087,0.5028514170007838 +28,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381 +29,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018 +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.0407597657533,0.5058008339983644 +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779 +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403 +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998 +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058 +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037 +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125 +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338 +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.4043978970143,0.5051622499995574 +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222 +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.4935359189019,0.5092656669985445 +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208 +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372 +13,2398.9191436633346,3.949302447235029,88.77633652398067,502.2915339403542,0.5040455000016664 +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032 +15,2410.4932406132943,3.968356699034115,89.20465689005259,504.7149465536247,0.5064773749982123 +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413 +17,2373.612793217755,3.907641004826973,87.83982931018615,496.99282863912794,0.4987282920010329 +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098 +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619 +20,2393.140126541887,3.93978854322512,88.56247355569073,501.0815092580857,0.5028312499998719 +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148 +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179,0.5074979160017392 +23,2411.814549757005,3.970531949270705,89.25355432184146,504.991605480774,0.5067549999985204 +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327 +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187 +26,2412.5966695833,3.97181954070628,89.28249807890167,505.15536763520623,0.5069193339986668 +27,2417.6673365095417,3.980167299051456,89.47014726859365,506.2170762280991,0.5079847500019241 +28,2397.318028700774,3.946666557127332,88.71708437240011,501.95628858926193,0.5037090839978191 +29,2408.678545967045,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665 +0,1521.3288350694506,1.7571209502823384,0.0,461.5145757491573,0.503729125000973 +1,1495.508336847177,1.7272985099740834,0.0,453.6815971005006,0.495179667002958 +2,1500.021420887732,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655 +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.4942111669988662 +4,1500.8048946803583,1.7334159860374627,0.0,455.2883757173012,0.4969334170018555 +5,1504.431192242494,1.737604326698274,0.0,456.3884595008659,0.4981341249986144 +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176 +7,1501.5407983498535,1.7342659480741058,0.0,455.5116215153104,0.4971770830015884 +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.4967821669997647 +9,1494.8181096605138,1.7265013038591517,0.0,453.47220784823634,0.4949511250015348 +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753 +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.4975821669977449 +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215 +13,1495.377338579858,1.727147208168287,0.0,453.6418570992782,0.4951362920000974 +14,1493.8437393132476,1.7253759149813177,0.0,453.1766201310545,0.4946284999969066 +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.4986748330011323 +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988 +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807 +18,1510.2273283587142,1.7442988111290731,0.0,458.1467915846323,0.5000532909980393 +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.498009249997267 +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538 +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508 +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381 +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588 +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561 +25,1492.5965513345484,1.723935424223635,0.0,452.79826969320027,0.4942155419994378 +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.4946941249982046 +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.493535375000647 +28,1487.032962421571,1.7175095296948537,0.0,451.1104837802367,0.4923733750001702 +29,1498.2415539693543,1.730455350859723,0.0,454.5107535008094,0.4960846659996605 +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713 +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006 +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059 +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968 +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581 +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476 +6,2441.8114041555423,3.618640059947563,85.3731006735777,503.0244742591923,0.5088992080018215 +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948 +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731 +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782 +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501 +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053 +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794 +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086 +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143 +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084 +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.4943381562488,0.5113979170018865 +17,2419.5950410391,3.585716542012196,84.59634952821366,498.4478004187879,0.5042690839982242 +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158 +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739 +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313 +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094 +22,2415.987574562841,3.580370460540182,84.47022160607762,497.7046455934235,0.5035172499992768 +23,2406.058253789995,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208 +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778 +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196 +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.2896519401702,0.5071441250001953 +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398 +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694 +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691 +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184 +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056 +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889 +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905 +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046 +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422 +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449 +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683 +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593 +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301 +10,2398.899124274176,3.010699789112236,85.65606323089648,496.23611139444426,0.5013167500001146 +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011 +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.1014435686768,0.4971397500012244 +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381 +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393 +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535 +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158 +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682 +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018 +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.3395799506389,0.5074827079988609 +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256 +21,2413.457682465012,3.028971273574173,86.17589700311575,499.2476937619672,0.5043591659996309 +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458 +23,2440.0641737605915,3.062363322836291,87.12591915190285,504.75151076067624,0.5099193329988339 +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291 +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119 +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032 +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706 +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758 +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817 +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767 +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903 +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114 +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558 +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153 +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502 +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542 +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336 +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.8935984536096,0.5130170830016141 +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846 +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546 +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943 +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843 +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183 +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798 +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369 +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819 +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662 +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346 +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835 +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325 +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111 +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748 +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375 +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.9742481356192,0.5100448750017677 +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458 +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488 +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479 +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.6574274029951,0.5066679999981716 +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148 +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552 +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887 +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551 +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776 +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338 +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639 +6,2337.365944846139,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552 +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931 +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839 +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006 +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587 +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081 +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149 +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471 +14,2353.790095061217,3.1273854940882333,76.58767454671397,495.2913601116121,0.5069090830002096 +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043 +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.8088451449525,0.5064152499980992 +17,2369.900043850338,3.148790130066317,77.11186041928363,498.6812624074177,0.5103784999992058 +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193 +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772 +20,2361.406654310874,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665 +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113 +22,2365.186005455824,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555 +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592 +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598 +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374 +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287 +27,2323.0195285501377,3.08650188957586,75.58646116812372,488.8165279799557,0.5002823750000971 +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055 +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038 +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472 +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257 +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665 +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586 +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182 +5,2469.989166352668,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784 +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424 +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046 +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.4442793542444,0.5079350840023835 +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228 +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109 +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367 +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832 +13,2470.881336761855,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803 +14,2547.5194825611934,4.865732743169632,81.99787643947133,515.5963421582637,0.5212308749978547 +15,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149 +16,2459.7036085349296,4.698005439592715,79.17131702074202,497.8231538700816,0.5032634579984006 +17,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562 +18,2454.901026991713,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756 +19,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631 +20,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852 +21,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367 +22,2476.252506411417,4.729613643106841,79.70398202784979,501.1725104776664,0.5066494169986981 +23,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254 +24,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172 +25,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842 +26,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839 +27,2498.7167098677137,4.772520011852896,80.42704498847873,505.7190747771163,0.5112456669994572 +28,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802 +29,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411 +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.3002329485451,0.5093542920003529 +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653 +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335 +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.9709386136346,0.5059579579974525 +4,2399.17808339922,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849 +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149 +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775 +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634 +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.3990756228805,0.509455125000386 +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049 +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456 +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895 +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751 +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829 +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234 +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.7341684884317,0.5016358749999199 +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729 +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007 +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672 +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455 +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208 +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947 +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.4623838303456,0.5095197080008802 +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746 +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.8791917610883,0.506884500002343 +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028 +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497 +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293 +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212 +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411 +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542 +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952 +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867 +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424 +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363 +5,2400.453980450238,4.138080849367165,83.32893452314363,495.8688979092475,0.5058198340011586 +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694 +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958 +8,2403.58097828726,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683 +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267 +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853 +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238 +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056 +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391 +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556 +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674 +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163 +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075 +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524 +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076 +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709 +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594 +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088 +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206 +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243 +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182 +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494 +27,2425.97045586115,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935 +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056 +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254 +0,2466.661303363247,4.117564460939943,84.82182789536282,519.4993828219228,0.520018874998641 +1,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337 +2,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345 +3,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745 +4,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228 +5,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257,0.501494084001024 +6,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946 +7,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837 +8,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348 +9,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026 +10,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378 +11,2378.356060681969,3.970157709764441,81.78524882114748,500.90156438194686,0.5014024589982 +12,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271 +13,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075 +14,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049 +15,2390.123657190451,3.989801199978495,82.189904719557,503.37991806395354,0.5038832909995108 +16,2371.816282415134,3.959240946065576,81.56036348895087,499.5242326952735,0.5000237499989453 +17,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303 +18,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822 +19,2397.1812542605517,4.0015823516249975,82.43259644347495,504.8663066966872,0.5053711660002591 +20,2413.429795818861,4.028705823003649,82.99133995387517,508.2883846689603,0.5087966660030361 +21,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703 +22,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542 +23,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094 +24,2386.9390568875947,3.984485189624151,82.08039490625751,502.7092147575803,0.5032119169991347 +25,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828 +26,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.4999481250015378 +27,2394.9224057847664,3.997811686315634,82.35492073810207,504.3905744234892,0.5048949580013868 +28,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275 +29,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585 +0,1562.658112747968,2.9298349145681235,0.0,472.7254566807824,0.5100129999991623 +1,1531.1537366320806,2.87076721424838,0.0,463.19495191756414,0.4997307500016177 +2,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.4992337080002471 +3,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331 +4,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553 +5,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.4967933749976509 +6,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.4938749159991857 +7,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974 +8,1529.549117610166,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789 +9,1534.5397925705695,2.87711574616994,0.0,464.2192801610941,0.5008358750019397 +10,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685 +11,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412 +12,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775 +13,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.4971924999990733 +14,1530.105222825464,2.868801350868558,0.0,462.8777621471175,0.4993885410003713 +15,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475 +16,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071 +17,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474 +18,1523.8910085724551,2.8571502918579252,0.0,460.997877323495,0.4973603750004258 +19,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.4989415420022851 +20,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.4979109579981013 +21,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227 +22,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.4972158750024391 +23,1523.679466818539,2.856753671246252,0.0,460.93388304898826,0.4972913329984294 +24,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626 +25,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481 +26,1518.296859631195,2.84666179616479,0.0,459.30557073933295,0.4955345829985162 +27,1517.123367010836,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685 +28,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821 +29,1513.0786858616543,2.8368782180579974,0.0,457.7270017880555,0.49383150000358 +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618 +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904 +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659 +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492 +4,2340.690922537716,4.507878606273955,80.50737273871486,493.7629700072072,0.5085929999986547 +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951 +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227 +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618 +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373 +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693 +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235 +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706 +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046 +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578 +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701 +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975 +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283 +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956 +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957 +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134 +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105 +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781 +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063 +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187 +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935 +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673 +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902 +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685 +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548 +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566 +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292 +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295 +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367 +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.9658028211997,0.5026861250007642 +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364 +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283 +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152 +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727 +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829 +9,2374.217426084276,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384 +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447 +11,2408.4701102273693,3.561420707157979,88.32323353751788,509.96152697257344,0.5137638340020203 +12,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732 +13,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935 +14,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878 +15,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826 +16,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144 +17,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896 +18,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942 +19,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896 +20,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372 +21,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246 +22,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155 +23,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018 +24,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907 +25,2359.7523495532514,3.489381431713207,86.53665950648752,499.6461888172197,0.5033715839999786 +26,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014 +27,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501 +28,2369.1011810593163,3.503205610793547,86.87949914767998,501.625679602676,0.5053658340002585 +29,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.498477000001003 +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566 +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745 +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915 +3,2787.134152130027,3.892829766007092,84.81750278308672,513.8535291129361,0.5036684170008812 +4,2786.490857621769,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919 +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812 +6,2781.0252087558233,3.884297318228151,84.6315966539371,512.7272460061159,0.5025644579982327 +7,2806.3717189238073,3.91969914815834,85.40293652470417,517.4002875569009,0.5071448749986303 +8,2787.611657926017,3.8934967051189577,84.83203414288847,513.9415650757024,0.5037547079991782 +9,2778.4739606086464,3.880733953787939,84.5539575863457,512.256881900008,0.5021034169985796 +10,2803.5843657274604,3.915806012450171,85.3181123560118,516.8863936434227,0.5066411669977242 +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174 +12,2812.886462833527,3.9287983832957263,85.60119189367214,518.6013865950359,0.5083221670029161 +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987 +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392 +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828 +16,2785.3977311460985,3.890404482212485,84.7646603709178,513.5333916520481,0.5033546249978826 +17,2790.556261375991,3.8976094744847183,84.92164371949332,514.4844506319829,0.5042868329983321 +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193 +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849 +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448 +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673 +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759 +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572 +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778 +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124 +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425 +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436 +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288 +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019 +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533 +1,2427.481988160699,4.084415548016843,85.00271374110463,501.1109173993124,0.5075136669984204 +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661 +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051 +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116 +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043 +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739 +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679 +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423 +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579 +10,2395.320511638591,4.030301517348542,83.87652092252418,494.4717468169917,0.5007896669994807 +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515 +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875 +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489 +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053 +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869 +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392 +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.4682684869635,0.5078755840004305 +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414 +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279 +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696 +21,2427.790497267815,4.08493463709761,85.01351675074451,501.1746036727624,0.5075781669984281 +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145 +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996 +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155 +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793 +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597 +27,2413.707893578892,4.061239628959905,84.5203886715508,498.2674980841955,0.5046339170003193 +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983 +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103 +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763 +1,2430.8668931937323,3.146003063189218,86.86280036574021,500.4462977991102,0.5033938749984372 +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439 +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242 +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859 +5,2473.312006736001,3.200935094883456,88.37950267241374,509.184538461882,0.5121835829995689 +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638 +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033 +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118 +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504 +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.286500197256,0.5052449159993557 +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.0612560700477,0.50703012500162 +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356 +13,2442.717957764811,3.161340589709926,87.28627754535931,502.88609464943573,0.505848042001162 +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.0360862137909,0.5059989170003973 +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502 +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592 +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984 +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331 +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831 +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758 +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022 +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.3419776453141,0.5073124999980791 +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608 +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987 +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.0199192304263,0.5039708750009595 +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441 +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.7483898208496,0.5067154160024074 +28,2460.460343865354,3.18430260428048,87.92027085292314,506.5387469040696,0.5095222080017265 +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324 +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667 +1,1498.841889417395,1.2033252607887024,0.0,459.93765523479294,0.499227249998512 +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.4965378329980012 +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442 +4,1524.1527316288148,1.2236457335616362,0.0,467.70459149466984,0.5076576670035138 +5,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427 +6,1489.3145129999891,1.1956763334448297,0.0,457.0140652278015,0.4960539159983455 +7,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085 +8,1491.8328382512898,1.1976981373530124,0.0,457.7868436104848,0.4968927080008143 +9,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469 +10,1511.818683773937,1.213743507412005,0.0,463.91974061081095,0.5035495000010997 +11,1488.9657450555078,1.195396329742831,0.0,456.9070415905932,0.4959377500017581 +12,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.4984247499996854 +13,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.4980667499985429 +14,1496.3713521590184,1.2013418228345636,0.0,459.1795411723221,0.4984043749973352 +15,1507.25952887442,1.210083250584936,0.0,462.5207091124644,0.5020309579995228 +16,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.4936328750009124 +17,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439 +18,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.4978450419985165 +19,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462 +20,1489.0232905879304,1.1954425294075846,0.0,456.9247001291211,0.4959569169986935 +21,1493.38228955567,1.1989420937089743,0.0,458.262311373208,0.4974087919981684 +22,1495.050954155259,1.2002817588722223,0.0,458.7743611689384,0.4979645830026129 +23,1482.5875601832554,1.1902756889141006,0.0,454.949818873834,0.4938133340001513 +24,1491.5192214979224,1.1974463543169245,0.0,457.6906065389133,0.4967882499986444 +25,1491.476438384669,1.197412006463908,0.0,457.6774780262048,0.4967739999992773 +26,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.4969653329972061 +27,1493.5562982454917,1.1990817942694787,0.0,458.3157080318896,0.4974667499991483 +28,1494.5570718752197,1.1998852520574457,0.0,458.622807453068,0.4978000830014935 +29,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.4966979169985279 +0,2451.1992010427684,3.900210881276232,77.23750950356437,510.1942524609636,0.5080816660010896 +1,2446.842754857934,3.893279148103931,77.10023748851974,509.2874988182109,0.5071786669977882 +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055 +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268 +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444 +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424 +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.5791434498134,0.5034856669990404 +7,2429.938186012844,3.866381544953255,76.56757298851875,505.7689704744408,0.5036747079975612 +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405 +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.430282300252,0.5063249999984691 +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838 +11,2416.368502129658,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795 +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131 +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048 +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614 +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951 +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134 +17,2475.655192815794,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459 +18,2453.373007356547,3.9036697201315897,77.30600633799054,510.6467099710596,0.5085322499980975 +19,2459.984671943299,3.914189830514144,77.51434048975445,512.0228662907604,0.5099027079995722 +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151 +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142 +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269 +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548 +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.057604634152,0.5079455839986622 +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254 +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.1553403373048,0.500076040996646 +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147 +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387 +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264 +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896 +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294 +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021 +3,2357.806900571939,4.149006707691834,79.90183885458144,503.6024190118531,0.5101947919974918 +4,2346.305810578593,4.128768366919913,79.51208758229639,501.1459087944486,0.5077061250012775 +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982 +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412 +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624 +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255 +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223 +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191 +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826 +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185 +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488 +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016 +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732 +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316 +17,2343.330793546818,4.123533262375373,79.41126960122897,500.5104768710625,0.5070623749998049 +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544 +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428 +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128 +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923 +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731 +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271 +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.9930627480395,0.509577458997228 +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235 +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313 +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421 +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664 +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945 +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798 +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374 +2,2403.6605833088347,2.971356629736184,84.43326872587426,501.95895424812943,0.5054153749988473 +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712 +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205 +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399 +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625 +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132 +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868 +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569 +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995 +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116 +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444 +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508 +14,2396.948743680305,2.963059589248669,84.19750226078521,500.5573137567836,0.5040040830026555 +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352 +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.4983195829991018 +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919 +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.0250495374422,0.5085025830012455 +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087 +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.0684085629751,0.5055255830011447 +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335 +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108 +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.2673499536931,0.5077396660017257 +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774 +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248 +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372 +27,2387.906760572858,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619 +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972 +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049 +0,1554.8732723619028,0.9499760332133208,0.0,468.60960609794233,0.5065087910006696 +1,1540.449502109736,0.941163587664418,0.0,464.2625526007479,0.5018101659989043 +2,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.499439874998643 +3,1530.7264696366958,0.935223137092834,0.0,461.33221319736504,0.4986428330012131 +4,1527.4287557774685,0.9332083432274132,0.0,460.3383441663225,0.4975685839999642 +5,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.4973773329984396 +6,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467 +7,1528.059338805915,0.93359360855715,0.0,460.52839004969127,0.497773999999481 +8,1545.3676850578215,0.944168434432761,0.0,465.744800585189,0.5034122920005757 +9,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942 +10,1528.570586995457,0.9339059642556632,0.0,460.6824706535437,0.4979405419981049 +11,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875 +12,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752 +13,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.4964012499985983 +14,1528.2171779672317,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772 +15,1519.295356383413,0.9282391057787768,0.0,457.88709032201666,0.4949190829975123 +16,1522.767283641807,0.9303603382567937,0.0,458.9334640001012,0.4960500830020464 +17,1521.815908034937,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944 +18,1523.6480572437645,0.9308984617343912,0.0,459.19891262412176,0.4963370000004943 +19,1522.5087831425035,0.930202403019706,0.0,458.8555568038635,0.495965874997637 +20,1523.130669481421,0.9305823549603914,0.0,459.0429816683188,0.4961684580011933 +21,1519.5053818912152,0.9283674244027588,0.0,457.9503880661037,0.4949874999983876 +22,1526.9093204634178,0.9328909854671869,0.0,460.1817961168851,0.4973993749990768 +23,1529.5480557755704,0.9345031652821568,0.0,460.97706138846974,0.4982589579994965 +24,1524.9894245219973,0.9317179926818372,0.0,459.6031755329121,0.4967739580024499 +25,1540.853307819904,0.9414102995692096,0.0,464.38425205892594,0.5019417080002313 +26,1520.174211377246,0.9287760570504024,0.0,458.151960713577,0.495205374998477 +27,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.4972079580002173 +28,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.4952220829982252 +29,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.495454833999247 +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731 +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064 +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738 +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141 +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031 +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806 +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741 +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907 +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344 +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595 +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087 +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484 +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554 +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421 +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195 +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687 +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761 +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689 +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782 +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762 +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611 +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179 +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539 +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082 +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504 +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451 +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206 +27,2420.701363746525,3.272075332025206,80.19923415841373,498.3237176579205,0.5071317910005746 +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987 +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072 +0,2413.455554111883,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306 +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237 +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544 +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555 +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645 +5,2400.607102267664,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602 +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546 +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905 +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967 +9,2419.322533895495,4.473549974361046,80.79097714890844,502.7068321934972,0.5066046669999196 +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114 +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656 +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344 +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755 +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583 +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172 +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128 +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602 +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134 +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.9287563027167,0.5128748340030143 +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.2933673761707,0.5071957499967539 +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831 +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194 +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012 +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208 +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382 +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622 +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875 +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928 +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759 +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887 +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971 +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208 +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851 +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478 +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485 +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799 +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703 +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879 +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654 +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245 +11,2434.911182100675,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574 +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438 +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585 +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624 +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299 +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.5810589754782,0.5055243339993467 +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575 +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045 +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954 +20,2450.440055490727,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001 +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975 +22,2443.288889685493,5.003412429886074,75.68075489973373,505.7754127800068,0.505718665997847 +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681 +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135 +25,2480.855628025912,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902 +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095 +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126 +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983 +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049 +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734 +1,1498.847619915133,2.2333049533939846,0.0,456.1275370484073,0.4971277910008211 +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.4964403749982011 +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377 +4,1497.800909311091,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296 +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.4962088749998656 +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006 +7,1487.434284612173,2.216298916270418,0.0,452.654244332006,0.4933422920003067 +8,1508.8235499563525,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729 +9,1496.828313791734,2.230296157631237,0.0,455.5130241944155,0.4964580410014605 +10,1497.546140555687,2.231365730045613,0.0,455.73147238722646,0.4966961249992891 +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964 +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341 +13,1547.3486576230418,2.3055722114651913,0.0,470.8873155476072,0.5132142920010665 +14,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.4960290000017266 +15,1494.2857789928514,2.2265077434621947,0.0,454.73928300801,0.4956147500015504 +16,1492.916332152243,2.224467247569281,0.0,454.3225345632543,0.4951605409987678 +17,1501.7675380811677,2.2376556743192237,0.0,457.0161230952874,0.4980962500012538 +18,1493.492579873052,2.22532586513131,0.0,454.4978975889082,0.4953516670029785 +19,1494.308895111859,2.226542186818809,0.0,454.74631767803857,0.4956224170018686 +20,1491.9323097299357,2.223001039716801,0.0,454.0230780221598,0.4948341669987712 +21,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469 +22,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.4962799999993876 +23,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.4968130000015662 +24,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199 +25,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731 +26,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.495579041999008 +27,1494.5827579360664,2.22695024644657,0.0,454.82965928917696,0.4957132499985164 +28,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.4949876249993394 +29,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.4940982500011159 +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109 +1,2362.707427351115,3.053665668998252,75.27949714443517,505.7135884006235,0.5069546670019918 +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826 +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.8357095856616,0.5080795419999049 +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101 +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.7861271535494,0.5090322920004837 +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142 +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332 +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337 +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512 +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.7341297606933,0.508980167000118 +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.0986054113508,0.5083430830018187 +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818 +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084 +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371 +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821 +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582 +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027 +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168 +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.1857207289548,0.5074279579966969 +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884 +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119 +22,2355.571678502875,3.044443117349149,75.05214119725946,504.1862536514308,0.5054235839998 +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808 +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835 +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.6577049757748,0.5119109170009324 +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616 +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251 +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333 +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061 +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.4955833330022869 +1,1562.7387326973612,1.926641438972196,2.092731218193937,449.07354505974337,0.4933393750034156 +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927 +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056 +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994 +5,1567.5576911020446,1.932582550407452,2.099184494408094,450.458336188937,0.4948606670004665 +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495 +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.4934135000003152 +8,1572.8194619481285,1.9390695885427025,2.1062307599687973,451.9703753018757,0.4965217499993741 +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045 +10,1561.3753115790362,1.9249605286764608,2.0909054018382247,448.68174805477713,0.4929089580000436 +11,1564.2604044990444,1.9285174505461704,2.0947689549035986,449.5108174816151,0.4938197500014212 +12,1566.0254582717266,1.9306935185409744,2.0971326149669207,450.018028916473,0.494376958002249 +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921 +14,1568.229238167961,1.933410475369152,2.10008379221132,450.6513140778545,0.4950726669994765 +15,1568.8164427249465,1.9341344176436792,2.1008701433026173,450.82005503663623,0.4952580409990332 +16,1563.710683035462,1.927839719758886,2.0940327990484455,449.35284778311006,0.4936462090008717 +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454 +18,1560.7671180085997,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284 +19,1563.612085984862,1.9277181631867784,2.093900763461501,449.32451462279414,0.4936150829998951 +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719 +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155 +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.4957214999994903 +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.4943114170018816 +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.4936536669993074 +25,1556.033423900803,1.9183747175310144,2.083751848352654,447.146686315548,0.4912225830012175 +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.493544416000077 +27,1574.1810331293302,1.9407482181209723,2.1080540989934704,452.3616407030591,0.4969515829980082 +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807 +29,1607.7780546805436,1.9821687144536408,2.1530453277686097,462.0161870810133,0.5075577919997158 +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664 +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817 +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246 +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286 +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.1346176915523,0.5108064580017526 +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325 +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404 +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.9411894195198,0.509611458001018 +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942 +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001 +10,2442.064002544568,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774 +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285 +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915 +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681 +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428 +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787236,0.5053130829983274 +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368 +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215 +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688 +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261 +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151 +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867 +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316 +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.4320289082005,0.5040950420006993 +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234 +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785 +26,2406.404834514243,3.097979270904169,78.14158352461473,500.9168823241752,0.5015765830030432 +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403 +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163 +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..d81eda01e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n50/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.0633631250020698 +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774 +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.0619897500000661 +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.0622673330035468 +4,344.6413629741717,1.1293182672630917,9.864927216974651,62.4778723741728,0.0624052500024845 +5,350.37501142418506,1.148106244065371,10.029045720218097,63.51728956138127,0.0634434590028831 +6,331.7819094104552,1.0871805050072745,9.496841470210605,60.146662644667146,0.0600767500000074 +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.0627374579999013 +8,344.36385060606943,1.1284089167893565,9.856983773130557,62.42756389649351,0.062355000001844 +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.0639817500014032 +10,333.26358795573077,1.0920356582974986,9.539252662186971,60.4152668605175,0.0603450419985165 +11,344.4812065706353,1.1287934679454126,9.860342940581988,62.44883862368592,0.0623762499999429 +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.059838374996616 +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.0641008340026019 +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.0602028339999378 +15,332.94188901480146,1.0909815175889794,9.530044433056672,60.3569480760256,0.0602867910019995 +16,331.5582427131216,1.0864475956289643,9.490439291229483,60.106115511120066,0.0600362499972106 +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.0640001250030763 +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.0596638749993871 +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.0622371659992495 +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.062508709001122 +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.0640984580022632 +22,353.40509298276,1.1580351928887662,10.115778008469515,64.06659405364027,0.0639921250003681 +23,374.3218432757152,1.2265750454292903,10.714493779191155,67.85846060154398,0.0677795839983446 +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.0640302499996323 +25,352.0352477660601,1.1535464942218625,10.07656790540862,63.81826340092126,0.0637440829996194 +26,353.2720858728606,1.1575993561755262,10.111970846592095,64.04248202841661,0.0639680410022265 +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.0626107079988287 +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.0622674580008606 +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.0635365420021116 +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.0593550839985255 +1,359.1743921729426,0.2932833904515045,9.450242581215146,59.406180088121424,0.0579962080009863 +2,369.50288557151976,0.3017171085232877,9.721995719083717,61.1144765375504,0.0596639590003178 +3,367.9933193312075,0.3004844741408879,9.68227750009528,60.86479959542653,0.0594202079992101 +4,368.5615394097468,0.3009484535191182,9.697227946727144,60.95878119615029,0.0595119589997921 +5,348.39381726937063,0.2844805258051475,9.166594720388083,57.62311094919821,0.056255458999658 +6,365.2779196413032,0.2982672179977979,9.610832579929044,60.41568204555396,0.0589817500003846 +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.0610690840003371 +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.0594197909995273 +9,361.874829413902,0.2954884290260495,9.521293824172709,59.85282290160982,0.0584322499998961 +10,366.4269936562932,0.2992054929147739,9.641065882809384,60.605734842625886,0.0591672920018027 +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.0612499999988358 +12,372.0247519362511,0.3037763352772872,9.788348581157033,61.53158435672162,0.060071167001297 +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.0578553330014983 +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.0580023749971587 +15,374.3120558659924,0.3056440303750618,9.848529867640885,61.90989637485975,0.0604404999976395 +16,367.8761650716482,0.3003888119801155,9.679195052692611,60.84542269330562,0.0594012909969023 +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.0573772919997281 +18,350.9303921671755,0.2865517627930121,9.233334578885946,58.04265150796235,0.0566650420005316 +19,373.7742933228857,0.3052049210584259,9.834380789660392,61.82095234327895,0.0603536670023459 +20,375.95244447471293,0.3069834875950296,9.891690155839845,62.18121087619322,0.0607053750027262 +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.0602809169977263 +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292 +23,366.183655668,0.2990067955917256,9.63466341351116,60.56548759596843,0.0591280000007827 +24,382.3439433397997,0.3122024578169295,10.059856974101065,63.238342288918055,0.0617374159992323 +25,366.5838826179828,0.2993336003957399,9.645193790529396,60.63168372460376,0.0591926250017422 +26,361.2944833317239,0.2950145481750603,9.506024330085278,59.756835702570555,0.0583385410027403 +27,363.4254185231531,0.2967545605796025,9.562091396453855,60.10928488184614,0.058682625000074 +28,370.6326000446566,0.3026395754311295,9.75171965278084,61.30132733454991,0.0598463749993243 +29,390.4818932754045,0.3188474904262965,10.273974691513995,64.58433056079316,0.0630514580007002 +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.0633080840016191 +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.0627279159998579 +2,365.8669906637541,0.2818969397389996,11.45206317689686,66.06959525132802,0.0661166249992675 +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.0625610419992881 +4,345.2937631135986,0.2660454690271394,10.80809717922754,62.35440680323581,0.0623987920007493 +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.0622929999990446 +6,352.2442682349835,0.2714007652778453,11.025656089412466,63.609554361995,0.0636548330003279 +7,336.95937238273893,0.2596239024426381,10.547221036732171,60.84935213499331,0.0608926660024735 +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.0629278330015949 +9,337.41659112344763,0.259976185012769,10.561532516143744,60.93191836236774,0.0609752910022507 +10,334.9993053726752,0.2581136899722047,10.485868655120818,60.49539608723549,0.0605384580012469 +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.0598098330010543 +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.061172333000286 +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.0605532500012486 +14,352.943817073241,0.2719397608192168,11.047552783280684,63.73588144200393,0.0637812500026484 +15,345.08740182486946,0.2658864696714779,10.801637830403791,62.31714132925264,0.0623615000004065 +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.0611053329994319 +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.0642670829984126 +18,352.07434056761844,0.2712698376712845,11.020337155395934,63.57886820420732,0.0636241249994782 +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.0631787919992348 +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.0635585829986666 +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.0643522919999668 +22,345.28015583657924,0.2660349847532152,10.807671255599368,62.35194955153482,0.0623963329999242 +23,344.455645883133,0.26539970789416,10.781863133200252,62.20305653769376,0.0622473340008582 +24,346.3271743070028,0.2668417022494483,10.84044415388384,62.54102396471446,0.0625855420003063 +25,339.3314757733539,0.2614515849163855,10.621470637228162,61.277715214777864,0.0613213340002403 +26,351.40222764763104,0.2707519812367377,10.999299237742472,63.45749560236042,0.063502666002023 +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.0622202090016799 +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.0623814999999012 +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.0635208330022578 +0,240.42885516643568,0.0,0.0,53.41728600341795,0.0619687500002328 +1,228.54878409089892,0.0,0.0,50.77783095987262,0.0589067500004603 +2,213.1201140526296,0.0,0.0,47.34996586640836,0.0549301249993732 +3,237.0842698478049,0.0,0.0,52.67420268921069,0.0611067079989879 +4,238.04340130189988,0.0,0.0,52.88729774039662,0.0613539170008152 +5,237.9774440222685,0.0,0.0,52.872643680393544,0.0613369170023361 +6,233.25082854773103,0.0,0.0,51.82250778694279,0.0601186670028255 +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123 +8,239.07317300806952,0.0,0.0,53.11608729108766,0.0616193330024543 +9,234.15515335358452,0.0,0.0,52.02342616989155,0.0603517499985173 +10,235.7027246756318,0.0,0.0,52.3672578612385,0.060750625001674 +11,231.79378555125,0.0,0.0,51.49878922825138,0.0597431250025692 +12,238.1722430460066,0.0,0.0,52.91592315763018,0.0613871250025113 +13,238.895348273858,0.0,0.0,53.076579076987144,0.0615734999992128 +14,245.18230748969597,0.0,0.0,54.473384374303734,0.0631939169979887 +15,239.73953556253844,0.0,0.0,53.26413640578063,0.0617910829969332 +16,237.05193913270705,0.0,0.0,52.6670196118971,0.0610983749975275 +17,238.06603239878575,0.0,0.0,52.89232580482793,0.0613597499977913 +18,238.4611281800858,0.0,0.0,52.98010621843028,0.061461582998163 +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632 +20,236.73621713579013,0.0,0.0,52.59687407052601,0.0610169999999925 +21,239.5788481011822,0.0,0.0,53.22843566564073,0.0617496669983665 +22,240.51291579071105,0.0,0.0,53.43596217440181,0.0619904160012083 +23,237.5108932275132,0.0,0.0,52.76898774765905,0.0612166670034639 +24,237.61047320422924,0.0,0.0,52.79111193110106,0.0612423330021556 +25,235.96202604191544,0.0,0.0,52.42486814780024,0.0608174580011109 +26,250.0384126471728,0.0,0.0,55.55228964081196,0.0644455420006124 +27,216.35622292125151,0.0,0.0,48.068948423030825,0.0557642080020741 +28,237.4518847231131,0.0,0.0,52.75587753194059,0.0612014580001414 +29,235.66344128962425,0.0,0.0,52.35853007411787,0.0607405000009748 +0,393.6707450554323,0.3406635038555142,11.684758182244138,66.53158230298193,0.0646891249998589 +1,373.5110006248911,0.3232182421468424,11.086385705636696,63.12452269127834,0.0613764169975183 +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.0637857080000685 +3,390.9730568158952,0.3383290557423807,11.60468661196366,66.07566458648697,0.0642458330003137 +4,408.3709649248352,0.3533843587096185,12.121083503739916,69.0159652559885,0.0671047080031712 +5,401.99100267653665,0.3478634498758537,11.931716330741784,67.93773176075425,0.0660563339988584 +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.0639412919990718 +7,383.0780350607198,0.3314970881453096,11.37035012338412,64.74138131477898,0.0629484999990381 +8,386.1588591424435,0.3341630833700618,11.46179375959312,65.26205018217308,0.0634547499976179 +9,361.0748654835688,0.3124566160293949,10.717261929808243,61.02277711054082,0.0593328750001092 +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331 +11,339.917840818384,0.2941483565406576,10.089288629344557,57.44717403239043,0.0558562910009641 +12,384.8334749313357,0.3330161603767183,11.422454300921435,65.03805612157308,0.0632369589984591 +13,403.7246257549707,0.349363642917074,11.98317295205564,68.23071946170457,0.0663412079993577 +14,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.0640180000009422 +15,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.0618219169991789 +16,374.7899823012124,0.3243250106448705,11.12434786511906,63.34067457894322,0.0615865829968242 +17,399.8438036989407,0.3460053683791456,11.867984135404695,67.57484844444714,0.0657035000003816 +18,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.0624640830028511 +19,390.02142447908176,0.3375055594315349,11.576440688501648,65.91483575697877,0.0640894579992163 +20,398.35714556030706,0.3447188867776973,11.82385781647502,67.32359858768429,0.0654592079990834 +21,394.6685243299055,0.3415269334803613,11.714373818376393,66.70021010871457,0.0648530830003437 +22,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.0662763340005767 +23,374.6576210026007,0.3242104716187268,11.120419176522333,63.31830510713735,0.061564833002194 +24,387.9335659886732,0.3356988283044939,11.514469810844142,65.56198116786766,0.0637463750026654 +25,384.9361629864913,0.3331050216220935,11.425502241637808,65.05541072279487,0.0632538329991803 +26,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.0623021250030433 +27,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.0612962499981222 +28,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.0624532500005443 +29,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.0630722080022678 +0,355.6184613008034,1.350364386940586,9.688864476298706,63.33208974751349,0.0633423750005022 +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.0620757910000975 +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.0616344580012082 +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.0619627089981804 +4,346.1149788313074,1.314277496986168,9.429941040875756,61.639614608651286,0.0616496250004274 +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.0632156659994507 +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.059909499999776 +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.0650283340000896 +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.0629628749993571 +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.062907957999414 +10,355.0965683959524,1.3483826405769976,9.67464544613996,63.239145843061195,0.0632494160017813 +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.8239970686508,0.0608338750025723 +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.0635719999991124 +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.0622212499984016 +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.0643149170027754 +15,362.2671094199502,1.3756108198972858,9.870007632763024,64.5161474531827,0.0645266249994165 +16,347.40601521064906,1.3191798565052175,9.465115470424935,61.86953527009471,0.0618795830014278 +17,352.59402676578674,1.3388799193688503,9.6064634214715,62.79346821839908,0.0628036659982171 +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.0598259170001256 +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.0626170420000562 +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.0627399590011918 +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.0636519170002429 +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.0601820419979048 +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.0630970829988655 +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284 +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.0654218749987194 +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.0600325829982466 +27,355.2156405220305,1.3488347845909645,9.677889579440173,63.260351397316235,0.0632706249998591 +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.0624030420003691 +29,347.1143112188389,1.3180721899329368,9.45716796276882,61.81758570785473,0.0618276250024791 +0,336.97433817066894,0.3673290773835455,10.452181929186342,62.212188287776854,0.0631597079991479 +1,330.7703056824168,0.3605661839764725,10.259746871330536,61.066800068015304,0.0619968749997497 +2,334.2737986243397,0.3643852725069603,10.368417299516231,61.713614789133366,0.0626535410010546 +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.0619690830026229 +4,339.2787336454407,0.3698410534238279,10.523659065605283,62.6376256844174,0.0635916249993897 +5,326.52765323109134,0.3559413522487369,10.12814938671406,60.28352174903609,0.0612016669983859 +6,347.80605915722936,0.3791365227162345,10.7881574191074,64.21194016548591,0.06518991700068 +7,312.5587912483423,0.3407141714133153,9.694866877487971,57.70459103118241,0.0585834580015216 +8,375.7459972937605,0.4095932980112343,11.65479111613785,69.37021038135724,0.0704267500004789 +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.0596813330012082 +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925 +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.0633084999972197 +12,337.0256901842581,0.3673850552003606,10.453774752519353,62.22166889438835,0.0631693329996778 +13,317.6766526799566,0.3462930511821943,9.853611365456985,58.64945039567527,0.0595427080006629 +14,328.40589370391314,0.3579887851296248,10.186408158688415,60.630282426953734,0.0615537089979625 +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.0640058329991006 +16,331.6672985956367,0.3615439782530971,10.287569563019948,61.23240286232,0.0621649999993678 +17,337.1901926729352,0.3675643761175589,10.458877247708722,62.252039337001115,0.0632001659978414 +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.0598262499988777 +19,401.922184598819,0.4381274433244484,12.466717250959304,74.20285699213157,0.0753330000006826 +20,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.0641347500022675 +21,337.3818197078384,0.3677732649674187,10.464821084982006,62.28741751220919,0.0632360829986282 +22,338.1547675106831,0.3686158401166896,10.488796177865805,62.43011910339933,0.0633809579994704 +23,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.0613165419999859 +24,335.28106096612464,0.3654832693119979,10.399660299514125,61.8995755207502,0.0628423339985602 +25,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.0611921659983636 +26,330.93325561554514,0.3607438124834998,10.264801209757769,61.09688387788729,0.0620274169996264 +27,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.0632555420015705 +28,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.0624289170009433 +29,344.64868676424874,0.3756947333670336,10.690222867625591,63.6290262057076,0.0645981249981559 +0,353.39992586587454,1.1889836975204853,9.545840542950184,63.42378752202132,0.0643312920001335 +1,352.47862696982486,1.1858840665138777,9.52095493401142,63.25844434804028,0.064163582999754 +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.0613242500003252 +3,347.78700620443374,1.170099511405862,9.39422750585849,62.41645107984983,0.0633095420016616 +4,349.67239785603925,1.1764427496838772,9.445154647461983,62.75481753313711,0.0636527499991643 +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.058231708000676 +6,343.4510799857494,1.155511660050104,9.277107899259406,61.6382934089584,0.0625202499977604 +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.0598008329980075 +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774 +9,350.0937884628729,1.1778604821878835,9.456537014137009,62.8304434355651,0.0637294580010348 +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.0639502499980153 +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.0675257500006409 +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.0621744999989459 +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.0641838340015965 +14,350.38540207791414,1.1788415911493797,9.464413917513587,62.882778590739754,0.0637825419980799 +15,348.5869825268699,1.1727909630337834,9.415836017499805,62.56002079954495,0.0634551660004945 +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.062153541999578 +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.0602440830007253 +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.0638145829980203 +19,346.13004814041824,1.1645248183134325,9.34947068417356,62.1190810226051,0.0630079170005046 +20,348.3924269467375,1.172136397494551,9.410580791313391,62.525104403495035,0.063419750000321 +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.064945041998726 +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.0636446669996075 +23,350.6754061403116,1.179817284909248,9.472247344557106,62.934824883587595,0.0638353329995879 +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047 +25,354.05204084193906,1.191177682348156,9.563455106852338,63.54082094125735,0.0644500000016705 +26,348.6677854950157,1.173062817680049,9.418018621945537,62.57452230310432,0.0634698750000097 +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.0643432079996273 +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307 +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.0573486249995767 +0,361.4635469396571,0.1704534315475134,7.124953438686063,62.82913486841347,0.0632451250021404 +1,355.6449183357349,0.1677095719776171,7.010260108664397,61.81774823094969,0.0622270419989945 +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846 +3,359.06288961197356,0.1693213664113805,7.077633115995706,62.41185565923486,0.0628250829977332 +4,356.22239586901475,0.1679818899693552,7.02164300071905,61.91812464270435,0.0623280830004659 +5,358.4918360781341,0.1690520777506998,7.066376849979254,62.31259585890797,0.0627251660007459 +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.0637023749986838 +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.0603141669998876 +8,331.99176104587264,0.1565555791030239,6.5440232065064015,57.706386457374634,0.0580884590017376 +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839 +10,355.5541882946238,0.1676667868973987,7.008471692311268,61.80197765038118,0.0622111670018057 +11,353.1251946264822,0.1665213593447525,6.960592820610656,61.379773054475784,0.0617861669998092 +12,349.0251905083527,0.1645879423315819,6.879775989460126,60.66711554342111,0.061068791001162 +13,360.0216334165911,0.1697734760994959,7.09653130095893,62.578503290274206,0.0629928339985781 +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.0626576660033606 +15,358.13035037901693,0.1688816138729684,7.059251459890081,62.249762873576174,0.0626619169997866 +16,362.65327374016647,0.1710144646515922,7.148404622436555,63.03593167057689,0.0634532910007692 +17,356.01021613514007,0.1678818335070923,7.017460640596461,61.88124383071425,0.0622909580015402 +18,356.18572663045944,0.1679645980526546,7.020920198600964,61.911750842208505,0.0623216669991961 +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.0622395829996094 +20,344.49440292303365,0.1624513830628282,6.790467812026222,59.8795797969585,0.0602760410001792 +21,361.4361650173394,0.1704405192008579,7.124413702595863,62.82437537743625,0.0632403339986922 +22,356.7505848359848,0.1682309652154978,7.032054346007811,62.00993377843252,0.0624205000021902 +23,339.33422020631144,0.16001802329827,6.688753373867688,58.98264338774234,0.0593731659973855 +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.0574885409987473 +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.0593831249971117 +26,340.30344013425093,0.1604750731558289,6.7078580579136515,59.15111196523856,0.0595427500011283 +27,342.4523851103312,0.1614884396445964,6.750216777144131,59.52463885299824,0.0599187500010884 +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.0670434999992721 +29,331.530252230005,0.1563379478590988,6.5349262205103305,57.62616758086382,0.0580077089980477 +0,353.42379519516624,0.3071766447857553,10.170960016239452,63.756219162198995,0.0638574579970736 +1,344.73567152495644,0.2996254025808409,9.920929996565622,62.188916891223435,0.0622876669985998 +2,351.2821477228619,0.3053152418643898,10.109326897287575,63.369874644742254,0.0634705000011308 +3,345.7318892341187,0.3004912605607984,9.949599516346437,62.36863052528573,0.0624676660008844 +4,351.83422142570913,0.3057950741507853,10.125214677437114,63.46946650151855,0.063570250000339 +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.0641249580003204 +6,366.573482495449,0.3186056342307138,10.54938655563919,66.12836941588593,0.0662333750005927 +7,348.3338361205126,0.3027527305731157,10.024479301198722,62.83801119006447,0.0629377919976832 +8,338.34369848808836,0.2940698489997871,9.736979444659616,61.035830881289144,0.0611327499973413 +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.0620771249996323 +10,351.68294492465503,0.3056635928847798,10.120861186629378,63.442176834307645,0.0635429169997223 +11,347.70289474870646,0.3022043508197352,10.006321838253456,62.724191925696154,0.0628237919991079 +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049 +13,345.35761370997443,0.300165960732957,9.938828477602357,62.301112738795965,0.0624000410025473 +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.0660244169994257 +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.0636525410009198 +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.0592579170006501 +17,347.8889892534473,0.3023660939914075,10.011677334382162,62.75776261954993,0.0628574160000425 +18,342.946615110539,0.29807045253451,9.869443872809333,61.86617837049608,0.0619644159996823 +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.0605625409989443 +20,326.0613287092618,0.2833946845372627,9.38351288801159,58.820141190622984,0.0589135420013917 +21,345.1205513106695,0.2999599190532134,9.932006208650844,62.258347643489195,0.0623572080003214 +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113 +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.0601117920014075 +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.0609711670003889 +25,345.27367635482636,0.3000930069718432,9.936412897512144,62.28597078037814,0.0623848750001343 +26,358.1507803712324,0.3112850819257451,10.306994934874671,64.60894811525466,0.0647115410029073 +27,318.84747151039136,0.2771247941664435,9.175909851288909,57.51879061143516,0.0576101250007923 +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.0628379999980097 +29,346.3464648714801,0.3010254161123439,9.967286000164275,62.47949747753983,0.0625787089993537 +0,377.1528286364101,0.2364171040077792,5.944201472195592,62.00882899404038,0.0626814159986679 +1,380.0216765811429,0.2382154326200412,5.989416591589608,62.48050489862795,0.0631582079986401 +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744 +3,384.3681985530305,0.2409400367037891,6.057920922838127,63.19512962687955,0.06388058399898 +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.0627903750028053 +5,381.03628983828423,0.2388514398556451,6.005407630656221,62.64732051070922,0.0633268329984275 +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.0620384590001776 +7,375.29157816409594,0.2352503848077972,5.914866818024616,61.702815215302245,0.0623720830008096 +8,373.864807786008,0.2343560181339712,5.892379884511276,61.46823561342445,0.0621349590001045 +9,366.9212068192651,0.2300034429779578,5.782943709160084,60.32661732964724,0.0609809580018918 +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666 +11,376.9342197202937,0.2362800696733281,5.940756037500822,61.97288684574722,0.0626450839990866 +12,379.717825115604,0.2380249642526397,5.984627672637799,62.430547766835225,0.0631077090001781 +13,366.6025595729651,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667 +14,363.89742763866343,0.2281079961915146,5.7352867613866545,59.82946871537442,0.0604784169991035 +15,369.6993006425364,0.2317448826450931,5.82672847793377,60.78337207662728,0.0614426669999375 +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.0611225419997936 +17,350.4494712628639,0.2196781856219259,5.523337238494139,57.61844982883658,0.0582434160023694 +18,349.70537539320884,0.2192117513882387,5.5116097491900025,57.49611079268662,0.0581197499996051 +19,355.4250143168058,0.2227970896586048,5.601755397130637,58.436493801885504,0.0590703329980897 +20,355.92618062609483,0.2231112442359329,5.609654140789172,58.51889205959614,0.0591536249994533 +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.0605397500003164 +22,374.2340939261083,0.2345875040281864,5.898200101280116,61.52895105653575,0.0621963330013386 +23,349.4985417056227,0.2190820983199927,5.50834990061696,57.46210464507238,0.0580853749997913 +24,363.71014915375633,0.2279906012426161,5.732335116957206,59.79867769734903,0.060447292002209 +25,352.26058825141075,0.2208134788000246,5.551881752686334,57.9162210109779,0.0585444169992115 +26,380.4172990516413,0.2384634273628986,5.995651887981451,62.5455503768974,0.0632239590013341 +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.0632881659985287 +28,452.555119381187,0.2836828007225136,7.132596132451771,74.40594601807642,0.0752130000000761 +29,366.6672421192952,0.2298442459778871,5.778941041729735,60.28486223077155,0.0609387500007869 +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893 +1,348.55779789257946,0.2332158846538,10.361448589618831,61.6356266585043,0.0617304580009658 +2,358.33485910912873,0.2397576002450679,10.652087668030877,63.36450863619653,0.0634620000018912 +3,346.03077541432424,0.2315250839132354,10.286328728145175,61.188772177069374,0.0612829159981629 +4,319.4310664622174,0.2137275344327587,9.49560902979828,56.485134100086235,0.0565720409977075 +5,354.87217509222506,0.2374407594767325,10.549153742466258,62.75220071885074,0.06284874999983 +6,354.41904767108167,0.2371375772985635,10.535683791407608,62.672074000334646,0.0627684999999473 +7,358.9152630876629,0.2401459416568189,10.669341122181528,63.46714172358787,0.0635647909984982 +8,339.35785444139424,0.2270603117080634,10.087965277315387,60.00879666570248,0.0601011250000738 +9,340.8776918175967,0.2280772168536777,10.1331449202134,60.27755016847198,0.0603702920016075 +10,354.0640272849366,0.2369000373728308,10.525130231850056,62.60929559139101,0.0627056250013993 +11,354.00708848272853,0.2368619402962244,10.523437633160828,62.59922707828788,0.0626955409970833 +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.0627899579994846 +13,343.10921309321594,0.2295703012476115,10.199480526858167,60.67215104401161,0.0607655000021623 +14,340.4605604865636,0.2277981192320727,10.120745011596377,60.20378865419067,0.0602964169993356 +15,356.3056669698578,0.2383998918743074,10.591766624701371,63.00568570963839,0.0631026249975548 +16,320.99748703681513,0.2147756078434052,9.542173434185576,56.762124930042816,0.0568494580002152 +17,354.8119444278913,0.2374004598542572,10.547363287810573,62.74155010433942,0.0628380829984962 +18,351.575824142101,0.2352352101887504,10.451164338385912,62.16930554988405,0.0622649580000143 +19,343.1440347346409,0.2295935999945026,10.200515656898617,60.6783085699757,0.0607716670019726 +20,356.72044373402287,0.2386774140831734,10.60409653998099,63.079030864838685,0.0631760830001439 +21,350.96718789534884,0.2348279789014951,10.43307163405214,62.061680138252285,0.0621571669980767 +22,352.7963997956422,0.2360518828684281,10.487447938868735,62.3851404723703,0.0624811250017955 +23,353.666658527277,0.2366341626544579,10.513317797933777,62.539028701535315,0.0626352500003122 +24,364.4598431575399,0.2438557543588969,10.83416280080242,64.44759222342276,0.0645467499998631 +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554 +26,338.0789340735709,0.2262046012727008,10.04994728511571,59.78264462207094,0.0598746250034309 +27,355.0131047850516,0.2375350538611509,10.553343107259709,62.77712137758989,0.0628737090009963 +28,329.98898622367545,0.2207917132064354,9.809460401028776,58.35209563312938,0.058441875000426 +29,353.84475877944084,0.2367533274188573,10.518612118180664,62.5705222464123,0.0626667920005275 +0,246.26397969829708,0.0,0.0,54.43476538811038,0.0630743330002587 +1,242.4809969916464,0.0,0.0,53.59856605292504,0.0621054169969284 +2,239.1234239616921,0.0,0.0,52.85640026650788,0.0612454589972912 +3,235.2940732640157,0.0,0.0,52.009951642262514,0.060264666997682 +4,238.8820026774676,0.0,0.0,52.80303594184067,0.0611836249991029 +5,234.2631621094942,0.0,0.0,51.782076632278866,0.0600006249987927 +6,239.56428704081335,0.0,0.0,52.95384967144987,0.0613583750018733 +7,240.1634400598459,0.0,0.0,53.08628785450275,0.0615118329988035 +8,240.7378668708275,0.0,0.0,53.213260498763326,0.0616589579985884 +9,239.34922398149791,0.0,0.0,52.906311630393986,0.0613032920009573 +10,242.8128624545116,0.0,0.0,53.67192237013237,0.0621904159997939 +11,232.12976143215943,0.0,0.0,51.31050476256479,0.0594542079998063 +12,245.03915532867256,0.0,0.0,54.164027348045266,0.0627606250018288 +13,216.43592117453937,0.0,0.0,47.841501648473,0.0554346249991795 +14,236.2355085499188,0.0,0.0,52.218048697215536,0.0605057920001854 +15,239.34987210662737,0.0,0.0,52.906454893486725,0.0613034580019302 +16,238.92934287039128,0.0,0.0,52.81350012867948,0.0611957500004791 +17,238.7121636534104,0.0,0.0,52.7654943271895,0.0611401249989285 +18,240.5050741873832,0.0,0.0,53.161803460170496,0.0615993339997658 +19,239.09170116971927,0.0,0.0,52.84938818646023,0.0612373340009071 +20,242.39574953227935,0.0,0.0,53.57972275535363,0.0620835830013675 +21,239.42991118529753,0.0,0.0,52.92414691842122,0.0613239580015942 +22,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058 +23,241.4102263831343,0.0,0.0,53.36188041611268,0.0618311660000472 +24,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936 +25,226.55614444164797,0.0,0.0,50.07849944204095,0.0580266659999324 +26,244.4723732267422,0.0,0.0,54.038744508132766,0.0626154580022557 +27,238.2831737209998,0.0,0.0,52.670669390334176,0.0610302500026591 +28,242.49953873943076,0.0,0.0,53.602664564172066,0.0621101659999112 +29,238.44536412992605,0.0,0.0,52.70652033722831,0.0610717910021776 +0,330.77706061011514,0.2608137674828426,10.33474553650764,61.4542439631448,0.0611662920018716 +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.0624705829977756 +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886 +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.0622007080019102 +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.0638947090010333 +5,339.8455414183246,0.2679641564504826,10.618079699350377,63.13905436364497,0.0628432080011407 +6,345.3511691216465,0.2723052782350849,10.79009665006524,64.16193118414189,0.0638612919974548 +7,342.53413726212943,0.2700840822094456,10.702081757549283,63.638561870600626,0.0633403749998251 +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.0631592919999093 +9,311.5008417190181,0.2456146987731268,9.732482438885151,57.872963398418015,0.0576017919993319 +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.0591447920014616 +11,313.26424396705994,0.2470051204155804,9.787577896467376,58.20058149792115,0.0579278750010416 +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.0641434579993074 +13,340.49019830223455,0.2684724607153436,10.638221255845492,63.258823556052846,0.062962415999209 +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.0633342080000147 +15,339.41178997419223,0.2676221486096528,10.604527638657494,63.058468766149446,0.0627629999980854 +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.063857832999929 +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.0636132500003441 +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.0645286670005589 +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.0640427080033987 +20,341.9755514445675,0.2696436439539266,10.684629391674344,63.53478360664397,0.0632370830026047 +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.0615041249984642 +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.0586524169993936 +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.0636538750004547 +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.0640091250024852 +25,343.06680876474195,0.2705040873366781,10.718724460715867,63.73752557870477,0.0634388750004291 +26,345.3649158389056,0.272316117357702,10.79052615029894,64.16448515240853,0.0638638339987665 +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.0640631250025762 +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.0625225420008064 +29,339.69705314558837,0.2678470752182837,10.613440355524494,63.11146709830811,0.0628157499995722 +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452 +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.0633994999989226 +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.0633070830008364 +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.0625170000021171 +4,341.2276327610607,1.1792449629834103,10.514934253268745,61.61554931588319,0.0613077500020153 +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.0623294999968493 +6,346.9583356729764,1.1990496384973743,10.691525943268257,62.65034361148781,0.0623373750022437 +7,349.52325272198976,1.2079137081685354,10.770563897836109,63.11349125180597,0.0627982089972647 +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.0630362500014598 +9,349.6454613517626,1.208336047678166,10.774329758463644,63.13555849118416,0.062820166000165 +10,380.9826285174108,1.3166338318735518,11.739985000872505,68.79411771539309,0.0684504579985514 +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.0568042079976294 +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.0622269169980427 +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.0617767499970796 +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.0641705000016372 +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.0611342090014659 +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687 +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.0623579169987351 +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578 +19,357.74395683758917,1.2363235524770289,11.02388500958684,64.59790561692476,0.0642752079984347 +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.0639412499986065 +21,350.5608098293886,1.2114993907898617,10.802536234542933,63.300843168770264,0.0629846250012633 +22,352.93602165071184,1.2197078601733349,10.8757284198789,63.729735694056735,0.0634113750020333 +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.0570584579982096 +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.0630519169972103 +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.0629439170006662 +26,347.9465017031017,1.202464631017727,10.7219762932414,62.82877697067623,0.0625149170009535 +27,352.52809188308873,1.2182981000087545,10.863158058411392,63.65607572545742,0.0633380830004171 +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023 +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.0611057499991147 +0,377.80027211049406,0.3116878218896733,10.909073766138569,64.90033091347199,0.0646291250013746 +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.062719665998884 +2,365.138799454798,0.3012420199003742,10.543470696513095,62.72528281036681,0.062463166002999 +3,372.9749204140684,0.3077068735655527,10.769740574794348,64.07140900687176,0.063803666998865 +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.0574257089974707 +5,353.0611685087077,0.2912778913354449,10.194726196740575,60.65052981806932,0.0603970830015896 +6,358.20146127741265,0.2955186682094338,10.343153387330185,61.533553802719894,0.0612764170000446 +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.0627197499998146 +8,370.3431490069413,0.3055356440610937,10.69374754213828,63.61931077449885,0.0633534579974366 +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.96508971696144,0.0636977919966739 +10,376.0095517358092,0.3102104652692531,10.85736628442386,64.59271243495337,0.0643227920008939 +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.0631544160023622 +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.0602364999976998 +13,356.8106779834024,0.2943712624301605,10.30299418505562,61.29463842156898,0.0610384999999951 +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.0637497499992605 +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.0652685829991241 +16,368.50737025878874,0.3040211139727838,10.640738989047431,63.30395195388854,0.0630394170002546 +17,375.27104536938856,0.3096011924396825,10.83604173538889,64.46584829244057,0.0641964579990599 +18,361.6927852373143,0.2983990344794049,10.443966206779171,62.133310068267214,0.0618736670003272 +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.0602696669993747 +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.0596034159971168 +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.0610374579991912 +22,365.3711704842491,0.3014337275972355,10.550180465903242,62.76520061302437,0.0625029169968911 +23,360.55117343559215,0.2974571968943376,10.411001891301815,61.93719855333208,0.0616783749974274 +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.0590651249985967 +25,363.9940309949737,0.3002975780506703,10.510415231773464,62.52862902966181,0.062267334000353 +26,358.9745505884595,0.2961564722060808,10.365476527212827,61.66635876824394,0.0614086669993412 +27,374.9619557919834,0.3093461914133147,10.827116699466018,64.41275141206133,0.0641435830002592 +28,361.3880799001845,0.2981476504814062,10.435167766849217,62.0809663335728,0.0618215419999614 +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.063004916999489 +0,350.0910376507284,0.236639364962833,11.25727264751763,63.11509919794418,0.0630889589992875 +1,356.37546692202835,0.2408872410635572,11.459350182023508,64.24806843795162,0.0642214590006915 +2,332.9498947627177,0.2250530381748767,10.706094530319138,60.024860324642134,0.0600000000013096 +3,344.6223300836617,0.2329428650623437,11.08142486653721,62.12918986734226,0.0621034579999104 +4,354.8452791425179,0.2398529310542318,11.410146577294173,63.97220318260727,0.0639457079996645 +5,360.7172223274056,0.2438219926894398,11.598960509369068,65.03080862159774,0.0650038749990926 +6,345.0863790001193,0.2332565327347271,11.096346485809166,62.212849516533666,0.0621870830000261 +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.0630313330002536 +8,348.98767498943727,0.2358935616962206,11.22179372069164,62.91618281240628,0.0628901249983755 +9,350.3400508932428,0.2368076821410486,11.265279736138456,63.1599917939054,0.0631338330022117 +10,345.9441911217454,0.2338363593909055,11.123929668167364,62.36749756897438,0.0623416670023289 +11,351.08109746493335,0.237308582681975,11.289108290442528,63.29358912389249,0.0632673750005778 +12,329.7454850782693,0.2228870602112674,10.603055864336008,59.447163059205174,0.0594225419990834 +13,345.43644252185425,0.2334931535006739,11.10760287367492,62.27595965510834,0.0622501670004567 +14,335.9221662007163,0.2270621053886649,10.80166872777506,60.56070725151963,0.0605356249980104 +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.0625607500005571 +16,343.85677837624013,0.232425400601939,11.056808342920815,61.99117470340289,0.0619654999973136 +17,355.4441283707007,0.2402577151984264,11.429402737296574,64.08016489649461,0.0640536249993601 +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.23394875574533,0.0592094160019769 +19,343.34116662973724,0.2320768797226883,11.04022870680789,61.89821920603703,0.061872582999058 +20,348.2829310492102,0.2354171994345762,11.199132487387695,62.78913019205054,0.0627631249990372 +21,343.4116854085347,0.2321245459501489,11.0424962573428,61.91093246984688,0.0618852909974521 +22,353.14099187217386,0.2387009408174215,11.355344756028764,63.664950929446555,0.0636385830002836 +23,348.2216627188161,0.2353757859242673,11.197162387540146,62.77808461722959,0.0627520839989301 +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.0587976249989878 +25,328.22177318395427,0.2218571274901197,10.554060493458554,59.17246528915051,0.0591479579998122 +26,344.13585700434845,0.2326140400763266,11.065782192202397,62.0414875460717,0.0620157920020574 +27,347.5217742944843,0.2349027056837959,11.174657284672003,62.6519073588067,0.0626259589989786 +28,341.68127822516465,0.2309549003066968,10.986854543161437,61.59897126751471,0.0615734589991916 +29,354.82354305874037,0.2398382388384687,11.409447647601445,63.968284558774464,0.0639417909987969 +0,341.6843896416646,0.2265596975932227,10.162820720610275,60.03831986220403,0.0603289999999105 +1,355.1767007392971,0.2355060059841886,10.56412655414789,62.40909158580999,0.0627112499969371 +2,361.3328929961324,0.2395879748956073,10.747232016745816,63.490813347335944,0.0637982089974684 +3,325.33522572126685,0.2157191039167252,9.676542661407389,57.165562537932175,0.0574423340003704 +4,359.5754915168495,0.2384226996891111,10.69496110034013,63.18201541761446,0.0634879159988486 +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.0637705829976766 +6,362.5121173216168,0.2403698798192021,10.782306037604211,63.69801815208857,0.0640064170002006 +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.0625325840010191 +8,366.4686706564167,0.2429933403992532,10.899986983623648,64.39323520580211,0.0647050000006856 +9,326.0245413625624,0.2161761664808124,9.6970451821393,57.28668411741529,0.0575640419992851 +10,353.9262046474312,0.2346768430929258,10.526932675882676,62.18936341962535,0.0624904579999565 +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.0648867500021879 +12,362.23199716425125,0.2401841413422145,10.773974340207907,63.64879745568685,0.0639569579980161 +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.0621640839999599 +14,349.1769734349746,0.2315277838443518,10.385674875303785,61.35486271875324,0.0616519169998355 +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.0615940830030012 +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.0619958749994111 +17,355.15546194816227,0.2354919232392854,10.563494842447945,62.40535965841063,0.0627075000011245 +18,351.3492284590744,0.2329681348123066,10.450284904437757,61.736555725261255,0.0620354580023558 +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.0613407090022519 +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604 +21,323.2755250958313,0.2143533840741516,9.61528037132623,56.80364677965019,0.0570786659991426 +22,346.4812920955575,0.2297403660764329,10.305496421142848,60.88119701025472,0.0611759580024227 +23,362.6600753923095,0.2404679859568216,10.786706798634572,63.72401627855775,0.0640325409985962 +24,355.4261350672641,0.2356713976954484,10.571545553767258,62.45292038929383,0.0627552910009399 +25,358.8557392353121,0.2379454555884422,10.673553293538694,63.05554573093719,0.063360833999468 +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057 +27,349.93779309502264,0.2320322583750268,10.408304161394062,61.48854846938211,0.0617862500002956 +28,343.8514567140059,0.2279966086007427,10.227276442947606,60.41910127919684,0.060711624999385 +29,341.386570501989,0.2263622235023134,10.153962597103774,59.98598922811306,0.0602764160030346 +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.0610715000002528 +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.0585037499986356 +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.0611541670004953 +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.0613001669989898 +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.0593751670021447 +5,234.91751197548183,0.5667089121020564,0.0,53.77067501297747,0.0606549160002032 +6,236.52417105423336,0.5705847747867131,0.0,54.13842598417459,0.0610697500014794 +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.060860749999847 +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.0579030840017367 +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.061600166001881 +10,211.58113691439135,0.5104128462529662,0.0,48.42917182388438,0.0546295419990201 +11,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.0624751249997643 +12,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.0611307920007675 +13,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.0609432919991377 +14,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.0610500000002502 +15,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.0608165829980862 +16,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.0616963329994177 +17,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.0619737499982875 +18,236.8819409910412,0.5714478497016745,0.0,54.22031656287064,0.0611621250027383 +19,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.0610076659977494 +20,235.3475795194772,0.5677463958891886,0.0,53.8691139158389,0.0607659580018662 +21,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.061068625000189 +22,238.7517986631784,0.5759586458456127,0.0,54.64831151464549,0.0616449160006595 +23,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.0616773340007057 +24,237.2802187825453,0.5724086447145267,0.0,54.31147905438421,0.0612649589966167 +25,236.2441867895784,0.5699093480094838,0.0,54.074339902311614,0.0609974590006459 +26,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.0610905829998955 +27,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.0587892079965968 +28,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.0620941250017494 +29,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.0597400420010671 +0,344.373267273601,0.2352735575751715,10.587310090882715,63.08692393837098,0.0634621249992051 +1,342.4823762323536,0.233981713217497,10.529177094787368,62.74052510132029,0.0631136660012998 +2,345.31927445296463,0.235919863475576,10.616393856400922,63.260226249093755,0.0636364580022927 +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.0636334160008118 +4,328.0017047540005,0.2240886134372441,10.083987604675986,60.08776106024389,0.0604451250001147 +5,318.0521033356242,0.2172911110042328,9.77809999519048,58.26505933642072,0.0586115830010385 +6,346.70889830534406,0.2368692453774554,10.659116041985495,63.51479622478341,0.0638925419989391 +7,314.29836506293805,0.2147265816358156,9.6626961736117,57.57739910434655,0.057919833001506 +8,346.87417673892634,0.2369821625192743,10.664197313367344,63.54507414981113,0.0639229999978852 +9,339.65000365733727,0.2320466548508062,10.44209946828628,62.221653022137616,0.0625917079996725 +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.0635079589992528 +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.0616562089999206 +12,348.17607141497996,0.2378716084232734,10.704222379047303,63.783572715783464,0.0641629170022497 +13,341.54157300846134,0.2333389626253396,10.50025331814028,62.56817612110891,0.0629402919985295 +14,339.28033302634714,0.2317940983002566,10.43073442351155,62.15393178708312,0.0625235840016102 +15,319.2664966692951,0.2181207765650074,9.815434945425334,58.48752823035984,0.0588353749990346 +16,353.3388710465269,0.2413987992705141,10.862945967173138,64.72936374725073,0.0651143329996557 +17,341.457685719264,0.2332816513795479,10.497674312079658,62.55280851991593,0.0629248330005793 +18,422.2055693438154,0.2884480758741662,12.980163414337484,77.3452912022586,0.0778052919995389 +19,314.12879430577607,0.2146107320066789,9.657482940300552,57.54633485379091,0.0578885840004659 +20,342.5287288615394,0.2340133810297458,10.530602146338564,62.74901659897613,0.0631222080010047 +21,341.5811371692552,0.2333659926005062,10.50146966702278,62.57542401587859,0.0629475829991861 +22,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.0638293329975567 +23,338.38881272636,0.2311850174784813,10.403325786531662,61.99061111530136,0.0623592920019291 +24,344.76916932805335,0.2355440352621875,10.599481586798438,63.15945059816086,0.063535083001625 +25,344.2170292735118,0.235166816798222,10.58250675591999,63.0583021614661,0.0634333329981018 +26,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.063504041001579 +27,334.4460499034867,0.2284913477771234,10.282110649970557,61.2683228253801,0.0616327079987968 +28,341.1402445342186,0.2330647776439127,10.487914993976077,62.494655376803465,0.0628663339994091 +29,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462 +0,329.80854336715817,0.2333393777612803,10.666942983372811,62.50161904320008,0.0632824170024832 +1,335.5288092279848,0.2373864629670399,10.851952592778972,63.58565972331428,0.0643799999998009 +2,321.7799299616298,0.2276591378341832,10.407274872419803,60.9801262055848,0.0617419170011999 +3,329.7051746137013,0.2332662444204476,10.663599744934748,62.48202975547704,0.0632625829966855 +4,331.94620271569426,0.2348517706700889,10.736080944918353,62.90672428663097,0.0636925830003747 +5,333.0858280497938,0.2356580550180469,10.77293965796786,63.12269330840544,0.0639112500030023 +6,312.36717422581074,0.2209996179078911,10.10283967578931,59.19632622532799,0.0599358330000541 +7,327.8797790820893,0.2319747780043082,10.604561280196949,62.13610125115399,0.0629123329999856 +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.063090290997934 +9,331.0710760494818,0.2342326189959948,10.707776868388336,62.7408800882129,0.063524667002639 +10,310.75220077947944,0.2198570250107495,10.050606857634266,58.89027455645078,0.0596259579979232 +11,341.9923928625649,0.2419594451220895,11.061003205581237,64.81056565770255,0.065620208002656 +12,327.95947629563574,0.2320311637426167,10.607138913948194,62.15120457391521,0.0629276250001567 +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519 +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.0625667500025883 +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.0641760830003477 +16,327.93276637308287,0.2320122664859086,10.606275039355824,62.14614280872553,0.0629225000011501 +17,324.008361361325,0.2292357519233146,10.479348659351526,61.40243355088785,0.0621694999972533 +18,324.96622889461435,0.2299134427190519,10.510328810013805,61.58395787117464,0.0623532919998979 +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.063567208002496 +20,327.4695771381485,0.2316845603362684,10.59129418680084,62.058364375786184,0.0628336250010761 +21,416.4333992141598,0.2946264194965756,13.468636319843457,78.91779093658275,0.0799036669995985 +22,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.0607522499994956 +23,329.8941037233372,0.2333999116700384,10.669710247773184,62.517833483046005,0.0632988340003066 +24,323.0526671214134,0.2285595987315437,10.448438799156284,61.22132108880636,0.0619861249979294 +25,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.0633283329989353 +26,315.26661635015887,0.2230509717456147,10.1966158512281,59.745796003289655,0.0604921669983014 +27,333.9946170348847,0.236301022765736,10.802332469290793,63.29491681225073,0.0640856249992793 +28,316.09592705316356,0.2236377086488927,10.22343810966367,59.90295767381056,0.0606512920021486 +29,325.3592739458097,0.2301915218941447,10.523041000875187,61.65844336450306,0.0624287079990608 +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.0634840419988904 +1,347.5338735270447,0.2657494731615711,9.998823927704114,61.52100303690372,0.0620952919998671 +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.0612300419998064 +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.0624869169987505 +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.0628582499994081 +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.0631118750025052 +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.0606008330032636 +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822 +8,349.36704941119723,0.2671512517003993,10.051565845227524,61.845514768642445,0.0624228329979814 +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.0633064590001595 +10,347.2269851313199,0.2655148041531791,9.989994506263365,61.46667716146096,0.0620404590008547 +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.0602130829975067 +12,350.48943947996935,0.2680095121238534,10.083857893659983,62.04420205667207,0.0626233750008395 +13,317.649151194063,0.2428974583781785,9.139016871478969,56.230761614548335,0.0567556669993791 +14,360.8859284017174,0.2759594176270062,10.382973088216112,63.88460518065195,0.0644809580007859 +15,353.76099420840256,0.2705111789014739,10.177983106167956,62.62333791569122,0.0632079170027282 +16,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.0618185419989458 +17,355.1032874398208,0.2715375931484005,10.21660194220857,62.86095281385472,0.0634477499988861 +18,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587 +19,344.7340828392565,0.2636085512057017,9.918271739114529,61.025379604119955,0.0615950419996806 +20,349.0872158684356,0.2669372707845043,10.043514813266976,61.79597818661276,0.0623728339996887 +21,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.0648655000004509 +22,351.9040263790746,0.2690912073248515,10.12455667559754,62.29461449570313,0.062876125000912 +23,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.0622356249987205 +24,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.0632546249980805 +25,326.03476636272546,0.2493097047315813,9.380277640525748,57.715196645361075,0.0582539589995576 +26,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.062940374999016 +27,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.063144416999421 +28,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.0632301670011656 +29,353.3169846035595,0.2701716571237312,10.165208599280389,62.544738624143775,0.0631285839990596 +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057 +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.0611507499997969 +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.0614833750005345 +3,232.13575724922015,0.7657034323778565,0.0,52.259259259788706,0.0585086249993764 +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.0618704159969638 +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.0566604589985217 +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.0621952089968544 +7,244.0876652220984,0.8051269880882851,0.0,54.949916937025456,0.0615210420000948 +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702 +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.059902625001996 +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.0606438329996308 +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.0611773339987848 +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.0575685409967263 +13,243.28010263868015,0.8024632302540302,0.0,54.76811546483757,0.0613174999998591 +14,241.72548654155145,0.7973353047000047,0.0,54.41813454577533,0.0609256669995375 +15,242.0336340586369,0.7983517341131507,0.0,54.48750585322254,0.0610033339980873 +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.0621428749982442 +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.0613224580010864 +18,250.56832102039976,0.8265035327775692,0.0,56.4088661120691,0.0631544579991896 +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.0616879589979362 +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.0614238340021984 +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.0608379170007538 +22,249.0137049377049,0.821375607271154,0.0,56.05888519625626,0.0627626250025059 +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.061630124997464 +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.0607461250001506 +25,242.13265613002585,0.7986783599671,0.0,54.50979806775457,0.0610282920024474 +26,233.01622352722865,0.7686076641909685,0.0,52.4574730810336,0.0587305420012853 +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.0629959580001013 +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.0622290829996927 +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.0632171249999373 +0,378.2830151197381,0.2429563359792794,9.718253439171178,64.97346585045874,0.0655562920001102 +1,353.2040927683805,0.2268491283033914,9.073965132135658,60.66593831199269,0.0612101250007981 +2,357.24886858454886,0.2294469290844887,9.177877163379549,61.36066446373754,0.0619110829975397 +3,348.1538269708763,0.2236055407648531,8.944221630594125,59.79851033025787,0.0603349160010111 +4,358.26397198427844,0.230098890163313,9.203955606532524,61.53501748367458,0.0620870000020659 +5,356.8740379487522,0.2292061900762698,9.168247603050794,61.29628397468245,0.0618461250014661 +6,349.28482212183866,0.2243319345676548,8.973277382706195,59.99276878723571,0.0605309169986867 +7,362.52080833113473,0.2328328891015637,9.313315564062547,62.266166914018186,0.0628247080021537 +8,368.1793617620893,0.2364671559165634,9.45868623666254,63.23807369654383,0.0638053330003458 +9,372.0570396746568,0.2389576362714559,9.558305450858237,63.90409930002364,0.0644773329986492 +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.0619698750015231 +11,363.9811926115906,0.2337708366163073,9.350833464652291,62.517000877961046,0.0630777920014225 +12,354.28483392042943,0.2275432459347652,9.101729837390607,60.851565198554354,0.0613974170009896 +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.0630681250004272 +14,356.9596353834419,0.2292611659495451,9.170446637981808,61.31098609393551,0.0618609590019332 +15,378.40779325868374,0.2430364760813639,9.72145904325456,64.99489760347333,0.0655779160006204 +16,387.2890894266006,0.2487405840890177,9.94962336356071,66.52033905923446,0.0671170409987098 +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.0630379169997468 +18,365.2316744876873,0.234573972053749,9.382958882149962,62.731782240659754,0.0632944999997562 +19,373.77107717779,0.2400584952972319,9.602339811889276,64.19850045663115,0.0647743749977962 +20,344.6805585467942,0.2213747967545242,8.85499187018097,59.20194564635276,0.05973300000187 +21,362.17699331162976,0.2326120702065701,9.304482808262808,62.20711363238563,0.0627651249997143 +22,356.0515201334432,0.2286779191608498,9.147116766433992,61.155009238444414,0.0617035830000531 +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.0631745829996361 +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986 +25,373.78310260490974,0.2400662187571674,9.6026487502867,64.20056593048821,0.0647764589994039 +26,367.3291981816165,0.2359211292110574,9.436845168442298,63.0920505547285,0.0636579999991227 +27,372.0101555478638,0.2389275244366498,9.557100977465993,63.89604653505835,0.0644692079986271 +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603 +29,358.8888493859939,0.2305002243969132,9.22000897587653,61.64234572443166,0.0621952910005347 +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.0610695840005064 +1,348.61418586415783,0.328045719266169,8.988452707893032,60.78687178002113,0.0609865000005811 +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.0629059159982716 +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471 +4,358.8403201050791,0.337668504850926,9.252117032915374,62.5699739488766,0.0627754579982138 +5,342.5880675551526,0.3223751459067964,8.833078997846224,59.736114536529385,0.059932291998848 +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.0610672920010983 +7,345.5035960299564,0.3251186562811295,8.908251182102951,60.24448700889331,0.0604423340009816 +8,376.33157594924216,0.3541277650788013,9.703100763159156,65.61987486910189,0.0658353750004607 +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.0568824580004729 +10,374.6764809907141,0.3525703218130366,9.660426817677203,65.33128063195569,0.0655458330002147 +11,345.8784849508381,0.32547142650874,8.917917086339479,60.30985533206954,0.0605079169981763 +12,362.25983335779995,0.3408862645693045,9.340283649198945,63.16622482469214,0.0633736670024518 +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.061856042000727 +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.064390874998935 +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.062227124999481 +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.0621582500025397 +17,360.4265799552419,0.3391611743250606,9.29301617650666,62.846565602433735,0.06305295799757 +18,349.90653892523665,0.3292618226453718,9.021773940483188,61.0122157361874,0.0612125840016233 +19,360.72001805303375,0.3394372993817952,9.300582003061187,62.89773157544665,0.0631042920031177 +20,358.5747544990663,0.3374186077905959,9.245269853462329,62.52366802359742,0.0627290000011271 +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.0568161250012053 +22,362.4810980291357,0.3410944744792845,9.345988600732396,63.20480612101142,0.0634123750023718 +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079 +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.0637672089978877 +25,332.0330087474858,0.3124428425213943,8.560933885086206,57.895658719214374,0.0580857919994741 +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.0603039170018746 +27,366.3288499695804,0.3447152065207306,9.44519665866802,63.875727768291384,0.0640855000019655 +28,354.5207373187578,0.3336037802943049,9.140743580063956,61.8167804885347,0.0620197909993294 +29,361.6341438543446,0.3402974911586943,9.324151257748223,63.057125111706064,0.0632642089985893 +0,352.49020382752724,0.3393570846515136,10.68974816652268,63.3579677044376,0.0637874170024588 +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375 +2,345.6512964466877,0.3327729820416748,10.48234893431276,62.12871574718069,0.0625498330009577 +3,348.5358761098863,0.335550087715304,10.569827763032078,62.64720137644727,0.0630718329994124 +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.0638328329987416 +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.0629714159986178 +6,333.6775775330467,0.3212453812776034,10.119229510244509,59.976512684528565,0.0603830420004669 +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.0620619170003919 +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463 +9,317.4674720822513,0.3056392337366432,9.62763586270426,57.06284493863128,0.057449625001027 +10,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.0615481249988079 +11,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.0638772080019407 +12,347.3698925446688,0.3344275464953006,10.534467714601972,62.43762293067263,0.0628608340011851 +13,348.5754810580413,0.3355882170579005,10.571028837323867,62.65432012471003,0.0630789999995613 +14,346.10834760015814,0.3332130043324907,10.496209636473456,62.21086790887602,0.0626325420016655 +15,353.50238182134535,0.3403315508051847,10.720443850363315,63.53990053532798,0.0639705829999002 +16,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.0620592500017664 +17,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.0616400409999187 +18,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.0625483750009152 +19,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.0630281250014377 +20,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407 +21,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.0618219999996654 +22,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.0640606250017299 +23,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.061287207998248 +24,345.3885786449535,0.3325200526089857,10.47438165718305,62.08149382209764,0.0625022909989638 +25,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502 +26,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.0597877090003748 +27,347.5174813223003,0.334569636393858,10.538943546406529,62.46415111473329,0.0628875419970427 +28,346.21679562001196,0.3333174117839722,10.499498471195126,62.23036078006762,0.0626521669983048 +29,349.8149219362817,0.336781478710197,10.608616579371208,62.87710207519379,0.0633032919977267 +0,250.10934507332675,0.0,0.0,55.11416653061159,0.0635523749988351 +1,239.838881397826,0.0,0.0,52.85096422926539,0.0609426669980166 +2,241.89828862855623,0.0,0.0,53.304775793305645,0.0614659590028168 +3,226.9506637505054,0.0,0.0,50.01091291695259,0.0576677919998473 +4,240.77109914478743,0.0,0.0,53.05638799755266,0.0611795420009002 +5,241.309764565714,0.0,0.0,53.17508846316111,0.0613164160022279 +6,232.6059540307432,0.0,0.0,51.257114294164616,0.0591047919988341 +7,229.17355489939848,0.0,0.0,50.50074984377193,0.058232625000528 +8,237.4643088347507,0.0,0.0,52.32770274280641,0.0603392919983889 +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362 +10,246.9017604503701,0.0,0.0,54.40734226933166,0.0627373329989495 +11,227.72021219973772,0.0,0.0,50.18049083245163,0.0578633330005686 +12,241.19055480567744,0.0,0.0,53.1488193664794,0.061286124997423 +13,239.55814760206837,0.0,0.0,52.789101650057795,0.0608713330002501 +14,237.7916072840164,0.0,0.0,52.3998263223262,0.0604224579983565 +15,240.87981688341813,0.0,0.0,53.08034506940843,0.0612071670002478 +16,240.89932900283105,0.0,0.0,53.084644765600814,0.0612121249978372 +17,240.4998774005804,0.0,0.0,52.99662149673451,0.0611106249998556 +18,241.5399942998725,0.0,0.0,53.225821952967294,0.0613749170006485 +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666 +20,241.08921611249076,0.0,0.0,53.12648834317978,0.0612603750014386 +21,240.12551449843392,0.0,0.0,52.91412678097035,0.0610154999994847 +22,242.95922422123857,0.0,0.0,53.538563862744645,0.061735540999507 +23,218.386555036205,0.0,0.0,48.123723480956784,0.0554916660003073 +24,240.68271211186973,0.0,0.0,53.03691100579953,0.0611570830005803 +25,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842 +26,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115 +27,241.06396210591663,0.0,0.0,53.12092336309683,0.0612539579997246 +28,240.81127256853603,0.0,0.0,53.06524062465436,0.0611897500020859 +29,238.5282000000232,0.0,0.0,52.562142103063344,0.0606096250012342 +0,356.01103457289975,0.2302788063214099,9.967782616483888,63.58984751704077,0.0625623749983788 +1,351.19450650439023,0.2271633289161644,9.832926951656832,62.72953068499227,0.0617159590001392 +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.070130166997842 +3,372.26214494736774,0.2407905206645328,10.422789680193349,66.49258234922029,0.0654182079997554 +4,374.1580309147266,0.2420168375903794,10.475871684269285,66.83122100888622,0.0657513750011276 +5,405.53899035120986,0.2623150002271732,11.3544921526905,72.43641363416084,0.0712660000026517 +6,333.0413416768214,0.2154213076822906,9.324665175390583,59.48705539283827,0.0585258749997592 +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.0645243750004738 +8,366.1896728586104,0.2368626603225164,10.25276943967464,65.40793177191775,0.0643510829977458 +9,352.4134565857517,0.2279517830438238,9.867055751754089,62.947256660530215,0.0619301670012646 +10,360.33604592969425,0.2330763557113158,10.088876540075528,64.36237079856764,0.0633224159973906 +11,359.41703628607354,0.2324819122160889,10.063145628782136,64.1982194733857,0.0631609169977309 +12,358.8771446574472,0.2321326938275855,10.04802946139406,64.10178530981754,0.0630660409988195 +13,358.17342362709223,0.2316775055802666,10.028326312974398,63.976088326665064,0.0629423750033311 +14,354.21164807047495,0.22911490819565,9.917402454754566,63.268445363170216,0.0622461659986584 +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.0628698330001498 +16,345.8859837170851,0.2237296143060058,9.684296162102823,61.781334921929904,0.0607830840017413 +17,349.5224448786402,0.2260817884079173,9.78611169822842,62.43087099892917,0.0614221249998081 +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.0565261669980827 +19,360.3958018453322,0.2331150076619224,10.090549617366072,64.3730442586423,0.0633329169977514 +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.0621866250003222 +21,366.208166991892,0.2368746228925562,10.253287248063508,65.41123515018734,0.064354333000665 +22,359.1301384857916,0.2322963379597616,10.05511291454397,64.14697446803133,0.0631104999993112 +23,365.57154258781645,0.2364628347916018,10.235462705979335,65.29752280745234,0.0642424580000806 +24,349.0676830815694,0.2257876345935119,9.773379040262016,62.349642524179785,0.0613422089991217 +25,357.242315974124,0.2310752367232367,10.00225667530582,63.809776083716656,0.0627787500015983 +26,354.99835934867855,0.2296237770690029,9.939429207415412,63.40896586776896,0.0623844159999862 +27,365.0418539985884,0.236120216040484,10.220632208609526,65.20291108660797,0.0641493749972141 +28,374.2950808651228,0.2421054856824856,10.479708880256164,66.85570054632068,0.0657754590029071 +29,373.26936300344295,0.2414420200539734,10.450990296621994,66.67248925204723,0.0655952080014685 +0,245.1615255437683,0.0,0.0,54.62988385920401,0.0630969579979137 +1,241.02349681651853,0.0,0.0,53.7077977844241,0.062031957997533 +2,241.0796768893551,0.0,0.0,53.72031651405535,0.0620464170024206 +3,239.89379555329384,0.0,0.0,53.456063958454976,0.0617412079991481 +4,238.74985015186837,0.0,0.0,53.20115607973081,0.0614467920022434 +5,242.9289988271171,0.0,0.0,54.132405003283566,0.0625223749993892 +6,222.20890597794013,0.0,0.0,49.51530098016318,0.0571896670007845 +7,239.96163203488717,0.0,0.0,53.471180111377585,0.0617586670014134 +8,237.5137840474237,0.0,0.0,52.92572074142338,0.0611286669991386 +9,240.0446801289891,0.0,0.0,53.48968590149068,0.0617800410000199 +10,239.2075238922962,0.0,0.0,53.30314052949111,0.0615645830002904 +11,241.35311704054809,0.0,0.0,53.781247786484734,0.0621167919998697 +12,237.1938775091375,0.0,0.0,52.85443526139705,0.0610463329976482 +13,236.38327460023032,0.0,0.0,52.67380682603668,0.0608377089993155 +14,236.86118776917695,0.0,0.0,52.78030127232645,0.0609607089972996 +15,228.8396288104752,0.0,0.0,50.9928395843162,0.0588962090005225 +16,234.1374673466227,0.0,0.0,52.173368638753345,0.0602597080032865 +17,238.49162938758172,0.0,0.0,53.14361617687808,0.061380334002024 +18,221.11886761338675,0.0,0.0,49.27240532544921,0.0569091249999473 +19,238.6339309293796,0.0,0.0,53.17532554352589,0.0614169579966983 +20,240.64174911522755,0.0,0.0,53.622732101549154,0.0619337080024706 +21,238.3167792135448,0.0,0.0,53.10465392666686,0.0613353330008976 +22,237.09123886601097,0.0,0.0,52.83156406600441,0.0610199170005216 +23,236.7632388971176,0.0,0.0,52.758475108972014,0.0609355000015057 +24,235.63175807428223,0.0,0.0,52.50634473980698,0.0606442919997789 +25,226.50542703780656,0.0,0.0,50.47270425124547,0.0582954580022487 +26,236.4643838585177,0.0,0.0,52.6918805810858,0.0608585840018349 +27,237.71679612865097,0.0,0.0,52.97095837157298,0.061180916000012 +28,237.03425063747616,0.0,0.0,52.818865253255176,0.0610052500014717 +29,237.04752730136903,0.0,0.0,52.82182372157477,0.0610086670021701 +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.0626812500013329 +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.0595197920010832 +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.0632364579978457 +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282 +4,360.278246721321,1.1641760490899935,10.648786801970235,64.88569450075113,0.0639529170002788 +5,351.330385453154,1.1352626026807866,10.384313806874252,63.274195061179135,0.0623645839987148 +6,354.42246275922594,1.1452541088969477,10.475706701969138,63.83107459881516,0.062913458001276 +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553 +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.0629884580012003 +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.10978890296269,0.0612169169980916 +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.0612827920012932 +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.55417587441491,0.0596836670010816 +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.0632213749995571 +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.0578171670022129 +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.0632325830010813 +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.0619718330017349 +16,356.72656097066806,1.1526993986887202,10.543809205652703,64.24604001515073,0.0633224579978559 +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.0598752080004487 +18,351.34986607256644,1.1353255508902549,10.384889597849094,63.277703498148014,0.0623680419994343 +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.063180832999933 +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.0622285000026749 +21,351.2292135769868,1.1349356834838955,10.381323457749753,63.25597412358772,0.0623466249999182 +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.0580599590030033 +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.0631387080029526 +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.0646871669996471 +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.0642974580005102 +26,347.6089907752034,1.1232375676066255,10.2743201036959,62.60397619454575,0.0617039999997359 +27,359.7827304146522,1.1625748749380511,10.634140767815705,64.79645258845903,0.0638649580032506 +28,357.17747694959303,1.1541564546936098,10.557136982638609,64.32724946012914,0.0634024999999383 +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.063656832997367 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..e02318729 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2951.495904520558,2.2148803831535737,0.03355879368414506,582.077276451496,0.6138243749992398 +1,2934.3258093471427,2.201995490811955,0.033363568042605374,578.6910876989903,0.6102534999990894 +2,2958.2731076379414,2.219966175146153,0.033635851138578074,583.4138379986367,0.6152338339998096 +3,2935.405490800975,2.202805712255422,0.03337584412508215,578.9040163495498,0.6104780419991584 +4,2932.144611632538,2.2003586625099203,0.03333876761378667,578.2609242611298,0.6097998750010447 +5,2944.56143397673,2.2096765735356927,0.03347994808387413,580.7096995147969,0.6123822089975874 +6,2943.7381974341965,2.2090587951183283,0.033470587804823156,580.5473454746576,0.612210999999661 +7,2933.019134274525,2.201014927369172,0.03334871102074503,578.4333926548225,0.6099817499998608 +8,2934.3294156360694,2.2019981970662945,0.033363609046459006,578.6917989108315,0.6102542500011623 +9,2925.5930077164485,2.195442166108989,0.033264275244075596,576.9688541084912,0.6084373340017919 +10,2917.215217792331,2.189155251555359,0.033169018962959984,575.316633912541,0.6066950000022189 +11,2923.9008598754463,2.194172333732569,0.03324503535958438,576.6351383119911,0.6080854169995291 +12,2924.1478899759636,2.1943577116363113,0.03324784411570169,576.6838561868458,0.608136791997822 +13,2930.0543738836395,2.198790092965551,0.03331500140856895,577.8486994316285,0.6093651670016698 +14,2933.8690140150657,2.2016526995451318,0.0333583742355323,578.6010011153077,0.6101584999996703 +15,2921.9182046353953,2.1926844969407173,0.033222492377889656,576.2441302944961,0.6076730829990993 +16,2933.0884565591487,2.2010669486401797,0.03334949922182091,578.4470640024837,0.6099961669970071 +17,2923.955156023265,2.19421307899415,0.03324565271203257,576.645846290205,0.608096709001984 +18,2920.4111839350135,2.1915535888540183,0.03320535740687906,575.9469242223173,0.6073596669994004 +19,2923.425629243495,2.193815708130423,0.03323963194137004,576.5414160230634,0.6079865829997289 +20,2927.2629120147917,2.1966953063442443,0.03328326221733703,577.2981831597108,0.6087846250011353 +21,2927.0900125724725,2.196565558041878,0.03328129633396785,577.2640849126723,0.6087486670003273 +22,2935.697195491655,2.2030246151500767,0.03337916083560722,578.9615446936073,0.610538707998785 +23,2924.6337375033436,2.194722304436847,0.03325336824904313,576.7796722796531,0.6082378339997376 +24,2924.4710510312407,2.1946002202167354,0.033251518488132355,576.7475881766557,0.6082039999964763 +25,2911.763322173297,2.1850640052693304,0.03310703038286864,574.2414419908566,0.6055611659976421 +26,2927.3087935001095,2.1967297370211165,0.033283783894259344,577.3072316459284,0.6087941670011787 +27,2926.9894358421257,2.19649008261035,0.03328015276682349,577.2442497405534,0.6087277499973425 +28,2917.142890252357,2.1891009750614616,0.03316819659184033,575.3023698854705,0.6066799580003135 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..36baef705 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.06159203288655,0.0,0.0,73.32729560385845,0.10872254200148745 +1,348.15467995134566,0.0,0.0,72.9278553079902,0.10813029099881533 +2,349.6879634578959,0.0,0.0,73.24903173947592,0.10860649999813177 +3,345.65050696371725,0.0,0.0,72.40330695111199,0.10735254199971678 +4,340.1390654644476,0.0,0.0,71.24882697039375,0.10564079200048582 +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063 +6,350.6147227766598,0.0,0.0,73.44315973314124,0.10889433400006965 +7,344.5928124845704,0.0,0.0,72.18175200907858,0.10702404200128512 +8,347.23235425746674,0.0,0.0,72.73465602438603,0.10784383399732178 +9,350.3030715703917,0.0,0.0,73.37787824940402,0.10879754100096761 +10,348.65723454798535,0.0,0.0,73.03312526705905,0.10828637499798788 +11,348.17815851859984,0.0,0.0,72.93277335635823,0.10813758299991605 +12,352.10694777546087,0.0,0.0,73.7557356514507,0.10935779099963838 +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034 +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177 +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136 +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447 +17,349.51704839988264,0.0,0.0,73.21323021406631,0.10855341699789278 +18,339.98330586077833,0.0,0.0,71.21620005341305,0.10559241599912639 +19,350.75907473976633,0.0,0.0,73.47339709511014,0.10893916700297268 +20,347.3249194409645,0.0,0.0,72.75404562532324,0.10787258300115354 +21,353.67980870531187,0.0,0.0,74.08520235380207,0.10984629200174822 +22,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113 +23,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702 +24,349.00389754202627,0.0,0.0,73.1057406593714,0.10839404199941782 +25,349.8933590281963,0.0,0.0,73.29205588734567,0.10867029199653189 +26,348.0918976573909,0.0,0.0,72.91470431990045,0.10811079199993401 +27,348.4616335231562,0.0,0.0,72.99215277966113,0.10822562500106869 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..599becba8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..77450cccf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e78b60e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..da739a676 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..437e720d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9be4f8456 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..827bcd636 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9a6b0d13d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6191a6fb7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cf9c329ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..624162990 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..52d15be16 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cd47b3a4a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6f9c70b09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..20f5ec071 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..603753a0a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0000ac1ab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6e201a2e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..532e74c6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b5373f970 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..6d6c1da91 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2951.495904520558,2.2148803831535737,0.03355879368414506,582.077276451496,0.6138243749992398 +1,2934.3258093471427,2.201995490811955,0.033363568042605374,578.6910876989903,0.6102534999990894 +2,2958.2731076379414,2.219966175146153,0.033635851138578074,583.4138379986367,0.6152338339998096 +3,2935.405490800975,2.202805712255422,0.03337584412508215,578.9040163495498,0.6104780419991584 +4,2932.144611632538,2.2003586625099203,0.03333876761378667,578.2609242611298,0.6097998750010447 +5,2944.56143397673,2.2096765735356927,0.03347994808387413,580.7096995147969,0.6123822089975874 +6,2943.7381974341965,2.2090587951183283,0.033470587804823156,580.5473454746576,0.612210999999661 +7,2933.019134274525,2.201014927369172,0.03334871102074503,578.4333926548225,0.6099817499998608 +8,2934.3294156360694,2.2019981970662945,0.033363609046459006,578.6917989108315,0.6102542500011623 +9,2925.5930077164485,2.195442166108989,0.033264275244075596,576.9688541084912,0.6084373340017919 +10,2917.215217792331,2.189155251555359,0.033169018962959984,575.316633912541,0.6066950000022189 +11,2923.9008598754463,2.194172333732569,0.03324503535958438,576.6351383119911,0.6080854169995291 +12,2924.1478899759636,2.1943577116363113,0.03324784411570169,576.6838561868458,0.608136791997822 +13,2930.0543738836395,2.198790092965551,0.03331500140856895,577.8486994316285,0.6093651670016698 +14,2933.8690140150657,2.2016526995451318,0.0333583742355323,578.6010011153077,0.6101584999996703 +15,2982.76855070272,2.23834820177805,0.03391436669360682,588.2446903006103,0.6203281659982167 +16,2921.9182046353953,2.1926844969407173,0.033222492377889656,576.2441302944961,0.6076730829990993 +17,2933.0884565591487,2.2010669486401797,0.03334949922182091,578.4470640024837,0.6099961669970071 +18,2923.955156023265,2.19421307899415,0.03324565271203257,576.645846290205,0.608096709001984 +19,2920.4111839350135,2.1915535888540183,0.03320535740687906,575.9469242223173,0.6073596669994004 +20,2923.425629243495,2.193815708130423,0.03323963194137004,576.5414160230634,0.6079865829997289 +21,2927.2629120147917,2.1966953063442443,0.03328326221733703,577.2981831597108,0.6087846250011353 +22,2927.0900125724725,2.196565558041878,0.03328129633396785,577.2640849126723,0.6087486670003273 +23,2935.697195491655,2.2030246151500767,0.03337916083560722,578.9615446936073,0.610538707998785 +24,2924.6337375033436,2.194722304436847,0.03325336824904313,576.7796722796531,0.6082378339997376 +25,2924.4710510312407,2.1946002202167354,0.033251518488132355,576.7475881766557,0.6082039999964763 +26,2911.763322173297,2.1850640052693304,0.03310703038286864,574.2414419908566,0.6055611659976421 +27,2927.3087935001095,2.1967297370211165,0.033283783894259344,577.3072316459284,0.6087941670011787 +28,2926.9894358421257,2.19649008261035,0.03328015276682349,577.2442497405534,0.6087277499973425 +29,2917.142890252357,2.1891009750614616,0.03316819659184033,575.3023698854705,0.6066799580003135 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..94b7cc95b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.06159203288655,0.0,0.0,73.32729560385845,0.10872254200148745 +1,348.15467995134566,0.0,0.0,72.9278553079902,0.10813029099881533 +2,349.6879634578959,0.0,0.0,73.24903173947592,0.10860649999813177 +3,345.65050696371725,0.0,0.0,72.40330695111199,0.10735254199971678 +4,340.1390654644476,0.0,0.0,71.24882697039375,0.10564079200048582 +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063 +6,350.6147227766598,0.0,0.0,73.44315973314124,0.10889433400006965 +7,344.5928124845704,0.0,0.0,72.18175200907858,0.10702404200128512 +8,347.23235425746674,0.0,0.0,72.73465602438603,0.10784383399732178 +9,350.3030715703917,0.0,0.0,73.37787824940402,0.10879754100096761 +10,348.65723454798535,0.0,0.0,73.03312526705905,0.10828637499798788 +11,348.17815851859984,0.0,0.0,72.93277335635823,0.10813758299991605 +12,352.10694777546087,0.0,0.0,73.7557356514507,0.10935779099963838 +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034 +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177 +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136 +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447 +17,349.51704839988264,0.0,0.0,73.21323021406631,0.10855341699789278 +18,339.98330586077833,0.0,0.0,71.21620005341305,0.10559241599912639 +19,350.75907473976633,0.0,0.0,73.47339709511014,0.10893916700297268 +20,347.3249194409645,0.0,0.0,72.75404562532324,0.10787258300115354 +21,398.16710519859527,0.0,0.0,83.40394286925121,0.12366320900036953 +22,353.67980870531187,0.0,0.0,74.08520235380207,0.10984629200174822 +23,397.841502728058,0.0,0.0,83.33573901841518,0.12356208300116123 +24,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113 +25,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702 +26,349.00389754202627,0.0,0.0,73.1057406593714,0.10839404199941782 +27,349.8933590281963,0.0,0.0,73.29205588734567,0.10867029199653189 +28,348.0918976573909,0.0,0.0,72.91470431990045,0.10811079199993401 +29,348.4616335231562,0.0,0.0,72.99215277966113,0.10822562500106869 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ecabf47f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8bd316ad4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..fab770373 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e7840c052 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..aae1cfe9b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0d5c4b2dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..41fb5599a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..90bfbbcbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0356b8115 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a1af92ac7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e6e2073ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..48c3e7519 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..43e47716d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..440a4fb3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..524b38e8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..9d0a677d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..3276fe40b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..74423f126 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f91788df2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..ebcdf96ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-1/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..fc528b2aa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467 +1,3903.728343298676,4.398604694153814,104.43353872331859,657.7913383530023,0.6261754590013879 +2,3896.366740257168,4.390309859358135,104.23659923657877,656.550883513103,0.6249946249990899 +3,3867.204522235971,4.357450741663593,103.45644412404317,651.63695182151,0.620316874999844 +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219 +5,3883.2883450220324,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649 +6,3913.1526881477107,4.40922376491048,104.68566120628367,659.3793721161582,0.6276871660011238 +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447 +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342 +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838 +10,3932.1188059921474,4.430594220957613,105.19304764000879,662.5752266795704,0.6307294159996673 +11,3893.858755217265,4.387483936599365,104.16950497956371,656.1282796096323,0.6245923329988727 +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107 +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145 +14,3880.9185481619484,4.372903297146174,103.82332525194023,653.9478112550415,0.6225166660005925 +15,3906.1908620137187,4.401379386813467,104.49941665358641,658.2062810280139,0.6265704580000602 +16,3930.2220445920525,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943 +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557 +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798 +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723 +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463 +21,3891.1395915230755,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553 +22,3941.683689330291,4.4413716462931685,105.44892984456659,664.1869416502057,0.6322636660006538 +23,3892.6048936178126,4.386071122737294,104.13596135347485,655.9169997184408,0.6243912079989968 +24,3895.8038444594868,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387 +25,3904.9858394416883,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816 +26,3869.997206323634,4.360597454820098,103.53115472277415,652.1075284708238,0.6207648339986918 +27,3899.1578595585333,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278 +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943 +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ec2aea880 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,537.586585590763,1.4050178341513406,20.038230539444122,97.1469473898927,0.11204166699826601 +1,551.1176123306176,1.4403820608516453,20.542591772622274,99.59213106459947,0.11486175000027288 +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217443,0.10840566600018064 +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.10912099999768543 +4,539.1167749298061,1.4090170844462884,20.095267466269682,97.4234669817148,0.11236058299982687 +5,550.2607540984404,1.4381426056088673,20.510652875231226,99.43728873067025,0.1146831670012034 +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.11111362500014366 +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.11171854200074449 +8,537.9854272547229,1.406060233024167,20.053097132892287,97.21902182624241,0.11212479199821246 +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031003 +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.10590016700007254 +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823143,0.1097277499975462 +12,533.816683809472,1.395164948350829,19.897709620527298,96.46569071454303,0.11125595900011831 +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914949,0.11273095800061128 +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.11222008299955633 +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.11176554199846578 +16,541.3640875617663,1.4148905835466201,20.17903475105775,97.82957749093774,0.11282895899785217 +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913887,0.11213291700187256 +18,543.8858800536349,1.421481453780502,20.273033114631446,98.28528908996614,0.11335454100117204 +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446 +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748583,0.11043866700129001 +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454 +22,549.6611889257908,1.4365756026685261,20.488304428534455,99.32894167022381,0.11455820800256333 +23,535.2031318006688,1.3987885211965205,19.949388671350377,96.71623489415943,0.11154491699926439 +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321025,0.11540804200194543 +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.10975491700082785 +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.11085950000051525 +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.11137683299966739 +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221067,0.1109710000018822 +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.11282270900119329 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..717245968 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..79fa62222 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f4aa64adf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..725cfc05e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cb1ed8bd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..60da4faf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f11e15f2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ae51a70ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d4f7157f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..123369749 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cacc67e80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2ff16c851 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0920774d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bdc329209 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8a312d247 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..275b2d277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..787e410a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..f9250b6cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..93df6ac3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..087c68651 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..fc528b2aa --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467 +1,3903.728343298676,4.398604694153814,104.43353872331859,657.7913383530023,0.6261754590013879 +2,3896.366740257168,4.390309859358135,104.23659923657877,656.550883513103,0.6249946249990899 +3,3867.204522235971,4.357450741663593,103.45644412404317,651.63695182151,0.620316874999844 +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219 +5,3883.2883450220324,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649 +6,3913.1526881477107,4.40922376491048,104.68566120628367,659.3793721161582,0.6276871660011238 +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447 +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342 +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838 +10,3932.1188059921474,4.430594220957613,105.19304764000879,662.5752266795704,0.6307294159996673 +11,3893.858755217265,4.387483936599365,104.16950497956371,656.1282796096323,0.6245923329988727 +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107 +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145 +14,3880.9185481619484,4.372903297146174,103.82332525194023,653.9478112550415,0.6225166660005925 +15,3906.1908620137187,4.401379386813467,104.49941665358641,658.2062810280139,0.6265704580000602 +16,3930.2220445920525,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943 +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557 +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798 +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723 +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463 +21,3891.1395915230755,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553 +22,3941.683689330291,4.4413716462931685,105.44892984456659,664.1869416502057,0.6322636660006538 +23,3892.6048936178126,4.386071122737294,104.13596135347485,655.9169997184408,0.6243912079989968 +24,3895.8038444594868,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387 +25,3904.9858394416883,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816 +26,3869.997206323634,4.360597454820098,103.53115472277415,652.1075284708238,0.6207648339986918 +27,3899.1578595585333,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278 +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943 +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ec2aea880 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,537.586585590763,1.4050178341513406,20.038230539444122,97.1469473898927,0.11204166699826601 +1,551.1176123306176,1.4403820608516453,20.542591772622274,99.59213106459947,0.11486175000027288 +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217443,0.10840566600018064 +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.10912099999768543 +4,539.1167749298061,1.4090170844462884,20.095267466269682,97.4234669817148,0.11236058299982687 +5,550.2607540984404,1.4381426056088673,20.510652875231226,99.43728873067025,0.1146831670012034 +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.11111362500014366 +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.11171854200074449 +8,537.9854272547229,1.406060233024167,20.053097132892287,97.21902182624241,0.11212479199821246 +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031003 +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.10590016700007254 +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823143,0.1097277499975462 +12,533.816683809472,1.395164948350829,19.897709620527298,96.46569071454303,0.11125595900011831 +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914949,0.11273095800061128 +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.11222008299955633 +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.11176554199846578 +16,541.3640875617663,1.4148905835466201,20.17903475105775,97.82957749093774,0.11282895899785217 +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913887,0.11213291700187256 +18,543.8858800536349,1.421481453780502,20.273033114631446,98.28528908996614,0.11335454100117204 +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446 +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748583,0.11043866700129001 +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454 +22,549.6611889257908,1.4365756026685261,20.488304428534455,99.32894167022381,0.11455820800256333 +23,535.2031318006688,1.3987885211965205,19.949388671350377,96.71623489415943,0.11154491699926439 +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321025,0.11540804200194543 +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.10975491700082785 +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.11085950000051525 +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.11137683299966739 +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221067,0.1109710000018822 +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.11282270900119329 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..717245968 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..79fa62222 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f4aa64adf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..725cfc05e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cb1ed8bd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..60da4faf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..f11e15f2d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ae51a70ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d4f7157f9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..123369749 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cacc67e80 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2ff16c851 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0920774d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bdc329209 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8a312d247 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..275b2d277 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..787e410a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..f9250b6cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..93df6ac3e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..087c68651 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-10/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..0e7786ec9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2916.763315644649,1.6706742325528101,0.0,579.3229968800124,0.6117394579996471 +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503 +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236 +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066 +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468 +5,2911.3178833647266,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165 +6,2904.907730762028,1.6638835477999543,0.0,576.9682590351122,0.6092529589986952 +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608 +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151 +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957 +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525 +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145 +12,2910.385942948952,1.6670213779735785,0.0,578.0563330261181,0.6104019170015818 +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145 +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146 +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738 +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285 +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401 +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839 +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941 +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607 +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747 +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453 +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695 +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931 +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845 +26,2919.6262939438634,1.6723140996092833,0.0,579.8916371805151,0.6123399170028279 +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624 +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778 +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..eaa7484da --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.64578990105923,0.9711657824905524,0.0,82.75002236324673,0.11106645800100523 +1,359.12051672685783,0.9435128632975971,0.0,80.3938029382194,0.10790395799995167 +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.10577358400041703 +3,374.8716803818042,0.9848956994992137,0.0,83.9199059814675,0.11263666699960595 +4,376.96633455222275,0.9903989583270937,0.0,84.38882158711202,0.11326604200075963 +5,368.64346438948803,0.9685323851508565,0.0,82.52563874854367,0.11076529199999641 +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.10744762499962235 +7,361.01187752427836,0.9484820119771763,0.0,80.81720867571043,0.10847224999815808 +8,364.70279545437313,0.9581791147107103,0.0,81.64346870517811,0.10958124999888241 +9,363.31662114091176,0.9545372361919227,0.0,81.33315553897383,0.10916474999976344 +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.11107474999880651 +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.10743404199820361 +12,372.4174462680742,0.9784477207622895,0.0,83.37049372426266,0.11189924999780487 +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.10981658300079289 +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.10946395800056052 +15,364.72470800188677,0.9582366852740276,0.0,81.64837411421111,0.10958783400201355 +16,363.90181967276175,0.9560747210101549,0.0,81.46415984883079,0.10934058299972094 +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.10903666699960013 +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.10877899999832152 +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.10858558299878496 +20,360.06169081323577,0.9459855982590901,0.0,80.60449701028317,0.10818674999973155 +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.10891550000087591 +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.10854420800023945 +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745 +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.10764025000025867 +25,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.11241179200078477 +26,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958 +27,385.67665457600316,1.0132834737003162,0.0,86.33874012115454,0.11588320800001384 +28,374.6998646691671,0.9844442902161483,0.0,83.88144279738285,0.11258504200304742 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..50a52fbe9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8fc9afeb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c0357d48f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d1a0f303a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5dccf9176 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..dca8b5be1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1712a50fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b88cf8e95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fe5c58c96 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8bb3e1946 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..acbea4874 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0881c466c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ce0eda6d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e45f088da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..be5032e39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..75870c34f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..79a83bdb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..54d3b1475 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..0e7786ec9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2916.763315644649,1.6706742325528101,0.0,579.3229968800124,0.6117394579996471 +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503 +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236 +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066 +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468 +5,2911.3178833647266,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165 +6,2904.907730762028,1.6638835477999543,0.0,576.9682590351122,0.6092529589986952 +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608 +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151 +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957 +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525 +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145 +12,2910.385942948952,1.6670213779735785,0.0,578.0563330261181,0.6104019170015818 +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145 +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146 +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738 +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285 +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401 +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839 +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941 +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607 +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747 +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453 +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695 +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931 +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845 +26,2919.6262939438634,1.6723140996092833,0.0,579.8916371805151,0.6123399170028279 +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624 +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778 +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c511d83ba --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,369.64578990105923,0.9711657824905524,0.0,82.75002236324673,0.11106645800100523 +1,359.12051672685783,0.9435128632975971,0.0,80.3938029382194,0.10790395799995167 +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.10577358400041703 +3,374.8716803818042,0.9848956994992137,0.0,83.9199059814675,0.11263666699960595 +4,376.96633455222275,0.9903989583270937,0.0,84.38882158711202,0.11326604200075963 +5,368.64346438948803,0.9685323851508565,0.0,82.52563874854367,0.11076529199999641 +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.10744762499962235 +7,361.01187752427836,0.9484820119771763,0.0,80.81720867571043,0.10847224999815808 +8,364.70279545437313,0.9581791147107103,0.0,81.64346870517811,0.10958124999888241 +9,363.31662114091176,0.9545372361919227,0.0,81.33315553897383,0.10916474999976344 +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.11107474999880651 +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.10743404199820361 +12,372.4174462680742,0.9784477207622895,0.0,83.37049372426266,0.11189924999780487 +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.10981658300079289 +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.10946395800056052 +15,364.72470800188677,0.9582366852740276,0.0,81.64837411421111,0.10958783400201355 +16,363.90181967276175,0.9560747210101549,0.0,81.46415984883079,0.10934058299972094 +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.10903666699960013 +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.10877899999832152 +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.10858558299878496 +20,360.06169081323577,0.9459855982590901,0.0,80.60449701028317,0.10818674999973155 +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.10891550000087591 +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.10854420800023945 +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745 +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.10764025000025867 +25,415.10096515168647,1.0905895986047207,0.0,92.9257551086988,0.1247242500030552 +26,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.11241179200078477 +27,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958 +28,385.67665457600316,1.0132834737003162,0.0,86.33874012115454,0.11588320800001384 +29,374.6998646691671,0.9844442902161483,0.0,83.88144279738285,0.11258504200304742 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1f121a5b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..10989546b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5dbf8916a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1cc5565cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d2a9d6477 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d1e201705 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..53e1619eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ec68e0e92 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..748790fd7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..e49c47056 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4b984b1d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7e00eb3f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..adcc5bbda Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7f24bc66b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..746cec916 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9d0682dba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..71616f60f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-11/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7d4258767 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959 +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716 +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105 +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413 +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463 +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355 +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888 +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446 +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244 +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718 +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669 +11,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169 +12,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923 +13,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987 +14,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699 +15,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191 +16,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126 +17,2890.7368029366526,2.130044618540409,0.0,576.0772234736866,0.6092155839978659 +18,2899.8549367525866,2.1367633318615358,0.0,577.8943204873644,0.6111372079976718 +19,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774 +20,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751 +21,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521 +22,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356 +23,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575 +24,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191 +25,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396 +26,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963 +27,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486 +28,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..b191bab31 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,351.73175655141023,0.0,0.0,74.21831970730892,0.10927066699878196 +1,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061 +2,328.1519445206855,0.0,0.0,69.24278367640527,0.10194525000042631 +3,349.2189998358078,0.0,0.0,73.68810718656938,0.10849004199917545 +4,347.0344361100074,0.0,0.0,73.22714611040125,0.10781137500089244 +5,348.8421177226201,0.0,0.0,73.60858193288522,0.10837295800229185 +6,349.7607123637488,0.0,0.0,73.802413025719,0.10865833299976657 +7,348.86438286229674,0.0,0.0,73.61328006213873,0.10837987499689916 +8,349.5485351074402,0.0,0.0,73.7576418637468,0.10859241700018174 +9,349.2062562033976,0.0,0.0,73.6854181743695,0.10848608300148044 +10,348.9237973941225,0.0,0.0,73.62581702144415,0.10839833299905877 +11,348.52452136305044,0.0,0.0,73.54156646523587,0.10827429200071492 +12,349.0319010610443,0.0,0.0,73.6486277923333,0.10843191700041643 +13,353.06652971176385,0.0,0.0,74.49996792162754,0.10968533400227898 +14,345.82868949784233,0.0,0.0,72.97272356856122,0.10743679200095357 +15,338.35479420348673,0.0,0.0,71.39566963446653,0.10511491600118461 +16,337.7432057089416,0.0,0.0,71.26661938645225,0.10492491699915263 +17,351.2683696181278,0.0,0.0,74.1205412186682,0.10912670900142984 +18,349.83072674614044,0.0,0.0,73.81718664146358,0.10868008400211693 +19,351.41952290191574,0.0,0.0,74.15243581599138,0.10917366700232378 +20,347.59841378933527,0.0,0.0,73.34615008127537,0.10798658299972885 +21,349.5599332493968,0.0,0.0,73.76004696629455,0.10859595800138777 +22,340.3002223481199,0.0,0.0,71.80617111838608,0.10571929199795704 +23,350.65422853504253,0.0,0.0,73.99095235328762,0.10893591700005345 +24,349.36518956692623,0.0,0.0,73.71895443308603,0.10853545799909625 +25,347.2503698208989,0.0,0.0,73.27270991546585,0.10787845799859497 +26,348.0902365247607,0.0,0.0,73.44992876016128,0.10813937499915482 +27,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439 +28,348.35848065329765,0.0,0.0,73.50653049748111,0.10822270900098374 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4a14bee26 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..c3e511a70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b144b370d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e14ad0ba5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d571b3a2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..ee1f0ae8b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a4400814c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..231336b7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3aa34813e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3fa005ce4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..a66355cae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..55a4bebe8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f7e54f84d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..442af6907 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..6647dc195 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..80de9230e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..9f86ac6d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..c13cdebec --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959 +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716 +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105 +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413 +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463 +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355 +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888 +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446 +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244 +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718 +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669 +11,2923.2033739341073,2.15396766984184,0.0,582.5472874576939,0.6160578330018325 +12,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169 +13,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923 +14,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987 +15,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699 +16,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191 +17,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126 +18,2890.7368029366526,2.130044618540409,0.0,576.0772234736866,0.6092155839978659 +19,2899.8549367525866,2.1367633318615358,0.0,577.8943204873644,0.6111372079976718 +20,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774 +21,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751 +22,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521 +23,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356 +24,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575 +25,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191 +26,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396 +27,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963 +28,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486 +29,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..56ca9a07a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,403.80530111655503,0.0,0.0,85.20626977676426,0.12544808300299337 +1,351.73175655141023,0.0,0.0,74.21831970730892,0.10927066699878196 +2,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061 +3,328.1519445206855,0.0,0.0,69.24278367640527,0.10194525000042631 +4,349.2189998358078,0.0,0.0,73.68810718656938,0.10849004199917545 +5,347.0344361100074,0.0,0.0,73.22714611040125,0.10781137500089244 +6,348.8421177226201,0.0,0.0,73.60858193288522,0.10837295800229185 +7,349.7607123637488,0.0,0.0,73.802413025719,0.10865833299976657 +8,348.86438286229674,0.0,0.0,73.61328006213873,0.10837987499689916 +9,349.5485351074402,0.0,0.0,73.7576418637468,0.10859241700018174 +10,349.2062562033976,0.0,0.0,73.6854181743695,0.10848608300148044 +11,348.9237973941225,0.0,0.0,73.62581702144415,0.10839833299905877 +12,348.52452136305044,0.0,0.0,73.54156646523587,0.10827429200071492 +13,349.0319010610443,0.0,0.0,73.6486277923333,0.10843191700041643 +14,353.06652971176385,0.0,0.0,74.49996792162754,0.10968533400227898 +15,345.82868949784233,0.0,0.0,72.97272356856122,0.10743679200095357 +16,338.35479420348673,0.0,0.0,71.39566963446653,0.10511491600118461 +17,337.7432057089416,0.0,0.0,71.26661938645225,0.10492491699915263 +18,351.2683696181278,0.0,0.0,74.1205412186682,0.10912670900142984 +19,349.83072674614044,0.0,0.0,73.81718664146358,0.10868008400211693 +20,351.41952290191574,0.0,0.0,74.15243581599138,0.10917366700232378 +21,347.59841378933527,0.0,0.0,73.34615008127537,0.10798658299972885 +22,349.5599332493968,0.0,0.0,73.76004696629455,0.10859595800138777 +23,340.3002223481199,0.0,0.0,71.80617111838608,0.10571929199795704 +24,350.65422853504253,0.0,0.0,73.99095235328762,0.10893591700005345 +25,349.36518956692623,0.0,0.0,73.71895443308603,0.10853545799909625 +26,347.2503698208989,0.0,0.0,73.27270991546585,0.10787845799859497 +27,348.0902365247607,0.0,0.0,73.44992876016128,0.10813937499915482 +28,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439 +29,348.35848065329765,0.0,0.0,73.50653049748111,0.10822270900098374 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4d96201cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e6e70529e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6cc08209d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f3a19c78f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0b96e4c5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..30aad8526 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aac031039 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..84809e258 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..3c8a16954 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f07c5969f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..efa68896a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7b3283f30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..bad8655b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..720f22c60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ec66ef470 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3dfb77690 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f7e65b89e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-12/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..8a54853d3 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472 +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569 +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239 +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394 +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282 +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405 +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909 +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421 +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795 +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559 +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654 +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195 +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255 +13,2895.9775494362375,1.2657535699498175,0.0,576.1177301540012,0.6104503339993244 +14,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398 +15,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095 +16,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925 +17,2892.9834865033354,1.2644449459079241,0.0,575.522099590091,0.609819208002591 +18,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311 +19,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305 +20,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842 +21,2887.0621846104905,1.2618569047778823,0.0,574.3441322378487,0.608571042001131 +22,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829 +23,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487 +24,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155 +25,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769 +26,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812 +27,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479 +28,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..90a86845d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,352.72069606426135,0.9034682471999863,0.0,74.95440273066554,0.10942208300184575 +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334 +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.10846412500177394 +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.11040062500251224 +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.10713091599973268 +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.10817150000002584 +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.10836966699935147 +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.10818516599829309 +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.10725099999763188 +9,355.586244105474,0.9108081387769469,0.0,75.56334188371707,0.11031104199719266 +10,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.10796845799995936 +11,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.10777275000145892 +12,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.10885820799740031 +13,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852 +14,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.10820037499797763 +15,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.10867620899807662 +16,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.10403995900196605 +17,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.10921458300072118 +18,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.10810766700160457 +19,360.0307626207023,0.9221924476576191,0.0,76.50781787974321,0.11168983399693388 +20,351.99272624691093,0.9016036057932449,0.0,74.79970655469884,0.10919624999951338 +21,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802 +22,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.10878299999967567 +23,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903 +24,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807 +25,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.10850591599955806 +26,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257 +27,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.10782662500059814 +28,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.10821037500136299 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ecadd2564 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..1db6032d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6514b9989 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..987cf923f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..5211803b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d18dd66cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..98a6b2c20 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..d422a6a0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e7deee350 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..24a002ff4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..98cc09753 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a589b0d08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..24149df48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..467ab6321 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..7aabe34b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3b918a6b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..5c58a129b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..757b0eaae --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472 +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569 +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239 +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394 +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282 +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405 +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909 +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421 +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795 +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559 +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654 +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195 +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255 +13,2895.9775494362375,1.2657535699498175,0.0,576.1177301540012,0.6104503339993244 +14,2957.7576947981343,1.2927560028792655,0.0,588.4081006789415,0.6234731250006007 +15,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398 +16,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095 +17,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925 +18,2892.9834865033354,1.2644449459079241,0.0,575.522099590091,0.609819208002591 +19,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311 +20,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305 +21,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842 +22,2887.0621846104905,1.2618569047778823,0.0,574.3441322378487,0.608571042001131 +23,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829 +24,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487 +25,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155 +26,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769 +27,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812 +28,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479 +29,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..dea3e1653 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,352.72069606426135,0.9034682471999863,0.0,74.95440273066554,0.10942208300184575 +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334 +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.10846412500177394 +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.11040062500251224 +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.10713091599973268 +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.10817150000002584 +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.10836966699935147 +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.10818516599829309 +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.10725099999763188 +9,397.1924653152403,1.017379429229816,0.0,84.40481190647361,0.12321824999889941 +10,355.586244105474,0.9108081387769469,0.0,75.56334188371707,0.11031104199719266 +11,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.10796845799995936 +12,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.10777275000145892 +13,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.10885820799740031 +14,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852 +15,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.10820037499797763 +16,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.10867620899807662 +17,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.10403995900196605 +18,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.10921458300072118 +19,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.10810766700160457 +20,360.0307626207023,0.9221924476576191,0.0,76.50781787974321,0.11168983399693388 +21,351.99272624691093,0.9016036057932449,0.0,74.79970655469884,0.10919624999951338 +22,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802 +23,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.10878299999967567 +24,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903 +25,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807 +26,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.10850591599955806 +27,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257 +28,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.10782662500059814 +29,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.10821037500136299 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..086b1756d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0ea3ef728 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f0d701a23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c17efb0ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..28282f29a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..18cf53d58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..6b279766b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..36f35f37a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1a0fb9d56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a230946e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f68cff66f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..699b7c7e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c9c0c23d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..68d31113c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6e3c114b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ca1586cea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d4afc8377 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-13/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..0527adfea --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732 +1,2896.197005839203,2.3033644164052722,0.0,578.6118178196027,0.6105097500003467 +2,2891.913463676345,2.2999576873139134,0.0,577.7560375972763,0.6096067920007044 +3,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047 +4,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838 +5,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925 +6,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505 +7,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595 +8,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481 +9,2883.2526825801706,2.2930697114769854,0.0,576.0257581018926,0.6077811249997467 +10,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576 +11,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386 +12,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493 +13,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134 +14,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784 +15,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753 +16,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699 +17,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159 +18,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282 +19,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848 +20,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501 +21,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107 +22,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373 +23,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919 +24,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884 +25,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782 +26,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034 +27,2898.3827576218678,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129 +28,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..5612a41ee --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.5570979228151,0.0,0.0,73.44896139887625,0.10891275000176392 +1,347.24183407513084,0.0,0.0,72.96247800034911,0.10819137499856879 +2,344.7376100562334,0.0,0.0,72.43629027768198,0.10741112500181771 +3,351.6277678281301,0.0,0.0,73.88405070145102,0.10955791599917575 +4,349.9146892287216,0.0,0.0,73.52409850860788,0.10902416599856224 +5,346.9369301696893,0.0,0.0,72.89841157081808,0.10809637500278768 +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817 +7,349.49852426123,0.0,0.0,73.4366538970852,0.10889449999740464 +8,346.91740668224895,0.0,0.0,72.8943092942976,0.10809029200026998 +9,346.9200802047294,0.0,0.0,72.89487105502462,0.10809112499919138 +10,345.9247293954029,0.0,0.0,72.68572787467728,0.10778100000243285 +11,348.7487013459444,0.0,0.0,73.27910105467957,0.10866087500107824 +12,346.2514323292838,0.0,0.0,72.75437471755963,0.10788279199914541 +13,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314 +14,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937 +15,347.9824296464449,0.0,0.0,73.11809199260635,0.10842212499846937 +16,357.2821339838763,0.0,0.0,75.07214650604604,0.11131966700122575 +17,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021 +18,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659 +19,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366 +20,337.4620408760736,0.0,0.0,70.90754718236538,0.10514424999928451 +21,344.88858884112295,0.0,0.0,72.46801395032172,0.10745816599956015 +22,347.06143366416603,0.0,0.0,72.92457225361979,0.10813516700000037 +23,350.9464166897125,0.0,0.0,73.74088515349878,0.10934562499824096 +24,349.12528336836505,0.0,0.0,73.35822849506813,0.10877820800305926 +25,349.5365024599655,0.0,0.0,73.44463387880921,0.10890633300004993 +26,347.7287463838418,0.0,0.0,73.06478804806281,0.10834308400080772 +27,347.93963719702685,0.0,0.0,73.1091004401986,0.10840879200259224 +28,349.69617582957653,0.0,0.0,73.47818445818719,0.10895608300052118 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4fae26c2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bf2e1e4c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..3642752ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..cf01ce8e3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..a9b9a00b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4b0b4d79a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..aadcbadb3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..853c9289b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1022cccb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..a6d5492f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..bc48cb73a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2668def56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e3b288cee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f2c222bd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..9c74b98d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f98d8eefb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e489e853f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7cf5437f4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732 +1,2896.197005839203,2.3033644164052722,0.0,578.6118178196027,0.6105097500003467 +2,2891.913463676345,2.2999576873139134,0.0,577.7560375972763,0.6096067920007044 +3,2930.8278672154415,2.330906566902171,0.0,585.5304858567439,0.6178098329983186 +4,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047 +5,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838 +6,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925 +7,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505 +8,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595 +9,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481 +10,2883.2526825801706,2.2930697114769854,0.0,576.0257581018926,0.6077811249997467 +11,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576 +12,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386 +13,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493 +14,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134 +15,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784 +16,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753 +17,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699 +18,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159 +19,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282 +20,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848 +21,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501 +22,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107 +23,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373 +24,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919 +25,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884 +26,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782 +27,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034 +28,2898.3827576218678,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129 +29,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..47c7cf97f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.5570979228151,0.0,0.0,73.44896139887625,0.10891275000176392 +1,347.24183407513084,0.0,0.0,72.96247800034911,0.10819137499856879 +2,344.7376100562334,0.0,0.0,72.43629027768198,0.10741112500181771 +3,351.6277678281301,0.0,0.0,73.88405070145102,0.10955791599917575 +4,349.9146892287216,0.0,0.0,73.52409850860788,0.10902416599856224 +5,346.9369301696893,0.0,0.0,72.89841157081808,0.10809637500278768 +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817 +7,349.49852426123,0.0,0.0,73.4366538970852,0.10889449999740464 +8,346.91740668224895,0.0,0.0,72.8943092942976,0.10809029200026998 +9,346.9200802047294,0.0,0.0,72.89487105502462,0.10809112499919138 +10,345.9247293954029,0.0,0.0,72.68572787467728,0.10778100000243285 +11,348.7487013459444,0.0,0.0,73.27910105467957,0.10866087500107824 +12,396.09105260708606,0.0,0.0,83.22667914985942,0.12341150000065682 +13,346.2514323292838,0.0,0.0,72.75437471755963,0.10788279199914541 +14,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314 +15,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937 +16,347.9824296464449,0.0,0.0,73.11809199260635,0.10842212499846937 +17,357.2821339838763,0.0,0.0,75.07214650604604,0.11131966700122575 +18,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021 +19,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659 +20,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366 +21,337.4620408760736,0.0,0.0,70.90754718236538,0.10514424999928451 +22,344.88858884112295,0.0,0.0,72.46801395032172,0.10745816599956015 +23,347.06143366416603,0.0,0.0,72.92457225361979,0.10813516700000037 +24,350.9464166897125,0.0,0.0,73.74088515349878,0.10934562499824096 +25,349.12528336836505,0.0,0.0,73.35822849506813,0.10877820800305926 +26,349.5365024599655,0.0,0.0,73.44463387880921,0.10890633300004993 +27,347.7287463838418,0.0,0.0,73.06478804806281,0.10834308400080772 +28,347.93963719702685,0.0,0.0,73.1091004401986,0.10840879200259224 +29,349.69617582957653,0.0,0.0,73.47818445818719,0.10895608300052118 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4d11ba2ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..874f01318 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e026ee507 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..f1241adff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..513276393 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..b88102b7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..71c8fb125 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4b1f71956 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..23480a1b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..35078a1c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5759817ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9162124cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..323094aa2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fbe7325f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..59426956c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c5d236e5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..b8684a970 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-14/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..8725d3e56 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2880.5533097361076,1.8258874947906039,0.0,573.3286733642497,0.6070650420006132 +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006 +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765 +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952 +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557 +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265 +6,2887.4259199457047,1.8302438151530358,0.0,574.6965579580532,0.6085134170025412 +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313 +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573 +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542 +10,2889.5760202011456,1.8316066926098378,0.0,575.124501479489,0.6089665419967787 +11,2886.0018121415305,1.8293411203054566,0.0,574.4131117759134,0.6082132920018921 +12,2885.7890726205305,1.8292062717575306,0.0,574.3707693318646,0.6081684580021829 +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014 +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828 +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965 +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266 +17,2884.020161092751,1.8280850172308234,0.0,574.0186954104786,0.6077956670014828 +18,2897.609582545234,1.8366989021423306,0.0,576.7234552726918,0.6106595829987782 +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742 +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978 +21,2887.3383310757054,1.830188295464553,0.0,574.6791247758696,0.6084949579999375 +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784 +23,2886.9599134100326,1.8299484290190253,0.0,574.6038067119739,0.6084152079965861 +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548 +25,2884.892258368299,1.8286378108570622,0.0,574.1922726091175,0.6079794580000453 +26,2884.9082776565983,1.8286479649542222,0.0,574.1954609956258,0.6079828340007225 +27,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738 +28,2886.107584019245,1.8294081656012917,0.0,574.4341639988056,0.6082355830003507 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9c6969af0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.2437335737623,0.0,0.0,73.26884233321877,0.10973037499934435 +1,348.89690052127264,0.0,0.0,72.9870931137106,0.10930841599838459 +2,344.6200794331875,0.0,0.0,72.09240835577674,0.10796850000042468 +3,348.24483274191084,0.0,0.0,72.8506845309527,0.10910412500015809 +4,345.50688280525327,0.0,0.0,72.27792218577584,0.10824633299853303 +5,349.28976713270595,0.0,0.0,73.06927840084587,0.10943150000093738 +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958 +7,346.57482729959054,0.0,0.0,72.50132962829542,0.10858091699992656 +8,346.00907053653475,0.0,0.0,72.3829767811272,0.10840366699994775 +9,345.64931945621555,0.0,0.0,72.30771906012771,0.10829095799999777 +10,346.6860092861362,0.0,0.0,72.5245882184189,0.10861575000308221 +11,356.34736331255743,0.0,0.0,74.54568426391941,0.11164262500096811 +12,349.03401953271384,0.0,0.0,73.01577757046779,0.10935137499836856 +13,344.75839219546305,0.0,0.0,72.12134253789166,0.10801183299918193 +14,344.37390740929675,0.0,0.0,72.04091067722797,0.10789137499887147 +15,338.3729501588257,0.0,0.0,70.78554720177965,0.10601129199858406 +16,343.2693938159089,0.0,0.0,71.80985320332805,0.10754533400177024 +17,393.3508368048623,0.0,0.0,82.28658411507446,0.12323570899752667 +18,340.6583170286766,0.0,0.0,71.26363194337405,0.10672729100042488 +19,394.2611769502774,0.0,0.0,82.47702169379554,0.12352091600041604 +20,350.23469104240684,0.0,0.0,73.26695069108311,0.10972754199974588 +21,348.4636090527246,0.0,0.0,72.89645119424085,0.10917266700198525 +22,344.2709700068494,0.0,0.0,72.01937680356475,0.10785912500068662 +23,346.28117640365764,0.0,0.0,72.43989966072517,0.10848891700152308 +24,348.48262613381,0.0,0.0,72.90042945104354,0.10917862499991315 +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156 +26,338.7078270988537,0.0,0.0,70.85560140508998,0.10611620800045785 +27,391.20204952676795,0.0,0.0,81.83707098694545,0.1225624999970023 +28,348.54553126622045,0.0,0.0,72.91358881918269,0.10919833300067694 +29,344.56861072035196,0.0,0.0,72.08164141651599,0.10795237499769428 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..6afa18307 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..46e63e344 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..de7b79714 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..bfa9c0679 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7cfd6c47a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..910458cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d5f4c08b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..bd50edd88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..87e5f6714 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..47f94c6fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8da4409d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..288b38584 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..af25d4683 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9892ba6d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2718b63a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..503e430bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..d7040cae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..2b1b34f47 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2880.5533097361076,1.8258874947906039,0.0,573.3286733642497,0.6070650420006132 +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006 +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765 +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952 +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557 +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265 +6,2887.4259199457047,1.8302438151530358,0.0,574.6965579580532,0.6085134170025412 +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313 +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573 +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542 +10,2889.5760202011456,1.8316066926098378,0.0,575.124501479489,0.6089665419967787 +11,2886.0018121415305,1.8293411203054566,0.0,574.4131117759134,0.6082132920018921 +12,2885.7890726205305,1.8292062717575306,0.0,574.3707693318646,0.6081684580021829 +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014 +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828 +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965 +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266 +17,2884.020161092751,1.8280850172308234,0.0,574.0186954104786,0.6077956670014828 +18,2897.609582545234,1.8366989021423306,0.0,576.7234552726918,0.6106595829987782 +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742 +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978 +21,2887.3383310757054,1.830188295464553,0.0,574.6791247758696,0.6084949579999375 +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784 +23,2886.9599134100326,1.8299484290190253,0.0,574.6038067119739,0.6084152079965861 +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548 +25,2884.892258368299,1.8286378108570622,0.0,574.1922726091175,0.6079794580000453 +26,2922.417689909578,1.8524239410967833,0.0,581.66111750439,0.6158877919988299 +27,2884.9082776565983,1.8286479649542222,0.0,574.1954609956258,0.6079828340007225 +28,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738 +29,2886.107584019245,1.8294081656012917,0.0,574.4341639988056,0.6082355830003507 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9c6969af0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.2437335737623,0.0,0.0,73.26884233321877,0.10973037499934435 +1,348.89690052127264,0.0,0.0,72.9870931137106,0.10930841599838459 +2,344.6200794331875,0.0,0.0,72.09240835577674,0.10796850000042468 +3,348.24483274191084,0.0,0.0,72.8506845309527,0.10910412500015809 +4,345.50688280525327,0.0,0.0,72.27792218577584,0.10824633299853303 +5,349.28976713270595,0.0,0.0,73.06927840084587,0.10943150000093738 +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958 +7,346.57482729959054,0.0,0.0,72.50132962829542,0.10858091699992656 +8,346.00907053653475,0.0,0.0,72.3829767811272,0.10840366699994775 +9,345.64931945621555,0.0,0.0,72.30771906012771,0.10829095799999777 +10,346.6860092861362,0.0,0.0,72.5245882184189,0.10861575000308221 +11,356.34736331255743,0.0,0.0,74.54568426391941,0.11164262500096811 +12,349.03401953271384,0.0,0.0,73.01577757046779,0.10935137499836856 +13,344.75839219546305,0.0,0.0,72.12134253789166,0.10801183299918193 +14,344.37390740929675,0.0,0.0,72.04091067722797,0.10789137499887147 +15,338.3729501588257,0.0,0.0,70.78554720177965,0.10601129199858406 +16,343.2693938159089,0.0,0.0,71.80985320332805,0.10754533400177024 +17,393.3508368048623,0.0,0.0,82.28658411507446,0.12323570899752667 +18,340.6583170286766,0.0,0.0,71.26363194337405,0.10672729100042488 +19,394.2611769502774,0.0,0.0,82.47702169379554,0.12352091600041604 +20,350.23469104240684,0.0,0.0,73.26695069108311,0.10972754199974588 +21,348.4636090527246,0.0,0.0,72.89645119424085,0.10917266700198525 +22,344.2709700068494,0.0,0.0,72.01937680356475,0.10785912500068662 +23,346.28117640365764,0.0,0.0,72.43989966072517,0.10848891700152308 +24,348.48262613381,0.0,0.0,72.90042945104354,0.10917862499991315 +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156 +26,338.7078270988537,0.0,0.0,70.85560140508998,0.10611620800045785 +27,391.20204952676795,0.0,0.0,81.83707098694545,0.1225624999970023 +28,348.54553126622045,0.0,0.0,72.91358881918269,0.10919833300067694 +29,344.56861072035196,0.0,0.0,72.08164141651599,0.10795237499769428 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..16acea323 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..82290d060 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..56b40ee8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d40af2693 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6d6f618fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..835d01707 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..cd82fb366 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..307168817 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1f8f4ee1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..989e9cba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ad05feaab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..030b96af8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8f177d174 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..11b5fb4ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5a2699154 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4b26fb07c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d1510d5fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-15/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..218473ac9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562 +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794 +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635 +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166 +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775 +5,2933.9534880535894,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838 +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928 +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211 +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087 +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981 +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659 +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679 +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196 +13,2934.7404678341923,2.4985020158642874,0.0,583.0171170618786,0.6106430830004683 +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203 +15,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892 +16,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375 +17,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906 +18,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768 +19,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191 +20,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664 +21,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131 +22,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699 +23,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191 +24,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552 +25,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684 +26,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217 +27,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517 +28,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9101c3be5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.31751000520677,0.0,0.0,73.78324951983832,0.10927195900148945 +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213 +2,351.03910799377473,0.0,0.0,72.89482045494073,0.10795620800126926 +3,352.04523324830114,0.0,0.0,73.10374680563434,0.10826562500005821 +4,347.36078088160747,0.0,0.0,72.13099959193667,0.10682500000257278 +5,353.3662284867774,0.0,0.0,73.37805729850474,0.10867187499752617 +6,350.7655636148851,0.0,0.0,72.83801775708868,0.10787208400142845 +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843 +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115008 +9,354.39078102596784,0.0,0.0,73.59081015620703,0.10898695899959421 +10,354.1366069121032,0.0,0.0,73.53802977939847,0.10890879200087511 +11,336.51778199022067,0.0,0.0,69.87940300516897,0.10349041699737427 +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387 +13,354.1658720356466,0.0,0.0,73.54410681149463,0.10891779200028395 +14,348.69315700606205,0.0,0.0,72.40767337602198,0.10723475000122562 +15,355.05290449197474,0.0,0.0,73.72830301690117,0.10919058400031645 +16,353.3356074134523,0.0,0.0,73.3716986974505,0.10866245799843455 +17,330.53766821951785,0.0,0.0,68.63760598116552,0.10165133299960871 +18,346.2550728954724,0.0,0.0,71.90139444741146,0.10648495799978264 +19,349.15137082892227,0.0,0.0,72.50282349914717,0.10737566600073478 +20,341.4818789010037,0.0,0.0,70.91021964295189,0.10501704199850792 +21,354.0638505605011,0.0,0.0,73.52292160180167,0.10888641700148582 +22,352.4121301159214,0.0,0.0,73.1799345598806,0.10837845799687784 +23,354.6372291574377,0.0,0.0,73.64198619866458,0.10906275000161259 +24,333.33858460150753,0.0,0.0,69.21922863267379,0.10251270799926715 +25,353.2686780710232,0.0,0.0,73.3578005240321,0.10864187499828404 +26,355.6745152674338,0.0,0.0,73.85738323855767,0.10938175000046613 +27,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042006 +28,351.7074649321256,0.0,0.0,73.03360772368504,0.10816175000218209 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..b3d227883 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..306d4171f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..763c2f740 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2b656612f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..34002cf95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..a16b127f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ebe5c5f18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a922ea5a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ad34f9db0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..564bba871 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f4b7d2207 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e8204f0c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8a7944c78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..98d2a37b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..49f1b74bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..108dc1e56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..3ac38a14d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..febbff758 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562 +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794 +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635 +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166 +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775 +5,2933.9534880535894,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838 +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928 +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211 +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087 +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981 +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659 +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679 +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196 +13,2934.7404678341923,2.4985020158642874,0.0,583.0171170618786,0.6106430830004683 +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203 +15,2960.0932313018448,2.5200861836385533,0.0,588.0537106647776,0.6159183329982625 +16,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892 +17,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375 +18,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906 +19,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768 +20,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191 +21,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664 +22,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131 +23,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699 +24,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191 +25,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552 +26,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684 +27,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217 +28,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517 +29,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..926d6c79b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.31751000520677,0.0,0.0,73.78324951983832,0.10927195900148945 +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213 +2,351.03910799377473,0.0,0.0,72.89482045494073,0.10795620800126926 +3,352.04523324830114,0.0,0.0,73.10374680563434,0.10826562500005821 +4,347.36078088160747,0.0,0.0,72.13099959193667,0.10682500000257278 +5,353.3662284867774,0.0,0.0,73.37805729850474,0.10867187499752617 +6,350.7655636148851,0.0,0.0,72.83801775708868,0.10787208400142845 +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843 +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115008 +9,354.39078102596784,0.0,0.0,73.59081015620703,0.10898695899959421 +10,354.1366069121032,0.0,0.0,73.53802977939847,0.10890879200087511 +11,336.51778199022067,0.0,0.0,69.87940300516897,0.10349041699737427 +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387 +13,354.1658720356466,0.0,0.0,73.54410681149463,0.10891779200028395 +14,348.69315700606205,0.0,0.0,72.40767337602198,0.10723475000122562 +15,355.05290449197474,0.0,0.0,73.72830301690117,0.10919058400031645 +16,398.8938216060945,0.0,0.0,82.83206299361113,0.12267312500262051 +17,353.3356074134523,0.0,0.0,73.3716986974505,0.10866245799843455 +18,330.53766821951785,0.0,0.0,68.63760598116552,0.10165133299960871 +19,346.2550728954724,0.0,0.0,71.90139444741146,0.10648495799978264 +20,349.15137082892227,0.0,0.0,72.50282349914717,0.10737566600073478 +21,341.4818789010037,0.0,0.0,70.91021964295189,0.10501704199850792 +22,354.0638505605011,0.0,0.0,73.52292160180167,0.10888641700148582 +23,352.4121301159214,0.0,0.0,73.1799345598806,0.10837845799687784 +24,354.6372291574377,0.0,0.0,73.64198619866458,0.10906275000161259 +25,333.33858460150753,0.0,0.0,69.21922863267379,0.10251270799926715 +26,353.2686780710232,0.0,0.0,73.3578005240321,0.10864187499828404 +27,355.6745152674338,0.0,0.0,73.85738323855767,0.10938175000046613 +28,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042006 +29,351.7074649321256,0.0,0.0,73.03360772368504,0.10816175000218209 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..67fdac555 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ebd5e7fdc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9fb1356d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..22a711ba1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f7512bee5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e0a0131b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c0a3bb9ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..442c6e861 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..05a44541f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d4bf19f7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7bdc17331 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..007532d73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b53b58692 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..398eb620e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5fd14651d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bc52e16eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c626b6c59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-16/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..0970a7f73 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2884.6844519453502,1.8037210857211379,0.0,577.4579653693895,0.6114691249968018 +1,2878.9248167003684,1.8001197297633207,0.0,576.304997928672,0.6102482499991311 +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427 +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472 +4,2882.651347302002,1.8024498362046746,0.0,577.0509771908595,0.6110381660000712 +5,2883.2398715165705,1.8028178256860055,0.0,577.1687883418456,0.6111629160004668 +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607 +7,2872.177626013424,1.7959008800713843,0.0,574.9543410124832,0.6088180419974378 +8,2883.9494831095662,1.8032615280785134,0.0,577.3108388411359,0.6113133329999982 +9,2895.4779954549176,1.8104700186953238,0.0,579.6186237630511,0.6137570419996337 +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427 +11,2881.051089801741,1.8014492351878606,0.0,576.7306366282913,0.6106989579966466 +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899 +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684 +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046 +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056 +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859 +17,2876.165985025137,1.7983947012732153,0.0,575.752733252062,0.6096634579989768 +18,2874.9411706166497,1.7976288554375661,0.0,575.5075491260119,0.6094038330011244 +19,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265 +20,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629 +21,2881.6203519457463,1.8018051805779198,0.0,576.8445918857607,0.6108196249988396 +22,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016 +23,2881.1031818804754,1.8014818070626626,0.0,576.7410644536909,0.6107100000008359 +24,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997 +25,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505 +26,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135 +27,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412 +28,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..53fe8a4cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.10938533399894368 +1,362.3638254849227,0.49788929030629664,0.0,76.17706141686338,0.10887266700228793 +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.11073754199969699 +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139 +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.11034316700170166 +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.10930562500288943 +6,360.5148000962549,0.49534872230867666,0.0,75.78835451322753,0.1083171249993029 +7,358.84675249219504,0.49305681848336774,0.0,75.43769322795526,0.10781595799926436 +8,361.4683657469591,0.49665892518131227,0.0,75.98881555274077,0.10860362499806797 +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.11126820799836423 +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.10895095800151466 +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.11141483299797983 +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.10903891699854285 +13,360.0388493468535,0.49469476414791635,0.0,75.6882989146312,0.10817412499818602 +14,357.3634303624893,0.49101872817049913,0.0,75.12586541008638,0.10737029200026882 +15,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.10930287500013947 +16,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.10702791700168746 +17,346.93966636378417,0.47669643633386116,0.0,72.93455475908077,0.1042384590000438 +18,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.10905379199903109 +19,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.10816695800167508 +20,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.10825466599999345 +21,359.93511539136995,0.49455223329399556,0.0,75.66649169398131,0.10814295800082618 +22,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.10780820800209767 +23,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.10844129100223654 +24,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169 +25,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.10885033299928182 +26,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.10857324999960838 +27,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.11229395899863448 +28,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.11012066699913703 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..acf231001 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e1a3cb269 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6ca7add0b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..334aedc70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..75db82774 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1a9a220c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..0fbf09d70 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8e72709ac Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c477af360 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9731c0513 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8b1380dad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8fdac8769 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..df3debb73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..64153a1d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b7e822a47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..6a6ffb12c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1d85f7a9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..7d9840091 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2884.6844519453502,1.8037210857211379,0.0,577.4579653693895,0.6114691249968018 +1,2878.9248167003684,1.8001197297633207,0.0,576.304997928672,0.6102482499991311 +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427 +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472 +4,2882.651347302002,1.8024498362046746,0.0,577.0509771908595,0.6110381660000712 +5,2883.2398715165705,1.8028178256860055,0.0,577.1687883418456,0.6111629160004668 +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607 +7,2872.177626013424,1.7959008800713843,0.0,574.9543410124832,0.6088180419974378 +8,2883.9494831095662,1.8032615280785134,0.0,577.3108388411359,0.6113133329999982 +9,2895.4779954549176,1.8104700186953238,0.0,579.6186237630511,0.6137570419996337 +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427 +11,2881.051089801741,1.8014492351878606,0.0,576.7306366282913,0.6106989579966466 +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899 +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684 +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046 +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056 +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859 +17,2876.165985025137,1.7983947012732153,0.0,575.752733252062,0.6096634579989768 +18,2874.9411706166497,1.7976288554375661,0.0,575.5075491260119,0.6094038330011244 +19,2924.685426053381,1.8287326950149667,0.0,585.4653857670138,0.6199481670009845 +20,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265 +21,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629 +22,2881.6203519457463,1.8018051805779198,0.0,576.8445918857607,0.6108196249988396 +23,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016 +24,2881.1031818804754,1.8014818070626626,0.0,576.7410644536909,0.6107100000008359 +25,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997 +26,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505 +27,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135 +28,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412 +29,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..5061dd724 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.10938533399894368 +1,362.3638254849227,0.49788929030629664,0.0,76.17706141686338,0.10887266700228793 +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.11073754199969699 +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139 +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.11034316700170166 +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.10930562500288943 +6,360.5148000962549,0.49534872230867666,0.0,75.78835451322753,0.1083171249993029 +7,358.84675249219504,0.49305681848336774,0.0,75.43769322795526,0.10781595799926436 +8,361.4683657469591,0.49665892518131227,0.0,75.98881555274077,0.10860362499806797 +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.11126820799836423 +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.10895095800151466 +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.11141483299797983 +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.10903891699854285 +13,360.0388493468535,0.49469476414791635,0.0,75.6882989146312,0.10817412499818602 +14,357.3634303624893,0.49101872817049913,0.0,75.12586541008638,0.10737029200026882 +15,410.0131251531342,0.5633596113673182,0.0,86.19402053919968,0.12318895900170901 +16,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.10930287500013947 +17,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.10702791700168746 +18,346.93966636378417,0.47669643633386116,0.0,72.93455475908077,0.1042384590000438 +19,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.10905379199903109 +20,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.10816695800167508 +21,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.10825466599999345 +22,359.93511539136995,0.49455223329399556,0.0,75.66649169398131,0.10814295800082618 +23,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.10780820800209767 +24,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.10844129100223654 +25,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169 +26,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.10885033299928182 +27,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.10857324999960838 +28,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.11229395899863448 +29,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.11012066699913703 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..46eee48fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5bc183ac9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cb119a6e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b78496ac0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9ce17ee0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..152c2399d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..e19169ea8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..68ec150b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9178e1186 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..bb65172db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..437cbd9a7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d25eb691f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..547c5694e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..0e56370e5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7e3f48b68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..aca602426 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..487bfd975 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-17/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..7908bb79b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217 +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801 +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909 +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121 +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203 +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098 +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605 +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971 +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547 +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134 +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695 +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172 +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701 +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134 +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964 +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188 +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913 +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462 +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725 +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809 +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217 +21,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129 +22,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713 +23,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781 +24,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903 +25,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854 +26,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921 +27,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723 +28,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..406bc7f6f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,356.466325968142,0.0,0.0,73.92875082637863,0.10923954200188746 +1,351.7245436332654,0.0,0.0,72.94533663218813,0.10778641700017033 +2,353.4256006327688,0.0,0.0,73.29812456725101,0.10830770800021128 +3,353.35122991135097,0.0,0.0,73.28270057308399,0.10828491700158338 +4,354.96295784666904,0.0,0.0,73.61696225293952,0.10877883300054236 +5,350.3303576515806,0.0,0.0,72.6561917101098,0.10735916699923109 +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967 +7,355.0087791611787,0.0,0.0,73.62646528954114,0.10879287499847123 +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658 +9,356.2385833502526,0.0,0.0,73.88151851851684,0.10916974999781814 +10,353.36836150001716,0.0,0.0,73.28625355090404,0.10829016699790373 +11,344.9872006619987,0.0,0.0,71.54805640269699,0.10572174999833805 +12,335.41512274852306,0.0,0.0,69.56287095485956,0.10278837500300142 +13,354.6641076704996,0.0,0.0,73.55498270929414,0.10868724999818369 +14,355.37234762367643,0.0,0.0,73.70186697636058,0.10890429099890753 +15,352.9861603805139,0.0,0.0,73.20698757465065,0.10817304099691682 +16,354.41080472393486,0.0,0.0,73.50244935885966,0.10860962500009919 +17,354.4234494781258,0.0,0.0,73.50507179698002,0.10861350000050152 +18,350.7823055918313,0.0,0.0,72.74992271421108,0.10749766699882457 +19,338.18622604515986,0.0,0.0,70.13757939211467,0.10363758300081827 +20,349.4839750006073,0.0,0.0,72.48065756410699,0.10709979199964437 +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016006 +22,350.7968527716273,0.0,0.0,72.7529397027792,0.10750212499988265 +23,354.93835033342356,0.0,0.0,73.611858817965,0.10877129199798219 +24,351.8900120547612,0.0,0.0,72.97965368491161,0.10783712500051479 +25,353.8877459607927,0.0,0.0,73.39397044191605,0.10844933300177217 +26,338.342449918055,0.0,0.0,70.16997918679662,0.10368545799792628 +27,357.2478532784631,0.0,0.0,74.09083440504997,0.10947904200293124 +28,354.8509236948433,0.0,0.0,73.59372711320542,0.10874449999755598 +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c25c0f976 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..478e38655 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d75f563b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..addb7b96c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..90d7d53aa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..e86eba589 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1679554c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b8fa7b2b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0d1a60716 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..598cce043 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5f54b2646 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8f4badf1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d6fcb9100 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d1a3937ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..49ec46a7c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d182dff10 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..7f94419b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..b1a6b8b9d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217 +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801 +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909 +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121 +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203 +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098 +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605 +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971 +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547 +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134 +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695 +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172 +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701 +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134 +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964 +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188 +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913 +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462 +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725 +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809 +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217 +21,2959.5925028935953,2.819144749413765,0.0,590.7976357988317,0.6212104999976873 +22,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129 +23,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713 +24,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781 +25,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903 +26,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854 +27,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921 +28,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723 +29,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..406bc7f6f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,356.466325968142,0.0,0.0,73.92875082637863,0.10923954200188746 +1,351.7245436332654,0.0,0.0,72.94533663218813,0.10778641700017033 +2,353.4256006327688,0.0,0.0,73.29812456725101,0.10830770800021128 +3,353.35122991135097,0.0,0.0,73.28270057308399,0.10828491700158338 +4,354.96295784666904,0.0,0.0,73.61696225293952,0.10877883300054236 +5,350.3303576515806,0.0,0.0,72.6561917101098,0.10735916699923109 +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967 +7,355.0087791611787,0.0,0.0,73.62646528954114,0.10879287499847123 +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658 +9,356.2385833502526,0.0,0.0,73.88151851851684,0.10916974999781814 +10,353.36836150001716,0.0,0.0,73.28625355090404,0.10829016699790373 +11,344.9872006619987,0.0,0.0,71.54805640269699,0.10572174999833805 +12,335.41512274852306,0.0,0.0,69.56287095485956,0.10278837500300142 +13,354.6641076704996,0.0,0.0,73.55498270929414,0.10868724999818369 +14,355.37234762367643,0.0,0.0,73.70186697636058,0.10890429099890753 +15,352.9861603805139,0.0,0.0,73.20698757465065,0.10817304099691682 +16,354.41080472393486,0.0,0.0,73.50244935885966,0.10860962500009919 +17,354.4234494781258,0.0,0.0,73.50507179698002,0.10861350000050152 +18,350.7823055918313,0.0,0.0,72.74992271421108,0.10749766699882457 +19,338.18622604515986,0.0,0.0,70.13757939211467,0.10363758300081827 +20,349.4839750006073,0.0,0.0,72.48065756410699,0.10709979199964437 +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016006 +22,350.7968527716273,0.0,0.0,72.7529397027792,0.10750212499988265 +23,354.93835033342356,0.0,0.0,73.611858817965,0.10877129199798219 +24,351.8900120547612,0.0,0.0,72.97965368491161,0.10783712500051479 +25,353.8877459607927,0.0,0.0,73.39397044191605,0.10844933300177217 +26,338.342449918055,0.0,0.0,70.16997918679662,0.10368545799792628 +27,357.2478532784631,0.0,0.0,74.09083440504997,0.10947904200293124 +28,354.8509236948433,0.0,0.0,73.59372711320542,0.10874449999755598 +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c59c055c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..df1f7aa86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4ca89cd5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..c21ff8700 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e159ffd68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..18a8f94cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..345f5744a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8350abad2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a6cd3c0bf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..959ce0951 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8c0270172 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c2697eb12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8926ba1fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..d7770808c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..00de52677 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f05373819 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..2971b4538 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-18/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..94b1cf03b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375 +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712 +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556 +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808 +4,2897.0092650670626,2.535967566748408,0.0,577.366405361154,0.6108203750009125 +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125 +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013 +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129 +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921 +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624 +10,2892.0727798560765,2.5316462942762246,0.0,576.3825767087042,0.6097795409987157 +11,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565 +12,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538 +13,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249 +14,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274 +15,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156 +16,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747 +17,2904.8236489370047,2.5428080778531714,0.0,578.9237917249135,0.6124679999993532 +18,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813 +19,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951 +20,2887.1623848924046,2.5273478605370046,0.0,575.4039477746288,0.608744207998825 +21,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676 +22,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325 +23,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941 +24,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643 +25,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333 +26,2890.8920176179718,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591 +27,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687 +28,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..83f9cceb0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.0041249267728,0.0,0.0,73.82307578403244,0.10896816700187628 +1,353.4402104749345,0.0,0.0,73.49785991471933,0.10848812499898486 +2,350.8823752799278,0.0,0.0,72.96595831644073,0.10770300000149291 +3,350.97739756413245,0.0,0.0,72.98571819187727,0.10773216699817567 +4,352.6420323212576,0.0,0.0,73.33187883959745,0.10824312499971711 +5,354.0361270375474,0.0,0.0,73.62178071020813,0.10867104100179859 +6,334.5734779261205,0.0,0.0,69.57452458154408,0.10269699999844306 +7,353.746994323176,0.0,0.0,73.56165558831248,0.10858229199948255 +8,351.5615043409446,0.0,0.0,73.10718314347316,0.10791145799885271 +9,344.2555939822133,0.0,0.0,71.58791974281488,0.10566891599955852 +10,353.00555848573197,0.0,0.0,73.40747407273736,0.10835470899837674 +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889 +12,354.5682479676913,0.0,0.0,73.73243520967453,0.10883437499796855 +13,340.24380070376134,0.0,0.0,70.75366769212076,0.10443749999831198 +14,357.4707397539094,0.0,0.0,74.33600811503362,0.10972529199716519 +15,353.83101804782274,0.0,0.0,73.57912831428018,0.10860808299912605 +16,353.14374430898687,0.0,0.0,73.43620980222931,0.10839712500091991 +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538 +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631 +19,356.9293892674415,0.0,0.0,74.22343433016144,0.10955912499775877 +20,337.23407287000106,0.0,0.0,70.12779506033984,0.10351366699978826 +21,353.29401357030446,0.0,0.0,73.46745828157741,0.10844325000289246 +22,353.32387845566024,0.0,0.0,73.47366868179559,0.10845241700008046 +23,354.1508333805749,0.0,0.0,73.64563388390287,0.10870625000097789 +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099 +25,352.473707948533,0.0,0.0,73.29687580145946,0.10819145799905527 +26,360.93358193698526,0.0,0.0,75.0561058349181,0.11078820799957612 +27,338.47464045384555,0.0,0.0,70.38577097759506,0.10389445799955865 +28,355.80325111504544,0.0,0.0,73.98925400286308,0.10921345799943083 +29,354.60680161162924,0.0,0.0,73.7404524364568,0.10884620900105801 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..859c921be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..abf37d72e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f5e5cd183 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..2adc02051 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..f93b1067f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8a4411679 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3173f5d88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b5776eda2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..6928073c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..46d63b40b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..27f5ccb15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..f4ee39e8a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..49fced721 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..6d67bd121 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..cae110afa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..8c26d4247 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..56d29969c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dcce7c53f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375 +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712 +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556 +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808 +4,2897.0092650670626,2.535967566748408,0.0,577.366405361154,0.6108203750009125 +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125 +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013 +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129 +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921 +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624 +10,2892.0727798560765,2.5316462942762246,0.0,576.3825767087042,0.6097795409987157 +11,2929.9184866037235,2.5647754547556207,0.0,583.9251275478487,0.6177591250016121 +12,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565 +13,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538 +14,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249 +15,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274 +16,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156 +17,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747 +18,2904.8236489370047,2.5428080778531714,0.0,578.9237917249135,0.6124679999993532 +19,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813 +20,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951 +21,2887.1623848924046,2.5273478605370046,0.0,575.4039477746288,0.608744207998825 +22,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676 +23,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325 +24,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941 +25,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643 +26,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333 +27,2890.8920176179718,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591 +28,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687 +29,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..83f9cceb0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,355.0041249267728,0.0,0.0,73.82307578403244,0.10896816700187628 +1,353.4402104749345,0.0,0.0,73.49785991471933,0.10848812499898486 +2,350.8823752799278,0.0,0.0,72.96595831644073,0.10770300000149291 +3,350.97739756413245,0.0,0.0,72.98571819187727,0.10773216699817567 +4,352.6420323212576,0.0,0.0,73.33187883959745,0.10824312499971711 +5,354.0361270375474,0.0,0.0,73.62178071020813,0.10867104100179859 +6,334.5734779261205,0.0,0.0,69.57452458154408,0.10269699999844306 +7,353.746994323176,0.0,0.0,73.56165558831248,0.10858229199948255 +8,351.5615043409446,0.0,0.0,73.10718314347316,0.10791145799885271 +9,344.2555939822133,0.0,0.0,71.58791974281488,0.10566891599955852 +10,353.00555848573197,0.0,0.0,73.40747407273736,0.10835470899837674 +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889 +12,354.5682479676913,0.0,0.0,73.73243520967453,0.10883437499796855 +13,340.24380070376134,0.0,0.0,70.75366769212076,0.10443749999831198 +14,357.4707397539094,0.0,0.0,74.33600811503362,0.10972529199716519 +15,353.83101804782274,0.0,0.0,73.57912831428018,0.10860808299912605 +16,353.14374430898687,0.0,0.0,73.43620980222931,0.10839712500091991 +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538 +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631 +19,356.9293892674415,0.0,0.0,74.22343433016144,0.10955912499775877 +20,337.23407287000106,0.0,0.0,70.12779506033984,0.10351366699978826 +21,353.29401357030446,0.0,0.0,73.46745828157741,0.10844325000289246 +22,353.32387845566024,0.0,0.0,73.47366868179559,0.10845241700008046 +23,354.1508333805749,0.0,0.0,73.64563388390287,0.10870625000097789 +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099 +25,352.473707948533,0.0,0.0,73.29687580145946,0.10819145799905527 +26,360.93358193698526,0.0,0.0,75.0561058349181,0.11078820799957612 +27,338.47464045384555,0.0,0.0,70.38577097759506,0.10389445799955865 +28,355.80325111504544,0.0,0.0,73.98925400286308,0.10921345799943083 +29,354.60680161162924,0.0,0.0,73.7404524364568,0.10884620900105801 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4f6aa6704 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5c3a3a039 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..422265943 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fd02713ef Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..15db1a0ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c1eda2e1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b603f864f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..47cfca530 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a6f3a72ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b1ebe07f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..09b2e1d06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..30421c69f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..276be9630 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..585196e2c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1d60b5831 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..5e619cf9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..d7ba24eec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-19/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a402ad79e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901 +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142 +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616 +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762 +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902 +5,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627 +6,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874 +7,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908 +8,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865 +9,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068 +10,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236 +11,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381 +12,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771 +13,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913 +14,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114 +15,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037 +16,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645 +17,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216 +18,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751 +19,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859 +20,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738 +21,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113 +22,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915 +23,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869 +24,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682 +25,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566 +26,2920.540539483107,2.2616902217865054,0.0,576.6644862549181,0.6069196249991364 +27,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..8602bebe9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,411.9106270133148,0.06692836575080263,0.0,79.67821942633053,0.10925533399858978 +1,409.7639893685133,0.06657957419262545,0.0,79.2629830763206,0.10868595899955835 +2,408.6489630946226,0.06639840167269845,0.0,79.0472971913475,0.10839020899948082 +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.10703291699974216 +4,406.46807727045365,0.06604404537662745,0.0,78.62543602087497,0.1078117500001099 +5,409.1637451782701,0.06648204487420101,0.0,79.1468744227363,0.10852674999841838 +6,411.117003532524,0.06679941563612381,0.0,79.52470431480539,0.1090448329996434 +7,408.04856056941446,0.06630084662757567,0.0,78.93115791012883,0.1082309580015135 +8,406.718009040155,0.06608465497443415,0.0,78.67378174706386,0.10787804199935636 +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.10851712500152644 +10,434.73755799887095,0.07063734795659614,0.0,84.0937627423277,0.11530995800058008 +11,412.8927512188439,0.06708794397901437,0.0,79.8681973070166,0.10951583300266066 +12,411.16303347095237,0.0668068947064672,0.0,79.5336081480492,0.10905704199831234 +13,405.92375972203575,0.06595560317199378,0.0,78.5201455762586,0.107667375003075 +14,411.4063674703926,0.06684643228050899,0.0,79.58067762994595,0.10912158400242333 +15,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.10564154099847656 +16,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794 +17,416.45131938035576,0.06766614987088403,0.0,80.55655142128744,0.11045970899795066 +18,390.2780465829524,0.06341344489121008,0.0,75.4937061429856,0.10351749999972526 +19,411.77709909390916,0.06690666976909727,0.0,79.6523903601103,0.10921991700161016 +20,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.10828324999965844 +21,407.79329023407206,0.06625936960501617,0.0,78.88177951477175,0.10816324999905191 +22,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.10837637499935227 +23,407.6768863974922,0.06624045599114342,0.0,78.85926285745624,0.10813237500042305 +24,408.8302439287478,0.06642785667864941,0.0,79.08236337593212,0.10843829199802713 +25,400.83356580406127,0.06512853453636547,0.0,77.53552036554309,0.10631724999984726 +26,407.19320440622545,0.06616186601774725,0.0,78.7657014941281,0.10800408300201525 +27,408.4123814834321,0.06635996124517542,0.0,79.00153386238134,0.10832745800144039 +28,404.7000282651971,0.06575676793650127,0.0,78.28343222840476,0.10734279199823504 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..056b3b2f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ac571ca32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f84eebaaf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4eb7b8244 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..94d4f9e18 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..378cfb1fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..927409fa4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..cdc6f8894 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..822dcf0d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..017e8f319 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c88b598c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..846f441cf Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0134055b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8a88b9cbc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..aa4e62149 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c817cdd5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f77fa0ad8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a1305880f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..5ad358d3d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901 +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142 +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616 +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762 +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902 +5,2966.9573755043743,2.297635795126894,0.0,585.8295502339719,0.6165655409968167 +6,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627 +7,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874 +8,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908 +9,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865 +10,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068 +11,2967.8171338738516,2.298301598963909,0.0,585.999310629945,0.6167442080004548 +12,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236 +13,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381 +14,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771 +15,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913 +16,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114 +17,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037 +18,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645 +19,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216 +20,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751 +21,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859 +22,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738 +23,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113 +24,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915 +25,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869 +26,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682 +27,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566 +28,2920.540539483107,2.2616902217865054,0.0,576.6644862549181,0.6069196249991364 +29,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..09aa742de --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,411.9106270133148,0.06692836575080263,0.0,79.67821942633053,0.10925533399858978 +1,409.7639893685133,0.06657957419262545,0.0,79.2629830763206,0.10868595899955835 +2,408.6489630946226,0.06639840167269845,0.0,79.0472971913475,0.10839020899948082 +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.10703291699974216 +4,406.46807727045365,0.06604404537662745,0.0,78.62543602087497,0.1078117500001099 +5,409.1637451782701,0.06648204487420101,0.0,79.1468744227363,0.10852674999841838 +6,411.117003532524,0.06679941563612381,0.0,79.52470431480539,0.1090448329996434 +7,408.04856056941446,0.06630084662757567,0.0,78.93115791012883,0.1082309580015135 +8,406.718009040155,0.06608465497443415,0.0,78.67378174706386,0.10787804199935636 +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.10851712500152644 +10,434.73755799887095,0.07063734795659614,0.0,84.0937627423277,0.11530995800058008 +11,465.2579892959261,0.07559639114402894,0.0,89.99750365696646,0.1234052090003388 +12,412.8927512188439,0.06708794397901437,0.0,79.8681973070166,0.10951583300266066 +13,411.16303347095237,0.0668068947064672,0.0,79.5336081480492,0.10905704199831234 +14,405.92375972203575,0.06595560317199378,0.0,78.5201455762586,0.107667375003075 +15,411.4063674703926,0.06684643228050899,0.0,79.58067762994595,0.10912158400242333 +16,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.10564154099847656 +17,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794 +18,416.45131938035576,0.06766614987088403,0.0,80.55655142128744,0.11045970899795066 +19,390.2780465829524,0.06341344489121008,0.0,75.4937061429856,0.10351749999972526 +20,411.77709909390916,0.06690666976909727,0.0,79.6523903601103,0.10921991700161016 +21,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.10828324999965844 +22,407.79329023407206,0.06625936960501617,0.0,78.88177951477175,0.10816324999905191 +23,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.10837637499935227 +24,407.6768863974922,0.06624045599114342,0.0,78.85926285745624,0.10813237500042305 +25,408.8302439287478,0.06642785667864941,0.0,79.08236337593212,0.10843829199802713 +26,400.83356580406127,0.06512853453636547,0.0,77.53552036554309,0.10631724999984726 +27,407.19320440622545,0.06616186601774725,0.0,78.7657014941281,0.10800408300201525 +28,408.4123814834321,0.06635996124517542,0.0,79.00153386238134,0.10832745800144039 +29,404.7000282651971,0.06575676793650127,0.0,78.28343222840476,0.10734279199823504 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f2faf82f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..dbf631148 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..b693f9483 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..6aad43378 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0756e01c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..91b630347 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1504f8da1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ffb904a27 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..d04977f06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d5a3457ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c022c2f26 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..620156fd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..5471b657e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..798e2baca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2cadb5a68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..a73862786 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..cfa417be8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-2/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..91cff9157 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527 +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256 +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887 +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624 +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048 +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276 +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462 +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564 +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943 +9,2911.6807159487107,2.3955139925989806,0.0,578.1173768805539,0.6088341670001682 +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115 +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415 +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134 +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991 +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045 +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869 +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593 +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571 +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506 +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875 +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202 +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929 +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303 +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345 +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896 +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476 +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539 +27,2900.4514699927317,2.3862754055291346,0.0,575.8877978676978,0.6064861250015383 +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9f492c46d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539 +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583 +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.11413620800158242 +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.10983087500062538 +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.10793195799851674 +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.10881612500088522 +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.10782208399905358 +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.11081670800194843 +8,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.10672025000167196 +9,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.10762912499922095 +10,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.10809129200060852 +11,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.10857824999766308 +12,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.11046354100108147 +13,365.25569299874763,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758 +14,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786 +15,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.10806841699741199 +16,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803 +17,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.10845870800039847 +18,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.10871633399801794 +19,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.10861050000312389 +20,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.10723658300048555 +21,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.10851445799926296 +22,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.10875374999886844 +23,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.11004316700200434 +24,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223 +25,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241 +26,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.10686254100073711 +27,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.10847129200192285 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..8564790a3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0de6b2ceb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..866fa66e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..308d658b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..add6075fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..48269b8c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..491dc7182 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..aba7782e7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..bbd03e99f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..55502158e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..30a250e15 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..bea98cf00 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2b79b6c78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f63c49b09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..b00615db3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..efee28d99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..bacd53400 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..736e241db --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527 +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256 +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887 +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624 +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048 +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276 +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462 +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564 +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943 +9,2911.6807159487107,2.3955139925989806,0.0,578.1173768805539,0.6088341670001682 +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115 +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415 +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134 +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991 +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045 +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869 +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593 +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571 +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506 +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875 +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202 +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929 +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303 +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345 +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896 +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476 +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539 +27,2900.4514699927317,2.3862754055291346,0.0,575.8877978676978,0.6064861250015383 +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997 +29,2973.5114011729834,2.4463836744344314,0.0,590.3939267635094,0.6217630000028294 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..cb99c3443 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539 +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583 +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.11413620800158242 +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.10983087500062538 +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.10793195799851674 +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.10881612500088522 +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.10782208399905358 +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.11081670800194843 +8,415.29796425727784,0.9428304673476159,0.0,88.73920358675761,0.12389008399986778 +9,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.10672025000167196 +10,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.10762912499922095 +11,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.10809129200060852 +12,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.10857824999766308 +13,415.5291183662658,0.9433552451104835,0.0,88.78859566979871,0.12395904100048938 +14,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.11046354100108147 +15,365.25569299874763,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758 +16,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786 +17,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.10806841699741199 +18,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803 +19,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.10845870800039847 +20,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.10871633399801794 +21,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.10861050000312389 +22,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.10723658300048555 +23,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.10851445799926296 +24,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.10875374999886844 +25,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.11004316700200434 +26,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223 +27,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241 +28,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.10686254100073711 +29,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.10847129200192285 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..011c8e66b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..3b50261bb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..eff568be4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..161f36de7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..093db0ca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..292fb77fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..64011ee64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9cfaa69a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f7861e7fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..03e4e696a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..eb8ae02cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9b5b01269 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4b4953bbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..98b9231f5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..2d9de71f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cd7d9689d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..9cf6a0c9e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-20/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..988f5eee2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346 +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122 +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938 +3,2875.852308278687,1.3273726080466575,0.0,572.9272019481385,0.6067970830008562 +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447 +5,2887.2685299862255,1.3326418563798739,0.0,575.201541259963,0.6092058750000433 +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371 +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983 +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988 +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336 +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573 +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017 +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408 +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017 +14,2885.526801565024,1.3318379477124143,0.0,574.8545541813708,0.6088383749993227 +15,2889.1212408691845,1.3334969898891957,0.0,575.570638260924,0.6095967920009571 +16,2872.3532493423795,1.3257575894406515,0.0,572.2301195423212,0.6060587909996684 +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522 +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246 +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503 +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753 +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069 +22,2881.77754512887,1.3301074484515283,0.0,574.1076274378909,0.6080472920002649 +23,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095 +24,2893.6888300427822,1.3356051971627025,0.0,576.4805932253515,0.6105605410011776 +25,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662 +26,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984 +27,2892.5888965608005,1.3350975140767343,0.0,576.2614645133705,0.6103284580021864 +28,2898.673296586618,1.3379058175168725,0.0,577.4735984857201,0.6116122500025085 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..26db9eec0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.45688805750524,0.0,0.0,76.70321474475051,0.11023695800031419 +1,369.29752302591254,0.0,0.0,76.25732116986836,0.10959612499937066 +2,361.783124260732,0.0,0.0,74.7056510819143,0.10736608300067019 +3,357.0969638630331,0.0,0.0,73.73799217217456,0.10597537499779719 +4,366.1550707681201,0.0,0.0,75.60842705024373,0.10866354200334172 +5,364.0291189051167,0.0,0.0,75.16943305786498,0.10803262500121491 +6,349.3712628459299,0.0,0.0,72.14268966676815,0.10368262500196579 +7,361.1163602890243,0.0,0.0,74.5679690473358,0.10716820800007554 +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093 +9,365.2454143175718,0.0,0.0,75.42058944024481,0.10839358399971388 +10,378.791854453436,0.0,0.0,78.21783332015166,0.11241375000099652 +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268 +12,369.4220575227252,0.0,0.0,76.28303666084257,0.10963308300051722 +13,345.8947934099548,0.0,0.0,71.42482336714019,0.10265091600012966 +14,353.18188420676984,0.0,0.0,72.92955597063431,0.10481349999827216 +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518 +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049 +17,364.24294838058665,0.0,0.0,75.21358732906856,0.10809608300041873 +18,368.872529440838,0.0,0.0,76.16956300662206,0.10946999999941909 +19,371.3581850954161,0.0,0.0,76.68283328262,0.11020766600267962 +20,357.45863551761073,0.0,0.0,73.81267480555692,0.10608270800003083 +21,361.21646839471185,0.0,0.0,74.58864066166066,0.10719791700103087 +22,365.8029418804323,0.0,0.0,75.53571493059131,0.10855904100026237 +23,363.99401755379665,0.0,0.0,75.1621848775924,0.10802220800178475 +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562 +25,362.63591832244185,0.0,0.0,74.88174701162083,0.10761916599949473 +26,366.9264345364295,0.0,0.0,75.76770820148677,0.10889245900034439 +27,371.61400005320957,0.0,0.0,76.73565725835823,0.11028358399926219 +28,365.90347117982884,0.0,0.0,75.55647351843196,0.10858887499853154 +29,368.29253324875754,0.0,0.0,76.04979790358432,0.10929787500208477 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..73a2e75c6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ffdb9d955 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..5e86847b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4a9f8ea37 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c630c4acc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fdf4ec150 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c6915e5cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8f96992be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..eaf649874 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f8c57f142 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..211075810 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..03f303467 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3d19ab101 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..f7e493cb9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..2a755df08 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..0fe617852 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f89d0ca95 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..cf2cdd095 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346 +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122 +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938 +3,2875.852308278687,1.3273726080466575,0.0,572.9272019481385,0.6067970830008562 +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447 +5,2887.2685299862255,1.3326418563798739,0.0,575.201541259963,0.6092058750000433 +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371 +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983 +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988 +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336 +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573 +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017 +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408 +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017 +14,2885.526801565024,1.3318379477124143,0.0,574.8545541813708,0.6088383749993227 +15,2889.1212408691845,1.3334969898891957,0.0,575.570638260924,0.6095967920009571 +16,2872.3532493423795,1.3257575894406515,0.0,572.2301195423212,0.6060587909996684 +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522 +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246 +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503 +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753 +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069 +22,2881.77754512887,1.3301074484515283,0.0,574.1076274378909,0.6080472920002649 +23,2921.4931000362635,1.3484384801062799,0.0,582.0197589758731,0.6164271670022572 +24,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095 +25,2893.6888300427822,1.3356051971627025,0.0,576.4805932253515,0.6105605410011776 +26,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662 +27,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984 +28,2892.5888965608005,1.3350975140767343,0.0,576.2614645133705,0.6103284580021864 +29,2898.673296586618,1.3379058175168725,0.0,577.4735984857201,0.6116122500025085 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..26db9eec0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,371.45688805750524,0.0,0.0,76.70321474475051,0.11023695800031419 +1,369.29752302591254,0.0,0.0,76.25732116986836,0.10959612499937066 +2,361.783124260732,0.0,0.0,74.7056510819143,0.10736608300067019 +3,357.0969638630331,0.0,0.0,73.73799217217456,0.10597537499779719 +4,366.1550707681201,0.0,0.0,75.60842705024373,0.10866354200334172 +5,364.0291189051167,0.0,0.0,75.16943305786498,0.10803262500121491 +6,349.3712628459299,0.0,0.0,72.14268966676815,0.10368262500196579 +7,361.1163602890243,0.0,0.0,74.5679690473358,0.10716820800007554 +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093 +9,365.2454143175718,0.0,0.0,75.42058944024481,0.10839358399971388 +10,378.791854453436,0.0,0.0,78.21783332015166,0.11241375000099652 +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268 +12,369.4220575227252,0.0,0.0,76.28303666084257,0.10963308300051722 +13,345.8947934099548,0.0,0.0,71.42482336714019,0.10265091600012966 +14,353.18188420676984,0.0,0.0,72.92955597063431,0.10481349999827216 +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518 +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049 +17,364.24294838058665,0.0,0.0,75.21358732906856,0.10809608300041873 +18,368.872529440838,0.0,0.0,76.16956300662206,0.10946999999941909 +19,371.3581850954161,0.0,0.0,76.68283328262,0.11020766600267962 +20,357.45863551761073,0.0,0.0,73.81267480555692,0.10608270800003083 +21,361.21646839471185,0.0,0.0,74.58864066166066,0.10719791700103087 +22,365.8029418804323,0.0,0.0,75.53571493059131,0.10855904100026237 +23,363.99401755379665,0.0,0.0,75.1621848775924,0.10802220800178475 +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562 +25,362.63591832244185,0.0,0.0,74.88174701162083,0.10761916599949473 +26,366.9264345364295,0.0,0.0,75.76770820148677,0.10889245900034439 +27,371.61400005320957,0.0,0.0,76.73565725835823,0.11028358399926219 +28,365.90347117982884,0.0,0.0,75.55647351843196,0.10858887499853154 +29,368.29253324875754,0.0,0.0,76.04979790358432,0.10929787500208477 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1a6b3580d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f1c5fc8d9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d92341ca5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..d78b26ab9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..c8b083fee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c4300cd04 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fce44780a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9e06221fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0f880077c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3a4a27af5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c1bb082d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..251e61ed9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d1d33f263 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..33942a176 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..7a06fd7d1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..e8168510f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..bd172fef4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-21/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..de4152c39 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527 +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564 +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987 +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384 +4,2893.026344318771,1.8327376373550999,0.0,574.8798130845488,0.6091410410008393 +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858 +6,2890.589531602901,1.8311939119105214,0.0,574.3955885141876,0.608627958001307 +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217 +8,2885.062076872394,1.8276922589292859,0.0,573.2972154736007,0.6074641250015702 +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232 +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973 +11,2877.8832290515506,1.823144445315372,0.0,571.8706903741963,0.6059525829987251 +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582 +13,2899.5976737820447,1.8369005869453974,0.0,576.1856168360363,0.6105246670013003 +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935 +15,2893.7573506004273,1.8332007312111807,0.0,575.0250729973689,0.6092949579979177 +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482 +17,2903.462655182409,1.8393490599411706,0.0,576.9536360382741,0.6113384579984995 +18,2896.5171241347834,1.834949052942479,0.0,575.5734738429754,0.6098760419990867 +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857 +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489 +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384 +22,2893.456165583078,1.8330099299354898,0.0,574.9652238408559,0.6092315419991792 +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818 +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026 +25,2893.6837356254878,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463 +26,2885.7042275061403,1.8280990625650806,0.0,573.4248186795049,0.6075993330014171 +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378 +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905 +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c5274e0a2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.4356841019941,0.0,0.0,74.02446695872452,0.10932395900090341 +1,346.4714390348405,0.0,0.0,73.18707755660988,0.10808724999878905 +2,345.72749858615435,0.0,0.0,73.02993090271205,0.10785516599935363 +3,349.2921261580012,0.0,0.0,73.78290689198242,0.10896720799792092 +4,346.26975989888166,0.0,0.0,73.14447575772542,0.10802433299977565 +5,350.39080418180447,0.0,0.0,74.01498672506138,0.10930995799935772 +6,349.6472676163195,0.0,0.0,73.85792538564502,0.10907799999768031 +7,361.78815498173515,0.0,0.0,76.42251214550602,0.11286554199978127 +8,353.5460632089863,0.0,0.0,74.68148953342224,0.11029429100017296 +9,342.0485443957291,0.0,0.0,72.25280506973742,0.10670745800234727 +10,350.28796278914035,0.0,0.0,73.99326296912378,0.10927787499895203 +11,345.76957050704704,0.0,0.0,73.03881798715949,0.10786829100106843 +12,356.1562593262886,0.0,0.0,75.23285568991444,0.11110858299798565 +13,352.1317801069439,0.0,0.0,74.38274269482416,0.10985308299859753 +14,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226 +15,345.3318911540231,0.0,0.0,72.94636455768223,0.10773174999849289 +16,349.3621113945349,0.0,0.0,73.79769026041323,0.10898904100031359 +17,349.9381648592711,0.0,0.0,73.9193732185175,0.10916874999747961 +18,332.77482680217906,0.0,0.0,70.29386643211716,0.10381437499745516 +19,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219 +20,347.0243842208858,0.0,0.0,73.3038792252507,0.10825975000261678 +21,348.0907413848161,0.0,0.0,73.52913174441076,0.10859241700018174 +22,346.1256479612438,0.0,0.0,73.11403419640622,0.10797937499955879 +23,348.0938122335487,0.0,0.0,73.52978041676593,0.10859337500005495 +24,349.7563885449727,0.0,0.0,73.88097560268639,0.10911204199874192 +25,330.1607584718866,0.0,0.0,69.74168232666726,0.10299887500150362 +26,351.14262369975336,0.0,0.0,74.1737977183195,0.10954449999917415 +27,346.8602380368698,0.0,0.0,73.26920571930842,0.10820854200210306 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3f462c303 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..794675e88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..e504f4dc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..29841fcc8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..47c213b8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..95570dda1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..35f3d999c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a419139b6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..73032e450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..c111fab71 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..47b028456 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..1e3f4470f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7f9507b1f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..c03f00761 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..42ed42128 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1f2f56555 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c4c5f7d6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..0ac9d17d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..de4152c39 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527 +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564 +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987 +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384 +4,2893.026344318771,1.8327376373550999,0.0,574.8798130845488,0.6091410410008393 +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858 +6,2890.589531602901,1.8311939119105214,0.0,574.3955885141876,0.608627958001307 +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217 +8,2885.062076872394,1.8276922589292859,0.0,573.2972154736007,0.6074641250015702 +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232 +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973 +11,2877.8832290515506,1.823144445315372,0.0,571.8706903741963,0.6059525829987251 +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582 +13,2899.5976737820447,1.8369005869453974,0.0,576.1856168360363,0.6105246670013003 +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935 +15,2893.7573506004273,1.8332007312111807,0.0,575.0250729973689,0.6092949579979177 +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482 +17,2903.462655182409,1.8393490599411706,0.0,576.9536360382741,0.6113384579984995 +18,2896.5171241347834,1.834949052942479,0.0,575.5734738429754,0.6098760419990867 +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857 +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489 +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384 +22,2893.456165583078,1.8330099299354898,0.0,574.9652238408559,0.6092315419991792 +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818 +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026 +25,2893.6837356254878,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463 +26,2885.7042275061403,1.8280990625650806,0.0,573.4248186795049,0.6075993330014171 +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378 +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905 +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..6fe051c51 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,350.4356841019941,0.0,0.0,74.02446695872452,0.10932395900090341 +1,346.4714390348405,0.0,0.0,73.18707755660988,0.10808724999878905 +2,345.72749858615435,0.0,0.0,73.02993090271205,0.10785516599935363 +3,397.13977988801355,0.0,0.0,83.89003131815507,0.12389404100031243 +4,349.2921261580012,0.0,0.0,73.78290689198242,0.10896720799792092 +5,346.26975989888166,0.0,0.0,73.14447575772542,0.10802433299977565 +6,350.39080418180447,0.0,0.0,74.01498672506138,0.10930995799935772 +7,349.6472676163195,0.0,0.0,73.85792538564502,0.10907799999768031 +8,361.78815498173515,0.0,0.0,76.42251214550602,0.11286554199978127 +9,353.5460632089863,0.0,0.0,74.68148953342224,0.11029429100017296 +10,342.0485443957291,0.0,0.0,72.25280506973742,0.10670745800234727 +11,350.28796278914035,0.0,0.0,73.99326296912378,0.10927787499895203 +12,345.76957050704704,0.0,0.0,73.03881798715949,0.10786829100106843 +13,356.1562593262886,0.0,0.0,75.23285568991444,0.11110858299798565 +14,399.69388332935665,0.0,0.0,84.4295487085925,0.12469083399992087 +15,352.1317801069439,0.0,0.0,74.38274269482416,0.10985308299859753 +16,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226 +17,345.3318911540231,0.0,0.0,72.94636455768223,0.10773174999849289 +18,349.3621113945349,0.0,0.0,73.79769026041323,0.10898904100031359 +19,349.9381648592711,0.0,0.0,73.9193732185175,0.10916874999747961 +20,332.77482680217906,0.0,0.0,70.29386643211716,0.10381437499745516 +21,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219 +22,347.0243842208858,0.0,0.0,73.3038792252507,0.10825975000261678 +23,348.0907413848161,0.0,0.0,73.52913174441076,0.10859241700018174 +24,346.1256479612438,0.0,0.0,73.11403419640622,0.10797937499955879 +25,348.0938122335487,0.0,0.0,73.52978041676593,0.10859337500005495 +26,349.7563885449727,0.0,0.0,73.88097560268639,0.10911204199874192 +27,330.1607584718866,0.0,0.0,69.74168232666726,0.10299887500150362 +28,351.14262369975336,0.0,0.0,74.1737977183195,0.10954449999917415 +29,346.8602380368698,0.0,0.0,73.26920571930842,0.10820854200210306 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..1966a1896 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..bbc70d870 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..121f2fb8f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..618048fed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ed1e59d64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1cd598f89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d446d3ea2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..73032e450 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..45e52e0e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d5fd3c8d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..af2e0b085 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e4f1c3ca4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ff38e8c09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..11c3db652 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..039401567 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..c4c5f7d6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..f4eadc050 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-22/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..bafb258b0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2919.8438339372997,1.8030529009870457,0.0,578.746591348305,0.6114040419997764 +1,2940.8832996175584,1.8160451265263318,0.0,582.9168551496465,0.6158096250001108 +2,2918.2461827418515,1.8020663243800241,0.0,578.4299185273882,0.6110694999988482 +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858 +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065 +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882 +6,2918.686534688,1.8023382491469346,0.0,578.5172013419226,0.61116170799869 +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931 +8,2928.4929091380354,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707 +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285 +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552 +11,2901.6572096881105,1.7918223532329063,0.0,575.1417934923327,0.6075958329965943 +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582 +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802 +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459 +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779 +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259 +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319 +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815 +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445 +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325 +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322 +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245 +23,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916 +24,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485 +25,2885.4168629525198,1.7817936647276187,0.0,571.9227701985892,0.6041951670013077 +26,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423 +27,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737 +28,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..205dbea5b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,340.64918730588545,0.0,0.0,71.49545654085841,0.10376129100040998 +1,359.87735697665374,0.0,0.0,75.53106507974576,0.10961816599956364 +2,357.04781740694864,0.0,0.0,74.93720127241826,0.10875629199654213 +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077007 +4,361.7094135366254,0.0,0.0,75.91557713803003,0.11017620799975703 +5,353.73252394336674,0.0,0.0,74.2413874305585,0.10774645800120197 +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035 +7,338.8384735800955,0.0,0.0,71.1154239169323,0.10320974999922328 +8,355.53448516285744,0.0,0.0,74.61958307833125,0.10829533300056937 +9,355.65390787855864,0.0,0.0,74.64464751969373,0.10833170900150435 +10,356.53813036938084,0.0,0.0,74.83022814932919,0.10860104200037313 +11,354.8124958061129,0.0,0.0,74.46805194130923,0.10807541599933757 +12,356.29587060954617,0.0,0.0,74.77938266730163,0.10852724999858765 +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865005 +14,336.2974250979103,0.0,0.0,70.58210862338031,0.10243574999913108 +15,357.04535515580596,0.0,0.0,74.9366844951115,0.10875554199810722 +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161 +17,356.4013372564373,0.0,0.0,74.80151800873296,0.10855937499945867 +18,358.36306935886296,0.0,0.0,75.21324637181236,0.10915691599802813 +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413 +20,358.2503538344796,0.0,0.0,75.18958963586425,0.10912258299867972 +21,336.7975356102561,0.0,0.0,70.68707182521217,0.10258808299840894 +22,351.84930825701434,0.0,0.0,73.84613809406216,0.10717283299891278 +23,355.9800156634005,0.0,0.0,74.71309102646735,0.10843104100058554 +24,353.9434572371491,0.0,0.0,74.28565811342115,0.10781070800294401 +25,356.2458047328008,0.0,0.0,74.76887484033942,0.10851199999888195 +26,361.92924049710956,0.0,0.0,75.96171442379344,0.11024316700058989 +27,349.61795580865146,0.0,0.0,73.37782180873364,0.10649316600029124 +28,356.15757387973906,0.0,0.0,74.75035694757553,0.10848512499796925 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..f85566b60 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..ebc34e765 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..24134fc59 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b8a8f9bee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0379cfcc5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..fbe010f87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..9003e2cae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..b319b23ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ccd38e4c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..56d51b5d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..6ba909129 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..3751561a8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3259f6367 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e465742ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c68d215fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4f7717d1e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..cd14ed7bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..ff238d4be --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2919.8438339372997,1.8030529009870457,0.0,578.746591348305,0.6114040419997764 +1,2940.8832996175584,1.8160451265263318,0.0,582.9168551496465,0.6158096250001108 +2,2918.2461827418515,1.8020663243800241,0.0,578.4299185273882,0.6110694999988482 +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858 +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065 +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882 +6,2918.686534688,1.8023382491469346,0.0,578.5172013419226,0.61116170799869 +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931 +8,2928.4929091380354,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707 +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285 +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552 +11,2901.6572096881105,1.7918223532329063,0.0,575.1417934923327,0.6075958329965943 +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582 +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802 +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459 +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779 +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259 +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319 +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815 +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445 +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325 +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322 +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245 +23,2956.03202168321,1.8253997183538984,0.0,585.9195058931133,0.6189817089980352 +24,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916 +25,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485 +26,2885.4168629525198,1.7817936647276187,0.0,571.9227701985892,0.6041951670013077 +27,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423 +28,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737 +29,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..dd32284f0 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,340.64918730588545,0.0,0.0,71.49545654085841,0.10376129100040998 +1,359.87735697665374,0.0,0.0,75.53106507974576,0.10961816599956364 +2,357.04781740694864,0.0,0.0,74.93720127241826,0.10875629199654213 +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077007 +4,361.7094135366254,0.0,0.0,75.91557713803003,0.11017620799975703 +5,353.73252394336674,0.0,0.0,74.2413874305585,0.10774645800120197 +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035 +7,338.8384735800955,0.0,0.0,71.1154239169323,0.10320974999922328 +8,355.53448516285744,0.0,0.0,74.61958307833125,0.10829533300056937 +9,355.65390787855864,0.0,0.0,74.64464751969373,0.10833170900150435 +10,356.53813036938084,0.0,0.0,74.83022814932919,0.10860104200037313 +11,354.8124958061129,0.0,0.0,74.46805194130923,0.10807541599933757 +12,356.29587060954617,0.0,0.0,74.77938266730163,0.10852724999858765 +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865005 +14,336.2974250979103,0.0,0.0,70.58210862338031,0.10243574999913108 +15,357.04535515580596,0.0,0.0,74.9366844951115,0.10875554199810722 +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161 +17,356.4013372564373,0.0,0.0,74.80151800873296,0.10855937499945867 +18,358.36306935886296,0.0,0.0,75.21324637181236,0.10915691599802813 +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413 +20,358.2503538344796,0.0,0.0,75.18958963586425,0.10912258299867972 +21,336.7975356102561,0.0,0.0,70.68707182521217,0.10258808299840894 +22,351.84930825701434,0.0,0.0,73.84613809406216,0.10717283299891278 +23,355.9800156634005,0.0,0.0,74.71309102646735,0.10843104100058554 +24,353.9434572371491,0.0,0.0,74.28565811342115,0.10781070800294401 +25,356.2458047328008,0.0,0.0,74.76887484033942,0.10851199999888195 +26,404.1946903107813,0.0,0.0,84.83238766458936,0.1231171670006006 +27,361.92924049710956,0.0,0.0,75.96171442379344,0.11024316700058989 +28,349.61795580865146,0.0,0.0,73.37782180873364,0.10649316600029124 +29,356.15757387973906,0.0,0.0,74.75035694757553,0.10848512499796925 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..80bbd595c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8891d19c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9bc23d2b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..58bbd078b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e0ae8e4b5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..987c08d8e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..79abd4587 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..8c45b602c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..65da7c634 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..143c17865 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8c9a003c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..2140e57ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..8cd26c887 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..57e38d883 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ae884c5d2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..3e9e35365 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..5f38c4841 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-23/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..862502fb9 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118 +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383 +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707 +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253 +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816 +5,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121 +6,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468 +7,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847 +8,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303 +9,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009 +10,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886 +11,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326 +12,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613 +13,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585 +14,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853 +15,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831 +16,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403 +17,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213 +18,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625 +19,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838 +20,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121 +21,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417 +22,2895.5205155003246,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469 +23,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353 +24,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964 +25,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662 +26,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742 +27,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383 +28,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..6c490d73c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219 +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.10190229099680437 +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134 +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.10755191699718125 +4,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.10922841600040556 +5,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.10559966700020595 +6,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.10721674999876996 +7,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.10877920799975982 +8,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.10891862499920535 +9,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.10874900000271737 +10,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.10892287500246312 +11,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.10839670799759915 +12,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.10760774999653222 +13,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.10833054199974868 +14,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.10909841700049583 +15,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.10837941600038903 +16,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.10770962500100723 +17,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.10801720800009207 +18,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.10869800000000396 +19,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.10924199999863049 +20,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.11059774999739602 +21,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.11047691600106191 +22,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.10822162499971455 +23,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.10768504199950257 +24,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.10830250000071828 +25,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.10828283299997565 +26,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.11027249999824562 +27,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.10922420899805729 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..57d5c7368 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..4002cf8bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..58e8e830e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..7fd143c6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..1616cdad5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2758d955b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..fbee27461 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..948c70b09 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ffa493021 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..749d94b76 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..16fadf147 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..9ac10dea1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b274ded0f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e17751e5b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..88181833b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..add0d730c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b012512f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..73ef242ec --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118 +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383 +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707 +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253 +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816 +5,2959.9483484575985,0.7817513006203682,0.0,587.2311835138305,0.6225438329965982 +6,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121 +7,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468 +8,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847 +9,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303 +10,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009 +11,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886 +12,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326 +13,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613 +14,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585 +15,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853 +16,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831 +17,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403 +18,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213 +19,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625 +20,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838 +21,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121 +22,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417 +23,2895.5205155003246,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469 +24,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353 +25,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964 +26,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662 +27,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742 +28,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383 +29,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ae99fbe2c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219 +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.10190229099680437 +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134 +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.10755191699718125 +4,407.89391497730094,0.868260994398697,0.0,86.71284800581769,0.12391516699790373 +5,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.10922841600040556 +6,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.10559966700020595 +7,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.10721674999876996 +8,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.10877920799975982 +9,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.10891862499920535 +10,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.10874900000271737 +11,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.10892287500246312 +12,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.10839670799759915 +13,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.10760774999653222 +14,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.10833054199974868 +15,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.10909841700049583 +16,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.10837941600038903 +17,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.10770962500100723 +18,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.10801720800009207 +19,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.10869800000000396 +20,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.10924199999863049 +21,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.11059774999739602 +22,405.95769621965013,0.8641394736744057,0.0,86.30123352304825,0.12332695800068905 +23,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.11047691600106191 +24,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.10822162499971455 +25,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.10768504199950257 +26,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.10830250000071828 +27,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.10828283299997565 +28,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.11027249999824562 +29,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.10922420899805729 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5247f03cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..2cbd0e8c9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..ccf27168b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..54f3d82d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d95719b49 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..096854c54 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..2854b91fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..ca8a2e195 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1a8c8955d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..61986f0f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..f8f4d2934 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..fa034593e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..07de7fc41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a50a969c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..cdb83ffdd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..32b982650 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..8493bd4af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-24/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..77a0efa3e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265 +1,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777 +2,2883.2836595675476,1.7243924493946021,0.0,574.8527521202967,0.6075725420014351 +3,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583 +4,2895.5215166664366,1.7317114893746157,0.0,577.2926666982493,0.6101513329995214 +5,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914 +6,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713 +7,2892.0002968654867,1.7296055693354033,0.0,576.590625854408,0.6094093330029864 +8,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046 +9,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127 +10,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929 +11,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064 +12,2929.8105051102402,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686 +13,2896.032852824472,1.7320173018835903,0.0,577.3946140029238,0.6102590829977999 +14,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724 +15,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483 +16,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001 +17,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563 +18,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858 +19,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492 +20,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169 +21,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306 +22,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008 +23,2892.911846698592,1.7301507358313317,0.0,576.7723654930026,0.6096014169997943 +24,2888.988239731408,1.7278041619151119,0.0,575.9900989768936,0.6087746250013879 +25,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271 +26,2895.1272397065154,1.7314756859321059,0.0,577.2140579929434,0.6100682500000403 +27,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418 +28,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1629e5486 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.10932287499963422 +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.10890700000163633 +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.10542133299895795 +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395 +4,354.3888189098163,0.9011582323003429,0.0,81.1376171378568,0.10931225000240374 +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214 +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.10274266600026749 +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695 +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098 +9,369.50214862006317,0.9395891893710402,0.0,84.59782664299996,0.11397399999987101 +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.10955470800035982 +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.11153479200220318 +12,362.82933028042595,0.9226212015041911,0.0,83.07007929098847,0.11191574999975273 +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.10916904199984856 +14,356.00332808847406,0.9052636898087021,0.0,81.50726036759092,0.10981025000000955 +15,355.7832782663517,0.9047041357309753,0.0,81.4568797763704,0.1097423749997688 +16,359.8954688249249,0.9151608267350699,0.0,82.39836925159092,0.11101079199943342 +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.10941316699972958 +18,355.96537090717135,0.9051671703233779,0.0,81.49857003911599,0.10979854199831607 +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.10927558300318196 +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574 +21,354.52849339615904,0.9015134038139285,0.0,81.16959572858,0.10935533299925737 +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.10823066599914455 +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.10683900000003632 +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.10688999999911175 +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.10858862500026589 +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.10922387500249897 +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.10912100000132341 +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.10811108399866498 +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..ab4e70e31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..87f2382ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..eb939510c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..940984ec6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..9e09aca67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..2d0918003 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ac7155df5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..6d4f72c9d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..964ddd1ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..c7b941d22 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..cd88f0fb6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..eea4e443c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..3ddea1dc0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..948cbcb58 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..468e498d4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4fe822458 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..991d5e2e1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..82b6f2f48 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2966.6029811713843,1.7742228601436734,0.0,591.4644861652034,0.6251297919989156 +1,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265 +2,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777 +3,2883.2836595675476,1.7243924493946021,0.0,574.8527521202967,0.6075725420014351 +4,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583 +5,2895.5215166664366,1.7317114893746157,0.0,577.2926666982493,0.6101513329995214 +6,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914 +7,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713 +8,2892.0002968654867,1.7296055693354033,0.0,576.590625854408,0.6094093330029864 +9,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046 +10,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127 +11,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929 +12,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064 +13,2929.8105051102402,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686 +14,2896.032852824472,1.7320173018835903,0.0,577.3946140029238,0.6102590829977999 +15,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724 +16,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483 +17,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001 +18,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563 +19,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858 +20,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492 +21,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169 +22,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306 +23,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008 +24,2892.911846698592,1.7301507358313317,0.0,576.7723654930026,0.6096014169997943 +25,2888.988239731408,1.7278041619151119,0.0,575.9900989768936,0.6087746250013879 +26,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271 +27,2895.1272397065154,1.7314756859321059,0.0,577.2140579929434,0.6100682500000403 +28,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418 +29,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..1629e5486 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.10932287499963422 +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.10890700000163633 +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.10542133299895795 +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395 +4,354.3888189098163,0.9011582323003429,0.0,81.1376171378568,0.10931225000240374 +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214 +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.10274266600026749 +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695 +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098 +9,369.50214862006317,0.9395891893710402,0.0,84.59782664299996,0.11397399999987101 +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.10955470800035982 +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.11153479200220318 +12,362.82933028042595,0.9226212015041911,0.0,83.07007929098847,0.11191574999975273 +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.10916904199984856 +14,356.00332808847406,0.9052636898087021,0.0,81.50726036759092,0.10981025000000955 +15,355.7832782663517,0.9047041357309753,0.0,81.4568797763704,0.1097423749997688 +16,359.8954688249249,0.9151608267350699,0.0,82.39836925159092,0.11101079199943342 +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.10941316699972958 +18,355.96537090717135,0.9051671703233779,0.0,81.49857003911599,0.10979854199831607 +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.10927558300318196 +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574 +21,354.52849339615904,0.9015134038139285,0.0,81.16959572858,0.10935533299925737 +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.10823066599914455 +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.10683900000003632 +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.10688999999911175 +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.10858862500026589 +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.10922387500249897 +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.10912100000132341 +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.10811108399866498 +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..64e2f7680 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9fa011970 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..4edcae129 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..3ae0dc958 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3a766870b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..4d6c5a271 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3e0c4d480 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..382d61979 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..5577807b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..44e324c2f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..7bf0d2bc4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..6403151ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..2000a3a25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..63832e4b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ceea590c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..b19ac9044 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..fcedc8d7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-25/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..94d08b5e1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2896.950584654971,1.6352434555749373,0.0,578.7093216964283,0.6113373329972092 +1,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016 +2,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356 +3,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268 +4,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356 +5,2884.3136286717026,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567 +6,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811 +7,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459 +8,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387 +9,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671 +10,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383 +11,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422 +12,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622 +13,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879 +14,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377 +15,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079 +16,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865 +17,2895.925838535033,1.6346650165103807,0.0,578.5046132919696,0.6111210829985794 +18,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398 +19,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964 +20,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497 +21,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405 +22,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144 +23,2894.0532612962406,1.6336080016993537,0.0,578.1305379075203,0.61072591699849 +24,2894.1069651130647,1.6336383159254457,0.0,578.1412660502684,0.610737250000966 +25,2887.702792283546,1.6300233485996953,0.0,576.8619364911697,0.6093857910018414 +26,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123 +27,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185 +28,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..a963a661f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,351.7954310298514,0.0,0.0,73.25457676290097,0.10864883400063263 +1,355.551001689785,0.0,0.0,74.0366015276662,0.10980870799903641 +2,353.76569761686557,0.0,0.0,73.6648465737376,0.10925733299882268 +3,351.52425260491015,0.0,0.0,73.19810911439244,0.10856508299912093 +4,352.8167204788052,0.0,0.0,73.46724048657845,0.10896425000100862 +5,351.8967485585963,0.0,0.0,73.27567417358975,0.10868012500213808 +6,333.8565823831006,0.0,0.0,69.51915938870556,0.10310858299999381 +7,354.3529740261682,0.0,0.0,73.78713549795803,0.10943870800110744 +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363 +9,354.08719643537285,0.0,0.0,73.73179246843152,0.10935662499832688 +10,352.01722479777135,0.0,0.0,73.30076101421447,0.10871733299791231 +11,352.19504125685603,0.0,0.0,73.33778784373752,0.10877225000149338 +12,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644 +13,353.63739856928817,0.0,0.0,73.63813078495703,0.10921770899949479 +14,349.80761818700586,0.0,0.0,72.84065328453109,0.10803491600017878 +15,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222 +16,343.3340886156128,0.0,0.0,71.49266628104358,0.10603562499818509 +17,352.7287560959643,0.0,0.0,73.44892360959012,0.10893708299772698 +18,352.0274792749238,0.0,0.0,73.30289631023446,0.10872050000034506 +19,330.632971611579,0.0,0.0,68.84790495534112,0.10211299999718904 +20,344.06923077621286,0.0,0.0,71.64574538067167,0.10626266699910047 +21,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678 +22,353.40008547212716,0.0,0.0,73.58871493426808,0.10914441699787858 +23,352.96917436413725,0.0,0.0,73.49898605192921,0.10901133400329854 +24,351.45126682709304,0.0,0.0,73.18291124144665,0.10854254200239666 +25,352.4323511146662,0.0,0.0,73.38720301989446,0.10884554100266541 +26,336.2224182777831,0.0,0.0,70.01179883728538,0.10383924999769079 +27,350.4310523596511,0.0,0.0,72.97047136182381,0.10822745800032862 +28,349.8513332379995,0.0,0.0,72.84975609621154,0.10804841699791723 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..249bf394b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..eed9b784a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..9a7f18e35 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..16170faee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e97c9281d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..35ca74063 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..1eb2d5e2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a3a09c946 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..0c9ef7ee0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4ec8e4eea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ca1b37f3d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c8eb3ed77 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..b04c33f53 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b015ad66c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ba73dfc99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..bee999b62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..f7fe63d06 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..aa494a099 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2862.093422249503,1.6155676119463367,0.0,571.7460807910495,0.6039815000003728 +1,2896.950584654971,1.6352434555749373,0.0,578.7093216964283,0.6113373329972092 +2,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016 +3,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356 +4,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268 +5,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356 +6,2884.3136286717026,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567 +7,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811 +8,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459 +9,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387 +10,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671 +11,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383 +12,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422 +13,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622 +14,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879 +15,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377 +16,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079 +17,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865 +18,2895.925838535033,1.6346650165103807,0.0,578.5046132919696,0.6111210829985794 +19,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398 +20,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964 +21,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497 +22,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405 +23,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144 +24,2894.0532612962406,1.6336080016993537,0.0,578.1305379075203,0.61072591699849 +25,2894.1069651130647,1.6336383159254457,0.0,578.1412660502684,0.610737250000966 +26,2887.702792283546,1.6300233485996953,0.0,576.8619364911697,0.6093857910018414 +27,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123 +28,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185 +29,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..d576e8dce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,351.7954310298514,0.0,0.0,73.25457676290097,0.10864883400063263 +1,355.551001689785,0.0,0.0,74.0366015276662,0.10980870799903641 +2,353.76569761686557,0.0,0.0,73.6648465737376,0.10925733299882268 +3,351.52425260491015,0.0,0.0,73.19810911439244,0.10856508299912093 +4,352.8167204788052,0.0,0.0,73.46724048657845,0.10896425000100862 +5,351.8967485585963,0.0,0.0,73.27567417358975,0.10868012500213808 +6,333.8565823831006,0.0,0.0,69.51915938870556,0.10310858299999381 +7,354.3529740261682,0.0,0.0,73.78713549795803,0.10943870800110744 +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363 +9,354.08719643537285,0.0,0.0,73.73179246843152,0.10935662499832688 +10,352.01722479777135,0.0,0.0,73.30076101421447,0.10871733299791231 +11,352.19504125685603,0.0,0.0,73.33778784373752,0.10877225000149338 +12,404.253122170483,0.0,0.0,84.17787372334351,0.12484991699966486 +13,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644 +14,353.63739856928817,0.0,0.0,73.63813078495703,0.10921770899949479 +15,349.80761818700586,0.0,0.0,72.84065328453109,0.10803491600017878 +16,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222 +17,343.3340886156128,0.0,0.0,71.49266628104358,0.10603562499818509 +18,352.7287560959643,0.0,0.0,73.44892360959012,0.10893708299772698 +19,352.0274792749238,0.0,0.0,73.30289631023446,0.10872050000034506 +20,330.632971611579,0.0,0.0,68.84790495534112,0.10211299999718904 +21,344.06923077621286,0.0,0.0,71.64574538067167,0.10626266699910047 +22,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678 +23,353.40008547212716,0.0,0.0,73.58871493426808,0.10914441699787858 +24,352.96917436413725,0.0,0.0,73.49898605192921,0.10901133400329854 +25,351.45126682709304,0.0,0.0,73.18291124144665,0.10854254200239666 +26,352.4323511146662,0.0,0.0,73.38720301989446,0.10884554100266541 +27,336.2224182777831,0.0,0.0,70.01179883728538,0.10383924999769079 +28,350.4310523596511,0.0,0.0,72.97047136182381,0.10822745800032862 +29,349.8513332379995,0.0,0.0,72.84975609621154,0.10804841699791723 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..aac49ba85 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..259874464 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..6a4101248 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..482f1ae30 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..4726c6dbd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..8ac811a39 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..468181077 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..a879b7c31 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..9c703ca44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3480cf84c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..b3e67cc43 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..c22183081 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..78772b466 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..cc7143628 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..5e22964fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f1ba871cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..541b8a236 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-26/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..14975da1d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/csv/history_with_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2961.1375400963516,2.5333369323380994,0.0,582.5008275343196,0.6103282920012134 +1,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373 +2,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715 +3,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253 +4,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257 +5,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351 +6,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131 +7,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213 +8,2955.9057733062214,2.528861007849166,0.0,581.4716593705813,0.6092499580008734 +9,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297 +10,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951 +11,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527 +12,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587 +13,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875 +14,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105 +15,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127 +16,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394 +17,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971 +18,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966 +19,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951 +20,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086 +21,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334 +22,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168 +23,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722 +24,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954 +25,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092 +26,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243 +27,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..88ae66d73 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,372.78332559546203,0.9128559578339811,0.0,76.71370993797419,0.10988337500020862 +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.10834533399975044 +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.10779175000061514 +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.11252416700153844 +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.10643391699704807 +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.10898400000223774 +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.10797279100006563 +7,368.7968106124073,0.9030939494408667,0.0,75.89333967708617,0.10870829100167612 +8,370.33730700638563,0.9068662515120998,0.0,76.21035276596128,0.10916237499986892 +9,368.9456615170731,0.9034584492074165,0.0,75.9239711574677,0.10875216699787416 +10,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.10808258299948648 +11,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496 +12,368.16721356507986,0.9015522189603805,0.0,75.76377721559642,0.10852270800023689 +13,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.10607912500199745 +14,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.10526116700202692 +15,368.1332915981502,0.9014691522900469,0.0,75.75679653874505,0.10851270900093368 +16,369.6513056658199,0.9051864005965117,0.0,76.0691830723513,0.1089601660023618 +17,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.10873125000216532 +18,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.10877350000009756 +19,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.10813187500025379 +20,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.10911487500197836 +21,370.9635115163816,0.9083996744914115,0.0,76.33921708966713,0.10934695800096961 +22,367.17659299752444,0.8991264294334446,0.0,75.55992105127724,0.10823070799960988 +23,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.11001100000066799 +24,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.10754966600143234 +25,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.10731679099990288 +26,371.7753182833393,0.9103875923861927,0.0,76.50627581941745,0.10958625000057509 +27,369.53200373193727,0.9048942590932619,0.0,76.04463236602264,0.10892500000045402 +28,367.425238752588,0.8997353025866021,0.0,75.611088947,0.10830399999758811 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..120713615 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ac571ca32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..cadc04adc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..788fda62f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5f22250b3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..6fdd7a034 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9cca98533 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..eeb7ed914 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..51d88f7ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..a43f70b93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..aaf6861cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..05f73ecba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..136ee1571 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..7240f09ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..528d02d0e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..bd89634f0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..100bd415a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..700a28a66 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..04b4cdaef --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3011.160313901874,2.5761328304088797,0.0,592.341068570989,0.6206386250014475 +1,2961.1375400963516,2.5333369323380994,0.0,582.5008275343196,0.6103282920012134 +2,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373 +3,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715 +4,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253 +5,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257 +6,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351 +7,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131 +8,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213 +9,2955.9057733062214,2.528861007849166,0.0,581.4716593705813,0.6092499580008734 +10,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297 +11,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951 +12,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527 +13,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587 +14,3009.9004890583597,2.575055014616423,0.0,592.0932418476579,0.620378958999936 +15,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875 +16,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105 +17,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127 +18,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394 +19,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971 +20,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966 +21,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951 +22,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086 +23,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334 +24,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168 +25,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722 +26,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954 +27,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092 +28,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243 +29,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ef360ac7e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,372.78332559546203,0.9128559578339811,0.0,76.71370993797419,0.10988337500020862 +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.10834533399975044 +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.10779175000061514 +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.11252416700153844 +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.10643391699704807 +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.10898400000223774 +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.10797279100006563 +7,349.09480260671245,0.8548485099203007,0.0,71.83893588922824,0.10290083400104777 +8,368.7968106124073,0.9030939494408667,0.0,75.89333967708617,0.10870829100167612 +9,370.33730700638563,0.9068662515120998,0.0,76.21035276596128,0.10916237499986892 +10,368.9456615170731,0.9034584492074165,0.0,75.9239711574677,0.10875216699787416 +11,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.10808258299948648 +12,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496 +13,368.16721356507986,0.9015522189603805,0.0,75.76377721559642,0.10852270800023689 +14,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.10607912500199745 +15,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.10526116700202692 +16,368.1332915981502,0.9014691522900469,0.0,75.75679653874505,0.10851270900093368 +17,369.6513056658199,0.9051864005965117,0.0,76.0691830723513,0.1089601660023618 +18,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.10873125000216532 +19,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.10877350000009756 +20,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.10813187500025379 +21,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.10911487500197836 +22,370.9635115163816,0.9083996744914115,0.0,76.33921708966713,0.10934695800096961 +23,367.17659299752444,0.8991264294334446,0.0,75.55992105127724,0.10823070799960988 +24,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.11001100000066799 +25,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.10754966600143234 +26,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.10731679099990288 +27,371.7753182833393,0.9103875923861927,0.0,76.50627581941745,0.10958625000057509 +28,369.53200373193727,0.9048942590932619,0.0,76.04463236602264,0.10892500000045402 +29,367.425238752588,0.8997353025866021,0.0,75.611088947,0.10830399999758811 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..4d009120a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f5ba7d20a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..bc99b8663 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..30e3799ec Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..71a0cb30c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..1885469a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ea551d232 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e49bb1a38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..82c833d47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..2e7ea2191 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e6a08355f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5008a5ee0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..eaf13c7c2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..82b49c0b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..eefb0d95b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ce585340a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..c19fac219 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-27/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..961e569ad --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902 +1,2891.2179356716797,1.8025049474262342,0.0,577.6694559288594,0.610794749998604 +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615 +3,2890.2822721394496,1.8019216160470386,0.0,577.4825090242601,0.6105970829994476 +4,2888.0888706578953,1.8005541587642737,0.0,577.044264288417,0.6101337079999212 +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195 +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254 +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625 +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879 +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803 +10,2881.3932863129066,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755 +11,2888.1411383469012,1.8005867446052999,0.0,577.0547074470245,0.6101447500004724 +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915 +13,2877.2999624761123,1.7938279067806187,0.0,574.8886250878775,0.607854458001384 +14,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717 +15,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456 +16,2905.0457729249874,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403 +17,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848 +18,2891.0660697041267,1.8024102678953406,0.0,577.6391128925327,0.6107626670018362 +19,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701 +20,2882.5419588773198,1.797095984337481,0.0,575.9359834248971,0.6089618749974761 +21,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447 +22,2878.6081930255414,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499 +23,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453 +24,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866 +25,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225 +26,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195 +27,2882.0064778239716,1.7967621432817777,0.0,575.828993548786,0.6088487500019255 +28,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..1ea87f05f --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,363.8555760220334,0.0,0.0,75.37472069721154,0.11185816699799034 +1,356.073044172833,0.0,0.0,73.76252563107049,0.10946562499884749 +2,354.0995230742944,0.0,0.0,73.353699680899,0.10885891599900788 +3,352.099036026975,0.0,0.0,72.93928758338875,0.10824391700225533 +4,352.917119453682,0.0,0.0,73.10875814769673,0.10849541599964141 +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692 +6,352.16463583615,0.0,0.0,72.9528769513144,0.10826408399952925 +7,337.48447844835925,0.0,0.0,69.91180011804681,0.10375104199920315 +8,355.01452131885316,0.0,0.0,73.54324669258992,0.10914020899872412 +9,352.03099657689336,0.0,0.0,72.92519283018375,0.10822299999927054 +10,352.0968663843558,0.0,0.0,72.938838129767,0.10824325000066892 +11,352.44085313693654,0.0,0.0,73.01009691239383,0.10834900000190828 +12,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927 +13,333.25363011232423,0.0,0.0,69.0353561862886,0.10245037500135368 +14,352.36373178750216,0.0,0.0,72.99412079286597,0.10832529099934618 +15,352.425535562288,0.0,0.0,73.00692379100454,0.10834429100214038 +16,351.4065898823191,0.0,0.0,72.7958434858105,0.10803104200022062 +17,352.9674049543168,0.0,0.0,73.1191750708257,0.10851087500122958 +18,352.3824388133895,0.0,0.0,72.99799605806528,0.10833104199991794 +19,359.6312333359141,0.0,0.0,74.49962444727453,0.11055949999717996 +20,334.32625072049933,0.0,0.0,69.25755555351878,0.10278012499838951 +21,349.209436738063,0.0,0.0,72.34069090470156,0.10735558300075354 +22,356.1634468203862,0.0,0.0,73.7812530458984,0.10949341699961224 +23,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359 +24,354.11606046939625,0.0,0.0,73.35712549492798,0.10886400000163121 +25,351.1624910291874,0.0,0.0,72.7452770410731,0.10795599999983096 +26,354.5463838131862,0.0,0.0,73.44626938603518,0.10899629199775518 +27,397.0313202491415,0.0,0.0,82.24726194662468,0.12205720799829578 +28,355.7000551949418,0.0,0.0,73.68525887501565,0.10935095899912994 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3cc18ffdc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..e8aca489c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8038f2a0c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..459e89e4c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..8e51e19f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..223c049cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0794294fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..29b3af561 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..e69c960b2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8d5e5dd67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..0bb2637cd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..0404fd40f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..1d8f39e7e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..94781baeb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..e2c252d07 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..ac84ec85b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4e94e40b9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6ec8f8910 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..9967a3108 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902 +1,2891.2179356716797,1.8025049474262342,0.0,577.6694559288594,0.610794749998604 +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615 +3,2890.2822721394496,1.8019216160470386,0.0,577.4825090242601,0.6105970829994476 +4,2888.0888706578953,1.8005541587642737,0.0,577.044264288417,0.6101337079999212 +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195 +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254 +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625 +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879 +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803 +10,2881.3932863129066,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755 +11,2888.1411383469012,1.8005867446052999,0.0,577.0547074470245,0.6101447500004724 +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915 +13,2877.2999624761123,1.7938279067806187,0.0,574.8886250878775,0.607854458001384 +14,2922.8568793298064,1.8222299746445179,0.0,583.9909618740375,0.6174787499985541 +15,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717 +16,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456 +17,2905.0457729249874,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403 +18,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848 +19,2891.0660697041267,1.8024102678953406,0.0,577.6391128925327,0.6107626670018362 +20,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701 +21,2882.5419588773198,1.797095984337481,0.0,575.9359834248971,0.6089618749974761 +22,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447 +23,2878.6081930255414,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499 +24,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453 +25,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866 +26,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225 +27,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195 +28,2882.0064778239716,1.7967621432817777,0.0,575.828993548786,0.6088487500019255 +29,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..a15cec736 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,363.8555760220334,0.0,0.0,75.37472069721154,0.11185816699799034 +1,356.073044172833,0.0,0.0,73.76252563107049,0.10946562499884749 +2,354.0995230742944,0.0,0.0,73.353699680899,0.10885891599900788 +3,352.099036026975,0.0,0.0,72.93928758338875,0.10824391700225533 +4,352.917119453682,0.0,0.0,73.10875814769673,0.10849541599964141 +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692 +6,352.16463583615,0.0,0.0,72.9528769513144,0.10826408399952925 +7,337.48447844835925,0.0,0.0,69.91180011804681,0.10375104199920315 +8,405.16068508681326,0.0,0.0,83.93130540910039,0.12455637500170269 +9,355.01452131885316,0.0,0.0,73.54324669258992,0.10914020899872412 +10,352.03099657689336,0.0,0.0,72.92519283018375,0.10822299999927054 +11,352.0968663843558,0.0,0.0,72.938838129767,0.10824325000066892 +12,352.44085313693654,0.0,0.0,73.01009691239383,0.10834900000190828 +13,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927 +14,333.25363011232423,0.0,0.0,69.0353561862886,0.10245037500135368 +15,352.36373178750216,0.0,0.0,72.99412079286597,0.10832529099934618 +16,352.425535562288,0.0,0.0,73.00692379100454,0.10834429100214038 +17,351.4065898823191,0.0,0.0,72.7958434858105,0.10803104200022062 +18,352.9674049543168,0.0,0.0,73.1191750708257,0.10851087500122958 +19,352.3824388133895,0.0,0.0,72.99799605806528,0.10833104199991794 +20,359.6312333359141,0.0,0.0,74.49962444727453,0.11055949999717996 +21,334.32625072049933,0.0,0.0,69.25755555351878,0.10278012499838951 +22,349.209436738063,0.0,0.0,72.34069090470156,0.10735558300075354 +23,356.1634468203862,0.0,0.0,73.7812530458984,0.10949341699961224 +24,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359 +25,354.11606046939625,0.0,0.0,73.35712549492798,0.10886400000163121 +26,351.1624910291874,0.0,0.0,72.7452770410731,0.10795599999983096 +27,354.5463838131862,0.0,0.0,73.44626938603518,0.10899629199775518 +28,397.0313202491415,0.0,0.0,82.24726194662468,0.12205720799829578 +29,355.7000551949418,0.0,0.0,73.68525887501565,0.10935095899912994 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..019dd54b4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..528b057b8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..f72ff9e5e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4210f2203 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..e8084bc73 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c6cfae33d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..235769394 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..369eeb3ca Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e35d5c640 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..42e83bdc4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..d86d0af1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..e36cceb2b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..f83c0116d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7543900ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..6ff3646a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..98f814cab Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..a286b11e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-28/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..6580ef025 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2916.2755902573767,2.7782022839754634,0.0,582.3513655012664,0.6122291249994305 +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344 +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462 +3,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494 +4,2910.084396408831,2.7723042169518846,0.0,581.1150453798662,0.6109293750014331 +5,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939 +6,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087 +7,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651 +8,2915.6827503916365,2.7776375125682162,0.0,582.2329812489377,0.6121046669977659 +9,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618 +10,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109 +11,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725 +12,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288 +13,2910.2336471623094,2.772446401313879,0.0,581.1448492778177,0.6109607079997659 +14,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568 +15,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962 +16,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443 +17,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258 +18,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842 +19,2907.4732725986682,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353 +20,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615 +21,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745 +22,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742 +23,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454 +24,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221 +25,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285 +26,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206 +27,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614 +28,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..39b6b5f40 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/csv/history_without_smell.csv @@ -0,0 +1,29 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,357.96048293355267,0.0,0.0,74.32044363142623,0.11033887500161654 +1,336.02149904696915,0.0,0.0,69.76542962007161,0.10357633300009184 +2,351.0183178122401,0.0,0.0,72.87909796290356,0.10819899999842164 +3,347.93106372332824,0.0,0.0,72.23811633384071,0.10724737500277115 +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292 +5,350.19713174353114,0.0,0.0,72.70860173262069,0.10794587499913177 +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659 +7,355.219004525288,0.0,0.0,73.75125261391933,0.10949383299885085 +8,332.0804839475747,0.0,0.0,68.94718848869086,0.10236154200174497 +9,347.71262254057837,0.0,0.0,72.19276315553373,0.10718004199952702 +10,347.69072425564144,0.0,0.0,72.18821659151654,0.10717329200269887 +11,349.79985125658436,0.0,0.0,72.6261175941649,0.10782341600133805 +12,352.3465418754639,0.0,0.0,73.1548663963679,0.10860841599787818 +13,350.4592364960211,0.0,0.0,72.76302042521861,0.10802666699964902 +14,352.43184142678575,0.0,0.0,73.17257645319833,0.10863470900221728 +15,333.343418635852,0.0,0.0,69.20940141661261,0.10275083299711696 +16,352.97632387457793,0.0,0.0,73.28562294575474,0.10880254199946648 +17,350.7025476533563,0.0,0.0,72.81353715546054,0.10810166600276716 +18,350.1848297681744,0.0,0.0,72.70604757284707,0.10794208299921593 +19,350.68254396824653,0.0,0.0,72.80938395190176,0.10809550000340096 +20,353.57487727944215,0.0,0.0,73.40989575436771,0.10898704200008069 +21,350.58089369750513,0.0,0.0,72.78827912727185,0.10806416700143018 +22,354.39984608014447,0.0,0.0,73.58117736273917,0.10924133300068206 +23,350.82717976651696,0.0,0.0,72.83941351439523,0.10814008300076239 +24,349.56127013115605,0.0,0.0,72.57658292224077,0.10774987499826238 +25,357.78056653953445,0.0,0.0,74.28308904381807,0.11028341700148303 +26,363.9649435656808,0.0,0.0,75.56710129120493,0.11218970899790293 +27,352.905762706687,0.0,0.0,73.27097290042619,0.10878079200119828 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..eef358607 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..cb8cb8194 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..054db8af9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..66a3158fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..e1ab2aa38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ae1d507ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..7d20eae32 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3b5c0f8af Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..af25808a0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..dad0e59a4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b24f9e71e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..4919c6cfc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..7b9a67df4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..1784fecba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9981eddd0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..18cf50da4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..cccca9f2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..b9061420e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..99de05652 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2916.2755902573767,2.7782022839754634,0.0,582.3513655012664,0.6122291249994305 +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344 +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462 +3,2936.678307023689,2.7976390184558526,0.0,586.4255860613846,0.6165123750033672 +4,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494 +5,2910.084396408831,2.7723042169518846,0.0,581.1150453798662,0.6109293750014331 +6,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939 +7,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087 +8,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651 +9,2915.6827503916365,2.7776375125682162,0.0,582.2329812489377,0.6121046669977659 +10,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618 +11,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109 +12,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725 +13,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288 +14,2910.2336471623094,2.772446401313879,0.0,581.1448492778177,0.6109607079997659 +15,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568 +16,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962 +17,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443 +18,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258 +19,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842 +20,2907.4732725986682,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353 +21,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615 +22,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745 +23,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742 +24,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454 +25,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221 +26,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285 +27,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206 +28,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614 +29,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..80f5a8f7c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,357.96048293355267,0.0,0.0,74.32044363142623,0.11033887500161654 +1,336.02149904696915,0.0,0.0,69.76542962007161,0.10357633300009184 +2,351.0183178122401,0.0,0.0,72.87909796290356,0.10819899999842164 +3,347.93106372332824,0.0,0.0,72.23811633384071,0.10724737500277115 +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292 +5,350.19713174353114,0.0,0.0,72.70860173262069,0.10794587499913177 +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659 +7,355.219004525288,0.0,0.0,73.75125261391933,0.10949383299885085 +8,332.0804839475747,0.0,0.0,68.94718848869086,0.10236154200174497 +9,347.71262254057837,0.0,0.0,72.19276315553373,0.10718004199952702 +10,347.69072425564144,0.0,0.0,72.18821659151654,0.10717329200269887 +11,349.79985125658436,0.0,0.0,72.6261175941649,0.10782341600133805 +12,352.3465418754639,0.0,0.0,73.1548663963679,0.10860841599787818 +13,350.4592364960211,0.0,0.0,72.76302042521861,0.10802666699964902 +14,352.43184142678575,0.0,0.0,73.17257645319833,0.10863470900221728 +15,333.343418635852,0.0,0.0,69.20940141661261,0.10275083299711696 +16,396.51608139567725,0.0,0.0,82.32543110573395,0.12222337500134017 +17,352.97632387457793,0.0,0.0,73.28562294575474,0.10880254199946648 +18,350.7025476533563,0.0,0.0,72.81353715546054,0.10810166600276716 +19,350.1848297681744,0.0,0.0,72.70604757284707,0.10794208299921593 +20,350.68254396824653,0.0,0.0,72.80938395190176,0.10809550000340096 +21,353.57487727944215,0.0,0.0,73.40989575436771,0.10898704200008069 +22,350.58089369750513,0.0,0.0,72.78827912727185,0.10806416700143018 +23,354.39984608014447,0.0,0.0,73.58117736273917,0.10924133300068206 +24,350.82717976651696,0.0,0.0,72.83941351439523,0.10814008300076239 +25,349.56127013115605,0.0,0.0,72.57658292224077,0.10774987499826238 +26,399.81461348479326,0.0,0.0,83.01027867937269,0.12324012499811943 +27,357.78056653953445,0.0,0.0,74.28308904381807,0.11028341700148303 +28,363.9649435656808,0.0,0.0,75.56710129120493,0.11218970899790293 +29,352.905762706687,0.0,0.0,73.27097290042619,0.10878079200119828 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..326b98886 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9d9d1161e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..16e4f48d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b3a1f5c3c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..46607f7d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c4a9caae0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ca3ad1fa5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1a06fe64e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e001bffc6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..40615e380 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..8fe30f246 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..8b3481b5d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..452010154 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..44e978ee2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..ee91d1740 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..abbc50b41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..bd5a641e9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-29/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..c30919880 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3918.98590650998,5.811744006176802,104.04357804161343,658.8981264933894,0.6259630829990783 +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426 +2,3895.8175551975046,5.777386003855434,103.42849081614757,655.0028373451503,0.622262500000943 +3,3895.0135710260492,5.776193718325202,103.40714616427015,654.8676636862141,0.6221340830015833 +4,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738 +5,3919.6338920882686,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375 +6,3916.25597151212,5.807695590658208,103.97110209712827,658.4391432006579,0.6255270420006127 +7,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078 +8,3902.0378535018804,5.786610528324133,103.59363100994067,656.0486545531619,0.6232560420030495 +9,3910.6476595872386,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752 +10,3934.942942332293,5.835407833888616,104.46721495725883,661.5809789604639,0.6285118330015393 +11,3885.9065565334267,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964 +12,3895.060006851172,5.776262581325674,103.40837897028433,654.8754709299515,0.6221414999999979 +13,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226 +14,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504 +15,3888.3659841602007,5.766335537141401,103.23066205859463,653.7500065585541,0.6210722920004628 +16,3914.404354325165,5.804949695331016,103.92194425836847,658.1278312631894,0.625231291000091 +17,3953.7128740835365,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388 +18,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325 +19,3938.661296366054,5.840922046566098,104.56593204053675,662.2061449000541,0.6291057500020543 +20,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758 +21,3916.1808364849194,5.807584167561926,103.96910736755977,658.4265107672076,0.6255150409997441 +22,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244 +23,3892.1059815168164,5.771881846247623,103.32995374173187,654.3788113846371,0.6216696659976151 +24,3870.0916956217825,5.7392352899310515,102.74550533411049,650.6775549682176,0.618153416999121 +25,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036 +26,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518 +27,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333 +28,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..711c01743 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.11254741599987028 +1,531.6083156995155,0.45984037193655963,20.10159340179818,95.84387180792008,0.1101422920000914 +2,539.1055697078513,0.46632548507321087,20.38508549034322,97.19555467454495,0.11169562500072061 +3,559.2132189145998,0.48371857057796713,21.145411799551134,100.82077063903628,0.11586166699999012 +4,539.8532858167908,0.46697225835249134,20.41335872226605,97.33036070518355,0.11185054200177547 +5,543.1984920844951,0.46986585660691577,20.53985030310232,97.93346925564144,0.1125436250003986 +6,539.2855617453997,0.46648117790766735,20.391891491392315,97.22800550961237,0.11173291699742549 +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.11057104199790047 +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358163,0.1126799999983632 +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.11017412500223145 +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.46186700148841,0.1120016669992765 +11,540.2482576395201,0.4673139083690628,20.428293708704746,97.4015703300661,0.11193237499901443 +12,536.8670548817402,0.46438917320632456,20.300441000162188,96.79197195828965,0.1112318339983176 +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.11164929200094775 +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.10904595800093375 +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541891,0.11143791599897668 +16,548.9821147845478,0.47486868130884574,20.75854521150097,98.97620086137228,0.1137419160004356 +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697709,0.11349562500254251 +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.11208291600269149 +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.11148666699955356 +20,532.0847357354425,0.46025247453173895,20.119608172387444,95.9297657631153,0.11024100000213366 +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.10815120799816214 +22,554.8095819519035,0.47990943140726905,20.978898001517763,100.02683720331508,0.11494929100081208 +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018737,0.11161495800115517 +24,545.6371112170256,0.47197525838976573,20.632061295324043,98.37312885580974,0.1130488749986398 +25,531.4940855078803,0.45974156299723967,20.097274039593618,95.82327720185323,0.11011862499799463 +26,539.73040643437,0.46686596787650175,20.408712310029934,97.30820673311658,0.11182508300043992 +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.11070587499852991 +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.11254208299942547 +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.11221795899837161 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..a0c7e0c75 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..05ec0ef9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..9652c005d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..176f79fb8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..fed8c77fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..08944afb5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..a7c2867f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..c5e4ff8fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..40853b9f4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..9b4fdfd13 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..ed8bc654c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..dc5009409 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..33ec620ae Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..5b3369387 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e81a98dcb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..b1f1ad45d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..fece15a6b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..3da3a275d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..771e6f797 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..a99117141 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..d02332640 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3918.98590650998,5.811744006176802,104.04357804161343,658.8981264933894,0.6259630829990783 +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426 +2,3895.8175551975046,5.777386003855434,103.42849081614757,655.0028373451503,0.622262500000943 +3,3895.0135710260492,5.776193718325202,103.40714616427015,654.8676636862141,0.6221340830015833 +4,3989.9385038992486,5.916964678676485,105.9272699659612,670.8273690589139,0.6372960420012532 +5,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738 +6,3919.6338920882686,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375 +7,3916.25597151212,5.807695590658208,103.97110209712827,658.4391432006579,0.6255270420006127 +8,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078 +9,3902.0378535018804,5.786610528324133,103.59363100994067,656.0486545531619,0.6232560420030495 +10,3910.6476595872386,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752 +11,3934.942942332293,5.835407833888616,104.46721495725883,661.5809789604639,0.6285118330015393 +12,3885.9065565334267,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964 +13,3895.060006851172,5.776262581325674,103.40837897028433,654.8754709299515,0.6221414999999979 +14,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226 +15,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504 +16,3888.3659841602007,5.766335537141401,103.23066205859463,653.7500065585541,0.6210722920004628 +17,3914.404354325165,5.804949695331016,103.92194425836847,658.1278312631894,0.625231291000091 +18,3953.7128740835365,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388 +19,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325 +20,3938.661296366054,5.840922046566098,104.56593204053675,662.2061449000541,0.6291057500020543 +21,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758 +22,3916.1808364849194,5.807584167561926,103.96910736755977,658.4265107672076,0.6255150409997441 +23,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244 +24,3892.1059815168164,5.771881846247623,103.32995374173187,654.3788113846371,0.6216696659976151 +25,3870.0916956217825,5.7392352899310515,102.74550533411049,650.6775549682176,0.618153416999121 +26,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036 +27,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518 +28,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333 +29,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..711c01743 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.11254741599987028 +1,531.6083156995155,0.45984037193655963,20.10159340179818,95.84387180792008,0.1101422920000914 +2,539.1055697078513,0.46632548507321087,20.38508549034322,97.19555467454495,0.11169562500072061 +3,559.2132189145998,0.48371857057796713,21.145411799551134,100.82077063903628,0.11586166699999012 +4,539.8532858167908,0.46697225835249134,20.41335872226605,97.33036070518355,0.11185054200177547 +5,543.1984920844951,0.46986585660691577,20.53985030310232,97.93346925564144,0.1125436250003986 +6,539.2855617453997,0.46648117790766735,20.391891491392315,97.22800550961237,0.11173291699742549 +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.11057104199790047 +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358163,0.1126799999983632 +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.11017412500223145 +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.46186700148841,0.1120016669992765 +11,540.2482576395201,0.4673139083690628,20.428293708704746,97.4015703300661,0.11193237499901443 +12,536.8670548817402,0.46438917320632456,20.300441000162188,96.79197195828965,0.1112318339983176 +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.11164929200094775 +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.10904595800093375 +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541891,0.11143791599897668 +16,548.9821147845478,0.47486868130884574,20.75854521150097,98.97620086137228,0.1137419160004356 +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697709,0.11349562500254251 +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.11208291600269149 +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.11148666699955356 +20,532.0847357354425,0.46025247453173895,20.119608172387444,95.9297657631153,0.11024100000213366 +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.10815120799816214 +22,554.8095819519035,0.47990943140726905,20.978898001517763,100.02683720331508,0.11494929100081208 +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018737,0.11161495800115517 +24,545.6371112170256,0.47197525838976573,20.632061295324043,98.37312885580974,0.1130488749986398 +25,531.4940855078803,0.45974156299723967,20.097274039593618,95.82327720185323,0.11011862499799463 +26,539.73040643437,0.46686596787650175,20.408712310029934,97.30820673311658,0.11182508300043992 +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.11070587499852991 +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.11254208299942547 +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.11221795899837161 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..3cb388146 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..d2d540f9f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..113b6763b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..7f01cc773 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..459ab0623 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..32ad2840d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..b657e704a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..d306283da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..ad3efcb02 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..7e08166c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..f13f5f0db Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..335e82b93 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..430832897 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4afd240c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..99eb08409 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..b7acf3751 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..634b0eaf1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..340aac42b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..39d026d9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6efe1603c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-3/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..960adfa02 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153 +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463 +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461 +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329 +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703 +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084 +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313 +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481 +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714 +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226 +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025 +11,2887.674248714824,2.1312969441461918,0.0,576.88214005382,0.6101675410027383 +12,2878.129996539094,2.1242526469906706,0.0,574.975446934678,0.6081508339993889 +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829 +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129 +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895 +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531 +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873 +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236 +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326 +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912 +21,2877.9582412967975,2.1241258801217238,0.0,574.9411347085722,0.6081145419993845 +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427 +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106 +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583 +25,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333 +26,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665 +27,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394 +28,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c05f79141 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.10917429199980688 +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111004 +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464 +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.10803499999747146 +4,352.95630957691594,0.9021888060756159,0.0,74.88167090427612,0.10859008300030837 +5,355.88853599161115,0.9096838466130363,0.0,75.503759268882,0.10949220799739123 +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448 +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.10809879199950956 +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.10782004199791118 +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.10759204200076056 +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.10798212500230875 +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.10826366699984646 +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.10682274999999208 +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.10754037500009872 +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614 +15,356.18445481047524,0.9104402423442991,0.0,75.56654011457682,0.10958324999955948 +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.10818612500224845 +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.10782712500076741 +18,353.32834195736103,0.9031397550741975,0.0,74.96059967115839,0.10870454200266977 +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.10799366600258509 +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.10814870800095377 +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.10786849999931292 +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.10996691699983785 +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.10785204100102419 +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.10947524999937741 +25,352.68558102305303,0.9014967989796869,0.0,74.82423431531402,0.10850679100258276 +26,353.91150762756075,0.9046303801897321,0.0,75.08432155574776,0.10888395800066064 +27,358.5786109780503,0.9165599258172259,0.0,76.07447384282976,0.11031983299835701 +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.10814045900042402 +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.10865070799991372 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5734820bd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..06f1088df Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..432f8568f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..938b72e63 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..eacb092ad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..7f2e4966d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..324829524 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..c190f5776 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..554b5f6c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..cf0bbe598 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..4e9e00607 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c3d02b124 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4497574e6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..94faae6c0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..eaddb35a2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..55f116444 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..9f4df0f41 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..1093c07f2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..93df661b6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153 +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463 +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461 +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329 +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703 +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084 +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313 +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481 +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714 +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226 +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025 +11,2887.674248714824,2.1312969441461918,0.0,576.88214005382,0.6101675410027383 +12,2878.129996539094,2.1242526469906706,0.0,574.975446934678,0.6081508339993889 +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829 +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129 +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895 +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531 +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873 +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236 +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326 +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912 +21,2877.9582412967975,2.1241258801217238,0.0,574.9411347085722,0.6081145419993845 +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427 +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106 +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583 +25,3027.2709389942734,2.234328648479853,0.0,604.7699246502577,0.639664417001768 +26,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333 +27,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665 +28,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394 +29,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c05f79141 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.10917429199980688 +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111004 +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464 +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.10803499999747146 +4,352.95630957691594,0.9021888060756159,0.0,74.88167090427612,0.10859008300030837 +5,355.88853599161115,0.9096838466130363,0.0,75.503759268882,0.10949220799739123 +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448 +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.10809879199950956 +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.10782004199791118 +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.10759204200076056 +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.10798212500230875 +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.10826366699984646 +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.10682274999999208 +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.10754037500009872 +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614 +15,356.18445481047524,0.9104402423442991,0.0,75.56654011457682,0.10958324999955948 +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.10818612500224845 +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.10782712500076741 +18,353.32834195736103,0.9031397550741975,0.0,74.96059967115839,0.10870454200266977 +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.10799366600258509 +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.10814870800095377 +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.10786849999931292 +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.10996691699983785 +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.10785204100102419 +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.10947524999937741 +25,352.68558102305303,0.9014967989796869,0.0,74.82423431531402,0.10850679100258276 +26,353.91150762756075,0.9046303801897321,0.0,75.08432155574776,0.10888395800066064 +27,358.5786109780503,0.9165599258172259,0.0,76.07447384282976,0.11031983299835701 +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.10814045900042402 +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.10865070799991372 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..cc713a5ce Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..98ca51982 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..6d1220ba9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..104b32427 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9c5cc834f Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..3a3a866fd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2dfcbfd6e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..0cd121506 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..8df314cde Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4821b60d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..caf6ea44c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..f9f8e3b19 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..3579ae1f6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..ab829bc86 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..a7f28412a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..06ebc44fa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ab8eddeb1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..dad9c7256 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..172d2445a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..3500d4da6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-30/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..368b5fe3c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368 +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331 +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703 +3,3935.2679628179076,4.790650299087921,105.05929606950853,659.6356950282599,0.6278394580003805 +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595 +5,3923.989045361744,4.776919760330386,104.75818439437825,657.7451054608762,0.6260399999991932 +6,3898.694465671203,4.7461270705047545,104.08289855316721,653.5051889387316,0.6220044590008911 +7,3894.5147817492316,4.741038877217773,103.97131411856599,652.8045838630626,0.6213376249979774 +8,3918.2259262133844,4.769903951309849,104.60432721194185,656.7790825265099,0.6251205420012411 +9,3904.976514887927,4.753774605880575,104.25060953875163,654.5581957327869,0.6230067079995933 +10,3900.61585011822,4.748466093174299,104.13419348387833,653.8272543678459,0.622310999999172 +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011 +12,3890.512694027786,4.736166883005214,103.86447094478567,652.1337477368717,0.620699125000101 +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967 +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517 +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265 +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703 +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107 +18,3901.9553617383385,4.750096765292231,104.16995423745759,654.0517853748532,0.6225247080001282 +19,3916.8843211021353,4.76827073065291,104.56851056872395,656.5542006052852,0.6249065000010887 +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055 +21,3945.5508023064594,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603 +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766 +23,3902.181791517138,4.750372412566515,104.17599920145867,654.0897398841586,0.6225608329987153 +24,3924.885099333542,4.778010583437871,104.78210622140675,657.89530341183,0.6261829579998448 +25,3922.3157590073897,4.774882763142472,104.71351290359993,657.4646266173096,0.6257730409997748 +26,3926.9166994564293,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049 +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414 +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465 +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..af2e840d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.10992233299839427 +1,564.308332268748,0.47921367534650444,19.990056171597043,98.44418073546763,0.11511137499837787 +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578129,0.1094470829993952 +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924893,0.1137343750015134 +4,551.1749149853679,0.4680607066477709,19.524818048735586,96.15304230849921,0.11243233300046995 +5,548.5636364583718,0.46584319485728526,19.43231612833247,95.69750202925374,0.11189966700112564 +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083 +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377803,0.1143951250014652 +8,533.602080044307,0.45313776056170674,18.902318012002624,93.08744281253347,0.10884770899792784 +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393837,0.11523408300126903 +10,542.0632066445227,0.4603229948455245,19.202044927841882,94.56349522683776,0.11057366599925444 +11,542.1635024143241,0.46040816655347183,19.205597804801968,94.5809919291275,0.11059412499889731 +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865 +13,545.9905515906022,0.46365811732794077,19.341167179965527,95.24862467393983,0.11137479199896916 +14,541.7711140282568,0.4600749482224672,19.191697840137206,94.51253936341541,0.11051408300045296 +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213733,0.1131512499996461 +16,548.961128120956,0.46618074691819633,19.44639687144476,95.76684486690948,0.11198074999992969 +17,550.204670187255,0.46723676953909804,19.490448100773804,95.98378208531757,0.11223441599940998 +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602 +19,536.4276274869267,0.45553723066947555,19.00241019364098,93.58036252895798,0.10942408299888484 +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.11419737499818439 +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.11226708400135976 +22,543.2377147988591,0.46132039349654413,19.243650700141554,94.7683894068615,0.11081325000122888 +23,545.5227906275,0.46326089219853206,19.32459721742448,95.16702328306987,0.11127937499986729 +24,546.4460568464966,0.46404493484477455,19.357302996382025,95.32808804382654,0.11146770899722469 +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472687,0.11217920799754211 +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.11241358299957938 +27,544.6440567149677,0.46251466662680746,19.293468950718253,95.01372722990702,0.1111001249992114 +28,547.1235913519002,0.4646203007962273,19.381303976071194,95.44628464928212,0.11160591700172517 +29,561.8191989819761,0.47709988995193897,19.901881123709455,98.00994882155547,0.11460362499929033 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..df966396d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..23cac3c0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0cfce7665 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..065f9a700 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..485010a44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ef5ddbba3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..76062faf2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5a96e0e84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3520e3666 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1af250177 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..94bc7566b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3e9a37b38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..21b969f23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4065a2644 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4159749b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..68a86f52c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7b33c77c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..1dbd0cb64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f14dc8564 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..e6312fab8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..368b5fe3c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368 +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331 +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703 +3,3935.2679628179076,4.790650299087921,105.05929606950853,659.6356950282599,0.6278394580003805 +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595 +5,3923.989045361744,4.776919760330386,104.75818439437825,657.7451054608762,0.6260399999991932 +6,3898.694465671203,4.7461270705047545,104.08289855316721,653.5051889387316,0.6220044590008911 +7,3894.5147817492316,4.741038877217773,103.97131411856599,652.8045838630626,0.6213376249979774 +8,3918.2259262133844,4.769903951309849,104.60432721194185,656.7790825265099,0.6251205420012411 +9,3904.976514887927,4.753774605880575,104.25060953875163,654.5581957327869,0.6230067079995933 +10,3900.61585011822,4.748466093174299,104.13419348387833,653.8272543678459,0.622310999999172 +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011 +12,3890.512694027786,4.736166883005214,103.86447094478567,652.1337477368717,0.620699125000101 +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967 +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517 +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265 +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703 +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107 +18,3901.9553617383385,4.750096765292231,104.16995423745759,654.0517853748532,0.6225247080001282 +19,3916.8843211021353,4.76827073065291,104.56851056872395,656.5542006052852,0.6249065000010887 +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055 +21,3945.5508023064594,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603 +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766 +23,3902.181791517138,4.750372412566515,104.17599920145867,654.0897398841586,0.6225608329987153 +24,3924.885099333542,4.778010583437871,104.78210622140675,657.89530341183,0.6261829579998448 +25,3922.3157590073897,4.774882763142472,104.71351290359993,657.4646266173096,0.6257730409997748 +26,3926.9166994564293,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049 +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414 +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465 +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..af2e840d8 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.10992233299839427 +1,564.308332268748,0.47921367534650444,19.990056171597043,98.44418073546763,0.11511137499837787 +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578129,0.1094470829993952 +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924893,0.1137343750015134 +4,551.1749149853679,0.4680607066477709,19.524818048735586,96.15304230849921,0.11243233300046995 +5,548.5636364583718,0.46584319485728526,19.43231612833247,95.69750202925374,0.11189966700112564 +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083 +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377803,0.1143951250014652 +8,533.602080044307,0.45313776056170674,18.902318012002624,93.08744281253347,0.10884770899792784 +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393837,0.11523408300126903 +10,542.0632066445227,0.4603229948455245,19.202044927841882,94.56349522683776,0.11057366599925444 +11,542.1635024143241,0.46040816655347183,19.205597804801968,94.5809919291275,0.11059412499889731 +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865 +13,545.9905515906022,0.46365811732794077,19.341167179965527,95.24862467393983,0.11137479199896916 +14,541.7711140282568,0.4600749482224672,19.191697840137206,94.51253936341541,0.11051408300045296 +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213733,0.1131512499996461 +16,548.961128120956,0.46618074691819633,19.44639687144476,95.76684486690948,0.11198074999992969 +17,550.204670187255,0.46723676953909804,19.490448100773804,95.98378208531757,0.11223441599940998 +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602 +19,536.4276274869267,0.45553723066947555,19.00241019364098,93.58036252895798,0.10942408299888484 +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.11419737499818439 +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.11226708400135976 +22,543.2377147988591,0.46132039349654413,19.243650700141554,94.7683894068615,0.11081325000122888 +23,545.5227906275,0.46326089219853206,19.32459721742448,95.16702328306987,0.11127937499986729 +24,546.4460568464966,0.46404493484477455,19.357302996382025,95.32808804382654,0.11146770899722469 +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472687,0.11217920799754211 +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.11241358299957938 +27,544.6440567149677,0.46251466662680746,19.293468950718253,95.01372722990702,0.1111001249992114 +28,547.1235913519002,0.4646203007962273,19.381303976071194,95.44628464928212,0.11160591700172517 +29,561.8191989819761,0.47709988995193897,19.901881123709455,98.00994882155547,0.11460362499929033 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..df966396d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..23cac3c0d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..0cfce7665 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..065f9a700 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..485010a44 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..ef5ddbba3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..76062faf2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5a96e0e84 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..3520e3666 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1af250177 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..94bc7566b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..3e9a37b38 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..21b969f23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..4065a2644 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4159749b0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..68a86f52c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7b33c77c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..1dbd0cb64 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..f14dc8564 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..e6312fab8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-4/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..daca1185a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4178.899201105131,5.488284972494792,106.22806997967331,659.321559768019,0.6223265419976087 +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206 +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914 +3,4220.901846967973,5.543448420809863,107.29578178350657,665.9484843842789,0.6285816249983327 +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172 +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912 +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368 +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697 +8,4225.91204815074,5.550028481858783,107.42314163983295,666.7389637664328,0.6293277500008116 +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834 +10,4255.092473689515,5.5883520889305,108.16491121526323,671.3428756473014,0.6336733329990238 +11,4192.928435888898,5.506710025297929,106.58469464627859,661.5350079788633,0.6244157920009457 +12,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666 +13,4163.911680836073,5.468601372027502,105.84708559231545,656.9569190420027,0.6200945830023556 +14,4176.033033663473,5.484520741068836,106.15521169309741,658.8693531228598,0.6218997089999903 +15,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769 +16,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779 +17,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807 +18,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965 +19,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122 +20,4177.193318685504,5.486044581330055,106.18470626393655,659.0524159089396,0.6220724999984668 +21,4240.824025130627,5.56961286885411,107.80220570860395,669.0916857270402,0.6315484590013511 +22,4186.504453143061,5.498273198691004,106.42139630960361,660.5214706523857,0.6234591249994992 +23,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181 +24,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926 +25,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411 +26,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244 +27,4209.1590568276115,5.528026230524569,106.99727878720145,664.095777645307,0.6268328749974899 +28,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..64e821763 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.10932737499751966 +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297069,0.11495483300313936 +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279237,0.11237612500190153 +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.11266108299969346 +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958 +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126877,0.11198308299935888 +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.10985420799988788 +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.66835693569061,0.11124350000318373 +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419235,0.11383495800328092 +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.11208774999977322 +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875493,0.11316116699890699 +11,513.552572917201,0.5900642354468032,20.980061704775224,94.90199786769419,0.11035237499891082 +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.55186347610201,0.11110804100098903 +13,520.6179409055757,0.598182237731416,21.268701786005902,96.20764323513608,0.11187058399809757 +14,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.11488370799997938 +15,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496595,0.11018483400039258 +16,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.11231249999764259 +17,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739273,0.11241441599850077 +18,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.11290145800012397 +19,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.11309666699889931 +20,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.10921587499979069 +21,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128127,0.11460495899882517 +22,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.11064391699983389 +23,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798 +24,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312755,0.11192075000144541 +25,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.10473179200198501 +26,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.11376616699999431 +27,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617625,0.11353437499928987 +28,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.11140812500161701 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..71f9e6362 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..d8c51b186 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..89df4f818 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e346aa883 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..5de8affdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..b6e45e519 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..8a5b65aff Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..48411e7dc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..535768016 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..084b77ea7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..8f8c4cb1c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..9ab9f17f8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..c45e4186b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..edeb902b1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..d23556dc7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..d736446fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..91ed60afa Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..fe4098ce9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..d68899bdb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..ed4a2d730 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a68556d53 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4178.899201105131,5.488284972494792,106.22806997967331,659.321559768019,0.6223265419976087 +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206 +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914 +3,4220.901846967973,5.543448420809863,107.29578178350657,665.9484843842789,0.6285816249983327 +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172 +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912 +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368 +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697 +8,4225.91204815074,5.550028481858783,107.42314163983295,666.7389637664328,0.6293277500008116 +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834 +10,4439.673079154838,5.830767833948093,112.85697018358567,700.4648924373064,0.6611612920023617 +11,4255.092473689515,5.5883520889305,108.16491121526323,671.3428756473014,0.6336733329990238 +12,4192.928435888898,5.506710025297929,106.58469464627859,661.5350079788633,0.6244157920009457 +13,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666 +14,4163.911680836073,5.468601372027502,105.84708559231545,656.9569190420027,0.6200945830023556 +15,4176.033033663473,5.484520741068836,106.15521169309741,658.8693531228598,0.6218997089999903 +16,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769 +17,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779 +18,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807 +19,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965 +20,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122 +21,4177.193318685504,5.486044581330055,106.18470626393655,659.0524159089396,0.6220724999984668 +22,4240.824025130627,5.56961286885411,107.80220570860395,669.0916857270402,0.6315484590013511 +23,4186.504453143061,5.498273198691004,106.42139630960361,660.5214706523857,0.6234591249994992 +24,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181 +25,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926 +26,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411 +27,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244 +28,4209.1590568276115,5.528026230524569,106.99727878720145,664.095777645307,0.6268328749974899 +29,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..e1c29ae68 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.10932737499751966 +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297069,0.11495483300313936 +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279237,0.11237612500190153 +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.11266108299969346 +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958 +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126877,0.11198308299935888 +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.10985420799988788 +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.66835693569061,0.11124350000318373 +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419235,0.11383495800328092 +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.11208774999977322 +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875493,0.11316116699890699 +11,513.552572917201,0.5900642354468032,20.980061704775224,94.90199786769419,0.11035237499891082 +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.55186347610201,0.11110804100098903 +13,571.0766273014697,0.6561585147086973,23.330080522975905,105.53216111564883,0.1227131659979932 +14,520.6179409055757,0.598182237731416,21.268701786005902,96.20764323513608,0.11187058399809757 +15,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.11488370799997938 +16,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496595,0.11018483400039258 +17,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.11231249999764259 +18,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739273,0.11241441599850077 +19,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.11290145800012397 +20,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.11309666699889931 +21,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.10921587499979069 +22,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128127,0.11460495899882517 +23,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.11064391699983389 +24,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798 +25,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312755,0.11192075000144541 +26,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.10473179200198501 +27,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.11376616699999431 +28,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617625,0.11353437499928987 +29,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.11140812500161701 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..c7fe20eed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..29165fc2a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..8d56aeb25 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a327fd6c4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..4d5056ae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..45ef056c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..6a6705904 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..9d00d96fb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..82a92a6a1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..fa11d8097 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..4c3f62463 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..33678090e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..ec8517bd3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..d0b066828 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..e05d4bf9c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..7c9ca7c67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..a96e3d756 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..b8151cde1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..4bbbb0b62 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4f21f6217 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-5/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..028d62d2a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/csv/history_with_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121 +1,3980.12865087621,4.269844255224866,105.04484031018049,671.0660693934268,0.6250826669966045 +2,3971.13262941209,4.260193408747831,104.80741440739781,669.5493031545323,0.6236698339998838 +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611 +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523 +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475 +6,3990.206595708371,4.280655778826397,105.31082068378377,672.765252364458,0.6266654169994581 +7,4021.5687779327764,4.314300830368314,106.13854152210797,678.0530453478076,0.6315908750002563 +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759 +9,3997.3794308539345,4.288350728318347,105.50012846464433,673.9746218873453,0.6277919169988309 +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202 +11,3968.9393336960334,4.25784046191252,104.74952823876973,669.1795044710481,0.6233253749996948 +12,3979.6001596998212,4.269277294904891,105.03089220043361,670.9769636062633,0.6249996669976099 +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161 +14,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824 +15,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711 +16,3976.3137977834795,4.265751717020369,104.94415747575893,670.4228694632716,0.6244835409997904 +17,3991.6843525594845,4.282241102356066,105.34982211968165,673.0144082507576,0.6268974999984493 +18,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932 +19,3945.661844046774,4.23286859186177,104.13518121697433,665.2548239256503,0.6196696250008245 +20,3953.734597793666,4.2415289654912565,104.34823994009349,666.6159234280282,0.6209374579993892 +21,3949.024607959405,4.236476133083047,104.22393236780091,665.8217997596224,0.6201977499986242 +22,3953.6438628657106,4.2414316259213924,104.34584523458176,666.6006251457864,0.620923208000022 +23,3980.280939138054,4.270007628627338,105.04885955115225,671.0917458210638,0.6251065840006049 +24,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405 +25,3931.6565666482784,4.217843863143608,103.76554941436893,662.8934765223435,0.6174700840019796 +26,3941.93640780823,4.228871979210103,104.03685830103605,664.6267000450754,0.6190845419987454 +27,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492 +28,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..b2245b084 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/csv/history_without_smell.csv @@ -0,0 +1,30 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.11252166600024793 +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568809,0.11015774999759742 +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097 +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.11225841700070305 +4,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070757,0.1136530000003404 +5,581.2750486108054,1.8699591852123025,19.899188310561104,101.4717474843506,0.11877525000090827 +6,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.10962695899797836 +7,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.11146066599758342 +8,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713873,0.11285887499980163 +9,530.8233484268193,1.70765629539432,18.172040577403706,92.66451897271818,0.10846616600247216 +10,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788008 +11,561.3068844925039,1.8057216921458394,19.215604422080254,97.98595446436669,0.11469504100023187 +12,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393 +13,552.9138385846918,1.7787213016685077,18.928279512095063,96.52080119997412,0.11298004200216383 +14,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.11203579099674243 +15,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.10924529100157088 +16,560.2365478283398,1.8022784239697727,19.178962851300977,97.79910844032202,0.11447633299758309 +17,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733425,0.10638554099932662 +18,545.8038038438997,1.7558483522747605,18.684876805338963,95.27962002155117,0.11152720800237148 +19,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.11264570799903595 +20,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697 +21,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.10904391700023552 +22,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.11282820799897308 +23,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.11192149999988033 +24,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654149,0.10583216599843581 +25,548.6950850466077,1.7651495907417427,18.783856022232882,95.78434382968399,0.11211800000091898 +26,546.7342628234665,1.75884163457625,18.716729847188773,95.44204794417539,0.11171733399896766 +27,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.11146158299743547 +28,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651889,0.1148124999999709 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..2c49cdc56 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..ff57020cb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..016b01f87 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..cf5d4d4dd Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..9c9018e78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..bb5f2dc2e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..2009784ea Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..234cdb4f7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a711cf5d3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..18c2441ba Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..133afda12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..5d67c0d7b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e92e149c7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..0fc3a467d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..14aa286ed Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..c819eba23 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..b22965177 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..c8b40c4d5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..17a102261 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..c848e41be Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..93607c1c2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121 +1,3980.12865087621,4.269844255224866,105.04484031018049,671.0660693934268,0.6250826669966045 +2,3971.13262941209,4.260193408747831,104.80741440739781,669.5493031545323,0.6236698339998838 +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611 +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523 +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475 +6,3990.206595708371,4.280655778826397,105.31082068378377,672.765252364458,0.6266654169994581 +7,4021.5687779327764,4.314300830368314,106.13854152210797,678.0530453478076,0.6315908750002563 +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759 +9,3997.3794308539345,4.288350728318347,105.50012846464433,673.9746218873453,0.6277919169988309 +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202 +11,3968.9393336960334,4.25784046191252,104.74952823876973,669.1795044710481,0.6233253749996948 +12,3979.6001596998212,4.269277294904891,105.03089220043361,670.9769636062633,0.6249996669976099 +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161 +14,4107.520756463168,4.406509297467087,108.40701388846763,692.5449026339484,0.645089707999432 +15,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824 +16,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711 +17,3976.3137977834795,4.265751717020369,104.94415747575893,670.4228694632716,0.6244835409997904 +18,3991.6843525594845,4.282241102356066,105.34982211968165,673.0144082507576,0.6268974999984493 +19,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932 +20,3945.661844046774,4.23286859186177,104.13518121697433,665.2548239256503,0.6196696250008245 +21,3953.734597793666,4.2415289654912565,104.34823994009349,666.6159234280282,0.6209374579993892 +22,3949.024607959405,4.236476133083047,104.22393236780091,665.8217997596224,0.6201977499986242 +23,3953.6438628657106,4.2414316259213924,104.34584523458176,666.6006251457864,0.620923208000022 +24,3980.280939138054,4.270007628627338,105.04885955115225,671.0917458210638,0.6251065840006049 +25,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405 +26,3931.6565666482784,4.217843863143608,103.76554941436893,662.8934765223435,0.6174700840019796 +27,3941.93640780823,4.228871979210103,104.03685830103605,664.6267000450754,0.6190845419987454 +28,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492 +29,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..db6b6c220 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.11252166600024793 +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568809,0.11015774999759742 +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097 +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.11225841700070305 +4,625.393215626768,2.0118871276612262,21.409515849074182,109.17334677648466,0.1277901670000574 +5,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070757,0.1136530000003404 +6,581.2750486108054,1.8699591852123025,19.899188310561104,101.4717474843506,0.11877525000090827 +7,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.10962695899797836 +8,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.11146066599758342 +9,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713873,0.11285887499980163 +10,530.8233484268193,1.70765629539432,18.172040577403706,92.66451897271818,0.10846616600247216 +11,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788008 +12,561.3068844925039,1.8057216921458394,19.215604422080254,97.98595446436669,0.11469504100023187 +13,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393 +14,552.9138385846918,1.7787213016685077,18.928279512095063,96.52080119997412,0.11298004200216383 +15,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.11203579099674243 +16,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.10924529100157088 +17,560.2365478283398,1.8022784239697727,19.178962851300977,97.79910844032202,0.11447633299758309 +18,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733425,0.10638554099932662 +19,545.8038038438997,1.7558483522747605,18.684876805338963,95.27962002155117,0.11152720800237148 +20,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.11264570799903595 +21,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697 +22,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.10904391700023552 +23,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.11282820799897308 +24,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.11192149999988033 +25,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654149,0.10583216599843581 +26,548.6950850466077,1.7651495907417427,18.783856022232882,95.78434382968399,0.11211800000091898 +27,546.7342628234665,1.75884163457625,18.716729847188773,95.44204794417539,0.11171733399896766 +28,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.11146158299743547 +29,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651889,0.1148124999999709 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..d4b8656d7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..9a50b80c5 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..f167e5c82 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..e7c197c99 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..b74f077a9 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..58914a68d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..7612cc92b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..97d1a6661 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..b14c7521e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..4a904cfd8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..b08ab8dbe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..8d90a0e48 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..5dccf6005 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..70c09ff91 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..4e2f33796 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..fbea6741a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..7b854e545 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..a2b54ed68 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..32a174cad Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4b41e8684 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-6/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a0b2a7cb7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3910.189399402901,5.064969011966773,108.26371263078977,658.2793607329183,0.6260335840015614 +1,3891.3372202175283,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194 +2,3907.0580803360835,5.060912933751627,108.17701395894103,657.752203988575,0.6255322500001057 +3,3951.5913492814198,5.118598023697437,109.41003275653273,665.2493681456768,0.632662166000955 +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164 +5,3922.660266933899,5.081122847790299,108.60900087151765,660.3788280137984,0.6280302089980978 +6,3930.0888097662346,5.090745230597534,108.81467930402229,661.6294212529888,0.6292195419991913 +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145 +8,3942.4162760031118,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765 +9,3854.415707263761,4.992723912429943,106.71947362819003,648.8898742766679,0.6171040410008573 +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072 +11,3887.387947176371,5.035433703786343,107.63239541843309,654.4407422256527,0.6223830000017188 +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194 +13,3942.9229806504363,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838 +14,3923.878487924429,5.082700840807135,108.64273047225251,660.5839151983221,0.6282252499986498 +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408 +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367 +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995 +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112 +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427 +20,3869.4104729141964,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875 +21,3881.1130856960726,5.027305714140381,107.45865963975065,653.3843709397581,0.6213783750026778 +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678 +23,3928.4846375733423,5.088667305050476,108.77026364545391,661.3593592846852,0.6289627090009162 +24,3922.1337813176197,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337 +25,3911.2238825665804,5.066309004645449,108.29235497429647,658.4535157024397,0.626199207999889 +26,3896.1161772012565,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608 +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889 +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519 +29,3903.2857744554663,5.056026568811887,108.07256790835409,657.1171372820976,0.6249282919998222 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..ca80e74b1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951333,0.1165232500025013 +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.10988391600039904 +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729283,0.1088155409997853 +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658147,0.11461762500039185 +4,553.11275808707,0.43128993852758574,15.327380892288048,94.31979194107126,0.11046008400080609 +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839275,0.11078725000334089 +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067 +7,547.9159557125065,0.42723772938235277,15.183371613434383,93.43360497184838,0.10942224999962491 +8,557.4791708931641,0.43469465100834537,15.448379135835042,95.06437637051738,0.11133208400133299 +9,533.7877060177743,0.41622121990349487,14.791861815031895,91.02437909120276,0.10660074999759672 +10,552.6339298454541,0.43091657197642175,15.314112019469757,94.23813954838208,0.11036445900026592 +11,536.8584659497922,0.418615646433979,14.876956050192177,91.54802175475403,0.10721399999965797 +12,537.1480562614719,0.41884145461847017,14.884980925671787,91.59740426771621,0.10727183299968601 +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.10692204199949629 +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073805,0.11221929100065609 +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.11123220900117303 +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326 +17,561.6544679972243,0.4379503409287378,15.564081346852065,95.77637071233858,0.11216591699849232 +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.11041566699714167 +19,562.1610470070955,0.43834534615476495,15.578119224884723,95.86275531676898,0.11226708400135976 +20,529.2493757437318,0.4126824546946085,14.666099543762241,90.25047836129015,0.1056944170013594 +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.11013291699782712 +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.11243429200112587 +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.11127895900062867 +24,556.7222241829976,0.43410442144787487,15.427403285301398,94.93529770586986,0.11118091699972865 +25,558.98491731835,0.43586875750591114,15.49010507444084,95.32114442994656,0.11163279099855572 +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225051,0.11090620899994974 +27,561.1524807485683,0.43755891613072145,15.550170711722563,95.6907691199724,0.11206566699911491 +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.11349949999930686 +29,557.0070174500534,0.43432648913451855,15.43529522924212,94.98386220072587,0.11123779199988348 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..61bc60f47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..67ca64593 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5092afda4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2b5781991 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..54c5ebc89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d7d5e20ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..5b54efbf0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3e84dc793 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d206d0617 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cad763c67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e26f42167 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b27bdc980 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2c83ff0fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..32391e994 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..daa88225e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..4d6c9c58d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ddcae74e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..dae8f80c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..909e65f36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..4e0311c40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a0b2a7cb7 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3910.189399402901,5.064969011966773,108.26371263078977,658.2793607329183,0.6260335840015614 +1,3891.3372202175283,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194 +2,3907.0580803360835,5.060912933751627,108.17701395894103,657.752203988575,0.6255322500001057 +3,3951.5913492814198,5.118598023697437,109.41003275653273,665.2493681456768,0.632662166000955 +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164 +5,3922.660266933899,5.081122847790299,108.60900087151765,660.3788280137984,0.6280302089980978 +6,3930.0888097662346,5.090745230597534,108.81467930402229,661.6294212529888,0.6292195419991913 +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145 +8,3942.4162760031118,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765 +9,3854.415707263761,4.992723912429943,106.71947362819003,648.8898742766679,0.6171040410008573 +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072 +11,3887.387947176371,5.035433703786343,107.63239541843309,654.4407422256527,0.6223830000017188 +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194 +13,3942.9229806504363,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838 +14,3923.878487924429,5.082700840807135,108.64273047225251,660.5839151983221,0.6282252499986498 +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408 +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367 +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995 +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112 +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427 +20,3869.4104729141964,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875 +21,3881.1130856960726,5.027305714140381,107.45865963975065,653.3843709397581,0.6213783750026778 +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678 +23,3928.4846375733423,5.088667305050476,108.77026364545391,661.3593592846852,0.6289627090009162 +24,3922.1337813176197,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337 +25,3911.2238825665804,5.066309004645449,108.29235497429647,658.4535157024397,0.626199207999889 +26,3896.1161772012565,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608 +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889 +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519 +29,3903.2857744554663,5.056026568811887,108.07256790835409,657.1171372820976,0.6249282919998222 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..ca80e74b1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951333,0.1165232500025013 +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.10988391600039904 +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729283,0.1088155409997853 +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658147,0.11461762500039185 +4,553.11275808707,0.43128993852758574,15.327380892288048,94.31979194107126,0.11046008400080609 +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839275,0.11078725000334089 +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067 +7,547.9159557125065,0.42723772938235277,15.183371613434383,93.43360497184838,0.10942224999962491 +8,557.4791708931641,0.43469465100834537,15.448379135835042,95.06437637051738,0.11133208400133299 +9,533.7877060177743,0.41622121990349487,14.791861815031895,91.02437909120276,0.10660074999759672 +10,552.6339298454541,0.43091657197642175,15.314112019469757,94.23813954838208,0.11036445900026592 +11,536.8584659497922,0.418615646433979,14.876956050192177,91.54802175475403,0.10721399999965797 +12,537.1480562614719,0.41884145461847017,14.884980925671787,91.59740426771621,0.10727183299968601 +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.10692204199949629 +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073805,0.11221929100065609 +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.11123220900117303 +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326 +17,561.6544679972243,0.4379503409287378,15.564081346852065,95.77637071233858,0.11216591699849232 +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.11041566699714167 +19,562.1610470070955,0.43834534615476495,15.578119224884723,95.86275531676898,0.11226708400135976 +20,529.2493757437318,0.4126824546946085,14.666099543762241,90.25047836129015,0.1056944170013594 +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.11013291699782712 +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.11243429200112587 +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.11127895900062867 +24,556.7222241829976,0.43410442144787487,15.427403285301398,94.93529770586986,0.11118091699972865 +25,558.98491731835,0.43586875750591114,15.49010507444084,95.32114442994656,0.11163279099855572 +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225051,0.11090620899994974 +27,561.1524807485683,0.43755891613072145,15.550170711722563,95.6907691199724,0.11206566699911491 +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.11349949999930686 +29,557.0070174500534,0.43432648913451855,15.43529522924212,94.98386220072587,0.11123779199988348 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..61bc60f47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..67ca64593 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5092afda4 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..2b5781991 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..54c5ebc89 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..d7d5e20ee Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..5b54efbf0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..3e84dc793 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d206d0617 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..cad763c67 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..e26f42167 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..b27bdc980 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..2c83ff0fc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..32391e994 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..daa88225e Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..4d6c9c58d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..ddcae74e0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..dae8f80c3 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..909e65f36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..4e0311c40 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-7/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..dafb14b5b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3932.4126539897197,4.478944969047389,106.51806719621723,662.7828265851253,0.6318551250005839 +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532 +2,3908.6994489213234,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069 +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925 +4,3869.1627382424763,4.406904489866914,104.80480377029359,652.1224606396295,0.6216922079984215 +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051 +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978 +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778 +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074 +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706 +10,3894.38802258755,4.435635620180903,105.48808621527965,656.3740198554913,0.6257453749967681 +11,3910.956019959519,4.4545062614400495,105.93686695439757,659.1664491082828,0.6284075000003213 +12,3903.5089614943427,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862 +13,3851.845836610113,4.3871808605659375,104.33573730804555,649.2038083969791,0.6189097499991476 +14,3886.5333184363603,4.426689258052392,105.27532423473471,655.0501600581138,0.6244832910015248 +15,3901.3203334792693,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713 +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272 +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295 +18,3870.8322185700194,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032 +19,3910.039595065132,4.453462470507768,105.91204356553435,659.0119915944615,0.6282602499995846 +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754 +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134 +22,3893.81000588388,4.434977269891977,105.47242935840845,656.2765988627368,0.6256524999989779 +23,3910.340138863701,4.453804784311792,105.92018445697893,659.062646316093,0.6283085409995692 +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367 +25,3905.901941366857,4.448749759801594,105.79996609212363,658.314616711693,0.6275954170014302 +26,3892.3977655668273,4.43336875440296,105.43417571561325,656.0385748526666,0.6254255829990143 +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478 +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464 +29,3882.8875904046654,4.422536841543025,105.17657165263599,654.4356960782576,0.6238975000014761 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..c507c75cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.11260625000068103 +1,532.8827144907617,0.4343244694909029,20.079154320310206,96.28639392867557,0.11191487500036601 +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782763,0.11197045800145133 +3,541.410961550333,0.44127539185920556,20.400500808260194,97.82735994909464,0.11370595900007174 +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.10660408400144661 +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.11118829100087169 +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.11626208300003782 +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032649,0.11192920800021966 +8,530.81126187005,0.43263613820129465,20.001101466075237,95.91210386893316,0.11147983300179476 +9,539.3258148522472,0.43957589925261525,20.32193195775552,97.45059551123363,0.11326804100099253 +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.45403778541721,0.11327204199915286 +11,530.2759930276953,0.43219986892539436,19.980932401858617,95.81538632638357,0.11136741699738195 +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647 +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.11084808300074656 +14,530.8965736635557,0.43270567132452814,20.00431603584934,95.92751882748385,0.11149775000012596 +15,538.9450995668178,0.4392655983930176,20.307586510323354,97.38180419759053,0.11318808400028502 +16,533.1491585277918,0.43454163390979894,20.08919399844532,96.33453760984928,0.11197083300066879 +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.10706516600112082 +18,514.0279683439179,0.41895696479441585,19.368702757034146,92.87953634903896,0.10795504199995776 +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129493,0.11201037499995437 +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.11296524999852409 +21,531.0947711170215,0.43286721156873226,20.011784165600623,95.96333105700664,0.11153937500057509 +22,541.2827962393301,0.44117093110415617,20.395671507199836,97.80420180324447,0.11367904199869372 +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547 +24,500.526534169196,0.40795266107834155,18.85996533139102,90.43996686367541,0.1051195000000007 +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.41152168070819,0.11322262500107172 +26,531.2782888578109,0.4330167871568365,20.018699160096826,95.9964908143079,0.11157791699952213 +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.11460804099988309 +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.11205595800129231 +29,534.66053966854,0.43577348060758747,20.146143218858466,96.60762854700516,0.11228824999852804 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..218d8f83c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8d441af12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5b86966f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d90b4fde8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1f1d7020d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..587d0ec78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..8a8671c47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f902c1b36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a6034b0d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1b880b3c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fe39d8ac0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d9a7d54da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e58b3453c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..19ea6a7a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..51598d67a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..2c3da60e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2aeb16a3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..29413af01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fd3329e1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..63c780c5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..dafb14b5b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3932.4126539897197,4.478944969047389,106.51806719621723,662.7828265851253,0.6318551250005839 +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532 +2,3908.6994489213234,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069 +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925 +4,3869.1627382424763,4.406904489866914,104.80480377029359,652.1224606396295,0.6216922079984215 +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051 +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978 +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778 +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074 +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706 +10,3894.38802258755,4.435635620180903,105.48808621527965,656.3740198554913,0.6257453749967681 +11,3910.956019959519,4.4545062614400495,105.93686695439757,659.1664491082828,0.6284075000003213 +12,3903.5089614943427,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862 +13,3851.845836610113,4.3871808605659375,104.33573730804555,649.2038083969791,0.6189097499991476 +14,3886.5333184363603,4.426689258052392,105.27532423473471,655.0501600581138,0.6244832910015248 +15,3901.3203334792693,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713 +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272 +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295 +18,3870.8322185700194,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032 +19,3910.039595065132,4.453462470507768,105.91204356553435,659.0119915944615,0.6282602499995846 +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754 +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134 +22,3893.81000588388,4.434977269891977,105.47242935840845,656.2765988627368,0.6256524999989779 +23,3910.340138863701,4.453804784311792,105.92018445697893,659.062646316093,0.6283085409995692 +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367 +25,3905.901941366857,4.448749759801594,105.79996609212363,658.314616711693,0.6275954170014302 +26,3892.3977655668273,4.43336875440296,105.43417571561325,656.0385748526666,0.6254255829990143 +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478 +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464 +29,3882.8875904046654,4.422536841543025,105.17657165263599,654.4356960782576,0.6238975000014761 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..c507c75cf --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.11260625000068103 +1,532.8827144907617,0.4343244694909029,20.079154320310206,96.28639392867557,0.11191487500036601 +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782763,0.11197045800145133 +3,541.410961550333,0.44127539185920556,20.400500808260194,97.82735994909464,0.11370595900007174 +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.10660408400144661 +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.11118829100087169 +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.11626208300003782 +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032649,0.11192920800021966 +8,530.81126187005,0.43263613820129465,20.001101466075237,95.91210386893316,0.11147983300179476 +9,539.3258148522472,0.43957589925261525,20.32193195775552,97.45059551123363,0.11326804100099253 +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.45403778541721,0.11327204199915286 +11,530.2759930276953,0.43219986892539436,19.980932401858617,95.81538632638357,0.11136741699738195 +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647 +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.11084808300074656 +14,530.8965736635557,0.43270567132452814,20.00431603584934,95.92751882748385,0.11149775000012596 +15,538.9450995668178,0.4392655983930176,20.307586510323354,97.38180419759053,0.11318808400028502 +16,533.1491585277918,0.43454163390979894,20.08919399844532,96.33453760984928,0.11197083300066879 +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.10706516600112082 +18,514.0279683439179,0.41895696479441585,19.368702757034146,92.87953634903896,0.10795504199995776 +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129493,0.11201037499995437 +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.11296524999852409 +21,531.0947711170215,0.43286721156873226,20.011784165600623,95.96333105700664,0.11153937500057509 +22,541.2827962393301,0.44117093110415617,20.395671507199836,97.80420180324447,0.11367904199869372 +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547 +24,500.526534169196,0.40795266107834155,18.85996533139102,90.43996686367541,0.1051195000000007 +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.41152168070819,0.11322262500107172 +26,531.2782888578109,0.4330167871568365,20.018699160096826,95.9964908143079,0.11157791699952213 +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.11460804099988309 +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.11205595800129231 +29,534.66053966854,0.43577348060758747,20.146143218858466,96.60762854700516,0.11228824999852804 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..218d8f83c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..8d441af12 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..5b86966f1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..d90b4fde8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..1f1d7020d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..587d0ec78 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..8a8671c47 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..f902c1b36 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..a6034b0d0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..1b880b3c8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..fe39d8ac0 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..d9a7d54da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..e58b3453c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..19ea6a7a6 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..51598d67a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..2c3da60e2 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..2aeb16a3a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..29413af01 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..fd3329e1d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..63c780c5a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-8/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/csv/history_with_smell.csv new file mode 100644 index 000000000..a5bd88be4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3901.9193865800326,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836 +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607 +2,3910.2388544515165,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785 +3,3911.2024295099754,5.193629375243073,102.64076515304097,659.6575156478605,0.6256015840008331 +4,3896.403904938974,5.173978627600272,102.25241095443357,657.1616187645627,0.623234542003047 +5,3930.1087127939522,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417 +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612 +7,3946.2917657672665,5.240223999486666,103.56160634882943,665.5756302937743,0.6312141659982444 +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819 +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852 +10,3942.866246351669,5.235675301590572,103.47171124874187,664.9978873443307,0.6306662500028324 +11,3920.5909670871097,5.206096279073792,102.88714633579809,661.2409722664623,0.6271032920012658 +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156 +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094 +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447 +15,3919.6797517552195,5.20488628935831,102.86323352622865,661.0872880599075,0.6269575420010369 +16,3939.657718042438,5.231414743059418,103.38751059520631,664.4567417883288,0.6301530419987103 +17,3906.3868987458522,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914 +18,3907.238977299649,5.188366364136408,102.53675320918299,658.9890457628128,0.6249676250008633 +19,3910.2154035747167,5.192318717719235,102.61486286364361,659.4910453390316,0.6254437080024218 +20,3923.541347906347,5.210014047270941,102.96457248548917,661.7385790552976,0.6275752090004971 +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085 +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521 +23,3944.379726555403,5.237685030155285,103.51142915364579,665.2531486378001,0.630908333001571 +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105 +25,3947.3334959117747,5.241607297942091,103.58894422791965,665.7513269322089,0.6313807920014369 +26,3899.151355134042,5.177626927144285,102.32451164349891,657.6249995797234,0.623674000002211 +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154 +28,3905.69892649689,5.1863213528559315,102.49633801830025,658.7293031120989,0.6247212920025049 +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/csv/history_without_smell.csv new file mode 100644 index 000000000..9946063fb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857527,0.11291058300048462 +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.11228495799878146 +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641607,0.10916145800001686 +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344537,0.10824658300043666 +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.11502487500183634 +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.11160483400090015 +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.05148270352979,0.11692291700092028 +7,582.6423693083759,0.5656378805250903,20.645782639165798,101.92087559711472,0.1191075409988116 +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.11065708300156984 +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.11624449999726494 +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.11132150000048568 +11,538.6854559697524,0.5229638550765147,19.088180710292786,94.23154963659948,0.11012158300218289 +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.11187833299845806 +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187357,0.10909529199852841 +14,539.7671454695724,0.5240139753360329,19.126510099765202,94.42076818086143,0.11034270900199772 +15,553.593014338471,0.5374363345316143,19.616426210403922,96.83930952841526,0.11316908300068462 +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.11016062499766122 +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968147,0.11236141600238625 +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534613,0.11328029200012679 +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355837,0.10922154199943179 +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538243,0.11311270900114323 +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992971,0.1152214579997235 +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937 +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.11519983299876912 +24,536.9986247763089,0.5213262542576872,19.028408280405582,93.93647443905701,0.10977675000322051 +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.11182866699891747 +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.11108170800071093 +27,544.085117892408,0.5282059272057841,19.279516343011117,95.17610550839221,0.1112254169966036 +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257105,0.11166049999883398 +29,566.5485704249801,0.5500137811297665,20.075503011236478,99.1056081873198,0.11581754200233263 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5c311156d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..3cf48fae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..22067264b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a59c0a4d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a41713f88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0e859a361 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c98f7e0fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5250802bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d86ffc37c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0dfadc5da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1cba177c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..635fa80da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..48ff3f1eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a25456cf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ecffc2b34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/ane_violin.png new file mode 100644 index 000000000..307fb54cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9fb975e55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/dram_violin.png new file mode 100644 index 000000000..42745d37b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ac4b0993a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/time_violin.png new file mode 100644 index 000000000..6271c3dbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/cleaned/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/csv/history_with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/csv/history_with_smell.csv new file mode 100644 index 000000000..a5bd88be4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/csv/history_with_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3901.9193865800326,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836 +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607 +2,3910.2388544515165,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785 +3,3911.2024295099754,5.193629375243073,102.64076515304097,659.6575156478605,0.6256015840008331 +4,3896.403904938974,5.173978627600272,102.25241095443357,657.1616187645627,0.623234542003047 +5,3930.1087127939522,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417 +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612 +7,3946.2917657672665,5.240223999486666,103.56160634882943,665.5756302937743,0.6312141659982444 +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819 +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852 +10,3942.866246351669,5.235675301590572,103.47171124874187,664.9978873443307,0.6306662500028324 +11,3920.5909670871097,5.206096279073792,102.88714633579809,661.2409722664623,0.6271032920012658 +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156 +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094 +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447 +15,3919.6797517552195,5.20488628935831,102.86323352622865,661.0872880599075,0.6269575420010369 +16,3939.657718042438,5.231414743059418,103.38751059520631,664.4567417883288,0.6301530419987103 +17,3906.3868987458522,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914 +18,3907.238977299649,5.188366364136408,102.53675320918299,658.9890457628128,0.6249676250008633 +19,3910.2154035747167,5.192318717719235,102.61486286364361,659.4910453390316,0.6254437080024218 +20,3923.541347906347,5.210014047270941,102.96457248548917,661.7385790552976,0.6275752090004971 +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085 +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521 +23,3944.379726555403,5.237685030155285,103.51142915364579,665.2531486378001,0.630908333001571 +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105 +25,3947.3334959117747,5.241607297942091,103.58894422791965,665.7513269322089,0.6313807920014369 +26,3899.151355134042,5.177626927144285,102.32451164349891,657.6249995797234,0.623674000002211 +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154 +28,3905.69892649689,5.1863213528559315,102.49633801830025,658.7293031120989,0.6247212920025049 +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/csv/history_without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/csv/history_without_smell.csv new file mode 100644 index 000000000..9946063fb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/csv/history_without_smell.csv @@ -0,0 +1,31 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857527,0.11291058300048462 +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.11228495799878146 +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641607,0.10916145800001686 +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344537,0.10824658300043666 +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.11502487500183634 +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.11160483400090015 +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.05148270352979,0.11692291700092028 +7,582.6423693083759,0.5656378805250903,20.645782639165798,101.92087559711472,0.1191075409988116 +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.11065708300156984 +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.11624449999726494 +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.11132150000048568 +11,538.6854559697524,0.5229638550765147,19.088180710292786,94.23154963659948,0.11012158300218289 +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.11187833299845806 +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187357,0.10909529199852841 +14,539.7671454695724,0.5240139753360329,19.126510099765202,94.42076818086143,0.11034270900199772 +15,553.593014338471,0.5374363345316143,19.616426210403922,96.83930952841526,0.11316908300068462 +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.11016062499766122 +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968147,0.11236141600238625 +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534613,0.11328029200012679 +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355837,0.10922154199943179 +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538243,0.11311270900114323 +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992971,0.1152214579997235 +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937 +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.11519983299876912 +24,536.9986247763089,0.5213262542576872,19.028408280405582,93.93647443905701,0.10977675000322051 +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.11182866699891747 +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.11108170800071093 +27,544.085117892408,0.5282059272057841,19.279516343011117,95.17610550839221,0.1112254169966036 +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257105,0.11166049999883398 +29,566.5485704249801,0.5500137811297665,20.075503011236478,99.1056081873198,0.11581754200233263 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png new file mode 100644 index 000000000..5c311156d Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/all_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png new file mode 100644 index 000000000..3cf48fae8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/ane_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png new file mode 100644 index 000000000..22067264b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/cpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png new file mode 100644 index 000000000..a59c0a4d8 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/dram_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png new file mode 100644 index 000000000..a41713f88 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/gpu_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png new file mode 100644 index 000000000..0e859a361 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/comparisons/time_energy_comparison.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/ane_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/ane_moustache.png new file mode 100644 index 000000000..c98f7e0fe Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/ane_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/cpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/cpu_moustache.png new file mode 100644 index 000000000..5250802bc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/cpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/dram_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/dram_moustache.png new file mode 100644 index 000000000..d86ffc37c Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/dram_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/gpu_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/gpu_moustache.png new file mode 100644 index 000000000..0dfadc5da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/gpu_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/time_moustache.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/time_moustache.png new file mode 100644 index 000000000..1cba177c1 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/moustaches/time_moustache.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/ane_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/ane_energy_over_time.png new file mode 100644 index 000000000..635fa80da Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/ane_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/cpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/cpu_energy_over_time.png new file mode 100644 index 000000000..48ff3f1eb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/cpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/dram_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/dram_energy_over_time.png new file mode 100644 index 000000000..a25456cf7 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/dram_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/gpu_energy_over_time.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/gpu_energy_over_time.png new file mode 100644 index 000000000..ecffc2b34 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/time/gpu_energy_over_time.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/ane_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/ane_violin.png new file mode 100644 index 000000000..307fb54cc Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/ane_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/cpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/cpu_violin.png new file mode 100644 index 000000000..9fb975e55 Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/cpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/dram_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/dram_violin.png new file mode 100644 index 000000000..42745d37b Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/dram_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/gpu_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/gpu_violin.png new file mode 100644 index 000000000..ac4b0993a Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/gpu_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/time_violin.png b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/time_violin.png new file mode 100644 index 000000000..6271c3dbb Binary files /dev/null and b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/mac/phase-9/raw/plots/violins/time_violin.png differ diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/mac_report.md new file mode 100644 index 000000000..20c6d52c2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 875 samples (with smell) vs 877 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 613.25 ms | 108.37 ms | +| **Average Power** | 6.227 W | 4.551 W | +| **Total Energy** | 3341.35 J | 432.52 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.24% | 0.00e+00 | +8.245 | large | βœ… | +| `gpu_mj` | +84.73% | 1.53e-265 | +2.269 | large | βœ… | +| `ane_mj` | +81.57% | 7.15e-43 | +0.691 | medium | βœ… | +| `dram_mj` | +86.54% | 0.00e+00 | +19.272 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.465 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.245, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.691, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.272, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.465, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..db0193cda --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/with_smell.csv @@ -0,0 +1,876 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3901.919386580033,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836 +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607 +2,3910.238854451517,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785 +3,3911.202429509975,5.193629375243073,102.64076515304096,659.6575156478605,0.6256015840008331 +4,3896.403904938974,5.173978627600272,102.25241095443356,657.1616187645627,0.623234542003047 +5,3930.108712793952,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417 +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612 +7,3946.2917657672665,5.240223999486666,103.56160634882944,665.5756302937743,0.6312141659982444 +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819 +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852 +10,3942.866246351669,5.235675301590572,103.47171124874188,664.9978873443307,0.6306662500028324 +11,3920.5909670871097,5.206096279073792,102.88714633579808,661.2409722664623,0.6271032920012658 +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156 +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094 +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447 +15,3919.679751755219,5.20488628935831,102.86323352622864,661.0872880599075,0.6269575420010369 +16,3939.657718042438,5.231414743059418,103.38751059520632,664.4567417883288,0.6301530419987103 +17,3906.386898745852,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914 +18,3907.238977299649,5.188366364136408,102.536753209183,658.9890457628128,0.6249676250008633 +19,3910.2154035747167,5.192318717719235,102.6148628636436,659.4910453390316,0.6254437080024218 +20,3923.541347906347,5.210014047270941,102.96457248548916,661.7385790552976,0.6275752090004971 +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085 +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521 +23,3944.379726555403,5.237685030155285,103.5114291536458,665.2531486378001,0.630908333001571 +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105 +25,3947.333495911774,5.241607297942091,103.58894422791964,665.7513269322089,0.6313807920014369 +26,3899.151355134042,5.177626927144285,102.32451164349892,657.6249995797234,0.623674000002211 +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154 +28,3905.69892649689,5.1863213528559315,102.49633801830024,658.7293031120989,0.6247212920025049 +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838 +0,3910.189399402901,5.064969011966773,108.26371263078975,658.2793607329183,0.6260335840015614 +1,3891.337220217528,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194 +2,3907.058080336083,5.060912933751627,108.17701395894105,657.752203988575,0.6255322500001057 +3,3951.59134928142,5.118598023697437,109.41003275653271,665.2493681456768,0.632662166000955 +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164 +5,3922.660266933899,5.081122847790299,108.60900087151764,660.3788280137984,0.6280302089980978 +6,3930.0888097662346,5.090745230597534,108.81467930402228,661.6294212529888,0.6292195419991913 +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145 +8,3942.416276003112,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765 +9,3854.415707263761,4.992723912429943,106.71947362819004,648.8898742766679,0.6171040410008573 +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072 +11,3887.387947176371,5.035433703786343,107.63239541843308,654.4407422256527,0.6223830000017188 +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194 +13,3942.922980650436,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838 +14,3923.878487924429,5.082700840807135,108.64273047225252,660.5839151983221,0.6282252499986498 +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408 +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367 +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995 +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112 +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427 +20,3869.410472914197,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875 +21,3881.1130856960726,5.027305714140381,107.45865963975064,653.3843709397581,0.6213783750026778 +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678 +23,3928.4846375733423,5.088667305050476,108.77026364545392,661.3593592846852,0.6289627090009162 +24,3922.13378131762,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337 +25,3911.223882566581,5.066309004645449,108.29235497429649,658.4535157024397,0.626199207999889 +26,3896.116177201257,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608 +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889 +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519 +29,3903.2857744554663,5.056026568811887,108.07256790835407,657.1171372820976,0.6249282919998222 +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121 +1,3980.12865087621,4.269844255224866,105.04484031018048,671.0660693934268,0.6250826669966045 +2,3971.13262941209,4.260193408747831,104.8074144073978,669.5493031545323,0.6236698339998838 +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611 +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523 +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475 +6,3990.206595708371,4.280655778826397,105.31082068378376,672.765252364458,0.6266654169994581 +7,4021.568777932776,4.314300830368314,106.13854152210796,678.0530453478076,0.6315908750002563 +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759 +9,3997.3794308539345,4.288350728318347,105.50012846464432,673.9746218873453,0.6277919169988309 +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202 +11,3968.9393336960334,4.25784046191252,104.74952823876971,669.1795044710481,0.6233253749996948 +12,3979.600159699821,4.269277294904891,105.0308922004336,670.9769636062633,0.6249996669976099 +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161 +14,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824 +15,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711 +16,3976.313797783479,4.265751717020369,104.94415747575891,670.4228694632716,0.6244835409997904 +17,3991.684352559485,4.282241102356066,105.34982211968163,673.0144082507576,0.6268974999984493 +18,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932 +19,3945.661844046774,4.23286859186177,104.13518121697432,665.2548239256503,0.6196696250008245 +20,3953.734597793666,4.2415289654912565,104.34823994009348,666.6159234280282,0.6209374579993892 +21,3949.024607959405,4.236476133083047,104.22393236780093,665.8217997596224,0.6201977499986242 +22,3953.6438628657106,4.241431625921392,104.34584523458176,666.6006251457864,0.620923208000022 +23,3980.280939138054,4.270007628627338,105.04885955115223,671.0917458210638,0.6251065840006049 +24,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405 +25,3931.6565666482784,4.217843863143608,103.76554941436892,662.8934765223435,0.6174700840019796 +26,3941.93640780823,4.228871979210103,104.03685830103603,664.6267000450754,0.6190845419987454 +27,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492 +28,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411 +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153 +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463 +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461 +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329 +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703 +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084 +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313 +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481 +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714 +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226 +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025 +11,2887.674248714824,2.131296944146192,0.0,576.88214005382,0.6101675410027383 +12,2878.129996539094,2.12425264699067,0.0,574.975446934678,0.6081508339993889 +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829 +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129 +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895 +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531 +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873 +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236 +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326 +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912 +21,2877.9582412967975,2.124125880121724,0.0,574.9411347085722,0.6081145419993845 +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427 +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106 +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583 +25,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333 +26,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665 +27,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394 +28,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021 +0,2951.495904520558,2.2148803831535737,0.033558793684145,582.077276451496,0.6138243749992398 +1,2934.3258093471427,2.201995490811955,0.0333635680426053,578.6910876989903,0.6102534999990894 +2,2958.2731076379414,2.219966175146153,0.033635851138578,583.4138379986367,0.6152338339998096 +3,2935.405490800975,2.202805712255422,0.0333758441250821,578.9040163495498,0.6104780419991584 +4,2932.144611632538,2.2003586625099203,0.0333387676137866,578.2609242611298,0.6097998750010447 +5,2944.56143397673,2.2096765735356927,0.0334799480838741,580.7096995147969,0.6123822089975874 +6,2943.7381974341965,2.2090587951183283,0.0334705878048231,580.5473454746576,0.612210999999661 +7,2933.019134274525,2.201014927369172,0.033348711020745,578.4333926548225,0.6099817499998608 +8,2934.32941563607,2.2019981970662945,0.033363609046459,578.6917989108315,0.6102542500011623 +9,2925.5930077164485,2.195442166108989,0.0332642752440755,576.9688541084912,0.6084373340017919 +10,2917.215217792331,2.189155251555359,0.0331690189629599,575.316633912541,0.6066950000022189 +11,2923.9008598754463,2.194172333732569,0.0332450353595843,576.6351383119911,0.6080854169995291 +12,2924.1478899759636,2.1943577116363113,0.0332478441157016,576.6838561868458,0.608136791997822 +13,2930.0543738836395,2.198790092965551,0.0333150014085689,577.8486994316285,0.6093651670016698 +14,2933.8690140150657,2.201652699545132,0.0333583742355323,578.6010011153077,0.6101584999996703 +15,2921.9182046353953,2.1926844969407173,0.0332224923778896,576.2441302944961,0.6076730829990993 +16,2933.0884565591487,2.2010669486401797,0.0333494992218209,578.4470640024837,0.6099961669970071 +17,2923.955156023265,2.19421307899415,0.0332456527120325,576.645846290205,0.608096709001984 +18,2920.4111839350135,2.1915535888540183,0.033205357406879,575.9469242223173,0.6073596669994004 +19,2923.425629243495,2.193815708130423,0.03323963194137,576.5414160230634,0.6079865829997289 +20,2927.2629120147917,2.1966953063442443,0.033283262217337,577.2981831597108,0.6087846250011353 +21,2927.0900125724725,2.196565558041878,0.0332812963339678,577.2640849126723,0.6087486670003273 +22,2935.697195491655,2.2030246151500767,0.0333791608356072,578.9615446936073,0.610538707998785 +23,2924.6337375033436,2.194722304436847,0.0332533682490431,576.7796722796531,0.6082378339997376 +24,2924.4710510312407,2.1946002202167354,0.0332515184881323,576.7475881766557,0.6082039999964763 +25,2911.763322173297,2.1850640052693304,0.0331070303828686,574.2414419908566,0.6055611659976421 +26,2927.3087935001095,2.1967297370211165,0.0332837838942593,577.3072316459284,0.6087941670011787 +27,2926.9894358421257,2.19649008261035,0.0332801527668234,577.2442497405534,0.6087277499973425 +28,2917.142890252357,2.1891009750614616,0.0331681965918403,575.3023698854705,0.6066799580003135 +0,3932.41265398972,4.478944969047389,106.51806719621725,662.7828265851253,0.6318551250005839 +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532 +2,3908.699448921323,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069 +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925 +4,3869.162738242476,4.406904489866914,104.8048037702936,652.1224606396295,0.6216922079984215 +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051 +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978 +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778 +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074 +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706 +10,3894.38802258755,4.435635620180903,105.48808621527964,656.3740198554913,0.6257453749967681 +11,3910.956019959519,4.4545062614400495,105.93686695439756,659.1664491082828,0.6284075000003213 +12,3903.508961494342,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862 +13,3851.845836610113,4.3871808605659375,104.33573730804557,649.2038083969791,0.6189097499991476 +14,3886.53331843636,4.426689258052392,105.27532423473473,655.0501600581138,0.6244832910015248 +15,3901.3203334792697,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713 +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272 +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295 +18,3870.832218570019,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032 +19,3910.039595065132,4.453462470507768,105.91204356553436,659.0119915944615,0.6282602499995846 +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754 +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134 +22,3893.81000588388,4.434977269891977,105.47242935840843,656.2765988627368,0.6256524999989779 +23,3910.340138863701,4.453804784311792,105.92018445697892,659.062646316093,0.6283085409995692 +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367 +25,3905.901941366857,4.448749759801594,105.79996609212364,658.314616711693,0.6275954170014302 +26,3892.3977655668273,4.43336875440296,105.43417571561324,656.0385748526666,0.6254255829990143 +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478 +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464 +29,3882.8875904046654,4.422536841543025,105.176571652636,654.4356960782576,0.6238975000014761 +0,2919.8438339372997,1.8030529009870455,0.0,578.746591348305,0.6114040419997764 +1,2940.8832996175584,1.816045126526332,0.0,582.9168551496465,0.6158096250001108 +2,2918.2461827418515,1.802066324380024,0.0,578.4299185273882,0.6110694999988482 +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858 +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065 +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882 +6,2918.686534688,1.8023382491469344,0.0,578.5172013419226,0.61116170799869 +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931 +8,2928.492909138035,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707 +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285 +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552 +11,2901.6572096881105,1.7918223532329065,0.0,575.1417934923327,0.6075958329965943 +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582 +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802 +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459 +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779 +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259 +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319 +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815 +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445 +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325 +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322 +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245 +23,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916 +24,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485 +25,2885.41686295252,1.781793664727619,0.0,571.9227701985892,0.6041951670013077 +26,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423 +27,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737 +28,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253 +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118 +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383 +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707 +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253 +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816 +5,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121 +6,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468 +7,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847 +8,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303 +9,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009 +10,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886 +11,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326 +12,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613 +13,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585 +14,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853 +15,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831 +16,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403 +17,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213 +18,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625 +19,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838 +20,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121 +21,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417 +22,2895.520515500325,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469 +23,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353 +24,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964 +25,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662 +26,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742 +27,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383 +28,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062 +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959 +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716 +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105 +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413 +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463 +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355 +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888 +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446 +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244 +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718 +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669 +11,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169 +12,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923 +13,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987 +14,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699 +15,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191 +16,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126 +17,2890.736802936653,2.130044618540409,0.0,576.0772234736866,0.6092155839978659 +18,2899.8549367525866,2.136763331861536,0.0,577.8943204873644,0.6111372079976718 +19,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774 +20,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751 +21,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521 +22,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356 +23,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575 +24,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191 +25,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396 +26,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963 +27,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486 +28,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595 +0,2880.5533097361076,1.825887494790604,0.0,573.3286733642497,0.6070650420006132 +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006 +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765 +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952 +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557 +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265 +6,2887.4259199457047,1.830243815153036,0.0,574.6965579580532,0.6085134170025412 +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313 +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573 +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542 +10,2889.5760202011456,1.8316066926098376,0.0,575.124501479489,0.6089665419967787 +11,2886.0018121415305,1.8293411203054568,0.0,574.4131117759134,0.6082132920018921 +12,2885.7890726205305,1.8292062717575304,0.0,574.3707693318646,0.6081684580021829 +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014 +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828 +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965 +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266 +17,2884.020161092751,1.8280850172308232,0.0,574.0186954104786,0.6077956670014828 +18,2897.609582545234,1.8366989021423303,0.0,576.7234552726918,0.6106595829987782 +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742 +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978 +21,2887.338331075706,1.830188295464553,0.0,574.6791247758696,0.6084949579999375 +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784 +23,2886.9599134100326,1.829948429019025,0.0,574.6038067119739,0.6084152079965861 +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548 +25,2884.892258368299,1.8286378108570625,0.0,574.1922726091175,0.6079794580000453 +26,2884.9082776565983,1.8286479649542224,0.0,574.1954609956258,0.6079828340007225 +27,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738 +28,2886.107584019245,1.8294081656012915,0.0,574.4341639988056,0.6082355830003507 +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732 +1,2896.197005839203,2.303364416405272,0.0,578.6118178196027,0.6105097500003467 +2,2891.913463676345,2.299957687313914,0.0,577.7560375972763,0.6096067920007044 +3,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047 +4,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838 +5,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925 +6,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505 +7,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595 +8,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481 +9,2883.2526825801706,2.293069711476986,0.0,576.0257581018926,0.6077811249997467 +10,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576 +11,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386 +12,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493 +13,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134 +14,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784 +15,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753 +16,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699 +17,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159 +18,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282 +19,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848 +20,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501 +21,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107 +22,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373 +23,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919 +24,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884 +25,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782 +26,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034 +27,2898.382757621868,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129 +28,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197 +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472 +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569 +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239 +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394 +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282 +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405 +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909 +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421 +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795 +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559 +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654 +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195 +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255 +13,2895.9775494362375,1.2657535699498177,0.0,576.1177301540012,0.6104503339993244 +14,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398 +15,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095 +16,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925 +17,2892.9834865033354,1.264444945907924,0.0,575.522099590091,0.609819208002591 +18,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311 +19,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305 +20,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842 +21,2887.0621846104905,1.2618569047778825,0.0,574.3441322378487,0.608571042001131 +22,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829 +23,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487 +24,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155 +25,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769 +26,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812 +27,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479 +28,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126 +0,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265 +1,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777 +2,2883.2836595675476,1.724392449394602,0.0,574.8527521202967,0.6075725420014351 +3,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583 +4,2895.5215166664366,1.7317114893746155,0.0,577.2926666982493,0.6101513329995214 +5,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914 +6,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713 +7,2892.0002968654867,1.729605569335403,0.0,576.590625854408,0.6094093330029864 +8,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046 +9,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127 +10,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929 +11,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064 +12,2929.81050511024,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686 +13,2896.032852824472,1.7320173018835905,0.0,577.3946140029238,0.6102590829977999 +14,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724 +15,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483 +16,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001 +17,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563 +18,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858 +19,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492 +20,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169 +21,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306 +22,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008 +23,2892.911846698592,1.7301507358313315,0.0,576.7723654930026,0.6096014169997943 +24,2888.988239731408,1.727804161915112,0.0,575.9900989768936,0.6087746250013879 +25,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271 +26,2895.1272397065154,1.731475685932106,0.0,577.2140579929434,0.6100682500000403 +27,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418 +28,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198 +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527 +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564 +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987 +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384 +4,2893.026344318771,1.8327376373551,0.0,574.8798130845488,0.6091410410008393 +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858 +6,2890.589531602901,1.8311939119105216,0.0,574.3955885141876,0.608627958001307 +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217 +8,2885.062076872394,1.827692258929286,0.0,573.2972154736007,0.6074641250015702 +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232 +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973 +11,2877.88322905155,1.823144445315372,0.0,571.8706903741963,0.6059525829987251 +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582 +13,2899.5976737820447,1.8369005869453976,0.0,576.1856168360363,0.6105246670013003 +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935 +15,2893.7573506004273,1.8332007312111809,0.0,575.0250729973689,0.6092949579979177 +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482 +17,2903.462655182409,1.8393490599411704,0.0,576.9536360382741,0.6113384579984995 +18,2896.517124134783,1.834949052942479,0.0,575.5734738429754,0.6098760419990867 +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857 +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489 +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384 +22,2893.456165583078,1.8330099299354896,0.0,574.9652238408559,0.6092315419991792 +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818 +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026 +25,2893.683735625488,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463 +26,2885.7042275061403,1.8280990625650808,0.0,573.4248186795049,0.6075993330014171 +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378 +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905 +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568 +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368 +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331 +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703 +3,3935.267962817907,4.790650299087921,105.05929606950852,659.6356950282599,0.6278394580003805 +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595 +5,3923.989045361744,4.776919760330386,104.75818439437823,657.7451054608762,0.6260399999991932 +6,3898.694465671203,4.7461270705047545,104.0828985531672,653.5051889387316,0.6220044590008911 +7,3894.514781749232,4.741038877217773,103.971314118566,652.8045838630626,0.6213376249979774 +8,3918.225926213384,4.769903951309849,104.60432721194184,656.7790825265099,0.6251205420012411 +9,3904.976514887927,4.753774605880575,104.25060953875165,654.5581957327869,0.6230067079995933 +10,3900.61585011822,4.748466093174299,104.13419348387832,653.8272543678459,0.622310999999172 +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011 +12,3890.512694027786,4.736166883005214,103.86447094478568,652.1337477368717,0.620699125000101 +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967 +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517 +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265 +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703 +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107 +18,3901.9553617383385,4.750096765292231,104.1699542374576,654.0517853748532,0.6225247080001282 +19,3916.8843211021353,4.76827073065291,104.56851056872397,656.5542006052852,0.6249065000010887 +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055 +21,3945.550802306459,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603 +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766 +23,3902.181791517138,4.750372412566515,104.17599920145868,654.0897398841586,0.6225608329987153 +24,3924.885099333542,4.778010583437871,104.78210622140676,657.89530341183,0.6261829579998448 +25,3922.3157590073897,4.774882763142472,104.71351290359992,657.4646266173096,0.6257730409997748 +26,3926.91669945643,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049 +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414 +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465 +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341 +0,3918.98590650998,5.811744006176802,104.04357804161344,658.8981264933894,0.6259630829990783 +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426 +2,3895.8175551975046,5.777386003855434,103.42849081614756,655.0028373451503,0.622262500000943 +3,3895.0135710260497,5.776193718325202,103.40714616427016,654.8676636862141,0.6221340830015833 +4,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738 +5,3919.633892088269,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375 +6,3916.25597151212,5.807695590658208,103.97110209712828,658.4391432006579,0.6255270420006127 +7,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078 +8,3902.03785350188,5.786610528324133,103.59363100994068,656.0486545531619,0.6232560420030495 +9,3910.647659587238,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752 +10,3934.942942332293,5.835407833888616,104.46721495725885,661.5809789604639,0.6285118330015393 +11,3885.9065565334263,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964 +12,3895.060006851172,5.776262581325674,103.40837897028432,654.8754709299515,0.6221414999999979 +13,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226 +14,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504 +15,3888.3659841602007,5.766335537141401,103.23066205859465,653.7500065585541,0.6210722920004628 +16,3914.404354325165,5.804949695331016,103.92194425836848,658.1278312631894,0.625231291000091 +17,3953.712874083537,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388 +18,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325 +19,3938.661296366054,5.840922046566098,104.56593204053677,662.2061449000541,0.6291057500020543 +20,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758 +21,3916.1808364849194,5.807584167561926,103.96910736755976,658.4265107672076,0.6255150409997441 +22,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244 +23,3892.105981516816,5.771881846247623,103.32995374173188,654.3788113846371,0.6216696659976151 +24,3870.0916956217825,5.7392352899310515,102.74550533411048,650.6775549682176,0.618153416999121 +25,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036 +26,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518 +27,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333 +28,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414 +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901 +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142 +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616 +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762 +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902 +5,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627 +6,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874 +7,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908 +8,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865 +9,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068 +10,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236 +11,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381 +12,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771 +13,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913 +14,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114 +15,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037 +16,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645 +17,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216 +18,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751 +19,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859 +20,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738 +21,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113 +22,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915 +23,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869 +24,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682 +25,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566 +26,2920.540539483107,2.261690221786506,0.0,576.6644862549181,0.6069196249991364 +27,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783 +0,4178.899201105131,5.488284972494792,106.22806997967332,659.321559768019,0.6223265419976087 +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206 +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914 +3,4220.901846967973,5.543448420809863,107.29578178350656,665.9484843842789,0.6285816249983327 +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172 +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912 +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368 +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697 +8,4225.91204815074,5.550028481858783,107.42314163983296,666.7389637664328,0.6293277500008116 +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834 +10,4255.092473689515,5.5883520889305,108.16491121526325,671.3428756473014,0.6336733329990238 +11,4192.928435888898,5.506710025297929,106.5846946462786,661.5350079788633,0.6244157920009457 +12,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666 +13,4163.911680836073,5.468601372027502,105.84708559231544,656.9569190420027,0.6200945830023556 +14,4176.033033663473,5.484520741068836,106.1552116930974,658.8693531228598,0.6218997089999903 +15,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769 +16,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779 +17,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807 +18,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965 +19,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122 +20,4177.193318685504,5.486044581330055,106.18470626393656,659.0524159089396,0.6220724999984668 +21,4240.824025130627,5.56961286885411,107.80220570860396,669.0916857270402,0.6315484590013511 +22,4186.504453143061,5.498273198691004,106.4213963096036,660.5214706523857,0.6234591249994992 +23,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181 +24,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926 +25,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411 +26,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244 +27,4209.1590568276115,5.528026230524569,106.99727878720144,664.095777645307,0.6268328749974899 +28,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153 +0,2961.1375400963516,2.533336932338099,0.0,582.5008275343196,0.6103282920012134 +1,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373 +2,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715 +3,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253 +4,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257 +5,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351 +6,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131 +7,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213 +8,2955.905773306222,2.528861007849166,0.0,581.4716593705813,0.6092499580008734 +9,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297 +10,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951 +11,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527 +12,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587 +13,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875 +14,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105 +15,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127 +16,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394 +17,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971 +18,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966 +19,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951 +20,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086 +21,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334 +22,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168 +23,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722 +24,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954 +25,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092 +26,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243 +27,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267 +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217 +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801 +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909 +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121 +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203 +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098 +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605 +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971 +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547 +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134 +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695 +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172 +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701 +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134 +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964 +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188 +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913 +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462 +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725 +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809 +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217 +21,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129 +22,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713 +23,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781 +24,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903 +25,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854 +26,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921 +27,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723 +28,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385 +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527 +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256 +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887 +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624 +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048 +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276 +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462 +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564 +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943 +9,2911.6807159487107,2.395513992598981,0.0,578.1173768805539,0.6088341670001682 +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115 +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415 +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134 +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991 +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045 +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869 +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593 +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571 +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506 +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875 +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202 +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929 +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303 +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345 +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896 +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476 +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539 +27,2900.4514699927317,2.386275405529134,0.0,575.8877978676978,0.6064861250015383 +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997 +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562 +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794 +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635 +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166 +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775 +5,2933.95348805359,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838 +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928 +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211 +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087 +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981 +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659 +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679 +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196 +13,2934.7404678341923,2.498502015864287,0.0,583.0171170618786,0.6106430830004683 +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203 +15,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892 +16,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375 +17,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906 +18,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768 +19,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191 +20,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664 +21,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131 +22,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699 +23,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191 +24,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552 +25,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684 +26,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217 +27,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517 +28,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705 +0,2916.2755902573767,2.778202283975463,0.0,582.3513655012664,0.6122291249994305 +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344 +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462 +3,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494 +4,2910.084396408831,2.772304216951885,0.0,581.1150453798662,0.6109293750014331 +5,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939 +6,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087 +7,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651 +8,2915.6827503916365,2.777637512568216,0.0,582.2329812489377,0.6121046669977659 +9,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618 +10,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109 +11,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725 +12,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288 +13,2910.23364716231,2.772446401313879,0.0,581.1448492778177,0.6109607079997659 +14,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568 +15,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962 +16,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443 +17,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258 +18,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842 +19,2907.473272598668,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353 +20,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615 +21,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745 +22,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742 +23,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454 +24,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221 +25,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285 +26,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206 +27,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614 +28,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375 +0,2916.763315644649,1.67067423255281,0.0,579.3229968800124,0.6117394579996471 +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503 +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236 +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066 +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468 +5,2911.317883364726,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165 +6,2904.907730762028,1.6638835477999545,0.0,576.9682590351122,0.6092529589986952 +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608 +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151 +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957 +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525 +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145 +12,2910.385942948952,1.6670213779735783,0.0,578.0563330261181,0.6104019170015818 +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145 +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146 +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738 +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285 +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401 +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839 +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941 +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607 +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747 +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453 +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695 +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931 +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845 +26,2919.6262939438634,1.6723140996092831,0.0,579.8916371805151,0.6123399170028279 +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624 +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778 +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547 +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467 +1,3903.728343298676,4.398604694153814,104.4335387233186,657.7913383530023,0.6261754590013879 +2,3896.366740257168,4.390309859358135,104.23659923657875,656.550883513103,0.6249946249990899 +3,3867.204522235971,4.357450741663593,103.45644412404316,651.63695182151,0.620316874999844 +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219 +5,3883.288345022032,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649 +6,3913.1526881477103,4.40922376491048,104.68566120628368,659.3793721161582,0.6276871660011238 +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447 +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342 +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838 +10,3932.1188059921474,4.430594220957613,105.1930476400088,662.5752266795704,0.6307294159996673 +11,3893.858755217265,4.387483936599365,104.16950497956373,656.1282796096323,0.6245923329988727 +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107 +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145 +14,3880.918548161949,4.372903297146174,103.82332525194025,653.9478112550415,0.6225166660005925 +15,3906.1908620137183,4.401379386813467,104.4994166535864,658.2062810280139,0.6265704580000602 +16,3930.222044592053,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943 +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557 +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798 +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723 +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463 +21,3891.139591523075,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553 +22,3941.683689330291,4.4413716462931685,105.4489298445666,664.1869416502057,0.6322636660006538 +23,3892.6048936178126,4.386071122737294,104.13596135347484,655.9169997184408,0.6243912079989968 +24,3895.8038444594863,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387 +25,3904.985839441688,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816 +26,3869.997206323634,4.360597454820098,103.53115472277416,652.1075284708238,0.6207648339986918 +27,3899.157859558534,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278 +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943 +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187 +0,2884.6844519453502,1.803721085721138,0.0,577.4579653693895,0.6114691249968018 +1,2878.9248167003684,1.800119729763321,0.0,576.304997928672,0.6102482499991311 +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427 +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472 +4,2882.651347302002,1.8024498362046744,0.0,577.0509771908595,0.6110381660000712 +5,2883.2398715165705,1.8028178256860057,0.0,577.1687883418456,0.6111629160004668 +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607 +7,2872.177626013424,1.7959008800713845,0.0,574.9543410124832,0.6088180419974378 +8,2883.9494831095662,1.8032615280785136,0.0,577.3108388411359,0.6113133329999982 +9,2895.4779954549176,1.810470018695324,0.0,579.6186237630511,0.6137570419996337 +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427 +11,2881.051089801741,1.8014492351878608,0.0,576.7306366282913,0.6106989579966466 +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899 +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684 +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046 +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056 +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859 +17,2876.165985025137,1.798394701273215,0.0,575.752733252062,0.6096634579989768 +18,2874.9411706166497,1.797628855437566,0.0,575.5075491260119,0.6094038330011244 +19,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265 +20,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629 +21,2881.6203519457463,1.80180518057792,0.0,576.8445918857607,0.6108196249988396 +22,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016 +23,2881.1031818804754,1.8014818070626624,0.0,576.7410644536909,0.6107100000008359 +24,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997 +25,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505 +26,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135 +27,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412 +28,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503 +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902 +1,2891.2179356716797,1.8025049474262345,0.0,577.6694559288594,0.610794749998604 +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615 +3,2890.2822721394496,1.8019216160470384,0.0,577.4825090242601,0.6105970829994476 +4,2888.0888706578953,1.8005541587642735,0.0,577.044264288417,0.6101337079999212 +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195 +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254 +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625 +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879 +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803 +10,2881.393286312906,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755 +11,2888.1411383469012,1.8005867446053,0.0,577.0547074470245,0.6101447500004724 +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915 +13,2877.2999624761123,1.7938279067806189,0.0,574.8886250878775,0.607854458001384 +14,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717 +15,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456 +16,2905.045772924987,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403 +17,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848 +18,2891.0660697041267,1.8024102678953409,0.0,577.6391128925327,0.6107626670018362 +19,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701 +20,2882.54195887732,1.797095984337481,0.0,575.9359834248971,0.6089618749974761 +21,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447 +22,2878.608193025542,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499 +23,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453 +24,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866 +25,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225 +26,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195 +27,2882.0064778239716,1.7967621432817775,0.0,575.828993548786,0.6088487500019255 +28,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754 +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346 +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122 +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938 +3,2875.852308278687,1.3273726080466577,0.0,572.9272019481385,0.6067970830008562 +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447 +5,2887.2685299862255,1.332641856379874,0.0,575.201541259963,0.6092058750000433 +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371 +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983 +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988 +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336 +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573 +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017 +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408 +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017 +14,2885.526801565024,1.3318379477124145,0.0,574.8545541813708,0.6088383749993227 +15,2889.1212408691845,1.3334969898891955,0.0,575.570638260924,0.6095967920009571 +16,2872.3532493423795,1.3257575894406517,0.0,572.2301195423212,0.6060587909996684 +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522 +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246 +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503 +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753 +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069 +22,2881.77754512887,1.3301074484515285,0.0,574.1076274378909,0.6080472920002649 +23,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095 +24,2893.6888300427822,1.3356051971627023,0.0,576.4805932253515,0.6105605410011776 +25,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662 +26,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984 +27,2892.5888965608005,1.3350975140767345,0.0,576.2614645133705,0.6103284580021864 +28,2898.673296586618,1.3379058175168723,0.0,577.4735984857201,0.6116122500025085 +0,2896.950584654971,1.635243455574937,0.0,578.7093216964283,0.6113373329972092 +1,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016 +2,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356 +3,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268 +4,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356 +5,2884.313628671702,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567 +6,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811 +7,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459 +8,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387 +9,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671 +10,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383 +11,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422 +12,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622 +13,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879 +14,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377 +15,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079 +16,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865 +17,2895.925838535033,1.6346650165103809,0.0,578.5046132919696,0.6111210829985794 +18,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398 +19,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964 +20,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497 +21,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405 +22,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144 +23,2894.0532612962406,1.6336080016993535,0.0,578.1305379075203,0.61072591699849 +24,2894.1069651130647,1.6336383159254455,0.0,578.1412660502684,0.610737250000966 +25,2887.702792283546,1.630023348599695,0.0,576.8619364911697,0.6093857910018414 +26,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123 +27,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185 +28,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258 +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375 +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712 +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556 +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808 +4,2897.009265067062,2.535967566748408,0.0,577.366405361154,0.6108203750009125 +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125 +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013 +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129 +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921 +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624 +10,2892.0727798560765,2.531646294276225,0.0,576.3825767087042,0.6097795409987157 +11,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565 +12,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538 +13,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249 +14,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274 +15,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156 +16,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747 +17,2904.8236489370047,2.542808077853171,0.0,578.9237917249135,0.6124679999993532 +18,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813 +19,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951 +20,2887.1623848924046,2.527347860537005,0.0,575.4039477746288,0.608744207998825 +21,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676 +22,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325 +23,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941 +24,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643 +25,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333 +26,2890.892017617972,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591 +27,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687 +28,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..43a7d11a1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/cleaned/mac/without_smell.csv @@ -0,0 +1,878 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857528,0.1129105830004846 +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.1122849579987814 +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641608,0.1091614580000168 +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344536,0.1082465830004366 +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.1150248750018363 +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.1116048340009001 +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.0514827035298,0.1169229170009202 +7,582.6423693083759,0.5656378805250903,20.6457826391658,101.92087559711472,0.1191075409988116 +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.1106570830015698 +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.1162444999972649 +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.1113215000004856 +11,538.6854559697524,0.5229638550765147,19.088180710292782,94.23154963659948,0.1101215830021828 +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.111878332998458 +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187356,0.1090952919985284 +14,539.7671454695724,0.5240139753360329,19.1265100997652,94.42076818086144,0.1103427090019977 +15,553.593014338471,0.5374363345316143,19.61642621040392,96.83930952841526,0.1131690830006846 +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.1101606249976612 +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968148,0.1123614160023862 +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534612,0.1132802920001267 +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355836,0.1092215419994317 +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538245,0.1131127090011432 +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992972,0.1152214579997235 +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937 +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.1151998329987691 +24,536.9986247763089,0.5213262542576872,19.028408280405586,93.936474439057,0.1097767500032205 +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.1118286669989174 +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.1110817080007109 +27,544.085117892408,0.5282059272057841,19.279516343011117,95.1761055083922,0.1112254169966036 +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257103,0.1116604999988339 +29,566.5485704249801,0.5500137811297665,20.07550301123648,99.1056081873198,0.1158175420023326 +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951331,0.1165232500025013 +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.109883916000399 +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729285,0.1088155409997853 +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658149,0.1146176250003918 +4,553.11275808707,0.4312899385275857,15.327380892288048,94.31979194107126,0.110460084000806 +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839276,0.1107872500033408 +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067 +7,547.9159557125065,0.4272377293823527,15.183371613434383,93.43360497184838,0.1094222499996249 +8,557.4791708931641,0.4346946510083453,15.448379135835042,95.06437637051738,0.1113320840013329 +9,533.7877060177743,0.4162212199034948,14.791861815031895,91.02437909120276,0.1066007499975967 +10,552.6339298454541,0.4309165719764217,15.314112019469755,94.23813954838208,0.1103644590002659 +11,536.8584659497922,0.418615646433979,14.876956050192176,91.54802175475405,0.1072139999996579 +12,537.1480562614719,0.4188414546184701,14.884980925671789,91.5974042677162,0.107271832999686 +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.1069220419994962 +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073804,0.112219291000656 +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.111232209001173 +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326 +17,561.6544679972243,0.4379503409287378,15.564081346852063,95.77637071233858,0.1121659169984923 +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.1104156669971416 +19,562.1610470070955,0.4383453461547649,15.578119224884723,95.86275531676898,0.1122670840013597 +20,529.2493757437318,0.4126824546946085,14.66609954376224,90.25047836129016,0.1056944170013594 +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.1101329169978271 +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.1124342920011258 +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.1112789590006286 +24,556.7222241829976,0.4341044214478748,15.427403285301398,94.93529770586986,0.1111809169997286 +25,558.98491731835,0.4358687575059111,15.49010507444084,95.32114442994656,0.1116327909985557 +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225053,0.1109062089999497 +27,561.1524807485683,0.4375589161307214,15.550170711722563,95.6907691199724,0.1120656669991149 +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.1134994999993068 +29,557.0070174500534,0.4343264891345185,15.43529522924212,94.98386220072588,0.1112377919998834 +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.1125216660002479 +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568808,0.1101577499975974 +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097 +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.112258417000703 +4,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070756,0.1136530000003404 +5,581.2750486108054,1.8699591852123023,19.899188310561104,101.4717474843506,0.1187752500009082 +6,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.1096269589979783 +7,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.1114606659975834 +8,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713872,0.1128588749998016 +9,530.8233484268193,1.70765629539432,18.172040577403703,92.66451897271818,0.1084661660024721 +10,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788 +11,561.3068844925039,1.8057216921458392,19.215604422080258,97.98595446436669,0.1146950410002318 +12,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393 +13,552.9138385846918,1.7787213016685075,18.928279512095063,96.52080119997412,0.1129800420021638 +14,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.1120357909967424 +15,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.1092452910015708 +16,560.2365478283398,1.802278423969773,19.178962851300977,97.79910844032202,0.114476332997583 +17,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733424,0.1063855409993266 +18,545.8038038438997,1.7558483522747603,18.684876805338963,95.27962002155115,0.1115272080023714 +19,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.1126457079990359 +20,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697 +21,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.1090439170002355 +22,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.112828207998973 +23,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.1119214999998803 +24,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654147,0.1058321659984358 +25,548.6950850466077,1.7651495907417427,18.78385602223288,95.784343829684,0.1121180000009189 +26,546.7342628234665,1.75884163457625,18.716729847188773,95.4420479441754,0.1117173339989676 +27,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.1114615829974354 +28,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651888,0.1148124999999709 +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.1091742919998068 +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111 +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464 +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.1080349999974714 +4,352.95630957691594,0.902188806075616,0.0,74.88167090427612,0.1085900830003083 +5,355.88853599161115,0.9096838466130364,0.0,75.503759268882,0.1094922079973912 +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448 +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.1080987919995095 +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.1078200419979111 +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.1075920420007605 +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.1079821250023087 +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.1082636669998464 +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.106822749999992 +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.1075403750000987 +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614 +15,356.18445481047524,0.9104402423442992,0.0,75.56654011457682,0.1095832499995594 +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.1081861250022484 +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.1078271250007674 +18,353.32834195736103,0.9031397550741976,0.0,74.96059967115839,0.1087045420026697 +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.107993666002585 +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.1081487080009537 +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.1078684999993129 +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.1099669169998378 +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.1078520410010241 +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.1094752499993774 +25,352.68558102305303,0.9014967989796868,0.0,74.82423431531402,0.1085067910025827 +26,353.91150762756075,0.904630380189732,0.0,75.08432155574776,0.1088839580006606 +27,358.5786109780503,0.916559925817226,0.0,76.07447384282976,0.110319832998357 +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.108140459000424 +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.1086507079999137 +0,350.06159203288655,0.0,0.0,73.32729560385845,0.1087225420014874 +1,348.15467995134566,0.0,0.0,72.9278553079902,0.1081302909988153 +2,349.6879634578959,0.0,0.0,73.24903173947592,0.1086064999981317 +3,345.65050696371725,0.0,0.0,72.40330695111199,0.1073525419997167 +4,340.1390654644476,0.0,0.0,71.24882697039375,0.1056407920004858 +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063 +6,350.6147227766598,0.0,0.0,73.44315973314124,0.1088943340000696 +7,344.5928124845704,0.0,0.0,72.18175200907858,0.1070240420012851 +8,347.23235425746674,0.0,0.0,72.73465602438603,0.1078438339973217 +9,350.3030715703917,0.0,0.0,73.37787824940402,0.1087975410009676 +10,348.65723454798535,0.0,0.0,73.03312526705905,0.1082863749979878 +11,348.17815851859984,0.0,0.0,72.93277335635823,0.108137582999916 +12,352.10694777546087,0.0,0.0,73.7557356514507,0.1093577909996383 +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034 +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177 +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136 +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447 +17,349.51704839988264,0.0,0.0,73.21323021406631,0.1085534169978927 +18,339.98330586077833,0.0,0.0,71.21620005341305,0.1055924159991263 +19,350.75907473976633,0.0,0.0,73.47339709511014,0.1089391670029726 +20,347.3249194409645,0.0,0.0,72.75404562532324,0.1078725830011535 +21,353.67980870531187,0.0,0.0,74.08520235380207,0.1098462920017482 +22,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113 +23,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702 +24,349.00389754202627,0.0,0.0,73.1057406593714,0.1083940419994178 +25,349.8933590281963,0.0,0.0,73.29205588734567,0.1086702919965318 +26,348.0918976573909,0.0,0.0,72.91470431990045,0.108110791999934 +27,348.4616335231562,0.0,0.0,72.99215277966113,0.1082256250010686 +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.112606250000681 +1,532.8827144907617,0.4343244694909029,20.07915432031021,96.28639392867557,0.111914875000366 +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782764,0.1119704580014513 +3,541.410961550333,0.4412753918592055,20.40050080826019,97.82735994909464,0.1137059590000717 +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.1066040840014466 +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.1111882910008716 +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.1162620830000378 +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032647,0.1119292080002196 +8,530.81126187005,0.4326361382012946,20.001101466075237,95.91210386893316,0.1114798330017947 +9,539.3258148522472,0.4395758992526152,20.32193195775552,97.45059551123364,0.1132680410009925 +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.4540377854172,0.1132720419991528 +11,530.2759930276953,0.4321998689253943,19.980932401858617,95.81538632638356,0.1113674169973819 +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647 +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.1108480830007465 +14,530.8965736635557,0.4327056713245281,20.00431603584934,95.92751882748384,0.1114977500001259 +15,538.9450995668178,0.4392655983930176,20.30758651032335,97.38180419759053,0.113188084000285 +16,533.1491585277918,0.4345416339097989,20.08919399844532,96.33453760984928,0.1119708330006687 +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.1070651660011208 +18,514.0279683439179,0.4189569647944158,19.368702757034143,92.87953634903896,0.1079550419999577 +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129492,0.1120103749999543 +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.112965249998524 +21,531.0947711170215,0.4328672115687322,20.011784165600623,95.96333105700664,0.111539375000575 +22,541.2827962393301,0.4411709311041561,20.395671507199836,97.80420180324448,0.1136790419986937 +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547 +24,500.526534169196,0.4079526610783415,18.85996533139102,90.4399668636754,0.1051195000000007 +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.4115216807082,0.1132226250010717 +26,531.2782888578109,0.4330167871568365,20.018699160096823,95.9964908143079,0.1115779169995221 +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.114608040999883 +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.1120559580012923 +29,534.66053966854,0.4357734806075874,20.146143218858462,96.60762854700516,0.112288249998528 +0,340.64918730588545,0.0,0.0,71.49545654085841,0.1037612910004099 +1,359.87735697665374,0.0,0.0,75.53106507974576,0.1096181659995636 +2,357.04781740694864,0.0,0.0,74.93720127241826,0.1087562919965421 +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077 +4,361.7094135366254,0.0,0.0,75.91557713803003,0.110176207999757 +5,353.73252394336674,0.0,0.0,74.2413874305585,0.1077464580012019 +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035 +7,338.8384735800955,0.0,0.0,71.1154239169323,0.1032097499992232 +8,355.53448516285744,0.0,0.0,74.61958307833125,0.1082953330005693 +9,355.65390787855864,0.0,0.0,74.64464751969373,0.1083317090015043 +10,356.53813036938084,0.0,0.0,74.83022814932919,0.1086010420003731 +11,354.8124958061129,0.0,0.0,74.46805194130923,0.1080754159993375 +12,356.29587060954617,0.0,0.0,74.77938266730163,0.1085272499985876 +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865 +14,336.2974250979103,0.0,0.0,70.58210862338031,0.102435749999131 +15,357.04535515580596,0.0,0.0,74.9366844951115,0.1087555419981072 +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161 +17,356.4013372564373,0.0,0.0,74.80151800873296,0.1085593749994586 +18,358.36306935886296,0.0,0.0,75.21324637181236,0.1091569159980281 +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413 +20,358.2503538344796,0.0,0.0,75.18958963586425,0.1091225829986797 +21,336.7975356102561,0.0,0.0,70.68707182521217,0.1025880829984089 +22,351.84930825701434,0.0,0.0,73.84613809406216,0.1071728329989127 +23,355.9800156634005,0.0,0.0,74.71309102646735,0.1084310410005855 +24,353.9434572371491,0.0,0.0,74.28565811342115,0.107810708002944 +25,356.2458047328008,0.0,0.0,74.76887484033942,0.1085119999988819 +26,361.9292404971096,0.0,0.0,75.96171442379344,0.1102431670005898 +27,349.61795580865146,0.0,0.0,73.37782180873364,0.1064931660002912 +28,356.15757387973906,0.0,0.0,74.75035694757553,0.1084851249979692 +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219 +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.1019022909968043 +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134 +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.1075519169971812 +4,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.1092284160004055 +5,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.1055996670002059 +6,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.1072167499987699 +7,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.1087792079997598 +8,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.1089186249992053 +9,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.1087490000027173 +10,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.1089228750024631 +11,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.1083967079975991 +12,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.1076077499965322 +13,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.1083305419997486 +14,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.1090984170004958 +15,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.108379416000389 +16,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.1077096250010072 +17,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.108017208000092 +18,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.1086980000000039 +19,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.1092419999986304 +20,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.110597749997396 +21,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.1104769160010619 +22,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.1082216249997145 +23,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.1076850419995025 +24,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.1083025000007182 +25,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.1082828329999756 +26,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.1102724999982456 +27,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.1092242089980572 +0,351.73175655141023,0.0,0.0,74.21831970730892,0.1092706669987819 +1,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061 +2,328.1519445206855,0.0,0.0,69.24278367640527,0.1019452500004263 +3,349.2189998358078,0.0,0.0,73.68810718656938,0.1084900419991754 +4,347.0344361100074,0.0,0.0,73.22714611040125,0.1078113750008924 +5,348.8421177226201,0.0,0.0,73.60858193288522,0.1083729580022918 +6,349.7607123637488,0.0,0.0,73.802413025719,0.1086583329997665 +7,348.86438286229674,0.0,0.0,73.61328006213873,0.1083798749968991 +8,349.5485351074402,0.0,0.0,73.7576418637468,0.1085924170001817 +9,349.2062562033976,0.0,0.0,73.6854181743695,0.1084860830014804 +10,348.9237973941225,0.0,0.0,73.62581702144415,0.1083983329990587 +11,348.52452136305044,0.0,0.0,73.54156646523587,0.1082742920007149 +12,349.0319010610443,0.0,0.0,73.6486277923333,0.1084319170004164 +13,353.06652971176385,0.0,0.0,74.49996792162754,0.1096853340022789 +14,345.82868949784233,0.0,0.0,72.97272356856122,0.1074367920009535 +15,338.35479420348673,0.0,0.0,71.39566963446653,0.1051149160011846 +16,337.7432057089416,0.0,0.0,71.26661938645225,0.1049249169991526 +17,351.2683696181278,0.0,0.0,74.1205412186682,0.1091267090014298 +18,349.83072674614044,0.0,0.0,73.81718664146358,0.1086800840021169 +19,351.41952290191574,0.0,0.0,74.15243581599138,0.1091736670023237 +20,347.59841378933527,0.0,0.0,73.34615008127537,0.1079865829997288 +21,349.5599332493968,0.0,0.0,73.76004696629455,0.1085959580013877 +22,340.3002223481199,0.0,0.0,71.80617111838608,0.105719291997957 +23,350.65422853504253,0.0,0.0,73.99095235328762,0.1089359170000534 +24,349.36518956692623,0.0,0.0,73.71895443308603,0.1085354579990962 +25,347.2503698208989,0.0,0.0,73.27270991546585,0.1078784579985949 +26,348.0902365247607,0.0,0.0,73.44992876016128,0.1081393749991548 +27,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439 +28,348.35848065329765,0.0,0.0,73.50653049748111,0.1082227090009837 +0,350.2437335737623,0.0,0.0,73.26884233321877,0.1097303749993443 +1,348.89690052127264,0.0,0.0,72.9870931137106,0.1093084159983845 +2,344.6200794331875,0.0,0.0,72.09240835577674,0.1079685000004246 +3,348.24483274191084,0.0,0.0,72.8506845309527,0.109104125000158 +4,345.50688280525327,0.0,0.0,72.27792218577584,0.108246332998533 +5,349.28976713270595,0.0,0.0,73.06927840084587,0.1094315000009373 +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958 +7,346.57482729959054,0.0,0.0,72.50132962829542,0.1085809169999265 +8,346.00907053653475,0.0,0.0,72.3829767811272,0.1084036669999477 +9,345.64931945621555,0.0,0.0,72.30771906012771,0.1082909579999977 +10,346.6860092861362,0.0,0.0,72.5245882184189,0.1086157500030822 +11,356.34736331255743,0.0,0.0,74.54568426391941,0.1116426250009681 +12,349.03401953271384,0.0,0.0,73.01577757046779,0.1093513749983685 +13,344.75839219546305,0.0,0.0,72.12134253789166,0.1080118329991819 +14,344.37390740929675,0.0,0.0,72.04091067722797,0.1078913749988714 +15,338.3729501588257,0.0,0.0,70.78554720177965,0.106011291998584 +16,343.2693938159089,0.0,0.0,71.80985320332805,0.1075453340017702 +17,393.3508368048623,0.0,0.0,82.28658411507446,0.1232357089975266 +18,340.6583170286766,0.0,0.0,71.26363194337405,0.1067272910004248 +19,394.2611769502774,0.0,0.0,82.47702169379554,0.123520916000416 +20,350.23469104240684,0.0,0.0,73.26695069108311,0.1097275419997458 +21,348.4636090527246,0.0,0.0,72.89645119424085,0.1091726670019852 +22,344.2709700068494,0.0,0.0,72.01937680356475,0.1078591250006866 +23,346.28117640365764,0.0,0.0,72.43989966072517,0.108488917001523 +24,348.48262613381,0.0,0.0,72.90042945104354,0.1091786249999131 +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156 +26,338.7078270988537,0.0,0.0,70.85560140508998,0.1061162080004578 +27,391.2020495267679,0.0,0.0,81.83707098694545,0.1225624999970023 +28,348.54553126622045,0.0,0.0,72.91358881918269,0.1091983330006769 +29,344.56861072035196,0.0,0.0,72.08164141651599,0.1079523749976942 +0,349.5570979228151,0.0,0.0,73.44896139887625,0.1089127500017639 +1,347.24183407513084,0.0,0.0,72.96247800034911,0.1081913749985687 +2,344.7376100562334,0.0,0.0,72.43629027768198,0.1074111250018177 +3,351.6277678281301,0.0,0.0,73.88405070145102,0.1095579159991757 +4,349.9146892287216,0.0,0.0,73.52409850860788,0.1090241659985622 +5,346.9369301696893,0.0,0.0,72.89841157081808,0.1080963750027876 +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817 +7,349.49852426123,0.0,0.0,73.4366538970852,0.1088944999974046 +8,346.91740668224895,0.0,0.0,72.8943092942976,0.1080902920002699 +9,346.9200802047294,0.0,0.0,72.89487105502462,0.1080911249991913 +10,345.9247293954029,0.0,0.0,72.68572787467728,0.1077810000024328 +11,348.7487013459444,0.0,0.0,73.27910105467957,0.1086608750010782 +12,346.2514323292838,0.0,0.0,72.75437471755963,0.1078827919991454 +13,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314 +14,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937 +15,347.9824296464449,0.0,0.0,73.11809199260635,0.1084221249984693 +16,357.2821339838763,0.0,0.0,75.07214650604604,0.1113196670012257 +17,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021 +18,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659 +19,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366 +20,337.4620408760736,0.0,0.0,70.90754718236538,0.1051442499992845 +21,344.88858884112295,0.0,0.0,72.46801395032172,0.1074581659995601 +22,347.06143366416603,0.0,0.0,72.92457225361979,0.1081351670000003 +23,350.9464166897125,0.0,0.0,73.74088515349878,0.1093456249982409 +24,349.12528336836505,0.0,0.0,73.35822849506813,0.1087782080030592 +25,349.5365024599655,0.0,0.0,73.44463387880921,0.1089063330000499 +26,347.7287463838418,0.0,0.0,73.06478804806281,0.1083430840008077 +27,347.93963719702685,0.0,0.0,73.1091004401986,0.1084087920025922 +28,349.69617582957653,0.0,0.0,73.47818445818719,0.1089560830005211 +0,352.72069606426135,0.9034682471999864,0.0,74.95440273066554,0.1094220830018457 +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334 +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.1084641250017739 +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.1104006250025122 +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.1071309159997326 +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.1081715000000258 +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.1083696669993514 +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.108185165998293 +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.1072509999976318 +9,355.586244105474,0.9108081387769468,0.0,75.56334188371707,0.1103110419971926 +10,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.1079684579999593 +11,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.1077727500014589 +12,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.1088582079974003 +13,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852 +14,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.1082003749979776 +15,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.1086762089980766 +16,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.104039959001966 +17,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.1092145830007211 +18,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.1081076670016045 +19,360.0307626207023,0.9221924476576192,0.0,76.50781787974321,0.1116898339969338 +20,351.99272624691093,0.9016036057932448,0.0,74.79970655469884,0.1091962499995133 +21,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802 +22,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.1087829999996756 +23,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903 +24,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807 +25,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.108505915999558 +26,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257 +27,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.1078266250005981 +28,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.1082103750013629 +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.1093228749996342 +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.1089070000016363 +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.1054213329989579 +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395 +4,354.3888189098163,0.9011582323003428,0.0,81.1376171378568,0.1093122500024037 +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214 +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.1027426660002674 +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695 +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098 +9,369.5021486200632,0.9395891893710402,0.0,84.59782664299996,0.113973999999871 +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.1095547080003598 +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.1115347920022031 +12,362.8293302804259,0.9226212015041912,0.0,83.07007929098847,0.1119157499997527 +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.1091690419998485 +14,356.00332808847406,0.905263689808702,0.0,81.50726036759092,0.1098102500000095 +15,355.7832782663517,0.9047041357309752,0.0,81.4568797763704,0.1097423749997688 +16,359.8954688249249,0.91516082673507,0.0,82.39836925159092,0.1110107919994334 +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.1094131669997295 +18,355.96537090717135,0.905167170323378,0.0,81.49857003911599,0.109798541998316 +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.1092755830031819 +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574 +21,354.52849339615904,0.9015134038139284,0.0,81.16959572858,0.1093553329992573 +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.1082306659991445 +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.1068390000000363 +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.1068899999991117 +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.1085886250002658 +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.1092238750024989 +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.1091210000013234 +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.1081110839986649 +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092 +0,350.4356841019941,0.0,0.0,74.02446695872452,0.1093239590009034 +1,346.4714390348405,0.0,0.0,73.18707755660988,0.108087249998789 +2,345.72749858615435,0.0,0.0,73.02993090271205,0.1078551659993536 +3,349.2921261580012,0.0,0.0,73.78290689198242,0.1089672079979209 +4,346.26975989888166,0.0,0.0,73.14447575772542,0.1080243329997756 +5,350.39080418180447,0.0,0.0,74.01498672506138,0.1093099579993577 +6,349.6472676163195,0.0,0.0,73.85792538564502,0.1090779999976803 +7,361.78815498173515,0.0,0.0,76.42251214550602,0.1128655419997812 +8,353.5460632089863,0.0,0.0,74.68148953342224,0.1102942910001729 +9,342.0485443957291,0.0,0.0,72.25280506973742,0.1067074580023472 +10,350.28796278914035,0.0,0.0,73.99326296912378,0.109277874998952 +11,345.76957050704704,0.0,0.0,73.03881798715949,0.1078682910010684 +12,356.1562593262886,0.0,0.0,75.23285568991444,0.1111085829979856 +13,352.1317801069439,0.0,0.0,74.38274269482416,0.1098530829985975 +14,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226 +15,345.3318911540231,0.0,0.0,72.94636455768223,0.1077317499984928 +16,349.3621113945349,0.0,0.0,73.79769026041323,0.1089890410003135 +17,349.9381648592711,0.0,0.0,73.9193732185175,0.1091687499974796 +18,332.77482680217906,0.0,0.0,70.29386643211716,0.1038143749974551 +19,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219 +20,347.0243842208858,0.0,0.0,73.3038792252507,0.1082597500026167 +21,348.0907413848161,0.0,0.0,73.52913174441076,0.1085924170001817 +22,346.1256479612438,0.0,0.0,73.11403419640622,0.1079793749995587 +23,348.0938122335487,0.0,0.0,73.52978041676593,0.1085933750000549 +24,349.7563885449727,0.0,0.0,73.88097560268639,0.1091120419987419 +25,330.1607584718866,0.0,0.0,69.74168232666726,0.1029988750015036 +26,351.14262369975336,0.0,0.0,74.1737977183195,0.1095444999991741 +27,346.8602380368698,0.0,0.0,73.26920571930842,0.108208542002103 +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.1099223329983942 +1,564.308332268748,0.4792136753465044,19.990056171597043,98.44418073546764,0.1151113749983778 +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578128,0.1094470829993952 +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924892,0.1137343750015134 +4,551.1749149853679,0.4680607066477709,19.524818048735582,96.1530423084992,0.1124323330004699 +5,548.5636364583718,0.4658431948572852,19.43231612833247,95.69750202925374,0.1118996670011256 +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083 +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377804,0.1143951250014652 +8,533.602080044307,0.4531377605617067,18.902318012002624,93.08744281253348,0.1088477089979278 +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393835,0.115234083001269 +10,542.0632066445227,0.4603229948455245,19.20204492784188,94.56349522683776,0.1105736659992544 +11,542.1635024143241,0.4604081665534718,19.205597804801968,94.5809919291275,0.1105941249988973 +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865 +13,545.9905515906022,0.4636581173279407,19.341167179965527,95.24862467393984,0.1113747919989691 +14,541.7711140282568,0.4600749482224672,19.19169784013721,94.5125393634154,0.1105140830004529 +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213731,0.1131512499996461 +16,548.961128120956,0.4661807469181963,19.44639687144476,95.76684486690948,0.1119807499999296 +17,550.204670187255,0.467236769539098,19.490448100773804,95.98378208531756,0.1122344159994099 +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602 +19,536.4276274869267,0.4555372306694755,19.00241019364098,93.58036252895798,0.1094240829988848 +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.1141973749981843 +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.1122670840013597 +22,543.2377147988591,0.4613203934965441,19.24365070014155,94.7683894068615,0.1108132500012288 +23,545.5227906275,0.463260892198532,19.32459721742448,95.16702328306988,0.1112793749998672 +24,546.4460568464966,0.4640449348447745,19.357302996382025,95.32808804382654,0.1114677089972246 +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472688,0.1121792079975421 +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.1124135829995793 +27,544.6440567149677,0.4625146666268074,19.293468950718253,95.01372722990702,0.1111001249992114 +28,547.1235913519002,0.4646203007962273,19.38130397607119,95.44628464928212,0.1116059170017251 +29,561.8191989819761,0.4770998899519389,19.901881123709455,98.00994882155548,0.1146036249992903 +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.1125474159998702 +1,531.6083156995155,0.4598403719365596,20.10159340179818,95.84387180792008,0.1101422920000914 +2,539.1055697078513,0.4663254850732108,20.38508549034322,97.19555467454497,0.1116956250007206 +3,559.2132189145998,0.4837185705779671,21.145411799551137,100.82077063903628,0.1158616669999901 +4,539.8532858167908,0.4669722583524913,20.41335872226605,97.33036070518357,0.1118505420017754 +5,543.1984920844951,0.4698658566069157,20.53985030310232,97.93346925564144,0.1125436250003986 +6,539.2855617453997,0.4664811779076673,20.391891491392315,97.22800550961236,0.1117329169974254 +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.1105710419979004 +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358164,0.1126799999983632 +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.1101741250022314 +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.4618670014884,0.1120016669992765 +11,540.2482576395201,0.4673139083690628,20.428293708704743,97.4015703300661,0.1119323749990144 +12,536.8670548817402,0.4643891732063245,20.300441000162188,96.79197195828964,0.1112318339983176 +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.1116492920009477 +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.1090459580009337 +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541893,0.1114379159989766 +16,548.9821147845478,0.4748686813088457,20.75854521150097,98.97620086137228,0.1137419160004356 +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697708,0.1134956250025425 +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.1120829160026914 +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.1114866669995535 +20,532.0847357354425,0.4602524745317389,20.119608172387444,95.9297657631153,0.1102410000021336 +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.1081512079981621 +22,554.8095819519035,0.479909431407269,20.978898001517763,100.02683720331508,0.114949291000812 +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018736,0.1116149580011551 +24,545.6371112170256,0.4719752583897657,20.632061295324043,98.37312885580974,0.1130488749986398 +25,531.4940855078803,0.4597415629972396,20.097274039593614,95.82327720185324,0.1101186249979946 +26,539.73040643437,0.4668659678765017,20.408712310029937,97.30820673311658,0.1118250830004399 +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.1107058749985299 +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.1125420829994254 +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.1122179589983716 +0,411.9106270133148,0.0669283657508026,0.0,79.67821942633053,0.1092553339985897 +1,409.7639893685133,0.0665795741926254,0.0,79.2629830763206,0.1086859589995583 +2,408.6489630946226,0.0663984016726984,0.0,79.0472971913475,0.1083902089994808 +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.1070329169997421 +4,406.4680772704537,0.0660440453766274,0.0,78.62543602087497,0.1078117500001099 +5,409.1637451782701,0.066482044874201,0.0,79.1468744227363,0.1085267499984183 +6,411.117003532524,0.0667994156361238,0.0,79.52470431480539,0.1090448329996434 +7,408.04856056941446,0.0663008466275756,0.0,78.93115791012883,0.1082309580015135 +8,406.718009040155,0.0660846549744341,0.0,78.67378174706386,0.1078780419993563 +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.1085171250015264 +10,434.73755799887095,0.0706373479565961,0.0,84.0937627423277,0.11530995800058 +11,412.8927512188439,0.0670879439790143,0.0,79.8681973070166,0.1095158330026606 +12,411.1630334709524,0.0668068947064672,0.0,79.5336081480492,0.1090570419983123 +13,405.92375972203575,0.0659556031719937,0.0,78.5201455762586,0.107667375003075 +14,411.4063674703926,0.0668464322805089,0.0,79.58067762994595,0.1091215840024233 +15,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.1056415409984765 +16,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794 +17,416.45131938035576,0.067666149870884,0.0,80.55655142128744,0.1104597089979506 +18,390.2780465829524,0.06341344489121,0.0,75.4937061429856,0.1035174999997252 +19,411.7770990939091,0.0669066697690972,0.0,79.6523903601103,0.1092199170016101 +20,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.1082832499996584 +21,407.79329023407206,0.0662593696050161,0.0,78.88177951477175,0.1081632499990519 +22,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.1083763749993522 +23,407.6768863974922,0.0662404559911434,0.0,78.85926285745624,0.108132375000423 +24,408.8302439287478,0.0664278566786494,0.0,79.08236337593212,0.1084382919980271 +25,400.83356580406127,0.0651285345363654,0.0,77.53552036554309,0.1063172499998472 +26,407.19320440622545,0.0661618660177472,0.0,78.7657014941281,0.1080040830020152 +27,408.4123814834321,0.0663599612451754,0.0,79.00153386238134,0.1083274580014403 +28,404.7000282651971,0.0657567679365012,0.0,78.28343222840476,0.107342791998235 +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.1093273749975196 +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297068,0.1149548330031393 +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279236,0.1123761250019015 +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.1126610829996934 +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958 +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126876,0.1119830829993588 +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.1098542079998878 +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.6683569356906,0.1112435000031837 +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419237,0.1138349580032809 +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.1120877499997732 +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875492,0.1131611669989069 +11,513.552572917201,0.5900642354468032,20.980061704775224,94.9019978676942,0.1103523749989108 +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.551863476102,0.111108041000989 +13,520.6179409055757,0.598182237731416,21.268701786005906,96.20764323513608,0.1118705839980975 +14,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.1148837079999793 +15,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496596,0.1101848340003925 +16,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.1123124999976425 +17,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739272,0.1124144159985007 +18,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.1129014580001239 +19,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.1130966669988993 +20,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.1092158749997906 +21,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128129,0.1146049589988251 +22,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.1106439169998338 +23,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798 +24,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312756,0.1119207500014454 +25,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.104731792001985 +26,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.1137661669999943 +27,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617624,0.1135343749992898 +28,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.111408125001617 +0,372.783325595462,0.9128559578339812,0.0,76.71370993797419,0.1098833750002086 +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.1083453339997504 +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.1077917500006151 +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.1125241670015384 +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.106433916997048 +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.1089840000022377 +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.1079727910000656 +7,368.7968106124073,0.9030939494408668,0.0,75.89333967708617,0.1087082910016761 +8,370.3373070063856,0.9068662515120998,0.0,76.21035276596128,0.1091623749998689 +9,368.9456615170731,0.9034584492074164,0.0,75.9239711574677,0.1087521669978741 +10,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.1080825829994864 +11,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496 +12,368.16721356507986,0.9015522189603804,0.0,75.76377721559642,0.1085227080002368 +13,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.1060791250019974 +14,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.1052611670020269 +15,368.1332915981502,0.9014691522900468,0.0,75.75679653874505,0.1085127090009336 +16,369.6513056658199,0.9051864005965116,0.0,76.0691830723513,0.1089601660023618 +17,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.1087312500021653 +18,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.1087735000000975 +19,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.1081318750002537 +20,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.1091148750019783 +21,370.9635115163816,0.9083996744914116,0.0,76.33921708966713,0.1093469580009696 +22,367.1765929975245,0.8991264294334446,0.0,75.55992105127724,0.1082307079996098 +23,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.1100110000006679 +24,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.1075496660014323 +25,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.1073167909999028 +26,371.7753182833393,0.9103875923861928,0.0,76.50627581941745,0.109586250000575 +27,369.53200373193727,0.904894259093262,0.0,76.04463236602264,0.108925000000454 +28,367.425238752588,0.8997353025866021,0.0,75.611088947,0.1083039999975881 +0,356.466325968142,0.0,0.0,73.92875082637863,0.1092395420018874 +1,351.7245436332654,0.0,0.0,72.94533663218813,0.1077864170001703 +2,353.4256006327688,0.0,0.0,73.29812456725101,0.1083077080002112 +3,353.35122991135097,0.0,0.0,73.28270057308399,0.1082849170015833 +4,354.96295784666904,0.0,0.0,73.61696225293952,0.1087788330005423 +5,350.3303576515806,0.0,0.0,72.6561917101098,0.107359166999231 +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967 +7,355.0087791611787,0.0,0.0,73.62646528954114,0.1087928749984712 +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658 +9,356.2385833502526,0.0,0.0,73.88151851851684,0.1091697499978181 +10,353.36836150001716,0.0,0.0,73.28625355090404,0.1082901669979037 +11,344.9872006619987,0.0,0.0,71.54805640269699,0.105721749998338 +12,335.41512274852306,0.0,0.0,69.56287095485956,0.1027883750030014 +13,354.6641076704996,0.0,0.0,73.55498270929414,0.1086872499981836 +14,355.37234762367643,0.0,0.0,73.70186697636058,0.1089042909989075 +15,352.9861603805139,0.0,0.0,73.20698757465065,0.1081730409969168 +16,354.41080472393486,0.0,0.0,73.50244935885966,0.1086096250000991 +17,354.4234494781258,0.0,0.0,73.50507179698002,0.1086135000005015 +18,350.7823055918313,0.0,0.0,72.74992271421108,0.1074976669988245 +19,338.18622604515986,0.0,0.0,70.13757939211467,0.1036375830008182 +20,349.4839750006073,0.0,0.0,72.48065756410699,0.1070997919996443 +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016 +22,350.7968527716273,0.0,0.0,72.7529397027792,0.1075021249998826 +23,354.93835033342356,0.0,0.0,73.611858817965,0.1087712919979821 +24,351.8900120547612,0.0,0.0,72.97965368491161,0.1078371250005147 +25,353.8877459607927,0.0,0.0,73.39397044191605,0.1084493330017721 +26,338.342449918055,0.0,0.0,70.16997918679662,0.1036854579979262 +27,357.2478532784631,0.0,0.0,74.09083440504997,0.1094790420029312 +28,354.8509236948433,0.0,0.0,73.59372711320542,0.1087444999975559 +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413 +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539 +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583 +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.1141362080015824 +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.1098308750006253 +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.1079319579985167 +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.1088161250008852 +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.1078220839990535 +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.1108167080019484 +8,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.1067202500016719 +9,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.1076291249992209 +10,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.1080912920006085 +11,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.108578249997663 +12,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.1104635410010814 +13,365.2556929987476,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758 +14,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786 +15,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.1080684169974119 +16,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803 +17,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.1084587080003984 +18,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.1087163339980179 +19,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.1086105000031238 +20,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.1072365830004855 +21,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.1085144579992629 +22,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.1087537499988684 +23,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.1100431670020043 +24,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223 +25,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241 +26,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.1068625410007371 +27,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.1084712920019228 +0,355.31751000520677,0.0,0.0,73.78324951983832,0.1092719590014894 +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213 +2,351.03910799377473,0.0,0.0,72.89482045494073,0.1079562080012692 +3,352.04523324830114,0.0,0.0,73.10374680563434,0.1082656250000582 +4,347.36078088160747,0.0,0.0,72.13099959193667,0.1068250000025727 +5,353.3662284867774,0.0,0.0,73.37805729850474,0.1086718749975261 +6,350.7655636148851,0.0,0.0,72.83801775708868,0.1078720840014284 +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843 +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115 +9,354.39078102596784,0.0,0.0,73.59081015620703,0.1089869589995942 +10,354.1366069121032,0.0,0.0,73.53802977939847,0.1089087920008751 +11,336.51778199022067,0.0,0.0,69.87940300516897,0.1034904169973742 +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387 +13,354.1658720356466,0.0,0.0,73.54410681149463,0.1089177920002839 +14,348.69315700606205,0.0,0.0,72.40767337602198,0.1072347500012256 +15,355.05290449197474,0.0,0.0,73.72830301690117,0.1091905840003164 +16,353.3356074134523,0.0,0.0,73.3716986974505,0.1086624579984345 +17,330.53766821951785,0.0,0.0,68.63760598116552,0.1016513329996087 +18,346.2550728954724,0.0,0.0,71.90139444741146,0.1064849579997826 +19,349.15137082892227,0.0,0.0,72.50282349914717,0.1073756660007347 +20,341.4818789010037,0.0,0.0,70.91021964295189,0.1050170419985079 +21,354.0638505605011,0.0,0.0,73.52292160180167,0.1088864170014858 +22,352.4121301159214,0.0,0.0,73.1799345598806,0.1083784579968778 +23,354.6372291574377,0.0,0.0,73.64198619866458,0.1090627500016125 +24,333.33858460150753,0.0,0.0,69.21922863267379,0.1025127079992671 +25,353.2686780710232,0.0,0.0,73.3578005240321,0.108641874998284 +26,355.6745152674338,0.0,0.0,73.85738323855767,0.1093817500004661 +27,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042 +28,351.7074649321256,0.0,0.0,73.03360772368504,0.108161750002182 +0,357.96048293355267,0.0,0.0,74.32044363142623,0.1103388750016165 +1,336.02149904696915,0.0,0.0,69.76542962007161,0.1035763330000918 +2,351.0183178122401,0.0,0.0,72.87909796290356,0.1081989999984216 +3,347.93106372332824,0.0,0.0,72.23811633384071,0.1072473750027711 +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292 +5,350.19713174353114,0.0,0.0,72.70860173262069,0.1079458749991317 +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659 +7,355.219004525288,0.0,0.0,73.75125261391933,0.1094938329988508 +8,332.0804839475747,0.0,0.0,68.94718848869086,0.1023615420017449 +9,347.71262254057837,0.0,0.0,72.19276315553373,0.107180041999527 +10,347.69072425564144,0.0,0.0,72.18821659151654,0.1071732920026988 +11,349.79985125658436,0.0,0.0,72.6261175941649,0.107823416001338 +12,352.3465418754639,0.0,0.0,73.1548663963679,0.1086084159978781 +13,350.4592364960211,0.0,0.0,72.76302042521861,0.108026666999649 +14,352.43184142678575,0.0,0.0,73.17257645319833,0.1086347090022172 +15,333.343418635852,0.0,0.0,69.20940141661261,0.1027508329971169 +16,352.97632387457793,0.0,0.0,73.28562294575474,0.1088025419994664 +17,350.7025476533563,0.0,0.0,72.81353715546054,0.1081016660027671 +18,350.1848297681744,0.0,0.0,72.70604757284707,0.1079420829992159 +19,350.68254396824653,0.0,0.0,72.80938395190176,0.1080955000034009 +20,353.57487727944215,0.0,0.0,73.40989575436771,0.1089870420000806 +21,350.58089369750513,0.0,0.0,72.78827912727185,0.1080641670014301 +22,354.39984608014447,0.0,0.0,73.58117736273917,0.109241333000682 +23,350.82717976651696,0.0,0.0,72.83941351439523,0.1081400830007623 +24,349.56127013115605,0.0,0.0,72.57658292224077,0.1077498749982623 +25,357.78056653953445,0.0,0.0,74.28308904381807,0.110283417001483 +26,363.9649435656808,0.0,0.0,75.56710129120493,0.1121897089979029 +27,352.905762706687,0.0,0.0,73.27097290042619,0.1087807920011982 +0,369.6457899010592,0.9711657824905524,0.0,82.75002236324673,0.1110664580010052 +1,359.12051672685783,0.9435128632975972,0.0,80.3938029382194,0.1079039579999516 +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.105773584000417 +3,374.8716803818042,0.9848956994992136,0.0,83.9199059814675,0.1126366669996059 +4,376.96633455222275,0.9903989583270936,0.0,84.38882158711202,0.1132660420007596 +5,368.643464389488,0.9685323851508564,0.0,82.52563874854367,0.1107652919999964 +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.1074476249996223 +7,361.0118775242784,0.9484820119771764,0.0,80.81720867571043,0.108472249998158 +8,364.70279545437313,0.9581791147107104,0.0,81.64346870517811,0.1095812499988824 +9,363.31662114091176,0.9545372361919228,0.0,81.33315553897383,0.1091647499997634 +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.1110747499988065 +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.1074340419982036 +12,372.4174462680742,0.9784477207622896,0.0,83.37049372426266,0.1118992499978048 +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.1098165830007928 +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.1094639580005605 +15,364.7247080018868,0.9582366852740276,0.0,81.64837411421111,0.1095878340020135 +16,363.90181967276175,0.9560747210101548,0.0,81.46415984883079,0.1093405829997209 +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.1090366669996001 +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.1087789999983215 +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.1085855829987849 +20,360.06169081323577,0.94598559825909,0.0,80.60449701028317,0.1081867499997315 +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.1089155000008759 +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.1085442080002394 +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745 +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.1076402500002586 +25,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.1124117920007847 +26,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958 +27,385.6766545760032,1.0132834737003162,0.0,86.33874012115454,0.1158832080000138 +28,374.6998646691671,0.9844442902161484,0.0,83.88144279738285,0.1125850420030474 +0,537.586585590763,1.4050178341513406,20.03823053944412,97.1469473898927,0.112041666998266 +1,551.1176123306176,1.440382060851645,20.542591772622274,99.59213106459949,0.1148617500002728 +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217444,0.1084056660001806 +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.1091209999976854 +4,539.1167749298061,1.4090170844462884,20.09526746626968,97.4234669817148,0.1123605829998268 +5,550.2607540984404,1.4381426056088673,20.510652875231223,99.43728873067025,0.1146831670012034 +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.1111136250001436 +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.1117185420007444 +8,537.9854272547229,1.406060233024167,20.053097132892287,97.2190218262424,0.1121247919982124 +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031 +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.1059001670000725 +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823145,0.1097277499975462 +12,533.816683809472,1.395164948350829,19.897709620527294,96.46569071454304,0.1112559590001183 +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914947,0.1127309580006112 +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.1122200829995563 +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.1117655419984657 +16,541.3640875617663,1.41489058354662,20.17903475105775,97.82957749093774,0.1128289589978521 +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913888,0.1121329170018725 +18,543.8858800536349,1.421481453780502,20.27303311463145,98.28528908996614,0.113354541001172 +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446 +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748584,0.11043866700129 +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454 +22,549.6611889257908,1.436575602668526,20.488304428534455,99.3289416702238,0.1145582080025633 +23,535.2031318006688,1.3987885211965203,19.949388671350377,96.71623489415944,0.1115449169992643 +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321024,0.1154080420019454 +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.1097549170008278 +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.1108595000005152 +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.1113768329996673 +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221069,0.1109710000018822 +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.1128227090011932 +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.1093853339989436 +1,362.3638254849227,0.4978892903062966,0.0,76.17706141686338,0.1088726670022879 +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.1107375419996969 +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139 +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.1103431670017016 +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.1093056250028894 +6,360.5148000962549,0.4953487223086766,0.0,75.78835451322753,0.1083171249993029 +7,358.84675249219504,0.4930568184833677,0.0,75.43769322795526,0.1078159579992643 +8,361.4683657469591,0.4966589251813122,0.0,75.98881555274077,0.1086036249980679 +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.1112682079983642 +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.1089509580015146 +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.1114148329979798 +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.1090389169985428 +13,360.0388493468535,0.4946947641479163,0.0,75.6882989146312,0.108174124998186 +14,357.3634303624893,0.4910187281704991,0.0,75.12586541008638,0.1073702920002688 +15,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.1093028750001394 +16,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.1070279170016874 +17,346.93966636378417,0.4766964363338611,0.0,72.93455475908077,0.1042384590000438 +18,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.109053791999031 +19,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.108166958001675 +20,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.1082546659999934 +21,359.93511539136995,0.4945522332939955,0.0,75.66649169398131,0.1081429580008261 +22,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.1078082080020976 +23,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.1084412910022365 +24,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169 +25,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.1088503329992818 +26,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.1085732499996083 +27,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.1122939589986344 +28,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.110120666999137 +0,363.8555760220334,0.0,0.0,75.37472069721154,0.1118581669979903 +1,356.073044172833,0.0,0.0,73.76252563107049,0.1094656249988474 +2,354.0995230742944,0.0,0.0,73.353699680899,0.1088589159990078 +3,352.099036026975,0.0,0.0,72.93928758338875,0.1082439170022553 +4,352.917119453682,0.0,0.0,73.10875814769673,0.1084954159996414 +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692 +6,352.16463583615,0.0,0.0,72.9528769513144,0.1082640839995292 +7,337.48447844835925,0.0,0.0,69.91180011804681,0.1037510419992031 +8,355.01452131885316,0.0,0.0,73.54324669258992,0.1091402089987241 +9,352.03099657689336,0.0,0.0,72.92519283018375,0.1082229999992705 +10,352.0968663843558,0.0,0.0,72.938838129767,0.1082432500006689 +11,352.44085313693654,0.0,0.0,73.01009691239383,0.1083490000019082 +12,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927 +13,333.25363011232423,0.0,0.0,69.0353561862886,0.1024503750013536 +14,352.36373178750216,0.0,0.0,72.99412079286597,0.1083252909993461 +15,352.425535562288,0.0,0.0,73.00692379100454,0.1083442910021403 +16,351.4065898823191,0.0,0.0,72.7958434858105,0.1080310420002206 +17,352.9674049543168,0.0,0.0,73.1191750708257,0.1085108750012295 +18,352.3824388133895,0.0,0.0,72.99799605806528,0.1083310419999179 +19,359.6312333359141,0.0,0.0,74.49962444727453,0.1105594999971799 +20,334.32625072049933,0.0,0.0,69.25755555351878,0.1027801249983895 +21,349.209436738063,0.0,0.0,72.34069090470156,0.1073555830007535 +22,356.1634468203862,0.0,0.0,73.7812530458984,0.1094934169996122 +23,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359 +24,354.11606046939625,0.0,0.0,73.35712549492798,0.1088640000016312 +25,351.1624910291874,0.0,0.0,72.7452770410731,0.1079559999998309 +26,354.5463838131862,0.0,0.0,73.44626938603518,0.1089962919977551 +27,397.0313202491415,0.0,0.0,82.24726194662468,0.1220572079982957 +28,355.7000551949418,0.0,0.0,73.68525887501565,0.1093509589991299 +0,371.4568880575053,0.0,0.0,76.70321474475051,0.1102369580003141 +1,369.29752302591254,0.0,0.0,76.25732116986836,0.1095961249993706 +2,361.783124260732,0.0,0.0,74.7056510819143,0.1073660830006701 +3,357.0969638630331,0.0,0.0,73.73799217217456,0.1059753749977971 +4,366.1550707681201,0.0,0.0,75.60842705024373,0.1086635420033417 +5,364.0291189051167,0.0,0.0,75.16943305786498,0.1080326250012149 +6,349.3712628459299,0.0,0.0,72.14268966676815,0.1036826250019657 +7,361.1163602890243,0.0,0.0,74.5679690473358,0.1071682080000755 +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093 +9,365.2454143175718,0.0,0.0,75.42058944024481,0.1083935839997138 +10,378.791854453436,0.0,0.0,78.21783332015166,0.1124137500009965 +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268 +12,369.4220575227252,0.0,0.0,76.28303666084257,0.1096330830005172 +13,345.8947934099548,0.0,0.0,71.42482336714019,0.1026509160001296 +14,353.18188420676984,0.0,0.0,72.92955597063431,0.1048134999982721 +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518 +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049 +17,364.24294838058665,0.0,0.0,75.21358732906856,0.1080960830004187 +18,368.872529440838,0.0,0.0,76.16956300662206,0.109469999999419 +19,371.3581850954161,0.0,0.0,76.68283328262,0.1102076660026796 +20,357.45863551761073,0.0,0.0,73.81267480555692,0.1060827080000308 +21,361.21646839471185,0.0,0.0,74.58864066166066,0.1071979170010308 +22,365.8029418804323,0.0,0.0,75.53571493059131,0.1085590410002623 +23,363.99401755379665,0.0,0.0,75.1621848775924,0.1080222080017847 +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562 +25,362.63591832244185,0.0,0.0,74.88174701162083,0.1076191659994947 +26,366.9264345364295,0.0,0.0,75.76770820148677,0.1088924590003443 +27,371.6140000532096,0.0,0.0,76.73565725835823,0.1102835839992621 +28,365.9034711798288,0.0,0.0,75.55647351843196,0.1085888749985315 +29,368.29253324875754,0.0,0.0,76.04979790358432,0.1092978750020847 +0,351.7954310298514,0.0,0.0,73.25457676290097,0.1086488340006326 +1,355.551001689785,0.0,0.0,74.0366015276662,0.1098087079990364 +2,353.76569761686557,0.0,0.0,73.6648465737376,0.1092573329988226 +3,351.52425260491015,0.0,0.0,73.19810911439244,0.1085650829991209 +4,352.8167204788052,0.0,0.0,73.46724048657845,0.1089642500010086 +5,351.8967485585963,0.0,0.0,73.27567417358975,0.108680125002138 +6,333.8565823831006,0.0,0.0,69.51915938870556,0.1031085829999938 +7,354.3529740261682,0.0,0.0,73.78713549795803,0.1094387080011074 +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363 +9,354.08719643537285,0.0,0.0,73.73179246843152,0.1093566249983268 +10,352.01722479777135,0.0,0.0,73.30076101421447,0.1087173329979123 +11,352.19504125685603,0.0,0.0,73.33778784373752,0.1087722500014933 +12,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644 +13,353.63739856928817,0.0,0.0,73.63813078495703,0.1092177089994947 +14,349.80761818700586,0.0,0.0,72.84065328453109,0.1080349160001787 +15,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222 +16,343.3340886156128,0.0,0.0,71.49266628104358,0.106035624998185 +17,352.7287560959643,0.0,0.0,73.44892360959012,0.1089370829977269 +18,352.0274792749238,0.0,0.0,73.30289631023446,0.108720500000345 +19,330.632971611579,0.0,0.0,68.84790495534112,0.102112999997189 +20,344.06923077621286,0.0,0.0,71.64574538067167,0.1062626669991004 +21,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678 +22,353.40008547212716,0.0,0.0,73.58871493426808,0.1091444169978785 +23,352.96917436413725,0.0,0.0,73.49898605192921,0.1090113340032985 +24,351.45126682709304,0.0,0.0,73.18291124144665,0.1085425420023966 +25,352.4323511146662,0.0,0.0,73.38720301989446,0.1088455410026654 +26,336.2224182777831,0.0,0.0,70.01179883728538,0.1038392499976907 +27,350.4310523596511,0.0,0.0,72.97047136182381,0.1082274580003286 +28,349.8513332379995,0.0,0.0,72.84975609621154,0.1080484169979172 +0,355.0041249267728,0.0,0.0,73.82307578403244,0.1089681670018762 +1,353.4402104749345,0.0,0.0,73.49785991471933,0.1084881249989848 +2,350.8823752799278,0.0,0.0,72.96595831644073,0.1077030000014929 +3,350.97739756413245,0.0,0.0,72.98571819187727,0.1077321669981756 +4,352.6420323212576,0.0,0.0,73.33187883959745,0.1082431249997171 +5,354.0361270375474,0.0,0.0,73.62178071020813,0.1086710410017985 +6,334.5734779261205,0.0,0.0,69.57452458154408,0.102696999998443 +7,353.746994323176,0.0,0.0,73.56165558831248,0.1085822919994825 +8,351.5615043409446,0.0,0.0,73.10718314347316,0.1079114579988527 +9,344.2555939822133,0.0,0.0,71.58791974281488,0.1056689159995585 +10,353.00555848573197,0.0,0.0,73.40747407273736,0.1083547089983767 +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889 +12,354.5682479676913,0.0,0.0,73.73243520967453,0.1088343749979685 +13,340.24380070376134,0.0,0.0,70.75366769212076,0.1044374999983119 +14,357.4707397539094,0.0,0.0,74.33600811503362,0.1097252919971651 +15,353.83101804782274,0.0,0.0,73.57912831428018,0.108608082999126 +16,353.14374430898687,0.0,0.0,73.43620980222931,0.1083971250009199 +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538 +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631 +19,356.9293892674415,0.0,0.0,74.22343433016144,0.1095591249977587 +20,337.23407287000106,0.0,0.0,70.12779506033984,0.1035136669997882 +21,353.29401357030446,0.0,0.0,73.46745828157741,0.1084432500028924 +22,353.32387845566024,0.0,0.0,73.47366868179559,0.1084524170000804 +23,354.1508333805749,0.0,0.0,73.64563388390287,0.1087062500009778 +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099 +25,352.473707948533,0.0,0.0,73.29687580145946,0.1081914579990552 +26,360.93358193698526,0.0,0.0,75.0561058349181,0.1107882079995761 +27,338.47464045384555,0.0,0.0,70.38577097759506,0.1038944579995586 +28,355.80325111504544,0.0,0.0,73.98925400286308,0.1092134579994308 +29,354.60680161162924,0.0,0.0,73.7404524364568,0.108846209001058 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/mac_report.md new file mode 100644 index 000000000..f567e5107 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 611.35 ms | 106.11 ms | +| **Average Power** | 6.242 W | 4.652 W | +| **Total Energy** | 3434.22 J | 444.25 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.22% | 0.00e+00 | +8.263 | large | βœ… | +| `gpu_mj` | +84.75% | 3.81e-273 | +2.269 | large | βœ… | +| `ane_mj` | +81.59% | 2.97e-43 | +0.684 | medium | βœ… | +| `dram_mj` | +86.52% | 0.00e+00 | +19.310 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.123 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.263, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.684, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.310, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.123, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/with_smell.csv new file mode 100644 index 000000000..164636486 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3901.919386580033,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836 +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607 +2,3910.238854451517,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785 +3,3911.202429509975,5.193629375243073,102.64076515304096,659.6575156478605,0.6256015840008331 +4,3896.403904938974,5.173978627600272,102.25241095443356,657.1616187645627,0.623234542003047 +5,3930.108712793952,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417 +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612 +7,3946.2917657672665,5.240223999486666,103.56160634882944,665.5756302937743,0.6312141659982444 +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819 +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852 +10,3942.866246351669,5.235675301590572,103.47171124874188,664.9978873443307,0.6306662500028324 +11,3920.5909670871097,5.206096279073792,102.88714633579808,661.2409722664623,0.6271032920012658 +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156 +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094 +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447 +15,3919.679751755219,5.20488628935831,102.86323352622864,661.0872880599075,0.6269575420010369 +16,3939.657718042438,5.231414743059418,103.38751059520632,664.4567417883288,0.6301530419987103 +17,3906.386898745852,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914 +18,3907.238977299649,5.188366364136408,102.536753209183,658.9890457628128,0.6249676250008633 +19,3910.2154035747167,5.192318717719235,102.6148628636436,659.4910453390316,0.6254437080024218 +20,3923.541347906347,5.210014047270941,102.96457248548916,661.7385790552976,0.6275752090004971 +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085 +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521 +23,3944.379726555403,5.237685030155285,103.5114291536458,665.2531486378001,0.630908333001571 +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105 +25,3947.333495911774,5.241607297942091,103.58894422791964,665.7513269322089,0.6313807920014369 +26,3899.151355134042,5.177626927144285,102.32451164349892,657.6249995797234,0.623674000002211 +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154 +28,3905.69892649689,5.1863213528559315,102.49633801830024,658.7293031120989,0.6247212920025049 +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838 +0,3910.189399402901,5.064969011966773,108.26371263078975,658.2793607329183,0.6260335840015614 +1,3891.337220217528,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194 +2,3907.058080336083,5.060912933751627,108.17701395894105,657.752203988575,0.6255322500001057 +3,3951.59134928142,5.118598023697437,109.41003275653271,665.2493681456768,0.632662166000955 +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164 +5,3922.660266933899,5.081122847790299,108.60900087151764,660.3788280137984,0.6280302089980978 +6,3930.0888097662346,5.090745230597534,108.81467930402228,661.6294212529888,0.6292195419991913 +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145 +8,3942.416276003112,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765 +9,3854.415707263761,4.992723912429943,106.71947362819004,648.8898742766679,0.6171040410008573 +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072 +11,3887.387947176371,5.035433703786343,107.63239541843308,654.4407422256527,0.6223830000017188 +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194 +13,3942.922980650436,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838 +14,3923.878487924429,5.082700840807135,108.64273047225252,660.5839151983221,0.6282252499986498 +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408 +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367 +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995 +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112 +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427 +20,3869.410472914197,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875 +21,3881.1130856960726,5.027305714140381,107.45865963975064,653.3843709397581,0.6213783750026778 +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678 +23,3928.4846375733423,5.088667305050476,108.77026364545392,661.3593592846852,0.6289627090009162 +24,3922.13378131762,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337 +25,3911.223882566581,5.066309004645449,108.29235497429649,658.4535157024397,0.626199207999889 +26,3896.116177201257,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608 +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889 +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519 +29,3903.2857744554663,5.056026568811887,108.07256790835407,657.1171372820976,0.6249282919998222 +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121 +1,3980.12865087621,4.269844255224866,105.04484031018048,671.0660693934268,0.6250826669966045 +2,3971.13262941209,4.260193408747831,104.8074144073978,669.5493031545323,0.6236698339998838 +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611 +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523 +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475 +6,3990.206595708371,4.280655778826397,105.31082068378376,672.765252364458,0.6266654169994581 +7,4021.568777932776,4.314300830368314,106.13854152210796,678.0530453478076,0.6315908750002563 +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759 +9,3997.3794308539345,4.288350728318347,105.50012846464432,673.9746218873453,0.6277919169988309 +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202 +11,3968.9393336960334,4.25784046191252,104.74952823876971,669.1795044710481,0.6233253749996948 +12,3979.600159699821,4.269277294904891,105.0308922004336,670.9769636062633,0.6249996669976099 +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161 +14,4107.520756463168,4.406509297467087,108.40701388846765,692.5449026339484,0.645089707999432 +15,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824 +16,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711 +17,3976.313797783479,4.265751717020369,104.94415747575891,670.4228694632716,0.6244835409997904 +18,3991.684352559485,4.282241102356066,105.34982211968163,673.0144082507576,0.6268974999984493 +19,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932 +20,3945.661844046774,4.23286859186177,104.13518121697432,665.2548239256503,0.6196696250008245 +21,3953.734597793666,4.2415289654912565,104.34823994009348,666.6159234280282,0.6209374579993892 +22,3949.024607959405,4.236476133083047,104.22393236780093,665.8217997596224,0.6201977499986242 +23,3953.6438628657106,4.241431625921392,104.34584523458176,666.6006251457864,0.620923208000022 +24,3980.280939138054,4.270007628627338,105.04885955115223,671.0917458210638,0.6251065840006049 +25,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405 +26,3931.6565666482784,4.217843863143608,103.76554941436892,662.8934765223435,0.6174700840019796 +27,3941.93640780823,4.228871979210103,104.03685830103603,664.6267000450754,0.6190845419987454 +28,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492 +29,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411 +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153 +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463 +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461 +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329 +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703 +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084 +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313 +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481 +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714 +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226 +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025 +11,2887.674248714824,2.131296944146192,0.0,576.88214005382,0.6101675410027383 +12,2878.129996539094,2.12425264699067,0.0,574.975446934678,0.6081508339993889 +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829 +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129 +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895 +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531 +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873 +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236 +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326 +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912 +21,2877.9582412967975,2.124125880121724,0.0,574.9411347085722,0.6081145419993845 +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427 +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106 +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583 +25,3027.270938994274,2.234328648479853,0.0,604.7699246502577,0.639664417001768 +26,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333 +27,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665 +28,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394 +29,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021 +0,2951.495904520558,2.2148803831535737,0.033558793684145,582.077276451496,0.6138243749992398 +1,2934.3258093471427,2.201995490811955,0.0333635680426053,578.6910876989903,0.6102534999990894 +2,2958.2731076379414,2.219966175146153,0.033635851138578,583.4138379986367,0.6152338339998096 +3,2935.405490800975,2.202805712255422,0.0333758441250821,578.9040163495498,0.6104780419991584 +4,2932.144611632538,2.2003586625099203,0.0333387676137866,578.2609242611298,0.6097998750010447 +5,2944.56143397673,2.2096765735356927,0.0334799480838741,580.7096995147969,0.6123822089975874 +6,2943.7381974341965,2.2090587951183283,0.0334705878048231,580.5473454746576,0.612210999999661 +7,2933.019134274525,2.201014927369172,0.033348711020745,578.4333926548225,0.6099817499998608 +8,2934.32941563607,2.2019981970662945,0.033363609046459,578.6917989108315,0.6102542500011623 +9,2925.5930077164485,2.195442166108989,0.0332642752440755,576.9688541084912,0.6084373340017919 +10,2917.215217792331,2.189155251555359,0.0331690189629599,575.316633912541,0.6066950000022189 +11,2923.9008598754463,2.194172333732569,0.0332450353595843,576.6351383119911,0.6080854169995291 +12,2924.1478899759636,2.1943577116363113,0.0332478441157016,576.6838561868458,0.608136791997822 +13,2930.0543738836395,2.198790092965551,0.0333150014085689,577.8486994316285,0.6093651670016698 +14,2933.8690140150657,2.201652699545132,0.0333583742355323,578.6010011153077,0.6101584999996703 +15,2982.76855070272,2.23834820177805,0.0339143666936068,588.2446903006103,0.6203281659982167 +16,2921.9182046353953,2.1926844969407173,0.0332224923778896,576.2441302944961,0.6076730829990993 +17,2933.0884565591487,2.2010669486401797,0.0333494992218209,578.4470640024837,0.6099961669970071 +18,2923.955156023265,2.19421307899415,0.0332456527120325,576.645846290205,0.608096709001984 +19,2920.4111839350135,2.1915535888540183,0.033205357406879,575.9469242223173,0.6073596669994004 +20,2923.425629243495,2.193815708130423,0.03323963194137,576.5414160230634,0.6079865829997289 +21,2927.2629120147917,2.1966953063442443,0.033283262217337,577.2981831597108,0.6087846250011353 +22,2927.0900125724725,2.196565558041878,0.0332812963339678,577.2640849126723,0.6087486670003273 +23,2935.697195491655,2.2030246151500767,0.0333791608356072,578.9615446936073,0.610538707998785 +24,2924.6337375033436,2.194722304436847,0.0332533682490431,576.7796722796531,0.6082378339997376 +25,2924.4710510312407,2.1946002202167354,0.0332515184881323,576.7475881766557,0.6082039999964763 +26,2911.763322173297,2.1850640052693304,0.0331070303828686,574.2414419908566,0.6055611659976421 +27,2927.3087935001095,2.1967297370211165,0.0332837838942593,577.3072316459284,0.6087941670011787 +28,2926.9894358421257,2.19649008261035,0.0332801527668234,577.2442497405534,0.6087277499973425 +29,2917.142890252357,2.1891009750614616,0.0331681965918403,575.3023698854705,0.6066799580003135 +0,3932.41265398972,4.478944969047389,106.51806719621725,662.7828265851253,0.6318551250005839 +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532 +2,3908.699448921323,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069 +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925 +4,3869.162738242476,4.406904489866914,104.8048037702936,652.1224606396295,0.6216922079984215 +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051 +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978 +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778 +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074 +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706 +10,3894.38802258755,4.435635620180903,105.48808621527964,656.3740198554913,0.6257453749967681 +11,3910.956019959519,4.4545062614400495,105.93686695439756,659.1664491082828,0.6284075000003213 +12,3903.508961494342,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862 +13,3851.845836610113,4.3871808605659375,104.33573730804557,649.2038083969791,0.6189097499991476 +14,3886.53331843636,4.426689258052392,105.27532423473473,655.0501600581138,0.6244832910015248 +15,3901.3203334792697,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713 +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272 +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295 +18,3870.832218570019,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032 +19,3910.039595065132,4.453462470507768,105.91204356553436,659.0119915944615,0.6282602499995846 +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754 +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134 +22,3893.81000588388,4.434977269891977,105.47242935840843,656.2765988627368,0.6256524999989779 +23,3910.340138863701,4.453804784311792,105.92018445697892,659.062646316093,0.6283085409995692 +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367 +25,3905.901941366857,4.448749759801594,105.79996609212364,658.314616711693,0.6275954170014302 +26,3892.3977655668273,4.43336875440296,105.43417571561324,656.0385748526666,0.6254255829990143 +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478 +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464 +29,3882.8875904046654,4.422536841543025,105.176571652636,654.4356960782576,0.6238975000014761 +0,2919.8438339372997,1.8030529009870455,0.0,578.746591348305,0.6114040419997764 +1,2940.8832996175584,1.816045126526332,0.0,582.9168551496465,0.6158096250001108 +2,2918.2461827418515,1.802066324380024,0.0,578.4299185273882,0.6110694999988482 +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858 +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065 +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882 +6,2918.686534688,1.8023382491469344,0.0,578.5172013419226,0.61116170799869 +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931 +8,2928.492909138035,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707 +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285 +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552 +11,2901.6572096881105,1.7918223532329065,0.0,575.1417934923327,0.6075958329965943 +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582 +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802 +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459 +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779 +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259 +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319 +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815 +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445 +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325 +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322 +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245 +23,2956.03202168321,1.8253997183538984,0.0,585.9195058931133,0.6189817089980352 +24,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916 +25,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485 +26,2885.41686295252,1.781793664727619,0.0,571.9227701985892,0.6041951670013077 +27,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423 +28,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737 +29,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253 +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118 +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383 +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707 +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253 +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816 +5,2959.9483484575985,0.7817513006203682,0.0,587.2311835138305,0.6225438329965982 +6,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121 +7,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468 +8,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847 +9,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303 +10,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009 +11,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886 +12,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326 +13,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613 +14,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585 +15,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853 +16,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831 +17,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403 +18,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213 +19,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625 +20,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838 +21,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121 +22,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417 +23,2895.520515500325,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469 +24,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353 +25,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964 +26,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662 +27,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742 +28,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383 +29,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062 +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959 +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716 +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105 +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413 +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463 +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355 +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888 +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446 +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244 +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718 +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669 +11,2923.2033739341073,2.15396766984184,0.0,582.5472874576939,0.6160578330018325 +12,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169 +13,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923 +14,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987 +15,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699 +16,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191 +17,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126 +18,2890.736802936653,2.130044618540409,0.0,576.0772234736866,0.6092155839978659 +19,2899.8549367525866,2.136763331861536,0.0,577.8943204873644,0.6111372079976718 +20,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774 +21,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751 +22,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521 +23,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356 +24,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575 +25,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191 +26,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396 +27,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963 +28,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486 +29,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595 +0,2880.5533097361076,1.825887494790604,0.0,573.3286733642497,0.6070650420006132 +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006 +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765 +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952 +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557 +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265 +6,2887.4259199457047,1.830243815153036,0.0,574.6965579580532,0.6085134170025412 +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313 +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573 +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542 +10,2889.5760202011456,1.8316066926098376,0.0,575.124501479489,0.6089665419967787 +11,2886.0018121415305,1.8293411203054568,0.0,574.4131117759134,0.6082132920018921 +12,2885.7890726205305,1.8292062717575304,0.0,574.3707693318646,0.6081684580021829 +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014 +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828 +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965 +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266 +17,2884.020161092751,1.8280850172308232,0.0,574.0186954104786,0.6077956670014828 +18,2897.609582545234,1.8366989021423303,0.0,576.7234552726918,0.6106595829987782 +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742 +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978 +21,2887.338331075706,1.830188295464553,0.0,574.6791247758696,0.6084949579999375 +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784 +23,2886.9599134100326,1.829948429019025,0.0,574.6038067119739,0.6084152079965861 +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548 +25,2884.892258368299,1.8286378108570625,0.0,574.1922726091175,0.6079794580000453 +26,2922.417689909578,1.852423941096783,0.0,581.66111750439,0.6158877919988299 +27,2884.9082776565983,1.8286479649542224,0.0,574.1954609956258,0.6079828340007225 +28,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738 +29,2886.107584019245,1.8294081656012915,0.0,574.4341639988056,0.6082355830003507 +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732 +1,2896.197005839203,2.303364416405272,0.0,578.6118178196027,0.6105097500003467 +2,2891.913463676345,2.299957687313914,0.0,577.7560375972763,0.6096067920007044 +3,2930.8278672154415,2.330906566902171,0.0,585.5304858567439,0.6178098329983186 +4,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047 +5,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838 +6,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925 +7,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505 +8,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595 +9,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481 +10,2883.2526825801706,2.293069711476986,0.0,576.0257581018926,0.6077811249997467 +11,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576 +12,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386 +13,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493 +14,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134 +15,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784 +16,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753 +17,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699 +18,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159 +19,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282 +20,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848 +21,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501 +22,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107 +23,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373 +24,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919 +25,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884 +26,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782 +27,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034 +28,2898.382757621868,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129 +29,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197 +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472 +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569 +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239 +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394 +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282 +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405 +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909 +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421 +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795 +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559 +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654 +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195 +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255 +13,2895.9775494362375,1.2657535699498177,0.0,576.1177301540012,0.6104503339993244 +14,2957.7576947981343,1.2927560028792655,0.0,588.4081006789415,0.6234731250006007 +15,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398 +16,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095 +17,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925 +18,2892.9834865033354,1.264444945907924,0.0,575.522099590091,0.609819208002591 +19,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311 +20,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305 +21,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842 +22,2887.0621846104905,1.2618569047778825,0.0,574.3441322378487,0.608571042001131 +23,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829 +24,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487 +25,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155 +26,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769 +27,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812 +28,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479 +29,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126 +0,2966.6029811713843,1.7742228601436734,0.0,591.4644861652034,0.6251297919989156 +1,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265 +2,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777 +3,2883.2836595675476,1.724392449394602,0.0,574.8527521202967,0.6075725420014351 +4,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583 +5,2895.5215166664366,1.7317114893746155,0.0,577.2926666982493,0.6101513329995214 +6,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914 +7,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713 +8,2892.0002968654867,1.729605569335403,0.0,576.590625854408,0.6094093330029864 +9,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046 +10,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127 +11,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929 +12,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064 +13,2929.81050511024,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686 +14,2896.032852824472,1.7320173018835905,0.0,577.3946140029238,0.6102590829977999 +15,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724 +16,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483 +17,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001 +18,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563 +19,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858 +20,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492 +21,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169 +22,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306 +23,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008 +24,2892.911846698592,1.7301507358313315,0.0,576.7723654930026,0.6096014169997943 +25,2888.988239731408,1.727804161915112,0.0,575.9900989768936,0.6087746250013879 +26,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271 +27,2895.1272397065154,1.731475685932106,0.0,577.2140579929434,0.6100682500000403 +28,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418 +29,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198 +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527 +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564 +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987 +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384 +4,2893.026344318771,1.8327376373551,0.0,574.8798130845488,0.6091410410008393 +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858 +6,2890.589531602901,1.8311939119105216,0.0,574.3955885141876,0.608627958001307 +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217 +8,2885.062076872394,1.827692258929286,0.0,573.2972154736007,0.6074641250015702 +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232 +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973 +11,2877.88322905155,1.823144445315372,0.0,571.8706903741963,0.6059525829987251 +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582 +13,2899.5976737820447,1.8369005869453976,0.0,576.1856168360363,0.6105246670013003 +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935 +15,2893.7573506004273,1.8332007312111809,0.0,575.0250729973689,0.6092949579979177 +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482 +17,2903.462655182409,1.8393490599411704,0.0,576.9536360382741,0.6113384579984995 +18,2896.517124134783,1.834949052942479,0.0,575.5734738429754,0.6098760419990867 +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857 +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489 +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384 +22,2893.456165583078,1.8330099299354896,0.0,574.9652238408559,0.6092315419991792 +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818 +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026 +25,2893.683735625488,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463 +26,2885.7042275061403,1.8280990625650808,0.0,573.4248186795049,0.6075993330014171 +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378 +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905 +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568 +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368 +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331 +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703 +3,3935.267962817907,4.790650299087921,105.05929606950852,659.6356950282599,0.6278394580003805 +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595 +5,3923.989045361744,4.776919760330386,104.75818439437823,657.7451054608762,0.6260399999991932 +6,3898.694465671203,4.7461270705047545,104.0828985531672,653.5051889387316,0.6220044590008911 +7,3894.514781749232,4.741038877217773,103.971314118566,652.8045838630626,0.6213376249979774 +8,3918.225926213384,4.769903951309849,104.60432721194184,656.7790825265099,0.6251205420012411 +9,3904.976514887927,4.753774605880575,104.25060953875165,654.5581957327869,0.6230067079995933 +10,3900.61585011822,4.748466093174299,104.13419348387832,653.8272543678459,0.622310999999172 +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011 +12,3890.512694027786,4.736166883005214,103.86447094478568,652.1337477368717,0.620699125000101 +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967 +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517 +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265 +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703 +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107 +18,3901.9553617383385,4.750096765292231,104.1699542374576,654.0517853748532,0.6225247080001282 +19,3916.8843211021353,4.76827073065291,104.56851056872397,656.5542006052852,0.6249065000010887 +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055 +21,3945.550802306459,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603 +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766 +23,3902.181791517138,4.750372412566515,104.17599920145868,654.0897398841586,0.6225608329987153 +24,3924.885099333542,4.778010583437871,104.78210622140676,657.89530341183,0.6261829579998448 +25,3922.3157590073897,4.774882763142472,104.71351290359992,657.4646266173096,0.6257730409997748 +26,3926.91669945643,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049 +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414 +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465 +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341 +0,3918.98590650998,5.811744006176802,104.04357804161344,658.8981264933894,0.6259630829990783 +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426 +2,3895.8175551975046,5.777386003855434,103.42849081614756,655.0028373451503,0.622262500000943 +3,3895.0135710260497,5.776193718325202,103.40714616427016,654.8676636862141,0.6221340830015833 +4,3989.9385038992486,5.916964678676485,105.9272699659612,670.8273690589139,0.6372960420012532 +5,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738 +6,3919.633892088269,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375 +7,3916.25597151212,5.807695590658208,103.97110209712828,658.4391432006579,0.6255270420006127 +8,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078 +9,3902.03785350188,5.786610528324133,103.59363100994068,656.0486545531619,0.6232560420030495 +10,3910.647659587238,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752 +11,3934.942942332293,5.835407833888616,104.46721495725885,661.5809789604639,0.6285118330015393 +12,3885.9065565334263,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964 +13,3895.060006851172,5.776262581325674,103.40837897028432,654.8754709299515,0.6221414999999979 +14,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226 +15,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504 +16,3888.3659841602007,5.766335537141401,103.23066205859465,653.7500065585541,0.6210722920004628 +17,3914.404354325165,5.804949695331016,103.92194425836848,658.1278312631894,0.625231291000091 +18,3953.712874083537,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388 +19,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325 +20,3938.661296366054,5.840922046566098,104.56593204053677,662.2061449000541,0.6291057500020543 +21,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758 +22,3916.1808364849194,5.807584167561926,103.96910736755976,658.4265107672076,0.6255150409997441 +23,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244 +24,3892.105981516816,5.771881846247623,103.32995374173188,654.3788113846371,0.6216696659976151 +25,3870.0916956217825,5.7392352899310515,102.74550533411048,650.6775549682176,0.618153416999121 +26,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036 +27,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518 +28,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333 +29,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414 +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901 +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142 +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616 +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762 +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902 +5,2966.9573755043743,2.297635795126894,0.0,585.8295502339719,0.6165655409968167 +6,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627 +7,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874 +8,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908 +9,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865 +10,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068 +11,2967.8171338738516,2.298301598963909,0.0,585.999310629945,0.6167442080004548 +12,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236 +13,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381 +14,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771 +15,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913 +16,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114 +17,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037 +18,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645 +19,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216 +20,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751 +21,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859 +22,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738 +23,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113 +24,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915 +25,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869 +26,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682 +27,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566 +28,2920.540539483107,2.261690221786506,0.0,576.6644862549181,0.6069196249991364 +29,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783 +0,4178.899201105131,5.488284972494792,106.22806997967332,659.321559768019,0.6223265419976087 +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206 +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914 +3,4220.901846967973,5.543448420809863,107.29578178350656,665.9484843842789,0.6285816249983327 +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172 +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912 +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368 +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697 +8,4225.91204815074,5.550028481858783,107.42314163983296,666.7389637664328,0.6293277500008116 +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834 +10,4439.673079154838,5.830767833948093,112.85697018358567,700.4648924373064,0.6611612920023617 +11,4255.092473689515,5.5883520889305,108.16491121526325,671.3428756473014,0.6336733329990238 +12,4192.928435888898,5.506710025297929,106.5846946462786,661.5350079788633,0.6244157920009457 +13,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666 +14,4163.911680836073,5.468601372027502,105.84708559231544,656.9569190420027,0.6200945830023556 +15,4176.033033663473,5.484520741068836,106.1552116930974,658.8693531228598,0.6218997089999903 +16,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769 +17,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779 +18,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807 +19,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965 +20,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122 +21,4177.193318685504,5.486044581330055,106.18470626393656,659.0524159089396,0.6220724999984668 +22,4240.824025130627,5.56961286885411,107.80220570860396,669.0916857270402,0.6315484590013511 +23,4186.504453143061,5.498273198691004,106.4213963096036,660.5214706523857,0.6234591249994992 +24,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181 +25,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926 +26,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411 +27,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244 +28,4209.1590568276115,5.528026230524569,106.99727878720144,664.095777645307,0.6268328749974899 +29,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153 +0,3011.160313901874,2.5761328304088797,0.0,592.341068570989,0.6206386250014475 +1,2961.1375400963516,2.533336932338099,0.0,582.5008275343196,0.6103282920012134 +2,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373 +3,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715 +4,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253 +5,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257 +6,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351 +7,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131 +8,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213 +9,2955.905773306222,2.528861007849166,0.0,581.4716593705813,0.6092499580008734 +10,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297 +11,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951 +12,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527 +13,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587 +14,3009.9004890583597,2.575055014616423,0.0,592.0932418476579,0.620378958999936 +15,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875 +16,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105 +17,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127 +18,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394 +19,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971 +20,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966 +21,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951 +22,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086 +23,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334 +24,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168 +25,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722 +26,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954 +27,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092 +28,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243 +29,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267 +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217 +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801 +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909 +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121 +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203 +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098 +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605 +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971 +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547 +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134 +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695 +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172 +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701 +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134 +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964 +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188 +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913 +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462 +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725 +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809 +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217 +21,2959.5925028935953,2.819144749413765,0.0,590.7976357988317,0.6212104999976873 +22,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129 +23,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713 +24,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781 +25,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903 +26,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854 +27,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921 +28,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723 +29,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385 +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527 +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256 +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887 +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624 +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048 +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276 +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462 +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564 +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943 +9,2911.6807159487107,2.395513992598981,0.0,578.1173768805539,0.6088341670001682 +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115 +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415 +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134 +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991 +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045 +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869 +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593 +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571 +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506 +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875 +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202 +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929 +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303 +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345 +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896 +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476 +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539 +27,2900.4514699927317,2.386275405529134,0.0,575.8877978676978,0.6064861250015383 +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997 +29,2973.5114011729834,2.4463836744344314,0.0,590.3939267635094,0.6217630000028294 +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562 +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794 +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635 +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166 +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775 +5,2933.95348805359,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838 +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928 +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211 +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087 +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981 +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659 +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679 +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196 +13,2934.7404678341923,2.498502015864287,0.0,583.0171170618786,0.6106430830004683 +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203 +15,2960.0932313018448,2.5200861836385533,0.0,588.0537106647776,0.6159183329982625 +16,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892 +17,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375 +18,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906 +19,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768 +20,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191 +21,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664 +22,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131 +23,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699 +24,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191 +25,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552 +26,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684 +27,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217 +28,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517 +29,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705 +0,2916.2755902573767,2.778202283975463,0.0,582.3513655012664,0.6122291249994305 +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344 +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462 +3,2936.678307023689,2.7976390184558526,0.0,586.4255860613846,0.6165123750033672 +4,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494 +5,2910.084396408831,2.772304216951885,0.0,581.1150453798662,0.6109293750014331 +6,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939 +7,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087 +8,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651 +9,2915.6827503916365,2.777637512568216,0.0,582.2329812489377,0.6121046669977659 +10,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618 +11,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109 +12,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725 +13,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288 +14,2910.23364716231,2.772446401313879,0.0,581.1448492778177,0.6109607079997659 +15,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568 +16,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962 +17,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443 +18,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258 +19,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842 +20,2907.473272598668,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353 +21,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615 +22,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745 +23,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742 +24,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454 +25,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221 +26,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285 +27,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206 +28,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614 +29,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375 +0,2916.763315644649,1.67067423255281,0.0,579.3229968800124,0.6117394579996471 +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503 +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236 +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066 +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468 +5,2911.317883364726,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165 +6,2904.907730762028,1.6638835477999545,0.0,576.9682590351122,0.6092529589986952 +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608 +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151 +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957 +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525 +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145 +12,2910.385942948952,1.6670213779735783,0.0,578.0563330261181,0.6104019170015818 +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145 +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146 +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738 +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285 +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401 +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839 +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941 +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607 +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747 +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453 +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695 +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931 +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845 +26,2919.6262939438634,1.6723140996092831,0.0,579.8916371805151,0.6123399170028279 +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624 +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778 +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547 +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467 +1,3903.728343298676,4.398604694153814,104.4335387233186,657.7913383530023,0.6261754590013879 +2,3896.366740257168,4.390309859358135,104.23659923657875,656.550883513103,0.6249946249990899 +3,3867.204522235971,4.357450741663593,103.45644412404316,651.63695182151,0.620316874999844 +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219 +5,3883.288345022032,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649 +6,3913.1526881477103,4.40922376491048,104.68566120628368,659.3793721161582,0.6276871660011238 +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447 +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342 +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838 +10,3932.1188059921474,4.430594220957613,105.1930476400088,662.5752266795704,0.6307294159996673 +11,3893.858755217265,4.387483936599365,104.16950497956373,656.1282796096323,0.6245923329988727 +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107 +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145 +14,3880.918548161949,4.372903297146174,103.82332525194025,653.9478112550415,0.6225166660005925 +15,3906.1908620137183,4.401379386813467,104.4994166535864,658.2062810280139,0.6265704580000602 +16,3930.222044592053,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943 +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557 +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798 +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723 +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463 +21,3891.139591523075,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553 +22,3941.683689330291,4.4413716462931685,105.4489298445666,664.1869416502057,0.6322636660006538 +23,3892.6048936178126,4.386071122737294,104.13596135347484,655.9169997184408,0.6243912079989968 +24,3895.8038444594863,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387 +25,3904.985839441688,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816 +26,3869.997206323634,4.360597454820098,103.53115472277416,652.1075284708238,0.6207648339986918 +27,3899.157859558534,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278 +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943 +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187 +0,2884.6844519453502,1.803721085721138,0.0,577.4579653693895,0.6114691249968018 +1,2878.9248167003684,1.800119729763321,0.0,576.304997928672,0.6102482499991311 +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427 +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472 +4,2882.651347302002,1.8024498362046744,0.0,577.0509771908595,0.6110381660000712 +5,2883.2398715165705,1.8028178256860057,0.0,577.1687883418456,0.6111629160004668 +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607 +7,2872.177626013424,1.7959008800713845,0.0,574.9543410124832,0.6088180419974378 +8,2883.9494831095662,1.8032615280785136,0.0,577.3108388411359,0.6113133329999982 +9,2895.4779954549176,1.810470018695324,0.0,579.6186237630511,0.6137570419996337 +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427 +11,2881.051089801741,1.8014492351878608,0.0,576.7306366282913,0.6106989579966466 +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899 +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684 +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046 +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056 +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859 +17,2876.165985025137,1.798394701273215,0.0,575.752733252062,0.6096634579989768 +18,2874.9411706166497,1.797628855437566,0.0,575.5075491260119,0.6094038330011244 +19,2924.685426053381,1.8287326950149667,0.0,585.4653857670138,0.6199481670009845 +20,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265 +21,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629 +22,2881.6203519457463,1.80180518057792,0.0,576.8445918857607,0.6108196249988396 +23,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016 +24,2881.1031818804754,1.8014818070626624,0.0,576.7410644536909,0.6107100000008359 +25,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997 +26,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505 +27,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135 +28,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412 +29,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503 +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902 +1,2891.2179356716797,1.8025049474262345,0.0,577.6694559288594,0.610794749998604 +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615 +3,2890.2822721394496,1.8019216160470384,0.0,577.4825090242601,0.6105970829994476 +4,2888.0888706578953,1.8005541587642735,0.0,577.044264288417,0.6101337079999212 +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195 +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254 +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625 +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879 +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803 +10,2881.393286312906,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755 +11,2888.1411383469012,1.8005867446053,0.0,577.0547074470245,0.6101447500004724 +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915 +13,2877.2999624761123,1.7938279067806189,0.0,574.8886250878775,0.607854458001384 +14,2922.8568793298064,1.822229974644518,0.0,583.9909618740375,0.6174787499985541 +15,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717 +16,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456 +17,2905.045772924987,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403 +18,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848 +19,2891.0660697041267,1.8024102678953409,0.0,577.6391128925327,0.6107626670018362 +20,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701 +21,2882.54195887732,1.797095984337481,0.0,575.9359834248971,0.6089618749974761 +22,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447 +23,2878.608193025542,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499 +24,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453 +25,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866 +26,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225 +27,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195 +28,2882.0064778239716,1.7967621432817775,0.0,575.828993548786,0.6088487500019255 +29,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754 +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346 +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122 +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938 +3,2875.852308278687,1.3273726080466577,0.0,572.9272019481385,0.6067970830008562 +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447 +5,2887.2685299862255,1.332641856379874,0.0,575.201541259963,0.6092058750000433 +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371 +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983 +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988 +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336 +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573 +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017 +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408 +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017 +14,2885.526801565024,1.3318379477124145,0.0,574.8545541813708,0.6088383749993227 +15,2889.1212408691845,1.3334969898891955,0.0,575.570638260924,0.6095967920009571 +16,2872.3532493423795,1.3257575894406517,0.0,572.2301195423212,0.6060587909996684 +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522 +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246 +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503 +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753 +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069 +22,2881.77754512887,1.3301074484515285,0.0,574.1076274378909,0.6080472920002649 +23,2921.4931000362635,1.34843848010628,0.0,582.0197589758731,0.6164271670022572 +24,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095 +25,2893.6888300427822,1.3356051971627023,0.0,576.4805932253515,0.6105605410011776 +26,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662 +27,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984 +28,2892.5888965608005,1.3350975140767345,0.0,576.2614645133705,0.6103284580021864 +29,2898.673296586618,1.3379058175168723,0.0,577.4735984857201,0.6116122500025085 +0,2862.093422249503,1.6155676119463367,0.0,571.7460807910495,0.6039815000003728 +1,2896.950584654971,1.635243455574937,0.0,578.7093216964283,0.6113373329972092 +2,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016 +3,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356 +4,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268 +5,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356 +6,2884.313628671702,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567 +7,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811 +8,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459 +9,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387 +10,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671 +11,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383 +12,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422 +13,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622 +14,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879 +15,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377 +16,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079 +17,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865 +18,2895.925838535033,1.6346650165103809,0.0,578.5046132919696,0.6111210829985794 +19,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398 +20,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964 +21,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497 +22,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405 +23,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144 +24,2894.0532612962406,1.6336080016993535,0.0,578.1305379075203,0.61072591699849 +25,2894.1069651130647,1.6336383159254455,0.0,578.1412660502684,0.610737250000966 +26,2887.702792283546,1.630023348599695,0.0,576.8619364911697,0.6093857910018414 +27,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123 +28,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185 +29,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258 +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375 +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712 +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556 +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808 +4,2897.009265067062,2.535967566748408,0.0,577.366405361154,0.6108203750009125 +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125 +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013 +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129 +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921 +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624 +10,2892.0727798560765,2.531646294276225,0.0,576.3825767087042,0.6097795409987157 +11,2929.9184866037235,2.5647754547556207,0.0,583.9251275478487,0.6177591250016121 +12,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565 +13,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538 +14,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249 +15,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274 +16,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156 +17,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747 +18,2904.8236489370047,2.542808077853171,0.0,578.9237917249135,0.6124679999993532 +19,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813 +20,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951 +21,2887.1623848924046,2.527347860537005,0.0,575.4039477746288,0.608744207998825 +22,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676 +23,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325 +24,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941 +25,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643 +26,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333 +27,2890.892017617972,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591 +28,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687 +29,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/without_smell.csv new file mode 100644 index 000000000..d933244f5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/out-tmp/fetchtype-n500/results/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857528,0.1129105830004846 +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.1122849579987814 +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641608,0.1091614580000168 +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344536,0.1082465830004366 +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.1150248750018363 +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.1116048340009001 +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.0514827035298,0.1169229170009202 +7,582.6423693083759,0.5656378805250903,20.6457826391658,101.92087559711472,0.1191075409988116 +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.1106570830015698 +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.1162444999972649 +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.1113215000004856 +11,538.6854559697524,0.5229638550765147,19.088180710292782,94.23154963659948,0.1101215830021828 +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.111878332998458 +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187356,0.1090952919985284 +14,539.7671454695724,0.5240139753360329,19.1265100997652,94.42076818086144,0.1103427090019977 +15,553.593014338471,0.5374363345316143,19.61642621040392,96.83930952841526,0.1131690830006846 +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.1101606249976612 +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968148,0.1123614160023862 +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534612,0.1132802920001267 +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355836,0.1092215419994317 +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538245,0.1131127090011432 +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992972,0.1152214579997235 +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937 +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.1151998329987691 +24,536.9986247763089,0.5213262542576872,19.028408280405586,93.936474439057,0.1097767500032205 +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.1118286669989174 +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.1110817080007109 +27,544.085117892408,0.5282059272057841,19.279516343011117,95.1761055083922,0.1112254169966036 +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257103,0.1116604999988339 +29,566.5485704249801,0.5500137811297665,20.07550301123648,99.1056081873198,0.1158175420023326 +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951331,0.1165232500025013 +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.109883916000399 +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729285,0.1088155409997853 +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658149,0.1146176250003918 +4,553.11275808707,0.4312899385275857,15.327380892288048,94.31979194107126,0.110460084000806 +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839276,0.1107872500033408 +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067 +7,547.9159557125065,0.4272377293823527,15.183371613434383,93.43360497184838,0.1094222499996249 +8,557.4791708931641,0.4346946510083453,15.448379135835042,95.06437637051738,0.1113320840013329 +9,533.7877060177743,0.4162212199034948,14.791861815031895,91.02437909120276,0.1066007499975967 +10,552.6339298454541,0.4309165719764217,15.314112019469755,94.23813954838208,0.1103644590002659 +11,536.8584659497922,0.418615646433979,14.876956050192176,91.54802175475405,0.1072139999996579 +12,537.1480562614719,0.4188414546184701,14.884980925671789,91.5974042677162,0.107271832999686 +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.1069220419994962 +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073804,0.112219291000656 +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.111232209001173 +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326 +17,561.6544679972243,0.4379503409287378,15.564081346852063,95.77637071233858,0.1121659169984923 +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.1104156669971416 +19,562.1610470070955,0.4383453461547649,15.578119224884723,95.86275531676898,0.1122670840013597 +20,529.2493757437318,0.4126824546946085,14.66609954376224,90.25047836129016,0.1056944170013594 +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.1101329169978271 +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.1124342920011258 +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.1112789590006286 +24,556.7222241829976,0.4341044214478748,15.427403285301398,94.93529770586986,0.1111809169997286 +25,558.98491731835,0.4358687575059111,15.49010507444084,95.32114442994656,0.1116327909985557 +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225053,0.1109062089999497 +27,561.1524807485683,0.4375589161307214,15.550170711722563,95.6907691199724,0.1120656669991149 +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.1134994999993068 +29,557.0070174500534,0.4343264891345185,15.43529522924212,94.98386220072588,0.1112377919998834 +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.1125216660002479 +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568808,0.1101577499975974 +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097 +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.112258417000703 +4,625.393215626768,2.0118871276612262,21.409515849074182,109.17334677648466,0.1277901670000574 +5,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070756,0.1136530000003404 +6,581.2750486108054,1.8699591852123023,19.899188310561104,101.4717474843506,0.1187752500009082 +7,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.1096269589979783 +8,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.1114606659975834 +9,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713872,0.1128588749998016 +10,530.8233484268193,1.70765629539432,18.172040577403703,92.66451897271818,0.1084661660024721 +11,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788 +12,561.3068844925039,1.8057216921458392,19.215604422080258,97.98595446436669,0.1146950410002318 +13,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393 +14,552.9138385846918,1.7787213016685075,18.928279512095063,96.52080119997412,0.1129800420021638 +15,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.1120357909967424 +16,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.1092452910015708 +17,560.2365478283398,1.802278423969773,19.178962851300977,97.79910844032202,0.114476332997583 +18,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733424,0.1063855409993266 +19,545.8038038438997,1.7558483522747603,18.684876805338963,95.27962002155115,0.1115272080023714 +20,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.1126457079990359 +21,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697 +22,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.1090439170002355 +23,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.112828207998973 +24,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.1119214999998803 +25,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654147,0.1058321659984358 +26,548.6950850466077,1.7651495907417427,18.78385602223288,95.784343829684,0.1121180000009189 +27,546.7342628234665,1.75884163457625,18.716729847188773,95.4420479441754,0.1117173339989676 +28,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.1114615829974354 +29,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651888,0.1148124999999709 +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.1091742919998068 +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111 +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464 +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.1080349999974714 +4,352.95630957691594,0.902188806075616,0.0,74.88167090427612,0.1085900830003083 +5,355.88853599161115,0.9096838466130364,0.0,75.503759268882,0.1094922079973912 +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448 +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.1080987919995095 +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.1078200419979111 +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.1075920420007605 +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.1079821250023087 +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.1082636669998464 +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.106822749999992 +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.1075403750000987 +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614 +15,356.18445481047524,0.9104402423442992,0.0,75.56654011457682,0.1095832499995594 +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.1081861250022484 +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.1078271250007674 +18,353.32834195736103,0.9031397550741976,0.0,74.96059967115839,0.1087045420026697 +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.107993666002585 +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.1081487080009537 +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.1078684999993129 +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.1099669169998378 +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.1078520410010241 +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.1094752499993774 +25,352.68558102305303,0.9014967989796868,0.0,74.82423431531402,0.1085067910025827 +26,353.91150762756075,0.904630380189732,0.0,75.08432155574776,0.1088839580006606 +27,358.5786109780503,0.916559925817226,0.0,76.07447384282976,0.110319832998357 +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.108140459000424 +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.1086507079999137 +0,350.06159203288655,0.0,0.0,73.32729560385845,0.1087225420014874 +1,348.15467995134566,0.0,0.0,72.9278553079902,0.1081302909988153 +2,349.6879634578959,0.0,0.0,73.24903173947592,0.1086064999981317 +3,345.65050696371725,0.0,0.0,72.40330695111199,0.1073525419997167 +4,340.1390654644476,0.0,0.0,71.24882697039375,0.1056407920004858 +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063 +6,350.6147227766598,0.0,0.0,73.44315973314124,0.1088943340000696 +7,344.5928124845704,0.0,0.0,72.18175200907858,0.1070240420012851 +8,347.23235425746674,0.0,0.0,72.73465602438603,0.1078438339973217 +9,350.3030715703917,0.0,0.0,73.37787824940402,0.1087975410009676 +10,348.65723454798535,0.0,0.0,73.03312526705905,0.1082863749979878 +11,348.17815851859984,0.0,0.0,72.93277335635823,0.108137582999916 +12,352.10694777546087,0.0,0.0,73.7557356514507,0.1093577909996383 +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034 +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177 +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136 +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447 +17,349.51704839988264,0.0,0.0,73.21323021406631,0.1085534169978927 +18,339.98330586077833,0.0,0.0,71.21620005341305,0.1055924159991263 +19,350.75907473976633,0.0,0.0,73.47339709511014,0.1089391670029726 +20,347.3249194409645,0.0,0.0,72.75404562532324,0.1078725830011535 +21,398.16710519859527,0.0,0.0,83.40394286925121,0.1236632090003695 +22,353.67980870531187,0.0,0.0,74.08520235380207,0.1098462920017482 +23,397.841502728058,0.0,0.0,83.33573901841518,0.1235620830011612 +24,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113 +25,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702 +26,349.00389754202627,0.0,0.0,73.1057406593714,0.1083940419994178 +27,349.8933590281963,0.0,0.0,73.29205588734567,0.1086702919965318 +28,348.0918976573909,0.0,0.0,72.91470431990045,0.108110791999934 +29,348.4616335231562,0.0,0.0,72.99215277966113,0.1082256250010686 +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.112606250000681 +1,532.8827144907617,0.4343244694909029,20.07915432031021,96.28639392867557,0.111914875000366 +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782764,0.1119704580014513 +3,541.410961550333,0.4412753918592055,20.40050080826019,97.82735994909464,0.1137059590000717 +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.1066040840014466 +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.1111882910008716 +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.1162620830000378 +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032647,0.1119292080002196 +8,530.81126187005,0.4326361382012946,20.001101466075237,95.91210386893316,0.1114798330017947 +9,539.3258148522472,0.4395758992526152,20.32193195775552,97.45059551123364,0.1132680410009925 +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.4540377854172,0.1132720419991528 +11,530.2759930276953,0.4321998689253943,19.980932401858617,95.81538632638356,0.1113674169973819 +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647 +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.1108480830007465 +14,530.8965736635557,0.4327056713245281,20.00431603584934,95.92751882748384,0.1114977500001259 +15,538.9450995668178,0.4392655983930176,20.30758651032335,97.38180419759053,0.113188084000285 +16,533.1491585277918,0.4345416339097989,20.08919399844532,96.33453760984928,0.1119708330006687 +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.1070651660011208 +18,514.0279683439179,0.4189569647944158,19.368702757034143,92.87953634903896,0.1079550419999577 +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129492,0.1120103749999543 +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.112965249998524 +21,531.0947711170215,0.4328672115687322,20.011784165600623,95.96333105700664,0.111539375000575 +22,541.2827962393301,0.4411709311041561,20.395671507199836,97.80420180324448,0.1136790419986937 +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547 +24,500.526534169196,0.4079526610783415,18.85996533139102,90.4399668636754,0.1051195000000007 +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.4115216807082,0.1132226250010717 +26,531.2782888578109,0.4330167871568365,20.018699160096823,95.9964908143079,0.1115779169995221 +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.114608040999883 +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.1120559580012923 +29,534.66053966854,0.4357734806075874,20.146143218858462,96.60762854700516,0.112288249998528 +0,340.64918730588545,0.0,0.0,71.49545654085841,0.1037612910004099 +1,359.87735697665374,0.0,0.0,75.53106507974576,0.1096181659995636 +2,357.04781740694864,0.0,0.0,74.93720127241826,0.1087562919965421 +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077 +4,361.7094135366254,0.0,0.0,75.91557713803003,0.110176207999757 +5,353.73252394336674,0.0,0.0,74.2413874305585,0.1077464580012019 +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035 +7,338.8384735800955,0.0,0.0,71.1154239169323,0.1032097499992232 +8,355.53448516285744,0.0,0.0,74.61958307833125,0.1082953330005693 +9,355.65390787855864,0.0,0.0,74.64464751969373,0.1083317090015043 +10,356.53813036938084,0.0,0.0,74.83022814932919,0.1086010420003731 +11,354.8124958061129,0.0,0.0,74.46805194130923,0.1080754159993375 +12,356.29587060954617,0.0,0.0,74.77938266730163,0.1085272499985876 +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865 +14,336.2974250979103,0.0,0.0,70.58210862338031,0.102435749999131 +15,357.04535515580596,0.0,0.0,74.9366844951115,0.1087555419981072 +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161 +17,356.4013372564373,0.0,0.0,74.80151800873296,0.1085593749994586 +18,358.36306935886296,0.0,0.0,75.21324637181236,0.1091569159980281 +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413 +20,358.2503538344796,0.0,0.0,75.18958963586425,0.1091225829986797 +21,336.7975356102561,0.0,0.0,70.68707182521217,0.1025880829984089 +22,351.84930825701434,0.0,0.0,73.84613809406216,0.1071728329989127 +23,355.9800156634005,0.0,0.0,74.71309102646735,0.1084310410005855 +24,353.9434572371491,0.0,0.0,74.28565811342115,0.107810708002944 +25,356.2458047328008,0.0,0.0,74.76887484033942,0.1085119999988819 +26,404.1946903107813,0.0,0.0,84.83238766458936,0.1231171670006006 +27,361.9292404971096,0.0,0.0,75.96171442379344,0.1102431670005898 +28,349.61795580865146,0.0,0.0,73.37782180873364,0.1064931660002912 +29,356.15757387973906,0.0,0.0,74.75035694757553,0.1084851249979692 +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219 +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.1019022909968043 +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134 +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.1075519169971812 +4,407.89391497730094,0.868260994398697,0.0,86.71284800581769,0.1239151669979037 +5,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.1092284160004055 +6,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.1055996670002059 +7,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.1072167499987699 +8,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.1087792079997598 +9,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.1089186249992053 +10,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.1087490000027173 +11,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.1089228750024631 +12,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.1083967079975991 +13,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.1076077499965322 +14,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.1083305419997486 +15,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.1090984170004958 +16,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.108379416000389 +17,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.1077096250010072 +18,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.108017208000092 +19,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.1086980000000039 +20,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.1092419999986304 +21,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.110597749997396 +22,405.9576962196502,0.8641394736744057,0.0,86.30123352304825,0.123326958000689 +23,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.1104769160010619 +24,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.1082216249997145 +25,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.1076850419995025 +26,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.1083025000007182 +27,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.1082828329999756 +28,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.1102724999982456 +29,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.1092242089980572 +0,403.80530111655503,0.0,0.0,85.20626977676426,0.1254480830029933 +1,351.73175655141023,0.0,0.0,74.21831970730892,0.1092706669987819 +2,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061 +3,328.1519445206855,0.0,0.0,69.24278367640527,0.1019452500004263 +4,349.2189998358078,0.0,0.0,73.68810718656938,0.1084900419991754 +5,347.0344361100074,0.0,0.0,73.22714611040125,0.1078113750008924 +6,348.8421177226201,0.0,0.0,73.60858193288522,0.1083729580022918 +7,349.7607123637488,0.0,0.0,73.802413025719,0.1086583329997665 +8,348.86438286229674,0.0,0.0,73.61328006213873,0.1083798749968991 +9,349.5485351074402,0.0,0.0,73.7576418637468,0.1085924170001817 +10,349.2062562033976,0.0,0.0,73.6854181743695,0.1084860830014804 +11,348.9237973941225,0.0,0.0,73.62581702144415,0.1083983329990587 +12,348.52452136305044,0.0,0.0,73.54156646523587,0.1082742920007149 +13,349.0319010610443,0.0,0.0,73.6486277923333,0.1084319170004164 +14,353.06652971176385,0.0,0.0,74.49996792162754,0.1096853340022789 +15,345.82868949784233,0.0,0.0,72.97272356856122,0.1074367920009535 +16,338.35479420348673,0.0,0.0,71.39566963446653,0.1051149160011846 +17,337.7432057089416,0.0,0.0,71.26661938645225,0.1049249169991526 +18,351.2683696181278,0.0,0.0,74.1205412186682,0.1091267090014298 +19,349.83072674614044,0.0,0.0,73.81718664146358,0.1086800840021169 +20,351.41952290191574,0.0,0.0,74.15243581599138,0.1091736670023237 +21,347.59841378933527,0.0,0.0,73.34615008127537,0.1079865829997288 +22,349.5599332493968,0.0,0.0,73.76004696629455,0.1085959580013877 +23,340.3002223481199,0.0,0.0,71.80617111838608,0.105719291997957 +24,350.65422853504253,0.0,0.0,73.99095235328762,0.1089359170000534 +25,349.36518956692623,0.0,0.0,73.71895443308603,0.1085354579990962 +26,347.2503698208989,0.0,0.0,73.27270991546585,0.1078784579985949 +27,348.0902365247607,0.0,0.0,73.44992876016128,0.1081393749991548 +28,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439 +29,348.35848065329765,0.0,0.0,73.50653049748111,0.1082227090009837 +0,350.2437335737623,0.0,0.0,73.26884233321877,0.1097303749993443 +1,348.89690052127264,0.0,0.0,72.9870931137106,0.1093084159983845 +2,344.6200794331875,0.0,0.0,72.09240835577674,0.1079685000004246 +3,348.24483274191084,0.0,0.0,72.8506845309527,0.109104125000158 +4,345.50688280525327,0.0,0.0,72.27792218577584,0.108246332998533 +5,349.28976713270595,0.0,0.0,73.06927840084587,0.1094315000009373 +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958 +7,346.57482729959054,0.0,0.0,72.50132962829542,0.1085809169999265 +8,346.00907053653475,0.0,0.0,72.3829767811272,0.1084036669999477 +9,345.64931945621555,0.0,0.0,72.30771906012771,0.1082909579999977 +10,346.6860092861362,0.0,0.0,72.5245882184189,0.1086157500030822 +11,356.34736331255743,0.0,0.0,74.54568426391941,0.1116426250009681 +12,349.03401953271384,0.0,0.0,73.01577757046779,0.1093513749983685 +13,344.75839219546305,0.0,0.0,72.12134253789166,0.1080118329991819 +14,344.37390740929675,0.0,0.0,72.04091067722797,0.1078913749988714 +15,338.3729501588257,0.0,0.0,70.78554720177965,0.106011291998584 +16,343.2693938159089,0.0,0.0,71.80985320332805,0.1075453340017702 +17,393.3508368048623,0.0,0.0,82.28658411507446,0.1232357089975266 +18,340.6583170286766,0.0,0.0,71.26363194337405,0.1067272910004248 +19,394.2611769502774,0.0,0.0,82.47702169379554,0.123520916000416 +20,350.23469104240684,0.0,0.0,73.26695069108311,0.1097275419997458 +21,348.4636090527246,0.0,0.0,72.89645119424085,0.1091726670019852 +22,344.2709700068494,0.0,0.0,72.01937680356475,0.1078591250006866 +23,346.28117640365764,0.0,0.0,72.43989966072517,0.108488917001523 +24,348.48262613381,0.0,0.0,72.90042945104354,0.1091786249999131 +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156 +26,338.7078270988537,0.0,0.0,70.85560140508998,0.1061162080004578 +27,391.2020495267679,0.0,0.0,81.83707098694545,0.1225624999970023 +28,348.54553126622045,0.0,0.0,72.91358881918269,0.1091983330006769 +29,344.56861072035196,0.0,0.0,72.08164141651599,0.1079523749976942 +0,349.5570979228151,0.0,0.0,73.44896139887625,0.1089127500017639 +1,347.24183407513084,0.0,0.0,72.96247800034911,0.1081913749985687 +2,344.7376100562334,0.0,0.0,72.43629027768198,0.1074111250018177 +3,351.6277678281301,0.0,0.0,73.88405070145102,0.1095579159991757 +4,349.9146892287216,0.0,0.0,73.52409850860788,0.1090241659985622 +5,346.9369301696893,0.0,0.0,72.89841157081808,0.1080963750027876 +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817 +7,349.49852426123,0.0,0.0,73.4366538970852,0.1088944999974046 +8,346.91740668224895,0.0,0.0,72.8943092942976,0.1080902920002699 +9,346.9200802047294,0.0,0.0,72.89487105502462,0.1080911249991913 +10,345.9247293954029,0.0,0.0,72.68572787467728,0.1077810000024328 +11,348.7487013459444,0.0,0.0,73.27910105467957,0.1086608750010782 +12,396.09105260708606,0.0,0.0,83.22667914985942,0.1234115000006568 +13,346.2514323292838,0.0,0.0,72.75437471755963,0.1078827919991454 +14,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314 +15,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937 +16,347.9824296464449,0.0,0.0,73.11809199260635,0.1084221249984693 +17,357.2821339838763,0.0,0.0,75.07214650604604,0.1113196670012257 +18,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021 +19,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659 +20,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366 +21,337.4620408760736,0.0,0.0,70.90754718236538,0.1051442499992845 +22,344.88858884112295,0.0,0.0,72.46801395032172,0.1074581659995601 +23,347.06143366416603,0.0,0.0,72.92457225361979,0.1081351670000003 +24,350.9464166897125,0.0,0.0,73.74088515349878,0.1093456249982409 +25,349.12528336836505,0.0,0.0,73.35822849506813,0.1087782080030592 +26,349.5365024599655,0.0,0.0,73.44463387880921,0.1089063330000499 +27,347.7287463838418,0.0,0.0,73.06478804806281,0.1083430840008077 +28,347.93963719702685,0.0,0.0,73.1091004401986,0.1084087920025922 +29,349.69617582957653,0.0,0.0,73.47818445818719,0.1089560830005211 +0,352.72069606426135,0.9034682471999864,0.0,74.95440273066554,0.1094220830018457 +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334 +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.1084641250017739 +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.1104006250025122 +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.1071309159997326 +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.1081715000000258 +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.1083696669993514 +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.108185165998293 +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.1072509999976318 +9,397.1924653152403,1.017379429229816,0.0,84.40481190647361,0.1232182499988994 +10,355.586244105474,0.9108081387769468,0.0,75.56334188371707,0.1103110419971926 +11,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.1079684579999593 +12,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.1077727500014589 +13,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.1088582079974003 +14,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852 +15,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.1082003749979776 +16,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.1086762089980766 +17,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.104039959001966 +18,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.1092145830007211 +19,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.1081076670016045 +20,360.0307626207023,0.9221924476576192,0.0,76.50781787974321,0.1116898339969338 +21,351.99272624691093,0.9016036057932448,0.0,74.79970655469884,0.1091962499995133 +22,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802 +23,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.1087829999996756 +24,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903 +25,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807 +26,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.108505915999558 +27,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257 +28,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.1078266250005981 +29,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.1082103750013629 +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.1093228749996342 +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.1089070000016363 +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.1054213329989579 +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395 +4,354.3888189098163,0.9011582323003428,0.0,81.1376171378568,0.1093122500024037 +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214 +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.1027426660002674 +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695 +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098 +9,369.5021486200632,0.9395891893710402,0.0,84.59782664299996,0.113973999999871 +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.1095547080003598 +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.1115347920022031 +12,362.8293302804259,0.9226212015041912,0.0,83.07007929098847,0.1119157499997527 +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.1091690419998485 +14,356.00332808847406,0.905263689808702,0.0,81.50726036759092,0.1098102500000095 +15,355.7832782663517,0.9047041357309752,0.0,81.4568797763704,0.1097423749997688 +16,359.8954688249249,0.91516082673507,0.0,82.39836925159092,0.1110107919994334 +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.1094131669997295 +18,355.96537090717135,0.905167170323378,0.0,81.49857003911599,0.109798541998316 +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.1092755830031819 +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574 +21,354.52849339615904,0.9015134038139284,0.0,81.16959572858,0.1093553329992573 +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.1082306659991445 +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.1068390000000363 +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.1068899999991117 +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.1085886250002658 +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.1092238750024989 +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.1091210000013234 +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.1081110839986649 +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092 +0,350.4356841019941,0.0,0.0,74.02446695872452,0.1093239590009034 +1,346.4714390348405,0.0,0.0,73.18707755660988,0.108087249998789 +2,345.72749858615435,0.0,0.0,73.02993090271205,0.1078551659993536 +3,397.1397798880135,0.0,0.0,83.89003131815507,0.1238940410003124 +4,349.2921261580012,0.0,0.0,73.78290689198242,0.1089672079979209 +5,346.26975989888166,0.0,0.0,73.14447575772542,0.1080243329997756 +6,350.39080418180447,0.0,0.0,74.01498672506138,0.1093099579993577 +7,349.6472676163195,0.0,0.0,73.85792538564502,0.1090779999976803 +8,361.78815498173515,0.0,0.0,76.42251214550602,0.1128655419997812 +9,353.5460632089863,0.0,0.0,74.68148953342224,0.1102942910001729 +10,342.0485443957291,0.0,0.0,72.25280506973742,0.1067074580023472 +11,350.28796278914035,0.0,0.0,73.99326296912378,0.109277874998952 +12,345.76957050704704,0.0,0.0,73.03881798715949,0.1078682910010684 +13,356.1562593262886,0.0,0.0,75.23285568991444,0.1111085829979856 +14,399.69388332935665,0.0,0.0,84.4295487085925,0.1246908339999208 +15,352.1317801069439,0.0,0.0,74.38274269482416,0.1098530829985975 +16,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226 +17,345.3318911540231,0.0,0.0,72.94636455768223,0.1077317499984928 +18,349.3621113945349,0.0,0.0,73.79769026041323,0.1089890410003135 +19,349.9381648592711,0.0,0.0,73.9193732185175,0.1091687499974796 +20,332.77482680217906,0.0,0.0,70.29386643211716,0.1038143749974551 +21,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219 +22,347.0243842208858,0.0,0.0,73.3038792252507,0.1082597500026167 +23,348.0907413848161,0.0,0.0,73.52913174441076,0.1085924170001817 +24,346.1256479612438,0.0,0.0,73.11403419640622,0.1079793749995587 +25,348.0938122335487,0.0,0.0,73.52978041676593,0.1085933750000549 +26,349.7563885449727,0.0,0.0,73.88097560268639,0.1091120419987419 +27,330.1607584718866,0.0,0.0,69.74168232666726,0.1029988750015036 +28,351.14262369975336,0.0,0.0,74.1737977183195,0.1095444999991741 +29,346.8602380368698,0.0,0.0,73.26920571930842,0.108208542002103 +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.1099223329983942 +1,564.308332268748,0.4792136753465044,19.990056171597043,98.44418073546764,0.1151113749983778 +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578128,0.1094470829993952 +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924892,0.1137343750015134 +4,551.1749149853679,0.4680607066477709,19.524818048735582,96.1530423084992,0.1124323330004699 +5,548.5636364583718,0.4658431948572852,19.43231612833247,95.69750202925374,0.1118996670011256 +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083 +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377804,0.1143951250014652 +8,533.602080044307,0.4531377605617067,18.902318012002624,93.08744281253348,0.1088477089979278 +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393835,0.115234083001269 +10,542.0632066445227,0.4603229948455245,19.20204492784188,94.56349522683776,0.1105736659992544 +11,542.1635024143241,0.4604081665534718,19.205597804801968,94.5809919291275,0.1105941249988973 +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865 +13,545.9905515906022,0.4636581173279407,19.341167179965527,95.24862467393984,0.1113747919989691 +14,541.7711140282568,0.4600749482224672,19.19169784013721,94.5125393634154,0.1105140830004529 +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213731,0.1131512499996461 +16,548.961128120956,0.4661807469181963,19.44639687144476,95.76684486690948,0.1119807499999296 +17,550.204670187255,0.467236769539098,19.490448100773804,95.98378208531756,0.1122344159994099 +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602 +19,536.4276274869267,0.4555372306694755,19.00241019364098,93.58036252895798,0.1094240829988848 +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.1141973749981843 +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.1122670840013597 +22,543.2377147988591,0.4613203934965441,19.24365070014155,94.7683894068615,0.1108132500012288 +23,545.5227906275,0.463260892198532,19.32459721742448,95.16702328306988,0.1112793749998672 +24,546.4460568464966,0.4640449348447745,19.357302996382025,95.32808804382654,0.1114677089972246 +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472688,0.1121792079975421 +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.1124135829995793 +27,544.6440567149677,0.4625146666268074,19.293468950718253,95.01372722990702,0.1111001249992114 +28,547.1235913519002,0.4646203007962273,19.38130397607119,95.44628464928212,0.1116059170017251 +29,561.8191989819761,0.4770998899519389,19.901881123709455,98.00994882155548,0.1146036249992903 +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.1125474159998702 +1,531.6083156995155,0.4598403719365596,20.10159340179818,95.84387180792008,0.1101422920000914 +2,539.1055697078513,0.4663254850732108,20.38508549034322,97.19555467454497,0.1116956250007206 +3,559.2132189145998,0.4837185705779671,21.145411799551137,100.82077063903628,0.1158616669999901 +4,539.8532858167908,0.4669722583524913,20.41335872226605,97.33036070518357,0.1118505420017754 +5,543.1984920844951,0.4698658566069157,20.53985030310232,97.93346925564144,0.1125436250003986 +6,539.2855617453997,0.4664811779076673,20.391891491392315,97.22800550961236,0.1117329169974254 +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.1105710419979004 +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358164,0.1126799999983632 +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.1101741250022314 +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.4618670014884,0.1120016669992765 +11,540.2482576395201,0.4673139083690628,20.428293708704743,97.4015703300661,0.1119323749990144 +12,536.8670548817402,0.4643891732063245,20.300441000162188,96.79197195828964,0.1112318339983176 +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.1116492920009477 +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.1090459580009337 +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541893,0.1114379159989766 +16,548.9821147845478,0.4748686813088457,20.75854521150097,98.97620086137228,0.1137419160004356 +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697708,0.1134956250025425 +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.1120829160026914 +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.1114866669995535 +20,532.0847357354425,0.4602524745317389,20.119608172387444,95.9297657631153,0.1102410000021336 +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.1081512079981621 +22,554.8095819519035,0.479909431407269,20.978898001517763,100.02683720331508,0.114949291000812 +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018736,0.1116149580011551 +24,545.6371112170256,0.4719752583897657,20.632061295324043,98.37312885580974,0.1130488749986398 +25,531.4940855078803,0.4597415629972396,20.097274039593614,95.82327720185324,0.1101186249979946 +26,539.73040643437,0.4668659678765017,20.408712310029937,97.30820673311658,0.1118250830004399 +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.1107058749985299 +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.1125420829994254 +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.1122179589983716 +0,411.9106270133148,0.0669283657508026,0.0,79.67821942633053,0.1092553339985897 +1,409.7639893685133,0.0665795741926254,0.0,79.2629830763206,0.1086859589995583 +2,408.6489630946226,0.0663984016726984,0.0,79.0472971913475,0.1083902089994808 +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.1070329169997421 +4,406.4680772704537,0.0660440453766274,0.0,78.62543602087497,0.1078117500001099 +5,409.1637451782701,0.066482044874201,0.0,79.1468744227363,0.1085267499984183 +6,411.117003532524,0.0667994156361238,0.0,79.52470431480539,0.1090448329996434 +7,408.04856056941446,0.0663008466275756,0.0,78.93115791012883,0.1082309580015135 +8,406.718009040155,0.0660846549744341,0.0,78.67378174706386,0.1078780419993563 +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.1085171250015264 +10,434.73755799887095,0.0706373479565961,0.0,84.0937627423277,0.11530995800058 +11,465.2579892959261,0.0755963911440289,0.0,89.99750365696646,0.1234052090003388 +12,412.8927512188439,0.0670879439790143,0.0,79.8681973070166,0.1095158330026606 +13,411.1630334709524,0.0668068947064672,0.0,79.5336081480492,0.1090570419983123 +14,405.92375972203575,0.0659556031719937,0.0,78.5201455762586,0.107667375003075 +15,411.4063674703926,0.0668464322805089,0.0,79.58067762994595,0.1091215840024233 +16,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.1056415409984765 +17,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794 +18,416.45131938035576,0.067666149870884,0.0,80.55655142128744,0.1104597089979506 +19,390.2780465829524,0.06341344489121,0.0,75.4937061429856,0.1035174999997252 +20,411.7770990939091,0.0669066697690972,0.0,79.6523903601103,0.1092199170016101 +21,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.1082832499996584 +22,407.79329023407206,0.0662593696050161,0.0,78.88177951477175,0.1081632499990519 +23,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.1083763749993522 +24,407.6768863974922,0.0662404559911434,0.0,78.85926285745624,0.108132375000423 +25,408.8302439287478,0.0664278566786494,0.0,79.08236337593212,0.1084382919980271 +26,400.83356580406127,0.0651285345363654,0.0,77.53552036554309,0.1063172499998472 +27,407.19320440622545,0.0661618660177472,0.0,78.7657014941281,0.1080040830020152 +28,408.4123814834321,0.0663599612451754,0.0,79.00153386238134,0.1083274580014403 +29,404.7000282651971,0.0657567679365012,0.0,78.28343222840476,0.107342791998235 +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.1093273749975196 +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297068,0.1149548330031393 +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279236,0.1123761250019015 +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.1126610829996934 +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958 +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126876,0.1119830829993588 +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.1098542079998878 +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.6683569356906,0.1112435000031837 +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419237,0.1138349580032809 +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.1120877499997732 +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875492,0.1131611669989069 +11,513.552572917201,0.5900642354468032,20.980061704775224,94.9019978676942,0.1103523749989108 +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.551863476102,0.111108041000989 +13,571.0766273014697,0.6561585147086973,23.330080522975905,105.53216111564883,0.1227131659979932 +14,520.6179409055757,0.598182237731416,21.268701786005906,96.20764323513608,0.1118705839980975 +15,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.1148837079999793 +16,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496596,0.1101848340003925 +17,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.1123124999976425 +18,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739272,0.1124144159985007 +19,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.1129014580001239 +20,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.1130966669988993 +21,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.1092158749997906 +22,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128129,0.1146049589988251 +23,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.1106439169998338 +24,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798 +25,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312756,0.1119207500014454 +26,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.104731792001985 +27,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.1137661669999943 +28,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617624,0.1135343749992898 +29,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.111408125001617 +0,372.783325595462,0.9128559578339812,0.0,76.71370993797419,0.1098833750002086 +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.1083453339997504 +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.1077917500006151 +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.1125241670015384 +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.106433916997048 +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.1089840000022377 +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.1079727910000656 +7,349.09480260671245,0.8548485099203007,0.0,71.83893588922824,0.1029008340010477 +8,368.7968106124073,0.9030939494408668,0.0,75.89333967708617,0.1087082910016761 +9,370.3373070063856,0.9068662515120998,0.0,76.21035276596128,0.1091623749998689 +10,368.9456615170731,0.9034584492074164,0.0,75.9239711574677,0.1087521669978741 +11,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.1080825829994864 +12,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496 +13,368.16721356507986,0.9015522189603804,0.0,75.76377721559642,0.1085227080002368 +14,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.1060791250019974 +15,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.1052611670020269 +16,368.1332915981502,0.9014691522900468,0.0,75.75679653874505,0.1085127090009336 +17,369.6513056658199,0.9051864005965116,0.0,76.0691830723513,0.1089601660023618 +18,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.1087312500021653 +19,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.1087735000000975 +20,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.1081318750002537 +21,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.1091148750019783 +22,370.9635115163816,0.9083996744914116,0.0,76.33921708966713,0.1093469580009696 +23,367.1765929975245,0.8991264294334446,0.0,75.55992105127724,0.1082307079996098 +24,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.1100110000006679 +25,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.1075496660014323 +26,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.1073167909999028 +27,371.7753182833393,0.9103875923861928,0.0,76.50627581941745,0.109586250000575 +28,369.53200373193727,0.904894259093262,0.0,76.04463236602264,0.108925000000454 +29,367.425238752588,0.8997353025866021,0.0,75.611088947,0.1083039999975881 +0,356.466325968142,0.0,0.0,73.92875082637863,0.1092395420018874 +1,351.7245436332654,0.0,0.0,72.94533663218813,0.1077864170001703 +2,353.4256006327688,0.0,0.0,73.29812456725101,0.1083077080002112 +3,353.35122991135097,0.0,0.0,73.28270057308399,0.1082849170015833 +4,354.96295784666904,0.0,0.0,73.61696225293952,0.1087788330005423 +5,350.3303576515806,0.0,0.0,72.6561917101098,0.107359166999231 +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967 +7,355.0087791611787,0.0,0.0,73.62646528954114,0.1087928749984712 +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658 +9,356.2385833502526,0.0,0.0,73.88151851851684,0.1091697499978181 +10,353.36836150001716,0.0,0.0,73.28625355090404,0.1082901669979037 +11,344.9872006619987,0.0,0.0,71.54805640269699,0.105721749998338 +12,335.41512274852306,0.0,0.0,69.56287095485956,0.1027883750030014 +13,354.6641076704996,0.0,0.0,73.55498270929414,0.1086872499981836 +14,355.37234762367643,0.0,0.0,73.70186697636058,0.1089042909989075 +15,352.9861603805139,0.0,0.0,73.20698757465065,0.1081730409969168 +16,354.41080472393486,0.0,0.0,73.50244935885966,0.1086096250000991 +17,354.4234494781258,0.0,0.0,73.50507179698002,0.1086135000005015 +18,350.7823055918313,0.0,0.0,72.74992271421108,0.1074976669988245 +19,338.18622604515986,0.0,0.0,70.13757939211467,0.1036375830008182 +20,349.4839750006073,0.0,0.0,72.48065756410699,0.1070997919996443 +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016 +22,350.7968527716273,0.0,0.0,72.7529397027792,0.1075021249998826 +23,354.93835033342356,0.0,0.0,73.611858817965,0.1087712919979821 +24,351.8900120547612,0.0,0.0,72.97965368491161,0.1078371250005147 +25,353.8877459607927,0.0,0.0,73.39397044191605,0.1084493330017721 +26,338.342449918055,0.0,0.0,70.16997918679662,0.1036854579979262 +27,357.2478532784631,0.0,0.0,74.09083440504997,0.1094790420029312 +28,354.8509236948433,0.0,0.0,73.59372711320542,0.1087444999975559 +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413 +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539 +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583 +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.1141362080015824 +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.1098308750006253 +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.1079319579985167 +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.1088161250008852 +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.1078220839990535 +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.1108167080019484 +8,415.29796425727784,0.942830467347616,0.0,88.73920358675761,0.1238900839998677 +9,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.1067202500016719 +10,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.1076291249992209 +11,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.1080912920006085 +12,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.108578249997663 +13,415.5291183662658,0.9433552451104836,0.0,88.78859566979871,0.1239590410004893 +14,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.1104635410010814 +15,365.2556929987476,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758 +16,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786 +17,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.1080684169974119 +18,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803 +19,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.1084587080003984 +20,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.1087163339980179 +21,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.1086105000031238 +22,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.1072365830004855 +23,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.1085144579992629 +24,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.1087537499988684 +25,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.1100431670020043 +26,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223 +27,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241 +28,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.1068625410007371 +29,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.1084712920019228 +0,355.31751000520677,0.0,0.0,73.78324951983832,0.1092719590014894 +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213 +2,351.03910799377473,0.0,0.0,72.89482045494073,0.1079562080012692 +3,352.04523324830114,0.0,0.0,73.10374680563434,0.1082656250000582 +4,347.36078088160747,0.0,0.0,72.13099959193667,0.1068250000025727 +5,353.3662284867774,0.0,0.0,73.37805729850474,0.1086718749975261 +6,350.7655636148851,0.0,0.0,72.83801775708868,0.1078720840014284 +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843 +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115 +9,354.39078102596784,0.0,0.0,73.59081015620703,0.1089869589995942 +10,354.1366069121032,0.0,0.0,73.53802977939847,0.1089087920008751 +11,336.51778199022067,0.0,0.0,69.87940300516897,0.1034904169973742 +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387 +13,354.1658720356466,0.0,0.0,73.54410681149463,0.1089177920002839 +14,348.69315700606205,0.0,0.0,72.40767337602198,0.1072347500012256 +15,355.05290449197474,0.0,0.0,73.72830301690117,0.1091905840003164 +16,398.8938216060945,0.0,0.0,82.83206299361113,0.1226731250026205 +17,353.3356074134523,0.0,0.0,73.3716986974505,0.1086624579984345 +18,330.53766821951785,0.0,0.0,68.63760598116552,0.1016513329996087 +19,346.2550728954724,0.0,0.0,71.90139444741146,0.1064849579997826 +20,349.15137082892227,0.0,0.0,72.50282349914717,0.1073756660007347 +21,341.4818789010037,0.0,0.0,70.91021964295189,0.1050170419985079 +22,354.0638505605011,0.0,0.0,73.52292160180167,0.1088864170014858 +23,352.4121301159214,0.0,0.0,73.1799345598806,0.1083784579968778 +24,354.6372291574377,0.0,0.0,73.64198619866458,0.1090627500016125 +25,333.33858460150753,0.0,0.0,69.21922863267379,0.1025127079992671 +26,353.2686780710232,0.0,0.0,73.3578005240321,0.108641874998284 +27,355.6745152674338,0.0,0.0,73.85738323855767,0.1093817500004661 +28,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042 +29,351.7074649321256,0.0,0.0,73.03360772368504,0.108161750002182 +0,357.96048293355267,0.0,0.0,74.32044363142623,0.1103388750016165 +1,336.02149904696915,0.0,0.0,69.76542962007161,0.1035763330000918 +2,351.0183178122401,0.0,0.0,72.87909796290356,0.1081989999984216 +3,347.93106372332824,0.0,0.0,72.23811633384071,0.1072473750027711 +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292 +5,350.19713174353114,0.0,0.0,72.70860173262069,0.1079458749991317 +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659 +7,355.219004525288,0.0,0.0,73.75125261391933,0.1094938329988508 +8,332.0804839475747,0.0,0.0,68.94718848869086,0.1023615420017449 +9,347.71262254057837,0.0,0.0,72.19276315553373,0.107180041999527 +10,347.69072425564144,0.0,0.0,72.18821659151654,0.1071732920026988 +11,349.79985125658436,0.0,0.0,72.6261175941649,0.107823416001338 +12,352.3465418754639,0.0,0.0,73.1548663963679,0.1086084159978781 +13,350.4592364960211,0.0,0.0,72.76302042521861,0.108026666999649 +14,352.43184142678575,0.0,0.0,73.17257645319833,0.1086347090022172 +15,333.343418635852,0.0,0.0,69.20940141661261,0.1027508329971169 +16,396.5160813956773,0.0,0.0,82.32543110573395,0.1222233750013401 +17,352.97632387457793,0.0,0.0,73.28562294575474,0.1088025419994664 +18,350.7025476533563,0.0,0.0,72.81353715546054,0.1081016660027671 +19,350.1848297681744,0.0,0.0,72.70604757284707,0.1079420829992159 +20,350.68254396824653,0.0,0.0,72.80938395190176,0.1080955000034009 +21,353.57487727944215,0.0,0.0,73.40989575436771,0.1089870420000806 +22,350.58089369750513,0.0,0.0,72.78827912727185,0.1080641670014301 +23,354.39984608014447,0.0,0.0,73.58117736273917,0.109241333000682 +24,350.82717976651696,0.0,0.0,72.83941351439523,0.1081400830007623 +25,349.56127013115605,0.0,0.0,72.57658292224077,0.1077498749982623 +26,399.81461348479326,0.0,0.0,83.01027867937269,0.1232401249981194 +27,357.78056653953445,0.0,0.0,74.28308904381807,0.110283417001483 +28,363.9649435656808,0.0,0.0,75.56710129120493,0.1121897089979029 +29,352.905762706687,0.0,0.0,73.27097290042619,0.1087807920011982 +0,369.6457899010592,0.9711657824905524,0.0,82.75002236324673,0.1110664580010052 +1,359.12051672685783,0.9435128632975972,0.0,80.3938029382194,0.1079039579999516 +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.105773584000417 +3,374.8716803818042,0.9848956994992136,0.0,83.9199059814675,0.1126366669996059 +4,376.96633455222275,0.9903989583270936,0.0,84.38882158711202,0.1132660420007596 +5,368.643464389488,0.9685323851508564,0.0,82.52563874854367,0.1107652919999964 +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.1074476249996223 +7,361.0118775242784,0.9484820119771764,0.0,80.81720867571043,0.108472249998158 +8,364.70279545437313,0.9581791147107104,0.0,81.64346870517811,0.1095812499988824 +9,363.31662114091176,0.9545372361919228,0.0,81.33315553897383,0.1091647499997634 +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.1110747499988065 +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.1074340419982036 +12,372.4174462680742,0.9784477207622896,0.0,83.37049372426266,0.1118992499978048 +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.1098165830007928 +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.1094639580005605 +15,364.7247080018868,0.9582366852740276,0.0,81.64837411421111,0.1095878340020135 +16,363.90181967276175,0.9560747210101548,0.0,81.46415984883079,0.1093405829997209 +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.1090366669996001 +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.1087789999983215 +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.1085855829987849 +20,360.06169081323577,0.94598559825909,0.0,80.60449701028317,0.1081867499997315 +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.1089155000008759 +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.1085442080002394 +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745 +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.1076402500002586 +25,415.10096515168647,1.0905895986047207,0.0,92.9257551086988,0.1247242500030552 +26,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.1124117920007847 +27,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958 +28,385.6766545760032,1.0132834737003162,0.0,86.33874012115454,0.1158832080000138 +29,374.6998646691671,0.9844442902161484,0.0,83.88144279738285,0.1125850420030474 +0,537.586585590763,1.4050178341513406,20.03823053944412,97.1469473898927,0.112041666998266 +1,551.1176123306176,1.440382060851645,20.542591772622274,99.59213106459949,0.1148617500002728 +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217444,0.1084056660001806 +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.1091209999976854 +4,539.1167749298061,1.4090170844462884,20.09526746626968,97.4234669817148,0.1123605829998268 +5,550.2607540984404,1.4381426056088673,20.510652875231223,99.43728873067025,0.1146831670012034 +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.1111136250001436 +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.1117185420007444 +8,537.9854272547229,1.406060233024167,20.053097132892287,97.2190218262424,0.1121247919982124 +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031 +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.1059001670000725 +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823145,0.1097277499975462 +12,533.816683809472,1.395164948350829,19.897709620527294,96.46569071454304,0.1112559590001183 +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914947,0.1127309580006112 +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.1122200829995563 +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.1117655419984657 +16,541.3640875617663,1.41489058354662,20.17903475105775,97.82957749093774,0.1128289589978521 +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913888,0.1121329170018725 +18,543.8858800536349,1.421481453780502,20.27303311463145,98.28528908996614,0.113354541001172 +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446 +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748584,0.11043866700129 +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454 +22,549.6611889257908,1.436575602668526,20.488304428534455,99.3289416702238,0.1145582080025633 +23,535.2031318006688,1.3987885211965203,19.949388671350377,96.71623489415944,0.1115449169992643 +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321024,0.1154080420019454 +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.1097549170008278 +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.1108595000005152 +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.1113768329996673 +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221069,0.1109710000018822 +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.1128227090011932 +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.1093853339989436 +1,362.3638254849227,0.4978892903062966,0.0,76.17706141686338,0.1088726670022879 +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.1107375419996969 +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139 +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.1103431670017016 +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.1093056250028894 +6,360.5148000962549,0.4953487223086766,0.0,75.78835451322753,0.1083171249993029 +7,358.84675249219504,0.4930568184833677,0.0,75.43769322795526,0.1078159579992643 +8,361.4683657469591,0.4966589251813122,0.0,75.98881555274077,0.1086036249980679 +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.1112682079983642 +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.1089509580015146 +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.1114148329979798 +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.1090389169985428 +13,360.0388493468535,0.4946947641479163,0.0,75.6882989146312,0.108174124998186 +14,357.3634303624893,0.4910187281704991,0.0,75.12586541008638,0.1073702920002688 +15,410.0131251531342,0.5633596113673182,0.0,86.19402053919968,0.123188959001709 +16,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.1093028750001394 +17,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.1070279170016874 +18,346.93966636378417,0.4766964363338611,0.0,72.93455475908077,0.1042384590000438 +19,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.109053791999031 +20,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.108166958001675 +21,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.1082546659999934 +22,359.93511539136995,0.4945522332939955,0.0,75.66649169398131,0.1081429580008261 +23,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.1078082080020976 +24,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.1084412910022365 +25,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169 +26,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.1088503329992818 +27,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.1085732499996083 +28,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.1122939589986344 +29,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.110120666999137 +0,363.8555760220334,0.0,0.0,75.37472069721154,0.1118581669979903 +1,356.073044172833,0.0,0.0,73.76252563107049,0.1094656249988474 +2,354.0995230742944,0.0,0.0,73.353699680899,0.1088589159990078 +3,352.099036026975,0.0,0.0,72.93928758338875,0.1082439170022553 +4,352.917119453682,0.0,0.0,73.10875814769673,0.1084954159996414 +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692 +6,352.16463583615,0.0,0.0,72.9528769513144,0.1082640839995292 +7,337.48447844835925,0.0,0.0,69.91180011804681,0.1037510419992031 +8,405.16068508681326,0.0,0.0,83.93130540910039,0.1245563750017026 +9,355.01452131885316,0.0,0.0,73.54324669258992,0.1091402089987241 +10,352.03099657689336,0.0,0.0,72.92519283018375,0.1082229999992705 +11,352.0968663843558,0.0,0.0,72.938838129767,0.1082432500006689 +12,352.44085313693654,0.0,0.0,73.01009691239383,0.1083490000019082 +13,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927 +14,333.25363011232423,0.0,0.0,69.0353561862886,0.1024503750013536 +15,352.36373178750216,0.0,0.0,72.99412079286597,0.1083252909993461 +16,352.425535562288,0.0,0.0,73.00692379100454,0.1083442910021403 +17,351.4065898823191,0.0,0.0,72.7958434858105,0.1080310420002206 +18,352.9674049543168,0.0,0.0,73.1191750708257,0.1085108750012295 +19,352.3824388133895,0.0,0.0,72.99799605806528,0.1083310419999179 +20,359.6312333359141,0.0,0.0,74.49962444727453,0.1105594999971799 +21,334.32625072049933,0.0,0.0,69.25755555351878,0.1027801249983895 +22,349.209436738063,0.0,0.0,72.34069090470156,0.1073555830007535 +23,356.1634468203862,0.0,0.0,73.7812530458984,0.1094934169996122 +24,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359 +25,354.11606046939625,0.0,0.0,73.35712549492798,0.1088640000016312 +26,351.1624910291874,0.0,0.0,72.7452770410731,0.1079559999998309 +27,354.5463838131862,0.0,0.0,73.44626938603518,0.1089962919977551 +28,397.0313202491415,0.0,0.0,82.24726194662468,0.1220572079982957 +29,355.7000551949418,0.0,0.0,73.68525887501565,0.1093509589991299 +0,371.4568880575053,0.0,0.0,76.70321474475051,0.1102369580003141 +1,369.29752302591254,0.0,0.0,76.25732116986836,0.1095961249993706 +2,361.783124260732,0.0,0.0,74.7056510819143,0.1073660830006701 +3,357.0969638630331,0.0,0.0,73.73799217217456,0.1059753749977971 +4,366.1550707681201,0.0,0.0,75.60842705024373,0.1086635420033417 +5,364.0291189051167,0.0,0.0,75.16943305786498,0.1080326250012149 +6,349.3712628459299,0.0,0.0,72.14268966676815,0.1036826250019657 +7,361.1163602890243,0.0,0.0,74.5679690473358,0.1071682080000755 +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093 +9,365.2454143175718,0.0,0.0,75.42058944024481,0.1083935839997138 +10,378.791854453436,0.0,0.0,78.21783332015166,0.1124137500009965 +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268 +12,369.4220575227252,0.0,0.0,76.28303666084257,0.1096330830005172 +13,345.8947934099548,0.0,0.0,71.42482336714019,0.1026509160001296 +14,353.18188420676984,0.0,0.0,72.92955597063431,0.1048134999982721 +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518 +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049 +17,364.24294838058665,0.0,0.0,75.21358732906856,0.1080960830004187 +18,368.872529440838,0.0,0.0,76.16956300662206,0.109469999999419 +19,371.3581850954161,0.0,0.0,76.68283328262,0.1102076660026796 +20,357.45863551761073,0.0,0.0,73.81267480555692,0.1060827080000308 +21,361.21646839471185,0.0,0.0,74.58864066166066,0.1071979170010308 +22,365.8029418804323,0.0,0.0,75.53571493059131,0.1085590410002623 +23,363.99401755379665,0.0,0.0,75.1621848775924,0.1080222080017847 +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562 +25,362.63591832244185,0.0,0.0,74.88174701162083,0.1076191659994947 +26,366.9264345364295,0.0,0.0,75.76770820148677,0.1088924590003443 +27,371.6140000532096,0.0,0.0,76.73565725835823,0.1102835839992621 +28,365.9034711798288,0.0,0.0,75.55647351843196,0.1085888749985315 +29,368.29253324875754,0.0,0.0,76.04979790358432,0.1092978750020847 +0,351.7954310298514,0.0,0.0,73.25457676290097,0.1086488340006326 +1,355.551001689785,0.0,0.0,74.0366015276662,0.1098087079990364 +2,353.76569761686557,0.0,0.0,73.6648465737376,0.1092573329988226 +3,351.52425260491015,0.0,0.0,73.19810911439244,0.1085650829991209 +4,352.8167204788052,0.0,0.0,73.46724048657845,0.1089642500010086 +5,351.8967485585963,0.0,0.0,73.27567417358975,0.108680125002138 +6,333.8565823831006,0.0,0.0,69.51915938870556,0.1031085829999938 +7,354.3529740261682,0.0,0.0,73.78713549795803,0.1094387080011074 +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363 +9,354.08719643537285,0.0,0.0,73.73179246843152,0.1093566249983268 +10,352.01722479777135,0.0,0.0,73.30076101421447,0.1087173329979123 +11,352.19504125685603,0.0,0.0,73.33778784373752,0.1087722500014933 +12,404.253122170483,0.0,0.0,84.17787372334351,0.1248499169996648 +13,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644 +14,353.63739856928817,0.0,0.0,73.63813078495703,0.1092177089994947 +15,349.80761818700586,0.0,0.0,72.84065328453109,0.1080349160001787 +16,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222 +17,343.3340886156128,0.0,0.0,71.49266628104358,0.106035624998185 +18,352.7287560959643,0.0,0.0,73.44892360959012,0.1089370829977269 +19,352.0274792749238,0.0,0.0,73.30289631023446,0.108720500000345 +20,330.632971611579,0.0,0.0,68.84790495534112,0.102112999997189 +21,344.06923077621286,0.0,0.0,71.64574538067167,0.1062626669991004 +22,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678 +23,353.40008547212716,0.0,0.0,73.58871493426808,0.1091444169978785 +24,352.96917436413725,0.0,0.0,73.49898605192921,0.1090113340032985 +25,351.45126682709304,0.0,0.0,73.18291124144665,0.1085425420023966 +26,352.4323511146662,0.0,0.0,73.38720301989446,0.1088455410026654 +27,336.2224182777831,0.0,0.0,70.01179883728538,0.1038392499976907 +28,350.4310523596511,0.0,0.0,72.97047136182381,0.1082274580003286 +29,349.8513332379995,0.0,0.0,72.84975609621154,0.1080484169979172 +0,355.0041249267728,0.0,0.0,73.82307578403244,0.1089681670018762 +1,353.4402104749345,0.0,0.0,73.49785991471933,0.1084881249989848 +2,350.8823752799278,0.0,0.0,72.96595831644073,0.1077030000014929 +3,350.97739756413245,0.0,0.0,72.98571819187727,0.1077321669981756 +4,352.6420323212576,0.0,0.0,73.33187883959745,0.1082431249997171 +5,354.0361270375474,0.0,0.0,73.62178071020813,0.1086710410017985 +6,334.5734779261205,0.0,0.0,69.57452458154408,0.102696999998443 +7,353.746994323176,0.0,0.0,73.56165558831248,0.1085822919994825 +8,351.5615043409446,0.0,0.0,73.10718314347316,0.1079114579988527 +9,344.2555939822133,0.0,0.0,71.58791974281488,0.1056689159995585 +10,353.00555848573197,0.0,0.0,73.40747407273736,0.1083547089983767 +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889 +12,354.5682479676913,0.0,0.0,73.73243520967453,0.1088343749979685 +13,340.24380070376134,0.0,0.0,70.75366769212076,0.1044374999983119 +14,357.4707397539094,0.0,0.0,74.33600811503362,0.1097252919971651 +15,353.83101804782274,0.0,0.0,73.57912831428018,0.108608082999126 +16,353.14374430898687,0.0,0.0,73.43620980222931,0.1083971250009199 +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538 +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631 +19,356.9293892674415,0.0,0.0,74.22343433016144,0.1095591249977587 +20,337.23407287000106,0.0,0.0,70.12779506033984,0.1035136669997882 +21,353.29401357030446,0.0,0.0,73.46745828157741,0.1084432500028924 +22,353.32387845566024,0.0,0.0,73.47366868179559,0.1084524170000804 +23,354.1508333805749,0.0,0.0,73.64563388390287,0.1087062500009778 +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099 +25,352.473707948533,0.0,0.0,73.29687580145946,0.1081914579990552 +26,360.93358193698526,0.0,0.0,75.0561058349181,0.1107882079995761 +27,338.47464045384555,0.0,0.0,70.38577097759506,0.1038944579995586 +28,355.80325111504544,0.0,0.0,73.98925400286308,0.1092134579994308 +29,354.60680161162924,0.0,0.0,73.7404524364568,0.108846209001058 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/mac_report.md new file mode 100644 index 000000000..6f25ee71a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 890 samples (with smell) vs 875 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 473.04 ms | 65.11 ms | +| **Average Power** | 4.361 W | 5.933 W | +| **Total Energy** | 1835.92 J | 337.99 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.86% | 0.00e+00 | +5.782 | large | βœ… | +| `gpu_mj` | +90.68% | 4.91e-137 | +1.397 | large | βœ… | +| `ane_mj` | +85.47% | 8.58e-28 | +0.535 | medium | βœ… | +| `dram_mj` | +86.08% | 0.00e+00 | +28.390 | large | βœ… | +| `time_s` | +86.12% | 0.00e+00 | +111.194 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.782, large) +- **`gpu_mj`**: 90.7% lower energy (Cohen’s d = +1.397, large) +- **`ane_mj`**: 85.5% lower energy (Cohen’s d = +0.535, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.390, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +111.194, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..5699ab346 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/with_smell.csv @@ -0,0 +1,891 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333 +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.4903181249974295 +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615 +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.4902185419996385 +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641 +5,2198.850910485615,3.1767087381743906,77.14386377861389,496.9375637685223,0.4901694590007537 +6,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346 +7,2165.6159983890375,3.128693824945763,75.97785951736712,489.4265150791473,0.4827607080005691 +8,2184.636400493825,3.156172849231463,76.6451659281788,493.7251022360924,0.4870007499994244 +9,2175.6821728479604,3.143236559158055,76.33101833660666,491.701457954188,0.4850046669998846 +10,2191.358148507132,3.1658838467110355,76.88098983539325,495.2442089049758,0.4884991670005547 +11,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945 +12,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.4890770419988257 +13,2198.6882921444367,3.1764738013249003,77.13815852270048,496.9008122262037,0.4901332080007705 +14,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969 +15,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284 +16,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624 +17,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123 +18,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.4924210420031158 +19,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198 +20,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.4888335839968931 +21,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969 +22,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.4810711249992891 +23,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.4882775419973768 +24,2188.6791289765147,3.1620134320721585,76.78699987147863,494.6387538318352,0.4879019580002932 +25,2180.3695654537623,3.150008496709209,76.49546949376993,492.76080283784785,0.4860495840002841 +26,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838 +27,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016 +28,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.4924800839980889 +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.4842013329980545 +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.1584645269379,0.4918910000014875 +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971 +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.4927279170005931 +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.4888514999984181 +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332 +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907 +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.0218930859032,0.4848583329985558 +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093 +9,2138.1194142937725,3.137493734289595,83.68851708094563,490.505862543885,0.4833643750025658 +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087 +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907 +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461 +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.491482666999218 +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267 +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832 +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.2405760248656,0.4919719160025124 +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296 +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.5229983322752,0.4863375830027507 +19,2153.784005153057,3.1604800817043612,84.30164765304055,494.099475510244,0.4869056669995188 +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.3799390701532,0.4921092500007944 +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702 +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.3444832533918,0.4861616670023068 +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.488861125002586 +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051 +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191 +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902 +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.4874809579996508 +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169 +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.5549762121397,0.4893254170019645 +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.476325583000289 +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.4740477499981352 +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.4740115000022342 +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.4766071250014647 +4,1454.6356824641823,2.689847088670102,0.0,448.5656251243478,0.4807450420012173 +5,1439.3908464616345,2.6616570214023705,0.0,443.8645790316128,0.4757067499995173 +6,1436.1552645979718,2.655673928480174,0.0,442.86682349817494,0.4746374169990304 +7,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.4803635419993952 +8,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.4781675829981395 +9,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721 +10,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456 +11,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.4740057079980033 +12,1436.1856465993965,2.6557301095150985,0.0,442.8761923880117,0.4746474579987989 +13,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595 +14,1444.9948689388625,2.672019728523426,0.0,445.5926899778878,0.4775588330012397 +15,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.4783999579994997 +16,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.4758022089990845 +17,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605 +18,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591 +19,1443.300048842662,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269 +20,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.4735740840005746 +21,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895 +22,1437.235978521874,2.657672336216858,0.0,443.2000829683638,0.4749945839976135 +23,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872 +24,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404 +25,1439.6581239725597,2.6621512589927825,0.0,443.9469993277839,0.4757950830025947 +26,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.4762523329991381 +27,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.4755676250024407 +28,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993 +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.478538583000045 +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992 +2,1422.4471328985585,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801 +3,1423.230797457382,1.773392083348801,0.0,447.9989925274923,0.4765795829989656 +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372 +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273 +6,1420.5758147951883,1.7700838881896082,0.0,447.1632675277483,0.4756905419999384 +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.4768262920006236 +8,1422.3049082362418,1.772238395122154,0.0,447.70754476019846,0.4762695419994998 +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838 +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386 +11,1413.1080871694985,1.7607788555303492,0.0,444.8126055980349,0.473189916996489 +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.4762493330017605 +13,1417.3294075206245,1.7660387586362547,0.0,446.1413762147323,0.4746034580020932 +14,1412.745867489083,1.7603275179715854,0.0,444.69858751172745,0.473068625000451 +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.4747444590029772 +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.4726464579980529 +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762 +18,1417.1746163233452,1.7658458837460278,0.0,446.0926516504824,0.4745516250004584 +19,1419.5263625778225,1.768776236431752,0.0,446.8329250865043,0.4753391249978449 +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183 +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.4743509159998211 +22,1422.353809629749,1.7722993278565111,0.0,447.72293774850624,0.4762859170004958 +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447 +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.4749628339995979 +25,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732 +26,1420.870713330435,1.7704513414015055,0.0,447.25609452876904,0.4757892910020018 +27,1412.149219754377,1.7595840753963088,0.0,444.51077708455057,0.4728688329996657 +28,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899 +0,1398.2044033134116,0.4026120084407769,0.0,442.1350872693799,0.4791000420009368 +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.4714275830010592 +2,1392.2357928925342,0.4008933511232521,0.0,440.2477150918514,0.477054875002068 +3,1393.0715489932206,0.4011340065248991,0.0,440.5119948320934,0.4773412499998812 +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332 +5,1391.353584643174,0.4006393198569392,0.0,439.96874642289544,0.4767525829993246 +6,1389.8013619275412,0.4001923583800569,0.0,439.4779082276992,0.4762207079984364 +7,1393.9126545251288,0.4013762022916337,0.0,440.7779661499291,0.4776294580005924 +8,1395.2987708038715,0.4017753335328132,0.0,441.21627877461776,0.4781044160008605 +9,1393.131376142637,0.4011512337119461,0.0,440.5309131546688,0.4773617499995453 +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505 +11,1391.779428467707,0.4007619412970313,0.0,440.1034052010233,0.4768985000009706 +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.4760606250019918 +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828 +14,1397.3508945928966,0.4023662411843057,0.0,441.8651938605651,0.4788075840006058 +15,1387.6137807153643,0.3995624458555543,0.0,438.7861592903746,0.4754711249988759 +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016 +17,1387.905133100111,0.3996463405768904,0.0,438.8782896768552,0.4755709579985705 +18,1389.2666881497526,0.4000383994288292,0.0,439.308835639426,0.4760375000005297 +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.4764104999994742 +20,1387.9581516296382,0.3996616072264639,0.0,438.89505500252847,0.4755891249988053 +21,1383.6377091625147,0.3984175387519839,0.0,437.5288604728037,0.4741087090005749 +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973 +23,1385.2003855818612,0.3988675103657516,0.0,438.0230042999896,0.4746441660026903 +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586 +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256 +26,1388.7087868377796,0.3998777521249065,0.0,439.1324181251682,0.4758463329999358 +27,1386.871413337013,0.3993486816730853,0.0,438.5514105906599,0.4752167500009818 +28,1388.1705847108346,0.3997227771879352,0.0,438.9622298152176,0.4756619159998081 +29,1389.9437563946433,0.4002333607701617,0.0,439.5229356857659,0.4762695000026724 +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.3553411613795,0.4887512500026787 +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773 +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.4905316670010506 +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.4856883339998603 +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.4145019481052,0.4907829580006364 +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843 +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.4852944170015689 +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511 +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992 +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.4860352499999862 +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606 +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815 +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729 +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.4838942089991178 +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.4922301250007876 +15,2172.904363612247,4.054051068508988,84.66600867869597,497.2745947009123,0.4906449160007469 +16,2175.837068669918,4.059522701900578,84.78027989836993,497.9457515835403,0.4913071250011853 +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261 +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433 +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023 +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.4882758749990898 +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164 +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.4890841250016819 +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.4890738750000309 +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.4872862500014889 +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.4908622500006458 +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539 +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.491627374998643 +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118 +29,2161.072808854291,4.031976591596034,84.20499873523288,494.5669138220523,0.487973333998525 +0,1654.6480123452643,0.8802219605314963,0.0,471.798970844882,0.4858740839990787 +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205 +2,1623.088033571781,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473 +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468 +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022 +5,1622.4651082793391,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894 +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085 +7,1631.325248725041,0.8678149660736794,0.0,465.1488218154921,0.4790255419975437 +8,1609.854086984751,0.8563929669893303,0.0,459.02663030628105,0.4727207079995423 +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.482218458000716 +10,1634.9563714903925,0.869746611943738,0.0,466.1841840018436,0.4800917920001666 +11,1655.6029712356135,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199 +12,1699.2689617515464,0.9039589361747356,0.0,484.52198978965833,0.4989766670005338 +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.4832517079994431 +14,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.4705873329985479 +15,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844 +16,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.4723213329998543 +17,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.4728038749999541 +18,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575 +19,1625.835995757708,0.8648948519631798,0.0,463.5836406522643,0.4774136670021107 +20,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766 +21,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042 +22,1610.983721176818,0.85699389771043,0.0,459.34872917279046,0.4730524159967899 +23,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.4798239160008961 +24,1615.5939308560737,0.8594463877699828,0.0,460.6632638447108,0.4744061669989605 +25,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914 +26,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.4746511670018662 +27,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.4717144589994859 +28,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752 +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664 +1,1470.0650690266311,1.8938036315963045,0.0,459.2811985840966,0.4863042079996376 +2,1448.4887603472594,1.8660080648595936,0.0,452.54027730103815,0.4791666669989354 +3,1453.1077990562935,1.8719585173027935,0.0,453.9833682765936,0.4806946660028188 +4,1457.5307279874908,1.877656332351035,0.0,455.36519017248935,0.4821577910006454 +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206 +6,1458.6824685027595,1.8791400560422025,0.0,455.7250196626634,0.4825387919991044 +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952 +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148 +9,1454.2838469735757,1.873473554877392,0.0,454.3507919426761,0.4810837080003693 +10,1443.39889680046,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695 +11,1435.4034897523384,1.849151033497376,0.0,448.45214617728334,0.4748379999982717 +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432 +13,1440.5007836697584,1.8557175957098335,0.0,450.0446547738438,0.4765242079993186 +14,1436.810538132051,1.8509636562087617,0.0,448.891739553057,0.4753034579989617 +15,1432.6827260690825,1.845646023921523,0.0,447.60211876568223,0.4739379590027965 +16,1439.107087588519,1.8539221740270784,0.0,449.6092329546741,0.4760631669996655 +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986 +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.4766195830015931 +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.4770321659998444 +20,1449.866335125129,1.867782718357654,0.0,452.97066246455887,0.4796223749981436 +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.4822667920016101 +22,1451.9393114765087,1.870453219293409,0.0,453.61830662899615,0.4803081249992829 +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702 +24,1439.3600043065803,1.8542479926654816,0.0,449.68824979267697,0.4761468329998024 +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217 +26,1439.6413879935462,1.854610483727596,0.0,449.7761603482943,0.4762399160026689 +27,1445.2852070324934,1.8618811040676244,0.0,451.5394156132572,0.478106916998513 +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994 +29,1453.8891033023608,1.8729650284088384,0.0,454.227465193222,0.4809531249993597 +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229 +1,1405.501159477378,0.2322484329432426,0.0,441.90241119586415,0.4740041670011123 +2,1411.600628024097,0.2332563239735772,0.0,443.82013985772505,0.4760612079990096 +3,1414.8127689086136,0.2337871059525115,0.0,444.83006631164307,0.4771445000005769 +4,1415.084203187349,0.2338319584134706,0.0,444.91540772985934,0.4772360409988323 +5,1423.4112588293244,0.2352079413579451,0.0,447.5335101352102,0.4800443340027414 +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879 +7,1412.981778742787,0.2334845486804094,0.0,444.2543862677677,0.4765269999988959 +8,1412.4140739457582,0.233390739757809,0.0,444.0758946906084,0.4763355420000152 +9,1414.3226536148504,0.2337061181083035,0.0,444.6759695834992,0.4769792090010014 +10,1417.9660986792762,0.2343081698398312,0.0,445.82150201381614,0.4782079579999845 +11,1412.6123694385958,0.2334235065877477,0.0,444.1382406060304,0.4764024169999175 +12,1419.2150504322765,0.2345145496677667,0.0,446.21418386071224,0.4786291660020652 +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844 +14,1414.5234190879785,0.2337392930837979,0.0,444.73909208330065,0.477046916999825 +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688 +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.4748752910018083 +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377 +18,1411.6060661381266,0.2332572225807772,0.0,443.82184965048174,0.4760630419987137 +19,1418.1162102203814,0.2343329746362936,0.0,445.8686984543992,0.4782585829998425 +20,1413.9969775450247,0.2336523026017462,0.0,444.5735740503797,0.4768693750011152 +21,1402.71835094593,0.2317885948874347,0.0,441.0274707579634,0.4730656669999007 +22,1402.7010521628758,0.2317857363944131,0.0,441.0220318624555,0.4730598329988424 +23,1404.320403583212,0.2320533219650272,0.0,441.53117075031395,0.4736059579990979 +24,1409.4916535304808,0.2329078318944659,0.0,443.1570590003417,0.4753499580001517 +25,1413.038612086046,0.2334939399603966,0.0,444.2722551903604,0.4765461669994693 +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.4761061250028433 +27,1413.9134577072468,0.233638501580443,0.0,444.54731464998866,0.476841208001133 +28,1409.1224903257444,0.2328468304678771,0.0,443.0409907145222,0.4752254579980217 +29,1407.2538188427316,0.2325380466431972,0.0,442.45346332010627,0.4745952500015846 +0,1359.9830388133907,0.0994430417383292,0.0,439.27306303877975,0.4735101670012227 +1,1367.2100374254069,0.0999714856263093,0.0,441.6073758399505,0.4760264169999573 +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355 +3,1360.6509298042945,0.0994918784589276,0.0,439.4887911125696,0.4737427090003621 +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.4758644579997053 +5,1368.671233865174,0.1000783294724461,0.0,442.0793407229522,0.4765351669993833 +6,1378.0276760639613,0.1007624799695789,0.0,445.1014615189534,0.479792833000829 +7,1372.258883992279,0.1003406613039104,0.0,443.2381478664736,0.4777842919975228 +8,1369.9006263898757,0.1001682236319008,0.0,442.4764331899832,0.4769632089992228 +9,1362.872281559501,0.0996543054664741,0.0,440.20628534723863,0.4745161249993543 +10,1370.0406398939213,0.1001784615307049,0.0,442.52165740163406,0.4770119580025493 +11,1363.8435384826207,0.0997253245453802,0.0,440.5200002917932,0.474854291001975 +12,1375.0565775890122,0.1005452308854206,0.0,444.14179989786464,0.478758375000325 +13,1372.584870820952,0.1003644977201632,0.0,443.3434412625342,0.4778977919995668 +14,1360.2762345172491,0.0994644804414484,0.0,439.3677649366916,0.47361224999986 +15,1368.435239510169,0.1000610733774619,0.0,442.003114799375,0.4764529999993101 +16,1368.283016589219,0.1000499427163804,0.0,441.95394695915786,0.4763999999995576 +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.4763121670002874 +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.4779738329998508 +19,1366.9728453928535,0.0999541419561899,0.0,441.53076306780974,0.4759438330002012 +20,1372.0063748964212,0.1003221976379366,0.0,443.156587699312,0.4776963750009599 +21,1367.3190577628875,0.0999794572801175,0.0,441.6425892920392,0.4760643750014424 +22,1370.7449121584284,0.1002299584789725,0.0,442.7491365877813,0.4772571670000616 +23,1359.658367419681,0.0994193015077274,0.0,439.1681945268015,0.4733971249988826 +24,1367.1400292419053,0.0999663665722364,0.0,441.58476327175896,0.4760020419998909 +25,1366.998694566532,0.0999560320683337,0.0,441.5391123231862,0.4759528329996101 +26,1365.0601270460802,0.0998142824690026,0.0,440.91295709307434,0.4752778750007564 +27,1366.017143931724,0.0998842603050398,0.0,441.2220725207958,0.4756110829985118 +28,1365.7311285567905,0.0998633466332838,0.0,441.1296898614259,0.4755115000007208 +29,1365.9570675778948,0.0998798674742537,0.0,441.2026679229371,0.475590165999165 +0,1390.0603241936417,0.1674892551502086,0.0,445.0524487851344,0.4788548329997866 +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209 +2,1377.5902576361257,0.1659867288763194,0.0,441.05993597015606,0.4745590829988941 +3,1377.444387682713,0.1659691529125856,0.0,441.01323311932254,0.4745088329982536 +4,1378.2936033553765,0.1660714754506803,0.0,441.2851245675478,0.4748013749995152 +5,1380.196807079257,0.1663007936813814,0.0,441.8944689701668,0.4754570000004605 +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.4774362499993003 +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.4752448340004775 +8,1386.7012048240165,0.167084512714656,0.0,443.976967185384,0.4776976670000294 +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507 +10,1384.5611750681394,0.1668266591642937,0.0,443.29179873136127,0.4769604590001108 +11,1382.8663723350817,0.1666224513019111,0.0,442.7491775994384,0.4763766249998298 +12,1379.409399632061,0.1662059184557993,0.0,441.64236652075,0.4751857500014012 +13,1383.6672056307757,0.1667189442165428,0.0,443.0055785721975,0.4766525000013644 +14,1383.0517940967477,0.1666447928882506,0.0,442.8085436626597,0.4764405000023544 +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795 +16,1380.578780242162,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149 +17,1385.9641130782545,0.1669957000600349,0.0,443.74097419952494,0.4774437500018393 +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388 +19,1390.5397849329893,0.1675470256805298,0.0,445.20595663830386,0.4790199999988545 +20,1385.4222432134395,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751 +21,1384.7365557380076,0.1668477908930775,0.0,443.3479499610856,0.4770208749978337 +22,1380.1324588315383,0.1662930403199675,0.0,441.8738667382177,0.4754348329988715 +23,1382.8147242197429,0.1666162281875488,0.0,442.7326415399548,0.4763588330024504 +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962 +25,1381.048562774172,0.1664034222683774,0.0,442.16717365153266,0.4757504170011088 +26,1385.5867380781835,0.1669502299055574,0.0,443.6201509050472,0.4773137500014854 +27,1384.5037182668846,0.1668197361576601,0.0,443.27340291813454,0.4769406659979722 +28,1386.1163925964613,0.1670140483163193,0.0,443.7897291861239,0.4774962080009572 +29,1382.6472045469038,0.1665960436353114,0.0,442.6790071477496,0.4763011249997362 +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.4773925419976876 +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012 +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.4768721250002272 +3,1591.7771157613092,0.1653828771258944,0.0,448.02221413404817,0.4742466669995338 +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.4763908750028349 +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756 +6,1599.923316021195,0.1662292531814889,0.0,450.3150468686536,0.476673707998998 +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078 +8,1599.6205389249687,0.166197795167169,0.0,450.229827107861,0.4765834999998333 +9,1592.539445588393,0.1654620818706251,0.0,448.2367797875235,0.4744737920009356 +10,1607.448160004806,0.1670110713993855,0.0,452.43299242093553,0.4789156250008091 +11,1594.297518282129,0.1656447425694174,0.0,448.7316076205518,0.4749975839986291 +12,1602.677410191569,0.1665153987814363,0.0,451.0902152989111,0.4774942500007455 +13,1605.1480233851848,0.1667720912003558,0.0,451.785595061764,0.4782303329993738 +14,1601.3632290921896,0.1663788576481786,0.0,450.7203253689159,0.4771027089991548 +15,1595.800220143318,0.1658008706823329,0.0,449.15455867844,0.475445291998767 +16,1611.70677521292,0.1674535341215318,0.0,453.63162393522987,0.4801844169996911 +17,1598.0024596834728,0.1660296795448708,0.0,449.7744018870551,0.4761014169998816 +18,1595.2047318950506,0.1657390004878076,0.0,448.9869523214708,0.4752678750010091 +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831 +20,1594.7083993859603,0.1656874324023315,0.0,448.8472543779161,0.4751200000027893 +21,1594.7913334840082,0.1656960491110473,0.0,448.8705970418272,0.4751447090020519 +22,1611.819356688242,0.1674652311412436,0.0,453.66331116162905,0.4802179590005835 +23,1625.5004557649995,0.1688866735688013,0.0,457.513998697883,0.4842940419985098 +24,1613.805663465247,0.1676716049648041,0.0,454.2223778496544,0.4808097499990253 +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.4764814170011959 +26,1601.7627822219915,0.1664203705242697,0.0,450.83278375024673,0.477221749999444 +27,1637.621652666843,0.1701460448702147,0.0,460.9256355534117,0.4879053750009916 +28,1623.030399742511,0.1686300390389941,0.0,456.81877575663515,0.4835581250008545 +29,1635.1585880735686,0.1698901367377575,0.0,460.2323804225851,0.4871715409972239 +0,1433.797396939961,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367 +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.4802329169979202 +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418 +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.4777907079987926 +4,1456.870261103736,2.422621340465356,0.0,459.9279319836243,0.4831794579986308 +5,1446.022167683568,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192 +6,1436.2791326006184,2.3883804690111443,0.0,453.4273976515741,0.4763502909991075 +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637 +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.4756194999972649 +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.4778836250006861 +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.477050915997097 +11,1439.3127778105872,2.393425100521093,0.0,454.3851069308725,0.4773564169991005 +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.4774322919984115 +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.4832142499981273 +14,1457.2685173856205,2.4232835985903427,0.0,460.0536598490472,0.4833115420005924 +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105 +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717 +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.4813035830011358 +18,1436.3550154988843,2.3885066542546927,0.0,453.4513535695472,0.4763754580017121 +19,1439.5605226171017,2.393837073962569,0.0,454.463318944366,0.4774385829987295 +20,1434.5232971346488,2.385460700117666,0.0,452.8730876376165,0.4757679579997784 +21,1437.706317098976,2.3907537260641667,0.0,453.8779539107096,0.4768236250019981 +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702 +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.478918374999921 +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.480683041998418 +25,1444.3381928638455,2.401781834869899,0.0,455.9716097338424,0.4790231250008219 +26,1444.1479836100018,2.401465536974459,0.0,455.9115614569984,0.4789600410003913 +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177 +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.4783567919985216 +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.4797304159983468 +0,1437.887930994931,1.712970905880436,0.0,453.8701147286732,0.481649749999633 +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.4807219579997763 +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.4827039170013449 +3,1409.294103322443,1.678906780412161,0.0,444.8444573276378,0.4720716669980902 +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454 +5,1427.6852831409622,1.700816384961202,0.0,450.6496433329554,0.4782321659986337 +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.475717875000555 +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874 +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.4759302920028858 +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.4766364589995646 +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318 +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285 +12,1432.068880750474,1.7060386105646854,0.0,452.0333283247176,0.4797005410000565 +13,1432.8993036323643,1.70702790201473,0.0,452.2954517632362,0.4799787080009992 +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.4781303749987273 +15,1421.5099863905457,1.6934596894631586,0.0,448.7004075238365,0.4761636250004812 +16,1424.2936899173185,1.6967759445406032,0.0,449.57908507014065,0.4770960830028343 +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928 +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.475372958000662 +19,1423.7101814554428,1.6960808048172755,0.0,449.3949003038402,0.4769006249989616 +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.4777400829989346 +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789 +22,1429.3195086264966,1.702763254845861,0.0,451.1654875045515,0.4787795829979586 +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727 +24,1429.1426302590603,1.702552537799862,0.0,451.1096557507752,0.4787203339983534 +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349 +26,1429.5686590813752,1.703060070384259,0.0,451.2441319824019,0.4788630410002952 +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045 +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.478106791000755 +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.4814269579983374 +0,1381.5516209493485,0.0999506803686798,0.0,439.3165571138039,0.4754871660006756 +1,1381.107557064519,0.0999185538185438,0.0,439.17535021710626,0.4753343330012285 +2,1376.128171163972,0.0995583117537298,0.0,437.59196626156063,0.4736205830013205 +3,1380.7211189424895,0.0998905963013352,0.0,439.0524676098022,0.475201332999859 +4,1380.2241479000502,0.0998546420937167,0.0,438.89443688258285,0.4750302909997117 +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.4739347079994331 +6,1377.0907565492023,0.0996279516156849,0.0,437.8980566681405,0.4739518749993294 +7,1379.9166477647204,0.0998323954781913,0.0,438.7966555918104,0.474924459002068 +8,1388.2125966734,0.1004325798832855,0.0,441.4346661136675,0.4777796669986855 +9,1385.2603140533952,0.100218992021612,0.0,440.4958762656587,0.4767635829994106 +10,1378.254188068791,0.0997121220297193,0.0,438.2680136946266,0.4743522919998213 +11,1384.9526889767828,0.100196736366999,0.0,440.398055245083,0.4766577080008574 +12,1382.3441125519096,0.1000080145092658,0.0,439.56855977306,0.475759917000687 +13,1382.6810342874294,0.1000323896800416,0.0,439.67569677367646,0.475875874999474 +14,1381.2961766373749,0.0999321998194256,0.0,439.235328939649,0.475399250000919 +15,1385.2699982500696,0.1002196926411413,0.0,440.49895572203,0.4767669159991783 +16,1373.3594263151476,0.0993580022414315,0.0,436.71153918517217,0.4726676670034067 +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.4784245000009832 +18,1380.847269195503,0.0998997228539925,0.0,439.0925818509153,0.4752447499995469 +19,1378.9612042113365,0.0997632723040974,0.0,438.4928362006096,0.4745956250008021 +20,1377.5675078746096,0.0996624429937981,0.0,438.0496577720742,0.4741159580007661 +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.4762315420011873 +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.476905750001606 +23,1380.1145854309248,0.0998467156122404,0.0,438.85959735433414,0.4749925830001302 +24,1386.322655687205,0.1002958489174913,0.0,440.8336879420138,0.4771292080004059 +25,1383.0889008435486,0.1000618974734281,0.0,439.8053933615413,0.4760162500024307 +26,1382.3496824807823,0.1000084174751572,0.0,439.5703309424747,0.4757618339972396 +27,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028 +28,1385.4469985267924,0.1002324980244622,0.0,440.5552396501865,0.4768278339979588 +0,1398.8862502594493,0.1670631105953912,0.0,440.94637410547574,0.4769608329988841 +1,1396.9275519023229,0.1668291914756637,0.0,440.32896798086693,0.4762929999997141 +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.4758985420012322 +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526 +4,1397.991833947257,0.1669562942111038,0.0,440.6644429407875,0.4766558750015974 +5,1392.2824223679588,0.1662744431614349,0.0,438.8647652802912,0.4747092079996946 +6,1389.60246999989,0.1659543877039064,0.0,438.0200109056906,0.4737954579977668 +7,1396.1068221654489,0.1667311751696382,0.0,440.0702637427432,0.4760131659968465 +8,1391.825623572621,0.16621988959952,0.0,438.7207766089732,0.4745534590001625 +9,1396.1552182260154,0.1667369549079245,0.0,440.08551878397606,0.4760296669992385 +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643 +11,1398.5840366906104,0.1670270184979351,0.0,440.8511126234501,0.4768577909999294 +12,1403.2547089972113,0.1675848172781918,0.0,442.3233667240595,0.4784502920010709 +13,1396.9105644487831,0.166827162735422,0.0,440.323613323873,0.4762872079991211 +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.4752887499998905 +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325 +16,1395.3931497605902,0.1666459442712148,0.0,439.8453053094444,0.4757698339999479 +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465 +18,1396.185647230651,0.1667405889161691,0.0,440.0951103853369,0.4760400419982034 +19,1397.077863860132,0.1668471426015874,0.0,440.37634818262984,0.4763442499970551 +20,1394.4525370705426,0.1665336108475102,0.0,439.5488124709186,0.475449124998704 +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357 +22,1389.5461345505648,0.1659476597977601,0.0,438.00225327020814,0.4737762500008102 +23,1395.138839516903,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239 +24,1396.723593957756,0.1668048336348145,0.0,440.26467789572945,0.4762234589979925 +25,1404.0633375129448,0.1676813883861925,0.0,442.57825650651665,0.4787260000011883 +26,1391.7788171546058,0.1662142997055683,0.0,438.70602264287703,0.4745374999984051 +27,1397.919124008101,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545 +28,1400.2760860285289,0.1672290928450245,0.0,441.38446765515783,0.4774347080019652 +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.4754571249977743 +0,1392.7279603943014,0.1339966768870043,0.0,442.3565295732231,0.4786749999984749 +1,1389.1204843918358,0.1336495956119625,0.0,441.21072751399134,0.477435125001648 +2,1380.2402990351388,0.1327952181873855,0.0,438.3902140411066,0.4743830410006922 +3,1385.5556798078874,0.1333066198251725,0.0,440.0784786978509,0.4762099159997888 +4,1388.581612791723,0.1335977498777364,0.0,441.03957178387736,0.4772499169994262 +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197 +6,1384.9009121834042,0.1332436235413978,0.0,439.87051221603974,0.4759848749999946 +7,1390.9897468626043,0.1338294404678393,0.0,441.80444034445446,0.4780775829967751 +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852 +9,1380.9355617432616,0.1328621105706084,0.0,438.6110425212212,0.4746219999979075 +10,1384.2770555996944,0.1331836012603434,0.0,439.6723636607087,0.4757704580006248 +11,1383.5134214083396,0.1331101307428348,0.0,439.4298191147835,0.4755079999995359 +12,1386.532682809284,0.1334006189112961,0.0,440.3887931809163,0.4765457080029591 +13,1387.365540957909,0.1334807495810375,0.0,440.65332455440017,0.4768319579998206 +14,1393.2604077165302,0.1340479045307545,0.0,442.52564483215343,0.4788580000022193 +15,1382.1245980610845,0.1329765097352817,0.0,438.9887027635988,0.4750306669993733 +16,1390.2715743685353,0.1337603438959504,0.0,441.57633528650655,0.4778307499982475 +17,1386.3423517986607,0.1333823068477364,0.0,440.3283404810899,0.4764802919999056 +18,1386.152867472149,0.1333640762450654,0.0,440.26815670402226,0.4764151669987768 +19,1387.0355487415052,0.133449000480241,0.0,440.5485128353957,0.476718541001901 +20,1385.5385891202095,0.1333049755016437,0.0,440.0730503748014,0.4762040419991535 +21,1379.320279536285,0.132706701578957,0.0,438.097998587532,0.4740668339982221 +22,1393.496567010398,0.1340706258097797,0.0,442.6006534545353,0.478939167001954 +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452 +24,1384.7716816940174,0.1332311900607593,0.0,439.82946618808177,0.4759404590004124 +25,1385.4854869535443,0.1332998664537384,0.0,440.0561841304042,0.4761857909979881 +26,1384.3494335214364,0.1331905648607515,0.0,439.695352246556,0.4757953340013046 +27,1381.87219185281,0.1329522253135596,0.0,438.9085338163886,0.474943916000484 +28,1389.2910566489743,0.1336660066529379,0.0,441.26490446301153,0.4774937500005762 +29,1379.96219569416,0.1327684614017231,0.0,438.3018832024386,0.4742874580006173 +0,2136.203094366269,0.93457425106257,0.0,450.030879538451,0.4746758750006847 +1,2134.504400315829,0.9338310840274872,0.0,449.673018069379,0.4742984160002379 +2,2140.0647600968737,0.9362637034220164,0.0,450.84441118710873,0.4755339580005966 +3,2130.118633912307,0.9319123412063032,0.0,448.74907487444943,0.4733238749977317 +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922 +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985 +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567 +7,2140.343781207982,0.9363857732507852,0.0,450.90319216929765,0.4755959579997579 +8,2123.4230632247763,0.9289830748002958,0.0,447.3385284832996,0.4718360829974699 +9,2124.5554614297384,0.9294784912740844,0.0,447.5770892088742,0.4720877079998899 +10,2127.025585853203,0.930559153823998,0.0,448.0974668217487,0.4726365829992573 +11,2136.577936722176,0.93473824203092,0.0,450.109847046532,0.4747591669984103 +12,2128.1066081569707,0.9310320936922108,0.0,448.3252042590027,0.4728767919987149 +13,2126.8684474597603,0.9304904068510382,0.0,448.0643626990196,0.472601665998809 +14,2134.9276258433156,0.9340162423026646,0.0,449.7621783916723,0.474392459000228 +15,2129.032364221914,0.9314371056423116,0.0,448.5202319776889,0.4730825000006007 +16,2132.6545758265033,0.9330217984584944,0.0,449.2833181648528,0.4738873749993217 +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.4739143330007209 +18,2131.381163955856,0.932464689469914,0.0,449.0150502901017,0.4736044159981247 +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959 +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707 +21,2132.5525666154294,0.9329771701259671,0.0,449.261828028872,0.4738647080012015 +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.4754727910003566 +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205 +24,2127.013772451134,0.9305539855413472,0.0,448.0949781090709,0.4726339579974592 +25,2158.107187960308,0.9441571422772864,0.0,454.64538390445193,0.4795430830017722 +26,2129.987750526841,0.9318550806198584,0.0,448.7215018570554,0.4732947920019796 +27,2133.861040626745,0.9335496185614108,0.0,449.53748239512504,0.4741554579995863 +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.4748490419988229 +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905 +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169 +1,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.4741008329983742 +2,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305 +3,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.4755443329995614 +4,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.4754301249995478 +5,1411.741753318708,1.2684712623217371,0.0,446.5686459826368,0.4759500830004981 +6,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337 +7,1411.2333039163964,1.2680144128634985,0.0,446.4078109286284,0.4757786660011334 +8,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134 +9,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352 +10,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.4737324160014395 +11,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283 +12,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.4766884999989997 +13,1413.72623564537,1.2702543496293404,0.0,447.1963865616136,0.4766191250018892 +14,1409.9204124898235,1.2668347601109735,0.0,445.9925110727528,0.4753360419999808 +15,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.4740017920012178 +16,1414.1821574059145,1.2706640022090403,0.0,447.3406058303301,0.476772833000723 +17,1407.8358224333165,1.26496172449792,0.0,445.3331039561361,0.4746332499998971 +18,1408.264307266331,1.265346724584332,0.0,445.4686442497156,0.4747777080010564 +19,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618 +20,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096 +21,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007 +22,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.4757349160026933 +23,1407.3231699892026,1.264501098543216,0.0,445.1709393766091,0.474460416000511 +24,1412.2315426385103,1.2689113454143433,0.0,446.7235783935022,0.4761152089995448 +25,1409.2195337686403,1.2662050100068178,0.0,445.7708058913476,0.4750997499977529 +26,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464 +27,1411.5918379108589,1.2683365610662214,0.0,446.5212240511556,0.4758995410011266 +28,1408.3419226332817,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236 +0,1393.914644610329,0.1001279555078772,0.0,442.7991952410027,0.4769412079986068 +1,1395.233719300143,0.1002227075447856,0.0,443.2182203322239,0.4773925420013256 +2,1395.0142778015193,0.1002069445791724,0.0,443.1485112439603,0.4773174579968327 +3,1395.110604219539,0.100213863917695,0.0,443.1791108653535,0.4773504170007072 +4,1393.8152786855164,0.1001208178348948,0.0,442.76763007185,0.4769072089984547 +5,1393.8315956415768,0.1001219899177456,0.0,442.77281341291064,0.4769127920008031 +6,1387.1687683245957,0.0996433843734744,0.0,440.6562601609618,0.4746330420020967 +7,1391.1876039682206,0.0999320661791174,0.0,441.93290733278377,0.4760081249987706 +8,1392.3965925792977,0.1000189104908029,0.0,442.3169618271607,0.4764217919982911 +9,1388.5243727459326,0.0997407604213628,0.0,441.08688950340695,0.4750968750013271 +10,1392.8408268551927,0.1000508208161473,0.0,442.458079922609,0.4765737909983727 +11,1386.1762985767418,0.0995720930880716,0.0,440.3409863331489,0.4742934589994547 +12,1389.0087958741594,0.0997755576003849,0.0,441.24077422810245,0.4752626250010507 +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.4757032500019704 +14,1390.0111294314313,0.0998475574249184,0.0,441.559181452131,0.4756055830002879 +15,1390.948925844576,0.0999149214044087,0.0,441.8570874240971,0.4759264589993108 +16,1396.212671944328,0.1002930278668945,0.0,443.5292002366967,0.4777274999978544 +17,1390.1526335855483,0.0998577219796151,0.0,441.60413250118455,0.4756539999980305 +18,1399.6301828713626,0.100538515195242,0.0,444.61482703175864,0.4788968339998973 +19,1386.9895127650243,0.0996305080522716,0.0,440.5993167764959,0.4745717080004397 +20,1392.3554334243463,0.1000159539381534,0.0,442.30388696582713,0.4764077090003411 +21,1399.1193305515217,0.1005018195492425,0.0,444.4525466532669,0.4787220409998554 +22,1394.742232204257,0.100187402945426,0.0,443.0620916256557,0.4772243749976042 +23,1397.4406575579208,0.1003812367750637,0.0,443.91928943159024,0.4781476670032134 +24,1395.8205537077984,0.100264861151312,0.0,443.4046376314855,0.4775933329983672 +25,1388.8359963638768,0.0997631450314057,0.0,441.1858817105535,0.4752034999983152 +26,1396.3338376479594,0.1003017314659486,0.0,443.5676904529135,0.4777689580005244 +27,1390.4448949140815,0.0998787157538129,0.0,441.6969739686122,0.4757540000027802 +28,1392.3996350206342,0.1000191290360574,0.0,442.31792830712465,0.4764228329986508 +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.4753916670015314 +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214 +2,1410.4888534886547,2.57675488667884,0.0,450.2293538360664,0.4780275000011897 +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321 +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.4748084160019061 +5,1402.588873689239,2.562322789961124,0.0,447.7076729368437,0.4753501250015688 +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.4769594579993281 +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915 +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.4754808749967196 +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.4759253749980416 +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982 +11,1405.115976126432,2.5669394330051785,0.0,448.5143263850866,0.476206583000021 +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345 +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.4764153750002151 +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.4748462499992456 +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462 +16,1407.7395911650067,2.571732390322558,0.0,449.3517867454507,0.4770957499968062 +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.4743893330014543 +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309 +19,1391.8015679961811,2.5426159751288515,0.0,444.26435492705934,0.4716942089980875 +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645 +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289 +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583 +23,1402.136811455346,2.561496939003574,0.0,447.5633742513517,0.4751969169992662 +24,1407.9788382191025,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483 +25,1407.0144704711065,2.570407701873714,0.0,449.1203275455708,0.4768499999991036 +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.4770084999981918 +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.4770505419983237 +28,1401.8344944047062,2.560944650387017,0.0,447.4668743676224,0.4750944590014114 +29,1405.6258237574764,2.5678708493517206,0.0,448.6770702230915,0.4763793749989418 +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.4768898330003139 +1,1810.3407727008257,0.3624635693430848,0.0,450.5751679270311,0.475776458002656 +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.474959334002051 +3,1803.924867023314,0.3611789868448571,0.0,448.978315101507,0.4740902909979922 +4,1814.9485005797917,0.3633861213392375,0.0,451.7219839266121,0.47698741700151 +5,1838.3950575707256,0.3680805539366213,0.0,457.55759041176,0.4831494169993675 +6,1810.9882621843371,0.3625932086645014,0.0,450.7363213889448,0.4759466249997786 +7,1809.528084290628,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517 +8,1816.3105392978791,0.3636588265794807,0.0,452.06098133162,0.4773453749985492 +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575 +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.4773302499997953 +11,1812.3434823164148,0.3628645486982265,0.0,451.0736217181408,0.476302791001217 +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062 +13,1890.5448082241376,0.3785218946207775,0.0,470.5371260949556,0.4968549160003022 +14,1863.8205427908624,0.3731712044175371,0.0,463.8857317459456,0.4898314999991271 +15,1888.8672721415512,0.3781860209966702,0.0,470.1196046462245,0.496414042001561 +16,1882.4233044209063,0.3768958199605018,0.0,468.51576746726386,0.494720499998948 +17,1887.059090550134,0.3778239897351924,0.0,469.6695668762747,0.4959388329989451 +18,1881.9700309632929,0.3768050662649475,0.0,468.40295237335386,0.4946013750013662 +19,1886.6865178361625,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411 +20,1849.6913781590397,0.3703422853976963,0.0,460.36912822982725,0.4861182080021535 +21,1814.6577320581712,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264 +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.4750594580000324 +23,1807.75034288652,0.3619449175782984,0.0,449.9304366332412,0.4750956659991061 +24,1811.4627790990735,0.3626882156914782,0.0,450.85442376047934,0.4760713329997088 +25,1819.489476926938,0.3642953084491503,0.0,452.85218615760743,0.4781808330008061 +26,1813.531285204246,0.3631023687158118,0.0,451.369253620001,0.4766149580027559 +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.476694042001327 +28,1801.3705887684314,0.3606675732881824,0.0,448.3425815584188,0.4734190000017406 +29,1829.2969259130637,0.3662589403903112,0.0,455.2931591724651,0.4807583330002671 +0,1409.9511145646975,0.7683839360010437,0.0,445.2951949112135,0.4760072919998492 +1,1399.6801275675623,0.7627865352585996,0.0,442.0513794983424,0.4725397500005783 +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818 +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.4716822500013222 +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.472294041999703 +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029 +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.474087958002201 +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738 +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.4762599170026078 +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575 +10,1410.2225082204634,0.7685318379554227,0.0,445.3809073090361,0.4760989159985911 +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956 +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474 +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319 +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.4767237919986655 +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965 +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252 +17,1403.882638711802,0.7650767863323724,0.0,443.3786297836606,0.4739585409988649 +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.4729575839992321 +19,1405.5357040683705,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616 +20,1402.830378107766,0.764503333723785,0.0,443.046301530623,0.4736032920009165 +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547 +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724 +23,1412.2901343112185,0.7696586363652266,0.0,446.033911483135,0.4767969579988858 +24,1413.507409993883,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596 +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379 +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.4757148329990741 +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383 +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697 +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.4738867079977353 +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.4849021669979265 +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063 +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135 +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.4895718750012747 +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.6778526944505,0.4906171659968095 +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154 +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.4871125419995223 +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639 +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739 +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.4879217089983285 +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891 +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944 +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.4859462909989815 +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574 +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318 +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.4878895000001648 +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959 +17,2227.261152610207,3.99574426756604,74.82031141017409,495.37239557149974,0.488344417000917 +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.4923834159999387 +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123 +20,2227.782798769239,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098 +21,2221.6883752224203,3.9857466104544903,74.63310528076033,494.1329360310955,0.4871225419992697 +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.4864686250002705 +23,2217.6434795297237,3.9784899990068143,74.49722523140261,493.23329762686984,0.4862356670018926 +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311 +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591 +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985 +27,2251.464964761066,4.039166316903047,75.63338928400955,500.7556441380552,0.4936512920030509 +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068 +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304 +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235 +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195 +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.4886344999977154 +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134 +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859 +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844 +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769 +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.4936091669987945 +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017 +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253 +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.4851672910008346 +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426 +12,2188.706010784058,2.983740150116864,75.78699981296833,491.554613397586,0.4860802499970305 +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227 +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.4898277079992112 +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.4867344580015924 +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.4993912499994621 +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378 +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.4859611249994486 +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.4922967499987862 +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.4873433749999094 +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008 +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.487996292002208 +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986 +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196 +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232 +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.4884874160015897 +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.4907508750002307 +28,2240.945048917429,3.05495470095834,77.59584940434183,503.2868150123256,0.4976817919996392 +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876 +0,1447.352143928246,0.1670342924325731,0.0,440.8703114465335,0.4786405830018339 +1,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.4763764579984126 +2,1442.1423750135714,0.166433049626494,0.0,439.2833911841685,0.4769177079979272 +3,1442.9420675541187,0.1665253395907811,0.0,439.5269813159078,0.4771821670001372 +4,1437.1418858973352,0.1658559591341414,0.0,437.7602185386529,0.4752640420010721 +5,1439.2019047977624,0.1660936993419229,0.0,438.3877100430714,0.4759452920006879 +6,1437.048774549541,0.1658452134506105,0.0,437.73185638154155,0.4752332499992917 +7,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179 +8,1443.399553534289,0.1665781365879156,0.0,439.6663337101445,0.4773334580022492 +9,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901 +10,1432.716058127496,0.165345188474033,0.0,436.41209045836274,0.4738004169994383 +11,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.4786068749999685 +12,1441.7816532347647,0.1663914198770645,0.0,439.17351362352423,0.4767984169993724 +13,1448.9938602988364,0.1672237576801888,0.0,441.3703860210905,0.4791834999996354 +14,1443.4076182206436,0.1665790673076334,0.0,439.6687902517676,0.4773361250008747 +15,1440.843745147536,0.1662831788975806,0.0,438.8878223822743,0.4764882499985106 +16,1442.4172972021684,0.1664647775190038,0.0,439.3671337836588,0.4770086249991436 +17,1441.4691835270078,0.1663553587451826,0.0,439.0783338720352,0.4766950830016867 +18,1441.9596812033676,0.1664119655168341,0.0,439.227741785132,0.4768572909997601 +19,1439.0480618235515,0.1660759448151819,0.0,438.3408487451912,0.4758944159984821 +20,1443.1939296256437,0.1665544061887644,0.0,439.6036996946248,0.4772654580010567 +21,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519 +22,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837 +23,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415 +24,1433.4711454001133,0.1654323306866836,0.0,436.6420936144327,0.4740501250016677 +25,1457.45165533711,0.1681998448167466,0.0,443.9466704093212,0.4819805000006454 +26,1442.1242317326914,0.1664309557683429,0.0,439.27786465496433,0.476911707999534 +27,1437.1829592656563,0.1658606992805142,0.0,437.7727296809894,0.4752776249988528 +28,1453.654038845132,0.1677615740155951,0.0,442.7898984567618,0.4807246250020398 +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.4776932919994578 +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947 +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.471633417000703 +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077 +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674 +5,1494.696902023256,2.327463254474083,0.0,452.2926092944422,0.4755619579991617 +6,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.4757614579975779 +7,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.4753305420017568 +8,1496.9221576047012,2.3309283052081926,0.0,452.9659676535291,0.4762699589991825 +9,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.4777056249986344 +10,1500.131823380298,2.335926227624257,0.0,453.93720677675384,0.4772911660002137 +11,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286 +12,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.4754105419997358 +13,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702 +14,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234 +15,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261 +16,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572 +17,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218 +18,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491 +19,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127 +20,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458 +21,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.4765544590009085 +22,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.4758864580035151 +23,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.4770657910012232 +24,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.4747234590031439 +25,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.4790385420019447 +26,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.4746996670000953 +27,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353 +28,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.4753105830022832 +0,1381.9094842887912,1.232925439914284,0.0333223091868725,441.0874067066318,0.4757015830000455 +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.4761970830004429 +2,1377.8662199972532,1.2293180810662478,0.0332248130017904,439.7968497047006,0.4743097499995201 +3,1382.9158230323503,1.233823284999083,0.0333465752702454,441.40861685223945,0.4760479999968083 +4,1386.128503523028,1.2366896055159518,0.033424043392323,442.43406238417987,0.4771539169996686 +5,1376.9074533923183,1.2284626793546278,0.0332016940366115,439.4908239626273,0.4739797089969215 +6,1390.6754208710522,1.2407463184449117,0.0335336842822949,443.8853788447377,0.4787191249997704 +7,1380.57996803777,1.231739259178643,0.0332902502480714,440.66304253372147,0.4752439170006255 +8,1381.657961329704,1.2327010337151032,0.0333162441544622,441.0071238726168,0.4756149999993795 +9,1374.6571707641597,1.226455000320077,0.0331474324410831,438.7725632226178,0.47320508300254 +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.9536166278275,0.4809496670022781 +11,1363.870814864897,1.2168315244387933,0.0328873384983457,435.32969970260285,0.4694920420006383 +12,1392.8155520129008,1.2426557214554106,0.0335852897690651,444.5684806731154,0.4794558329995197 +13,1383.647032868345,1.234475662900069,0.0333642071054072,441.6420094542761,0.4762997079997149 +14,1381.6147495768726,1.232662480633317,0.0333152021792788,440.993331247114,0.4756001250025292 +15,1377.525609644332,1.229014192009845,0.0332165997840498,439.6881313414681,0.4741925000016636 +16,1385.5815166921095,1.2362015894868232,0.0334108537699141,442.2594713523535,0.4769656249991385 +17,1383.6618018467698,1.234488839630838,0.0333645632332658,441.6467235187406,0.4763047919987002 +18,1374.955298503026,1.2267209868248166,0.0331546212655355,438.8677216918945,0.4733077089986182 +19,1371.61443522941,1.2237403029463525,0.0330740622417933,437.8013618946179,0.4721576669981004 +20,1375.2341748666422,1.2269697974504057,0.0331613458770379,438.9567353743518,0.4734037079979316 +21,1379.3660443310175,1.2306562089230462,0.0332609786195417,440.2755739868747,0.4748260419983126 +22,1373.8068562416304,1.2256963584418106,0.0331269286065354,438.5011539647093,0.4729123750003055 +23,1383.064340779556,1.2339557910068135,0.0333501565136976,441.456021771816,0.4760991250004736 +24,1389.1312954040106,1.2393686655722889,0.0334964504208726,443.3925142210916,0.4781875830012723 +25,1378.0240598523594,1.229458904162844,0.0332286190314282,439.8472301190153,0.4743640839988075 +26,1384.5515748746504,1.2352826859820614,0.0333860185400557,441.93072741471747,0.4766110829987156 +27,1384.6750399681143,1.2353928402695915,0.0333889956829619,441.9701358553671,0.4766535840026336 +28,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.4761708330006513 +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491 +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846 +2,1429.4735844199126,2.1692569511193316,0.0,450.1708771330563,0.4782339589983166 +3,1426.3045481635716,2.1644478703483796,0.0,449.1728818942968,0.4771737500013842 +4,1432.4783415347592,2.1738167347549635,0.0,451.1171374632262,0.4792392079980345 +5,1436.4295181245916,2.1798127303270483,0.0,452.3614449135624,0.4805610839975998 +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.4785199159996409 +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575 +8,1422.6951236106663,2.158970490852691,0.0,448.03619924787614,0.4759662079995905 +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833 +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044 +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324 +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295 +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374 +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455 +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.4791691659993375 +16,1432.7423778229895,2.174217415508938,0.0,451.2002879661548,0.4793275419979181 +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342 +18,1421.4663687712782,2.157105828920064,0.0,447.649238866196,0.475555124998209 +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355 +20,1425.254760753872,2.1628547953447503,0.0,448.8422820677744,0.4768225410007289 +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392 +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321 +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.4788790829989011 +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149 +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.4772504579996166 +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.4783681660010188 +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.4748786250020202 +28,1436.3390958497594,2.1796755125775538,0.0,452.3329690639789,0.4805308329996478 +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702 +0,1386.7005541149863,0.0998895877817119,0.0,439.2811105347087,0.4755048749975685 +1,1389.776976809194,0.1001111948142143,0.0,440.255664394643,0.4765597919977153 +2,1385.844628906725,0.0998279320652189,0.0,439.009969245478,0.4752113750000717 +3,1385.5003865740737,0.0998031349130122,0.0,438.90091963579016,0.4750933329996769 +4,1389.920116092038,0.1001215057093215,0.0,440.3010082743598,0.4766088750002382 +5,1395.4414636433553,0.1005192304590982,0.0,442.0500691489612,0.4785021659990889 +6,1383.25911358358,0.0996416870543074,0.0,438.1909257691591,0.4743247919977875 +7,1394.1143187941695,0.1004236309069682,0.0,441.62965418521094,0.4780470830010017 +8,1391.919461157872,0.1002655265318898,0.0,440.93436384507424,0.4772944579999603 +9,1385.5401236639073,0.0998059973345432,0.0,438.91350761154297,0.4751069589983672 +10,1389.6626327917504,0.1001029581572562,0.0,440.21944232289394,0.4765205830008199 +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.4732225410007231 +12,1384.9940492190317,0.0997666614079548,0.0,438.7405213183826,0.4749197080018348 +13,1374.9844398051246,0.0990456292029527,0.0,435.56966202485194,0.4714873750017432 +14,1387.592932719944,0.0999538693821843,0.0,439.5637995863861,0.475810875002935 +15,1390.2901178414663,0.1001481584153576,0.0,440.41821799127104,0.4767357500022626 +16,1383.923900638318,0.0996895743250403,0.0,438.401518023419,0.4745527499981108 +17,1383.3757643872302,0.0996500898783031,0.0,438.22787858815104,0.474364792000415 +18,1391.7060864361836,0.1002501562971774,0.0,440.8667706762208,0.4772212909992959 +19,1392.4171721955554,0.1003013786488022,0.0,441.09202950454926,0.4774651250008901 +20,1405.4888679186208,0.1012429851791452,0.0,445.23290115615447,0.4819474590003665 +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863 +22,1391.9551883778888,0.1002681001064582,0.0,440.94568156816786,0.4773067089990945 +23,1388.182261289353,0.0999963210763814,0.0,439.7504879869002,0.4760129580026841 +24,1375.0170057848686,0.0990479750607392,0.0,435.5799783254442,0.4714985419996083 +25,1388.4195727452525,0.1000134155698071,0.0,439.82566387082176,0.4760943330002192 +26,1387.2079850901775,0.0999261400646032,0.0,439.4418552907703,0.4756788750019041 +27,1395.1198253223383,0.1004960615642666,0.0,441.9481800724568,0.4783918749999429 +28,1386.186074535617,0.0998525277596669,0.0,439.11813291109553,0.4753284580001491 +29,1391.5517690909974,0.1002390402015269,0.0,440.817885792915,0.477168374996836 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..f2bcfa711 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/cleaned/mac/without_smell.csv @@ -0,0 +1,876 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065 +1,399.29583877571366,1.158366767779374,11.41331962370854,71.40990427251671,0.0692834579967893 +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.0633901660003175 +3,394.21772121323113,1.1436350274103977,11.268168652425976,70.50173580741745,0.0684023329995398 +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.0680647919980401 +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.0679784999992989 +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.0698598329981905 +7,392.2752796374332,1.1379999579925535,11.212646644926632,70.15435035154096,0.0680652919982094 +8,387.9996905257891,1.125596371832494,11.09043484011428,69.38970574590904,0.0673234170026262 +9,391.1295975243385,1.134676306811221,11.179898905345851,69.94945703165645,0.0678664999977627 +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751 +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.0683444170026632 +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992 +13,389.43280747798,1.1297538783490886,11.13139850726308,69.64600379469677,0.0675720830004138 +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.0660507920001691 +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.0690730419992178 +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.0675779160010279 +17,405.877194445587,1.1774594378114298,11.601438578436149,72.58691122508108,0.0704254160009441 +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.0655020420017535 +19,383.6916774964104,1.1130987231124532,10.967296242431525,68.61926246010889,0.0665759160001471 +20,388.806541361944,1.1279370653844794,11.113497555994131,69.53400261899613,0.0674634169990895 +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.0680769159989722 +22,405.6771703448896,1.176879163116574,11.595721166001535,72.5511389968335,0.0703907089991844 +23,389.3441979604815,1.129496820021875,11.12886572668612,69.63015690487794,0.0675567079997563 +24,393.09269449425614,1.1403712980208796,11.236011318735136,70.30053648975775,0.0682071250012086 +25,372.8068790690931,1.0815216628284272,10.65616932492715,66.67262956730539,0.0646872500001336 +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459 +27,390.2598296133434,1.1321530893219862,11.15503779184898,69.79390809467303,0.0677155830017 +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.0690524580022611 +29,379.8298414684538,1.101895444533057,10.85691099760512,67.92861328650847,0.0659058329983963 +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.0667561670015857 +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.0679194580006878 +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.0679882910008018 +3,396.7437451725483,0.2682967000321544,11.972740238934891,70.15958705840839,0.0680203750016517 +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.0677365830015332 +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.0680572919991391 +6,391.36719129553967,0.2646608225160031,11.81048920477664,69.20880508793482,0.0670985830001882 +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.0676863749977201 +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.0701520839975273 +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.0696812919995863 +10,387.301056942086,0.2619111120487479,11.687783375175377,68.48975580074759,0.0664014579997456 +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.0675194590003229 +12,389.3096996228947,0.2632694502944342,11.74839921938913,68.84496125199456,0.066745833002642 +13,387.9621023426623,0.2623581419054352,11.707732082530049,68.60665410827131,0.0665147920008166 +14,395.11252609217826,0.2671935932998669,11.923514101006564,69.87112464791521,0.0677407080002012 +15,394.7183334237559,0.2669270217574004,11.911618345923996,69.80141618956021,0.0676731249986914 +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.0671810830026515 +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.0674895829979504 +18,386.8565570909318,0.2616105204334281,11.674369474341727,68.41115109334145,0.0663252500016824 +19,384.0741050620474,0.2597288960690092,11.590401987079536,67.91910632204592,0.0658482079998066 +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.0685538329998962 +21,396.65893159557254,0.2682393451195757,11.970180775961063,70.14458874876905,0.0680058340003597 +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.0646796670007461 +23,393.0382653515496,0.2657908810492305,11.86091806682191,69.50431539437378,0.0673850830025912 +24,406.135881200921,0.2746481022491435,12.256171562868031,71.82047873815104,0.069630624999263 +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.0686014579987386 +26,394.0356603064191,0.2664653662258117,11.891016967826848,69.68069326804977,0.0675560829986352 +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.0676258750027045 +28,413.12105234795297,0.2793718020949808,12.46696666848852,73.0557262478375,0.0708282089981366 +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.0648108750028768 +0,301.527059904683,0.0,0.0,61.86818404371384,0.0670472090023395 +1,297.30471380754034,0.0,0.0,61.001831002242675,0.0661083329978282 +2,298.56993893852353,0.0,0.0,61.26143351116889,0.0663896669975656 +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497 +4,299.1821205786761,0.0,0.0,61.38704268997068,0.0665257910004584 +5,298.54745277190455,0.0,0.0,61.256819735227,0.0663846669995109 +6,295.84086380274124,0.0,0.0,60.701474073952625,0.0657828330004122 +7,287.0708821292312,0.0,0.0,58.902024165847415,0.0638327499982551 +8,311.42434548185787,0.0,0.0,63.89893738908661,0.0692479579993232 +9,302.1443009237354,0.0,0.0,61.99483132034014,0.0671844580028846 +10,299.5947418972884,0.0,0.0,61.47170551157061,0.0666175410005962 +11,297.7119024745538,0.0,0.0,61.08537913685875,0.0661988749998272 +12,296.81133114888826,0.0,0.0,60.90059733804315,0.065998624999338 +13,295.8635388716868,0.0,0.0,60.70612660941386,0.0657878750025702 +14,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043 +15,293.46651256772094,0.0,0.0,60.21429790064635,0.0652548750003916 +16,288.92730480664824,0.0,0.0,59.28293027724474,0.0642455420020269 +17,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284 +18,294.5672108564634,0.0,0.0,60.440142321793985,0.0654996250013937 +19,292.01034831569035,0.0,0.0,59.915517957078485,0.0649310839980898 +20,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666 +21,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717 +22,297.67255166251954,0.0,0.0,61.07730502476422,0.066190124998684 +23,298.30198018653,0.0,0.0,61.20645296849487,0.0663300839987641 +24,297.6101525252016,0.0,0.0,61.06450179140608,0.0661762499985343 +25,300.59875411481113,0.0,0.0,61.67771160825551,0.0668407919984019 +26,296.54093489263096,0.0,0.0,60.84511666127687,0.0659384999999019 +27,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473 +28,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701 +0,297.9231929631541,0.0,0.0,61.89344237000005,0.0660346250006114 +1,297.04079661120556,0.0,0.0,61.71012482693256,0.0658390419994248 +2,296.8676586574506,0.0,0.0,61.674155475717534,0.0658006660014507 +3,297.3197636713215,0.0,0.0,61.7680801391279,0.0659008750008069 +4,298.48470477937286,0.0,0.0,62.01009625951951,0.0661590839990822 +5,295.20155767320017,0.0,0.0,61.3280235608919,0.0654313750019355 +6,292.8541974051702,0.0,0.0,60.84036026074424,0.0649110829981509 +7,297.2970205991458,0.0,0.0,61.76335527359118,0.0658958340027311 +8,297.0774535309563,0.0,0.0,61.71774028958751,0.0658471669994469 +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461 +10,296.545267260386,0.0,0.0,61.607178772237894,0.0657292080031766 +11,296.86935500896175,0.0,0.0,61.67450789216907,0.0658010419974743 +12,298.61459885910585,0.0,0.0,62.03708171056209,0.0661878749997413 +13,299.2832616828819,0.0,0.0,62.17599618558742,0.0663360840007953 +14,298.81874969918397,0.0,0.0,62.079493978400286,0.0662331249986891 +15,296.9749991387711,0.0,0.0,61.6964554243335,0.0658244580008613 +16,293.1703898391526,0.0,0.0,60.906049131744425,0.0649811669973132 +17,299.0945225408772,0.0,0.0,62.13678569280086,0.0662942500021017 +18,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645 +19,290.72809607604245,0.0,0.0,60.39866343016743,0.064439833000506 +20,298.5279351289336,0.0,0.0,62.01907734998971,0.0661686659987026 +21,299.2761152689181,0.0,0.0,62.1745115205084,0.0663344999993569 +22,293.40781389038244,0.0,0.0,60.95537389792288,0.0650337919978483 +23,296.0600830227514,0.0,0.0,61.50638191130139,0.0656216669995046 +24,300.42752152616026,0.0,0.0,62.41371578023145,0.0665897090002545 +25,295.4047700896462,0.0,0.0,61.37024087153856,0.065476416999445 +26,298.3017901501356,0.0,0.0,61.972095807286415,0.0661185410026519 +27,297.4477809202034,0.0,0.0,61.794675679197255,0.0659292500022274 +28,298.01661959689955,0.0,0.0,61.91285172149777,0.0660553329980757 +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341 +1,290.22725500807564,0.0,0.0,61.57760130550795,0.0669092079988331 +2,287.38755742396035,0.0,0.0,60.97510184122435,0.0662545419982052 +3,284.85600928125524,0.0,0.0,60.43798253376007,0.0656709169998066 +4,288.39804257958247,0.0,0.0,61.18949677128115,0.0664875000002211 +5,289.7942165918819,0.0,0.0,61.485723418499695,0.0668093749991385 +6,287.9792792941568,0.0,0.0,61.10064764292961,0.0663909579998289 +7,293.9906938530544,0.0,0.0,62.37609122240881,0.0677768339992326 +8,287.754807039453,0.0,0.0,61.05302129920833,0.0663392079986806 +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141 +10,288.1126656850648,0.0,0.0,61.128948272374934,0.0664217089979501 +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543 +12,283.96806213484086,0.0,0.0,60.249586528840595,0.0654662090018973 +13,287.49473153180446,0.0,0.0,60.99784100293028,0.0662792499970237 +14,290.36370810703596,0.0,0.0,61.60655259929476,0.0669406659981177 +15,286.7884182291257,0.0,0.0,60.84798230358821,0.066116416001023 +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447 +17,285.94203855646913,0.0,0.0,60.66840568169417,0.0659212909995403 +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269 +19,287.0410893992396,0.0,0.0,60.90159161941293,0.066174667001178 +20,297.4148868126718,0.0,0.0,63.10260324091163,0.0685662500000034 +21,290.7853645972282,0.0,0.0,61.69601557974508,0.0670378750000963 +22,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381 +23,286.4050846775788,0.0,0.0,60.76665031220264,0.0660280419979244 +24,284.29446863504063,0.0,0.0,60.318840291145825,0.0655414590000873 +25,285.6671457104221,0.0,0.0,60.6100815864084,0.0658579169976292 +26,287.5579915240894,0.0,0.0,61.01126289393568,0.0662938340028631 +27,286.0333109264343,0.0,0.0,60.68777096703847,0.0659423329998389 +28,284.3069393158575,0.0,0.0,60.32148619913034,0.0655443340001511 +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.0686401659986586 +1,397.75286598810527,0.269594419037943,12.435042578125124,70.53263988080185,0.0683966249998775 +2,365.9092588508725,0.2480110201480115,11.439508304327031,64.88588314622352,0.0629208749996905 +3,398.012860314751,0.2697706415757017,12.443170842679242,70.57874410224296,0.0684413329981907 +4,406.01920064322974,0.2751972892608521,12.693474967156805,71.99849080287044,0.0698180840008717 +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.0682153339985234 +6,389.3137678245606,0.2638744507834012,12.171209042384383,69.03615318620736,0.0669454580020101 +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.0680102080004871 +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404 +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956 +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.0672688339982414 +11,398.1340122908051,0.2698527576316564,12.446958445760156,70.60022771538212,0.0684621660002449 +12,372.80412745844734,0.2526843192127068,11.655064223686104,66.10853501402443,0.0641065000017988 +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454 +14,392.7996098404614,0.2662371328241711,12.280187751514893,69.65428987512377,0.067544875000749 +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.0673702909989515 +16,390.4700645317705,0.2646581815008187,12.207358621725266,69.2411967351517,0.0671442919992841 +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.0669481250006356 +18,394.8335415578033,0.2676157190936564,12.3437750431949,70.01496250787785,0.0678946250009175 +19,391.70268238960193,0.2654936422195048,12.24589424737466,69.45977414567795,0.0673562499978288 +20,391.0290628243883,0.26503706706728,12.224834718478292,69.34032267147714,0.0672404159995494 +21,399.5914937296824,0.2708406294872032,12.492524035097247,70.85867968958954,0.0687127909986884 +22,398.602883706492,0.2701705557614111,12.461616884495088,70.68337165107918,0.0685427919997891 +23,385.2929159598488,0.261149142394204,12.04550419293266,68.32314437888363,0.0662540419980359 +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.067253500001243 +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269 +26,384.6154175220648,0.2606899381662728,12.024323397919336,68.20300507275113,0.0661375409981701 +27,394.1247912258336,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858 +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.0678507080010604 +29,396.5473885388564,0.2687773539194146,12.397355449533,70.31887521916686,0.0681893340006354 +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.0660744170018006 +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.0642834580030466 +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.0620629580007516 +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.0629158750016358 +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.0626865000012912 +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.0653167079981358 +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.0633302079986606 +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.0622254999980214 +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872 +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.0600536249985452 +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.0623513749997073 +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.0628564999969967 +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.0647904580000613 +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.0672497919986199 +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.0654726659995503 +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676 +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.0630650829989463 +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.0631177499999466 +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361 +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547 +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.0673107919974427 +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.065431292001449 +22,313.0482616575098,0.8417886858098309,0.0,61.32106811245461,0.0621510420023696 +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.0619104159995913 +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.0631872090016258 +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.0637677079976128 +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.0652594999992288 +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.0675664160007727 +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.0667341249973105 +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.0626280420001421 +0,314.6829641824899,0.0,0.0,64.05854106490267,0.0667974999996658 +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907 +2,310.02771031968734,0.0,0.0,63.11089278177239,0.0658093330021074 +3,314.78759077177864,0.0,0.0,64.07983941095024,0.0668197090017201 +4,311.8347742078282,0.0,0.0,63.47874833628613,0.0661929170018993 +5,311.64849188371505,0.0,0.0,63.44082771373234,0.0661533750026137 +6,315.306780557249,0.0,0.0,64.18552845032812,0.0669299170003796 +7,314.38931348373785,0.0,0.0,63.99876396386509,0.0667351670017524 +8,312.3494508567321,0.0,0.0,63.58351865753504,0.0663021670006855 +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392 +10,314.334543400109,0.0,0.0,63.98761467378393,0.0667235410001012 +11,318.13946192397856,0.0,0.0,64.76216416407206,0.0675312079983996 +12,313.69208088661816,0.0,0.0,63.856831580997095,0.0665871659984986 +13,311.3874224274277,0.0,0.0,63.387683024029094,0.0660979579988634 +14,303.1555450520987,0.0,0.0,61.71195819965332,0.0643505840016587 +15,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163 +16,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255 +17,314.2731072568001,0.0,0.0,63.97510840507234,0.0667104999993171 +18,317.19392672743055,0.0,0.0,64.56968598091483,0.0673305000018444 +19,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844 +20,317.1024579588047,0.0,0.0,64.5510661109565,0.0673110839998116 +21,319.67701426612115,0.0,0.0,65.07515651211497,0.0678575829988403 +22,322.2403866640997,0.0,0.0,65.59697025709202,0.0684017079984187 +23,297.71060994609485,0.0,0.0,60.60355819462029,0.0631947920010134 +24,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223 +25,323.27052670543793,0.0,0.0,65.80667105329528,0.0686203749974083 +26,313.1624892222485,0.0,0.0,63.74902507972117,0.0664747500013618 +27,304.77808852402086,0.0,0.0,62.04225179497307,0.0646950000009383 +28,306.854070382832,0.0,0.0,62.46484972460084,0.0651356670023233 +0,294.47160668958014,0.0,0.0,62.234392802682095,0.067439792001096 +1,287.84062620984656,0.0,0.0,60.832984196664334,0.0659211669990327 +2,284.1358833944333,0.0,0.0,60.0500142451661,0.0650727079992066 +3,289.6685259247307,0.0,0.0,61.219297261407206,0.0663397919997805 +4,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185 +5,288.79942156630415,0.0,0.0,61.035618493063815,0.0661407500010682 +6,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289 +7,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556 +8,286.70698999914885,0.0,0.0,60.59339858083863,0.0656615420011803 +9,286.97661747524285,0.0,0.0,60.65038235067053,0.065723291998438 +10,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184 +11,294.88587239836045,0.0,0.0,62.321944791597936,0.0675346669995633 +12,293.9449008440537,0.0,0.0,62.123077423754864,0.0673191659989242 +13,290.6658900109148,0.0,0.0,61.43008277314009,0.0665682079998077 +14,290.4495723431128,0.0,0.0,61.38436563640324,0.066518666997581 +15,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483 +16,288.1284442887526,0.0,0.0,60.89381241565535,0.0659870830022555 +17,289.94870708075484,0.0,0.0,61.27851147331694,0.0664039589973981 +18,291.0404953723931,0.0,0.0,61.509252841434005,0.0666539999983797 +19,291.41564654265915,0.0,0.0,61.588538262372175,0.0667399169979034 +20,287.7964160316246,0.0,0.0,60.823640702979915,0.0659110419983335 +21,288.7233713242801,0.0,0.0,61.01954583774717,0.0661233329992683 +22,288.51996957968584,0.0,0.0,60.97655838570675,0.0660767499975918 +23,291.0746976794727,0.0,0.0,61.51648124568486,0.0666618329996708 +24,294.25819707384346,0.0,0.0,62.18929026120812,0.0673909170000115 +25,289.8793855364252,0.0,0.0,61.26386087841579,0.0663880829997651 +26,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384 +27,294.18505925226117,0.0,0.0,62.17383312437835,0.067374166999798 +0,304.0021500506418,0.0,0.0,61.69661938658387,0.0663851249992149 +1,305.42786409538843,0.0,0.0,61.9859651585075,0.0666964589981944 +2,290.13486062560406,0.0,0.0,58.882281141154934,0.0633569170022383 +3,303.37572867394005,0.0,0.0,61.56948843949174,0.0662483330015675 +4,308.55938487552186,0.0,0.0,62.621500945477706,0.0673802909986989 +5,304.0319159755279,0.0,0.0,61.70266032063018,0.0663916250014153 +6,301.5311990280158,0.0,0.0,61.195144891286894,0.0658455419979873 +7,303.576648579458,0.0,0.0,61.61026472655373,0.0662922079973213 +8,304.6514683093002,0.0,0.0,61.82839720940037,0.0665269170021929 +9,305.5965360870756,0.0,0.0,62.020196796904024,0.0667332919983891 +10,305.52402631491094,0.0,0.0,62.00548108580032,0.0667174579975835 +11,300.96240445270587,0.0,0.0,61.079709186584786,0.0657213339982263 +12,320.16981350821686,0.0,0.0,64.97781387335388,0.0699156670016236 +13,301.8660655871914,0.0,0.0,61.26310537986669,0.0659186670018243 +14,287.22066306535396,0.0,0.0,58.29085066060698,0.0627205419987149 +15,292.31368435492743,0.0,0.0,59.324468995142574,0.0638327079977898 +16,309.2938015925228,0.0,0.0,62.77054932770923,0.0675406660011503 +17,303.66251638073777,0.0,0.0,61.6276914225565,0.0663109589986561 +18,306.26130972564454,0.0,0.0,62.155111257706984,0.0668784590016002 +19,305.7980284517102,0.0,0.0,62.061089263381945,0.0667772920023708 +20,303.91189522869655,0.0,0.0,61.678302353640426,0.0663654160016449 +21,304.868796110589,0.0,0.0,61.87250344560959,0.0665743749996181 +22,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686 +23,300.68706516189695,0.0,0.0,61.02382963631062,0.065661207998346 +24,307.1498955536229,0.0,0.0,62.33544794812829,0.0670725000018137 +25,305.11646226256136,0.0,0.0,61.92276678851894,0.0666284580001956 +26,314.2194880610785,0.0,0.0,63.77020739992188,0.0686162909987615 +27,310.6552121120229,0.0,0.0,63.04684482968675,0.067837958002201 +28,300.9196606054273,0.0,0.0,61.07103440952738,0.0657119999996211 +0,277.0817190299852,0.0640133346494132,0.0,58.60420787153782,0.0635513330016692 +1,288.5771340743512,0.0666690849195682,0.0,61.03554724386474,0.0661879159997624 +2,284.2115382937321,0.0656605147958258,0.0,60.112201295578544,0.0651866250009334 +3,297.3390372598521,0.0686933203788499,0.0,62.88873480683714,0.068197542001144 +4,291.41856385470135,0.0673255316748761,0.0,61.636524248349104,0.0668396250002842 +5,291.05396160811534,0.0672412987427781,0.0,61.55940899901342,0.0667560000001685 +6,289.502541450472,0.0668828789304544,0.0,61.23127566083103,0.0664001670011202 +7,289.43169196955876,0.0668665107934755,0.0,61.21629063142683,0.066383916997438 +8,290.80853034409404,0.0671845975150962,0.0,61.507499025070594,0.0666997080006694 +9,287.9576568837414,0.0665259690155345,0.0,60.90452463372189,0.0660458330021356 +10,289.9919433911143,0.0669959439508176,0.0,61.33478668697358,0.0665124160004779 +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527 +12,291.42765003308125,0.067327630826633,0.0,61.63844602178257,0.066841709001892 +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.0670270000009622 +14,300.5995644999648,0.0694465899272183,0.0,63.57835307836844,0.0689453749982931 +15,291.6814349928997,0.0673862619828808,0.0,61.69212284532741,0.0668999170011375 +16,286.80898867365397,0.0662605957430181,0.0,60.66157540273309,0.0657823750007082 +17,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.0661455829977057 +18,288.819116611153,0.0667249893984412,0.0,61.086727794272974,0.0662434170008055 +19,289.1462928838217,0.0668005759232578,0.0,61.15592725774257,0.066318457997113 +20,289.21804924415596,0.0668171535737913,0.0,61.171104096806005,0.0663349160022335 +21,286.12120386579073,0.0661016989409242,0.0,60.51610538041618,0.0656246250000549 +22,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.0658500409990665 +23,293.57075258583023,0.0678227451971422,0.0,62.09172322798373,0.0673332499973184 +24,290.89918277237905,0.0672055406659071,0.0,61.52667247963799,0.0667204999990644 +25,268.12761977449935,0.0619446967250778,0.0,56.71036985180875,0.0614976249999017 +26,293.55167774327595,0.0678183383951197,0.0,62.08768880073215,0.0673288750003848 +27,292.7548937535296,0.0676342598483376,0.0,61.91916489115313,0.0671461249985441 +28,291.560990905484,0.067358436156979,0.0,61.66664830171436,0.0668722920017899 +0,402.8566838230884,0.0,0.0,64.17794938679597,0.0643441669999447 +1,406.5856091369493,0.0,0.0,64.77199384396874,0.0649397500019404 +2,419.6410268736935,0.0,0.0,66.85181521066646,0.0670249579998198 +3,416.5238481001115,0.0,0.0,66.35522635017634,0.0665270829995279 +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256 +5,408.52624583201094,0.0,0.0,65.08115114132792,0.0652497080009197 +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631 +7,398.433567589202,0.0,0.0,63.47331535392751,0.0636377080008969 +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156 +9,399.1061018410703,0.0,0.0,63.58045486758207,0.0637451250004232 +10,407.1626636492206,0.0,0.0,64.8639227526082,0.065031917001761 +11,403.12407719483,0.0,0.0,64.22054706226494,0.0643868750012188 +12,405.14375858076954,0.0,0.0,64.54229674389913,0.0647094579981057 +13,411.2615056472048,0.0,0.0,65.51689758175769,0.0656865830023889 +14,387.70201403694654,0.0,0.0,61.76370216299734,0.0619236669990641 +15,407.9614565575172,0.0,0.0,64.99117617273937,0.065159500001755 +16,401.69709645656513,0.0,0.0,63.99321883047987,0.0641589580009167 +17,395.9197957340157,0.0,0.0,63.0728535287417,0.0632362090000242 +18,418.61084115270194,0.0,0.0,66.68769926145752,0.0668604169986792 +19,431.31721002849616,0.0,0.0,68.71191464957502,0.0688898750013322 +20,431.41112451451176,0.0,0.0,68.72687589850602,0.0689048749991343 +21,433.23750482741,0.0,0.0,69.01783133747224,0.0691965839978365 +22,422.7931668797661,0.0,0.0,67.35397364539821,0.0675284169992664 +23,418.71727759903746,0.0,0.0,66.70465534817552,0.0668774170007964 +24,414.85347853863453,0.0,0.0,66.08912453908962,0.0662602919983328 +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213 +26,419.92251367752954,0.0,0.0,66.89665807060912,0.0670699170004809 +27,411.78142883652066,0.0,0.0,65.5997250622708,0.0657696250018489 +28,414.074507863208,0.0,0.0,65.96502894234565,0.0661358750003273 +29,411.9209982982526,0.0,0.0,65.62195947517905,0.0657919170007517 +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463 +1,295.9081762405739,0.0,0.0,60.860775024151074,0.0636946249978791 +2,308.44623652276385,0.0,0.0,63.439534677798584,0.0663934590011194 +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023 +4,312.04164307210647,0.0,0.0,64.179018229419,0.067167375000281 +5,301.9526595528672,0.0,0.0,62.10397128753395,0.0649957079986052 +6,311.28555013052846,0.0,0.0,64.02350916914445,0.067004624997935 +7,313.4765936255198,0.0,0.0,64.47415100983623,0.0674762499984353 +8,311.56042418797625,0.0,0.0,64.0800437616753,0.0670637920011358 +9,309.8811870761772,0.0,0.0,63.73466745821582,0.0667023339992738 +10,318.13877646307776,0.0,0.0,65.43304327298002,0.0684797909998451 +11,308.99326684329253,0.0,0.0,63.55204488178166,0.0665112079987011 +12,310.2603949888832,0.0,0.0,63.8126608673733,0.0667839590023504 +13,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439 +14,285.62465270443886,0.0,0.0,58.74571615575587,0.0614810830011265 +15,298.20878469344336,0.0,0.0,61.3339515860414,0.0641898339999897 +16,295.5945893229462,0.0,0.0,60.79627818230397,0.0636271250004938 +17,310.5683652227515,0.0,0.0,63.87600250042894,0.0668502500011527 +18,309.63263576797266,0.0,0.0,63.68354678475968,0.0666488330025458 +19,299.539786989639,0.0,0.0,61.60770485752767,0.0644763339987548 +20,309.8449875242504,0.0,0.0,63.727222132392846,0.0666945419980038 +21,307.9365578666852,0.0,0.0,63.334706759840024,0.0662837499985471 +22,309.15257829195724,0.0,0.0,63.584811189083936,0.0665454999980283 +23,309.6756087808788,0.0,0.0,63.69238523898497,0.0666580830002203 +24,311.4467942171909,0.0,0.0,64.05667297085827,0.0670393330001388 +25,320.30833809941186,0.0,0.0,65.87926684249236,0.0689467920019524 +26,301.0930039690129,0.0,0.0,61.92716202950021,0.0648106660009943 +27,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098 +28,307.7433743808223,0.0,0.0,63.29497383721228,0.0662421669985633 +0,307.3038765802161,0.0341752531784048,0.0,65.54813559618044,0.0683769580027728 +1,306.5168191461492,0.0340877245491713,0.0,65.38025568531074,0.068201832997147 +2,302.24090759958057,0.0336122005782451,0.0,64.46820070907424,0.0672504169997409 +3,303.4871256541917,0.033750792443749,0.0,64.73401990711072,0.0675277080008527 +4,304.6267982623654,0.0338775353939463,0.0,64.97711288558907,0.0677812920002907 +5,302.72534844932665,0.0336660752279055,0.0,64.57153228712284,0.0673582079980406 +6,299.83123330715557,0.0333442207859381,0.0,63.954215467429314,0.0667142499987676 +7,303.47121147155804,0.0337490226280647,0.0,64.73062540062816,0.0675241669996467 +8,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.0687065410020295 +9,323.66148900094566,0.0359943826735927,0.0,69.03722596795083,0.0720166249993781 +10,300.6248433571947,0.0334324781313606,0.0,64.12349305594968,0.066890833000798 +11,299.8791735922619,0.0333495522233387,0.0,63.96444116436369,0.0667249170001014 +12,304.57567604979374,0.0338718500945055,0.0,64.9662084812616,0.0677699170009873 +13,297.66087840557225,0.0331028556945698,0.0,63.491277222185005,0.0662313329994503 +14,298.37977587069827,0.0331828042560829,0.0,63.64461856316718,0.0663912920026632 +15,301.49691869899425,0.0335294615990874,0.0,64.3095073470497,0.0670848750014556 +16,299.4083997940281,0.0332971974859906,0.0,63.86402477813011,0.0666201670028385 +17,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.0666383749994565 +18,295.95793110997283,0.0329134709864293,0.0,63.128037351971514,0.0658524169994052 +19,295.3365950794061,0.0328443722285816,0.0,62.995505934419576,0.0657141660012712 +20,299.7063333060147,0.033330330661256,0.0,63.927574208289165,0.066686458998447 +21,270.8829494812265,0.0301248831718445,0.0,57.77952592359791,0.0602730830032669 +22,301.37520062531866,0.0335159253364455,0.0,64.28354479530263,0.0670577919991046 +23,296.03002353793846,0.0329214883827778,0.0,63.14341471816793,0.065868457997567 +24,297.14348113691625,0.0330453159627353,0.0,63.3809160165264,0.0661162090000289 +25,303.5991091517296,0.033763246124525,0.0,64.75790606683913,0.0675526250015536 +26,302.87515563749326,0.0336827352799703,0.0,64.60348626698311,0.0673915409970504 +27,305.92283069102797,0.0340216671142157,0.0,65.2535575250658,0.068069666998781 +28,290.278120361013,0.032281819435166,0.0,61.91652967664846,0.0645886249985778 +0,293.67115678659405,0.0,0.0,62.04987345007068,0.0673019999994721 +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785 +2,285.0587315110757,0.0,0.0,60.2301513354047,0.0653282499988563 +3,286.6679492796594,0.0,0.0,60.57016347683127,0.0656970420022844 +4,286.0261550443838,0.0,0.0,60.43455856582949,0.0655499589993269 +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652 +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397 +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792 +8,287.5655527060979,0.0,0.0,60.75981839435294,0.0659027500005322 +9,293.549524682601,0.0,0.0,62.024173763581814,0.0672741249982209 +10,289.02568331421605,0.0,0.0,61.0683298615521,0.0662373749983089 +11,288.31625511165714,0.0,0.0,60.91843454778562,0.066074792001018 +12,290.2920010978938,0.0,0.0,61.33589055455497,0.0665275829996971 +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743 +14,287.41810186435026,0.0,0.0,60.72866345843529,0.0658689579977362 +15,292.14320891111277,0.0,0.0,61.72703285057382,0.0669518329996208 +16,292.1922981075429,0.0,0.0,61.737404922722774,0.0669630830016103 +17,288.63587590704464,0.0,0.0,60.985967328746526,0.0661480410017247 +18,295.0554718814619,0.0,0.0,62.34236583301857,0.0676192499995522 +19,293.5444325057386,0.0,0.0,62.02309783588993,0.0672729580001032 +20,287.13229806847863,0.0,0.0,60.66827588221081,0.0658034589978342 +21,287.2797445448048,0.0,0.0,60.69942989575715,0.065837250000186 +22,288.50715313623,0.0,0.0,60.95876945297762,0.0661185409990139 +23,290.43508843893454,0.0,0.0,61.36612352500068,0.0665603749985166 +24,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395 +25,291.1197931641799,0.0,0.0,61.51079500727027,0.0667172920002485 +26,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767 +27,295.1683770157897,0.0,0.0,62.36622159527169,0.0676451250001264 +28,292.2999321462241,0.0,0.0,61.76014695347638,0.0669877500004076 +0,306.0668998752621,0.0,0.0,63.04902793670779,0.068127957998513 +1,300.7286555299586,0.0,0.0,61.9493627426042,0.0669397090023267 +2,300.4778195906402,0.0,0.0,61.89769115658147,0.0668838749988935 +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118 +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179 +5,297.42271046689245,0.0,0.0,61.26834619777878,0.0662038330010545 +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164 +7,297.3940705820903,0.0,0.0,61.262446452011666,0.0661974579998059 +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933 +9,297.44798094483,0.0,0.0,61.273551854026195,0.0662094580002303 +10,298.42342154358175,0.0,0.0,61.47449021615016,0.0664265830018848 +11,300.40818538367824,0.0,0.0,61.88334668136418,0.0668683750009222 +12,287.1913505952546,0.0,0.0,59.16071125051626,0.0639264169985835 +13,300.26405153963907,0.0,0.0,61.85365546430296,0.0668362920005165 +14,299.59316404372277,0.0,0.0,61.71545429165196,0.0666869579981721 +15,298.97750323449446,0.0,0.0,61.58862968050848,0.0665499169990653 +16,296.72543384649464,0.0,0.0,61.12470893044608,0.0660486249980749 +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845 +18,299.21560732706087,0.0,0.0,61.637678537441985,0.0666029169988178 +19,299.2517362517928,0.0,0.0,61.645121006999055,0.0666109589983534 +20,299.28430709765047,0.0,0.0,61.651830521066856,0.0666182089989888 +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801 +22,299.9649209102408,0.0,0.0,61.79203529100965,0.0667697079989011 +23,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303 +24,294.287490544277,0.0,0.0,60.622498611616194,0.0655059590026212 +25,297.6716730062533,0.0,0.0,61.31963186802196,0.0662592500011669 +26,300.53416490752846,0.0,0.0,61.90929815315653,0.0668964169999526 +27,298.0200327621039,0.0,0.0,61.39139312017827,0.0663367919987649 +28,302.28587426265807,0.0,0.0,62.27014596817204,0.0672863330000836 +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991 +1,318.08177249086094,0.0,0.0,62.64785256127891,0.0671876249980414 +2,310.1933592166472,0.0,0.0,61.0941887097623,0.0655213749996619 +3,315.03036618576886,0.0,0.0,62.04686228507105,0.0665430840017506 +4,311.7761737775847,0.0,0.0,61.40593223555111,0.0658557089991518 +5,315.1471407328176,0.0,0.0,62.0698616369331,0.0665677500001038 +6,312.72657075974973,0.0,0.0,61.59311784366412,0.0660564589998102 +7,318.0087848553162,0.0,0.0,62.63347726842702,0.0671722080005565 +8,314.2111452727458,0.0,0.0,61.88551248318745,0.0663700419972883 +9,315.1433912094317,0.0,0.0,62.069123148882,0.0665669579975656 +10,321.5192175326141,0.0,0.0,63.324875166116904,0.0679137080005602 +11,314.53405774919537,0.0,0.0,61.94911176791349,0.0664382499999192 +12,316.86685034021673,0.0,0.0,62.40856735115521,0.0669310000012046 +13,313.09228540351353,0.0,0.0,61.665147236931766,0.0661337079982331 +14,289.9330212891863,0.0,0.0,57.10381021877937,0.0612418339987925 +15,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857 +16,320.05180460179605,0.0,0.0,63.03586058909003,0.0676037500015809 +17,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105 +18,308.3140681413278,0.0,0.0,60.7240525988988,0.0651244170003337 +19,318.47412193661944,0.0,0.0,62.7251278167514,0.0672704999997222 +20,314.1099463592385,0.0,0.0,61.86558083302366,0.0663486660014314 +21,313.33807251384695,0.0,0.0,61.71355628133896,0.0661856250007986 +22,319.77228609333065,0.0,0.0,62.98080797111271,0.0675447079993318 +23,319.76577652708306,0.0,0.0,62.97952587832467,0.0675433329997758 +24,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282 +25,316.8561983070633,0.0,0.0,62.40646937805463,0.0669287499986239 +26,316.30781807684326,0.0,0.0,62.29846305143831,0.0668129170007887 +27,298.70140513017805,0.0,0.0,58.83078883113269,0.063093958000536 +28,314.0071803907631,0.0,0.0,61.84534054326751,0.0663269590004347 +0,383.74185203632027,0.0,0.0,62.59426372619671,0.0645047500001965 +1,364.4592504386134,0.0,0.0,59.44897153737439,0.0612634579993027 +2,367.0024684410071,0.0,0.0,59.86380994374133,0.0616909579985076 +3,363.22606038870725,0.0,0.0,59.247819062608514,0.0610561659996164 +4,364.2802852301499,0.0,0.0,59.41977952874429,0.0612333749995741 +5,373.0382773407889,0.0,0.0,60.84834423956817,0.0627055420009128 +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924 +7,362.2655390037368,0.0,0.0,59.091143087427675,0.0608947079999779 +8,363.1591395605432,0.0,0.0,59.23690323483354,0.0610449170017091 +9,363.29274327911173,0.0,0.0,59.258696079034664,0.0610673750015848 +10,385.39643100578286,0.0,0.0,62.86415128685964,0.0647828750006738 +11,389.0226196484065,0.0,0.0,63.45563904617717,0.0653924159996677 +12,370.3688919214851,0.0,0.0,60.41292596544427,0.0622568340004363 +13,361.7680498665672,0.0,0.0,59.009994872585665,0.0608110829998622 +14,361.96288119943176,0.0,0.0,59.0417748928434,0.0608438330018543 +15,366.6343711085224,0.0,0.0,59.80376754444557,0.0616290830002981 +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306 +17,377.4274313949519,0.0,0.0,61.56428352256089,0.0634433330014871 +18,377.1091573073862,0.0,0.0,61.51236806932433,0.0633898329979274 +19,381.72165648548935,0.0,0.0,62.264738415323826,0.0641651670011924 +20,368.2465631130819,0.0,0.0,60.06674113196323,0.0619000830010918 +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972 +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232 +23,392.46761814592367,0.0,0.0,64.01757187509762,0.0659715000001597 +24,412.7283443458175,0.0,0.0,67.32241139758052,0.0693772089980484 +25,410.7339260421147,0.0,0.0,66.99709075658224,0.0690419590027886 +26,401.0741534363522,0.0,0.0,65.42143162320484,0.0674182080001628 +27,375.99669130166257,0.0,0.0,61.3309075635724,0.063202834000549 +28,391.0668672136462,0.0,0.0,63.78908761463861,0.0657360420009354 +29,388.5424838873128,0.0,0.0,63.37732143683954,0.0653117080000811 +0,290.8292506484409,0.0,0.0,60.364491781569754,0.0643369169993093 +1,298.573843284156,0.0,0.0,61.97195869718392,0.066050166999048 +2,297.01505218375894,0.0,0.0,61.64841616368942,0.0657053329996415 +3,294.3421743552695,0.0,0.0,61.09363389419194,0.0651140419977309 +4,296.3946304128305,0.0,0.0,61.519641479544646,0.0655680839990964 +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186 +6,295.0897326586194,0.0,0.0,61.24879702499188,0.0652794159977929 +7,296.7668048214944,0.0,0.0,61.59688996463688,0.0656504159996984 +8,294.83998000542607,0.0,0.0,61.196958387896395,0.0652241659990977 +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097 +10,296.16597000453845,0.0,0.0,61.47218074680768,0.0655175000028975 +11,296.4579116370621,0.0,0.0,61.532776124466146,0.0655820829997537 +12,291.6238980614277,0.0,0.0,60.52942872351605,0.0645127079988014 +13,293.1612172147117,0.0,0.0,60.84851454169682,0.0648527919984189 +14,300.82349771584455,0.0,0.0,62.43889675843551,0.0665478330010955 +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836 +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348 +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185 +18,296.53155816102924,0.0,0.0,61.54806219002126,0.0655983750002633 +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737 +20,295.3240436061412,0.0,0.0,61.29743058311739,0.0653312499998719 +21,296.04222377263164,0.0,0.0,61.44649599060698,0.0654901250018156 +22,295.47999775871773,0.0,0.0,61.3298004122887,0.0653657500006374 +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412 +24,296.91447306566766,0.0,0.0,61.627539971443,0.065683083001204 +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114 +26,294.6706544772291,0.0,0.0,61.1618131972649,0.0651867079977819 +27,297.56861257061263,0.0,0.0,61.763313105273966,0.065827791000629 +28,295.9380689842249,0.0,0.0,61.42487763256778,0.0654670839976461 +29,299.8657403365678,0.0,0.0,62.240104727299766,0.0663359589998435 +0,294.81448863624877,0.0,0.0,61.91171740072288,0.0671278330009954 +1,296.9928397015734,0.0,0.0,62.36917611036704,0.0676238330015621 +2,291.39142074467475,0.0,0.0,61.19286530859214,0.0663484169999719 +3,292.5078607995772,0.0,0.0,61.42732027548915,0.0666026250000868 +4,291.9049011262528,0.0,0.0,61.30069736400479,0.0664653339990763 +5,291.0495909115414,0.0,0.0,61.1210802612358,0.0662705840004491 +6,297.18077517649056,0.0,0.0,62.408642990256375,0.0676666250001289 +7,293.1889644158855,0.0,0.0,61.57035359386013,0.0667577089989208 +8,290.06599953169535,0.0,0.0,60.91452382017178,0.0660466250010358 +9,290.5013403480997,0.0,0.0,61.005946388047946,0.0661457499991229 +10,293.391717947307,0.0,0.0,61.612932299531735,0.0668038749972765 +11,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234 +12,294.85419962422475,0.0,0.0,61.92005679909045,0.0671368750008696 +13,288.935650518899,0.0,0.0,60.6771479402815,0.0657892499984882 +14,288.040264791619,0.0,0.0,60.489114888146126,0.0655853749995003 +15,291.310167374162,0.0,0.0,61.17580191480743,0.0663299160005408 +16,291.8930036442997,0.0,0.0,61.29819886556306,0.0664626249999855 +17,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544 +18,291.953940380838,0.0,0.0,61.31099571971134,0.0664765000001352 +19,290.492192146893,0.0,0.0,61.004025244855654,0.0661436669979593 +20,291.2743036344979,0.0,0.0,61.16827044739114,0.0663217500004975 +21,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666 +22,301.8341063464249,0.0,0.0,63.38585318673492,0.0687261659986688 +23,293.4286796545365,0.0,0.0,61.62069434264986,0.0668122909992234 +24,291.57880285799905,0.0,0.0,61.23221598128041,0.0663910830007807 +25,290.63986327224137,0.0,0.0,61.03503651917635,0.066177290998894 +26,292.83779754454514,0.0,0.0,61.49660774710921,0.0666777500009629 +27,291.7103778938751,0.0,0.0,61.25984703997034,0.0664210420000017 +28,292.0681281288885,0.0,0.0,61.33497540816094,0.0665024999980232 +0,286.58077105611767,0.0,0.0,60.48994734420278,0.0664554579998366 +1,284.29575202691694,0.0,0.0,60.00763766149979,0.0659255829996254 +2,286.7606315278459,0.0,0.0,60.52791133747437,0.0664971659971342 +3,285.07881009993866,0.0,0.0,60.17292140133334,0.0661071670001547 +4,285.97901379987127,0.0,0.0,60.3629316180248,0.0663159159994393 +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403 +6,287.5501581793354,0.0,0.0,60.69456043050126,0.0666802500018093 +7,286.76045473612015,0.0,0.0,60.52787402121571,0.0664971250007511 +8,287.0916105357109,0.0,0.0,60.59777262887927,0.0665739169999142 +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215 +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624 +11,287.78823570039054,0.0,0.0,60.74481256939876,0.0667354580000392 +12,288.3114732547224,0.0,0.0,60.85525477385442,0.0668567920001805 +13,287.04471347517006,0.0,0.0,60.58787384637458,0.0665630420007801 +14,284.5945650282986,0.0,0.0,60.070709523065126,0.0659948749998875 +15,284.649724611494,0.0,0.0,60.08235231497584,0.066007666002406 +16,296.0487686832776,0.0,0.0,62.48840200608166,0.0686509999977715 +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049 +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078 +19,282.8897370651235,0.0,0.0,59.71086348962979,0.0655995409979368 +20,286.2961587022398,0.0,0.0,60.429872879903805,0.0663894589997653 +21,283.4221384206483,0.0,0.0,59.82323994057936,0.0657229999997071 +22,271.9089975438187,0.0,0.0,57.39310730174492,0.0630532079994736 +23,286.22194706122224,0.0,0.0,60.41420868079884,0.0663722499994037 +24,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015 +25,288.2345706895805,0.0,0.0,60.83902258877472,0.066838958999142 +26,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547 +27,286.87814802674137,0.0,0.0,60.55271609602139,0.0665244169977086 +28,283.17741121511045,0.0,0.0,59.771584221592626,0.065666250000504 +0,294.3279990372017,0.0666126511343672,0.0,61.28363904361788,0.0662047499972686 +1,293.0398507223221,0.0663211159267448,0.0,61.01542665260526,0.0659149999992223 +2,295.58817487391934,0.0668978555785717,0.0,61.54602713228603,0.0664882079981907 +3,295.0835897351759,0.066783657289844,0.0,61.44096470665652,0.0663747090002289 +4,294.112381481635,0.0665638523212934,0.0,61.238744135589954,0.0661562500026775 +5,294.789060556393,0.0667169991074783,0.0,61.37963917888006,0.0663084589978098 +6,294.5386151968499,0.0666603180257666,0.0,61.32749258370531,0.0662521250014833 +7,292.0345615545926,0.0660935977265118,0.0,60.806109908390894,0.0656888750017969 +8,295.10748548573775,0.0667890654035844,0.0,61.44594017129767,0.066380083997501 +9,298.56736520414785,0.0675721093593182,0.0,62.166340610572824,0.0671583330004068 +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.0666939999973692 +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.0664290829990932 +12,294.3600482591372,0.066619904551123,0.0,61.290312187033216,0.0662119589978829 +13,292.5965765500129,0.0662207936064304,0.0,60.92313011791601,0.0658152920004795 +14,296.05627397750055,0.0670037963058731,0.0,61.64349260140331,0.0665934999997261 +15,277.83269848101855,0.0628794157476561,0.0,57.849062487843625,0.0624943749971862 +16,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.0674349580003763 +17,295.0785838430391,0.0667825243505803,0.0,61.43992240253389,0.0663735829984943 +18,293.1674829950254,0.0663500018094433,0.0,61.042001664687874,0.0659437089998391 +19,292.4674638570015,0.0661915726733057,0.0,60.8962468594413,0.0657862500011106 +20,294.72663371914854,0.0667028705939003,0.0,61.36664094638829,0.0662944169998809 +21,294.5726961110385,0.066668031257449,0.0,61.3345887568531,0.0662597910013573 +22,292.5643406218039,0.0662134979340961,0.0,60.91641809936848,0.0658080410030379 +23,295.7811948568304,0.0669415400830214,0.0,61.58621687637975,0.0665316250015166 +24,298.4484465539857,0.0675451955536914,0.0,62.14157990939614,0.0671315840008901 +25,300.4471681677118,0.067997548527263,0.0,62.55774464508201,0.0675811670007533 +26,268.4016522482285,0.0607449705212693,0.0,55.88537287956778,0.0603730000002542 +27,293.7845093668818,0.0664896479273241,0.0,61.17047609313823,0.0660824999977194 +28,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178 +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.0670402079995255 +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.0656716659977973 +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.0659436669993738 +3,298.06491667401536,0.7076724986042197,0.0,63.11764713741445,0.0662419580003188 +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.0680570420008734 +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566 +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484 +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987 +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.0652717080010916 +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.0657346249972761 +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.0652146250031364 +11,299.57754690862345,0.7112638196812994,0.0,63.43795877443208,0.0665781249990686 +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.0657091670000227 +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.0662325840021367 +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.0625667919994157 +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462 +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.0657192079997912 +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.0652280419999442 +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.0655310830006783 +19,295.06703650881764,0.7005548633900702,0.0,62.48282186331435,0.0655757090025872 +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.0662343750009313 +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.0647040420008124 +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.0638219169995863 +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051 +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.0650090830022236 +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.0664734580022923 +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.0635219579999102 +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474 +28,296.9865061319233,0.7051121117886252,0.0,62.88928501809976,0.06600229200194 +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.0648245409975061 +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.0674112920023617 +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.0708057499978167 +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.0681188330017903 +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.0692457080003805 +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.0679880419993423 +5,404.8936371581969,1.612985331957557,11.290897323702897,72.24115156958844,0.070075582996651 +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.0647352500018314 +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.0662939590001769 +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.0675850420011556 +9,386.0565356160226,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909 +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.0684275000021443 +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.0697700000018812 +12,398.195304750097,1.586301010616593,11.104107074316149,71.046034624424,0.068916291998903 +13,393.1222593641649,1.5660913875331202,10.96263971273184,70.14090150547273,0.0680382919999829 +14,400.10034307722657,1.5938901614366543,11.157231130056582,71.38593169838633,0.0692459999991115 +15,396.1694089205137,1.5782303966150315,11.047612776305222,70.68457414626897,0.0685656669993477 +16,400.56234267245264,1.595730641261678,11.170114488831745,71.46836169906025,0.0693259590007073 +17,391.1936238724376,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276 +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.0678528750031546 +19,390.2371352451378,1.554597843407482,10.882184903852377,69.62613745473936,0.0675389589996484 +20,399.1241054106431,1.5900010980081565,11.130007686057096,71.21175130440785,0.0690770410001277 +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.0679149580028024 +22,388.3292021584939,1.5469971606585198,10.828980124609638,69.28572389757838,0.0672087499988265 +23,392.8437098823672,1.5649817227048024,10.954872058933615,70.09120268709806,0.0679900830000406 +24,401.12472845982575,1.597971032175946,11.18579722523162,71.5687026112844,0.0694232919995556 +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019 +26,387.2337999468269,1.5426333783269082,10.798433648288356,69.09028215698174,0.0670191670033091 +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.0678187920020718 +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.065910666999116 +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.0686019579989078 +0,420.8661640891317,0.3104241498772484,10.623404240243612,71.60450390501863,0.0698542089994589 +1,414.7342996681472,0.3059013847740801,10.468625167824074,70.56125275455447,0.0688364589987031 +2,408.0288084577771,0.3009555217275851,10.299366743566248,69.42040701182964,0.0677235000002838 +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.0672056660005182 +4,393.8408701476979,0.2904907253998756,9.941238158129076,67.0065273255713,0.0653686250007012 +5,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695 +6,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +7,415.36741054416126,0.3063683572281143,10.484606002917692,70.66896773395172,0.0689415410015499 +8,413.5893054085112,0.3050568553250778,10.43972349334711,70.3664479616513,0.0686464159989554 +9,415.22381858036624,0.3062624460927139,10.480981488506211,70.64453756538603,0.0689177080021181 +10,408.53514892789457,0.3013289903582241,10.312147670037003,69.50655377596371,0.0678075409996381 +11,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +12,401.6223100288431,0.2962301909735771,10.137655424429084,68.33043071790512,0.066660167001828 +13,406.60442049183155,0.2999049159503756,10.263412679190637,69.17806727921999,0.0674870840011863 +14,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.0673156250013562 +15,409.57821959330414,0.3020983425946351,10.338476613238624,69.68401769182915,0.0679806670013931 +16,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.0697001250009634 +17,402.4366746389332,0.2968308532822815,10.158211423438075,68.46898349044626,0.0667953330012096 +18,401.3386386128404,0.2960209594751322,10.130495057593414,68.28216798559717,0.0666130839999823 +19,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.0668373749977035 +20,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.0695724580000387 +21,387.29202689790424,0.2856604033831452,9.775933804667638,65.8923330470455,0.0642816660001699 +22,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.0681323340031667 +23,407.4549346245413,0.3005322415686667,10.284881155905484,69.32277038850579,0.0676282499989611 +24,408.27633635683975,0.3011380943461365,10.305614784290006,69.46252042917548,0.0677645840005425 +25,417.85495624498935,0.3082031311428376,10.547396043554889,71.09218891694786,0.0693544169989763 +26,406.94080393314306,0.3001530269954341,10.271903590510414,69.23529822694681,0.0675429160000931 +27,390.6549455763897,0.2881408384025166,9.860819803108344,66.46448672484716,0.0648398339981213 +28,401.5595483973625,0.2961838989982185,10.136071210161257,68.31975270225574,0.0666497499987599 +0,277.4237413479984,0.0,0.0,58.43349005665485,0.0632725420000497 +1,292.6972536911697,0.0,0.0,61.650534954464696,0.0667560000001685 +2,291.40709000891684,0.0,0.0,61.37878904572572,0.0664617500005988 +3,289.27526607180926,0.0,0.0,60.929765064482325,0.065975541001535 +4,293.90739872205074,0.0,0.0,61.90542661328777,0.0670319999990169 +5,290.4961927970452,0.0,0.0,61.18692766099379,0.0662540000012086 +6,292.38028776435414,0.0,0.0,61.58377273273529,0.066683708999335 +7,289.7393040716505,0.0,0.0,61.02750493244705,0.066081375000067 +8,290.32610603159867,0.0,0.0,61.15110245270702,0.0662152080003579 +9,291.71309885989376,0.0,0.0,61.44324338933713,0.0665315420010301 +10,294.01993782201987,0.0,0.0,61.92913061333867,0.0670576669981528 +11,289.9026298051295,0.0,0.0,61.06190607121357,0.0661186249999445 +12,288.43671886620615,0.0,0.0,60.75314269048304,0.0657842920008988 +13,291.84774065261695,0.0,0.0,61.47160285784574,0.0665622500018798 +14,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555 +15,308.0001822067488,0.0,0.0,64.87377575176583,0.0702461670007323 +16,297.17117303800103,0.0,0.0,62.59287219062579,0.0677763749990845 +17,290.83837006338433,0.0,0.0,61.25900012239558,0.0663320409985317 +18,297.87343862204426,0.0,0.0,62.74078970057979,0.0679365420000976 +19,292.22755518415335,0.0,0.0,61.55160281943542,0.0666488749993732 +20,289.24202214867086,0.0,0.0,60.922762929615594,0.0659679589989536 +21,290.14122568247194,0.0,0.0,61.11216128642516,0.0661730419997184 +22,291.32615497134736,0.0,0.0,61.3617417782854,0.066443290997995 +23,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187 +24,291.91150125700455,0.0,0.0,61.48503269129974,0.066576791999978 +25,294.6469332621997,0.0,0.0,62.06119404684761,0.0672006669992697 +26,298.06946458808636,0.0,0.0,62.782078457201386,0.0679812500020489 +27,274.1955917727861,0.0,0.0,57.75354808345529,0.0625362920000043 +28,288.7392551319019,0.0,0.0,60.81686560686869,0.0658532920024299 +0,297.8349870577906,0.0,0.0,62.26538914028103,0.0661593750010069 +1,297.48685086603774,0.0,0.0,62.192607780147874,0.0660820420016534 +2,295.90878769905953,0.0,0.0,61.86269785871619,0.0657314999989466 +3,300.2289979376498,0.0,0.0,62.76588110904888,0.0666911670014087 +4,297.55137488588906,0.0,0.0,62.20609717319946,0.0660963750015071 +5,295.72984193562934,0.0,0.0,61.82528745336033,0.0656917500018607 +6,296.86091429487476,0.0,0.0,62.06174946640304,0.0659430000014253 +7,297.5283032487058,0.0,0.0,62.201273816207355,0.0660912499988626 +8,297.3067796489023,0.0,0.0,62.15496208741491,0.0660420420026639 +9,294.7674017488792,0.0,0.0,61.624079686119025,0.0654779589967802 +10,294.9677264979095,0.0,0.0,61.665959582688664,0.0655224580004869 +11,291.51804808384634,0.0,0.0,60.94476973530921,0.064756166000734 +12,298.35756724728503,0.0,0.0,62.3746397665332,0.0662754580007458 +13,290.0624738641291,0.0,0.0,60.640467355966294,0.0644328329981362 +14,292.77630024929647,0.0,0.0,61.2078199615177,0.0650356670012115 +15,297.2189949149903,0.0,0.0,62.13660980895493,0.0660225419997004 +16,294.33335357686957,0.0,0.0,61.533337565447475,0.0653815419973398 +17,295.53495085809004,0.0,0.0,61.78454352027568,0.0656484580031246 +18,292.72958977705207,0.0,0.0,61.19805466913229,0.0650252910018025 +19,295.4385362100208,0.0,0.0,61.76438707176652,0.0656270409999706 +20,295.95718184808175,0.0,0.0,61.872815140606896,0.0657422500007669 +21,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504 +22,297.1503427630479,0.0,0.0,62.12225738851488,0.0660072919999947 +23,298.31724030194476,0.0,0.0,62.36620901442696,0.0662665000018023 +24,299.6462019297127,0.0,0.0,62.64404176242917,0.0665617080012452 +25,295.93523566460374,0.0,0.0,61.8682270709919,0.065737375000026 +26,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278 +27,296.78419945940794,0.0,0.0,62.04571146116275,0.065925959002925 +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777 +1,290.6954782073229,0.0,0.0,60.92238606686448,0.0665466250029567 +2,291.28719908778197,0.0,0.0,61.046395728609,0.0666820830010692 +3,283.328160416027,0.0,0.0,59.378383451046346,0.0648600829990755 +4,288.3902924835214,0.0,0.0,60.43927771069976,0.0660189170012017 +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556 +6,291.3215994250469,0.0,0.0,61.053605165235275,0.0666899579991877 +7,291.49342205874245,0.0,0.0,61.08961482348515,0.066729292000673 +8,288.8664369502698,0.0,0.0,60.53906549276548,0.0661279170017223 +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085 +10,288.4387063150821,0.0,0.0,60.44942401966714,0.0660299999981361 +11,286.7470829842217,0.0,0.0,60.0949027513009,0.0656427499998244 +12,287.64586027491015,0.0,0.0,60.28326363475572,0.0658485000021755 +13,288.1433001809692,0.0,0.0,60.387514399813654,0.065962374999799 +14,287.9949615223732,0.0,0.0,60.3564263860497,0.0659284169996681 +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948 +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169 +17,289.2799662185982,0.0,0.0,60.62573072020697,0.0662225829983071 +18,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857 +19,292.3219396351502,0.0,0.0,61.26325105602778,0.0669189580003148 +20,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514 +21,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968 +22,291.10992044223104,0.0,0.0,61.00924262890388,0.066641499997786 +23,289.47799864820206,0.0,0.0,60.66723328572497,0.0662679170018236 +24,289.12507512691684,0.0,0.0,60.593269482956494,0.0661871250013064 +25,289.32820096574676,0.0,0.0,60.63583949763187,0.0662336249988584 +26,292.50923477110916,0.0,0.0,61.30250335761741,0.0669618339998123 +27,289.02405823299785,0.0,0.0,60.572098908689014,0.0661639999998442 +0,313.9495430059727,0.0,0.0,64.80389868724639,0.0682134160015266 +1,308.3794199438781,0.0,0.0,63.65414166853778,0.0670031669978925 +2,305.034770594531,0.0,0.0,62.96375583295359,0.0662764580010843 +3,308.9656537375239,0.0,0.0,63.77514912408851,0.0671305409996421 +4,308.0823679620422,0.0,0.0,63.592825680142255,0.0669386250010575 +5,309.16222020810307,0.0,0.0,63.81572339447207,0.0671732499977224 +6,305.2121586167888,0.0,0.0,63.00037138369676,0.0663150000000314 +7,305.6986801043409,0.0,0.0,63.100796722388495,0.0664207090012496 +8,307.5666990894399,0.0,0.0,63.48638388361557,0.0668265829990559 +9,305.4478414091471,0.0,0.0,63.04901985010978,0.0663662080005451 +10,304.1035409753827,0.0,0.0,62.77153605994154,0.0660741249994316 +11,309.41132839650345,0.0,0.0,63.86714306417025,0.0672273750024032 +12,308.8985360500407,0.0,0.0,63.76129502582119,0.0671159579978848 +13,307.0985920540554,0.0,0.0,63.38975956428898,0.066724874999636 +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564 +15,307.8050697237094,0.0,0.0,63.53558716094896,0.0668783750006696 +16,307.06369159998235,0.0,0.0,63.38255558664265,0.0667172920002485 +17,306.8525537307586,0.0,0.0,63.338973560833,0.0666714170001796 +18,308.0434357367305,0.0,0.0,63.584789484387315,0.0669301659982011 +19,307.850325708721,0.0,0.0,63.54492867563824,0.0668882079989998 +20,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821 +21,307.0828700483037,0.0,0.0,63.38651430628306,0.0667214589993818 +22,304.66063198848303,0.0,0.0,62.886528008096214,0.066195167000842 +23,309.76916966813064,0.0,0.0,63.94100687454759,0.0673051249978016 +24,310.62733522529624,0.0,0.0,64.11814512832865,0.0674915829986275 +25,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051 +26,305.0623853492818,0.0,0.0,62.96945593288687,0.0662824579994776 +27,302.2746382953192,0.0,0.0,62.3940230912878,0.0656767500004207 +0,290.8686257733098,0.0,0.0,61.83024365562761,0.0671084160021564 +1,288.43744237162144,0.0,0.0,61.31344449346887,0.0665474999987054 +2,286.20184035980265,0.0,0.0,60.83822026899203,0.0660317080000822 +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035 +4,285.997408337104,0.0,0.0,60.79476394316497,0.065984542001388 +5,287.0887483871877,0.0,0.0,61.02675122274326,0.066236333001143 +6,290.61850144546,0.0,0.0,61.777074469387486,0.0670507079994422 +7,288.4390677341846,0.0,0.0,61.313789998464614,0.0665478749979229 +8,287.0845961195109,0.0,0.0,61.02586857092235,0.0662353750012698 +9,289.1576572076416,0.0,0.0,61.46654130367703,0.0667136660013056 +10,287.9375491452288,0.0,0.0,61.20718167496282,0.0664321659969573 +11,287.8124003118045,0.0,0.0,61.18057865841791,0.0664032919994497 +12,291.3011551411478,0.0,0.0,61.922186869271,0.0672082079981919 +13,290.86863009377606,0.0,0.0,61.83024457403358,0.0671084169989626 +14,291.96195960819887,0.0,0.0,62.06265475609747,0.0673606670025037 +15,288.20917165594705,0.0,0.0,61.264920752099144,0.0664948340017872 +16,288.4121603590863,0.0,0.0,61.30807026999944,0.0665416670017293 +17,291.91970008694614,0.0,0.0,62.05367160609675,0.067350917001022 +18,289.8069063826763,0.0,0.0,61.604552870166486,0.0668634590001602 +19,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013 +20,288.0397695006966,0.0,0.0,61.22891076131008,0.0664557499985676 +21,286.4039275203915,0.0,0.0,60.881178145062925,0.0660783329985861 +22,286.55978061458836,0.0,0.0,60.91430799797523,0.0661142909993941 +23,288.72260523938814,0.0,0.0,61.374061858262614,0.0666132919977826 +24,289.4366783433925,0.0,0.0,61.52585311416426,0.0667780409967235 +25,279.95357387673477,0.0,0.0,59.51001982095035,0.0645901249990856 +26,286.3918304829023,0.0,0.0,60.87860666533224,0.0660755420030909 +27,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207 +28,287.6597979585023,0.0,0.0,61.14813981884897,0.0663680840007145 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/mac_report.md new file mode 100644 index 000000000..31742836b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 471.54 ms | 64.80 ms | +| **Average Power** | 4.373 W | 5.938 W | +| **Total Energy** | 1856.01 J | 346.36 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +79.93% | 0.00e+00 | +5.793 | large | βœ… | +| `gpu_mj` | +90.91% | 1.99e-139 | +1.403 | large | βœ… | +| `ane_mj` | +85.73% | 4.05e-28 | +0.536 | medium | βœ… | +| `dram_mj` | +86.12% | 0.00e+00 | +28.295 | large | βœ… | +| `time_s` | +86.15% | 0.00e+00 | +109.558 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 79.9% lower energy (Cohen’s d = +5.793, large) +- **`gpu_mj`**: 90.9% lower energy (Cohen’s d = +1.403, large) +- **`ane_mj`**: 85.7% lower energy (Cohen’s d = +0.536, medium) +- **`dram_mj`**: 86.1% lower energy (Cohen’s d = +28.295, large) +- **`time_s`**: 86.1% lower time (Cohen’s d = +109.558, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/with_smell.csv new file mode 100644 index 000000000..f641e9c6a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2169.9882565573043,3.135010483643474,76.1312545870052,490.4146399729018,0.4837353750008333 +1,2199.517811199534,3.177672218379119,77.16726113474346,497.08828249823256,0.4903181249974295 +2,2210.1428524823764,3.19302235481889,77.54002707965452,499.4895285785634,0.4926866669993615 +3,2199.071091883712,3.1770268371268866,77.1515885605445,496.98732448992274,0.4902185419996385 +4,2209.0770745397144,3.1914826114523605,77.5026356275852,499.24866409256344,0.4924490829980641 +5,2241.1490127200236,3.2378173610171124,78.62783844069976,506.4968821271085,0.4995985829991696 +6,2198.850910485615,3.1767087381743906,77.14386377861389,496.9375637685223,0.4901694590007537 +7,2192.2624295757,3.1671902734262742,76.91271537678331,495.4485752988196,0.4887007500001346 +8,2165.6159983890375,3.128693824945763,75.97785951736712,489.4265150791473,0.4827607080005691 +9,2184.636400493825,3.156172849231463,76.6451659281788,493.7251022360924,0.4870007499994244 +10,2175.6821728479604,3.143236559158055,76.33101833660666,491.701457954188,0.4850046669998846 +11,2191.358148507132,3.1658838467110355,76.88098983539325,495.2442089049758,0.4884991670005547 +12,2186.548138320785,3.1589347619337036,76.71223679769531,494.15715260101865,0.4874269159990945 +13,2193.950437648699,3.1696289608197814,76.97193697485511,495.830063018345,0.4890770419988257 +14,2198.6882921444367,3.1764738013249003,77.13815852270048,496.9008122262037,0.4901332080007705 +15,2193.418293349202,3.168860164973679,76.9532673746766,495.709799070251,0.488958416000969 +16,2172.3226064743094,3.138382949572812,76.21315225962607,490.9422001431743,0.4842557499978284 +17,2184.8408812548228,3.1564682652677,76.65233987339562,493.7713146330873,0.4870463330007624 +18,2180.343767043414,3.149971225407551,76.4945643896339,492.75497242928014,0.4860438329997123 +19,2208.951285455673,3.191300882313502,77.49822247891841,499.220235916431,0.4924210420031158 +20,2198.592406047779,3.1763352734239554,77.13479448199016,496.8791420879305,0.4901118330017198 +21,2192.8583095297704,3.1680511490081393,76.93362106065028,495.583243425368,0.4888335839968931 +22,2205.143313053202,3.185799454659644,77.36462465157682,498.35963890207336,0.491572165999969 +23,2158.0366989192603,3.1177439116341943,75.71194951726406,487.71360285048166,0.4810711249992891 +24,2190.3639610254854,3.1644475310221134,76.84611004282121,495.0195237738908,0.4882775419973768 +25,2188.6791289765147,3.1620134320721585,76.78699987147863,494.6387538318352,0.4879019580002932 +26,2180.3695654537623,3.150008496709209,76.49546949376993,492.76080283784785,0.4860495840002841 +27,2183.48053224875,3.154502951223919,76.60461377340613,493.4638774540912,0.4867430830017838 +28,2193.8440814632736,3.169475306644327,76.96820560451013,495.80602665306674,0.4890533329999016 +29,2209.216141908925,3.1916835239038868,77.50751462785543,499.28009314458586,0.4924800839980889 +0,2141.821623706896,3.142926386347778,83.83342592637125,491.35518621091785,0.4842013329980545 +1,2175.8361832395613,3.192839626316934,85.16479592723275,499.1584645269379,0.4918910000014875 +2,2174.331117559096,3.190631080755547,85.10588588036374,498.8131874882251,0.4915507500008971 +3,2179.538211308822,3.1982720122696646,85.30969767464559,500.0077465918848,0.4927279170005931 +4,2162.391224731243,3.173110385379488,84.63854438475393,496.0740573016438,0.4888514999984181 +5,2162.886465438097,3.173837105601162,84.65792869045626,496.18767044619426,0.4889634589999332 +6,2148.164061156115,3.1522333303959056,84.08167641287605,492.8102044530525,0.4856351669986907 +7,2144.7278049004426,3.147190940153569,83.94717728788572,492.0218930859032,0.4848583329985558 +8,2152.082093260408,3.1579826824179604,84.23503281312749,493.7090399923321,0.4865209160016093 +9,2138.1194142937725,3.137493734289595,83.68851708094563,490.505862543885,0.4833643750025658 +10,2129.843946117542,3.125350245306866,83.36460549060631,488.607387824185,0.4814935409995087 +11,2127.402041757709,3.1217669750846824,83.2690264722588,488.047190673239,0.4809415000017907 +12,2141.4321821538906,3.1423549166607905,83.81818272440466,491.2658444446954,0.4841132919973461 +13,2174.0299584435265,3.1901891574318046,85.09409815718098,498.74409859133857,0.491482666999218 +14,2155.442231455654,3.1629133764023343,84.36655258740542,494.47988911923653,0.4872805420018267 +15,2172.8061465212663,3.188393325911651,85.04619671431709,498.4633439625247,0.4912059999987832 +16,2176.1941079888093,3.1933648479909933,85.17880552430712,499.2405760248656,0.4919719160025124 +17,2173.759024517336,3.189791586795596,85.08349348357937,498.68194365356,0.4914214170021296 +18,2151.2711360107387,3.156792677185978,84.20329098936071,493.5229983322752,0.4863375830027507 +19,2153.784005153057,3.1604800817043612,84.30164765304055,494.099475510244,0.4869056669995188 +20,2176.8015927418337,3.1942562760345106,85.20258319443631,499.3799390701532,0.4921092500007944 +21,2133.532889749983,3.1307634310511028,83.508995097721,489.4536681891682,0.482327500001702 +22,2150.492987195299,3.1556508153159317,84.17283332642707,493.3444832533918,0.4861616670023068 +23,2162.433800082962,3.173172860795202,84.6402108342636,496.08382451084566,0.488861125002586 +24,2159.5508417822016,3.1689423844502493,84.52736844417824,495.4224451984748,0.4882093749984051 +25,2169.436613011377,3.1834488451665255,84.91430919633659,497.6903394569814,0.4904442500010191 +26,2159.210606258568,3.1684431200890324,84.51405122426955,495.3443917848664,0.4881324579982902 +27,2156.3287538351333,3.164214266517418,84.40125211952777,494.68326617175467,0.4874809579996508 +28,2171.8613810923052,3.1870069694743437,85.00921748050513,498.2466053750837,0.4909924170024169 +29,2164.4875545363534,3.1761865567030205,84.7205972072153,496.5549762121397,0.4893254170019645 +0,1441.2633079240795,2.6651194931910953,0.0,444.44198948328005,0.476325583000289 +1,1434.371053456234,2.6523746452279946,0.0,442.3166267748334,0.4740477499981352 +2,1434.2613684196351,2.6521718205757994,0.0,442.28280322877174,0.4740115000022342 +3,1442.11519615015,2.6666947667062386,0.0,444.7046860328491,0.4766071250014647 +4,1454.6356824641823,2.689847088670102,0.0,448.5656251243478,0.4807450420012173 +5,1439.3908464616345,2.6616570214023705,0.0,443.8645790316128,0.4757067499995173 +6,1436.1552645979718,2.655673928480174,0.0,442.86682349817494,0.4746374169990304 +7,1470.199358514414,2.718626740659527,0.0,453.3649918392344,0.4858887079972191 +8,1453.481341874001,2.6877125338030208,0.0,448.2096614183262,0.4803635419993952 +9,1446.8368213041,2.6754257842574027,0.0,446.1606923472251,0.4781675829981395 +10,1441.2525935932722,2.6650996807309197,0.0,444.43868550789,0.476322042002721 +11,1430.5807405940272,2.645365768613415,0.0,441.1478089883947,0.4727950829983456 +12,1434.2438430053487,2.6521394133654135,0.0,442.2773989213498,0.4740057079980033 +13,1436.1856465993965,2.6557301095150985,0.0,442.8761923880117,0.4746474579987989 +14,1442.9578799050064,2.6682530197258747,0.0,444.96454420203617,0.4768856250011595 +15,1444.9948689388625,2.672019728523426,0.0,445.5926899778878,0.4775588330012397 +16,1447.5399402947487,2.67672596037214,0.0,446.377512966559,0.4783999579994997 +17,1439.6796857732263,2.6621911301079004,0.0,443.9536483346187,0.4758022089990845 +18,1457.2335781341708,2.6946510008721924,0.0,449.366737532949,0.4816036249976605 +19,1440.5899415652568,2.6638743343092375,0.0,444.2343436752442,0.4761030409972591 +20,1443.300048842662,2.6688857431850073,0.0,445.07005874788973,0.4769987090003269 +21,1432.9378375071867,2.649724406550053,0.0,441.8746663473032,0.4735740840005746 +22,1441.6666221189096,2.6658652837184835,0.0,444.56635937610366,0.4764588750003895 +23,1437.235978521874,2.657672336216858,0.0,443.2000829683638,0.4749945839976135 +24,1442.0894768885737,2.6666472078007972,0.0,444.6967549908805,0.4765986249985872 +25,1442.2719080904496,2.666984551400411,0.0,444.75301125291105,0.4766589169994404 +26,1439.6581239725597,2.6621512589927825,0.0,443.9469993277839,0.4757950830025947 +27,1441.041668476752,2.664709647461807,0.0,444.3736425848496,0.4762523329991381 +28,1438.9698828168969,2.6608785943034867,0.0,443.7347665825352,0.4755676250024407 +29,1435.8594931944183,2.655127001260973,0.0,442.775616547783,0.4745396670004993 +0,1429.0810462578247,1.780681684534259,0.0,449.8405108345131,0.478538583000045 +1,1416.2622880861463,1.7647090929485307,0.0,445.80547255637504,0.4742461249988992 +2,1422.4471328985585,1.7724156116991556,0.0,447.75231367999993,0.4763171670019801 +3,1423.230797457382,1.773392083348801,0.0,447.9989925274923,0.4765795829989656 +4,1415.3897797767202,1.7636219190823126,0.0,445.530827822511,0.4739539590009372 +5,1416.767852316578,1.7653390425009672,0.0,445.9646120763292,0.474415417000273 +6,1420.5758147951883,1.7700838881896082,0.0,447.1632675277483,0.4756905419999384 +7,1423.9675555177255,1.7743101079684835,0.0,448.2309063318873,0.4768262920006236 +8,1422.3049082362418,1.772238395122154,0.0,447.70754476019846,0.4762695419994998 +9,1421.4169664880326,1.7711319906868632,0.0,447.4280419491776,0.4759722079979838 +10,1432.1016082526694,1.784445403488691,0.0,450.7913114586808,0.4795500410000386 +11,1413.1080871694985,1.7607788555303492,0.0,444.8126055980349,0.473189916996489 +12,1422.2445572078,1.772163195768506,0.0,447.6885477008401,0.4762493330017605 +13,1417.3294075206245,1.7660387586362547,0.0,446.1413762147323,0.4746034580020932 +14,1412.745867489083,1.7603275179715854,0.0,444.69858751172745,0.473068625000451 +15,1417.7504850784746,1.7665634350337172,0.0,446.27392135219696,0.4747444590029772 +16,1411.4851314002594,1.7587565996053545,0.0,444.3017379644545,0.4726464579980529 +17,1411.9812408690564,1.759374768215822,0.0,444.4579013517291,0.4728125840010762 +18,1417.1746163233452,1.7658458837460278,0.0,446.0926516504824,0.4745516250004584 +19,1419.5263625778225,1.768776236431752,0.0,446.8329250865043,0.4753391249978449 +20,1420.7488973503296,1.7702995547094738,0.0,447.21774977368193,0.4757485000009183 +21,1416.5752301112116,1.7650990289383852,0.0,445.9039792161517,0.4743509159998211 +22,1422.353809629749,1.7722993278565111,0.0,447.72293774850624,0.4762859170004958 +23,1426.1286714633284,1.7770029290597484,0.0,448.91117390907493,0.4775499579991447 +24,1418.402628039844,1.7673760264749436,0.0,446.4792003485476,0.4749628339995979 +25,1354.1542849217951,1.6873204913801607,0.0,426.2553596054523,0.4534487910023017 +26,1422.4609417505426,1.7724328179799873,0.0,447.75666037611416,0.4763217910003732 +27,1420.870713330435,1.7704513414015055,0.0,447.25609452876904,0.4757892910020018 +28,1412.149219754377,1.7595840753963088,0.0,444.51077708455057,0.4728688329996657 +29,1434.264097929357,1.7871399362937797,0.0,451.47201145353614,0.4802741670027899 +0,1398.2044033134116,0.4026120084407769,0.0,442.1350872693799,0.4791000420009368 +1,1375.8131175329577,0.3961644529057804,0.0,435.05459669936454,0.4714275830010592 +2,1392.2357928925342,0.4008933511232521,0.0,440.2477150918514,0.477054875002068 +3,1393.0715489932206,0.4011340065248991,0.0,440.5119948320934,0.4773412499998812 +4,1389.7374023390023,0.4001739412599709,0.0,439.45768316032473,0.4761987920028332 +5,1391.353584643174,0.4006393198569392,0.0,439.96874642289544,0.4767525829993246 +6,1389.8013619275412,0.4001923583800569,0.0,439.4779082276992,0.4762207079984364 +7,1393.9126545251288,0.4013762022916337,0.0,440.7779661499291,0.4776294580005924 +8,1395.2987708038715,0.4017753335328132,0.0,441.21627877461776,0.4781044160008605 +9,1393.131376142637,0.4011512337119461,0.0,440.5309131546688,0.4773617499995453 +10,1390.4745399404944,0.4003861995317448,0.0,439.6907781191111,0.4764513749978505 +11,1391.779428467707,0.4007619412970313,0.0,440.1034052010233,0.4768985000009706 +12,1389.334176098065,0.4000578325377161,0.0,439.3301764318352,0.4760606250019918 +13,1390.2971247118064,0.4003351129371233,0.0,439.63467652378426,0.476390582996828 +14,1397.3508945928966,0.4023662411843057,0.0,441.8651938605651,0.4788075840006058 +15,1387.6137807153643,0.3995624458555543,0.0,438.7861592903746,0.4754711249988759 +16,1380.8976957133325,0.3976285537399815,0.0,436.6624234321231,0.4731698329997016 +17,1387.905133100111,0.3996463405768904,0.0,438.8782896768552,0.4755709579985705 +18,1389.2666881497526,0.4000383994288292,0.0,439.308835639426,0.4760375000005297 +19,1390.355250444137,0.4003518502022758,0.0,439.6530568304659,0.4764104999994742 +20,1387.9581516296382,0.3996616072264639,0.0,438.89505500252847,0.4755891249988053 +21,1383.6377091625147,0.3984175387519839,0.0,437.5288604728037,0.4741087090005749 +22,1386.509896833805,0.3992445832414854,0.0,438.4370931630245,0.475092874999973 +23,1385.2003855818612,0.3988675103657516,0.0,438.0230042999896,0.4746441660026903 +24,1383.1030324544151,0.3982635789569751,0.0,437.3597869579182,0.473925499998586 +25,1386.0615580103492,0.3991154843817294,0.0,438.29532109853585,0.4749392500016256 +26,1388.7087868377796,0.3998777521249065,0.0,439.1324181251682,0.4758463329999358 +27,1386.871413337013,0.3993486816730853,0.0,438.5514105906599,0.4752167500009818 +28,1388.1705847108346,0.3997227771879352,0.0,438.9622298152176,0.4756619159998081 +29,1389.9437563946433,0.4002333607701617,0.0,439.5229356857659,0.4762695000026724 +0,2164.5179420347736,4.038404277087112,84.3392364313978,495.3553411613795,0.4887512500026787 +1,2150.43920045777,4.012137158161257,83.79066610473964,492.1333859622262,0.4855722499996773 +2,2172.402821177811,4.053115326155906,84.64646635699152,497.1598154612063,0.4905316670010506 +3,2150.953298173485,4.013096325268938,83.81069763598848,492.2510385094345,0.4856883339998603 +4,2173.5157060599927,4.05519166795046,84.68982929678357,497.4145019481052,0.4907829580006364 +5,2168.4262431939437,4.045696108589558,84.4915212099654,496.2497656502993,0.4896337499994843 +6,2149.20876982605,4.009841507832239,83.74272306026502,491.8517988367446,0.4852944170015689 +7,2169.686018192136,4.048046507559263,84.54060764134098,496.5380683073933,0.4899182089975511 +8,2152.48266402696,4.015949707763008,83.87028852493488,492.60103770759144,0.486033666998992 +9,2152.4896746157906,4.015962787623133,83.87056168862527,492.6026420983681,0.4860352499999862 +10,2142.155005871661,3.996681094619777,83.46787707524113,490.2375273251796,0.483701667002606 +11,2176.0035113641293,4.0598332388913505,84.78676524527638,497.98384241012747,0.491344707999815 +12,2143.4867423250407,3.999165754175994,83.51976744465072,490.5422985411579,0.4840023750002729 +13,2143.007710813168,3.998272011107925,83.50110224851014,490.4326709823456,0.4838942089991178 +14,2179.924730971808,4.06714917272009,84.93955338399726,498.8812233182776,0.4922301250007876 +15,2172.904363612247,4.054051068508988,84.66600867869597,497.2745947009123,0.4906449160007469 +16,2175.837068669918,4.059522701900578,84.78027989836993,497.9457515835403,0.4913071250011853 +17,2143.319560036683,3.998853837302844,83.51325327987014,490.50403845660173,0.4839646250002261 +18,2165.832517390568,4.040856918682867,84.39045812819509,495.656185017282,0.4890480829999433 +19,2159.0191947763465,4.028145103893945,84.1249808061157,494.0969391073879,0.4875096249998023 +20,2162.4126630724027,4.034476396702759,84.2572054088254,494.87354280877975,0.4882758749990898 +21,2139.4559131408855,3.991645318562419,83.36270842981185,489.61983320746634,0.4830922080000164 +22,2165.992135518255,4.04115472288076,84.3966775596668,495.6927140247624,0.4890841250016819 +23,2165.946741644624,4.041070030206302,84.39490881265557,495.68232552332177,0.4890738750000309 +24,2158.0299406483036,4.026299423604477,84.08643506982243,493.8705458275839,0.4872862500014889 +25,2173.8668641525383,4.055846833849217,84.7035119763386,497.4948653552899,0.4908622500006458 +26,2171.246752327054,4.050958414771233,84.6014207779083,496.8952462151623,0.490270624999539 +27,2177.25535018926,4.062168831111427,84.8355424480874,498.2703288541801,0.491627374998643 +28,2173.1080868621048,4.054431160920139,84.67394664169578,497.32121727584047,0.4906909170022118 +29,2161.072808854291,4.031976591596034,84.20499873523288,494.5669138220523,0.487973333998525 +0,1654.6480123452643,0.8802219605314963,0.0,471.798970844882,0.4858740839990787 +1,1631.975700723622,0.8681609865742029,0.0,465.3342888037728,0.4792165419967205 +2,1623.088033571781,0.8634330204167017,0.0,462.8000989433521,0.4766067500022473 +3,1619.429952800151,0.8614870337146584,0.0,461.75705007105694,0.4755325839978468 +4,1621.752791825675,0.8627227127870598,0.0,462.4193740538641,0.476214667000022 +5,1622.4651082793391,0.8631016432790347,0.0,462.6224807975626,0.4764238329989894 +6,1624.768512061776,0.8643269833985918,0.0,463.2792631016452,0.4771002089983085 +7,1631.325248725041,0.8678149660736794,0.0,465.1488218154921,0.4790255419975437 +8,1609.854086984751,0.8563929669893303,0.0,459.02663030628105,0.4727207079995423 +9,1642.1987492722417,0.8735993346512181,0.0,468.2492433730529,0.482218458000716 +10,1634.9563714903925,0.869746611943738,0.0,466.1841840018436,0.4800917920001666 +11,1655.6029712356135,0.8807299693529607,0.0,472.07126357318697,0.4861544999985199 +12,1699.2689617515464,0.9039589361747356,0.0,484.52198978965833,0.4989766670005338 +13,1645.717490264924,0.8754711968672741,0.0,469.25256152085893,0.4832517079994431 +14,1722.6778540568937,0.916411748449703,0.0,491.1966971690408,0.505850499997905 +15,1602.5888616491486,0.8525280900844576,0.0,456.9550562852693,0.4705873329985479 +16,1611.4423307151076,0.857237863909827,0.0,459.4794950556673,0.4731870830000844 +17,1608.494012283966,0.8556694489899358,0.0,458.6388246586056,0.4723213329998543 +18,1610.1373128583996,0.8565436344617573,0.0,459.10738807150193,0.4728038749999541 +19,1607.8689619647032,0.8553369414032181,0.0,458.46060059212493,0.4721377919995575 +20,1625.835995757708,0.8648948519631798,0.0,463.5836406522643,0.4774136670021107 +21,1615.6836081079043,0.8594940933157138,0.0,460.68883401722263,0.4744325000028766 +22,1620.2433004571858,0.8619197097061244,0.0,461.98896440248274,0.4757714169973042 +23,1610.983721176818,0.85699389771043,0.0,459.34872917279046,0.4730524159967899 +24,1634.044117669197,0.869261320908422,0.0,465.9240680069142,0.4798239160008961 +25,1615.5939308560737,0.8594463877699828,0.0,460.6632638447108,0.4744061669989605 +26,1637.5983338477124,0.8711520548345887,0.0,466.93750139133954,0.4808675830026914 +27,1616.4282802918283,0.859890236063172,0.0,460.90116652986023,0.4746511670018662 +28,1606.4272981052866,0.8545700204754466,0.0,458.0495309748394,0.4717144589994859 +29,1611.9000888699488,0.857481377199359,0.0,459.6100181788564,0.4733215000014752 +0,1450.3997588750915,1.868469898711873,0.0,453.1373159715348,0.4797988339996664 +1,1470.0650690266311,1.8938036315963045,0.0,459.2811985840966,0.4863042079996376 +2,1448.4887603472594,1.8660080648595936,0.0,452.54027730103815,0.4791666669989354 +3,1453.1077990562935,1.8719585173027935,0.0,453.9833682765936,0.4806946660028188 +4,1457.5307279874908,1.877656332351035,0.0,455.36519017248935,0.4821577910006454 +5,1460.272277375114,1.8811881190017572,0.0,456.2217115029083,0.4830647080016206 +6,1458.6824685027595,1.8791400560422025,0.0,455.7250196626634,0.4825387919991044 +7,1464.5019894956838,1.8866370235049068,0.0,457.54316814678816,0.4844639160000952 +8,1464.2728783808036,1.886341872310214,0.0,457.47158871151817,0.4843881250017148 +9,1454.2838469735757,1.873473554877392,0.0,454.3507919426761,0.4810837080003693 +10,1443.39889680046,1.8594510747832012,0.0,450.95009011840455,0.4774829169982695 +11,1435.4034897523384,1.849151033497376,0.0,448.45214617728334,0.4748379999982717 +12,1442.1909841349518,1.8578949876134647,0.0,450.5727111924725,0.4770833339971432 +13,1440.5007836697584,1.8557175957098335,0.0,450.0446547738438,0.4765242079993186 +14,1436.810538132051,1.8509636562087617,0.0,448.891739553057,0.4753034579989617 +15,1432.6827260690825,1.845646023921523,0.0,447.60211876568223,0.4739379590027965 +16,1439.107087588519,1.8539221740270784,0.0,449.6092329546741,0.4760631669996655 +17,1438.5640902241869,1.8532226605142503,0.0,449.4395884365006,0.475883541002986 +18,1440.7890959175154,1.856089012454126,0.0,450.13472996677655,0.4766195830015931 +19,1442.0363067041512,1.8576957252227393,0.0,450.52438650446464,0.4770321659998444 +20,1449.866335125129,1.867782718357654,0.0,452.97066246455887,0.4796223749981436 +21,1457.8602307172046,1.878080812518138,0.0,455.46813419301486,0.4822667920016101 +22,1451.9393114765087,1.870453219293409,0.0,453.61830662899615,0.4803081249992829 +23,1447.4807361216976,1.8647094829265027,0.0,452.2253479933006,0.4788332080024702 +24,1439.3600043065803,1.8542479926654816,0.0,449.68824979267697,0.4761468329998024 +25,1447.567394544272,1.8648211201858576,0.0,452.25242202221665,0.4788618750026217 +26,1439.6413879935462,1.854610483727596,0.0,449.7761603482943,0.4762399160026689 +27,1445.2852070324934,1.8618811040676244,0.0,451.5394156132572,0.478106916998513 +28,1464.0207143664902,1.8860170233384737,0.0,457.3928070349966,0.4843047079993994 +29,1453.8891033023608,1.8729650284088384,0.0,454.227465193222,0.4809531249993597 +0,1416.007855441307,0.2339845849603217,0.0,445.2058124409321,0.477547541999229 +1,1405.501159477378,0.2322484329432426,0.0,441.90241119586415,0.4740041670011123 +2,1411.600628024097,0.2332563239735772,0.0,443.82013985772505,0.4760612079990096 +3,1414.8127689086136,0.2337871059525115,0.0,444.83006631164307,0.4771445000005769 +4,1415.084203187349,0.2338319584134706,0.0,444.91540772985934,0.4772360409988323 +5,1423.4112588293244,0.2352079413579451,0.0,447.5335101352102,0.4800443340027414 +6,1405.9413621255387,0.2323211731003912,0.0,442.04081493201573,0.4741526249999879 +7,1412.981778742787,0.2334845486804094,0.0,444.2543862677677,0.4765269999988959 +8,1412.4140739457582,0.233390739757809,0.0,444.0758946906084,0.4763355420000152 +9,1414.3226536148504,0.2337061181083035,0.0,444.6759695834992,0.4769792090010014 +10,1417.9660986792762,0.2343081698398312,0.0,445.82150201381614,0.4782079579999845 +11,1412.6123694385958,0.2334235065877477,0.0,444.1382406060304,0.4764024169999175 +12,1419.2150504322765,0.2345145496677667,0.0,446.21418386071224,0.4786291660020652 +13,1401.736264159689,0.2316263124762245,0.0,440.7186936958335,0.4727344589991844 +14,1414.5234190879785,0.2337392930837979,0.0,444.73909208330065,0.477046916999825 +15,1422.6431562197145,0.2350810182129739,0.0,447.2920116540856,0.4797852919982688 +16,1408.0841869658764,0.2326752586931952,0.0,442.71453864780955,0.4748752910018083 +17,1415.1288052237671,0.2338393285625412,0.0,444.9294310177837,0.4772510830007377 +18,1411.6060661381266,0.2332572225807772,0.0,443.82184965048174,0.4760630419987137 +19,1418.1162102203814,0.2343329746362936,0.0,445.8686984543992,0.4782585829998425 +20,1413.9969775450247,0.2336523026017462,0.0,444.5735740503797,0.4768693750011152 +21,1402.71835094593,0.2317885948874347,0.0,441.0274707579634,0.4730656669999007 +22,1402.7010521628758,0.2317857363944131,0.0,441.0220318624555,0.4730598329988424 +23,1404.320403583212,0.2320533219650272,0.0,441.53117075031395,0.4736059579990979 +24,1409.4916535304808,0.2329078318944659,0.0,443.1570590003417,0.4753499580001517 +25,1413.038612086046,0.2334939399603966,0.0,444.2722551903604,0.4765461669994693 +26,1411.7338144080225,0.233278332015867,0.0,443.8620148741904,0.4761061250028433 +27,1413.9134577072468,0.233638501580443,0.0,444.54731464998866,0.476841208001133 +28,1409.1224903257444,0.2328468304678771,0.0,443.0409907145222,0.4752254579980217 +29,1407.2538188427316,0.2325380466431972,0.0,442.45346332010627,0.4745952500015846 +0,1359.9830388133907,0.0994430417383292,0.0,439.27306303877975,0.4735101670012227 +1,1367.2100374254069,0.0999714856263093,0.0,441.6073758399505,0.4760264169999573 +2,1368.7205368574348,0.1000819345464635,0.0,442.0952655365781,0.4765523329988355 +3,1360.6509298042945,0.0994918784589276,0.0,439.4887911125696,0.4737427090003621 +4,1366.7448700252626,0.0999374722159449,0.0,441.4571272685673,0.4758644579997053 +5,1368.671233865174,0.1000783294724461,0.0,442.0793407229522,0.4765351669993833 +6,1378.0276760639613,0.1007624799695789,0.0,445.1014615189534,0.479792833000829 +7,1372.258883992279,0.1003406613039104,0.0,443.2381478664736,0.4777842919975228 +8,1369.9006263898757,0.1001682236319008,0.0,442.4764331899832,0.4769632089992228 +9,1362.872281559501,0.0996543054664741,0.0,440.20628534723863,0.4745161249993543 +10,1370.0406398939213,0.1001784615307049,0.0,442.52165740163406,0.4770119580025493 +11,1363.8435384826207,0.0997253245453802,0.0,440.5200002917932,0.474854291001975 +12,1375.0565775890122,0.1005452308854206,0.0,444.14179989786464,0.478758375000325 +13,1372.584870820952,0.1003644977201632,0.0,443.3434412625342,0.4778977919995668 +14,1360.2762345172491,0.0994644804414484,0.0,439.3677649366916,0.47361224999986 +15,1368.435239510169,0.1000610733774619,0.0,442.003114799375,0.4764529999993101 +16,1368.283016589219,0.1000499427163804,0.0,441.95394695915786,0.4763999999995576 +17,1368.0307487445557,0.1000314966908859,0.0,441.8724647158733,0.4763121670002874 +18,1372.803270504523,0.1003804672787747,0.0,443.4139841261075,0.4779738329998508 +19,1366.9728453928535,0.0999541419561899,0.0,441.53076306780974,0.4759438330002012 +20,1372.0063748964212,0.1003221976379366,0.0,443.156587699312,0.4776963750009599 +21,1367.3190577628875,0.0999794572801175,0.0,441.6425892920392,0.4760643750014424 +22,1370.7449121584284,0.1002299584789725,0.0,442.7491365877813,0.4772571670000616 +23,1359.658367419681,0.0994193015077274,0.0,439.1681945268015,0.4733971249988826 +24,1367.1400292419053,0.0999663665722364,0.0,441.58476327175896,0.4760020419998909 +25,1366.998694566532,0.0999560320683337,0.0,441.5391123231862,0.4759528329996101 +26,1365.0601270460802,0.0998142824690026,0.0,440.91295709307434,0.4752778750007564 +27,1366.017143931724,0.0998842603050398,0.0,441.2220725207958,0.4756110829985118 +28,1365.7311285567905,0.0998633466332838,0.0,441.1296898614259,0.4755115000007208 +29,1365.9570675778948,0.0998798674742537,0.0,441.2026679229371,0.475590165999165 +0,1390.0603241936417,0.1674892551502086,0.0,445.0524487851344,0.4788548329997866 +1,1385.1419929370336,0.1668966422798074,0.0,443.47775786590427,0.4771605420028209 +2,1377.5902576361257,0.1659867288763194,0.0,441.05993597015606,0.4745590829988941 +3,1377.444387682713,0.1659691529125856,0.0,441.01323311932254,0.4745088329982536 +4,1378.2936033553765,0.1660714754506803,0.0,441.2851245675478,0.4748013749995152 +5,1380.196807079257,0.1663007936813814,0.0,441.8944689701668,0.4754570000004605 +6,1385.9423414363234,0.1669930767810111,0.0,443.7340036225027,0.4774362499993003 +7,1379.58091366356,0.1662265842908596,0.0,441.6972797776721,0.4752448340004775 +8,1386.7012048240165,0.167084512714656,0.0,443.976967185384,0.4776976670000294 +9,1389.5751796056163,0.1674307997693347,0.0,444.8971211470761,0.478687708000507 +10,1384.5611750681394,0.1668266591642937,0.0,443.29179873136127,0.4769604590001108 +11,1382.8663723350817,0.1666224513019111,0.0,442.7491775994384,0.4763766249998298 +12,1379.409399632061,0.1662059184557993,0.0,441.64236652075,0.4751857500014012 +13,1383.6672056307757,0.1667189442165428,0.0,443.0055785721975,0.4766525000013644 +14,1383.0517940967477,0.1666447928882506,0.0,442.8085436626597,0.4764405000023544 +15,1377.7771308300266,0.1660092453466548,0.0,441.11976673513107,0.47462345799795 +16,1380.578780242162,0.1663468178714319,0.0,442.01676444796885,0.4755885839986149 +17,1385.9641130782545,0.1669957000600349,0.0,443.74097419952494,0.4774437500018393 +18,1380.3749716269465,0.1663222608413797,0.0,441.9515115077141,0.4755183750021388 +19,1390.5397849329893,0.1675470256805298,0.0,445.20595663830386,0.4790199999988545 +20,1385.4222432134395,0.1669304098143769,0.0,443.5674849587623,0.4772570839995751 +21,1384.7365557380076,0.1668477908930775,0.0,443.3479499610856,0.4770208749978337 +22,1380.1324588315383,0.1662930403199675,0.0,441.8738667382177,0.4754348329988715 +23,1382.8147242197429,0.1666162281875488,0.0,442.7326415399548,0.4763588330024504 +24,1384.673661847819,0.1668402127681301,0.0,443.3278133674753,0.4769992090004962 +25,1381.048562774172,0.1664034222683774,0.0,442.16717365153266,0.4757504170011088 +26,1385.5867380781835,0.1669502299055574,0.0,443.6201509050472,0.4773137500014854 +27,1384.5037182668846,0.1668197361576601,0.0,443.27340291813454,0.4769406659979722 +28,1386.1163925964613,0.1670140483163193,0.0,443.7897291861239,0.4774962080009572 +29,1382.6472045469038,0.1665960436353114,0.0,442.6790071477496,0.4763011249997362 +0,1602.3360341039274,0.1664799303989618,0.0,450.9941314507875,0.4773925419976876 +1,1591.3055369501826,0.1653338809066352,0.0,447.8894833760748,0.4741061670029012 +2,1600.5892893720104,0.1662984466557238,0.0,450.5024919903558,0.4768721250002272 +3,1591.7771157613092,0.1653828771258944,0.0,448.02221413404817,0.4742466669995338 +4,1598.9740060477102,0.1661306215243652,0.0,450.0478537095053,0.4763908750028349 +5,1598.2049633525544,0.1660507193243033,0.0,449.8313986495376,0.476161750000756 +6,1599.923316021195,0.1662292531814889,0.0,450.3150468686536,0.476673707998998 +7,1604.9139121905343,0.1667477674539247,0.0,451.719702032682,0.4781605829994078 +8,1599.6205389249687,0.166197795167169,0.0,450.229827107861,0.4765834999998333 +9,1592.539445588393,0.1654620818706251,0.0,448.2367797875235,0.4744737920009356 +10,1607.448160004806,0.1670110713993855,0.0,452.43299242093553,0.4789156250008091 +11,1594.297518282129,0.1656447425694174,0.0,448.7316076205518,0.4749975839986291 +12,1602.677410191569,0.1665153987814363,0.0,451.0902152989111,0.4774942500007455 +13,1605.1480233851848,0.1667720912003558,0.0,451.785595061764,0.4782303329993738 +14,1601.3632290921896,0.1663788576481786,0.0,450.7203253689159,0.4771027089991548 +15,1595.800220143318,0.1658008706823329,0.0,449.15455867844,0.475445291998767 +16,1611.70677521292,0.1674535341215318,0.0,453.63162393522987,0.4801844169996911 +17,1598.0024596834728,0.1660296795448708,0.0,449.7744018870551,0.4761014169998816 +18,1595.2047318950506,0.1657390004878076,0.0,448.9869523214708,0.4752678750010091 +19,1594.6907781133762,0.1656856015827213,0.0,448.842294687592,0.475114750002831 +20,1594.7083993859603,0.1656874324023315,0.0,448.8472543779161,0.4751200000027893 +21,1594.7913334840082,0.1656960491110473,0.0,448.8705970418272,0.4751447090020519 +22,1611.819356688242,0.1674652311412436,0.0,453.66331116162905,0.4802179590005835 +23,1625.5004557649995,0.1688866735688013,0.0,457.513998697883,0.4842940419985098 +24,1613.805663465247,0.1676716049648041,0.0,454.2223778496544,0.4808097499990253 +25,1599.277904189827,0.1661621960134057,0.0,450.133389000316,0.4764814170011959 +26,1601.7627822219915,0.1664203705242697,0.0,450.83278375024673,0.477221749999444 +27,1637.621652666843,0.1701460448702147,0.0,460.9256355534117,0.4879053750009916 +28,1623.030399742511,0.1686300390389941,0.0,456.81877575663515,0.4835581250008545 +29,1635.1585880735686,0.1698901367377575,0.0,460.2323804225851,0.4871715409972239 +0,1433.797396939961,2.3842536047779843,0.0,452.6439239404204,0.4755272089969367 +1,1447.9859265444009,2.4078476306341368,0.0,457.12318421025026,0.4802329169979202 +2,1458.623711582496,2.4255371433770545,0.0,460.4814890669578,0.4837610000031418 +3,1440.62224085096,2.3956025992255787,0.0,454.79849901131166,0.4777907079987926 +4,1456.870261103736,2.422621340465356,0.0,459.9279319836243,0.4831794579986308 +5,1446.022167683568,2.4045821071000253,0.0,456.5032336381979,0.4795816250007192 +6,1436.2791326006184,2.3883804690111443,0.0,453.4273976515741,0.4763502909991075 +7,1437.8970268637104,2.391070856256343,0.0,453.9381601967772,0.4768868749997637 +8,1434.0756703878897,2.384716344125088,0.0,452.7317737200809,0.4756194999972649 +9,1440.9024018026907,2.396068477292109,0.0,454.8869446681366,0.4778836250006861 +10,1438.3916390552276,2.3918933440800125,0.0,454.0943072254124,0.477050915997097 +11,1439.3127778105872,2.393425100521093,0.0,454.3851069308725,0.4773564169991005 +12,1439.5415541549198,2.393805531413789,0.0,454.45733067909833,0.4774322919984115 +13,1456.9751650448115,2.422795784637314,0.0,459.9610497251034,0.4832142499981273 +14,1457.2685173856205,2.4232835985903427,0.0,460.0536598490472,0.4833115420005924 +15,1442.6366305308566,2.3989523164631548,0.0,455.4344335240953,0.4784587920003105 +16,1448.2753802663674,2.4083289615958807,0.0,457.21456355630687,0.4803289160008717 +17,1451.214171110344,2.4132158603155984,0.0,458.1423277035266,0.4813035830011358 +18,1436.3550154988843,2.3885066542546927,0.0,453.4513535695472,0.4763754580017121 +19,1439.5605226171017,2.393837073962569,0.0,454.463318944366,0.4774385829987295 +20,1434.5232971346488,2.385460700117666,0.0,452.8730876376165,0.4757679579997784 +21,1437.706317098976,2.3907537260641667,0.0,453.8779539107096,0.4768236250019981 +22,1430.4286905066376,2.37865180184946,0.0,451.58043721500366,0.4744099580020702 +23,1444.0223533581782,2.401256627137254,0.0,455.8719005047101,0.478918374999921 +24,1449.3431318563169,2.4101045196927067,0.0,457.55164832888346,0.480683041998418 +25,1444.3381928638455,2.401781834869899,0.0,455.9716097338424,0.4790231250008219 +26,1444.1479836100018,2.401465536974459,0.0,455.9115614569984,0.4789600410003913 +27,1442.0828425163152,2.3980314254971287,0.0,455.2596049322258,0.4782751249986177 +28,1442.3290827517062,2.39844089699577,0.0,455.3373419588219,0.4783567919985216 +29,1446.4707984686218,2.405328132702221,0.0,456.6448645264814,0.4797304159983468 +0,1437.887930994931,1.712970905880436,0.0,453.8701147286732,0.481649749999633 +1,1435.1181570688182,1.7096712452817036,0.0,452.9958340684639,0.4807219579997763 +2,1441.0349771815336,1.7167200148623736,0.0,454.863481585005,0.4827039170013449 +3,1409.294103322443,1.678906780412161,0.0,444.8444573276378,0.4720716669980902 +4,1430.7294605048198,1.7044429452405003,0.0,451.6105395889192,0.4792518750000454 +5,1427.6852831409622,1.700816384961202,0.0,450.6496433329554,0.4782321659986337 +6,1420.179271394565,1.6918743947938053,0.0,448.2803666048763,0.475717875000555 +7,1430.2500627862896,1.7038718337327907,0.0,451.4592174359059,0.4790912910029874 +8,1420.8134082211484,1.6926298486166451,0.0,448.4805322422887,0.4759302920028858 +9,1422.9215563138073,1.6951413074516275,0.0,449.1459703449773,0.4766364589995646 +10,1430.3885108731786,1.7040367683843052,0.0,451.5029186505317,0.4791376670000318 +11,1420.2347479533394,1.6919404845975312,0.0,448.2978778111066,0.4757364580000285 +12,1432.068880750474,1.7060386105646854,0.0,452.0333283247176,0.4797005410000565 +13,1432.8993036323643,1.70702790201473,0.0,452.2954517632362,0.4799787080009992 +14,1427.3814024678184,1.7004543687423204,0.0,450.5537232316662,0.4781303749987273 +15,1421.5099863905457,1.6934596894631586,0.0,448.7004075238365,0.4761636250004812 +16,1424.2936899173185,1.6967759445406032,0.0,449.57908507014065,0.4770960830028343 +17,1428.015413908762,1.701209673191938,0.0,450.75384929103245,0.4783427500005928 +18,1419.1495771170498,1.6906477092494636,0.0,447.9553430409412,0.475372958000662 +19,1423.7101814554428,1.6960808048172755,0.0,449.3949003038402,0.4769006249989616 +20,1426.2162484195374,1.699066308558664,0.0,450.18594171672993,0.4777400829989346 +21,1420.0052499951414,1.6916670812836303,0.0,448.2254366546215,0.4756595830003789 +22,1429.3195086264966,1.702763254845861,0.0,451.1654875045515,0.4787795829979586 +23,1427.1383451034108,1.7001648119662218,0.0,450.47700204116774,0.478048958000727 +24,1429.1426302590603,1.702552537799862,0.0,451.1096557507752,0.4787203339983534 +25,1424.6396161044709,1.6971880500193417,0.0,449.6882768610071,0.4772119580011349 +26,1429.5686590813752,1.703060070384259,0.0,451.2441319824019,0.4788630410002952 +27,1423.870019507121,1.696271221557187,0.0,449.4453532725935,0.4769541659989045 +28,1427.31099623165,1.7003704930580272,0.0,450.531499464571,0.478106791000755 +29,1437.222821276125,1.712178553727689,0.0,453.66017248082863,0.4814269579983374 +0,1381.5516209493485,0.0999506803686798,0.0,439.3165571138039,0.4754871660006756 +1,1381.107557064519,0.0999185538185438,0.0,439.17535021710626,0.4753343330012285 +2,1376.128171163972,0.0995583117537298,0.0,437.59196626156063,0.4736205830013205 +3,1380.7211189424895,0.0998905963013352,0.0,439.0524676098022,0.475201332999859 +4,1380.2241479000502,0.0998546420937167,0.0,438.89443688258285,0.4750302909997117 +5,1377.0408769767776,0.099624342993955,0.0,437.8821955727636,0.4739347079994331 +6,1377.0907565492023,0.0996279516156849,0.0,437.8980566681405,0.4739518749993294 +7,1379.9166477647204,0.0998323954781913,0.0,438.7966555918104,0.474924459002068 +8,1388.2125966734,0.1004325798832855,0.0,441.4346661136675,0.4777796669986855 +9,1385.2603140533952,0.100218992021612,0.0,440.4958762656587,0.4767635829994106 +10,1378.254188068791,0.0997121220297193,0.0,438.2680136946266,0.4743522919998213 +11,1384.9526889767828,0.100196736366999,0.0,440.398055245083,0.4766577080008574 +12,1382.3441125519096,0.1000080145092658,0.0,439.56855977306,0.475759917000687 +13,1382.6810342874294,0.1000323896800416,0.0,439.67569677367646,0.475875874999474 +14,1381.2961766373749,0.0999321998194256,0.0,439.235328939649,0.475399250000919 +15,1385.2699982500696,0.1002196926411413,0.0,440.49895572203,0.4767669159991783 +16,1373.3594263151476,0.0993580022414315,0.0,436.71153918517217,0.4726676670034067 +17,1390.0861910483209,0.1005681282259378,0.0,442.0304462624053,0.4784245000009832 +18,1380.847269195503,0.0998997228539925,0.0,439.0925818509153,0.4752447499995469 +19,1378.9612042113365,0.0997632723040974,0.0,438.4928362006096,0.4745956250008021 +20,1377.5675078746096,0.0996624429937981,0.0,438.0496577720742,0.4741159580007661 +21,1383.7144424588173,0.1001071533358201,0.0,440.00430796204125,0.4762315420011873 +22,1385.6733873524722,0.1002488765055928,0.0,440.6272285342489,0.476905750001606 +23,1380.1145854309248,0.0998467156122404,0.0,438.85959735433414,0.4749925830001302 +24,1386.322655687205,0.1002958489174913,0.0,440.8336879420138,0.4771292080004059 +25,1383.0889008435486,0.1000618974734281,0.0,439.8053933615413,0.4760162500024307 +26,1382.3496824807823,0.1000084174751572,0.0,439.5703309424747,0.4757618339972396 +27,1398.4333502809254,0.1011720175282218,0.0,444.6847410423778,0.481297333000839 +28,1378.9823914833828,0.0997648051330009,0.0,438.4995734945833,0.4746029170019028 +29,1385.4469985267924,0.1002324980244622,0.0,440.5552396501865,0.4768278339979588 +0,1398.8862502594493,0.1670631105953912,0.0,440.94637410547574,0.4769608329988841 +1,1396.9275519023229,0.1668291914756637,0.0,440.32896798086693,0.4762929999997141 +2,1395.770639568638,0.1666910262938159,0.0,439.9642947998977,0.4758985420012322 +3,1393.1890601509265,0.166382719104656,0.0,439.150548804829,0.4750183329997526 +4,1397.991833947257,0.1669562942111038,0.0,440.6644429407875,0.4766558750015974 +5,1392.2824223679588,0.1662744431614349,0.0,438.8647652802912,0.4747092079996946 +6,1389.60246999989,0.1659543877039064,0.0,438.0200109056906,0.4737954579977668 +7,1396.1068221654489,0.1667311751696382,0.0,440.0702637427432,0.4760131659968465 +8,1391.825623572621,0.16621988959952,0.0,438.7207766089732,0.4745534590001625 +9,1396.1552182260154,0.1667369549079245,0.0,440.08551878397606,0.4760296669992385 +10,1395.4709922998525,0.1666552406787986,0.0,439.8698422476211,0.4757963750016643 +11,1398.5840366906104,0.1670270184979351,0.0,440.8511126234501,0.4768577909999294 +12,1403.2547089972113,0.1675848172781918,0.0,442.3233667240595,0.4784502920010709 +13,1396.9105644487831,0.166827162735422,0.0,440.323613323873,0.4762872079991211 +14,1393.9821706060363,0.1664774369558407,0.0,439.40054710124593,0.4752887499998905 +15,1386.590734411103,0.1655947087695683,0.0,437.07067432639855,0.4727685840007325 +16,1395.3931497605902,0.1666459442712148,0.0,439.8453053094444,0.4757698339999479 +17,1396.9593271266915,0.166832986257278,0.0,440.33898392745954,0.476303834002465 +18,1396.185647230651,0.1667405889161691,0.0,440.0951103853369,0.4760400419982034 +19,1397.077863860132,0.1668471426015874,0.0,440.37634818262984,0.4763442499970551 +20,1394.4525370705426,0.1665336108475102,0.0,439.5488124709186,0.475449124998704 +21,1393.4784422088298,0.1664172787886438,0.0,439.2417656347464,0.4751169999981357 +22,1389.5461345505648,0.1659476597977601,0.0,438.00225327020814,0.4737762500008102 +23,1395.138839516903,0.1666155730667236,0.0,439.76514355231024,0.4756831250015239 +24,1396.723593957756,0.1668048336348145,0.0,440.26467789572945,0.4762234589979925 +25,1404.0633375129448,0.1676813883861925,0.0,442.57825650651665,0.4787260000011883 +26,1391.7788171546058,0.1662142997055683,0.0,438.70602264287703,0.4745374999984051 +27,1397.919124008101,0.1669476107683977,0.0,440.6415238621089,0.4766310839986545 +28,1400.2760860285289,0.1672290928450245,0.0,441.38446765515783,0.4774347080019652 +29,1394.4760003990327,0.1665364129743035,0.0,439.5562084043766,0.4754571249977743 +0,1392.7279603943014,0.1339966768870043,0.0,442.3565295732231,0.4786749999984749 +1,1389.1204843918358,0.1336495956119625,0.0,441.21072751399134,0.477435125001648 +2,1380.2402990351388,0.1327952181873855,0.0,438.3902140411066,0.4743830410006922 +3,1385.5556798078874,0.1333066198251725,0.0,440.0784786978509,0.4762099159997888 +4,1388.581612791723,0.1335977498777364,0.0,441.03957178387736,0.4772499169994262 +5,1382.2379482431934,0.1329874153451058,0.0,439.0247049080305,0.475069625001197 +6,1384.9009121834042,0.1332436235413978,0.0,439.87051221603974,0.4759848749999946 +7,1390.9897468626043,0.1338294404678393,0.0,441.80444034445446,0.4780775829967751 +8,1383.5002062454437,0.1331088592900006,0.0,439.4256217311145,0.4755034580011852 +9,1380.9355617432616,0.1328621105706084,0.0,438.6110425212212,0.4746219999979075 +10,1384.2770555996944,0.1331836012603434,0.0,439.6723636607087,0.4757704580006248 +11,1383.5134214083396,0.1331101307428348,0.0,439.4298191147835,0.4755079999995359 +12,1386.532682809284,0.1334006189112961,0.0,440.3887931809163,0.4765457080029591 +13,1387.365540957909,0.1334807495810375,0.0,440.65332455440017,0.4768319579998206 +14,1393.2604077165302,0.1340479045307545,0.0,442.52564483215343,0.4788580000022193 +15,1382.1245980610845,0.1329765097352817,0.0,438.9887027635988,0.4750306669993733 +16,1390.2715743685353,0.1337603438959504,0.0,441.57633528650655,0.4778307499982475 +17,1386.3423517986607,0.1333823068477364,0.0,440.3283404810899,0.4764802919999056 +18,1386.152867472149,0.1333640762450654,0.0,440.26815670402226,0.4764151669987768 +19,1387.0355487415052,0.133449000480241,0.0,440.5485128353957,0.476718541001901 +20,1385.5385891202095,0.1333049755016437,0.0,440.0730503748014,0.4762040419991535 +21,1379.320279536285,0.132706701578957,0.0,438.097998587532,0.4740668339982221 +22,1393.496567010398,0.1340706258097797,0.0,442.6006534545353,0.478939167001954 +23,1385.2460573356796,0.1332768305313943,0.0,439.98013679176546,0.4761035000010452 +24,1384.7716816940174,0.1332311900607593,0.0,439.82946618808177,0.4759404590004124 +25,1385.4854869535443,0.1332998664537384,0.0,440.0561841304042,0.4761857909979881 +26,1384.3494335214364,0.1331905648607515,0.0,439.695352246556,0.4757953340013046 +27,1381.87219185281,0.1329522253135596,0.0,438.9085338163886,0.474943916000484 +28,1389.2910566489743,0.1336660066529379,0.0,441.26490446301153,0.4774937500005762 +29,1379.96219569416,0.1327684614017231,0.0,438.3018832024386,0.4742874580006173 +0,2136.203094366269,0.93457425106257,0.0,450.030879538451,0.4746758750006847 +1,2134.504400315829,0.9338310840274872,0.0,449.673018069379,0.4742984160002379 +2,2140.0647600968737,0.9362637034220164,0.0,450.84441118710873,0.4755339580005966 +3,2130.118633912307,0.9319123412063032,0.0,448.74907487444943,0.4733238749977317 +4,2122.400360854071,0.9285356495041326,0.0,447.1230772237221,0.4716088330023922 +5,2134.0311174995923,0.933624026030665,0.0,449.5733122489805,0.4741932500000985 +6,2124.902176672165,0.9296301768225592,0.0,447.6501312178059,0.4721647500009567 +7,2140.343781207982,0.9363857732507852,0.0,450.90319216929765,0.4755959579997579 +8,2123.4230632247763,0.9289830748002958,0.0,447.3385284832996,0.4718360829974699 +9,2124.5554614297384,0.9294784912740844,0.0,447.5770892088742,0.4720877079998899 +10,2127.025585853203,0.930559153823998,0.0,448.0974668217487,0.4726365829992573 +11,2136.577936722176,0.93473824203092,0.0,450.109847046532,0.4747591669984103 +12,2128.1066081569707,0.9310320936922108,0.0,448.3252042590027,0.4728767919987149 +13,2126.8684474597603,0.9304904068510382,0.0,448.0643626990196,0.472601665998809 +14,2134.9276258433156,0.9340162423026646,0.0,449.7621783916723,0.474392459000228 +15,2129.032364221914,0.9314371056423116,0.0,448.5202319776889,0.4730825000006007 +16,2132.6545758265033,0.9330217984584944,0.0,449.2833181648528,0.4738873749993217 +17,2132.775896013687,0.933074875211063,0.0,449.3088765168129,0.4739143330007209 +18,2131.381163955856,0.932464689469914,0.0,449.0150502901017,0.4736044159981247 +19,2144.685295753894,0.9382851561867632,0.0,451.817812888076,0.4765606660002959 +20,2120.201948984071,0.9275738593389788,0.0,446.65994090955184,0.4711203340011707 +21,2132.5525666154294,0.9329771701259671,0.0,449.261828028872,0.4738647080012015 +22,2139.7894877645995,0.9361432736583613,0.0,450.7864199548459,0.4754727910003566 +23,2136.6778802926365,0.9347819666597994,0.0,450.13090201693126,0.4747813750000205 +24,2127.013772451134,0.9305539855413472,0.0,448.0949781090709,0.4726339579974592 +25,2158.107187960308,0.9441571422772864,0.0,454.64538390445193,0.4795430830017722 +26,2129.987750526841,0.9318550806198584,0.0,448.7215018570554,0.4732947920019796 +27,2133.861040626745,0.9335496185614108,0.0,449.53748239512504,0.4741554579995863 +28,2136.9824048320984,0.9349151940641358,0.0,450.19505577024086,0.4748490419988229 +29,2151.2436105592533,0.9411543740825782,0.0,453.1994437769786,0.4780179590015905 +0,1410.780226699509,1.2676073161491852,0.0,446.26449145904735,0.4756259170026169 +1,1429.6826668576923,1.2845914437858772,0.0,452.24379828861754,0.4819986250004149 +2,1406.2565910431504,1.26354276127021,0.0,444.83355421770705,0.4741008329983742 +3,1408.0020516995917,1.2651110840013355,0.0,445.38568636236494,0.4746892920011305 +4,1410.5382358949475,1.2673898837607114,0.0,446.1879438144947,0.4755443329995614 +5,1410.1994772562985,1.2670855040135094,0.0,446.0807861234929,0.4754301249995478 +6,1411.741753318708,1.2684712623217371,0.0,446.5686459826368,0.4759500830004981 +7,1412.5840197517157,1.269228051417885,0.0,446.835075575486,0.4762340420020337 +8,1411.2333039163964,1.2680144128634985,0.0,446.4078109286284,0.4757786660011334 +9,1405.9921108647484,1.2633051218400748,0.0,444.749892630961,0.4740116670000134 +10,1400.648336311806,1.258503659790235,0.0,443.0595252808886,0.4722100840008352 +11,1405.163809098611,1.262560880207775,0.0,444.4878804057793,0.4737324160014395 +12,1404.7366857312145,1.2621771034187588,0.0,444.35277077726727,0.4735884170004283 +13,1413.9320126450082,1.2704392433677836,0.0,447.261478888795,0.4766884999989997 +14,1413.72623564537,1.2702543496293404,0.0,447.1963865616136,0.4766191250018892 +15,1409.9204124898235,1.2668347601109735,0.0,445.9925110727528,0.4753360419999808 +16,1405.9628200869724,1.263278803634374,0.0,444.7406272373857,0.4740017920012178 +17,1414.1821574059145,1.2706640022090403,0.0,447.3406058303301,0.476772833000723 +18,1407.8358224333165,1.26496172449792,0.0,445.3331039561361,0.4746332499998971 +19,1408.264307266331,1.265346724584332,0.0,445.4686442497156,0.4747777080010564 +20,1408.0181163982309,1.2651255183754084,0.0,445.3907680217424,0.4746947080020618 +21,1408.2875411520588,1.2653676005811556,0.0,445.47599369933425,0.4747855409987096 +22,1405.1955736478362,1.2625894211344408,0.0,444.49792831411975,0.4737431249996007 +23,1411.103534636568,1.2678978132079255,0.0,446.3667617130428,0.4757349160026933 +24,1407.3231699892026,1.264501098543216,0.0,445.1709393766091,0.474460416000511 +25,1412.2315426385103,1.2689113454143433,0.0,446.7235783935022,0.4761152089995448 +26,1409.2195337686403,1.2662050100068178,0.0,445.7708058913476,0.4750997499977529 +27,1409.3041908076864,1.2662810756335023,0.0,445.79758499539463,0.4751282910001464 +28,1411.5918379108589,1.2683365610662214,0.0,446.5212240511556,0.4758995410011266 +29,1408.3419226332817,1.2654164631624112,0.0,445.49319589965097,0.4748038749967236 +0,1393.914644610329,0.1001279555078772,0.0,442.7991952410027,0.4769412079986068 +1,1395.233719300143,0.1002227075447856,0.0,443.2182203322239,0.4773925420013256 +2,1395.0142778015193,0.1002069445791724,0.0,443.1485112439603,0.4773174579968327 +3,1395.110604219539,0.100213863917695,0.0,443.1791108653535,0.4773504170007072 +4,1393.8152786855164,0.1001208178348948,0.0,442.76763007185,0.4769072089984547 +5,1393.8315956415768,0.1001219899177456,0.0,442.77281341291064,0.4769127920008031 +6,1387.1687683245957,0.0996433843734744,0.0,440.6562601609618,0.4746330420020967 +7,1391.1876039682206,0.0999320661791174,0.0,441.93290733278377,0.4760081249987706 +8,1392.3965925792977,0.1000189104908029,0.0,442.3169618271607,0.4764217919982911 +9,1388.5243727459326,0.0997407604213628,0.0,441.08688950340695,0.4750968750013271 +10,1392.8408268551927,0.1000508208161473,0.0,442.458079922609,0.4765737909983727 +11,1386.1762985767418,0.0995720930880716,0.0,440.3409863331489,0.4742934589994547 +12,1389.0087958741594,0.0997755576003849,0.0,441.24077422810245,0.4752626250010507 +13,1390.2965722945294,0.0998680614137436,0.0,441.6498569253788,0.4757032500019704 +14,1390.0111294314313,0.0998475574249184,0.0,441.559181452131,0.4756055830002879 +15,1390.948925844576,0.0999149214044087,0.0,441.8570874240971,0.4759264589993108 +16,1396.212671944328,0.1002930278668945,0.0,443.5292002366967,0.4777274999978544 +17,1390.1526335855483,0.0998577219796151,0.0,441.60413250118455,0.4756539999980305 +18,1399.6301828713626,0.100538515195242,0.0,444.61482703175864,0.4788968339998973 +19,1386.9895127650243,0.0996305080522716,0.0,440.5993167764959,0.4745717080004397 +20,1392.3554334243463,0.1000159539381534,0.0,442.30388696582713,0.4764077090003411 +21,1399.1193305515217,0.1005018195492425,0.0,444.4525466532669,0.4787220409998554 +22,1394.742232204257,0.100187402945426,0.0,443.0620916256557,0.4772243749976042 +23,1397.4406575579208,0.1003812367750637,0.0,443.91928943159024,0.4781476670032134 +24,1395.8205537077984,0.100264861151312,0.0,443.4046376314855,0.4775933329983672 +25,1378.0424206880402,0.0989878187449506,0.0,437.7571304297536,0.4715103749986156 +26,1388.8359963638768,0.0997631450314057,0.0,441.1858817105535,0.4752034999983152 +27,1396.3338376479594,0.1003017314659486,0.0,443.5676904529135,0.4777689580005244 +28,1390.4448949140815,0.0998787157538129,0.0,441.6969739686122,0.4757540000027802 +29,1392.3996350206342,0.1000191290360574,0.0,442.31792830712465,0.4764228329986508 +0,1402.7114493316424,2.562546717562373,0.0,447.74679919589823,0.4753916670015314 +1,1403.7458948655035,2.5644364968242135,0.0,448.0769951723762,0.4757422500006214 +2,1410.4888534886547,2.57675488667884,0.0,450.2293538360664,0.4780275000011897 +3,1400.3396215604944,2.5582137384079826,0.0,446.98970956546754,0.4745878329995321 +4,1400.990483417013,2.5594027669247192,0.0,447.19746527539183,0.4748084160019061 +5,1402.588873689239,2.562322789961124,0.0,447.7076729368437,0.4753501250015688 +6,1407.3374420349628,2.5709977232364265,0.0,449.2234203691283,0.4769594579993281 +7,1404.1412811218274,2.5651588091385493,0.0,448.2032028331174,0.4758762499986915 +8,1402.9746703447738,2.563027583490654,0.0,447.8308195880943,0.4754808749967196 +9,1404.286231493952,2.5654236120675296,0.0,448.2494711267084,0.4759253749980416 +10,1413.3630283505736,2.5820055798000943,0.0,451.146793125071,0.4790015840007982 +11,1405.115976126432,2.5669394330051785,0.0,448.5143263850866,0.476206583000021 +12,1411.692840065243,2.5789543923942135,0.0,450.61366747106166,0.4784355420015345 +13,1405.7320469361043,2.5680649034159773,0.0,448.7109767605008,0.4764153750002151 +14,1401.1021180646642,2.5596067069439163,0.0,447.23309915874614,0.4748462499992456 +15,1399.3954185052482,2.556488818830912,0.0,446.6883190720921,0.4742678339971462 +16,1407.7395911650067,2.571732390322558,0.0,449.3517867454507,0.4770957499968062 +17,1399.7539187825046,2.557143745907444,0.0,446.80275269400977,0.4743893330014543 +18,1418.5351380061118,2.5914542605155666,0.0,452.79773533735624,0.480754459000309 +19,1391.8015679961811,2.5426159751288515,0.0,444.26435492705934,0.4716942089980875 +20,1401.2310877475104,2.5598423155130203,0.0,447.2742664014568,0.4748899589976645 +21,1404.1734933091593,2.565217656048904,0.0,448.2134849932722,0.4758871670019289 +22,1410.0801893202429,2.5760083175795083,0.0,450.0989078534377,0.4778889999979583 +23,1402.136811455346,2.561496939003574,0.0,447.5633742513517,0.4751969169992662 +24,1407.9788382191025,2.5721694593672653,0.0,449.4281546276258,0.4771768329992483 +25,1407.0144704711065,2.570407701873714,0.0,449.1203275455708,0.4768499999991036 +26,1407.482147502221,2.5712620787603746,0.0,449.2696104888582,0.4770084999981918 +27,1407.6061984669968,2.5714887015577776,0.0,449.30920767218623,0.4770505419983237 +28,1401.8344944047062,2.560944650387017,0.0,447.4668743676224,0.4750944590014114 +29,1405.6258237574764,2.5678708493517206,0.0,448.6770702230915,0.4763793749989418 +0,1814.5771911273016,0.3633117783472937,0.0,451.62956882917223,0.4768898330003139 +1,1810.3407727008257,0.3624635693430848,0.0,450.5751679270311,0.475776458002656 +2,1807.2315963854237,0.3618410549734194,0.0,449.8013259733215,0.474959334002051 +3,1803.924867023314,0.3611789868448571,0.0,448.978315101507,0.4740902909979922 +4,1814.9485005797917,0.3633861213392375,0.0,451.7219839266121,0.47698741700151 +5,1838.3950575707256,0.3680805539366213,0.0,457.55759041176,0.4831494169993675 +6,1810.9882621843371,0.3625932086645014,0.0,450.7363213889448,0.4759466249997786 +7,1809.528084290628,0.3623008541535659,0.0,450.3728981541691,0.4755628750026517 +8,1816.3105392978791,0.3636588265794807,0.0,452.06098133162,0.4773453749985492 +9,1816.3409794990305,0.3636649212684626,0.0,452.0685575840871,0.4773533750012575 +10,1816.2529883168029,0.3636473038129747,0.0,452.0466574853288,0.4773302499997953 +11,1812.3434823164148,0.3628645486982265,0.0,451.0736217181408,0.476302791001217 +12,1818.7508304733024,0.3641474178231949,0.0,452.6683446649424,0.4779867090001062 +13,1890.5448082241376,0.3785218946207775,0.0,470.5371260949556,0.4968549160003022 +14,1863.8205427908624,0.3731712044175371,0.0,463.8857317459456,0.4898314999991271 +15,1888.8672721415512,0.3781860209966702,0.0,470.1196046462245,0.496414042001561 +16,1882.4233044209063,0.3768958199605018,0.0,468.51576746726386,0.494720499998948 +17,1887.059090550134,0.3778239897351924,0.0,469.6695668762747,0.4959388329989451 +18,1881.9700309632929,0.3768050662649475,0.0,468.40295237335386,0.4946013750013662 +19,1886.6865178361625,0.3777493938150307,0.0,469.57683736606634,0.4958409169994411 +20,1849.6913781590397,0.3703422853976963,0.0,460.36912822982725,0.4861182080021535 +21,1814.6577320581712,0.3633279041252255,0.0,451.64961463712115,0.4769109999979264 +22,1807.6125705862753,0.3619173330260107,0.0,449.896146527061,0.4750594580000324 +23,1807.75034288652,0.3619449175782984,0.0,449.9304366332412,0.4750956659991061 +24,1811.4627790990735,0.3626882156914782,0.0,450.85442376047934,0.4760713329997088 +25,1819.489476926938,0.3642953084491503,0.0,452.85218615760743,0.4781808330008061 +26,1813.531285204246,0.3631023687158118,0.0,451.369253620001,0.4766149580027559 +27,1813.8322017054168,0.3631626177422567,0.0,451.44414863705623,0.476694042001327 +28,1801.3705887684314,0.3606675732881824,0.0,448.3425815584188,0.4734190000017406 +29,1829.2969259130637,0.3662589403903112,0.0,455.2931591724651,0.4807583330002671 +0,1409.9511145646975,0.7683839360010437,0.0,445.2951949112135,0.4760072919998492 +1,1399.6801275675623,0.7627865352585996,0.0,442.0513794983424,0.4725397500005783 +2,1411.62281112157,0.7692949638848476,0.0,445.8231553748319,0.4765716660003818 +3,1397.1401810163013,0.761402335403633,0.0,441.249205591088,0.4716822500013222 +4,1398.952331427642,0.762389906711112,0.0,441.82152463271353,0.472294041999703 +5,1409.6533054558768,0.7682216383633107,0.0,445.2011399019377,0.4759067499981029 +6,1404.2659766378467,0.7652856947841549,0.0,443.49969677295655,0.474087958002201 +7,1398.41447293632,0.762096788871561,0.0,441.6516564725668,0.4721124579991738 +8,1410.6993991187217,0.7687917301613734,0.0,445.531520492215,0.4762599170026078 +9,1411.7263609578883,0.7693513956504462,0.0,445.8558588097738,0.4766066249976575 +10,1410.2225082204634,0.7685318379554227,0.0,445.3809073090361,0.4760989159985911 +11,1403.0320424639924,0.7646132351595069,0.0,443.1099918017855,0.4736713750025956 +12,1402.6921487396116,0.7644280025829558,0.0,443.00264549687904,0.4735566250019474 +13,1406.3250868726211,0.7664078522905479,0.0,444.1500114426397,0.4747831250024319 +14,1412.0734139262734,0.7695405298148111,0.0,445.96546616963553,0.4767237919986655 +15,1414.8466208734503,0.7710518500637228,0.0,446.8413091086679,0.4776600419972965 +16,1411.943208723885,0.7694695716199733,0.0,445.9243443531576,0.4766798340024252 +17,1403.882638711802,0.7650767863323724,0.0,443.3786297836606,0.4739585409988649 +18,1400.9177672466312,0.7634610142799857,0.0,442.442254753823,0.4729575839992321 +19,1405.5357040683705,0.7659776607329285,0.0,443.90070608300886,0.4745166250031616 +20,1402.830378107766,0.764503333723785,0.0,443.046301530623,0.4736032920009165 +21,1411.135188771074,0.7690292233374728,0.0,445.66915295065974,0.4764070419987547 +22,1408.8561473104833,0.7677872094621626,0.0,444.9493789096159,0.4756376250006724 +23,1412.2901343112185,0.7696586363652266,0.0,446.033911483135,0.4767969579988858 +24,1413.507409993883,0.7703220175779382,0.0,446.41835531723206,0.4772079169997596 +25,1409.1432160662337,0.7679436539077664,0.0,445.0400418668095,0.4757345409998379 +26,1409.084840242775,0.7679118407161365,0.0,445.0216054306689,0.4757148329990741 +27,1408.958953679387,0.7678432360588072,0.0,444.98184754034094,0.4756723329992383 +28,1400.946644146439,0.7634767513829991,0.0,442.4513747471302,0.4729673330002697 +29,1403.669866719214,0.7649608315453967,0.0,443.3114314638519,0.4738867079977353 +0,2211.5615982745244,3.9675790009260554,74.29291679234039,491.8806066398077,0.4849021669979265 +1,2235.24566157266,4.010068612009736,75.08853475988231,497.148256173907,0.4900950830015063 +2,2272.6911179348313,4.077246395553525,76.34643875673976,505.4766218887483,0.4983052919997135 +3,2232.8593931664254,4.005787606033444,75.00837292297624,496.61751845799625,0.4895718750012747 +4,2237.6267990104925,4.014340412941726,75.16852423233382,497.6778526944505,0.4906171659968095 +5,2220.3564181584784,3.983357056900498,74.58836089046183,493.8366911292392,0.4868305000018154 +6,2221.642766815345,3.985664788198978,74.63157315902586,494.1227921169683,0.4871125419995223 +7,2233.172002309838,4.006348432136533,75.01887439175657,496.6870468741266,0.4896404169994639 +8,2221.1157981470647,3.98471939747414,74.61387071770326,494.0055873018565,0.4869969999999739 +9,2225.3332486959066,3.992285575259143,74.75554739672745,494.9436041927522,0.4879217089983285 +10,2230.005063894619,4.000666890929066,74.91248753264676,495.982677802931,0.4889460409976891 +11,2236.179115171694,4.0117432435916704,75.11989223625403,497.3558686242774,0.4902997499993944 +12,2216.3236816425288,3.976122259222046,74.45288930393282,492.9397570870532,0.4859462909989815 +13,2263.4092367616013,4.060594543368748,76.0346328245798,503.4122085141405,0.4962701670010574 +14,2229.3085870377163,3.9994173996400897,74.88909080826068,495.82777212038013,0.4887933330028318 +15,2225.1863485822223,3.992022033964728,74.75061258598953,494.9109316607771,0.4878895000001648 +16,2234.092909037793,4.00800055441904,75.04981038149651,496.89186873410046,0.4898423329977959 +17,2227.261152610207,3.99574426756604,74.82031141017409,495.37239557149974,0.488344417000917 +18,2245.682384127912,4.028792269212418,75.43913524100252,499.4695215756095,0.4923834159999387 +19,2226.254725533305,3.9939387203276566,74.78650253813537,495.1485528526212,0.4881237499976123 +20,2227.782798769239,3.996680109619052,74.83783505261674,495.4884165900219,0.4884587919987098 +21,2221.6883752224203,3.9857466104544903,74.63310528076033,494.1329360310955,0.4871225419992697 +22,2218.7059638787073,3.980396113941678,74.53291723355792,493.4696082259195,0.4864686250002705 +23,2217.6434795297237,3.9784899990068143,74.49722523140261,493.23329762686984,0.4862356670018926 +24,2211.7531536041506,3.967922654434931,74.29935170429408,491.92321108357055,0.4849441670012311 +25,2264.416420909333,4.062401448805034,76.06846712887426,503.6362196156041,0.4964909999980591 +26,2199.5304787447685,3.945994968520567,73.88875578554762,489.2047262223373,0.4822642500002985 +27,2251.464964761066,4.039166316903047,75.63338928400955,500.7556441380552,0.4936512920030509 +28,2188.8026240278873,3.926749015284224,73.5283753111971,486.8187091698617,0.4799120839998068 +29,2241.903732067539,4.022013303354881,75.31219910532015,498.6290992834214,0.4915549170000304 +0,2184.4614011298436,2.9779537118357737,75.64002428062865,490.6013298376557,0.4851375830003235 +1,2188.2322792036794,2.983094338422744,75.7705961959377,491.4482195088225,0.4859750409996195 +2,2200.2072028805865,2.9994190802534537,76.18524463843772,494.1376300324218,0.4886344999977154 +3,2211.33785330355,3.0145928717084405,76.57065894139438,496.6374278757894,0.4911064580010134 +4,2192.32904952084,2.9886792356272527,75.91245258493223,492.36830029605864,0.4868848749974859 +5,2222.734356061159,3.030129084740822,76.96527875241688,499.1969326605796,0.4936374579992844 +6,2197.1012348897607,2.995184888290923,76.07769616258945,493.4400704298835,0.4879447090024769 +7,2222.606968283475,3.0299554241280955,76.96086777285363,499.16832303941413,0.4936091669987945 +8,2169.2309815418885,2.9571909350152223,75.11264974938665,487.18077770523,0.481755124998017 +9,2190.7892924135163,2.9865801711206843,75.85913634646538,492.02249108007095,0.4865429170022253 +10,2184.595169328176,2.9781360705181212,75.64465619116028,490.6313724174687,0.4851672910008346 +11,2192.9611254234037,2.989540909255007,75.93433909507718,492.51025623915547,0.4870252500004426 +12,2188.706010784058,2.983740150116864,75.78699981296833,491.554613397586,0.4860802499970305 +13,2200.856164156168,3.000303772763221,76.20771582818583,494.2833782084476,0.4887786250001227 +14,2205.5799402526673,3.0067434317808517,76.37128316723364,495.3442762557188,0.4898277079992112 +15,2191.651756865896,2.9877559205369764,75.8890003816392,492.2161892644639,0.4867344580015924 +16,2248.642339641375,3.0654479856969017,77.8623788367013,505.01552537697734,0.4993912499994621 +17,2200.3231491239308,2.999577143264118,76.18925943890859,494.1636700353008,0.4886602499973378 +18,2188.1696187001507,2.9830089168726213,75.76842648856459,491.43414678300394,0.4859611249994486 +19,2216.6974605908854,3.02189932372771,76.75624282268383,497.8411252545639,0.4922967499987862 +20,2194.393568108573,2.9914936780286214,75.98393942192699,492.831964045893,0.4873433749999094 +21,2202.7096155320355,3.0028304790724367,76.2718941684399,494.69963903563354,0.4891902499985008 +22,2197.3335011082845,2.9955015237999,76.08573870451745,493.49223437090126,0.487996292002208 +23,2192.3206068507116,2.9886677262085772,75.91216024569786,492.36640418327306,0.4868830000013986 +24,2192.607095391022,2.9890582799677663,75.92208031118126,492.4307457453564,0.4869466250020196 +25,2206.758917696274,3.0083506656063355,76.41210690640092,495.6090590993904,0.4900895419996232 +26,2199.5449179463344,2.9985162243470835,76.16231209841592,493.9888895377134,0.4884874160015897 +27,2209.7367459737416,3.012410171884408,76.51521836586396,496.2778402058902,0.4907508750002307 +28,2240.945048917429,3.05495470095834,77.59584940434183,503.2868150123256,0.4976817919996392 +29,2185.436628380585,2.979283184450728,75.6737928850485,490.8203530650105,0.4853541670017876 +0,1447.352143928246,0.1670342924325731,0.0,440.8703114465335,0.4786405830018339 +1,1472.891086509974,0.1699816603012087,0.0,448.6495941990104,0.4870863329997519 +2,1440.5056994473553,0.166244166122026,0.0,438.78485206247547,0.4763764579984126 +3,1442.1423750135714,0.166433049626494,0.0,439.2833911841685,0.4769177079979272 +4,1442.9420675541187,0.1665253395907811,0.0,439.5269813159078,0.4771821670001372 +5,1437.1418858973352,0.1658559591341414,0.0,437.7602185386529,0.4752640420010721 +6,1439.2019047977624,0.1660936993419229,0.0,438.3877100430714,0.4759452920006879 +7,1437.048774549541,0.1658452134506105,0.0,437.73185638154155,0.4752332499992917 +8,1470.7569825230353,0.1697353701699983,0.0,447.9995360266935,0.4863805829991179 +9,1443.399553534289,0.1665781365879156,0.0,439.6663337101445,0.4773334580022492 +10,1444.130201781698,0.1666624583706518,0.0,439.8888926234984,0.4775750839980901 +11,1432.716058127496,0.165345188474033,0.0,436.41209045836274,0.4738004169994383 +12,1447.250214943325,0.1670225291336786,0.0,440.8392633954313,0.4786068749999685 +13,1441.7816532347647,0.1663914198770645,0.0,439.17351362352423,0.4767984169993724 +14,1448.9938602988364,0.1672237576801888,0.0,441.3703860210905,0.4791834999996354 +15,1443.4076182206436,0.1665790673076334,0.0,439.6687902517676,0.4773361250008747 +16,1440.843745147536,0.1662831788975806,0.0,438.8878223822743,0.4764882499985106 +17,1442.4172972021684,0.1664647775190038,0.0,439.3671337836588,0.4770086249991436 +18,1441.4691835270078,0.1663553587451826,0.0,439.0783338720352,0.4766950830016867 +19,1441.9596812033676,0.1664119655168341,0.0,439.227741785132,0.4768572909997601 +20,1439.0480618235515,0.1660759448151819,0.0,438.3408487451912,0.4758944159984821 +21,1443.1939296256437,0.1665544061887644,0.0,439.6036996946248,0.4772654580010567 +22,1435.1608628581637,0.1656273355866317,0.0,437.15678954735574,0.4746089159998519 +23,1444.4094057844504,0.16669468041367,0.0,439.9739394838406,0.4776674169988837 +24,1440.9517218854164,0.1662956401483458,0.0,438.9207126075439,0.476523957997415 +25,1433.4711454001133,0.1654323306866836,0.0,436.6420936144327,0.4740501250016677 +26,1457.45165533711,0.1681998448167466,0.0,443.9466704093212,0.4819805000006454 +27,1442.1242317326914,0.1664309557683429,0.0,439.27786465496433,0.476911707999534 +28,1437.1829592656563,0.1658606992805142,0.0,437.7727296809894,0.4752776249988528 +29,1453.654038845132,0.1677615740155951,0.0,442.7898984567618,0.4807246250020398 +0,1501.3957101887006,2.3378942855632214,0.0,454.3196566645214,0.4776932919994578 +1,1523.0747637591148,2.3716517654299514,0.0,460.87969950205184,0.484590832998947 +2,1482.349450842399,2.308236454130176,0.0,448.5562926504683,0.471633417000703 +3,1496.3135919188987,2.329980678789939,0.0,452.781816765422,0.4760763339982077 +4,1496.2265022122058,2.3298450672877697,0.0,452.7554635759362,0.4760486250015674 +5,1542.8219147718562,2.402400988433286,0.0,466.8551520808284,0.4908737080004357 +6,1494.696902023256,2.327463254474083,0.0,452.2926092944422,0.4755619579991617 +7,1495.323932896039,2.3284396339085003,0.0,452.4823477151047,0.4757614579975779 +8,1493.9695587852584,2.326330673910399,0.0,452.0725165314737,0.4753305420017568 +9,1496.9221576047012,2.3309283052081926,0.0,452.9659676535291,0.4762699589991825 +10,1501.434472952105,2.3379546448958344,0.0,454.3313862074005,0.4777056249986344 +11,1500.131823380298,2.335926227624257,0.0,453.93720677675384,0.4772911660002137 +12,1495.4458566170588,2.3286294871022406,0.0,452.5192416150254,0.4758002499984286 +13,1494.2209997323944,2.326722204503884,0.0,452.1486021123762,0.4754105419997358 +14,1494.2731203066917,2.3268033639157455,0.0,452.1643737049412,0.4754271250021702 +15,1502.5875654484817,2.3397501797702924,0.0,454.68030993450407,0.478072499998234 +16,1497.3113662013252,2.33153436032595,0.0,453.08374147877,0.4763937919997261 +17,1496.8571978295734,2.330827153269345,0.0,452.9463109417557,0.4762492909976572 +18,1498.3179157717002,2.3331017062779513,0.0,453.3883215785567,0.4767140420008218 +19,1493.910102421541,2.326238091593804,0.0,452.0545251421503,0.4753116249994491 +20,1493.8637429971986,2.3261659031410757,0.0,452.0404968632579,0.4752968749999127 +21,1488.457762508,2.3177479951853006,0.0,450.4046568357949,0.4735768750033458 +22,1497.8163445009673,2.332320685924895,0.0,453.2365470090906,0.4765544590009085 +23,1495.7168094045244,2.329051400505332,0.0,452.6012314439148,0.4758864580035151 +24,1499.423467072317,2.3348232125075006,0.0,453.72285942485047,0.4770657910012232 +25,1492.0614896850398,2.323359529251074,0.0,451.4951382343194,0.4747234590031439 +26,1505.6238469800112,2.3444781173777813,0.0,455.5990832955709,0.4790385420019447 +27,1491.986711135891,2.3232430880347104,0.0,451.4725103790881,0.4746996670000953 +28,1497.5580926404216,2.331918549735941,0.0,453.1584004579716,0.4764722920008353 +29,1493.9068274120295,2.326232991921566,0.0,452.05353413012944,0.4753105830022832 +0,1381.9094842887912,1.232925439914284,0.0333223091868725,441.0874067066318,0.4757015830000455 +1,1383.3489080251932,1.2342096789788564,0.0333570183507799,441.5468519092735,0.4761970830004429 +2,1377.8662199972532,1.2293180810662478,0.0332248130017904,439.7968497047006,0.4743097499995201 +3,1382.9158230323503,1.233823284999083,0.0333465752702454,441.40861685223945,0.4760479999968083 +4,1386.128503523028,1.2366896055159518,0.033424043392323,442.43406238417987,0.4771539169996686 +5,1376.9074533923183,1.2284626793546278,0.0332016940366115,439.4908239626273,0.4739797089969215 +6,1390.6754208710522,1.2407463184449117,0.0335336842822949,443.8853788447377,0.4787191249997704 +7,1380.57996803777,1.231739259178643,0.0332902502480714,440.66304253372147,0.4752439170006255 +8,1381.657961329704,1.2327010337151032,0.0333162441544622,441.0071238726168,0.4756149999993795 +9,1374.6571707641597,1.226455000320077,0.0331474324410831,438.7725632226178,0.47320508300254 +10,1397.1551284409336,1.2465274469464094,0.0336899309985516,445.9536166278275,0.4809496670022781 +11,1363.870814864897,1.2168315244387933,0.0328873384983457,435.32969970260285,0.4694920420006383 +12,1392.8155520129008,1.2426557214554106,0.0335852897690651,444.5684806731154,0.4794558329995197 +13,1383.647032868345,1.234475662900069,0.0333642071054072,441.6420094542761,0.4762997079997149 +14,1381.6147495768726,1.232662480633317,0.0333152021792788,440.993331247114,0.4756001250025292 +15,1377.525609644332,1.229014192009845,0.0332165997840498,439.6881313414681,0.4741925000016636 +16,1385.5815166921095,1.2362015894868232,0.0334108537699141,442.2594713523535,0.4769656249991385 +17,1383.6618018467698,1.234488839630838,0.0333645632332658,441.6467235187406,0.4763047919987002 +18,1374.955298503026,1.2267209868248166,0.0331546212655355,438.8677216918945,0.4733077089986182 +19,1371.61443522941,1.2237403029463525,0.0330740622417933,437.8013618946179,0.4721576669981004 +20,1375.2341748666422,1.2269697974504057,0.0331613458770379,438.9567353743518,0.4734037079979316 +21,1379.3660443310175,1.2306562089230462,0.0332609786195417,440.2755739868747,0.4748260419983126 +22,1373.8068562416304,1.2256963584418106,0.0331269286065354,438.5011539647093,0.4729123750003055 +23,1383.064340779556,1.2339557910068135,0.0333501565136976,441.456021771816,0.4760991250004736 +24,1410.7851087655586,1.2586879753158997,0.0340185939274567,450.3041278177449,0.4856415829999605 +25,1389.1312954040106,1.2393686655722889,0.0334964504208726,443.3925142210916,0.4781875830012723 +26,1378.0240598523594,1.229458904162844,0.0332286190314282,439.8472301190153,0.4743640839988075 +27,1384.5515748746504,1.2352826859820614,0.0333860185400557,441.93072741471747,0.4766110829987156 +28,1384.6750399681143,1.2353928402695915,0.0333889956829619,441.9701358553671,0.4766535840026336 +29,1383.272651975243,1.2341416441147788,0.0333551795706697,441.5225119769548,0.4761708330006513 +0,1426.5765533003218,2.1648606440016094,0.0,449.2585419528878,0.4772647499994491 +1,1428.190897847305,2.1673104466200086,0.0,449.76693253011223,0.477804833000846 +2,1429.4735844199126,2.1692569511193316,0.0,450.1708771330563,0.4782339589983166 +3,1426.3045481635716,2.1644478703483796,0.0,449.1728818942968,0.4771737500013842 +4,1432.4783415347592,2.1738167347549635,0.0,451.1171374632262,0.4792392079980345 +5,1436.4295181245916,2.1798127303270483,0.0,452.3614449135624,0.4805610839975998 +6,1430.3283291990774,2.1705540447304656,0.0,450.4400539902962,0.4785199159996409 +7,1435.083439404635,2.1777700268788385,0.0,451.93753680874846,0.4801107499988575 +8,1422.6951236106663,2.158970490852691,0.0,448.03619924787614,0.4759662079995905 +9,1432.3594005681034,2.1736362392764157,0.0,451.07968048614725,0.4791994160004833 +10,1428.7660452461284,2.168183245184749,0.0,449.9480583738012,0.477997250000044 +11,1429.723545189978,2.169636271971344,0.0,450.24959496340705,0.4783175839984324 +12,1421.6032441598818,2.157313540270173,0.0,447.6923437646825,0.4756009170014295 +13,1421.8990363025048,2.157762411217118,0.0,447.78549484473393,0.4756998750017374 +14,1413.0257383406006,2.1442969904545337,0.0,444.9911092960185,0.4727312909999455 +15,1432.2689812727922,2.173499026048409,0.0,451.0512055748767,0.4791691659993375 +16,1432.7423778229895,2.174217415508938,0.0,451.2002879661548,0.4793275419979181 +17,1424.457926162271,2.1616455816904634,0.0,448.5913423295794,0.4765559579973342 +18,1421.4663687712782,2.157105828920064,0.0,447.649238866196,0.475555124998209 +19,1425.649069562073,2.1634531674534765,0.0,448.9664580889222,0.4769544579976355 +20,1425.254760753872,2.1628547953447503,0.0,448.8422820677744,0.4768225410007289 +21,1432.5518217856184,2.173928242618196,0.0,451.1402779181053,0.4792637909995392 +22,1427.4534709787931,2.1661913854649817,0.0,449.53470151595593,0.4775581249996321 +23,1431.401903603775,2.1721832170113085,0.0,450.77814483485446,0.4788790829989011 +24,1427.16166326043,2.165748560967664,0.0,449.4428052137357,0.4774604999984149 +25,1426.5338335481072,2.164795815857562,0.0,449.245088616964,0.4772504579996166 +26,1429.8747382100132,2.1698657106355115,0.0,450.2972087809602,0.4783681660010188 +27,1419.4442646186633,2.1540372423181453,0.0,447.01243633276096,0.4748786250020202 +28,1436.3390958497594,2.1796755125775538,0.0,452.3329690639789,0.4805308329996478 +29,1425.462378387526,2.1631698595753086,0.0,448.9076651663283,0.4768919999987702 +0,1386.7005541149863,0.0998895877817119,0.0,439.2811105347087,0.4755048749975685 +1,1389.776976809194,0.1001111948142143,0.0,440.255664394643,0.4765597919977153 +2,1385.844628906725,0.0998279320652189,0.0,439.009969245478,0.4752113750000717 +3,1385.5003865740737,0.0998031349130122,0.0,438.90091963579016,0.4750933329996769 +4,1389.920116092038,0.1001215057093215,0.0,440.3010082743598,0.4766088750002382 +5,1395.4414636433553,0.1005192304590982,0.0,442.0500691489612,0.4785021659990889 +6,1383.25911358358,0.0996416870543074,0.0,438.1909257691591,0.4743247919977875 +7,1394.1143187941695,0.1004236309069682,0.0,441.62965418521094,0.4780470830010017 +8,1391.919461157872,0.1002655265318898,0.0,440.93436384507424,0.4772944579999603 +9,1385.5401236639073,0.0998059973345432,0.0,438.91350761154297,0.4751069589983672 +10,1389.6626327917504,0.1001029581572562,0.0,440.21944232289394,0.4765205830008199 +11,1380.044652178929,0.0994101365413304,0.0,437.17264379659065,0.4732225410007231 +12,1384.9940492190317,0.0997666614079548,0.0,438.7405213183826,0.4749197080018348 +13,1374.9844398051246,0.0990456292029527,0.0,435.56966202485194,0.4714873750017432 +14,1387.592932719944,0.0999538693821843,0.0,439.5637995863861,0.475810875002935 +15,1390.2901178414663,0.1001481584153576,0.0,440.41821799127104,0.4767357500022626 +16,1383.923900638318,0.0996895743250403,0.0,438.401518023419,0.4745527499981108 +17,1383.3757643872302,0.0996500898783031,0.0,438.22787858815104,0.474364792000415 +18,1391.7060864361836,0.1002501562971774,0.0,440.8667706762208,0.4772212909992959 +19,1392.4171721955554,0.1003013786488022,0.0,441.09202950454926,0.4774651250008901 +20,1405.4888679186208,0.1012429851791452,0.0,445.23290115615447,0.4819474590003665 +21,1390.8625582914522,0.1001893935907594,0.0,440.5995565476296,0.476932042001863 +22,1391.9551883778888,0.1002681001064582,0.0,440.94568156816786,0.4773067089990945 +23,1388.182261289353,0.0999963210763814,0.0,439.7504879869002,0.4760129580026841 +24,1375.0170057848686,0.0990479750607392,0.0,435.5799783254442,0.4714985419996083 +25,1388.4195727452525,0.1000134155698071,0.0,439.82566387082176,0.4760943330002192 +26,1387.2079850901775,0.0999261400646032,0.0,439.4418552907703,0.4756788750019041 +27,1395.1198253223383,0.1004960615642666,0.0,441.9481800724568,0.4783918749999429 +28,1386.186074535617,0.0998525277596669,0.0,439.11813291109553,0.4753284580001491 +29,1391.5517690909974,0.1002390402015269,0.0,440.817885792915,0.477168374996836 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/without_smell.csv new file mode 100644 index 000000000..c4265200c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n10/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,393.3071381614348,1.1409934042225924,11.242140894546132,70.33888750736924,0.068244334001065 +1,399.29583877571366,1.158366767779374,11.41331962370854,71.40990427251671,0.0692834579967893 +2,365.33149809585814,1.059835404032353,10.442495892671714,65.33573549564153,0.0633901660003175 +3,394.21772121323113,1.1436350274103977,11.268168652425976,70.50173580741745,0.0684023329995398 +4,392.2723980262558,1.137991598369684,11.21256427805424,70.15383500537817,0.0680647919980401 +5,391.7750782184222,1.1365488617257982,11.198349078768894,70.06489453462568,0.0679784999992989 +6,402.6176149440525,1.168003319803565,11.508268003946892,72.00396936200802,0.0698598329981905 +7,392.2752796374332,1.1379999579925535,11.212646644926632,70.15435035154096,0.0680652919982094 +8,387.9996905257891,1.125596371832494,11.09043484011428,69.38970574590904,0.0673234170026262 +9,391.1295975243385,1.134676306811221,11.179898905345851,69.94945703165645,0.0678664999977627 +10,396.58040528985424,1.1504892303630585,11.335702710930134,70.92427726002855,0.0688122920000751 +11,393.88393855832345,1.1426667159541808,11.258627936607368,70.44204225411656,0.0683444170026632 +12,387.1445726866871,1.1231156545518228,11.06599247867237,69.23677682178295,0.0671750420005992 +13,389.43280747798,1.1297538783490886,11.13139850726308,69.64600379469677,0.0675720830004138 +14,380.6652721451911,1.104319048885367,10.880790628723467,68.07802136658026,0.0660507920001691 +15,398.08316500521494,1.154848772199429,11.378657020200256,71.19303019205891,0.0690730419992178 +16,389.46642434613466,1.1298514016867387,11.132359398972278,69.65201582162955,0.0675779160010279 +17,405.877194445587,1.1774594378114298,11.601438578436149,72.58691122508108,0.0704254160009441 +18,377.5027049577151,1.095144365918286,10.790393017136054,67.5124291460214,0.0655020420017535 +19,383.6916774964104,1.1130987231124532,10.967296242431525,68.61926246010889,0.0665759160001471 +20,388.806541361944,1.1279370653844794,11.113497555994131,69.53400261899613,0.0674634169990895 +21,392.34227131580377,1.1381943024519905,11.214561509453436,70.16633111586388,0.0680769159989722 +22,405.6771703448896,1.176879163116574,11.595721166001535,72.5511389968335,0.0703907089991844 +23,389.3441979604815,1.129496820021875,11.12886572668612,69.63015690487794,0.0675567079997563 +24,393.09269449425614,1.1403712980208796,11.236011318735136,70.30053648975775,0.0682071250012086 +25,372.8068790690931,1.0815216628284272,10.65616932492715,66.67262956730539,0.0646872500001336 +26,397.3260219461461,1.1526522820963283,11.357015132419706,71.05762303746778,0.0689416670029459 +27,390.2598296133434,1.1321530893219862,11.15503779184898,69.79390809467303,0.0677155830017 +28,397.96453489396146,1.154504623412516,11.37526614244685,71.17181443154806,0.0690524580022611 +29,379.8298414684538,1.101895444533057,10.85691099760512,67.92861328650847,0.0659058329983963 +0,389.36997493662864,0.2633102112842797,11.750218178560983,68.85562025083915,0.0667561670015857 +1,396.15512464652227,0.2678986472673016,11.954977134303334,70.05549626039937,0.0679194580006878 +2,396.55660820576475,0.2681701492515738,11.96709291035148,70.12649402928655,0.0679882910008018 +3,396.7437451725483,0.2682967000321544,11.972740238934891,70.15958705840839,0.0680203750016517 +4,395.0884661333744,0.2671773228289937,11.922788031243844,69.86686991978185,0.0677365830015332 +5,396.95907165146485,0.2684423138809568,11.979238256937697,70.1976650798702,0.0680572919991391 +6,391.36719129553967,0.2646608225160031,11.81048920477664,69.20880508793482,0.0670985830001882 +7,394.795616947083,0.2669792844950688,11.913950570592446,69.81508289546049,0.0676863749977201 +8,409.1774050960814,0.2767049231418978,12.34795719520719,72.35833740160628,0.0701520839975273 +9,406.43140758495576,0.2748479510295559,12.265089814693932,71.87273919422887,0.0696812919995863 +10,387.301056942086,0.2619111120487479,11.687783375175377,68.48975580074759,0.0664014579997456 +11,393.822042809408,0.2663209080706056,11.884570522650774,69.64291746046337,0.0675194590003229 +12,389.3096996228947,0.2632694502944342,11.74839921938913,68.84496125199456,0.066745833002642 +13,387.9621023426623,0.2623581419054352,11.707732082530049,68.60665410827131,0.0665147920008166 +14,395.11252609217826,0.2671935932998669,11.923514101006564,69.87112464791521,0.0677407080002012 +15,394.7183334237559,0.2669270217574004,11.911618345923996,69.80141618956021,0.0676731249986914 +16,391.84839064137185,0.264986232048265,11.825010605153825,69.2938996806213,0.0671810830026515 +17,393.6477844776691,0.2662030664261499,11.879311839266938,69.6121018704382,0.0674895829979504 +18,386.8565570909318,0.2616105204334281,11.674369474341727,68.41115109334145,0.0663252500016824 +19,384.0741050620474,0.2597288960690092,11.590401987079536,67.91910632204592,0.0658482079998066 +20,399.8552558649057,0.2704008492746615,12.06663789888177,70.70982208532399,0.0685538329998962 +21,396.65893159557254,0.2682393451195757,11.970180775961063,70.14458874876905,0.0680058340003597 +22,377.2583335767583,0.2551197522074443,11.384718942257203,66.71381520224669,0.0646796670007461 +23,393.0382653515496,0.2657908810492305,11.86091806682191,69.50431539437378,0.0673850830025912 +24,406.135881200921,0.2746481022491435,12.256171562868031,71.82047873815104,0.069630624999263 +25,400.13303910858974,0.2705886993126558,12.075020706827264,70.75894487025948,0.0686014579987386 +26,394.0356603064191,0.2664653662258117,11.891016967826848,69.68069326804977,0.0675560829986352 +27,394.4427374664154,0.2667406508648625,11.903301544844489,69.75268020116154,0.0676258750027045 +28,413.12105234795297,0.2793718020949808,12.46696666848852,73.0557262478375,0.0708282089981366 +29,378.0236330059468,0.255637283520505,11.407813777102536,66.84914964061207,0.0648108750028768 +0,301.527059904683,0.0,0.0,61.86818404371384,0.0670472090023395 +1,297.30471380754034,0.0,0.0,61.001831002242675,0.0661083329978282 +2,298.56993893852353,0.0,0.0,61.26143351116889,0.0663896669975656 +3,298.78261769715283,0.0,0.0,61.30507154679073,0.0664369580008497 +4,299.1821205786761,0.0,0.0,61.38704268997068,0.0665257910004584 +5,298.54745277190455,0.0,0.0,61.256819735227,0.0663846669995109 +6,295.84086380274124,0.0,0.0,60.701474073952625,0.0657828330004122 +7,287.0708821292312,0.0,0.0,58.902024165847415,0.0638327499982551 +8,311.42434548185787,0.0,0.0,63.89893738908661,0.0692479579993232 +9,276.3402948730035,0.0,0.0,56.70029160003628,0.0614467090017569 +10,302.1443009237354,0.0,0.0,61.99483132034014,0.0671844580028846 +11,299.5947418972884,0.0,0.0,61.47170551157061,0.0666175410005962 +12,297.7119024745538,0.0,0.0,61.08537913685875,0.0661988749998272 +13,296.81133114888826,0.0,0.0,60.90059733804315,0.065998624999338 +14,295.8635388716868,0.0,0.0,60.70612660941386,0.0657878750025702 +15,298.366812328879,0.0,0.0,61.21975541277986,0.0663444999991043 +16,293.46651256772094,0.0,0.0,60.21429790064635,0.0652548750003916 +17,288.92730480664824,0.0,0.0,59.28293027724474,0.0642455420020269 +18,292.7585713219687,0.0,0.0,60.06904049224599,0.0650974580021284 +19,294.5672108564634,0.0,0.0,60.440142321793985,0.0654996250013937 +20,292.01034831569035,0.0,0.0,59.915517957078485,0.0649310839980898 +21,299.03390070605775,0.0,0.0,61.356630512831465,0.066492833000666 +22,298.5101616922025,0.0,0.0,61.24916824489997,0.0663763749980717 +23,297.67255166251954,0.0,0.0,61.07730502476422,0.066190124998684 +24,298.30198018653,0.0,0.0,61.20645296849487,0.0663300839987641 +25,297.6101525252016,0.0,0.0,61.06450179140608,0.0661762499985343 +26,300.59875411481113,0.0,0.0,61.67771160825551,0.0668407919984019 +27,296.54093489263096,0.0,0.0,60.84511666127687,0.0659384999999019 +28,313.36415588954424,0.0,0.0,64.29695323333817,0.0696792920025473 +29,295.5545428316649,0.0,0.0,60.64272591868018,0.0657191669997701 +0,297.9231929631541,0.0,0.0,61.89344237000005,0.0660346250006114 +1,297.04079661120556,0.0,0.0,61.71012482693256,0.0658390419994248 +2,296.8676586574506,0.0,0.0,61.674155475717534,0.0658006660014507 +3,297.3197636713215,0.0,0.0,61.7680801391279,0.0659008750008069 +4,298.48470477937286,0.0,0.0,62.01009625951951,0.0661590839990822 +5,295.20155767320017,0.0,0.0,61.3280235608919,0.0654313750019355 +6,292.8541974051702,0.0,0.0,60.84036026074424,0.0649110829981509 +7,297.2970205991458,0.0,0.0,61.76335527359118,0.0658958340027311 +8,297.0774535309563,0.0,0.0,61.71774028958751,0.0658471669994469 +9,282.5560482894283,0.0,0.0,58.70092327205814,0.0626284999998461 +10,296.545267260386,0.0,0.0,61.607178772237894,0.0657292080031766 +11,296.86935500896175,0.0,0.0,61.67450789216907,0.0658010419974743 +12,298.61459885910585,0.0,0.0,62.03708171056209,0.0661878749997413 +13,299.2832616828819,0.0,0.0,62.17599618558742,0.0663360840007953 +14,298.81874969918397,0.0,0.0,62.079493978400286,0.0662331249986891 +15,296.9749991387711,0.0,0.0,61.6964554243335,0.0658244580008613 +16,293.1703898391526,0.0,0.0,60.906049131744425,0.0649811669973132 +17,299.0945225408772,0.0,0.0,62.13678569280086,0.0662942500021017 +18,255.6130228481359,0.0,0.0,53.10351886779507,0.0566565829976752 +19,296.79491327206506,0.0,0.0,61.65904264655758,0.0657845419991645 +20,290.72809607604245,0.0,0.0,60.39866343016743,0.064439833000506 +21,298.5279351289336,0.0,0.0,62.01907734998971,0.0661686659987026 +22,299.2761152689181,0.0,0.0,62.1745115205084,0.0663344999993569 +23,293.40781389038244,0.0,0.0,60.95537389792288,0.0650337919978483 +24,296.0600830227514,0.0,0.0,61.50638191130139,0.0656216669995046 +25,300.42752152616026,0.0,0.0,62.41371578023145,0.0665897090002545 +26,295.4047700896462,0.0,0.0,61.37024087153856,0.065476416999445 +27,298.3017901501356,0.0,0.0,61.972095807286415,0.0661185410026519 +28,297.4477809202034,0.0,0.0,61.794675679197255,0.0659292500022274 +29,298.01661959689955,0.0,0.0,61.91285172149777,0.0660553329980757 +0,285.85022831842826,0.0,0.0,60.64892627672344,0.0659001249987341 +1,290.22725500807564,0.0,0.0,61.57760130550795,0.0669092079988331 +2,287.38755742396035,0.0,0.0,60.97510184122435,0.0662545419982052 +3,284.85600928125524,0.0,0.0,60.43798253376007,0.0656709169998066 +4,288.39804257958247,0.0,0.0,61.18949677128115,0.0664875000002211 +5,289.7942165918819,0.0,0.0,61.485723418499695,0.0668093749991385 +6,287.9792792941568,0.0,0.0,61.10064764292961,0.0663909579998289 +7,293.9906938530544,0.0,0.0,62.37609122240881,0.0677768339992326 +8,287.754807039453,0.0,0.0,61.05302129920833,0.0663392079986806 +9,283.93805875369935,0.0,0.0,60.24322070271687,0.0654592920000141 +10,288.1126656850648,0.0,0.0,61.128948272374934,0.0664217089979501 +11,287.02066784948323,0.0,0.0,60.8972587732476,0.0661699590018543 +12,283.96806213484086,0.0,0.0,60.249586528840595,0.0654662090018973 +13,287.49473153180446,0.0,0.0,60.99784100293028,0.0662792499970237 +14,290.36370810703596,0.0,0.0,61.60655259929476,0.0669406659981177 +15,286.7884182291257,0.0,0.0,60.84798230358821,0.066116416001023 +16,287.14772129945334,0.0,0.0,60.92421574076786,0.0661992499990447 +17,285.94203855646913,0.0,0.0,60.66840568169417,0.0659212909995403 +18,284.4773690606517,0.0,0.0,60.357646327769,0.0655836250007269 +19,287.0410893992396,0.0,0.0,60.90159161941293,0.066174667001178 +20,297.4148868126718,0.0,0.0,63.10260324091163,0.0685662500000034 +21,302.4373178414097,0.0,0.0,64.1682138964768,0.0697241249981743 +22,290.7853645972282,0.0,0.0,61.69601557974508,0.0670378750000963 +23,290.56486996255165,0.0,0.0,61.64923316882459,0.0669870420024381 +24,286.4050846775788,0.0,0.0,60.76665031220264,0.0660280419979244 +25,284.29446863504063,0.0,0.0,60.318840291145825,0.0655414590000873 +26,285.6671457104221,0.0,0.0,60.6100815864084,0.0658579169976292 +27,287.5579915240894,0.0,0.0,61.01126289393568,0.0662938340028631 +28,286.0333109264343,0.0,0.0,60.68777096703847,0.0659423329998389 +29,284.3069393158575,0.0,0.0,60.32148619913034,0.0655443340001511 +0,399.1691512251467,0.2705543683640747,12.479320240792946,70.78378662325105,0.0686401659986586 +1,397.75286598810527,0.269594419037943,12.435042578125124,70.53263988080185,0.0683966249998775 +2,365.9092588508725,0.2480110201480115,11.439508304327031,64.88588314622352,0.0629208749996905 +3,398.012860314751,0.2697706415757017,12.443170842679242,70.57874410224296,0.0684413329981907 +4,406.01920064322974,0.2751972892608521,12.693474967156805,71.99849080287044,0.0698180840008717 +5,396.6985885969828,0.2688798363785362,12.40208245295998,70.34568719253453,0.0682153339985234 +6,389.3137678245606,0.2638744507834012,12.171209042384383,69.03615318620736,0.0669454580020101 +7,395.50570146830165,0.2680713049009924,12.364788938558274,70.13415514472214,0.0680102080004871 +8,392.8497675572388,0.2662711294126841,12.281755844160054,69.66318423259348,0.0675535000009404 +9,419.42536070188373,0.2842839011789435,13.112594941878768,74.37577564594109,0.072123375000956 +10,391.19432449373846,0.2651490803990433,12.230001333405871,69.3696281593997,0.0672688339982414 +11,398.1340122908051,0.2698527576316564,12.446958445760156,70.60022771538212,0.0684621660002449 +12,372.80412745844734,0.2526843192127068,11.655064223686104,66.10853501402443,0.0641065000017988 +13,398.8112664796154,0.2703117963091522,12.468131604759645,70.72032370938194,0.0685786249996454 +14,392.7996098404614,0.2662371328241711,12.280187751514893,69.65428987512377,0.067544875000749 +15,391.7843362495387,0.2655489866979844,12.24844701144453,69.47425364486017,0.0673702909989515 +16,390.4700645317705,0.2646581815008187,12.207358621725266,69.2411967351517,0.0671442919992841 +17,389.32927745455896,0.2638849631141635,12.17169392364079,69.03890347474302,0.0669481250006356 +18,394.8335415578033,0.2676157190936564,12.3437750431949,70.01496250787785,0.0678946250009175 +19,391.70268238960193,0.2654936422195048,12.24589424737466,69.45977414567795,0.0673562499978288 +20,391.0290628243883,0.26503706706728,12.224834718478292,69.34032267147714,0.0672404159995494 +21,399.5914937296824,0.2708406294872032,12.492524035097247,70.85867968958954,0.0687127909986884 +22,398.602883706492,0.2701705557614111,12.461616884495088,70.68337165107918,0.0685427919997891 +23,385.2929159598488,0.261149142394204,12.04550419293266,68.32314437888363,0.0662540419980359 +24,391.10515136197694,0.2650886394048814,12.227213492550156,69.3538152843021,0.067253500001243 +25,394.992982019891,0.2677237868473378,12.348759668333456,70.04323573393475,0.0679220419988269 +26,384.6154175220648,0.2606899381662728,12.024323397919336,68.20300507275113,0.0661375409981701 +27,394.1247912258336,0.2671353325261941,12.321617212770702,69.88928137216553,0.0677727500005858 +28,394.57814719355184,0.2674426143818025,12.33579058836064,69.96967398763908,0.0678507080010604 +29,396.5473885388564,0.2687773539194146,12.397355449533,70.31887521916686,0.0681893340006354 +0,332.80988887778335,0.8949278219901093,0.0,65.1920498018949,0.0660744170018006 +1,323.78901677014574,0.8706706418475323,0.0,63.42500752535485,0.0642834580030466 +2,312.6045918058395,0.840595654871427,0.0,61.23416039717241,0.0620629580007516 +3,316.9006450313792,0.8521477682093141,0.0,62.07568742263235,0.0629158750016358 +4,315.74530727979607,0.8490410579454647,0.0,61.84937552879654,0.0626865000012912 +5,328.9933883204724,0.8846652287033077,0.0,64.44445935246402,0.0653167079981358 +6,318.98759675876937,0.8577595941387945,0.0,62.48448735764911,0.0633302079986606 +7,313.4232987502812,0.8427971628407603,0.0,61.394531785400005,0.0622254999980214 +8,333.9398305948032,0.8979662421620522,0.0,65.4133870251895,0.0662987499999872 +9,302.483792810904,0.813380764617179,0.0,59.25166031480527,0.0600536249985452 +10,314.0573178945204,0.8445020441883887,0.0,61.51872583433878,0.0623513749997073 +11,316.6015793779428,0.8513435788423325,0.0,62.017105320283754,0.0628564999969967 +12,326.342722429976,0.8775375719494648,0.0,63.925236972011014,0.0647904580000613 +13,338.73012911343307,0.9108473841089316,0.0,66.35172867316602,0.0672497919986199 +14,329.77893237028155,0.886777561446615,0.0,64.59833466845727,0.0654726659995503 +15,313.9227874710172,0.8441402910586873,0.0,61.49237351019822,0.0623246659997676 +16,317.65219002046643,0.8541686772708788,0.0,62.22290287504017,0.0630650829989463 +17,317.91746816510727,0.8548820118205387,0.0,62.27486655338848,0.0631177499999466 +18,317.62805825832913,0.8541037868152401,0.0,62.21817585492557,0.0630602919991361 +19,323.126665078359,0.8688895741066639,0.0,63.29526359069313,0.064151957998547 +20,339.0373796916593,0.9116735827886174,0.0,66.4119140692939,0.0673107919974427 +21,329.57053589347026,0.8862171820488393,0.0,64.55751318463467,0.065431292001449 +22,313.0482616575098,0.8417886858098309,0.0,61.32106811245461,0.0621510420023696 +23,311.83625379002353,0.8385295892585181,0.0,61.083655463678205,0.0619104159995913 +24,318.26732585102206,0.8558227812727865,0.0,62.343397989640685,0.0631872090016258 +25,321.19123823821474,0.863685199523589,0.0,62.916144919141445,0.0637677079976128 +26,328.7052376469881,0.8838903897840201,0.0,64.38801531734362,0.0652594999992288 +27,340.3249309104682,0.9151358158726004,0.0,66.66412443318097,0.0675664160007727 +28,336.1327686645467,0.9038630660128466,0.0,65.84294796262813,0.0667341249973105 +29,315.4508604764906,0.8482492886946691,0.0,61.79169818414243,0.0626280420001421 +0,314.6829641824899,0.0,0.0,64.05854106490267,0.0667974999996658 +1,304.64794717621163,0.0,0.0,62.01575952871857,0.0646673750015907 +2,310.02771031968734,0.0,0.0,63.11089278177239,0.0658093330021074 +3,314.78759077177864,0.0,0.0,64.07983941095024,0.0668197090017201 +4,311.8347742078282,0.0,0.0,63.47874833628613,0.0661929170018993 +5,311.64849188371505,0.0,0.0,63.44082771373234,0.0661533750026137 +6,315.306780557249,0.0,0.0,64.18552845032812,0.0669299170003796 +7,314.38931348373785,0.0,0.0,63.99876396386509,0.0667351670017524 +8,312.3494508567321,0.0,0.0,63.58351865753504,0.0663021670006855 +9,311.41392179363396,0.0,0.0,63.39307737622332,0.0661035829980392 +10,314.334543400109,0.0,0.0,63.98761467378393,0.0667235410001012 +11,318.13946192397856,0.0,0.0,64.76216416407206,0.0675312079983996 +12,313.69208088661816,0.0,0.0,63.856831580997095,0.0665871659984986 +13,285.36582773445474,0.0,0.0,58.09058854500483,0.0605743749983958 +14,311.3874224274277,0.0,0.0,63.387683024029094,0.0660979579988634 +15,303.1555450520987,0.0,0.0,61.71195819965332,0.0643505840016587 +16,312.50569585957527,0.0,0.0,63.615324722908845,0.0663353330019163 +17,312.25503301241736,0.0,0.0,63.56429845801451,0.0662821250007255 +18,314.2731072568001,0.0,0.0,63.97510840507234,0.0667104999993171 +19,317.19392672743055,0.0,0.0,64.56968598091483,0.0673305000018444 +20,320.7528887089109,0.0,0.0,65.2941672467862,0.0680859580024844 +21,317.1024579588047,0.0,0.0,64.5510661109565,0.0673110839998116 +22,319.67701426612115,0.0,0.0,65.07515651211497,0.0678575829988403 +23,322.2403866640997,0.0,0.0,65.59697025709202,0.0684017079984187 +24,297.71060994609485,0.0,0.0,60.60355819462029,0.0631947920010134 +25,319.0598781074556,0.0,0.0,64.94952898707491,0.06772658400223 +26,323.27052670543793,0.0,0.0,65.80667105329528,0.0686203749974083 +27,313.1624892222485,0.0,0.0,63.74902507972117,0.0664747500013618 +28,304.77808852402086,0.0,0.0,62.04225179497307,0.0646950000009383 +29,306.854070382832,0.0,0.0,62.46484972460084,0.0651356670023233 +0,294.47160668958014,0.0,0.0,62.234392802682095,0.067439792001096 +1,258.53801295899865,0.0,0.0,54.64009394249207,0.0592102920018078 +2,287.84062620984656,0.0,0.0,60.832984196664334,0.0659211669990327 +3,284.1358833944333,0.0,0.0,60.0500142451661,0.0650727079992066 +4,289.6685259247307,0.0,0.0,61.219297261407206,0.0663397919997805 +5,288.2372427879961,0.0,0.0,60.91680617255566,0.0660119999993185 +6,288.79942156630415,0.0,0.0,61.035618493063815,0.0661407500010682 +7,288.6922648300304,0.0,0.0,61.01297171060596,0.0661162090000289 +8,289.30665307818697,0.0,0.0,61.1428181158298,0.0662569159976556 +9,286.70698999914885,0.0,0.0,60.59339858083863,0.0656615420011803 +10,286.97661747524285,0.0,0.0,60.65038235067053,0.065723291998438 +11,290.6962760407417,0.0,0.0,61.436504635462306,0.0665751669985184 +12,294.88587239836045,0.0,0.0,62.321944791597936,0.0675346669995633 +13,293.9449008440537,0.0,0.0,62.123077423754864,0.0673191659989242 +14,290.6658900109148,0.0,0.0,61.43008277314009,0.0665682079998077 +15,290.4495723431128,0.0,0.0,61.38436563640324,0.066518666997581 +16,287.4991315378724,0.0,0.0,60.76081182733276,0.0658429579998483 +17,288.1284442887526,0.0,0.0,60.89381241565535,0.0659870830022555 +18,289.94870708075484,0.0,0.0,61.27851147331694,0.0664039589973981 +19,291.0404953723931,0.0,0.0,61.509252841434005,0.0666539999983797 +20,291.41564654265915,0.0,0.0,61.588538262372175,0.0667399169979034 +21,287.7964160316246,0.0,0.0,60.823640702979915,0.0659110419983335 +22,288.7233713242801,0.0,0.0,61.01954583774717,0.0661233329992683 +23,288.51996957968584,0.0,0.0,60.97655838570675,0.0660767499975918 +24,262.07373536090887,0.0,0.0,55.387342681599485,0.0600200420012697 +25,291.0746976794727,0.0,0.0,61.51648124568486,0.0666618329996708 +26,294.25819707384346,0.0,0.0,62.18929026120812,0.0673909170000115 +27,289.8793855364252,0.0,0.0,61.26386087841579,0.0663880829997651 +28,291.44038678738406,0.0,0.0,61.593766929833706,0.0667455830007384 +29,294.18505925226117,0.0,0.0,62.17383312437835,0.067374166999798 +0,304.0021500506418,0.0,0.0,61.69661938658387,0.0663851249992149 +1,305.42786409538843,0.0,0.0,61.9859651585075,0.0666964589981944 +2,290.13486062560406,0.0,0.0,58.882281141154934,0.0633569170022383 +3,303.37572867394005,0.0,0.0,61.56948843949174,0.0662483330015675 +4,308.55938487552186,0.0,0.0,62.621500945477706,0.0673802909986989 +5,272.2552769884333,0.0,0.0,55.253655928243255,0.0594525420019635 +6,304.0319159755279,0.0,0.0,61.70266032063018,0.0663916250014153 +7,301.5311990280158,0.0,0.0,61.195144891286894,0.0658455419979873 +8,303.576648579458,0.0,0.0,61.61026472655373,0.0662922079973213 +9,304.6514683093002,0.0,0.0,61.82839720940037,0.0665269170021929 +10,305.5965360870756,0.0,0.0,62.020196796904024,0.0667332919983891 +11,305.52402631491094,0.0,0.0,62.00548108580032,0.0667174579975835 +12,300.96240445270587,0.0,0.0,61.079709186584786,0.0657213339982263 +13,320.16981350821686,0.0,0.0,64.97781387335388,0.0699156670016236 +14,301.8660655871914,0.0,0.0,61.26310537986669,0.0659186670018243 +15,287.22066306535396,0.0,0.0,58.29085066060698,0.0627205419987149 +16,292.31368435492743,0.0,0.0,59.324468995142574,0.0638327079977898 +17,309.2938015925228,0.0,0.0,62.77054932770923,0.0675406660011503 +18,303.66251638073777,0.0,0.0,61.6276914225565,0.0663109589986561 +19,306.26130972564454,0.0,0.0,62.155111257706984,0.0668784590016002 +20,305.7980284517102,0.0,0.0,62.061089263381945,0.0667772920023708 +21,303.91189522869655,0.0,0.0,61.678302353640426,0.0663654160016449 +22,304.868796110589,0.0,0.0,61.87250344560959,0.0665743749996181 +23,307.256178181276,0.0,0.0,62.35701779171205,0.0670957090005686 +24,300.68706516189695,0.0,0.0,61.02382963631062,0.065661207998346 +25,307.1498955536229,0.0,0.0,62.33544794812829,0.0670725000018137 +26,305.11646226256136,0.0,0.0,61.92276678851894,0.0666284580001956 +27,314.2194880610785,0.0,0.0,63.77020739992188,0.0686162909987615 +28,310.6552121120229,0.0,0.0,63.04684482968675,0.067837958002201 +29,300.9196606054273,0.0,0.0,61.07103440952738,0.0657119999996211 +0,277.0817190299852,0.0640133346494132,0.0,58.60420787153782,0.0635513330016692 +1,288.5771340743512,0.0666690849195682,0.0,61.03554724386474,0.0661879159997624 +2,284.2115382937321,0.0656605147958258,0.0,60.112201295578544,0.0651866250009334 +3,297.3390372598521,0.0686933203788499,0.0,62.88873480683714,0.068197542001144 +4,291.41856385470135,0.0673255316748761,0.0,61.636524248349104,0.0668396250002842 +5,291.05396160811534,0.0672412987427781,0.0,61.55940899901342,0.0667560000001685 +6,289.502541450472,0.0668828789304544,0.0,61.23127566083103,0.0664001670011202 +7,289.43169196955876,0.0668665107934755,0.0,61.21629063142683,0.066383916997438 +8,290.80853034409404,0.0671845975150962,0.0,61.507499025070594,0.0666997080006694 +9,287.9576568837414,0.0665259690155345,0.0,60.90452463372189,0.0660458330021356 +10,289.9919433911143,0.0669959439508176,0.0,61.33478668697358,0.0665124160004779 +11,290.60996871813114,0.067138724435285,0.0,61.46550222050342,0.0666541659993527 +12,291.42765003308125,0.067327630826633,0.0,61.63844602178257,0.066841709001892 +13,292.23551268706876,0.0675142688430331,0.0,61.809313125796805,0.0670270000009622 +14,300.5995644999648,0.0694465899272183,0.0,63.57835307836844,0.0689453749982931 +15,266.9962083179432,0.0616833102270863,0.0,56.471070512897555,0.0612381249993632 +16,291.6814349928997,0.0673862619828808,0.0,61.69212284532741,0.0668999170011375 +17,286.80898867365397,0.0662605957430181,0.0,60.66157540273309,0.0657823750007082 +18,288.39256357948426,0.0666264441676064,0.0,60.99650963544365,0.0661455829977057 +19,288.819116611153,0.0667249893984412,0.0,61.086727794272974,0.0662434170008055 +20,289.1462928838217,0.0668005759232578,0.0,61.15592725774257,0.066318457997113 +21,289.21804924415596,0.0668171535737913,0.0,61.171104096806005,0.0663349160022335 +22,286.12120386579073,0.0661016989409242,0.0,60.51610538041618,0.0656246250000549 +23,287.1040101981356,0.0663287536555702,0.0,60.72397397167452,0.0658500409990665 +24,293.57075258583023,0.0678227451971422,0.0,62.09172322798373,0.0673332499973184 +25,290.89918277237905,0.0672055406659071,0.0,61.52667247963799,0.0667204999990644 +26,268.12761977449935,0.0619446967250778,0.0,56.71036985180875,0.0614976249999017 +27,293.55167774327595,0.0678183383951197,0.0,62.08768880073215,0.0673288750003848 +28,292.7548937535296,0.0676342598483376,0.0,61.91916489115313,0.0671461249985441 +29,291.560990905484,0.067358436156979,0.0,61.66664830171436,0.0668722920017899 +0,402.8566838230884,0.0,0.0,64.17794938679597,0.0643441669999447 +1,406.5856091369493,0.0,0.0,64.77199384396874,0.0649397500019404 +2,419.6410268736935,0.0,0.0,66.85181521066646,0.0670249579998198 +3,416.5238481001115,0.0,0.0,66.35522635017634,0.0665270829995279 +4,406.60882479494035,0.0,0.0,64.77569226423421,0.0649434580009256 +5,408.52624583201094,0.0,0.0,65.08115114132792,0.0652497080009197 +6,402.5065893490577,0.0,0.0,64.12217683457787,0.0642882499996631 +7,398.433567589202,0.0,0.0,63.47331535392751,0.0636377080008969 +8,404.26670360838585,0.0,0.0,64.40257561753499,0.064569375001156 +9,399.1061018410703,0.0,0.0,63.58045486758207,0.0637451250004232 +10,407.1626636492206,0.0,0.0,64.8639227526082,0.065031917001761 +11,403.12407719483,0.0,0.0,64.22054706226494,0.0643868750012188 +12,405.14375858076954,0.0,0.0,64.54229674389913,0.0647094579981057 +13,411.2615056472048,0.0,0.0,65.51689758175769,0.0656865830023889 +14,387.70201403694654,0.0,0.0,61.76370216299734,0.0619236669990641 +15,407.9614565575172,0.0,0.0,64.99117617273937,0.065159500001755 +16,401.69709645656513,0.0,0.0,63.99321883047987,0.0641589580009167 +17,395.9197957340157,0.0,0.0,63.0728535287417,0.0632362090000242 +18,418.61084115270194,0.0,0.0,66.68769926145752,0.0668604169986792 +19,431.31721002849616,0.0,0.0,68.71191464957502,0.0688898750013322 +20,431.41112451451176,0.0,0.0,68.72687589850602,0.0689048749991343 +21,433.23750482741,0.0,0.0,69.01783133747224,0.0691965839978365 +22,422.7931668797661,0.0,0.0,67.35397364539821,0.0675284169992664 +23,418.71727759903746,0.0,0.0,66.70465534817552,0.0668774170007964 +24,414.85347853863453,0.0,0.0,66.08912453908962,0.0662602919983328 +25,383.332378978352,0.0,0.0,61.067588063640855,0.0612257499997213 +26,419.92251367752954,0.0,0.0,66.89665807060912,0.0670699170004809 +27,411.78142883652066,0.0,0.0,65.5997250622708,0.0657696250018489 +28,414.074507863208,0.0,0.0,65.96502894234565,0.0661358750003273 +29,411.9209982982526,0.0,0.0,65.62195947517905,0.0657919170007517 +0,312.4100078293278,0.0,0.0,64.2547814776702,0.0672466659998463 +1,295.9081762405739,0.0,0.0,60.860775024151074,0.0636946249978791 +2,308.44623652276385,0.0,0.0,63.439534677798584,0.0663934590011194 +3,312.52770281302037,0.0,0.0,64.27898833810572,0.06727200000023 +4,280.77218532111357,0.0,0.0,57.74768720812555,0.0604365830004098 +5,312.04164307210647,0.0,0.0,64.179018229419,0.067167375000281 +6,301.9526595528672,0.0,0.0,62.10397128753395,0.0649957079986052 +7,311.28555013052846,0.0,0.0,64.02350916914445,0.067004624997935 +8,313.4765936255198,0.0,0.0,64.47415100983623,0.0674762499984353 +9,311.56042418797625,0.0,0.0,64.0800437616753,0.0670637920011358 +10,309.8811870761772,0.0,0.0,63.73466745821582,0.0667023339992738 +11,318.13877646307776,0.0,0.0,65.43304327298002,0.0684797909998451 +12,308.99326684329253,0.0,0.0,63.55204488178166,0.0665112079987011 +13,310.2603949888832,0.0,0.0,63.8126608673733,0.0667839590023504 +14,306.31190811935767,0.0,0.0,63.000557686903434,0.0659340419988439 +15,285.62465270443886,0.0,0.0,58.74571615575587,0.0614810830011265 +16,298.20878469344336,0.0,0.0,61.3339515860414,0.0641898339999897 +17,295.5945893229462,0.0,0.0,60.79627818230397,0.0636271250004938 +18,310.5683652227515,0.0,0.0,63.87600250042894,0.0668502500011527 +19,309.63263576797266,0.0,0.0,63.68354678475968,0.0666488330025458 +20,299.539786989639,0.0,0.0,61.60770485752767,0.0644763339987548 +21,309.8449875242504,0.0,0.0,63.727222132392846,0.0666945419980038 +22,307.9365578666852,0.0,0.0,63.334706759840024,0.0662837499985471 +23,309.15257829195724,0.0,0.0,63.584811189083936,0.0665454999980283 +24,309.6756087808788,0.0,0.0,63.69238523898497,0.0666580830002203 +25,311.4467942171909,0.0,0.0,64.05667297085827,0.0670393330001388 +26,320.30833809941186,0.0,0.0,65.87926684249236,0.0689467920019524 +27,301.0930039690129,0.0,0.0,61.92716202950021,0.0648106660009943 +28,308.6632293820127,0.0,0.0,63.48416458210326,0.0664401670001098 +29,307.7433743808223,0.0,0.0,63.29497383721228,0.0662421669985633 +0,307.3038765802161,0.0341752531784048,0.0,65.54813559618044,0.0683769580027728 +1,306.5168191461492,0.0340877245491713,0.0,65.38025568531074,0.068201832997147 +2,302.24090759958057,0.0336122005782451,0.0,64.46820070907424,0.0672504169997409 +3,303.4871256541917,0.033750792443749,0.0,64.73401990711072,0.0675277080008527 +4,304.6267982623654,0.0338775353939463,0.0,64.97711288558907,0.0677812920002907 +5,302.72534844932665,0.0336660752279055,0.0,64.57153228712284,0.0673582079980406 +6,299.83123330715557,0.0333442207859381,0.0,63.954215467429314,0.0667142499987676 +7,303.47121147155804,0.0337490226280647,0.0,64.73062540062816,0.0675241669996467 +8,268.726454855754,0.0298850594812893,0.0,57.31954408511301,0.05979324999862 +9,308.78510850811796,0.0343399809283939,0.0,65.86408342065951,0.0687065410020295 +10,323.66148900094566,0.0359943826735927,0.0,69.03722596795083,0.0720166249993781 +11,300.6248433571947,0.0334324781313606,0.0,64.12349305594968,0.066890833000798 +12,299.8791735922619,0.0333495522233387,0.0,63.96444116436369,0.0667249170001014 +13,304.57567604979374,0.0338718500945055,0.0,64.9662084812616,0.0677699170009873 +14,297.66087840557225,0.0331028556945698,0.0,63.491277222185005,0.0662313329994503 +15,298.37977587069827,0.0331828042560829,0.0,63.64461856316718,0.0663912920026632 +16,301.49691869899425,0.0335294615990874,0.0,64.3095073470497,0.0670848750014556 +17,299.4083997940281,0.0332971974859906,0.0,63.86402477813011,0.0666201670028385 +18,299.4902312780384,0.0333062979624153,0.0,63.88147949191254,0.0666383749994565 +19,295.95793110997283,0.0329134709864293,0.0,63.128037351971514,0.0658524169994052 +20,295.3365950794061,0.0328443722285816,0.0,62.995505934419576,0.0657141660012712 +21,299.7063333060147,0.033330330661256,0.0,63.927574208289165,0.066686458998447 +22,270.8829494812265,0.0301248831718445,0.0,57.77952592359791,0.0602730830032669 +23,301.37520062531866,0.0335159253364455,0.0,64.28354479530263,0.0670577919991046 +24,296.03002353793846,0.0329214883827778,0.0,63.14341471816793,0.065868457997567 +25,297.14348113691625,0.0330453159627353,0.0,63.3809160165264,0.0661162090000289 +26,303.5991091517296,0.033763246124525,0.0,64.75790606683913,0.0675526250015536 +27,302.87515563749326,0.0336827352799703,0.0,64.60348626698311,0.0673915409970504 +28,305.92283069102797,0.0340216671142157,0.0,65.2535575250658,0.068069666998781 +29,290.278120361013,0.032281819435166,0.0,61.91652967664846,0.0645886249985778 +0,293.67115678659405,0.0,0.0,62.04987345007068,0.0673019999994721 +1,289.9083811121516,0.0,0.0,61.25483536401912,0.0664396670035785 +2,285.0587315110757,0.0,0.0,60.2301513354047,0.0653282499988563 +3,286.6679492796594,0.0,0.0,60.57016347683127,0.0656970420022844 +4,286.0261550443838,0.0,0.0,60.43455856582949,0.0655499589993269 +5,291.23906025742525,0.0,0.0,61.535994989875334,0.0667446250008652 +6,289.3680378595495,0.0,0.0,61.140666063872544,0.066315833999397 +7,295.74672183395626,0.0,0.0,62.48842025846495,0.067777667001792 +8,287.5655527060979,0.0,0.0,60.75981839435294,0.0659027500005322 +9,293.549524682601,0.0,0.0,62.024173763581814,0.0672741249982209 +10,289.02568331421605,0.0,0.0,61.0683298615521,0.0662373749983089 +11,288.31625511165714,0.0,0.0,60.91843454778562,0.066074792001018 +12,290.2920010978938,0.0,0.0,61.33589055455497,0.0665275829996971 +13,292.91100308476126,0.0,0.0,61.889260329199566,0.0671277920009743 +14,287.41810186435026,0.0,0.0,60.72866345843529,0.0658689579977362 +15,292.14320891111277,0.0,0.0,61.72703285057382,0.0669518329996208 +16,292.1922981075429,0.0,0.0,61.737404922722774,0.0669630830016103 +17,288.63587590704464,0.0,0.0,60.985967328746526,0.0661480410017247 +18,295.0554718814619,0.0,0.0,62.34236583301857,0.0676192499995522 +19,264.9125288646573,0.0,0.0,55.97345367946792,0.0607112500001676 +20,293.5444325057386,0.0,0.0,62.02309783588993,0.0672729580001032 +21,287.13229806847863,0.0,0.0,60.66827588221081,0.0658034589978342 +22,287.2797445448048,0.0,0.0,60.69942989575715,0.065837250000186 +23,288.50715313623,0.0,0.0,60.95876945297762,0.0661185409990139 +24,290.43508843893454,0.0,0.0,61.36612352500068,0.0665603749985166 +25,289.8532921121708,0.0,0.0,61.243195591442536,0.066427041998395 +26,291.1197931641799,0.0,0.0,61.51079500727027,0.0667172920002485 +27,284.9561896492568,0.0,0.0,60.20848523234298,0.0653047499981767 +28,295.1683770157897,0.0,0.0,62.36622159527169,0.0676451250001264 +29,292.2999321462241,0.0,0.0,61.76014695347638,0.0669877500004076 +0,306.0668998752621,0.0,0.0,63.04902793670779,0.068127957998513 +1,300.7286555299586,0.0,0.0,61.9493627426042,0.0669397090023267 +2,300.4778195906402,0.0,0.0,61.89769115658147,0.0668838749988935 +3,296.82352376077455,0.0,0.0,61.144915211322136,0.0660704590009118 +4,290.9545902916691,0.0,0.0,59.935929364100126,0.0647640829993179 +5,297.42271046689245,0.0,0.0,61.26834619777878,0.0662038330010545 +6,299.51492213394334,0.0,0.0,61.69933665084365,0.0666695419968164 +7,297.3940705820903,0.0,0.0,61.262446452011666,0.0661974579998059 +8,300.984541044189,0.0,0.0,62.00207452862839,0.06699666699933 +9,297.44798094483,0.0,0.0,61.273551854026195,0.0662094580002303 +10,298.42342154358175,0.0,0.0,61.47449021615016,0.0664265830018848 +11,300.40818538367824,0.0,0.0,61.88334668136418,0.0668683750009222 +12,287.1913505952546,0.0,0.0,59.16071125051626,0.0639264169985835 +13,300.26405153963907,0.0,0.0,61.85365546430296,0.0668362920005165 +14,299.59316404372277,0.0,0.0,61.71545429165196,0.0666869579981721 +15,298.97750323449446,0.0,0.0,61.58862968050848,0.0665499169990653 +16,296.72543384649464,0.0,0.0,61.12470893044608,0.0660486249980749 +17,300.43382874379716,0.0,0.0,61.88862915042303,0.0668740830005845 +18,299.21560732706087,0.0,0.0,61.637678537441985,0.0666029169988178 +19,299.2517362517928,0.0,0.0,61.645121006999055,0.0666109589983534 +20,299.28430709765047,0.0,0.0,61.651830521066856,0.0666182089989888 +21,300.8430263481263,0.0,0.0,61.972922849602824,0.0669651669995801 +22,299.9649209102408,0.0,0.0,61.79203529100965,0.0667697079989011 +23,277.6619440694328,0.0,0.0,57.19767696451,0.0618052499994519 +24,298.1465693619632,0.0,0.0,61.41745934825716,0.066364957998303 +25,294.287490544277,0.0,0.0,60.622498611616194,0.0655059590026212 +26,297.6716730062533,0.0,0.0,61.31963186802196,0.0662592500011669 +27,300.53416490752846,0.0,0.0,61.90929815315653,0.0668964169999526 +28,298.0200327621039,0.0,0.0,61.39139312017827,0.0663367919987649 +29,302.28587426265807,0.0,0.0,62.27014596817204,0.0672863330000836 +0,318.86430310574025,0.0,0.0,62.80197601890976,0.0673529170016991 +1,318.08177249086094,0.0,0.0,62.64785256127891,0.0671876249980414 +2,310.1933592166472,0.0,0.0,61.0941887097623,0.0655213749996619 +3,315.03036618576886,0.0,0.0,62.04686228507105,0.0665430840017506 +4,280.5797515507548,0.0,0.0,55.26163529957376,0.0592661659975419 +5,311.7761737775847,0.0,0.0,61.40593223555111,0.0658557089991518 +6,315.1471407328176,0.0,0.0,62.0698616369331,0.0665677500001038 +7,312.72657075974973,0.0,0.0,61.59311784366412,0.0660564589998102 +8,318.0087848553162,0.0,0.0,62.63347726842702,0.0671722080005565 +9,314.2111452727458,0.0,0.0,61.88551248318745,0.0663700419972883 +10,315.1433912094317,0.0,0.0,62.069123148882,0.0665669579975656 +11,321.5192175326141,0.0,0.0,63.324875166116904,0.0679137080005602 +12,314.53405774919537,0.0,0.0,61.94911176791349,0.0664382499999192 +13,316.86685034021673,0.0,0.0,62.40856735115521,0.0669310000012046 +14,313.09228540351353,0.0,0.0,61.665147236931766,0.0661337079982331 +15,289.9330212891863,0.0,0.0,57.10381021877937,0.0612418339987925 +16,314.89504291338676,0.0,0.0,62.020209665683545,0.0665145000020857 +17,320.05180460179605,0.0,0.0,63.03586058909003,0.0676037500015809 +18,318.55578743227255,0.0,0.0,62.74121225909765,0.067287750000105 +19,308.3140681413278,0.0,0.0,60.7240525988988,0.0651244170003337 +20,318.47412193661944,0.0,0.0,62.7251278167514,0.0672704999997222 +21,314.1099463592385,0.0,0.0,61.86558083302366,0.0663486660014314 +22,313.33807251384695,0.0,0.0,61.71355628133896,0.0661856250007986 +23,319.77228609333065,0.0,0.0,62.98080797111271,0.0675447079993318 +24,319.76577652708306,0.0,0.0,62.97952587832467,0.0675433329997758 +25,314.14230010410677,0.0,0.0,61.8719530706481,0.0663555000028282 +26,316.8561983070633,0.0,0.0,62.40646937805463,0.0669287499986239 +27,316.30781807684326,0.0,0.0,62.29846305143831,0.0668129170007887 +28,298.70140513017805,0.0,0.0,58.83078883113269,0.063093958000536 +29,314.0071803907631,0.0,0.0,61.84534054326751,0.0663269590004347 +0,383.74185203632027,0.0,0.0,62.59426372619671,0.0645047500001965 +1,364.4592504386134,0.0,0.0,59.44897153737439,0.0612634579993027 +2,367.0024684410071,0.0,0.0,59.86380994374133,0.0616909579985076 +3,363.22606038870725,0.0,0.0,59.247819062608514,0.0610561659996164 +4,364.2802852301499,0.0,0.0,59.41977952874429,0.0612333749995741 +5,373.0382773407889,0.0,0.0,60.84834423956817,0.0627055420009128 +6,367.4982204637191,0.0,0.0,59.94467480820102,0.0617742909998924 +7,362.2655390037368,0.0,0.0,59.091143087427675,0.0608947079999779 +8,363.1591395605432,0.0,0.0,59.23690323483354,0.0610449170017091 +9,363.29274327911173,0.0,0.0,59.258696079034664,0.0610673750015848 +10,385.39643100578286,0.0,0.0,62.86415128685964,0.0647828750006738 +11,389.0226196484065,0.0,0.0,63.45563904617717,0.0653924159996677 +12,370.3688919214851,0.0,0.0,60.41292596544427,0.0622568340004363 +13,361.7680498665672,0.0,0.0,59.009994872585665,0.0608110829998622 +14,361.96288119943176,0.0,0.0,59.0417748928434,0.0608438330018543 +15,366.6343711085224,0.0,0.0,59.80376754444557,0.0616290830002981 +16,370.74962503890595,0.0,0.0,60.47502945776513,0.0623208329998306 +17,377.4274313949519,0.0,0.0,61.56428352256089,0.0634433330014871 +18,377.1091573073862,0.0,0.0,61.51236806932433,0.0633898329979274 +19,381.72165648548935,0.0,0.0,62.264738415323826,0.0641651670011924 +20,368.2465631130819,0.0,0.0,60.06674113196323,0.0619000830010918 +21,374.72929420352807,0.0,0.0,61.12417538727869,0.0629897919970972 +22,381.28910715093343,0.0,0.0,62.19418289218214,0.064092458000232 +23,392.46761814592367,0.0,0.0,64.01757187509762,0.0659715000001597 +24,412.7283443458175,0.0,0.0,67.32241139758052,0.0693772089980484 +25,410.7339260421147,0.0,0.0,66.99709075658224,0.0690419590027886 +26,401.0741534363522,0.0,0.0,65.42143162320484,0.0674182080001628 +27,375.99669130166257,0.0,0.0,61.3309075635724,0.063202834000549 +28,391.0668672136462,0.0,0.0,63.78908761463861,0.0657360420009354 +29,388.5424838873128,0.0,0.0,63.37732143683954,0.0653117080000811 +0,290.8292506484409,0.0,0.0,60.364491781569754,0.0643369169993093 +1,298.573843284156,0.0,0.0,61.97195869718392,0.066050166999048 +2,297.01505218375894,0.0,0.0,61.64841616368942,0.0657053329996415 +3,294.3421743552695,0.0,0.0,61.09363389419194,0.0651140419977309 +4,296.3946304128305,0.0,0.0,61.519641479544646,0.0655680839990964 +5,298.5324046973037,0.0,0.0,61.96335770801276,0.06604100000186 +6,295.0897326586194,0.0,0.0,61.24879702499188,0.0652794159977929 +7,296.7668048214944,0.0,0.0,61.59688996463688,0.0656504159996984 +8,294.83998000542607,0.0,0.0,61.196958387896395,0.0652241659990977 +9,297.5592010734923,0.0,0.0,61.761359655821046,0.0658257089999097 +10,296.16597000453845,0.0,0.0,61.47218074680768,0.0655175000028975 +11,296.4579116370621,0.0,0.0,61.532776124466146,0.0655820829997537 +12,291.6238980614277,0.0,0.0,60.52942872351605,0.0645127079988014 +13,293.1612172147117,0.0,0.0,60.84851454169682,0.0648527919984189 +14,300.82349771584455,0.0,0.0,62.43889675843551,0.0665478330010955 +15,298.91720461152806,0.0,0.0,62.04322674184601,0.0661261250024836 +16,296.31683867345276,0.0,0.0,61.50349503347062,0.0655508749987348 +17,294.8957347421232,0.0,0.0,61.2085308357765,0.0652364999987185 +18,296.53155816102924,0.0,0.0,61.54806219002126,0.0655983750002633 +19,296.6355275960803,0.0,0.0,61.569642076135466,0.0656213750007737 +20,295.3240436061412,0.0,0.0,61.29743058311739,0.0653312499998719 +21,296.04222377263164,0.0,0.0,61.44649599060698,0.0654901250018156 +22,295.47999775871773,0.0,0.0,61.3298004122887,0.0653657500006374 +23,303.0627958761884,0.0,0.0,62.903685272985435,0.0670432080005412 +24,296.91447306566766,0.0,0.0,61.627539971443,0.065683083001204 +25,292.660956993429,0.0,0.0,60.744680577441386,0.0647421249996114 +26,294.6706544772291,0.0,0.0,61.1618131972649,0.0651867079977819 +27,297.56861257061263,0.0,0.0,61.763313105273966,0.065827791000629 +28,295.9380689842249,0.0,0.0,61.42487763256778,0.0654670839976461 +29,299.8657403365678,0.0,0.0,62.240104727299766,0.0663359589998435 +0,294.81448863624877,0.0,0.0,61.91171740072288,0.0671278330009954 +1,263.1998512879779,0.0,0.0,55.27257119631946,0.0599293330014916 +2,296.9928397015734,0.0,0.0,62.36917611036704,0.0676238330015621 +3,291.39142074467475,0.0,0.0,61.19286530859214,0.0663484169999719 +4,292.5078607995772,0.0,0.0,61.42732027548915,0.0666026250000868 +5,291.9049011262528,0.0,0.0,61.30069736400479,0.0664653339990763 +6,291.0495909115414,0.0,0.0,61.1210802612358,0.0662705840004491 +7,297.18077517649056,0.0,0.0,62.408642990256375,0.0676666250001289 +8,293.1889644158855,0.0,0.0,61.57035359386013,0.0667577089989208 +9,290.06599953169535,0.0,0.0,60.91452382017178,0.0660466250010358 +10,290.5013403480997,0.0,0.0,61.005946388047946,0.0661457499991229 +11,293.391717947307,0.0,0.0,61.612932299531735,0.0668038749972765 +12,292.4743730444692,0.0,0.0,61.420287770267905,0.066595000000234 +13,294.85419962422475,0.0,0.0,61.92005679909045,0.0671368750008696 +14,288.935650518899,0.0,0.0,60.6771479402815,0.0657892499984882 +15,288.040264791619,0.0,0.0,60.489114888146126,0.0655853749995003 +16,291.310167374162,0.0,0.0,61.17580191480743,0.0663299160005408 +17,291.8930036442997,0.0,0.0,61.29819886556306,0.0664626249999855 +18,285.2853050828121,0.0,0.0,59.91056704359811,0.0649580839999544 +19,291.953940380838,0.0,0.0,61.31099571971134,0.0664765000001352 +20,290.492192146893,0.0,0.0,61.004025244855654,0.0661436669979593 +21,291.2743036344979,0.0,0.0,61.16827044739114,0.0663217500004975 +22,291.1990934314506,0.0,0.0,61.15247613260606,0.0663046250010666 +23,301.8341063464249,0.0,0.0,63.38585318673492,0.0687261659986688 +24,293.4286796545365,0.0,0.0,61.62069434264986,0.0668122909992234 +25,291.57880285799905,0.0,0.0,61.23221598128041,0.0663910830007807 +26,290.63986327224137,0.0,0.0,61.03503651917635,0.066177290998894 +27,292.83779754454514,0.0,0.0,61.49660774710921,0.0666777500009629 +28,291.7103778938751,0.0,0.0,61.25984703997034,0.0664210420000017 +29,292.0681281288885,0.0,0.0,61.33497540816094,0.0665024999980232 +0,286.58077105611767,0.0,0.0,60.48994734420278,0.0664554579998366 +1,284.29575202691694,0.0,0.0,60.00763766149979,0.0659255829996254 +2,286.7606315278459,0.0,0.0,60.52791133747437,0.0664971659971342 +3,285.07881009993866,0.0,0.0,60.17292140133334,0.0661071670001547 +4,285.97901379987127,0.0,0.0,60.3629316180248,0.0663159159994393 +5,285.3219201687037,0.0,0.0,60.22423578367744,0.0661635420001403 +6,287.5501581793354,0.0,0.0,60.69456043050126,0.0666802500018093 +7,286.76045473612015,0.0,0.0,60.52787402121571,0.0664971250007511 +8,287.0916105357109,0.0,0.0,60.59777262887927,0.0665739169999142 +9,291.25142972749757,0.0,0.0,61.47580517427746,0.0675385409995215 +10,270.3184518059936,0.0,0.0,57.057383353571346,0.0626843749996624 +11,287.78823570039054,0.0,0.0,60.74481256939876,0.0667354580000392 +12,288.3114732547224,0.0,0.0,60.85525477385442,0.0668567920001805 +13,287.04471347517006,0.0,0.0,60.58787384637458,0.0665630420007801 +14,284.5945650282986,0.0,0.0,60.070709523065126,0.0659948749998875 +15,284.649724611494,0.0,0.0,60.08235231497584,0.066007666002406 +16,296.0487686832776,0.0,0.0,62.48840200608166,0.0686509999977715 +17,288.70749147383356,0.0,0.0,60.938844196595866,0.0669486250008049 +18,288.5833339033453,0.0,0.0,60.91263767592269,0.0669198339965078 +19,282.8897370651235,0.0,0.0,59.71086348962979,0.0655995409979368 +20,286.2961587022398,0.0,0.0,60.429872879903805,0.0663894589997653 +21,260.0656021616251,0.0,0.0,54.893266295646235,0.0603068330019596 +22,283.4221384206483,0.0,0.0,59.82323994057936,0.0657229999997071 +23,271.9089975438187,0.0,0.0,57.39310730174492,0.0630532079994736 +24,286.22194706122224,0.0,0.0,60.41420868079884,0.0663722499994037 +25,283.2298755598924,0.0,0.0,59.782658116891355,0.0656784160019015 +26,288.2345706895805,0.0,0.0,60.83902258877472,0.066838958999142 +27,286.95810375941403,0.0,0.0,60.56959272749046,0.0665429580003547 +28,286.87814802674137,0.0,0.0,60.55271609602139,0.0665244169977086 +29,283.17741121511045,0.0,0.0,59.771584221592626,0.065666250000504 +0,294.3279990372017,0.0666126511343672,0.0,61.28363904361788,0.0662047499972686 +1,293.0398507223221,0.0663211159267448,0.0,61.01542665260526,0.0659149999992223 +2,295.58817487391934,0.0668978555785717,0.0,61.54602713228603,0.0664882079981907 +3,295.0835897351759,0.066783657289844,0.0,61.44096470665652,0.0663747090002289 +4,294.112381481635,0.0665638523212934,0.0,61.238744135589954,0.0661562500026775 +5,294.789060556393,0.0667169991074783,0.0,61.37963917888006,0.0663084589978098 +6,294.5386151968499,0.0666603180257666,0.0,61.32749258370531,0.0662521250014833 +7,292.0345615545926,0.0660935977265118,0.0,60.806109908390894,0.0656888750017969 +8,295.10748548573775,0.0667890654035844,0.0,61.44594017129767,0.066380083997501 +9,298.56736520414785,0.0675721093593182,0.0,62.166340610572824,0.0671583330004068 +10,296.503069157767,0.0671049155047566,0.0,61.73652226437607,0.0666939999973692 +11,295.3253214883515,0.0668383662981445,0.0,61.491296994292945,0.0664290829990932 +12,294.3600482591372,0.066619904551123,0.0,61.290312187033216,0.0662119589978829 +13,292.5965765500129,0.0662207936064304,0.0,60.92313011791601,0.0658152920004795 +14,296.05627397750055,0.0670037963058731,0.0,61.64349260140331,0.0665934999997261 +15,328.7910592886891,0.0744123705530585,0.0,68.45938090881384,0.0739567080017877 +16,277.83269848101855,0.0628794157476561,0.0,57.849062487843625,0.0624943749971862 +17,299.7971634093831,0.0678504387030402,0.0,62.422403606796976,0.0674349580003763 +18,295.0785838430391,0.0667825243505803,0.0,61.43992240253389,0.0663735829984943 +19,293.1674829950254,0.0663500018094433,0.0,61.042001664687874,0.0659437089998391 +20,292.4674638570015,0.0661915726733057,0.0,60.8962468594413,0.0657862500011106 +21,294.72663371914854,0.0667028705939003,0.0,61.36664094638829,0.0662944169998809 +22,294.5726961110385,0.066668031257449,0.0,61.3345887568531,0.0662597910013573 +23,292.5643406218039,0.0662134979340961,0.0,60.91641809936848,0.0658080410030379 +24,295.7811948568304,0.0669415400830214,0.0,61.58621687637975,0.0665316250015166 +25,298.4484465539857,0.0675451955536914,0.0,62.14157990939614,0.0671315840008901 +26,300.4471681677118,0.067997548527263,0.0,62.55774464508201,0.0675811670007533 +27,268.4016522482285,0.0607449705212693,0.0,55.88537287956778,0.0603730000002542 +28,293.7845093668818,0.0664896479273241,0.0,61.17047609313823,0.0660824999977194 +29,289.10853319946943,0.0654313756250921,0.0,60.196865575084736,0.065030708003178 +0,301.65675373138987,0.7162003197692693,0.0,63.87824756799245,0.0670402079995255 +1,295.49880837433926,0.7015799859650791,0.0,62.574253033933005,0.0656716659977973 +2,296.7227147671686,0.7044858123358442,0.0,62.83342507166839,0.0659436669993738 +3,298.06491667401536,0.7076724986042197,0.0,63.11764713741445,0.0662419580003188 +4,306.23213995233465,0.7270633057093305,0.0,64.84712245683696,0.0680570420008734 +5,296.7917077372228,0.7046496170131915,0.0,62.84803488884323,0.065958999999566 +6,296.63234400981196,0.7042712520300792,0.0,62.81428833582564,0.0659235829989484 +7,297.1625500156067,0.7055300791778114,0.0,62.92656372857336,0.0660414160010987 +8,293.69914165916396,0.6973071763530179,0.0,62.19315910996202,0.0652717080010916 +9,295.7821011618715,0.7022525861389827,0.0,62.63424256372926,0.0657346249972761 +10,293.44228875893833,0.6966973503603963,0.0,62.13876843928677,0.0652146250031364 +11,299.57754690862345,0.7112638196812994,0.0,63.43795877443208,0.0665781249990686 +12,295.66754935725874,0.7019806146413152,0.0,62.60998529634207,0.0657091670000227 +13,298.02273706351764,0.7075723548144568,0.0,63.10871526511798,0.0662325840021367 +14,281.5279953496625,0.6684101641993118,0.0,59.61582083549099,0.0625667919994157 +15,292.1956996767509,0.6937376702331,0.0,61.87479315936173,0.0649375829998462 +16,295.71273023429916,0.7020878841063066,0.0,62.619552711005355,0.0657192079997912 +17,293.5026604048898,0.6968406860941421,0.0,62.15155262163467,0.0652280419999442 +18,294.86623559740127,0.7000781173030443,0.0,62.44030065279056,0.0655310830006783 +19,295.06703650881764,0.7005548633900702,0.0,62.48282186331435,0.0655757090025872 +20,298.03079591205704,0.7075914883157941,0.0,63.11042179121344,0.0662343750009313 +21,291.14484942234543,0.6912427176788303,0.0,61.65226715297377,0.0647040420008124 +22,287.1756051106774,0.6818188476341691,0.0,60.811747696133274,0.0638219169995863 +23,286.5724644679434,0.6803868574139978,0.0,60.6840278064961,0.063687875001051 +24,292.5174238964776,0.6945015151866625,0.0,61.942920854505665,0.0650090830022236 +25,299.1065831778636,0.7101456468892184,0.0,63.33822841064315,0.0664734580022923 +26,285.8258978112092,0.6786143418920738,0.0,60.52593630304068,0.0635219579999102 +27,298.12716468449185,0.7078202892452605,0.0,63.13082865506538,0.0662557920004474 +28,296.9865061319233,0.7051121117886252,0.0,62.88928501809976,0.06600229200194 +29,291.68705144192677,0.6925300260351003,0.0,61.767082798273464,0.0648245409975061 +0,389.4994809486482,1.5516592307667796,10.861614615367458,69.49452512263981,0.0674112920023617 +1,409.1125099836858,1.6297921655563004,11.408545158894103,72.99388315948963,0.0708057499978167 +2,393.5876217310215,1.5679452637191058,10.97561684603374,70.22393149210038,0.0681188330017903 +3,400.0986559213989,1.5938834402700246,11.157184081890172,71.38563067592344,0.0692457080003805 +4,392.83191707008064,1.5649347433712315,10.954543203598622,70.08909861269026,0.0679880419993423 +5,404.8936371581969,1.612985331957557,11.290897323702897,72.24115156958844,0.070075582996651 +6,374.0374279417601,1.4900626473353724,10.430438531347608,66.73578452427573,0.0647352500018314 +7,383.0435799939164,1.5259406899232133,10.681584829462492,68.34266281464605,0.0662939590001769 +8,390.503400801463,1.5556585724418344,10.88961000709284,69.67364457425663,0.0675850420011556 +9,386.0565356160226,1.5379434797383504,10.765604358168453,68.88023457126016,0.0668154160011909 +10,395.3710860862168,1.5750500971395314,11.02535067997672,70.54213732933432,0.0684275000021443 +11,403.127992051656,1.6059514855422812,11.241660398795968,71.92612504396813,0.0697700000018812 +12,398.195304750097,1.586301010616593,11.104107074316149,71.046034624424,0.068916291998903 +13,393.1222593641649,1.5660913875331202,10.96263971273184,70.14090150547273,0.0680382919999829 +14,400.10034307722657,1.5938901614366543,11.157231130056582,71.38593169838633,0.0692459999991115 +15,396.1694089205137,1.5782303966150315,11.047612776305222,70.68457414626897,0.0685656669993477 +16,400.56234267245264,1.595730641261678,11.170114488831745,71.46836169906025,0.0693259590007073 +17,391.1936238724376,1.5584082320736197,10.908857624515338,69.79679422372276,0.0677045000011276 +18,392.05092810973434,1.5618234973010268,10.932764481107188,69.94975450678004,0.0678528750031546 +19,390.2371352451378,1.554597843407482,10.882184903852377,69.62613745473936,0.0675389589996484 +20,399.1241054106431,1.5900010980081565,11.130007686057096,71.21175130440785,0.0690770410001277 +21,392.4096409517567,1.563252510996149,10.942767576973043,70.01375607759348,0.0679149580028024 +22,388.3292021584939,1.5469971606585198,10.828980124609638,69.28572389757838,0.0672087499988265 +23,392.8437098823672,1.5649817227048024,10.954872058933615,70.09120268709806,0.0679900830000406 +24,401.12472845982575,1.597971032175946,11.18579722523162,71.5687026112844,0.0694232919995556 +25,384.0775914598132,1.5300599083413478,10.710419358389434,68.52715121401143,0.0664729170021019 +26,387.2337999468269,1.5426333783269082,10.798433648288356,69.09028215698174,0.0670191670033091 +27,391.85399802819194,1.5610389818041213,10.927272872628848,69.9146182276101,0.0678187920020718 +28,380.8289356660824,1.517118153611279,10.619827075278954,67.94752581599452,0.065910666999116 +29,396.3790967201674,1.5790657353659832,11.053460147561882,70.72198665841265,0.0686019579989078 +0,420.8661640891317,0.3104241498772484,10.623404240243612,71.60450390501863,0.0698542089994589 +1,414.7342996681472,0.3059013847740801,10.468625167824074,70.56125275455447,0.0688364589987031 +2,408.0288084577771,0.3009555217275851,10.299366743566248,69.42040701182964,0.0677235000002838 +3,404.9088989743277,0.2986543264029626,10.220614725790275,68.88959795695004,0.0672056660005182 +4,376.92038266158966,0.2780104445135475,9.514135212241404,64.12774253445829,0.0625602090003667 +5,393.8408701476979,0.2904907253998756,9.941238158129076,67.0065273255713,0.0653686250007012 +6,412.7787063814568,0.3044589704501812,10.41926254429509,70.22853585050846,0.068511875000695 +7,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +8,415.36741054416126,0.3063683572281143,10.484606002917692,70.66896773395172,0.0689415410015499 +9,413.5893054085112,0.3050568553250778,10.43972349334711,70.3664479616513,0.0686464159989554 +10,415.22381858036624,0.3062624460927139,10.480981488506211,70.64453756538603,0.0689177080021181 +11,408.53514892789457,0.3013289903582241,10.312147670037003,69.50655377596371,0.0678075409996381 +12,408.8662726213036,0.3015732218973719,10.320505816043395,69.5628898509938,0.0678625000000465 +13,401.6223100288431,0.2962301909735771,10.137655424429084,68.33043071790512,0.066660167001828 +14,406.60442049183155,0.2999049159503756,10.263412679190637,69.17806727921999,0.0674870840011863 +15,405.5713933830771,0.299142971680683,10.237337253072264,69.00231213434421,0.0673156250013562 +16,409.57821959330414,0.3020983425946351,10.338476613238624,69.68401769182915,0.0679806670013931 +17,419.93782000903747,0.3097394181348416,10.599971198392357,71.4465591164368,0.0697001250009634 +18,402.4366746389332,0.2968308532822815,10.158211423438075,68.46898349044626,0.0667953330012096 +19,401.3386386128404,0.2960209594751322,10.130495057593414,68.28216798559717,0.0666130839999823 +20,402.6899743906373,0.2970176831270067,10.164605155902006,68.51207890796287,0.0668373749977035 +21,419.1686362801034,0.3091720805213023,10.58055564450679,71.31569324024706,0.0695724580000387 +22,387.29202689790424,0.2856604033831452,9.775933804667638,65.8923330470455,0.0642816660001699 +23,410.4920014565538,0.3027723334788546,10.361542079054136,69.8394849224558,0.0681323340031667 +24,407.4549346245413,0.3005322415686667,10.284881155905484,69.32277038850579,0.0676282499989611 +25,408.27633635683975,0.3011380943461365,10.305614784290006,69.46252042917548,0.0677645840005425 +26,417.85495624498935,0.3082031311428376,10.547396043554889,71.09218891694786,0.0693544169989763 +27,406.94080393314306,0.3001530269954341,10.271903590510414,69.23529822694681,0.0675429160000931 +28,390.6549455763897,0.2881408384025166,9.860819803108344,66.46448672484716,0.0648398339981213 +29,401.5595483973625,0.2961838989982185,10.136071210161257,68.31975270225574,0.0666497499987599 +0,277.4237413479984,0.0,0.0,58.43349005665485,0.0632725420000497 +1,292.6972536911697,0.0,0.0,61.650534954464696,0.0667560000001685 +2,291.40709000891684,0.0,0.0,61.37878904572572,0.0664617500005988 +3,289.27526607180926,0.0,0.0,60.929765064482325,0.065975541001535 +4,293.90739872205074,0.0,0.0,61.90542661328777,0.0670319999990169 +5,254.53182670092016,0.0,0.0,53.61178856705561,0.058051541000168 +6,290.4961927970452,0.0,0.0,61.18692766099379,0.0662540000012086 +7,292.38028776435414,0.0,0.0,61.58377273273529,0.066683708999335 +8,289.7393040716505,0.0,0.0,61.02750493244705,0.066081375000067 +9,290.32610603159867,0.0,0.0,61.15110245270702,0.0662152080003579 +10,291.71309885989376,0.0,0.0,61.44324338933713,0.0665315420010301 +11,294.01993782201987,0.0,0.0,61.92913061333867,0.0670576669981528 +12,289.9026298051295,0.0,0.0,61.06190607121357,0.0661186249999445 +13,288.43671886620615,0.0,0.0,60.75314269048304,0.0657842920008988 +14,291.84774065261695,0.0,0.0,61.47160285784574,0.0665622500018798 +15,298.0893749724155,0.0,0.0,62.78627216188963,0.0679857909999555 +16,308.0001822067488,0.0,0.0,64.87377575176583,0.0702461670007323 +17,297.17117303800103,0.0,0.0,62.59287219062579,0.0677763749990845 +18,290.83837006338433,0.0,0.0,61.25900012239558,0.0663320409985317 +19,297.87343862204426,0.0,0.0,62.74078970057979,0.0679365420000976 +20,292.22755518415335,0.0,0.0,61.55160281943542,0.0666488749993732 +21,289.24202214867086,0.0,0.0,60.922762929615594,0.0659679589989536 +22,290.14122568247194,0.0,0.0,61.11216128642516,0.0661730419997184 +23,291.32615497134736,0.0,0.0,61.3617417782854,0.066443290997995 +24,291.4231638854043,0.0,0.0,61.382174670536834,0.0664654159991187 +25,291.91150125700455,0.0,0.0,61.48503269129974,0.066576791999978 +26,294.6469332621997,0.0,0.0,62.06119404684761,0.0672006669992697 +27,298.06946458808636,0.0,0.0,62.782078457201386,0.0679812500020489 +28,274.1955917727861,0.0,0.0,57.75354808345529,0.0625362920000043 +29,288.7392551319019,0.0,0.0,60.81686560686869,0.0658532920024299 +0,297.8349870577906,0.0,0.0,62.26538914028103,0.0661593750010069 +1,297.48685086603774,0.0,0.0,62.192607780147874,0.0660820420016534 +2,295.90878769905953,0.0,0.0,61.86269785871619,0.0657314999989466 +3,268.1761314081655,0.0,0.0,56.064908106395634,0.0595711250025488 +4,300.2289979376498,0.0,0.0,62.76588110904888,0.0666911670014087 +5,297.55137488588906,0.0,0.0,62.20609717319946,0.0660963750015071 +6,295.72984193562934,0.0,0.0,61.82528745336033,0.0656917500018607 +7,296.86091429487476,0.0,0.0,62.06174946640304,0.0659430000014253 +8,297.5283032487058,0.0,0.0,62.201273816207355,0.0660912499988626 +9,297.3067796489023,0.0,0.0,62.15496208741491,0.0660420420026639 +10,294.7674017488792,0.0,0.0,61.624079686119025,0.0654779589967802 +11,294.9677264979095,0.0,0.0,61.665959582688664,0.0655224580004869 +12,291.51804808384634,0.0,0.0,60.94476973530921,0.064756166000734 +13,298.35756724728503,0.0,0.0,62.3746397665332,0.0662754580007458 +14,290.0624738641291,0.0,0.0,60.640467355966294,0.0644328329981362 +15,292.77630024929647,0.0,0.0,61.2078199615177,0.0650356670012115 +16,297.2189949149903,0.0,0.0,62.13660980895493,0.0660225419997004 +17,294.33335357686957,0.0,0.0,61.533337565447475,0.0653815419973398 +18,295.53495085809004,0.0,0.0,61.78454352027568,0.0656484580031246 +19,292.72958977705207,0.0,0.0,61.19805466913229,0.0650252910018025 +20,295.4385362100208,0.0,0.0,61.76438707176652,0.0656270409999706 +21,295.95718184808175,0.0,0.0,61.872815140606896,0.0657422500007669 +22,293.94544866284906,0.0,0.0,61.45224215533628,0.0652953749995504 +23,297.1503427630479,0.0,0.0,62.12225738851488,0.0660072919999947 +24,298.31724030194476,0.0,0.0,62.36620901442696,0.0662665000018023 +25,299.6462019297127,0.0,0.0,62.64404176242917,0.0665617080012452 +26,273.66342822977543,0.0,0.0,57.212082504209,0.0607900420000078 +27,295.93523566460374,0.0,0.0,61.8682270709919,0.065737375000026 +28,296.28280912950396,0.0,0.0,61.9408907874365,0.0658145829984278 +29,296.78419945940794,0.0,0.0,62.04571146116275,0.065925959002925 +0,288.5679380542645,0.0,0.0,60.476507708602085,0.0660595840017777 +1,290.6954782073229,0.0,0.0,60.92238606686448,0.0665466250029567 +2,291.28719908778197,0.0,0.0,61.046395728609,0.0666820830010692 +3,283.328160416027,0.0,0.0,59.378383451046346,0.0648600829990755 +4,288.3902924835214,0.0,0.0,60.43927771069976,0.0660189170012017 +5,287.2024780371553,0.0,0.0,60.190341983444625,0.065747000000556 +6,291.3215994250469,0.0,0.0,61.053605165235275,0.0666899579991877 +7,291.49342205874245,0.0,0.0,61.08961482348515,0.066729292000673 +8,288.8664369502698,0.0,0.0,60.53906549276548,0.0661279170017223 +9,289.13854259571673,0.0,0.0,60.59609192222741,0.0661902080028085 +10,288.4387063150821,0.0,0.0,60.44942401966714,0.0660299999981361 +11,286.7470829842217,0.0,0.0,60.0949027513009,0.0656427499998244 +12,287.64586027491015,0.0,0.0,60.28326363475572,0.0658485000021755 +13,288.1433001809692,0.0,0.0,60.387514399813654,0.065962374999799 +14,287.9949615223732,0.0,0.0,60.3564263860497,0.0659284169996681 +15,293.3581392063777,0.0,0.0,61.480412157775696,0.0671561670023948 +16,289.5042084282185,0.0,0.0,60.672726189662576,0.0662739170002169 +17,289.2799662185982,0.0,0.0,60.62573072020697,0.0662225829983071 +18,261.67377851069205,0.0,0.0,54.840175211235795,0.0599029159966448 +19,289.35241008253786,0.0,0.0,60.6409131133915,0.0662391670011857 +20,292.3219396351502,0.0,0.0,61.26325105602778,0.0669189580003148 +21,288.9226743979949,0.0,0.0,60.5508514328938,0.0661407909974514 +22,289.20971089044735,0.0,0.0,60.611006988516145,0.06620649999968 +23,291.10992044223104,0.0,0.0,61.00924262890388,0.066641499997786 +24,289.47799864820206,0.0,0.0,60.66723328572497,0.0662679170018236 +25,289.12507512691684,0.0,0.0,60.593269482956494,0.0661871250013064 +26,289.32820096574676,0.0,0.0,60.63583949763187,0.0662336249988584 +27,292.50923477110916,0.0,0.0,61.30250335761741,0.0669618339998123 +28,289.02405823299785,0.0,0.0,60.572098908689014,0.0661639999998442 +29,263.541225849374,0.0,0.0,55.231544724199395,0.0603304159994877 +0,313.9495430059727,0.0,0.0,64.80389868724639,0.0682134160015266 +1,308.3794199438781,0.0,0.0,63.65414166853778,0.0670031669978925 +2,305.034770594531,0.0,0.0,62.96375583295359,0.0662764580010843 +3,308.9656537375239,0.0,0.0,63.77514912408851,0.0671305409996421 +4,308.0823679620422,0.0,0.0,63.592825680142255,0.0669386250010575 +5,309.16222020810307,0.0,0.0,63.81572339447207,0.0671732499977224 +6,305.2121586167888,0.0,0.0,63.00037138369676,0.0663150000000314 +7,305.6986801043409,0.0,0.0,63.100796722388495,0.0664207090012496 +8,307.5666990894399,0.0,0.0,63.48638388361557,0.0668265829990559 +9,305.4478414091471,0.0,0.0,63.04901985010978,0.0663662080005451 +10,304.1035409753827,0.0,0.0,62.77153605994154,0.0660741249994316 +11,309.41132839650345,0.0,0.0,63.86714306417025,0.0672273750024032 +12,308.8985360500407,0.0,0.0,63.76129502582119,0.0671159579978848 +13,307.0985920540554,0.0,0.0,63.38975956428898,0.066724874999636 +14,307.12601350332943,0.0,0.0,63.39541976306997,0.066730832997564 +15,282.07808492211666,0.0,0.0,58.22515128438192,0.0612885419977828 +16,307.8050697237094,0.0,0.0,63.53558716094896,0.0668783750006696 +17,307.06369159998235,0.0,0.0,63.38255558664265,0.0667172920002485 +18,306.8525537307586,0.0,0.0,63.338973560833,0.0666714170001796 +19,308.0434357367305,0.0,0.0,63.584789484387315,0.0669301659982011 +20,307.850325708721,0.0,0.0,63.54492867563824,0.0668882079989998 +21,306.5804332662668,0.0,0.0,63.282803811889245,0.0666122920010821 +22,307.0828700483037,0.0,0.0,63.38651430628306,0.0667214589993818 +23,304.66063198848303,0.0,0.0,62.886528008096214,0.066195167000842 +24,309.76916966813064,0.0,0.0,63.94100687454759,0.0673051249978016 +25,310.62733522529624,0.0,0.0,64.11814512832865,0.0674915829986275 +26,284.30241259877437,0.0,0.0,58.6842859084531,0.0617718329995113 +27,301.80959648704635,0.0,0.0,62.298031480852245,0.0655757079985051 +28,305.0623853492818,0.0,0.0,62.96945593288687,0.0662824579994776 +29,302.2746382953192,0.0,0.0,62.3940230912878,0.0656767500004207 +0,290.8686257733098,0.0,0.0,61.83024365562761,0.0671084160021564 +1,288.43744237162144,0.0,0.0,61.31344449346887,0.0665474999987054 +2,286.20184035980265,0.0,0.0,60.83822026899203,0.0660317080000822 +3,288.09936626467214,0.0,0.0,61.24157930687046,0.0664695000014035 +4,285.997408337104,0.0,0.0,60.79476394316497,0.065984542001388 +5,287.0887483871877,0.0,0.0,61.02675122274326,0.066236333001143 +6,290.61850144546,0.0,0.0,61.777074469387486,0.0670507079994422 +7,288.4390677341846,0.0,0.0,61.313789998464614,0.0665478749979229 +8,262.4570511731341,0.0,0.0,55.79076595156614,0.0605533750022004 +9,287.0845961195109,0.0,0.0,61.02586857092235,0.0662353750012698 +10,289.1576572076416,0.0,0.0,61.46654130367703,0.0667136660013056 +11,287.9375491452288,0.0,0.0,61.20718167496282,0.0664321659969573 +12,287.8124003118045,0.0,0.0,61.18057865841791,0.0664032919994497 +13,291.3011551411478,0.0,0.0,61.922186869271,0.0672082079981919 +14,290.86863009377606,0.0,0.0,61.83024457403358,0.0671084169989626 +15,291.96195960819887,0.0,0.0,62.06265475609747,0.0673606670025037 +16,288.20917165594705,0.0,0.0,61.264920752099144,0.0664948340017872 +17,288.4121603590863,0.0,0.0,61.30807026999944,0.0665416670017293 +18,291.91970008694614,0.0,0.0,62.05367160609675,0.067350917001022 +19,289.8069063826763,0.0,0.0,61.604552870166486,0.0668634590001602 +20,290.5999029261817,0.0,0.0,61.77312096297009,0.0670464169998013 +21,288.0397695006966,0.0,0.0,61.22891076131008,0.0664557499985676 +22,286.4039275203915,0.0,0.0,60.881178145062925,0.0660783329985861 +23,286.55978061458836,0.0,0.0,60.91430799797523,0.0661142909993941 +24,288.72260523938814,0.0,0.0,61.374061858262614,0.0666132919977826 +25,289.4366783433925,0.0,0.0,61.52585311416426,0.0667780409967235 +26,279.95357387673477,0.0,0.0,59.51001982095035,0.0645901249990856 +27,286.3918304829023,0.0,0.0,60.87860666533224,0.0660755420030909 +28,286.55219557878115,0.0,0.0,60.912695639093805,0.0661125410006207 +29,287.6597979585023,0.0,0.0,61.14813981884897,0.0663680840007145 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/mac_report.md new file mode 100644 index 000000000..5290d4029 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/mac_report.md @@ -0,0 +1,41 @@ +## Energy Report β€” `mac` (cleaned) + +> 887 samples (with smell) vs 872 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 505.49 ms | 77.68 ms | +| **Average Power** | 4.241 W | 3.619 W | +| **Total Energy** | 1901.70 J | 245.10 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.32% | 0.00e+00 | +84.860 | large | βœ… | +| `gpu_mj` | +81.92% | 0.00e+00 | +2.516 | large | βœ… | +| `dram_mj` | +87.77% | 0.00e+00 | +177.673 | large | βœ… | +| `time_s` | +84.39% | 0.00e+00 | +250.581 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.3% lower energy (Cohen’s d = +84.860, large) +- **`gpu_mj`**: 81.9% lower energy (Cohen’s d = +2.516, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +177.673, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +250.581, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..efc857317 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/with_smell.csv @@ -0,0 +1,888 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.686158652221,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038 +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148 +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852 +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037 +4,1681.3039830173152,2.5037288286533763,0.0,471.3352977567602,0.5120100000021921 +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298 +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512 +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499 +8,1673.0168005136268,2.491387896881146,0.0,469.0120762141986,0.5094862920013838 +9,1674.6516856505996,2.493822500671014,0.0,469.4703984929874,0.5099841660012316 +10,1674.632669554008,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829 +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715 +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677 +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509 +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898 +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368 +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927 +17,1674.9585800219634,2.4942795151625616,0.0,469.5564329944028,0.5100776250001218 +18,1677.512503132874,2.498082712551933,0.0,470.27239758027656,0.5108553749996645 +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581 +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195 +21,1692.7334251702798,2.520749084420836,0.0,474.5394176391704,0.5154906250027125 +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146 +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418 +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472 +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981 +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635 +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165 +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868 +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495 +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931 +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782 +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094 +3,1677.138960668916,0.7677832068506811,0.0,468.280992421798,0.5116080420011713 +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182 +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746 +6,1665.3088555742995,0.7623674623954318,0.0,464.9778592383964,0.5079992909995781 +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733 +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189 +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731 +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449 +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992 +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349 +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844 +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853 +15,1664.589709954197,0.7620382422512794,0.0,464.777063578302,0.507779916999425 +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326 +17,1674.663941097445,0.7666501591377807,0.0,467.5899318428168,0.5108530420002353 +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989 +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774 +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128 +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219 +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212 +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154 +24,1672.187420124346,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954 +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098 +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352 +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691 +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941 +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253 +0,1700.6486549674398,2.245545305325342,0.0,471.7991233293258,0.5144435829970462 +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695 +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564 +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469 +4,1710.1798343752505,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836 +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368 +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275 +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373 +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759 +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611 +10,1701.928274758921,2.247234921935432,0.0,472.1541193445534,0.5148306660012167 +11,1688.930690823444,2.230072844688242,0.0,468.5482900697967,0.5108989170003042 +12,1689.5541088888797,2.230896009135527,0.0,468.7212406059824,0.5110874999991211 +13,1689.9560382136613,2.2314267187007863,0.0,468.8327450619548,0.5112090829970839 +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964 +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932 +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191 +17,1694.2118484628922,2.237046112628863,0.0,470.0134048877091,0.5124964590031595 +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352,0.5130589580003289 +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098 +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675 +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118 +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824 +23,1685.693758534626,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166 +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946 +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076 +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012 +27,1689.4828952994171,2.2308019783426145,0.0,468.7014843153579,0.5110659579986532 +28,1692.212939042672,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244 +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817 +0,1687.6458569919555,2.580242062394627,0.0,472.3853552412604,0.5138203749993409 +1,1687.0327514894282,2.579304685278597,0.0,472.21374218665426,0.5136337090007146 +2,1686.205052807527,2.578039216610996,0.0,471.9820628125352,0.5133817079986329 +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591 +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687 +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105 +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369 +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193 +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238 +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068 +10,1674.4885384554077,2.560125835654476,0.0,468.7025182496253,0.5098145000010845 +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899 +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134 +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728 +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324 +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712 +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159 +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711 +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754 +19,1677.22863718545,2.564315173108823,0.0,469.4694934456504,0.5106487500015646 +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355 +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079 +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851 +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817 +24,1676.759911976087,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167 +25,1671.2162151657417,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102 +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854 +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +29,1673.131765055717,2.5580514645531487,0.0,468.3227466987758,0.509401416999026 +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989 +1,1672.6596167167916,1.2258528268930255,0.0,466.5860908414723,0.5084176670025045 +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325 +3,1688.6244236034297,1.237553057745254,0.0,471.0394516817949,0.5132702920018346 +4,1677.695815207165,1.2295437381187877,0.0,467.9909314574833,0.5099484580023272 +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074 +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681 +7,1682.5739653539526,1.2331188194369973,0.0,469.3516847062496,0.5114312090008752 +8,1682.5384603989162,1.2330927986919125,0.0,469.3417806480596,0.5114204169985896 +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372 +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728 +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108 +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387 +13,1688.8170195135012,1.2376942067503771,0.0,471.0931760450152,0.5133288329998322 +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376 +15,1680.177795933706,1.2313627233202695,0.0,468.6832765545771,0.5107028750026075 +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091 +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639 +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985 +19,1676.2396122854952,1.2284765213041895,0.0,467.5847256628893,0.5095058340011747 +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945 +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434 +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412 +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696 +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816 +25,1681.8361980700215,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372 +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078 +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441 +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516 +29,1685.436887323359,1.235216987500778,0.0,470.1502928371205,0.5123014160017192 +0,1732.06870553443,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916 +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742 +2,1714.7743044983763,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323 +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244 +4,1718.4740985032197,0.8668385565940498,0.0,470.1265571743345,0.51150675000099 +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666 +6,1723.3339429500195,0.8692899758788708,0.0,471.4560749949214,0.512953290999576 +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181 +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825 +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474 +10,1722.9278508751695,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269 +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256 +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189 +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964 +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105 +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909 +16,1717.170141592041,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535 +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987 +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623 +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693 +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156 +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148 +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023 +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228 +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297 +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899 +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371 +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394 +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368 +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232 +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829 +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254 +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306 +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439 +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705 +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659 +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573 +7,1692.6743412442531,1.2348953116578076,0.0,469.0599651361846,0.5122992920005345 +8,1692.9432102016283,1.2350914657595289,0.0,469.13447188606534,0.5123806670017075 +9,1690.9101016469,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765 +10,1675.4391953781826,1.2223213626664713,0.0,464.283903538232,0.5070829590003996 +11,1692.3177755698923,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009 +12,1692.9842335608655,1.235121394466283,0.0,469.1458399413283,0.5123930829977326 +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145 +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459 +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755 +16,1699.368532235995,1.2397790774653328,0.0,470.9150041810212,0.5143253339992953 +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365 +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959 +19,1687.3626306301558,1.2310201382860588,0.0,467.5880276614127,0.5106916670010833 +20,1680.005011470021,1.2256523665981305,0.0,465.54914486946274,0.5084648339980049 +21,1684.214949163509,1.2287237384464431,0.0,466.7157681115221,0.5097390000009909 +22,1684.449402886166,1.228894784817181,0.0,466.780737995153,0.50980995899954 +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316 +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298 +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991 +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632 +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746 +28,1690.2974702999934,1.233161258796036,0.0,468.40130624647264,0.5115799159975722 +29,1691.2523507598814,1.2338578945128875,0.0,468.6659148509223,0.5118689170012658 +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285 +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228 +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163 +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576 +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558 +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698 +6,1705.732973585949,1.300279235547624,0.0,470.9678072139933,0.5133861249996698 +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658 +8,1690.866381337352,1.2889464410812284,0.0,466.86301094137,0.5089116250019288 +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358 +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521 +11,1704.729298359376,1.2995141345168324,0.0,470.69068369704553,0.513084041998809 +12,1708.1326598617934,1.302108514974491,0.0,471.6303816033247,0.5141083749986137 +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769 +14,1710.3444845159795,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929 +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019 +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924 +17,1689.277667739587,1.2877353656465649,0.0,466.4243532082916,0.5084334589992068 +18,1706.946246334542,1.3012041126453189,0.0,471.3028024417377,0.5137512920009613 +19,1708.998869357254,1.3027688259598698,0.0,471.869549628439,0.5143690839977353 +20,1700.2184297275633,1.2960755020303545,0.0,469.4451933764304,0.5117263749998529 +21,1704.764045228913,1.2995406220349015,0.0,470.7002776119237,0.5130945000018983 +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248 +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265 +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966 +25,1700.2915250526698,1.2961312225533927,0.0,469.4653756356212,0.5117483750000247 +26,1705.0802389809708,1.29978165634483,0.0,470.7875814750531,0.5131896669990965 +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194 +28,1718.6114560769083,1.3100964951232272,0.0,474.5236689771976,0.5172622499994759 +29,1692.044212804571,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484 +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022 +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477 +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489 +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622 +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736 +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334 +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919 +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642 +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257 +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721 +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471 +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143 +12,1684.754023901845,1.632642733391156,0.0,468.8016991594605,0.5105005830009759 +13,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683 +14,1680.4535893809157,1.6284753160284955,0.0,467.6050550310395,0.5091974999995728 +15,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277 +16,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582 +17,1693.226188437825,1.6408528445821813,0.0,471.159173944312,0.5130677500019374 +18,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046 +19,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097 +20,1681.29431533333,1.629290037404738,0.0,467.8389964547891,0.5094522500003222 +21,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562 +22,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328 +23,1686.877702600274,1.6347007243772926,0.0,469.392636571194,0.5111440830005449 +24,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942 +25,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622 +26,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196 +27,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728 +28,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667 +0,1662.7812272807057,2.154162194272734,0.0,465.3321749197454,0.5084949170013715 +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157 +2,1674.2807447957823,2.1690600205633683,0.0,468.55033459585,0.5120115829995484 +3,1676.0206591942217,2.171314110131433,0.0,469.0372526208532,0.512543666001875 +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335 +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408 +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195 +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926 +8,1676.5832374996228,2.1720429401764987,0.0,469.1946911233573,0.5127157080023608 +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787 +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531 +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761 +12,1674.719334293978,2.169628220937727,0.0,468.6730746182557,0.5121457079985703 +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101 +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844 +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353 +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996 +17,1671.4410196159442,2.165381106870954,0.0,467.7556326396163,0.511143167001137 +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402 +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448 +20,1673.6356021221727,2.1682242269336345,0.0,468.369790313464,0.5118142920000537 +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956 +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397 +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555 +24,1668.7934039933843,2.1619510744737207,0.0,467.0146928720848,0.5103335000021616 +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461 +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556 +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112 +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633 +29,1665.1493914950968,2.157230192477653,0.0,465.9949097319805,0.5092191250005271 +0,1704.031251704515,1.508941838063347,0.0,474.7466342955749,0.5159355420000793 +1,1703.1359158085138,1.508149006481623,0.0,474.4971918614849,0.5156644579983549 +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892 +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993 +4,1699.9833977413236,1.505357410727686,0.0,473.6188938018352,0.5147099590030848 +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734 +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086 +7,1715.943482298202,1.5194902731988489,0.0,478.0654063988733,0.5195422500000859 +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202 +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601 +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236 +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794 +12,1698.53539461143,1.504075185121696,0.0,473.21547713228824,0.5142715419970045 +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858 +14,1697.3195518477353,1.5029985405397317,0.0,472.8767408213671,0.5139034170024388 +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179 +16,1690.2733048896132,1.4967589972063555,0.0,470.91364183216854,0.511770000000979 +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182 +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302 +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851 +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124 +21,1690.6414282331857,1.497084975215344,0.0,471.016201757752,0.5118814580018807 +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229 +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126 +24,1690.3525720618825,1.4968291893184444,0.0,470.9357258304563,0.511794000001828 +25,1680.0227915903563,1.4876820343493653,0.0,468.0578276070737,0.5086664159971406 +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605 +27,1688.493922067436,1.4951833305725255,0.0,470.4179020943516,0.5112312499986729 +28,1697.0385398110468,1.5027497007260635,0.0,472.7984502862135,0.5138183339986426 +29,1689.9230695070262,1.4964488592194929,0.0,470.8160655295461,0.5116639580010087 +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339 +1,1714.765226996136,0.8643137448752406,0.0,469.821006012376,0.5111364580006921 +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871 +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353 +4,1715.331632824615,0.8645992372184634,0.0,469.97619306186704,0.511305291998724 +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863 +6,1714.1556313455656,0.8640064830464437,0.0,469.6539855728995,0.5109547499996552 +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976 +8,1706.9988473425583,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914 +9,1714.837774733343,0.8643503119839272,0.0,469.8408830488016,0.5111580829980085 +10,1711.608911909124,0.8627228294135127,0.0,468.9562210808144,0.5101956250000512 +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073 +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134 +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773 +14,1723.523935681039,0.8687285021752712,0.0,472.220766201658,0.5137472499991418 +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045 +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471 +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021 +18,1711.1150571741512,0.8624739058706925,0.0,468.8209119873269,0.5100484169997799 +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914 +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916 +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258 +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475 +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923 +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017 +25,1734.4994753767116,0.8742606354766979,0.0,475.2279061996989,0.5170188340016466 +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984 +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638 +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264 +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878 +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037 +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928 +2,1699.015023621691,1.6596805935544503,0.0,467.7311848755153,0.5085318749988801 +3,1726.676996415299,1.686702155333886,0.0,475.34640141619576,0.5168113750005432 +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602 +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556 +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734 +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054 +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878 +9,1707.556617845926,1.6680244386499228,0.0,470.0826473003213,0.5110884579989943 +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489 +11,1706.9871143093417,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469 +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288 +13,1700.5875280107632,1.661216692400863,0.0,468.16408825241115,0.5090025409990631 +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047 +15,1701.9577670717792,1.662555208627312,0.0,468.54130889534906,0.5094126670010155 +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634 +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211 +18,1700.088466524394,1.6607291848436008,0.0,468.0266988726236,0.5088531669971417 +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262 +20,1700.4806187224335,1.6611122582030222,0.0,468.1346566067757,0.508970541999588 +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707 +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749 +23,1732.7583505809405,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043 +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133 +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451 +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454 +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582 +28,1703.033989709958,1.663606515297409,0.0,468.83758814111593,0.5097347910013923 +29,1702.9419746789297,1.663516630535244,0.0,468.8122568174425,0.5097072499993374 +0,1733.253563906018,2.0984102566650487,0.0,473.074934530376,0.5129103750005015 +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176 +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007 +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304 +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974 +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383 +6,1723.4772484529751,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127 +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419 +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738,0.5151641660013411 +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893 +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816 +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324 +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498 +13,1732.2086720593063,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571 +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222 +15,1732.4094537173592,2.097388311858747,0.0,472.8445427512664,0.5126605830009794 +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996 +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384 +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215 +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757 +20,1738.3252572752317,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475 +21,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968 +22,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178 +23,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871 +24,1726.5571530732716,2.090303065964912,0.0,471.2472134269785,0.5109287500017672 +25,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585 +26,1724.678430716105,2.0880285399833696,0.0,470.7344341806953,0.5103727919995436 +27,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824 +28,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853 +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695 +1,1781.4314907183507,1.865233779826259,0.0,474.9351511882611,0.512870540998847 +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603 +3,1776.1253612297892,1.8596780388315792,0.0,473.5205206374909,0.511342916997819 +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071 +5,1779.3196350329554,1.863022578001748,0.0,474.37212392369514,0.5122625419971882 +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342 +7,1775.9211500186464,1.8594642210949857,0.0,473.4660772963107,0.5112841250011115 +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882 +9,1797.5348509506605,1.8820946760383848,0.0,479.2283568862738,0.5175066660012817 +10,1782.1034613760824,1.8659373613989343,0.0,475.1143006462038,0.5130639999988489 +11,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154 +12,1779.8063525884374,1.863532191776092,0.0,474.5018843309874,0.5124026670018793 +13,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311 +14,1800.139363767342,1.8848217106231984,0.0,479.92272806743193,0.518256499999552 +15,1768.3179047798128,1.8515033031872992,0.0,471.4390285740661,0.5090951659985876 +16,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909 +17,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675 +18,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749 +19,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233 +20,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352 +21,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055 +22,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763 +23,1776.934675683587,1.8605254251417416,0.0,473.7362863767159,0.5115759170003003 +24,1775.9308478967102,1.8594743751816576,0.0,473.46866278062953,0.5112869170006888 +25,1774.2983217244705,1.857765051540093,0.0,473.03342624839615,0.5108169160012039 +26,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252 +27,1781.2621633934934,1.8650564869874289,0.0,474.890007999174,0.5128217920027964 +28,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208 +0,1715.2126246543712,1.878141390259372,0.0,473.25809210624993,0.5145006249986182 +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795 +2,1708.659320247143,1.870965584721755,0.0,471.44991725015507,0.5125348750007106 +3,1714.9127245161242,1.877813002481384,0.0,473.1753442502645,0.5144106660009129 +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142 +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918 +6,1705.8313331065865,1.8678689658982608,0.0,470.6696246033992,0.5116865829986637 +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889 +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202 +9,1701.5545581455729,1.8631859382924425,0.0,469.4895852722259,0.5104037080018315 +10,1696.2627985811607,1.8573915122706384,0.0,468.02949338662467,0.5088163750006061 +11,1708.47193391554,1.8707603984840295,0.0,471.3982139822882,0.512478666001698 +12,1702.070178101452,1.8637505372038896,0.0,469.6318541157872,0.5105583750009828 +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232 +14,1713.0868103835694,1.8758136440006232,0.0,472.6715416159428,0.5138629590001074 +15,1700.5874961044965,1.8621270146230455,0.0,469.2227554168893,0.5101136250013951 +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033 +17,1700.0421524930027,1.861529868593488,0.0,469.07228528076257,0.5099500420001277 +18,1701.0918613432752,1.8626792897271016,0.0,469.36191888105583,0.5102649159998691 +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436 +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308 +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339 +22,1703.169756399106,1.8649545649045784,0.0,469.93524759586614,0.5108882079985051 +23,1698.6667036618285,1.8600237653017555,0.0,468.69277414594774,0.5095374580014322 +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047 +25,1725.2339947819305,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259 +26,1695.9577611438835,1.8570574991994344,0.0,467.9453280572003,0.5087248750023718 +27,1697.33251321659,1.8585628395473195,0.0,468.32464694378984,0.5091372499991849 +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549 +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464 +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402 +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579 +2,1726.3235530469292,2.147168598317076,0.0,474.0210175878432,0.5159650419991522 +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943 +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624 +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454 +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892 +7,1703.9014336143955,2.119280390067656,0.0,467.8642598635299,0.5092635000000882 +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641 +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499 +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533 +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063 +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957 +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029 +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525 +15,1729.2027639938808,2.1507497064600507,0.0,474.8116031652197,0.516825582999445 +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779 +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395 +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429 +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318 +20,1713.5996964840365,2.131342906074672,0.0,470.52724874889134,0.5121621250000317 +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474 +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845 +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164 +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658 +25,1699.874186562006,2.114271376320903,0.0,466.7584418130943,0.508059832998697 +26,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921 +27,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897 +28,1702.7397365525153,2.1178354932245216,0.0,467.5452763088947,0.5089162910007872 +0,1713.159064065179,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777 +1,1728.2893886349443,2.1460685837030025,0.0,476.2595639739648,0.5165718749994994 +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307 +3,1714.3446896304945,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393 +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168 +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578 +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113 +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508 +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844 +9,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575 +10,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702 +11,1729.394162260291,2.147440414129695,0.0,476.5640031544385,0.5169020829998772 +12,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946 +13,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174 +14,1724.1615030085018,2.1409428647590096,0.0,475.1220548151909,0.5153380830015521 +15,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531 +16,1717.9330827404174,2.133208849176126,0.0,473.4057075757582,0.5134764579997864 +17,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229 +18,1715.88106060893,2.130660791970888,0.0,472.8402379431644,0.5128631249972386 +19,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654 +20,1716.739788843288,2.131727100482537,0.0,473.076875127398,0.5131197919981787 +21,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105 +22,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427 +23,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432 +24,1720.854010688215,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171 +25,1712.4761217310593,2.1264327776098213,0.0,471.9019490686296,0.511845416000142 +26,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266 +27,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126 +28,1710.078379417596,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527 +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942 +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453 +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553 +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522 +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363 +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014 +6,1702.066685738554,2.7700300963980387,0.0,474.5094928986423,0.5151506249967497 +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673 +8,1700.0186079028213,2.766696950116356,0.0,473.9385209247512,0.5145307500024501 +9,1682.723315235478,2.738549709108719,0.0,469.1168646278044,0.5092961250011285 +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456 +11,1697.882008804488,2.763219739819069,0.0,473.34287061141595,0.5138840830004483 +12,1695.3888533669428,2.7591622515579655,0.0,472.6478179837488,0.5131295000028331 +13,1721.269774292272,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763 +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644 +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555 +16,1693.919391580334,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454 +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678 +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103 +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901 +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161 +21,1699.9142571169934,2.7665271243276557,0.0,473.9094295625374,0.5144991670022137 +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584 +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284 +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527 +25,1694.6464141966617,2.75795396820241,0.0,472.44083758917907,0.5129047920017911 +26,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241 +27,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143 +28,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524 +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961 +1,1694.9927135001717,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363 +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444 +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167 +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291 +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369 +6,1688.8411757749657,1.7647243216039348,0.0,469.3167794907069,0.5113532079994911 +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479 +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306 +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447 +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125 +11,1682.606935383067,1.758209963827656,0.0,467.58432905944926,0.5094655829998374 +12,1688.212838993708,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873 +13,1684.5242856987225,1.7602134646799608,0.0,468.1171468804538,0.5100461250003718 +14,1691.2586095165043,1.7672503756703288,0.0,469.9885668881752,0.5120851669998956 +15,1684.9852883959743,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345 +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871 +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087 +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969 +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531 +20,1697.7310531269818,1.77401363963112,0.0,471.78721227548374,0.5140449159989657 +21,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576 +22,1684.149156241156,1.759821479875816,0.0,468.0129011103703,0.5099325419978413 +23,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992 +24,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528 +25,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477 +26,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427 +27,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625 +28,1683.942460695321,1.7596054970693007,0.0,467.9554619092792,0.509869958001218 +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231 +1,1684.3804086585617,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504 +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881 +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921 +4,1687.8337375501524,0.9008719984551876,0.0,468.55353608541475,0.5111366669989366 +5,1681.843830358663,0.8976749183506088,0.0,466.890699199911,0.5093227079996723 +6,1686.948083015424,0.900399285205718,0.0,468.3076726719962,0.5108684590013581 +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708 +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256 +9,1689.3941238414432,0.9017048460783412,0.0,468.9867093880794,0.5116092080024828 +10,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164 +11,1692.884875635795,0.9035680156993332,0.0,469.9557646098421,0.512666333001107 +12,1689.6578805301597,0.9018456247640516,0.0,469.059929946725,0.51168908299951 +13,1688.3434987592047,0.9011440807041184,0.0,468.69504908621974,0.5112910409989126 +14,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817 +15,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927 +16,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944 +17,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707 +18,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894 +19,1685.8418700821012,0.8998088501209175,0.0,468.0005808240016,0.5105334580002818 +20,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062 +21,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702 +22,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496 +23,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146 +24,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888 +25,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105 +26,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763 +27,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561 +28,1684.6551746223745,0.8991754579291524,0.0,467.6711465073736,0.5101740840000275 +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922 +1,1684.9120118880196,0.9001310708543041,0.0,468.9682879150925,0.5117798330029473 +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045 +3,1683.044204417893,0.8991332314856176,0.0,468.4484136040067,0.5112124999977823 +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105 +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793 +6,1681.6389594309271,0.898382507016918,0.0,468.05728615581427,0.5107856670001638 +7,1686.120547663472,0.9007767072994408,0.0,469.3046645030087,0.5121469170007913 +8,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845 +9,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436 +10,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695 +11,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919 +12,1697.2951611645233,0.906746524563556,0.0,472.4149392976128,0.5155411250016186 +13,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666 +14,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893 +15,1677.7029249314749,0.8962797580757781,0.0,466.9617539574804,0.5095901249987946 +16,1688.7147098689277,0.902162587385458,0.0,470.0267080278236,0.5129348750015197 +17,1680.573640225599,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004 +18,1683.2713703277295,0.8992545904006469,0.0,468.511641598737,0.5112814999993134 +19,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354 +20,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451 +21,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416 +22,1681.8592675604157,0.8985002022978081,0.0,468.118605397158,0.5108525840005314 +23,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924 +24,1702.0110496161594,0.909265895125372,0.0,473.7275313603189,0.5169735419985955 +25,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375 +26,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133 +27,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034 +28,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037 +0,1697.203423819641,0.4319175559316277,0.0,469.49438329767935,0.5124109589996806 +1,1702.970913758122,0.433385311725145,0.0,471.08983384523265,0.5141522500016436 +2,1698.55258888602,0.4322609019736166,0.0,469.8676004453214,0.5128182920016116 +3,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953 +4,1704.3090392776437,0.4337258483372035,0.0,471.45999714254026,0.5145562500001688 +5,1696.1240599722423,0.4316428710067762,0.0,469.19580078436576,0.5120850829989649 +6,1698.2136390256214,0.4321746433712405,0.0,469.7738373445384,0.5127159579969884 +7,1701.9096344739723,0.4331152291009071,0.0,470.7962540326861,0.5138318339995749 +8,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588 +9,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589 +10,1705.7160285840569,0.4340839099425002,0.0,471.84921010749775,0.5149810410002829 +11,1727.832226093905,0.4397122122667182,0.0,477.9671747339228,0.5216582499997457 +12,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364 +13,1702.5864245755272,0.4332874639211059,0.0,470.9834732822422,0.5140361669982667 +14,1699.7292450503628,0.4325603466056166,0.0,470.1930967603053,0.5131735420000041 +15,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262 +16,1691.5910504622384,0.4304892754146995,0.0,467.9418423757784,0.5107165000008536 +17,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608 +18,1697.6634011631045,0.4320346145512275,0.0,469.6216260171843,0.5125498330016853 +19,1697.9111266140835,0.4320976576548574,0.0,469.6901538708301,0.5126246250001714 +20,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183 +21,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172 +22,1695.7074127257792,0.4315368393679918,0.0,469.0805443930072,0.5119592909977655 +23,1695.3634979136232,0.4314493172459938,0.0,468.9854078463953,0.5118554580003547 +24,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883 +25,1698.0149108307794,0.4321240694712552,0.0,469.7188635152545,0.5126559589989483 +26,1693.4629920169104,0.4309656616921448,0.0,468.45967425936146,0.5112816670007305 +27,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756 +28,1714.7917125952802,0.4363935607489505,0.0,474.3598005341093,0.5177211250011169 +0,1706.4500436920816,0.9036096252071272,0.0,472.01889458967855,0.5143917909990705 +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102 +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231 +3,1697.45142476899,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798 +4,1707.4593666243693,0.9041440879181388,0.0,472.2980820739788,0.5146960410020256 +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587 +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588 +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391 +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746 +9,1692.1716258741417,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998 +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885 +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757 +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119 +13,1699.6750602015395,0.9000220954606203,0.0,470.1448753472811,0.512349542001175 +14,1701.1311258658325,0.9007931200529032,0.0,470.54763574911647,0.5127884579997044 +15,1700.9127306150654,0.9006774740945451,0.0,470.4872257270172,0.5127226250006061 +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582 +17,1691.921847883786,0.8959165681394461,0.0,468.0002695199536,0.5100124159980624 +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093 +19,1696.5682995533305,0.8983769849955858,0.0,469.2855183843608,0.5114130410001962 +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749 +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367 +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291 +23,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214 +24,1699.7398857679125,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216 +25,1704.6099874632089,0.902635267636287,0.0,471.5099190645256,0.5138371249995544 +26,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361 +27,1701.2077050215437,0.9008336707050868,0.0,470.56881820831654,0.5128115419975074 +28,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599 +0,1691.7368270144957,0.9352332949595424,0.0,471.9254008744063,0.5151577079996059 +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978 +2,1691.7194485071643,0.935223687697696,0.0,471.9205529814552,0.5151524159991823 +3,1689.084378366222,0.933766956786002,0.0,471.1854761581936,0.5143500000012864 +4,1693.5933387749658,0.9362596198483492,0.0,472.4432917441903,0.515723041997262 +5,1693.8493466310365,0.9364011472224332,0.0,472.51470746806285,0.5158009999977367 +6,1686.4976048238766,0.9323369254095548,0.0,470.46387211112864,0.5135622909983795 +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559 +8,1688.5101028010365,0.933449483275662,0.0,471.02527675720825,0.5141751249975641 +9,1699.7612240655442,0.9396693769637156,0.0,474.1638795400121,0.5176012500014622 +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392 +11,1692.366929218863,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073 +12,1689.6277292335435,0.9340673343706531,0.0,471.33704883296286,0.5145154579986411 +13,1697.3383739763035,0.9383299664620526,0.0,473.488003433655,0.5168634580004436 +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696 +15,1694.925927355849,0.9369963072511552,0.0,472.8150294696991,0.516128834002302 +16,1671.365031052581,0.923971270300939,0.0,466.2425027886417,0.5089542089990573 +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399 +18,1690.4551425000311,0.9345247485636612,0.0,471.5678633019989,0.5147674170002574 +19,1684.268371406136,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615 +20,1696.6806343047017,0.937966351962164,0.0,473.3045209597648,0.5166631669999333 +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752 +22,1680.6578390184325,0.9291085607320204,0.0,468.8348162350971,0.5117840000020806 +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838 +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711 +25,1690.4400890135123,0.9345164266299107,0.0,471.56366399478605,0.5147628330014413 +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478 +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382 +28,1682.6264145623704,0.930196837207968,0.0,469.3839683182635,0.5123834590012848 +29,1679.3658889613605,0.9283943392943216,0.0,468.4744149960525,0.5113905830003205 +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787 +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475 +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321 +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932 +4,1765.9374046561293,1.4666423640474469,0.0,474.2921408643437,0.5136094170011347 +5,1760.7687938821498,1.4623497410448405,0.0,472.9039651210689,0.5121061660029227 +6,1765.694572073473,1.4664406872767095,0.0,474.22692134682507,0.5135387909976998 +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474 +8,1775.629506989212,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826 +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419 +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038 +11,1770.4399845493308,1.470381836579976,0.0,475.5014352885564,0.514918958000635 +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858 +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353 +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058 +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538 +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251 +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272 +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988 +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226 +20,1769.5408755153906,1.46963511056602,0.0,475.2599542782705,0.5146574589998636 +21,1767.2834912096223,1.4677603128262782,0.0,474.6536702546616,0.51400091600226 +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654 +23,1761.1276686756316,1.462647792931686,0.0,473.0003510369309,0.5122105419977743 +24,1753.0491242413011,1.455938418366093,0.0,470.8306307938895,0.5098609590022534 +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936 +26,1760.151335689559,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767 +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245 +28,1777.3232973655329,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984 +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584 +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516 +1,1708.5795885529983,1.966259571752885,0.0,469.8693847821005,0.5122209580003982 +2,1714.6152742499144,1.9732055313401136,0.0,471.5292336671909,0.5140304169981391 +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946 +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964 +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978 +6,1709.5649903497754,1.9673935872403203,0.0,470.14037604239456,0.5125163749980857 +7,1713.8351537921171,1.972307756763184,0.0,471.3146959763412,0.5137965419999091 +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049 +9,1713.8143061036951,1.9722837649238905,0.0,471.3089627400327,0.5137902919996122 +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476 +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156 +12,1709.076183799929,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007 +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221 +14,1704.6249223381478,1.9617084812739085,0.0,468.7818284318785,0.5110353749987553 +15,1705.365015246795,1.962560191533918,0.0,468.98535831248665,0.5112572500001988 +16,1701.6139625675005,1.95824342263171,0.0,467.95379687600814,0.510132709001482 +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774 +18,1707.2698000702223,1.964752247096495,0.0,469.5091852849744,0.5118282920011552 +19,1713.4863002655777,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812 +20,1688.421819469822,1.9430617022064345,0.0,464.3258803289579,0.5061777909977536 +21,1707.8000251380013,1.9653624382293453,0.0,469.6550002812804,0.5119872499999474 +22,1709.2365675547344,1.9670156332552335,0.0,470.05005785195834,0.5124179159975029 +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883 +24,1702.1062448464766,1.9588099486217936,0.0,468.0891773833673,0.5102802920009708 +25,1709.7403911188364,1.967595441133092,0.0,470.188612280262,0.5125689589985996 +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112 +27,1713.4480806178635,1.971862307022976,0.0,471.20824858842275,0.5136805000001914 +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611 +29,1707.9331701381714,1.9655156635357751,0.0,469.6916159354389,0.5120271659980062 +0,1740.8475467300475,0.8670057698492718,0.0,476.0195140230136,0.5090652500002761 +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093 +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814 +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254 +4,1743.64428559599,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949 +5,1742.4530932244463,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856 +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411 +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279 +8,1738.451339551393,0.8658123710053869,0.0,475.3642921577653,0.5083645419981622 +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625 +10,1757.4058468687897,0.875252409129174,0.0,480.5472361661138,0.513907291002397 +11,1739.8851866112857,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523 +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187 +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124 +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298 +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439 +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813 +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888 +18,1733.1724702832205,0.8631833009743076,0.0,473.92083159262467,0.506820875001722 +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895 +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733 +21,1753.020803602176,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888 +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614 +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498 +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713 +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178 +26,1731.9024812868108,0.8625507999896003,0.0,473.5735642250594,0.5064494999969611 +27,1736.6560000323225,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919 +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532 +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277 +0,1707.9951880275323,2.0066518754973948,0.0,471.1953045647133,0.5138533329991333 +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253 +2,1693.5739088739952,1.989708919765806,0.0,467.2168161763406,0.5095146659987222 +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224 +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637 +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599 +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382 +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533 +8,1700.851719406768,1.998259313969181,0.0,469.2245912418632,0.5117042079982639 +9,1698.8143105967222,1.9958656478520331,0.0,468.6625185431216,0.5110912500022096 +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894 +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684 +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475 +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241 +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905 +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494 +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538 +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385 +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468 +19,1699.5277018289198,1.9967037812754096,0.0,468.8593262398208,0.5113058749993797 +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675 +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391 +22,1697.8531494743247,1.994736419981584,0.0,468.3973570186755,0.510802083001181 +23,1697.3617679212994,1.994159116414293,0.0,468.2617965193497,0.5106542500034266 +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853 +25,1699.613843927194,1.9968049860119763,0.0,468.88309079871226,0.511331790999975 +26,1698.3545027196003,1.995325438871667,0.0,468.5356684710486,0.5109529159999511 +27,1698.6356511649765,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842 +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118 +0,1696.056708219553,2.13210562208661,0.0,468.996608558364,0.5107068340003025 +1,1698.1034097991303,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625 +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451 +3,1690.6943979681755,2.1253646848414536,0.0,467.5138130187185,0.50909216600121 +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757 +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803 +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638 +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929 +8,1698.1573760274025,2.1347463625887086,0.0,469.577488945685,0.5113393749998068 +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113 +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842 +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512 +12,1697.0918900604795,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553 +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115 +14,1697.2283266475597,2.133578458593306,0.0,469.3205865636963,0.5110596249978698 +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593 +16,1695.755878881392,2.131727450814344,0.0,468.9134226963178,0.5106162500014761 +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632 +18,1690.365619098878,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368 +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195 +20,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764 +21,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929 +22,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595 +23,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202 +24,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783 +25,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809 +26,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155 +27,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467 +28,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..2d2ff04eb --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/cleaned/mac/without_smell.csv @@ -0,0 +1,873 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.0955342560187,0.0,0.0,57.8043656552693,0.0804041249975853 +1,240.37357538885556,0.0,0.0,57.15712585245829,0.0795038340002065 +2,240.57790726684237,0.0,0.0,57.205712819003466,0.0795714170017163 +3,241.00357775344693,0.0,0.0,57.306930690124176,0.0797122080002736 +4,228.7827823794463,0.0,0.0,54.40101418878283,0.0756701660029648 +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123 +6,239.8171358810357,0.0,0.0,57.024813126626064,0.0793197909988521 +7,243.10473150771745,0.0,0.0,57.80655261975568,0.0804071669990662 +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972 +9,241.96893194067064,0.0,0.0,57.53647701476525,0.0800314999978581 +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959 +11,226.9116656193993,0.0,0.0,53.95609150555676,0.0750512920021719 +12,241.0369623717528,0.0,0.0,57.314869037036715,0.0797232500008249 +13,259.1807637955834,0.0,0.0,61.629184950282394,0.0857243329992343 +14,245.7031080501689,0.0,0.0,58.42440645335082,0.0812665830017067 +15,240.7667441033004,0.0,0.0,57.25061530385252,0.0796338750005816 +16,239.96490559435284,0.0,0.0,57.059950483498945,0.0793686659999366 +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382 +18,244.9626238231499,0.0,0.0,58.2483307341832,0.0810216669997316 +19,244.61392358457164,0.0,0.0,58.16541519994048,0.0809063339984277 +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304 +21,240.89272099625768,0.0,0.0,57.280570664434954,0.079675542001496 +22,232.55651691475,0.0,0.0,55.29835001040627,0.076918333001231 +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555 +24,242.54275309588132,0.0,0.0,57.67292282804619,0.080221291998896 +25,242.09024671523045,0.0,0.0,57.5653237955566,0.0800716249977995 +26,234.0747792582066,0.0,0.0,55.65936935998167,0.0774205000016081 +27,240.0650594382712,0.0,0.0,57.08376552162113,0.0794017919979523 +28,237.81349047900775,0.0,0.0,56.548377178031686,0.0786570829986885 +29,243.5262478163098,0.0,0.0,57.90678269146844,0.0805465839985117 +0,231.07091032445197,0.96752185957394,0.0,58.35157697913175,0.0799369160013157 +1,227.65017155015877,0.9531988124393016,0.0,57.48774906745996,0.0787535419985943 +2,230.5149398910295,0.9651939441004702,0.0,58.211179594197326,0.0797445829994103 +3,234.6926746579278,0.9826866250476328,0.0,59.26616921407965,0.0811898329993709 +4,232.3701460779587,0.9729619168727698,0.0,58.67966871070601,0.0803863749970332 +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.0770988340009353 +6,237.3139072923828,0.9936620432398358,0.0,59.928100469878366,0.0820966249993944 +7,230.30332002617052,0.9643078661217072,0.0,58.157739925754,0.0796713749987247 +8,230.46507591515575,0.9649851576002768,0.0,58.19858760837532,0.0797273330026655 +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019 +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.0795147079988964 +11,230.5961184668456,0.9655338486194806,0.0,58.23167935294729,0.0797726660020998 +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.0827171670025563 +13,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.0808671250015322 +14,231.6784328857628,0.9700656300443432,0.0,58.50499265336401,0.0801470830010657 +15,230.71487857136052,0.9660311115462684,0.0,58.26166945153184,0.0798137499987206 +16,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.0800940830013132 +17,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.0797144999996817 +18,231.78587024977804,0.9705154832866824,0.0,58.5321234575313,0.0801842499968188 +19,231.19713702261603,0.9680503860317448,0.0,58.38345259205248,0.0799805829992692 +20,230.582873431562,0.9654783900541868,0.0,58.228334627750776,0.0797680840005341 +21,231.6367610464117,0.9698911450109644,0.0,58.49446940083367,0.0801326670007256 +22,232.1529848272166,0.9720526364408436,0.0,58.62482969431156,0.080311250003433 +23,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.0799320830010401 +24,232.75243664028173,0.9745626137118352,0.0,58.77620728903447,0.0805186249999678 +25,232.66162348649672,0.9741823680491488,0.0,58.75327454199867,0.0804872090011485 +26,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.0794731249989126 +27,230.7071720615588,0.965998843457292,0.0,58.259723351958755,0.0798110840005392 +28,230.77582537158145,0.9662863031729516,0.0,58.27706014653421,0.0798348339994845 +0,232.9169939317484,0.0,0.0,56.31584657411337,0.0802987909992225 +1,237.47883911982245,0.0,0.0,57.41883253219986,0.0818715000023075 +2,235.63126033438007,0.0,0.0,56.97211560674853,0.0812345420017663 +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643 +4,233.22591381073585,0.0,0.0,56.39053878190413,0.0804052919993409 +5,232.05152169027792,0.0,0.0,56.10658832660616,0.080000417001429 +6,231.51224545439288,0.0,0.0,55.976199395989674,0.0798144999971555 +7,230.47563320063983,0.0,0.0,55.72556205238602,0.079457124997134 +8,237.39157949081192,0.0,0.0,57.39773445860497,0.0818414169989409 +9,238.7171669043764,0.0,0.0,57.71824167511468,0.0822984170008567 +10,233.33565330551497,0.0,0.0,56.41707215092448,0.0804431249998742 +11,231.42716131362363,0.0,0.0,55.95562732292378,0.0797851669994997 +12,235.6416532820299,0.0,0.0,56.97462846609562,0.0812381249997997 +13,231.260615912246,0.0,0.0,55.91535913504585,0.0797277500023483 +14,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142 +15,231.26617350593335,0.0,0.0,55.916702878102704,0.0797296659984567 +16,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022 +17,237.3270376003675,0.0,0.0,57.38212919452134,0.0818191660000593 +18,234.63030260863508,0.0,0.0,56.7300989949132,0.0808894590009003 +19,231.03231320527357,0.0,0.0,55.860158954066,0.0796490419998008 +20,233.7110410932738,0.0,0.0,56.50783530523265,0.0805725409991282 +21,231.71746496061323,0.0,0.0,56.02581840416606,0.079885250001098 +22,227.65827556405924,0.0,0.0,55.04436710079492,0.0784858330007409 +23,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255 +24,231.77136734596337,0.0,0.0,56.03885119499903,0.0799038330005714 +25,233.1512226176164,0.0,0.0,56.372479568185334,0.0803795419997186 +26,230.73777754985747,0.0,0.0,55.78894463646289,0.0795475000013539 +27,232.8224856404988,0.0,0.0,56.29299588237056,0.0802662089990917 +28,237.8312655240404,0.0,0.0,57.50404396728485,0.0819929999997839 +0,240.68532811369528,0.0,0.0,56.67665791391861,0.0791760419997444 +1,237.4792714962241,0.0,0.0,55.92169467795753,0.0781213749978633 +2,229.61777289781264,0.0,0.0,54.070466477863675,0.0755352500018489 +3,237.8056781604508,0.0,0.0,55.99855702346976,0.0782287500005622 +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688 +5,243.35345135751976,0.0,0.0,57.30494842729374,0.0800537499999336 +6,243.4134889068341,0.0,0.0,57.319086088575986,0.0800735000011627 +7,244.52633573416657,0.0,0.0,57.58113961480306,0.080439583001862 +8,247.25107666319172,0.0,0.0,58.222762478767,0.0813359160019899 +9,243.32786471626991,0.0,0.0,57.29892327684254,0.0800453329975425 +10,244.4880849635703,0.0,0.0,57.57213231112975,0.0804269999971438 +11,241.4227502834867,0.0,0.0,56.85030632191656,0.0794186249986523 +12,245.31417120068048,0.0,0.0,57.766659362009946,0.0806987500000104 +13,243.4813784481399,0.0,0.0,57.335072739439504,0.0800958330000867 +14,243.02235721302517,0.0,0.0,57.22698227243133,0.0799448329998995 +15,243.41158898109776,0.0,0.0,57.318638693456954,0.0800728750000416 +16,242.4810070275498,0.0,0.0,57.099504957905,0.0797667500009993 +17,242.8655512932365,0.0,0.0,57.1900575643721,0.0798932499965303 +18,244.21563610620777,0.0,0.0,57.50797596720637,0.0803373749986349 +19,244.89530368100628,0.0,0.0,57.668024304734615,0.0805609589988307 +20,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072 +21,245.05122194988175,0.0,0.0,57.7047399884734,0.0806122499998309 +22,242.19943853992356,0.0,0.0,57.03320112053526,0.0796741250014747 +23,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844 +24,245.99079585749843,0.0,0.0,57.92599115224054,0.0809213329994236 +25,245.43513393916336,0.0,0.0,57.79514370629074,0.0807385420011996 +26,240.29419641988633,0.0,0.0,56.584554097773946,0.0790473749984812 +27,244.3516705522685,0.0,0.0,57.54000940199992,0.0803821250010514 +28,241.889751197847,0.0,0.0,56.96027584634135,0.0795722500006377 +0,238.41283703560313,0.0695081157538201,0.0,61.79271490514612,0.0831266669993056 +1,234.37913907907773,0.0683321105186815,0.0,60.7472462511079,0.0817202500002167 +2,229.3925259214554,0.0668782874406575,0.0,59.45479753474456,0.0799815830032457 +3,221.67814600297828,0.0646291970854164,0.0,57.455356208935186,0.0772918340007891 +4,231.8804534306275,0.0676036307377922,0.0,60.09962772589734,0.0808490409981459 +5,229.33420950258335,0.0668612855692663,0.0,59.439682871077736,0.0799612499977229 +6,223.15663158869825,0.0650602424456846,0.0,57.838555534213626,0.0778073330002371 +7,235.0478747510722,0.0685270771869015,0.0,60.920571619155446,0.081953416000033 +8,231.3115035490765,0.0674377561367569,0.0,59.95216520557696,0.0806506670014641 +9,229.6267523252653,0.0669465750219432,0.0,59.51550519450753,0.0800632499995117 +10,232.2332285257856,0.0677064806197625,0.0,60.19106127096891,0.0809720420002122 +11,230.43757777224496,0.0671829672805378,0.0,59.72565791239818,0.0803459580019989 +12,231.26095387219027,0.0674230186216298,0.0,59.93906355462891,0.0806330420018639 +13,226.7150679276371,0.0660976874424598,0.0,58.76084413634677,0.0790480420000676 +14,229.0763215445606,0.0667860995756736,0.0,59.37284252277387,0.0798713330004829 +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.0792341249980381 +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.0806579169984615 +17,230.3895405214245,0.0671689622511441,0.0,59.71320744126716,0.0803292090022296 +18,227.8955154857735,0.0664418412494966,0.0,59.06679687080252,0.0794596250016184 +19,221.77446141446887,0.0646572773803116,0.0,57.48031959109704,0.0773254159976204 +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.0797048750027897 +21,228.23203436741105,0.0665399517106154,0.0,59.15401707073714,0.0795769579999614 +22,215.52590171771973,0.0628355398593935,0.0,55.86079493500083,0.075146750001295 +23,236.72832386273487,0.0690170040416136,0.0,61.356116592994546,0.0825393329978396 +24,220.5298408730013,0.0642944142486884,0.0,57.15773426708401,0.0768914580003183 +25,228.89658839783272,0.0667336992413506,0.0,59.32625862556073,0.0798086659997352 +26,229.44773620070688,0.0668943837319845,0.0,59.46910713773422,0.0800008330006676 +27,229.6753890074541,0.0669607548126688,0.0,59.52811102846259,0.0800802080011635 +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.079968000001827 +29,220.42790404735163,0.0642646950575369,0.0,57.13131390615032,0.0768559160023869 +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.0828468750005413 +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248 +2,491.6841117381172,0.8712456147475667,0.0,76.43504797073845,0.078407375000097 +3,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.0797451670005102 +4,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.0737165410027955 +5,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.0807009579984878 +6,514.8391200881973,0.9122754121374724,0.0,80.03462365713747,0.0820998339986545 +7,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.0751145000031101 +8,484.3581431807236,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234 +9,500.5286831836258,0.8869178602040666,0.0,77.80998612021061,0.07981779200054 +10,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.0795732500009762 +11,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.0803536249986791 +12,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.0794982500010519 +13,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.0762340840010438 +14,497.8429106725408,0.8821587730856716,0.0,77.39246774647758,0.0793894999987969 +15,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.0771708750035031 +16,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.0793507089983904 +17,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752 +18,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.075234249998175 +19,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.0774600000004284 +20,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.0747904170020774 +21,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.0744944590005616 +22,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.0777760000019043 +23,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.0794401249986549 +24,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.0787942500028293 +25,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.0799686249993101 +26,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.0792666669985919 +27,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.0759735419997014 +28,509.0607510322008,0.902036361128414,0.0,79.13634383591972,0.0811783749995811 +0,235.05822270976108,0.0,0.0,56.90602555177452,0.0796164580024196 +1,234.8477444205732,0.0,0.0,56.85507016393681,0.0795451670019247 +2,236.67440697832672,0.0,0.0,57.29729296723922,0.0801638750017446 +3,237.84588865760452,0.0,0.0,57.58090085640774,0.0805606670000997 +4,238.03791455643773,0.0,0.0,57.62738904380077,0.0806257080002978 +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256 +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836 +7,235.89399490105237,0.0,0.0,57.10836041640851,0.0798995420009305 +8,237.1091452658675,0.0,0.0,57.40254020264302,0.0803111249988433 +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639 +10,240.1701486799902,0.0,0.0,58.14358868199451,0.0813479159987764 +11,237.3678477706916,0.0,0.0,57.46517035095314,0.0803987500003131 +12,233.8212985099349,0.0,0.0,56.606574465530976,0.0791974999992817 +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732 +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766 +15,239.42184376859217,0.0,0.0,57.962429061549685,0.0810944580007344 +16,235.06720385039952,0.0,0.0,56.908199825929934,0.0796195000002626 +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046 +18,235.1504876044873,0.0,0.0,56.92836226646714,0.0796477090007101 +19,233.54008410112257,0.0,0.0,56.53849433564263,0.0791022500015969 +20,236.13485910454932,0.0,0.0,57.166672031125465,0.0799811249999038 +21,236.4991092645872,0.0,0.0,57.25485456171471,0.0801044999971054 +22,233.79657231308929,0.0,0.0,56.60058841844326,0.0791891250009939 +23,225.861185687578,0.0,0.0,54.679484324024344,0.076501333998749 +24,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449 +25,226.48622570091325,0.0,0.0,54.8308023360458,0.0767130410022218 +26,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544 +27,236.39749713231657,0.0,0.0,57.230254943251225,0.0800700830004643 +28,240.4058491717482,0.0,0.0,58.20065019659257,0.0814277499994204 +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463 +1,222.34524711035735,0.0,0.0,53.789566230930056,0.0762266249985259 +2,234.88450207831713,0.0,0.0,56.82305174209469,0.0805254580009204 +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092 +4,231.14880819995636,0.0,0.0,55.91931597126064,0.0792447500025446 +5,226.3184260321476,0.0,0.0,54.75075417417805,0.0775887499985401 +6,233.75602738491304,0.0,0.0,56.550052138776614,0.0801385830018261 +7,234.5266979302004,0.0,0.0,56.73649207791049,0.0804027919984946 +8,232.1996204913718,0.0,0.0,56.1735275547325,0.0796049999989918 +9,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767 +10,232.00807659282628,0.0,0.0,56.12718942360155,0.0795393330008664 +11,235.28654971516897,0.0,0.0,56.92031475208247,0.0806632919993717 +12,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185 +13,232.4236148875455,0.0,0.0,56.22771608165147,0.0796817920017929 +14,237.5479969606639,0.0,0.0,57.467402076728234,0.0814385839985334 +15,236.38512621563677,0.0,0.0,57.186081410914305,0.0810399170004529 +16,233.71664925617893,0.0,0.0,56.5405258165767,0.0801250829972559 +17,235.04529604296468,0.0,0.0,56.86195087631657,0.0805805829986638 +18,233.1673012201283,0.0,0.0,56.40762802382869,0.0799367500003427 +19,237.1459493238121,0.0,0.0,57.37013906674045,0.0813007500000821 +20,233.21457829256337,0.0,0.0,56.419065251527506,0.0799529579999216 +21,215.0150838520788,0.0,0.0,52.01625959546593,0.0737136249990726 +22,232.95108619602212,0.0,0.0,56.35532147574445,0.0798626249998051 +23,232.76695704397656,0.0,0.0,56.31077711355224,0.0797994999993534 +24,232.50881162889073,0.0,0.0,56.24832680223491,0.0797110000021348 +25,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835 +26,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423 +27,233.43504906083848,0.0,0.0,56.47240134549057,0.0800285419973079 +28,220.28603711570713,0.0,0.0,53.291403963779565,0.0755206659996474 +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.0795444169998518 +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.0758981670005596 +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.0805557909989147 +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.0807310410018544 +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.0746782089991029 +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.0837202080001588 +6,246.7651896921608,0.8144065666407948,0.0,66.67511152107028,0.0849927500021294 +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164 +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.0833640839991858 +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.0810425419986131 +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.0838655829975323 +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.0809435420014779 +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884 +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.0840073340004892 +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.0828537080014939 +15,220.82130434738664,0.7287831826646424,0.0,59.66516230250094,0.0760569590020168 +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.0821004999997967 +17,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.0811298329972487 +18,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.0812817919977533 +19,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.080107333997148 +20,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.0805614580021938 +21,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.0783772499999031 +22,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.0739163329999428 +23,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.0811356670019449 +24,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.0798642080007994 +25,230.1259904385399,0.7594917176189435,0.0,62.17925670767264,0.0792617500010237 +26,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.0804298330003803 +27,238.17642466410143,0.786060807472282,0.0,64.35445654218726,0.0820345419997465 +28,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.0799495419996674 +0,241.9872343116464,0.0,0.0,57.15813260782817,0.0795744579991151 +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178 +2,242.65575313120232,0.0,0.0,57.31603881906987,0.0797942920034984 +3,243.91080493823523,0.0,0.0,57.61248593463834,0.0802070000027015 +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623 +5,243.5832631360067,0.0,0.0,57.5351195486815,0.0800992920012504 +6,244.43005848717624,0.0,0.0,57.73513522765531,0.0803777500004798 +7,245.45361291465915,0.0,0.0,57.97690194672964,0.0807143329984683 +8,244.62937278860463,0.0,0.0,57.782213881635094,0.0804432920012914 +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736 +10,238.4692861580264,0.0,0.0,56.327182381697185,0.078417625001748 +11,241.07885838454743,0.0,0.0,56.94357140650459,0.0792757500021252 +12,242.28411354448383,0.0,0.0,57.22825640013194,0.0796720830003323 +13,246.60273699779663,0.0,0.0,58.24832860654358,0.0810922079981537 +14,241.59570345181905,0.0,0.0,57.065651808707806,0.0794457080010033 +15,231.5265209579827,0.0,0.0,54.687279784777374,0.0761345840001013 +16,248.01263127655392,0.0,0.0,58.58134999247521,0.0815558339963899 +17,243.81577315917053,0.0,0.0,57.590039134726815,0.0801757499975792 +18,244.07033057552212,0.0,0.0,57.65016638318072,0.0802594580018194 +19,242.9038483716201,0.0,0.0,57.3746396815968,0.0798758750024717 +20,243.88077489357264,0.0,0.0,57.60539274528096,0.0801971250002679 +21,242.48862493919952,0.0,0.0,57.27656262360784,0.0797393339998961 +22,243.75697815249185,0.0,0.0,57.57615157244288,0.0801564159992267 +23,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107 +24,247.45054804601023,0.0,0.0,58.44858419629822,0.0813709999965794 +25,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359 +26,243.3441601704367,0.0,0.0,57.478642689264305,0.0800206659987452 +27,242.30248736229245,0.0,0.0,57.23259635268276,0.0796781249991909 +28,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873 +0,228.51614058990577,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781 +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.0799711670006217 +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.0796211670021875 +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.0794739169978129 +4,229.52454429292905,0.803352641538617,0.0,56.83719938885715,0.0798063750007713 +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.0803199590009171 +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.0803647499997168 +7,230.02868718081663,0.8051171784074085,0.0,56.962040372324154,0.0799816670005384 +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.0793937079979514 +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.0795502499968279 +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844 +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.0796230419982748 +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532 +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.0812716660002479 +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.0813294170002336 +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.0794567499979166 +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.079882500001986 +17,230.13929307294055,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928 +18,233.4668454975468,0.8171509832202308,0.0,57.81343206283133,0.0811771249973389 +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.0776905000020633 +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.0788508750010805 +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.0794899579996126 +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.0768046659977699 +23,231.4062996484221,0.8099389224970295,0.0,57.30317876666483,0.080460667002626 +24,232.7924193674008,0.81479044258679,0.0,57.64642381301539,0.0809426250016258 +25,221.0030247376175,0.7735267017212804,0.0,54.72701414678058,0.0768434169985994 +26,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.0776983750001818 +27,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.0798696249985368 +28,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.079886333001923 +0,217.31809402608985,0.662843859774566,0.0,54.132248548256214,0.0751640829985262 +1,229.9303272649387,0.7013125450346716,0.0,57.273857844498174,0.0795262920000823 +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.0799910829991858 +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.0798349590004363 +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546 +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.0802340410009492 +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.074771250001504 +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.0808146669987763 +8,234.6474003152265,0.7157001316804293,0.0,58.44884408723506,0.0811577919994306 +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.0792908749972411 +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438 +11,229.3134040808069,0.6994308621201081,0.0,57.120187073142155,0.0793129160010721 +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.0796832499981974 +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.0801722920004976 +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.0801286669993714 +15,242.73663270778175,0.7403731716577222,0.0,60.463809018713974,0.083955624999362 +16,225.1590403972453,0.6867596003401816,0.0,56.08536736111483,0.0778760409993992 +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.0797353329980978 +18,230.14114558595097,0.7019555638787175,0.0,57.32637105009526,0.0795992079983989 +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.0801895000004151 +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758 +21,231.5017183127908,0.7061054589061156,0.0,57.66527914399945,0.0800697910017333 +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.0792922079999698 +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.0770003340003313 +24,234.9810967368232,0.7167179421166722,0.0,58.53196527286156,0.081273208001221 +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.0736666250013513 +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.080062208999152 +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205 +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416 +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.0792593750011292 +0,231.66268036286448,0.0672070439114779,0.0,59.881476125126845,0.0804943750008533 +1,231.99748654195568,0.0673041736414144,0.0,59.968018714500296,0.0806107079988578 +2,232.69804026717333,0.0675074094189652,0.0,60.14910179229807,0.0808541249971313 +3,232.398368697592,0.0674204724971256,0.0,60.071640994938925,0.0807500000009895 +4,218.63578046305977,0.0634278446368029,0.0,56.51420957139142,0.0759679999973741 +5,236.23653928270616,0.0685339539549481,0.0,61.06375297385877,0.0820836250022694 +6,224.8190391019204,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951 +7,232.2963206294109,0.0673908676035424,0.0,60.045263034756346,0.0807145420003507 +8,235.48322320982325,0.0683154114330789,0.0,60.869031586873376,0.0818218750027881 +9,233.22039698135623,0.0676589489356995,0.0,60.284123501708265,0.0810356250003678 +10,222.17847558987393,0.0644556064954667,0.0,57.42994538746088,0.0771989579989167 +11,235.83937549829105,0.06841873382602,0.0,60.96109183898384,0.0819456249992072 +12,229.9330033409012,0.0667052519120688,0.0,59.434379453653314,0.0798933750011201 +13,228.71740877714217,0.0663525990070038,0.0,59.1201657152404,0.0794710000009217 +14,231.33051329738623,0.0671106798077708,0.0,59.79561570872386,0.0803789589990628 +15,229.53188230999976,0.0665888837568899,0.0,59.330695427388974,0.0797539999985019 +16,229.48139935482175,0.0665742382810623,0.0,59.31764630842652,0.0797364590034703 +17,230.42646205313747,0.0668484079063352,0.0,59.56193144454467,0.0800648339973122 +18,231.01585022398584,0.0670193937406399,0.0,59.71427982291018,0.0802696249993459 +19,230.07786450510628,0.0667472771990444,0.0,59.471823984348624,0.0799437089990533 +20,228.97666749951748,0.0664278118652502,0.0,59.187180371937934,0.0795610829991346 +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.0809936670011666 +22,229.52001057054088,0.0665854396781377,0.0,59.32762675322075,0.0797498749998339 +23,231.32547392448515,0.0671092178487047,0.0,59.794313103195904,0.0803772079998452 +24,230.29359350566224,0.0668098617654952,0.0,59.52758683305629,0.0800186669985123 +25,231.8720547369228,0.0672677849541406,0.0,59.93559639413931,0.0805671249981969 +26,231.05506295725297,0.067030769642371,0.0,59.724415751352595,0.08028325000123 +27,229.7340616961576,0.0666475374807535,0.0,59.38295589535144,0.0798242499986372 +28,228.61583845949133,0.066323132712356,0.0,59.09391124670925,0.0794357080012559 +0,232.09826942958523,0.0,0.0,56.551862602132445,0.080378708000353 +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795 +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539 +3,229.08763101285805,0.0,0.0,55.81830603358978,0.0793360839998058 +4,230.24289431199097,0.0,0.0,56.09979150749018,0.0797361669974634 +5,230.65509338121083,0.0,0.0,56.20022579846761,0.0798789170003146 +6,229.2921654886054,0.0,0.0,55.86814184493939,0.0794069170005968 +7,231.28662566367748,0.0,0.0,56.354101684550855,0.0800976250029634 +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006 +9,232.53862219376708,0.0,0.0,56.65915667665391,0.080531208001048 +10,229.66092988839787,0.0,0.0,55.95799306925431,0.0795346250015427 +11,230.27249179749467,0.0,0.0,56.107003077562155,0.0797464169991144 +12,231.61833400897208,0.0,0.0,56.43492402249065,0.0802125000009255 +13,230.59806408551117,0.0,0.0,56.18633033555602,0.0798591669990855 +14,230.8875418936153,0.0,0.0,56.25686299945956,0.0799594170021009 +15,231.22706975553947,0.0,0.0,56.33959060033449,0.0800770000023476 +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293 +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725 +18,232.0170568313989,0.0,0.0,56.532074760949975,0.0803505830008362 +19,230.92965116248496,0.0,0.0,56.26712312588466,0.0799740000002202 +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622 +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255 +22,230.93169844780863,0.0,0.0,56.267621956826474,0.079974709002272 +23,230.3377015469545,0.0,0.0,56.1228917474813,0.079768999999942 +24,231.03432517839207,0.0,0.0,56.2926274546336,0.0800102499997592 +25,231.1403216955104,0.0,0.0,56.318454017180194,0.0800469579990021 +26,232.6395683748504,0.0,0.0,56.68375270047117,0.0805661670019617 +27,232.01200359601728,0.0,0.0,56.53084351578086,0.0803488329984247 +28,231.3346313210155,0.0,0.0,56.365798494460634,0.0801142499985871 +0,219.4740765737124,0.0,0.0,54.50948419192974,0.0763789999982691 +1,224.61151246000796,0.0,0.0,55.78543889511322,0.0781668750023527 +2,228.51035754085143,0.0,0.0,56.75377209244936,0.0795237089987495 +3,229.6376006964406,0.0,0.0,57.03373883808645,0.079915999998775 +4,230.7343159231135,0.0,0.0,57.30612354175918,0.0802976669983763 +5,226.04921290785495,0.0,0.0,56.14251209053602,0.0786672079993877 +6,230.46205301041525,0.0,0.0,57.23850320514603,0.0802029169972229 +7,231.10774857892207,0.0,0.0,57.39887081180731,0.0804276250019029 +8,236.0373364930903,0.0,0.0,58.62320353790871,0.0821431669974117 +9,230.05844876046567,0.0,0.0,57.138262393903645,0.0800624590010556 +10,229.0068702685671,0.0,0.0,56.87708803529338,0.079696500000864 +11,231.19179807051853,0.0,0.0,57.419745689173425,0.0804568749990721 +12,231.6291686756857,0.0,0.0,57.52837285125362,0.0806090839978423 +13,228.26024347869043,0.0,0.0,56.69165273543744,0.0794366670015733 +14,229.64203161645344,0.0,0.0,57.03483931960193,0.0799175419997482 +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065 +16,230.78484044554267,0.0,0.0,57.318672019919575,0.0803152499975112 +17,228.86259822421837,0.0,0.0,56.84125603707502,0.0796462920006888 +18,233.46328968448563,0.0,0.0,57.98390268737843,0.0812473750011122 +19,230.21050220418272,0.0,0.0,57.17602701246824,0.0801153749998775 +20,228.4539624795744,0.0,0.0,56.73976558311954,0.079504082998028 +21,229.74487946877807,0.0,0.0,57.06038303514221,0.0799533339995832 +22,229.0921151390923,0.0,0.0,56.89825980188594,0.0797261660009098 +23,229.87753688321,0.0,0.0,57.093330376112064,0.0799995000015769 +24,230.25444357048204,0.0,0.0,57.18694047090059,0.0801306670000485 +25,230.96970050207184,0.0,0.0,57.36458462375144,0.0803795829997398 +26,231.0153171132757,0.0,0.0,57.37591415289732,0.0803954580005665 +27,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631 +28,229.60838883425131,0.0,0.0,57.0264836598664,0.0799058340016927 +0,233.03169757350443,0.0,0.0,57.14590514588489,0.080589625002176 +1,230.56252454563105,0.0,0.0,56.540394697697366,0.0797357080009533 +2,229.26155447947497,0.0,0.0,56.2213603655772,0.0792857919987 +3,228.48962291036645,0.0,0.0,56.03206110420322,0.0790188339997257 +4,230.6690331650355,0.0,0.0,56.56651359707923,0.0797725420015922 +5,220.39776413510504,0.0,0.0,54.04771048220629,0.0762204169986944 +6,220.29306275915428,0.0,0.0,54.022034769584245,0.0761842079991765 +7,231.44915659141645,0.0,0.0,56.757821731510106,0.0800423330001649 +8,233.91712382953764,0.0,0.0,57.36303648624681,0.0808958330017048 +9,232.205545892069,0.0,0.0,56.94330959294072,0.080303915998229 +10,230.29842747184577,0.0,0.0,56.47563069140557,0.0796443750004982 +11,227.92781120901137,0.0,0.0,55.89428912498413,0.0788245420008024 +12,229.44806166938773,0.0,0.0,56.26709715715861,0.0793502919987076 +13,229.2592643478582,0.0,0.0,56.22079876110234,0.0792849999997997 +14,229.88360367044356,0.0,0.0,56.37390426597064,0.0795009159992332 +15,229.66167746902968,0.0,0.0,56.31948173981888,0.0794241670009796 +16,233.4874835436179,0.0,0.0,57.25767664343713,0.0807472499982395 +17,213.5309742305619,0.0,0.0,52.363781091364665,0.0738456670005689 +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171 +19,231.8804855552513,0.0,0.0,56.86359568548564,0.0801915000010922 +20,230.5933690691165,0.0,0.0,56.54795863956332,0.0797463749986491 +21,232.7323000327177,0.0,0.0,57.07248447545736,0.0804860839998582 +22,231.33204741758416,0.0,0.0,56.729103279002494,0.0800018329973681 +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533 +24,229.07625018644575,0.0,0.0,56.17591855803412,0.0792217079979309 +25,230.23830565490223,0.0,0.0,56.460887136412715,0.0796235830021032 +26,231.3146979161939,0.0,0.0,56.724848694878965,0.0799958329989749 +27,227.2761174880526,0.0,0.0,55.734475554770874,0.0785991659977298 +28,231.517470276152,0.0,0.0,56.77457416213956,0.0800659580017963 +0,227.44231616412424,0.0,0.0,55.812647893416646,0.0788156249982421 +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113 +2,232.46123844002852,0.0,0.0,57.04425398375972,0.0805548329990415 +3,231.72020051948184,0.0,0.0,56.86240880546275,0.0802980410007876 +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412 +5,228.2878413970284,0.0,0.0,56.02013347879481,0.0791086250028456 +6,233.16163633716695,0.0,0.0,57.216126403446424,0.0807975420029833 +7,233.40656160322865,0.0,0.0,57.2762292368393,0.0808824159976211 +8,229.68887379156396,0.0,0.0,56.36393637810691,0.0795941249998577 +9,231.72140676401816,0.0,0.0,56.86270480887458,0.0802984590009145 +10,230.73183059687105,0.0,0.0,56.619870198709755,0.0799555410012544 +11,230.14337967589475,0.0,0.0,56.47546873196024,0.0797516250022454 +12,228.8957740192038,0.0,0.0,56.16931560970449,0.079319291999127 +13,231.420685462694,0.0,0.0,56.78891004461117,0.0801942499965662 +14,226.5801978801324,0.0,0.0,55.60109049706921,0.0785168750007869 +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736 +16,231.71876053022535,0.0,0.0,56.86205544284009,0.0802975420010625 +17,230.5897102165952,0.0,0.0,56.584994917466624,0.0799062920013966 +18,230.15408003990945,0.0,0.0,56.47809452147538,0.0797553330012306 +19,231.50172891975,0.0,0.0,56.8087975044692,0.0802223339996999 +20,231.60729837620207,0.0,0.0,56.834703461639485,0.080258917001629 +21,232.95806964037587,0.0,0.0,57.166172654458805,0.0807270000004791 +22,230.15576242448788,0.0,0.0,56.478507366102015,0.0797559159982483 +23,231.49847956893817,0.0,0.0,56.808000138016894,0.0802212080016033 +24,232.94869093924265,0.0,0.0,57.163871191156474,0.0807237499975599 +25,232.1919025824176,0.0,0.0,56.97816097327938,0.0804614999979094 +26,231.04902374637277,0.0,0.0,56.69770703165235,0.0800654579979891 +27,233.78796274238013,0.0,0.0,57.36982223151427,0.0810145830000692 +28,229.2454318904766,0.0,0.0,56.2551190432152,0.0794404590014892 +0,231.74900516849095,0.0,0.0,56.40772130442817,0.0799167500008479 +1,231.44620836593853,0.0,0.0,56.3340205451182,0.0798123329986992 +2,233.38067208769257,0.0,0.0,56.80486912723355,0.0804794169998786 +3,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277 +4,230.28251252118744,0.0,0.0,56.05077690898644,0.0794110419992648 +5,231.06523660858215,0.0,0.0,56.24129199727312,0.0796809580024273 +6,232.49512115383507,0.0,0.0,56.58932597855168,0.0801740419992711 +7,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101 +8,224.10794249743364,0.0,0.0,54.54788620694715,0.0772817920005763 +9,233.06518831792772,0.0,0.0,56.72808035936796,0.0803706250007962 +10,230.32105483741717,0.0,0.0,56.06015811099304,0.0794243330019526 +11,231.99791348728908,0.0,0.0,56.46830560366566,0.0800025839998852 +12,231.9559841150949,0.0,0.0,56.4580999920408,0.0799881249986356 +13,231.27282163561787,0.0,0.0,56.291818204898,0.0797525420020974 +14,232.3729636964068,0.0,0.0,56.55959284632588,0.0801319169986527 +15,230.21448714015344,0.0,0.0,56.03421952729583,0.0793875840026885 +16,232.06509211751913,0.0,0.0,56.48465688616146,0.0800257500013685 +17,233.97236945534013,0.0,0.0,56.94888830085012,0.0806834590002836 +18,214.36216993645792,0.0,0.0,52.17576460014163,0.0739210419997107 +19,232.36365799337193,0.0,0.0,56.557327837667266,0.0801287080030306 +20,232.1677971782116,0.0,0.0,56.509655303893105,0.0800611670019861 +21,231.68605456379217,0.0,0.0,56.392399123592,0.0798950419994071 +22,230.5801127299852,0.0,0.0,56.123212817075014,0.0795136669985367 +23,231.682548612676,0.0,0.0,56.39154577488691,0.079893833000824 +24,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836 +25,224.88571357316405,0.0,0.0,54.73719573190735,0.0775499999981548 +26,230.4003201673142,0.0,0.0,56.07945129688906,0.0794516670030134 +27,232.91258211809028,0.0,0.0,56.69093600147309,0.0803180000002612 +28,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247 +0,228.4317049341564,0.0,0.0,55.90521754742971,0.07943662499747 +1,224.63081830801715,0.0,0.0,54.975007821206816,0.0781148749993008 +2,229.29176212320093,0.0,0.0,56.115703584254696,0.0797357080009533 +3,230.26313272867944,0.0,0.0,56.35343190237108,0.0800735000011627 +4,230.50408894930908,0.0,0.0,56.412402306403166,0.0801572919990576 +5,231.4912756090507,0.0,0.0,56.654001365468474,0.080500583997491 +6,231.25858687418443,0.0,0.0,56.597054303994305,0.0804196669996599 +7,233.34570857816615,0.0,0.0,57.10784589022658,0.081145459000254 +8,234.07839758501584,0.0,0.0,57.28716048376931,0.0814002499973867 +9,232.5652090520479,0.0,0.0,56.91683039254912,0.0808740419997775 +10,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632 +11,229.16762905823128,0.0,0.0,56.08532388716335,0.079692540999531 +12,231.3745703445235,0.0,0.0,56.62543951060597,0.0804599999974016 +13,230.06686980122603,0.0,0.0,56.305399508361056,0.0800052499980665 +14,232.03033867738873,0.0,0.0,56.78592892830791,0.0806880419986555 +15,235.10392526784705,0.0,0.0,57.53814293047527,0.0817568750026112 +16,233.6283588093202,0.0,0.0,57.177020275047866,0.0812437499989755 +17,228.53918224908057,0.0,0.0,55.93152100068275,0.0794739999982994 +18,230.63636872152335,0.0,0.0,56.44477578732998,0.0802032920000783 +19,230.2772722892251,0.0,0.0,56.35689234674573,0.0800784170023689 +20,230.43650836221164,0.0,0.0,56.3958629760823,0.0801337909979338 +21,228.8680844073801,0.0,0.0,56.01201484770305,0.0795883750033681 +22,222.30861533511248,0.0,0.0,54.40668363684307,0.0773073340023984 +23,229.35538580934664,0.0,0.0,56.131274522694135,0.0797578329984389 +24,231.67831058690103,0.0,0.0,56.69977535786903,0.0805656250013271 +25,217.02748644269255,0.0,0.0,53.114206921704714,0.0754708329986897 +26,229.4719703058166,0.0,0.0,56.15980682139448,0.079798375001701 +27,230.24671853567145,0.0,0.0,56.349414775977685,0.0800677920015004 +28,232.43436710389943,0.0,0.0,56.88480879739587,0.080828541998926 +0,233.25053223547215,0.0,0.0,56.63698268361321,0.0794133329982287 +1,221.60881151463116,0.0,0.0,53.81018555455842,0.0754497499983699 +2,238.10873630723785,0.0,0.0,57.81663281023447,0.0810673750020214 +3,231.07861771633884,0.0,0.0,56.10960688801906,0.0786738750030053 +4,229.07742623183637,0.0,0.0,55.6236853925005,0.077992541999265 +5,234.276462541354,0.0,0.0,56.886095071104634,0.0797626249986933 +6,236.55130141861645,0.0,0.0,57.43846255710658,0.0805371249989548 +7,235.73072929591643,0.0,0.0,57.23921444110614,0.0802577499998733 +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205 +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879 +10,233.68327444202225,0.0,0.0,56.74205945503127,0.0795606659994518 +11,230.57134184737788,0.0,0.0,55.98643214397538,0.0785011659972951 +12,233.56836056947228,0.0,0.0,56.71415651758738,0.0795215420002932 +13,237.12197023826567,0.0,0.0,57.577030129693824,0.080731417001516 +14,234.29359506112613,0.0,0.0,56.890255122601026,0.0797684579993074 +15,234.53138547652537,0.0,0.0,56.9479944619724,0.0798494169976038 +16,234.16852151095043,0.0,0.0,56.859885251940554,0.079725874998985 +17,234.93438883615585,0.0,0.0,57.04585016280221,0.0799866250017657 +18,234.65144234374125,0.0,0.0,56.977146201282,0.079890291999618 +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866 +20,229.93275390578643,0.0,0.0,55.83137271562917,0.0782837500009918 +21,234.6409155169552,0.0,0.0,56.974590118341126,0.0798867079975025 +22,237.23517173824405,0.0,0.0,57.60451727552191,0.0807699580000189 +23,235.77833496092907,0.0,0.0,57.250773862639385,0.0802739579994522 +24,233.97001868432088,0.0,0.0,56.81168557133654,0.0796582919974753 +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417 +26,231.6775567969512,0.0,0.0,56.255038934891886,0.0788777920024585 +27,234.7314802516568,0.0,0.0,56.99658069329023,0.0799175419997482 +28,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256 +0,226.42116177213327,0.0,0.0,56.03535537217832,0.0791302920006273 +1,224.91178830861125,0.0,0.0,55.661811319335285,0.0786027920003107 +2,228.6300203842071,0.0,0.0,56.582010006072565,0.0799022499995771 +3,229.0332362707683,0.0,0.0,56.68179902454736,0.0800431669995305 +4,228.41553770137455,0.0,0.0,56.52892921954344,0.0798272920001181 +5,231.42689083939575,0.0,0.0,57.27418748921862,0.0808797079989744 +6,219.32257694174305,0.0,0.0,54.27857733739913,0.0766494589988724 +7,226.24316157257405,0.0,0.0,55.99130337473889,0.0790680840000277 +8,229.2636968600091,0.0,0.0,56.73883406895891,0.0801237090017821 +9,230.3898811711504,0.0,0.0,57.01754537666294,0.080517291000433 +10,230.30606873637544,0.0,0.0,56.99680323608533,0.0804879999996046 +11,228.31634253998695,0.0,0.0,56.504380117878,0.0797926250015734 +12,228.8224476250095,0.0,0.0,56.62963244885686,0.0799695000023348 +13,224.49235988305836,0.0,0.0,55.5580099754366,0.0784562089975224 +14,216.08373905100171,0.0,0.0,53.477020491828235,0.075517541001318 +15,226.49722560636775,0.0,0.0,56.05417986697792,0.0791568749991711 +16,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319 +17,227.09393887275,0.0,0.0,56.20185616929578,0.0793654159970174 +18,228.4411698641868,0.0,0.0,56.53527274035617,0.0798362499990616 +19,228.40921978706487,0.0,0.0,56.52736564407734,0.0798250839980028 +20,228.2586401211186,0.0,0.0,56.490099758560795,0.0797724590011057 +21,229.08092389643008,0.0,0.0,56.693600894257315,0.0800598330024513 +22,228.80122768941447,0.0,0.0,56.62438087862935,0.0799620840007264 +23,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063 +24,233.76201033495235,0.0,0.0,57.85208952693407,0.0816957919996639 +25,228.461082144718,0.0,0.0,56.540200688376146,0.0798432089977723 +26,227.8610268005468,0.0,0.0,56.39169727910804,0.0796335000013641 +27,227.20291135293743,0.0,0.0,56.228824989724494,0.0794034999998984 +28,228.72158427175552,0.0,0.0,56.60467049830692,0.0799342499994963 +0,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.0793974170010187 +1,231.44524097492229,0.7330543192410438,0.0,57.97793252179165,0.0797550839997711 +2,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.0800826669983507 +3,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.0800887080004031 +4,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297 +5,232.4248898509369,0.7361571518457545,0.0,58.22333837325513,0.0800926669980981 +6,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.0803107920000911 +7,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.0799042079997889 +8,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.0808812920004129 +9,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859 +10,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.0794993339986831 +11,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.0802035840024473 +12,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.0801895829972636 +13,232.42766991836817,0.7361659571269938,0.0,58.22403479095315,0.0800936249979713 +14,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.0797295000011217 +15,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.0799505420000059 +16,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.0796424159998423 +17,239.55219725510383,0.7587314050694335,0.0,60.008756582764285,0.0825487079964659 +18,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.0812833330019202 +19,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.0804598750000877 +20,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.0804541249999601 +21,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.0794215829992026 +22,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.080049083000631 +23,232.1192158874564,0.7351889935968963,0.0,58.14676585720907,0.0799873329997353 +24,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.0798464580002473 +25,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.0792702500002633 +26,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.0836044580028101 +27,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.0798420829996757 +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.0789188749986351 +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.0791977920016506 +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.0790694999996048 +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.0798704169974371 +4,232.7516641096096,1.0435784766268297,0.0,58.70970526571582,0.0802916249995178 +5,230.0622758174019,1.0315201837343737,0.0,58.03132904621767,0.0793638750001264 +6,230.98301627009252,1.0356484675112625,0.0,58.26357830127876,0.0796814999994239 +7,226.34355984443872,1.0148467392504483,0.0,57.09331333073491,0.0780810409996775 +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.0827262089987925 +9,232.50767840573172,1.0424845285764657,0.0,58.64816186572117,0.0802074580024054 +10,230.61547089220113,1.0340005203439735,0.0,58.170867983222266,0.0795547090019681 +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.0818103749988949 +12,223.25292728760996,1.0009894049632495,0.0,56.31372652438411,0.0770148750016233 +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.079476541999611 +14,231.05210405201868,1.035958233383364,0.0,58.281005129696354,0.0797053329988557 +15,230.8566737288988,1.0350819909742357,0.0,58.23170942771182,0.0796379160019569 +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.0801497499996912 +17,235.03425108209285,1.0538128121991437,0.0,59.28546917662278,0.0810790420000557 +18,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.0816356670002278 +19,233.53797138226943,1.0471040082224985,0.0,58.90804484967861,0.0805628749985771 +20,230.25214908541847,1.032371510218104,0.0,58.07922302646367,0.0794293749968346 +21,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.0800244170022779 +22,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.0798051670026325 +23,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.0763507919982657 +24,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.0793419999972684 +25,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.0790835829975549 +26,236.30393803482497,1.059505652166557,0.0,59.60573733478951,0.0815170419991773 +27,233.44375945039985,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887 +28,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058 +0,230.518560530242,0.8053050149528105,0.0,57.34442793976471,0.080327292002039 +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.0802637079978012 +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285 +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.0799302919986075 +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.0747683330009749 +5,232.19999083317265,0.811179007277459,0.0,57.762705143215726,0.0809132089998456 +6,228.9162862924588,0.7997075503666682,0.0,56.94584181569317,0.0797689579994767 +7,229.74181621161017,0.8025914976824808,0.0,57.151202897473325,0.0800566249999974 +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.0797927080020599 +9,229.8543330351777,0.8029845695552058,0.0,57.17919289041028,0.0800958330000867 +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.0801922499995271 +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447 +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.0796882089998689 +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.0825952499981212 +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.0810012080000888 +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.0809156670002266 +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.0799027920002117 +17,229.4390584890892,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617 +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.0801350420006201 +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.0804691659977834 +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.0799565829984203 +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.0798089579984662 +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.0805384579980454 +23,229.24403659660769,0.8008525295951359,0.0,57.027373878253634,0.0798831669999344 +24,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.0800860000017564 +25,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434 +26,227.427249190088,0.7945056740265084,0.0,56.575424871304286,0.0792500829993514 +27,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.079899625001417 +28,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.0798307090008165 +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987 +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.0773468749976018 +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888 +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.0805877500024507 +4,230.5488593174952,0.8730367524402673,0.0,57.25106395810215,0.0799453340005129 +5,231.88767512675335,0.8781065472320985,0.0,57.58352550118184,0.0804095829989819 +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.0736084160016616 +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.0800470840003981 +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.0799534170000697 +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.0799360419987351 +10,233.5648652940369,0.8844576897239966,0.0,58.00001388382362,0.0809911670003202 +11,240.11716945213135,0.909269794022053,0.0,59.62711533875386,0.0832632500023464 +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.0759962089978216 +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.0802892920000886 +14,218.27767539201488,0.8265685348372249,0.0,54.20382122682572,0.0756901670029037 +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.0803171670013398 +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995 +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.079914791000192 +18,230.85646606210256,0.874201590098262,0.0,57.32745042759757,0.0800519999975222 +19,232.308354026224,0.8796995637462603,0.0,57.6879906225913,0.0805554580001626 +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418 +21,229.6469381758771,0.869621379634839,0.0,57.02709431836155,0.0796325829978741 +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.0763502500012691 +23,225.7957025466795,0.8550376152364794,0.0,56.07073592223835,0.0782971249973343 +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.0806615000001329 +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.0789183339984447 +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.0803770000020449 +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.0772449169999163 +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.0793845000007422 +29,229.30784864573525,0.8683373237385839,0.0,56.94288988362637,0.0795150000012654 +0,250.52289280398944,0.0,0.0,59.092548476657214,0.0806277090014191 +1,248.85123961316407,0.0,0.0,58.69824420326574,0.0800897080007416 +2,244.3419790590411,0.0,0.0,57.6346140698836,0.0786384580023877 +3,252.30082937497212,0.0,0.0,59.5119225379787,0.0811999159996048 +4,250.19896865042335,0.0,0.0,59.01614227068889,0.0805234580002434 +5,253.6747113428116,0.0,0.0,59.83598947604204,0.0816420829978596 +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064 +7,252.90957722267183,0.0,0.0,59.65551205707467,0.0813958340004319 +8,251.272752152766,0.0,0.0,59.26942293081308,0.0808690420017228 +9,249.41985231096191,0.0,0.0,58.832366770002,0.0802727089976542 +10,250.0490483597647,0.0,0.0,58.98077954617207,0.0804752080002799 +11,251.42707217541096,0.0,0.0,59.30582345021072,0.0809187080012634 +12,248.47915764070973,0.0,0.0,58.61047868312323,0.0799699579984007 +13,250.05034404295012,0.0,0.0,58.98108516782839,0.0804756249999627 +14,249.42062599741175,0.0,0.0,58.83254926471747,0.0802729579991137 +15,247.92867519320183,0.0,0.0,58.48063262254641,0.0797927919993526 +16,248.99960632515408,0.0,0.0,58.73324047455442,0.0801374580005358 +17,247.65887149478823,0.0,0.0,58.41699217855648,0.0797059590004209 +18,249.7995685662133,0.0,0.0,58.92193304065166,0.0803949159999319 +19,243.1112872649154,0.0,0.0,57.34432237761458,0.0782423749988083 +20,248.4247855184506,0.0,0.0,58.5976535587028,0.0799524590001965 +21,250.2673260892368,0.0,0.0,59.03226620739428,0.0805454580004152 +22,246.058297611157,0.0,0.0,58.039453867584825,0.0791908339997462 +23,248.9287911192123,0.0,0.0,58.71653680750362,0.0801146669982699 +24,247.1768707710309,0.0,0.0,58.30329937062335,0.0795508330011216 +25,248.9422544277273,0.0,0.0,58.71971249018146,0.0801189999983762 +26,251.83799359197425,0.0,0.0,59.40275029572405,0.08105095800056 +27,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028 +28,248.2156956504442,0.0,0.0,58.548334101215886,0.0798851660001673 +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552 +1,224.81426846497675,0.0,0.0,54.81441236053592,0.0781784999999217 +2,226.5529604006259,0.0,0.0,55.23834175513952,0.0787831250017916 +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438 +4,231.3919661313005,0.0,0.0,56.418192381824795,0.080465874998481 +5,230.0666493794804,0.0,0.0,56.09505248755288,0.0800049999998009 +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661 +7,233.63006128224424,0.0,0.0,56.96388670693858,0.0812441659982141 +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709 +9,229.45976573945956,0.0,0.0,55.94708158550068,0.0797939580006641 +10,230.95702356067633,0.0,0.0,56.312144302305065,0.0803146250000281 +11,225.23255524946725,0.0,0.0,54.916399411654055,0.0783239579977816 +12,228.58460950675445,0.0,0.0,55.733700224313345,0.0794896249972225 +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901 +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385 +15,229.41974814640807,0.0,0.0,55.937324460820925,0.0797800420004932 +16,227.88570495852065,0.0,0.0,55.56329270361139,0.0792465829981665 +17,230.7855627294707,0.0,0.0,56.27033857187008,0.0802550000007613 +18,231.2199071705155,0.0,0.0,56.37624081491051,0.0804060420014138 +19,228.32004939956545,0.0,0.0,55.669194946651814,0.079397624998819 +20,229.05094560519663,0.0,0.0,55.84740270135428,0.0796517920025507 +21,228.0491398436106,0.0,0.0,55.60314154081637,0.0793034169983002 +22,229.22600099912444,0.0,0.0,55.8900848612288,0.0797126670004217 +23,229.4193886869974,0.0,0.0,55.93723681711175,0.0797799169995414 +24,228.67255850144625,0.0,0.0,55.75514402543258,0.0795202090012026 +25,230.46097335054304,0.0,0.0,56.19119690445779,0.0801421249998384 +26,235.15859470850617,0.0,0.0,57.33657506923012,0.0817757089971564 +27,229.769617397626,0.0,0.0,56.022629888894855,0.0799017080025805 +28,230.28699632438577,0.0,0.0,56.148777673160055,0.0800816250011848 +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887 +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.0796174999995855 +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.0796333750004123 +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.0792222920026688 +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.0796523749995685 +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398 +6,242.56584621915377,0.8435312498927311,0.0,63.60225624191192,0.0801713749970076 +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.079640541000117 +8,238.9652650419552,0.8310101023854332,0.0,62.65816171986166,0.0789813330011384 +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.0791503330001432 +10,240.76927408882528,0.8372836072083226,0.0,63.131183983507526,0.0795775830010825 +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.0801001669969991 +12,241.2736644165797,0.8390376422888429,0.0,63.26343822857876,0.0797442909970413 +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.0799174999992828 +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.0786007089991471 +15,239.97114719201255,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209 +16,241.24731757307185,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015 +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.0798793750000186 +18,243.9540875360528,0.8483589078315926,0.0,63.96626165050208,0.0806302079981833 +19,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842 +20,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.0790053750024526 +21,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.0793227089998254 +22,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263 +23,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.0781720000013592 +24,239.45074845867185,0.8326983880187502,0.0,62.78545845661377,0.0791417920008825 +25,240.48108950298655,0.8362814351891312,0.0,63.0556202132605,0.0794823340002039 +26,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.0798562079980911 +27,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.0802619999994931 +0,231.5143790184337,0.0,0.0,56.43350933210195,0.07974941700013 +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043 +2,232.4218146090488,0.0,0.0,56.654704123926024,0.0800620000009075 +3,230.38631370178572,0.0,0.0,56.15853425347324,0.0793608340027276 +4,231.63461351252136,0.0,0.0,56.46281746610602,0.0797908339991408 +5,235.2815330550488,0.0,0.0,57.351783710488874,0.0810470830001577 +6,233.1955921220685,0.0,0.0,56.843318674292625,0.0803285420006432 +7,232.45447362177313,0.0,0.0,56.662665023405225,0.0800732500028971 +8,230.41134935946187,0.0,0.0,56.16463689827264,0.0793694579988368 +9,231.09162631947495,0.0,0.0,56.3304599298013,0.0796037920008529 +10,230.3859508211676,0.0,0.0,56.15844579837669,0.0793607090017758 +11,231.53022371058705,0.0,0.0,56.43737160444242,0.0797548749978886 +12,231.62904551287176,0.0,0.0,56.461460220990105,0.0797889159985061 +13,232.76678951884415,0.0,0.0,56.738794558713785,0.0801808329997584 +14,232.42798352675112,0.0,0.0,56.656207847695576,0.0800641249988984 +15,231.8744757845807,0.0,0.0,56.52128584213549,0.079873459002556 +16,232.59188239161537,0.0,0.0,56.69615952654616,0.0801205829993705 +17,222.8084544625911,0.0,0.0,54.31136954644485,0.0767504999967059 +18,231.10819677286457,0.0,0.0,56.33449911233486,0.0796095000005152 +19,231.5256282331062,0.0,0.0,56.43625141950013,0.0797532920005323 +20,233.51710189953573,0.0,0.0,56.92168929258419,0.0804392919999372 +21,232.29395967478635,0.0,0.0,56.62353844576622,0.0800179580000985 +22,230.4144962399048,0.0,0.0,56.165403975927155,0.079370542000106 +23,230.3471199864287,0.0,0.0,56.14898046717825,0.0793473330013512 +24,233.2193011110168,0.0,0.0,56.84909793281966,0.0803367090011306 +25,231.8840296201605,0.0,0.0,56.523614667116625,0.0798767499982204 +26,232.6371201920523,0.0,0.0,56.7071866076456,0.0801361659978283 +27,230.12782273774823,0.0,0.0,56.09552498254536,0.0792717920012364 +28,233.83401619952215,0.0,0.0,56.998939725933454,0.080548459001875 +0,230.37705684275676,0.1002220374895983,0.0,57.32700544405026,0.0798094169986143 +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.0802579999981389 +2,230.45222653474644,0.1002547389217284,0.0,57.345710663228665,0.0798354580001614 +3,234.36824654926497,0.1019583439164435,0.0,58.320172720205726,0.0811920829983137 +4,233.63132613550113,0.1016377578895741,0.0,58.13679751283642,0.0809367920010117 +5,230.04329489624553,0.1000768394270209,0.0,57.24395215225599,0.0796937920022173 +6,229.48124985739312,0.0998323302743879,0.0,57.10409291694992,0.0794990829999733 +7,226.653234646772,0.0986020452349646,0.0,56.400369874399765,0.0785193750016333 +8,228.51640718827412,0.0994125901341099,0.0,56.8640015567109,0.079164833001414 +9,230.26363694955552,0.1001726958887277,0.0,57.29878204835227,0.0797701249975944 +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.0796512080014508 +11,230.75483929485844,0.1003863860041437,0.0,57.42101279437023,0.0799402919983549 +12,237.0613136942452,0.1031299218507447,0.0,58.99031529862598,0.082125041000836 +13,217.22370668195057,0.0944998723964402,0.0,54.05392701076379,0.0752527080003346 +14,232.80949090029833,0.1012802309601065,0.0,57.93229210918096,0.0806520840014854 +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.0799674589979986 +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.079922290999093 +17,232.13462926046583,0.1009866426597154,0.0,57.76435960135722,0.080418291996466 +18,230.06325854563016,0.1000855243092938,0.0,57.24891990491609,0.0797007080000185 +19,232.48498623238729,0.1011390601358993,0.0,57.85154239773443,0.0805396659998223 +20,232.0403330344357,0.100945620519621,0.0,57.74089493722326,0.0803856249985983 +21,229.7789294389717,0.0999618312524528,0.0,57.17816747640304,0.0796022079994145 +22,230.30609579896037,0.100191166965905,0.0,57.30934750449767,0.0797848339971096 +23,232.81899066563767,0.1012843636886474,0.0,57.93465602990636,0.0806553750007879 +24,233.0890051681689,0.101401829394505,0.0,58.001846413656885,0.0807489159997203 +25,234.19324993623465,0.101882214299406,0.0,58.27662657926024,0.0811314590027905 +26,218.84922050226433,0.0952070274806834,0.0,54.45841971895093,0.0758158339995134 +27,225.17289320878123,0.0979580451894349,0.0,56.03200184835682,0.0780065410035604 +28,239.13076194741328,0.1040302038634338,0.0,59.50527660988416,0.0828419589997793 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/mac_report.md new file mode 100644 index 000000000..cfd12a070 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/mac_report.md @@ -0,0 +1,41 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 504.53 ms | 78.18 ms | +| **Average Power** | 4.258 W | 3.585 W | +| **Total Energy** | 1933.48 J | 252.27 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +86.36% | 0.00e+00 | +81.417 | large | βœ… | +| `gpu_mj` | +81.96% | 0.00e+00 | +2.519 | large | βœ… | +| `dram_mj` | +87.79% | 0.00e+00 | +170.568 | large | βœ… | +| `time_s` | +84.43% | 0.00e+00 | +221.489 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 86.4% lower energy (Cohen’s d = +81.417, large) +- **`gpu_mj`**: 82.0% lower energy (Cohen’s d = +2.519, large) +- **`dram_mj`**: 87.8% lower energy (Cohen’s d = +170.568, large) +- **`time_s`**: 84.4% lower time (Cohen’s d = +221.489, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/with_smell.csv new file mode 100644 index 000000000..c0f6243ae --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1682.686158652221,2.5057871078333047,0.0,471.7227756733124,0.5124309160019038 +1,1683.8252067083465,2.507483331409856,0.0,472.0420954156768,0.5127777919988148 +2,1676.8147099354564,2.4970435875855617,0.0,470.0767788416073,0.5106428750004852 +3,1694.2890935349883,2.5230657218474333,0.0,474.9755323568521,0.5159643750012037 +4,1681.3039830173152,2.5037288286533763,0.0,471.3352977567602,0.5120100000021921 +5,1685.0352589289462,2.5092852914715067,0.0,472.38132040381606,0.5131462909994298 +6,1676.5721241862557,2.496682338852537,0.0,470.00877256345296,0.5105690000018512 +7,1677.527279923109,2.4981047175409654,0.0,470.2765400928119,0.5108598749975499 +8,1673.0168005136268,2.491387896881146,0.0,469.0120762141986,0.5094862920013838 +9,1674.6516856505996,2.493822500671014,0.0,469.4703984929874,0.5099841660012316 +10,1674.632669554008,2.4937941826810937,0.0,469.46506753699146,0.5099783750010829 +11,1680.9460561506066,2.503195818666021,0.0,471.2349568499407,0.5119010000016715 +12,1681.6256541789144,2.5042078481339565,0.0,471.42547477071105,0.5121079589989677 +13,1678.1360018735634,2.499011201265135,0.0,470.4471886754992,0.5110452499975509 +14,1676.2083161462822,2.4961405708635365,0.0,469.9067829336303,0.510458208998898 +15,1675.908399712268,2.495693947629658,0.0,469.8227046211086,0.5103668750016368 +16,1678.2338308430872,2.499156884148033,0.0,470.4746139638144,0.5110750419989927 +17,1674.9585800219634,2.4942795151625616,0.0,469.5564329944028,0.5100776250001218 +18,1677.512503132874,2.498082712551933,0.0,470.27239758027656,0.5108553749996645 +19,1663.2356542575642,2.476822215656368,0.0,466.27003817136347,0.5065076249993581 +20,1680.149202574524,2.502009177052841,0.0,471.0115676107875,0.511658332998195 +21,1692.7334251702798,2.520749084420836,0.0,474.5394176391704,0.5154906250027125 +22,1682.3915848351376,2.5053484406051014,0.0,471.640195105379,0.5123412089997146 +23,1684.140169210763,2.5079523606307523,0.0,472.13039172994127,0.5128737079976418 +24,1672.9104896700917,2.491229583139879,0.0,468.9822731246927,0.5094539170022472 +25,1675.7900474123542,2.495517702246179,0.0,469.789525840184,0.5103308329998981 +26,1686.3926752242432,2.5113067000599285,0.0,472.7618573086151,0.5135596670006635 +27,1675.8914326671083,2.495668681002961,0.0,469.8179480944107,0.510361708002165 +28,1673.4633848723936,2.4920529319638933,0.0,469.13727128530945,0.5096222909996868 +29,1673.0176214411083,2.4913891193726294,0.0,469.0123063522954,0.5094865419996495 +0,1682.4930344628883,0.7702342666874948,0.0,469.7759257866164,0.513241292002931 +1,1677.4632275594502,0.7679316541045631,0.0,468.3715323382092,0.51170695899782 +2,1664.6350569010956,0.7620590017858959,0.0,464.7897250892412,0.5077937499991094 +3,1677.138960668916,0.7677832068506811,0.0,468.280992421798,0.5116080420011713 +4,1674.2000765324713,0.7664378049849094,0.0,467.46041427514393,0.510711540999182 +5,1678.549666090065,0.7684290185321052,0.0,468.6748813899292,0.5120383749999746 +6,1665.3088555742995,0.7623674623954318,0.0,464.9778592383964,0.5079992909995781 +7,1672.5354504934608,0.7656757501114548,0.0,466.99562706797775,0.5102037500000733 +8,1673.8950721714084,0.7662981759905733,0.0,467.3752527302505,0.5106185000004189 +9,1679.932369370257,0.7690620110172152,0.0,469.06095176302154,0.5124601659990731 +10,1683.2285742023844,0.7705709919518887,0.0,469.98129891743895,0.5134656669979449 +11,1681.0961202935644,0.7695947685506256,0.0,469.38588753165976,0.5128151659992 +12,1683.195520409162,0.7705558601423286,0.0,469.97206982941674,0.513455584001349 +13,1684.8524951960408,0.771314412322783,0.0,470.4347206984348,0.5139610410005844 +14,1675.0315060858704,0.766818427976653,0.0,467.692561202456,0.5109651669990853 +15,1664.589709954197,0.7620382422512794,0.0,464.777063578302,0.507779916999425 +16,1671.144138727261,0.7650388167179595,0.0,466.60715308345806,0.5097793329987326 +17,1674.663941097445,0.7666501591377807,0.0,467.5899318428168,0.5108530420002353 +18,1674.558492146764,0.7666018853003637,0.0,467.56048899971745,0.5108208749988989 +19,1672.707007054439,0.7657542875789115,0.0,467.04352809378133,0.5102560830018774 +20,1670.870414679879,0.7649135076458912,0.0,466.53072544593743,0.5096958340000128 +21,1672.4414751473123,0.7656327288148759,0.0,466.9693878180469,0.5101750829999219 +22,1667.5441621135622,0.7633907710557498,0.0,465.6019885378286,0.5086811669971212 +23,1675.325446616973,0.7669529920222603,0.0,467.7746335690551,0.5110548329976154 +24,1672.187420124346,0.7655164240930705,0.0,466.8984520511997,0.5100975839995954 +25,1671.2103873019182,0.7650691448805581,0.0,466.6256506254117,0.5097995420001098 +26,1675.2470458768516,0.7669171006780834,0.0,467.7527429700936,0.5110309170013352 +27,1678.1497291489766,0.7682459300258049,0.0,468.5632133218257,0.511916374998691 +28,1674.0044811472976,0.7663482627015356,0.0,467.40580126857134,0.5106518749998941 +29,1672.800162851444,0.7657969336912722,0.0,467.0695385139638,0.5102845000001253 +0,1700.6486549674398,2.245545305325342,0.0,471.7991233293258,0.5144435829970462 +1,1702.3833779081904,2.247835842494359,0.0,472.280375444673,0.514968333998695 +2,1685.3609733620438,2.2253593712359963,0.0,467.5579681923749,0.5098190829994564 +3,1685.955330129772,2.226144162995048,0.0,467.72285645494463,0.5099988750007469 +4,1710.1798343752505,2.2581303240538757,0.0,474.44329211502105,0.5173267499994836 +5,1688.2948760021109,2.229233311500166,0.0,468.3719003878782,0.5107065840020368 +6,1689.1538324656856,2.2303674820700983,0.0,468.61019470299664,0.5109664170013275 +7,1681.4489731614772,2.2201939458795272,0.0,466.4726891962105,0.508635709000373 +8,1693.4287865910685,2.236012153671546,0.0,469.7961654811097,0.5122595840002759 +9,1688.4754554314643,2.2294717495153544,0.0,468.4219972825021,0.510761208999611 +10,1701.928274758921,2.247234921935432,0.0,472.1541193445534,0.5148306660012167 +11,1688.930690823444,2.230072844688242,0.0,468.5482900697967,0.5108989170003042 +12,1689.5541088888797,2.230896009135527,0.0,468.7212406059824,0.5110874999991211 +13,1689.9560382136613,2.2314267187007863,0.0,468.8327450619548,0.5112090829970839 +14,1688.7750437511113,2.229867327486588,0.0,468.505109985503,0.5108518340020964 +15,1693.0457234640155,2.2355063551316277,0.0,469.6898949431033,0.5121437079978932 +16,1698.9026394300745,2.2432398573531787,0.0,471.3147383874731,0.5139154160024191 +17,1694.2118484628922,2.237046112628863,0.0,470.0134048877091,0.5124964590031595 +18,1696.0713588048884,2.239501419729761,0.0,470.52927590352,0.5130589580003289 +19,1694.8471112105972,2.237884916856056,0.0,470.18964141168215,0.5126886250000098 +20,1688.1754505881695,2.229075621564135,0.0,468.33876902624377,0.5106704579993675 +21,1681.6755561328227,2.2204931272101835,0.0,466.53554853339926,0.508704249998118 +22,1691.4287730476444,2.2333713254146894,0.0,469.2413156397401,0.5116545830023824 +23,1685.693758534626,2.2257987825040386,0.0,467.65029046730376,0.5099197499985166 +24,1681.621284787646,2.2204214670445053,0.0,466.52049241172386,0.5086878330002946 +25,1689.9692614383928,2.231444178715311,0.0,468.8364134891856,0.511213083002076 +26,1687.1846752620258,2.2277673966843192,0.0,468.0639051212711,0.5103707499984012 +27,1689.4828952994171,2.2308019783426145,0.0,468.7014843153579,0.5110659579986532 +28,1692.212939042672,2.2344067422620126,0.0,469.4588613555575,0.5118917920008244 +29,1693.0024736635974,2.2354492478708172,0.0,469.67789645190294,0.5121306250002817 +0,1687.6458569919555,2.580242062394627,0.0,472.3853552412604,0.5138203749993409 +1,1687.0327514894282,2.579304685278597,0.0,472.21374218665426,0.5136337090007146 +2,1686.205052807527,2.578039216610996,0.0,471.9820628125352,0.5133817079986329 +3,1686.2930512807673,2.5781737574929826,0.0,472.0066942776438,0.5134084999990591 +4,1693.3439255541668,2.5889538404715933,0.0,473.98028946919544,0.5155552079995687 +5,1685.383926436799,2.576783796351161,0.0,471.7522230800301,0.5131317080013105 +6,1685.4745262347976,2.5769223143990514,0.0,471.7775826764081,0.5131592920006369 +7,1683.298948613602,2.5735960733722645,0.0,471.1686213808937,0.5124969160024193 +8,1687.3850147000326,2.5798432605663386,0.0,472.31234343121656,0.5137409589988238 +9,1687.4051323061285,2.5798740183780136,0.0,472.3179745074657,0.5137470840018068 +10,1674.4885384554077,2.560125835654476,0.0,468.7025182496253,0.5098145000010845 +11,1680.575686257041,2.5694324770524424,0.0,470.40635881828933,0.5116677920013899 +12,1671.6070680373098,2.555720355000156,0.0,467.8959720056779,0.508937208000134 +13,1672.821789853038,2.557577543408532,0.0,468.23598220039065,0.509307042000728 +14,1673.732829565877,2.5589704321937243,0.0,468.4909893848692,0.5095844169991324 +15,1676.2467079884077,2.5628139013781426,0.0,469.19464373672304,0.5103497920026712 +16,1674.0471830233744,2.55945104725294,0.0,468.57897939122984,0.509680125000159 +17,1676.0744061029236,2.5625504689936087,0.0,469.1464150831546,0.5102973329994711 +18,1674.967255123472,2.560857745656679,0.0,468.8365148119767,0.5099602499976754 +19,1677.22863718545,2.564315173108823,0.0,469.4694934456504,0.5106487500015646 +20,1675.033083182934,2.5609583901889468,0.0,468.85494060381274,0.5099802919976355 +21,1676.767574713637,2.563610254610529,0.0,469.34043843174834,0.5105083749986079 +22,1674.7228353646988,2.5604840522423564,0.0,468.7680997981883,0.509885833998851 +23,1670.4759697259692,2.5539910185830794,0.0,467.57936868786584,0.5085928339976817 +24,1676.759911976087,2.5635985390496736,0.0,469.33829357121107,0.5105060420028167 +25,1671.2162151657417,2.5551227799726406,0.0,467.78656921135473,0.5088182090003102 +26,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +27,1680.4752362131676,2.5692788989618154,0.0,470.37824206058065,0.511637208997854 +28,1671.579560297271,2.5556782984113307,0.0,467.8882723727861,0.5089288329982082 +29,1673.131765055717,2.5580514645531487,0.0,468.3227466987758,0.509401416999026 +0,1689.978230677281,1.2385452310553302,0.0,471.4170942960058,0.5136817920028989 +1,1672.6596167167916,1.2258528268930255,0.0,466.5860908414723,0.5084176670025045 +2,1686.590834298074,1.2360626880527024,0.0,470.47218475260024,0.5126521669990325 +3,1688.6244236034297,1.237553057745254,0.0,471.0394516817949,0.5132702920018346 +4,1677.695815207165,1.2295437381187877,0.0,467.9909314574833,0.5099484580023272 +5,1679.42193401695,1.2308087699288348,0.0,468.4724299164265,0.5104731249994074 +6,1685.0271558792265,1.234916704978239,0.0,470.0359988164471,0.5121768749995681 +7,1682.5739653539526,1.2331188194369973,0.0,469.3516847062496,0.5114312090008752 +8,1682.5384603989162,1.2330927986919125,0.0,469.3417806480596,0.5114204169985896 +9,1674.6689394641248,1.2273254121968986,0.0,467.1465886478087,0.5090284159996372 +10,1680.8004155781405,1.2318190265893751,0.0,468.8569554448154,0.5108921249993728 +11,1682.9165262445813,1.2333698742433448,0.0,469.44724159375744,0.5115353330002108 +12,1687.0957007162906,1.2364326927564622,0.0,470.61301654295295,0.5128056250032387 +13,1688.8170195135012,1.2376942067503771,0.0,471.0931760450152,0.5133288329998322 +14,1681.267859008733,1.2321616048671538,0.0,468.9873481444358,0.5110342080006376 +15,1680.177795933706,1.2313627233202695,0.0,468.6832765545771,0.5107028750026075 +16,1685.5756171743578,1.2353186593402377,0.0,470.1889913375288,0.5123435839996091 +17,1685.9842497838042,1.2356181365527226,0.0,470.3029788397836,0.5124677910025639 +18,1675.6699046029776,1.2280589959654196,0.0,467.42580649137847,0.5093326669993985 +19,1676.2396122854952,1.2284765213041895,0.0,467.5847256628893,0.5095058340011747 +20,1676.2516731718042,1.228485360443623,0.0,467.5880900304741,0.5095094999996945 +21,1683.9846586455449,1.234152683315873,0.0,469.7451956523632,0.5118600000023434 +22,1683.4812990152684,1.233783782901496,0.0,469.6047841784262,0.5117069999978412 +23,1683.7237933353138,1.233961501275732,0.0,469.67242763421984,0.511780707998696 +24,1688.334087096647,1.2373402769594726,0.0,470.9584627140609,0.5131820420028816 +25,1681.8361980700215,1.2325781271756686,0.0,469.14588554094433,0.5112069589995372 +26,1684.9586134370372,1.2348664718371505,0.0,470.01687899682673,0.5121560410007078 +27,1693.0802254256298,1.2408186099264806,0.0,472.2823914485034,0.5146246670010441 +28,1680.5884880218764,1.2316637098761918,0.0,468.79783854557866,0.5108277079998516 +29,1685.436887323359,1.235216987500778,0.0,470.1502928371205,0.5123014160017192 +0,1732.06870553443,0.8736959945657145,0.0,473.84566228350536,0.5155532079988916 +1,1719.1601654496678,0.8671846248194041,0.0,470.3142459453237,0.5117109589991742 +2,1714.7743044983763,0.8649722939034182,0.0,469.1143967820039,0.5104054999974323 +3,1717.5462791991404,0.8663705428212334,0.0,469.8727317047004,0.5112305830007244 +4,1718.4740985032197,0.8668385565940498,0.0,470.1265571743345,0.51150675000099 +5,1722.8978930340734,0.8690700220954118,0.0,471.33678390643854,0.5128234999974666 +6,1723.3339429500195,0.8692899758788708,0.0,471.4560749949214,0.512953290999576 +7,1733.5725605158038,0.874454574216415,0.0,474.2570750394488,0.516000833002181 +8,1718.7991428275102,0.8670025165589644,0.0,470.2154802306907,0.5116034999991825 +9,1719.6946223172151,0.8674542173724893,0.0,470.46045842959506,0.511870040998474 +10,1722.9278508751695,0.8690851335316315,0.0,471.3449795357514,0.5128324170000269 +11,1722.9965822100546,0.8691198032256212,0.0,471.3637825109417,0.5128528749992256 +12,1708.9261640265577,0.8620223549722664,0.0,467.5145087486126,0.5086647909993189 +13,1717.0791493401591,0.8661349115870739,0.0,469.74493801112806,0.5110915410004964 +14,1716.5882232151534,0.8658872769593743,0.0,469.610634323236,0.51094541600105 +15,1709.9862688189849,0.8625570966415802,0.0,467.80452383626624,0.5089803330010909 +16,1717.170141592041,0.8661808102086194,0.0,469.76983095199006,0.5111186249996535 +17,1716.649677583052,0.8659182759808969,0.0,469.6274465233318,0.5109637079985987 +18,1705.156939890905,0.8601210700986252,0.0,466.4833542100274,0.5075428749987623 +19,1714.3066169495494,0.8647363813574477,0.0,468.9864505200527,0.5102662919998693 +20,1721.4724283522928,0.8683509843465702,0.0,470.9468165488841,0.5123992080007156 +21,1715.4271917406693,0.8653016255094172,0.0,469.29300851185735,0.5105998330000148 +22,1710.5147119397864,0.8628236557200537,0.0,467.9490911272491,0.5091376249984023 +23,1735.0236423981396,0.8751865338807936,0.0,474.6540505481951,0.5164327500024228 +24,1712.7508254344616,0.8639516037035543,0.0,468.5608293778392,0.5098032079986297 +25,1712.4533603268912,0.8638015553410517,0.0,468.479451225545,0.5097146670013899 +26,1712.851755477642,0.8640025151796269,0.0,468.58844102107383,0.5098332499983371 +27,1720.8360604212608,0.8680299854678096,0.0,470.77272404159936,0.5122097919993394 +28,1718.7540666525708,0.8669797790813061,0.0,470.2031486471345,0.5115900829987368 +29,1711.8066279252007,0.8634753283807082,0.0,468.30252328832177,0.5095221659976232 +0,1677.2133438928345,1.2236156976897798,0.0,464.77554095492343,0.507619916999829 +1,1688.3158557353431,1.2317155663342476,0.0,467.8521775476085,0.5109801670005254 +2,1700.0338866691875,1.2402644886576215,0.0,471.0993817187625,0.5145267080006306 +3,1693.5221102482265,1.2355138039116724,0.0,469.294891896612,0.5125558750005439 +4,1697.7312252226748,1.2385845755430036,0.0,470.4612871535506,0.5138297920020705 +5,1707.7860716273813,1.245920116929827,0.0,473.2476033332916,0.5168729590004659 +6,1691.223301343333,1.2338367014295946,0.0,468.6578649159871,0.5118601249996573 +7,1692.6743412442531,1.2348953116578076,0.0,469.0599651361846,0.5122992920005345 +8,1692.9432102016283,1.2350914657595289,0.0,469.13447188606534,0.5123806670017075 +9,1690.9101016469,1.2336082057128972,0.0,468.5710735970016,0.5117653330016765 +10,1675.4391953781826,1.2223213626664713,0.0,464.283903538232,0.5070829590003996 +11,1692.3177755698923,1.2346351781703215,0.0,468.9611565947486,0.5121913749972009 +12,1692.9842335608655,1.235121394466283,0.0,469.1458399413283,0.5123930829977326 +13,1693.9307150624438,1.2358119026995509,0.0,469.40812109566184,0.5126795420001145 +14,1693.3052804427282,1.2353556151191132,0.0,469.2348058076761,0.5124902499992459 +15,1695.9543211131024,1.2372882301676944,0.0,469.9688861291021,0.5132920000032755 +16,1699.368532235995,1.2397790774653328,0.0,470.9150041810212,0.5143253339992953 +17,1693.6911697612973,1.2356371417534504,0.0,469.3417402757566,0.5126070420010365 +18,1691.928169188794,1.2343509397425936,0.0,468.85319208493,0.5120734580013959 +19,1687.3626306301558,1.2310201382860588,0.0,467.5880276614127,0.5106916670010833 +20,1680.005011470021,1.2256523665981305,0.0,465.54914486946274,0.5084648339980049 +21,1684.214949163509,1.2287237384464431,0.0,466.7157681115221,0.5097390000009909 +22,1684.449402886166,1.228894784817181,0.0,466.780737995153,0.50980995899954 +23,1690.1333702038828,1.2330415391108065,0.0,468.35583218008856,0.5115302499980316 +24,1687.9036726071658,1.2314148569773864,0.0,467.7379567556808,0.5108554170001298 +25,1677.9962704721215,1.2241868839709065,0.0,464.9924991169492,0.5078568750031991 +26,1690.098264423675,1.2330159275904244,0.0,468.34610395556285,0.5115196249971632 +27,1691.0137669383644,1.233683835016947,0.0,468.59980046832897,0.5117967080004746 +28,1690.2974702999934,1.233161258796036,0.0,468.40130624647264,0.5115799159975722 +29,1691.2523507598814,1.2338578945128875,0.0,468.6659148509223,0.5118689170012658 +0,1708.6534640501554,1.3025055236988343,0.0,471.7741801992239,0.5142651249989285 +1,1702.057581183783,1.297477486096197,0.0,469.95299919474047,0.5122799169985228 +2,1706.8120997953158,1.3011018528179144,0.0,471.26576340784254,0.5137109169991163 +3,1709.7853318599612,1.3033683458599026,0.0,472.0866988106919,0.5146057909987576 +4,1709.2050015043296,1.3029259603735044,0.0,471.926464518875,0.5144311250005558 +5,1700.6376214476154,1.296395051630285,0.0,469.5609358802411,0.5118525420002698 +6,1705.732973585949,1.300279235547624,0.0,470.9678072139933,0.5133861249996698 +7,1713.344854884211,1.306081768153168,0.0,473.06951428029873,0.5156771250003658 +8,1690.866381337352,1.2889464410812284,0.0,466.86301094137,0.5089116250019288 +9,1698.6185026538246,1.2948558785695972,0.0,469.0034395044649,0.5112448340005358 +10,1704.432624372983,1.2992879801127095,0.0,470.608769412106,0.5129947499990521 +11,1704.729298359376,1.2995141345168324,0.0,470.69068369704553,0.513084041998809 +12,1708.1326598617934,1.302108514974491,0.0,471.6303816033247,0.5141083749986137 +13,1705.236533401988,1.2999007994894067,0.0,470.8307357330092,0.5132367080004769 +14,1710.3444845159795,1.3037945875984287,0.0,472.2410857542411,0.5147740829997929 +15,1701.4249178972386,1.296995207247558,0.0,469.77831532253856,0.5120895000000019 +16,1723.094083335859,1.3135135992278983,0.0,475.7613616075203,0.5186114169991924 +17,1689.277667739587,1.2877353656465649,0.0,466.4243532082916,0.5084334589992068 +18,1706.946246334542,1.3012041126453189,0.0,471.3028024417377,0.5137512920009613 +19,1708.998869357254,1.3027688259598698,0.0,471.869549628439,0.5143690839977353 +20,1700.2184297275633,1.2960755020303545,0.0,469.4451933764304,0.5117263749998529 +21,1704.764045228913,1.2995406220349015,0.0,470.7002776119237,0.5130945000018983 +22,1715.6314361093544,1.3078248276668718,0.0,473.70085937492894,0.516365332998248 +23,1711.9831786988718,1.305043763203534,0.0,472.69354356443904,0.5152672920012265 +24,1707.9247269217008,1.3019500078174064,0.0,471.5729694981714,0.5140457919987966 +25,1700.2915250526698,1.2961312225533927,0.0,469.4653756356212,0.5117483750000247 +26,1705.0802389809708,1.29978165634483,0.0,470.7875814750531,0.5131896669990965 +27,1696.119552919378,1.2929509306670264,0.0,468.31345760519014,0.5104927079992194 +28,1718.6114560769083,1.3100964951232272,0.0,474.5236689771976,0.5172622499994759 +29,1692.044212804571,1.2898443013111214,0.0,467.1882205210487,0.5092661249982484 +0,1693.3553087494988,1.6409779710609416,0.0,471.1951031189275,0.5131068749979022 +1,1686.8478654819512,1.6346718101537776,0.0,469.3843340584418,0.511135041997477 +2,1682.8817115303368,1.6308283336956433,0.0,468.28070724689184,0.5099332499994489 +3,1685.2321436812567,1.633106064401186,0.0,468.93474134948343,0.5106454590022622 +4,1687.244988458413,1.6350566496808447,0.0,469.4948379797854,0.5112553750004736 +5,1684.693659941199,1.6325842365540455,0.0,468.7849022105188,0.5104822920002334 +6,1684.5030733927251,1.632399545056632,0.0,468.73186936626144,0.5104245420006919 +7,1685.598736489717,1.633461318091847,0.0,469.0367499092303,0.5107565409998642 +8,1684.5363493100947,1.632431791713366,0.0,468.7411287634094,0.5104346250009257 +9,1686.7247944344342,1.6345525458287966,0.0,469.3500881594116,0.5110977500007721 +10,1687.1740341584095,1.634987890075193,0.0,469.4750941501626,0.511233875000471 +11,1682.8799228198427,1.6308266003119272,0.0,468.2802095181391,0.5099327079988143 +12,1709.5432022817854,1.65666515528454,0.0,475.6995660174179,0.5180120000004536 +13,1684.754023901845,1.632642733391156,0.0,468.8016991594605,0.5105005830009759 +14,1681.3392805525389,1.6293336118003798,0.0,467.8515085312519,0.5094658749985683 +15,1680.4535893809157,1.6284753160284955,0.0,467.6050550310395,0.5091974999995728 +16,1689.3828316155218,1.637128367003413,0.0,470.08971681098,0.5119031670001277 +17,1690.0585442584445,1.6377831791128823,0.0,470.27774143098475,0.5121079159980582 +18,1693.226188437825,1.6408528445821813,0.0,471.159173944312,0.5130677500019374 +19,1685.7684261826791,1.633625759096418,0.0,469.0839679691143,0.5108079590027046 +20,1686.5903112809376,1.634422222386796,0.0,469.3126667139228,0.5110569999997097 +21,1681.29431533333,1.629290037404738,0.0,467.8389964547891,0.5094522500003222 +22,1681.538117603805,1.6295262986034815,0.0,467.9068371704283,0.5095261249989562 +23,1672.36782546343,1.620639653660867,0.0,465.35510055119175,0.5067474169991328 +24,1686.877702600274,1.6347007243772926,0.0,469.392636571194,0.5111440830005449 +25,1680.305905434957,1.628332200109028,0.0,467.56396031702087,0.5091527500007942 +26,1677.3417747023186,1.6254597531922637,0.0,466.73915770235,0.5082545830009622 +27,1686.8734420466108,1.634696595607229,0.0,469.3914510243615,0.5111427920019196 +28,1682.0847132247131,1.6300559874220977,0.0,468.05893353120234,0.509691749997728 +29,1682.5272172501907,1.6304848043125413,0.0,468.18206523831543,0.5098258340003667 +0,1662.7812272807057,2.154162194272734,0.0,465.3321749197454,0.5084949170013715 +1,1673.5415894590235,2.1681024318824176,0.0,468.3434807086311,0.5117855419994157 +2,1674.2807447957823,2.1690600205633683,0.0,468.55033459585,0.5120115829995484 +3,1676.0206591942217,2.171314110131433,0.0,469.0372526208532,0.512543666001875 +4,1662.4606293766162,2.153746854074503,0.0,465.24245504707847,0.5083968749968335 +5,1668.3223858401527,2.1613408622089554,0.0,466.88287763501455,0.5101894580002408 +6,1677.1321929540754,2.1727541215796324,0.0,469.34831724768645,0.5128835840005195 +7,1671.7999027273695,2.1658460462256395,0.0,467.85606669314166,0.5112529170000926 +8,1676.5832374996228,2.1720429401764987,0.0,469.1946911233573,0.5127157080023608 +9,1674.9540945397955,2.1699323569466986,0.0,468.73877267520913,0.5122174999996787 +10,1670.024561091137,2.163546060050703,0.0,467.35923429495256,0.5107099999986531 +11,1673.6238824270729,2.168209043863427,0.0,468.3665105367136,0.5118107080015761 +12,1674.719334293978,2.169628220937727,0.0,468.6730746182557,0.5121457079985703 +13,1676.7219413251232,2.172222633411058,0.0,469.23350762653325,0.5127581250017101 +14,1673.4234572398066,2.1679493895239954,0.0,468.31042120471415,0.5117494160003844 +15,1677.3685849317887,2.1730603715258456,0.0,469.41447194760616,0.512955875001353 +16,1676.4770996471227,2.171905436730173,0.0,469.1649882635133,0.5126832499990996 +17,1671.4410196159442,2.165381106870954,0.0,467.7556326396163,0.511143167001137 +18,1670.5202416245484,2.1641882228608145,0.0,467.4979513413645,0.5108615839999402 +19,1675.5008656357616,2.170640708475166,0.0,468.89178750307394,0.5123847079994448 +20,1673.6356021221727,2.1682242269336345,0.0,468.369790313464,0.5118142920000537 +21,1676.2119577867911,2.171561940807634,0.0,469.0907878596921,0.5126021670002956 +22,1676.0564951858278,2.171360536286026,0.0,469.0472813844938,0.5125546250019397 +23,1678.002557253534,2.173881693769153,0.0,469.5918901878873,0.5131497499969555 +24,1668.7934039933843,2.1619510744737207,0.0,467.0146928720848,0.5103335000021616 +25,1665.3454544845151,2.157484195513393,0.0,466.0497782954393,0.5092790829985461 +26,1670.9562380223415,2.1647530638281984,0.0,467.61996568018054,0.5109949160032556 +27,1666.0392417764083,2.1583830090978524,0.0,466.2439358575837,0.5094912500026112 +28,1675.1120063802805,2.170136934500991,0.0,468.78296457428337,0.5122657909996633 +29,1665.1493914950968,2.157230192477653,0.0,465.9949097319805,0.5092191250005271 +0,1704.031251704515,1.508941838063347,0.0,474.7466342955749,0.5159355420000793 +1,1703.1359158085138,1.508149006481623,0.0,474.4971918614849,0.5156644579983549 +2,1703.3431664327547,1.5083325296051393,0.0,474.5549323144347,0.5157272079995892 +3,1700.4201895544604,1.5057441955596584,0.0,473.74058490519207,0.5148422079982993 +4,1699.9833977413236,1.505357410727686,0.0,473.6188938018352,0.5147099590030848 +5,1696.5605951103887,1.5023264744769076,0.0,472.6652939032013,0.5136736249987734 +6,1693.2224267164918,1.4993704829438808,0.0,471.73527327821034,0.5126629160004086 +7,1715.943482298202,1.5194902731988489,0.0,478.0654063988733,0.5195422500000859 +8,1696.8914232426196,1.5026194270911466,0.0,472.75746330569893,0.5137737909972202 +9,1697.798596376248,1.5034227407007588,0.0,473.0102036186965,0.5140484590010601 +10,1695.6008546414246,1.5014766118081015,0.0,472.39790822175786,0.5133830409977236 +11,1684.4708390910728,1.4916208382679026,0.0,469.2970628488215,0.5100131670005794 +12,1698.53539461143,1.504075185121696,0.0,473.21547713228824,0.5142715419970045 +13,1697.1786313302812,1.5028737535885446,0.0,472.83748007348026,0.5138607500011858 +14,1697.3195518477353,1.5029985405397317,0.0,472.8767408213671,0.5139034170024388 +15,1698.000615350538,1.503601631130194,0.0,473.06648652313976,0.5141096249972179 +16,1690.2733048896132,1.4967589972063555,0.0,470.91364183216854,0.511770000000979 +17,1690.5643640329076,1.4970167338636082,0.0,470.9947315120215,0.5118581250026182 +18,1686.7233478169414,1.4936154640434955,0.0,469.92461644284026,0.5106951669986302 +19,1687.61248766197,1.4944028089414902,0.0,470.1723326443026,0.5109643750001851 +20,1688.484565251982,1.4951750449907355,0.0,470.41529526619627,0.5112284170027124 +21,1690.6414282331857,1.497084975215344,0.0,471.016201757752,0.5118814580018807 +22,1678.5402478292274,1.4863692225651388,0.0,467.6447878461608,0.5082175410025229 +23,1690.2896834620092,1.4967735006452518,0.0,470.9182049363439,0.5117749589990126 +24,1690.3525720618825,1.4968291893184444,0.0,470.9357258304563,0.511794000001828 +25,1680.0227915903563,1.4876820343493653,0.0,468.0578276070737,0.5086664159971406 +26,1686.6033439264172,1.4935091990375216,0.0,469.89118311051624,0.5106588329981605 +27,1688.493922067436,1.4951833305725255,0.0,470.4179020943516,0.5112312499986729 +28,1697.0385398110468,1.5027497007260635,0.0,472.7984502862135,0.5138183339986426 +29,1689.9230695070262,1.4964488592194929,0.0,470.8160655295461,0.5116639580010087 +0,1723.7302564356658,0.8688324965071303,0.0,472.27729512058744,0.5138087499981339 +1,1714.765226996136,0.8643137448752406,0.0,469.821006012376,0.5111364580006921 +2,1714.6102079824318,0.8642356087769852,0.0,469.7785330325051,0.511090250001871 +3,1712.5783108386672,0.86321144721721,0.0,469.2218224431088,0.5104845830028353 +4,1715.331632824615,0.8645992372184634,0.0,469.97619306186704,0.511305291998724 +5,1715.734206559147,0.86480215130058,0.0,470.086492474273,0.5114252909988863 +6,1714.1556313455656,0.8640064830464437,0.0,469.6539855728995,0.5109547499996552 +7,1743.953743346134,0.8790259838900312,0.0,477.81823962760814,0.5198369580029976 +8,1706.9988473425583,0.8603991631139429,0.0,467.6931297034368,0.5088214589995914 +9,1714.837774733343,0.8643503119839272,0.0,469.8408830488016,0.5111580829980085 +10,1711.608911909124,0.8627228294135127,0.0,468.9562210808144,0.5101956250000512 +11,1728.554052526483,0.8712638924779202,0.0,473.59894586117105,0.5152466249965073 +12,1716.1190333552402,0.8649961201798314,0.0,470.1919294808291,0.5115399999995134 +13,1724.1476517216522,0.8690428812741204,0.0,472.3916554248902,0.5139331669997773 +14,1723.523935681039,0.8687285021752712,0.0,472.220766201658,0.5137472499991418 +15,1723.5103789051648,0.8687216689904481,0.0,472.21705184007703,0.5137432090014045 +16,1716.2132498237677,0.8650436092398264,0.0,470.217743437941,0.5115680840026471 +17,1707.778139298446,0.8607919590128452,0.0,467.9066444895593,0.509053750000021 +18,1711.1150571741512,0.8624739058706925,0.0,468.8209119873269,0.5100484169997799 +19,1716.2658062591684,0.8650700998921811,0.0,470.2321431452383,0.5115837500015914 +20,1714.7434207297772,0.8643027536004925,0.0,469.8150314090677,0.5111299579984916 +21,1727.1349682962543,0.8705486143826962,0.0,473.2101371950248,0.5148236249988258 +22,1716.562149963459,0.8652194695742771,0.0,470.313337057433,0.511672084001475 +23,1719.2004254826231,0.866549271320943,0.0,471.03618659918794,0.5124584999975923 +24,1737.1731139381086,0.8756082616829348,0.0,475.96044470634297,0.5178157909977017 +25,1734.4994753767116,0.8742606354766979,0.0,475.2279061996989,0.5170188340016466 +26,1731.2404159043124,0.8726179325264549,0.0,474.3349707844764,0.5160473750001984 +27,1716.2300238504033,0.8650520640542521,0.0,470.2223392799517,0.5115730839970638 +28,1712.202713108641,0.8630221301751482,0.0,469.1189140678988,0.5103726249981264 +29,1718.4812382912091,0.8661867707494996,0.0,470.83913965394913,0.5122441249986878 +0,1713.155749268839,1.6734939428239122,0.0,471.62406296663494,0.5127643329979037 +1,1728.38982363158,1.688375328349692,0.0,475.81793503551023,0.5173240410003928 +2,1699.015023621691,1.6596805935544503,0.0,467.7311848755153,0.5085318749988801 +3,1726.676996415299,1.686702155333886,0.0,475.34640141619576,0.5168113750005432 +4,1686.9678644524895,1.6479123419483144,0.0,464.414656207874,0.5049260419982602 +5,1713.985297746508,1.6743042861644113,0.0,471.8524339268544,0.513012625000556 +6,1708.8628195800152,1.6693004000976996,0.0,470.4422387555337,0.5114794170003734 +7,1701.0742043297428,1.6616921015236326,0.0,468.29806805139015,0.5091482079988054 +8,1706.5235478300708,1.6670152855622455,0.0,469.798247777152,0.5107792500020878 +9,1707.556617845926,1.6680244386499228,0.0,470.0826473003213,0.5110884579989943 +10,1709.3588206821426,1.669784918122636,0.0,470.5787856253213,0.5116278749992489 +11,1706.9871143093417,1.6674681198684589,0.0,469.92586554132913,0.5109179999999469 +12,1704.9694190435357,1.6654971368990288,0.0,469.3704031208843,0.5103140840001288 +13,1700.5875280107632,1.661216692400863,0.0,468.16408825241115,0.5090025409990631 +14,1700.6350005699624,1.661263065907944,0.0,468.1771572341768,0.509016750002047 +15,1701.9577670717792,1.662555208627312,0.0,468.54130889534906,0.5094126670010155 +16,1706.8110158505772,1.6672960983203842,0.0,469.87738642865065,0.5108652920025634 +17,1702.2192018623691,1.6628105908590107,0.0,468.6132807158864,0.5094909170002211 +18,1700.088466524394,1.6607291848436008,0.0,468.0266988726236,0.5088531669971417 +19,1703.3389980838654,1.663904462326722,0.0,468.9215555729168,0.5098260830018262 +20,1700.4806187224335,1.6611122582030222,0.0,468.1346566067757,0.508970541999588 +21,1703.283456963804,1.6638502070565633,0.0,468.90626535268063,0.5098094589993707 +22,1704.830068447342,1.6653610124522242,0.0,469.33204052928585,0.510272374998749 +23,1732.7583505809405,1.6926427181605357,0.0,477.02057083200214,0.5186315840001043 +24,1701.9428694598196,1.6625406559146425,0.0,468.53720764986457,0.5094082079995133 +25,1705.1070924442952,1.665631622979677,0.0,469.40830398813256,0.510355291000451 +26,1702.1422180826758,1.662735389354963,0.0,468.5920874280157,0.5094678749992454 +27,1699.31808417891,1.6599766378615906,0.0,467.8146160821534,0.5086225839986582 +28,1703.033989709958,1.663606515297409,0.0,468.83758814111593,0.5097347910013923 +29,1702.9419746789297,1.663516630535244,0.0,468.8122568174425,0.5097072499993374 +0,1733.253563906018,2.0984102566650487,0.0,473.074934530376,0.5129103750005015 +1,1741.729995893627,2.1086724780694217,0.0,475.3884953336507,0.5154187500011176 +2,1737.4213072742748,2.103456047779067,0.0,474.21248010485857,0.5141437079983007 +3,1734.7167801428006,2.100181738935689,0.0,473.4743053667237,0.5133433749979304 +4,1750.0504213128622,2.118745825906765,0.0,477.6594756405362,0.51788095899974 +5,1738.3344116666372,2.1045615222821867,0.0,474.4617031900618,0.5144139170006383 +6,1723.4772484529751,2.0865742962226386,0.0,470.40658300397047,0.5100173339997127 +7,1726.0488594502544,2.0896876865569887,0.0,471.1084795582367,0.5107783339990419 +8,1740.8696923270911,2.1076309283126764,0.0,475.15368372738,0.5151641660013411 +9,1734.0013654084328,2.099315602758254,0.0,473.2790397773886,0.5131316670012893 +10,1731.8590579880138,2.096721960398272,0.0,472.6943175164549,0.5124977079976816 +11,1721.0436224700557,2.08362796117404,0.0,469.7423481357919,0.5092971670019324 +12,1736.5343954829957,2.102382284056128,0.0,473.970406038876,0.5138812500008498 +13,1732.2086720593063,2.0971452301196516,0.0,472.78974132364146,0.5126011669999571 +14,1730.7883993553128,2.0954257385972426,0.0,472.402091512645,0.5121808750009222 +15,1732.4094537173592,2.097388311858747,0.0,472.8445427512664,0.5126605830009794 +16,1732.8762163231834,2.097953410618609,0.0,472.97194112723975,0.5127987090017996 +17,1733.1481008160742,2.0982825749257774,0.0,473.0461493916003,0.5128791659990384 +18,1733.7559471978227,2.0990184805708023,0.0,473.2120552309064,0.5130590419976215 +19,1732.741891041852,2.097790786087528,0.0,472.9352783301771,0.5127589590010757 +20,1780.438908568486,2.155536469047305,0.0,485.95372174410915,0.5268736250000075 +21,1738.3252572752317,2.1045504392708954,0.0,474.45920458673857,0.5144112080015475 +22,1731.150966088161,2.0958646898082933,0.0,472.50105062455856,0.5122881669994968 +23,1733.83057124086,2.099108826184718,0.0,473.2324231476437,0.5130811250019178 +24,1732.5705325343563,2.097583326280617,0.0,472.8885076692635,0.5127082500002871 +25,1726.5571530732716,2.090303065964912,0.0,471.2472134269785,0.5109287500017672 +26,1733.2855282520177,2.0984489551641543,0.0,473.08365889200775,0.5129198340000585 +27,1724.678430716105,2.0880285399833696,0.0,470.7344341806953,0.5103727919995436 +28,1730.2550418233518,2.094780014890773,0.0,472.2565166903754,0.5120230419997824 +29,1728.6382081412094,2.0928225515094296,0.0,471.8152174458481,0.5115445829978853 +0,1784.5599182875326,1.8685093752169215,0.0,475.76919966460866,0.5137712089999695 +1,1781.4314907183507,1.865233779826259,0.0,474.9351511882611,0.512870540998847 +2,1776.5638846305587,1.8601371912966735,0.0,473.6374323339155,0.5114691670023603 +3,1776.1253612297892,1.8596780388315792,0.0,473.5205206374909,0.511342916997819 +4,1784.6351741013289,1.8685881712226913,0.0,475.78926309757776,0.5137928749973071 +5,1779.3196350329554,1.863022578001748,0.0,474.37212392369514,0.5122625419971882 +6,1804.787135064832,1.889688122870963,0.0,481.16183828601896,0.5195945840023342 +7,1775.9211500186464,1.8594642210949857,0.0,473.4660772963107,0.5112841250011115 +8,1781.1738786342587,1.8649640491271873,0.0,474.86647100901007,0.5127963749982882 +9,1828.1563779527191,1.9141567041611,0.0,487.39215079702007,0.5263225419985247 +10,1797.5348509506605,1.8820946760383848,0.0,479.2283568862738,0.5175066660012817 +11,1782.1034613760824,1.8659373613989343,0.0,475.1143006462038,0.5130639999988489 +12,1779.117306435301,1.862810731440746,0.0,474.3181824931,0.5122042920011154 +13,1779.8063525884374,1.863532191776092,0.0,474.5018843309874,0.5124026670018793 +14,1795.7694721548175,1.8802462501060089,0.0,478.7577014332425,0.5169984169988311 +15,1800.139363767342,1.8848217106231984,0.0,479.92272806743193,0.518256499999552 +16,1768.3179047798128,1.8515033031872992,0.0,471.4390285740661,0.5090951659985876 +17,1777.8371932786956,1.861470399065271,0.0,473.97690036199464,0.5118357499995909 +18,1777.3811567479238,1.8609929096156557,0.0,473.85531961088634,0.5117044580001675 +19,1777.1469904701933,1.8607477276630549,0.0,473.7928901562053,0.5116370420000749 +20,1782.6535694305517,1.8665133476948412,0.0,475.260961156799,0.5132223750006233 +21,1777.5529502454003,1.8611727846410593,0.0,473.9011202892297,0.511753917002352 +22,1777.9214245000644,1.8615585927006884,0.0,473.9993566664128,0.5118599999987055 +23,1776.8571030714272,1.8604442033505333,0.0,473.71560527812954,0.5115535840013763 +24,1776.934675683587,1.8605254251417416,0.0,473.7362863767159,0.5115759170003003 +25,1775.9308478967102,1.8594743751816576,0.0,473.46866278062953,0.5112869170006888 +26,1774.2983217244705,1.857765051540093,0.0,473.03342624839615,0.5108169160012039 +27,1777.556277812507,1.8611762687439308,0.0,473.90200742892335,0.5117548750022252 +28,1781.2621633934934,1.8650564869874289,0.0,474.890007999174,0.5128217920027964 +29,1775.2046080215512,1.8587139714532732,0.0,473.2750449812897,0.511077834002208 +0,1715.2126246543712,1.878141390259372,0.0,473.25809210624993,0.5145006249986182 +1,1713.65604359318,1.876436948911229,0.0,472.82860332297054,0.5140337080010795 +2,1708.659320247143,1.870965584721755,0.0,471.44991725015507,0.5125348750007106 +3,1714.9127245161242,1.877813002481384,0.0,473.1753442502645,0.5144106660009129 +4,1709.6177712267738,1.8720150793613728,0.0,471.71437115836306,0.5128223749998142 +5,1716.90686263065,1.8799965646106216,0.0,473.72556291465145,0.5150088340014918 +6,1705.8313331065865,1.8678689658982608,0.0,470.6696246033992,0.5116865829986637 +7,1709.9364203410114,1.872363997088433,0.0,471.80229219490855,0.512917957999889 +8,1700.4208089691676,1.8619444938069176,0.0,469.1767634305253,0.5100636249990202 +9,1701.5545581455729,1.8631859382924425,0.0,469.4895852722259,0.5104037080018315 +10,1696.2627985811607,1.8573915122706384,0.0,468.02949338662467,0.5088163750006061 +11,1708.47193391554,1.8707603984840295,0.0,471.3982139822882,0.512478666001698 +12,1702.070178101452,1.8637505372038896,0.0,469.6318541157872,0.5105583750009828 +13,1698.224982770185,1.8595400851576076,0.0,468.57089538676786,0.509404958000232 +14,1713.0868103835694,1.8758136440006232,0.0,472.6715416159428,0.5138629590001074 +15,1700.5874961044965,1.8621270146230455,0.0,469.2227554168893,0.5101136250013951 +16,1702.7374799987635,1.8644812263879151,0.0,469.81597474214055,0.5107585409969033 +17,1700.0421524930027,1.861529868593488,0.0,469.07228528076257,0.5099500420001277 +18,1701.0918613432752,1.8626792897271016,0.0,469.36191888105583,0.5102649159998691 +19,1696.5679760493044,1.8577256786743,0.0,468.1136973530901,0.5089079170029436 +20,1701.4741316005936,1.86309787199627,0.0,469.46739413820296,0.5103795830000308 +21,1706.2990305243993,1.8683810900896791,0.0,470.7986707545618,0.5118268750011339 +22,1703.169756399106,1.8649545649045784,0.0,469.93524759586614,0.5108882079985051 +23,1698.6667036618285,1.8600237653017555,0.0,468.69277414594774,0.5095374580014322 +24,1697.6715815017524,1.8589341160709032,0.0,468.4182019977949,0.5092389579986047 +25,1725.2339947819305,1.8891146945326365,0.0,476.02316883125064,0.5175066670017259 +26,1695.9577611438835,1.8570574991994344,0.0,467.9453280572003,0.5087248750023718 +27,1697.33251321659,1.8585628395473195,0.0,468.32464694378984,0.5091372499991849 +28,1702.3614638551585,1.8640694923133407,0.0,469.712225107742,0.510645750000549 +29,1697.9809261434282,1.8592728454896557,0.0,468.5035557625809,0.5093317499995464 +0,1720.1075876202517,2.139437298035139,0.0,472.3142122490387,0.5141072090009402 +1,1715.8055655282826,2.1340865242889087,0.0,471.1329453387186,0.512821417003579 +2,1726.3235530469292,2.147168598317076,0.0,474.0210175878432,0.5159650419991522 +3,1713.795008434169,2.1315858313857823,0.0,470.58087830702686,0.5122205000006943 +4,1709.6015881378316,2.1263701344997905,0.0,469.4294317241803,0.5109671669997624 +5,1711.023837204053,2.128139101000066,0.0,469.8199587192177,0.5113922500022454 +6,1716.2856899540811,2.134683693972738,0.0,471.2647798772002,0.5129649169975892 +7,1703.9014336143955,2.119280390067656,0.0,467.8642598635299,0.5092635000000882 +8,1707.649582813055,2.123942267180417,0.0,468.8934420780017,0.5103837499991641 +9,1708.2815236163806,2.1247282632044535,0.0,469.0669629814957,0.5105726250003499 +10,1710.6425514704235,2.1276648650129646,0.0,469.7152637151278,0.5112782910000533 +11,1710.5764749804507,2.1275826803239437,0.0,469.6971201608906,0.5112585420029063 +12,1712.859712628746,2.1304225281452065,0.0,470.3240609400566,0.5119409580001957 +13,1724.241060943477,2.1445784340092997,0.0,473.4491983455843,0.5153426249999029 +14,1710.1231170346546,2.1270188022819085,0.0,469.57263527251695,0.5111230419970525 +15,1729.2027639938808,2.1507497064600507,0.0,474.8116031652197,0.516825582999445 +16,1736.7774113406142,2.1601709096276296,0.0,476.8914809707622,0.51908949999779 +17,1716.143074601221,2.134506311693061,0.0,471.22561996736346,0.5129222920004395 +18,1719.25440145091,2.1383761212075996,0.0,472.07994088347147,0.5138522079978429 +19,1717.713375974486,2.1364594228538385,0.0,471.65679977346696,0.5133916250015318 +20,1713.5996964840365,2.131342906074672,0.0,470.52724874889134,0.5121621250000317 +21,1708.6338111574385,2.125166431787859,0.0,469.1636955426665,0.5106779169982474 +22,1714.546421594191,2.132520424868397,0.0,470.7872044213372,0.5124450830007845 +23,1714.687086346911,2.1326953810284963,0.0,470.8258287273691,0.5124871250009164 +24,1713.9077925059944,2.1317261100820826,0.0,470.6118470210898,0.5122542089993658 +25,1748.3943619242975,2.1746198531396734,0.0,480.08131101578823,0.5225615840026876 +26,1699.874186562006,2.114271376320903,0.0,466.7584418130943,0.508059832998697 +27,1707.47713283186,2.1237277771540546,0.0,468.8460900532756,0.5103322080030921 +28,1711.830459652456,2.129142362751811,0.0,470.0414444268803,0.5116333340010897 +29,1702.7397365525153,2.1178354932245216,0.0,467.5452763088947,0.5089162910007872 +0,1713.159064065179,2.1272808075157927,0.0,472.0901454554188,0.5120495420014777 +1,1728.2893886349443,2.1460685837030025,0.0,476.2595639739648,0.5165718749994994 +2,1714.1647216223482,2.128529562558551,0.0,472.3672715159235,0.5123501250018307 +3,1714.3446896304945,2.1287530342126004,0.0,472.41686476439946,0.5124039160000393 +4,1716.6815169656234,2.1316547425505887,0.0,473.0608173194689,0.5131023750000168 +5,1718.2167704984383,2.133561112743254,0.0,473.4838825670694,0.5135612500016578 +6,1717.8823420090312,2.1331458428935797,0.0,473.39172510339864,0.5134612920010113 +7,1716.4481550838934,2.1313649701280375,0.0,472.99651048013305,0.5130326250000508 +8,1704.5356884398448,2.1165729042927004,0.0,469.7138274948316,0.509472083998844 +9,1748.2277475268788,2.1708266397958953,0.0,481.7539182034547,0.5225312910006323 +10,1716.9086056794056,2.131936725393026,0.0,473.1233954805805,0.5131702500002575 +11,1711.7365870592237,2.1255144753068493,0.0,471.6981576997372,0.511624375001702 +12,1729.394162260291,2.147440414129695,0.0,476.5640031544385,0.5169020829998772 +13,1725.8417386718038,2.1430292635958836,0.0,475.58507235706776,0.5158402920023946 +14,1720.0461637057829,2.1358327249601308,0.0,473.98800300951154,0.5141080409994174 +15,1724.1615030085018,2.1409428647590096,0.0,475.1220548151909,0.5153380830015521 +16,1715.443752170051,2.1301177730133927,0.0,472.7197301579565,0.5127324170025531 +17,1717.9330827404174,2.133208849176126,0.0,473.4057075757582,0.5134764579997864 +18,1712.8541880493729,2.1269022338557626,0.0,472.0061316789593,0.5119584169988229 +19,1715.88106060893,2.130660791970888,0.0,472.8402379431644,0.5128631249972386 +20,1725.5039611440254,2.142609835145178,0.0,475.4919920088588,0.5157393330009654 +21,1716.739788843288,2.131727100482537,0.0,473.076875127398,0.5131197919981787 +22,1722.1292739831051,2.13841938524512,0.0,474.5620395099444,0.514730666000105 +23,1716.1124686161547,2.1309481382090745,0.0,472.904006359117,0.5129322909997427 +24,1718.3412569201375,2.133715691253348,0.0,473.5181869198641,0.513598457997432 +25,1720.854010688215,2.1368358527006808,0.0,474.2106189985589,0.5143495000011171 +26,1712.4761217310593,2.1264327776098213,0.0,471.9019490686296,0.511845416000142 +27,1705.9905015406098,2.118379389196931,0.0,470.1147260119377,0.5099069159987266 +28,1710.6233086853506,2.124132084279747,0.0,471.3913748910195,0.5112916250000126 +29,1710.078379417596,2.1234554293227945,0.0,471.2412103542445,0.5111287500003527 +0,1710.6245041093105,2.7839575262955445,0.0,476.89527842012114,0.5177407500013942 +1,1696.879791250603,2.7615886798784324,0.0,473.0634680784524,0.5135807499973453 +2,1697.8648014829669,2.7631917357467892,0.0,473.3380734800945,0.5138788750009553 +3,1698.3599911037677,2.7639976325806415,0.0,473.4761245786935,0.5140287499998522 +4,1703.740309391713,2.77275383685318,0.0,474.97607292022303,0.5156571670013363 +5,1698.7639072429852,2.764654986297407,0.0,473.5887300623679,0.5141509999994014 +6,1702.066685738554,2.7700300963980387,0.0,474.5094928986423,0.5151506249967497 +7,1696.5846334550358,2.761108325034666,0.0,472.9811827149745,0.5134914169975673 +8,1700.0186079028213,2.766696950116356,0.0,473.9385209247512,0.5145307500024501 +9,1682.723315235478,2.738549709108719,0.0,469.1168646278044,0.5092961250011285 +10,1684.2050316211491,2.740961129893243,0.0,469.5299439135196,0.5097445840001456 +11,1697.882008804488,2.763219739819069,0.0,473.34287061141595,0.5138840830004483 +12,1695.3888533669428,2.7591622515579655,0.0,472.6478179837488,0.5131295000028331 +13,1721.269774292272,2.8012821816913447,0.0,479.8630127625005,0.5209626670002763 +14,1725.3229777816546,2.8078785716838692,0.0,480.99298231567775,0.5221894170026644 +15,1699.3414197649358,2.7655948596174444,0.0,473.7497314944678,0.514325790998555 +16,1693.919391580334,2.7567707745327006,0.0,472.23815508802335,0.5126847500032454 +17,1694.479009540369,2.7576815253304043,0.0,472.39416779696006,0.5128541250014678 +18,1693.842437700442,2.756645535865425,0.0,472.2167015534291,0.5126614590008103 +19,1706.236768847888,2.776816702242641,0.0,475.6720466564563,0.5164127499992901 +20,1695.1639059251809,2.7587961606233335,0.0,472.585106165573,0.5130614169975161 +21,1699.9142571169934,2.7665271243276557,0.0,473.9094295625374,0.5144991670022137 +22,1699.7585519786714,2.7662737218476416,0.0,473.8660214124069,0.5144520409994584 +23,1692.5758954468772,2.754584300433153,0.0,471.8636094404647,0.512278124999284 +24,1698.854077185375,2.7648017334585515,0.0,473.6138680278757,0.5141782909995527 +25,1750.7250904090572,2.8492192647833674,0.0,488.07469285168577,0.5298776670024381 +26,1694.6464141966617,2.75795396820241,0.0,472.44083758917907,0.5129047920017911 +27,1697.3704378608134,2.762387183185245,0.0,473.20025265696165,0.5137292500003241 +28,1684.6759895843709,2.7417275908922116,0.0,469.6612396060899,0.5098871250011143 +29,1686.8011600822888,2.7451862017025483,0.0,470.2537038049016,0.5105303330019524 +0,1695.643756292539,1.7718325562095496,0.0,471.20716754289816,0.5134129170000961 +1,1694.9927135001717,1.7711522607107328,0.0,471.0262474475053,0.5132157919979363 +2,1698.9039209509958,1.7752392068453455,0.0,472.1131437827386,0.5144000410000444 +3,1698.5649856864236,1.7748850425145493,0.0,472.0189561177844,0.5142974170012167 +4,1695.6549028723837,1.771844203628405,0.0,471.21026509702585,0.5134162920003291 +5,1670.3319393922616,1.745383426742175,0.0,464.1731962251124,0.5057489169994369 +6,1688.8411757749657,1.7647243216039348,0.0,469.3167794907069,0.5113532079994911 +7,1686.1973756511252,1.761961730042973,0.0,468.5820865085982,0.5105527089981479 +8,1689.4011204580831,1.765309425766022,0.0,469.4723840787185,0.5115227499991306 +9,1688.9853943366422,1.7648750202054777,0.0,469.3568567886077,0.5113968749974447 +10,1695.9996211567454,1.7722044108220956,0.0,471.3060598214611,0.5135206670020125 +11,1682.606935383067,1.758209963827656,0.0,467.58432905944926,0.5094655829998374 +12,1688.212838993708,1.7640677523445225,0.0,469.14216923200087,0.5111629580023873 +13,1684.5242856987225,1.7602134646799608,0.0,468.1171468804538,0.5100461250003718 +14,1691.2586095165043,1.7672503756703288,0.0,469.9885668881752,0.5120851669998956 +15,1684.9852883959743,1.7606951811870162,0.0,468.2452562043584,0.5101857090012345 +16,1688.1939872277387,1.7640480535295076,0.0,469.13693046223415,0.5111572499990871 +17,1688.6343448067516,1.7645081972902317,0.0,469.2593026567135,0.5112905829992087 +18,1688.2666464224403,1.7641239774529156,0.0,469.1571219282801,0.5111792500028969 +19,1694.0767652503414,1.7701951570014018,0.0,470.7717120365049,0.5129384579995531 +20,1716.313368140092,1.7934308966981107,0.0,476.9511035652806,0.5196713340010319 +21,1697.7310531269818,1.77401363963112,0.0,471.78721227548374,0.5140449159989657 +22,1698.8473656891329,1.7751801104379652,0.0,472.09742748345514,0.5143829170010576 +23,1684.149156241156,1.759821479875816,0.0,468.0129011103703,0.5099325419978413 +24,1692.1131805858718,1.7681433443948502,0.0,470.2260460234984,0.5123439170019992 +25,1683.6805870963306,1.759331856944964,0.0,467.8826891252692,0.5097906670016528 +26,1689.5522185270731,1.7654673129854472,0.0,469.5143731420732,0.5115684999982477 +27,1685.257208771114,1.760979319510046,0.0,468.32082091498296,0.5102680419986427 +28,1695.1367933593424,1.7713028143775782,0.0,471.06628620098047,0.5132594169990625 +29,1683.942460695321,1.7596054970693007,0.0,467.9554619092792,0.509869958001218 +0,1685.1226984400566,0.8994249962021414,0.0,467.80093413580266,0.5103156670011231 +1,1684.3804086585617,0.8990288031032531,0.0,467.5948697029253,0.5100908749991504 +2,1685.159573187968,0.899444677896555,0.0,467.8111708037527,0.5103268339989881 +3,1674.767394158544,0.8938979093480546,0.0,464.926234850916,0.5071797089985921 +4,1687.8337375501524,0.9008719984551876,0.0,468.55353608541475,0.5111366669989366 +5,1681.843830358663,0.8976749183506088,0.0,466.890699199911,0.5093227079996723 +6,1686.948083015424,0.900399285205718,0.0,468.3076726719962,0.5108684590013581 +7,1683.0305291219752,0.8983083123056443,0.0,467.22013443363574,0.5096820830003708 +8,1693.5564439394266,0.9039264615973692,0.0,470.1421963041428,0.5128697079999256 +9,1710.9085274184995,0.9131880409658696,0.0,474.95924664013734,0.5181245420026244 +10,1689.3941238414432,0.9017048460783412,0.0,468.9867093880794,0.5116092080024828 +11,1682.3736849567526,0.8979577253357119,0.0,467.0377902551631,0.5094831669994164 +12,1692.884875635795,0.9035680156993332,0.0,469.9557646098421,0.512666333001107 +13,1689.6578805301597,0.9018456247640516,0.0,469.059929946725,0.51168908299951 +14,1688.3434987592047,0.9011440807041184,0.0,468.69504908621974,0.5112910409989126 +15,1685.8437985228156,0.8998098794155699,0.0,468.001116171587,0.5105340420013817 +16,1685.448782617609,0.8995990418431076,0.0,467.8914572075096,0.5104144169999927 +17,1683.371750217879,0.898490437193744,0.0,467.3148596115462,0.5097854170016944 +18,1688.3601480467564,0.9011529671700158,0.0,468.6996710358716,0.5112960830010707 +19,1685.0574815997409,0.8993901870713834,0.0,467.78282952012734,0.510295916999894 +20,1685.8418700821012,0.8998088501209175,0.0,468.0005808240016,0.5105334580002818 +21,1672.6051935235505,0.8927438466203271,0.0,464.32599400330565,0.5065249170002062 +22,1685.7223069740487,0.8997450339678827,0.0,467.9673893337399,0.5104972499975702 +23,1689.0055767881352,0.9014974612200936,0.0,468.8788462190286,0.5114915420017496 +24,1684.561886475507,0.8991256658925135,0.0,467.6452491158729,0.5101458329991146 +25,1687.5874523692487,0.9007405450909286,0.0,468.4851657300708,0.5110620830018888 +26,1681.5064661321744,0.897494852045402,0.0,466.7970447138363,0.5092205419969105 +27,1684.4681921798935,0.8990756570762093,0.0,467.6192389748595,0.5101174590017763 +28,1685.7586302755392,0.8997644213307943,0.0,467.9774729166053,0.5105082499976561 +29,1684.6551746223745,0.8991754579291524,0.0,467.6711465073736,0.5101740840000275 +0,1685.4069504230138,0.9003954820225835,0.0,469.106046133766,0.5119301670019922 +1,1684.9120118880196,0.9001310708543041,0.0,468.9682879150925,0.5117798330029473 +2,1683.7700093651758,0.8995209784895083,0.0,468.6504297930338,0.5114329579992045 +3,1683.044204417893,0.8991332314856176,0.0,468.4484136040067,0.5112124999977823 +4,1685.5411067069986,0.9004671523761171,0.0,469.14338638795704,0.5119709160026105 +5,1688.019081773385,0.9017909617705064,0.0,469.83309108243384,0.5127235830004793 +6,1709.3699343703154,0.9131972344281464,0.0,475.77575913706426,0.5192087499999616 +7,1681.6389594309271,0.898382507016918,0.0,468.05728615581427,0.5107856670001638 +8,1686.120547663472,0.9007767072994408,0.0,469.3046645030087,0.5121469170007913 +9,1687.0467689001869,0.9012715227602898,0.0,469.56246335811096,0.5124282500000845 +10,1681.9798432664134,0.8985646174949181,0.0,468.15216571485234,0.5108892079988436 +11,1682.973832386401,0.8990956366132336,0.0,468.4288266754947,0.5111911250023695 +12,1684.7607062245593,0.900050238782412,0.0,468.92617440563663,0.5117338750023919 +13,1697.2951611645233,0.906746524563556,0.0,472.4149392976128,0.5155411250016186 +14,1683.9981366106051,0.899642850979152,0.0,468.71392536013815,0.5115022499994666 +15,1685.9584038826058,0.9006900851766988,0.0,469.2595343770601,0.5120976670004893 +16,1677.7029249314749,0.8962797580757781,0.0,466.9617539574804,0.5095901249987946 +17,1688.7147098689277,0.902162587385458,0.0,470.0267080278236,0.5129348750015197 +18,1680.573640225599,0.8978133812048117,0.0,467.7607716077069,0.5104620839993004 +19,1683.2713703277295,0.8992545904006469,0.0,468.511641598737,0.5112814999993134 +20,1679.0055633813136,0.8969756670220709,0.0,467.32432251849895,0.5099857920031354 +21,1678.679079877278,0.8968012496376435,0.0,467.23345106121224,0.5098866250009451 +22,1680.2607372995512,0.8976462189768081,0.0,467.67368008691705,0.510367041999416 +23,1681.8592675604157,0.8985002022978081,0.0,468.118605397158,0.5108525840005314 +24,1677.4827550784169,0.8961621366663486,0.0,466.9004732031676,0.5095232499988924 +25,1702.0110496161594,0.909265895125372,0.0,473.7275313603189,0.5169735419985955 +26,1679.5277980310364,0.8972546606022553,0.0,467.46967817377504,0.5101444169995375 +27,1676.1028868287158,0.8954249692199313,0.0,466.51640896358424,0.5091041250016133 +28,1680.8713131616134,0.8979724071104781,0.0,467.8436241045591,0.5105524999999034 +29,1682.1012453372728,0.8986294741611864,0.0,468.18595603797814,0.5109260829995037 +0,1697.203423819641,0.4319175559316277,0.0,469.49438329767935,0.5124109589996806 +1,1702.970913758122,0.433385311725145,0.0,471.08983384523265,0.5141522500016436 +2,1698.55258888602,0.4322609019736166,0.0,469.8676004453214,0.5128182920016116 +3,1752.3333375660038,0.4459474460849607,0.0,484.74487389435234,0.529055499999231 +4,1703.0665532922224,0.4334096508192332,0.0,471.1162904405065,0.5141811249995953 +5,1704.3090392776437,0.4337258483372035,0.0,471.45999714254026,0.5145562500001688 +6,1696.1240599722423,0.4316428710067762,0.0,469.19580078436576,0.5120850829989649 +7,1698.2136390256214,0.4321746433712405,0.0,469.7738373445384,0.5127159579969884 +8,1701.9096344739723,0.4331152291009071,0.0,470.7962540326861,0.5138318339995749 +9,1700.1262940522838,0.4326613907303739,0.0,470.30293172391646,0.5132934169996588 +10,1697.9362429631724,0.4321040494591398,0.0,469.697101762085,0.5126322079995589 +11,1705.7160285840569,0.4340839099425002,0.0,471.84921010749775,0.5149810410002829 +12,1727.832226093905,0.4397122122667182,0.0,477.9671747339228,0.5216582499997457 +13,1703.6167911667892,0.4335496796423127,0.0,471.26850177119394,0.5143472499985364 +14,1702.5864245755272,0.4332874639211059,0.0,470.9834732822422,0.5140361669982667 +15,1699.7292450503628,0.4325603466056166,0.0,470.1930967603053,0.5131735420000041 +16,1696.6413150543756,0.431774506111757,0.0,469.33888814347983,0.512241250002262 +17,1691.5910504622384,0.4304892754146995,0.0,467.9418423757784,0.5107165000008536 +18,1705.8465885600117,0.4341171358628145,0.0,471.88532668287934,0.5150204589990608 +19,1697.6634011631045,0.4320346145512275,0.0,469.6216260171843,0.5125498330016853 +20,1697.9111266140835,0.4320976576548574,0.0,469.6901538708301,0.5126246250001714 +21,1700.1634171040591,0.4326708380939406,0.0,470.3132010081134,0.513304625001183 +22,1698.009386098906,0.4321226634944263,0.0,469.71733521844135,0.5126542910002172 +23,1695.7074127257792,0.4315368393679918,0.0,469.0805443930072,0.5119592909977655 +24,1695.3634979136232,0.4314493172459938,0.0,468.9854078463953,0.5118554580003547 +25,1703.9976932428322,0.4336466145715173,0.0,471.3738700392393,0.5144622500010883 +26,1698.0149108307794,0.4321240694712552,0.0,469.7188635152545,0.5126559589989483 +27,1693.4629920169104,0.4309656616921448,0.0,468.45967425936146,0.5112816670007305 +28,1701.6090530604297,0.4330387347999449,0.0,470.7131047275401,0.5137410839997756 +29,1714.7917125952802,0.4363935607489505,0.0,474.3598005341093,0.5177211250011169 +0,1706.4500436920816,0.9036096252071272,0.0,472.01889458967855,0.5143917909990705 +1,1697.4471386744074,0.8988423531390889,0.0,469.5286129138411,0.5116779580021102 +2,1698.5476904483628,0.8994251238915413,0.0,469.83303508764067,0.5120097079998231 +3,1697.45142476899,0.8988446227375068,0.0,469.5297984848072,0.5116792500011798 +4,1707.4593666243693,0.9041440879181388,0.0,472.2980820739788,0.5146960410020256 +5,1698.7275240872289,0.8995203504747137,0.0,469.8827786331616,0.5120639169981587 +6,1700.7659350798535,0.9005997420454617,0.0,470.4466208077478,0.5126783749983588 +7,1699.2646663495962,0.8998047812555472,0.0,470.0313568454903,0.5122258330011391 +8,1695.6890490713502,0.8979113990257988,0.0,469.0423100688839,0.5111479999977746 +9,1692.1716258741417,0.8960488320736202,0.0,468.0693602802348,0.5100877090007998 +10,1697.74985592254,0.8990026497854161,0.0,469.61234713235217,0.511769208998885 +11,1707.8936757090762,0.9043740658601866,0.0,472.41821573674343,0.5148269590026757 +12,1698.868789500558,0.8995951541806089,0.0,469.9218538727151,0.512106500002119 +13,1699.6750602015395,0.9000220954606203,0.0,470.1448753472811,0.512349542001175 +14,1701.1311258658325,0.9007931200529032,0.0,470.54763574911647,0.5127884579997044 +15,1700.9127306150654,0.9006774740945451,0.0,470.4872257270172,0.5127226250006061 +16,1699.4681365554409,0.8999125240149229,0.0,470.0876384706101,0.5122871669991582 +17,1691.921847883786,0.8959165681394461,0.0,468.0002695199536,0.5100124159980624 +18,1696.87170682815,0.898537647028968,0.0,469.36944347024314,0.5115044999984093 +19,1696.5682995533305,0.8983769849955858,0.0,469.2855183843608,0.5114130410001962 +20,1693.8811982918032,0.8969540950769516,0.0,468.5422428505676,0.5106030419992749 +21,1698.0709516558488,0.8991726783170472,0.0,469.7011649993938,0.5118660000007367 +22,1695.0753276653402,0.897586417599172,0.0,468.8725494006934,0.5109630000006291 +23,1723.2436212518203,0.912502260758186,0.0,476.6641439160539,0.5194540419979603 +24,1692.876848173967,0.8964222656003669,0.0,468.26443088991016,0.5103002910000214 +25,1699.7398857679125,0.9000564222819358,0.0,470.16280666164533,0.5123690830005216 +26,1704.6099874632089,0.902635267636287,0.0,471.5099190645256,0.5138371249995544 +27,1696.3920653012462,0.8982836643812125,0.0,469.2367704604675,0.5113599169999361 +28,1701.2077050215437,0.9008336707050868,0.0,470.56881820831654,0.5128115419975074 +29,1698.8667161016097,0.8995940562620067,0.0,469.92128035256826,0.5121058749973599 +0,1691.7368270144957,0.9352332949595424,0.0,471.9254008744063,0.5151577079996059 +1,1685.467002283447,0.9317671832402716,0.0,470.1763761429213,0.5132484579989978 +2,1691.7194485071643,0.935223687697696,0.0,471.9205529814552,0.5151524159991823 +3,1689.084378366222,0.933766956786002,0.0,471.1854761581936,0.5143500000012864 +4,1693.5933387749658,0.9362596198483492,0.0,472.4432917441903,0.515723041997262 +5,1693.8493466310365,0.9364011472224332,0.0,472.51470746806285,0.5158009999977367 +6,1686.4976048238766,0.9323369254095548,0.0,470.46387211112864,0.5135622909983795 +7,1686.1255662267406,0.932131253417614,0.0,470.3600885549096,0.5134490000018559 +8,1688.5101028010365,0.933449483275662,0.0,471.02527675720825,0.5141751249975641 +9,1699.7612240655442,0.9396693769637156,0.0,474.1638795400121,0.5176012500014622 +10,1691.2235798348315,0.9349495594261542,0.0,471.78222589757615,0.5150014169994392 +11,1692.366929218863,0.9355816307948464,0.0,472.1011736250137,0.5153495830018073 +12,1689.6277292335435,0.9340673343706531,0.0,471.33704883296286,0.5145154579986411 +13,1697.3383739763035,0.9383299664620526,0.0,473.488003433655,0.5168634580004436 +14,1690.1056775619145,0.9343315558398706,0.0,471.47037687362615,0.5146610000010696 +15,1694.925927355849,0.9369963072511552,0.0,472.8150294696991,0.516128834002302 +16,1671.365031052581,0.923971270300939,0.0,466.2425027886417,0.5089542089990573 +17,1680.0397756608247,0.9287668802642322,0.0,468.66240183047626,0.511595790998399 +18,1690.4551425000311,0.9345247485636612,0.0,471.5678633019989,0.5147674170002574 +19,1684.268371406136,0.9311045509165394,0.0,469.84200713927805,0.5128834580027615 +20,1696.6806343047017,0.937966351962164,0.0,473.3045209597648,0.5166631669999333 +21,1684.1537067494985,0.931041161503405,0.0,469.81002038862886,0.5128485409986752 +22,1680.6578390184325,0.9291085607320204,0.0,468.8348162350971,0.5117840000020806 +23,1706.13640679922,0.9431937331512598,0.0,475.9422948462196,0.519542582998838 +24,1681.7093765545292,0.9296898762764678,0.0,469.12815221107905,0.512104208002711 +25,1690.4400890135123,0.9345164266299107,0.0,471.56366399478605,0.5147628330014413 +26,1678.572411723223,0.927955685763791,0.0,468.2530672913072,0.5111489579976478 +27,1680.5958550177454,0.929074294467746,0.0,468.81752523338514,0.5117651250002382 +28,1682.6264145623704,0.930196837207968,0.0,469.3839683182635,0.5123834590012848 +29,1679.3658889613605,0.9283943392943216,0.0,468.4744149960525,0.5113905830003205 +0,1752.164765462704,1.455203942701051,0.0,470.5931113793921,0.5096037500006787 +1,1752.202012438559,1.4552348769757186,0.0,470.60311510198864,0.5096145829993475 +2,1764.2595163856147,1.46524884805238,0.0,473.8414967940299,0.5131214160028321 +3,1763.508398158816,1.464625031030935,0.0,473.6397628758903,0.5129029589988932 +4,1765.9374046561293,1.4666423640474469,0.0,474.2921408643437,0.5136094170011347 +5,1760.7687938821498,1.4623497410448405,0.0,472.9039651210689,0.5121061660029227 +6,1765.694572073473,1.4664406872767095,0.0,474.22692134682507,0.5135387909976998 +7,1764.3100901710034,1.4652908504789472,0.0,473.85507980602137,0.5131361250023474 +8,1775.629506989212,1.4746918270923448,0.0,476.8952274476585,0.5164282909972826 +9,1764.9157997040215,1.4657939029988665,0.0,474.01776013115614,0.513312290997419 +10,1772.2548267340983,1.4718890952320791,0.0,475.9888621831194,0.5154467909997038 +11,1770.4399845493308,1.470381836579976,0.0,475.5014352885564,0.514918958000635 +12,1792.9889963648277,1.489109191189951,0.0,481.5576063964049,0.5214771659993858 +13,1773.5619506066694,1.4729746848127268,0.0,476.3399270500066,0.5158269580024353 +14,1766.3829484104258,1.467012396044824,0.0,474.4118041664046,0.5137390000018058 +15,1765.8111919482,1.4665375421529436,0.0,474.2582428930508,0.5135727089982538 +16,1776.7056947757285,1.4755856201538733,0.0,477.1842679356696,0.5167412920018251 +17,1754.7735669287372,1.457370598630862,0.0,471.2937783617849,0.5103624999974272 +18,1759.0244366000718,1.4609010213556912,0.0,472.4354689288666,0.51159883299988 +19,1762.2113003611191,1.4635477682834566,0.0,473.2913907933023,0.5125257080035226 +20,1769.5408755153906,1.46963511056602,0.0,475.2599542782705,0.5146574589998636 +21,1767.2834912096223,1.4677603128262782,0.0,474.6536702546616,0.51400091600226 +22,1759.7719789945058,1.461521868584878,0.0,472.63624245668706,0.5118162500002654 +23,1761.1276686756316,1.462647792931686,0.0,473.0003510369309,0.5122105419977743 +24,1753.0491242413011,1.455938418366093,0.0,470.8306307938895,0.5098609590022534 +25,1756.1411462268331,1.4585063975156318,0.0,471.6610802329528,0.5107602499992936 +26,1760.151335689559,1.4618369310545798,0.0,472.7381293630822,0.5119265829998767 +27,1762.0845134541207,1.463442469506433,0.0,473.2573386047053,0.5124888329992245 +28,1777.3232973655329,1.4760985500685826,0.0,477.3501424755878,0.5169209170016984 +29,1788.980811426612,1.4857803224441937,0.0,480.4810956376916,0.5203114159994584 +0,1710.8681075703146,1.9688932345059016,0.0,470.4987409033679,0.5129070409966516 +1,1708.5795885529983,1.966259571752885,0.0,469.8693847821005,0.5122209580003982 +2,1714.6152742499144,1.9732055313401136,0.0,471.5292336671909,0.5140304169981391 +3,1719.021778225533,1.9782766036378725,0.0,472.74104804559937,0.5153514579978946 +4,1723.6135531148027,1.983560888542041,0.0,474.00381300939387,0.5167280420027964 +5,1713.988175818097,1.9724838568554992,0.0,471.3567779289099,0.513842416999978 +6,1709.5649903497754,1.9673935872403203,0.0,470.14037604239456,0.5125163749980857 +7,1713.8351537921171,1.972307756763184,0.0,471.3146959763412,0.5137965419999091 +8,1696.0669466595305,1.9518598317256828,0.0,466.4283350423797,0.5084697500024049 +9,1713.8143061036951,1.9722837649238905,0.0,471.3089627400327,0.5137902919996122 +10,1707.3797357627109,1.9648787627759996,0.0,469.5394182437088,0.5118612500009476 +11,1709.1741645996149,1.9669438189782569,0.0,470.0328966741431,0.5123992080007156 +12,1709.076183799929,1.9668310611725792,0.0,470.00595138088465,0.5123698339994007 +13,1720.767426815679,1.9802855227846816,0.0,473.2211116227327,0.5158747919995221 +14,1704.6249223381478,1.9617084812739085,0.0,468.7818284318785,0.5110353749987553 +15,1705.365015246795,1.962560191533918,0.0,468.98535831248665,0.5112572500001988 +16,1701.6139625675005,1.95824342263171,0.0,467.95379687600814,0.510132709001482 +17,1706.994193630981,1.964435074982989,0.0,469.43339190144343,0.51174566699774 +18,1707.2698000702223,1.964752247096495,0.0,469.5091852849744,0.5118282920011552 +19,1713.4863002655777,1.9719062907792204,0.0,471.2187592151903,0.5136919579999812 +20,1688.421819469822,1.9430617022064345,0.0,464.3258803289579,0.5061777909977536 +21,1707.8000251380013,1.9653624382293453,0.0,469.6550002812804,0.5119872499999474 +22,1709.2365675547344,1.9670156332552335,0.0,470.05005785195834,0.5124179159975029 +23,1718.1450645875857,1.9772676681490904,0.0,472.49994666498344,0.5150886249975883 +24,1702.1062448464766,1.9588099486217936,0.0,468.0891773833673,0.5102802920009708 +25,1709.7403911188364,1.967595441133092,0.0,470.188612280262,0.5125689589985996 +26,1703.5544619721238,1.9604765790815968,0.0,468.4874455673124,0.5107144579997112 +27,1713.4480806178635,1.971862307022976,0.0,471.20824858842275,0.5136805000001914 +28,1697.8945950224474,1.953963117467512,0.0,466.9309490368551,0.5090176669982611 +29,1707.9331701381714,1.9655156635357751,0.0,469.6916159354389,0.5120271659980062 +0,1740.8475467300475,0.8670057698492718,0.0,476.0195140230136,0.5090652500002761 +1,1737.8357945883545,0.865505807093137,0.0,475.1959767790204,0.5081845420027093 +2,1739.0111708776192,0.8660911874881353,0.0,475.517373130505,0.5085282500003814 +3,1734.962540039086,0.8640748212051764,0.0,474.4103104886113,0.5073443339970254 +4,1743.64428559599,0.8683986481274925,0.0,476.78425776999825,0.5098830829992949 +5,1742.4530932244463,0.8678053907448637,0.0,476.45853664934344,0.5095347500027856 +6,1740.5117053957656,0.8668385085775291,0.0,475.92768115170105,0.5089670420020411 +7,1742.7718360813126,0.8679641363492794,0.0,476.54569409176776,0.5096279579993279 +8,1738.451339551393,0.8658123710053869,0.0,475.3642921577653,0.5083645419981622 +9,1737.412179937894,0.8652948314986159,0.0,475.0801430631824,0.5080606669980625 +10,1757.4058468687897,0.875252409129174,0.0,480.5472361661138,0.513907291002397 +11,1739.8851866112857,0.8665264793007073,0.0,475.75636507759987,0.5087838330000523 +12,1744.1174892272886,0.8686343208487597,0.0,476.91365115830945,0.5100214590020187 +13,1720.7001303633797,0.8569716193745402,0.0,470.5103794835216,0.5031736660021124 +14,1739.8398790735669,0.8665039144892777,0.0,475.74397612824765,0.5087705839978298 +15,1741.079090810628,0.8671210872727962,0.0,476.0828277238141,0.5091329589995439 +16,1744.078159308019,0.868614733110018,0.0,476.9028967363657,0.5100099579976813 +17,1736.971894312385,0.8650755531485875,0.0,474.95975081523414,0.5079319170035888 +18,1733.1724702832205,0.8631833009743076,0.0,473.92083159262467,0.506820875001722 +19,1735.3251678558756,0.8642554231252326,0.0,474.5094678889498,0.5074503750001895 +20,1737.784068282289,0.86548004550023,0.0,475.181832673684,0.5081694159998733 +21,1753.020803602176,0.8730684971488665,0.0,479.34818449231034,0.5126249999993888 +22,1741.5863409131382,0.8673737163823694,0.0,476.22153082147395,0.5092812910006614 +23,1740.757923383469,0.8669611341436682,0.0,475.99500730387933,0.5090390420009498 +24,1741.5276384297797,0.8673444803979364,0.0,476.20547914155935,0.5092641249975713 +25,1733.8152291813713,0.8635034184219069,0.0,474.0965883835662,0.5070088329994178 +26,1731.9024812868108,0.8625507999896003,0.0,473.5735642250594,0.5064494999969611 +27,1736.6560000323225,0.8649182262396394,0.0,474.8733722911867,0.5078395419986919 +28,1761.9889519712626,0.8775349631501356,0.0,481.800446114161,0.515247499999532 +29,1735.483756181035,0.864334405913359,0.0,474.55283247743074,0.5074967500004277 +0,1707.9951880275323,2.0066518754973948,0.0,471.1953045647133,0.5138533329991333 +1,1698.3286062408472,1.995295014185448,0.0,468.52852424764626,0.5109451249991253 +2,1693.5739088739952,1.989708919765806,0.0,467.2168161763406,0.5095146659987222 +3,1697.8186673670195,1.9946959084006497,0.0,468.3878442242792,0.5107917089990224 +4,1704.6678282446512,2.0027427001112015,0.0,470.277365031112,0.5128522910017637 +5,1703.7786893132975,2.0016980880908135,0.0,470.03207271852455,0.512584792002599 +6,1697.2354598436402,1.994010722353993,0.0,468.2269511207567,0.5106162499978382 +7,1697.1282641942664,1.9938847826836887,0.0,468.19737838717487,0.5105839999996533 +8,1700.851719406768,1.998259313969181,0.0,469.2245912418632,0.5117042079982639 +9,1698.8143105967222,1.9958656478520331,0.0,468.6625185431216,0.5110912500022096 +10,1696.6992056996708,1.9933806998625463,0.0,468.07901133939026,0.5104549170027894 +11,1698.83508493744,1.995890054753209,0.0,468.6682496902994,0.5110974999988684 +12,1700.246494409535,1.9975482605163912,0.0,469.0576240402573,0.5115221250016475 +13,1703.1910510391835,2.0010076965410417,0.0,469.8699572761123,0.5124080000023241 +14,1704.496790506611,2.002541755049866,0.0,470.2301797816261,0.5128008339997905 +15,1704.5339051361238,2.002585359470676,0.0,470.2404188263726,0.5128120000008494 +16,1699.8790642606943,1.997116582252627,0.0,468.9562587892877,0.5114115830001538 +17,1697.0469683490192,1.993789271606445,0.0,468.1749507943867,0.5105595420027385 +18,1704.0246576254133,2.0019870659393932,0.0,470.0999295336685,0.5126587919985468 +19,1699.5277018289198,1.9967037812754096,0.0,468.8593262398208,0.5113058749993797 +20,1707.558514477884,2.0061388460676137,0.0,471.07483670411017,0.5137219589996675 +21,1692.7126042551126,1.9886970091111564,0.0,466.97920268945137,0.5092555410010391 +22,1697.8531494743247,1.994736419981584,0.0,468.3973570186755,0.510802083001181 +23,1697.3617679212994,1.994159116414293,0.0,468.2617965193497,0.5106542500034266 +24,1724.363163549008,2.025881923104376,0.0,475.7108402436259,0.5187776669990853 +25,1699.613843927194,1.9968049860119763,0.0,468.88309079871226,0.511331790999975 +26,1698.3545027196003,1.995325438871667,0.0,468.5356684710486,0.5109529159999511 +27,1698.6356511649765,1.9956557483825843,0.0,468.6132306493705,0.5110375000003842 +28,1700.8506125534502,1.998258013573664,0.0,469.22428588732254,0.5117038749995118 +29,1744.0226240557995,2.0489789983032693,0.0,481.1344184515794,0.5246922500009532 +0,1696.056708219553,2.13210562208661,0.0,468.996608558364,0.5107068340003025 +1,1698.1034097991303,2.1346785218743367,0.0,469.5625661085455,0.5113231249997625 +2,1692.418414711478,2.1275319389038634,0.0,467.9905411857592,0.5096112920000451 +3,1690.6943979681755,2.1253646848414536,0.0,467.5138130187185,0.50909216600121 +4,1701.3062373532607,2.138704782671892,0.0,470.4482176633577,0.5122875419983757 +5,1695.8159324977382,2.1318029439581867,0.0,468.9300288288024,0.5106343330007803 +6,1695.2462417456106,2.131086788154212,0.0,468.7724969317968,0.5104627910004638 +7,1698.5780369658344,2.1352751736523228,0.0,469.6938108543344,0.5114660420003929 +8,1698.1573760274025,2.1347463625887086,0.0,469.577488945685,0.5113393749998068 +9,1694.4814456454424,2.130125366253036,0.0,468.5610141579725,0.5102325000007113 +10,1706.3120882158423,2.144997616346446,0.0,471.8324444207073,0.5137948749979842 +11,1694.0333864648817,2.1295621129766147,0.0,468.4371160388247,0.5100975829991512 +12,1697.0918900604795,2.1334069447441752,0.0,469.2828588766953,0.5110185419980553 +13,1697.1154127034304,2.1334365149578587,0.0,469.2893633996365,0.5110256250009115 +14,1697.2283266475597,2.133578458593306,0.0,469.3205865636963,0.5110596249978698 +15,1692.1726608124698,2.127223002730217,0.0,467.9225848818124,0.5095372920004593 +16,1695.755878881392,2.131727450814344,0.0,468.9134226963178,0.5106162500014761 +17,1692.8812789075514,2.128113803501862,0.0,468.11853321405016,0.5097506670026632 +18,1690.365619098878,2.1249513783333307,0.0,467.42289850275984,0.5089931660004368 +19,1705.9150894038498,2.144498550840612,0.0,471.7226656052208,0.5136753330007195 +20,1722.8095641598518,2.165736522681356,0.0,476.3943557235645,0.5187624999998661 +21,1693.2948793959606,2.1286337389039987,0.0,468.23290275453894,0.5098752080011764 +22,1694.6671459281042,2.13035880928284,0.0,468.61236432943474,0.5102884170009929 +23,1697.970845500837,2.13451187586285,0.0,469.5259091937063,0.5112832080012595 +24,1697.0308667167408,2.1333302325601817,0.0,469.26598459347247,0.5110001670000202 +25,1691.892863349303,2.126871270537907,0.0,467.8452147911353,0.5094530409987783 +26,1704.196751565577,2.1423384357053865,0.0,471.2475077790692,0.5131579170010809 +27,1691.4331840040743,2.126293409602262,0.0,467.71810344344755,0.5093146250001155 +28,1696.5876528748324,2.132773070338223,0.0,469.143426315961,0.5108667089989467 +29,1691.3864143747585,2.1262346157016077,0.0,467.705170622613,0.5093005419985275 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/without_smell.csv new file mode 100644 index 000000000..c99b2de5a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n100/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,243.0955342560187,0.0,0.0,57.8043656552693,0.0804041249975853 +1,240.37357538885556,0.0,0.0,57.15712585245829,0.0795038340002065 +2,240.57790726684237,0.0,0.0,57.205712819003466,0.0795714170017163 +3,241.00357775344693,0.0,0.0,57.306930690124176,0.0797122080002736 +4,228.7827823794463,0.0,0.0,54.40101418878283,0.0756701660029648 +5,242.73007823223807,0.0,0.0,57.71746585394556,0.08028325000123 +6,239.8171358810357,0.0,0.0,57.024813126626064,0.0793197909988521 +7,243.10473150771745,0.0,0.0,57.80655261975568,0.0804071669990662 +8,240.42849885732852,0.0,0.0,57.17018580546971,0.0795219999999972 +9,241.96893194067064,0.0,0.0,57.53647701476525,0.0800314999978581 +10,241.36714717136553,0.0,0.0,57.39338188569533,0.07983245899959 +11,226.9116656193993,0.0,0.0,53.95609150555676,0.0750512920021719 +12,241.0369623717528,0.0,0.0,57.314869037036715,0.0797232500008249 +13,259.1807637955834,0.0,0.0,61.629184950282394,0.0857243329992343 +14,245.7031080501689,0.0,0.0,58.42440645335082,0.0812665830017067 +15,240.7667441033004,0.0,0.0,57.25061530385252,0.0796338750005816 +16,239.96490559435284,0.0,0.0,57.059950483498945,0.0793686659999366 +17,239.80366049099263,0.0,0.0,57.02160888687818,0.0793153339982382 +18,244.9626238231499,0.0,0.0,58.2483307341832,0.0810216669997316 +19,244.61392358457164,0.0,0.0,58.16541519994048,0.0809063339984277 +20,242.5928904966237,0.0,0.0,57.68484472802838,0.0802378750013304 +21,240.89272099625768,0.0,0.0,57.280570664434954,0.079675542001496 +22,232.55651691475,0.0,0.0,55.29835001040627,0.076918333001231 +23,221.65103672122407,0.0,0.0,52.705195155949035,0.0733113329988555 +24,242.54275309588132,0.0,0.0,57.67292282804619,0.080221291998896 +25,242.09024671523045,0.0,0.0,57.5653237955566,0.0800716249977995 +26,234.0747792582066,0.0,0.0,55.65936935998167,0.0774205000016081 +27,240.0650594382712,0.0,0.0,57.08376552162113,0.0794017919979523 +28,237.81349047900775,0.0,0.0,56.548377178031686,0.0786570829986885 +29,243.5262478163098,0.0,0.0,57.90678269146844,0.0805465839985117 +0,231.07091032445197,0.96752185957394,0.0,58.35157697913175,0.0799369160013157 +1,227.65017155015877,0.9531988124393016,0.0,57.48774906745996,0.0787535419985943 +2,230.5149398910295,0.9651939441004702,0.0,58.211179594197326,0.0797445829994103 +3,234.6926746579278,0.9826866250476328,0.0,59.26616921407965,0.0811898329993709 +4,232.3701460779587,0.9729619168727698,0.0,58.67966871070601,0.0803863749970332 +5,222.86696370994233,0.9331709424759352,0.0,56.27986132380727,0.0770988340009353 +6,237.3139072923828,0.9936620432398358,0.0,59.928100469878366,0.0820966249993944 +7,230.30332002617052,0.9643078661217072,0.0,58.157739925754,0.0796713749987247 +8,230.46507591515575,0.9649851576002768,0.0,58.19858760837532,0.0797273330026655 +9,232.0383236671385,0.9715725362903576,0.0,58.59587468868398,0.0802715840000019 +10,229.85044808565772,0.9624116365122832,0.0,58.04337766413736,0.0795147079988964 +11,230.5961184668456,0.9655338486194806,0.0,58.23167935294729,0.0797726660020998 +12,239.10768684678592,1.0011728152695338,0.0,60.38107772091086,0.0827171670025563 +13,214.01309135748147,0.8960987076764312,0.0,54.04402205951994,0.0740359160008665 +14,233.75983368082092,0.9787807070089238,0.0,59.03060195029682,0.0808671250015322 +15,231.6784328857628,0.9700656300443432,0.0,58.50499265336401,0.0801470830010657 +16,230.71487857136052,0.9660311115462684,0.0,58.26166945153184,0.0798137499987206 +17,231.52522759836089,0.9694241409691692,0.0,58.46630422603713,0.0800940830013132 +18,230.4279799921454,0.9648298324822722,0.0,58.18921989694807,0.0797144999996817 +19,231.78587024977804,0.9705154832866824,0.0,58.5321234575313,0.0801842499968188 +20,231.19713702261603,0.9680503860317448,0.0,58.38345259205248,0.0799805829992692 +21,230.582873431562,0.9654783900541868,0.0,58.228334627750776,0.0797680840005341 +22,231.6367610464117,0.9698911450109644,0.0,58.49446940083367,0.0801326670007256 +23,232.1529848272166,0.9720526364408436,0.0,58.62482969431156,0.080311250003433 +24,231.05693973577868,0.9674633630288164,0.0,58.348049032324134,0.0799320830010401 +25,232.75243664028173,0.9745626137118352,0.0,58.77620728903447,0.0805186249999678 +26,232.66162348649672,0.9741823680491488,0.0,58.75327454199867,0.0804872090011485 +27,229.73024552918028,0.9619083338646012,0.0,58.01302330790302,0.0794731249989126 +28,230.7071720615588,0.965998843457292,0.0,58.259723351958755,0.0798110840005392 +29,230.77582537158145,0.9662863031729516,0.0,58.27706014653421,0.0798348339994845 +0,232.9169939317484,0.0,0.0,56.31584657411337,0.0802987909992225 +1,237.47883911982245,0.0,0.0,57.41883253219986,0.0818715000023075 +2,235.63126033438007,0.0,0.0,56.97211560674853,0.0812345420017663 +3,224.2917360444457,0.0,0.0,54.23038818121553,0.0773252090002643 +4,233.22591381073585,0.0,0.0,56.39053878190413,0.0804052919993409 +5,232.05152169027792,0.0,0.0,56.10658832660616,0.080000417001429 +6,231.51224545439288,0.0,0.0,55.976199395989674,0.0798144999971555 +7,230.47563320063983,0.0,0.0,55.72556205238602,0.079457124997134 +8,237.39157949081192,0.0,0.0,57.39773445860497,0.0818414169989409 +9,238.7171669043764,0.0,0.0,57.71824167511468,0.0822984170008567 +10,233.33565330551497,0.0,0.0,56.41707215092448,0.0804431249998742 +11,213.50066847479712,0.0,0.0,51.62126939016117,0.0736049580009421 +12,231.42716131362363,0.0,0.0,55.95562732292378,0.0797851669994997 +13,235.6416532820299,0.0,0.0,56.97462846609562,0.0812381249997997 +14,231.260615912246,0.0,0.0,55.91535913504585,0.0797277500023483 +15,231.6802411812647,0.0,0.0,56.01681825088693,0.0798724169981142 +16,231.26617350593335,0.0,0.0,55.916702878102704,0.0797296659984567 +17,232.8875061362458,0.0,0.0,56.308716866060294,0.0802886249985022 +18,237.3270376003675,0.0,0.0,57.38212919452134,0.0818191660000593 +19,234.63030260863508,0.0,0.0,56.7300989949132,0.0808894590009003 +20,231.03231320527357,0.0,0.0,55.860158954066,0.0796490419998008 +21,233.7110410932738,0.0,0.0,56.50783530523265,0.0805725409991282 +22,231.71746496061323,0.0,0.0,56.02581840416606,0.079885250001098 +23,227.65827556405924,0.0,0.0,55.04436710079492,0.0784858330007409 +24,231.9168831965141,0.0,0.0,56.0740347519194,0.0799540000007255 +25,231.77136734596337,0.0,0.0,56.03885119499903,0.0799038330005714 +26,233.1512226176164,0.0,0.0,56.372479568185334,0.0803795419997186 +27,230.73777754985747,0.0,0.0,55.78894463646289,0.0795475000013539 +28,232.8224856404988,0.0,0.0,56.29299588237056,0.0802662089990917 +29,237.8312655240404,0.0,0.0,57.50404396728485,0.0819929999997839 +0,240.68532811369528,0.0,0.0,56.67665791391861,0.0791760419997444 +1,237.4792714962241,0.0,0.0,55.92169467795753,0.0781213749978633 +2,229.61777289781264,0.0,0.0,54.070466477863675,0.0755352500018489 +3,237.8056781604508,0.0,0.0,55.99855702346976,0.0782287500005622 +4,242.18689904554617,0.0,0.0,57.03024831639547,0.0796699999991688 +5,243.35345135751976,0.0,0.0,57.30494842729374,0.0800537499999336 +6,243.4134889068341,0.0,0.0,57.319086088575986,0.0800735000011627 +7,244.52633573416657,0.0,0.0,57.58113961480306,0.080439583001862 +8,247.25107666319172,0.0,0.0,58.222762478767,0.0813359160019899 +9,243.32786471626991,0.0,0.0,57.29892327684254,0.0800453329975425 +10,244.4880849635703,0.0,0.0,57.57213231112975,0.0804269999971438 +11,241.4227502834867,0.0,0.0,56.85030632191656,0.0794186249986523 +12,245.31417120068048,0.0,0.0,57.766659362009946,0.0806987500000104 +13,243.4813784481399,0.0,0.0,57.335072739439504,0.0800958330000867 +14,243.02235721302517,0.0,0.0,57.22698227243133,0.0799448329998995 +15,243.41158898109776,0.0,0.0,57.318638693456954,0.0800728750000416 +16,242.4810070275498,0.0,0.0,57.099504957905,0.0797667500009993 +17,242.8655512932365,0.0,0.0,57.1900575643721,0.0798932499965303 +18,227.67858753326496,0.0,0.0,53.61382648904712,0.0748973340014345 +19,244.21563610620777,0.0,0.0,57.50797596720637,0.0803373749986349 +20,244.89530368100628,0.0,0.0,57.668024304734615,0.0805609589988307 +21,244.7900449486244,0.0,0.0,57.64323794482471,0.0805263330003072 +22,245.05122194988175,0.0,0.0,57.7047399884734,0.0806122499998309 +23,242.19943853992356,0.0,0.0,57.03320112053526,0.0796741250014747 +24,243.07416277192996,0.0,0.0,57.239181461983506,0.079961874998844 +25,245.99079585749843,0.0,0.0,57.92599115224054,0.0809213329994236 +26,245.43513393916336,0.0,0.0,57.79514370629074,0.0807385420011996 +27,240.29419641988633,0.0,0.0,56.584554097773946,0.0790473749984812 +28,244.3516705522685,0.0,0.0,57.54000940199992,0.0803821250010514 +29,241.889751197847,0.0,0.0,56.96027584634135,0.0795722500006377 +0,238.41283703560313,0.0695081157538201,0.0,61.79271490514612,0.0831266669993056 +1,234.37913907907773,0.0683321105186815,0.0,60.7472462511079,0.0817202500002167 +2,229.3925259214554,0.0668782874406575,0.0,59.45479753474456,0.0799815830032457 +3,221.67814600297828,0.0646291970854164,0.0,57.455356208935186,0.0772918340007891 +4,231.8804534306275,0.0676036307377922,0.0,60.09962772589734,0.0808490409981459 +5,229.33420950258335,0.0668612855692663,0.0,59.439682871077736,0.0799612499977229 +6,223.15663158869825,0.0650602424456846,0.0,57.838555534213626,0.0778073330002371 +7,235.0478747510722,0.0685270771869015,0.0,60.920571619155446,0.081953416000033 +8,231.3115035490765,0.0674377561367569,0.0,59.95216520557696,0.0806506670014641 +9,229.6267523252653,0.0669465750219432,0.0,59.51550519450753,0.0800632499995117 +10,232.2332285257856,0.0677064806197625,0.0,60.19106127096891,0.0809720420002122 +11,230.43757777224496,0.0671829672805378,0.0,59.72565791239818,0.0803459580019989 +12,231.26095387219027,0.0674230186216298,0.0,59.93906355462891,0.0806330420018639 +13,226.7150679276371,0.0660976874424598,0.0,58.76084413634677,0.0790480420000676 +14,229.0763215445606,0.0667860995756736,0.0,59.37284252277387,0.0798713330004829 +15,227.24876640336953,0.0662532846657054,0.0,58.8991700678121,0.0792341249980381 +16,231.33229702504573,0.0674438183746489,0.0,59.95755453506287,0.0806579169984615 +17,230.3895405214245,0.0671689622511441,0.0,59.71320744126716,0.0803292090022296 +18,227.8955154857735,0.0664418412494966,0.0,59.06679687080252,0.0794596250016184 +19,221.77446141446887,0.0646572773803116,0.0,57.48031959109704,0.0773254159976204 +20,228.5989088813338,0.0666469122103014,0.0,59.24910495495795,0.0797048750027897 +21,228.23203436741105,0.0665399517106154,0.0,59.15401707073714,0.0795769579999614 +22,215.52590171771973,0.0628355398593935,0.0,55.86079493500083,0.075146750001295 +23,236.72832386273487,0.0690170040416136,0.0,61.356116592994546,0.0825393329978396 +24,220.5298408730013,0.0642944142486884,0.0,57.15773426708401,0.0768914580003183 +25,228.89658839783272,0.0667336992413506,0.0,59.32625862556073,0.0798086659997352 +26,229.44773620070688,0.0668943837319845,0.0,59.46910713773422,0.0800008330006676 +27,229.6753890074541,0.0669607548126688,0.0,59.52811102846259,0.0800802080011635 +28,229.35356896551573,0.0668669297275556,0.0,59.44470052779693,0.079968000001827 +29,220.42790404735163,0.0642646950575369,0.0,57.13131390615032,0.0768559160023869 +0,519.5237328742296,0.9205763684815628,0.0,80.76287294255556,0.0828468750005413 +1,501.95191209065416,0.889439767897295,0.0,78.03123502206653,0.0800447500005248 +2,403.3808155336163,0.7147755199259882,0.0,62.70780619042996,0.0643259160024172 +3,491.6841117381172,0.8712456147475667,0.0,76.43504797073845,0.078407375000097 +4,500.07325971574926,0.8861108670762271,0.0,77.73918799234131,0.0797451670005102 +5,462.2684024726137,0.8191220925705688,0.0,71.86221127513336,0.0737165410027955 +6,506.06692099885333,0.89673140775371,0.0,78.67093619562355,0.0807009579984878 +7,514.8391200881973,0.9122754121374724,0.0,80.03462365713747,0.0820998339986545 +8,471.0348511557271,0.834655907452389,0.0,73.22500480380383,0.0751145000031101 +9,484.3581431807236,0.8582642760648003,0.0,75.2961851424542,0.0772391249993234 +10,500.5286831836258,0.8869178602040666,0.0,77.80998612021061,0.07981779200054 +11,498.99518692975875,0.8842005629505709,0.0,77.57159554193278,0.0795732500009762 +12,503.8888335741937,0.8928719193708878,0.0,78.33234031096134,0.0803536249986791 +13,498.5248700961304,0.8833671793429695,0.0,77.4984821569736,0.0794982500010519 +14,478.0556405079984,0.8470964801477516,0.0,74.31642581603928,0.0762340840010438 +15,497.8429106725408,0.8821587730856716,0.0,77.39246774647758,0.0793894999987969 +16,483.93015488790104,0.8575058970275626,0.0,75.22965196614886,0.0771708750035031 +17,497.5996565325026,0.881727735967087,0.0,77.35465252849713,0.0793507089983904 +18,500.7494687102951,0.8873090837911588,0.0,77.84430846644743,0.0798529999992752 +19,471.785790336564,0.8359865432256978,0.0,73.34174250376218,0.075234249998175 +20,485.74322626408593,0.8607185908039416,0.0,75.5115040624535,0.0774600000004284 +21,469.00256194196385,0.8310547679745832,0.0,72.90907406730862,0.0747904170020774 +22,467.1466415379595,0.8277661473445749,0.0,72.62056084972983,0.0744944590005616 +23,487.7248278676945,0.864229913757245,0.0,75.81955512616446,0.0777760000019043 +24,498.1603745346695,0.8827213070197918,0.0,77.44181928123635,0.0794401249986549 +25,494.11016275783135,0.8755444852248084,0.0,76.81219118453032,0.0787942500028293 +26,501.47454049642266,0.8885938835212288,0.0,77.95702493507396,0.0799686249993101 +27,497.07263830214384,0.8807938796330499,0.0,77.27272459396103,0.0792666669985919 +28,476.421809985036,0.8442013943713581,0.0,74.06243771388722,0.0759735419997014 +29,509.0607510322008,0.902036361128414,0.0,79.13634383591972,0.0811783749995811 +0,235.05822270976108,0.0,0.0,56.90602555177452,0.0796164580024196 +1,234.8477444205732,0.0,0.0,56.85507016393681,0.0795451670019247 +2,236.67440697832672,0.0,0.0,57.29729296723922,0.0801638750017446 +3,237.84588865760452,0.0,0.0,57.58090085640774,0.0805606670000997 +4,238.03791455643773,0.0,0.0,57.62738904380077,0.0806257080002978 +5,235.57931818244316,0.0,0.0,57.03217928484335,0.0797929580003256 +6,235.9685425529296,0.0,0.0,57.126407904956864,0.0799247920003836 +7,235.89399490105237,0.0,0.0,57.10836041640851,0.0798995420009305 +8,237.1091452658675,0.0,0.0,57.40254020264302,0.0803111249988433 +9,236.6677641104954,0.0,0.0,57.29568477331097,0.0801616249991639 +10,240.1701486799902,0.0,0.0,58.14358868199451,0.0813479159987764 +11,237.3678477706916,0.0,0.0,57.46517035095314,0.0803987500003131 +12,233.8212985099349,0.0,0.0,56.606574465530976,0.0791974999992817 +13,236.0849136480866,0.0,0.0,57.15458056974668,0.0799642079982732 +14,235.8639780266023,0.0,0.0,57.10109353161398,0.079889374999766 +15,239.42184376859217,0.0,0.0,57.962429061549685,0.0810944580007344 +16,235.06720385039952,0.0,0.0,56.908199825929934,0.0796195000002626 +17,235.76691845999608,0.0,0.0,57.07759605888715,0.07985650000046 +18,235.1504876044873,0.0,0.0,56.92836226646714,0.0796477090007101 +19,233.54008410112257,0.0,0.0,56.53849433564263,0.0791022500015969 +20,217.5081550780071,0.0,0.0,52.65727141088613,0.0736720830027479 +21,236.13485910454932,0.0,0.0,57.166672031125465,0.0799811249999038 +22,236.4991092645872,0.0,0.0,57.25485456171471,0.0801044999971054 +23,233.79657231308929,0.0,0.0,56.60058841844326,0.0791891250009939 +24,225.861185687578,0.0,0.0,54.679484324024344,0.076501333998749 +25,235.9615276915456,0.0,0.0,57.1247096538744,0.0799224160000449 +26,226.48622570091325,0.0,0.0,54.8308023360458,0.0767130410022218 +27,236.0113521002709,0.0,0.0,57.13677181040454,0.0799392920016544 +28,236.39749713231657,0.0,0.0,57.230254943251225,0.0800700830004643 +29,240.4058491717482,0.0,0.0,58.20065019659257,0.0814277499994204 +0,231.4578768052024,0.0,0.0,55.99408557586358,0.0793507079979463 +1,222.34524711035735,0.0,0.0,53.789566230930056,0.0762266249985259 +2,234.88450207831713,0.0,0.0,56.82305174209469,0.0805254580009204 +3,214.45540416049187,0.0,0.0,51.880862377715744,0.0735217500005092 +4,231.14880819995636,0.0,0.0,55.91931597126064,0.0792447500025446 +5,189.5080321108016,0.0,0.0,45.84561611725291,0.0649690419995749 +6,226.3184260321476,0.0,0.0,54.75075417417805,0.0775887499985401 +7,233.75602738491304,0.0,0.0,56.550052138776614,0.0801385830018261 +8,234.5266979302004,0.0,0.0,56.73649207791049,0.0804027919984946 +9,232.1996204913718,0.0,0.0,56.1735275547325,0.0796049999989918 +10,231.92385117468777,0.0,0.0,56.106813684672254,0.0795104579992767 +11,232.00807659282628,0.0,0.0,56.12718942360155,0.0795393330008664 +12,235.28654971516897,0.0,0.0,56.92031475208247,0.0806632919993717 +13,232.4787909142932,0.0,0.0,56.241064217416344,0.0797007080000185 +14,232.4236148875455,0.0,0.0,56.22771608165147,0.0796817920017929 +15,237.5479969606639,0.0,0.0,57.467402076728234,0.0814385839985334 +16,236.38512621563677,0.0,0.0,57.186081410914305,0.0810399170004529 +17,233.71664925617893,0.0,0.0,56.5405258165767,0.0801250829972559 +18,235.04529604296468,0.0,0.0,56.86195087631657,0.0805805829986638 +19,233.1673012201283,0.0,0.0,56.40762802382869,0.0799367500003427 +20,237.1459493238121,0.0,0.0,57.37013906674045,0.0813007500000821 +21,233.21457829256337,0.0,0.0,56.419065251527506,0.0799529579999216 +22,215.0150838520788,0.0,0.0,52.01625959546593,0.0737136249990726 +23,232.95108619602212,0.0,0.0,56.35532147574445,0.0798626249998051 +24,232.76695704397656,0.0,0.0,56.31077711355224,0.0797994999993534 +25,232.50881162889073,0.0,0.0,56.24832680223491,0.0797110000021348 +26,232.0941279827146,0.0,0.0,56.148006900007346,0.0795688340003835 +27,238.9984242195423,0.0,0.0,57.8182881609532,0.0819358340013423 +28,233.43504906083848,0.0,0.0,56.47240134549057,0.0800285419973079 +29,220.28603711570713,0.0,0.0,53.291403963779565,0.0755206659996474 +0,230.94667662158227,0.762200252876509,0.0,62.401003311585505,0.0795444169998518 +1,220.36027280810595,0.7272616264293925,0.0,59.54059315506722,0.0758981670005596 +2,233.88306703985003,0.7718913103625414,0.0,63.19440597446371,0.0805557909989147 +3,234.39188220605993,0.7735705683368315,0.0,63.33188609470668,0.0807310410018544 +4,216.8182863723407,0.7155719022189462,0.0,58.58356051644677,0.0746782089991029 +5,243.07053257729345,0.8022129788029486,0.0,65.67682778634575,0.0837202080001588 +6,246.7651896921608,0.8144065666407948,0.0,66.67511152107028,0.0849927500021294 +7,233.7721351744143,0.7715251985954267,0.0,63.16443256326907,0.080517582999164 +8,242.0365737201927,0.7988005733339694,0.0,65.39745563425497,0.0833640839991858 +9,235.29628408213208,0.7765553930103369,0.0,63.57625239297671,0.0810425419986131 +10,243.4926096227174,0.8036059723522027,0.0,65.79087156257381,0.0838655829975323 +11,235.0088507060854,0.7756067680068826,0.0,63.498588876389555,0.0809435420014779 +12,235.26083977661636,0.7764384151043444,0.0,63.56667546267307,0.0810303340003884 +13,243.90416488046387,0.8049642405295837,0.0,65.9020723877046,0.0840073340004892 +14,240.55476462610403,0.7939101142775711,0.0,64.99707587759418,0.0828537080014939 +15,220.82130434738664,0.7287831826646424,0.0,59.66516230250094,0.0760569590020168 +16,238.36792497905407,0.7866928217130497,0.0,64.40619927329011,0.0821004999997967 +17,192.67871910188725,0.6359033633725651,0.0,52.06113187958871,0.0663638750011159 +18,235.5497219322568,0.7773918215586033,0.0,63.644730434558696,0.0811298329972487 +19,235.99091475851552,0.7788479034934506,0.0,63.763939229485544,0.0812817919977533 +20,232.58103154732913,0.7675941635225384,0.0,62.84260043099738,0.080107333997148 +21,233.8995204330996,0.7719456119904278,0.0,63.19885162512937,0.0805614580021938 +22,227.5579618648818,0.7510163757916891,0.0,61.485384157206546,0.0783772499999031 +23,214.60628034300365,0.7082715522871407,0.0,57.98588404159504,0.0739163329999428 +24,235.56666019199653,0.7774477234059292,0.0,63.64930709449411,0.0811356670019449 +25,231.87514742654736,0.7652645129589022,0.0,62.651872952244034,0.0798642080007994 +26,230.1259904385399,0.7594917176189435,0.0,62.17925670767264,0.0792617500010237 +27,233.51736467816843,0.7706843718751433,0.0,63.095594445256296,0.0804298330003803 +28,238.17642466410143,0.786060807472282,0.0,64.35445654218726,0.0820345419997465 +29,232.12290338711256,0.766082189396411,0.0,62.71881576667139,0.0799495419996674 +0,241.9872343116464,0.0,0.0,57.15813260782817,0.0795744579991151 +1,242.6471348794423,0.0,0.0,57.31400316136937,0.0797914579998178 +2,242.65575313120232,0.0,0.0,57.31603881906987,0.0797942920034984 +3,243.91080493823523,0.0,0.0,57.61248593463834,0.0802070000027015 +4,242.9459177822627,0.0,0.0,57.38457660640642,0.0798897089989623 +5,243.5832631360067,0.0,0.0,57.5351195486815,0.0800992920012504 +6,244.43005848717624,0.0,0.0,57.73513522765531,0.0803777500004798 +7,245.45361291465915,0.0,0.0,57.97690194672964,0.0807143329984683 +8,244.62937278860463,0.0,0.0,57.782213881635094,0.0804432920012914 +9,243.19401303374363,0.0,0.0,57.443177471546505,0.0799712920015736 +10,196.29494977021145,0.0,0.0,46.36547378678283,0.0645491249997576 +11,238.4692861580264,0.0,0.0,56.327182381697185,0.078417625001748 +12,241.07885838454743,0.0,0.0,56.94357140650459,0.0792757500021252 +13,242.28411354448383,0.0,0.0,57.22825640013194,0.0796720830003323 +14,246.60273699779663,0.0,0.0,58.24832860654358,0.0810922079981537 +15,241.59570345181905,0.0,0.0,57.065651808707806,0.0794457080010033 +16,231.5265209579827,0.0,0.0,54.687279784777374,0.0761345840001013 +17,248.01263127655392,0.0,0.0,58.58134999247521,0.0815558339963899 +18,243.81577315917053,0.0,0.0,57.590039134726815,0.0801757499975792 +19,244.07033057552212,0.0,0.0,57.65016638318072,0.0802594580018194 +20,242.9038483716201,0.0,0.0,57.3746396815968,0.0798758750024717 +21,243.88077489357264,0.0,0.0,57.60539274528096,0.0801971250002679 +22,242.48862493919952,0.0,0.0,57.27656262360784,0.0797393339998961 +23,243.75697815249185,0.0,0.0,57.57615157244288,0.0801564159992267 +24,241.9298351319602,0.0,0.0,57.14457474419369,0.0795555830009107 +25,247.45054804601023,0.0,0.0,58.44858419629822,0.0813709999965794 +26,249.39781427649623,0.0,0.0,58.90853449798034,0.0820113340014359 +27,243.3441601704367,0.0,0.0,57.478642689264305,0.0800206659987452 +28,242.30248736229245,0.0,0.0,57.23259635268276,0.0796781249991909 +29,241.3568589768266,0.0,0.0,57.0092360055639,0.079367166999873 +0,228.51614058990577,0.7998231550470669,0.0,56.58748821957998,0.0794557499975781 +1,229.99848899557244,0.8050114825570568,0.0,56.95456239091177,0.0799711670006217 +2,228.991882817277,0.8014882875331264,0.0,56.705296342968694,0.0796211670021875 +3,228.56838920350373,0.8000060290045339,0.0,56.60042655207078,0.0794739169978129 +4,229.52454429292905,0.803352641538617,0.0,56.83719938885715,0.0798063750007713 +5,231.0016209498811,0.8085225175436994,0.0,57.20296811621673,0.0803199590009171 +6,231.1304406536683,0.8089733959002536,0.0,57.234867759942944,0.0803647499997168 +7,230.02868718081663,0.8051171784074085,0.0,56.962040372324154,0.0799816670005384 +8,228.3377067029989,0.7991986234318176,0.0,56.543302607801095,0.0793937079979514 +9,228.78792425710387,0.8007744177002323,0.0,56.65479005229144,0.0795502499968279 +10,229.971765034315,0.8049179467439931,0.0,56.94794473213751,0.079961874998844 +11,228.9972753391461,0.8015071617528813,0.0,56.706631694016345,0.0796230419982748 +12,229.45408185720487,0.8031060178755896,0.0,56.81975076469796,0.0797818749997532 +13,233.73874709199285,0.8181026586273631,0.0,57.88076309788594,0.0812716660002479 +14,233.90483998813127,0.8186839958750401,0.0,57.92189270815909,0.0813294170002336 +15,228.51901660854452,0.7998332213220167,0.0,56.58820040853268,0.0794567499979166 +16,229.7434811411812,0.8041189364719774,0.0,56.8914147553924,0.079882500001986 +17,230.13929307294055,0.8055043070950232,0.0,56.989429726972894,0.0800201250021928 +18,233.4668454975468,0.8171509832202308,0.0,57.81343206283133,0.0811771249973389 +19,223.43925041941873,0.7820536692527416,0.0,55.330297099631466,0.0776905000020633 +20,226.77650941477793,0.7937343190833703,0.0,56.15670307514845,0.0788508750010805 +21,228.61452340804632,0.8001675020844555,0.0,56.61185077247523,0.0794899579996126 +22,220.89157617469,0.773136623624407,0.0,54.6994161214268,0.0768046659977699 +23,231.4062996484221,0.8099389224970295,0.0,57.30317876666483,0.080460667002626 +24,216.33236918131308,0.7571790666984853,0.0,53.570418968917835,0.0752194160013459 +25,232.7924193674008,0.81479044258679,0.0,57.64642381301539,0.0809426250016258 +26,221.0030247376175,0.7735267017212804,0.0,54.72701414678058,0.0768434169985994 +27,223.46189905312045,0.7821329411221949,0.0,55.33590558439529,0.0776983750001818 +28,229.70645240382268,0.8039893331911542,0.0,56.882245323274155,0.0798696249985368 +29,229.75450491671052,0.8041575204901636,0.0,56.894144574679075,0.079886333001923 +0,217.31809402608985,0.662843859774566,0.0,54.132248548256214,0.0751640829985262 +1,229.9303272649387,0.7013125450346716,0.0,57.273857844498174,0.0795262920000823 +2,231.27415386424212,0.7054113625488867,0.0,57.60859460815908,0.0799910829991858 +3,230.82276047944364,0.7040345635538585,0.0,57.49615602356511,0.0798349590004363 +4,230.51110693995568,0.703083986309233,0.0,57.41852554858736,0.0797271669980546 +5,231.97660598984888,0.7075539180518267,0.0,57.783569974232506,0.0802340410009492 +6,216.18231594196024,0.6593796128948679,0.0,53.84933505308088,0.074771250001504 +7,233.6553404352923,0.7126742409791049,0.0,58.20172967996024,0.0808146669987763 +8,234.6474003152265,0.7157001316804293,0.0,58.44884408723506,0.0811577919994306 +9,229.24967804635156,0.6992364907731856,0.0,57.10431341314349,0.0792908749972411 +10,229.14559309289555,0.6989190203269146,0.0,57.07838666003135,0.0792548750032438 +11,229.3134040808069,0.6994308621201081,0.0,57.120187073142155,0.0793129160010721 +12,230.3841319497267,0.7026966987573364,0.0,57.386897065182474,0.0796832499981974 +13,231.79807424235975,0.707009376774082,0.0,57.739099103216695,0.0801722920004976 +14,231.671943493225,0.706624664249488,0.0,57.70768091370819,0.0801286669993714 +15,242.73663270778175,0.7403731716577222,0.0,60.463809018713974,0.083955624999362 +16,225.1590403972453,0.6867596003401816,0.0,56.08536736111483,0.0778760409993992 +17,230.53471688095976,0.7031559992011844,0.0,57.424406601430064,0.0797353329980978 +18,230.14114558595097,0.7019555638787175,0.0,57.32637105009526,0.0795992079983989 +19,231.84782685816876,0.7071611276719745,0.0,57.75149209321125,0.0801895000004151 +20,231.95564732392347,0.7074899918376751,0.0,57.778349333410134,0.080226792000758 +21,231.5017183127908,0.7061054589061156,0.0,57.66527914399945,0.0800697910017333 +22,229.2535320894099,0.699248246024344,0.0,57.10527342532142,0.0792922079999698 +23,222.62715324621757,0.6790370687248466,0.0,55.45469394586247,0.0770003340003313 +24,234.9810967368232,0.7167179421166722,0.0,58.53196527286156,0.081273208001221 +25,212.98856980590392,0.6496383392772669,0.0,53.05379770764346,0.0736666250013513 +26,231.47979685397505,0.7060385960687692,0.0,57.659818678949485,0.080062208999152 +27,232.3552410943575,0.7087087963662321,0.0,57.87788503657561,0.0803650000016205 +28,230.3983482359957,0.702740059979072,0.0,57.39043823162421,0.0796881670030416 +29,229.15860370813317,0.6989587041206676,0.0,57.08162750318786,0.0792593750011292 +0,231.66268036286448,0.0672070439114779,0.0,59.881476125126845,0.0804943750008533 +1,231.99748654195568,0.0673041736414144,0.0,59.968018714500296,0.0806107079988578 +2,232.69804026717333,0.0675074094189652,0.0,60.14910179229807,0.0808541249971313 +3,232.398368697592,0.0674204724971256,0.0,60.071640994938925,0.0807500000009895 +4,218.63578046305977,0.0634278446368029,0.0,56.51420957139142,0.0759679999973741 +5,236.23653928270616,0.0685339539549481,0.0,61.06375297385877,0.0820836250022694 +6,224.8190391019204,0.0652216533512969,0.0,58.11249313600554,0.0781164580002951 +7,232.2963206294109,0.0673908676035424,0.0,60.045263034756346,0.0807145420003507 +8,235.48322320982325,0.0683154114330789,0.0,60.869031586873376,0.0818218750027881 +9,233.22039698135623,0.0676589489356995,0.0,60.284123501708265,0.0810356250003678 +10,222.17847558987393,0.0644556064954667,0.0,57.42994538746088,0.0771989579989167 +11,235.83937549829105,0.06841873382602,0.0,60.96109183898384,0.0819456249992072 +12,229.9330033409012,0.0667052519120688,0.0,59.434379453653314,0.0798933750011201 +13,228.71740877714217,0.0663525990070038,0.0,59.1201657152404,0.0794710000009217 +14,231.33051329738623,0.0671106798077708,0.0,59.79561570872386,0.0803789589990628 +15,229.53188230999976,0.0665888837568899,0.0,59.330695427388974,0.0797539999985019 +16,229.48139935482175,0.0665742382810623,0.0,59.31764630842652,0.0797364590034703 +17,230.42646205313747,0.0668484079063352,0.0,59.56193144454467,0.0800648339973122 +18,231.01585022398584,0.0670193937406399,0.0,59.71427982291018,0.0802696249993459 +19,230.07786450510628,0.0667472771990444,0.0,59.471823984348624,0.0799437089990533 +20,228.97666749951748,0.0664278118652502,0.0,59.187180371937934,0.0795610829991346 +21,233.09964192788175,0.0676239170083788,0.0,60.25291005446552,0.0809936670011666 +22,229.52001057054088,0.0665854396781377,0.0,59.32762675322075,0.0797498749998339 +23,211.52748423357997,0.0613656757277574,0.0,54.6768170734319,0.0734981249988777 +24,231.32547392448515,0.0671092178487047,0.0,59.794313103195904,0.0803772079998452 +25,230.29359350566224,0.0668098617654952,0.0,59.52758683305629,0.0800186669985123 +26,231.8720547369228,0.0672677849541406,0.0,59.93559639413931,0.0805671249981969 +27,231.05506295725297,0.067030769642371,0.0,59.724415751352595,0.08028325000123 +28,229.7340616961576,0.0666475374807535,0.0,59.38295589535144,0.0798242499986372 +29,228.61583845949133,0.066323132712356,0.0,59.09391124670925,0.0794357080012559 +0,232.09826942958523,0.0,0.0,56.551862602132445,0.080378708000353 +1,231.16257901250884,0.0,0.0,56.32387711979911,0.0800546660029795 +2,231.33499226865092,0.0,0.0,56.36588644109261,0.080114374999539 +3,229.08763101285805,0.0,0.0,55.81830603358978,0.0793360839998058 +4,230.24289431199097,0.0,0.0,56.09979150749018,0.0797361669974634 +5,230.65509338121083,0.0,0.0,56.20022579846761,0.0798789170003146 +6,229.2921654886054,0.0,0.0,55.86814184493939,0.0794069170005968 +7,231.28662566367748,0.0,0.0,56.354101684550855,0.0800976250029634 +8,216.8019073441477,0.0,0.0,52.82483021583295,0.0750813750019006 +9,232.53862219376708,0.0,0.0,56.65915667665391,0.080531208001048 +10,229.66092988839787,0.0,0.0,55.95799306925431,0.0795346250015427 +11,230.27249179749467,0.0,0.0,56.107003077562155,0.0797464169991144 +12,231.61833400897208,0.0,0.0,56.43492402249065,0.0802125000009255 +13,230.59806408551117,0.0,0.0,56.18633033555602,0.0798591669990855 +14,230.8875418936153,0.0,0.0,56.25686299945956,0.0799594170021009 +15,231.22706975553947,0.0,0.0,56.33959060033449,0.0800770000023476 +16,229.23056229514364,0.0,0.0,55.85313192978119,0.0793855829979293 +17,235.64202632731255,0.0,0.0,57.41531605944671,0.0816059579992725 +18,232.0170568313989,0.0,0.0,56.532074760949975,0.0803505830008362 +19,230.92965116248496,0.0,0.0,56.26712312588466,0.0799740000002202 +20,231.0695765052176,0.0,0.0,56.30121661040835,0.080022458001622 +21,226.34468953601427,0.0,0.0,55.14997511537403,0.0783861669988255 +22,230.93169844780863,0.0,0.0,56.267621956826474,0.079974709002272 +23,230.3377015469545,0.0,0.0,56.1228917474813,0.079768999999942 +24,231.03432517839207,0.0,0.0,56.2926274546336,0.0800102499997592 +25,231.1403216955104,0.0,0.0,56.318454017180194,0.0800469579990021 +26,232.6395683748504,0.0,0.0,56.68375270047117,0.0805661670019617 +27,211.57097564534644,0.0,0.0,51.55028848211487,0.0732698339998023 +28,232.01200359601728,0.0,0.0,56.53084351578086,0.0803488329984247 +29,231.3346313210155,0.0,0.0,56.365798494460634,0.0801142499985871 +0,219.4740765737124,0.0,0.0,54.50948419192974,0.0763789999982691 +1,224.61151246000796,0.0,0.0,55.78543889511322,0.0781668750023527 +2,228.51035754085143,0.0,0.0,56.75377209244936,0.0795237089987495 +3,229.6376006964406,0.0,0.0,57.03373883808645,0.079915999998775 +4,230.7343159231135,0.0,0.0,57.30612354175918,0.0802976669983763 +5,226.04921290785495,0.0,0.0,56.14251209053602,0.0786672079993877 +6,230.46205301041525,0.0,0.0,57.23850320514603,0.0802029169972229 +7,231.10774857892207,0.0,0.0,57.39887081180731,0.0804276250019029 +8,236.0373364930903,0.0,0.0,58.62320353790871,0.0821431669974117 +9,230.05844876046567,0.0,0.0,57.138262393903645,0.0800624590010556 +10,229.0068702685671,0.0,0.0,56.87708803529338,0.079696500000864 +11,231.19179807051853,0.0,0.0,57.419745689173425,0.0804568749990721 +12,231.6291686756857,0.0,0.0,57.52837285125362,0.0806090839978423 +13,228.26024347869043,0.0,0.0,56.69165273543744,0.0794366670015733 +14,229.64203161645344,0.0,0.0,57.03483931960193,0.0799175419997482 +15,229.42376440379172,0.0,0.0,56.98062957709412,0.0798415829995065 +16,230.78484044554267,0.0,0.0,57.318672019919575,0.0803152499975112 +17,228.86259822421837,0.0,0.0,56.84125603707502,0.0796462920006888 +18,215.11787003326216,0.0,0.0,53.42755882169722,0.0748630000016419 +19,233.46328968448563,0.0,0.0,57.98390268737843,0.0812473750011122 +20,230.21050220418272,0.0,0.0,57.17602701246824,0.0801153749998775 +21,228.4539624795744,0.0,0.0,56.73976558311954,0.079504082998028 +22,229.74487946877807,0.0,0.0,57.06038303514221,0.0799533339995832 +23,229.0921151390923,0.0,0.0,56.89825980188594,0.0797261660009098 +24,229.87753688321,0.0,0.0,57.093330376112064,0.0799995000015769 +25,230.25444357048204,0.0,0.0,57.18694047090059,0.0801306670000485 +26,230.96970050207184,0.0,0.0,57.36458462375144,0.0803795829997398 +27,231.0153171132757,0.0,0.0,57.37591415289732,0.0803954580005665 +28,233.70801595899184,0.0,0.0,58.04468391129243,0.0813325419985631 +29,229.60838883425131,0.0,0.0,57.0264836598664,0.0799058340016927 +0,233.03169757350443,0.0,0.0,57.14590514588489,0.080589625002176 +1,230.56252454563105,0.0,0.0,56.540394697697366,0.0797357080009533 +2,229.26155447947497,0.0,0.0,56.2213603655772,0.0792857919987 +3,228.48962291036645,0.0,0.0,56.03206110420322,0.0790188339997257 +4,230.6690331650355,0.0,0.0,56.56651359707923,0.0797725420015922 +5,220.39776413510504,0.0,0.0,54.04771048220629,0.0762204169986944 +6,220.29306275915428,0.0,0.0,54.022034769584245,0.0761842079991765 +7,231.44915659141645,0.0,0.0,56.757821731510106,0.0800423330001649 +8,233.91712382953764,0.0,0.0,57.36303648624681,0.0808958330017048 +9,232.205545892069,0.0,0.0,56.94330959294072,0.080303915998229 +10,230.29842747184577,0.0,0.0,56.47563069140557,0.0796443750004982 +11,227.92781120901137,0.0,0.0,55.89428912498413,0.0788245420008024 +12,229.44806166938773,0.0,0.0,56.26709715715861,0.0793502919987076 +13,229.2592643478582,0.0,0.0,56.22079876110234,0.0792849999997997 +14,229.88360367044356,0.0,0.0,56.37390426597064,0.0795009159992332 +15,229.66167746902968,0.0,0.0,56.31948173981888,0.0794241670009796 +16,233.4874835436179,0.0,0.0,57.25767664343713,0.0807472499982395 +17,213.5309742305619,0.0,0.0,52.363781091364665,0.0738456670005689 +18,229.82336329848093,0.0,0.0,56.359131637963486,0.0794800830008171 +19,231.8804855552513,0.0,0.0,56.86359568548564,0.0801915000010922 +20,230.5933690691165,0.0,0.0,56.54795863956332,0.0797463749986491 +21,232.7323000327177,0.0,0.0,57.07248447545736,0.0804860839998582 +22,231.33204741758416,0.0,0.0,56.729103279002494,0.0800018329973681 +23,231.3586731391503,0.0,0.0,56.735632652366306,0.0800110410018533 +24,229.07625018644575,0.0,0.0,56.17591855803412,0.0792217079979309 +25,230.23830565490223,0.0,0.0,56.460887136412715,0.0796235830021032 +26,212.0825304729018,0.0,0.0,52.008582075753125,0.073344749998796 +27,231.3146979161939,0.0,0.0,56.724848694878965,0.0799958329989749 +28,227.2761174880526,0.0,0.0,55.734475554770874,0.0785991659977298 +29,231.517470276152,0.0,0.0,56.77457416213956,0.0800659580017963 +0,227.44231616412424,0.0,0.0,55.812647893416646,0.0788156249982421 +1,226.05066246022363,0.0,0.0,55.471146454830674,0.0783333750005113 +2,232.46123844002852,0.0,0.0,57.04425398375972,0.0805548329990415 +3,231.72020051948184,0.0,0.0,56.86240880546275,0.0802980410007876 +4,230.68577976900383,0.0,0.0,56.60856966904448,0.0799395829999412 +5,228.2878413970284,0.0,0.0,56.02013347879481,0.0791086250028456 +6,233.16163633716695,0.0,0.0,57.216126403446424,0.0807975420029833 +7,233.40656160322865,0.0,0.0,57.2762292368393,0.0808824159976211 +8,229.68887379156396,0.0,0.0,56.36393637810691,0.0795941249998577 +9,231.72140676401816,0.0,0.0,56.86270480887458,0.0802984590009145 +10,230.73183059687105,0.0,0.0,56.619870198709755,0.0799555410012544 +11,230.14337967589475,0.0,0.0,56.47546873196024,0.0797516250022454 +12,228.8957740192038,0.0,0.0,56.16931560970449,0.079319291999127 +13,231.420685462694,0.0,0.0,56.78891004461117,0.0801942499965662 +14,226.5801978801324,0.0,0.0,55.60109049706921,0.0785168750007869 +15,216.47237385451132,0.0,0.0,53.12070587548667,0.0750142090000736 +16,231.71876053022535,0.0,0.0,56.86205544284009,0.0802975420010625 +17,230.5897102165952,0.0,0.0,56.584994917466624,0.0799062920013966 +18,230.15408003990945,0.0,0.0,56.47809452147538,0.0797553330012306 +19,231.50172891975,0.0,0.0,56.8087975044692,0.0802223339996999 +20,231.60729837620207,0.0,0.0,56.834703461639485,0.080258917001629 +21,232.95806964037587,0.0,0.0,57.166172654458805,0.0807270000004791 +22,230.15576242448788,0.0,0.0,56.478507366102015,0.0797559159982483 +23,231.49847956893817,0.0,0.0,56.808000138016894,0.0802212080016033 +24,212.7223396474506,0.0,0.0,52.20047545259599,0.0737147090003418 +25,232.94869093924265,0.0,0.0,57.163871191156474,0.0807237499975599 +26,232.1919025824176,0.0,0.0,56.97816097327938,0.0804614999979094 +27,231.04902374637277,0.0,0.0,56.69770703165235,0.0800654579979891 +28,233.78796274238013,0.0,0.0,57.36982223151427,0.0810145830000692 +29,229.2454318904766,0.0,0.0,56.2551190432152,0.0794404590014892 +0,211.7681052623423,0.0,0.0,51.544369107950445,0.0730265000020153 +1,231.74900516849095,0.0,0.0,56.40772130442817,0.0799167500008479 +2,231.44620836593853,0.0,0.0,56.3340205451182,0.0798123329986992 +3,233.38067208769257,0.0,0.0,56.80486912723355,0.0804794169998786 +4,220.02249260343376,0.0,0.0,53.55348746570378,0.0758729580011277 +5,230.28251252118744,0.0,0.0,56.05077690898644,0.0794110419992648 +6,231.06523660858215,0.0,0.0,56.24129199727312,0.0796809580024273 +7,232.49512115383507,0.0,0.0,56.58932597855168,0.0801740419992711 +8,233.49630191645045,0.0,0.0,56.833013434262234,0.0805192910011101 +9,224.10794249743364,0.0,0.0,54.54788620694715,0.0772817920005763 +10,233.06518831792772,0.0,0.0,56.72808035936796,0.0803706250007962 +11,230.32105483741717,0.0,0.0,56.06015811099304,0.0794243330019526 +12,231.99791348728908,0.0,0.0,56.46830560366566,0.0800025839998852 +13,231.9559841150949,0.0,0.0,56.4580999920408,0.0799881249986356 +14,231.27282163561787,0.0,0.0,56.291818204898,0.0797525420020974 +15,232.3729636964068,0.0,0.0,56.55959284632588,0.0801319169986527 +16,230.21448714015344,0.0,0.0,56.03421952729583,0.0793875840026885 +17,232.06509211751913,0.0,0.0,56.48465688616146,0.0800257500013685 +18,233.97236945534013,0.0,0.0,56.94888830085012,0.0806834590002836 +19,214.36216993645792,0.0,0.0,52.17576460014163,0.0739210419997107 +20,232.36365799337193,0.0,0.0,56.557327837667266,0.0801287080030306 +21,232.1677971782116,0.0,0.0,56.509655303893105,0.0800611670019861 +22,231.68605456379217,0.0,0.0,56.392399123592,0.0798950419994071 +23,230.5801127299852,0.0,0.0,56.123212817075014,0.0795136669985367 +24,231.682548612676,0.0,0.0,56.39154577488691,0.079893833000824 +25,232.52194504997635,0.0,0.0,56.59585491642882,0.0801832920005836 +26,224.88571357316405,0.0,0.0,54.73719573190735,0.0775499999981548 +27,230.4003201673142,0.0,0.0,56.07945129688906,0.0794516670030134 +28,232.91258211809028,0.0,0.0,56.69093600147309,0.0803180000002612 +29,233.38562508880716,0.0,0.0,56.80607468799223,0.0804811250018247 +0,228.4317049341564,0.0,0.0,55.90521754742971,0.07943662499747 +1,224.63081830801715,0.0,0.0,54.975007821206816,0.0781148749993008 +2,229.29176212320093,0.0,0.0,56.115703584254696,0.0797357080009533 +3,230.26313272867944,0.0,0.0,56.35343190237108,0.0800735000011627 +4,230.50408894930908,0.0,0.0,56.412402306403166,0.0801572919990576 +5,231.4912756090507,0.0,0.0,56.654001365468474,0.080500583997491 +6,231.25858687418443,0.0,0.0,56.597054303994305,0.0804196669996599 +7,215.66143327236227,0.0,0.0,52.7798859933087,0.0749957910011289 +8,233.34570857816615,0.0,0.0,57.10784589022658,0.081145459000254 +9,234.07839758501584,0.0,0.0,57.28716048376931,0.0814002499973867 +10,232.5652090520479,0.0,0.0,56.91683039254912,0.0808740419997775 +11,230.8259198784121,0.0,0.0,56.4911655766339,0.0802692079996632 +12,229.16762905823128,0.0,0.0,56.08532388716335,0.079692540999531 +13,231.3745703445235,0.0,0.0,56.62543951060597,0.0804599999974016 +14,230.06686980122603,0.0,0.0,56.305399508361056,0.0800052499980665 +15,232.03033867738873,0.0,0.0,56.78592892830791,0.0806880419986555 +16,235.10392526784705,0.0,0.0,57.53814293047527,0.0817568750026112 +17,233.6283588093202,0.0,0.0,57.177020275047866,0.0812437499989755 +18,228.53918224908057,0.0,0.0,55.93152100068275,0.0794739999982994 +19,230.63636872152335,0.0,0.0,56.44477578732998,0.0802032920000783 +20,230.2772722892251,0.0,0.0,56.35689234674573,0.0800784170023689 +21,230.43650836221164,0.0,0.0,56.3958629760823,0.0801337909979338 +22,228.8680844073801,0.0,0.0,56.01201484770305,0.0795883750033681 +23,222.30861533511248,0.0,0.0,54.40668363684307,0.0773073340023984 +24,229.35538580934664,0.0,0.0,56.131274522694135,0.0797578329984389 +25,231.67831058690103,0.0,0.0,56.69977535786903,0.0805656250013271 +26,217.02748644269255,0.0,0.0,53.114206921704714,0.0754708329986897 +27,229.4719703058166,0.0,0.0,56.15980682139448,0.079798375001701 +28,230.24671853567145,0.0,0.0,56.349414775977685,0.0800677920015004 +29,232.43436710389943,0.0,0.0,56.88480879739587,0.080828541998926 +0,233.25053223547215,0.0,0.0,56.63698268361321,0.0794133329982287 +1,221.60881151463116,0.0,0.0,53.81018555455842,0.0754497499983699 +2,238.10873630723785,0.0,0.0,57.81663281023447,0.0810673750020214 +3,231.07861771633884,0.0,0.0,56.10960688801906,0.0786738750030053 +4,229.07742623183637,0.0,0.0,55.6236853925005,0.077992541999265 +5,234.276462541354,0.0,0.0,56.886095071104634,0.0797626249986933 +6,236.55130141861645,0.0,0.0,57.43846255710658,0.0805371249989548 +7,235.73072929591643,0.0,0.0,57.23921444110614,0.0802577499998733 +8,236.80499956513185,0.0,0.0,57.50006454957943,0.0806235000018205 +9,230.01585233747488,0.0,0.0,55.85155035205928,0.0783120419982879 +10,233.68327444202225,0.0,0.0,56.74205945503127,0.0795606659994518 +11,230.57134184737788,0.0,0.0,55.98643214397538,0.0785011659972951 +12,233.56836056947228,0.0,0.0,56.71415651758738,0.0795215420002932 +13,237.12197023826567,0.0,0.0,57.577030129693824,0.080731417001516 +14,234.29359506112613,0.0,0.0,56.890255122601026,0.0797684579993074 +15,234.53138547652537,0.0,0.0,56.9479944619724,0.0798494169976038 +16,234.16852151095043,0.0,0.0,56.859885251940554,0.079725874998985 +17,234.93438883615585,0.0,0.0,57.04585016280221,0.0799866250017657 +18,234.65144234374125,0.0,0.0,56.977146201282,0.079890291999618 +19,235.44019315931408,0.0,0.0,57.168667591844944,0.0801588329995866 +20,229.93275390578643,0.0,0.0,55.83137271562917,0.0782837500009918 +21,234.6409155169552,0.0,0.0,56.974590118341126,0.0798867079975025 +22,237.23517173824405,0.0,0.0,57.60451727552191,0.0807699580000189 +23,235.77833496092907,0.0,0.0,57.250773862639385,0.0802739579994522 +24,233.97001868432088,0.0,0.0,56.81168557133654,0.0796582919974753 +25,233.90772717042864,0.0,0.0,56.79656018937132,0.0796370839998417 +26,186.94272839226807,0.0,0.0,45.39270272743291,0.063647208000475 +27,231.6775567969512,0.0,0.0,56.255038934891886,0.0788777920024585 +28,234.7314802516568,0.0,0.0,56.99658069329023,0.0799175419997482 +29,231.7153699334987,0.0,0.0,56.26422057293287,0.0788906660018256 +0,226.42116177213327,0.0,0.0,56.03535537217832,0.0791302920006273 +1,224.91178830861125,0.0,0.0,55.661811319335285,0.0786027920003107 +2,228.6300203842071,0.0,0.0,56.582010006072565,0.0799022499995771 +3,229.0332362707683,0.0,0.0,56.68179902454736,0.0800431669995305 +4,228.41553770137455,0.0,0.0,56.52892921954344,0.0798272920001181 +5,244.43862004235896,0.0,0.0,60.494367370763285,0.0854270830022869 +6,231.42689083939575,0.0,0.0,57.27418748921862,0.0808797079989744 +7,219.32257694174305,0.0,0.0,54.27857733739913,0.0766494589988724 +8,226.24316157257405,0.0,0.0,55.99130337473889,0.0790680840000277 +9,229.2636968600091,0.0,0.0,56.73883406895891,0.0801237090017821 +10,230.3898811711504,0.0,0.0,57.01754537666294,0.080517291000433 +11,230.30606873637544,0.0,0.0,56.99680323608533,0.0804879999996046 +12,228.31634253998695,0.0,0.0,56.504380117878,0.0797926250015734 +13,228.8224476250095,0.0,0.0,56.62963244885686,0.0799695000023348 +14,224.49235988305836,0.0,0.0,55.5580099754366,0.0784562089975224 +15,216.08373905100171,0.0,0.0,53.477020491828235,0.075517541001318 +16,226.49722560636775,0.0,0.0,56.05417986697792,0.0791568749991711 +17,229.30172734580512,0.0,0.0,56.74824596213126,0.0801370000008319 +18,227.09393887275,0.0,0.0,56.20185616929578,0.0793654159970174 +19,228.4411698641868,0.0,0.0,56.53527274035617,0.0798362499990616 +20,228.40921978706487,0.0,0.0,56.52736564407734,0.0798250839980028 +21,228.2586401211186,0.0,0.0,56.490099758560795,0.0797724590011057 +22,229.08092389643008,0.0,0.0,56.693600894257315,0.0800598330024513 +23,228.80122768941447,0.0,0.0,56.62438087862935,0.0799620840007264 +24,234.58978221219436,0.0,0.0,58.05694887376063,0.0819850839980063 +25,233.76201033495235,0.0,0.0,57.85208952693407,0.0816957919996639 +26,228.461082144718,0.0,0.0,56.540200688376146,0.0798432089977723 +27,227.8610268005468,0.0,0.0,56.39169727910804,0.0796335000013641 +28,227.20291135293743,0.0,0.0,56.228824989724494,0.0794034999998984 +29,228.72158427175552,0.0,0.0,56.60467049830692,0.0799342499994963 +0,212.6893336470748,0.6736489116377261,0.0,53.279504829529245,0.0732918749999953 +1,230.4073093401783,0.7297668882067265,0.0,57.717926612713825,0.0793974170010187 +2,231.44524097492229,0.7330543192410438,0.0,57.97793252179165,0.0797550839997711 +3,232.39587035480932,0.7360652386705737,0.0,58.21606887667265,0.0800826669983507 +4,232.4134010388187,0.7361207634399671,0.0,58.22046038116104,0.0800887080004031 +5,231.56047159380668,0.7334192880886476,0.0,58.0067982397385,0.0797947920000297 +6,232.4248898509369,0.7361571518457545,0.0,58.22333837325513,0.0800926669980981 +7,233.05787763199265,0.73816200804835,0.0,58.381904272914944,0.0803107920000911 +8,231.877991319958,0.7344249653093977,0.0,58.08633816537964,0.0799042079997889 +9,234.71343992882436,0.743405654827834,0.0,58.79662906365597,0.0808812920004129 +10,233.58155766494227,0.7398206548558494,0.0,58.51308815678082,0.0804912499988859 +11,230.70306733955476,0.7307036397164131,0.0,57.79201514120721,0.0794993339986831 +12,232.7467654168868,0.7371766252766354,0.0,58.303969453697526,0.0802035840024473 +13,232.7061352042895,0.7370479375891691,0.0,58.29379142750701,0.0801895829972636 +14,232.42766991836817,0.7361659571269938,0.0,58.22403479095315,0.0800936249979713 +15,231.3709974980735,0.732819168580135,0.0,57.95933424224704,0.0797295000011217 +16,232.0124502573418,0.7348508358280333,0.0,58.12002065185355,0.0799505420000059 +17,231.1182841078997,0.7320187518534111,0.0,57.896028555678875,0.0796424159998423 +18,239.55219725510383,0.7587314050694335,0.0,60.008756582764285,0.0825487079964659 +19,235.88014268693223,0.7471009414213229,0.0,59.08889263968645,0.0812833330019202 +20,233.49050899702985,0.7395322772724815,0.0,58.49028011155081,0.0804598750000877 +21,233.47382278596473,0.7394794271942448,0.0,58.48610015081754,0.0804541249999601 +22,230.4774378510214,0.7299890055747871,0.0,57.73549407727861,0.0794215829992026 +23,232.29841128317003,0.7357565574762079,0.0,58.191655000390995,0.080049083000631 +24,232.1192158874564,0.7351889935968963,0.0,58.14676585720907,0.0799873329997353 +25,231.71040372691837,0.7338941667135336,0.0,58.04435682188856,0.0798464580002473 +26,230.03827710225872,0.728598055895435,0.0,57.625482602638954,0.0792702500002633 +27,242.61593065457345,0.768435138842588,0.0,60.77623370845923,0.0836044580028101 +28,212.9931909855094,0.6746113161072859,0.0,53.35562227393988,0.0733965829967928 +29,231.69770769538312,0.7338539546931224,0.0,58.04117641663787,0.0798420829996757 +0,228.7722970571452,1.025736362275311,0.0,57.70594244542396,0.0789188749986351 +1,229.58082966064796,1.0293615446167323,0.0,57.90988818747036,0.0791977920016506 +2,229.20893312762493,1.0276940883651102,0.0,57.81608032608879,0.0790694999996048 +3,231.5306542792425,1.03810388814818,0.0,58.40171551388472,0.0798704169974371 +4,232.7516641096096,1.0435784766268297,0.0,58.70970526571582,0.0802916249995178 +5,230.0622758174019,1.0315201837343737,0.0,58.03132904621767,0.0793638750001264 +6,230.98301627009252,1.0356484675112625,0.0,58.26357830127876,0.0796814999994239 +7,226.34355984443872,1.0148467392504483,0.0,57.09331333073491,0.0780810409996775 +8,239.80910599410544,1.075221620743024,0.0,60.48988730889787,0.0827262089987925 +9,232.50767840573172,1.0424845285764657,0.0,58.64816186572117,0.0802074580024054 +10,230.61547089220113,1.0340005203439735,0.0,58.170867983222266,0.0795547090019681 +11,237.1542601428027,1.063318204285057,0.0,59.820224137843205,0.0818103749988949 +12,223.25292728760996,1.0009894049632495,0.0,56.31372652438411,0.0770148750016233 +13,230.38887814510977,1.0329845563347415,0.0,58.11371181444481,0.079476541999611 +14,231.05210405201868,1.035958233383364,0.0,58.281005129696354,0.0797053329988557 +15,230.8566737288988,1.0350819909742357,0.0,58.23170942771182,0.0796379160019569 +16,232.34039279326277,1.04173447737795,0.0,58.60596543700466,0.0801497499996912 +17,235.03425108209285,1.0538128121991437,0.0,59.28546917662278,0.0810790420000557 +18,212.5300383012911,0.9529116556754448,0.0,53.608965403160504,0.0733158330003789 +19,236.6478115882582,1.0610474630078108,0.0,59.69247662856846,0.0816356670002278 +20,233.53797138226943,1.0471040082224985,0.0,58.90804484967861,0.0805628749985771 +21,230.25214908541847,1.032371510218104,0.0,58.07922302646367,0.0794293749968346 +22,231.9770739076881,1.0401054803497731,0.0,58.514321217096914,0.0800244170022779 +23,231.3415057239105,1.0372558110270793,0.0,58.354004336491165,0.0798051670026325 +24,221.32786444152487,0.992358084710337,0.0,55.82814515273638,0.0763507919982657 +25,229.99886393206975,1.0312358666320744,0.0,58.015333916333475,0.0793419999972684 +26,229.24975732577187,1.0278771300403424,0.0,57.826377896463136,0.0790835829975549 +27,236.30393803482497,1.059505652166557,0.0,59.60573733478951,0.0815170419991773 +28,233.44375945039985,1.0466815942959784,0.0,58.884280659747944,0.0805303749984887 +29,225.1442941365357,1.0094696439445483,0.0,56.7908083561062,0.07766733400058 +0,230.518560530242,0.8053050149528105,0.0,57.34442793976471,0.080327292002039 +1,230.3360908768486,0.8046675663820038,0.0,57.299036289451855,0.0802637079978012 +2,230.07063979554613,0.8037402263599864,0.0,57.2330019520507,0.0801712079992285 +3,229.3792731592797,0.8013249717354749,0.0,57.06101569566361,0.0799302919986075 +4,214.56578538951655,0.7495747961205819,0.0,53.37597194041977,0.0747683330009749 +5,232.19999083317265,0.811179007277459,0.0,57.762705143215726,0.0809132089998456 +6,228.9162862924588,0.7997075503666682,0.0,56.94584181569317,0.0797689579994767 +7,229.74181621161017,0.8025914976824808,0.0,57.151202897473325,0.0800566249999974 +8,228.9844426596365,0.7999456512127039,0.0,56.96279658010462,0.0797927080020599 +9,229.8543330351777,0.8029845695552058,0.0,57.17919289041028,0.0800958330000867 +10,230.13102489628363,0.8039511786769734,0.0,57.248023514956145,0.0801922499995271 +11,232.5547597584868,0.8124183747021373,0.0,57.85095843191469,0.0810368330021447 +12,228.68455754012683,0.7988980176074301,0.0,56.88819633712908,0.0796882089998689 +13,237.02701362967755,0.828041969011974,0.0,58.96348854339431,0.0825952499981212 +14,232.4525252129403,0.8120612234513198,0.0,57.825526286596066,0.0810012080000888 +15,232.20704465878396,0.8112036494630007,0.0,57.764459872177845,0.0809156670002266 +16,229.30035527362983,0.8010492760650824,0.0,57.04138386646774,0.0799027920002117 +17,229.4390584890892,0.8015338287828443,0.0,57.075888057911705,0.0799511250006617 +18,229.96685272976129,0.8033776514576814,0.0,57.20718359754906,0.0801350420006201 +19,230.92570221845972,0.8067273439946192,0.0,57.4457096202835,0.0804691659977834 +20,229.4547215315663,0.8015885468351661,0.0,57.07978443922079,0.0799565829984203 +21,229.03107594810956,0.8001085622641382,0.0,56.97439720455884,0.0798089579984662 +22,231.12455234471904,0.8074220169247827,0.0,57.49517612185223,0.0805384579980454 +23,209.77332001183171,0.7328325589932985,0.0,52.18378513831446,0.0730983339999511 +24,229.24403659660769,0.8008525295951359,0.0,57.027373878253634,0.0798831669999344 +25,229.82611487215624,0.8028859908197599,0.0,57.17217326295706,0.0800860000017564 +26,228.47805380688808,0.7981766071856353,0.0,56.83682590334378,0.0796162499973434 +27,227.427249190088,0.7945056740265084,0.0,56.575424871304286,0.0792500829993514 +28,229.2912668058728,0.801017525959381,0.0,57.039122994357584,0.079899625001417 +29,229.09349570143283,0.8003266225377565,0.0,56.98992491320942,0.0798307090008165 +0,230.24533318123588,0.8718873671296435,0.0,57.175690806001626,0.0798400829989987 +1,223.05534182089448,0.8446604846116016,0.0,55.39023562549156,0.0773468749976018 +2,231.35741064140052,0.8760985547154695,0.0,57.45184753037983,0.0802257079994888 +3,232.40147871430855,0.8800522060256368,0.0,57.711115818219646,0.0805877500024507 +4,230.5488593174952,0.8730367524402673,0.0,57.25106395810215,0.0799453340005129 +5,231.88767512675335,0.8781065472320985,0.0,57.58352550118184,0.0804095829989819 +6,212.2742566219296,0.8038349362321832,0.0,52.71302177984124,0.0736084160016616 +7,230.8422891555511,0.8741479053370709,0.0,57.32392994614253,0.0800470840003981 +8,230.5721693249019,0.8731250222032405,0.0,57.256852417558655,0.0799534170000697 +9,230.52206275159892,0.8729352798633225,0.0,57.24440969872942,0.0799360419987351 +10,233.5648652940369,0.8844576897239966,0.0,58.00001388382362,0.0809911670003202 +11,240.11716945213135,0.909269794022053,0.0,59.62711533875386,0.0832632500023464 +12,219.16024888693732,0.8299106424498064,0.0,54.42298636065077,0.0759962089978216 +13,231.5407761747665,0.8767929188091945,0.0,57.49738179114141,0.0802892920000886 +14,218.27767539201488,0.8265685348372249,0.0,54.20382122682572,0.0756901670029037 +15,231.62116297685188,0.877097325575029,0.0,57.517343850208626,0.0803171670013398 +16,232.7946400845592,0.8815410198366647,0.0,57.80874764698128,0.08072408299995 +17,230.46077845608968,0.872703209999757,0.0,57.229191271137914,0.079914791000192 +18,230.85646606210256,0.874201590098262,0.0,57.32745042759757,0.0800519999975222 +19,232.308354026224,0.8796995637462603,0.0,57.6879906225913,0.0805554580001626 +20,232.9713958782114,0.8822103543305413,0.0,57.85264054359896,0.0807853750011418 +21,229.6469381758771,0.869621379634839,0.0,57.02709431836155,0.0796325829978741 +22,220.1812434267302,0.8337769194720339,0.0,54.67652491153146,0.0763502500012691 +23,225.7957025466795,0.8550376152364794,0.0,56.07073592223835,0.0782971249973343 +24,232.61416126861727,0.8808575870935114,0.0,57.76393023055526,0.0806615000001329 +25,227.58716452997484,0.8618214794318884,0.0,56.51560086274499,0.0789183339984447 +26,231.79371125918212,0.8777507271684729,0.0,57.56019191624024,0.0803770000020449 +27,222.76131215226437,0.8435470602911264,0.0,55.317220684475785,0.0772449169999163 +28,228.93150865494408,0.8669122087137411,0.0,56.84943522526648,0.0793845000007422 +29,229.30784864573525,0.8683373237385839,0.0,56.94288988362637,0.0795150000012654 +0,250.52289280398944,0.0,0.0,59.092548476657214,0.0806277090014191 +1,248.85123961316407,0.0,0.0,58.69824420326574,0.0800897080007416 +2,244.3419790590411,0.0,0.0,57.6346140698836,0.0786384580023877 +3,252.30082937497212,0.0,0.0,59.5119225379787,0.0811999159996048 +4,250.19896865042335,0.0,0.0,59.01614227068889,0.0805234580002434 +5,253.6747113428116,0.0,0.0,59.83598947604204,0.0816420829978596 +6,250.23936168450476,0.0,0.0,59.02567005195413,0.0805364580010064 +7,252.90957722267183,0.0,0.0,59.65551205707467,0.0813958340004319 +8,251.272752152766,0.0,0.0,59.26942293081308,0.0808690420017228 +9,249.41985231096191,0.0,0.0,58.832366770002,0.0802727089976542 +10,250.0490483597647,0.0,0.0,58.98077954617207,0.0804752080002799 +11,251.42707217541096,0.0,0.0,59.30582345021072,0.0809187080012634 +12,240.21308724761124,0.0,0.0,56.66070411382744,0.0773096250013622 +13,248.47915764070973,0.0,0.0,58.61047868312323,0.0799699579984007 +14,250.05034404295012,0.0,0.0,58.98108516782839,0.0804756249999627 +15,249.42062599741175,0.0,0.0,58.83254926471747,0.0802729579991137 +16,247.92867519320183,0.0,0.0,58.48063262254641,0.0797927919993526 +17,248.99960632515408,0.0,0.0,58.73324047455442,0.0801374580005358 +18,247.65887149478823,0.0,0.0,58.41699217855648,0.0797059590004209 +19,249.7995685662133,0.0,0.0,58.92193304065166,0.0803949159999319 +20,243.1112872649154,0.0,0.0,57.34432237761458,0.0782423749988083 +21,248.4247855184506,0.0,0.0,58.5976535587028,0.0799524590001965 +22,250.2673260892368,0.0,0.0,59.03226620739428,0.0805454580004152 +23,246.058297611157,0.0,0.0,58.039453867584825,0.0791908339997462 +24,248.9287911192123,0.0,0.0,58.71653680750362,0.0801146669982699 +25,247.1768707710309,0.0,0.0,58.30329937062335,0.0795508330011216 +26,248.9422544277273,0.0,0.0,58.71971249018146,0.0801189999983762 +27,251.83799359197425,0.0,0.0,59.40275029572405,0.08105095800056 +28,249.278476697329,0.0,0.0,58.79901953690679,0.0802272089968028 +29,248.2156956504442,0.0,0.0,58.548334101215886,0.0798851660001673 +0,229.10522355774887,0.0,0.0,55.860636799410415,0.0796706670007552 +1,224.81426846497675,0.0,0.0,54.81441236053592,0.0781784999999217 +2,226.5529604006259,0.0,0.0,55.23834175513952,0.0787831250017916 +3,228.2741597294702,0.0,0.0,55.658006086990625,0.0793816670011438 +4,231.3919661313005,0.0,0.0,56.418192381824795,0.080465874998481 +5,230.0666493794804,0.0,0.0,56.09505248755288,0.0800049999998009 +6,230.37901722213704,0.0,0.0,56.17121428925906,0.0801136249974661 +7,233.63006128224424,0.0,0.0,56.96388670693858,0.0812441659982141 +8,234.31566594735955,0.0,0.0,57.13105143845914,0.0814825830020709 +9,229.45976573945956,0.0,0.0,55.94708158550068,0.0797939580006641 +10,230.95702356067633,0.0,0.0,56.312144302305065,0.0803146250000281 +11,225.23255524946725,0.0,0.0,54.916399411654055,0.0783239579977816 +12,228.58460950675445,0.0,0.0,55.733700224313345,0.0794896249972225 +13,231.05551468597395,0.0,0.0,56.33615849496631,0.0803488749988901 +14,231.2026503674103,0.0,0.0,56.37203324602313,0.0804000409989385 +15,229.41974814640807,0.0,0.0,55.937324460820925,0.0797800420004932 +16,227.88570495852065,0.0,0.0,55.56329270361139,0.0792465829981665 +17,215.252720952998,0.0,0.0,52.48310744957511,0.0748535000020638 +18,230.7855627294707,0.0,0.0,56.27033857187008,0.0802550000007613 +19,231.2199071705155,0.0,0.0,56.37624081491051,0.0804060420014138 +20,228.32004939956545,0.0,0.0,55.669194946651814,0.079397624998819 +21,229.05094560519663,0.0,0.0,55.84740270135428,0.0796517920025507 +22,228.0491398436106,0.0,0.0,55.60314154081637,0.0793034169983002 +23,229.22600099912444,0.0,0.0,55.8900848612288,0.0797126670004217 +24,229.4193886869974,0.0,0.0,55.93723681711175,0.0797799169995414 +25,228.67255850144625,0.0,0.0,55.75514402543258,0.0795202090012026 +26,230.46097335054304,0.0,0.0,56.19119690445779,0.0801421249998384 +27,235.15859470850617,0.0,0.0,57.33657506923012,0.0817757089971564 +28,229.769617397626,0.0,0.0,56.022629888894855,0.0799017080025805 +29,230.28699632438577,0.0,0.0,56.148777673160055,0.0800816250011848 +0,242.10267655698337,0.841920561124577,0.0,63.4808103087931,0.0800182910024887 +1,240.8900466279114,0.8377035979549012,0.0,63.162851285799555,0.0796174999995855 +2,240.93807789854165,0.8378706283855253,0.0,63.175445380268606,0.0796333750004123 +3,239.69430859537476,0.8335453769487229,0.0,62.8493214219337,0.0792222920026688 +4,240.99556413815853,0.8380705388028882,0.0,63.190518625737774,0.0796523749995685 +5,243.19579862266693,0.8457219315018324,0.0,63.76743363523816,0.0803795829997398 +6,242.56584621915377,0.8435312498927311,0.0,63.60225624191192,0.0801713749970076 +7,240.9597592877214,0.8379460261779156,0.0,63.18113037381483,0.079640541000117 +8,238.9652650419552,0.8310101023854332,0.0,62.65816171986166,0.0789813330011384 +9,239.4765900350863,0.832788253008368,0.0,62.792234276830946,0.0791503330001432 +10,240.76927408882528,0.8372836072083226,0.0,63.131183983507526,0.0795775830010825 +11,242.35039988584245,0.8427820277014969,0.0,63.545764888692865,0.0801001669969991 +12,241.2736644165797,0.8390376422888429,0.0,63.26343822857876,0.0797442909970413 +13,241.7977241349399,0.8408600783660449,0.0,63.40084990879979,0.0799174999992828 +14,237.813652223318,0.8270053283604047,0.0,62.35620175837452,0.0786007089991471 +15,239.97114719201255,0.8345080928919619,0.0,62.92191020405393,0.0793137909968209 +16,241.24731757307185,0.8389460202151614,0.0,63.25652992422317,0.0797355830000015 +17,241.6823734538647,0.8404589423211319,0.0,63.37060425101335,0.0798793750000186 +18,243.9540875360528,0.8483589078315926,0.0,63.96626165050208,0.0806302079981833 +19,221.8673952599436,0.7715516596882167,0.0,58.17499514049154,0.0733302500011632 +20,240.46823073944108,0.8362367183872621,0.0,63.05224856639956,0.0794780840005842 +21,239.03800632141815,0.8312630627396653,0.0,62.67723493057077,0.0790053750024526 +22,239.99812942782245,0.8346019245646907,0.0,62.92898511217768,0.0793227089998254 +23,240.76271763629703,0.8372608069143728,0.0,63.129464841343705,0.0795754160026263 +24,236.51655384083332,0.822494623177192,0.0,62.016094587560275,0.0781720000013592 +25,239.45074845867185,0.8326983880187502,0.0,62.78545845661377,0.0791417920008825 +26,240.48108950298655,0.8362814351891312,0.0,63.0556202132605,0.0794823340002039 +27,241.6122795652777,0.8402151883616557,0.0,63.35222520246884,0.0798562079980911 +28,225.32123524538264,0.7835625095471646,0.0,59.08061321985621,0.0744717919988033 +29,242.8400404738653,0.844484770044044,0.0,63.67415166132092,0.0802619999994931 +0,231.5143790184337,0.0,0.0,56.43350933210195,0.07974941700013 +1,230.7885013773656,0.0,0.0,56.25657076437733,0.0794993749987043 +2,232.4218146090488,0.0,0.0,56.654704123926024,0.0800620000009075 +3,230.38631370178572,0.0,0.0,56.15853425347324,0.0793608340027276 +4,231.63461351252136,0.0,0.0,56.46281746610602,0.0797908339991408 +5,235.2815330550488,0.0,0.0,57.351783710488874,0.0810470830001577 +6,233.1955921220685,0.0,0.0,56.843318674292625,0.0803285420006432 +7,232.45447362177313,0.0,0.0,56.662665023405225,0.0800732500028971 +8,230.41134935946187,0.0,0.0,56.16463689827264,0.0793694579988368 +9,231.09162631947495,0.0,0.0,56.3304599298013,0.0796037920008529 +10,230.3859508211676,0.0,0.0,56.15844579837669,0.0793607090017758 +11,231.53022371058705,0.0,0.0,56.43737160444242,0.0797548749978886 +12,231.62904551287176,0.0,0.0,56.461460220990105,0.0797889159985061 +13,232.76678951884415,0.0,0.0,56.738794558713785,0.0801808329997584 +14,232.42798352675112,0.0,0.0,56.656207847695576,0.0800641249988984 +15,212.8962049068824,0.0,0.0,51.89517824905821,0.0733360419981181 +16,231.8744757845807,0.0,0.0,56.52128584213549,0.079873459002556 +17,232.59188239161537,0.0,0.0,56.69615952654616,0.0801205829993705 +18,222.8084544625911,0.0,0.0,54.31136954644485,0.0767504999967059 +19,231.10819677286457,0.0,0.0,56.33449911233486,0.0796095000005152 +20,231.5256282331062,0.0,0.0,56.43625141950013,0.0797532920005323 +21,233.51710189953573,0.0,0.0,56.92168929258419,0.0804392919999372 +22,232.29395967478635,0.0,0.0,56.62353844576622,0.0800179580000985 +23,230.4144962399048,0.0,0.0,56.165403975927155,0.079370542000106 +24,230.3471199864287,0.0,0.0,56.14898046717825,0.0793473330013512 +25,233.2193011110168,0.0,0.0,56.84909793281966,0.0803367090011306 +26,231.8840296201605,0.0,0.0,56.523614667116625,0.0798767499982204 +27,232.6371201920523,0.0,0.0,56.7071866076456,0.0801361659978283 +28,230.12782273774823,0.0,0.0,56.09552498254536,0.0792717920012364 +29,233.83401619952215,0.0,0.0,56.998939725933454,0.080548459001875 +0,230.37705684275676,0.1002220374895983,0.0,57.32700544405026,0.0798094169986143 +1,231.67193199742653,0.1007853532471403,0.0,57.649222057364256,0.0802579999981389 +2,230.45222653474644,0.1002547389217284,0.0,57.345710663228665,0.0798354580001614 +3,234.36824654926497,0.1019583439164435,0.0,58.320172720205726,0.0811920829983137 +4,233.63132613550113,0.1016377578895741,0.0,58.13679751283642,0.0809367920010117 +5,230.04329489624553,0.1000768394270209,0.0,57.24395215225599,0.0796937920022173 +6,229.48124985739312,0.0998323302743879,0.0,57.10409291694992,0.0794990829999733 +7,226.653234646772,0.0986020452349646,0.0,56.400369874399765,0.0785193750016333 +8,228.51640718827412,0.0994125901341099,0.0,56.8640015567109,0.079164833001414 +9,230.26363694955552,0.1001726958887277,0.0,57.29878204835227,0.0797701249975944 +10,229.9203723498329,0.1000233638412846,0.0,57.213364117214795,0.0796512080014508 +11,230.75483929485844,0.1003863860041437,0.0,57.42101279437023,0.0799402919983549 +12,237.0613136942452,0.1031299218507447,0.0,58.99031529862598,0.082125041000836 +13,217.22370668195057,0.0944998723964402,0.0,54.05392701076379,0.0752527080003346 +14,232.80949090029833,0.1012802309601065,0.0,57.93229210918096,0.0806520840014854 +15,230.83325928157836,0.1004205014276008,0.0,57.440526816587656,0.0799674589979986 +16,230.70287779224216,0.1003637809421007,0.0,57.4080826988816,0.079922290999093 +17,232.13462926046583,0.1009866426597154,0.0,57.76435960135722,0.080418291996466 +18,230.06325854563016,0.1000855243092938,0.0,57.24891990491609,0.0797007080000185 +19,232.48498623238729,0.1011390601358993,0.0,57.85154239773443,0.0805396659998223 +20,232.0403330344357,0.100945620519621,0.0,57.74089493722326,0.0803856249985983 +21,229.7789294389717,0.0999618312524528,0.0,57.17816747640304,0.0796022079994145 +22,211.1731746677069,0.091867680394884,0.0,52.54831318587369,0.0731566249996831 +23,230.30609579896037,0.100191166965905,0.0,57.30934750449767,0.0797848339971096 +24,232.81899066563767,0.1012843636886474,0.0,57.93465602990636,0.0806553750007879 +25,233.0890051681689,0.101401829394505,0.0,58.001846413656885,0.0807489159997203 +26,234.19324993623465,0.101882214299406,0.0,58.27662657926024,0.0811314590027905 +27,218.84922050226433,0.0952070274806834,0.0,54.45841971895093,0.0758158339995134 +28,225.17289320878123,0.0979580451894349,0.0,56.03200184835682,0.0780065410035604 +29,239.13076194741328,0.1040302038634338,0.0,59.50527660988416,0.0828419589997793 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/mac_report.md new file mode 100644 index 000000000..ad3eea23d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 883 samples (with smell) vs 876 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 667.61 ms | 125.92 ms | +| **Average Power** | 7.811 W | 4.028 W | +| **Total Energy** | 4604.63 J | 444.29 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.58% | 0.00e+00 | +12.693 | large | βœ… | +| `gpu_mj` | +85.03% | 2.06e-296 | +2.501 | large | βœ… | +| `ane_mj` | +81.14% | 2.51e-31 | +0.575 | medium | βœ… | +| `dram_mj` | +87.28% | 0.00e+00 | +24.469 | large | βœ… | +| `time_s` | +81.01% | 0.00e+00 | +98.450 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.693, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.501, large) +- **`ane_mj`**: 81.1% lower energy (Cohen’s d = +0.575, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.469, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +98.450, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..1909cc898 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/with_smell.csv @@ -0,0 +1,884 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924 +1,5273.426802443005,4.4973222381334175,113.86553636992608,749.9201548342323,0.6835363749996759 +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748 +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018 +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096 +5,5253.551246024907,4.480371821407624,113.43637693015744,747.0937042348667,0.6809601250024571 +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886 +7,5300.365365947626,4.520296179984014,114.44720254211376,753.7510170934825,0.687028125001234 +8,5279.4904036420885,4.502493442653253,113.99646360732456,750.7824436116101,0.6843223329997272 +9,5247.4468174506055,4.475165798188416,113.30456813487412,746.2256095038477,0.6801688749983441 +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533 +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705 +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357 +13,5277.8400593125725,4.501085983987045,113.96082883902017,750.547752485425,0.6841084169973328 +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567 +15,5321.702899266701,4.538493410494227,114.90792945977236,756.7853715824855,0.6897938750007597 +16,5253.426202615801,4.480265180977107,113.4336769524426,747.0759221405605,0.6809439169992402 +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378 +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265 +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317 +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039 +21,5253.3349120036255,4.480187325852603,113.43170577603108,747.0629399427254,0.6809320840002329 +22,5313.903441611766,4.531841820234043,114.73952104859232,755.6762312243596,0.6887829170009354 +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552 +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096 +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999 +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763 +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127 +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852 +29,5275.819074951675,4.49936243339088,113.91719109133356,750.2603536152749,0.6838464590000513 +0,5280.146632019839,4.743466790750807,114.64491567504768,752.2737473782265,0.6850735419975535 +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585 +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048 +3,5269.918567599515,4.734278317912334,114.42283934559951,750.8165332351111,0.6837465000025986 +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337 +5,5263.781853767582,4.728765346342646,114.28959625808425,749.9422225326506,0.6829502910004521 +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321 +7,5262.373654944431,4.727500278378077,114.25902081263072,749.7415934441852,0.6827675839995209 +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202 +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963 +10,5299.006038748264,4.76040930688607,115.0543995861478,754.9606872610865,0.6875204589996429 +11,5278.689930447888,4.742158149909533,114.61328711612336,752.0662079997371,0.6848845419990539 +12,5264.9964191743065,4.729856462001642,114.31596744781432,750.1152642554716,0.6831078750001325 +13,5280.20732793269,4.743521317465122,114.64623353197392,752.2823948543278,0.68508141699931 +14,5301.849427752589,4.76296369074227,115.11613652554556,755.3657909543374,0.6878893749999406 +15,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437 +16,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943 +17,5232.454106576423,4.700621785417813,113.60939413770376,745.4788916028814,0.6788856669991219 +18,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411 +19,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461 +20,5283.768793744757,4.746720792022038,114.72356167760309,752.7898044812416,0.6855434999997669 +21,5270.446525563299,4.734752613654982,114.4343026060838,750.8917525317619,0.6838150000003225 +22,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389 +23,5253.691243355732,4.719700356537864,114.07050439181651,748.5045917551598,0.6816410829997039 +24,5232.72739613028,4.70086729752445,113.615327923267,745.5178277482438,0.6789211249997607 +25,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278 +26,5286.654257518006,4.749312974121929,114.78621216328492,753.20090265652,0.6859178749982675 +27,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178 +28,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675 +0,5614.990553964228,5.7756058115323325,109.76989542380524,759.4420867094653,0.6870545829988259 +1,5608.692244635915,5.769127340801201,109.64676703210608,758.5902239800331,0.6862839170025836 +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555 +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757 +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752 +5,5554.87393461145,5.713769572848289,108.59464945390276,751.3111574748722,0.679698667001503 +6,5565.841836903626,5.7250512089632934,108.80906575185728,752.794594806341,0.6810407080010918 +7,5597.4321653440575,5.75754517004395,109.4266388387544,757.0672689489005,0.684906124999543 +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146 +9,5600.578598587723,5.760781606143541,109.48814983236971,757.492832234412,0.68529112500255 +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432 +11,5601.160557946362,5.761380212289274,109.4995268092898,757.5715437523492,0.6853623339993646 +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837 +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055 +14,5770.126400037058,5.935179275733913,112.80271363360175,780.4246136670234,0.7060371250008757 +15,5596.661223842662,5.756752175973343,109.41156736763207,756.9629971042867,0.6848117920017103 +16,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294 +17,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648 +18,5610.2365140437805,5.77071578360995,109.67695662722264,758.7990904367581,0.6864728750006179 +19,5580.16526722144,5.739784357058483,109.08908072837164,754.7318760367998,0.6827933340027812 +20,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064 +21,5583.60488260023,5.743322361687386,109.1563232672146,755.1970929691598,0.6832142079983896 +22,5543.578786923836,5.702151330573483,108.37383569321165,749.7834593519398,0.6783165840024594 +23,5576.76786301207,5.736289771037868,109.02266339406076,754.2723682749679,0.6823776249984803 +24,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237 +25,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617 +26,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385 +27,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194 +28,5630.7145475367815,5.791779585608233,110.07729062127092,761.568797765411,0.6889785830026085 +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041 +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858 +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505 +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749 +4,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599 +5,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206 +6,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374 +7,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374 +8,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463 +9,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212 +10,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746 +11,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392 +12,4208.039275310504,2.255876626757966,0.0,669.3650396778748,0.6640276660000382 +13,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421 +14,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857 +15,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983 +16,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557 +17,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472 +18,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811 +19,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253 +20,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509 +21,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295 +22,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041 +23,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841 +24,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323 +25,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186 +26,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896 +27,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796 +28,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598 +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929 +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168 +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774 +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706 +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299 +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821 +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113 +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128 +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182 +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069 +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556 +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651 +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213 +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805 +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555 +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695 +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733 +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352 +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509 +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757 +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149 +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264 +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836 +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148 +24,4215.132051569963,2.019137723673603,0.0,667.6063729307034,0.6637141249993874 +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339 +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552 +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064 +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687 +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651 +0,5266.955267504172,5.9290178909972,113.8768911131194,750.0704477186123,0.680035332999978 +1,5288.670973052095,5.95346328689863,114.34640659417592,753.1629951498295,0.6828391250019195 +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001 +3,5398.076602054193,6.076621335293567,116.7118667639066,768.7435203224738,0.6969648749982298 +4,5305.467876791607,5.972371581677469,114.70957261344768,755.5550528887501,0.6850078330026008 +5,5313.715786732026,5.981656263835639,114.88790075456384,756.7296429863577,0.686072749998857 +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053 +7,5302.962655734788,5.969551451315166,114.6554072045896,755.1982827655415,0.6846843749990512 +8,5282.032111733405,5.945989912712749,114.20286770897448,752.2175506892748,0.6819819579977775 +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789 +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687 +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497 +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034 +13,5321.700680193805,5.990644868026885,115.0605422138348,757.8667767400492,0.6871037080018141 +14,5331.095193216626,6.001220282656504,115.26366107135787,759.2046553114891,0.6883166670013452 +15,5357.676119786506,6.031142463724653,115.83836754349365,762.9900619611441,0.6917486249985814 +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533 +17,5283.988405148097,5.948192114566884,114.24516474793823,752.4961476780284,0.6822345420005149 +18,5247.942934153031,5.907615684435091,113.46582526864717,747.3628892404057,0.6775805830002355 +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738 +20,5257.917355280346,5.918843902316692,113.68148232494296,748.7833528936396,0.678868415998295 +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691 +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859 +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158 +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561 +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575 +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268 +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813 +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286 +29,5284.043589125742,5.9482542352370125,114.24635788125612,752.5040064633639,0.6822416670001985 +0,4282.915524281316,1.9366110579895248,0.0,675.6769201633797,0.6687819170001603 +1,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549 +2,4262.6173435256915,1.927432805211586,0.0,672.4746594183043,0.6656123339998885 +3,4282.052840567513,1.9362209772582504,0.0,675.540822341344,0.6686472080000385 +4,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313 +5,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988 +6,4289.356664180724,1.9395235559560455,0.0,676.6930806608025,0.6697877080005128 +7,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468 +8,4270.16291377157,1.9308446947747024,0.0,673.6650559217393,0.6667905829999654 +9,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788 +10,4291.628771306302,1.9405509373646648,0.0,677.051530491575,0.6701424999992014 +11,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963 +12,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255 +13,4277.141731638064,1.934000315233552,0.0,674.766041018382,0.6678803329996299 +14,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693 +15,4245.205514749945,1.9195596776759711,0.0,669.7277523698441,0.6628934580003261 +16,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677 +17,4243.843590196685,1.9189438546145456,0.0,669.5128938272403,0.6626807920001738 +18,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941 +19,4297.038595942507,1.9429971042696297,0.0,677.904989689659,0.6709872499995981 +20,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116 +21,4266.908322293752,1.9293730622362015,0.0,673.1516084036514,0.6662823750011739 +22,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164 +23,4269.309579982598,1.9304588418101711,0.0,673.5304331529419,0.6666573340007744 +24,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687 +25,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072 +26,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284 +27,4260.173921548421,1.926327960160664,0.0,672.0891827898483,0.6652307910007949 +28,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389 +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697 +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935 +2,4294.070878255385,2.008405265665155,0.0,675.7279516330415,0.6701891660013644 +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936 +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585 +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677 +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344 +7,4270.762102767754,1.9975033805419675,0.0,672.0600123833451,0.6665512920008041 +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336 +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748 +10,4261.827183417434,1.993324376613004,0.0,670.6539865114453,0.6651567909975711 +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531 +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177 +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957 +14,4268.013923464058,1.9962180133598648,0.0,671.6275505949264,0.6661223750015779 +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092 +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146 +17,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839 +18,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792 +19,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211 +20,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756 +21,4251.740304272998,1.988606582761394,0.0,669.0666847700711,0.6635825000012119 +22,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028 +23,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502 +24,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149 +25,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017 +26,4263.9447802230125,1.994314810328576,0.0,670.9872179350494,0.6654872910003178 +27,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692 +28,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221 +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583 +1,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217 +2,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334 +3,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716 +4,4423.116844673827,3.4563989666894583,10.469868714632144,687.3200352983833,0.6737360840015754 +5,4372.552212189364,3.41688575697609,10.350178215306212,679.4626609163522,0.6660340000016731 +6,4367.830293810635,3.4131958626372865,10.33900105963916,678.7289093061835,0.6653147500001069 +7,4402.0599576700315,3.4399442798617175,10.420025391425783,684.0479489332786,0.6705286659998819 +8,4377.090584625613,3.420432221234205,10.36092090315604,680.1678908283396,0.6667252919978637 +9,4383.548140369233,3.4254784114623615,10.37620645025492,681.1713478016708,0.6677089170007093 +10,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672 +11,4356.017836464776,3.403965139869143,10.311040035331771,676.8933397553377,0.6635154579998925 +12,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577 +13,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067 +14,4402.389306963763,3.440201646465068,10.420804987350497,684.099127406772,0.670578833000036 +15,4315.28000684407,3.372130983741042,10.214610358516552,670.5629787280001,0.6573102080001263 +16,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107 +17,4374.957761226749,3.4187655484216073,10.355872340849915,679.8364656579744,0.6664004169979307 +18,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159 +19,4380.030910237862,3.4227299083098126,10.367880887307392,680.624795941763,0.6671731669994188 +20,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498 +21,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315 +22,4376.213328707104,3.419746698658895,10.35884436875316,680.0315716692378,0.666591667002649 +23,4380.196677962882,3.422859445786119,10.368273272672516,680.6505550348669,0.6671984169988718 +24,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699 +25,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136 +26,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095 +27,4405.482821650499,3.4426190415604627,10.428127582202569,684.5798369829262,0.6710500420012977 +28,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227 +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615 +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135 +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816 +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988 +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868 +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682 +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318 +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657 +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435 +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166 +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583 +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683 +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049 +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155 +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538 +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964 +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264 +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035 +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506 +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285 +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116 +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129 +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858 +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954 +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173 +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859 +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842 +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256 +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392 +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179 +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888 +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684 +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505 +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456 +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906 +6,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492 +7,4279.214199576053,3.223576106541973,0.0,674.2591301611349,0.6668920000010985 +8,4289.831616235325,3.23157431580652,0.0,675.9320751896751,0.6685466659982922 +9,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947 +10,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687 +11,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766 +12,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288 +13,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154 +14,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639 +15,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175 +16,4306.362254109225,3.244027015482428,0.0,678.5367434754947,0.6711228750027658 +17,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187 +18,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203 +19,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345 +20,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055 +21,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631 +22,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103 +23,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301 +24,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826 +25,4277.992096765777,3.222655483914731,0.0,674.0665681767628,0.6667015419989184 +26,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038 +27,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906 +28,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585 +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987 +1,4232.037816623077,1.633116390355264,0.0,670.8442184708318,0.6674780419998569 +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916 +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375 +4,4243.973240627595,1.637722194323049,0.0,672.7361699455987,0.6693605000000389 +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998 +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657 +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266 +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238 +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002 +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034 +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991 +12,4237.355510600818,1.635168454531022,0.0,671.6871561796002,0.6683167499977571 +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947 +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404 +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294 +16,4265.879642022094,1.646175734844482,0.0,676.208677366321,0.6728155829987372 +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048 +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143 +19,4242.011171658709,1.636965044427198,0.0,672.4251513108294,0.6690510420012288 +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099 +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737 +22,4208.176472784298,1.6239084500183545,0.0,667.0618220810089,0.6637146249995567 +23,4214.574135928659,1.6263772674046235,0.0,668.0759518024544,0.6647236659991904 +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738 +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659 +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104 +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474 +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761 +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561 +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494 +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887 +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709 +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783 +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572 +5,4241.797005501357,1.7569867632493603,0.0,670.3401762201004,0.6658014579988958 +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688 +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704 +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198 +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689 +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537 +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878 +12,4249.790443577442,1.7602977102075297,0.0,671.6033961906878,0.6670561249993625 +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807 +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101 +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622 +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319 +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364 +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109 +19,4259.435815226876,1.7642929014655495,0.0,673.1276747270732,0.6685700829984853 +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986 +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958 +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543 +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503 +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133 +25,4247.644486345279,1.7594088372967045,0.0,671.2642660184275,0.6667192909990263 +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146 +27,4250.709990274736,1.7606785939163063,0.0,671.7487141053139,0.6672004590000142 +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455 +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169 +0,4233.805184421818,2.86436991299503,0.0,671.3616783283818,0.6663879580009962 +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342 +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766 +3,4232.574753845726,2.863537468381105,0.0,671.1665668623015,0.6661942920000001 +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978 +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734 +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708 +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662 +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107 +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705 +10,4212.616188554973,2.850034552815756,0.0,668.0017032686884,0.6630528750029043 +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905 +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128 +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049 +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436 +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658 +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247 +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384 +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947 +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966 +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179 +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067 +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647 +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332 +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924 +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472 +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219 +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785 +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212 +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668 +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083 +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339 +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718 +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503 +4,4332.218872799026,3.001398692530848,0.0,676.281823175923,0.6688972499978263 +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471 +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487 +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688 +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175 +9,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898 +10,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943 +11,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758 +12,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134 +13,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097 +14,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611 +15,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152 +16,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642 +17,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146 +18,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455 +19,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713 +20,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074 +21,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953 +22,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337 +23,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074 +24,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496 +25,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735 +26,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393 +27,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164 +28,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869 +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888 +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896 +2,4296.3093777503855,1.8312061917425837,0.0,673.4510480068589,0.6612518339970848 +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919 +4,4281.318895847793,1.824816832675615,0.0,671.1012740823575,0.6589446250000037 +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367 +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265 +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202 +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616 +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722 +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922 +11,4294.81365551898,1.8305686734517777,0.0,673.2165919619837,0.6610216250010126 +12,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633 +13,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174 +14,4304.474772925574,1.8346865095894,0.0,674.7309823539053,0.6625085830019088 +15,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507 +16,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669 +17,4304.719237909603,1.8347907073445096,0.0,674.7693024992254,0.66254620899781 +18,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735 +19,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411 +20,4289.335939610233,1.828233919036592,0.0,672.3579541882391,0.6601785410020966 +21,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537 +22,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059 +23,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462 +24,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423 +25,4296.307207702341,1.831205266807932,0.0,673.450707849528,0.6612515000015264 +26,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959 +27,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385 +28,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169 +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055 +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373 +2,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072 +3,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403 +4,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909 +5,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192 +6,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766 +7,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976 +8,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494 +9,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305 +10,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639 +11,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842 +12,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747 +13,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965 +14,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545 +15,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915 +16,4227.847230305918,1.629023238670687,0.0,669.462060349217,0.6648805420009012 +17,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213 +18,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505 +19,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857 +20,4215.308450834855,1.6241919469919075,0.0,667.4765966648173,0.6629086659995664 +21,4231.468303978479,1.6304184672208717,0.0,670.0354423352385,0.6654500000004191 +22,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565 +23,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735 +24,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721 +25,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212 +26,4228.263999257775,1.629183823069969,0.0,669.5280539828562,0.6649460840017127 +27,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414 +28,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668 +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123 +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618 +2,4259.939212365175,1.800396943474364,0.0,670.4811580235084,0.6678189169979305 +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758 +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047 +5,4269.997117263699,1.8046477602898936,0.0,672.0641936931438,0.6693956669987529 +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345 +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504 +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013 +9,4296.453269566179,1.8158290409061095,0.0,676.2281854189235,0.6735431250017427 +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246 +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127 +12,4258.273787900644,1.799693077769701,0.0,670.2190332212722,0.6675578329995915 +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711 +14,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011 +15,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155 +16,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318 +17,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518 +18,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639 +19,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803 +20,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353 +21,4280.57356799962,1.8091177324252912,0.0,673.7288444272706,0.6710537079998176 +22,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939 +23,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774 +24,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006 +25,4258.146210229622,1.7996391590545475,0.0,670.198953492351,0.6675378330000967 +26,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034 +27,4263.6413570172435,1.8019615972366845,0.0,671.0638466746244,0.6683992920006858 +28,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724 +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416 +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251 +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694 +3,4252.917010990448,1.8079994850813177,0.0,673.0110675855475,0.6701307500006806 +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295 +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529 +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722 +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746 +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708 +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747 +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627 +11,4218.894760122639,1.7935359505492905,0.0,667.6271507776164,0.6647698749984556 +12,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405 +13,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344 +14,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605 +15,4236.082134553483,1.8008426447642405,0.0,670.3470000445554,0.6674780839966843 +16,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561 +17,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166 +18,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142 +19,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264 +20,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589 +21,4223.751874950823,1.7956008065259397,0.0,668.3957742958872,0.6655352090019733 +22,4240.11870444225,1.802558670790971,0.0,670.9857748438761,0.6681141250010114 +23,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789 +24,4245.349196909234,1.8047822570172225,0.0,671.8134842278367,0.6689382919976197 +25,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449 +26,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376 +27,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237 +28,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428 +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636 +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234 +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285 +3,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504 +4,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946 +5,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274 +6,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965 +7,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027 +8,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538 +9,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695 +10,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498 +11,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783 +12,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614 +13,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265 +14,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494 +15,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688 +16,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763 +17,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674 +18,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219 +19,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243 +20,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514 +21,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831 +22,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491 +23,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778 +24,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625 +25,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292 +26,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944 +27,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629 +28,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866 +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385 +1,4235.03031838744,2.499742443800431,0.0,671.8641090950546,0.6674069170003349 +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319 +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128 +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237 +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381 +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611 +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384 +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259 +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215 +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887 +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787 +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297 +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471 +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294 +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329 +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508 +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221 +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391 +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437 +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421 +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773 +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718 +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409 +24,4223.243286387955,2.492785104192349,0.0,669.9941617374582,0.6655493750004098 +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896 +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204 +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584 +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693 +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033 +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203 +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171 +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709 +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271 +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992 +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234 +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881 +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039 +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999 +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505 +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424 +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857 +12,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828 +13,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863 +14,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767 +15,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978 +16,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894 +17,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856 +18,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611 +19,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634 +20,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011 +21,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656 +22,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471 +23,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497 +24,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462 +25,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372 +26,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194 +27,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452 +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754 +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034 +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907 +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888 +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375 +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376 +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414 +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597 +8,4249.175090223917,1.6719688560820003,0.0,674.1044033951409,0.6699446659986279 +9,4241.42578773114,1.6689196542606657,0.0,672.8750262048151,0.6687228750015493 +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961 +11,4233.126786808715,1.6656541566560097,0.0,671.5584428805699,0.6674144159987918 +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814 +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955 +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012 +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068 +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584 +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977 +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389 +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907 +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867 +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752 +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945 +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916 +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299 +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818 +26,4236.9941789942895,1.6671759012655485,0.0,672.1719798722437,0.6680241670001124 +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245 +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405 +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837 +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682 +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186 +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859 +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746 +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048 +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973 +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401 +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178 +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143 +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177 +10,5419.407102652684,4.659793684661683,94.0004423869882,754.4842925683155,0.6892624579995754 +11,5393.631146430152,4.637630625908802,93.55335449675025,750.8957904079389,0.6859841660007078 +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406 +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715 +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774 +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974 +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185 +17,5448.457186507701,4.684771951605358,94.50432052015412,758.5286154160444,0.6929571670007135 +18,5396.272993802559,4.639902177661347,93.59917774217568,751.2635856866639,0.6863201670021226 +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951 +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026 +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316 +22,5408.767675900578,4.650645537521451,93.81589990798668,753.0030824996963,0.6879092919989489 +23,5393.128921742544,4.637198795750398,93.54464333297923,750.8258712025788,0.6859202910018212 +24,5398.73039199595,4.642015133629659,93.64180168847167,751.6057021400655,0.686632708999241 +25,5350.694712888532,4.6007123951744475,92.80861551128883,744.9182242143605,0.6805233340019186 +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455 +27,5407.841192231741,4.649848914815828,93.7998299075078,752.8740983945686,0.6877914579999924 +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925 +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382 +0,5371.099961810868,5.280857460896809,106.01822699977645,756.2655808083043,0.6856771669990849 +1,5363.880609010041,5.273759404004894,105.87572676900965,755.2490761672071,0.6847555409985944 +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719 +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525 +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345 +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059 +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297 +7,5372.151900565224,5.281891725509057,106.03899084376413,756.4136966651483,0.6858114579990797 +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158 +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337 +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927 +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227 +12,5366.100043041169,5.27594154822965,105.91953538597753,755.5615785556473,0.6850388749990088 +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364 +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973 +15,5366.646735355581,5.276479055296713,105.93032635064031,755.6385543303717,0.685108665998996 +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709 +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213 +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005 +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962 +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437 +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114 +22,5365.320631859079,5.275175232319444,105.90415086656505,755.4518353271649,0.6849393749980663 +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881 +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078 +25,5378.330406530226,5.287966423346458,106.16094616996811,757.2836472219007,0.6866002089991525 +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997 +27,5403.673998780062,5.3128842053967,106.66119430074896,760.8520944019692,0.6898355839985015 +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381 +29,5330.02779723041,5.240475370021187,105.20751818802027,750.4825075789203,0.6804338750007446 +0,4233.7459268513485,1.8343208499560768,0.0,671.7282952539152,0.6684168749998207 +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618 +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474 +3,4217.2807193634335,1.82718710269874,0.0,669.1159170082785,0.6658173750001879 +4,4233.164257526582,1.8340688347929952,0.0,671.6360073011949,0.6683250419991964 +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054 +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184 +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005 +8,4236.48775285413,1.8355087787290232,0.0,672.1633147705684,0.6688497499999357 +9,4259.023032178145,1.845272456908542,0.0,675.7387737199081,0.6724075830024958 +10,4220.165585871843,1.828437005474472,0.0,669.5736314047516,0.6662728330011305 +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739 +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104 +13,4233.0040582703405,1.833999426557133,0.0,671.6105900052222,0.668299750002916 +14,4226.978850104824,1.831388933354592,0.0,670.6546273944516,0.667348500002845 +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113 +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328 +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272 +18,4233.944921816377,1.834407066894857,0.0,671.7598678968967,0.6684482919990842 +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066 +20,4249.650576202317,1.8412117287239056,0.0,674.2517350586942,0.670927874998597 +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719 +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693 +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316 +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798 +25,4220.752005679336,1.828691078840776,0.0,669.6666730714923,0.6663654160001897 +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681 +27,4221.91720018277,1.829195913237745,0.0,669.8515434276624,0.6665493750006135 +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876 +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709 +0,4252.8818824273885,2.916330819811958,0.0,674.9126980010802,0.6707283750001807 +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045 +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782 +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198 +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159 +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758 +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135 +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865 +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883 +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335 +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151 +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731 +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696 +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756 +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148 +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991 +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702 +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562 +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955 +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849 +20,4236.875066042591,2.905354457608498,0.0,672.3724902240174,0.6682039160004933 +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241 +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549 +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001 +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152 +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356 +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508 +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006 +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678 +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801 +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437 +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811 +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996 +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752 +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475 +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028 +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979 +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447 +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314 +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629 +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477 +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285 +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075 +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229 +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999 +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096 +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847 +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059 +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166 +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332 +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261 +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364 +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932 +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939 +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151 +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543 +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614 +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847 +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008 +29,4236.218136169378,2.099183099819649,0.0,670.8389420423648,0.6676307919988176 +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575 +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671 +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872 +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984 +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695 +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884 +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729 +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931 +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438 +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557 +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739 +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657 +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443 +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984 +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266 +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819 +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884 +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955 +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664 +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512 +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685 +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929 +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905 +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121 +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751 +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741 +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306 +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247 +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952 +0,4220.528551913251,1.8985583643147872,0.0,669.9579463127654,0.6673571669998637 +1,4206.953299792034,1.8924516864081216,0.0,667.8030389546134,0.6652106250003271 +2,4215.018030714928,1.8960795169419695,0.0,669.0832176100137,0.6664858339972852 +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112 +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162 +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398 +6,4233.671377624534,1.9044705199554777,0.0,672.0442111997277,0.6694353329985461 +7,4228.464944991696,1.902128463480386,0.0,671.217752884991,0.6686120829981519 +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751 +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449 +10,4221.611053511575,1.899045315756675,0.0,670.1297803706974,0.6675283339973248 +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534 +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175 +13,4230.499504402044,1.9030436876611256,0.0,671.54071462484,0.6689337909992901 +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926 +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654 +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086 +17,4230.842860190899,1.9031981424875408,0.0,671.5952182104279,0.6689880830017501 +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248 +19,4227.523423400034,1.9017049303444185,0.0,671.0682977008356,0.6684632079995936 +20,4219.778073043047,1.8982207696465505,0.0,669.8388168538721,0.6672385000019858 +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676 +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166 +23,4221.082448049655,1.8988075284016537,0.0,670.0458706363308,0.6674447500008682 +24,4206.322456585602,1.8921679085278371,0.0,667.7029002127881,0.665110874997481 +25,4242.370638791378,1.9083837869428983,0.0,673.4251138696396,0.670810874999006 +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935 +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882 +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524 +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..b8c5abca6 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/cleaned/mac/without_smell.csv @@ -0,0 +1,877 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.1294090000010328 +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437 +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.1238124416234,0.1290127909996954 +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285 +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.1289722090004943 +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688 +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894872,0.1277482500008773 +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.129827667002246 +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167936,0.1300582920011948 +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276 +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.1253202499974577 +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.1305465419973188 +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.3348248818242,0.1280713749983988 +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971 +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.1339217910026491 +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.1294104999979026 +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.7237311424572,0.1285354159990674 +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.1304550839995499 +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479164,0.1318872500014549 +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596356,0.130042582997703 +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.1289919999981066 +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381303,0.1297635419978178 +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451525,0.1310055829999328 +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.1341233749990351 +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.1344618750008521 +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.1300322079987381 +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.1317313330000615 +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.1302883750031469 +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921 +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.1309345000008761 +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.1331702499992388 +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.1268256250004924 +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767624,0.1291754999983823 +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172 +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089052,0.1295549999995273 +5,574.3023135305887,0.5387451346440795,22.86299665145812,110.67845359844308,0.1315277499998046 +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967 +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.1310482090011646 +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084652,0.1287392910016933 +9,581.0269266320039,0.5450534020938123,23.13070375135616,111.97440829264757,0.1330678330014052 +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799497,0.1282551250005781 +11,564.9127401658633,0.5299369044707911,22.4891973834792,108.86891281221816,0.1293773329998657 +12,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.1315748749984777 +13,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557429,0.1303790419988217 +14,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969 +15,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.1300272909975319 +16,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.1332790000014938 +17,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.1304998750019876 +18,577.1835894549931,0.5414480201266352,22.97770035412408,111.2337276347656,0.1321876250003697 +19,572.4775221883025,0.5370333228783325,22.79035163964923,110.32678326881744,0.1311098330006643 +20,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821 +21,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.1276652909982658 +22,550.3919260419447,0.516315127619085,21.91112322833492,106.07048903024578,0.126051750001352 +23,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.1295552080009656 +24,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.1292686669985414 +25,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367843,0.1345588340009271 +26,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156 +27,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.1282280839986924 +28,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544232,0.131837541997811 +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.1291073329994105 +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893635,0.1292414579984324 +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.1296916249993955 +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185 +4,570.7923075604117,0.4995848181471686,22.61453943479517,108.6430451197376,0.1289150839984358 +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.1188811249994614 +6,546.1066178825615,0.4779787179506606,21.636503299233237,103.944438530337,0.1233397500000137 +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137712,0.1353968750008789 +8,564.8324897164598,0.4943684995767823,22.378414080842347,107.50866970796427,0.1275690420006867 +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427 +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.1266568329992878 +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681 +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.127020125000854 +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.1180574170030013 +14,565.4239499832644,0.4948861739846519,22.40184747570525,107.62124663586232,0.127702625002712 +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.1330269160025636 +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177 +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.1327920000003359 +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.1297199580003507 +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.1315104159984912 +20,573.9317008573986,0.5023325658105368,22.73892081235696,109.2405886449314,0.1296241250020102 +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.1326278329979686 +22,569.2309991369702,0.4982182860925752,22.55268108379057,108.34586994893202,0.1285624580013973 +23,586.1692027690232,0.5130434147237337,23.22376523982768,111.56984125525462,0.1323879999981727 +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.9929550276332,0.1352632499983883 +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.1295764169990434 +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880932,0.1320039999991422 +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889296,0.1308776250007213 +28,569.554032432905,0.4985010203345533,22.56547952047745,108.40735522208752,0.1286354160001792 +29,569.8029068334558,0.4987188471526337,22.575339814442557,108.45472529412608,0.1286916249991918 +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892 +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.1231860420011798 +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.1267482919975009 +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.1252969589986605 +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.1273789999977452 +5,364.7452495438632,0.775049957456472,0.0,79.9986347392028,0.1277264160016784 +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789 +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.1272880409997014 +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.1274361249998037 +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.1269027079979423 +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.1268887499973061 +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329 +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.1277072500015492 +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.127331707997655 +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511 +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.1237031659984495 +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.1275474169997323 +17,363.6220179678712,0.7726631941298076,0.0,79.75227925496361,0.127333083000849 +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.1279127499983587 +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.1260935409991361 +20,362.955814476415,0.7712475732591968,0.0,79.6061625616232,0.1270997920000809 +21,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.1263032079987169 +22,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.1252500000009604 +23,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.126944709001691 +24,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.1269748750019061 +25,362.2602175158703,0.7697694939823556,0.0,79.45359907452662,0.1268562080003903 +26,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.1222566659998847 +27,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758 +28,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.1265295829980459 +0,376.19058039632665,0.0,0.0,81.35316209688087,0.127241165999294 +1,373.3111818811339,0.0,0.0,80.73047724947932,0.1262672500015469 +2,375.9587422141797,0.0,0.0,81.30302588881162,0.1271627499991154 +3,358.0380640968126,0.0,0.0,77.42758639685981,0.1211013329993875 +4,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658 +5,375.96440985647655,0.0,0.0,81.304251545823,0.127164666999306 +6,375.1544485619503,0.0,0.0,81.12909321938014,0.126890708997962 +7,372.8164561803528,0.0,0.0,80.62349025345529,0.1260999160003848 +8,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354 +9,341.7689728538709,0.0,0.0,73.9093111235619,0.1155985420009528 +10,376.4109650344787,0.0,0.0,81.40082141671914,0.1273157079995144 +11,377.2984136638453,0.0,0.0,81.59273678079191,0.1276158750006288 +12,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929 +13,331.6252896252523,0.0,0.0,71.71568706979686,0.1121675840004172 +14,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419 +15,355.2765537051657,0.0,0.0,76.83039546696682,0.1201672909992339 +16,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539 +17,377.2072553916621,0.0,0.0,81.57302333213093,0.1275850419988273 +18,375.10048919039974,0.0,0.0,81.11742422571268,0.1268724580004345 +19,372.6835400780478,0.0,0.0,80.5947464576784,0.1260549590006121 +20,376.0683787140708,0.0,0.0,81.32673534995224,0.1271998330012138 +21,374.1239784649677,0.0,0.0,80.90624872192488,0.1265421669995703 +22,376.20314854727656,0.0,0.0,81.35588002464081,0.1272454169993579 +23,374.47284738731366,0.0,0.0,80.98169343391177,0.1266601669994997 +24,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582 +25,377.63409948635586,0.0,0.0,81.66533057913625,0.127729416002694 +26,377.7004998759669,0.0,0.0,81.67969000741759,0.127751874999376 +27,370.2482309866334,0.0,0.0,80.0680982490467,0.1252312499964318 +28,376.1321921537387,0.0,0.0,81.3405353369051,0.127221416998509 +0,581.4317776280168,0.5649808642284244,22.03425370490855,108.27692092095334,0.1290291250006703 +1,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199 +2,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056125,0.1326433750000433 +3,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.1309582920002867 +4,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.1296407499976339 +5,595.3991361810349,0.5785530331567643,22.56356829311381,110.8779871779258,0.1321287079990725 +6,575.798831243909,0.5595072952927381,21.820784516416783,107.22792753316124,0.1277790829990408 +7,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995 +8,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.1333778750013152 +9,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.1294329999982437 +10,599.6841637858541,0.5827168210551312,22.72595602115012,111.6759648822128,0.1330796250003914 +11,575.4691302135833,0.55918692275684,21.80828998751676,107.16652907892852,0.1277059170024586 +12,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468507,0.1305355839976982 +13,582.9858553137769,0.5664909711537129,22.09314787499481,108.56632847169394,0.129374000000098 +14,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141 +15,601.3137204179325,0.5843002713406603,22.78771058228575,111.97942847222774,0.1334412500000326 +16,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170692,0.128728833002242 +17,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534 +18,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.1294090000010328 +19,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.1289375830019707 +20,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666796,0.1290653750002093 +21,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853932,0.122686833001353 +22,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881 +23,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684628,0.1276108329984708 +24,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817 +25,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.1288575420003326 +26,596.8328621274222,0.5799461935505104,22.617901548469906,111.14498226985664,0.1324468749990046 +27,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.1291972090002673 +28,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.132729291999567 +0,361.1273800704231,0.0,0.0,78.14745763956928,0.1268132500008505 +1,362.07910759150786,0.0,0.0,78.3534101378924,0.1271474580025824 +2,357.35440047061826,0.0,0.0,77.33099015545547,0.1254883330002485 +3,363.2426363907271,0.0,0.0,78.60519613520911,0.1275560419999237 +4,362.3479798378803,0.0,0.0,78.41159371422422,0.1272418750013457 +5,352.9112606909941,0.0,0.0,76.36950095004781,0.123928082997736 +6,360.94382237042606,0.0,0.0,78.10773601120054,0.1267487920013081 +7,360.55380282733665,0.0,0.0,78.02333633007905,0.1266118329986056 +8,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646 +9,364.2208248292936,0.0,0.0,78.81687473889593,0.1278995419997954 +10,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028 +11,374.00840463719953,0.0,0.0,80.93489325713479,0.1313365419991896 +12,360.17292159439404,0.0,0.0,77.94091416643339,0.1264780829988012 +13,360.17102501617666,0.0,0.0,77.94050374957197,0.126477416997659 +14,362.5744923942769,0.0,0.0,78.46061071316345,0.1273214169996208 +15,360.86337170818086,0.0,0.0,78.09032660092915,0.1267205410003953 +16,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175 +17,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644 +18,361.46791779675897,0.0,0.0,78.2211495250705,0.1269328330017742 +19,362.3516590767534,0.0,0.0,78.4123898963468,0.1272431670004152 +20,360.9834510950976,0.0,0.0,78.1163116115385,0.126762707997841 +21,364.26057316947674,0.0,0.0,78.82547622386255,0.1279135000004316 +22,364.3102884882237,0.0,0.0,78.83623454898611,0.1279309579986147 +23,362.5480314767952,0.0,0.0,78.45488460779974,0.127312125001481 +24,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774 +25,360.08998204684286,0.0,0.0,77.92296616487883,0.1264489580025838 +26,362.7770357881926,0.0,0.0,78.50444081902006,0.1273925420027808 +27,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133 +28,369.760449773745,0.0,0.0,80.0156417933386,0.1298448330016981 +0,492.1706690195863,0.0,0.0,92.06965491809224,0.1276172920006502 +1,486.08444962833966,0.0,0.0,90.9311146628915,0.1260391670002718 +2,486.6206809901031,0.0,0.0,91.03142668784857,0.1261782090004999 +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815 +4,491.069285551624,0.0,0.0,91.86362070636284,0.1273317090017371 +5,491.66914718394423,0.0,0.0,91.97583595396456,0.1274872499998309 +6,489.3934208087073,0.0,0.0,91.55011911376064,0.126897165999253 +7,484.9412836048319,0.0,0.0,90.71726424895256,0.1257427500022458 +8,489.216660608546,0.0,0.0,91.5170528388757,0.1268513329996494 +9,486.77108895533576,0.0,0.0,91.05956328827516,0.1262172090027888 +10,481.332938877034,0.0,0.0,90.04225642173755,0.124807125001098 +11,494.5105077458341,0.0,0.0,92.50736516303382,0.1282240000000456 +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553 +13,482.32457080883734,0.0,0.0,90.22775957240025,0.125064249998104 +14,487.23500493783496,0.0,0.0,91.1463473798684,0.1263375000016822 +15,490.8859305301352,0.0,0.0,91.8293207477944,0.1272841659992991 +16,492.7372712254749,0.0,0.0,92.17564837291538,0.1277642090026347 +17,491.3188354948492,0.0,0.0,91.91030365316124,0.127396416002739 +18,487.494200264288,0.0,0.0,91.19483467455105,0.1264047080003365 +19,491.90504470972667,0.0,0.0,92.019964962786,0.1275484170000709 +20,489.6739895004024,0.0,0.0,91.6026046929534,0.1269699160002346 +21,497.94691303592106,0.0,0.0,93.1502085284202,0.129115042000194 +22,489.3804086070156,0.0,0.0,91.54768494001787,0.1268937920031021 +23,489.13647389090073,0.0,0.0,91.50205242563018,0.1268305410012544 +24,488.2921993203388,0.0,0.0,91.34411520331948,0.1266116250008053 +25,488.2168333511135,0.0,0.0,91.33001660050562,0.1265920829973765 +26,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081 +27,480.867734774439,0.0,0.0,89.95523136338183,0.1246864999993704 +28,492.06428817424865,0.0,0.0,92.04975440728032,0.1275897080013237 +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888 +1,414.74347979123286,0.0,0.0,83.8936897077914,0.128032249998796 +2,413.8073026522728,0.0,0.0,83.70432119873855,0.1277432499991846 +3,414.58259013722255,0.0,0.0,83.86114518962916,0.1279825829988112 +4,405.3386539625768,0.0,0.0,81.99129562983686,0.1251289589999942 +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936 +6,413.9982892718827,0.0,0.0,83.74295368600988,0.127802208000503 +7,409.3646465046534,0.0,0.0,82.80566736935371,0.1263717920010094 +8,412.4757866594092,0.0,0.0,83.43498413862977,0.1273322080014622 +9,412.46337016487814,0.0,0.0,83.43247254871889,0.1273283750015252 +10,410.6350162053592,0.0,0.0,83.06263584909651,0.1267639580000832 +11,412.46282918595386,0.0,0.0,83.43236312031262,0.1273282080001081 +12,413.48687415937496,0.0,0.0,83.63950540327329,0.1276443329988978 +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001 +14,409.1943076028259,0.0,0.0,82.77121147150024,0.1263192079968575 +15,406.66274208677544,0.0,0.0,82.25913019180082,0.1255377079978643 +16,411.9619420265209,0.0,0.0,83.3310444161506,0.1271735830014222 +17,411.5208471033168,0.0,0.0,83.24182039595,0.1270374160012579 +18,411.8797430808043,0.0,0.0,83.31441733656462,0.1271482080010173 +19,410.98729740297114,0.0,0.0,83.13389476194843,0.1268727080023381 +20,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163 +21,430.42633868348526,0.0,0.0,87.06599490786343,0.1328735839997534 +22,394.2393637064164,0.0,0.0,79.7461478261975,0.1217025830010243 +23,398.69146909006815,0.0,0.0,80.64671303288978,0.1230769579997286 +24,393.4677205138221,0.0,0.0,79.59006099730456,0.121464375002688 +25,399.4925386960174,0.0,0.0,80.80875219258839,0.1233242499984044 +26,418.3888499209973,0.0,0.0,84.63106971600862,0.1291575840004952 +27,409.7174654168141,0.0,0.0,82.87703505029891,0.1264807079969614 +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.126946249998582 +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.1295307910004339 +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878 +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836749,0.127710290998948 +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596 +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.1245412919997761 +6,773.1125247644942,0.8169198518182477,0.0,116.54723219273669,0.129782250001881 +7,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971 +8,741.2949626305472,0.7832993925563833,0.0,111.750713338044,0.1244410420003987 +9,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.1315446250009699 +10,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268 +11,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.1252313749973836 +12,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.1264663750007457 +13,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.1290887920004024 +14,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.1260320420005882 +15,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.1289440420005121 +16,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.1285882080010196 +17,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.1219281670018972 +18,790.462774080707,0.8352532284566974,0.0,119.16279392648885,0.1326948329988226 +19,751.1743926154271,0.7937386264593074,0.0,113.24004404152788,0.1260995000011462 +20,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.1307220839989895 +21,774.9388388883993,0.8188496514472585,0.0,116.82255027314224,0.1300888330006273 +22,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128 +23,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.1206704579999495 +24,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.1268399170003249 +25,756.88342996767,0.7997711583332929,0.0,114.1006852555498,0.1270578749972628 +26,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334 +27,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802 +28,760.1081492584486,0.8031786017788388,0.0,114.586813853781,0.1275992080009018 +0,369.911488017962,0.937586825790073,0.0,81.70399481884921,0.1261905419996765 +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.1273650000002817 +2,358.4963540466036,0.908653744302064,0.0,79.182683432037,0.1222964160006085 +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.1275479169999016 +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467 +5,373.2398182137489,0.94602289399701,0.0,82.43913790545372,0.1273259589979716 +6,372.4002203609801,0.9438948284699412,0.0,82.25369219523775,0.1270395409992488 +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.1270712080004159 +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.1210473329992964 +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482 +10,374.8352147805899,0.9500666256772444,0.0,82.79152023758844,0.1278702079980576 +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.1311800829971616 +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.1267409579995728 +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.1219887500010372 +14,373.0092159450698,0.9454384037713364,0.0,82.38820375721647,0.1272472920027212 +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.1268485420005163 +16,371.0299297507992,0.940421655926711,0.0,81.95103001647053,0.1265720839983259 +17,372.40693906507727,0.9439118578638692,0.0,82.25517618528004,0.1270418329986569 +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.1277537079986359 +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.1282872920019144 +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.1205967499990947 +21,371.27811733858584,0.9410507183380468,0.0,82.0058483123155,0.1266567499988014 +22,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.124332957999286 +23,371.9971566406658,0.9428732131744948,0.0,82.16466571949168,0.1269020409999939 +24,369.4635977484595,0.9364515920120275,0.0,81.60506730390526,0.1260377500002505 +25,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.1198882499993487 +26,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.1274375840002903 +27,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.127153334000468 +28,371.3744862190492,0.9412949772909728,0.0,82.0271337353562,0.1266896250017453 +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.1266642499977024 +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.127472290998412 +2,362.06830888108055,0.9323075821841325,0.0,78.97977089074149,0.1258273749990621 +3,368.62949009525886,0.9492022919502712,0.0,80.4109941609301,0.1281075419974513 +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.1265159579997998 +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.126595959001861 +6,364.5455978038035,0.938686475860447,0.0,79.52015431217787,0.1266882919990166 +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.126838874999521 +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.1260080419997393 +9,367.5248896744274,0.9463580017366168,0.0,80.17004214711623,0.1277236669993726 +10,364.9063615290765,0.9396154242058252,0.0,79.59884950772204,0.1268136660000891 +11,363.7304249899235,0.936587447095628,0.0,79.3423365896725,0.1264049999990675 +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.1258190410007955 +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.126164040997537 +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.1199694579991046 +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.1276645409998309 +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.1269337920020916 +17,365.2405141303859,0.9404758502529708,0.0,79.67173988571597,0.1269297920007375 +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482 +19,364.44404506429737,0.9384249826926916,0.0,79.4980021052523,0.1266529999993508 +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.1197223750023113 +21,363.56424934911365,0.9361595532256008,0.0,79.3060878661116,0.1263472499995259 +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.1264897919973009 +23,365.373837350975,0.9408191508025844,0.0,79.70082234656178,0.1269761250005103 +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.1266297080001095 +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164 +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.1203132499977073 +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905 +28,364.4625099886328,0.9384725289389112,0.0,79.50202995153919,0.1266594170010648 +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.1263581659986812 +0,395.6846676399492,0.0,0.0,81.77438952733165,0.1266846669968799 +1,396.35098819705064,0.0,0.0,81.91209503184734,0.1268979999986186 +2,396.2011939034781,0.0,0.0,81.88113771175549,0.1268500410005799 +3,386.0664705823485,0.0,0.0,79.78663954088394,0.1236052499989455 +4,386.5682950767456,0.0,0.0,79.89034937610185,0.1237659170001279 +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057 +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384 +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581 +8,398.01523257383474,0.0,0.0,82.25603701157462,0.1274308339998242 +9,397.0782147101372,0.0,0.0,82.06238769926466,0.1271308329996827 +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144 +11,396.4767043441066,0.0,0.0,81.93807622854256,0.1269382499995117 +12,396.02576599844105,0.0,0.0,81.84488280724774,0.1267938749988388 +13,399.8958961197486,0.0,0.0,82.64470537795509,0.1280329580004036 +14,396.5793855518793,0.0,0.0,81.9592968968379,0.1269711250024556 +15,401.0316391948003,0.0,0.0,82.87942434540003,0.128396584001166 +16,401.0917611744532,0.0,0.0,82.89184948740166,0.1284158329981437 +17,395.6790705523099,0.0,0.0,81.7732328021354,0.1266828750012791 +18,395.4228251241656,0.0,0.0,81.72027569975218,0.1266008339989639 +19,389.6295971968901,0.0,0.0,80.52301506296472,0.1247460410013445 +20,397.2721267874588,0.0,0.0,82.10246264540683,0.1271929169997747 +21,377.60744195350105,0.0,0.0,78.0384497354916,0.1208969589970365 +22,403.68586149940114,0.0,0.0,83.42796065822493,0.1292463749996386 +23,397.46993997509657,0.0,0.0,82.14334381665871,0.1272562500016647 +24,396.65291621411296,0.0,0.0,81.97449315160198,0.1269946669999626 +25,396.9833419725365,0.0,0.0,82.0427807727533,0.1271004580012231 +26,398.6449814389623,0.0,0.0,82.38618440724828,0.1276324579994252 +27,376.2813037352024,0.0,0.0,77.76438265101989,0.1204723749979166 +28,400.714743939528,0.0,0.0,82.81393301312637,0.1282951250032056 +0,361.5172471330565,0.0,0.0,78.12605136820386,0.1261808749986812 +1,365.5671462435493,0.0,0.0,79.00125892317271,0.1275944170010916 +2,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753 +3,363.29860543222503,0.0,0.0,78.511013610226,0.126802624999982 +4,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168 +5,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412 +6,361.5755026402199,0.0,0.0,78.13864073366628,0.1262012080005661 +7,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971 +8,363.8756795742305,0.0,0.0,78.63572280299373,0.1270040420022269 +9,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991 +10,364.5024111287863,0.0,0.0,78.77116326126676,0.1272227910012588 +11,363.3991207344049,0.0,0.0,78.53273557155335,0.1268377079977654 +12,362.13132653995166,0.0,0.0,78.25875762127396,0.1263952080007584 +13,364.4982367205501,0.0,0.0,78.77026114654089,0.1272213340016605 +14,360.4311471743661,0.0,0.0,77.89133863503122,0.1258017919972189 +15,362.40422461795254,0.0,0.0,78.31773253721299,0.1264904580020811 +16,361.2869669971778,0.0,0.0,78.0762864458733,0.1261004999978467 +17,363.55037360229466,0.0,0.0,78.56542222598009,0.1268904999997175 +18,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709 +19,363.6459953773748,0.0,0.0,78.58608666667018,0.1269238750028307 +20,366.4062541016947,0.0,0.0,79.18259517794013,0.1278872920011053 +21,362.061848555091,0.0,0.0,78.24374301088613,0.1263709580016438 +22,362.24270905991347,0.0,0.0,78.28282805372238,0.1264340839989017 +23,362.0681746289213,0.0,0.0,78.24511011348758,0.1263731660001212 +24,362.6975363200963,0.0,0.0,78.38111896010236,0.1265928329994494 +25,358.52527861331754,0.0,0.0,77.47946897657832,0.125136584003485 +26,355.4742151019403,0.0,0.0,76.82011580184641,0.1240716669999528 +27,363.61639058594017,0.0,0.0,78.57968889318992,0.1269135420006932 +0,365.0774252251925,0.0,0.0,78.66773310494989,0.1270807500004593 +1,367.5883720326905,0.0,0.0,79.20879776588075,0.1279547920021286 +2,350.57697332024804,0.0,0.0,75.54314198662561,0.1220332500015501 +3,361.880120821408,0.0,0.0,77.97877051205046,0.1259677919988462 +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142 +5,364.4711468988576,0.0,0.0,78.53709084041105,0.1268697090017667 +6,369.5311022105454,0.0,0.0,79.62742178524363,0.1286310420000518 +7,362.71598461213733,0.0,0.0,78.15888438669123,0.1262587499986693 +8,364.6465054066651,0.0,0.0,78.57487749972414,0.1269307500006107 +9,357.7011552221953,0.0,0.0,77.07827728048227,0.1245131249997939 +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524 +11,363.63528023405354,0.0,0.0,78.35697634645797,0.1265787500014994 +12,364.8904548594365,0.0,0.0,78.62744429546584,0.1270156669997959 +13,363.9725956478543,0.0,0.0,78.42966185674032,0.1266961670007731 +14,364.7223961358544,0.0,0.0,78.59123061064388,0.1269571670018194 +15,365.02679214761287,0.0,0.0,78.65682257157232,0.1270631250008591 +16,361.9313514452685,0.0,0.0,77.98980980609107,0.1259856249998847 +17,345.0865750669766,0.0,0.0,74.36005819512079,0.1201220830007514 +18,364.1344290208866,0.0,0.0,78.46453408853974,0.1267525000002933 +19,364.22934916661006,0.0,0.0,78.48498770241478,0.1267855410005722 +20,363.6205571430931,0.0,0.0,78.3538037805579,0.1265736250024929 +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022 +22,362.8233554694112,0.0,0.0,78.18202090886338,0.1262961249994987 +23,351.26608593148893,0.0,0.0,75.69163357562735,0.1222731250018114 +24,365.8098711297876,0.0,0.0,78.82556225283807,0.1273357089994533 +25,362.3659829171635,0.0,0.0,78.08346520702132,0.1261369169988029 +26,362.8579468409589,0.0,0.0,78.1894747380969,0.1263081659999443 +27,372.2966479317493,0.0,0.0,80.22334801253913,0.1295937079994473 +28,364.5761218333096,0.0,0.0,78.55971108355833,0.1269062499995925 +29,346.7069542397634,0.0,0.0,74.70922126981647,0.120686124999338 +0,387.6502443930199,0.0,0.0,86.02535538551267,0.1311169590007921 +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788 +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028 +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004 +4,377.59806480196255,0.0,0.0,83.79462721178557,0.1277169579989276 +5,378.2879220367919,0.0,0.0,83.94771679356664,0.1279502920006052 +6,358.1112551934011,0.0,0.0,79.47021430052544,0.1211258330004056 +7,375.73853630594704,0.0,0.0,83.38197017871778,0.1270880000010947 +8,366.0266051541871,0.0,0.0,81.22674819474109,0.1238030829990748 +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211 +10,368.7047238020264,0.0,0.0,81.82106255872576,0.124708917002863 +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617 +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764 +13,376.62154905599033,0.0,0.0,83.57792384244205,0.1273866659976192 +14,373.9790358237752,0.0,0.0,82.99151084980181,0.126492874998803 +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924 +16,375.11520378706575,0.0,0.0,83.24364342093624,0.1268771670002024 +17,375.4187381278567,0.0,0.0,83.31100220611935,0.1269798329994955 +18,376.0866668397095,0.0,0.0,83.45922552247323,0.1272057500027585 +19,375.7424773478016,0.0,0.0,83.38284475452687,0.1270893330001854 +20,377.3000739401179,0.0,0.0,83.72849860703786,0.1276161669993598 +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222 +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624 +23,370.4305938208771,0.0,0.0,82.20405878759003,0.1252926669985754 +24,378.135167384867,0.0,0.0,83.91381826413529,0.1278986249999434 +25,373.97989913536014,0.0,0.0,82.99170243148396,0.1264931670011719 +26,375.5505517329566,0.0,0.0,83.34025360576987,0.1270244170009391 +27,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871 +28,376.9114124413168,0.0,0.0,83.64224883925715,0.1274847079985193 +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.1283158750011352 +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.1281986249996407 +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687 +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156 +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992 +5,365.6555120565184,0.8698118310585068,0.0,85.27501374492822,0.1265472909981326 +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.126757792000717 +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424 +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.1266237919990089 +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.126802790997317 +10,366.241235094044,0.8712051338010197,0.0,85.41161100226151,0.126749999999447 +11,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.1259749579985509 +12,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.1282745000025897 +13,365.4347097682464,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312 +14,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.1260847909979929 +15,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.1271165419966564 +16,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071 +17,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.1272964579984545 +18,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.1278989170023123 +19,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.1252903750028053 +20,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.1290519159992982 +21,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.127279833999637 +22,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.1260045829985756 +23,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.1285861670003214 +24,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498 +25,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.1242197499996109 +26,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.1280166249998728 +27,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.1299367089995939 +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392 +1,363.05448090538937,0.0,0.0,79.35981489298555,0.1272270419976848 +2,362.5024300899116,0.0,0.0,79.23914250679553,0.1270335840017651 +3,363.9394521290133,0.0,0.0,79.55326010902385,0.1275371669980813 +4,363.6331643510986,0.0,0.0,79.48630888644514,0.1274298330026795 +5,361.9330179821863,0.0,0.0,79.11467512836181,0.1268340419992455 +6,367.93805246242096,0.0,0.0,80.42731124729627,0.1289384170013363 +7,364.20709368215694,0.0,0.0,79.61176368144136,0.1276309579989174 +8,364.8000479429753,0.0,0.0,79.74137712199497,0.1278387499987729 +9,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772 +10,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003 +11,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107 +12,363.7586055346067,0.0,0.0,79.51372898350148,0.127473791999364 +13,362.0657101640452,0.0,0.0,79.14368021587322,0.1268805420004355 +14,356.5336590933504,0.0,0.0,77.93443319637895,0.1249419169980683 +15,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913 +16,364.2592916495958,0.0,0.0,79.62317359717468,0.127649250000104 +17,363.8922479704996,0.0,0.0,79.54294178635095,0.1275206250029441 +18,364.0480086058659,0.0,0.0,79.57698939033439,0.1275752090004971 +19,362.696591566812,0.0,0.0,79.2815841227969,0.1271016250029788 +20,362.9481816283438,0.0,0.0,79.33657901133893,0.1271897909973631 +21,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978 +22,362.2359756302134,0.0,0.0,79.18089842027075,0.1269402090001676 +23,363.4732460078574,0.0,0.0,79.45135245212167,0.1273737919982522 +24,363.7713268548058,0.0,0.0,79.51650972763022,0.1274782499967841 +25,363.4419763123466,0.0,0.0,79.44451723212573,0.1273628339986316 +26,363.1935936838931,0.0,0.0,79.39022345404717,0.1272757920014555 +27,363.6311440010843,0.0,0.0,79.48586725960514,0.1274291250010719 +28,364.6958917231345,0.0,0.0,79.71860968966385,0.1278022500009683 +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277 +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.1244781660025182 +2,362.381369627801,0.9030269478496196,0.0,79.29914419820177,0.126015500001813 +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.1223343749988998 +4,365.53192544718695,0.9108778945153712,0.0,79.98857362577574,0.1271110829984536 +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.1269080830024904 +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.1264884590018482 +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.1262647080002352 +8,366.083701130626,0.9122528777597512,0.0,80.10931752475443,0.1273029590010992 +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.1199655410018749 +10,364.2674620465664,0.9077269474164552,0.0,79.71187378979317,0.126671374997386 +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.1241264589989441 +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474 +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.1250427089980803 +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496 +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.1217608330007351 +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.1264975830017647 +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924 +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957 +19,364.75057778178666,0.9089308352661044,0.0,79.8175929783679,0.1268393749996903 +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226 +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.1196454169985372 +22,367.629021552613,0.916103699300466,0.0,80.44747670523722,0.1278403329997672 +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.1261047499974665 +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.1269116660005238 +25,364.2674620570281,0.9077269474425252,0.0,79.71187379208249,0.126671375001024 +26,370.1547160771413,0.9223975389093508,0.0,81.00016906496558,0.1287186250010563 +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.1204572079986974 +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.1272289589978754 +29,365.1832510520659,0.9100090243106396,0.0,79.91227394964912,0.1269898339996871 +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.1272624580014962 +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.1269249159995524 +2,367.4705435091116,0.4339677566877226,0.0,80.11712431157956,0.1269625000022642 +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.1263709169979847 +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.127091250000376 +5,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.1266598339971096 +6,367.1217775287856,0.4335558782589219,0.0,80.04108521703175,0.1268420000014885 +7,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.1299451669983682 +8,370.55613254945854,0.4376117117680742,0.0,80.78985448025985,0.128028582999832 +9,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.1267745839977578 +10,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448 +11,364.356853467442,0.4302906154684544,0.0,79.43826747109927,0.125886707999598 +12,366.21742300664187,0.4324878723733961,0.0,79.8439148997039,0.1265295420016627 +13,367.6326256151,0.4341591690585301,0.0,80.15246198003634,0.1270184999993944 +14,367.63057643996024,0.4341567490660867,0.0,80.15201521220062,0.1270177920014248 +15,368.71896362732775,0.4354420900395404,0.0,80.3893089303767,0.1273938340018503 +16,367.2385171663555,0.4336937430198602,0.0,80.06653717289728,0.1268823339996743 +17,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.1265819590007595 +18,367.5113042606,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143 +19,368.5741258840442,0.4352710425592818,0.0,80.35773093402126,0.1273437919990101 +20,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212 +21,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.1267945420004252 +22,368.7505580598764,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056 +23,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.1274272090013255 +24,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.1273582089997944 +25,357.5469937001284,0.4222484482287126,0.0,77.95355967299311,0.1235338750011578 +26,367.53795807863906,0.4340473705507183,0.0,80.13182225551724,0.1269857919978676 +27,363.3688037875811,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172 +28,366.4730872800551,0.4327898014753557,0.0,79.89965565698876,0.1266178750011022 +0,369.7851773109551,0.0,0.0,80.6080421172184,0.1269397500000195 +1,374.92032490521166,0.0,0.0,81.72743310137321,0.1287025419987912 +2,370.56236276808175,0.0,0.0,80.7774577723199,0.1272065420016588 +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313 +4,367.7597386710104,0.0,0.0,80.16652457348731,0.1262444580024748 +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078 +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382 +7,368.1525174790658,0.0,0.0,80.25214490833339,0.1263792909994663 +8,368.5888759246009,0.0,0.0,80.34726499998142,0.1265290840019588 +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434 +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949 +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178 +12,371.52986822542886,0.0,0.0,80.98836054895796,0.1275386669985891 +13,323.38193430333433,0.0,0.0,70.49277845539667,0.1110104580002371 +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533 +15,370.7117773569245,0.0,0.0,80.81002808127047,0.127257832999021 +16,366.30344520570907,0.0,0.0,79.8490727874539,0.1257445419978466 +17,369.4200698015571,0.0,0.0,80.52845374185712,0.126814415998524 +18,370.4960902757074,0.0,0.0,80.76301128775451,0.1271837919994141 +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574 +20,373.687726585192,0.0,0.0,81.45874375580162,0.1282794159997138 +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511 +22,371.68098115026265,0.0,0.0,81.02130107160961,0.1275905410002451 +23,370.3033407611029,0.0,0.0,80.72099456576393,0.1271176250011194 +24,369.25851641569744,0.0,0.0,80.49323734344371,0.1267589579983905 +25,370.04164746358737,0.0,0.0,80.66394905490458,0.127027791000728 +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348 +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206 +28,366.14965808656615,0.0,0.0,79.8155493275167,0.1256917499995324 +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539 +0,369.9041744801996,0.7311672810929373,0.0,80.96015894283615,0.1263925839994044 +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.1239147499982209 +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.1276219589999527 +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.1270622920019377 +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696 +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.126509249999799 +6,372.7495863983696,0.7367916352887809,0.0,81.5829283437941,0.1273648330025025 +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.1227005830005509 +8,376.1469165837081,0.7435069330495576,0.0,82.32649495039648,0.1285256669980299 +9,375.5150076768029,0.7422578768094935,0.0,82.18819035945118,0.1283097499981522 +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718 +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.1265221249996102 +12,372.6448394186792,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737 +13,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.1269626670000434 +14,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.1278689999999187 +15,371.6252751140856,0.7345692769550659,0.0,81.33685266647912,0.1269806669988611 +16,372.5041183310883,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274 +17,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.1287318750000849 +18,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.1274127080032485 +19,371.5436924157741,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037 +20,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.1269673329989018 +21,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.1263547090020438 +22,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.1277858329995069 +23,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187 +24,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782 +25,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.1278468330019677 +26,370.9710506631292,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306 +27,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.1266328330020769 +28,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.1273535420004918 +0,364.8766742429042,0.8046531454405679,0.0,80.39826011527006,0.1268683750022319 +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.1270218329991621 +2,366.4414736680069,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891 +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623 +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.1270766669986187 +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.1276734169987321 +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.126081708996935 +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.1280686669997521 +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.1271314580008038 +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.1226394589975825 +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565 +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.1250696669994795 +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885 +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.1254135829985898 +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.1274225419983849 +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.1204695409978739 +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874 +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.1267092080015572 +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.1264430000010179 +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.1262780420001945 +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.1269816249987343 +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.1207254170003579 +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.1275093339972954 +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.1266951249999692 +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.1258205420017475 +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.1262950420023116 +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248 +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.1196737499994924 +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.1269724580015463 +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645 +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.1297699579990876 +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.1281011659993964 +2,596.3705986768317,0.4998356696738266,17.56089319454044,107.19808995604669,0.1292779169998539 +3,588.5562142436058,0.4932862051547235,17.330788674435954,105.79344813218304,0.1275839580011961 +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.1278309170011198 +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598812,0.1344743330009805 +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338 +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092 +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083 +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.1300877080029749 +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.1316869169968413 +11,593.7434442190689,0.4976337745592017,17.48353327951329,106.72585685046349,0.1287084169998706 +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.1180163749995699 +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336 +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383 +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.1267631670016271 +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053044,0.1299459580004622 +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988683,0.1310292080015642 +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111336,0.1308710830016934 +19,592.0333350469189,0.4962004819636689,17.433176932990236,106.41846336514152,0.1283377090003341 +20,640.5170945999755,0.5368361411968281,18.86084309404856,115.13345774867972,0.1388477500004228 +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.1314542500003881 +22,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.1336179169993556 +23,576.81763141262,0.4834477549974464,16.985131125576952,103.68342852178569,0.1250393329974031 +24,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.1294262920018809 +25,588.7255561438179,0.4934281355622321,17.33577516275309,105.82388747358006,0.1276206670008832 +26,574.9945015603392,0.4819197364589087,16.931446740922993,103.35571947922062,0.1246441250004863 +27,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.1329680839990032 +28,594.1982164073472,0.4980149324529366,17.496924626846507,106.80760251340648,0.1288069999973231 +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.1308225419998052 +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984025,0.129822625000088 +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.1305599580009584 +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.7164511012418,0.1303684579979744 +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478836,0.133669083003042 +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.1280587090004701 +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.131149834000098 +7,597.649025563058,0.5265920154749121,20.602912605455938,108.41213118589752,0.1288186250021681 +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518 +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390812,0.1328884159993322 +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.1274853749964677 +11,617.1983607546819,0.5438170478591833,21.276841997490543,111.95833472800936,0.1330323330003011 +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332355,0.1315104169989354 +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224584,0.132710166999459 +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480084,0.123739458998898 +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.1226190000015776 +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105 +17,609.4197285876301,0.5369632500359095,21.00868715765496,110.54730910114289,0.131355708999763 +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206 +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864 +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176743,0.1294865419986308 +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163 +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.128652208000858 +23,598.978231220104,0.5277631862724634,20.648734662910133,108.6532459738434,0.1291051250009331 +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.1315287079996778 +25,599.235721308217,0.5279900622793916,20.6576111866812,108.69995407176977,0.129160624997894 +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.1330622909990779 +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.129972374998033 +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964276,0.129170708998572 +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398 +0,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.1275194589979946 +1,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944 +2,365.1552719264768,1.1348518505941692,0.0,79.53976352840897,0.1266182079998543 +3,368.1911850271189,1.1442870467021975,0.0,80.20105977327462,0.1276709160010796 +4,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.1273849159988458 +5,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688 +6,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.1250703330006217 +7,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.1285071249985776 +8,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042 +9,362.3793921728516,1.1262248019997214,0.0,78.93510891662754,0.1256556670014106 +10,367.18182008164734,1.1411500806925057,0.0,79.98119536147766,0.1273209169994515 +11,368.02740499563134,1.143778041119878,0.0,80.16538447025499,0.1276141249982174 +12,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.1275358330021845 +13,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604 +14,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.1268808749991876 +15,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.126675041999988 +16,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412 +17,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.1292150410008616 +18,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.1270570420019794 +19,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.1263232079982117 +20,363.1997428984131,1.128774338075507,0.0,79.11380140099804,0.1259401250026712 +21,367.0620167726892,1.140777748653696,0.0,79.95509926593404,0.1272793749994889 +22,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.1281139159982558 +23,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.1295731249992968 +24,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.1270090419966436 +25,364.5013486503741,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141 +26,363.1987825501328,1.1287713534464825,0.0,79.11359221361668,0.1259397920002811 +27,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.1270736670012411 +28,365.7796380252842,1.1367922936800423,0.0,79.6757657599865,0.1268347080003877 +0,392.35717841459865,1.1193729478414245,0.0,83.85120991103034,0.127699874999962 +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.1266927500000747 +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.1210532080003758 +3,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.1250622500010649 +4,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.1264222079989849 +5,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.1273698340010014 +6,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.1269118330019409 +7,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.1256257500026549 +8,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.1276837919976969 +9,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.1263573749965871 +10,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.1259465830007684 +11,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134 +12,381.0208254600399,1.087030970881068,0.0,81.42850181872728,0.1240102499978093 +13,385.7221262916305,1.1004435175606295,0.0,82.433223497269,0.1255403750001278 +14,388.1155996030598,1.107271962211548,0.0,82.94473607839231,0.1263193750019127 +15,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.126625500000955 +16,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.1266295829991577 +17,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009 +18,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.1265432920008606 +19,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.1272836249991087 +20,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.1268063340030494 +21,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.1266531250003026 +22,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.1270766249981534 +23,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.1264769169974897 +24,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.1222288329990988 +25,406.8875185658029,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041 +26,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.1266736659999878 +27,391.19795385274,1.116065745408526,0.0,83.60347038332958,0.1273225840013765 +0,381.4033142582579,0.0,0.0,82.61925110554331,0.1332604589988477 +1,362.55955683134994,0.0,0.0,78.5373329144196,0.1266765420004958 +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517 +3,364.8477942397509,0.0,0.0,79.0330088930131,0.1274760409978625 +4,344.4926161941541,0.0,0.0,74.62368809432583,0.1203640410021762 +5,363.3133567014207,0.0,0.0,78.70062038052308,0.1269399160009925 +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374 +7,363.50917225752414,0.0,0.0,78.74303777438224,0.1270083330018678 +8,364.4152638869781,0.0,0.0,78.93931454770832,0.1273249170008057 +9,362.471785151328,0.0,0.0,78.51831989014688,0.1266458750033052 +10,344.8277210316543,0.0,0.0,74.69627821004087,0.1204811249990598 +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794 +12,363.5227671803984,0.0,0.0,78.74598269464046,0.1270130830016569 +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383 +14,363.0369275435488,0.0,0.0,78.6407405390185,0.1268433330005791 +15,363.51000797351264,0.0,0.0,78.74321880644601,0.1270086249969608 +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366 +17,361.4334449521908,0.0,0.0,78.29339554775532,0.1262830839987145 +18,363.57273639099617,0.0,0.0,78.75680698117282,0.1270305420002841 +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433 +20,366.3633906583192,0.0,0.0,79.36131605868071,0.1280055829993216 +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325 +22,346.6831905324902,0.0,0.0,75.09820838441907,0.1211294169988832 +23,365.82126518573983,0.0,0.0,79.24388131473557,0.1278161670015833 +24,364.1797368434446,0.0,0.0,78.88829488630428,0.1272426249997806 +25,363.9925075577076,0.0,0.0,78.84773744279413,0.1271772079999209 +26,362.5031479127712,0.0,0.0,78.52511366399774,0.1266568329992878 +27,362.4386307071827,0.0,0.0,78.511138003562,0.1266342910021194 +28,363.69341924406274,0.0,0.0,78.78294919485816,0.1270727080009237 +29,367.1670423932719,0.0,0.0,79.53540239199062,0.1282863749984244 +0,380.3526569408623,0.0,0.0,80.10239659227442,0.1271814169995195 +1,387.17328681307646,0.0,0.0,81.53882352150227,0.1294620829976338 +2,385.3726788755025,0.0,0.0,81.15961488843315,0.1288599999970756 +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086 +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787 +5,394.2382781455051,0.0,0.0,83.02671305586976,0.1318244579997554 +6,373.8768198704676,0.0,0.0,78.73858314227304,0.1250160419986059 +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807 +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013 +9,380.0052443470086,0.0,0.0,80.02923138397054,0.127065250002488 +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719 +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198 +12,382.215942515876,0.0,0.0,80.49480515672312,0.1278044579994457 +13,361.8984704460614,0.0,0.0,76.21593875263807,0.1210107500010053 +14,378.8783985966985,0.0,0.0,79.79191729258059,0.1266884579999896 +15,380.88423856576446,0.0,0.0,80.21434786003091,0.1273591659992234 +16,379.1726048879838,0.0,0.0,79.85387723579232,0.1267868340000859 +17,378.95814974542776,0.0,0.0,79.80871291114045,0.126715124999464 +18,380.36461647596656,0.0,0.0,80.10491527436194,0.1271854160004295 +19,364.3920344346489,0.0,0.0,76.74108416150293,0.1218445419981435 +20,380.7520317589275,0.0,0.0,80.18650506235302,0.1273149590015236 +21,382.7415458800854,0.0,0.0,80.60549740078093,0.1279802080025547 +22,380.34679830413467,0.0,0.0,80.10116276142276,0.1271794580025016 +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071 +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658 +25,363.53484190384074,0.0,0.0,76.56055912820624,0.1215579159979824 +26,380.69109765029833,0.0,0.0,80.17367231872328,0.1272945839991734 +27,379.47166496381067,0.0,0.0,79.91685938764968,0.1268868329971155 +28,379.2726654116168,0.0,0.0,79.87495001549036,0.1268202920000476 +29,384.0864564464969,0.0,0.0,80.88873601527702,0.1284299159997317 +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612 +1,383.59709143073366,0.0,0.0,82.02532419427872,0.1296549590006179 +2,366.3914775833742,0.0,0.0,78.34621378046563,0.1238395000000309 +3,374.1168748582736,0.0,0.0,79.99815074807854,0.1264506670013361 +4,367.66885289590334,0.0,0.0,78.61935746812284,0.1242712499988556 +5,383.9118124443024,0.0,0.0,82.09262161061848,0.1297613339993404 +6,375.5611654777607,0.0,0.0,80.30698626571066,0.1269388340006116 +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152 +8,374.86182356292346,0.0,0.0,80.1574446018956,0.1267024579974531 +9,377.0421871072083,0.0,0.0,80.62367604779706,0.1274394159991061 +10,375.6765508526328,0.0,0.0,80.33165934846492,0.1269778339992626 +11,375.1464674630339,0.0,0.0,80.21831056962074,0.1267986669990932 +12,378.4867262518033,0.0,0.0,80.93256470804418,0.1279276669993123 +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779 +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733 +15,375.683823091228,0.0,0.0,80.33321438561643,0.1269802919996436 +16,373.6414012930972,0.0,0.0,79.8964792959204,0.1262899579996883 +17,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284 +18,383.49859372980546,0.0,0.0,82.00426223622037,0.1296216669979912 +19,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624 +20,374.5009986985629,0.0,0.0,80.08028870802231,0.1265805000002728 +21,332.15382500117937,0.0,0.0,71.02510886220082,0.1122672499986947 +22,381.9548202102259,0.0,0.0,81.67415409344545,0.1290998750009748 +23,370.0998334750992,0.0,0.0,79.13917884991385,0.1250929159978113 +24,377.0426841466608,0.0,0.0,80.62378233072553,0.1274395839973294 +25,378.23080739815214,0.0,0.0,80.87784107377504,0.1278411669991328 +26,377.1951733191553,0.0,0.0,80.65638939185659,0.1274911249965953 +27,374.3644119900847,0.0,0.0,80.05108210220116,0.1265343339982791 +28,379.98685748159807,0.0,0.0,81.25334073374067,0.1284347079999861 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/mac_report.md new file mode 100644 index 000000000..3003b419e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 665.57 ms | 123.63 ms | +| **Average Power** | 7.826 W | 4.087 W | +| **Total Energy** | 4687.65 J | 454.69 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +90.61% | 0.00e+00 | +12.775 | large | βœ… | +| `gpu_mj` | +85.05% | 1.48e-302 | +2.504 | large | βœ… | +| `ane_mj` | +81.23% | 1.02e-31 | +0.573 | medium | βœ… | +| `dram_mj` | +87.31% | 0.00e+00 | +24.607 | large | βœ… | +| `time_s` | +81.02% | 0.00e+00 | +97.082 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 90.6% lower energy (Cohen’s d = +12.775, large) +- **`gpu_mj`**: 85.0% lower energy (Cohen’s d = +2.504, large) +- **`ane_mj`**: 81.2% lower energy (Cohen’s d = +0.573, medium) +- **`dram_mj`**: 87.3% lower energy (Cohen’s d = +24.607, large) +- **`time_s`**: 81.0% lower time (Cohen’s d = +97.082, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/with_smell.csv new file mode 100644 index 000000000..630c9e720 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,5283.835514660083,4.506199071865615,114.09028464916054,751.4003504204952,0.6848855419993924 +1,5273.426802443005,4.4973222381334175,113.86553636992608,749.9201548342323,0.6835363749996759 +2,5277.839087250254,4.501085154985781,113.9608078499363,750.5476142509995,0.6841082909995748 +3,5291.932320688689,4.513104248930637,114.26511350255495,752.5517759087228,0.6859350420018018 +4,5334.267930950258,4.54920921229262,115.17923768604574,758.5722116882902,0.6914225420005096 +5,5253.551246024907,4.480371821407624,113.43637693015744,747.0937042348667,0.6809601250024571 +6,5303.014151736405,4.522555136764529,114.50439598119378,754.1276939533801,0.6873714579996886 +7,5300.365365947626,4.520296179984014,114.44720254211376,753.7510170934825,0.687028125001234 +8,5279.4904036420885,4.502493442653253,113.99646360732456,750.7824436116101,0.6843223329997272 +9,5247.4468174506055,4.475165798188416,113.30456813487412,746.2256095038477,0.6801688749983441 +10,5290.911058470883,4.512233288650886,114.24306207858316,752.4065448949636,0.6858026670015533 +11,5255.140194994876,4.48172692043632,113.47068603000994,747.3196644884594,0.6811660829989705 +12,5279.909902280673,4.5028512025363145,114.00552155754905,750.8420994095924,0.6843767079990357 +13,5277.8400593125725,4.501085983987045,113.96082883902017,750.547752485425,0.6841084169973328 +14,5295.468962333779,4.516120393406446,114.34147781232024,753.0547124146111,0.6863934579996567 +15,5321.702899266701,4.538493410494227,114.90792945977236,756.7853715824855,0.6897938750007597 +16,5253.426202615801,4.480265180977107,113.4336769524426,747.0759221405605,0.6809439169992402 +17,5244.3110274855135,4.47249151096069,113.2368591441751,745.7796770610081,0.6797624169994378 +18,5297.604706097584,4.517941813952089,114.38759348213512,753.3584309175961,0.6866702909974265 +19,5221.762252115863,4.453261300186621,112.7499786965768,742.5730750259335,0.6768396670013317 +20,5252.119804774605,4.479151049259125,113.4054687879088,746.8901427397938,0.680774583001039 +21,5253.3349120036255,4.480187325852603,113.43170577603108,747.0629399427254,0.6809320840002329 +22,5313.903441611766,4.531841820234043,114.73952104859232,755.6762312243596,0.6887829170009354 +23,5282.065257403178,4.504689348183661,114.05206068216114,751.148606792314,0.6846560830017552 +24,5287.1943891946175,4.5090636116999905,114.1628105540042,751.8780071331739,0.6853209159999096 +25,5261.15172821498,4.486853719963248,113.6004889987732,748.1745488155013,0.6819452919989999 +26,5258.894790811891,4.4849289421758165,113.55175647671808,747.8535956838505,0.6816527500013763 +27,5259.360254913488,4.485325902659689,113.56180692808012,747.9197881094241,0.6817130829986127 +28,5269.909440352008,4.494322535787292,113.78958835052568,749.4199600230203,0.6830804579985852 +29,5275.819074951675,4.49936243339088,113.91719109133356,750.2603536152749,0.6838464590000513 +0,5280.146632019839,4.743466790750807,114.64491567504768,752.2737473782265,0.6850735419975535 +1,5274.013779635982,4.737957288147416,114.5117564290277,751.3999868245057,0.6842778339996585 +2,5295.193434520416,4.756984219894848,114.97161861041634,754.417497408676,0.6870257920018048 +3,5269.918567599515,4.734278317912334,114.42283934559951,750.8165332351111,0.6837465000025986 +4,5242.171554738373,4.709351541589266,113.82038373756592,746.8633571590865,0.6801464589989337 +5,5263.781853767582,4.728765346342646,114.28959625808425,749.9422225326506,0.6829502910004521 +6,5238.2465455697775,4.705825474617618,113.73516217526526,746.3041527351321,0.6796372080025321 +7,5262.373654944431,4.727500278378077,114.25902081263072,749.7415934441852,0.6827675839995209 +8,5286.2213551067625,4.748924072382171,114.77681279165924,753.139226127088,0.6858617079997202 +9,5318.148685293727,4.7776062740355885,115.47003332739534,757.6879809245172,0.6900041250009963 +10,5299.006038748264,4.76040930688607,115.0543995861478,754.9606872610865,0.6875204589996429 +11,5278.689930447888,4.742158149909533,114.61328711612336,752.0662079997371,0.6848845419990539 +12,5264.9964191743065,4.729856462001642,114.31596744781432,750.1152642554716,0.6831078750001325 +13,5280.20732793269,4.743521317465122,114.64623353197392,752.2823948543278,0.68508141699931 +14,5175.084273188565,4.649083084235549,112.36375454293244,737.3052891336941,0.6714422080003715 +15,5301.849427752589,4.76296369074227,115.11613652554556,755.3657909543374,0.6878893749999406 +16,5233.881581656403,4.70190417037952,113.64038811790502,745.682267020752,0.6790708750013437 +17,5266.631354747574,4.7313252209466645,114.35146590344334,750.3481970121048,0.6833200000000943 +18,5232.454106576423,4.700621785417813,113.60939413770376,745.4788916028814,0.6788856669991219 +19,5268.029287275292,4.732581066093223,114.38181844247846,750.5473634395731,0.6835013749987411 +20,5264.38047332908,4.729303121561433,114.30259375492138,750.0275091377708,0.6830279589994461 +21,5283.768793744757,4.746720792022038,114.72356167760309,752.7898044812416,0.6855434999997669 +22,5270.446525563299,4.734752613654982,114.4343026060838,750.8917525317619,0.6838150000003225 +23,5247.368595842966,4.714020349788703,113.93322422869598,747.6037906848,0.6808207499998389 +24,5253.691243355732,4.719700356537864,114.07050439181651,748.5045917551598,0.6816410829997039 +25,5232.72739613028,4.70086729752445,113.615327923267,745.5178277482438,0.6789211249997607 +26,5287.829962145745,4.750369178853743,114.81173959032428,753.368407801312,0.6860704169994278 +27,5286.654257518006,4.749312974121929,114.78621216328492,753.20090265652,0.6859178749982675 +28,5335.341363340995,4.793051469603971,115.84332847662554,760.1374584188833,0.6922347920008178 +29,5272.745578332742,4.736817988202708,114.48422067261758,751.219303481162,0.6841132910012675 +0,5614.990553964228,5.7756058115323325,109.76989542380524,759.4420867094653,0.6870545829988259 +1,5608.692244635915,5.769127340801201,109.64676703210608,758.5902239800331,0.6862839170025836 +2,5605.540703536952,5.765885650737519,109.58515618280326,758.1639698437982,0.6858982919984555 +3,5572.381923093788,5.731778372516784,108.93692074471204,753.6791584856173,0.6818409580009757 +4,5582.6166900829185,5.742305902195417,109.13700466137878,755.0634373591985,0.6830932919983752 +5,5554.87393461145,5.713769572848289,108.59464945390276,751.3111574748722,0.679698667001503 +6,5565.841836903626,5.7250512089632934,108.80906575185728,752.794594806341,0.6810407080010918 +7,5597.4321653440575,5.75754517004395,109.4266388387544,757.0672689489005,0.684906124999543 +8,5596.907413851765,5.757005408179817,109.4163802433251,756.9962949437831,0.68484191600146 +9,5600.578598587723,5.760781606143541,109.48814983236971,757.492832234412,0.68529112500255 +10,5584.900575623649,5.744655117652708,109.18165333434742,755.3723388229122,0.6833727499979432 +11,5601.160557946362,5.761380212289274,109.4995268092898,757.5715437523492,0.6853623339993646 +12,5512.50265101404,5.670186270359113,107.76631478000442,745.5803310874514,0.6745140839993837 +13,5585.48287011663,5.745254068519207,109.19303686295464,755.4510956686412,0.683444000002055 +14,5770.126400037058,5.935179275733913,112.80271363360175,780.4246136670234,0.7060371250008757 +15,5876.410462417555,6.044503564431901,114.88050705116817,794.799809732352,0.7190421250015788 +16,5596.661223842662,5.756752175973343,109.41156736763207,756.9629971042867,0.6848117920017103 +17,5631.469487176074,5.792556120087882,110.09204926502288,761.6709053165268,0.6890709580002294 +18,5580.316116177959,5.739939521007836,109.09202974031078,754.7522787507876,0.6828117919976648 +19,5610.2365140437805,5.77071578360995,109.67695662722264,758.7990904367581,0.6864728750006179 +20,5580.16526722144,5.739784357058483,109.08908072837164,754.7318760367998,0.6827933340027812 +21,5606.2769117174685,5.7666429179501755,109.59954863711086,758.2635439163619,0.6859883750003064 +22,5583.60488260023,5.743322361687386,109.1563232672146,755.1970929691598,0.6832142079983896 +23,5543.578786923836,5.702151330573483,108.37383569321165,749.7834593519398,0.6783165840024594 +24,5576.76786301207,5.736289771037868,109.02266339406076,754.2723682749679,0.6823776249984803 +25,5608.912225248506,5.769353613898599,109.6510675288936,758.6199769304354,0.6863108340003237 +26,5608.769883893717,5.769207200908579,109.64828483576537,758.6007248917246,0.6862934170021617 +27,5600.426727994736,5.760625391334091,109.4851808480144,757.4722913414329,0.6852725419994385 +28,5600.659980843022,5.7608653163158285,109.48974080951702,757.503839396257,0.685301082998194 +29,5630.7145475367815,5.791779585608233,110.07729062127092,761.568797765411,0.6889785830026085 +0,4252.972804764745,2.2799649235208537,0.0,676.512533262945,0.6711181669998041 +1,4231.55642491922,2.268483873187804,0.0,673.1058692545636,0.6677386670016858 +2,4260.9623596963265,2.284248022857426,0.0,677.783417017563,0.6723789169991505 +3,4212.759655825784,2.258407163042716,0.0,670.1159018928365,0.6647725410002749 +4,4183.686687295611,2.242821512366286,0.0,665.4913184560963,0.6601848330028588 +5,4229.686960939633,2.2674816771957507,0.0,672.8084970702745,0.667443665999599 +6,4212.227075868462,2.258121653664357,0.0,670.0311853821431,0.6646885000009206 +7,4233.26586964049,2.2694002848796035,0.0,673.37778747082,0.6680084170002374 +8,4238.358817194731,2.2721305496412296,0.0,674.1879132369278,0.6688120829967374 +9,4210.717517337505,2.257312398430765,0.0,669.7910626931991,0.6644502919989463 +10,4241.720146400493,2.2739325157099888,0.0,674.7225936688301,0.6693425000012212 +11,4240.97130503714,2.2735310713274113,0.0,674.603476855488,0.6692243329998746 +12,4222.723497433649,2.2637486524931067,0.0,671.700831784609,0.6663448330000392 +13,4208.039275310504,2.255876626757966,0.0,669.3650396778748,0.6640276660000382 +14,4232.689975288803,2.2690915552023228,0.0,673.2861810193716,0.6679175409990421 +15,4230.424186321797,2.2678768943977468,0.0,672.9257661509314,0.6675600000016857 +16,4231.797236399748,2.2686129691764187,0.0,673.1441746922442,0.6677766669999983 +17,4225.665782949664,2.265325974540401,0.0,672.1688557103188,0.6668091250030557 +18,4225.290047291268,2.2651245474067263,0.0,672.1090881327283,0.6667498339993472 +19,4234.45117547234,2.2700357123427732,0.0,673.5663318814726,0.6681954579980811 +20,4236.923986311472,2.271361354954315,0.0,673.959677336959,0.6685856670010253 +21,4241.048142922995,2.273572263146073,0.0,674.6156993161517,0.6692364580012509 +22,4222.912819614926,2.263850145719697,0.0,671.7309469145047,0.6663747079983295 +23,4236.6979593624055,2.271240184766002,0.0,673.9237236474063,0.6685499999985041 +24,4223.058580281753,2.2639282861694134,0.0,671.7541327947096,0.6663977089992841 +25,4213.260030426788,2.2586754075369275,0.0,670.1954955569498,0.6648515000015323 +26,4231.02700717221,2.2682000590303937,0.0,673.0216557508272,0.6676551249984186 +27,4226.209459219005,2.2656174325112723,0.0,672.2553372908815,0.6668949169979896 +28,4224.75931143214,2.264840026626083,0.0,672.0246649593306,0.6666660839982796 +29,4229.1359018683925,2.2671862613981686,0.0,672.7208411210419,0.6673567090001598 +0,4259.4113286319525,2.0403484372643104,0.0,674.6194693636702,0.6706863340004929 +1,4255.864653427672,2.0386495045592454,0.0,674.0577353681217,0.6701278750006168 +2,4261.866709879004,2.041524616999908,0.0,675.0083606601826,0.6710729580008774 +3,4257.713010151633,2.0395349066634965,0.0,674.3504841392796,0.6704189170013706 +4,4245.39002868822,2.0336319369732254,0.0,672.3987301116882,0.6684785420002299 +5,4260.7976564999,2.0410125177394427,0.0,674.8390404965053,0.670904624999821 +6,4239.280268610779,2.0307052322095247,0.0,671.4310463677689,0.6675165000015113 +7,4291.431919981302,2.0556869801941167,0.0,679.6909951399203,0.6757282920007128 +8,4261.171828046347,2.041191753852408,0.0,674.8983030073641,0.6709635420011182 +9,4249.40691897027,2.035556112681392,0.0,673.0349383060819,0.6691110410029069 +10,4295.459136693283,2.0576161024814104,0.0,680.3288388679929,0.6763624170016556 +11,4215.804972269378,2.019460066972131,0.0,667.7129523075558,0.6638200830020651 +12,4240.519740002149,2.0312989653151807,0.0,671.6273578924898,0.6677116669998213 +13,4216.517325217936,2.019801299154991,0.0,667.825777092738,0.6639322500013805 +14,4228.589982542597,2.025584358269386,0.0,669.7378839661516,0.6658332089973555 +15,4281.8506403554675,2.0510973438797855,0.0,678.1734807985475,0.6742196250015695 +16,4259.087430225033,2.040193283052284,0.0,674.5681692767462,0.6706353330009733 +17,4233.878098350213,2.0281174779875064,0.0,670.5754330086887,0.6666658750000352 +18,4217.731126587462,2.020382735775309,0.0,668.01802291561,0.664123375001509 +19,4240.141332468662,2.0311177000745104,0.0,671.5674244721771,0.6676520830005757 +20,4218.852047131793,2.0209196805088574,0.0,668.1955579702154,0.6642998749994149 +21,4223.525720639112,2.023158469322898,0.0,668.9357896356316,0.665035791000264 +22,4246.3931922446445,2.03411247361004,0.0,672.5576144301787,0.6686364999986836 +23,4246.43129720568,2.0341307266951967,0.0,672.5636496182856,0.6686425000007148 +24,4215.132051569963,2.019137723673603,0.0,667.6063729307034,0.6637141249993874 +25,4239.631418381054,2.0308734404030395,0.0,671.4866626145723,0.6675717919970339 +26,4226.751939587484,2.024703896679335,0.0,669.4467687233689,0.6655437910012552 +27,4249.761510891558,2.0357259697383054,0.0,673.091099731998,0.669166874999064 +28,4228.220567774184,2.0254074007540677,0.0,669.6793748493244,0.665775040997687 +29,4236.386146975269,2.0293188865150924,0.0,670.9726659364409,0.6670607919986651 +0,5266.955267504172,5.9290178909972,113.8768911131194,750.0704477186123,0.680035332999978 +1,5288.670973052095,5.95346328689863,114.34640659417592,753.1629951498295,0.6828391250019195 +2,5300.387078033315,5.966652120393199,114.5997206140325,754.8314931078436,0.6843518329988001 +3,5398.076602054193,6.076621335293567,116.7118667639066,768.7435203224738,0.6969648749982298 +4,5305.467876791607,5.972371581677469,114.70957261344768,755.5550528887501,0.6850078330026008 +5,5313.715786732026,5.981656263835639,114.88790075456384,756.7296429863577,0.686072749998857 +6,5327.601493494143,5.997287420669205,115.18812375564652,758.7071153131517,0.68786558300053 +7,5302.962655734788,5.969551451315166,114.6554072045896,755.1982827655415,0.6846843749990512 +8,5282.032111733405,5.945989912712749,114.20286770897448,752.2175506892748,0.6819819579977775 +9,5319.653071828887,5.98833987282325,115.01627085344322,757.5751755311871,0.6868393340009789 +10,5251.001939029612,5.911059209910577,113.53196404286348,747.7985240694135,0.6779755420029687 +11,5312.86479167126,5.980698297670337,114.86950138207048,756.6084522387976,0.6859628749989497 +12,5341.7266638450865,6.013188141953251,115.4935242013144,760.7186898018513,0.6896893339981034 +13,5321.700680193805,5.990644868026885,115.0605422138348,757.8667767400492,0.6871037080018141 +14,5331.095193216626,6.001220282656504,115.26366107135787,759.2046553114891,0.6883166670013452 +15,5357.676119786506,6.031142463724653,115.83836754349365,762.9900619611441,0.6917486249985814 +16,5384.368064937143,6.06118961854293,116.41547434944466,766.7912788374563,0.6951949169997533 +17,5283.988405148097,5.948192114566884,114.24516474793823,752.4961476780284,0.6822345420005149 +18,5247.942934153031,5.907615684435091,113.46582526864717,747.3628892404057,0.6775805830002355 +19,5294.308126968712,5.959809037855002,114.46828755388545,753.9657858224945,0.6835669579995738 +20,5257.917355280346,5.918843902316692,113.68148232494296,748.7833528936396,0.678868415998295 +21,5288.37213531787,5.953126884901131,114.33994542061502,753.1204374781347,0.6828005409988691 +22,5292.610660005789,5.9578981972494915,114.43158660415504,753.7240484732667,0.683347792000859 +23,5294.898049509617,5.960473114370119,114.4810422748853,754.0497970665438,0.6836431249976158 +24,5277.798760829559,5.941224424499352,114.11133838787023,751.6146764960214,0.6814353750014561 +25,5283.734427153581,5.9479062112324295,114.23967348724632,752.4599785103819,0.6822017499980575 +26,5253.130878874409,5.913455760059111,113.5779938719733,748.1017077460255,0.6782504170005268 +27,5253.792443785603,5.914200484476787,113.59229757335862,748.195921625569,0.6783358339998813 +28,5293.505864208975,5.958905929699687,114.45094182294706,753.8515350729017,0.6834633750004286 +29,5284.043589125742,5.9482542352370125,114.24635788125612,752.5040064633639,0.6822416670001985 +0,4282.915524281316,1.9366110579895248,0.0,675.6769201633797,0.6687819170001603 +1,4391.654228983149,1.9857795687301991,0.0,692.8316440142122,0.6857615839981008 +2,4277.040867788044,1.9339547075053136,0.0,674.7501286392677,0.6678645829997549 +3,4262.6173435256915,1.927432805211586,0.0,672.4746594183043,0.6656123339998885 +4,4282.052840567513,1.9362209772582504,0.0,675.540822341344,0.6686472080000385 +5,4293.130259403561,1.941229867041448,0.0,677.288406714668,0.6703769589985313 +6,4240.539629861407,1.917449898900457,0.0,668.9916578301663,0.6621648750005988 +7,4289.356664180724,1.9395235559560455,0.0,676.6930806608025,0.6697877080005128 +8,4310.507384619371,1.9490873026266744,0.0,680.029838895748,0.673090415999468 +9,4270.16291377157,1.9308446947747024,0.0,673.6650559217393,0.6667905829999654 +10,4281.633906566564,1.9360315473677456,0.0,675.4747309057534,0.6685817910001788 +11,4291.628771306302,1.9405509373646648,0.0,677.051530491575,0.6701424999992014 +12,4266.96542723655,1.9293988834467908,0.0,673.1606173349873,0.6662912920000963 +13,4252.817001916956,1.9230013729725064,0.0,670.9285479908904,0.6640819999993255 +14,4277.141731638064,1.934000315233552,0.0,674.766041018382,0.6678803329996299 +15,4295.181682843286,1.9421574616427113,0.0,677.6120412724466,0.6706972909996693 +16,4245.205514749945,1.9195596776759711,0.0,669.7277523698441,0.6628934580003261 +17,4260.255041690277,1.9263646403526629,0.0,672.1019803823532,0.6652434579991677 +18,4243.843590196685,1.9189438546145456,0.0,669.5128938272403,0.6626807920001738 +19,4263.334059639307,1.9277568835977223,0.0,672.5877292497156,0.6657242500004941 +20,4297.038595942507,1.9429971042696297,0.0,677.904989689659,0.6709872499995981 +21,4247.965668442097,1.9208077396869232,0.0,670.1631969018031,0.66332445900116 +22,4266.908322293752,1.9293730622362015,0.0,673.1516084036514,0.6662823750011739 +23,4272.060915289518,1.931702916401279,0.0,673.9644864878669,0.667086958001164 +24,4269.309579982598,1.9304588418101711,0.0,673.5304331529419,0.6666573340007744 +25,4265.273155959582,1.9286336871104373,0.0,672.8936429718415,0.6660270419997687 +26,4272.928933573413,1.9320954092715208,0.0,674.1014258968706,0.6672225000002072 +27,4260.649428975867,1.9265429709253936,0.0,672.164199304246,0.6653050420027284 +28,4260.173921548421,1.926327960160664,0.0,672.0891827898483,0.6652307910007949 +29,4279.707093225965,1.935160297864707,0.0,675.1707549584519,0.6682809170015389 +0,4285.041996566176,2.004182314055413,0.0,674.3071395639437,0.6687799999999697 +1,4271.529902992194,1.997862492922146,0.0,672.180835743656,0.6666711249999935 +2,4294.070878255385,2.008405265665155,0.0,675.7279516330415,0.6701891660013644 +3,4272.262194234415,1.9982049971864153,0.0,672.2960713033694,0.6667854160004936 +4,4275.025597171048,1.9994974847038411,0.0,672.7309287286074,0.6672167090000585 +5,4278.3170473786295,2.0010369483307824,0.0,673.2488812658917,0.6677304160002677 +6,4290.484694448987,2.0067279504450255,0.0,675.1636189272289,0.6696294590001344 +7,4270.762102767754,1.9975033805419675,0.0,672.0600123833451,0.6665512920008041 +8,4258.81604411164,1.9919160188543952,0.0,670.1801445435613,0.6646868330026336 +9,4258.064531083584,1.9915645242550848,0.0,670.0618841856233,0.66456954199748 +10,4261.827183417434,1.993324376613004,0.0,670.6539865114453,0.6651567909975711 +11,4242.171342510103,1.9841310271088624,0.0,667.5608840707768,0.6620890420017531 +12,4266.525038270452,1.995521638067609,0.0,671.393255127847,0.6658900000002177 +13,4259.228517340265,1.9921089391456068,0.0,670.2450525755395,0.6647512089984957 +14,4268.013923464058,1.9962180133598648,0.0,671.6275505949264,0.6661223750015779 +15,4266.989032229945,1.9957386554243095,0.0,671.4662706175089,0.6659624169988092 +16,4258.17211525352,1.9916148430829588,0.0,670.0788139552615,0.6645863329977146 +17,4363.564209013365,2.0409084020548467,0.0,686.6636318713531,0.6810352089996741 +18,4283.831826835946,2.003616298419563,0.0,674.116703603262,0.6685911249987839 +19,4293.8314136164445,2.0082932642437945,0.0,675.6902687548246,0.6701517920009792 +20,4293.910703357725,2.00833034931724,0.0,675.7027460277853,0.6701641670006211 +21,4330.667769008462,2.0255222137033564,0.0,681.4869488004942,0.6759009580018756 +22,4251.740304272998,1.988606582761394,0.0,669.0666847700711,0.6635825000012119 +23,4249.177403465418,1.9874078732795857,0.0,668.6633789649165,0.6631825000004028 +24,4276.954173614982,2.00039951058908,0.0,673.0344153376959,0.6675177079996502 +25,4279.416698419401,2.0015512726172915,0.0,673.4219256720878,0.6679020420015149 +26,4271.245042972108,1.9977292593588123,0.0,672.1360093112725,0.6666266659995017 +27,4263.9447802230125,1.994314810328576,0.0,670.9872179350494,0.6654872910003178 +28,4278.590957389721,2.001165060400702,0.0,673.2919845718162,0.6677731659983692 +29,4268.822576314826,1.9965962331633151,0.0,671.7548026477974,0.6662485839988221 +0,4488.699862655135,3.507648138606753,10.625108924711718,697.5111570382865,0.6837257919978583 +1,4531.796465296956,3.541325533545661,10.727122004526665,704.2080541561381,0.6902903339978366 +2,4499.313376199734,3.515941959126704,10.65023195385953,699.160419483817,0.6853424590008217 +3,4452.139865606084,3.479078706584021,10.538568509264218,691.8300006626594,0.6781569159975334 +4,4368.955656449446,3.4140752656461895,10.34166488234574,678.9037824365558,0.6654861669994716 +5,4423.116844673827,3.4563989666894583,10.469868714632144,687.3200352983833,0.6737360840015754 +6,4372.552212189364,3.41688575697609,10.350178215306212,679.4626609163522,0.6660340000016731 +7,4367.830293810635,3.4131958626372865,10.33900105963916,678.7289093061835,0.6653147500001069 +8,4402.0599576700315,3.4399442798617175,10.420025391425783,684.0479489332786,0.6705286659998819 +9,4377.090584625613,3.420432221234205,10.36092090315604,680.1678908283396,0.6667252919978637 +10,4383.548140369233,3.4254784114623615,10.37620645025492,681.1713478016708,0.6677089170007093 +11,4385.347511305404,3.426884511292612,10.38046570410966,681.4509568960707,0.6679829999993672 +12,4356.017836464776,3.403965139869143,10.311040035331771,676.8933397553377,0.6635154579998925 +13,4369.364600519266,3.4143948307650853,10.342632885424337,678.9673293566066,0.6655484580005577 +14,4364.206105741879,3.4103637783094616,10.330422318762642,678.1657369644116,0.6647627079983067 +15,4402.389306963763,3.440201646465068,10.420804987350497,684.099127406772,0.670578833000036 +16,4315.28000684407,3.372130983741042,10.214610358516552,670.5629787280001,0.6573102080001263 +17,4358.708144935932,3.4060674536325637,10.317408209061746,677.3113940320599,0.6639252499990107 +18,4374.957761226749,3.4187655484216073,10.355872340849915,679.8364656579744,0.6664004169979307 +19,4376.018563111622,3.419594501096269,10.358383343126562,680.0013065189688,0.666562000002159 +20,4380.030910237862,3.4227299083098126,10.367880887307392,680.624795941763,0.6671731669994188 +21,4371.354909617473,3.415950137249634,10.347344105066853,679.2766088460874,0.6658516249990498 +22,4374.062727114664,3.4180661332605795,10.353753724051463,679.6973838975066,0.6662640840004315 +23,4376.213328707104,3.419746698658895,10.35884436875316,680.0315716692378,0.666591667002649 +24,4380.196677962882,3.422859445786119,10.368273272672516,680.6505550348669,0.6671984169988718 +25,4390.295924209438,3.4307513974384873,10.392178990299106,682.2199041003407,0.668736750001699 +26,4373.291871070654,3.4174637557680674,10.351929046598418,679.5775985013744,0.6661466660007136 +27,4371.062488796607,3.4157216280199267,10.346651921769098,679.2311687874188,0.6658070830017095 +28,4405.482821650499,3.4426190415604627,10.428127582202569,684.5798369829262,0.6710500420012977 +29,4416.615243973297,3.451318357984717,10.454478909623608,686.3097340606114,0.6727457500019227 +0,4278.695705987136,2.1376611047780787,0.0,671.7934031312734,0.6685827920009615 +1,4250.274055021331,2.1234614836836965,0.0,667.3309503332841,0.6641416659986135 +2,4260.342841584274,2.12849190764626,0.0,668.9118396638942,0.6657149999991816 +3,4251.776910387624,2.1242123189109217,0.0,667.5669120352401,0.6643765000007988 +4,4275.128170035678,2.135878743197035,0.0,671.2332681550307,0.668025334001868 +5,4243.2893748689,2.1199718971093873,0.0,666.2342932275172,0.6630502499974682 +6,4283.190122415045,2.1399065412023552,0.0,672.4990666125465,0.6692850830004318 +7,4269.221293307509,2.132927633442991,0.0,670.3058358037324,0.6671023340022657 +8,4271.223046147245,2.133927720731483,0.0,670.6201288605049,0.6674151250008435 +9,4249.9460793905155,2.1232976251629028,0.0,667.2794552328354,0.6640904170017166 +10,4257.9648405334965,2.1273038445768866,0.0,668.5384722808582,0.6653434170002583 +11,4258.553870687198,2.1275981274461606,0.0,668.6309552706973,0.665435457998683 +12,4238.241919909436,2.117450159438286,0.0,665.4417977622226,0.6622615419983049 +13,4266.625166584456,2.131630593527023,0.0,669.8982207438909,0.6666966670018155 +14,4263.39414339362,2.130016355666167,0.0,669.3909212736503,0.6661917919991538 +15,4264.654605616279,2.130646089877845,0.0,669.5888250892672,0.6663887499998964 +16,4257.69578645734,2.1271694236053564,0.0,668.4962283902271,0.6653013750001264 +17,4257.188876602361,2.126916168511964,0.0,668.4166390200177,0.6652221660006035 +18,4249.682356215709,2.1231658675404983,0.0,667.2380483412819,0.664049208000506 +19,4269.58739806163,2.133110541494167,0.0,670.3633175167529,0.6671595410007285 +20,4266.91021336466,2.1317730045459307,0.0,669.9429756317547,0.6667412079987116 +21,4261.112661870045,2.1288765143104493,0.0,669.0327083175948,0.6658352910017129 +22,4307.225613412632,2.1519148114254256,0.0,676.2728531593685,0.673040834000858 +23,4275.343889418525,2.1359865178475235,0.0,671.2671380229256,0.6680590420000954 +24,4308.740992868741,2.15267190376031,0.0,676.5107812551737,0.673277624999173 +25,4250.756966193217,2.1237027488963074,0.0,667.4067716961162,0.6642171249986859 +26,4306.24619180269,2.1514254867282236,0.0,676.1190752275744,0.6728877909990842 +27,4252.905379829993,2.1247761087666728,0.0,667.7440918066264,0.6645528330009256 +28,4260.145783580678,2.1283934563287046,0.0,668.8808997990506,0.6656842080010392 +29,4394.9357444520365,2.1957352998409876,0.0,690.0441263390903,0.6867462920017715 +0,4316.393086060183,3.2515833444479307,0.0,680.1172626340625,0.6726861249990179 +1,4285.335147046536,3.2281870792801928,0.0,675.2235840362457,0.6678459160029888 +2,4299.645623114238,3.2389673082132657,0.0,677.4784300653499,0.6700761249994684 +3,4326.217250482994,3.2589839886370555,0.0,681.6652179944043,0.6742171669975505 +4,4299.546697575891,3.238892786586894,0.0,677.4628427532112,0.6700607079983456 +5,4282.92623302652,3.226372419551683,0.0,674.8440208276711,0.6674705000004906 +6,4351.687882995867,3.278171278302327,0.0,685.6785264482053,0.6781866250021267 +7,4319.637236470388,3.254027196347048,0.0,680.6284307905697,0.6731917079996492 +8,4279.214199576053,3.223576106541973,0.0,674.2591301611349,0.6668920000010985 +9,4289.831616235325,3.23157431580652,0.0,675.9320751896751,0.6685466659982922 +10,4290.710434558418,3.232236338695814,0.0,676.0705471731893,0.6686836250009947 +11,4302.9370963466,3.241446808881452,0.0,677.9970546948018,0.670589083001687 +12,4282.885057356618,3.2263414014956853,0.0,674.8375329375872,0.6674640829987766 +13,4281.129570333393,3.2250189750502005,0.0,674.5609276782836,0.667190500000288 +14,4299.483602642859,3.2388452565243457,0.0,677.4529011301283,0.6700508750000154 +15,4282.312108045256,3.225909792881527,0.0,674.7472555440546,0.6673747919994639 +16,4287.253995610242,3.2296325676557567,0.0,675.5259295378108,0.668144957999175 +17,4306.362254109225,3.244027015482428,0.0,678.5367434754947,0.6711228750027658 +18,4276.262006858735,3.2213521893783037,0.0,673.793964642231,0.6664319170013187 +19,4284.425592962177,3.2275019028255434,0.0,675.0802691384274,0.6677041670009203 +20,4282.108109816308,3.2257561189157133,0.0,674.7151123369166,0.667342999997345 +21,4292.113807780657,3.233293514190376,0.0,676.2916712310158,0.6689023330000055 +22,4287.753692421331,3.2300089944074015,0.0,675.6046648199152,0.6682228329991631 +23,4283.169526828147,3.226555695276902,0.0,674.8823556852893,0.6675084160015103 +24,4277.267547609822,3.2221096735770804,0.0,673.9524037856226,0.6665886249975301 +25,4286.746277992522,3.22925009874791,0.0,675.4459304484159,0.6680658330005826 +26,4277.992096765777,3.222655483914731,0.0,674.0665681767628,0.6667015419989184 +27,4301.020127833431,3.2400027367673108,0.0,677.6950054254842,0.670290334001038 +28,4274.524698186038,3.2200434568713994,0.0,673.5202236748847,0.6661611669987906 +29,4258.107423358448,3.2076761547452293,0.0,670.9334175631542,0.6636026250016585 +0,4226.901608536453,1.6311343604268944,0.0,670.0300491157659,0.6666679580011987 +1,4232.037816623077,1.633116390355264,0.0,670.8442184708318,0.6674780419998569 +2,4249.733699580614,1.6399451186776453,0.0,673.649292831503,0.6702690409983916 +3,4223.013394937708,1.629633923608402,0.0,669.4137064161208,0.6660547079991375 +4,4243.973240627595,1.637722194323049,0.0,672.7361699455987,0.6693605000000389 +5,4263.082233246409,1.6450962326471832,0.0,675.7652443004592,0.6723743750007998 +6,4242.434915607151,1.637128564513147,0.0,672.4923213575638,0.6691178750006657 +7,4242.391065805677,1.6371116431545476,0.0,672.4853704778517,0.6691109589992266 +8,4243.130507998953,1.637396989178824,0.0,672.6025836365585,0.669227584003238 +9,4241.816732442641,1.6368900115743628,0.0,672.394329652424,0.6690203750004002 +10,4239.4097808069055,1.635961184296007,0.0,672.0127901532659,0.6686407499983034 +11,4231.317395479699,1.6328383844327778,0.0,670.7300204461827,0.6673644170004991 +12,4237.355510600818,1.635168454531022,0.0,671.6871561796002,0.6683167499977571 +13,4214.804239552742,1.6264660629249503,0.0,668.1124268276204,0.6647599579991947 +14,4249.374677831752,1.6398065744755457,0.0,673.5923822661997,0.6702124160001404 +15,4245.002753353227,1.6381194767149276,0.0,672.8993638228177,0.6695228749995294 +16,4265.879642022094,1.646175734844482,0.0,676.208677366321,0.6728155829987372 +17,4229.046761156808,1.631962161135658,0.0,670.3700893742556,0.6670062919984048 +18,4233.658826024148,1.633741927540072,0.0,671.1011738270728,0.6677337080000143 +19,4242.011171658709,1.636965044427198,0.0,672.4251513108294,0.6690510420012288 +20,4218.895077737948,1.628044691278485,0.0,668.7608886949662,0.6654051660007099 +21,4223.403332192564,1.629784397907005,0.0,669.4755175729019,0.6661162089985737 +22,4208.176472784298,1.6239084500183545,0.0,667.0618220810089,0.6637146249995567 +23,4214.574135928659,1.6263772674046235,0.0,668.0759518024544,0.6647236659991904 +24,4238.257157704301,1.6355163943951765,0.0,671.8300813548186,0.6684589579999738 +25,4223.607275578893,1.6298630983585012,0.0,669.5078457910187,0.6661483749994659 +26,4221.894064963687,1.629201981313461,0.0,669.2362750995376,0.6658781670012104 +27,4207.778090204968,1.6237547167229238,0.0,666.9986722081431,0.663651792001474 +28,4219.34233800432,1.6282172861614743,0.0,668.8317864460847,0.6654757079995761 +29,4205.696081007182,1.6229512826580346,0.0,666.6686411702228,0.6633234170003561 +0,4266.778618627749,1.7673343502580647,0.0,674.2880735201571,0.6697226249998494 +1,4271.768408471487,1.7694011617286454,0.0,675.0766205908479,0.6705058330007887 +2,4248.190796504639,1.759635123400773,0.0,671.3506005714534,0.6668050410007709 +3,4283.150135355771,1.7741155654242184,0.0,676.8752990272287,0.6722923330016783 +4,4248.4854535771365,1.7597571727528287,0.0,671.3971658534897,0.6668512910000572 +5,4241.797005501357,1.7569867632493603,0.0,670.3401762201004,0.6658014579988958 +6,4289.419431335877,1.7767123587261262,0.0,677.8660491660565,0.6732763750005688 +7,4256.2006907887835,1.762952886653945,0.0,672.6164211514985,0.6680622910025704 +8,4279.496126382275,1.7726020452366895,0.0,676.2978482402094,0.6717187920003198 +9,4261.859966972859,1.7652970048029506,0.0,673.5107685683106,0.6689505829999689 +10,4245.524286934294,1.7585306334845656,0.0,670.9292064092717,0.6663865000009537 +11,4311.621182697015,1.7859085044190677,0.0,681.3746390161881,0.6767612090006878 +12,4249.790443577442,1.7602977102075297,0.0,671.6033961906878,0.6670561249993625 +13,4250.968804307157,1.7607857967901164,0.0,671.7896150357159,0.6672410829996807 +14,4259.847806353814,1.764463551535713,0.0,673.1927825585594,0.6686347499999101 +15,4267.3562548007585,1.7675736118513554,0.0,674.3793585895521,0.6698132919991622 +16,4250.414530451904,1.7605562120585434,0.0,671.7020219629397,0.6671540829993319 +17,4239.444259527668,1.7560122367626618,0.0,669.9683667844865,0.6654321659989364 +18,4280.536982573399,1.7730331763228488,0.0,676.4623369514024,0.6718821669965109 +19,4259.435815226876,1.7642929014655495,0.0,673.1276747270732,0.6685700829984853 +20,4249.548875732651,1.7601976508446762,0.0,671.5652207118904,0.6670182079978986 +21,4304.12069157217,1.7828017400908522,0.0,680.1893204976816,0.6755839159995958 +22,4265.18614524809,1.766674734853259,0.0,674.0364115748632,0.6694726669993543 +23,4248.745605526783,1.7598649298028175,0.0,671.4382782177881,0.6668921250020503 +24,4281.293534540724,1.7733465462909488,0.0,676.5818964631939,0.6720009169985133 +25,4247.644486345279,1.7594088372967045,0.0,671.2642660184275,0.6667192909990263 +26,4273.732258075726,1.770214604181263,0.0,675.3869719084777,0.67081408300146 +27,4250.709990274736,1.7606785939163063,0.0,671.7487141053139,0.6672004590000142 +28,4306.266120011235,1.7836903939712825,0.0,680.5283671036473,0.6759206669994455 +29,4265.665292704342,1.7668732016203366,0.0,674.1121322634873,0.6695478750007169 +0,4233.805184421818,2.86436991299503,0.0,671.3616783283818,0.6663879580009962 +1,4257.354728161686,2.8803022957134035,0.0,675.0959694731986,0.6700945839984342 +2,4243.014385367543,2.870600374001768,0.0,672.8219969622515,0.6678374580005766 +3,4232.574753845726,2.863537468381105,0.0,671.1665668623015,0.6661942920000001 +4,4248.243737522132,2.874138278634502,0.0,673.6512242143681,0.6686605419999978 +5,4242.324251207474,2.870133465526313,0.0,672.7125612164406,0.6677288329992734 +6,4244.853156877982,2.8718443900964976,0.0,673.1135740834314,0.6681268749998708 +7,4255.9000683364875,2.879318149382752,0.0,674.8653015942806,0.6698656250009662 +8,4248.740354575562,2.874474263613537,0.0,673.729973623931,0.6687387080019107 +9,4264.635683186433,2.8852282069450994,0.0,676.2505228766554,0.6712405840007705 +10,4212.616188554973,2.850034552815756,0.0,668.0017032686884,0.6630528750029043 +11,4225.905576949511,2.8590254540550197,0.0,670.1090241556632,0.6651445839997905 +12,4219.19773983554,2.8544872842589166,0.0,669.0453510326394,0.6640887909998128 +13,4215.177388341715,2.8517673258864935,0.0,668.4078370685355,0.6634559999984049 +14,4234.491614566577,2.8648343155285376,0.0,671.4705267221946,0.6664960000016436 +15,4226.840042409003,2.859657664237187,0.0,670.2572039305695,0.6652916659986658 +16,4233.163234172368,2.863935603219293,0.0,671.259883187108,0.6662869169995247 +17,4212.169331052854,2.849732232532061,0.0,667.9308443156832,0.6629825410018384 +18,4244.189490846634,2.871395388564858,0.0,673.0083354337424,0.6680224160008947 +19,4231.763899421056,2.86298888692384,0.0,671.0379882991144,0.6660666659990966 +20,4234.03814321037,2.8645275206590193,0.0,671.3986189991145,0.6664246250002179 +21,4221.765032546491,2.856224179481719,0.0,669.4524509978257,0.6644928750029067 +22,4274.4561221929125,2.8918721994759946,0.0,677.8077665678793,0.6727862909974647 +23,4277.034533282866,2.8936166168092643,0.0,678.2166295933063,0.673192124999332 +24,4288.302490974389,2.9012399243509663,0.0,680.003408780726,0.674965666999924 +25,4213.139013202845,2.850388268474816,0.0,668.08460846101,0.6631351659998472 +26,4248.608261776977,2.8743848965733663,0.0,673.7090274445272,0.6687179170003219 +27,4198.911982642684,2.840763007861094,0.0,665.8286040634426,0.6608958750002785 +28,4208.157448587308,2.847018003858747,0.0,667.2946732997763,0.6623510829995212 +29,4224.626161930082,2.858159869143043,0.0,669.9061451432129,0.6649432079975668 +0,4328.92657369754,2.9991177592472913,0.0,675.7678782197313,0.668388916998083 +1,4316.116281301853,2.990242677914544,0.0,673.7681251714337,0.6664109999983339 +2,4359.27430294376,3.020142928463184,0.0,680.5053160700545,0.6730746249995718 +3,4319.636610601332,2.992681592490877,0.0,674.3176668235833,0.6669545410004503 +4,4332.218872799026,3.001398692530848,0.0,676.281823175923,0.6688972499978263 +5,4326.159693513013,2.997200840732308,0.0,675.3359538801163,0.6679617090012471 +6,4336.261389141232,3.004199382805343,0.0,676.9128809323283,0.669521416999487 +7,4310.835104115123,2.9865838326971894,0.0,672.9437060362923,0.6655955830028688 +8,4328.516925079572,2.9988339511428372,0.0,675.7039299469511,0.6683256670003175 +9,4403.067309093179,3.0504831017688643,0.0,687.3416313418977,0.6798362919980718 +10,4319.582640598924,2.99264420160657,0.0,674.3092418264404,0.6669462079989898 +11,4308.543176671354,2.9849959655475637,0.0,672.585924281545,0.6652417080003943 +12,4328.024964596243,2.9984931166663733,0.0,675.6271323653043,0.6682497080000758 +13,4323.899339782867,2.9956348481244746,0.0,674.9831009457358,0.6676127089995134 +14,4326.876976926815,2.9976977808832026,0.0,675.4479255392274,0.668072458000097 +15,4337.172978799834,3.0048309400026563,0.0,677.0551848034875,0.6696621670016611 +16,4304.644772443967,2.982295117392245,0.0,671.9773631733037,0.6646397919976152 +17,4308.144862173765,2.984720009819707,0.0,672.5237453237094,0.6651802079977642 +18,4303.372109120493,2.981413405237975,0.0,671.7786938313433,0.6644432920002146 +19,4298.569395027386,2.9780860433887946,0.0,671.0289652653485,0.6637017499997455 +20,4371.17354327019,3.028386825045164,0.0,682.3628491676765,0.6749118750012713 +21,4330.791313718083,3.0004096672565352,0.0,676.0589738032809,0.6686768340005074 +22,4338.278861697043,3.0055971052355845,0.0,677.2278188563603,0.6698329159989953 +23,4319.873015115255,2.9928453755821356,0.0,674.3545707936681,0.666991042002337 +24,4341.87205987036,3.0080865039977556,0.0,677.7887357174498,0.6703877079999074 +25,4316.362666349519,2.990413375605874,0.0,673.8065871545725,0.6664490420007496 +26,4337.640917361519,3.0051551318841065,0.0,677.1282324386422,0.6697344170024735 +27,4344.566356186339,3.0099531357810307,0.0,678.209329338928,0.6708037090029393 +28,4330.3287702057105,3.000089213111896,0.0,675.9867683632905,0.6686054169986164 +29,4355.268217798705,3.0173674780370687,0.0,679.8799454123747,0.6724560829970869 +0,4277.054545303584,1.822999248224933,0.0,670.4328326153767,0.6582882920010888 +1,4324.794879234502,1.843347502366708,0.0,677.9161805522074,0.6656360829983896 +2,4296.3093777503855,1.8312061917425837,0.0,673.4510480068589,0.6612518339970848 +3,4304.37326009285,1.8346432420051824,0.0,674.7150701097968,0.6624929589997919 +4,4281.318895847793,1.824816832675615,0.0,671.1012740823575,0.6589446250000037 +5,4313.502682660626,1.8385344550588152,0.0,676.1461167722665,0.663898082999367 +6,4294.138215844873,1.8302807823330003,0.0,673.1107160772655,0.66091766700265 +7,4303.817200621714,1.8344062340392768,0.0,674.6279071984083,0.6624073749990202 +8,4302.398366656738,1.8338014876597044,0.0,674.4055034707789,0.6621889999987616 +9,4282.321094533926,1.825243997546214,0.0,671.2583697884959,0.6590988749994722 +10,4295.153136097297,1.830713369487917,0.0,673.2698059024018,0.6610738749986922 +11,4294.81365551898,1.8305686734517777,0.0,673.2165919619837,0.6610216250010126 +12,4367.050740155173,1.8613581220292663,0.0,684.5398315324722,0.6721397500004969 +13,4279.540550315422,1.8240588524969057,0.0,670.8225165355439,0.6586709170005633 +14,4310.471728446396,1.8372425783255588,0.0,675.6710114871105,0.6634315839983174 +15,4304.474772925574,1.8346865095894,0.0,674.7309823539053,0.6625085830019088 +16,4285.256487403614,1.8264951433845489,0.0,671.7184957316231,0.6595506660014507 +17,4307.830868306888,1.836116970504102,0.0,675.2570538615722,0.6630251249989669 +18,4304.719237909603,1.8347907073445096,0.0,674.7693024992254,0.66254620899781 +19,4289.948849882236,1.828495158390277,0.0,672.4540285229115,0.6602728750003735 +20,4307.998984298255,1.8361886262014124,0.0,675.2834062213813,0.6630509999995411 +21,4289.335939610233,1.828233919036592,0.0,672.3579541882391,0.6601785410020966 +22,4301.040983569966,1.8332229333484305,0.0,674.1927322334309,0.6619800830012537 +23,4310.601666691373,1.8372979616087035,0.0,675.6913794447136,0.6634515830010059 +24,4298.94752206796,1.832330642005423,0.0,673.8645799244308,0.6616578749999462 +25,4293.082142066511,1.8298306544041576,0.0,672.9451753933254,0.6607551250017423 +26,4296.307207702341,1.831205266807932,0.0,673.450707849528,0.6612515000015264 +27,4305.646445514042,1.8351859089366185,0.0,674.914643273836,0.6626889170001959 +28,4315.323806016727,1.8393106683322096,0.0,676.4315797882837,0.6641783750019385 +29,4301.426756954416,1.8333873606622253,0.0,674.2532026202697,0.6620394579986169 +0,4266.463999842915,1.643902587793623,0.0,675.5768655183712,0.6709535000009055 +1,4278.852279070267,1.64867589052884,0.0,677.5384981138623,0.6729017080033373 +2,4316.2545227606615,1.6630872731619033,0.0,683.460988156352,0.678783667000971 +3,4228.568954921977,1.6293013249182349,0.0,669.5763424464999,0.6649940419993072 +4,4258.75765318643,1.6409332709983806,0.0,674.3565975121304,0.6697415829985403 +5,4231.822273354481,1.6305548544429904,0.0,670.0914919167041,0.6655056660019909 +6,4234.836354345854,1.631716203874679,0.0,670.5687591311105,0.665979666999192 +7,4215.235591622386,1.6241638737565711,0.0,667.4650597109403,0.6628972079997766 +8,4232.883933448248,1.6309639205397783,0.0,670.2596013859086,0.6656726250002976 +9,4226.3097215733815,1.6284308243003176,0.0,669.2186022231733,0.6646387500004494 +10,4250.532803058209,1.6377641706824058,0.0,673.0542266332981,0.668448125001305 +11,4234.059250870064,1.6314167797110437,0.0,670.4457080212508,0.6658574579996639 +12,4261.309658749226,1.641916579084163,0.0,674.760697000363,0.6701429169988842 +13,4225.297609290875,1.628040849370162,0.0,669.0583384442234,0.6644795829997747 +14,4228.711233230967,1.6293561458848116,0.0,669.5988716261725,0.6650164169986965 +15,4233.674549399863,1.6312685511680596,0.0,670.3847921402289,0.6657969590014545 +16,4217.991873874567,1.625225891279095,0.0,667.9015055650435,0.6633306670009915 +17,4227.847230305918,1.629023238670687,0.0,669.462060349217,0.6648805420009012 +18,4265.757644443205,1.643630423427645,0.0,675.4650170727039,0.6708424169992213 +19,4232.424776690023,1.6307870037808234,0.0,670.1868958190702,0.6656004169999505 +20,4213.987682060965,1.6236830442552728,0.0,667.2674584116005,0.6627009590010857 +21,4215.308450834855,1.6241919469919075,0.0,667.4765966648173,0.6629086659995664 +22,4231.468303978479,1.6304184672208717,0.0,670.0354423352385,0.6654500000004191 +23,4247.610403311733,1.6366381467651816,0.0,672.5914767634788,0.6679885419980565 +24,4221.743303094217,1.6266713468606568,0.0,668.4955288108786,0.6639206250001735 +25,4223.627894609225,1.6273974949937646,0.0,668.7939460548865,0.6642170000013721 +26,4237.118371311559,1.6325954832018807,0.0,670.9301070456382,0.6663385419997212 +27,4228.263999257775,1.629183823069969,0.0,669.5280539828562,0.6649460840017127 +28,4247.815207785215,1.636717059561343,0.0,672.6239067017706,0.668020749999414 +29,4236.464469716464,1.6323435297049385,0.0,670.8265644422111,0.6662357079985668 +0,4261.355854015024,1.8009956649981318,0.0,670.7041263539339,0.6680410000008123 +1,4260.644340579512,1.8006949549291198,0.0,670.5921396967518,0.667929458002618 +2,4259.939212365175,1.800396943474364,0.0,670.4811580235084,0.6678189169979305 +3,4224.179987648496,1.7852838642327524,0.0,664.8529353651973,0.6622130420000758 +4,4256.301386022275,1.798859472843413,0.0,669.908592571871,0.667248624999047 +5,4269.997117263699,1.8046477602898936,0.0,672.0641936931438,0.6693956669987529 +6,4255.544690958416,1.7985396674630545,0.0,669.7894946792968,0.6671300000016345 +7,4266.267594465401,1.8030715355805875,0.0,671.4771959356596,0.6688109999995504 +8,4244.489817562842,1.7938674974437936,0.0,668.0495439554571,0.6653969580002013 +9,4296.453269566179,1.8158290409061095,0.0,676.2281854189235,0.6735431250017427 +10,4256.248230798192,1.7988370076160471,0.0,669.9002263547909,0.6672402920012246 +11,4254.255894895673,1.7979949778849993,0.0,669.5866482456914,0.6669279589987127 +12,4258.273787900644,1.799693077769701,0.0,670.2190332212722,0.6675578329995915 +13,4265.720873092031,1.8028404723093816,0.0,671.3911462618827,0.6687252919982711 +14,4308.839199102784,1.8210637610671545,0.0,678.1776339826014,0.675484833001974 +15,4255.70522831821,1.7986075160771962,0.0,669.8147620057855,0.6671551670006011 +16,4247.833685821223,1.7952807312698291,0.0,668.5758427006715,0.6659211670012155 +17,4255.076640352618,1.7983418531661683,0.0,669.7158271698453,0.6670566249995318 +18,4246.680702582812,1.79479344086618,0.0,668.3943721447941,0.6657404170000518 +19,4256.082647728024,1.798767026511022,0.0,669.874164872901,0.6672143340001639 +20,4262.007565424497,1.8012711006724806,0.0,670.8067006393256,0.6681431670003803 +21,4261.968494765938,1.8012545880673134,0.0,670.8005512228458,0.6681370420010353 +22,4280.57356799962,1.8091177324252912,0.0,673.7288444272706,0.6710537079998176 +23,4241.407221998011,1.792564686451378,0.0,667.5643674914298,0.6649137079984939 +24,4250.617271186238,1.7964571702595042,0.0,669.0139572947895,0.6663575419988774 +25,4251.02391865121,1.7966290334755053,0.0,669.077960429489,0.666421291000006 +26,4258.146210229622,1.7996391590545475,0.0,670.198953492351,0.6675378330000967 +27,4250.783122172491,1.796527264595089,0.0,669.0400609445785,0.6663835420004034 +28,4263.6413570172435,1.8019615972366845,0.0,671.0638466746244,0.6683992920006858 +29,4249.941109515898,1.796171401063305,0.0,668.907534729316,0.6662515419993724 +0,4239.380142287559,1.802244693351032,0.0,670.8688996490573,0.6679977500025416 +1,4235.522058536825,1.8006045453263466,0.0,670.2583697334239,0.6673898330009251 +2,4242.369822865929,1.8035156659405,0.0,671.342007427222,0.6684688329987694 +3,4252.917010990448,1.8079994850813177,0.0,673.0110675855475,0.6701307500006806 +4,4249.6777011277945,1.8066223901254177,0.0,672.498456739093,0.6696203329993295 +5,4233.411354171411,1.7997072429816348,0.0,669.92435724396,0.6670572500006529 +6,4247.250470134551,1.805590526024938,0.0,672.1143548819866,0.6692378750012722 +7,4267.357981330829,1.814138628373324,0.0,675.2963068320776,0.672406208999746 +8,4245.410541203869,1.8048083356951805,0.0,671.8231917742374,0.6689479579981708 +9,4222.080912556699,1.7948904472265792,0.0,668.1313496241013,0.6652719160010747 +10,4216.258624720401,1.7924152770356678,0.0,667.209990438777,0.664354500000627 +11,4218.894760122639,1.7935359505492905,0.0,667.6271507776164,0.6647698749984556 +12,4301.269696958708,1.828555172179607,0.0,680.6627317774496,0.677749667000171 +13,4197.696728161151,1.784524246165672,0.0,664.2726272625218,0.6614297079977405 +14,4232.414969540263,1.799283660086553,0.0,669.7666824333296,0.6669002499984344 +15,4229.112722468144,1.7978798092729646,0.0,669.24411196659,0.6663799160014605 +16,4236.082134553483,1.8008426447642405,0.0,670.3470000445554,0.6674780839966843 +17,4220.469726893075,1.7942055002025308,0.0,667.8763844365013,0.6650180420001561 +18,4227.7789251919385,1.797312785561392,0.0,669.0330426401766,0.6661697499985166 +19,4233.911659829878,1.7999199328532107,0.0,670.0035290793035,0.6671360830005142 +20,4234.663181338241,1.8002394195717704,0.0,670.122455052077,0.6672545000001264 +21,4226.133088222351,1.7966131075789973,0.0,668.7725939897301,0.665910416002589 +22,4223.751874950823,1.7956008065259397,0.0,668.3957742958872,0.6655352090019733 +23,4240.11870444225,1.802558670790971,0.0,670.9857748438761,0.6681141250010114 +24,4213.672467173958,1.791315850101113,0.0,666.800738942268,0.6639469999972789 +25,4245.349196909234,1.8047822570172225,0.0,671.8134842278367,0.6689382919976197 +26,4214.951000004807,1.791859379799403,0.0,667.0030628397741,0.6641484579995449 +27,4217.138660814045,1.7927893978567535,0.0,667.3492534503445,0.6644931670016376 +28,4214.221697226014,1.7915493387040518,0.0,666.8876529127805,0.6640335419979237 +29,4243.732185272688,1.80409483325638,0.0,671.557597097898,0.6686835000000428 +0,4326.936119031317,2.4157457279683534,0.0,678.388373247113,0.6718770830011636 +1,4310.935498579587,2.4068125176232553,0.0,675.8797540808972,0.6693925420004234 +2,4320.569574317311,2.412191260610462,0.0,677.3902096983741,0.6708885000007285 +3,4361.984865902042,2.435313583419511,0.0,683.8834075438763,0.6773193749977509 +4,4305.123604986809,2.403567714203023,0.0,674.9685501870962,0.6684900840009504 +5,4301.487914431305,2.401537893635753,0.0,674.3985371030735,0.6679255420021946 +6,4294.1019515470525,2.397414281039281,0.0,673.2405465046281,0.6667786660000274 +7,4291.401951790927,2.395906860384817,0.0,672.8172334738974,0.6663594160017965 +8,4286.074139000355,2.3929323212110973,0.0,671.9819250356553,0.665532125000027 +9,4277.667431334543,2.3882388227236477,0.0,670.6638993979088,0.6642267500028538 +10,4296.8886282246585,2.398970093765415,0.0,673.6774489700406,0.6672113749991695 +11,4291.46125838967,2.395939971495915,0.0,672.826531717721,0.6663686249994498 +12,4296.869842557568,2.3989596056524007,0.0,673.6745037039707,0.6672084580022783 +13,4291.991759248181,2.3962361522453826,0.0,672.9097050312415,0.6664510000009614 +14,4271.607865480523,2.3848557428901356,0.0,669.7138647985507,0.6632858340017265 +15,4308.698378913561,2.405563524773006,0.0,675.5290126025751,0.6690451670001494 +16,4329.397031158417,2.417119665044013,0.0,678.7742014934014,0.6722592080004688 +17,4305.170018576755,2.4035936270957827,0.0,674.9758270312449,0.6684972910006763 +18,4287.6200265111565,2.3937953963865577,0.0,672.2242933269418,0.6657721669980674 +19,4296.602315547752,2.398810244253642,0.0,673.6325601189499,0.6671669169991219 +20,4284.045246141474,2.391799582219461,0.0,671.6638299013234,0.6652170829984243 +21,4282.194266706178,2.3907661730032475,0.0,671.3736284993425,0.6649296670002514 +22,4288.081831147129,2.3940532237604355,0.0,672.2966962668368,0.6658438750018831 +23,4284.356250076485,2.391973216959313,0.0,671.7125899125048,0.665265375002491 +24,4304.415731700102,2.4031725057180204,0.0,674.857567959898,0.6683801670005778 +25,4286.388362948528,2.3931077536971666,0.0,672.0311898889307,0.665580917000625 +26,4289.834335458496,2.395031653921401,0.0,672.5714584810667,0.6661160000003292 +27,4280.883177729757,2.3900341867879105,0.0,671.1680725370106,0.6647260839999944 +28,4326.378788845454,2.4154345682982017,0.0,678.3009935614075,0.6717905420009629 +29,4282.831833716909,2.391122129213392,0.0,671.4735879245219,0.6650286669973866 +0,4236.15690474228,2.5004074155989975,0.0,672.0428357819279,0.6675844580022385 +1,4235.03031838744,2.499742443800431,0.0,671.8641090950546,0.6674069170003349 +2,4244.6945142570985,2.505446771463848,0.0,673.3972802555766,0.6689299169993319 +3,4239.792882340166,2.5025535649398134,0.0,672.6196634940901,0.6681574590002128 +4,4246.204736814672,2.5063381859621954,0.0,673.6368687016792,0.6691679159994237 +5,4237.98203541061,2.5014847057844527,0.0,672.33238265604,0.6678720840027381 +6,4259.365309313225,2.514106262973713,0.0,675.7247206536548,0.6712419169998611 +7,4247.825225132732,2.507294685237006,0.0,673.8939502001009,0.6694232920017384 +8,4225.122607615274,2.493894380557401,0.0,670.2923056436812,0.6658455409997259 +9,4239.2191349487475,2.502214908401719,0.0,672.5286416474914,0.6680670409987215 +10,4234.614688162078,2.4994971165094433,0.0,671.798171661298,0.6673414169999887 +11,4238.083563392255,2.5015446330543596,0.0,672.3484895081305,0.6678880840008787 +12,4247.970378433059,2.507380362514004,0.0,673.9169779674306,0.669446167001297 +13,4234.541188235618,2.4994537329036652,0.0,671.7865113049612,0.6673298339992471 +14,4229.6128481134565,2.496544761761862,0.0,671.0046574346082,0.6665531670005294 +15,4226.623058102942,2.4947800270550324,0.0,670.5303438050046,0.6660819999997329 +16,4238.548631410165,2.501819141186822,0.0,672.4222699739195,0.6679613750020508 +17,4226.4670603517325,2.4946879488004465,0.0,670.5055956255919,0.6660574160014221 +18,4226.437718748739,2.4946706298098236,0.0,670.5009407427523,0.666052791999391 +19,4194.84347630421,2.4760220103476653,0.0,665.4886891278431,0.6610737920018437 +20,4271.8812742399805,2.521493857961331,0.0,677.7103091837935,0.6732143330009421 +21,4239.738146056668,2.5025212566442896,0.0,672.6109798858079,0.6681488329995773 +22,4258.708017086269,2.5137182937847875,0.0,675.6204448815166,0.6711383330002718 +23,4209.025134860196,2.484392787213646,0.0,667.7385307287024,0.6633087080008409 +24,4223.243286387955,2.492785104192349,0.0,669.9941617374582,0.6655493750004098 +25,4215.3026868335755,2.4880981356837353,0.0,668.7344295881699,0.6642979999996896 +26,4251.217954365132,2.509297256322679,0.0,674.4321879060342,0.669957959002204 +27,4230.316665524624,2.496960192614327,0.0,671.1163141695947,0.6666640829971584 +28,4233.784481070462,2.499007083676609,0.0,671.6664639033745,0.6672105830002693 +29,4221.646073358636,2.4918423432435444,0.0,669.7407727347116,0.6652976669975033 +0,4526.952239297067,2.061544509838101,0.0,678.2148930188347,0.668025499999203 +1,4526.8776965213465,2.061510563544456,0.0,678.2037252357462,0.6680144999991171 +2,4531.1387716236395,2.063451029341043,0.0,678.842107184988,0.6686432909991709 +3,4536.213894503694,2.065762207183678,0.0,679.602447418153,0.6693922080012271 +4,4524.025303701092,2.060211602466967,0.0,677.7763879922376,0.6675935830025992 +5,4533.80000968661,2.064662939789416,0.0,679.2408061755599,0.6690359999993234 +6,4551.814796040215,2.0728667559421012,0.0,681.939729370178,0.6716943749997881 +7,4532.927804995875,2.064265743464694,0.0,679.1101349911188,0.668907291998039 +8,4531.2765673475715,2.0635137806145565,0.0,678.8627513418567,0.6686636250014999 +9,4523.317709781851,2.059889368813441,0.0,677.6703783175445,0.6674891660004505 +10,4532.638667140513,2.064134071972087,0.0,679.0668171937849,0.668864625000424 +11,4599.593611218387,2.0946249166008553,0.0,689.0978132888329,0.6787449170005857 +12,4724.174633692797,2.151358301301202,0.0,707.7621818006551,0.69712887499918 +13,4713.35774514804,2.146432360841879,0.0,706.1416268401905,0.6955326669994975 +14,4525.160949320186,2.06072876807142,0.0,677.9465271347218,0.6677611660015828 +15,4521.075496975497,2.058868279732646,0.0,677.3344564791416,0.6671582909984863 +16,4519.881687663806,2.0583246267621225,0.0,677.1556034204357,0.6669821249997767 +17,4529.926889061946,2.062899145930403,0.0,678.6605464442329,0.6684644579981978 +18,4527.070830091187,2.0615985153118976,0.0,678.2326599486578,0.6680430000014894 +19,4496.8609609131345,2.047841138018115,0.0,673.7067047121855,0.6635850419988856 +20,4507.2901728216575,2.052590533067022,0.0,675.2691790801298,0.6651240419996611 +21,4510.269620441504,2.053947354071168,0.0,675.715551306284,0.6655637080002634 +22,4505.150734188722,2.0516162466741643,0.0,674.9486545711762,0.66480833300011 +23,4525.828168151155,2.0610326151732083,0.0,678.0464879304504,0.6678596250021656 +24,4517.761176119285,2.057358959641823,0.0,676.8379145131333,0.6666692090002471 +25,4516.815553577666,2.056928329306886,0.0,676.6962440785896,0.6665296669998497 +26,4505.909715182346,2.0519618816660454,0.0,675.0623629087473,0.6649203330016462 +27,4516.121790760905,2.056612394247177,0.0,676.5923065396721,0.6664272910020372 +28,4532.277249893702,2.063969484916263,0.0,679.0126707070485,0.6688112920019194 +29,4500.489554138601,2.0494935756951604,0.0,674.2503300557127,0.6641205000014452 +0,4238.6094238476935,1.6678114691187185,0.0,672.4282281192849,0.6682788340003754 +1,4238.140866016911,1.6676271006039582,0.0,672.3538944215038,0.6682049589981034 +2,4227.43565027253,1.6634148036422671,0.0,670.6555805324892,0.6665171249987907 +3,4229.942020737591,1.664401012322871,0.0,671.0532001483351,0.66691229099888 +4,4241.595718012173,1.6689865185652797,0.0,672.9019845551495,0.6687496669983375 +5,4233.211885156345,1.6656876412227593,0.0,671.5719431881921,0.6674278329992376 +6,4234.964814662919,1.6663773853447754,0.0,671.8500342233065,0.6677042080009414 +7,4260.193737067008,1.6763044821662725,0.0,675.8524411197977,0.6716819169996597 +8,4249.175090223917,1.6719688560820003,0.0,674.1044033951409,0.6699446659986279 +9,4241.42578773114,1.6689196542606657,0.0,672.8750262048151,0.6687228750015493 +10,4218.130298178308,1.6597533261634472,0.0,669.1793460425787,0.66504999999961 +11,4233.126786808715,1.6656541566560097,0.0,671.5584428805699,0.6674144159987918 +12,4221.111841765962,1.6609265063491914,0.0,669.652348829867,0.6655200839995814 +13,4246.027586794782,1.6707303738834125,0.0,673.6050721423143,0.6694484159997955 +14,4242.84890325624,1.6694796229101212,0.0,673.1007943649026,0.6689472500002012 +15,4215.908544472875,1.6588791087159445,0.0,668.8268790520945,0.6646997079988068 +16,4276.901402007858,1.6828786276994194,0.0,678.5030051158519,0.6743161249978584 +17,4243.904942204026,1.6698951539706253,0.0,673.2683281778767,0.6691137500019977 +18,4242.812699833464,1.6694653775580044,0.0,673.0950509238362,0.6689415420005389 +19,4249.660830087844,1.672159985397079,0.0,674.1814629123943,0.6700212499999907 +20,4240.549192954974,1.6685747310381496,0.0,672.7359600599611,0.6685846670006867 +21,4223.55557929874,1.661888070172872,0.0,670.0400321322985,0.6659053750008752 +22,4251.702873230505,1.6729634901867876,0.0,674.505419973509,0.6703432079993945 +23,4227.807217427061,1.6635610081871792,0.0,670.714527280907,0.6665757080008916 +24,4230.145515957606,1.6644810837868618,0.0,671.0854833611869,0.6669443749997299 +25,4233.314952019787,1.6657281960556645,0.0,671.5882940857227,0.6674440829992818 +26,4236.9941789942895,1.6671759012655485,0.0,672.1719798722437,0.6680241670001124 +27,4208.477950092542,1.6559553124208288,0.0,667.6480628618298,0.6635281660019245 +28,4215.6783597206695,1.6587885354332106,0.0,668.7903617159618,0.6646634160024405 +29,4217.645351165517,1.6595625088200758,0.0,669.1024123060782,0.664973541002837 +0,5386.072882938815,4.631131769517907,93.42225526423174,749.8435367249642,0.6850228750008682 +1,5377.470849105069,4.623735443282493,93.2730516760008,748.6459704065884,0.6839288330011186 +2,5330.246655001152,4.583130447702634,92.453940829915,742.0714665898955,0.6779226660000859 +3,5381.281930586451,4.627012342965852,93.33915546529676,749.1765452574782,0.6844135419996746 +4,5346.0793484994665,4.596743945226841,92.72856131234578,744.2756779228438,0.6799363329992048 +5,5357.547306458497,4.606604492157758,92.9274747914414,745.8722352554137,0.6813948750022973 +6,5458.827318588875,4.6936885498725935,94.68419204203418,759.972334557069,0.6942760829988401 +7,5384.644835020959,4.6299038845218226,93.39748555538986,749.6447253600586,0.6848412500003178 +8,5387.441630971445,4.632308666421485,93.44599640752406,750.0340924207334,0.6851969579984143 +9,5364.45691184824,4.61254560987576,93.0473229502995,746.8341834234809,0.6822736670001177 +10,5419.407102652684,4.659793684661683,94.0004423869882,754.4842925683155,0.6892624579995754 +11,5393.631146430152,4.637630625908802,93.55335449675025,750.8957904079389,0.6859841660007078 +12,5356.311240049072,4.605541679503282,92.90603503113094,745.7001513589989,0.6812376669986406 +13,5384.563260343356,4.629833743792344,93.39607063017073,749.6333686171978,0.684830874997715 +14,5403.308393221067,4.645951457436507,93.72120781764004,752.2430467702592,0.6872149580012774 +15,5352.574523197554,4.602328721100959,92.84122110767692,745.1799294755266,0.6807624159991974 +16,5392.552002162872,4.636702740340094,93.53463657491815,750.7455530510371,0.6858469159997185 +17,5448.457186507701,4.684771951605358,94.50432052015412,758.5286154160444,0.6929571670007135 +18,5396.272993802559,4.639902177661347,93.59917774217568,751.2635856866639,0.6863201670021226 +19,5419.279012749573,4.659683548532346,93.99822064809136,754.4664600235179,0.68924616699951 +20,5371.8435108202775,4.6188968631750695,93.1754446355604,747.8625381483319,0.6832131250012026 +21,5370.329304342232,4.617594896068701,93.14918049335712,747.6517318771381,0.6830205420010316 +22,5408.767675900578,4.650645537521451,93.81589990798668,753.0030824996963,0.6879092919989489 +23,5393.128921742544,4.637198795750398,93.54464333297923,750.8258712025788,0.6859202910018212 +24,5398.73039199595,4.642015133629659,93.64180168847167,751.6057021400655,0.686632708999241 +25,5350.694712888532,4.6007123951744475,92.80861551128883,744.9182242143605,0.6805233340019186 +26,5425.935048737421,4.665406638507609,94.1136706070168,755.3931065198003,0.6900927089991455 +27,5407.841192231741,4.649848914815828,93.7998299075078,752.8740983945686,0.6877914579999924 +28,5406.221170671564,4.648455964241691,93.77173038657338,752.6485606562841,0.6875854170029925 +29,5385.081540533598,4.630279379027274,93.40506027908256,749.7055230531498,0.684896792001382 +0,5371.099961810868,5.280857460896809,106.01822699977645,756.2655808083043,0.6856771669990849 +1,5363.880609010041,5.273759404004894,105.87572676900965,755.2490761672071,0.6847555409985944 +2,5338.391450956696,5.248698501874038,105.37260536673702,751.6601329234421,0.6815015829997719 +3,5340.5319020425295,5.250802990184939,105.4148549675103,751.9615142969279,0.6817748339999525 +4,5364.9524678044545,5.274813253970777,105.89688380756522,755.3999968202327,0.684892375000345 +5,5370.205009779878,5.27997754539652,106.00056186074532,756.1395691119434,0.6855629169986059 +6,5311.969153635636,5.222720138608777,104.8510650611838,747.9398011158278,0.6781284999997297 +7,5372.151900565224,5.281891725509057,106.03899084376413,756.4136966651483,0.6858114579990797 +8,5357.82778015552,5.267808271714823,105.75625213847734,754.3968212917171,0.6839828339980158 +9,5365.481543088095,5.275333439999497,105.90732703593926,755.4744920687887,0.6849599170018337 +10,5353.5622312461155,5.263614390397549,105.67205598950017,753.7962203261098,0.6834382920023927 +11,5391.43155639699,5.300847454329337,106.41954509577631,759.1283249943665,0.6882727080010227 +12,5366.100043041169,5.27594154822965,105.91953538597753,755.5615785556473,0.6850388749990088 +13,5343.514093690189,5.253735076559115,105.47371938509818,752.3814150462222,0.6821555419992364 +14,5383.678898344316,5.293225052510279,106.2665181428013,758.0367295136082,0.6872829999992973 +15,5366.646735355581,5.276479055296713,105.93032635064031,755.6385543303717,0.685108665998996 +16,5323.53760512595,5.234094222836964,105.07941060024588,749.5686707603289,0.6796053340003709 +17,5310.506939084279,5.221282491445651,104.82220292952914,747.7339173034225,0.6779418329970213 +18,5370.355471391004,5.280125479027871,106.003531768838,756.1607545187571,0.6855821249992005 +19,5326.477042759089,5.236984273527916,105.13743111158576,749.9825516273174,0.6799805840018962 +20,5340.725117696672,5.250992959527531,105.41866878241346,751.9887195900598,0.6817995000019437 +21,5344.5373156584865,5.254741106870198,105.49391639868524,752.5254875009618,0.6822861670007114 +22,5365.320631859079,5.275175232319444,105.90415086656505,755.4518353271649,0.6849393749980663 +23,5330.734100413547,5.241169806256008,105.22145965470922,750.5819570009791,0.6805240419998881 +24,5372.4730649636085,5.282207493865901,106.04533019330782,756.4589174917958,0.6858524579984078 +25,5378.330406530226,5.287966423346458,106.16094616996811,757.2836472219007,0.6866002089991525 +26,5372.327828161426,5.2820646972589005,106.0424634158559,756.4384677523869,0.6858339169993997 +27,5403.673998780062,5.3128842053967,106.66119430074896,760.8520944019692,0.6898355839985015 +28,5369.547343422856,5.279330928816498,105.9875804190249,756.0469678881703,0.6854789589997381 +29,5330.02779723041,5.240475370021187,105.20751818802027,750.4825075789203,0.6804338750007446 +0,4233.7459268513485,1.8343208499560768,0.0,671.7282952539152,0.6684168749998207 +1,4228.976432239148,1.8322544096070168,0.0,670.9715647980896,0.6676638749995618 +2,4217.690053485325,1.8273644515825311,0.0,669.1808621695229,0.6658820000011474 +3,4217.2807193634335,1.82718710269874,0.0,669.1159170082785,0.6658173750001879 +4,4233.164257526582,1.8340688347929952,0.0,671.6360073011949,0.6683250419991964 +5,4233.549839188753,1.8342358926407032,0.0,671.6971838850255,0.6683859170007054 +6,4222.881024456768,1.829613501584338,0.0,670.0044642801846,0.6667015419989184 +7,4237.39140424707,1.8359002964581927,0.0,672.3066885629902,0.6689924170023005 +8,4236.48775285413,1.8355087787290232,0.0,672.1633147705684,0.6688497499999357 +9,4259.023032178145,1.845272456908542,0.0,675.7387737199081,0.6724075830024958 +10,4220.165585871843,1.828437005474472,0.0,669.5736314047516,0.6662728330011305 +11,4238.525448176312,1.8363916344978664,0.0,672.4866165531187,0.6691714580010739 +12,4243.424263860944,1.8385141047418696,0.0,673.2638651564727,0.6699448750005104 +13,4233.0040582703405,1.833999426557133,0.0,671.6105900052222,0.668299750002916 +14,4226.978850104824,1.831388933354592,0.0,670.6546273944516,0.667348500002845 +15,4239.793037959488,1.83694083286939,0.0,672.6877329967706,0.6693715830006113 +16,4226.814958082065,1.831317925183652,0.0,670.6286242022534,0.6673226249986328 +17,4218.966878226462,1.827917651109587,0.0,669.3834438363308,0.6660835830007272 +18,4233.944921816377,1.834407066894857,0.0,671.7598678968967,0.6684482919990842 +19,4245.459058194452,1.8393957036228168,0.0,673.5867066666755,0.6702661249983066 +20,4249.650576202317,1.8412117287239056,0.0,674.2517350586942,0.670927874998597 +21,4217.659441309008,1.8273511884925275,0.0,669.1760052259635,0.6658771670008719 +22,4217.008883509642,1.827069326577312,0.0,669.0727873926116,0.6657744580006693 +23,4259.4780280161385,1.845469589274701,0.0,675.8109635923955,0.6724794170004316 +24,4223.091629644165,1.8297047487902465,0.0,670.0378790069883,0.6667347920010798 +25,4220.752005679336,1.828691078840776,0.0,669.6666730714923,0.6663654160001897 +26,4228.276260286472,1.8319510517689372,0.0,670.8604751577848,0.6675533329980681 +27,4221.91720018277,1.829195913237745,0.0,669.8515434276624,0.6665493750006135 +28,4221.460095110904,1.828997867020889,0.0,669.7790189030495,0.6664772080002876 +29,4237.438377105438,1.8359206480085637,0.0,672.314141300736,0.6689998330002709 +0,4252.8818824273885,2.916330819811958,0.0,674.9126980010802,0.6707283750001807 +1,4239.11069250842,2.9068874948627945,0.0,672.7272738111208,0.6685565000007045 +2,4218.867501429855,2.8930061213222573,0.0,669.5147729506015,0.6653639159994782 +3,4229.583010546564,2.9003540727469503,0.0,671.2152747205414,0.6670538750004198 +4,4230.8352971553795,2.9012128038693956,0.0,671.4140068173151,0.667251374998159 +5,4258.556801538587,2.920222284931719,0.0,675.8132814346578,0.67162337499758 +6,4231.087872281548,2.901386002336959,0.0,671.4540893224406,0.6672912089998135 +7,4245.005424394799,2.9109296923067935,0.0,673.6627405161491,0.6694861670002865 +8,4211.640704323802,2.888050486129097,0.0,668.3679136519913,0.664224166997883 +9,4238.071877934741,2.906175148025746,0.0,672.5624187396594,0.6683926669975335 +10,4233.101035562234,2.902766489800069,0.0,671.7735690302827,0.6676087079977151 +11,4224.133712257379,2.896617322706286,0.0,670.3504962686019,0.6661944580009731 +12,4227.708017246167,2.899068332653514,0.0,670.9177219499522,0.6667581669971696 +13,4223.5234270081855,2.896198831497195,0.0,670.2536468202819,0.666098208999756 +14,4229.639284199243,2.90039266130694,0.0,671.2242050891257,0.6670627500025148 +15,4220.899166878344,2.8943992962861462,0.0,669.837188866957,0.665684333001991 +16,4225.817432225628,2.8977719008420273,0.0,670.6176948454411,0.6664600000003702 +17,4203.269139726814,2.882309848951958,0.0,667.0393850436635,0.6629038749997562 +18,4247.030482837373,2.912318336645213,0.0,673.9841079312037,0.6698055420019955 +19,4228.0147482159955,2.899278667434829,0.0,670.9663987371591,0.6668065419980849 +20,4236.875066042591,2.905354457608498,0.0,672.3724902240174,0.6682039160004933 +21,4222.741930405627,2.895662935441149,0.0,670.1296269215184,0.6659749579994241 +22,4244.668308851497,2.910698521896717,0.0,673.609241837569,0.6694330000027549 +23,4227.730995946915,2.899084089849467,0.0,670.9213685635536,0.6667617910025001 +24,4244.281786606862,2.9104334718046294,0.0,673.5479025438437,0.6693720410003152 +25,4204.034778274159,2.8828348706558726,0.0,667.1608883423602,0.6630246250024356 +26,4217.20069842133,2.891863143661767,0.0,669.2502590170807,0.6651010419991508 +27,4189.227151535962,2.8726808293684076,0.0,664.8109864195807,0.660689291999006 +28,4221.089121314418,2.8945295538365783,0.0,669.8673337579962,0.6657142910007678 +29,4245.372651902194,2.911181511409065,0.0,673.7210178242542,0.669544083000801 +0,4244.366896242589,2.103221073993858,0.0,672.1293632177515,0.6689150419988437 +1,4281.900310390863,2.121820094659454,0.0,678.0730788218855,0.6748303329986811 +2,4217.541178081211,2.089928063012178,0.0,667.8812967083203,0.6646872909986996 +3,4227.821648719434,2.0950223687179426,0.0,669.5092912602911,0.6663074999996752 +4,4247.867566784616,2.104955769470731,0.0,672.6837223294322,0.6694667500014475 +5,4244.153540557133,2.103115349351084,0.0,672.095576642625,0.6688814170011028 +6,4237.324838360353,2.099731506549697,0.0,671.0141971645246,0.6678052089991979 +7,4282.032771780338,2.1218857335621797,0.0,678.0940551397995,0.6748512090016447 +8,4243.722330438116,2.1029016707903447,0.0,672.0272910797145,0.6688134579999314 +9,4241.911589334332,2.102004390008046,0.0,671.7405457782855,0.6685280839992629 +10,4233.839497725506,2.0980044075376516,0.0,670.462265665961,0.6672559170001477 +11,4222.311678296765,2.092292000162788,0.0,668.6367434805939,0.665439125001285 +12,4222.071615850537,2.092173041456266,0.0,668.5987276768095,0.6654012910003075 +13,4237.442223669088,2.099789674766805,0.0,671.0327860647633,0.6678237090018229 +14,4231.6229271380735,2.0969060251203326,0.0,670.1112540277406,0.6669065840032999 +15,4238.465905894638,2.1002969424188445,0.0,671.1948943129935,0.6679850420005096 +16,4232.223597173694,2.0972036765506443,0.0,670.2063749205415,0.6670012499998847 +17,4246.150143806748,2.1041047308380407,0.0,672.4117546978139,0.6691960829994059 +18,4253.963137533216,2.1079763219276413,0.0,673.6490045931619,0.670427416000166 +19,4223.039784369309,2.092652800271099,0.0,668.7520448866355,0.6655538750019332 +20,4243.0172318761115,2.102552271647645,0.0,671.9156330965403,0.6687023339982261 +21,4224.8190661839435,2.0935344919581267,0.0,669.0338083586186,0.6658342909977364 +22,4226.736627913595,2.0944847058154767,0.0,669.3374695584603,0.6661364999999932 +23,4243.584856415107,2.102833547965578,0.0,672.0055209712856,0.6687917920025939 +24,4249.715065331194,2.105871264754792,0.0,672.9762884652099,0.6697579169995151 +25,4223.119365235822,2.092692235164366,0.0,668.7646471518124,0.6655664169993543 +26,4219.512940088176,2.0909051348599537,0.0,668.1935409545309,0.6649980420006614 +27,4227.84174380476,2.0950323264826634,0.0,669.5124734773883,0.66631066699847 +28,4231.661784835353,2.0969252803661216,0.0,670.1174074541448,0.6669127080022008 +29,4236.218136169378,2.099183099819649,0.0,670.8389420423648,0.6676307919988176 +0,4686.838221618427,2.509658181151077,0.0,700.779073487446,0.6893872910004575 +1,4636.259234432968,2.4825746841362193,0.0,693.2164707045575,0.6819476250020671 +2,4549.6130501150365,2.436178308785348,0.0,680.2610773463086,0.669202832999872 +3,4534.883135155338,2.4282908909061147,0.0,678.0586509620581,0.6670362090007984 +4,4526.97697860609,2.4240573864566204,0.0,676.8765173360513,0.6658732920004695 +5,4518.478497841579,2.4195067105490047,0.0,675.6058190113824,0.66462324999884 +6,4513.223778206341,2.4166929692806587,0.0,674.8201299426979,0.6638503329995729 +7,4525.484409998178,2.4232581617254363,0.0,676.6533475152231,0.6656537500020931 +8,4530.239435758796,2.425804332243265,0.0,677.3643220335167,0.6663531670019438 +9,4538.574180059647,2.4302673322943336,0.0,678.6105383765438,0.6675791249981557 +10,4536.006875300555,2.428892619302867,0.0,678.2266733132827,0.6672015000003739 +11,4511.509699040368,2.4157751324365826,0.0,674.563839720374,0.6635982090010657 +12,4503.807784713628,2.411650993435695,0.0,673.4122445231947,0.6624653340004443 +13,4555.611640570673,2.4393903700728323,0.0,681.1579904597892,0.6700851659988984 +14,4542.850186362009,2.4325570025777834,0.0,679.2498895965142,0.6682080829996266 +15,4516.061611145417,2.418212541818802,0.0,675.2444445538968,0.6642677500021819 +16,4524.102603446139,2.42251824667949,0.0,676.4467389084208,0.6654505000005884 +17,4518.562065688295,2.419551458568944,0.0,675.6183141297172,0.6646355419979955 +18,4519.875322396869,2.4202546672752785,0.0,675.8146731197161,0.6648287089992664 +19,4511.65076226527,2.415850667468878,0.0,674.5849315847345,0.6636189579985512 +20,4523.525575999806,2.422209266172171,0.0,676.3604613925141,0.6653656250018685 +21,4531.469967620338,2.4264632443301477,0.0,677.5483119510374,0.666534166000929 +22,4516.979416217718,2.418703998297452,0.0,675.3816753602091,0.6644027500005905 +23,4461.142874376519,2.3888052419476846,0.0,667.0329596145425,0.6561897499996121 +24,4519.617256014781,2.4201164806393285,0.0,675.7760868678365,0.6647907500009751 +25,4531.639374050799,2.4265539562800895,0.0,677.5736417097719,0.6665590840020741 +26,4532.665384948886,2.4271033536611335,0.0,677.727051520939,0.6667100000013306 +27,4518.268028145644,2.4193940104792966,0.0,675.5743494467121,0.6645922919997247 +28,4626.4050128081035,2.4772980505614473,0.0,691.743061132117,0.680498167002952 +29,4766.67763709578,2.552409740466019,0.0,712.716714378895,0.701130875000672 +0,4220.528551913251,1.8985583643147872,0.0,669.9579463127654,0.6673571669998637 +1,4206.953299792034,1.8924516864081216,0.0,667.8030389546134,0.6652106250003271 +2,4215.018030714928,1.8960795169419695,0.0,669.0832176100137,0.6664858339972852 +3,4212.852236981949,1.8951052584441184,0.0,668.7394240060526,0.6661433750014112 +4,4223.513328745879,1.899901033355287,0.0,670.4317435948815,0.6678291249991162 +5,4207.198629789099,1.8925620454098953,0.0,667.8419821293795,0.6652494169975398 +6,4233.671377624534,1.9044705199554777,0.0,672.0442111997277,0.6694353329985461 +7,4228.464944991696,1.902128463480386,0.0,671.217752884991,0.6686120829981519 +8,4210.73071924243,1.894150917015109,0.0,668.4026586814368,0.6658079170010751 +9,4209.938342245789,1.8937944749353648,0.0,668.276878400876,0.6656826250000449 +10,4221.611053511575,1.899045315756675,0.0,670.1297803706974,0.6675283339973248 +11,4218.349850373928,1.897578299382173,0.0,669.612103750404,0.6670126669996534 +12,4187.962655740084,1.8839089539837173,0.0,664.7885035162893,0.6622077920001175 +13,4230.499504402044,1.9030436876611256,0.0,671.54071462484,0.6689337909992901 +14,4214.287308764888,1.8957508097070412,0.0,668.9672243236391,0.6663702909972926 +15,4232.460550812858,1.9039258428273005,0.0,671.8520070636548,0.6692438749996654 +16,4226.778484542174,1.9013698277898217,0.0,670.9500476520083,0.6683454169979086 +17,4230.842860190899,1.9031981424875408,0.0,671.5952182104279,0.6689880830017501 +18,4219.569107395094,1.8981267687473984,0.0,669.8056460804416,0.6672054579976248 +19,4227.523423400034,1.9017049303444185,0.0,671.0682977008356,0.6684632079995936 +20,4219.778073043047,1.8982207696465505,0.0,669.8388168538721,0.6672385000019858 +21,4222.968128440092,1.8996557809922128,0.0,670.3451996294275,0.6677429169976676 +22,4271.884297428837,1.9216601817779193,0.0,678.1100508119487,0.675477624998166 +23,4221.082448049655,1.8988075284016537,0.0,670.0458706363308,0.6674447500008682 +24,4206.322456585602,1.8921679085278371,0.0,667.7029002127881,0.665110874997481 +25,4242.370638791378,1.9083837869428983,0.0,673.4251138696396,0.670810874999006 +26,4208.742269888233,1.8932564349361485,0.0,668.0870163562402,0.6654935000005935 +27,4276.520757715574,1.92374584245997,0.0,678.8460328989445,0.676210749999882 +28,4225.054597259027,1.9005943560496603,0.0,670.676401361103,0.6680728330029524 +29,4238.522071623389,1.906652551317422,0.0,672.8142003017302,0.6702023329999065 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/without_smell.csv new file mode 100644 index 000000000..a3ed60d24 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n1000/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,593.5433745983983,0.5298607372412192,18.346428026977215,108.45586965406206,0.1294090000010328 +1,590.6261283332316,0.5272564890549408,18.256255933527328,107.9228126034332,0.1287729590003437 +2,591.7261344706004,0.5282384729972441,18.29025712752958,108.1238124416234,0.1290127909996954 +3,598.7781777418923,0.5345338862841196,18.50823581258764,109.41240484878072,0.1305503330004285 +4,591.5400023101357,0.5280723113854919,18.28450378172266,108.08980123671788,0.1289722090004943 +5,596.479352407265,0.5324817072206796,18.43717911251603,108.99234944673285,0.1300491250003688 +6,585.9262292727352,0.5230608530024975,18.110982035211475,107.06401834894872,0.1277482500008773 +7,595.4636199038337,0.5315749549997957,18.405782816867926,108.80674860152068,0.129827667002246 +8,596.5213974938135,0.5325192411929374,18.438478726305455,109.00003218167936,0.1300582920011948 +9,599.4860413635215,0.5351658015854681,18.530115879896833,109.5417500120255,0.1307046670008276 +10,574.7900384703714,0.5131194897911032,17.76676233401695,105.02914556661644,0.1253202499974577 +11,598.7607900425916,0.5345183641511725,18.50769835873435,109.40922766219312,0.1305465419973188 +12,587.4082645364687,0.5243838772852479,18.15679175100171,107.3348248818242,0.1280713749983988 +13,609.8673561991367,0.5444332812133118,18.85100236201092,111.43868724834977,0.1329680830021971 +14,614.2416042418947,0.5483382060966532,18.986210386096616,112.2379765604087,0.1339217910026491 +15,593.5502544383166,0.529866878927248,18.346640682855963,108.45712678042108,0.1294104999979026 +16,589.5366208446596,0.5262838773371955,18.222579252800394,107.7237311424572,0.1285354159990674 +17,598.3413115779614,0.5341438924983196,18.494732277754316,109.3325779957498,0.1304550839995499 +18,604.9100405052308,0.5400078473516539,18.697771714551013,110.53285625479164,0.1318872500014549 +19,596.4493470572595,0.5324549212138677,18.43625164703017,108.98686668596356,0.130042582997703 +20,591.6307750964904,0.5281533449502788,18.287309568903403,108.10638779451018,0.1289919999981066 +21,595.1695061132615,0.5313123973560332,18.39669175845265,108.75300633381303,0.1297635419978178 +22,600.866213512121,0.5363978918816011,18.57277700640044,109.79394349451525,0.1310055829999328 +23,615.1661832547844,0.5491635848951933,19.01478912699607,112.4069212832349,0.1341233749990351 +24,616.7187370445396,0.5505495616086946,19.062778570701052,112.69061339177968,0.1344618750008521 +25,596.4017614032709,0.532412441134427,18.434780774279535,108.97817154470302,0.1300322079987381 +26,604.1949163394961,0.5393694505067197,18.67566722379517,110.4021844005942,0.1317313330000615 +27,597.5766891768906,0.5334613081978602,18.47109779635091,109.1928615217495,0.1302883750031469 +28,596.7889458543393,0.5327580836729023,18.446748647174243,109.0489202517972,0.1301166250013921 +29,600.5401863954884,0.5361068449661225,18.56269950695199,109.7343698290032,0.1309345000008761 +0,581.4741198577741,0.5454729079341221,23.148506530454306,112.0605905237162,0.1331702499992388 +1,553.7709711665702,0.5194849635708914,22.045643141539703,106.721692203595,0.1268256250004924 +2,564.0314572449669,0.5291101850328019,22.454113477329532,108.69907363767624,0.1291754999983823 +3,570.326888500555,0.5350158428710647,22.70473483184081,109.91231721982436,0.1306172910008172 +4,565.6885047398324,0.5306646385927133,22.52008060027827,109.01841669089052,0.1295549999995273 +5,574.3023135305887,0.5387451346440795,22.86299665145812,110.67845359844308,0.1315277499998046 +6,566.7433519107772,0.5316541762765264,22.562074105735093,109.2217048388089,0.1297965829980967 +7,572.2084473696292,0.5367809074762,22.779639761021237,110.27492767964183,0.1310482090011646 +8,562.126795787733,0.5273234482061285,22.37828883324758,108.33201089084652,0.1287392910016933 +9,581.0269266320039,0.5450534020938123,23.13070375135616,111.97440829264757,0.1330678330014052 +10,560.0127350319325,0.5253402767654151,22.2941279952323,107.92459310799497,0.1282551250005781 +11,534.6144979163302,0.5015145383830489,21.28302322263064,103.0298929790676,0.1224383750013657 +12,564.9127401658633,0.5299369044707911,22.4891973834792,108.86891281221816,0.1293773329998657 +13,574.508079962107,0.5389381613152974,22.87118822081793,110.7181085152114,0.1315748749984777 +14,569.2865988807407,0.534039961426586,22.663320863040745,109.71183457557429,0.1303790419988217 +15,577.4093714590016,0.5416598231322717,22.98668874417578,111.27723991473606,0.1322393340014969 +16,567.7507145230462,0.5325991693461972,22.602177249129245,109.4158418525594,0.1300272909975319 +17,581.9489654921864,0.5459183541202499,23.167410152978107,112.15210187457885,0.1332790000014938 +18,569.8142036886168,0.5345349002707475,22.684324830239845,109.81351357437168,0.1304998750019876 +19,577.1835894549931,0.5414480201266352,22.97770035412408,111.2337276347656,0.1321876250003697 +20,572.4775221883025,0.5370333228783325,22.79035163964923,110.32678326881744,0.1311098330006643 +21,583.5707194056918,0.5474396992548703,23.23197223712856,112.46464321567242,0.1336504170030821 +22,557.437285880499,0.5229242831899615,22.191599267873993,107.42825742783772,0.1276652909982658 +23,550.3919260419447,0.516315127619085,21.91112322833492,106.07048903024578,0.126051750001352 +24,565.6894129565943,0.5306654905784187,22.520116756421643,109.0185917207039,0.1295552080009656 +25,564.4382613128246,0.5294918023572464,22.470308362535643,108.7774721467668,0.1292686669985414 +26,587.5372282489868,0.5511606268752222,23.38987910301724,113.22906128367843,0.1345588340009271 +27,569.7667191140562,0.5344903556417038,22.682434467544805,109.80436243714252,0.1304889999992156 +28,559.8946632946515,0.5252295152857894,22.28942755494069,107.90183854652436,0.1282280839986924 +29,575.6549882411999,0.5400140602637898,22.916846682444582,110.93913850544232,0.131837541997811 +0,571.6435209909042,0.5003298409886546,22.64826413541977,108.8050627536661,0.1291073329994105 +1,572.2373810367478,0.5008496157982972,22.671792608469588,108.91809644893635,0.1292414579984324 +2,574.2305679726567,0.5025941486515259,22.75076179562574,109.2974741934185,0.1296916249993955 +3,560.9212045430587,0.4909451551024554,22.223450687637815,106.76420639628064,0.1266856669972185 +4,570.7923075604117,0.4995848181471686,22.61453943479517,108.6430451197376,0.1289150839984358 +5,526.3653372373684,0.4607002018065425,20.854362468442822,100.18693721952944,0.1188811249994614 +6,546.1066178825615,0.4779787179506606,21.636503299233237,103.944438530337,0.1233397500000137 +7,599.4914816885043,0.5247037125293247,23.75158805382743,114.10556735137712,0.1353968750008789 +8,564.8324897164598,0.4943684995767823,22.378414080842347,107.50866970796427,0.1275690420006867 +9,573.8265438939262,0.5022405273899458,22.73475453985155,109.22057335640024,0.129600374999427 +10,560.7935373709595,0.4908334146670786,22.218392570596425,106.73990657626736,0.1266568329992878 +11,567.5674914205797,0.4967623043125625,22.486773641881996,108.02924244450526,0.1281867500001681 +12,562.4020712481488,0.4922412807049966,22.28212197324618,107.0460705106466,0.127020125000854 +13,522.7182373521357,0.4575080849738613,20.70986597981679,99.4927582123157,0.1180574170030013 +14,565.4239499832644,0.4948861739846519,22.40184747570525,107.62124663586232,0.127702625002712 +15,588.9981063323021,0.5155194068727116,23.335845151104746,112.10828701458568,0.1330269160025636 +16,572.5606003126185,0.5011325128188399,22.68459841359948,108.9796171210037,0.1293144580013177 +17,587.9579778784739,0.5146090365373502,23.294635720590723,111.91031181232243,0.1327920000003359 +18,574.3560168999174,0.5027039475725733,22.75573202678515,109.32135179878227,0.1297199580003507 +19,582.2835581980404,0.509642512135057,23.069817715980243,110.83025830563705,0.1315104159984912 +20,573.9317008573986,0.5023325658105368,22.73892081235696,109.2405886449314,0.1296241250020102 +21,587.231102021901,0.5139728399071372,23.265837219796406,111.77196025180542,0.1326278329979686 +22,569.2309991369702,0.4982182860925752,22.55268108379057,108.34586994893202,0.1285624580013973 +23,586.1692027690232,0.5130434147237337,23.22376523982768,111.56984125525462,0.1323879999981727 +24,598.8998354578716,0.5241858753569889,23.728147291159697,113.9929550276332,0.1352632499983883 +25,573.7204659866765,0.5021476829151679,22.730551779959935,109.20038277795184,0.1295764169990434 +26,584.468980896209,0.5115552989522194,23.156403199237133,111.24622567880932,0.1320039999991422 +27,579.4817740885492,0.5071902562334133,22.958812265499176,110.29697438889296,0.1308776250007213 +28,569.554032432905,0.4985010203345533,22.56547952047745,108.40735522208752,0.1286354160001792 +29,569.8029068334558,0.4987188471526337,22.575339814442557,108.45472529412608,0.1286916249991918 +0,363.06076056536006,0.7714705740025204,0.0,79.62918011660797,0.1271365419997892 +1,351.7794128776832,0.7474987524193195,0.0,77.15487122797671,0.1231860420011798 +2,361.9520443858645,0.7691146545523728,0.0,79.38600825684057,0.1267482919975009 +3,357.80750770031057,0.7603078969980731,0.0,78.47699771623589,0.1252969589986605 +4,363.75314202987425,0.7729418206473676,0.0,79.78103835725439,0.1273789999977452 +5,364.7452495438632,0.775049957456472,0.0,79.9986347392028,0.1277264160016784 +6,364.5178663424917,0.7745667891608748,0.0,79.9487633681703,0.1276467909992789 +7,363.4933926101512,0.7723898771280006,0.0,79.72406818703797,0.1272880409997014 +8,363.9162725222442,0.7732884578724701,0.0,79.81681734735844,0.1274361249998037 +9,362.3930064388029,0.770051658175579,0.0,79.48272332647062,0.1269027079979423 +10,362.35314691260186,0.7699669603649153,0.0,79.47398103940473,0.1268887499973061 +11,363.64295863215114,0.7727076911067513,0.0,79.75687211684468,0.1273404159983329 +12,364.6905176589585,0.77493365725758,0.0,79.986630536065,0.1277072500015492 +13,363.6180914043708,0.7726548505451337,0.0,79.75141805191946,0.127331707997655 +14,360.58191393610525,0.7662032539292702,0.0,79.08550107948207,0.1262685000001511 +15,353.25615142037253,0.7506366853906659,0.0,77.478760483367,0.1237031659984495 +16,364.2340864056752,0.7739637830127983,0.0,79.88652264662537,0.1275474169997323 +17,363.6220179678712,0.7726631941298076,0.0,79.75227925496361,0.127333083000849 +18,365.2773590498308,0.7761806409964993,0.0,80.11534094459519,0.1279127499983587 +19,360.0822877312621,0.7651415944030884,0.0,78.97591935273617,0.1260935409991361 +20,362.955814476415,0.7712475732591968,0.0,79.6061625616232,0.1270997920000809 +21,341.77800196980706,0.7262466782433077,0.0,74.96128757172228,0.1196837499992398 +22,360.68102873157494,0.7664138637126962,0.0,79.10723967191046,0.1263032079987169 +23,357.67340802171134,0.7600229475701553,0.0,78.44758597963255,0.1252500000009604 +24,362.51294769350176,0.7703065222607668,0.0,79.50902973248088,0.126944709001691 +25,362.5990920136873,0.770489570982521,0.0,79.52792354402196,0.1269748750019061 +26,362.2602175158703,0.7697694939823556,0.0,79.45359907452662,0.1268562080003903 +27,349.1254162172897,0.7418592547115357,0.0,76.57277698631242,0.1222566659998847 +28,364.30940485998576,0.7741238277697406,0.0,79.90304204892888,0.1275737920004758 +29,361.3274823643117,0.7677875179581642,0.0,79.24902467968182,0.1265295829980459 +0,330.44415841729904,0.0,0.0,71.46026132650186,0.1117680830029712 +1,376.19058039632665,0.0,0.0,81.35316209688087,0.127241165999294 +2,373.3111818811339,0.0,0.0,80.73047724947932,0.1262672500015469 +3,375.9587422141797,0.0,0.0,81.30302588881162,0.1271627499991154 +4,358.0380640968126,0.0,0.0,77.42758639685981,0.1211013329993875 +5,375.7331866339709,0.0,0.0,81.25424832596235,0.1270864590005658 +6,375.96440985647655,0.0,0.0,81.304251545823,0.127164666999306 +7,375.1544485619503,0.0,0.0,81.12909321938014,0.126890708997962 +8,372.8164561803528,0.0,0.0,80.62349025345529,0.1260999160003848 +9,379.1671802982532,0.0,0.0,81.99686724777506,0.1282479589972354 +10,341.7689728538709,0.0,0.0,73.9093111235619,0.1155985420009528 +11,376.4109650344787,0.0,0.0,81.40082141671914,0.1273157079995144 +12,377.2984136638453,0.0,0.0,81.59273678079191,0.1276158750006288 +13,376.2199001769732,0.0,0.0,81.35950265135482,0.1272510830021929 +14,331.6252896252523,0.0,0.0,71.71568706979686,0.1121675840004172 +15,375.3755693769742,0.0,0.0,81.17691174128115,0.1269654999996419 +16,355.2765537051657,0.0,0.0,76.83039546696682,0.1201672909992339 +17,373.85518086957546,0.0,0.0,80.84811984925041,0.1264512499983539 +18,377.2072553916621,0.0,0.0,81.57302333213093,0.1275850419988273 +19,375.10048919039974,0.0,0.0,81.11742422571268,0.1268724580004345 +20,372.6835400780478,0.0,0.0,80.5947464576784,0.1260549590006121 +21,376.0683787140708,0.0,0.0,81.32673534995224,0.1271998330012138 +22,374.1239784649677,0.0,0.0,80.90624872192488,0.1265421669995703 +23,376.20314854727656,0.0,0.0,81.35588002464081,0.1272454169993579 +24,374.47284738731366,0.0,0.0,80.98169343391177,0.1266601669994997 +25,369.8160858806754,0.0,0.0,79.97464463089034,0.1250850830001582 +26,377.63409948635586,0.0,0.0,81.66533057913625,0.127729416002694 +27,377.7004998759669,0.0,0.0,81.67969000741759,0.127751874999376 +28,370.2482309866334,0.0,0.0,80.0680982490467,0.1252312499964318 +29,376.1321921537387,0.0,0.0,81.3405353369051,0.127221416998509 +0,581.4317776280168,0.5649808642284244,22.03425370490855,108.27692092095334,0.1290291250006703 +1,520.8723160480156,0.5061348598351681,19.739259533571555,96.99925725546927,0.1155900000012479 +2,581.2826943299111,0.5648359990630745,22.028603963459904,108.24915793808805,0.1289960410031199 +3,597.7183315507577,0.5808066096806448,22.651457777545147,111.30987849056125,0.1326433750000433 +4,590.1250009442444,0.5734281232381913,22.363696806289457,109.8958132652957,0.1309582920002867 +5,584.1878856712548,0.5676589915067923,22.1387006687649,108.7901761370076,0.1296407499976339 +6,595.3991361810349,0.5785530331567643,22.56356829311381,110.8779871779258,0.1321287079990725 +7,575.798831243909,0.5595072952927381,21.820784516416783,107.22792753316124,0.1277790829990408 +8,596.2444282648765,0.579374408716942,22.59560193996074,111.03540138822336,0.132316291997995 +9,601.0281396379249,0.5840227707256201,22.776888058299186,111.92624629553356,0.1333778750013152 +10,583.2517214413025,0.5667493149186706,22.103223281828154,108.61583929441346,0.1294329999982437 +11,599.6841637858541,0.5827168210551312,22.72595602115012,111.6759648822128,0.1330796250003914 +12,575.4691302135833,0.55918692275684,21.80828998751676,107.16652907892852,0.1277059170024586 +13,588.2201917365456,0.5715772083178781,22.291511124397243,109.54109086468507,0.1305355839976982 +14,582.9858553137769,0.5664909711537129,22.09314787499481,108.56632847169394,0.129374000000098 +15,561.3382324271454,0.545455841741153,21.272777827904967,104.5350077878045,0.1245700420004141 +16,601.3137204179325,0.5843002713406603,22.78771058228575,111.97942847222774,0.1334412500000326 +17,580.0786001151666,0.5636659732470896,21.982972956636495,108.02492593170692,0.128728833002242 +18,592.1995408751958,0.5754439665549202,22.442314695641887,110.28214370799589,0.1314186659983534 +19,583.1435725172411,0.5666442259384451,22.09912481159936,108.59569930043848,0.1294090000010328 +20,581.0192705523374,0.564580028544712,22.018621113243768,108.20010194109832,0.1289375830019707 +21,581.595127582307,0.5651395923920673,22.04044410329063,108.30734070666796,0.1290653750002093 +22,552.8521053146549,0.537209819396921,20.95118295647992,102.95468185853932,0.122686833001353 +23,579.6981997372299,0.563296335840692,21.96855709778699,107.95408600993969,0.1286444159995881 +24,575.04066213351,0.5587705776661714,21.792052528980687,107.08673776684628,0.1276108329984708 +25,595.235222946744,0.5783937576504514,22.557356548367604,110.84746249559828,0.1320923329985817 +26,580.65858933509,0.56422955236905,22.004952542392953,108.132934212845,0.1288575420003326 +27,596.8328621274222,0.5799461935505104,22.617901548469906,111.14498226985664,0.1324468749990046 +28,582.1891987038862,0.5657168549851995,22.06295734442278,108.4179713848106,0.1291972090002673 +29,598.1054912231285,0.5811828151353635,22.66612979027918,111.38197715947145,0.132729291999567 +0,361.1273800704231,0.0,0.0,78.14745763956928,0.1268132500008505 +1,362.07910759150786,0.0,0.0,78.3534101378924,0.1271474580025824 +2,315.9812070935933,0.0,0.0,68.37788924071934,0.1109597499998926 +3,357.35440047061826,0.0,0.0,77.33099015545547,0.1254883330002485 +4,363.2426363907271,0.0,0.0,78.60519613520911,0.1275560419999237 +5,362.3479798378803,0.0,0.0,78.41159371422422,0.1272418750013457 +6,352.9112606909941,0.0,0.0,76.36950095004781,0.123928082997736 +7,360.94382237042606,0.0,0.0,78.10773601120054,0.1267487920013081 +8,360.55380282733665,0.0,0.0,78.02333633007905,0.1266118329986056 +9,363.71345685423177,0.0,0.0,78.70708102197787,0.1277213749999646 +10,364.2208248292936,0.0,0.0,78.81687473889593,0.1278995419997954 +11,360.80511609468584,0.0,0.0,78.07772016802177,0.1267000839980028 +12,374.00840463719953,0.0,0.0,80.93489325713479,0.1313365419991896 +13,360.17292159439404,0.0,0.0,77.94091416643339,0.1264780829988012 +14,360.17102501617666,0.0,0.0,77.94050374957197,0.126477416997659 +15,362.5744923942769,0.0,0.0,78.46061071316345,0.1273214169996208 +16,360.86337170818086,0.0,0.0,78.09032660092915,0.1267205410003953 +17,361.44074779529217,0.0,0.0,78.21526997492873,0.126923292002175 +18,362.095128797409,0.0,0.0,78.35687710433855,0.1271530839985644 +19,361.46791779675897,0.0,0.0,78.2211495250705,0.1269328330017742 +20,362.3516590767534,0.0,0.0,78.4123898963468,0.1272431670004152 +21,360.9834510950976,0.0,0.0,78.1163116115385,0.126762707997841 +22,364.26057316947674,0.0,0.0,78.82547622386255,0.1279135000004316 +23,364.3102884882237,0.0,0.0,78.83623454898611,0.1279309579986147 +24,362.5480314767952,0.0,0.0,78.45488460779974,0.127312125001481 +25,359.9778534551209,0.0,0.0,77.89870169517822,0.1264095830010774 +26,360.08998204684286,0.0,0.0,77.92296616487883,0.1264489580025838 +27,362.7770357881926,0.0,0.0,78.50444081902006,0.1273925420027808 +28,362.86567076834586,0.0,0.0,78.52362130418726,0.1274236670033133 +29,369.760449773745,0.0,0.0,80.0156417933386,0.1298448330016981 +0,492.1706690195863,0.0,0.0,92.06965491809224,0.1276172920006502 +1,486.08444962833966,0.0,0.0,90.9311146628915,0.1260391670002718 +2,486.6206809901031,0.0,0.0,91.03142668784857,0.1261782090004999 +3,491.618691094673,0.0,0.0,91.9663972063509,0.1274741669985815 +4,491.069285551624,0.0,0.0,91.86362070636284,0.1273317090017371 +5,491.66914718394423,0.0,0.0,91.97583595396456,0.1274872499998309 +6,489.3934208087073,0.0,0.0,91.55011911376064,0.126897165999253 +7,484.9412836048319,0.0,0.0,90.71726424895256,0.1257427500022458 +8,489.216660608546,0.0,0.0,91.5170528388757,0.1268513329996494 +9,486.77108895533576,0.0,0.0,91.05956328827516,0.1262172090027888 +10,481.332938877034,0.0,0.0,90.04225642173755,0.124807125001098 +11,494.5105077458341,0.0,0.0,92.50736516303382,0.1282240000000456 +12,505.9614395539435,0.0,0.0,94.64947440770578,0.1311931669988553 +13,431.9192625401392,0.0,0.0,80.79851148741447,0.1119944159981969 +14,482.32457080883734,0.0,0.0,90.22775957240025,0.125064249998104 +15,487.23500493783496,0.0,0.0,91.1463473798684,0.1263375000016822 +16,490.8859305301352,0.0,0.0,91.8293207477944,0.1272841659992991 +17,492.7372712254749,0.0,0.0,92.17564837291538,0.1277642090026347 +18,491.3188354948492,0.0,0.0,91.91030365316124,0.127396416002739 +19,487.494200264288,0.0,0.0,91.19483467455105,0.1264047080003365 +20,491.90504470972667,0.0,0.0,92.019964962786,0.1275484170000709 +21,489.6739895004024,0.0,0.0,91.6026046929534,0.1269699160002346 +22,497.94691303592106,0.0,0.0,93.1502085284202,0.129115042000194 +23,489.3804086070156,0.0,0.0,91.54768494001787,0.1268937920031021 +24,489.13647389090073,0.0,0.0,91.50205242563018,0.1268305410012544 +25,488.2921993203388,0.0,0.0,91.34411520331948,0.1266116250008053 +26,488.2168333511135,0.0,0.0,91.33001660050562,0.1265920829973765 +27,488.240775211832,0.0,0.0,91.33449536974808,0.1265982909972081 +28,480.867734774439,0.0,0.0,89.95523136338183,0.1246864999993704 +29,492.06428817424865,0.0,0.0,92.04975440728032,0.1275897080013237 +0,408.3218391023153,0.0,0.0,82.59472985038228,0.1260498749979888 +1,414.74347979123286,0.0,0.0,83.8936897077914,0.128032249998796 +2,413.8073026522728,0.0,0.0,83.70432119873855,0.1277432499991846 +3,414.58259013722255,0.0,0.0,83.86114518962916,0.1279825829988112 +4,405.3386539625768,0.0,0.0,81.99129562983686,0.1251289589999942 +5,412.74047210885584,0.0,0.0,83.48852431478208,0.1274139169981936 +6,413.9982892718827,0.0,0.0,83.74295368600988,0.127802208000503 +7,409.3646465046534,0.0,0.0,82.80566736935371,0.1263717920010094 +8,412.4757866594092,0.0,0.0,83.43498413862977,0.1273322080014622 +9,412.46337016487814,0.0,0.0,83.43247254871889,0.1273283750015252 +10,410.6350162053592,0.0,0.0,83.06263584909651,0.1267639580000832 +11,412.46282918595386,0.0,0.0,83.43236312031262,0.1273282080001081 +12,413.48687415937496,0.0,0.0,83.63950540327329,0.1276443329988978 +13,406.12851536435767,0.0,0.0,82.15106761078886,0.1253727910007001 +14,409.1943076028259,0.0,0.0,82.77121147150024,0.1263192079968575 +15,363.8779890686815,0.0,0.0,73.60469445303713,0.1123299579994636 +16,406.66274208677544,0.0,0.0,82.25913019180082,0.1255377079978643 +17,361.25707207713594,0.0,0.0,73.07453929074433,0.1115208749979501 +18,411.9619420265209,0.0,0.0,83.3310444161506,0.1271735830014222 +19,411.5208471033168,0.0,0.0,83.24182039595,0.1270374160012579 +20,411.8797430808043,0.0,0.0,83.31441733656462,0.1271482080010173 +21,410.98729740297114,0.0,0.0,83.13389476194843,0.1268727080023381 +22,408.68464825300214,0.0,0.0,82.6681183418088,0.126161875003163 +23,430.42633868348526,0.0,0.0,87.06599490786343,0.1328735839997534 +24,394.2393637064164,0.0,0.0,79.7461478261975,0.1217025830010243 +25,398.69146909006815,0.0,0.0,80.64671303288978,0.1230769579997286 +26,393.4677205138221,0.0,0.0,79.59006099730456,0.121464375002688 +27,399.4925386960174,0.0,0.0,80.80875219258839,0.1233242499984044 +28,418.3888499209973,0.0,0.0,84.63106971600862,0.1291575840004952 +29,409.7174654168141,0.0,0.0,82.87703505029891,0.1264807079969614 +0,756.2184801416678,0.799068530066483,0.0,114.00044362281824,0.126946249998582 +1,771.6145841487266,0.8153370325174764,0.0,116.32141663915996,0.1295307910004339 +2,770.6520405952925,0.8143199477958447,0.0,116.17631255220718,0.1293692090002878 +3,760.7698703880842,0.8038778183997719,0.0,114.68656875836749,0.127710290998948 +4,773.3791003905017,0.8172015325748268,0.0,116.58741864734196,0.1298270000006596 +5,741.8921516153674,0.7839304204098454,0.0,111.84073997847128,0.1245412919997761 +6,680.491389862858,0.7190504713912117,0.0,102.58453391847954,0.1142339580001134 +7,773.1125247644942,0.8169198518182477,0.0,116.54723219273669,0.129782250001881 +8,747.8466649423686,0.7902223378072843,0.0,112.7383868605059,0.1255408750002971 +9,741.2949626305472,0.7832993925563833,0.0,111.750713338044,0.1244410420003987 +10,783.6109880374589,0.8280131956544275,0.0,118.12988258003166,0.1315446250009699 +11,766.177340751199,0.8095916954179887,0.0,115.50174854629972,0.1286180420029268 +12,746.0029742322481,0.7882741769723927,0.0,112.46044924806137,0.1252313749973836 +13,753.3598660311619,0.7960479366331126,0.0,113.56950562632406,0.1264663750007457 +14,768.9815972583563,0.8125548511513472,0.0,115.9244920975922,0.1290887920004024 +15,750.7725454820466,0.7933140092268356,0.0,113.17946531636188,0.1260320420005882 +16,768.1193218865451,0.8116437161659438,0.0,115.79450350634131,0.1289440420005121 +17,765.9996196796509,0.8094039040334443,0.0,115.47495697543806,0.1285882080010196 +18,726.3257728185281,0.7674819947890932,0.0,109.49409792324396,0.1219281670018972 +19,790.462774080707,0.8352532284566974,0.0,119.16279392648885,0.1326948329988226 +20,751.1743926154271,0.7937386264593074,0.0,113.24004404152788,0.1260995000011462 +21,778.7111134340045,0.8228356765912079,0.0,117.391223193679,0.1307220839989895 +22,774.9388388883993,0.8188496514472585,0.0,116.82255027314224,0.1300888330006273 +23,773.3254873958255,0.8171448816756841,0.0,116.5793364523976,0.1298179999976128 +24,718.8336035742693,0.7595652923780418,0.0,108.3646483792673,0.1206704579999495 +25,755.5850547483867,0.7983992125197588,0.0,113.9049543194856,0.1268399170003249 +26,756.88342996767,0.7997711583332929,0.0,114.1006852555498,0.1270578749972628 +27,750.8055531941408,0.7933488872742209,0.0,113.18444125112218,0.1260375829988334 +28,755.5498071856175,0.79836196770373,0.0,113.89964072573216,0.1268339999987802 +29,760.1081492584486,0.8031786017788388,0.0,114.586813853781,0.1275992080009018 +0,369.911488017962,0.937586825790073,0.0,81.70399481884921,0.1261905419996765 +1,373.35426193535744,0.9463129658902878,0.0,82.46441559901079,0.1273650000002817 +2,358.4963540466036,0.908653744302064,0.0,79.182683432037,0.1222964160006085 +3,373.89045980281225,0.9476720262948078,0.0,82.5828480056904,0.1275479169999016 +4,371.6002019054112,0.9418670818639914,0.0,82.07698856243354,0.1267666250023467 +5,373.2398182137489,0.94602289399701,0.0,82.43913790545372,0.1273259589979716 +6,372.4002203609801,0.9438948284699412,0.0,82.25369219523775,0.1270395409992488 +7,372.493048138222,0.944130112054876,0.0,82.27419547906776,0.1270712080004159 +8,354.8348264522892,0.8993731457105184,0.0,78.37394555477375,0.1210473329992964 +9,373.6127122524731,0.9469680404697426,0.0,82.52150066950614,0.1274531669987482 +10,374.8352147805899,0.9500666256772444,0.0,82.79152023758844,0.1278702079980576 +11,384.5376914216299,0.9746587634476,0.0,84.934549386148,0.1311800829971616 +12,371.5249623586229,0.9416763778438888,0.0,82.06037006925317,0.1267409579995728 +13,357.59447038788807,0.9063678076274886,0.0,78.98348037896686,0.1219887500010372 +14,373.0092159450698,0.9454384037713364,0.0,82.38820375721647,0.1272472920027212 +15,371.84033114336125,0.9424757193821052,0.0,82.1300269747263,0.1268485420005163 +16,371.0299297507992,0.940421655926711,0.0,81.95103001647053,0.1265720839983259 +17,372.40693906507727,0.9439118578638692,0.0,82.25517618528004,0.1270418329986569 +18,374.4937098828595,0.9492010388992546,0.0,82.71609053264933,0.1277537079986359 +19,376.05784337105575,0.9531655304055002,0.0,83.06156764962216,0.1282872920019144 +20,353.51399982424726,0.8960253458023829,0.0,78.08220870563622,0.1205967499990947 +21,371.27811733858584,0.9410507183380468,0.0,82.0058483123155,0.1266567499988014 +22,326.0047805771626,0.8262997968824616,0.0,72.00612515690023,0.1112123339989921 +23,364.4662173121387,0.9237851076980071,0.0,80.50127367082634,0.124332957999286 +24,371.9971566406658,0.9428732131744948,0.0,82.16466571949168,0.1269020409999939 +25,369.4635977484595,0.9364515920120275,0.0,81.60506730390526,0.1260377500002505 +26,351.4371223894278,0.8907612407806625,0.0,77.62347955374345,0.1198882499993487 +27,373.56703267890146,0.9468522598903992,0.0,82.5114112190205,0.1274375840002903 +28,372.7337900385485,0.9447403024422338,0.0,82.32736921282324,0.127153334000468 +29,371.3744862190492,0.9412949772909728,0.0,82.0271337353562,0.1266896250017453 +0,364.47641693789086,0.9385083386298458,0.0,79.50506354392837,0.1266642499977024 +1,366.80155515710345,0.9444954519403068,0.0,80.01225757151457,0.127472290998412 +2,362.06830888108055,0.9323075821841325,0.0,78.97977089074149,0.1258273749990621 +3,368.62949009525886,0.9492022919502712,0.0,80.4109941609301,0.1281075419974513 +4,364.04970666994177,0.9374095812726108,0.0,79.41198309923689,0.1265159579997998 +5,364.27990957710176,0.9380023421150312,0.0,79.46219841060193,0.126595959001861 +6,364.5455978038035,0.938686475860447,0.0,79.52015431217787,0.1266882919990166 +7,364.97890043241904,0.9398022082129606,0.0,79.61467278146938,0.126838874999521 +8,362.5881782291163,0.9336462194606636,0.0,79.09317259145337,0.1260080419997393 +9,367.5248896744274,0.9463580017366168,0.0,80.17004214711623,0.1277236669993726 +10,364.9063615290765,0.9396154242058252,0.0,79.59884950772204,0.1268136660000891 +11,363.7304249899235,0.936587447095628,0.0,79.3423365896725,0.1264049999990675 +12,362.0443277985965,0.9322458321096838,0.0,78.97453977729178,0.1258190410007955 +13,363.0370653915496,0.9348020811995024,0.0,79.19109059304355,0.126164040997537 +14,345.2121509762036,0.8889038281528141,0.0,75.30285287065982,0.1199694579991046 +15,367.354754593209,0.9459199125078032,0.0,80.13292973101818,0.1276645409998309 +16,365.25202413546896,0.940505487933891,0.0,79.67425062068533,0.1269337920020916 +17,365.2405141303859,0.9404758502529708,0.0,79.67173988571597,0.1269297920007375 +18,361.5053978912717,0.930858114857054,0.0,78.85698030146187,0.1256317500010482 +19,364.44404506429737,0.9384249826926916,0.0,79.4980021052523,0.1266529999993508 +20,344.5011695796442,0.8870730870176604,0.0,75.14776294306752,0.1197223750023113 +21,363.56424934911365,0.9361595532256008,0.0,79.3060878661116,0.1263472499995259 +22,363.97441398999007,0.937215706429991,0.0,79.39555913042638,0.1264897919973009 +23,365.373837350975,0.9408191508025844,0.0,79.70082234656178,0.1269761250005103 +24,364.3770223295719,0.9382524025407406,0.0,79.48338210095132,0.1266297080001095 +25,360.0803158632428,0.9271886007146218,0.0,78.54612003196725,0.1251364999989164 +26,346.20141255415393,0.8914511266798151,0.0,75.51864544587576,0.1203132499977073 +27,365.1993888966288,0.9403699548561346,0.0,79.66276903281255,0.126915500000905 +28,364.4625099886328,0.9384725289389112,0.0,79.50202995153919,0.1266594170010648 +29,363.5956601399207,0.936240434423191,0.0,79.31293965899319,0.1263581659986812 +0,395.6846676399492,0.0,0.0,81.77438952733165,0.1266846669968799 +1,396.35098819705064,0.0,0.0,81.91209503184734,0.1268979999986186 +2,396.2011939034781,0.0,0.0,81.88113771175549,0.1268500410005799 +3,386.0664705823485,0.0,0.0,79.78663954088394,0.1236052499989455 +4,386.5682950767456,0.0,0.0,79.89034937610185,0.1237659170001279 +5,397.43076650889714,0.0,0.0,82.13524801071497,0.1272437080006057 +6,395.5042923039554,0.0,0.0,81.73711215928337,0.1266269169973384 +7,398.8541200081209,0.0,0.0,82.42940614470292,0.1276994170002581 +8,398.01523257383474,0.0,0.0,82.25603701157462,0.1274308339998242 +9,397.0782147101372,0.0,0.0,82.06238769926466,0.1271308329996827 +10,396.5700154013084,0.0,0.0,81.95736040951509,0.12696812500144 +11,396.4767043441066,0.0,0.0,81.93807622854256,0.1269382499995117 +12,396.02576599844105,0.0,0.0,81.84488280724774,0.1267938749988388 +13,399.8958961197486,0.0,0.0,82.64470537795509,0.1280329580004036 +14,396.5793855518793,0.0,0.0,81.9592968968379,0.1269711250024556 +15,401.0316391948003,0.0,0.0,82.87942434540003,0.128396584001166 +16,480.5304403215797,0.0,0.0,99.30908781725496,0.1538493750013003 +17,401.0917611744532,0.0,0.0,82.89184948740166,0.1284158329981437 +18,395.6790705523099,0.0,0.0,81.7732328021354,0.1266828750012791 +19,395.4228251241656,0.0,0.0,81.72027569975218,0.1266008339989639 +20,389.6295971968901,0.0,0.0,80.52301506296472,0.1247460410013445 +21,397.2721267874588,0.0,0.0,82.10246264540683,0.1271929169997747 +22,377.60744195350105,0.0,0.0,78.0384497354916,0.1208969589970365 +23,403.68586149940114,0.0,0.0,83.42796065822493,0.1292463749996386 +24,397.46993997509657,0.0,0.0,82.14334381665871,0.1272562500016647 +25,396.65291621411296,0.0,0.0,81.97449315160198,0.1269946669999626 +26,396.9833419725365,0.0,0.0,82.0427807727533,0.1271004580012231 +27,398.6449814389623,0.0,0.0,82.38618440724828,0.1276324579994252 +28,376.2813037352024,0.0,0.0,77.76438265101989,0.1204723749979166 +29,400.714743939528,0.0,0.0,82.81393301312637,0.1282951250032056 +0,317.8188162702387,0.0,0.0,68.6825576445368,0.110928750000312 +1,361.5172471330565,0.0,0.0,78.12605136820386,0.1261808749986812 +2,365.5671462435493,0.0,0.0,79.00125892317271,0.1275944170010916 +3,360.8413308938636,0.0,0.0,77.97998180377071,0.125944958999753 +4,363.29860543222503,0.0,0.0,78.511013610226,0.126802624999982 +5,363.1196587906563,0.0,0.0,78.47234216474938,0.1267401670011168 +6,365.1773761586178,0.0,0.0,78.91702726363606,0.1274583749982412 +7,361.5755026402199,0.0,0.0,78.13864073366628,0.1262012080005661 +8,320.61966160542903,0.0,0.0,69.28783716651473,0.1119063330006611 +9,360.787490463621,0.0,0.0,77.96834656298437,0.1259261669983971 +10,363.8756795742305,0.0,0.0,78.63572280299373,0.1270040420022269 +11,364.54932954617544,0.0,0.0,78.78130261344465,0.1272391670026991 +12,364.5024111287863,0.0,0.0,78.77116326126676,0.1272227910012588 +13,363.3991207344049,0.0,0.0,78.53273557155335,0.1268377079977654 +14,362.13132653995166,0.0,0.0,78.25875762127396,0.1263952080007584 +15,364.4982367205501,0.0,0.0,78.77026114654089,0.1272213340016605 +16,360.4311471743661,0.0,0.0,77.89133863503122,0.1258017919972189 +17,362.40422461795254,0.0,0.0,78.31773253721299,0.1264904580020811 +18,361.2869669971778,0.0,0.0,78.0762864458733,0.1261004999978467 +19,363.55037360229466,0.0,0.0,78.56542222598009,0.1268904999997175 +20,363.30994538834346,0.0,0.0,78.51346424294476,0.1268065830008709 +21,363.6459953773748,0.0,0.0,78.58608666667018,0.1269238750028307 +22,366.4062541016947,0.0,0.0,79.18259517794013,0.1278872920011053 +23,362.061848555091,0.0,0.0,78.24374301088613,0.1263709580016438 +24,362.24270905991347,0.0,0.0,78.28282805372238,0.1264340839989017 +25,362.0681746289213,0.0,0.0,78.24511011348758,0.1263731660001212 +26,362.6975363200963,0.0,0.0,78.38111896010236,0.1265928329994494 +27,358.52527861331754,0.0,0.0,77.47946897657832,0.125136584003485 +28,355.4742151019403,0.0,0.0,76.82011580184641,0.1240716669999528 +29,363.61639058594017,0.0,0.0,78.57968889318992,0.1269135420006932 +0,365.0774252251925,0.0,0.0,78.66773310494989,0.1270807500004593 +1,367.5883720326905,0.0,0.0,79.20879776588075,0.1279547920021286 +2,350.57697332024804,0.0,0.0,75.54314198662561,0.1220332500015501 +3,361.880120821408,0.0,0.0,77.97877051205046,0.1259677919988462 +4,363.7555786798216,0.0,0.0,78.3828985354807,0.1266206250002142 +5,364.4711468988576,0.0,0.0,78.53709084041105,0.1268697090017667 +6,369.5311022105454,0.0,0.0,79.62742178524363,0.1286310420000518 +7,362.71598461213733,0.0,0.0,78.15888438669123,0.1262587499986693 +8,364.6465054066651,0.0,0.0,78.57487749972414,0.1269307500006107 +9,357.7011552221953,0.0,0.0,77.07827728048227,0.1245131249997939 +10,362.3068520991731,0.0,0.0,78.07072356076623,0.1261163339986524 +11,363.63528023405354,0.0,0.0,78.35697634645797,0.1265787500014994 +12,364.8904548594365,0.0,0.0,78.62744429546584,0.1270156669997959 +13,363.9725956478543,0.0,0.0,78.42966185674032,0.1266961670007731 +14,364.7223961358544,0.0,0.0,78.59123061064388,0.1269571670018194 +15,365.02679214761287,0.0,0.0,78.65682257157232,0.1270631250008591 +16,361.9313514452685,0.0,0.0,77.98980980609107,0.1259856249998847 +17,345.0865750669766,0.0,0.0,74.36005819512079,0.1201220830007514 +18,364.1344290208866,0.0,0.0,78.46453408853974,0.1267525000002933 +19,364.22934916661006,0.0,0.0,78.48498770241478,0.1267855410005722 +20,363.6205571430931,0.0,0.0,78.3538037805579,0.1265736250024929 +21,363.79603630978664,0.0,0.0,78.39161643972851,0.1266347080018022 +22,362.8233554694112,0.0,0.0,78.18202090886338,0.1262961249994987 +23,351.26608593148893,0.0,0.0,75.69163357562735,0.1222731250018114 +24,365.8098711297876,0.0,0.0,78.82556225283807,0.1273357089994533 +25,362.3659829171635,0.0,0.0,78.08346520702132,0.1261369169988029 +26,362.8579468409589,0.0,0.0,78.1894747380969,0.1263081659999443 +27,372.2966479317493,0.0,0.0,80.22334801253913,0.1295937079994473 +28,364.5761218333096,0.0,0.0,78.55971108355833,0.1269062499995925 +29,346.7069542397634,0.0,0.0,74.70922126981647,0.120686124999338 +0,387.6502443930199,0.0,0.0,86.02535538551267,0.1311169590007921 +1,374.809694483216,0.0,0.0,83.17584636207354,0.1267738329988788 +2,374.6911881918766,0.0,0.0,83.14954805328787,0.1267337499994028 +3,376.8682974787062,0.0,0.0,83.63268098773466,0.1274701250004 +4,377.59806480196255,0.0,0.0,83.79462721178557,0.1277169579989276 +5,378.2879220367919,0.0,0.0,83.94771679356664,0.1279502920006052 +6,358.1112551934011,0.0,0.0,79.47021430052544,0.1211258330004056 +7,375.73853630594704,0.0,0.0,83.38197017871778,0.1270880000010947 +8,366.0266051541871,0.0,0.0,81.22674819474109,0.1238030829990748 +9,374.52759493270366,0.0,0.0,83.11324427568788,0.1266784170002211 +10,368.7047238020264,0.0,0.0,81.82106255872576,0.124708917002863 +11,376.9672168096676,0.0,0.0,83.65463265866363,0.1275035830003617 +12,372.8468118709308,0.0,0.0,82.74025351325109,0.1261099170005764 +13,376.62154905599033,0.0,0.0,83.57792384244205,0.1273866659976192 +14,373.9790358237752,0.0,0.0,82.99151084980181,0.126492874998803 +15,378.91889124657337,0.0,0.0,84.08773824665191,0.1281637079991924 +16,375.11520378706575,0.0,0.0,83.24364342093624,0.1268771670002024 +17,375.4187381278567,0.0,0.0,83.31100220611935,0.1269798329994955 +18,376.0866668397095,0.0,0.0,83.45922552247323,0.1272057500027585 +19,375.7424773478016,0.0,0.0,83.38284475452687,0.1270893330001854 +20,377.3000739401179,0.0,0.0,83.72849860703786,0.1276161669993598 +21,375.5998251354537,0.0,0.0,83.35118810670772,0.127041083000222 +22,376.5993780980406,0.0,0.0,83.57300377708816,0.1273791669991624 +23,370.4305938208771,0.0,0.0,82.20405878759003,0.1252926669985754 +24,378.135167384867,0.0,0.0,83.91381826413529,0.1278986249999434 +25,331.56981324082483,0.0,0.0,73.58027353706892,0.1121485830008168 +26,373.97989913536014,0.0,0.0,82.99170243148396,0.1264931670011719 +27,375.5505517329566,0.0,0.0,83.34025360576987,0.1270244170009391 +28,376.2125673869759,0.0,0.0,83.48716472663595,0.1272483339998871 +29,376.9114124413168,0.0,0.0,83.64224883925715,0.1274847079985193 +0,370.7657952094184,0.8819680398394216,0.0,86.46678975194945,0.1283158750011352 +1,370.427004003404,0.8811621321215466,0.0,86.38777979914701,0.1281986249996407 +2,368.30637045421696,0.8761176241362891,0.0,85.8932239970539,0.1274647089994687 +3,366.0898987296504,0.8708451387896532,0.0,85.37631764518561,0.1266976250008156 +4,365.3635563970168,0.8691173345217234,0.0,85.20692637291819,0.1264462500002992 +5,365.6555120565184,0.8698118310585068,0.0,85.27501374492822,0.1265472909981326 +6,366.2637499040558,0.8712586914460614,0.0,85.41686171138502,0.126757792000717 +7,361.86439951110856,0.8607936310419783,0.0,84.39088328946164,0.125235250001424 +8,365.87655995432505,0.870337654054204,0.0,85.32656462246793,0.1266237919990089 +9,366.39377347875296,0.8715679881470794,0.0,85.44718468411175,0.126802790997317 +10,366.241235094044,0.8712051338010197,0.0,85.41161100226151,0.126749999999447 +11,324.8559755248956,0.7727589536731277,0.0,75.76009895818471,0.1124272499982907 +12,364.00176890343914,0.8658779498160492,0.0,84.88934208004267,0.1259749579985509 +13,370.64624309447254,0.8816836523747746,0.0,86.43890884243463,0.1282745000025897 +14,326.7121034467617,0.7771742625449043,0.0,76.19296904719081,0.1130696250002074 +15,365.4347097682464,0.8692865923123884,0.0,85.22352014631838,0.1264708749986312 +16,364.31912885113064,0.8666328774134855,0.0,84.96335402026826,0.1260847909979929 +17,367.3003498378106,0.8737245284339501,0.0,85.65860857608226,0.1271165419966564 +18,364.4875622670919,0.8670335424468792,0.0,85.00263460373444,0.1261430830018071 +19,367.8202130229152,0.8749611654707955,0.0,85.77984656865607,0.1272964579984545 +20,369.56100457847634,0.879102115191252,0.0,86.18581890855775,0.1278989170023123 +21,362.0236819457481,0.8611725279587786,0.0,84.42802976026641,0.1252903750028053 +22,372.89256889185015,0.8870271538140991,0.0,86.96277750277456,0.1290519159992982 +23,367.7721783573597,0.8748469018564823,0.0,85.76864433969898,0.127279833999637 +24,364.08736966555944,0.8660815746847709,0.0,84.90930514890312,0.1260045829985756 +25,371.54679777839993,0.88382586845731,0.0,86.64892841144935,0.1285861670003214 +26,369.0100766174518,0.8777915820726209,0.0,86.05733625781194,0.1277082499982498 +27,358.9301354093047,0.853813679839151,0.0,83.70657961192292,0.1242197499996109 +28,369.901119153681,0.8799111709053711,0.0,86.26513748606888,0.1280166249998728 +29,375.44915809289387,0.8931087017763258,0.0,87.55900310876363,0.1299367089995939 +0,371.40849795993904,0.0,0.0,81.18591340417477,0.1301545829992392 +1,363.05448090538937,0.0,0.0,79.35981489298555,0.1272270419976848 +2,362.5024300899116,0.0,0.0,79.23914250679553,0.1270335840017651 +3,363.9394521290133,0.0,0.0,79.55326010902385,0.1275371669980813 +4,363.6331643510986,0.0,0.0,79.48630888644514,0.1274298330026795 +5,361.9330179821863,0.0,0.0,79.11467512836181,0.1268340419992455 +6,367.93805246242096,0.0,0.0,80.42731124729627,0.1289384170013363 +7,364.20709368215694,0.0,0.0,79.61176368144136,0.1276309579989174 +8,364.8000479429753,0.0,0.0,79.74137712199497,0.1278387499987729 +9,346.9887368845201,0.0,0.0,75.84801559378747,0.1215970410012232 +10,361.26503984955855,0.0,0.0,78.96866227424222,0.1265999589995772 +11,359.37084330186684,0.0,0.0,78.55461122873282,0.1259361659977003 +12,366.3560906000842,0.0,0.0,80.08151135453714,0.128384042000107 +13,363.7586055346067,0.0,0.0,79.51372898350148,0.127473791999364 +14,362.0657101640452,0.0,0.0,79.14368021587322,0.1268805420004355 +15,356.5336590933504,0.0,0.0,77.93443319637895,0.1249419169980683 +16,363.2199894331879,0.0,0.0,79.39599328168508,0.12728504199913 +17,364.2592916495958,0.0,0.0,79.62317359717468,0.127649250000104 +18,363.8922479704996,0.0,0.0,79.54294178635095,0.1275206250029441 +19,364.0480086058659,0.0,0.0,79.57698939033439,0.1275752090004971 +20,362.696591566812,0.0,0.0,79.2815841227969,0.1271016250029788 +21,362.9481816283438,0.0,0.0,79.33657901133893,0.1271897909973631 +22,362.7376119992364,0.0,0.0,79.29055074928202,0.1271160000032978 +23,362.2359756302134,0.0,0.0,79.18089842027075,0.1269402090001676 +24,363.4732460078574,0.0,0.0,79.45135245212167,0.1273737919982522 +25,363.7713268548058,0.0,0.0,79.51650972763022,0.1274782499967841 +26,363.4419763123466,0.0,0.0,79.44451723212573,0.1273628339986316 +27,363.1935936838931,0.0,0.0,79.39022345404717,0.1272757920014555 +28,363.6311440010843,0.0,0.0,79.48586725960514,0.1274291250010719 +29,364.6958917231345,0.0,0.0,79.71860968966385,0.1278022500009683 +0,367.9349229619553,0.9168659824617252,0.0,80.51441645987966,0.1279467080021277 +1,357.9604753708896,0.8920104139376114,0.0,78.33172931281764,0.1244781660025182 +2,362.381369627801,0.9030269478496196,0.0,79.29914419820177,0.126015500001813 +3,351.79559946216557,0.8766480097349765,0.0,76.98268263265294,0.1223343749988998 +4,365.53192544718695,0.9108778945153712,0.0,79.98857362577574,0.1271110829984536 +5,364.9481606200783,0.9094231967459264,0.0,79.86082961054043,0.1269080830024904 +6,363.7414525557589,0.9064161715741108,0.0,79.59676825193395,0.1264884590018482 +7,363.0980142928552,0.9048127721187902,0.0,79.4559660256908,0.1262647080002352 +8,366.083701130626,0.9122528777597512,0.0,80.10931752475443,0.1273029590010992 +9,344.9835699241291,0.8596729476651117,0.0,75.49202070051777,0.1199655410018749 +10,364.2674620465664,0.9077269474164552,0.0,79.71187378979317,0.126671374997386 +11,356.94907545848963,0.8894900818993281,0.0,78.11040682160396,0.1241264589989441 +12,363.1582858551459,0.9049629642906266,0.0,79.46915512344725,0.1262856670000474 +13,359.5839253746005,0.8960559284830838,0.0,78.68698542345895,0.1250427089980803 +14,368.6025630174474,0.9185296909525684,0.0,80.66051471290888,0.1281788750020496 +15,350.1462711269131,0.8725380083457918,0.0,76.62176362177304,0.1217608330007351 +16,363.76769034068354,0.90648155414845,0.0,79.60250981059167,0.1264975830017647 +17,362.7323244423033,0.9039015006868656,0.0,79.37594289365032,0.126137541999924 +18,357.04397032512867,0.889726552725286,0.0,78.13117246339456,0.1241594580023957 +19,364.75057778178666,0.9089308352661044,0.0,79.8175929783679,0.1268393749996903 +20,364.3763787754979,0.9079983596620622,0.0,79.73570780587961,0.1267092500020226 +21,344.0629928936957,0.8573789393751531,0.0,75.29057278735141,0.1196454169985372 +22,367.629021552613,0.916103699300466,0.0,80.44747670523722,0.1278403329997672 +23,362.6380248461172,0.903666513229826,0.0,79.35530751362657,0.1261047499974665 +24,364.95846420761063,0.9094488725062748,0.0,79.86308432268065,0.1269116660005238 +25,364.2674620570281,0.9077269474425252,0.0,79.71187379208249,0.126671375001024 +26,370.1547160771413,0.9223975389093508,0.0,81.00016906496558,0.1287186250010563 +27,346.3974512300538,0.8631962328759992,0.0,75.80141733885164,0.1204572079986974 +28,365.8709001456654,0.9117225938101492,0.0,80.06275073792088,0.1272289589978754 +29,365.1832510520659,0.9100090243106396,0.0,79.91227394964912,0.1269898339996871 +0,368.3387189861676,0.4349930365934028,0.0,80.30640675570514,0.1272624580014962 +1,367.3617632479832,0.4338392916264337,0.0,80.09340768488006,0.1269249159995524 +2,367.4705435091116,0.4339677566877226,0.0,80.11712431157956,0.1269625000022642 +3,365.7583109356394,0.4319456797023357,0.0,79.74381779120044,0.1263709169979847 +4,367.8431876503508,0.4344078342527762,0.0,80.19836940051252,0.127091250000376 +5,353.7846134202577,0.417805230238313,0.0,77.13327327476549,0.1222339580017433 +6,366.59453018695814,0.4329332206059644,0.0,79.92613303494727,0.1266598339971096 +7,367.1217775287856,0.4335558782589219,0.0,80.04108521703175,0.1268420000014885 +8,376.1033465977831,0.4441627458004343,0.0,81.99927614777249,0.1299451669983682 +9,370.55613254945854,0.4376117117680742,0.0,80.78985448025985,0.128028582999832 +10,366.9266538069649,0.4333254450845334,0.0,79.99854370791385,0.1267745839977578 +11,368.62272447010054,0.4353284355115649,0.0,80.36832655598121,0.1273605829992448 +12,364.356853467442,0.4302906154684544,0.0,79.43826747109927,0.125886707999598 +13,366.21742300664187,0.4324878723733961,0.0,79.8439148997039,0.1265295420016627 +14,367.6326256151,0.4341591690585301,0.0,80.15246198003634,0.1270184999993944 +15,367.63057643996024,0.4341567490660867,0.0,80.15201521220062,0.1270177920014248 +16,368.71896362732775,0.4354420900395404,0.0,80.3893089303767,0.1273938340018503 +17,367.2385171663555,0.4336937430198602,0.0,80.06653717289728,0.1268823339996743 +18,366.36913475733087,0.4326670377766444,0.0,79.87699158953436,0.1265819590007595 +19,367.5113042606,0.4340158934763626,0.0,80.12601110332848,0.1269765830002143 +20,368.5741258840442,0.4352710425592818,0.0,80.35773093402126,0.1273437919990101 +21,369.1749382374864,0.4359805774970315,0.0,80.48872199945197,0.1275513750006212 +22,366.9844187224905,0.4333936630988714,0.0,80.01113780286857,0.1267945420004252 +23,368.7505580598764,0.4354794017785604,0.0,80.39619725142654,0.1274047500010056 +24,368.815561671605,0.4355561683985161,0.0,80.41036955049528,0.1274272090013255 +25,368.61585334777465,0.4353203209957368,0.0,80.36682849152064,0.1273582089997944 +26,357.5469937001284,0.4222484482287126,0.0,77.95355967299311,0.1235338750011578 +27,367.53795807863906,0.4340473705507183,0.0,80.13182225551724,0.1269857919978676 +28,363.3688037875811,0.4291237690078629,0.0,79.22284966299009,0.1255453329977172 +29,366.4730872800551,0.4327898014753557,0.0,79.89965565698876,0.1266178750011022 +0,369.7851773109551,0.0,0.0,80.6080421172184,0.1269397500000195 +1,374.92032490521166,0.0,0.0,81.72743310137321,0.1287025419987912 +2,370.56236276808175,0.0,0.0,80.7774577723199,0.1272065420016588 +3,372.4193265518902,0.0,0.0,81.18225013307348,0.1278439999987313 +4,367.7597386710104,0.0,0.0,80.16652457348731,0.1262444580024748 +5,368.7061243339259,0.0,0.0,80.37282352773468,0.1265693330024078 +6,372.16928847789154,0.0,0.0,81.12774529935797,0.1277581670001382 +7,368.1525174790658,0.0,0.0,80.25214490833339,0.1263792909994663 +8,368.5888759246009,0.0,0.0,80.34726499998142,0.1265290840019588 +9,369.231692806655,0.0,0.0,80.487390168543,0.1267497499975434 +10,370.5616315896888,0.0,0.0,80.77729838556695,0.127206291002949 +11,324.22526989167767,0.0,0.0,70.67661392202751,0.1112999580000178 +12,371.52986822542886,0.0,0.0,80.98836054895796,0.1275386669985891 +13,323.38193430333433,0.0,0.0,70.49277845539667,0.1110104580002371 +14,366.1982074246982,0.0,0.0,79.82613241016314,0.1257084160024533 +15,370.7117773569245,0.0,0.0,80.81002808127047,0.127257832999021 +16,366.30344520570907,0.0,0.0,79.8490727874539,0.1257445419978466 +17,369.4200698015571,0.0,0.0,80.52845374185712,0.126814415998524 +18,370.4960902757074,0.0,0.0,80.76301128775451,0.1271837919994141 +19,373.48296353850094,0.0,0.0,81.41410825036641,0.1282091249995574 +20,373.687726585192,0.0,0.0,81.45874375580162,0.1282794159997138 +21,371.26028632123416,0.0,0.0,80.92959543120665,0.1274461249995511 +22,371.68098115026265,0.0,0.0,81.02130107160961,0.1275905410002451 +23,370.3033407611029,0.0,0.0,80.72099456576393,0.1271176250011194 +24,369.25851641569744,0.0,0.0,80.49323734344371,0.1267589579983905 +25,370.04164746358737,0.0,0.0,80.66394905490458,0.127027791000728 +26,370.3935237746353,0.0,0.0,80.74065321245698,0.1271485830002348 +27,324.67388364545184,0.0,0.0,70.77440550096954,0.1114539580012206 +28,366.14965808656615,0.0,0.0,79.8155493275167,0.1256917499995324 +29,367.94374895375495,0.0,0.0,80.20663626408923,0.1263076249997539 +0,369.9041744801996,0.7311672810929373,0.0,80.96015894283615,0.1263925839994044 +1,362.65247416911905,0.7168332822749883,0.0,79.3729943464487,0.1239147499982209 +2,373.5020987437511,0.7382790810748,0.0,81.74762915900968,0.1276219589999527 +3,371.86416119762464,0.7350414686745501,0.0,81.389137167782,0.1270622920019377 +4,371.1264048995963,0.7335831902777286,0.0,81.22766597802486,0.1268102079993696 +5,370.24561255512725,0.7318421811511949,0.0,81.0348887856505,0.126509249999799 +6,372.7495863983696,0.7367916352887809,0.0,81.5829283437941,0.1273648330025025 +7,359.0990580845462,0.7098094589272251,0.0,78.59526554303275,0.1227005830005509 +8,376.1469165837081,0.7435069330495576,0.0,82.32649495039648,0.1285256669980299 +9,375.5150076768029,0.7422578768094935,0.0,82.18819035945118,0.1283097499981522 +10,370.9366627685933,0.7332081384464557,0.0,81.18613751161665,0.1267453749969718 +11,370.283292900175,0.7319166616175967,0.0,81.04313580456662,0.1265221249996102 +12,372.6448394186792,0.7365845882489614,0.0,81.56000258974865,0.1273290419994737 +13,352.6584027037055,0.697078603727001,0.0,77.18561266722611,0.1204998749999504 +14,371.5725957994248,0.7344651489296806,0.0,81.32532285421372,0.1269626670000434 +15,374.22509604520354,0.7397081862528732,0.0,81.90587007781814,0.1278689999999187 +16,371.6252751140856,0.7345692769550659,0.0,81.33685266647912,0.1269806669988611 +17,372.5041183310883,0.7363064333588449,0.0,81.52920325737028,0.1272809590009274 +18,376.750410858117,0.744699823798614,0.0,82.45858048970108,0.1287318750000849 +19,372.8896987536109,0.7370685869343612,0.0,81.61359444418653,0.1274127080032485 +20,371.5436924157741,0.7344080173537312,0.0,81.31899683062224,0.1269527910008037 +21,371.5862514459922,0.7344921412229856,0.0,81.32831163723603,0.1269673329989018 +22,369.79332842271106,0.7309481783737326,0.0,80.93589829629148,0.1263547090020438 +23,373.9816971078778,0.7392270742473774,0.0,81.85259785757326,0.1277858329995069 +24,373.8370748267786,0.738941208103246,0.0,81.82094467906852,0.12773641700187 +25,371.90696021152706,0.735126066905085,0.0,81.39850449912667,0.1270769160000782 +26,374.1602214709342,0.7395799525930415,0.0,81.89167111439315,0.1278468330019677 +27,370.9710506631292,0.7332761109244244,0.0,81.19366391872263,0.1267571249991306 +28,370.6072941268688,0.7325570953091747,0.0,81.1140492805977,0.1266328330020769 +29,372.7165418268792,0.7367263180764908,0.0,81.57569594701508,0.1273535420004918 +0,364.8766742429042,0.8046531454405679,0.0,80.39826011527006,0.1268683750022319 +1,365.3180233462949,0.805626441267213,0.0,80.49550858994903,0.1270218329991621 +2,366.4414736680069,0.8081039573676527,0.0,80.74305374031796,0.1274124590017891 +3,366.8088859117689,0.8089142021393416,0.0,80.82401069708921,0.1275402089995623 +4,365.4757273237976,0.8059742217928093,0.0,80.5302576607982,0.1270766669986187 +5,367.19199550640815,0.8097590638751995,0.0,80.90842646553034,0.1276734169987321 +6,362.61420279761586,0.7996637753508022,0.0,79.89973888713432,0.126081708996935 +7,368.3287445651405,0.81226590733836,0.0,81.15890190822446,0.1280686669997521 +8,365.6333076400536,0.8063217296114387,0.0,80.56497948367624,0.1271314580008038 +9,352.71420422307534,0.7778315631125432,0.0,77.71833701432827,0.1226394589975825 +10,367.2765995532215,0.8099456390037045,0.0,80.92706843045347,0.1277028340009565 +11,359.70354426494987,0.7932449749479735,0.0,79.25839374688503,0.1250696669994795 +12,367.3474216749241,0.8101018212072202,0.0,80.94267363562142,0.1277274589992885 +13,360.69265542817,0.7954262363572617,0.0,79.47633811602974,0.1254135829985898 +14,366.4704726227443,0.8081679080167108,0.0,80.74944347600302,0.1274225419983849 +15,346.4734648496929,0.7640690210780694,0.0,76.34322968938376,0.1204695409978739 +16,364.16689416594915,0.8030878856917008,0.0,80.24186457869577,0.1266215830000874 +17,364.4189058994981,0.8036436406862038,0.0,80.29739376522986,0.1267092080015572 +18,363.6532849171853,0.801955236424924,0.0,80.12869403945699,0.1264430000010179 +19,363.1788615100191,0.8009090026868013,0.0,80.02415785178955,0.1262780420001945 +20,365.202384114108,0.8053714250425978,0.0,80.47002821883956,0.1269816249987343 +21,347.2093707427358,0.765691895417225,0.0,76.50538188377107,0.1207254170003579 +22,366.7200886197396,0.8087183797550078,0.0,80.80444477718787,0.1275093339972954 +23,364.3784028286367,0.8035543203057319,0.0,80.28846917054771,0.1266951249999692 +24,361.86307987494615,0.7980073432875777,0.0,79.73423371681714,0.1258205420017475 +25,363.2277539486155,0.8010168239241726,0.0,80.03493099042359,0.1262950420023116 +26,369.8498025202089,0.8156202573265656,0.0,81.49405737787934,0.1285975419996248 +27,344.18474969213844,0.7590217764046056,0.0,75.83892582576017,0.1196737499994924 +28,365.1760195969721,0.8053132840510273,0.0,80.46421896476514,0.1269724580015463 +29,366.40300395047853,0.8080191210889907,0.0,80.73457718214165,0.1273990830013645 +0,598.6404278332444,0.5017380799853979,17.627731210153645,107.60609355420166,0.1297699579990876 +1,590.9421410181493,0.4952859202811778,17.40104533254538,106.2223203696366,0.1281011659993964 +2,596.3705986768317,0.4998356696738266,17.56089319454044,107.19808995604669,0.1292779169998539 +3,588.5562142436058,0.4932862051547235,17.330788674435954,105.79344813218304,0.1275839580011961 +4,589.6954582077027,0.4942410388956552,17.36433516653402,105.99822814182151,0.1278309170011198 +5,620.342130656027,0.5199269128815112,18.266765539237095,111.50699191598812,0.1344743330009805 +6,606.6850838626654,0.5084805418751734,17.864616371214428,109.05212688082888,0.1315138339996338 +7,617.9990687003339,0.5179631240154778,18.197771090410455,111.08582466385282,0.13396641700092 +8,603.547606389023,0.5058509300908167,17.772229343857358,108.48816280681048,0.1308337090013083 +9,600.106237032878,0.5029666176170962,17.670893832280647,107.86957392494656,0.1300877080029749 +10,607.4835312159404,0.509149743992798,17.8881276722803,109.19564842832207,0.1316869169968413 +11,593.7434442190689,0.4976337745592017,17.48353327951329,106.72585685046349,0.1287084169998706 +12,544.4200977669105,0.4562944329498608,16.031144410971777,97.85994605331348,0.1180163749995699 +13,602.5713566972332,0.5050327066244901,17.74348242607375,108.31268114739896,0.1306220829974336 +14,615.5691238090064,0.5159265160158181,18.126218262689076,110.64904013485912,0.1334396669990383 +15,584.7698319196852,0.4901127272054131,17.219293815816847,105.11284289465426,0.1267631670016271 +16,599.4523315877506,0.502418560307105,17.651638752122956,107.75203390053044,0.1299459580004622 +17,604.4494607701041,0.506606800667797,17.798785596795266,108.65027184988683,0.1310292080015642 +18,603.7200159969585,0.5059954316340379,17.777306164742534,108.51915357111336,0.1308710830016934 +19,592.0333350469189,0.4962004819636689,17.433176932990236,106.41846336514152,0.1283377090003341 +20,640.5170945999755,0.5368361411968281,18.86084309404856,115.13345774867972,0.1388477500004228 +21,606.4102175426757,0.5082501683600679,17.85652258171705,109.00271944095589,0.1314542500003881 +22,527.3991446022711,0.4420286734667299,15.52994072779778,94.80041616949802,0.1143266669969307 +23,616.3914070099612,0.516615695655664,18.150431440702327,110.7968461949514,0.1336179169993556 +24,576.81763141262,0.4834477549974464,16.985131125576952,103.68342852178569,0.1250393329974031 +25,597.0550658375118,0.5004093416529406,17.581048203406645,107.32112347316732,0.1294262920018809 +26,588.7255561438179,0.4934281355622321,17.33577516275309,105.82388747358006,0.1276206670008832 +27,574.9945015603392,0.4819197364589087,16.931446740922993,103.35571947922062,0.1246441250004863 +28,613.3936692334426,0.5141032038051986,18.062159227022644,110.25800044275492,0.1329680839990032 +29,594.1982164073472,0.4980149324529366,17.496924626846507,106.80760251340648,0.1288069999973231 +0,606.9461209242834,0.5347837400070783,20.923413827776937,110.09860247395724,0.1308225419998052 +1,602.3070446997477,0.5306962230957631,20.76348972862173,109.25708492984025,0.129822625000088 +2,605.7278726233361,0.5337103343781804,20.881416832546307,109.87761509010788,0.1305599580009584 +3,604.8394157703248,0.5329275099028138,20.85078882494759,109.7164511012418,0.1303684579979744 +4,620.1525377508962,0.546419990308626,21.37868212082499,112.49421550478836,0.133669083003042 +5,594.1234246810665,0.5234855881324447,20.4813736356819,107.77259545676706,0.1280587090004701 +6,608.4645794938132,0.5361216626411702,20.975760050835785,110.37404729625092,0.131149834000098 +7,597.649025563058,0.5265920154749121,20.602912605455938,108.41213118589752,0.1288186250021681 +8,600.5881242796218,0.5291816723648851,20.70423293127613,108.94527679812072,0.1294521249983518 +9,616.530663398111,0.5432287358538342,21.253824290281266,111.83721599390812,0.1328884159993322 +10,591.4634637568722,0.5211418811669121,20.389676100655436,107.29008478523802,0.1274853749964677 +11,617.1983607546819,0.5438170478591833,21.276841997490543,111.95833472800936,0.1330323330003011 +12,610.1374903627665,0.5375956740902177,21.033430748779768,110.67750940332355,0.1315104169989354 +13,615.7036840612332,0.5425000795737502,21.225315613322977,111.68720388224584,0.132710166999459 +14,574.0844314488429,0.5058291152145761,19.79056413277029,104.13756909480084,0.123739458998898 +15,568.8861052912658,0.5012488399504518,19.611360863061424,103.19460492479926,0.1226190000015776 +16,627.4529249580381,0.5528524037297544,21.630350295926643,113.8184886178632,0.1352426250014105 +17,609.4197285876301,0.5369632500359095,21.00868715765496,110.54730910114289,0.131355708999763 +18,604.0248052457164,0.5322097518548082,20.822706541319373,109.56868266310865,0.1301928749999206 +19,617.6062482579473,0.5441764398990669,21.290903211050995,112.0323245642204,0.133120249996864 +20,600.7478006205176,0.5293223641130174,20.709737495921804,108.97424171176743,0.1294865419986308 +21,621.2348869455066,0.5473736544483785,21.41599423029281,112.69055110955992,0.1339023750006163 +22,596.8769403256291,0.5259117267035666,20.57629630727704,108.27207673509676,0.128652208000858 +23,598.978231220104,0.5277631862724634,20.648734662910133,108.6532459738434,0.1291051250009331 +24,610.22235075287,0.5376704450710899,21.036356163406392,110.69290287901062,0.1315287079996778 +25,599.235721308217,0.5279900622793916,20.6576111866812,108.69995407176977,0.129160624997894 +26,617.3373497306663,0.5439395118503586,21.28163340114528,111.98354700219258,0.1330622909990779 +27,603.0018040200588,0.531308379553992,20.787440350049938,109.3831126406781,0.129972374998033 +28,599.2825056391234,0.5280312842241299,20.659223995269084,108.70844063964276,0.129170708998572 +29,618.7763575280541,0.545207429949274,21.331240696765345,112.24457964080678,0.1333724579999398 +0,305.3505916825048,0.9489872136384976,0.0,66.5128391206041,0.1058808339985262 +1,367.7543969535843,1.1429295700568434,0.0,80.10591663074877,0.1275194589979946 +2,367.1037123178958,1.1409073326150327,0.0,79.96418157710656,0.1272938330002944 +3,365.1552719264768,1.1348518505941692,0.0,79.53976352840897,0.1266182079998543 +4,368.1911850271189,1.1442870467021975,0.0,80.20105977327462,0.1276709160010796 +5,367.3663873125061,1.1417236900023042,0.0,80.02139862574973,0.1273849159988458 +6,369.0514317372989,1.1469605739550424,0.0,80.38844258043723,0.1279692080024688 +7,360.69134272402255,1.1209785788497957,0.0,78.5674103940901,0.1250703330006217 +8,370.60273490365097,1.151781808658513,0.0,80.72635441274225,0.1285071249985776 +9,367.15298100167064,1.1410604528388302,0.0,79.97491350338036,0.1273109169997042 +10,362.3793921728516,1.1262248019997214,0.0,78.93510891662754,0.1256556670014106 +11,367.18182008164734,1.1411500806925057,0.0,79.98119536147766,0.1273209169994515 +12,368.02740499563134,1.143778041119878,0.0,80.16538447025499,0.1276141249982174 +13,367.8016180764143,1.1430763267457118,0.0,80.11620254808915,0.1275358330021845 +14,365.48259548788474,1.1358691267447971,0.0,79.61106261861329,0.1267317079982604 +15,365.9127794057153,1.1372060785918026,0.0,79.7047672142431,0.1268808749991876 +16,365.31917595814264,1.1353612415518144,0.0,79.57546584170511,0.126675041999988 +17,366.4670896108851,1.1389287976937927,0.0,79.82550955600907,0.1270730830001412 +18,372.6442995758933,1.1581267080055184,0.0,81.17105721109266,0.1292150410008616 +19,366.4208288468271,1.1387850256665557,0.0,79.81543282833536,0.1270570420019794 +20,364.30451904093405,1.1322078288292283,0.0,79.35444870882503,0.1263232079982117 +21,363.1997428984131,1.128774338075507,0.0,79.11380140099804,0.1259401250026712 +22,367.0620167726892,1.140777748653696,0.0,79.95509926593404,0.1272793749994889 +23,369.46875629421896,1.1482575606950132,0.0,80.47934609224167,0.1281139159982558 +24,373.6769809089071,1.1613361381081209,0.0,81.39600050328389,0.1295731249992968 +25,366.2824012440538,1.138354811910222,0.0,79.78527990535468,0.1270090419966436 +26,364.5013486503741,1.1328195479079266,0.0,79.39732301954673,0.1263914589981141 +27,363.1987825501328,1.1287713534464825,0.0,79.11359221361668,0.1259397920002811 +28,366.4687738163704,1.1389340319704382,0.0,79.82587641722218,0.1270736670012411 +29,365.7796380252842,1.1367922936800423,0.0,79.6757657599865,0.1268347080003877 +0,392.35717841459865,1.1193729478414245,0.0,83.85120991103034,0.127699874999962 +1,389.26279227470064,1.1105448383388192,0.0,83.18990425374427,0.1266927500000747 +2,371.9353298433309,1.0611105632255486,0.0,79.48682764525928,0.1210532080003758 +3,347.0769311623034,0.9901909508391123,0.0,74.17430395376623,0.1129625840003427 +4,384.2530898061848,1.0962524391462003,0.0,82.11927362331537,0.1250622500010649 +5,388.4315534329222,1.1081733607060114,0.0,83.01225902015939,0.1264222079989849 +6,391.34312922219846,1.1164799225670052,0.0,83.63449601774657,0.1273698340010014 +7,389.93592361841473,1.1124652441780658,0.0,83.33376010933874,0.1269118330019409 +8,385.98444052724494,1.1011918853115832,0.0,82.4892830451586,0.1256257500026549 +9,392.3077634767284,1.1192319698047928,0.0,83.84064937446811,0.1276837919976969 +10,388.2323543821091,1.1076050570251232,0.0,82.96968790806378,0.1263573749965871 +11,386.97019818661727,1.104004196434544,0.0,82.6999507147331,0.1259465830007684 +12,389.86653746995654,1.1122672894016223,0.0,83.31893149699425,0.1268892500011134 +13,381.0208254600399,1.087030970881068,0.0,81.42850181872728,0.1240102499978093 +14,385.7221262916305,1.1004435175606295,0.0,82.433223497269,0.1255403750001278 +15,343.1331262252372,0.9789394973141547,0.0,73.33146779880578,0.1116789999978209 +16,388.1155996030598,1.107271962211548,0.0,82.94473607839231,0.1263193750019127 +17,389.05616701447246,1.109955348100423,0.0,83.14574607588622,0.126625500000955 +18,389.06871200446767,1.1099911382508372,0.0,83.14842708351726,0.1266295829991577 +19,392.4126092864002,1.1195310889989805,0.0,83.86305612137816,0.1277179159988009 +20,388.8035833767817,1.1092347411977002,0.0,83.09176606790044,0.1265432920008606 +21,391.07825252802337,1.1157242442659956,0.0,83.57788884319822,0.1272836249991087 +22,389.61177851231594,1.1115404764335115,0.0,83.26448659829212,0.1268063340030494 +23,389.1410446762379,1.1101974992924573,0.0,83.16388540154406,0.1266531250003026 +24,390.4422461395545,1.1139097538346416,0.0,83.44196701452225,0.1270766249981534 +25,388.5996465362807,1.1086529208694789,0.0,83.04818243604097,0.1264769169974897 +26,375.54743132246494,1.0714156854535613,0.0,80.25877498306677,0.1222288329990988 +27,406.8875185658029,1.1608271905136591,0.0,86.95650954393228,0.1324290420016041 +28,389.20415678718,1.1103775545929748,0.0,83.17737318041921,0.1266736659999878 +29,391.19795385274,1.116065745408526,0.0,83.60347038332958,0.1273225840013765 +0,381.4033142582579,0.0,0.0,82.61925110554331,0.1332604589988477 +1,362.55955683134994,0.0,0.0,78.5373329144196,0.1266765420004958 +2,362.6956262691683,0.0,0.0,78.5668081565862,0.1267240839988517 +3,364.8477942397509,0.0,0.0,79.0330088930131,0.1274760409978625 +4,344.4926161941541,0.0,0.0,74.62368809432583,0.1203640410021762 +5,363.3133567014207,0.0,0.0,78.70062038052308,0.1269399160009925 +6,363.8416525701065,0.0,0.0,78.81505936781363,0.1271245000025374 +7,363.50917225752414,0.0,0.0,78.74303777438224,0.1270083330018678 +8,364.4152638869781,0.0,0.0,78.93931454770832,0.1273249170008057 +9,362.471785151328,0.0,0.0,78.51831989014688,0.1266458750033052 +10,344.8277210316543,0.0,0.0,74.69627821004087,0.1204811249990598 +11,364.5188944083878,0.0,0.0,78.96176290028019,0.1273611249998794 +12,363.5227671803984,0.0,0.0,78.74598269464046,0.1270130830016569 +13,363.6805398489252,0.0,0.0,78.78015927159012,0.1270682080030383 +14,363.0369275435488,0.0,0.0,78.6407405390185,0.1268433330005791 +15,363.51000797351264,0.0,0.0,78.74321880644601,0.1270086249969608 +16,348.4839225883733,0.0,0.0,75.48828138152486,0.1217585840022366 +17,361.4334449521908,0.0,0.0,78.29339554775532,0.1262830839987145 +18,363.57273639099617,0.0,0.0,78.75680698117282,0.1270305420002841 +19,363.6069612529738,0.0,0.0,78.76422074072885,0.1270425000002433 +20,366.3633906583192,0.0,0.0,79.36131605868071,0.1280055829993216 +21,370.41360743401054,0.0,0.0,80.23867046099758,0.1294207089995325 +22,346.6831905324902,0.0,0.0,75.09820838441907,0.1211294169988832 +23,365.82126518573983,0.0,0.0,79.24388131473557,0.1278161670015833 +24,364.1797368434446,0.0,0.0,78.88829488630428,0.1272426249997806 +25,363.9925075577076,0.0,0.0,78.84773744279413,0.1271772079999209 +26,362.5031479127712,0.0,0.0,78.52511366399774,0.1266568329992878 +27,362.4386307071827,0.0,0.0,78.511138003562,0.1266342910021194 +28,363.69341924406274,0.0,0.0,78.78294919485816,0.1270727080009237 +29,367.1670423932719,0.0,0.0,79.53540239199062,0.1282863749984244 +0,380.3526569408623,0.0,0.0,80.10239659227442,0.1271814169995195 +1,387.17328681307646,0.0,0.0,81.53882352150227,0.1294620829976338 +2,385.3726788755025,0.0,0.0,81.15961488843315,0.1288599999970756 +3,378.4771576230187,0.0,0.0,79.70741580950627,0.1265542919973086 +4,379.13547022559806,0.0,0.0,79.84605666349064,0.1267744169999787 +5,394.2382781455051,0.0,0.0,83.02671305586976,0.1318244579997554 +6,373.8768198704676,0.0,0.0,78.73858314227304,0.1250160419986059 +7,379.232417501541,0.0,0.0,79.8664737921853,0.1268068339995807 +8,382.8017323253333,0.0,0.0,80.61817268625285,0.1280003330030013 +9,380.0052443470086,0.0,0.0,80.02923138397054,0.127065250002488 +10,382.05320136284416,0.0,0.0,80.46053181553789,0.1277500409996719 +11,380.4557080962611,0.0,0.0,80.12409920002123,0.1272158749998198 +12,382.215942515876,0.0,0.0,80.49480515672312,0.1278044579994457 +13,361.8984704460614,0.0,0.0,76.21593875263807,0.1210107500010053 +14,378.8783985966985,0.0,0.0,79.79191729258059,0.1266884579999896 +15,380.88423856576446,0.0,0.0,80.21434786003091,0.1273591659992234 +16,379.1726048879838,0.0,0.0,79.85387723579232,0.1267868340000859 +17,378.95814974542776,0.0,0.0,79.80871291114045,0.126715124999464 +18,380.36461647596656,0.0,0.0,80.10491527436194,0.1271854160004295 +19,364.3920344346489,0.0,0.0,76.74108416150293,0.1218445419981435 +20,380.7520317589275,0.0,0.0,80.18650506235302,0.1273149590015236 +21,382.7415458800854,0.0,0.0,80.60549740078093,0.1279802080025547 +22,380.34679830413467,0.0,0.0,80.10116276142276,0.1271794580025016 +23,377.197042065428,0.0,0.0,79.43782304550984,0.1261262500011071 +24,378.9667478199144,0.0,0.0,79.81052366849916,0.1267180000031658 +25,363.53484190384074,0.0,0.0,76.56055912820624,0.1215579159979824 +26,380.69109765029833,0.0,0.0,80.17367231872328,0.1272945839991734 +27,379.47166496381067,0.0,0.0,79.91685938764968,0.1268868329971155 +28,379.2726654116168,0.0,0.0,79.87495001549036,0.1268202920000476 +29,384.0864564464969,0.0,0.0,80.88873601527702,0.1284299159997317 +0,375.6479471195772,0.0,0.0,80.32554295569379,0.1269681660014612 +1,383.59709143073366,0.0,0.0,82.02532419427872,0.1296549590006179 +2,366.3914775833742,0.0,0.0,78.34621378046563,0.1238395000000309 +3,374.1168748582736,0.0,0.0,79.99815074807854,0.1264506670013361 +4,367.66885289590334,0.0,0.0,78.61935746812284,0.1242712499988556 +5,383.9118124443024,0.0,0.0,82.09262161061848,0.1297613339993404 +6,375.5611654777607,0.0,0.0,80.30698626571066,0.1269388340006116 +7,375.53330434935185,0.0,0.0,80.30102866555882,0.12692941700152 +8,374.86182356292346,0.0,0.0,80.1574446018956,0.1267024579974531 +9,377.0421871072083,0.0,0.0,80.62367604779706,0.1274394159991061 +10,375.6765508526328,0.0,0.0,80.33165934846492,0.1269778339992626 +11,375.1464674630339,0.0,0.0,80.21831056962074,0.1267986669990932 +12,378.4867262518033,0.0,0.0,80.93256470804418,0.1279276669993123 +13,375.5296060933957,0.0,0.0,80.30023786017856,0.1269281669992779 +14,375.8946203441011,0.0,0.0,80.37828957881379,0.1270515409996733 +15,375.683823091228,0.0,0.0,80.33321438561643,0.1269802919996436 +16,373.6414012930972,0.0,0.0,79.8964792959204,0.1262899579996883 +17,314.9850723569249,0.0,0.0,67.3538805522994,0.1064642500023183 +18,367.0926656555126,0.0,0.0,78.4961502117451,0.1240765000002284 +19,383.49859372980546,0.0,0.0,82.00426223622037,0.1296216669979912 +20,381.50252431833786,0.0,0.0,81.57743876897446,0.1289470000010624 +21,374.5009986985629,0.0,0.0,80.08028870802231,0.1265805000002728 +22,332.15382500117937,0.0,0.0,71.02510886220082,0.1122672499986947 +23,381.9548202102259,0.0,0.0,81.67415409344545,0.1290998750009748 +24,370.0998334750992,0.0,0.0,79.13917884991385,0.1250929159978113 +25,377.0426841466608,0.0,0.0,80.62378233072553,0.1274395839973294 +26,378.23080739815214,0.0,0.0,80.87784107377504,0.1278411669991328 +27,377.1951733191553,0.0,0.0,80.65638939185659,0.1274911249965953 +28,374.3644119900847,0.0,0.0,80.05108210220116,0.1265343339982791 +29,379.98685748159807,0.0,0.0,81.25334073374067,0.1284347079999861 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/mac_report.md new file mode 100644 index 000000000..e935a0298 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 898 samples (with smell) vs 881 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 490.02 ms | 75.55 ms | +| **Average Power** | 4.325 W | 4.612 W | +| **Total Energy** | 1903.20 J | 307.00 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.33% | 0.00e+00 | +6.279 | large | βœ… | +| `gpu_mj` | +83.08% | 8.41e-224 | +1.932 | large | βœ… | +| `ane_mj` | +86.82% | 6.94e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.80% | 0.00e+00 | +28.191 | large | βœ… | +| `time_s` | +84.45% | 0.00e+00 | +112.566 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.3% lower energy (Cohen’s d = +6.279, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.932, large) +- **`ane_mj`**: 86.8% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.191, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +112.566, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..e5077d203 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/with_smell.csv @@ -0,0 +1,899 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.7525821795537,1.3534612562180337,0.0,463.1808508779323,0.4898252499988302 +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384 +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099 +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248 +4,1587.2227722401722,1.3746542809853626,0.0,470.4335174757469,0.4974951250005688 +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653 +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598 +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184 +8,1564.261785807479,1.35476834005295,0.0,463.62816047031566,0.4902982909989077 +9,1583.7046608844691,1.3716073319869715,0.0,469.3907920758341,0.4963924170006066 +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031 +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.4984325410005112 +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.491652000000613 +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357 +14,1582.78900463182,1.3708143048142083,0.0,469.1194027036136,0.4961054160012281 +15,1586.2664412042632,1.3738260263915247,0.0,470.1500725926704,0.4971953749991371 +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225 +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.4955564580013742 +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672 +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756 +20,1562.7080469921625,1.3534226853966762,0.0,463.1676511902626,0.4898112910013878 +21,1563.4943568701915,1.354103688882084,0.0,463.40070387084194,0.4900577499975043 +22,1565.315558919256,1.3556809868121988,0.0,463.9404859990722,0.4906285830002161 +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271 +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.4963112500008719 +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042 +26,1585.4583311232377,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681 +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.4942537500028265 +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749 +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.4996582499989017 +1,1533.5334001790511,1.8921445940257144,0.0,474.4635558317462,0.493004457999632 +2,1543.8059871684454,1.9048193880252269,0.0,477.6418160183257,0.4963069170007657 +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377 +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006 +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134 +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524 +7,1522.6814694210657,1.87875497882981,0.0,471.1060510949909,0.4895157499995548 +8,1546.9721730979702,1.908725974989378,0.0,478.62140983374,0.4973247910020291 +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562 +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276 +11,1522.9656993374065,1.879105674875688,0.0,471.1939896666353,0.4896071250004752 +12,1544.25585273976,1.9053744530200296,0.0,477.7810010002682,0.49645154099926 +13,1546.7443256761674,1.908444846278796,0.0,478.55091557654094,0.4972515419976844 +14,1550.8537971977223,1.9135153027311336,0.0,479.8223547708087,0.4985726659979264 +15,1523.3470075656658,1.8795761506427464,0.0,471.3119635287153,0.4897297089992207 +16,1517.6756261895746,1.8725785374116448,0.0,469.55728131973046,0.4879064580018166 +17,1526.438800689855,1.883390948315296,0.0,472.26854077667593,0.4907236670005659 +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595 +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093 +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216 +21,1532.4807276685026,1.890845757886976,0.0,474.1378669733079,0.4926660419987456 +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.4991075840007397 +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354 +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.4886628750027739 +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164 +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348 +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517 +28,1550.5286132950594,1.913114075758564,0.0,479.72174534766935,0.498468124998908 +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037 +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976 +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595 +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.4905380419986613 +3,1542.6536762485855,0.7725528459014843,0.0,473.2725912500832,0.4981489999991026 +4,1543.401933683681,0.7729275692887551,0.0,473.5021500555895,0.4983906249981373 +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.4949968340006307 +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.498344999999972 +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.4981494999992719 +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449 +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929 +10,1537.626197619399,0.7700351110511502,0.0,471.7302049874221,0.49652554199929 +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289 +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177 +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.4986532499970053 +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.4899813329975586 +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.4892707910003082 +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.4929174160024558 +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781 +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552 +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.4907241250002698 +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491 +21,1516.8447946320175,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654 +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525 +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571 +24,1541.3760009365585,0.7719129928264602,0.0,472.8806116923837,0.4977364170008513 +25,1542.692772983568,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102 +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.4900904159985657 +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.4966319170016504 +28,1518.901438072084,0.760657849971867,0.0,465.98561330885246,0.4904790000000503 +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882 +0,2388.293804473947,3.948256730756337,88.5680980195934,516.2847572505955,0.5047006250024424 +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839 +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086 +3,2411.1969694915374,3.9861195662529263,89.41744484636862,521.2358042990056,0.5095405829997617 +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725 +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035 +6,2372.850397511069,3.922726146800221,87.99539076762868,512.9463088570119,0.5014370829994732 +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908 +8,2354.685839084009,3.892697035668036,87.32177163909569,509.0196208504898,0.4975985000019136 +9,2376.2567192107217,3.928357377159141,88.12171167237496,513.6826638098775,0.5021569159980572 +10,2377.0903590593543,3.929735525918403,88.15262658564419,513.8628742789912,0.502333082997211 +11,2387.2517582095043,3.946534050669975,88.52945450952055,516.0594949308281,0.5044804170029238 +12,2356.9182072270733,3.896387520703783,87.4045573500247,509.5021986818592,0.4980702499997278 +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117 +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978 +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944 +16,2396.136077101009,3.9612213440824777,88.85892286259592,517.9800452473951,0.5063578749977751 +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.4989800420007668 +18,2405.715621948096,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489 +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676 +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362 +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782 +22,2396.5872071287085,3.961967138910976,88.87565268387587,518.077567401664,0.5064532090000284 +23,2363.0508100276948,3.906525758402701,87.63198036010125,510.8279021368955,0.4993662080014474 +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441 +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081 +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673 +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922 +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745 +29,2355.1391363948715,3.893446413385005,87.33858183245853,509.11761151297134,0.4976942920002329 +0,1541.6676935631915,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725 +1,1539.9339925655115,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675 +2,1537.4033292502131,1.4726085529216604,0.0,466.3483540093277,0.4953739999982645 +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.496548333998362 +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737 +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737 +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.4963964589987881 +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326 +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491 +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484 +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793 +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.4901659580027626 +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843 +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972 +14,1541.2718674655523,1.476314049296506,0.0,467.5218173385799,0.4966204999982437 +15,1540.4087008558995,1.4754872613562258,0.0,467.2599886304011,0.4963423750014044 +16,1531.2747826396396,1.4667382975475476,0.0,464.4893508642619,0.4933992920014134 +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.4963049580001097 +18,1522.1950456773989,1.4580412314917617,0.0,461.73514817286826,0.4904736669996055 +19,1538.037096059261,1.4732156092521662,0.0,466.54059771181096,0.4955782090000866 +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977 +21,1559.845791710162,1.4941051644733354,0.0,473.1559400402603,0.5026052920002257 +22,1514.2267569754815,1.450408771049312,0.0,459.3180867227526,0.4879061669998918 +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.4904113750017131 +24,1521.4884764967403,1.4573644410888318,0.0,461.52082095754054,0.490246000001207 +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.4877654580013768 +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.488684291998652 +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.4885777920026157 +28,1545.923787001248,1.4807699109207355,0.0,468.9329076993075,0.4981194169995433 +29,1523.710854713787,1.4594931558561175,0.0,462.1949462204351,0.4909620830003405 +0,1526.770791456814,1.689345447459375,0.0,462.4831595574077,0.4918107500016049 +1,1530.8290010789997,1.6938357861457298,0.0,463.71245580718977,0.4931180000021413 +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.4902934160018048 +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388 +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.4919111670023994 +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108 +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786 +7,1541.6151929447517,1.705770520701691,0.0,466.9797649026864,0.4965924999996787 +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964 +9,1541.711816984989,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112 +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.4913567079966014 +11,1522.1852241350612,1.684271596608698,0.0,461.0941182715813,0.4903336250026768 +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.4971137079992331 +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119 +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.4966302089997043 +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702 +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.4984741250009392 +17,1542.471615652947,1.706718137600892,0.0,467.2391889643854,0.4968683750012133 +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831 +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757 +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121 +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.497358874999918 +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191 +23,1544.7746825942847,1.709266441298024,0.0,467.9368245765296,0.4976102500004344 +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246 +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499 +26,1542.6620170112014,1.7069288134073437,0.0,467.29686456457506,0.4969297080024262 +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994 +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048 +29,1542.809736148168,1.7070922620749058,0.0,467.3416110409772,0.4969772920012474 +0,1552.5755589394023,1.275546910247925,0.0,466.24596271957057,0.4975988330006657 +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.496548333998362 +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.4974576250024256 +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449 +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334 +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.4977821669999684 +6,1537.704995292508,1.2633297260959353,0.0,461.7802604071722,0.4928328329988289 +7,1550.9853290718895,1.2742404277502393,0.0,465.7684089855479,0.4970891660013876 +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838 +9,1551.9411325247231,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125 +10,1520.1867380960591,1.2489372807742254,0.0,456.5194428935261,0.4872182500002964 +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.4970620829990366 +12,1524.5508959441925,1.25252273465244,0.0,457.83002064006297,0.4886169579986017 +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.4979272499986109 +14,1552.3800325555055,1.275386271963099,0.0,466.1872451991433,0.4975361670003622 +15,1533.394787700758,1.2597885960397988,0.0,460.4858841840212,0.4914514160009275 +16,1553.2691400031183,1.2761167344846496,0.0,466.454248473468,0.4978211250017921 +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.4989104170017526 +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086 +19,1554.660720229109,1.277260012727956,0.0,466.872146757666,0.4982671249999839 +20,1560.0134398376556,1.28165763764147,0.0,468.4795943905267,0.4999826660023245 +21,1528.100442701547,1.2554389298566315,0.0,458.89596672917406,0.4897545839994563 +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346 +23,1528.2429267943644,1.2555559902749194,0.0,458.9387553925956,0.4898002500012808 +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.4974483750011131 +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.4978840000003401 +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246 +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913 +28,1526.2605989035876,1.2539273724587885,0.0,458.343452722436,0.489164915998117 +29,1549.6854059286077,1.2731724520633707,0.0,465.3780357673742,0.496672542001761 +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143 +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629 +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.4905859169994073 +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484 +4,1572.3927908809335,1.7548657145168245,0.0,461.7945683087953,0.4925914999985252 +5,1564.3827924950483,1.7459261724238786,0.0,459.44211937350633,0.490082166998036 +6,1587.637379706137,1.7718794062714578,0.0,466.2717373446797,0.4973672500018438 +7,1586.1069069337875,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081 +8,1565.879611148776,1.747596693779299,0.0,459.88171864414875,0.4905510830030835 +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.4896888329967623 +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949 +11,1565.9028878075114,1.7476226716460257,0.0,459.8885547442853,0.4905583750005462 +12,1583.3814014098812,1.7671295305170396,0.0,465.0218030588897,0.496033957999316 +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357 +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462 +15,1611.7074099564163,1.798742713632422,0.0,473.3408420194601,0.5049077910007327 +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.4980673339996428 +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919 +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489 +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508 +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334 +21,1572.3998421997237,1.754873584126542,0.0,461.79663920401657,0.4925937090010848 +22,1585.7182708706089,1.7697375888340936,0.0,465.7081160654547,0.4967660410002281 +23,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159 +24,1590.2483692515932,1.774793395740791,0.0,467.03855642258145,0.4981852079981763 +25,1591.9827363009797,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986 +26,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312 +27,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873 +28,1587.966697298727,1.7722469404879555,0.0,466.3684543204815,0.4974704170017503 +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903 +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644 +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.4977449159996467 +3,1546.2059346063345,2.2033334416620187,0.0,467.473911872625,0.496353624999756 +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.4969734580008662 +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.4907893749987124 +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513 +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531 +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.4975908330015954 +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121 +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.4914072920000762 +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572 +12,1543.267588495252,2.199146317486109,0.0,466.5855436933028,0.4954103750023932 +13,1529.337507111068,2.179296041742173,0.0,462.3739768562977,0.4909386250001262 +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619 +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023 +16,1530.0441213304557,2.180302962427888,0.0,462.5876118617835,0.4911654579991591 +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.4971690409984148 +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865 +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.4974212920024001 +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434 +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.4969887080005719 +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.4965708330018969 +23,1529.565952029954,2.1796215742718923,0.0,462.44304400801985,0.4910119589985697 +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.4924065839986724 +25,1550.7246888389986,2.209772637174495,0.0,468.840094520522,0.4978042080001614 +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.4911967079970054 +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781 +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396 +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681 +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253 +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469 +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869 +3,1547.1728294886957,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128 +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.4916307919993414 +5,1522.8403915260485,1.286963146171359,0.0,460.69980727431664,0.4899240839986305 +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.4981920840000384 +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766 +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749 +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258 +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.4905591249989811 +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.490846832999523 +12,1548.5445027423802,1.3086858716943923,0.0,468.4759860186004,0.4981935410032747 +13,1548.346997027624,1.3085189582230503,0.0,468.41623527569254,0.4981299999999464 +14,1526.1627930048307,1.289770931073685,0.0,461.7049222748644,0.4909929579989693 +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149 +16,1549.442548959939,1.3094448168812869,0.0,468.7476689353755,0.4984824579987617 +17,1525.4153728060248,1.289139280996684,0.0,461.4788077434539,0.4907524999980523 +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293 +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.4897483750028186 +20,1553.0553234008996,1.312497998020176,0.0,469.8406294964019,0.4996447500016074 +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527 +22,1549.7637440107094,1.3097162610821198,0.0,468.844838999166,0.4985857920000853 +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.4968075409997254 +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552 +25,1525.1998637277711,1.2889571527559822,0.0,461.4136105032376,0.4906831670014071 +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956 +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903 +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556 +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313 +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481 +1,1517.480332834304,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702 +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304 +3,1542.4872208574875,0.5718522026949577,0.0,467.2705263315093,0.498356000000058 +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855 +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593 +6,1541.2370366249845,0.5713887171000923,0.0,466.8918040727872,0.4979520829983812 +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821 +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392 +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442 +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468 +11,1517.2779873087345,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378 +12,1518.0660902189236,0.5627984632803773,0.0,459.8725560839836,0.4904658750019735 +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126 +14,1517.2394279134517,0.5624919915936906,0.0,459.622132660468,0.4901987919984094 +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855 +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978 +17,1518.3874690557575,0.5629176092890171,0.0,459.96991239021986,0.4905697079993842 +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193 +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163 +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935 +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.4913474580025649 +22,1526.217818035968,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091 +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.490669708000496 +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.4942520420008804 +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378 +26,1534.423317940434,0.5688626410421411,0.0,464.8277027480224,0.4957506659993669 +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833 +28,1517.56235434898,0.5626117113495291,0.0,459.71995778566526,0.4903031250032654 +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216 +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892 +1,1550.91288162991,0.8958868617275533,0.0,462.0121726923871,0.4923814169997058 +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.4911964169987186 +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874 +4,1565.1120060356702,0.904089004577632,0.0,466.2420481384795,0.4968893330005812 +5,1571.375161858294,0.9077069247592892,0.0,468.10782297586456,0.498877750000247 +6,1570.1072269824244,0.9069745005140124,0.0,467.730109079893,0.4984752080017642 +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487 +8,1565.5201723263629,0.90432478237119,0.0,466.36363961986854,0.4970189170016965 +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015 +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518 +11,1560.722599431774,0.9015534580915664,0.0,464.93445742470254,0.4954957909976656 +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.4871506659983424 +13,1570.2996305808672,0.9070856427051928,0.0,467.78742551952234,0.4985362919978797 +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609 +15,1547.5227554628375,0.8939285508974267,0.0,461.00226454428775,0.4913051250005082 +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.4915737500014074 +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721 +18,1564.0133771354122,0.90345438015139,0.0,465.9147699714058,0.49654054200073 +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579 +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017 +21,1554.6354429575945,0.898037204164546,0.0,463.1211122513755,0.4935632499982603 +22,1566.8541179900308,0.9050953378346812,0.0,466.7610179263,0.4974424160027411 +23,1563.1480932062543,0.902954547753982,0.0,465.6570045528313,0.496265833000507 +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334 +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029 +26,1544.107301583785,0.8919556094812306,0.0,459.98481134876505,0.4902207919985812 +27,1567.236953417524,0.905316483221864,0.0,466.8750634215273,0.4975639580006827 +28,1564.9869329670676,0.9040167559553888,0.0,466.2047892564012,0.4968496249966847 +29,1569.5676911434848,0.9066628369284802,0.0,467.5693830145243,0.4983039170001575 +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744 +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192 +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263 +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.4983404999984486 +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052 +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.4975258750018838 +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626 +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.4973339589996612 +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957 +9,1548.8857390933792,0.8386499063790712,0.0,465.2494220628536,0.4981867919996148 +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573 +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854 +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442 +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.4890400419972138 +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909 +15,1548.8552953072,0.8386334224785583,0.0,465.240277454205,0.4981769999976677 +16,1525.425523355913,0.8259472858853377,0.0,458.20251631775,0.4906410000003234 +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796 +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922 +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205 +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.4976440419995924 +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.4966249170029186 +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363 +23,1523.6436512727455,0.8249824846621034,0.0,457.6672831911485,0.4900678750018414 +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.4941007919987896 +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.4961650840014044 +26,1546.018290686647,0.8370973158443685,0.0,464.3881069378219,0.49726450000162 +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.4886809999989054 +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.4892711669999698 +29,1544.979353159271,0.8365347792814213,0.0,464.0760341541612,0.4969303340003534 +0,1543.037293902987,0.9050268700391154,0.0,464.4128623848868,0.4969528340006945 +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.4968073750023904 +2,1522.6647565357837,0.8930779082084145,0.0,458.2812747491697,0.490391625000484 +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.4955040000022563 +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488 +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.4876558750002004 +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299 +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.4911422499972104 +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522 +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697 +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.4891653750019031 +11,1540.3509525440622,0.9034512690335336,0.0,463.60434564665206,0.4960876669974823 +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175 +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979 +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759 +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943 +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511 +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.4970722079997358 +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232 +19,1517.3107069267537,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729 +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.4969016249997366 +21,1542.9237006680555,0.904960244993646,0.0,464.378673866184,0.4969162499983213 +22,1543.855845753035,0.9055069695297376,0.0,464.65922454942654,0.4972164579994569 +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416 +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507 +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.4953368749993387 +26,1524.4368065343,0.8941172562980861,0.0,458.8146142966661,0.4909623339990503 +27,1540.8696144444589,0.903755476169796,0.0,463.7604489752787,0.4962547080031072 +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629 +29,1542.3754109042263,0.9046386604338992,0.0,464.2136533448767,0.4967396669999289 +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601 +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.4905383750010514 +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.4949191670020809 +3,1543.9666529760673,2.517118054369295,0.0,468.6538201495045,0.4970376669989491 +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.4911096249998081 +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.4892612080002436 +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668 +7,1541.4305863957322,2.5129835227301953,0.0,467.8840254853926,0.4962212500031455 +8,1518.9797912579406,2.4763821481685406,0.0,461.0693375603401,0.4889938330015866 +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282 +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875 +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.4909694169982685 +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736 +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168 +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129 +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858 +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407 +17,1539.709287220718,2.5101773007032837,0.0,467.36154436027533,0.4956671250001818 +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.4965505419968394 +19,1509.6842072989823,2.461227622542033,0.0,458.247766949026,0.4860013750003418 +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097 +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844 +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.4907778749984572 +23,1518.3726327778963,2.4753923019377058,0.0,460.8850413901084,0.4887983750013518 +24,1542.6089226370732,2.514904556077308,0.0,468.24169628084707,0.4966005829992355 +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.4952879160009615 +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364 +27,1524.6620618997297,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219 +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333 +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925 +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.4906970419979188 +1,1543.8582876666146,1.819236842272884,0.0,468.7903825967997,0.498959583001124 +2,1514.9563025535929,1.785179599744556,0.0,460.0143357489906,0.4896187500016822 +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.4886332080022839 +4,1513.8533631439177,1.783879928638143,0.0,459.6794297592549,0.4892622909974307 +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127 +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044 +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288,0.488077041998622 +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.4968368750014633 +9,1536.988103258224,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808 +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314 +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129 +12,1537.6380057586473,1.8119070464576217,0.0,466.9016028047741,0.496949249998579 +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181 +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273 +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.4968635410004935 +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761 +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.4962564160014153 +18,1534.6338380789523,1.8083670243150929,0.0,465.9893915434169,0.4959783330014033 +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864 +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.4974886670024716 +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.4904405839988612 +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546 +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.4959463339982903 +24,1536.071073078166,1.8100606194348392,0.0,466.4258059154776,0.4964428330022201 +25,1534.2024633575504,1.807858705130444,0.0,465.85840522018754,0.495838916998764 +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429 +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.4879782079988217 +28,1533.3456392419216,1.806849048991048,0.0,465.59823179093394,0.4955620000000635 +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.4960916669988364 +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.4967214579992287 +1,1525.822451852758,0.9878217819888808,0.0,458.15174248644286,0.4879074999989825 +2,1551.4175283280858,1.004392107077032,0.0,465.8370592623274,0.4960919580007612 +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014 +4,1517.1578055606185,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886 +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844 +6,1536.6455705433632,0.994828699719478,0.0,461.4015509298939,0.4913683750019118 +7,1523.3509920954475,0.986221751933866,0.0,457.4096485469271,0.4871172089988249 +8,1523.3483839474748,0.986220063411473,0.0,457.4088654102411,0.4871163749994593 +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242 +10,1552.6602304699818,1.0051966359675315,0.0,466.2101997617412,0.4964893329997721 +11,1535.8703964688004,0.9943268498255036,0.0,461.16879294906863,0.4911204999989422 +12,1528.3973744832786,0.9894887942013932,0.0,458.9249027506061,0.4887308750003285 +13,1531.9027936882028,0.9917582125347134,0.0,459.9774589736001,0.4898517919973528 +14,1541.5801558574808,0.9980233642444684,0.0,462.8832363365845,0.4929462920008518 +15,1553.6147007694765,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625 +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.4965233750008337 +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.4948284999991301 +18,1572.9461018499128,1.0183297666220117,0.0,472.3013457592889,0.5029760830002488 +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299 +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069 +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.4948044160009885 +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.496583374999318 +23,1551.7935835191104,1.0046355662740525,0.0,465.9499756379054,0.4962122079996334 +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908 +25,1528.5850111774257,0.9896102707292512,0.0,458.9812435642267,0.4887908750024508 +26,1549.1668012392042,1.0029349799774732,0.0,465.161243713552,0.495372249999491 +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072 +28,1551.2523048367275,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879 +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.4966570830001728 +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.4868028330020024 +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.4948589999985415 +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249 +3,1533.950680078919,1.341716280054159,0.0,466.5818363888339,0.4973159999972267 +4,1509.4877083165245,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007 +5,1530.701332361488,1.3388741399588795,0.0,465.5934821707004,0.4962625420012045 +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036 +7,1511.6775444702157,1.3222344094554814,0.0,459.80701588814367,0.4900949160000891 +8,1506.085294324647,1.3173429790073663,0.0,458.1060209498117,0.4882818750011211 +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001 +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716 +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.4969967500001075 +12,1535.0179028145485,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828 +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468 +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.4962089580003521 +15,1529.1070527547115,1.3374796551614545,0.0,465.1085500823957,0.4957456670017564 +16,1511.511884356299,1.3220895098347285,0.0,459.7566270450269,0.4900412079987291 +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.4965184579996275 +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.4970040829975914 +19,1531.0605422535905,1.339188333737369,0.0,465.7027430571701,0.4963790000001609 +20,1529.8004113116283,1.3380861221592606,0.0,465.3194489808829,0.4959704579996469 +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173 +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.4973219999992579 +23,1508.4587853165551,1.319419024571127,0.0,458.82796579460944,0.4890513749996898 +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.4990502090004156 +25,1507.4511944376345,1.318537704784618,0.0,458.52148683885093,0.4887247080005181 +26,1531.4239932863045,1.3395062371575557,0.0,465.81329397154,0.4964968330023112 +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.4958281660001375 +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602 +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631 +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612 +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576 +2,2756.6629408744075,3.785901382924392,84.37621951682796,523.1457293569697,0.5001827079977375 +3,2741.474911483684,3.765042691561858,83.91134276933079,520.2634209705171,0.4974269160011317 +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654 +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.497821582997858 +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554 +7,2774.160435980272,3.809931811141341,84.91178462569788,526.4663166160612,0.5033575410016056 +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454 +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631 +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016 +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793 +12,2770.4892187897412,3.8048898939622178,84.79941563674055,525.7696113474226,0.5026914169975498 +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978 +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901 +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394 +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222 +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375 +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477 +19,2745.556043502129,3.7706475709700102,84.0362584730099,521.0379178285604,0.4981674170012411 +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818 +21,2757.1403582791954,3.786557050756037,84.39083235728454,523.2363312483842,0.5002693329988688 +22,2771.5646135441475,3.806366802302199,84.83233142870031,525.9736943946457,0.5028865419990325 +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276 +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584 +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005 +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075 +27,2829.818723513932,3.886370894288026,86.61537914834967,537.0288685315742,0.5134564589970978 +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049 +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177 +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501 +1,1551.185722359366,1.974412823748249,0.0,466.16221414937473,0.4965388329983398 +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298 +3,1547.1130708458957,1.969228985824172,0.0,464.9383012293342,0.4952351660031127 +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.4957658749990514 +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.4897414169972762 +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082 +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806 +8,1541.253365057029,1.9617705119056952,0.0,463.17734289570063,0.4933594579997589 +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013 +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192 +11,1550.8496334220874,1.9739850359610631,0.0,466.0612127277562,0.4964312500014785 +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.4899619159987196 +13,1555.5371906072128,1.9799515510501056,0.0,467.4699170530165,0.4979317500001343 +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.4902642919987556 +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985 +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.4972455840033944 +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555 +18,1523.894748786755,1.939675752991576,0.0,457.9607328673332,0.4878029169994988 +19,1528.9590068812288,1.946121748451934,0.0,459.4826433209397,0.489423999999417 +20,1532.1890914847395,1.9502331326472857,0.0,460.4533480979099,0.4904579590001958 +21,1551.723309101243,1.9750970862074375,0.0,466.32376967575607,0.4967109159988467 +22,1555.211904441731,1.9795375134740387,0.0,467.3721620795485,0.4978276250003546 +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.4974748340027872 +24,1553.889544716052,1.9778543597662952,0.0,466.9747666363473,0.4974043340007483 +25,1553.1610005454645,1.9769270388579467,0.0,466.7558245981558,0.4971711250000226 +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.4899513749987818 +27,1556.0137313297807,1.9805581116315465,0.0,467.6131270343634,0.4980842920012946 +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549 +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403 +0,1625.5597601283662,2.2574452413660273,0.0,464.3365675145092,0.4921481670025969 +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114 +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426 +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874 +4,1619.196275230912,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753 +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.4969209160008176 +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.496066374998918 +7,1645.2563032830217,2.2847981992248796,0.0,469.96282959644697,0.4981114160000288 +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988 +9,1617.3511432498,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262 +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978 +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753 +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172 +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.4932250419988122 +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461 +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823 +16,1618.5698106059183,2.247738167732763,0.0,462.3399081187963,0.4900319170010334 +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.4884982080002373 +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.4902859590001753 +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689 +20,1625.9434583893585,2.257978090317289,0.0,464.44616984217527,0.4922643339996284 +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012 +22,1643.0470201217047,2.2817301263790366,0.0,469.3317540832881,0.4974425420004991 +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037 +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533 +25,1644.857744860965,2.284244713690023,0.0,469.8489825056227,0.4979907499982801 +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.4965811670008406 +27,1642.3811937703597,2.2808054808721243,0.0,469.141562661153,0.4972409589972812 +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.4972591670011752 +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.4894498749999911 +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723 +1,1532.1004752886363,1.944206307094024,0.0,458.2065881380069,0.4896357500001613 +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.4978175420001207 +3,1559.2145772362046,1.9786135857731335,0.0,466.3156255961936,0.4983009999996284 +4,1530.2639789041189,1.9418758281787545,0.0,457.6573456072133,0.4890488339988224 +5,1553.2082118735125,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419 +6,1559.180676984456,1.9785705669996752,0.0,466.3054870191607,0.4982901660005154 +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907 +8,1558.6548663303993,1.977903323299642,0.0,466.1482323810427,0.4981221250018279 +9,1553.3620584498417,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574 +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101 +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699 +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511 +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693 +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.494713000000047 +15,1555.7903386278183,1.974268292232144,0.0,465.2915356523383,0.4972066660011478 +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439 +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097 +18,1553.613947922776,1.97150649390123,0.0,464.64064063892545,0.4965111250021436 +19,1556.3417074494223,1.9749679687597528,0.0,465.45643399329424,0.4973828749971289 +20,1559.243258216998,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102 +21,1546.4155414555316,1.9623718532687304,0.0,462.48780711358813,0.4942106249982316 +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894 +23,1528.3264357327582,1.939417122816551,0.0,457.07788292820584,0.488429624998389 +24,1559.6077970344063,1.979112574203768,0.0,466.4332261746338,0.498426666999876 +25,1535.5840315256837,1.9486268735754144,0.0,459.24841825535833,0.4907490410005266 +26,1533.0749182963104,1.94544285670156,0.0,458.4980156344947,0.4899471669996273 +27,1555.842230984777,1.974334142644252,0.0,465.3070551435309,0.4972232500003883 +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.4883499999996274 +29,1555.619285336731,1.974051228865383,0.0,465.240378599545,0.4971519999999145 +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597 +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385 +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235 +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116 +4,2392.7939583178036,3.094216164570146,88.53450767657158,515.4365249625881,0.5038726669990865 +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987 +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502 +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484 +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611 +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628 +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102 +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241 +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865 +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589 +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126 +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535 +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978 +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702 +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992 +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001 +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963 +21,2390.42113626185,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558 +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539 +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549 +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028 +25,2377.367853522984,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472 +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107 +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148 +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216 +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105 +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553 +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.4946381670015398 +2,1513.015531420153,1.7770758373213904,0.0,472.4389022330719,0.489482125001814 +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.4983768749989394 +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381 +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.4987627919981605 +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078 +7,1540.8432585109908,1.8097602218460391,0.0,481.1281063855878,0.498484791998635 +8,1521.949062973098,1.7875685009689248,0.0,475.2283962946275,0.4923722499988798 +9,1537.8767464620305,1.806275976791144,0.0,480.20181338543824,0.4975250829993456 +10,1540.0165314743188,1.8087892095791984,0.0,480.8699609762772,0.4982173339994915 +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.4885295409985701 +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686 +13,1514.3150598492307,1.7786021670405965,0.0,472.8446798154592,0.4899025410013564 +14,1541.9176562329635,1.81102212973247,0.0,481.4635869340618,0.4988323750003474 +15,1515.38856114981,1.779863022056937,0.0,473.1798804564702,0.4902498339979502 +16,1539.5401197356418,1.8082296516818483,0.0,480.7212014730485,0.4980632080005307 +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.4996198750013718 +18,1541.4078889281657,1.8104233948608175,0.0,481.3044121596648,0.4986674579995451 +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968 +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977 +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.4975674579982296 +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822 +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.4915245830015919 +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001 +25,1541.7235658764823,1.810794165593571,0.0,481.40298224557984,0.498769583999092 +26,1538.245614273331,1.8067092215669016,0.0,480.31699231137856,0.4976444170024479 +27,1538.7954354415915,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098 +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118 +29,1539.4867990582093,1.8081670251684203,0.0,480.70455209847864,0.4980459580001479 +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919 +1,1537.0330531240645,0.8380038018079471,0.0,481.5169845188464,0.4986462920023768 +2,1534.554664825174,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392 +3,1535.092545630475,0.8369458202285922,0.0,480.9090683033491,0.498016749999806 +4,1531.808106737977,0.8351551155504301,0.0,479.8801293952771,0.4969512079987908 +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388 +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.4978598749985394 +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567 +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.4900122919971181 +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.4971287920016038 +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442 +11,1542.3129650510032,0.8408824557568605,0.0,483.171059077892,0.5003592079992814 +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785 +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.4977900420017249 +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406 +15,1515.0810186523638,0.8260353615019213,0.0,474.639918719004,0.4915245840020361 +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891 +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457 +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533 +19,1532.7389950049983,0.8356626439378236,0.0,480.1717552066734,0.4972532079991651 +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.491781249998894 +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092 +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712 +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.4898963329978869 +24,1538.518645991316,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767 +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646 +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.4983793329993204 +27,1537.739437027721,0.8383889284619229,0.0,481.73827829422095,0.498875458000839 +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.4930752500004018 +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.4973596250019909 +0,1550.1230309870657,1.3179917364115763,0.0,458.9576724119213,0.4902429590001702 +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.4978254169982392 +2,1573.7945638369015,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331 +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943 +4,1559.3314125989507,1.3258211606750565,0.0,461.68407367607153,0.4931552080015535 +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.4910096250023343 +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715 +7,1575.5656502813997,1.3396243173824207,0.0,466.49067792049345,0.498289458999352 +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.4987434999966353 +9,1578.9038743347269,1.3424626415854837,0.0,467.47905336610495,0.4993452079979761 +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413 +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208 +12,1553.4810203833467,1.3208468660927597,0.0,459.9518999451511,0.4913049589995353 +13,1572.2751115779795,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662 +14,1570.6119266223695,1.335412415025928,0.0,465.0239882224038,0.4967227910019574 +15,1573.5109085929755,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935 +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629 +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.4892259999978705 +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967 +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979 +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978 +21,1569.630277542812,1.3345777681307784,0.0,464.7333433073403,0.4964123339996149 +22,1574.2479082049676,1.3385039074970495,0.0,466.10052318816014,0.4978727089983294 +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383 +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.4985292919991479 +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484 +26,1553.7065716648651,1.3210386410159338,0.0,460.0186807677736,0.4913762920004956 +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761 +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531 +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107 +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305 +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298 +2,2349.795445683046,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945 +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512 +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063 +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291 +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763 +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418 +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142 +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085 +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949 +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573 +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898 +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496 +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966 +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723 +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122 +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662 +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014 +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694 +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.4982014580018585 +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375 +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518 +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471 +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199 +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108 +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048 +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745 +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778 +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413 +0,1550.0754940354375,0.8369738088744263,0.0,464.9222113535663,0.4976810830012255 +1,1538.0192823716247,0.8304639753626484,0.0,461.3061290344438,0.4938102080013777 +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189 +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839 +4,1528.3809066387753,0.8252596688114338,0.0,458.4152408313752,0.4907156250010303 +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.4982283329991332 +6,1548.695597204981,0.8362287241927542,0.0,464.50833171459107,0.4972380409999459 +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205 +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483 +9,1527.96653767238,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396 +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764 +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.4892915000018547 +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.4895386659991345 +13,1526.3592753499977,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508 +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895 +15,1545.9810991200077,0.8347630124838054,0.0,463.6941581745042,0.4963664999995671 +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642 +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.4972027500007243 +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156 +19,1529.9212051478569,0.826091363470765,0.0,458.8772305807405,0.4912101669979165 +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.4959058749991527 +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002 +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318 +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.4974249170008988 +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943 +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.4972544580014073 +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859 +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.4976514579975628 +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.4981981669989181 +29,1549.708881169605,0.8367758537632858,0.0,464.8122512484299,0.497563375000027 +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.4960967090009944 +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625 +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175 +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248 +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133 +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024 +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.9361560538288,0.4992987500008894 +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069 +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808 +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982 +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676 +11,2383.245600577661,3.968493333370142,85.35567744523615,511.86949844919224,0.5002108339976985 +12,2393.684776374659,3.985876266772484,85.72955537116485,514.1116071425375,0.5024018750009418 +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633 +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925 +15,2396.267721266653,3.990177292055761,85.82206325663266,514.6663677203255,0.5029439999998431 +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309 +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842 +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849 +19,2370.2641685954413,3.946877128029598,84.89074889536992,509.0813682303509,0.4974862080016464 +20,2385.3405815094175,3.9719818189291622,85.43070895546808,512.3194549448798,0.5006505419987661 +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261 +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995 +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786 +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882 +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378 +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566 +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169 +28,2422.427310738474,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318 +29,2386.7347881131845,3.974303400729649,85.48064231069353,512.6189003041125,0.5009431670005142 +0,1510.9616102840157,1.973479398690429,0.0,456.5315675637193,0.4877955420015496 +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732 +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151 +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.4873141669995675 +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508 +5,1541.501322781938,2.013367568612397,0.0,465.7590308723345,0.4976549159982824 +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.4959944170004746 +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.4905059580014494 +8,1540.251215198586,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841 +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.4978336249987478 +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284 +11,1545.29644513748,2.0183244091655883,0.0,466.9057133203061,0.4988801250001415 +12,1538.6722489839171,2.009672492033502,0.0,464.9042364904169,0.4967415840001195 +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.4967219999998633 +14,1519.289578347493,1.984356626340929,0.0,459.04783289353486,0.4904841249990568 +15,1518.7244091137609,1.9836184541518056,0.0,458.87706906045105,0.490301666999585 +16,1541.7541618243265,2.0136978037672426,0.0,465.8354252714888,0.4977365420018032 +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.4974016669984848 +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905 +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.4971792910000658 +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.4981023750005988 +21,1539.6550675608858,2.010956159468265,0.0,465.2011915569919,0.4970588750002207 +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936 +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943 +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205 +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.4967334999964805 +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164 +27,1543.166248570158,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906 +28,1517.437899341542,1.9819381331466872,0.0,458.488354801267,0.4898863329981395 +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..2147ba783 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/cleaned/mac/without_smell.csv @@ -0,0 +1,882 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.0761317500000586 +1,256.12393460719073,0.9064551362425152,0.0,65.29834222191452,0.0772571669986064 +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.0767200000009324 +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752 +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.0765427500009536 +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.076881291999598 +6,253.37879933322745,0.8967397538336794,0.0,64.59847485950024,0.0764291250015958 +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.0785475830016366 +8,256.86308778885234,0.9090710932362056,0.0,65.4867880127563,0.0774801250008749 +9,255.65027029969852,0.9047787780956692,0.0,65.17758234800283,0.0771142910016351 +10,254.2089816160017,0.8996778743782993,0.0,64.8101283579923,0.0766795410017948 +11,258.8750074470721,0.9161915324512973,0.0,65.99972335621382,0.0780870000016875 +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.0775150420013233 +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.0773265410025487 +14,253.7441622806205,0.898032819711201,0.0,64.69162349401059,0.0765393330002552 +15,251.5744948659375,0.890354091149602,0.0,64.13847064022133,0.0758848750010656 +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.0769605839996074 +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.0773543750001408 +18,257.3632704895553,0.9108413033448676,0.0,65.6143087039173,0.0776310000001103 +19,254.9952406394763,0.90246054492933,0.0,65.01058369953878,0.0769167079997714 +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.0762424999993527 +21,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.0779090830001223 +22,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.0773496250003518 +23,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142 +24,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496 +25,254.63913044761705,0.9012002257288844,0.0,64.91979403861778,0.0768092910002451 +26,255.21888157057143,0.903252038590304,0.0,65.06760055770893,0.0769841670007736 +27,255.8472502804252,0.9054759152669394,0.0,65.22780204422952,0.0771737079994636 +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.076847208001709 +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.0770459590021346 +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.0773680829988734 +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.076017999999749 +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.0762255000008735 +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.077563791997818 +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.0770248330009053 +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.0733274169979267 +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.0775150410008791 +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.0773663330000999 +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.075760417003039 +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.0773687500004598 +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887 +13,248.11253105893135,0.76910270012068,0.0,68.17326333869708,0.071188792000612 +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.0754453750014363 +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.0776007089989434 +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.0776465839990123 +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.0784323340012633 +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.075241750000714 +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392 +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.0780122500000288 +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.0768742920008662 +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.078040291002253 +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483 +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.0799040839992812 +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.0787826250016223 +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.0793842499988386 +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.0794322090005152 +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.0823663330011186 +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.0802108749994658 +0,251.2126028110106,0.0,0.0,63.04752093895013,0.074755040997843 +1,251.92782659925052,0.0,0.0,63.22702262899478,0.0749678749998565 +2,258.018691325029,0.0,0.0,64.75566377612596,0.0767803749986342 +3,260.54003040902114,0.0,0.0,65.38845121160259,0.0775306670002464 +4,259.9749090575512,0.0,0.0,65.24662114479398,0.0773625000001629 +5,257.4462911868574,0.0,0.0,64.61200693211013,0.0766100420005386 +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752 +7,258.55804789756263,0.0,0.0,64.89102758518595,0.0769408749983995 +8,261.25119137299276,0.0,0.0,65.56693324341647,0.077742292000039 +9,260.1166102987462,0.0,0.0,65.28218429676703,0.0774046670012467 +10,237.00576584766733,0.0,0.0,59.48199181779978,0.0705274159990949 +11,261.5736560314424,0.0,0.0,65.64786308960325,0.0778382499993313 +12,258.20715696601536,0.0,0.0,64.80296351870814,0.0768364579998888 +13,256.72603004324225,0.0,0.0,64.43124100307053,0.0763957089984614 +14,259.4536150402221,0.0,0.0,65.1157905451141,0.0772073749976698 +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666 +16,258.93344008202195,0.0,0.0,64.98524079879539,0.0770525830012047 +17,259.39424550343654,0.0,0.0,65.10089040845003,0.0771897080012422 +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765 +19,247.2062185079991,0.0,0.0,62.042027602202104,0.0735628340007679 +20,240.2339275243244,0.0,0.0,60.29217247205807,0.0714880420018744 +21,261.37664806550475,0.0,0.0,65.59841945612862,0.077779625000403 +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121 +23,259.09586538480823,0.0,0.0,65.02600512575927,0.0771009170020988 +24,259.9893288635479,0.0,0.0,65.25024012334178,0.0773667909998039 +25,257.87783357147384,0.0,0.0,64.72031231657613,0.0767384589998982 +26,259.9124613012882,0.0,0.0,65.23094845888362,0.0773439169970515 +27,259.9603447479832,0.0,0.0,65.24296589978566,0.0773581659996125 +28,257.0997419885865,0.0,0.0,64.52503252242737,0.0765069170010974 +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405 +0,381.3081659044242,0.198030727553583,9.967546620197012,73.07333846727214,0.0762857089976023 +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957 +2,387.4458082495051,0.2012182852503272,10.12798702426647,74.24954725737075,0.077513624997664 +3,381.1904880655916,0.1979696120828831,9.964470474838452,73.05078685858389,0.0762621659996511 +4,377.4216778769259,0.1960122970017792,9.865952282422889,72.32853759365653,0.0755081659990537 +5,395.2054385543479,0.2052482152969867,10.330826836614998,75.7365914445881,0.0790660410020791 +6,382.2245416168645,0.198506643270249,9.991501044602536,73.2489513667219,0.0764690420000988 +7,388.2468053820079,0.2016342796063401,10.148925406852452,74.40304917473951,0.0776738749991636 +8,361.77536742490526,0.1878864541287485,9.456951524480342,69.3301015735082,0.072377915999823 +9,396.6091653952728,0.2059772346898327,10.367520812721578,76.00559960054827,0.0793468750016472 +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.0757492079974326 +11,389.1548487153577,0.2021058679383836,10.17266201956531,74.57706526926356,0.0778555409997352 +12,398.0607921145172,0.2067311306748985,10.405466910636562,76.28378721903758,0.07963729200128 +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.0798584579970338 +14,394.0549717448149,0.2046507253933082,10.300753178129844,75.51611767013073,0.0788358749996405 +15,389.67822848863034,0.2023776829335914,10.186343374324103,74.67736500249524,0.0779602500006149 +16,390.66458707880736,0.2028899439516008,10.21212717889724,74.8663893181407,0.0781575839973811 +17,382.3307530923388,0.1985618037353096,9.994277454677253,73.26930557832927,0.0764902910013916 +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962 +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.0725337920011952 +20,388.52755176123173,0.2017800840099879,10.156264228502726,74.45685099968554,0.0777300420013489 +21,389.50432339303006,0.2022873660831109,10.18179742618325,74.64403808466793,0.0779254580011183 +22,381.15924792662696,0.1979533876534027,9.963653845221272,73.04480004410561,0.0762559159993543 +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.0780157500012137 +24,385.52849854792015,0.2002225388459725,10.07786778858062,73.88211683416388,0.0771300419983163 +25,377.8184326260527,0.196218349844743,9.876323608852063,72.40457109271017,0.0755875419999938 +26,373.01390441782655,0.1937231391419509,9.750731336811532,71.4838383433799,0.0746263330001966 +27,392.390082348607,0.2037860723700893,10.257232309294496,75.19706070456296,0.0785027919991989 +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.078830000002199 +29,389.200049447067,0.2021293427406216,10.17384358461129,74.58572747128939,0.0778645840000535 +0,252.31231985583565,0.7304738829883385,0.0,65.27780245250334,0.0762640409993764 +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.0785115409998979 +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844 +3,254.08107578790057,0.7355946397333613,0.0,65.7354118961722,0.0767986660030146 +4,254.8141653450625,0.7377170203436471,0.0,65.925075545255,0.0770202499988954 +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552 +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.076410500001657 +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283 +8,255.1343891608784,0.7386441060059645,0.0,66.00792329126028,0.0771170410007471 +9,254.33927029643831,0.7363421432453802,0.0,65.80221152820079,0.0768767079971439 +10,254.15483004207024,0.7358081669858593,0.0,65.75449346791815,0.0768209589987236 +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.0783152080002764 +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539 +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.0761889579989656 +14,254.008843365794,0.7353855183639252,0.0,65.71672405015805,0.076776832996984 +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.0768490000009478 +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.0778543330015963 +17,255.57027480120905,0.7399060462727463,0.0,66.1206948623736,0.0772487920003186 +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.0767076669981179 +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801 +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.0753446670023549 +21,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.0774812499985273 +22,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745 +23,252.95552999281617,0.7323360520913219,0.0,65.44421265506995,0.0764584579992515 +24,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.0769151659987983 +25,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.0767502079979749 +26,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.0767220839989022 +27,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.0763839579994964 +28,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787 +0,254.55862726842625,0.0,0.0,64.64502264360112,0.0770675419989856 +1,249.45099505649355,0.0,0.0,63.34794226750606,0.075521208000282 +2,260.34668630262985,0.0,0.0,66.11489703498854,0.0788198749978619 +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234 +4,254.45815813069177,0.0,0.0,64.61950856162512,0.0770371250000607 +5,255.8519102420228,0.0,0.0,64.97345113966061,0.0774590830005763 +6,248.69707187526592,0.0,0.0,63.15648389249447,0.0752929580012278 +7,255.1022546097663,0.0,0.0,64.78307650635061,0.0772321250005916 +8,252.78860060747465,0.0,0.0,64.1955253517402,0.0765316670003812 +9,254.73506346907223,0.0,0.0,64.68982851919962,0.0771209580016147 +10,253.83333170049056,0.0,0.0,64.46083423515617,0.0768479590005881 +11,253.7371268072013,0.0,0.0,64.43640305569922,0.0768188330002885 +12,240.22252605510252,0.0,0.0,61.00437766723181,0.0727272919975803 +13,258.0346838423428,0.0,0.0,65.52776528855703,0.0781199170014588 +14,254.20038081866608,0.0,0.0,64.5540461557671,0.0769590830022934 +15,254.6882723304369,0.0,0.0,64.67794593541505,0.0771067919995402 +16,255.76066324322383,0.0,0.0,64.95027901476814,0.0774314580012287 +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999 +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448 +19,253.6951515285212,0.0,0.0,64.4257434568875,0.0768061249982565 +20,253.3447531357101,0.0,0.0,64.3367599787763,0.076700041998265 +21,255.2514405716164,0.0,0.0,64.82096219887414,0.0772772910022467 +22,256.95678343157175,0.0,0.0,65.25403307523722,0.0777935830010392 +23,255.03110341882655,0.0,0.0,64.76500770075256,0.0772105840005679 +24,255.734925804407,0.0,0.0,64.94374300641141,0.0774236659999587 +25,256.5582165256291,0.0,0.0,65.15281722984973,0.0776729169992904 +26,256.4007696213289,0.0,0.0,65.11283367555865,0.0776252499999827 +27,240.76863068541655,0.0,0.0,61.143060636146465,0.0728926249976211 +28,253.9838950248202,0.0,0.0,64.49906970811983,0.0768935419982881 +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292 +1,242.77578502676263,0.4671759814498319,0.0,63.69165880432708,0.0724429590009094 +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993 +3,258.51333715491046,0.4974599175527462,0.0,67.82036875969108,0.0771389580004324 +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.0854656670016993 +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141 +6,243.74387927163863,0.4690388953270789,0.0,63.94563606292509,0.0727318329991248 +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.074225792002835 +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.0776544169966655 +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708 +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.0730839579991879 +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632 +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.0799434170003223 +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.0794488749997981 +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.0797305839987529 +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.0777837919995363 +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.0775734999988344 +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.0781226660001266 +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.078081875002681 +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.0791336250003951 +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488 +21,257.9793695450014,0.4964323980981425,0.0,67.6802836073801,0.0769796250024228 +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.0782561670021095 +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.0792537500019534 +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041 +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.0780591249967983 +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.0775096249999478 +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.0782039170007919 +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.0776473750011064 +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.0781980419997125 +0,255.65537390140065,0.0,0.0,64.03179678521767,0.0776107909987331 +1,252.3971302607853,0.0,0.0,63.2157325989312,0.0766216669981076 +2,254.03647687991125,0.0,0.0,63.626325609258025,0.0771193330001551 +3,252.92870751153595,0.0,0.0,63.34887216872111,0.0767830410004535 +4,256.21770129194005,0.0,0.0,64.172638077338,0.0777815000001282 +5,261.83806978347053,0.0,0.0,65.58032330458661,0.0794877080006699 +6,257.89026530262356,0.0,0.0,64.59155076126875,0.0782892499992158 +7,254.00381288625172,0.0,0.0,63.61814454045324,0.0771094170013384 +8,255.43041857262065,0.0,0.0,63.97545416398356,0.0775424999992537 +9,254.5701162116187,0.0,0.0,63.75998165068225,0.0772813330004282 +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248 +11,250.66526969948472,0.0,0.0,62.78196841932783,0.0760959159997582 +12,253.81728616949164,0.0,0.0,63.57142680227183,0.0770527919994492 +13,252.96713941908897,0.0,0.0,63.35849787717756,0.0767947079984878 +14,239.62560934353888,0.0,0.0,60.01695989358342,0.072744542001601 +15,251.76288345726073,0.0,0.0,63.05687827165771,0.0764291250015958 +16,257.5634672163916,0.0,0.0,64.50970046284525,0.0781900420006422 +17,255.07685287249387,0.0,0.0,63.88689961214584,0.0774351660002139 +18,253.78612756335775,0.0,0.0,63.56362277489847,0.0770433329998923 +19,261.432764118169,0.0,0.0,65.47880988986569,0.0793646669990266 +20,253.1580604236211,0.0,0.0,63.40631621472186,0.0768526669999118 +21,255.3783986189558,0.0,0.0,63.96242517479779,0.0775267079989134 +22,255.35575189540887,0.0,0.0,63.95675304525136,0.0775198330011335 +23,249.2891719762051,0.0,0.0,62.437309089742904,0.0756781659983971 +24,253.92571378551105,0.0,0.0,63.59858373220023,0.0770857080024143 +25,253.67358237649097,0.0,0.0,63.53543455250894,0.077009167001961 +26,253.70103185415508,0.0,0.0,63.542309586461194,0.0770174999997834 +27,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622 +28,254.50876744267657,0.0,0.0,63.74461615358363,0.0772627089972957 +0,251.53573576786724,0.0,0.0,62.72152708777785,0.0744095830013975 +1,261.23641907506607,0.0,0.0,65.1404345601695,0.0772792499992647 +2,259.69001833656097,0.0,0.0,64.75483282643327,0.076821792001283 +3,261.4181167235588,0.0,0.0,65.18574165717872,0.0773330000010901 +4,260.86401158116945,0.0,0.0,65.04757313574873,0.0771690839974326 +5,249.72157861361,0.0,0.0,62.269159130020775,0.073872917000699 +6,260.1970815239249,0.0,0.0,64.88127123227001,0.0769717920011316 +7,259.727625526503,0.0,0.0,64.764210342417,0.0768329170023207 +8,261.2393769415889,0.0,0.0,65.14117211702067,0.0772801249986514 +9,267.88415944731423,0.0,0.0,66.79807746549119,0.0792457919997104 +10,260.33046618014515,0.0,0.0,64.91453127503361,0.0770112499994866 +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019 +12,262.63957446676875,0.0,0.0,65.49031744516148,0.0776943329983623 +13,258.95505728780233,0.0,0.0,64.57156710004472,0.0766043750008975 +14,259.6273385675486,0.0,0.0,64.73920335407234,0.0768032500018307 +15,261.7203838407915,0.0,0.0,65.26111327435025,0.0774224169981607 +16,262.19885205972054,0.0,0.0,65.38042140073868,0.0775639580024289 +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099 +18,260.1817276561712,0.0,0.0,64.8774426787276,0.0769672500027809 +19,238.90592081951175,0.0,0.0,59.57222793162153,0.0706734170016716 +20,244.5389668999695,0.0,0.0,60.97685241268609,0.0723397910005587 +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988 +22,259.8796025059062,0.0,0.0,64.80210646163543,0.0768778750025376 +23,259.9752413748415,0.0,0.0,64.82595442856649,0.0769061669998336 +24,260.9768297690729,0.0,0.0,65.07570484040285,0.0772024580001016 +25,261.8691223893613,0.0,0.0,65.29820187678934,0.0774664170021424 +26,259.81227464687464,0.0,0.0,64.78531796786092,0.0768579579998913 +27,259.9996074518044,0.0,0.0,64.83203021557779,0.0769133750000037 +28,259.53803797523506,0.0,0.0,64.71693586391773,0.0767768330006219 +29,238.99902099587555,0.0,0.0,59.5954428645449,0.0707009580000885 +0,237.2903027127171,0.3735384536996727,0.0,63.37702431104448,0.0720150829984049 +1,254.30572604705935,0.4003238505266577,0.0,67.92161330602293,0.0771790830003738 +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.076375916996767 +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.0744619170000078 +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.0772538749988598 +5,254.06793847194996,0.3999495292750097,0.0,67.85810346699333,0.0771069170004921 +6,236.36440535324107,0.3720809214533507,0.0,63.129729673251845,0.0717340829978638 +7,253.92130730041657,0.3997187049199788,0.0,67.81894026808975,0.077062415999535 +8,255.6341646934731,0.4024150565816184,0.0,68.27642126668127,0.0775822499999776 +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.0774064999968686 +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.073707874998945 +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.0794006249998346 +12,242.49408311058815,0.3817301583795169,0.0,64.76688353839138,0.073594375000539 +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.0757026249993941 +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.078668625003047 +15,240.73660801776333,0.3789635702758966,0.0,64.29748575681046,0.0730610000027809 +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.0800764999985403 +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.0802019589973497 +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.0784857090002333 +19,255.1599602642359,0.4016685718445272,0.0,68.14976768962146,0.0774383339994528 +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.0785644589996081 +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.0799249170013354 +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.0784903749990917 +23,254.37094085870467,0.400426510600086,0.0,67.93903129848127,0.0771988750020682 +24,257.3998773220497,0.4051946120772132,0.0,68.74801918243385,0.07811812500222 +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.0782012919989938 +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.0796113340002193 +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.0793126249991473 +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.0785715840029297 +29,253.68324295352303,0.3993439479787848,0.0,67.75535650706716,0.0769901660023606 +0,259.3603261187444,0.0,0.0,65.0750093613154,0.0772384160009096 +1,259.0137620395562,0.0,0.0,64.98805442477995,0.0771352080009819 +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189 +3,242.06494915581175,0.0,0.0,60.73549901826075,0.0720877919993654 +4,264.44449718901984,0.0,0.0,66.35065735630297,0.0787525000014284 +5,258.4949635864557,0.0,0.0,64.85788488536977,0.0769807079996098 +6,260.75512162880096,0.0,0.0,65.42497164055966,0.0776537910023762 +7,258.54729338873193,0.0,0.0,64.87101473612205,0.0769962919985118 +8,258.4187119612678,0.0,0.0,64.83875291057171,0.0769579999978304 +9,256.03319274883137,0.0,0.0,64.24021231107454,0.076247583998338 +10,259.9925953597714,0.0,0.0,65.23364937921801,0.0774267080014396 +11,260.68391024286916,0.0,0.0,65.40710429100974,0.0776325840015488 +12,266.00341096992025,0.0,0.0,66.74179786111225,0.0792167500003415 +13,262.4791342007781,0.0,0.0,65.85753638914451,0.0781672080011048 +14,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304 +15,259.2768012481966,0.0,0.0,65.0540524870928,0.0772135420011181 +16,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263 +17,249.63999413559765,0.0,0.0,62.63612171699325,0.0743436669981747 +18,256.52512449555974,0.0,0.0,64.36364083810693,0.0763940830001956 +19,257.38978857591655,0.0,0.0,64.58059006841385,0.0766515830000571 +20,260.0975303138043,0.0,0.0,65.25997816750345,0.077457957999286 +21,258.5177705738045,0.0,0.0,64.86360729071002,0.0769875000005413 +22,248.91608058597623,0.0,0.0,62.45448761079295,0.0741280830006871 +23,261.7960764426832,0.0,0.0,65.68615323788339,0.0779637910018209 +24,259.62770375529885,0.0,0.0,65.14209596034219,0.0773180420001153 +25,260.6953808942086,0.0,0.0,65.40998234392734,0.077636000001803 +26,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981 +27,258.4513106522235,0.0,0.0,64.84693211111042,0.0769677080024848 +28,259.19789015504335,0.0,0.0,65.03425323636505,0.0771900420004385 +0,261.95098582591453,0.915083014270888,0.0,66.25878862591058,0.0779010410005867 +1,245.40833969424455,0.8572939800419981,0.0,62.07443448081875,0.072981459001312 +2,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.0765551250005955 +3,258.9009587470573,0.9044282424855152,0.0,65.48730422441415,0.0769939999991038 +4,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227 +5,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.0774625839985674 +6,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.0775410830028704 +7,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.0770794579984794 +8,258.61457516789665,0.9034278081942309,0.0,65.41486537110077,0.0769088330016529 +9,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.0707159580015286 +10,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.0780311669986986 +11,260.6072019459684,0.9103887246139408,0.0,65.91888728223164,0.077501415998995 +12,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548 +13,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.0768012089974945 +14,260.0306551965286,0.9083746526466904,0.0,65.77305355275111,0.0773299579996091 +15,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.0772179580017109 +16,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619 +17,260.3005048322299,0.9093173283051116,0.0,65.84131025320345,0.0774102080031298 +18,264.0587854421345,0.9224462682025656,0.0,66.79194275318578,0.0785278750008728 +19,263.0532231845429,0.9189335005799792,0.0,66.5375923568096,0.0782288330010487 +20,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.0775990420006564 +21,258.78481075864437,0.9040224984452576,0.0,65.45792535038811,0.0769594589983171 +22,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.0775372499992954 +23,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.077450917000533 +24,252.4247090150945,0.8818045210774421,0.0,63.84917921134812,0.0750680420023854 +25,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.0768218749981315 +26,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.0772714170016115 +27,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766 +28,251.73803334741703,0.8794057317091811,0.0,63.67548909227589,0.0748638330005633 +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.0750980420016276 +1,246.76674350378295,0.5470832863281573,0.0,65.48908751045883,0.0748969999986002 +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.0753702500005601 +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.0801031660012085 +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.0787539170014497 +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.0802945840005122 +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732 +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008 +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956 +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.0795499999985622 +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.0788625000022875 +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.0737082090017793 +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.0777287089986202 +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.0809930830000666 +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.0782412090011348 +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.0782246669987216 +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.0764459579986578 +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.0785907919998862 +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.0798172499999054 +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879 +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.0777190000007976 +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.0745992910015047 +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.0789691250029136 +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.077969292000489 +24,251.71874980934945,0.5580619127228665,0.0,66.80329367006078,0.0764000000017404 +25,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.0773807089972251 +26,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.0778139169997302 +27,252.35079120270456,0.5594631521186721,0.0,66.9710302683234,0.0765918329998385 +28,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.0767333750009129 +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.0754009170013887 +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.0771903749991906 +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.0770712499979708 +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.0776679580012569 +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.0779796249989885 +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.0773913749981147 +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.0775697919998492 +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.0763929170025221 +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.077310500000749 +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.078158500000427 +10,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.0771376249977038 +11,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673 +12,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.0769387920008739 +13,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766 +14,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.0772323329983919 +15,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.0768300420022569 +16,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.0776397079971502 +17,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665 +18,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.0771370830007072 +19,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.0776909169981081 +20,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.0772428750024118 +21,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409 +22,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.0776754579965199 +23,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.0769548329990357 +24,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.0770484999993641 +25,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.0768427919974783 +26,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.076798707999842 +27,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.0777810409999801 +28,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901 +0,253.53427688728465,0.0,0.0,64.57760820245201,0.076206000001548 +1,258.26881641088414,0.0,0.0,65.78354075771735,0.0776290829999197 +2,255.5581794818601,0.0,0.0,65.09311557446122,0.0768143340028473 +3,258.37666645619265,0.0,0.0,65.81101119704435,0.0776614999995217 +4,251.4109813828545,0.0,0.0,64.03678450450256,0.0755677910019585 +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029 +6,257.9566378142825,0.0,0.0,65.70402587969754,0.0775352499986183 +7,257.22664634671185,0.0,0.0,65.51809006240816,0.0773158330011938 +8,253.8991312230035,0.0,0.0,64.67054009565513,0.0763156659995729 +9,251.0245017908568,0.0,0.0,63.938344451438795,0.0754516249980952 +10,254.54456469819945,0.0,0.0,64.83493818254766,0.0765096670002094 +11,255.85774223615337,0.0,0.0,65.16941707663403,0.0769043750005948 +12,255.93204323154933,0.0,0.0,65.188342251678,0.0769267080031568 +13,259.880176018943,0.0,0.0,66.19396948049216,0.0781134169992583 +14,255.01172304341273,0.0,0.0,64.95392788664633,0.0766500829995493 +15,257.21028768275835,0.0,0.0,65.51392335404637,0.0773109159999876 +16,258.4208884003968,0.0,0.0,65.8222749497086,0.0776747919990157 +17,254.56563433542095,0.0,0.0,64.84030482091373,0.0765160000009927 +18,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036 +19,253.8269129094721,0.0,0.0,64.65214539962614,0.0762939589985762 +20,253.50017554675208,0.0,0.0,64.56892226445922,0.076195749999897 +21,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575 +22,256.791646381911,0.0,0.0,65.40729140575363,0.077185082998767 +23,258.8575518455188,0.0,0.0,65.93349731073064,0.0778060420016117 +24,254.13770416501097,0.0,0.0,64.73130690859188,0.0763873750001948 +25,255.17931863433267,0.0,0.0,64.99661608857218,0.0767004580011416 +26,255.7738762440398,0.0,0.0,65.14805560533038,0.0768791670016071 +27,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329 +28,254.6501956683362,0.0,0.0,64.86184340217827,0.076541417001863 +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645 +1,247.59900572459188,0.0,0.0,63.63541223539677,0.0749709170013375 +2,252.59749193776693,0.0,0.0,64.92007301098222,0.0764844170007563 +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751 +4,255.00742611955113,0.0,0.0,65.53945011497832,0.0772141250017739 +5,254.3331440184321,0.0,0.0,65.36615289457113,0.0770099579967791 +6,239.8215196985124,0.0,0.0,61.63652081022233,0.0726159590012684 +7,252.36520681402695,0.0,0.0,64.86037341904694,0.0764140829996904 +8,252.1722820871298,0.0,0.0,64.81078984139654,0.0763556669990066 +9,253.17365705842755,0.0,0.0,65.06815318950152,0.0766588750011578 +10,254.7703291078643,0.0,0.0,65.47851381988168,0.0771423340011097 +11,257.12521884407045,0.0,0.0,66.08374395274846,0.0778553750024002 +12,257.5769881962842,0.0,0.0,66.19985317895198,0.0779921670000476 +13,252.49634648493628,0.0,0.0,64.89407762151053,0.0764537909999489 +14,256.16553921217854,0.0,0.0,65.83709672243897,0.0775647920017945 +15,252.85330477462892,0.0,0.0,64.98581945968536,0.0765618749974237 +16,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322 +17,253.6318929035833,0.0,0.0,65.1859243688412,0.0767976249990169 +18,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254 +19,245.8200036875109,0.0,0.0,63.17819098094965,0.0744322499995178 +20,253.09219510207856,0.0,0.0,65.04721665480663,0.0766342089991667 +21,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297 +22,237.6873493714192,0.0,0.0,61.08801776535877,0.0719697499989706 +23,252.67647692470263,0.0,0.0,64.94037293985049,0.0765083329970366 +24,252.3727763729606,0.0,0.0,64.86231887113699,0.0764163749990984 +25,255.234202497438,0.0,0.0,65.59773390432493,0.0772827910004707 +26,252.58785824967035,0.0,0.0,64.91759705712458,0.0764815000002272 +27,254.14255755018047,0.0,0.0,65.31717027269754,0.0769522500013408 +28,253.90256744879193,0.0,0.0,65.25549042471276,0.0768795829972077 +0,249.7923844146721,0.0,0.0,64.11304733285456,0.0759544579996145 +1,251.5237567706763,0.0,0.0,64.55743060767458,0.0764809169995714 +2,236.44843625054185,0.0,0.0,60.68811833728591,0.0718969589979678 +3,254.81671512475305,0.0,0.0,65.40261888398953,0.0774822080020385 +4,254.0024857747179,0.0,0.0,65.19363443083687,0.0772346249977999 +5,250.58400715096883,0.0,0.0,64.3162294518006,0.0761951670028793 +6,253.13741623502708,0.0,0.0,64.97160106310882,0.0769715829992492 +7,247.96660298643684,0.0,0.0,63.64443252138948,0.0753992919999291 +8,251.19145867599536,0.0,0.0,64.47214120414525,0.0763798750012938 +9,256.62427379017913,0.0,0.0,65.86655654383826,0.0780318329998408 +10,252.7525020227826,0.0,0.0,64.87280692586343,0.0768545419996371 +11,252.65411359951872,0.0,0.0,64.84755402773163,0.0768246249972435 +12,257.1501948549435,0.0,0.0,66.00154225286055,0.0781917500025883 +13,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418 +14,251.44934635326925,0.0,0.0,64.53833203257409,0.0764582909978344 +15,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126 +16,251.21776837388165,0.0,0.0,64.4788939917046,0.0763878750003641 +17,251.416600645554,0.0,0.0,64.52992734436225,0.0764483339989965 +18,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213 +19,252.05912958228944,0.0,0.0,64.69484225251759,0.0766437079983006 +20,255.11256441560653,0.0,0.0,65.47855314288348,0.0775721669997437 +21,244.42520870193505,0.0,0.0,62.73547935246641,0.0743224589969031 +22,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758 +23,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994 +24,252.46364123963497,0.0,0.0,64.7986663746775,0.0767667079999228 +25,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086 +26,255.64108684697413,0.0,0.0,65.61420653255007,0.0777328750009473 +27,250.51795663338612,0.0,0.0,64.29927657323282,0.0761750829988159 +28,252.8123829029725,0.0,0.0,64.88817627235069,0.0768727499998931 +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.0759556669981975 +1,250.9902886146916,0.9006828538804723,0.0,65.11603447313637,0.0766364589981094 +2,251.08826581851417,0.901034446717156,0.0,65.14145333303291,0.0766663750000589 +3,251.6577197956367,0.9030779418503708,0.0,65.28919046266385,0.0768402499998046 +4,254.8982707317584,0.9147067131522432,0.0,66.12990755826587,0.0778297079996264 +5,256.4147688442029,0.9201486920246515,0.0,66.5233424752637,0.0782927500004007 +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.0775765830003365 +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.0764232500005164 +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.0776412500017613 +9,254.6710622884788,0.913891371848608,0.0,66.07096140179567,0.0777603330025158 +10,253.76932556597777,0.9106554745190588,0.0,65.83701800967418,0.0774850000016158 +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.0757235410019347 +12,251.66945440127165,0.9031200516792044,0.0,65.29223484732618,0.076843833001476 +13,251.2764451718155,0.9017097314778068,0.0,65.1902739201733,0.0767238329972315 +14,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.0771029589996032 +15,250.18161649107023,0.8977809204225009,0.0,64.90623543202673,0.076389542002289 +16,253.47757189478065,0.9096085115841412,0.0,65.76132646712013,0.0773959170001035 +17,248.6101232868392,0.8921415907422459,0.0,64.49853278255051,0.0759097080008359 +18,251.7260870200961,0.903323278780249,0.0,65.30692741403874,0.0768611249986861 +19,251.30523965227655,0.9018130609531456,0.0,65.19774425853853,0.07673262499884 +20,252.35899561673511,0.905594481878236,0.0,65.47112698615987,0.0770543750004435 +21,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.0770828749991778 +22,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.0753380000023753 +23,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.0723041249984817 +24,253.50431617204092,0.9097044838709604,0.0,65.76826490800424,0.0774040830001467 +25,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.0766381670000555 +26,252.60531086151025,0.906478388259008,0.0,65.53503014376236,0.0771295839986123 +27,253.74831266909396,0.9105800693867008,0.0,65.83156649788296,0.077478584000346 +28,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.0768664999995962 +0,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.0775276669992308 +1,389.8002261465144,0.3431340018895373,12.901838471046604,76.62182262193369,0.0799885419983184 +2,389.79007528132496,0.3431250662687719,12.901502491705823,76.61982729781678,0.0799864590007928 +3,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.0766496670003107 +4,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.0783959170003072 +5,368.8117548208933,0.3246582348775469,12.207149631395763,72.49618384815624,0.0756816249995608 +6,379.99108210302904,0.334499191992103,12.577169618903074,74.69366957183661,0.0779756669980997 +7,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.0752130000000761 +8,388.8351277233648,0.3422844434184549,12.869895072533906,76.43211621534098,0.0797904999999445 +9,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.0803932499984512 +10,381.6621806372591,0.3359702294342069,12.63248062672618,75.02215223265841,0.0783185830005095 +11,366.6756700911541,0.322777878601368,12.136448235411438,72.07630029168548,0.0752432919980492 +12,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.0785939159977715 +13,384.18386223037226,0.3381900195689896,12.715944735794013,75.51783136975538,0.0788360419974196 +14,378.7553163563533,0.3334113700320011,12.536267513203242,74.45075892814586,0.0777220829986617 +15,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.0786690409986476 +16,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.0785877500020433 +17,381.6906108958314,0.3359952560702742,12.63342162824231,75.02774068049223,0.0783244170015677 +18,388.1719679438419,0.341700676006903,12.847945417859556,76.30176095234145,0.0796544170007109 +19,378.5252623152303,0.3332088576718577,12.528653048461848,74.40553791812582,0.0776748750031401 +20,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513 +21,383.54607720273344,0.3376285890869132,12.694834949667936,75.39246394310773,0.0787051659972348 +22,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758 +23,373.0230141252263,0.3283653293355865,12.346536383018057,73.32397804063648,0.0765457919987966 +24,383.6628342422502,0.3377313681709948,12.698699443229406,75.41541451258315,0.0787291250017006 +25,383.9716733361366,0.3380032335705427,12.708921582252408,75.4761220563022,0.0787925000004179 +26,388.3768470521449,0.3418810273346346,12.85472662778226,76.3420334038239,0.0796964590008428 +27,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.0767264999994949 +28,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.071810417000961 +0,252.8448031031451,0.0,0.0,63.327795876031466,0.0765359580000222 +1,250.71246289168695,0.0,0.0,62.793727530579304,0.0758905000002414 +2,255.849573327428,0.0,0.0,64.08037403101984,0.0774454999991576 +3,259.473357102869,0.0,0.0,64.98799102141685,0.078542416998971 +4,255.35499678935537,0.0,0.0,63.956501830904415,0.0772957920016779 +5,253.22472132458208,0.0,0.0,63.42295062424645,0.0766509589993802 +6,253.2219661176063,0.0,0.0,63.42226055198546,0.0766501250000146 +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966 +8,254.19074916093857,0.0,0.0,63.664903050717285,0.0769433749992458 +9,255.66691023668932,0.0,0.0,64.0346240263434,0.077390207999997 +10,245.0917868305501,0.0,0.0,61.38596663568849,0.0741891249999753 +11,254.09728348032925,0.0,0.0,63.64149353044874,0.0769150829983118 +12,258.4168897008931,0.0,0.0,64.72338699886663,0.0782226250012172 +13,241.31589833068384,0.0,0.0,60.44025332366666,0.0730461659986758 +14,236.296204735648,0.0,0.0,59.18301517819063,0.0715267080013291 +15,254.9943518084654,0.0,0.0,63.86617428035477,0.0771866249997401 +16,257.59167485304476,0.0,0.0,64.5167027530485,0.0779728330016951 +17,255.1975237091272,0.0,0.0,63.917060944802486,0.0772481250023702 +18,254.1328005774134,0.0,0.0,63.65038918282778,0.0769258340005762 +19,254.61044282269503,0.0,0.0,63.770020000783035,0.0770704159986053 +20,252.7502373251944,0.0,0.0,63.30411082413631,0.076507333000336 +21,256.13602257519875,0.0,0.0,64.1521184341835,0.0775322080007754 +22,257.93167227093824,0.0,0.0,64.6018588915749,0.078075749999698 +23,256.7664632982533,0.0,0.0,64.31001933201313,0.0777230419989791 +24,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739 +25,255.20371797321877,0.0,0.0,63.918612367205384,0.0772500000020954 +26,253.60793655700468,0.0,0.0,63.51893114556863,0.0767669580018264 +27,254.7793397817627,0.0,0.0,63.81232212452318,0.0771215409986325 +28,254.67445023433228,0.0,0.0,63.78605136962657,0.0770897910006169 +0,256.736730168257,0.0,0.0,62.78061796370678,0.0759414589992957 +1,246.83770108103627,0.0,0.0,60.35997810072678,0.0730133750003005 +2,249.48762015903063,0.0,0.0,61.00797091874418,0.073797207998723 +3,261.96853136599685,0.0,0.0,64.05996631422177,0.077488999999332 +4,260.9436089466303,0.0,0.0,63.809338899864194,0.0771858330008399 +5,259.1546474245066,0.0,0.0,63.37187866657925,0.0766566670026804 +6,261.2578738137402,0.0,0.0,63.88618704912788,0.0772787909991166 +7,260.56553299065286,0.0,0.0,63.71688682984707,0.0770739999970828 +8,260.5077801721833,0.0,0.0,63.70276435648577,0.0770569169981172 +9,260.269297511551,0.0,0.0,63.64444746198333,0.0769863750028889 +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342 +11,268.07593877521344,0.0,0.0,65.55342933003354,0.0792955409997375 +12,261.1346195586505,0.0,0.0,63.85604730910659,0.0772423329981393 +13,259.16746372829186,0.0,0.0,63.375012676547826,0.0766604580021521 +14,260.80992855999216,0.0,0.0,63.776649626002715,0.0771462910015543 +15,259.6238641522187,0.0,0.0,63.48661766830046,0.0767954589973669 +16,250.8287784191757,0.0,0.0,61.33592845058567,0.0741939159997855 +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235 +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625 +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357 +20,260.7072425967597,0.0,0.0,63.75153951330592,0.0771159169999009 +21,260.39015821218334,0.0,0.0,63.6740018988115,0.0770221250022586 +22,262.73187065656884,0.0,0.0,64.24662800593482,0.0777147919980052 +23,262.80286575413186,0.0,0.0,64.26398865430983,0.0777357919978385 +24,259.5470914101739,0.0,0.0,63.46784419484701,0.0767727499987813 +25,259.2690272739524,0.0,0.0,63.39984832104239,0.0766904999982216 +26,263.9649879020873,0.0,0.0,64.54816593798147,0.0780795419996138 +27,259.8130390424965,0.0,0.0,63.53287718288986,0.0768514159972255 +28,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653 +0,255.4535357322803,0.0,0.0,63.94788166253961,0.0773206670019135 +1,253.46435879218197,0.0,0.0,63.44992945684153,0.0767185829972731 +2,231.36937798580223,0.0,0.0,57.91887578051573,0.0700308750019758 +3,256.5681585689286,0.0,0.0,64.22690606144654,0.077658041001996 +4,259.27963304187745,0.0,0.0,64.90567156856736,0.0784787499978847 +5,257.07130386219023,0.0,0.0,64.35285881281608,0.0778103330012527 +6,257.34139440968914,0.0,0.0,64.42047078898278,0.0778920839984493 +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725 +8,256.468082553313,0.0,0.0,64.2018539548648,0.0776277499971911 +9,255.38512022018003,0.0,0.0,63.93075515435044,0.0772999589971732 +10,254.8657300539408,0.0,0.0,63.800735811333155,0.0771427500003483 +11,256.0687333702568,0.0,0.0,64.10188456423998,0.0775068750008358 +12,233.89707419467393,0.0,0.0,58.55163593229996,0.0707959579995076 +13,255.41444162612115,0.0,0.0,63.93809520463366,0.0773088339992682 +14,256.2091457030477,0.0,0.0,64.13703409237446,0.0775493750006717 +15,255.03298592111852,0.0,0.0,63.84260510224348,0.0771933750002062 +16,238.25646746995207,0.0,0.0,59.64292623090094,0.0721154589991783 +17,253.54145012996145,0.0,0.0,63.469227791199664,0.0767419170006178 +18,254.73825878542036,0.0,0.0,63.768825829851195,0.0771041670013801 +19,257.11687012908976,0.0,0.0,64.36426545173828,0.0778241249972779 +20,251.6776795914633,0.0,0.0,63.002668667246425,0.0761777910011005 +21,257.5273697281309,0.0,0.0,64.46702613464193,0.0779483750011422 +22,237.10632196795063,0.0,0.0,59.355009415634115,0.0717673330000252 +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745 +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247 +25,254.1629811907558,0.0,0.0,63.624816143544585,0.0769300419997307 +26,254.68470717332065,0.0,0.0,63.7554202132737,0.077087958001357 +27,254.7956626434966,0.0,0.0,63.78319578215078,0.0771215419990767 +28,255.26521799895795,0.0,0.0,63.90073993834724,0.0772636669971689 +29,237.74451089433737,0.0,0.0,59.51476774438824,0.0719605000012961 +0,406.90110086989495,1.1695525766824268,9.356420613459417,76.36490353632317,0.080162875001406 +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242 +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.0784781250004016 +3,401.51109823696424,1.1540601352656,9.2324810821248,75.35333824381271,0.0791009999993548 +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.0736787080022622 +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.0781110829993849 +6,396.616846417644,1.1399926264434777,9.11994101154782,74.43481266778001,0.0781367919989861 +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764 +8,399.3405038898903,1.147821213311038,9.182569706488303,74.94597333972072,0.0786733749991981 +9,383.8921206281695,1.1034180489777463,8.827344391821972,72.0467079038411,0.0756299160020717 +10,396.6972136294903,1.1402236252770876,9.1217890022167,74.44989553279808,0.0781526250029855 +11,396.0940256882952,1.1384898870066815,9.107919096053454,74.33669262220099,0.0780337920004967 +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.0781155000004218 +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.0828537080014939 +14,396.0908481484921,1.138480753829464,9.107846030635711,74.33609627945324,0.0780331659989315 +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.075443792000442 +16,374.5642575893283,1.0766070469217317,8.612856375373852,70.29610718136011,0.0737922500011336 +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.0755845000021508 +18,381.37974870457487,1.0961967584711765,8.76957406776941,71.57520011194151,0.0751349579986708 +19,408.4651216412204,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255 +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.0777786670005298 +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.0736387079996347 +22,400.4768776142425,1.1510874832094211,9.20869986567537,75.1592415507328,0.0788972500013187 +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.0792267500000889 +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.0778149590005341 +25,389.6991971410489,1.120109282508721,8.96087426006977,73.13654726968709,0.0767739580005582 +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.0779693330005102 +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.0744205830014834 +28,405.3831898437398,1.165189657171963,9.321517257375705,76.08003055652229,0.0798638340020261 +29,398.0772319408369,1.1441902008613116,9.153521606890491,74.70888958565034,0.078424499999528 +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878 +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405 +2,255.3331764989173,0.0,0.0,70.37239576741659,0.0769770410006458 +3,259.2942335745159,0.0,0.0,71.46410300265921,0.078171207998821 +4,258.6612396991297,0.0,0.0,71.28964351357979,0.0779803750010614 +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063 +6,257.37410271121684,0.0,0.0,70.9348955925995,0.0775923330002115 +7,256.01136788270634,0.0,0.0,70.55931214514888,0.0771815000007336 +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919 +9,259.045318948124,0.0,0.0,71.39549962396424,0.0780961660020693 +10,258.8377308561513,0.0,0.0,71.33828625449453,0.0780335829986142 +11,256.8371626413573,0.0,0.0,70.78690950000609,0.0774304580008902 +12,257.99811414343014,0.0,0.0,71.1068794298479,0.0777804579993244 +13,258.1165610601165,0.0,0.0,71.13952459336632,0.0778161670023109 +14,256.135891547354,0.0,0.0,70.5936321216249,0.0772190410025359 +15,256.2543384519732,0.0,0.0,70.62627728181748,0.0772547500018845 +16,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197 +17,253.0893623898181,0.0,0.0,69.75397799390524,0.0763005829976464 +18,253.0000819108746,0.0,0.0,69.72937139446263,0.0762736670003505 +19,240.37099932043577,0.0,0.0,66.24866900231768,0.0724662909997277 +20,247.79459427718265,0.0,0.0,68.29468656053892,0.0747043330011365 +21,256.24618193564646,0.0,0.0,70.62402926374595,0.0772522910010593 +22,254.47628482944975,0.0,0.0,70.13622779065612,0.0767187080018629 +23,257.38833929398254,0.0,0.0,70.93881933823452,0.0775966250002966 +24,256.62086741918284,0.0,0.0,70.7272963577338,0.0773652499992749 +25,257.5863909862953,0.0,0.0,70.99340437988461,0.0776563330000499 +26,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218 +27,256.10728569098626,0.0,0.0,70.5857480594236,0.0772104169991507 +28,261.6339654918951,0.0,0.0,72.1089566904453,0.0788765830002375 +0,261.6846194438566,0.0,0.0,70.7870578236059,0.0761451660000602 +1,264.8513555634606,0.0,0.0,71.64367650179537,0.0770666249991336 +2,269.77737005954486,0.0,0.0,72.97618917951907,0.0784999999996216 +3,266.95043658088093,0.0,0.0,72.21148889242174,0.0776774170008138 +4,245.5969253936852,0.0,0.0,66.43525246569763,0.0714639580000948 +5,264.9049123942919,0.0,0.0,71.65816390456655,0.0770822090016736 +6,268.0374194355293,0.0,0.0,72.50552343808509,0.0779937080005765 +7,249.4505628149961,0.0,0.0,67.47768153758304,0.0725852920004399 +8,261.54973419510105,0.0,0.0,70.7505706585463,0.0761059169999498 +9,243.2800464083468,0.0,0.0,65.80852458595446,0.0707897909996972 +10,270.3172100512772,0.0,0.0,73.12221871993097,0.0786570830023265 +11,272.70482912023755,0.0,0.0,73.76808216217084,0.0793518339996808 +12,270.90029688215856,0.0,0.0,73.2799467564564,0.0788267499992798 +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053 +14,264.864243015556,0.0,0.0,71.64716262497149,0.0770703749985841 +15,267.43801192267176,0.0,0.0,72.34338057174956,0.0778192920006404 +16,268.4402228149727,0.0,0.0,72.61448385835281,0.0781109159979678 +17,245.10605773741895,0.0,0.0,66.30247019808976,0.0713211250003951 +18,270.45009515394486,0.0,0.0,73.15816483501571,0.0786957499985874 +19,269.58577658088814,0.0,0.0,72.92436214176223,0.0784442500007571 +20,264.0393016153403,0.0,0.0,71.42401166286199,0.0768303329969057 +21,264.65732548978616,0.0,0.0,71.59119035234609,0.0770101659982174 +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325 +23,267.9255872644627,0.0,0.0,72.47527225107741,0.0779611670004669 +24,268.883125097681,0.0,0.0,72.73429124161788,0.0782397920011135 +25,266.39670220014995,0.0,0.0,72.06170084713644,0.0775162909994833 +26,270.10857762340623,0.0,0.0,73.06578255732055,0.0785963749985967 +27,269.86486039771097,0.0,0.0,72.99985577345161,0.078525457996875 +28,266.2155630292543,0.0,0.0,72.01270175429117,0.0774635830020997 +29,267.78210693862854,0.0,0.0,72.43646007272716,0.077919416999066 +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185 +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.0771942079991276 +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.0778375420013617 +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.0770157910010311 +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.0775850829995761 +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.0741231249994598 +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.078746458999376 +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.0746817090002878 +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.0783254170019063 +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.0784614170006534 +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.0773908750015834 +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.0808109999998123 +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595 +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.0778277089993935 +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.0793734999970183 +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.0783875000015541 +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.0790057079975667 +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.0785369580007682 +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.0782466659984493 +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.0789429169999493 +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107 +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.0796699590027856 +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185 +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641 +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732 +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.0785001250005734 +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594 +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134 +28,255.42040166006765,0.5993439225500219,0.0,68.29191028611638,0.0778273750001972 +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.0758569999998144 +0,405.8431369282208,0.3014184050465412,12.492118342484432,76.292347410669,0.0778078330004063 +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.077850457997556 +2,374.8841940857946,0.2784252968123578,11.539181745667715,70.47253623761678,0.0718724159996782 +3,395.92910555470706,0.2940552855250341,12.186957944537523,74.42866004733642,0.0759071249995031 +4,396.96491328086944,0.2948245766238508,12.21884078674404,74.6233761721258,0.0761057090021495 +5,403.6617775393808,0.2997983163768301,12.424974667617516,75.88228496737989,0.0773896249993413 +6,410.7431055614168,0.3050575961423297,12.642942595676551,77.21346711246967,0.0787472499978321 +7,408.4530767282583,0.3033567990224727,12.57245400393137,76.7829764636881,0.0783082080015447 +8,412.0644822883901,0.3060389784284131,12.6836154393109,77.46186587332501,0.0790005829985602 +9,414.61052649200695,0.3079299173484124,12.76198435232865,77.94048352440929,0.0794887080010084 +10,401.4493414263137,0.2981551471230255,12.356874430765387,75.46638057180579,0.0769654590003483 +11,418.55140908310005,0.3108567982957502,12.883287307146093,78.68130961307988,0.080244249998941 +12,371.5974824961197,0.2759842665840136,11.438014603981898,69.85468436426478,0.0712422910000896 +13,412.4000411444283,0.3062881969219223,12.69394416131967,77.52494584312656,0.0790649160007888 +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549 +15,411.7995528547654,0.3058422161819515,12.67546073731866,77.4120631624984,0.0789497909972851 +16,409.77163159678435,0.304336085523276,12.613039988909108,77.03084475800254,0.0785609999984444 +17,420.8577378253096,0.3125697013061385,12.954277620798852,79.11486439726484,0.0806864169971959 +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.0790608339993923 +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.076155833001394 +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.0787210829985269 +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.0815035830019041 +22,410.9195773893686,0.305188661206826,12.64837451446068,77.24664113657218,0.0787810829970112 +23,408.3198556922807,0.303257856183407,12.568353372934537,76.7579329317557,0.0782826670001668 +24,402.4147283665603,0.2988721369284571,12.386589674923831,75.64785865811392,0.0771505420016183 +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.0792156669995165 +26,382.7631322481759,0.2842769590884291,11.781700637776003,71.95365697816015,0.0733829580021847 +27,386.7318315968666,0.2872244994530284,11.903859810664404,72.69971219488876,0.0741438330005621 +28,399.2001692552227,0.2964846941159436,12.28764343391633,75.0435703551244,0.0765342500017141 +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.075706124996941 +0,243.61769021404157,0.0,0.0,60.71178863926628,0.0740814170021622 +1,251.461612143386,0.0,0.0,62.666566758453214,0.0764666659997601 +2,254.063240155725,0.0,0.0,63.31491659653083,0.0772577920033654 +3,252.81360526435807,0.0,0.0,63.00349598773077,0.0768777919984131 +4,252.19796606709363,0.0,0.0,62.850072987990785,0.0766905829987081 +5,255.2020225366119,0.0,0.0,63.598711731251065,0.0776040829987323 +6,255.2195634669661,0.0,0.0,63.60308309383669,0.0776094169996213 +7,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134 +8,251.7152386884793,0.0,0.0,62.72977284658861,0.0765437909976753 +9,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569 +10,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293 +11,256.09101607265075,0.0,0.0,63.82025716834245,0.0778744159979396 +12,258.54822246754117,0.0,0.0,64.43261579943601,0.0786216250016877 +13,251.91734740702609,0.0,0.0,62.78014021437615,0.0766052500002842 +14,256.0914304298579,0.0,0.0,63.82036043000281,0.0778745419993356 +15,256.1073238132674,0.0,0.0,63.82432120860419,0.0778793749996111 +16,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663 +17,252.78893813177984,0.0,0.0,62.99734870943538,0.0768702909990679 +18,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129 +19,254.19532983990769,0.0,0.0,63.34783457133176,0.0772979590001341 +20,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895 +21,254.8345312291614,0.0,0.0,63.50712948792096,0.0774923329990997 +22,256.2513343634823,0.0,0.0,63.86020997381984,0.0779231669985165 +23,256.51962110224747,0.0,0.0,63.927069518232734,0.0780047499974898 +24,254.42100073848025,0.0,0.0,63.404073852987096,0.0773665829983656 +25,252.18371695261897,0.0,0.0,62.84652197646316,0.0766862500022398 +26,253.7606969687288,0.0,0.0,63.23952002739407,0.077165792001324 +27,252.71604495264393,0.0,0.0,62.97918305290586,0.0768481249979231 +28,253.57256771842907,0.0,0.0,63.192636472792486,0.077108583998779 +0,388.73038558373344,0.3723471126280971,12.795200779401885,75.75571255106195,0.0790761250027571 +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.081851082999492 +2,386.16305637510675,0.3698879850336271,12.710696212973732,75.25539186411433,0.0785538749987608 +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597 +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908 +5,374.82924555374433,0.3590318444001382,12.337639743932025,73.04666070613722,0.0762483340004109 +6,356.617671661771,0.3415878081051446,11.738199223976787,69.4975922308467,0.0725437080000119 +7,391.64449222473655,0.3751384025141154,12.891119650030513,76.32361316605368,0.0796689169983437 +8,394.2085425197358,0.3775943893867201,12.975516289834564,76.82329485886179,0.0801905000007536 +9,394.23025605863455,0.3776151877956269,12.976230998795184,76.82752638969211,0.0801949170017906 +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.0770093749997613 +11,390.7969073771063,0.3743265396332436,12.8632210892151,76.15843597265447,0.0794965000022784 +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.0793902500008698 +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.0770231249989592 +14,361.2965867125136,0.3460695275024076,11.89220739962819,70.40941841367166,0.0734955000007175 +15,395.7865466718811,0.3791058876167443,13.027456865375395,77.13081604420672,0.0805115000002842 +16,391.401769634818,0.3749059096118946,12.883130348481467,76.27631142831092,0.0796195420007279 +17,381.2733721004155,0.3652043794065282,12.549750492333423,74.30249101016456,0.0775592080026399 +18,379.5206519126656,0.3635255286519786,12.492059075495265,73.96092119301164,0.077202667001984 +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.0731172079977113 +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.0759907499996188 +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.078528041998652 +22,386.9403832051992,0.3706325509628345,12.736282205813769,75.40687718680215,0.0787120000022696 +23,390.2086362678317,0.3737630615592258,12.843857933580669,76.04379379723157,0.079376833000424 +24,376.20897175435175,0.3603534212206434,12.383053929218477,73.31554151743637,0.0765289999981178 +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.0730223749997094 +26,382.8300756539037,0.3666954747642755,12.60098995099056,74.60586113840442,0.0778758750020642 +27,379.2515063336283,0.3632677263732072,12.48320005173385,73.90847014756707,0.0771479169998201 +28,386.50532596295153,0.3702158294664286,12.721962139846369,75.32209330416975,0.078623499997775 +29,385.28085865824175,0.3690429680634499,12.681658357089464,75.08346932054555,0.0783744170003046 +0,254.7701558196424,0.0,0.0,63.11246118665094,0.0760953749995678 +1,253.09222999705185,0.0,0.0,62.69680014498916,0.0755942079995293 +2,263.90234613131526,0.0,0.0,65.374715981528,0.0788229999998293 +3,259.7544057697603,0.0,0.0,64.3471751997949,0.0775840829992375 +4,258.13381843399344,0.0,0.0,63.9457182277288,0.0771000419990741 +5,258.38938416388623,0.0,0.0,64.00902777101736,0.0771763749980891 +6,257.3555370297845,0.0,0.0,63.75291991994662,0.0768675830004212 +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052 +8,245.76644644425735,0.0,0.0,60.88203409183789,0.0734061250004742 +9,256.3932541903437,0.0,0.0,63.51454020015801,0.0765801660018041 +10,256.7573565822389,0.0,0.0,63.6047367853998,0.0766889169972273 +11,256.6365493698801,0.0,0.0,63.57481004426902,0.0766528340027434 +12,254.0235434990149,0.0,0.0,62.92750804347181,0.0758723750004719 +13,259.3886326959798,0.0,0.0,64.25656474800229,0.0774748330004513 +14,257.7577233561085,0.0,0.0,63.8525507767409,0.0769877089987858 +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107 +16,258.37473651085224,0.0,0.0,64.00539920851713,0.0771720000011555 +17,257.275184131123,0.0,0.0,63.733014648147055,0.0768435829995723 +18,251.4304885893039,0.0,0.0,62.28514835727747,0.0750978750002104 +19,260.1250602942841,0.0,0.0,64.43899489985908,0.0776947910017042 +20,258.7400910767803,0.0,0.0,64.09590598623336,0.0772811249989899 +21,257.76525643655174,0.0,0.0,63.8544168950292,0.0769899589977285 +22,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708 +23,254.9226321277627,0.0,0.0,63.150233095402065,0.0761409169972466 +24,261.7944753894208,0.0,0.0,64.85254763745215,0.0781934159967931 +25,259.7657053965152,0.0,0.0,64.34997437873601,0.0775874579994706 +26,255.6566859729138,0.0,0.0,63.33207521369086,0.0763601660000858 +27,259.06303605935,0.0,0.0,64.17590692909216,0.0773775829984515 +28,258.87526808998655,0.0,0.0,64.12939245945022,0.0773215000008349 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/mac_report.md new file mode 100644 index 000000000..abd4a7433 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 489.50 ms | 75.33 ms | +| **Average Power** | 4.329 W | 4.613 W | +| **Total Energy** | 1907.29 J | 312.72 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +83.37% | 0.00e+00 | +6.288 | large | βœ… | +| `gpu_mj` | +83.10% | 1.39e-224 | +1.934 | large | βœ… | +| `ane_mj` | +86.98% | 5.53e-29 | +0.545 | medium | βœ… | +| `dram_mj` | +85.83% | 0.00e+00 | +28.185 | large | βœ… | +| `time_s` | +84.47% | 0.00e+00 | +111.097 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 83.4% lower energy (Cohen’s d = +6.288, large) +- **`gpu_mj`**: 83.1% lower energy (Cohen’s d = +1.934, large) +- **`ane_mj`**: 87.0% lower energy (Cohen’s d = +0.545, medium) +- **`dram_mj`**: 85.8% lower energy (Cohen’s d = +28.185, large) +- **`time_s`**: 84.5% lower time (Cohen’s d = +111.097, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/with_smell.csv new file mode 100644 index 000000000..7aa2a9216 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,1562.7525821795537,1.3534612562180337,0.0,463.1808508779323,0.4898252499988302 +1,1588.3625529242652,1.3756414167700648,0.0,470.77133460245807,0.4978523749996384 +2,1564.88152978786,1.355305084945126,0.0,463.8118450454893,0.4904925419978099 +3,1585.4859825717,1.3731500905247085,0.0,469.9187541500533,0.4969507500027248 +4,1587.2227722401722,1.3746542809853626,0.0,470.4335174757469,0.4974951250005688 +5,1587.7919989684403,1.3751472741382773,0.0,470.6022293520529,0.4976735419986653 +6,1585.58076382037,1.3732321782136707,0.0,469.9468461589272,0.496980457999598 +7,1592.0498910048143,1.3788349288381367,0.0,471.8642167445828,0.4990081249998184 +8,1564.261785807479,1.35476834005295,0.0,463.62816047031566,0.4902982909989077 +9,1583.7046608844691,1.3716073319869715,0.0,469.3907920758341,0.4963924170006066 +10,1585.4051562357731,1.3730800888396006,0.0,469.89479820752285,0.4969254159987031 +11,1590.2135312394068,1.377244503185798,0.0,471.3199420536569,0.4984325410005112 +12,1568.580697986751,1.3585088427853145,0.0,464.9082334907499,0.491652000000613 +13,1563.6234352458232,1.354215480462162,0.0,463.43896113084384,0.4900982079998357 +14,1582.78900463182,1.3708143048142083,0.0,469.1194027036136,0.4961054160012281 +15,1586.2664412042632,1.3738260263915247,0.0,470.1500725926704,0.4971953749991371 +16,1583.3122381490994,1.3712674643876863,0.0,469.27448275179574,0.4962694170026225 +17,1581.0375932217676,1.369297450825781,0.0,468.6003056716227,0.4955564580013742 +18,1562.8203787969917,1.3535199731870862,0.0,463.2009449704392,0.4898465000005672 +19,1586.3251993382055,1.3738769153541706,0.0,470.1674877886431,0.4972137920012756 +20,1562.7080469921625,1.3534226853966762,0.0,463.1676511902626,0.4898112910013878 +21,1563.4943568701915,1.354103688882084,0.0,463.40070387084194,0.4900577499975043 +22,1565.315558919256,1.3556809868121988,0.0,463.9404859990722,0.4906285830002161 +23,1584.4525484358696,1.3722550588481337,0.0,469.6124568462967,0.4966268329990271 +24,1583.4457033513008,1.3713830552894664,0.0,469.3140402138171,0.4963112500008719 +25,1586.3137680265006,1.3738670149785916,0.0,470.1640996869419,0.4972102089996042 +26,1585.4583311232377,1.3731261422909324,0.0,469.9105585971725,0.4969420830020681 +27,1576.8813961115504,1.365697871579501,0.0,467.3684594178531,0.4942537500028265 +28,1610.34686614165,1.3946814852515346,0.0,477.2872175503484,0.5047430829981749 +29,1529.1152277892556,1.3243287777642476,0.0,453.2111483124429,0.4792820420007047 +0,1554.2306009916488,1.9176817597792928,0.0,480.8671121495689,0.4996582499989017 +1,1533.5334001790511,1.8921445940257144,0.0,474.4635558317462,0.493004457999632 +2,1543.8059871684454,1.9048193880252269,0.0,477.6418160183257,0.4963069170007657 +3,1542.4628604529044,1.9031621760247537,0.0,477.22626284073345,0.4958751249978377 +4,1547.0246673627394,1.9087907448465515,0.0,478.63765115950457,0.4973416670000006 +5,1543.6959501426447,1.904683619242175,0.0,477.60777140049834,0.4962715420006134 +6,1516.3432589990837,1.8709346010119223,0.0,469.1450570572527,0.4874781250000524 +7,1522.6814694210657,1.87875497882981,0.0,471.1060510949909,0.4895157499995548 +8,1546.9721730979702,1.908725974989378,0.0,478.62140983374,0.4973247910020291 +9,1547.721566447727,1.909650611241432,0.0,478.8532664293647,0.4975657079994562 +10,1546.876264354503,1.9086076383359671,0.0,478.5917363988768,0.4972939580002276 +11,1522.9656993374065,1.879105674875688,0.0,471.1939896666353,0.4896071250004752 +12,1544.25585273976,1.9053744530200296,0.0,477.7810010002682,0.49645154099926 +13,1546.7443256761674,1.908444846278796,0.0,478.55091557654094,0.4972515419976844 +14,1550.8537971977223,1.9135153027311336,0.0,479.8223547708087,0.4985726659979264 +15,1523.3470075656658,1.8795761506427464,0.0,471.3119635287153,0.4897297089992207 +16,1517.6756261895746,1.8725785374116448,0.0,469.55728131973046,0.4879064580018166 +17,1526.438800689855,1.883390948315296,0.0,472.26854077667593,0.4907236670005659 +18,1527.1204081253622,1.884231947164224,0.0,472.479424926636,0.4909427919992595 +19,1551.4108536106924,1.9142026247550592,0.0,479.9947037828783,0.4987517499976093 +20,1546.4690355978269,1.9081051806194371,0.0,478.465742922695,0.4971630410000216 +21,1532.4807276685026,1.890845757886976,0.0,474.1378669733079,0.4926660419987456 +22,1552.5177063376111,1.9155683109562056,0.0,480.3371555876675,0.4991075840007397 +23,1547.2229672959509,1.9090354164960757,0.0,478.699003648744,0.4974054169979354 +24,1520.0285272974834,1.875481655864159,0.0,470.2852510046741,0.4886628750027739 +25,1546.8362155437524,1.908558224256854,0.0,478.5793456018108,0.4972810830004164 +26,1550.6303543888375,1.9132396086361396,0.0,479.75322326730424,0.4985008330004348 +27,1547.8064605978543,1.9097553575790136,0.0,478.87953203292705,0.4975930000000517 +28,1550.5286132950594,1.913114075758564,0.0,479.72174534766935,0.498468124998908 +29,1546.3188222271303,1.9079198403997324,0.0,478.4192680497083,0.497114750000037 +0,1523.82633923639,0.7631242145673997,0.0,467.4965297067244,0.4920693339990976 +1,1540.1360009408895,0.7712920073516768,0.0,472.50019059065767,0.4973360000003595 +2,1519.0842776566471,0.7607494150739844,0.0,466.0417068866279,0.4905380419986613 +3,1542.6536762485855,0.7725528459014843,0.0,473.2725912500832,0.4981489999991026 +4,1543.401933683681,0.7729275692887551,0.0,473.5021500555895,0.4983906249981373 +5,1532.8921381029763,0.7676643189489506,0.0,470.27783713003106,0.4949968340006307 +6,1543.260643485068,0.7728568119005501,0.0,473.4588034642935,0.498344999999972 +7,1542.6552246349104,0.7725536213252104,0.0,473.27306628140065,0.4981494999992719 +8,1521.219498590461,0.7618187224852614,0.0,466.69677390510145,0.4912275410024449 +9,1542.051741270475,0.7722514000309388,0.0,473.0879228885186,0.4979546249996929 +10,1537.626197619399,0.7700351110511502,0.0,471.7302049874221,0.49652554199929 +11,1533.3450409508507,0.7678911303126608,0.0,470.4167837437126,0.4951430840010289 +12,1538.746324682038,0.7705960647916666,0.0,472.073850126721,0.4968872499994177 +13,1544.2152233218796,0.773334860461237,0.0,473.7516601695143,0.4986532499970053 +14,1517.360277032028,0.7598860446303187,0.0,465.51279864526913,0.4899813329975586 +15,1515.1598907536472,0.7587841027572862,0.0,464.8377394717462,0.4892707910003082 +16,1526.4526554996833,0.7644394599362623,0.0,468.3022604566059,0.4929174160024558 +17,1517.8696959638544,0.7601411589515678,0.0,465.6690838968517,0.4901458329986781 +18,1527.0742054216496,0.7647507288675058,0.0,468.4929465105721,0.4931181249994552 +19,1519.6605342114517,0.7610380013252203,0.0,466.21849733358056,0.4907241250002698 +20,1543.3037412460776,0.772878395032547,0.0,473.4720254786342,0.4983589169969491 +21,1516.8447946320175,0.7596278937561001,0.0,465.3546531749326,0.4898148749998654 +22,1522.3627244690028,0.7623912439912701,0.0,467.0475055581303,0.4915967080014525 +23,1520.34130680374,0.7613789286582189,0.0,466.42735238236105,0.490943958000571 +24,1541.3760009365585,0.7719129928264602,0.0,472.8806116923837,0.4977364170008513 +25,1542.692772983568,0.7725724253406943,0.0,473.2845857847993,0.4981616249970102 +26,1517.6980821716954,0.7600552156672327,0.0,465.6164342935352,0.4900904159985657 +27,1537.955616705762,0.7702000823966844,0.0,471.8312678682297,0.4966319170016504 +28,1518.901438072084,0.760657849971867,0.0,465.98561330885246,0.4904790000000503 +29,1536.8320026729289,0.769637382399838,0.0,471.4865529571182,0.4962690829997882 +0,2388.293804473947,3.948256730756337,88.5680980195934,516.2847572505955,0.5047006250024424 +1,2393.73217031957,3.9572472764396487,88.76977576894703,517.4603853852863,0.5058498749967839 +2,2389.907256520314,3.9509240419932903,88.62793168776474,516.633542101326,0.5050415839978086 +3,2411.1969694915374,3.9861195662529263,89.41744484636862,521.2358042990056,0.5095405829997617 +4,2385.139859836862,3.9430427226981664,88.45113633035632,515.6029594172263,0.504034124998725 +5,2408.9478449596127,3.982401380050356,89.33403773723128,520.7496041879406,0.5090652919971035 +6,2372.850397511069,3.922726146800221,87.99539076762868,512.9463088570119,0.5014370829994732 +7,2370.5714986198404,3.918958738506839,87.91087949853902,512.4536723318689,0.5009554999996908 +8,2354.685839084009,3.892697035668036,87.32177163909569,509.0196208504898,0.4975985000019136 +9,2376.2567192107217,3.928357377159141,88.12171167237496,513.6826638098775,0.5021569159980572 +10,2377.0903590593543,3.929735525918403,88.15262658564419,513.8628742789912,0.502333082997211 +11,2387.2517582095043,3.946534050669975,88.52945450952055,516.0594949308281,0.5044804170029238 +12,2356.9182072270733,3.896387520703783,87.4045573500247,509.5021986818592,0.4980702499997278 +13,2392.3091900175737,3.954894847461034,88.71700560363861,517.1527753925742,0.505549166999117 +14,2392.621707367392,3.955411491907202,88.72859507693528,517.2203332214248,0.5056152090000978 +15,2392.3196384870676,3.954912120561993,88.71739307735251,517.1550340700979,0.5055513749975944 +16,2396.136077101009,3.9612213440824777,88.85892286259592,517.9800452473951,0.5063578749977751 +17,2361.2234339135493,3.9035047942194905,87.5642134771101,510.43287266785376,0.4989800420007668 +18,2405.715621948096,3.977057964497118,89.21417315274468,520.0508846795808,0.5083822499982489 +19,2373.080103100869,3.923105889292255,88.00390922844575,512.9959650150804,0.5014856249981676 +20,2335.7830730379783,3.861447541518135,86.62077663049578,504.9333522510578,0.4936039169988362 +21,2365.95612065154,3.9113287320586414,87.73972164202732,511.4559519971596,0.4999801660014782 +22,2396.5872071287085,3.961967138910976,88.87565268387587,518.077567401664,0.5064532090000284 +23,2363.0508100276948,3.906525758402701,87.63198036010125,510.8279021368955,0.4993662080014474 +24,2405.161374755603,3.9761416994194456,89.19361930816332,519.9310713732376,0.5082651250013441 +25,2376.444034654131,3.928667041514016,88.12865812616612,513.7231563606888,0.5021964999978081 +26,2363.916391553224,3.907956712198162,87.6640798066825,511.0150175357427,0.4995491250010673 +27,2367.809726791631,3.914393058945508,87.80846124600643,511.85665169092533,0.5003718750012922 +28,2361.903668545647,3.904629338008719,87.58943947211084,510.57992106334353,0.4991237909998745 +29,2355.1391363948715,3.893446413385005,87.33858183245853,509.11761151297134,0.4976942920002329 +0,1541.6676935631915,1.4766931930681912,0.0,467.6418852775495,0.4967480409977725 +1,1539.9339925655115,1.4750325599286511,0.0,467.11599295558693,0.4961894169973675 +2,1537.4033292502131,1.4726085529216604,0.0,466.3483540093277,0.4953739999982645 +3,1541.0478988106024,1.4760995199335272,0.0,467.4538797898584,0.496548333998362 +4,1513.296219128583,1.4495174512725892,0.0,459.0358219552786,0.4876063339979737 +5,1516.505259255195,1.452591244497313,0.0,460.0092363823991,0.4886403339987737 +6,1540.5765516466906,1.4756480379757573,0.0,467.3109036625955,0.4963964589987881 +7,1538.6080103767642,1.4737624620467091,0.0,466.7137760490647,0.49576216600326 +8,1520.8838051987466,1.456785254021788,0.0,461.3374029440817,0.4900511660016491 +9,1519.20441269949,1.4551766405167528,0.0,460.82798429455534,0.4895100409994484 +10,1538.1940814312632,1.473365978382436,0.0,466.5882168813833,0.4956287919994793 +11,1521.2400645193484,1.4571264985817514,0.0,461.44546889177553,0.4901659580027626 +12,1541.4278193691237,1.4764634285144864,0.0,467.5691230209285,0.4966707499988843 +13,1539.4634212876151,1.4745818211567197,0.0,466.9732521817666,0.4960377919996972 +14,1541.2718674655523,1.476314049296506,0.0,467.5218173385799,0.4966204999982437 +15,1540.4087008558995,1.4754872613562258,0.0,467.2599886304011,0.4963423750014044 +16,1531.2747826396396,1.4667382975475476,0.0,464.4893508642619,0.4933992920014134 +17,1540.29257642797,1.475376031061274,0.0,467.22476401835894,0.4963049580001097 +18,1522.1950456773989,1.4580412314917617,0.0,461.73514817286826,0.4904736669996055 +19,1538.037096059261,1.4732156092521662,0.0,466.54059771181096,0.4955782090000866 +20,1539.127077262929,1.4742596525506984,0.0,466.8712272418507,0.4959294170002977 +21,1559.845791710162,1.4941051644733354,0.0,473.1559400402603,0.5026052920002257 +22,1514.2267569754815,1.450408771049312,0.0,459.3180867227526,0.4879061669998918 +23,1522.001721189344,1.457856054779065,0.0,461.6765060748067,0.4904113750017131 +24,1521.4884764967403,1.4573644410888318,0.0,461.52082095754054,0.490246000001207 +25,1513.7900637239725,1.4499904824942265,0.0,459.1856223426035,0.4877654580013768 +26,1516.6416838058583,1.4527219193542704,0.0,460.05061873369095,0.488684291998652 +27,1516.3111588924153,1.4524053246095932,0.0,459.9503589343198,0.4885777920026157 +28,1545.923787001248,1.4807699109207355,0.0,468.9329076993075,0.4981194169995433 +29,1523.710854713787,1.4594931558561175,0.0,462.1949462204351,0.4909620830003405 +0,1526.770791456814,1.689345447459375,0.0,462.4831595574077,0.4918107500016049 +1,1530.8290010789997,1.6938357861457298,0.0,463.71245580718977,0.4931180000021413 +2,1522.0603998442443,1.6841334806920174,0.0,461.05630700827345,0.4902934160018048 +3,1529.232439786766,1.692069218717458,0.0,463.2288319947676,0.492603708000388 +4,1527.0825246667494,1.689690374859069,0.0,462.57758850553574,0.4919111670023994 +5,1515.7425846877925,1.6771429276029988,0.0,459.14254029790334,0.4882582909995108 +6,1540.1165502323522,1.7041122984867214,0.0,466.52580218571774,0.4961097500017786 +7,1541.6151929447517,1.705770520701691,0.0,466.9797649026864,0.4965924999996787 +8,1542.3320486313378,1.7065637091078327,0.0,467.1969118934031,0.4968234170009964 +9,1541.711816984989,1.7058774335293418,0.0,467.0090338615034,0.4966236250002112 +10,1525.361269458095,1.6877858357711282,0.0,462.05619292228414,0.4913567079966014 +11,1522.1852241350612,1.684271596608698,0.0,461.0941182715813,0.4903336250026768 +12,1543.233224169142,1.707560844238181,0.0,467.4698922990879,0.4971137079992331 +13,1524.7037882973996,1.6870583442499214,0.0,461.85703141994907,0.4911449170031119 +14,1541.7322562659867,1.7059000492398968,0.0,467.01522524485176,0.4966302089997043 +15,1544.604071705641,1.70907766330356,0.0,467.88514382439814,0.4975552920004702 +16,1547.4564847269874,1.7122338089272835,0.0,468.74918510279866,0.4984741250009392 +17,1542.471615652947,1.706718137600892,0.0,467.2391889643854,0.4968683750012133 +18,1541.636793273892,1.7057944210919136,0.0,466.98630798598623,0.4965994580015831 +19,1545.3991827710804,1.709957439931552,0.0,468.1259956142025,0.4978114170007757 +20,1543.431131925837,1.7077798257445476,0.0,467.529841706772,0.4971774589976121 +21,1543.994317365404,1.7084029806828864,0.0,467.7004395351855,0.497358874999918 +22,1546.8709197612034,1.7115858914306468,0.0,468.5718081598959,0.4982854999980191 +23,1544.7746825942847,1.709266441298024,0.0,467.9368245765296,0.4976102500004344 +24,1545.867299458799,1.710475402941915,0.0,468.2677956053925,0.4979622089995246 +25,1523.773633289351,1.686029143837475,0.0,461.5752726717417,0.4908452909985499 +26,1542.6620170112014,1.7069288134073437,0.0,467.29686456457506,0.4969297080024262 +27,1515.9892561502234,1.6774158653055062,0.0,459.2172610077545,0.4883377499972994 +28,1545.5497455245004,1.7101240350114884,0.0,468.17160346726274,0.4978599169990048 +29,1542.809736148168,1.7070922620749058,0.0,467.3416110409772,0.4969772920012474 +0,1552.5755589394023,1.275546910247925,0.0,466.24596271957057,0.4975988330006657 +1,1549.2978601838977,1.2728540567528184,0.0,465.26165390254334,0.496548333998362 +2,1552.1349709149647,1.2751849370801602,0.0,466.1136520011428,0.4974576250024256 +3,1529.5072304666896,1.2565947021324932,0.0,459.31843191106134,0.4902054579979449 +4,1533.551705536068,1.2599175147638118,0.0,460.5330073702459,0.4915017080020334 +5,1553.147585776209,1.2760168693813578,0.0,466.4177451501858,0.4977821669999684 +6,1537.704995292508,1.2633297260959353,0.0,461.7802604071722,0.4928328329988289 +7,1550.9853290718895,1.2742404277502393,0.0,465.7684089855479,0.4970891660013876 +8,1528.114090172647,1.2554501421866815,0.0,458.9000651308686,0.4897589579995838 +9,1551.9411325247231,1.2750256855974635,0.0,466.05544139338866,0.4973955000023125 +10,1520.1867380960591,1.2489372807742254,0.0,456.5194428935261,0.4872182500002964 +11,1550.9008264470358,1.2741710030697977,0.0,465.74303243788137,0.4970620829990366 +12,1524.5508959441925,1.25252273465244,0.0,457.83002064006297,0.4886169579986017 +13,1553.6002643252152,1.2763887757412098,0.0,466.5536867117212,0.4979272499986109 +14,1552.3800325555055,1.275386271963099,0.0,466.1872451991433,0.4975361670003622 +15,1533.394787700758,1.2597885960397988,0.0,460.4858841840212,0.4914514160009275 +16,1553.2691400031183,1.2761167344846496,0.0,466.454248473468,0.4978211250017921 +17,1556.667878150249,1.2789090301106838,0.0,467.47490600624735,0.4989104170017526 +18,1532.0427302203504,1.258677788432606,0.0,460.079854771813,0.4910180830011086 +19,1554.660720229109,1.277260012727956,0.0,466.872146757666,0.4982671249999839 +20,1560.0134398376556,1.28165763764147,0.0,468.4795943905267,0.4999826660023245 +21,1528.100442701547,1.2554389298566315,0.0,458.89596672917406,0.4897545839994563 +22,1528.3444622308407,1.2556394085739724,0.0,458.9692469761178,0.4898327920018346 +23,1528.2429267943644,1.2555559902749194,0.0,458.9387553925956,0.4898002500012808 +24,1552.1061096616709,1.27516122558847,0.0,466.10498482694334,0.4974483750011131 +25,1553.4653184897631,1.2762779085164422,0.0,466.51316182351,0.4978840000003401 +26,1523.6728400314214,1.2518013517219209,0.0,457.5663361951969,0.48833554200246 +27,1532.493982869949,1.2590485233186617,0.0,460.2153681288477,0.4911627090004913 +28,1526.2605989035876,1.2539273724587885,0.0,458.343452722436,0.489164915998117 +29,1549.6854059286077,1.2731724520633707,0.0,465.3780357673742,0.496672542001761 +0,1590.1946369333757,1.7747334278984377,0.0,467.02277582829265,0.4981683750011143 +1,1588.7120485991843,1.7730787882616346,0.0,466.58735584688714,0.4977039170007629 +2,1565.9908041447927,1.7477207904919878,0.0,459.9143748111652,0.4905859169994073 +3,1588.6327764174555,1.7729903167075562,0.0,466.5640744739677,0.4976790830005484 +4,1572.3927908809335,1.7548657145168245,0.0,461.7945683087953,0.4925914999985252 +5,1564.3827924950483,1.7459261724238786,0.0,459.44211937350633,0.490082166998036 +6,1587.637379706137,1.7718794062714578,0.0,466.2717373446797,0.4973672500018438 +7,1586.1069069337875,1.7701713253067184,0.0,465.82225422741135,0.4968877909996081 +8,1565.879611148776,1.747596693779299,0.0,459.88171864414875,0.4905510830030835 +9,1563.1272378457847,1.7445249132604728,0.0,459.07337670271346,0.4896888329967623 +10,1564.5321564387366,1.7460928697435836,0.0,459.4859859304483,0.4901289590015949 +11,1565.9028878075114,1.7476226716460257,0.0,459.8885547442853,0.4905583750005462 +12,1583.3814014098812,1.7671295305170396,0.0,465.0218030588897,0.496033957999316 +13,1587.4088776496778,1.7716243870250568,0.0,466.20462878940504,0.4972956659985357 +14,1585.8901134462883,1.769929373384432,0.0,465.7585843508051,0.4968198749993462 +15,1611.7074099564163,1.798742713632422,0.0,473.3408420194601,0.5049077910007327 +16,1589.872105703548,1.7743734675880318,0.0,466.92805193302416,0.4980673339996428 +17,1585.6194535600011,1.769627303979449,0.0,465.67909450191274,0.496735083997919 +18,1588.5460603021786,1.7728935373668735,0.0,466.53860689916576,0.4976519170013489 +19,1586.428911468287,1.770530697799895,0.0,465.9168234380214,0.4969886670005508 +20,1561.4877043951249,1.7426951153517996,0.0,458.59186365682166,0.4891752080002334 +21,1627.0202327275636,1.8158325577409689,0.0,477.83805061911875,0.5097049169999082 +22,1572.3998421997237,1.754873584126542,0.0,461.79663920401657,0.4925937090010848 +23,1585.7182708706089,1.7697375888340936,0.0,465.7081160654547,0.4967660410002281 +24,1590.6959247836016,1.7752928891644568,0.0,467.1699985882392,0.4983254159997159 +25,1590.2483692515932,1.774793395740791,0.0,467.03855642258145,0.4981852079981763 +26,1591.9827363009797,1.7767290324907223,0.0,467.5479210593982,0.4987285419992986 +27,1571.122341989185,1.753447832664971,0.0,461.4214513618557,0.4921935000020312 +28,1588.01151733509,1.7722969617966218,0.0,466.3816174750469,0.497484458002873 +29,1587.966697298727,1.7722469404879555,0.0,466.3684543204815,0.4974704170017503 +0,1558.0157808103286,2.2201623960074635,0.0,471.0444550195835,0.5001447499998903 +1,1524.6132820462324,2.1725640516247373,0.0,460.9456729530485,0.4894220830028644 +2,1550.5399865653517,2.2095094376309095,0.0,468.7842523506913,0.4977449159996467 +3,1546.2059346063345,2.2033334416620187,0.0,467.473911872625,0.496353624999756 +4,1548.1367948166974,2.206084904955135,0.0,468.0576806679811,0.4969734580008662 +5,1528.872573994228,2.178633515062161,0.0,462.2334107790218,0.4907893749987124 +6,1547.9867483532137,2.2058710897165583,0.0,468.01231620152976,0.4969252909977513 +7,1549.8067660252298,2.208464603110484,0.0,468.56257329327434,0.4975095420013531 +8,1550.0599980369934,2.2088254570870016,0.0,468.63913447862546,0.4975908330015954 +9,1548.9820323107372,2.2072893629093326,0.0,468.31322649726343,0.4972447910004121 +10,1530.7974656168155,2.181376473156357,0.0,462.8153750546737,0.4914072920000762 +11,1548.7542415650098,2.2069647625721274,0.0,468.24435712571966,0.4971716670006572 +12,1543.267588495252,2.199146317486109,0.0,466.5855436933028,0.4954103750023932 +13,1529.337507111068,2.179296041742173,0.0,462.3739768562977,0.4909386250001262 +14,1550.7820601785936,2.20985439096181,0.0,468.857439949064,0.4978226249986619 +15,1549.2713499776723,2.207701638710734,0.0,468.4006976797941,0.4973376659982023 +16,1530.0441213304557,2.180302962427888,0.0,462.5876118617835,0.4911654579991591 +17,1548.7460612273496,2.2069531056439473,0.0,468.2418839141242,0.4971690409984148 +18,1568.875901836047,2.2356379981254664,0.0,474.3278619356198,0.5036309999995865 +19,1549.531855829681,2.208072857862487,0.0,468.4794580098243,0.4974212920024001 +20,1548.2952801524589,2.206310745532047,0.0,468.1055965103826,0.497024333999434 +21,1548.184300544187,2.2061526003091014,0.0,468.072043365581,0.4969887080005719 +22,1546.882565711737,2.2042976366045135,0.0,467.67848189959096,0.4965708330018969 +23,1529.565952029954,2.1796215742718923,0.0,462.44304400801985,0.4910119589985697 +24,1533.9103898321566,2.1858123700000505,0.0,463.75652450167735,0.4924065839986724 +25,1550.7246888389986,2.209772637174495,0.0,468.840094520522,0.4978042080001614 +26,1530.1414691278578,2.180441682408641,0.0,462.6170436177,0.4911967079970054 +27,1552.367919773385,2.2121142306123893,0.0,469.3369025949286,0.4983317080004781 +28,1549.2547401172744,2.2076779697672535,0.0,468.39567591895224,0.4973323340018396 +29,1524.0446431387002,2.1717537448647164,0.0,460.7737528687974,0.4892395419992681 +0,1528.5270613360335,1.291768990901129,0.0,462.42017646078625,0.4917535839995253 +1,1548.5982517764076,1.3087312953818129,0.0,468.4922465339869,0.4982108329968469 +2,1535.6119556606022,1.2977564850213117,0.0,464.5635458303213,0.4940329170021869 +3,1547.1728294886957,1.3075266609616694,0.0,468.0610182996376,0.4977522500012128 +4,1528.1453846156116,1.2914464332150657,0.0,462.3047090798854,0.4916307919993414 +5,1522.8403915260485,1.286963146171359,0.0,460.69980727431664,0.4899240839986305 +6,1548.5399739113811,1.308682044347401,0.0,468.4746159265145,0.4981920840000384 +7,1548.2926014361356,1.3084729881253638,0.0,468.3997791594411,0.49811249999766 +8,1545.7288878195657,1.306306375681786,0.0,467.6241874588055,0.4972877090003749 +9,1554.882626490072,1.3140422647376442,0.0,470.39343738467306,0.5002326249996258 +10,1524.8143016014956,1.288631311486052,0.0,461.296967683507,0.4905591249989811 +11,1525.7085898769656,1.2893870808096053,0.0,461.5675137226384,0.490846832999523 +12,1548.5445027423802,1.3086858716943923,0.0,468.4759860186004,0.4981935410032747 +13,1548.346997027624,1.3085189582230503,0.0,468.41623527569254,0.4981299999999464 +14,1526.1627930048307,1.289770931073685,0.0,461.7049222748644,0.4909929579989693 +15,1526.900891352857,1.2903947031889011,0.0,461.9282166979551,0.4912304169993149 +16,1549.442548959939,1.3094448168812869,0.0,468.7476689353755,0.4984824579987617 +17,1525.4153728060248,1.289139280996684,0.0,461.4788077434539,0.4907524999980523 +18,1539.1769365722332,1.3007692755117686,0.0,465.6420475748667,0.495179833000293 +19,1522.2942318970036,1.2865015828201254,0.0,460.5345794295325,0.4897483750028186 +20,1553.0553234008996,1.312497998020176,0.0,469.8406294964019,0.4996447500016074 +21,1547.8880008686706,1.3081310573346223,0.0,468.27737670381185,0.497982332999527 +22,1549.7637440107094,1.3097162610821198,0.0,468.844838999166,0.4985857920000853 +23,1544.2363724483284,1.305045040423958,0.0,467.1726617784327,0.4968075409997254 +24,1524.1453664697624,1.2880659896923103,0.0,461.09459697677806,0.4903439170011552 +25,1525.1998637277711,1.2889571527559822,0.0,461.4136105032376,0.4906831670014071 +26,1545.6041665042508,1.3062009728193156,0.0,467.5864559366786,0.4972475839967956 +27,1523.897736002519,1.2878567154394176,0.0,461.0196821602489,0.4902642499982903 +28,1543.5243124869053,1.3044432735327491,0.0,466.95724466130025,0.496578458998556 +29,1545.5379841782762,1.3061450416692548,0.0,467.5664340190889,0.4972262919982313 +0,1520.2479149813328,0.5636073395416564,0.0,460.53350315136174,0.4911707920000481 +1,1517.480332834304,0.5625813031988479,0.0,459.6951107491292,0.4902766250015702 +2,1539.928047628194,0.5709034305894515,0.0,466.495267901063,0.4975291670016304 +3,1542.4872208574875,0.5718522026949577,0.0,467.2705263315093,0.498356000000058 +4,1521.5824420871415,0.5641020938933902,0.0,460.93777566312247,0.491601959001855 +5,1538.6496201389696,0.5704294742637113,0.0,466.10798982336553,0.497116124999593 +6,1541.2370366249845,0.5713887171000923,0.0,466.8918040727872,0.4979520829983812 +7,1539.8199742288928,0.5708633641236762,0.0,466.46252888482275,0.4974942500011821 +8,1516.323776932148,0.5621525287939486,0.0,459.34475161627887,0.4899029580010392 +9,1541.2251729102493,0.5713843188196323,0.0,466.8882101602066,0.4979482499984442 +10,1538.6093831809785,0.57041455706197,0.0,466.095800714578,0.497103125002468 +11,1517.2779873087345,0.5625062868661757,0.0,459.63381357988504,0.4902112499985378 +12,1518.0660902189236,0.5627984632803773,0.0,459.8725560839836,0.4904658750019735 +13,1540.156315029335,0.5709880570384624,0.0,466.56441766595776,0.4976029169993126 +14,1517.2394279134517,0.5624919915936906,0.0,459.622132660468,0.4901987919984094 +15,1542.951366650628,0.5720242772448081,0.0,467.41113148280175,0.4985059589998855 +16,1541.7158843861432,0.571566242166927,0.0,467.03686293769306,0.4981067919979978 +17,1518.3874690557575,0.5629176092890171,0.0,459.96991239021986,0.4905697079993842 +18,1520.898540544924,0.56384854845194,0.0,460.73059920858225,0.4913809999998193 +19,1517.2190494388665,0.5624844366036579,0.0,459.6159593447889,0.4901922079989163 +20,1517.705631984367,0.5626648292167536,0.0,459.76336133234855,0.490349415998935 +21,1520.794722988545,0.5638100597711321,0.0,460.6991494282821,0.4913474580025649 +22,1526.217818035968,0.5658205845951685,0.0,462.3419847418521,0.4930995839968091 +23,1518.6969841891175,0.5630323570213717,0.0,460.06367478728674,0.490669708000496 +24,1529.784849924527,0.567143004006476,0.0,463.4225569796446,0.4942520420008804 +25,1541.7027299942984,0.5715613653887923,0.0,467.0328780362185,0.498102541998378 +26,1534.423317940434,0.5688626410421411,0.0,464.8277027480224,0.4957506659993669 +27,1538.7941884627269,0.570483070632785,0.0,466.1517843623539,0.4971628329985833 +28,1517.56235434898,0.5626117113495291,0.0,459.71995778566526,0.4903031250032654 +29,1517.8143491795904,0.5627051343594599,0.0,459.79629537572106,0.4903845410008216 +0,1551.1886231837568,0.8960461441980581,0.0,462.0943152523615,0.4924689590006892 +1,1550.91288162991,0.8958868617275533,0.0,462.0121726923871,0.4923814169997058 +2,1547.1803448143226,0.8937307569368801,0.0,460.9002614662636,0.4911964169987186 +3,1568.9273579105434,0.9062929475960008,0.0,467.37862971580427,0.4981006249981874 +4,1565.1120060356702,0.904089004577632,0.0,466.2420481384795,0.4968893330005812 +5,1571.375161858294,0.9077069247592892,0.0,468.10782297586456,0.498877750000247 +6,1570.1072269824244,0.9069745005140124,0.0,467.730109079893,0.4984752080017642 +7,1545.692580844249,0.8928713481267994,0.0,460.4570611599094,0.4907240840002487 +8,1565.5201723263629,0.90432478237119,0.0,466.36363961986854,0.4970189170016965 +9,1566.0506524208697,0.9046312148940648,0.0,466.5216680068503,0.4971873329996015 +10,1552.3833215950556,0.8967362633034489,0.0,462.4502122310082,0.4928482499999518 +11,1560.722599431774,0.9015534580915664,0.0,464.93445742470254,0.4954957909976656 +12,1534.4369570143026,0.8863695222478375,0.0,457.10404547329216,0.4871506659983424 +13,1570.2996305808672,0.9070856427051928,0.0,467.78742551952234,0.4985362919978797 +14,1571.6313493180633,0.9078549117816844,0.0,468.1841404314138,0.4989590839977609 +15,1547.5227554628375,0.8939285508974267,0.0,461.00226454428775,0.4913051250005082 +16,1548.3688758886676,0.8944173134719845,0.0,461.254321214219,0.4915737500014074 +17,1545.4735360598456,0.8927448166195809,0.0,460.39180839300167,0.490654542001721 +18,1564.0133771354122,0.90345438015139,0.0,465.9147699714058,0.49654054200073 +19,1549.7021695364444,0.8951874922976402,0.0,461.65150528712377,0.4919970420014579 +20,1552.2267471865396,0.8966458178908575,0.0,462.40356919675185,0.4927985409995017 +21,1554.6354429575945,0.898037204164546,0.0,463.1211122513755,0.4935632499982603 +22,1566.8541179900308,0.9050953378346812,0.0,466.7610179263,0.4974424160027411 +23,1563.1480932062543,0.902954547753982,0.0,465.6570045528313,0.496265833000507 +24,1544.9225789651127,0.8924265555306486,0.0,460.2276799706945,0.4904796249975334 +25,1566.692560552933,0.905002013969089,0.0,466.7128904631702,0.4973911249981029 +26,1544.107301583785,0.8919556094812306,0.0,459.98481134876505,0.4902207919985812 +27,1567.236953417524,0.905316483221864,0.0,466.8750634215273,0.4975639580006827 +28,1564.9869329670676,0.9040167559553888,0.0,466.2047892564012,0.4968496249966847 +29,1569.5676911434848,0.9066628369284802,0.0,467.5693830145243,0.4983039170001575 +0,1524.6907531397226,0.8255494418368938,0.0,457.98180835343527,0.4904046669980744 +1,1555.5309335542174,0.8422479714730884,0.0,467.2454846544105,0.5003241660015192 +2,1524.5476064425168,0.825471934528782,0.0,457.9388103991871,0.4903586250002263 +3,1549.3636243589092,0.8389086591218212,0.0,465.3929677344215,0.4983404999984486 +4,1546.9228925311836,0.837587115855488,0.0,464.65982839199046,0.4975554579978052 +5,1546.8309176309292,0.837537315705909,0.0,464.6322012610101,0.4975258750018838 +6,1550.7384694549191,0.8396530740789434,0.0,465.80593937603464,0.4987827080003626 +7,1546.2342419186864,0.83721424343687,0.0,464.452973689038,0.4973339589996612 +8,1526.4072046836998,0.8264788208674628,0.0,458.4973906644337,0.4909567499998957 +9,1548.8857390933792,0.8386499063790712,0.0,465.2494220628536,0.4981867919996148 +10,1521.244375466564,0.8236833879118102,0.0,456.94659627795585,0.4892961670011573 +11,1570.70204667024,0.8504624267252014,0.0,471.80253585007273,0.5052038339999854 +12,1547.0879300299268,0.8376764760189762,0.0,464.7094018362872,0.4976085409980442 +13,1520.4480710032503,0.8232522259178995,0.0,456.70740485021395,0.4890400419972138 +14,1546.5080929259627,0.8373625210766064,0.0,464.5352321924581,0.4974220410003909 +15,1548.8552953072,0.8386334224785583,0.0,465.240277454205,0.4981769999976677 +16,1525.425523355913,0.8259472858853377,0.0,458.20251631775,0.4906410000003234 +17,1530.0542433173086,0.8284535234110004,0.0,459.5928766474866,0.4921297910004796 +18,1544.2859052841225,0.8361593093672152,0.0,463.86773846455634,0.4967072920007922 +19,1527.0547941292384,0.826829460565515,0.0,458.6919115433251,0.4911650419999205 +20,1547.1983042829272,0.8377362385660829,0.0,464.74255570692014,0.4976440419995924 +21,1544.029797612235,0.8360206389219846,0.0,463.79080964836015,0.4966249170029186 +22,1545.0311685205604,0.8365628349002427,0.0,464.0915982892587,0.4969469999996363 +23,1523.6436512727455,0.8249824846621034,0.0,457.6672831911485,0.4900678750018414 +24,1536.1821764280355,0.8317715154357811,0.0,461.4335659031539,0.4941007919987896 +25,1542.600155578669,0.8352465539605546,0.0,463.3613782751573,0.4961650840014044 +26,1546.018290686647,0.8370973158443685,0.0,464.3881069378219,0.49726450000162 +27,1519.331792852472,0.8226478129886469,0.0,456.3721007335817,0.4886809999989054 +28,1521.1666493085477,0.8236413027963635,0.0,456.9232491393106,0.4892711669999698 +29,1544.979353159271,0.8365347792814213,0.0,464.0760341541612,0.4969303340003534 +0,1543.037293902987,0.9050268700391154,0.0,464.4128623848868,0.4969528340006945 +1,1542.585644080789,0.9047619670283118,0.0,464.2769278954541,0.4968073750023904 +2,1522.6647565357837,0.8930779082084145,0.0,458.2812747491697,0.490391625000484 +3,1538.5386679986586,0.9023883224565274,0.0,463.058896579081,0.4955040000022563 +4,1549.1123487651114,0.9085900294707826,0.0,466.2412910488035,0.4989093750009488 +5,1514.170259697424,0.8880956903990626,0.0,455.7246589066301,0.4876558750002004 +6,1542.8599178208544,0.904922834886455,0.0,464.3594769389568,0.4968957080018299 +7,1524.9954452539866,0.8944449107585185,0.0,458.9827495762694,0.4911422499972104 +8,1542.1390429790986,0.90450002520823,0.0,464.14251293555657,0.4966635420023522 +9,1523.6406292938134,0.8936502800306939,0.0,458.57498628982455,0.4907059159995697 +10,1518.857253388601,0.8908447200219888,0.0,457.13531836683904,0.4891653750019031 +11,1540.3509525440622,0.9034512690335336,0.0,463.60434564665206,0.4960876669974823 +12,1544.7409004501385,0.9060260744700382,0.0,464.9256022882363,0.4975015000018175 +13,1520.9241446275585,0.8920569992819237,0.0,457.7573972241131,0.489831040998979 +14,1524.7629585826623,0.8943085519774924,0.0,458.9127773203021,0.4910673750018759 +15,1547.5507958496198,0.9076741427627348,0.0,465.77130548065526,0.498406458998943 +16,1520.3921591954147,0.8917449775877873,0.0,457.59728386958494,0.4896597089973511 +17,1543.4079498683832,0.905244268289663,0.0,464.52441989456594,0.4970722079997358 +18,1521.5852544887127,0.8924447554241483,0.0,457.9563735704287,0.4900439590019232 +19,1517.3107069267537,0.8899376349442226,0.0,456.66984933897055,0.4886672920001729 +20,1542.8782900844042,0.904933610641676,0.0,464.3650064977934,0.4969016249997366 +21,1542.9237006680555,0.904960244993646,0.0,464.378673866184,0.4969162499983213 +22,1543.855845753035,0.9055069695297376,0.0,464.65922454942654,0.4972164579994569 +23,1557.0479460611064,0.9132444398412016,0.0,468.6296931111055,0.5014651250021416 +24,1516.6463647734088,0.8895479829882703,0.0,456.4699001593513,0.488453333000507 +25,1538.0197452868804,0.9020839623483896,0.0,462.9027147532199,0.4953368749993387 +26,1524.4368065343,0.8941172562980861,0.0,458.8146142966661,0.4909623339990503 +27,1540.8696144444589,0.903755476169796,0.0,463.7604489752787,0.4962547080031072 +28,1541.319193239712,0.9040191644756532,0.0,463.8957601411176,0.4963995000034629 +29,1542.3754109042263,0.9046386604338992,0.0,464.2136533448767,0.4967396669999289 +0,1547.2161396410088,2.5224156697912283,0.0,469.6401655061962,0.4980837500006601 +1,1523.7776597086224,2.4842040796049623,0.0,462.52567690138255,0.4905383750010514 +2,1537.3858773796346,2.506389461861416,0.0,466.6562992724376,0.4949191670020809 +3,1543.9666529760673,2.517118054369295,0.0,468.6538201495045,0.4970376669989491 +4,1525.5521548971224,2.4870970267212456,0.0,463.0643050818063,0.4911096249998081 +5,1519.810348193914,2.477736199342308,0.0,461.3214438348799,0.4892612080002436 +6,1542.9302980889086,2.5154284922325916,0.0,468.33924620714544,0.4967040410010668 +7,1541.4305863957322,2.5129835227301953,0.0,467.8840254853926,0.4962212500031455 +8,1518.9797912579406,2.4763821481685406,0.0,461.0693375603401,0.4889938330015866 +9,1520.1621440032227,2.4783097295939855,0.0,461.4282275206722,0.4893744590008282 +10,1559.9729599576056,2.5432130248852363,0.0,473.51235572663256,0.5021904580025875 +11,1525.116621549792,2.486386979745987,0.0,462.9321038023062,0.4909694169982685 +12,1525.9663352674104,2.487772262087118,0.0,463.1900249037935,0.491242958996736 +13,1528.0732054632329,2.4912070778571964,0.0,463.8295418026385,0.491921208002168 +14,1547.6336841771738,2.523096389733241,0.0,469.7669064831331,0.4982181669984129 +15,1538.8031437687475,2.508700021360231,0.0,467.0864946436569,0.4953754169982858 +16,1525.7245566200786,2.487378092046472,0.0,463.1166356978258,0.491165125000407 +17,1539.709287220718,2.5101773007032837,0.0,467.36154436027533,0.4956671250001818 +18,1542.453478403948,2.514651136429356,0.0,468.1945129213271,0.4965505419968394 +19,1509.6842072989823,2.461227622542033,0.0,458.247766949026,0.4860013750003418 +20,1521.0822659665512,2.479809798006507,0.0,461.7075202581715,0.4896706670006097 +21,1544.1478549626963,2.5174134667029437,0.0,468.70882198719875,0.4970960000027844 +22,1524.5216274879965,2.4854169650812916,0.0,462.7515000052687,0.4907778749984572 +23,1518.3726327778963,2.4753923019377058,0.0,460.8850413901084,0.4887983750013518 +24,1542.6089226370732,2.514904556077308,0.0,468.24169628084707,0.4966005829992355 +25,1538.5313361554806,2.5082568953060833,0.0,467.00399048072194,0.4952879160009615 +26,1542.3817717201457,2.5145342335234093,0.0,468.1727471589452,0.4965274579990364 +27,1524.6620618997297,2.4856459143222267,0.0,462.79412730127433,0.4908230840010219 +28,1540.2967732641005,2.5111350750979815,0.0,467.53986918224285,0.4958562499996333 +29,1543.0456208584671,2.515616502138619,0.0,468.37425114484904,0.4967411659999925 +0,1518.2927051233194,1.7891111176332049,0.0,461.02742966418606,0.4906970419979188 +1,1543.8582876666146,1.819236842272884,0.0,468.7903825967997,0.498959583001124 +2,1514.9563025535929,1.785179599744556,0.0,460.0143357489906,0.4896187500016822 +3,1511.9068828501715,1.7815862539586536,0.0,459.088383774716,0.4886332080022839 +4,1513.8533631439177,1.783879928638143,0.0,459.6794297592549,0.4892622909974307 +5,1504.4133561683889,1.7727561042441626,0.0,456.8129850103245,0.4862113750023127 +6,1514.179796505434,1.7842645880350334,0.0,459.77855078717573,0.4893677910004044 +7,1510.1860190300856,1.779558439043875,0.0,458.56584591288,0.488077041998622 +8,1537.290300099644,1.811497320415938,0.0,466.7960224738477,0.4968368750014633 +9,1536.988103258224,1.8111412206158968,0.0,466.7042608309297,0.4967392079997808 +10,1536.0570194200104,1.8100440590206557,0.0,466.4215385420819,0.4964382910002314 +11,1507.756203866577,1.7766952168811407,0.0,457.8280359796495,0.4872917499997129 +12,1537.6380057586473,1.8119070464576217,0.0,466.9016028047741,0.496949249998579 +13,1518.0240272813892,1.7887945156285736,0.0,460.9458460179926,0.490610208002181 +14,1558.077993685267,1.8359929223367613,0.0,473.10817619103767,0.5035552500012273 +15,1537.3728088338266,1.8115945462625287,0.0,466.8210761341312,0.4968635410004935 +16,1514.0352747056436,1.7840942878301564,0.0,459.734666947345,0.4893210829977761 +17,1535.4942699833675,1.80938093176585,0.0,466.250660472626,0.4962564160014153 +18,1534.6338380789523,1.8083670243150929,0.0,465.9893915434169,0.4959783330014033 +19,1533.748782893378,1.807324101519714,0.0,465.7206457897559,0.4956922920027864 +20,1539.3070455773816,1.8138737935054032,0.0,467.40840438199416,0.4974886670024716 +21,1517.4991843236946,1.7881760562449158,0.0,460.78647819718526,0.4904405839988612 +22,1532.80184149136,1.806208253841344,0.0,465.4331083741167,0.4953862499969546 +23,1534.5348282035316,1.808250354012803,0.0,465.9593273349658,0.4959463339982903 +24,1536.071073078166,1.8100606194348392,0.0,466.4258059154776,0.4964428330022201 +25,1534.2024633575504,1.807858705130444,0.0,465.85840522018754,0.495838916998764 +26,1534.6098614707555,1.8083387709907215,0.0,465.98211108029426,0.4959705840010429 +27,1509.8802113156066,1.7791980842980568,0.0,458.4729878334715,0.4879782079988217 +28,1533.3456392419216,1.806849048991048,0.0,465.59823179093394,0.4955620000000635 +29,1534.9845110335816,1.8087802469299832,0.0,466.09587288945767,0.4960916669988364 +0,1553.3861499030872,1.0056665982669593,0.0,466.4281682762157,0.4967214579992287 +1,1525.822451852758,0.9878217819888808,0.0,458.15174248644286,0.4879074999989825 +2,1551.4175283280858,1.004392107077032,0.0,465.8370592623274,0.4960919580007612 +3,1555.3466937259002,1.0069358598972142,0.0,467.01685182032793,0.4973483750000014 +4,1517.1578055606185,0.9822122654096668,0.0,455.5500486970035,0.4851368330018886 +5,1553.0831948373875,1.0054704642983583,0.0,466.3372013415786,0.4966245830000844 +6,1536.6455705433632,0.994828699719478,0.0,461.4015509298939,0.4913683750019118 +7,1523.3509920954475,0.986221751933866,0.0,457.4096485469271,0.4871172089988249 +8,1523.3483839474748,0.986220063411473,0.0,457.4088654102411,0.4871163749994593 +9,1552.7644720400087,1.0052641222555572,0.0,466.2414999021274,0.49652266600242 +10,1552.6602304699818,1.0051966359675315,0.0,466.2101997617412,0.4964893329997721 +11,1535.8703964688004,0.9943268498255036,0.0,461.16879294906863,0.4911204999989422 +12,1528.3973744832786,0.9894887942013932,0.0,458.9249027506061,0.4887308750003285 +13,1531.9027936882028,0.9917582125347134,0.0,459.9774589736001,0.4898517919973528 +14,1541.5801558574808,0.9980233642444684,0.0,462.8832363365845,0.4929462920008518 +15,1553.6147007694765,1.0058145627459438,0.0,466.4967942015687,0.4967945409989625 +16,1552.7666892752388,1.0052655576999323,0.0,466.2421656612286,0.4965233750008337 +17,1547.466343757515,1.0018340989819687,0.0,464.6506551078371,0.4948284999991301 +18,1572.9461018499128,1.0183297666220117,0.0,472.3013457592889,0.5029760830002488 +19,1537.0072902837874,0.99506287810513,0.0,461.5101628651593,0.4914840409983299 +20,1549.5905474320944,1.0032093144643353,0.0,465.28848004855865,0.4955077500017069 +21,1547.3910263969603,1.001785338309174,0.0,464.62803990779486,0.4948044160009885 +22,1552.954325958009,1.0053870342204247,0.0,466.29850647143303,0.496583374999318 +23,1551.7935835191104,1.0046355662740525,0.0,465.9499756379054,0.4962122079996334 +24,1557.6448522396645,1.0084236942357396,0.0,467.706909386536,0.4980832500004908 +25,1528.5850111774257,0.9896102707292512,0.0,458.9812435642267,0.4887908750024508 +26,1549.1668012392042,1.0029349799774732,0.0,465.161243713552,0.495372249999491 +27,1550.9013960862662,1.0040579616001204,0.0,465.6820825901359,0.4959269159990072 +28,1551.2523048367275,1.0042851409202147,0.0,465.7874483587956,0.4960391249987879 +29,1553.184831376732,1.005536264082133,0.0,466.3677192812933,0.4966570830001728 +0,1501.5232503115326,1.3133526494601322,0.0,456.718383849761,0.4868028330020024 +1,1526.3721649719084,1.335087502982142,0.0,464.2766791620399,0.4948589999985415 +2,1509.522278934724,1.3203492413765052,0.0,459.1514486886797,0.4893961660018249 +3,1533.950680078919,1.341716280054159,0.0,466.5818363888339,0.4973159999972267 +4,1509.4877083165245,1.3203190031414351,0.0,459.1409333424341,0.4893849580003007 +5,1530.701332361488,1.3388741399588795,0.0,465.5934821707004,0.4962625420012045 +6,1544.762735077852,1.3511733704295572,0.0,469.87053956687856,0.5008213330002036 +7,1511.6775444702157,1.3222344094554814,0.0,459.80701588814367,0.4900949160000891 +8,1506.085294324647,1.3173429790073663,0.0,458.1060209498117,0.4882818750011211 +9,1530.7837120838178,1.3389461958704754,0.0,465.6185396139578,0.4962892500007001 +10,1530.9396067952464,1.3390825538870756,0.0,465.6659581142306,0.4963397920000716 +11,1532.9659666367638,1.340854970708503,0.0,466.2823160638819,0.4969967500001075 +12,1535.0179028145485,1.3426497586447252,0.0,466.9064535687032,0.4976620000015828 +13,1511.8178904198764,1.3223571672781058,0.0,459.84970492096136,0.4901404169977468 +14,1530.536054722021,1.3387295748809525,0.0,465.5432096648512,0.4962089580003521 +15,1529.1070527547115,1.3374796551614545,0.0,465.1085500823957,0.4957456670017564 +16,1511.511884356299,1.3220895098347285,0.0,459.7566270450269,0.4900412079987291 +17,1531.490694698164,1.3395645795614914,0.0,465.8335825425086,0.4965184579996275 +18,1532.9885849649042,1.3408747545121726,0.0,466.28919588160807,0.4970040829975914 +19,1531.0605422535905,1.339188333737369,0.0,465.7027430571701,0.4963790000001609 +20,1529.8004113116283,1.3380861221592606,0.0,465.3194489808829,0.4959704579996469 +21,1505.970654248734,1.3172427056034062,0.0,458.0711508735845,0.48824470800173 +22,1533.9691868375924,1.3417324675494455,0.0,466.58746559031965,0.4973219999992579 +23,1508.4587853165551,1.319419024571127,0.0,458.82796579460944,0.4890513749996898 +24,1539.2997761865356,1.3463950284809303,0.0,468.2088711542435,0.4990502090004156 +25,1507.4511944376345,1.318537704784618,0.0,458.52148683885093,0.4887247080005181 +26,1531.4239932863045,1.3395062371575557,0.0,465.81329397154,0.4964968330023112 +27,1529.3615175108691,1.3377022304440045,0.0,465.1859506369026,0.4958281660001375 +28,1531.340456883142,1.3394331695201434,0.0,465.78788470062983,0.4964697499999602 +29,1531.6211426332488,1.3396786797867957,0.0,465.8732608958582,0.4965607500016631 +0,2841.8260314968174,3.9028612976752415,86.98290005166646,539.3075554900631,0.5156351249970612 +1,2818.4617448482527,3.870773629711821,86.26776359088173,534.8735978239179,0.5113957920002576 +2,2756.6629408744075,3.785901382924392,84.37621951682796,523.1457293569697,0.5001827079977375 +3,2741.474911483684,3.765042691561858,83.91134276933079,520.2634209705171,0.4974269160011317 +4,2743.5568095696717,3.767901895248307,83.9750657175775,520.658513194703,0.4978046659998654 +5,2743.6500444230396,3.768029940630667,83.97791945944695,520.6762068396689,0.497821582997858 +6,2779.6540676393047,3.8174765665725614,85.07993426196066,527.5088706035181,0.5043543329993554 +7,2774.160435980272,3.809931811141341,84.91178462569788,526.4663166160612,0.5033575410016056 +8,2762.721482020153,3.7942219646546,84.5616599600847,524.2954890463152,0.5012819999974454 +9,2810.6921727986087,3.860103179896819,86.02995173978736,533.3991272325247,0.5099860419977631 +10,2779.1339430962007,3.8167622462986417,85.06401423707321,527.4101639646236,0.5042599590015016 +11,2778.1701523966453,3.815438610939312,85.03451443336918,527.2272605777097,0.5040850839977793 +12,2770.4892187897412,3.8048898939622178,84.79941563674055,525.7696113474226,0.5026914169975498 +13,2748.7043804525424,3.774971383300401,84.13262309042545,521.6353934958842,0.4987386669999978 +14,2762.1209804912887,3.793397257529595,84.54327974824655,524.1815288643721,0.5011730419973901 +15,2799.1682509959614,3.844276641642012,85.67722636981284,531.212174889854,0.507895084003394 +16,2814.9393275771636,3.8659360689712168,86.15994908498459,534.2051310610574,0.5107566669976222 +17,2778.191503218949,3.815467933388019,85.03516794150863,527.2313124301653,0.5040889579977375 +18,2754.1291152150907,3.782421518220782,84.29866392347708,522.664872574317,0.4997229580003477 +19,2745.556043502129,3.7706475709700102,84.0362584730099,521.0379178285604,0.4981674170012411 +20,2808.8947906798903,3.8576347201703856,85.97493728518867,533.058029028066,0.5096599159987818 +21,2757.1403582791954,3.786557050756037,84.39083235728454,523.2363312483842,0.5002693329988688 +22,2771.5646135441475,3.806366802302199,84.83233142870031,525.9736943946457,0.5028865419990325 +23,2826.763615923177,3.8821751197951344,86.52186810465156,536.4490854666476,0.5129021249995276 +24,2812.8927900757117,3.8631254282352496,86.09730845710386,533.8167493920553,0.5103853330001584 +25,2842.6903871099375,3.9040483724759105,87.00935633613703,539.4715885827364,0.5157919580015005 +26,2861.169358671259,3.929426725030988,87.57496257612542,542.978435543195,0.519144875001075 +27,2829.818723513932,3.886370894288026,86.61537914834967,537.0288685315742,0.5134564589970978 +28,2856.0532518689556,3.922400448611468,87.41836825905385,542.0075263381291,0.518216583001049 +29,2865.5485534638706,3.9354409530947874,87.70900141549514,543.8094972663415,0.5199394580013177 +0,1534.5698363339466,1.9532634423597792,0.0,461.1688093571479,0.4912200420003501 +1,1551.185722359366,1.974412823748249,0.0,466.16221414937473,0.4965388329983398 +2,1555.7648518682472,1.9802413276427973,0.0,467.53833379769776,0.4980046249984298 +3,1547.1130708458957,1.969228985824172,0.0,464.9383012293342,0.4952351660031127 +4,1548.7710040477298,1.9713392712190376,0.0,465.4365431878169,0.4957658749990514 +5,1529.9506165648868,1.9473839099374004,0.0,459.78064178691506,0.4897414169972762 +6,1550.7720552104208,1.973886291230661,0.0,466.0378989295442,0.4964064170017082 +7,1549.999125296815,1.9729024743277044,0.0,465.8056180912699,0.4961590000020806 +8,1541.253365057029,1.9617705119056952,0.0,463.17734289570063,0.4933594579997589 +9,1529.0040455454573,1.9461790755114443,0.0,459.49617833685454,0.4894384170002013 +10,1552.3704981524672,1.975920854982322,0.0,466.5182628797245,0.4969180830012192 +11,1550.8496334220874,1.9739850359610631,0.0,466.0612127277562,0.4964312500014785 +12,1530.6394547384657,1.9482606914238447,0.0,459.9876513819348,0.4899619159987196 +13,1555.5371906072128,1.9799515510501056,0.0,467.4699170530165,0.4979317500001343 +14,1531.5840763931462,1.949463044618377,0.0,460.2715290090507,0.4902642919987556 +15,1531.394293586173,1.949221481275952,0.0,460.2144954944748,0.4902035419981985 +16,1553.3936102332789,1.9772231140112495,0.0,466.825728443673,0.4972455840033944 +17,1551.753249488106,1.97513519556012,0.0,466.3327673585165,0.4967204999993555 +18,1523.894748786755,1.939675752991576,0.0,457.9607328673332,0.4878029169994988 +19,1528.9590068812288,1.946121748451934,0.0,459.4826433209397,0.489423999999417 +20,1532.1890914847395,1.9502331326472857,0.0,460.4533480979099,0.4904579590001958 +21,1551.723309101243,1.9750970862074375,0.0,466.32376967575607,0.4967109159988467 +22,1555.211904441731,1.9795375134740387,0.0,467.3721620795485,0.4978276250003546 +23,1554.1097864963954,1.978134692539584,0.0,467.04095367926107,0.4974748340027872 +24,1553.889544716052,1.9778543597662952,0.0,466.9747666363473,0.4974043340007483 +25,1553.1610005454645,1.9769270388579467,0.0,466.7558245981558,0.4971711250000226 +26,1530.6065246884548,1.9482187767052583,0.0,459.9777552458347,0.4899513749987818 +27,1556.0137313297807,1.9805581116315465,0.0,467.6131270343634,0.4980842920012946 +28,1560.4539710522986,1.986209830908153,0.0,468.94750753475546,0.4995056249972549 +29,1556.8816807251255,1.981662873228969,0.0,467.8739631199922,0.498362124999403 +0,1625.5597601283662,2.2574452413660273,0.0,464.3365675145092,0.4921481670025969 +1,1644.2506820048245,2.2834016741479406,0.0,469.67557671040066,0.4978069580029114 +2,1643.4560391045154,2.282298138690255,0.0,469.4485892038324,0.4975663750010426 +3,1621.7092979108827,2.252098032470286,0.0,463.23669382591015,0.4909824159985874 +4,1619.196275230912,2.2486081508741167,0.0,462.51885597465105,0.4902215830006753 +5,1641.3240954177825,2.27933746861923,0.0,468.8396054937819,0.4969209160008176 +6,1638.5015562736703,2.2754177557204915,0.0,468.0333551362134,0.496066374998918 +7,1645.2563032830217,2.2847981992248796,0.0,469.96282959644697,0.4981114160000288 +8,1618.3200220934311,2.2473912817537336,0.0,462.2685567336687,0.489956291999988 +9,1617.3511432498,2.2460457815828616,0.0,461.9917992205806,0.4896629579998262 +10,1646.567318891178,2.2866188311195543,0.0,470.3373175127825,0.49850833399978 +11,1618.8724436245966,2.248158439865878,0.0,462.4263543882946,0.4901235409997753 +12,1650.6390747233522,2.2922733545968215,0.0,471.50040309920206,0.4997410830001172 +13,1629.1166659098049,2.262384782948714,0.0,465.3525876338774,0.4932250419988122 +14,1635.0711285199925,2.2706538565404464,0.0,467.0534631092827,0.4950277919997461 +15,1641.623980355017,2.2797539244402474,0.0,468.925266781555,0.4970117080010823 +16,1618.5698106059183,2.247738167732763,0.0,462.3399081187963,0.4900319170010334 +17,1613.503987338456,2.2407031642162933,0.0,460.892869969019,0.4884982080002373 +18,1619.408908420105,2.2489034385607796,0.0,462.579594046318,0.4902859590001753 +19,1624.9317794191234,2.256573152810121,0.0,464.1571865934583,0.4919580419991689 +20,1625.9434583893585,2.257978090317289,0.0,464.44616984217527,0.4922643339996284 +21,1639.1675213520718,2.2763425938802615,0.0,468.22358618534145,0.4962680000026012 +22,1643.0470201217047,2.2817301263790366,0.0,469.3317540832881,0.4974425420004991 +23,1614.9683111595143,2.242736698093513,0.0,461.3111499446172,0.4889415409998037 +24,1643.1139023399896,2.281823006966452,0.0,469.3508588005848,0.4974627910014533 +25,1644.857744860965,2.284244713690023,0.0,469.8489825056227,0.4979907499982801 +26,1640.20190836125,2.277779066465813,0.0,468.5190559214313,0.4965811670008406 +27,1642.3811937703597,2.2808054808721243,0.0,469.141562661153,0.4972409589972812 +28,1642.441334598725,2.280888999565276,0.0,469.15874171940465,0.4972591670011752 +29,1616.647332541312,2.245068386488772,0.0,461.7907576738008,0.4894498749999911 +0,1535.7178020381325,1.9487966258065517,0.0,459.2884251159339,0.4907917919990723 +1,1532.1004752886363,1.944206307094024,0.0,458.2065881380069,0.4896357500001613 +2,1557.7018073234124,1.97669390958148,0.0,465.8632002157708,0.4978175420001207 +3,1559.2145772362046,1.9786135857731335,0.0,466.3156255961936,0.4983009999996284 +4,1530.2639789041189,1.9418758281787545,0.0,457.6573456072133,0.4890488339988224 +5,1553.2082118735125,1.9709916225865105,0.0,464.5192968146683,0.4963814580005419 +6,1559.180676984456,1.9785705669996752,0.0,466.3054870191607,0.4982901660005154 +7,1576.5626178917416,2.0006279187768907,0.0,471.50391882360447,0.5038451670006907 +8,1558.6548663303993,1.977903323299642,0.0,466.1482323810427,0.4981221250018279 +9,1553.3620584498417,1.9711868509601376,0.0,464.5653078406901,0.4964306250003574 +10,1554.391910882479,1.972493714072058,0.0,464.8733066808808,0.4967597499999101 +11,1554.4539726991168,1.9725724693347075,0.0,464.89186756100185,0.4967795840020699 +12,1553.0417207545252,1.9707803485292077,0.0,464.4695041745531,0.4963282499993511 +13,1559.0345279038957,1.9783851066014937,0.0,466.2617780897249,0.4982434590019693 +14,1547.9875038358405,1.964366643573678,0.0,462.9579352354575,0.494713000000047 +15,1555.7903386278183,1.974268292232144,0.0,465.2915356523383,0.4972066660011478 +16,1555.1814795416483,1.973495661654348,0.0,465.1094436492154,0.4970120840007439 +17,1530.5920078343006,1.942292090640163,0.0,457.7554494974825,0.4891536670002097 +18,1553.613947922776,1.97150649390123,0.0,464.64064063892545,0.4965111250021436 +19,1556.3417074494223,1.9749679687597528,0.0,465.45643399329424,0.4973828749971289 +20,1559.243258216998,1.9786499813912093,0.0,466.3242032414367,0.4983101660000102 +21,1546.4155414555316,1.9623718532687304,0.0,462.48780711358813,0.4942106249982316 +22,1555.8130274462446,1.9742970839103633,0.0,465.29832121650173,0.4972139169985894 +23,1528.3264357327582,1.939417122816551,0.0,457.07788292820584,0.488429624998389 +24,1559.6077970344063,1.979112574203768,0.0,466.4332261746338,0.498426666999876 +25,1535.5840315256837,1.9486268735754144,0.0,459.24841825535833,0.4907490410005266 +26,1533.0749182963104,1.94544285670156,0.0,458.4980156344947,0.4899471669996273 +27,1555.842230984777,1.974334142644252,0.0,465.3070551435309,0.4972232500003883 +28,1528.0772841982807,1.9391009542671864,0.0,457.0033689675462,0.4883499999996274 +29,1555.619285336731,1.974051228865383,0.0,465.240378599545,0.4971519999999145 +0,2383.386966168609,3.082051612304022,88.18644451979573,513.4101459979989,0.5018917500019597 +1,2392.9581863100643,3.0944285342589612,88.54058418992577,515.4719016423637,0.5039072500003385 +2,2395.8128128140165,3.0981199642885446,88.64620672012707,516.0868224382594,0.5045083750010235 +3,2406.741797546536,3.1122526651440228,89.05058432202414,518.4410568646366,0.5068097919975116 +4,2392.7939583178036,3.094216164570146,88.53450767657158,515.4365249625881,0.5038726669990865 +5,2407.235868168884,3.112891567336497,89.06886516862816,518.5474856040539,0.5069138329999987 +6,2383.366190118774,3.0820247459752212,88.18567579612973,513.4056705876143,0.5018873749977502 +7,2389.979297781308,3.09057641610809,88.43036390606052,514.8302133155541,0.5032799580003484 +8,2372.1590060262415,3.0675322945638155,87.77100468639046,510.9915086815336,0.4995273749991611 +9,2434.393501328002,3.1480101730235015,90.07371043457567,524.3975655965601,0.5126326659992628 +10,2407.0043685866112,3.1125922061035465,89.06029957464018,518.4976178167327,0.5068650840003102 +11,2391.835492400789,3.09297673452089,88.49904398451709,515.2300599053509,0.503670834001241 +12,2391.349926903011,3.0923488306401734,88.48107783154303,515.1254632718018,0.5035685840011865 +13,2386.3159874752173,3.085839245184727,88.29481969286623,514.041092326901,0.502508541001589 +14,2389.9163808291732,3.0904950557178053,88.42803594908688,514.8166602492498,0.503266708998126 +15,2379.0554607268587,3.076450371917988,88.02617677068565,512.47708776079,0.5009796249978535 +16,2372.256157129671,3.067657924484265,87.77459932314656,511.01243619473377,0.4995478330019978 +17,2388.6626958357265,3.088873866246594,88.38164901163641,514.5466014612068,0.503002708999702 +18,2400.8890925962055,3.104684301724841,88.83403147193334,517.1803140034541,0.5055773339990992 +19,2418.5696887077106,3.127547777327193,89.48822188674905,520.9889265199234,0.5093005000017001 +20,2404.9249800573316,3.1099032668501883,88.98336121600377,518.0496925811087,0.5064272080016963 +21,2390.42113626185,3.0911477748595897,88.4467121387244,514.9253906249975,0.5033729999995558 +22,2429.226804269944,3.141328913444545,89.88254020081649,523.2845970654074,0.5115446670024539 +23,2389.321588038432,3.089725905720045,88.40602833463483,514.6885347463972,0.5031414580007549 +24,2385.933708517587,3.0853449051994715,88.28067519070747,513.9587448532282,0.5024280409998028 +25,2377.367853522984,3.074268060536131,87.96373450630801,512.1135569228575,0.5006242500021472 +26,2428.9361345325683,3.1409530369522076,89.8717852831164,523.2219833168128,0.5114834579981107 +27,2396.6984652923975,3.0992652364108144,88.67897628052879,516.2776026072725,0.5046948750023148 +28,2425.776397199325,3.136867056085225,89.75487350798693,522.5413379878743,0.5108180829993216 +29,2404.7100965363693,3.1096253925009365,88.9754104241397,518.0034040927367,0.5063819579991105 +0,1517.4626581845162,1.782299102617972,0.0,473.8275169848816,0.490920833999553 +1,1528.9531340981075,1.795794963487424,0.0,477.41541658936035,0.4946381670015398 +2,1513.015531420153,1.7770758373213904,0.0,472.4389022330719,0.489482125001814 +3,1540.509681270263,1.8093684267573125,0.0,481.0239469357033,0.4983768749989394 +4,1513.3063470236584,1.7774174077622575,0.0,472.52970936731424,0.489576208001381 +5,1541.7025714369026,1.810769507081798,0.0,481.396426734561,0.4987627919981605 +6,1520.6876534255211,1.7860869428610175,0.0,474.8345213280142,0.4919641660017078 +7,1540.8432585109908,1.8097602218460391,0.0,481.1281063855878,0.498484791998635 +8,1521.949062973098,1.7875685009689248,0.0,475.2283962946275,0.4923722499988798 +9,1537.8767464620305,1.806275976791144,0.0,480.20181338543824,0.4975250829993456 +10,1540.0165314743188,1.8087892095791984,0.0,480.8699609762772,0.4982173339994915 +11,1510.0710431165503,1.7736174597245022,0.0,471.5194861445362,0.4885295409985701 +12,1532.742509370935,1.8002456826611817,0.0,478.5986485237764,0.4958640840013686 +13,1514.3150598492307,1.7786021670405965,0.0,472.8446798154592,0.4899025410013564 +14,1541.9176562329635,1.81102212973247,0.0,481.4635869340618,0.4988323750003474 +15,1515.38856114981,1.779863022056937,0.0,473.1798804564702,0.4902498339979502 +16,1539.5401197356418,1.8082296516818483,0.0,480.7212014730485,0.4980632080005307 +17,1544.3518610214203,1.8138811661553136,0.0,482.2236670615867,0.4996198750013718 +18,1541.4078889281657,1.8104233948608175,0.0,481.3044121596648,0.4986674579995451 +19,1537.113645676467,1.805379695200305,0.0,479.9635352647329,0.4972782090007968 +20,1539.3887879352014,1.8080519085718825,0.0,480.6739481381101,0.4980142500025977 +21,1538.0077298589322,1.8064298201753597,0.0,480.24271293402705,0.4975674579982296 +22,1563.7775879693274,1.836697184408032,0.0,488.28934776595753,0.5059043750006822 +23,1519.3288787684876,1.784491026916181,0.0,474.4102441186795,0.4915245830015919 +24,1542.9349992791474,1.812217025427918,0.0,481.7812521674665,0.4991614999999001 +25,1541.7235658764823,1.810794165593571,0.0,481.40298224557984,0.498769583999092 +26,1538.245614273331,1.8067092215669016,0.0,480.31699231137856,0.4976444170024479 +27,1538.7954354415915,1.8073550007361656,0.0,480.48867389941466,0.4978222919999098 +28,1521.1390801785462,1.7866171552471182,0.0,474.9754792727338,0.4921102090011118 +29,1539.4867990582093,1.8081670251684203,0.0,480.70455209847864,0.4980459580001479 +0,1543.729077280049,0.8416545324726573,0.0,483.6146943587889,0.500818624997919 +1,1537.0330531240645,0.8380038018079471,0.0,481.5169845188464,0.4986462920023768 +2,1534.554664825174,0.8366525629308097,0.0,480.7405626600432,0.4978422499989392 +3,1535.092545630475,0.8369458202285922,0.0,480.9090683033491,0.498016749999806 +4,1531.808106737977,0.8351551155504301,0.0,479.8801293952771,0.4969512079987908 +5,1531.5242690566324,0.8350003647755008,0.0,479.79120960000273,0.4968591250035388 +6,1534.608992326213,0.8366821827573456,0.0,480.7575822123708,0.4978598749985394 +7,1536.0975412270489,0.8374937525772282,0.0,481.22391023087533,0.4983427919978567 +8,1510.419512420762,0.8234938677218793,0.0,473.1795763929918,0.4900122919971181 +9,1532.35549370627,0.8354535556910356,0.0,480.05161310006906,0.4971287920016038 +10,1529.5036188599531,0.8338986886967076,0.0,479.1581865251282,0.496203582999442 +11,1542.3129650510032,0.8408824557568605,0.0,483.171059077892,0.5003592079992814 +12,1517.2641365738616,0.827225616398712,0.0,475.3238391826999,0.4922328339998785 +13,1534.3937382954016,0.8365648243857687,0.0,480.6901480920627,0.4977900420017249 +14,1515.5433772895742,0.826287443456173,0.0,474.784765009917,0.4916745830014406 +15,1515.0810186523638,0.8260353615019213,0.0,474.639918719004,0.4915245840020361 +16,1540.2311844884327,0.839747450870389,0.0,482.5188852701255,0.4996838340011891 +17,1512.1865017252865,0.8244572456739251,0.0,473.73313336423735,0.4905855409997457 +18,1518.053360288759,0.8276559080389709,0.0,475.57108475919273,0.4924888749992533 +19,1532.7389950049983,0.8356626439378236,0.0,480.1717552066734,0.4972532079991651 +20,1515.872168866676,0.826466703486433,0.0,474.8877678233044,0.491781249998894 +21,1505.3775842415985,0.820744964584114,0.0,471.6000566500319,0.4883765830018092 +22,1535.0884336949991,0.8369435783655729,0.0,480.9077801288582,0.4980154160002712 +23,1510.0620790707417,0.8232989919476719,0.0,473.06760077313226,0.4898963329978869 +24,1538.518645991316,0.8388137599725848,0.0,481.9823864802472,0.4991282500013767 +25,1537.671497595775,0.8383518872921528,0.0,481.716994438071,0.498853417000646 +26,1536.2101756293196,0.8375551618339292,0.0,481.25919598977566,0.4983793329993204 +27,1537.739437027721,0.8383889284619229,0.0,481.73827829422095,0.498875458000839 +28,1519.8608093217636,0.8286413449872222,0.0,476.1373168296579,0.4930752500004018 +29,1533.067015995791,0.8358414838377192,0.0,480.2745166131535,0.4973596250019909 +0,1550.1230309870657,1.3179917364115763,0.0,458.9576724119213,0.4902429590001702 +1,1574.098373332155,1.3383767655071996,0.0,466.05624916874456,0.4978254169982392 +2,1573.7945638369015,1.3381184515565112,0.0,465.9662977932661,0.4977293340016331 +3,1570.716798964913,1.3355015827100971,0.0,465.0550386392236,0.4967559579999943 +4,1559.3314125989507,1.3258211606750565,0.0,461.68407367607153,0.4931552080015535 +5,1552.5471894685113,1.3200528765807302,0.0,459.67541294732473,0.4910096250023343 +6,1574.0878345582526,1.338367804917209,0.0,466.05312886729513,0.4978220839984715 +7,1575.5656502813997,1.3396243173824207,0.0,466.49067792049345,0.498289458999352 +8,1577.001304570727,1.3408449820986093,0.0,466.91574389128823,0.4987434999966353 +9,1578.9038743347269,1.3424626415854837,0.0,467.47905336610495,0.4993452079979761 +10,1555.2710753624297,1.322368859910664,0.0,460.481896242391,0.4918710829988413 +11,1575.3963500656332,1.3394803699144506,0.0,466.44055181345954,0.4982359159985208 +12,1553.4810203833467,1.3208468660927597,0.0,459.9518999451511,0.4913049589995353 +13,1572.2751115779795,1.3368265376367137,0.0,465.5164210685446,0.4972487910017662 +14,1570.6119266223695,1.335412415025928,0.0,465.0239882224038,0.4967227910019574 +15,1573.5109085929755,1.3378772737531943,0.0,465.8823136527061,0.4976396250021935 +16,1575.803058868378,1.339826173976727,0.0,466.5609694330457,0.4983645419997629 +17,1546.9074589077654,1.3152576970201002,0.0,458.0056115448244,0.4892259999978705 +18,1573.436074749162,1.337813646295387,0.0,465.8601569812111,0.4976159580000967 +19,1549.2843209706837,1.317278623420711,0.0,458.7093486406771,0.4899777080026979 +20,1576.585113105372,1.3404911154047163,0.0,466.7925186618074,0.4986118750020978 +21,1569.630277542812,1.3345777681307784,0.0,464.7333433073403,0.4964123339996149 +22,1574.2479082049676,1.3385039074970495,0.0,466.10052318816014,0.4978727089983294 +23,1572.3658879618847,1.336903720235421,0.0,465.5432979789795,0.497277500002383 +24,1576.3239898959707,1.340269095458366,0.0,466.7152057659895,0.4985292919991479 +25,1573.3256689889686,1.3377197738241842,0.0,465.82746823992653,0.4975810409996484 +26,1553.7065716648651,1.3210386410159338,0.0,460.0186807677736,0.4913762920004956 +27,1573.2355534467677,1.3376431531059774,0.0,465.80078699032896,0.4975525409972761 +28,1570.2842728532314,1.3351338274870712,0.0,464.9269770766853,0.4966191669991531 +29,1573.1474173008337,1.3375682153689734,0.0,465.77469179686074,0.497524667000107 +0,2402.5782786539626,4.993293118148779,87.66748185957857,520.2073092149228,0.5068752500010305 +1,2377.8219583683936,4.941841906418905,86.76415051806616,514.8470598210783,0.5016523749982298 +2,2349.795445683046,4.883594233841156,85.74149339415077,508.7787469256125,0.4957395829987945 +3,2384.576623462263,4.955880168159752,87.01062093896586,516.3095828882138,0.5030774160004512 +4,2371.1557697483568,4.927987525874286,86.52090850796733,513.4036937191044,0.5002459999996063 +5,2378.437757555676,4.943121725632848,86.78662036413107,514.9803929328772,0.501782291001291 +6,2422.518978853121,5.03473599722588,88.39509643451612,524.5248784223983,0.5110821669986763 +7,2375.9289290692,4.937907612058511,86.69507592714807,514.4371802817735,0.5012529999985418 +8,2388.265318143857,4.963546404857303,87.14521741682353,517.1082606885901,0.503855625000142 +9,2406.0532760935043,5.0005152265623165,87.79428075628871,520.9597171941398,0.5076083749991085 +10,2375.3678340035294,4.9367414847548,86.67460217529234,514.3156917305287,0.5011346249993949 +11,2419.1148820311064,5.027661241999008,88.27088462462687,523.7878218761784,0.510364000001573 +12,2372.656959180831,4.931107457045233,86.57568528610959,513.7287319175379,0.5005627080026898 +13,2368.4480564822406,4.922360068847082,86.42210698056353,512.8174184477399,0.4996747500008496 +14,2439.641363123853,5.07032155308683,89.01987371057146,528.2322246212541,0.5146945000014966 +15,2418.535812946442,5.026457759181787,88.24975502026548,523.6624415824086,0.5102418329988723 +16,2417.9853875716512,5.025313806761832,88.2296705938856,523.5432632373418,0.5101257089991122 +17,2384.1778726880316,4.955051441988991,86.99607095465235,516.223245194598,0.5029932910001662 +18,2388.2459647989576,4.963506182682336,87.14451123420798,517.1040702938113,0.5038515419983014 +19,2432.047323510301,5.054538814152496,88.74277542163038,526.5879598126791,0.5130923750002694 +20,2361.464682654295,4.907846480346616,86.1672912254144,511.3053752645672,0.4982014580018585 +21,2400.1828115333383,4.9883146041938184,87.5800738561814,519.6886416167828,0.5063698750018375 +22,2389.760383510022,4.966653608343817,87.19977073441225,517.4319729014837,0.504171041000518 +23,2386.7021155713032,4.9602975913983816,87.08817784629642,516.7697953776985,0.5035258339994471 +24,2414.7748383214166,5.018641302636117,88.11252112547706,522.8481136967814,0.5094483749999199 +25,2366.2050555282203,4.917698426257861,86.34026230262123,512.3317628912804,0.4992015409989108 +26,2363.601427471991,4.912287290158407,86.24525873190866,511.76802419549625,0.4986522500003048 +27,2358.8697429596814,4.902453401322201,86.07260468361662,510.74351777667465,0.4976539999988745 +28,2357.78093175996,4.900190518352336,86.03287514100478,510.50776789519006,0.4974242919997778 +29,2420.304218721447,5.030133047710314,88.31428223362539,524.0453375812565,0.5106149160019413 +0,1550.0754940354375,0.8369738088744263,0.0,464.9222113535663,0.4976810830012255 +1,1538.0192823716247,0.8304639753626484,0.0,461.3061290344438,0.4938102080013777 +2,1559.9019166086243,0.8422796525964494,0.0,467.8695014242757,0.5008360419997189 +3,1523.542381797456,0.8226470744046739,0.0,456.96399689030824,0.4891621249989839 +4,1528.3809066387753,0.8252596688114338,0.0,458.4152408313752,0.4907156250010303 +5,1551.7799566719364,0.8378941450712398,0.0,465.4334397041723,0.4982283329991332 +6,1548.695597204981,0.8362287241927542,0.0,464.50833171459107,0.4972380409999459 +7,1547.2775496939855,0.8354630397915688,0.0,464.08300934342066,0.4967827500004205 +8,1525.432941555003,0.8236678950081009,0.0,457.5310423190999,0.4897691250007483 +9,1527.96653767238,0.8250359274688878,0.0,458.2909569904178,0.4905825839996396 +10,1546.2255949068822,0.8348950296473445,0.0,463.76749106850696,0.4964450000006764 +11,1523.9453326596456,0.8228646504641715,0.0,457.084856039838,0.4892915000018547 +12,1524.7151548779866,0.8232803212084161,0.0,457.315752824851,0.4895386659991345 +13,1526.3592753499977,0.8241680752429792,0.0,457.8088824359701,0.4900665420027508 +14,1547.67154608124,0.8356757808214038,0.0,464.2011827306734,0.4969092499995895 +15,1545.9810991200077,0.8347630124838054,0.0,463.6941581745042,0.4963664999995671 +16,1546.6076499320116,0.8351013228574576,0.0,463.8820828208606,0.4965676659994642 +17,1548.5856800011288,0.8361693736507174,0.0,464.47536367550055,0.4972027500007243 +18,1551.9768271727287,0.8380004466375425,0.0,465.49248809822205,0.4982915420005156 +19,1529.9212051478569,0.826091363470765,0.0,458.8772305807405,0.4912101669979165 +20,1544.5464383513545,0.8339883576411201,0.0,463.2638529024894,0.4959058749991527 +21,1543.6286697038347,0.8334928022158935,0.0,462.9885817748845,0.4956112079999002 +22,1570.5071158864175,0.8480060020984975,0.0,471.0503740456734,0.5042410420028318 +23,1549.277640443903,0.8365430023995156,0.0,464.68290697288296,0.4974249170008988 +24,1549.6094726118893,0.8367221774362252,0.0,464.7824351222744,0.4975314580005943 +25,1548.7467295315246,0.8362563334403481,0.0,464.52366809944454,0.4972544580014073 +26,1549.243896913958,0.8365247823509493,0.0,464.6727861003053,0.4974140830017859 +27,1549.9832241185036,0.8369239871050236,0.0,464.8945363570985,0.4976514579975628 +28,1551.6860017693218,0.8378434134823552,0.0,465.4052593211787,0.4981981669989181 +29,1549.708881169605,0.8367758537632858,0.0,464.8122512484299,0.497563375000027 +0,2363.643925379505,3.9358533413659975,84.65364561721366,507.6594834805242,0.4960967090009944 +1,2420.669412172537,4.030810094507798,86.69600711603854,519.9073220232641,0.5080655830024625 +2,2397.703812421404,3.992568618477326,85.87349670241649,514.974808973267,0.5032454159991175 +3,2402.6092470344624,4.000736968627426,86.04918430022823,516.0283900034609,0.5042749999993248 +4,2389.4662276257723,3.978851693819367,85.57846851456489,513.2055543078013,0.5015164590004133 +5,2402.65748741978,4.000817296751177,86.0509120242899,516.0387509926227,0.504285125000024 +6,2378.8999926359456,3.961257186100236,85.2000399777059,510.9361560538288,0.4992987500008894 +7,2410.4333224318525,4.013765332572293,86.3294026947424,517.7088318129496,0.5059171670000069 +8,2393.994467699317,3.986391953429793,85.7406469316858,514.1781221265528,0.5024668749974808 +9,2427.3869365663154,4.041995870227681,86.93659450881371,521.3501006615337,0.5094754999990982 +10,2394.325994672676,3.986944000010007,85.75252053354856,514.249326934624,0.5025364579996676 +11,2383.245600577661,3.968493333370142,85.35567744523615,511.86949844919224,0.5002108339976985 +12,2393.684776374659,3.985876266772484,85.72955537116485,514.1116071425375,0.5024018750009418 +13,2401.849512241306,3.9994718860605944,86.02197448268662,515.865215437049,0.5041155420003633 +14,2388.9403431391283,3.977976010222652,85.5596340198722,513.0926057185517,0.5014060829998925 +15,2396.267721266653,3.990177292055761,85.82206325663266,514.6663677203255,0.5029439999998431 +16,2403.0130369051967,4.001409344739105,86.06364598976359,516.1151153155989,0.5043597500007309 +17,2433.921623985864,4.052877192510978,87.17063361559029,522.7536098807077,0.510847042001842 +18,2434.78359980185,4.054312523086408,87.20150518405016,522.9387436027619,0.5110279590007849 +19,2370.2641685954413,3.946877128029598,84.89074889536992,509.0813682303509,0.4974862080016464 +20,2385.3405815094175,3.9719818189291622,85.43070895546808,512.3194549448798,0.5006505419987661 +21,2401.14317777159,3.9982957237575913,85.99667719181953,515.7135101026666,0.5039672920029261 +22,2400.217276878852,3.9967539474843856,85.96351615380999,515.5146466596943,0.5037729579998995 +23,2446.385504587464,4.07363159023792,87.61702612003393,525.4305812808543,0.5134630410029786 +24,2357.8399856468027,3.926188833381202,84.44577815797403,506.41292302561874,0.4948785409978882 +25,2402.053984753769,3.999812366203459,86.02929764309273,515.9091317008094,0.5041584579994378 +26,2443.47977076367,4.06879306864137,87.51295758469482,524.8064926369261,0.5128531669979566 +27,2431.6164102894504,4.0490386350479985,87.08807264215737,522.258499943941,0.5103632090031169 +28,2422.427310738474,4.033737282850438,86.7589660586415,520.2848805329922,0.5084345420000318 +29,2386.7347881131845,3.974303400729649,85.48064231069353,512.6189003041125,0.5009431670005142 +0,1510.9616102840157,1.973479398690429,0.0,456.5315675637193,0.4877955420015496 +1,1499.1237497703612,1.9580178716143863,0.0,452.9548009667947,0.4839738330010732 +2,1544.0023216339043,2.0166341438032624,0.0,466.5146985998213,0.4984623329983151 +3,1509.4705364928102,1.9715318949359704,0.0,456.08104502852115,0.4873141669995675 +4,1544.990436996952,2.01792472941393,0.0,466.8132540710892,0.4987813340012508 +5,1541.501322781938,2.013367568612397,0.0,465.7590308723345,0.4976549159982824 +6,1536.3578763508624,2.00664967088362,0.0,464.20495719774414,0.4959944170004746 +7,1519.357206740154,1.9844449563413564,0.0,459.0682665669671,0.4905059580014494 +8,1540.251215198586,2.0117347928058504,0.0,465.3813154024201,0.4972513339998841 +9,1542.0548793765877,2.014090573438009,0.0,465.9262859886594,0.4978336249987478 +10,1514.9068296707828,1.9786322822118283,0.0,457.723601285003,0.4890692080007284 +11,1545.29644513748,2.0183244091655883,0.0,466.9057133203061,0.4988801250001415 +12,1538.6722489839171,2.009672492033502,0.0,464.9042364904169,0.4967415840001195 +13,1538.6115869441585,2.009593260843953,0.0,464.8859076752345,0.4967219999998633 +14,1519.289578347493,1.984356626340929,0.0,459.04783289353486,0.4904841249990568 +15,1518.7244091137609,1.9836184541518056,0.0,458.87706906045105,0.490301666999585 +16,1541.7541618243265,2.0136978037672426,0.0,465.8354252714888,0.4977365420018032 +17,1540.7168762595966,2.0123429965513475,0.0,465.5220132022117,0.4974016669984848 +18,1520.6221638886673,1.986097127287214,0.0,459.45046877910886,0.4909143340009905 +19,1540.028059803257,2.0114433277068096,0.0,465.3138898095086,0.4971792910000658 +20,1542.8873407268788,2.0151778580611417,0.0,466.1778111648108,0.4981023750005988 +21,1539.6550675608858,2.010956159468265,0.0,465.2011915569919,0.4970588750002207 +22,1540.5992971014362,2.0121894254448645,0.0,465.4864870862453,0.4973637080001936 +23,1529.68321522744,1.9979318410389308,0.0,462.1882325603393,0.493839583999943 +24,1523.1413576259852,1.9893874669676328,0.0,460.211634025179,0.4917276249980205 +25,1538.647208535401,2.0096397864975417,0.0,464.8966706097646,0.4967334999964805 +26,1516.4997347778003,1.9807127886862297,0.0,458.2048917827478,0.4895834580020164 +27,1543.166248570158,2.0155421418914514,0.0,466.26208215755577,0.4981924169987906 +28,1517.437899341542,1.9819381331466872,0.0,458.488354801267,0.4898863329981395 +29,1539.589114932861,2.0108700181978247,0.0,465.1812642097634,0.4970375829980185 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/without_smell.csv new file mode 100644 index 000000000..6ab34db75 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n30/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,252.39293797684493,0.8932506652739302,0.0,64.34713125769608,0.0761317500000586 +1,256.12393460719073,0.9064551362425152,0.0,65.29834222191452,0.0772571669986064 +2,254.3431118003195,0.9001525781371904,0.0,64.84432461025317,0.0767200000009324 +3,255.64419351742927,0.9047572715913738,0.0,65.17603308315637,0.0771124580023752 +4,253.75549036444008,0.898072911238679,0.0,64.69451156886039,0.0765427500009536 +5,254.87782906894031,0.9020450104681332,0.0,64.98064982816737,0.076881291999598 +6,253.37879933322745,0.8967397538336794,0.0,64.59847485950024,0.0764291250015958 +7,260.4019380186044,0.92159553368755,0.0,66.38901159341795,0.0785475830016366 +8,256.86308778885234,0.9090710932362056,0.0,65.4867880127563,0.0774801250008749 +9,255.65027029969852,0.9047787780956692,0.0,65.17758234800283,0.0771142910016351 +10,254.2089816160017,0.8996778743782993,0.0,64.8101283579923,0.0766795410017948 +11,258.8750074470721,0.9161915324512973,0.0,65.99972335621382,0.0780870000016875 +12,256.978845069205,0.9094807729543236,0.0,65.51630012578369,0.0775150420013233 +13,256.35392418019035,0.907269098553564,0.0,65.3569776550623,0.0773265410025487 +14,253.7441622806205,0.898032819711201,0.0,64.69162349401059,0.0765393330002552 +15,251.5744948659375,0.890354091149602,0.0,64.13847064022133,0.0758848750010656 +16,255.1406989076138,0.9029753402156996,0.0,65.04766802664948,0.0769605839996074 +17,256.4461998001243,0.907595673692929,0.0,65.38050316047212,0.0773543750001408 +18,257.3632704895553,0.9108413033448676,0.0,65.6143087039173,0.0776310000001103 +19,254.9952406394763,0.90246054492933,0.0,65.01058369953878,0.0769167079997714 +20,252.76009777157893,0.8945500904224185,0.0,64.44073799524459,0.0762424999993527 +21,237.13135670060404,0.8392379906824367,0.0,60.45621821767923,0.0715282499986642 +22,258.2851747591194,0.9141040396508354,0.0,65.8493465600324,0.0779090830001223 +23,239.82482771688112,0.8487705267211679,0.0,61.14291386935821,0.0723407080004108 +24,256.43045254090396,0.9075399421424049,0.0,65.37648842470287,0.0773496250003518 +25,255.748072373382,0.9051249120567982,0.0,65.20251681298046,0.0771437919975142 +26,254.0023377675727,0.8989465355517713,0.0,64.75744487585908,0.0766172089970496 +27,254.63913044761705,0.9012002257288844,0.0,64.91979403861778,0.0768092910002451 +28,255.21888157057143,0.903252038590304,0.0,65.06760055770893,0.0769841670007736 +29,255.8472502804252,0.9054759152669394,0.0,65.22780204422952,0.0771737079994636 +0,267.8336680014501,0.8302345567310915,0.0,73.59199110864394,0.076847208001709 +1,268.5263699335977,0.8323818038859198,0.0,73.78232309644793,0.0770459590021346 +2,269.6490607097665,0.835861936484087,0.0,74.09080204994947,0.0773680829988734 +3,264.9436499191253,0.8212760381869971,0.0,72.79790802489542,0.076017999999749 +4,265.66684452640703,0.823517806963444,0.0,72.99661840923967,0.0762255000008735 +5,270.33116042960353,0.8379763187526458,0.0,74.27822089423452,0.077563791997818 +6,268.4527400055031,0.8321535648031713,0.0,73.7620919841531,0.0770248330009053 +7,255.56622771760067,0.7922077734581546,0.0,70.22129703933082,0.0733274169979267 +8,270.1612497891469,0.8374496273687132,0.0,74.23153496996274,0.0775150410008791 +9,269.6429614824467,0.835843030013784,0.0,74.08912618042181,0.0773663330000999 +10,264.04590228954186,0.8184931875063294,0.0,72.55123614056103,0.075760417003039 +11,269.6513853938519,0.8358691425723865,0.0,74.09144079761634,0.0773687500004598 +12,272.52049181791585,0.8447628388652073,0.0,74.87977803701197,0.0781919580003887 +13,248.11253105893135,0.76910270012068,0.0,68.17326333869708,0.071188792000612 +14,262.9478942153657,0.8150895666936321,0.0,72.24953919172354,0.0754453750014363 +15,270.45982633797087,0.8383751591381614,0.0,74.31357410600663,0.0776007089989434 +16,270.6197133378701,0.8388707791006512,0.0,74.35750585948173,0.0776465839990123 +17,273.3582683317009,0.8473597902408583,0.0,75.10997180694967,0.0784323340012633 +18,262.2382050508742,0.8128896622779734,0.0,72.05453966431956,0.075241750000714 +19,264.88410747971795,0.8210914676990637,0.0,72.78154769684501,0.0760009160003392 +20,271.8941599815724,0.8428213266632746,0.0,74.70768239543266,0.0780122500000288 +21,267.9280631919462,0.8305271642651774,0.0,73.61792784046531,0.0768742920008662 +22,271.9918905911214,0.8431242733760737,0.0,74.73453559205517,0.078040291002253 +23,250.36140139982777,0.7760737799126713,0.0,68.79117985145918,0.0718340410021483 +24,278.48772209587014,0.8632601428886241,0.0,76.51937906564764,0.0799040839992812 +25,274.5791288669588,0.8511442308337223,0.0,75.44542462110114,0.0787826250016223 +26,276.67595754760805,0.8576440097569995,0.0,76.02156502486044,0.0793842499988386 +27,276.84310786662104,0.8581621446578458,0.0,76.06749250247145,0.0794322090005152 +28,287.06933747063215,0.8898615544656917,0.0,78.87732818783891,0.0823663330011186 +29,279.55697315945395,0.8665746223169682,0.0,76.81317452217607,0.0802108749994658 +0,251.2126028110106,0.0,0.0,63.04752093895013,0.074755040997843 +1,251.92782659925052,0.0,0.0,63.22702262899478,0.0749678749998565 +2,258.018691325029,0.0,0.0,64.75566377612596,0.0767803749986342 +3,260.54003040902114,0.0,0.0,65.38845121160259,0.0775306670002464 +4,259.9749090575512,0.0,0.0,65.24662114479398,0.0773625000001629 +5,257.4462911868574,0.0,0.0,64.61200693211013,0.0766100420005386 +6,257.82336359820636,0.0,0.0,64.70664183690394,0.0767222499998752 +7,258.55804789756263,0.0,0.0,64.89102758518595,0.0769408749983995 +8,261.25119137299276,0.0,0.0,65.56693324341647,0.077742292000039 +9,260.1166102987462,0.0,0.0,65.28218429676703,0.0774046670012467 +10,237.00576584766733,0.0,0.0,59.48199181779978,0.0705274159990949 +11,261.5736560314424,0.0,0.0,65.64786308960325,0.0778382499993313 +12,258.20715696601536,0.0,0.0,64.80296351870814,0.0768364579998888 +13,256.72603004324225,0.0,0.0,64.43124100307053,0.0763957089984614 +14,259.4536150402221,0.0,0.0,65.1157905451141,0.0772073749976698 +15,249.0689007169992,0.0,0.0,62.50951010212626,0.0741171250010666 +16,258.93344008202195,0.0,0.0,64.98524079879539,0.0770525830012047 +17,259.39424550343654,0.0,0.0,65.10089040845003,0.0771897080012422 +18,258.2977486999475,0.0,0.0,64.82569957644597,0.07686341599765 +19,247.2062185079991,0.0,0.0,62.042027602202104,0.0735628340007679 +20,240.2339275243244,0.0,0.0,60.29217247205807,0.0714880420018744 +21,261.37664806550475,0.0,0.0,65.59841945612862,0.077779625000403 +22,256.2139739974139,0.0,0.0,64.30272888261945,0.0762433330019121 +23,259.09586538480823,0.0,0.0,65.02600512575927,0.0771009170020988 +24,259.9893288635479,0.0,0.0,65.25024012334178,0.0773667909998039 +25,257.87783357147384,0.0,0.0,64.72031231657613,0.0767384589998982 +26,259.9124613012882,0.0,0.0,65.23094845888362,0.0773439169970515 +27,259.9603447479832,0.0,0.0,65.24296589978566,0.0773581659996125 +28,257.0997419885865,0.0,0.0,64.52503252242737,0.0765069170010974 +29,275.5035325598475,0.0,0.0,69.14388268525356,0.0819834579997405 +0,381.3081659044242,0.198030727553583,9.967546620197012,73.07333846727214,0.0762857089976023 +1,393.39455524674497,0.2043077409746793,10.283489629058858,75.38955641965666,0.0787037500012957 +2,387.4458082495051,0.2012182852503272,10.12798702426647,74.24954725737075,0.077513624997664 +3,381.1904880655916,0.1979696120828831,9.964470474838452,73.05078685858389,0.0762621659996511 +4,377.4216778769259,0.1960122970017792,9.865952282422889,72.32853759365653,0.0755081659990537 +5,395.2054385543479,0.2052482152969867,10.330826836614998,75.7365914445881,0.0790660410020791 +6,382.2245416168645,0.198506643270249,9.991501044602536,73.2489513667219,0.0764690420000988 +7,388.2468053820079,0.2016342796063401,10.148925406852452,74.40304917473951,0.0776738749991636 +8,361.77536742490526,0.1878864541287485,9.456951524480342,69.3301015735082,0.072377915999823 +9,396.6091653952728,0.2059772346898327,10.367520812721578,76.00559960054827,0.0793468750016472 +10,378.62650750380527,0.1966380199967828,9.897447006504734,72.55942937881285,0.0757492079974326 +11,389.1548487153577,0.2021058679383836,10.17266201956531,74.57706526926356,0.0778555409997352 +12,398.0607921145172,0.2067311306748985,10.405466910636562,76.28378721903758,0.07963729200128 +13,399.1662730926644,0.2073052573838818,10.434364621655384,76.49563997465239,0.0798584579970338 +14,394.0549717448149,0.2046507253933082,10.300753178129844,75.51611767013073,0.0788358749996405 +15,389.67822848863034,0.2023776829335914,10.186343374324103,74.67736500249524,0.0779602500006149 +16,390.66458707880736,0.2028899439516008,10.21212717889724,74.8663893181407,0.0781575839973811 +17,382.3307530923388,0.1985618037353096,9.994277454677253,73.26930557832927,0.0764902910013916 +18,362.7631855843305,0.1883994731676606,9.48277348277225,69.51940559886677,0.0725755420025962 +19,362.5545014589565,0.1882910939802423,9.477318397005527,69.4794136787094,0.0725337920011952 +20,388.52755176123173,0.2017800840099879,10.156264228502726,74.45685099968554,0.0777300420013489 +21,389.50432339303006,0.2022873660831109,10.18179742618325,74.64403808466793,0.0779254580011183 +22,381.15924792662696,0.1979533876534027,9.963653845221272,73.04480004410561,0.0762559159993543 +23,389.95564091245274,0.2025217558620892,10.19359504505849,74.73052791311092,0.0780157500012137 +24,385.52849854792015,0.2002225388459725,10.07786778858062,73.88211683416388,0.0771300419983163 +25,377.8184326260527,0.196218349844743,9.876323608852063,72.40457109271017,0.0755875419999938 +26,373.01390441782655,0.1937231391419509,9.750731336811532,71.4838383433799,0.0746263330001966 +27,392.390082348607,0.2037860723700893,10.257232309294496,75.19706070456296,0.0785027919991989 +28,394.0256060283719,0.2046354744369628,10.299985546660462,75.51049006723927,0.078830000002199 +29,389.200049447067,0.2021293427406216,10.17384358461129,74.58572747128939,0.0778645840000535 +0,252.31231985583565,0.7304738829883385,0.0,65.27780245250334,0.0762640409993764 +1,259.7479596616547,0.7520009359858406,0.0,67.20153818855285,0.0785115409998979 +2,246.3909667069873,0.7133308682134124,0.0,63.745840313980395,0.0744742499991844 +3,254.08107578790057,0.7355946397333613,0.0,65.7354118961722,0.0767986660030146 +4,254.8141653450625,0.7377170203436471,0.0,65.925075545255,0.0770202499988954 +5,254.5554216260718,0.7369679268026819,0.0,65.85813382245784,0.0769420420001552 +6,252.79686552303272,0.731876699764011,0.0,65.40316326072936,0.076410500001657 +7,258.567964159421,0.748584710028591,0.0,66.89625181437317,0.0781548750019283 +8,255.1343891608784,0.7386441060059645,0.0,66.00792329126028,0.0771170410007471 +9,254.33927029643831,0.7363421432453802,0.0,65.80221152820079,0.0768767079971439 +10,254.15483004207024,0.7358081669858593,0.0,65.75449346791815,0.0768209589987236 +11,259.0984106219026,0.7501204150127461,0.0,67.03348799613903,0.0783152080002764 +12,256.3335502555911,0.7421158186107387,0.0,66.31816815403238,0.0774794999997539 +13,252.06391489634044,0.7297547213737978,0.0,65.21353555549484,0.0761889579989656 +14,254.008843365794,0.7353855183639252,0.0,65.71672405015805,0.076776832996984 +15,254.24760102862632,0.7360767499183812,0.0,65.77849501543352,0.0768490000009478 +16,257.57364956076924,0.7457060521564578,0.0,66.63900447907255,0.0778543330015963 +17,255.57027480120905,0.7399060462727463,0.0,66.1206948623736,0.0772487920003186 +18,253.78001424265335,0.7347230311012467,0.0,65.6575217793205,0.0767076669981179 +19,258.18832470565485,0.7474856090965135,0.0,66.79803215835207,0.0780401250012801 +20,249.2706585045113,0.7216679151334713,0.0,64.4908691432911,0.0753446670023549 +21,220.4004131405646,0.6380851545061746,0.0,57.02160971632452,0.0666183329994964 +22,256.3393399599457,0.7421325804867489,0.0,66.31966605622493,0.0774812499985273 +23,253.27327580804305,0.7332559636500786,0.0,65.52641929709338,0.0765544999994745 +24,252.95552999281617,0.7323360520913219,0.0,65.44421265506995,0.0764584579992515 +25,254.46650493398545,0.7367105025066034,0.0,65.83512945127192,0.0769151659987983 +26,253.92075709108175,0.7351304982239504,0.0,65.69393452310392,0.0767502079979749 +27,253.827711517353,0.7348611203292231,0.0,65.66986193487512,0.0767220839989022 +28,252.709053835493,0.7316224745862411,0.0,65.38044477438864,0.0763839579994964 +29,254.07694357231205,0.7355826764825457,0.0,65.73434281657659,0.0767974169975787 +0,254.55862726842625,0.0,0.0,64.64502264360112,0.0770675419989856 +1,249.45099505649355,0.0,0.0,63.34794226750606,0.075521208000282 +2,260.34668630262985,0.0,0.0,66.11489703498854,0.0788198749978619 +3,255.06977562551387,0.0,0.0,64.77482848625807,0.0772222919986234 +4,254.45815813069177,0.0,0.0,64.61950856162512,0.0770371250000607 +5,255.8519102420228,0.0,0.0,64.97345113966061,0.0774590830005763 +6,248.69707187526592,0.0,0.0,63.15648389249447,0.0752929580012278 +7,255.1022546097663,0.0,0.0,64.78307650635061,0.0772321250005916 +8,252.78860060747465,0.0,0.0,64.1955253517402,0.0765316670003812 +9,254.73506346907223,0.0,0.0,64.68982851919962,0.0771209580016147 +10,253.83333170049056,0.0,0.0,64.46083423515617,0.0768479590005881 +11,253.7371268072013,0.0,0.0,64.43640305569922,0.0768188330002885 +12,240.22252605510252,0.0,0.0,61.00437766723181,0.0727272919975803 +13,258.0346838423428,0.0,0.0,65.52776528855703,0.0781199170014588 +14,254.20038081866608,0.0,0.0,64.5540461557671,0.0769590830022934 +15,254.6882723304369,0.0,0.0,64.67794593541505,0.0771067919995402 +16,255.76066324322383,0.0,0.0,64.95027901476814,0.0774314580012287 +17,254.25777145871655,0.0,0.0,64.56862047707533,0.07697645799999 +18,256.4170074611921,0.0,0.0,65.11695726601363,0.0776301660007448 +19,253.6951515285212,0.0,0.0,64.4257434568875,0.0768061249982565 +20,253.3447531357101,0.0,0.0,64.3367599787763,0.076700041998265 +21,255.2514405716164,0.0,0.0,64.82096219887414,0.0772772910022467 +22,236.06342334742243,0.0,0.0,59.94817583427829,0.0714681249992281 +23,256.95678343157175,0.0,0.0,65.25403307523722,0.0777935830010392 +24,255.03110341882655,0.0,0.0,64.76500770075256,0.0772105840005679 +25,255.734925804407,0.0,0.0,64.94374300641141,0.0774236659999587 +26,256.5582165256291,0.0,0.0,65.15281722984973,0.0776729169992904 +27,256.4007696213289,0.0,0.0,65.11283367555865,0.0776252499999827 +28,240.76863068541655,0.0,0.0,61.143060636146465,0.0728926249976211 +29,253.9838950248202,0.0,0.0,64.49906970811983,0.0768935419982881 +0,263.55825252389224,0.5071679009439877,0.0,69.14389049536365,0.0786443329998292 +1,242.77578502676263,0.4671759814498319,0.0,63.69165880432708,0.0724429590009094 +2,256.0178990748809,0.4926579199644919,0.0,67.16569642182573,0.0763943330020993 +3,258.51333715491046,0.4974599175527462,0.0,67.82036875969108,0.0771389580004324 +4,286.4183722660052,0.551157868375892,0.0,75.14118938857993,0.0854656670016993 +5,263.45715816656144,0.506973364015192,0.0,69.1173686274045,0.0786141669996141 +6,243.74387927163863,0.4690388953270789,0.0,63.94563606292509,0.0727318329991248 +7,248.7505365772712,0.4786732583270132,0.0,65.25912088524947,0.074225792002835 +8,260.2407784989066,0.5007840509921231,0.0,68.2735589519261,0.0776544169966655 +9,262.67631267915243,0.5054707748797032,0.0,68.91251564193287,0.0783811670007708 +10,244.923944587811,0.471309707353068,0.0,64.2552234358016,0.0730839579991879 +11,262.4017868357143,0.5049425019288922,0.0,68.84049442963897,0.0782992499989632 +12,267.9118314276954,0.5155455383470726,0.0,70.28604172798424,0.0799434170003223 +13,266.25448854631935,0.5123562961122246,0.0,69.85124170329995,0.0794488749997981 +14,267.1985709569993,0.5141730037658742,0.0,70.09891951341419,0.0797305839987529 +15,260.67434883228304,0.5016183749177994,0.0,68.38730511379332,0.0777837919995363 +16,259.9696039369978,0.500262226947398,0.0,68.20241694049525,0.0775734999988344 +17,261.810006495265,0.5038037328324535,0.0,68.68524224282449,0.0781226660001266 +18,261.67330492255934,0.5035406765668236,0.0,68.64937890527695,0.078081875002681 +19,265.1980012473426,0.5103232865567849,0.0,69.57407473390835,0.0791336250003951 +20,236.10815542571723,0.4543453920956714,0.0,61.9424217890432,0.070453374999488 +21,257.9793695450014,0.4964323980981425,0.0,67.6802836073801,0.0769796250024228 +22,262.2574041582713,0.5046646648331071,0.0,68.80261597224694,0.0782561670021095 +23,265.6005723454433,0.5110979583299102,0.0,69.67968831897775,0.0792537500019534 +24,263.17160330180525,0.5064238678033456,0.0,69.04245397718945,0.0785289589985041 +25,261.59706355122785,0.5033939644988349,0.0,68.62937716000782,0.0780591249967983 +26,259.7555416842662,0.4998503047163557,0.0,68.14625820966316,0.0775096249999478 +27,262.082300390252,0.5043277108215241,0.0,68.75667790866778,0.0782039170007919 +28,260.2171788831041,0.5007386380046904,0.0,68.26736764797279,0.0776473750011064 +29,262.0626116859424,0.5042898236419674,0.0,68.75151262318822,0.0781980419997125 +0,255.65537390140065,0.0,0.0,64.03179678521767,0.0776107909987331 +1,252.3971302607853,0.0,0.0,63.2157325989312,0.0766216669981076 +2,254.03647687991125,0.0,0.0,63.626325609258025,0.0771193330001551 +3,252.92870751153595,0.0,0.0,63.34887216872111,0.0767830410004535 +4,256.21770129194005,0.0,0.0,64.172638077338,0.0777815000001282 +5,261.83806978347053,0.0,0.0,65.58032330458661,0.0794877080006699 +6,257.89026530262356,0.0,0.0,64.59155076126875,0.0782892499992158 +7,254.00381288625172,0.0,0.0,63.61814454045324,0.0771094170013384 +8,255.43041857262065,0.0,0.0,63.97545416398356,0.0775424999992537 +9,254.5701162116187,0.0,0.0,63.75998165068225,0.0772813330004282 +10,255.04693611909337,0.0,0.0,63.87940662091714,0.0774260839971248 +11,250.66526969948472,0.0,0.0,62.78196841932783,0.0760959159997582 +12,253.81728616949164,0.0,0.0,63.57142680227183,0.0770527919994492 +13,252.96713941908897,0.0,0.0,63.35849787717756,0.0767947079984878 +14,239.62560934353888,0.0,0.0,60.01695989358342,0.072744542001601 +15,251.76288345726073,0.0,0.0,63.05687827165771,0.0764291250015958 +16,257.5634672163916,0.0,0.0,64.50970046284525,0.0781900420006422 +17,255.07685287249387,0.0,0.0,63.88689961214584,0.0774351660002139 +18,253.78612756335775,0.0,0.0,63.56362277489847,0.0770433329998923 +19,261.432764118169,0.0,0.0,65.47880988986569,0.0793646669990266 +20,253.1580604236211,0.0,0.0,63.40631621472186,0.0768526669999118 +21,255.3783986189558,0.0,0.0,63.96242517479779,0.0775267079989134 +22,255.35575189540887,0.0,0.0,63.95675304525136,0.0775198330011335 +23,249.2891719762051,0.0,0.0,62.437309089742904,0.0756781659983971 +24,253.92571378551105,0.0,0.0,63.59858373220023,0.0770857080024143 +25,232.28381259426416,0.0,0.0,58.17812337583731,0.0705157499978668 +26,253.67358237649097,0.0,0.0,63.53543455250894,0.077009167001961 +27,253.70103185415508,0.0,0.0,63.542309586461194,0.0770174999997834 +28,238.01330045218256,0.0,0.0,59.613138789763624,0.0722550840000622 +29,254.50876744267657,0.0,0.0,63.74461615358363,0.0772627089972957 +0,251.53573576786724,0.0,0.0,62.72152708777785,0.0744095830013975 +1,261.23641907506607,0.0,0.0,65.1404345601695,0.0772792499992647 +2,259.69001833656097,0.0,0.0,64.75483282643327,0.076821792001283 +3,261.4181167235588,0.0,0.0,65.18574165717872,0.0773330000010901 +4,260.86401158116945,0.0,0.0,65.04757313574873,0.0771690839974326 +5,249.72157861361,0.0,0.0,62.269159130020775,0.073872917000699 +6,260.1970815239249,0.0,0.0,64.88127123227001,0.0769717920011316 +7,259.727625526503,0.0,0.0,64.764210342417,0.0768329170023207 +8,261.2393769415889,0.0,0.0,65.14117211702067,0.0772801249986514 +9,267.88415944731423,0.0,0.0,66.79807746549119,0.0792457919997104 +10,260.33046618014515,0.0,0.0,64.91453127503361,0.0770112499994866 +11,263.3900313748447,0.0,0.0,65.6774471313049,0.0779163340012019 +12,262.63957446676875,0.0,0.0,65.49031744516148,0.0776943329983623 +13,258.95505728780233,0.0,0.0,64.57156710004472,0.0766043750008975 +14,259.6273385675486,0.0,0.0,64.73920335407234,0.0768032500018307 +15,261.7203838407915,0.0,0.0,65.26111327435025,0.0774224169981607 +16,262.19885205972054,0.0,0.0,65.38042140073868,0.0775639580024289 +17,259.2561953593514,0.0,0.0,64.64665718477629,0.0766934580024099 +18,260.1817276561712,0.0,0.0,64.8774426787276,0.0769672500027809 +19,238.90592081951175,0.0,0.0,59.57222793162153,0.0706734170016716 +20,244.5389668999695,0.0,0.0,60.97685241268609,0.0723397910005587 +21,257.69162484123956,0.0,0.0,64.25652473765929,0.07623062499988 +22,259.8796025059062,0.0,0.0,64.80210646163543,0.0768778750025376 +23,259.9752413748415,0.0,0.0,64.82595442856649,0.0769061669998336 +24,260.9768297690729,0.0,0.0,65.07570484040285,0.0772024580001016 +25,261.8691223893613,0.0,0.0,65.29820187678934,0.0774664170021424 +26,259.81227464687464,0.0,0.0,64.78531796786092,0.0768579579998913 +27,259.9996074518044,0.0,0.0,64.83203021557779,0.0769133750000037 +28,259.53803797523506,0.0,0.0,64.71693586391773,0.0767768330006219 +29,238.99902099587555,0.0,0.0,59.5954428645449,0.0707009580000885 +0,237.2903027127171,0.3735384536996727,0.0,63.37702431104448,0.0720150829984049 +1,254.30572604705935,0.4003238505266577,0.0,67.92161330602293,0.0771790830003738 +2,251.6592873263176,0.3961578706435539,0.0,67.21478538585632,0.076375916996767 +3,245.3526412778336,0.3862300531725047,0.0,65.53036568826829,0.0744619170000078 +4,254.5521663096031,0.4007117926951643,0.0,67.98743416061288,0.0772538749988598 +5,254.06793847194996,0.3999495292750097,0.0,67.85810346699333,0.0771069170004921 +6,236.36440535324107,0.3720809214533507,0.0,63.129729673251845,0.0717340829978638 +7,253.92130730041657,0.3997187049199788,0.0,67.81894026808975,0.077062415999535 +8,255.6341646934731,0.4024150565816184,0.0,68.27642126668127,0.0775822499999776 +9,255.055066958622,0.4015034505448595,0.0,68.12175210911116,0.0774064999968686 +10,242.8680665576427,0.3823188769108897,0.0,64.86676944921429,0.073707874998945 +11,261.62572557483554,0.4118468722154043,0.0,69.87668598588026,0.0794006249998346 +12,242.49408311058815,0.3817301583795169,0.0,64.76688353839138,0.073594375000539 +13,249.44078454580705,0.3926655404105581,0.0,66.62225335632469,0.0757026249993941 +14,259.2137794436717,0.4080500266724466,0.0,69.23248785875845,0.078668625003047 +15,240.73660801776333,0.3789635702758966,0.0,64.29748575681046,0.0730610000027809 +16,263.8527393664101,0.4153526003406692,0.0,70.47149119113354,0.0800764999985403 +17,264.2661278201339,0.4160033495791167,0.0,70.5819016452568,0.0802019589973497 +18,258.6110696796681,0.4071012509715358,0.0,69.07151224817058,0.0784857090002333 +19,255.1599602642359,0.4016685718445272,0.0,68.14976768962146,0.0774383339994528 +20,258.87055158834966,0.4075097230828015,0.0,69.14081634971532,0.0785644589996081 +21,263.35327211878274,0.4145663472944239,0.0,70.33809025762058,0.0799249170013354 +22,258.62644418505596,0.4071254532625832,0.0,69.07561857021828,0.0784903749990917 +23,254.37094085870467,0.400426510600086,0.0,67.93903129848127,0.0771988750020682 +24,257.3998773220497,0.4051946120772132,0.0,68.74801918243385,0.07811812500222 +25,257.673913274221,0.4056259949220322,0.0,68.82121047177147,0.0782012919989938 +26,262.32001349902885,0.4129398087351891,0.0,70.06212088207042,0.0796113340002193 +27,261.33576483421854,0.4113904208330871,0.0,69.7992414013471,0.0793126249991473 +28,258.8940285340756,0.4075466801008667,0.0,69.14708672378039,0.0785715840029297 +29,253.68324295352303,0.3993439479787848,0.0,67.75535650706716,0.0769901660023606 +0,259.3603261187444,0.0,0.0,65.0750093613154,0.0772384160009096 +1,259.0137620395562,0.0,0.0,64.98805442477995,0.0771352080009819 +2,258.48978904408557,0.0,0.0,64.85658656269176,0.0769791670027189 +3,242.06494915581175,0.0,0.0,60.73549901826075,0.0720877919993654 +4,235.64265081788608,0.0,0.0,59.124107134560184,0.0701752089989895 +5,264.44449718901984,0.0,0.0,66.35065735630297,0.0787525000014284 +6,258.4949635864557,0.0,0.0,64.85788488536977,0.0769807079996098 +7,260.75512162880096,0.0,0.0,65.42497164055966,0.0776537910023762 +8,258.54729338873193,0.0,0.0,64.87101473612205,0.0769962919985118 +9,258.4187119612678,0.0,0.0,64.83875291057171,0.0769579999978304 +10,256.03319274883137,0.0,0.0,64.24021231107454,0.076247583998338 +11,259.9925953597714,0.0,0.0,65.23364937921801,0.0774267080014396 +12,260.68391024286916,0.0,0.0,65.40710429100974,0.0776325840015488 +13,266.00341096992025,0.0,0.0,66.74179786111225,0.0792167500003415 +14,262.4791342007781,0.0,0.0,65.85753638914451,0.0781672080011048 +15,259.34521883861703,0.0,0.0,65.071218857153,0.0772339169998304 +16,259.2768012481966,0.0,0.0,65.0540524870928,0.0772135420011181 +17,255.98548009557592,0.0,0.0,64.22824092977766,0.07623337500263 +18,249.63999413559765,0.0,0.0,62.63612171699325,0.0743436669981747 +19,256.52512449555974,0.0,0.0,64.36364083810693,0.0763940830001956 +20,257.38978857591655,0.0,0.0,64.58059006841385,0.0766515830000571 +21,260.0975303138043,0.0,0.0,65.25997816750345,0.077457957999286 +22,258.5177705738045,0.0,0.0,64.86360729071002,0.0769875000005413 +23,248.91608058597623,0.0,0.0,62.45448761079295,0.0741280830006871 +24,261.7960764426832,0.0,0.0,65.68615323788339,0.0779637910018209 +25,259.62770375529885,0.0,0.0,65.14209596034219,0.0773180420001153 +26,260.6953808942086,0.0,0.0,65.40998234392734,0.077636000001803 +27,262.1135407849634,0.0,0.0,65.76580688173448,0.0780583329978981 +28,258.4513106522235,0.0,0.0,64.84693211111042,0.0769677080024848 +29,259.19789015504335,0.0,0.0,65.03425323636505,0.0771900420004385 +0,236.6567212800667,0.8267216295202227,0.0,59.860769841186496,0.0703788339997117 +1,261.95098582591453,0.915083014270888,0.0,66.25878862591058,0.0779010410005867 +2,245.40833969424455,0.8572939800419981,0.0,62.07443448081875,0.072981459001312 +3,257.4251923511664,0.8992728934508336,0.0,65.11401876653258,0.0765551250005955 +4,258.9009587470573,0.9044282424855152,0.0,65.48730422441415,0.0769939999991038 +5,259.99030386171,0.908233691844504,0.0,65.7628469465187,0.0773179580028227 +6,260.47662499009004,0.9099325753308878,0.0,65.88585869525502,0.0774625839985674 +7,260.7405866945732,0.9108546824626054,0.0,65.95262608201458,0.0775410830028704 +8,259.18832085282156,0.9054320950997778,0.0,65.55999058963206,0.0770794579984794 +9,258.61457516789665,0.9034278081942309,0.0,65.41486537110077,0.0769088330016529 +10,237.7903385396979,0.8306817363917509,0.0,60.14751091281011,0.0707159580015286 +11,262.3885490862918,0.9166115701034906,0.0,66.36946739082681,0.0780311669986986 +12,260.6072019459684,0.9103887246139408,0.0,65.91888728223164,0.077501415998995 +13,259.0887034682285,0.9050840980258986,0.0,65.5347930237271,0.0770498329984548 +14,258.2526773854573,0.9021635773589528,0.0,65.3233256939538,0.0768012089974945 +15,260.0306551965286,0.9083746526466904,0.0,65.77305355275111,0.0773299579996091 +16,259.6540426444354,0.9070590181653196,0.0,65.67779187085925,0.0772179580017109 +17,259.0126243643184,0.9048183280937504,0.0,65.5155493119734,0.0770272079971619 +18,260.3005048322299,0.9093173283051116,0.0,65.84131025320345,0.0774102080031298 +19,264.0587854421345,0.9224462682025656,0.0,66.79194275318578,0.0785278750008728 +20,263.0532231845429,0.9189335005799792,0.0,66.5375923568096,0.0782288330010487 +21,260.935480323882,0.9115355115467478,0.0,66.00192315088489,0.0775990420006564 +22,258.78481075864437,0.9040224984452576,0.0,65.45792535038811,0.0769594589983171 +23,260.7276977902371,0.9108096571789884,0.0,65.94936591796008,0.0775372499992954 +24,260.4373934009165,0.909795526177351,0.0,65.87593532136005,0.077450917000533 +25,252.4247090150945,0.8818045210774421,0.0,63.84917921134812,0.0750680420023854 +26,258.32216912998865,0.9024063354262768,0.0,65.34090317623597,0.0768218749981315 +27,259.8338045262455,0.9076869869593258,0.0,65.723261463166,0.0772714170016115 +28,262.2059861521998,0.9159738162905156,0.0,66.3232892906651,0.0779768749998766 +29,251.73803334741703,0.8794057317091811,0.0,63.67548909227589,0.0748638330005633 +0,247.4291262480247,0.5485517926729812,0.0,65.66487635820687,0.0750980420016276 +1,246.76674350378295,0.5470832863281573,0.0,65.48908751045883,0.0748969999986002 +2,248.32598301736832,0.550540129276899,0.0,65.9028919457935,0.0753702500005601 +3,263.9197487059644,0.5851115972876102,0.0,70.04130002825217,0.0801031660012085 +4,259.47431321652624,0.5752560412990279,0.0,68.8615320025601,0.0787539170014497 +5,264.5504227828574,0.5865098053349734,0.0,70.20867375627476,0.0802945840005122 +6,262.1370165497233,0.5811592698676703,0.0,69.56818318710054,0.0795620829994732 +7,257.27465705576145,0.5703793909686938,0.0,68.2777682718407,0.07808629200008 +8,259.8396184056148,0.5760659249994068,0.0,68.95847984551723,0.0788647920016956 +9,262.0972061062262,0.5810710098859997,0.0,69.5576179481182,0.0795499999985622 +10,259.832066845071,0.5760491831463495,0.0,68.95647574722477,0.0788625000022875 +11,242.8499767040768,0.5383997918582819,0.0,64.44962214303551,0.0737082090017793 +12,256.09651116468206,0.5677674347678137,0.0,67.96510175014711,0.0777287089986202 +13,266.8518009884454,0.591611974022375,0.0,70.81943336091372,0.0809930830000666 +14,257.7850695404323,0.5715109783760236,0.0,68.41322594089459,0.0782412090011348 +15,257.7305678105017,0.5713901477280294,0.0,68.39876180156116,0.0782246669987216 +16,251.87016982934327,0.558397611776061,0.0,66.84347882142848,0.0764459579986578 +17,258.93685743831594,0.5740644987547432,0.0,68.71889735093544,0.0785907919998862 +18,262.9777275227593,0.5830231309190022,0.0,69.79129831883348,0.0798172499999054 +19,261.8591605700738,0.580543261566413,0.0,69.49444336986178,0.0794777500013879 +20,256.0645224631932,0.5676965156330575,0.0,67.9566123125454,0.0777190000007976 +21,245.7858673708751,0.5449086783131034,0.0,65.22877413924502,0.0745992910015047 +22,260.18336935626746,0.5768280228294923,0.0,69.04970743870686,0.0789691250029136 +23,256.8891715371221,0.5695247673619034,0.0,68.1754647989102,0.077969292000489 +24,251.71874980934945,0.5580619127228665,0.0,66.80329367006078,0.0764000000017404 +25,232.25845891939952,0.51491833615412,0.0,61.6387537690373,0.0704935419998946 +26,254.94993884422612,0.5652254773541789,0.0,67.66081449504436,0.0773807089972251 +27,256.37725005882703,0.56838983450705,0.0,68.03960666010865,0.0778139169997302 +28,252.35079120270456,0.5594631521186721,0.0,66.9710302683234,0.0765918329998385 +29,252.8171364324841,0.560497042169044,0.0,67.09479298905909,0.0767333750009129 +0,252.2663452706632,0.8496016809633735,0.0,62.64178547718412,0.0754009170013887 +1,258.2532754974208,0.8697649174783602,0.0,64.12843641561602,0.0771903749991906 +2,257.85472293488994,0.8684226420086966,0.0,64.02946941271813,0.0770712499979708 +3,259.8511090952857,0.8751462223416359,0.0,64.52520416265061,0.0776679580012569 +4,260.8938430246065,0.8786580205491928,0.0,64.78413174587703,0.0779796249989885 +5,258.9257545221395,0.8720297432092781,0.0,64.29542375893024,0.0773913749981147 +6,259.5226783627458,0.8740401084755688,0.0,64.44364953644867,0.0775697919998492 +7,255.5852467475486,0.8607793284243865,0.0,63.46592202267496,0.0763929170025221 +8,258.6551737278919,0.8711184607416048,0.0,64.22823420160218,0.077310500000749 +9,261.4922991796202,0.8806735464598607,0.0,64.93273802167512,0.078158500000427 +10,235.2985150178381,0.7924561386611128,0.0,58.42840068512897,0.0703293330006999 +11,258.0767915683478,0.8691705415514305,0.0,64.08461262131124,0.0771376249977038 +12,258.95056933971824,0.8721133164291028,0.0,64.301585676715,0.0773987920001673 +13,257.41156261060763,0.8669301331445336,0.0,63.91942558607965,0.0769387920008739 +14,259.1549327030131,0.8728015868236194,0.0,64.35233238234147,0.0774598749994766 +15,258.39365298265983,0.8702376913923777,0.0,64.16329439996876,0.0772323329983919 +16,257.04772134991333,0.8657047610230241,0.0,63.82907795696681,0.0768300420022569 +17,259.7565939942328,0.8748279072344628,0.0,64.50173454494097,0.0776397079971502 +18,258.54379312689963,0.8707433447279003,0.0,64.20057660936095,0.0772772089985665 +19,258.07497822698645,0.8691644344432186,0.0,64.08416233952501,0.0771370830007072 +20,259.9279222489856,0.8754049194914023,0.0,64.5442781025007,0.0776909169981081 +21,258.4289230155945,0.8703564764773907,0.0,64.17205251565993,0.0772428750024118 +22,258.59314172293153,0.8709095446627229,0.0,64.21283065840153,0.0772919590017409 +23,259.8762015804942,0.8752307307115088,0.0,64.53143502976779,0.0776754579965199 +24,257.46523044571757,0.8671108797394632,0.0,63.932752171559656,0.0769548329990357 +25,257.77860901967944,0.8681662998072105,0.0,64.01056910501626,0.0770484999993641 +26,257.0903785857219,0.8658484252887008,0.0,63.83967043378613,0.0768427919974783 +27,256.9428882180858,0.8653516960712734,0.0,63.80304620648581,0.076798707999842 +28,260.22944713061275,0.8764204177974004,0.0,64.61915157375448,0.0777810409999801 +29,249.65769874914773,0.8408160838701866,0.0,61.994016645351834,0.0746212080011901 +0,253.53427688728465,0.0,0.0,64.57760820245201,0.076206000001548 +1,258.26881641088414,0.0,0.0,65.78354075771735,0.0776290829999197 +2,255.5581794818601,0.0,0.0,65.09311557446122,0.0768143340028473 +3,258.37666645619265,0.0,0.0,65.81101119704435,0.0776614999995217 +4,251.4109813828545,0.0,0.0,64.03678450450256,0.0755677910019585 +5,255.9773730491207,0.0,0.0,65.19988819029801,0.0769403330014029 +6,257.9566378142825,0.0,0.0,65.70402587969754,0.0775352499986183 +7,257.22664634671185,0.0,0.0,65.51809006240816,0.0773158330011938 +8,253.8991312230035,0.0,0.0,64.67054009565513,0.0763156659995729 +9,251.0245017908568,0.0,0.0,63.938344451438795,0.0754516249980952 +10,254.54456469819945,0.0,0.0,64.83493818254766,0.0765096670002094 +11,255.85774223615337,0.0,0.0,65.16941707663403,0.0769043750005948 +12,255.93204323154933,0.0,0.0,65.188342251678,0.0769267080031568 +13,259.880176018943,0.0,0.0,66.19396948049216,0.0781134169992583 +14,255.01172304341273,0.0,0.0,64.95392788664633,0.0766500829995493 +15,257.21028768275835,0.0,0.0,65.51392335404637,0.0773109159999876 +16,258.4208884003968,0.0,0.0,65.8222749497086,0.0776747919990157 +17,234.06796061376548,0.0,0.0,59.61935103545283,0.0703549169993493 +18,254.56563433542095,0.0,0.0,64.84030482091373,0.0765160000009927 +19,250.4593345484143,0.0,0.0,63.794390942669104,0.0752817499997036 +20,253.8269129094721,0.0,0.0,64.65214539962614,0.0762939589985762 +21,253.50017554675208,0.0,0.0,64.56892226445922,0.076195749999897 +22,255.66976902037644,0.0,0.0,65.12153849851818,0.0768478749996575 +23,256.791646381911,0.0,0.0,65.40729140575363,0.077185082998767 +24,258.8575518455188,0.0,0.0,65.93349731073064,0.0778060420016117 +25,254.13770416501097,0.0,0.0,64.73130690859188,0.0763873750001948 +26,255.17931863433267,0.0,0.0,64.99661608857218,0.0767004580011416 +27,255.7738762440398,0.0,0.0,65.14805560533038,0.0768791670016071 +28,256.42928393218494,0.0,0.0,65.31499421977551,0.0770761659987329 +29,254.6501956683362,0.0,0.0,64.86184340217827,0.076541417001863 +0,253.41749798459173,0.0,0.0,65.13082273783394,0.0767327080029645 +1,247.59900572459188,0.0,0.0,63.63541223539677,0.0749709170013375 +2,252.59749193776693,0.0,0.0,64.92007301098222,0.0764844170007563 +3,235.7022122120366,0.0,0.0,60.57781772997725,0.071368666998751 +4,255.00742611955113,0.0,0.0,65.53945011497832,0.0772141250017739 +5,254.3331440184321,0.0,0.0,65.36615289457113,0.0770099579967791 +6,239.8215196985124,0.0,0.0,61.63652081022233,0.0726159590012684 +7,252.36520681402695,0.0,0.0,64.86037341904694,0.0764140829996904 +8,252.1722820871298,0.0,0.0,64.81078984139654,0.0763556669990066 +9,253.17365705842755,0.0,0.0,65.06815318950152,0.0766588750011578 +10,254.7703291078643,0.0,0.0,65.47851381988168,0.0771423340011097 +11,257.12521884407045,0.0,0.0,66.08374395274846,0.0778553750024002 +12,257.5769881962842,0.0,0.0,66.19985317895198,0.0779921670000476 +13,230.86734014931577,0.0,0.0,59.33520742176434,0.0699047080015589 +14,252.49634648493628,0.0,0.0,64.89407762151053,0.0764537909999489 +15,256.16553921217854,0.0,0.0,65.83709672243897,0.0775647920017945 +16,252.85330477462892,0.0,0.0,64.98581945968536,0.0765618749974237 +17,248.76468507208529,0.0,0.0,63.93500344576916,0.075323875000322 +18,253.6318929035833,0.0,0.0,65.1859243688412,0.0767976249990169 +19,253.37786677434875,0.0,0.0,65.12063712180604,0.07672070800254 +20,245.8200036875109,0.0,0.0,63.17819098094965,0.0744322499995178 +21,253.09219510207856,0.0,0.0,65.04721665480663,0.0766342089991667 +22,253.6650576208844,0.0,0.0,65.19444803173295,0.0768076669992297 +23,237.6873493714192,0.0,0.0,61.08801776535877,0.0719697499989706 +24,252.67647692470263,0.0,0.0,64.94037293985049,0.0765083329970366 +25,252.3727763729606,0.0,0.0,64.86231887113699,0.0764163749990984 +26,255.234202497438,0.0,0.0,65.59773390432493,0.0772827910004707 +27,252.58785824967035,0.0,0.0,64.91759705712458,0.0764815000002272 +28,254.14255755018047,0.0,0.0,65.31717027269754,0.0769522500013408 +29,253.90256744879193,0.0,0.0,65.25549042471276,0.0768795829972077 +0,249.7923844146721,0.0,0.0,64.11304733285456,0.0759544579996145 +1,251.5237567706763,0.0,0.0,64.55743060767458,0.0764809169995714 +2,236.44843625054185,0.0,0.0,60.68811833728591,0.0718969589979678 +3,254.81671512475305,0.0,0.0,65.40261888398953,0.0774822080020385 +4,254.0024857747179,0.0,0.0,65.19363443083687,0.0772346249977999 +5,250.58400715096883,0.0,0.0,64.3162294518006,0.0761951670028793 +6,253.13741623502708,0.0,0.0,64.97160106310882,0.0769715829992492 +7,247.96660298643684,0.0,0.0,63.64443252138948,0.0753992919999291 +8,251.19145867599536,0.0,0.0,64.47214120414525,0.0763798750012938 +9,256.62427379017913,0.0,0.0,65.86655654383826,0.0780318329998408 +10,252.7525020227826,0.0,0.0,64.87280692586343,0.0768545419996371 +11,252.65411359951872,0.0,0.0,64.84755402773163,0.0768246249972435 +12,234.1139962204404,0.0,0.0,60.08894849271152,0.071187124998687 +13,257.1501948549435,0.0,0.0,66.00154225286055,0.0781917500025883 +14,254.9505953181782,0.0,0.0,65.43698128938517,0.0775229169994418 +15,251.44934635326925,0.0,0.0,64.53833203257409,0.0764582909978344 +16,252.82567588535807,0.0,0.0,64.89158812019735,0.0768767920017126 +17,251.21776837388165,0.0,0.0,64.4788939917046,0.0763878750003641 +18,251.416600645554,0.0,0.0,64.52992734436225,0.0764483339989965 +19,251.8898990124081,0.0,0.0,64.65140663072154,0.0765922499995213 +20,252.05912958228944,0.0,0.0,64.69484225251759,0.0766437079983006 +21,255.11256441560653,0.0,0.0,65.47855314288348,0.0775721669997437 +22,244.42520870193505,0.0,0.0,62.73547935246641,0.0743224589969031 +23,254.30422516983452,0.0,0.0,65.27108047534551,0.0773263750015758 +24,253.6767651074996,0.0,0.0,65.11003322496508,0.0771355830001994 +25,252.46364123963497,0.0,0.0,64.7986663746775,0.0767667079999228 +26,251.47880993956423,0.0,0.0,64.5458943139749,0.07646725000086 +27,255.64108684697413,0.0,0.0,65.61420653255007,0.0777328750009473 +28,250.51795663338612,0.0,0.0,64.29927657323282,0.0761750829988159 +29,252.8123829029725,0.0,0.0,64.88817627235069,0.0768727499998931 +0,248.76064253267896,0.8926817315765991,0.0,64.53758296435265,0.0759556669981975 +1,250.9902886146916,0.9006828538804723,0.0,65.11603447313637,0.0766364589981094 +2,251.08826581851417,0.901034446717156,0.0,65.14145333303291,0.0766663750000589 +3,251.6577197956367,0.9030779418503708,0.0,65.28919046266385,0.0768402499998046 +4,254.8982707317584,0.9147067131522432,0.0,66.12990755826587,0.0778297079996264 +5,256.4147688442029,0.9201486920246515,0.0,66.5233424752637,0.0782927500004007 +6,254.06926692002276,0.9117318190909908,0.0,65.91483373576348,0.0775765830003365 +7,250.292012773914,0.8981770793322273,0.0,64.93487625394472,0.0764232500005164 +8,254.281056315875,0.9124918288847188,0.0,65.96977962899894,0.0776412500017613 +9,254.6710622884788,0.913891371848608,0.0,66.07096140179567,0.0777603330025158 +10,253.76932556597777,0.9106554745190588,0.0,65.83701800967418,0.0774850000016158 +11,248.00041206850264,0.8899536318247702,0.0,64.34035145636857,0.0757235410019347 +12,251.66945440127165,0.9031200516792044,0.0,65.29223484732618,0.076843833001476 +13,251.2764451718155,0.9017097314778068,0.0,65.1902739201733,0.0767238329972315 +14,233.39411648723728,0.8375386955283635,0.0,60.55094569153206,0.0712637079996056 +15,252.5181119450543,0.906165473487037,0.0,65.51240756469245,0.0771029589996032 +16,250.18161649107023,0.8977809204225009,0.0,64.90623543202673,0.076389542002289 +17,253.47757189478065,0.9096085115841412,0.0,65.76132646712013,0.0773959170001035 +18,248.6101232868392,0.8921415907422459,0.0,64.49853278255051,0.0759097080008359 +19,251.7260870200961,0.903323278780249,0.0,65.30692741403874,0.0768611249986861 +20,251.30523965227655,0.9018130609531456,0.0,65.19774425853853,0.07673262499884 +21,252.35899561673511,0.905594481878236,0.0,65.47112698615987,0.0770543750004435 +22,252.4523353012843,0.9059294328993456,0.0,65.49534270442676,0.0770828749991778 +23,246.73773568682623,0.8854224964838262,0.0,64.01276715320107,0.0753380000023753 +24,236.8015620587239,0.8497663710241288,0.0,61.43496134218886,0.0723041249984817 +25,253.50431617204092,0.9097044838709604,0.0,65.76826490800424,0.0774040830001467 +26,250.9958824522333,0.9007029274601673,0.0,65.11748571860173,0.0766381670000555 +27,252.60531086151025,0.906478388259008,0.0,65.53503014376236,0.0771295839986123 +28,253.74831266909396,0.9105800693867008,0.0,65.83156649788296,0.077478584000346 +29,251.7436905608569,0.9033864493810654,0.0,65.31149441451258,0.0768664999995962 +0,346.01329874466325,0.3045891714301613,11.452552845774065,68.01476198035502,0.0710032919996592 +1,377.80788815412063,0.3325773663328527,12.50490897411526,74.264525902126,0.0775276669992308 +2,389.8002261465144,0.3431340018895373,12.901838471046604,76.62182262193369,0.0799885419983184 +3,389.79007528132496,0.3431250662687719,12.901502491705823,76.61982729781678,0.0799864590007928 +4,373.52921786478214,0.3288109312189984,12.363291013834338,73.42348094120234,0.0766496670003107 +5,382.0390447462535,0.336301976009026,12.644954297939377,75.0962312428155,0.0783959170003072 +6,368.8117548208933,0.3246582348775469,12.207149631395763,72.49618384815624,0.0756816249995608 +7,379.99108210302904,0.334499191992103,12.577169618903074,74.69366957183661,0.0779756669980997 +8,366.528051102667,0.3226479323086857,12.131562254806584,72.04728328452953,0.0752130000000761 +9,388.8351277233648,0.3422844434184549,12.869895072533906,76.43211621534098,0.0797904999999445 +10,391.7724494929331,0.344870113990258,12.967116286033702,77.00949645402461,0.0803932499984512 +11,381.6621806372591,0.3359702294342069,12.63248062672618,75.02215223265841,0.0783185830005095 +12,366.6756700911541,0.322777878601368,12.136448235411438,72.07630029168548,0.0752432919980492 +13,383.00393361733694,0.3371513500152614,12.676890760573828,75.28589645840788,0.0785939159977715 +14,384.18386223037226,0.3381900195689896,12.715944735794013,75.51783136975538,0.0788360419974196 +15,378.7553163563533,0.3334113700320011,12.536267513203242,74.45075892814586,0.0777220829986617 +16,383.3700328310393,0.3374736204498585,12.68900812891468,75.3578594464534,0.0786690409986476 +17,382.9738854820762,0.3371248991919685,12.675896209618015,75.27998998956656,0.0785877500020433 +18,381.6906108958314,0.3359952560702742,12.63342162824231,75.02774068049223,0.0783244170015677 +19,388.1719679438419,0.341700676006903,12.847945417859556,76.30176095234145,0.0796544170007109 +20,378.5252623152303,0.3332088576718577,12.528653048461848,74.40553791812582,0.0776748750031401 +21,373.2934718966863,0.3286034083597591,12.355488154326942,73.3771410867342,0.0766012909989513 +22,383.54607720273344,0.3376285890869132,12.694834949667936,75.39246394310773,0.0787051659972348 +23,386.3449221270531,0.3400923610273355,12.787472774627814,75.94262421740402,0.0792795000015758 +24,373.0230141252263,0.3283653293355865,12.346536383018057,73.32397804063648,0.0765457919987966 +25,383.6628342422502,0.3377313681709948,12.698699443229406,75.41541451258315,0.0787291250017006 +26,383.9716733361366,0.3380032335705427,12.708921582252408,75.4761220563022,0.0787925000004179 +27,388.3768470521449,0.3418810273346346,12.85472662778226,76.3420334038239,0.0796964590008428 +28,373.9036404971908,0.329140528606682,12.375683875611244,73.4970800378721,0.0767264999994949 +29,349.94658093953734,0.308051567728466,11.582738946590322,68.78791507376646,0.071810417000961 +0,252.8448031031451,0.0,0.0,63.327795876031466,0.0765359580000222 +1,250.71246289168695,0.0,0.0,62.793727530579304,0.0758905000002414 +2,255.849573327428,0.0,0.0,64.08037403101984,0.0774454999991576 +3,259.473357102869,0.0,0.0,64.98799102141685,0.078542416998971 +4,255.35499678935537,0.0,0.0,63.956501830904415,0.0772957920016779 +5,253.22472132458208,0.0,0.0,63.42295062424645,0.0766509589993802 +6,253.2219661176063,0.0,0.0,63.42226055198546,0.0766501250000146 +7,256.0249387516583,0.0,0.0,64.12429625387384,0.0774985829993966 +8,254.19074916093857,0.0,0.0,63.664903050717285,0.0769433749992458 +9,255.66691023668932,0.0,0.0,64.0346240263434,0.077390207999997 +10,245.0917868305501,0.0,0.0,61.38596663568849,0.0741891249999753 +11,254.09728348032925,0.0,0.0,63.64149353044874,0.0769150829983118 +12,258.4168897008931,0.0,0.0,64.72338699886663,0.0782226250012172 +13,241.31589833068384,0.0,0.0,60.44025332366666,0.0730461659986758 +14,236.296204735648,0.0,0.0,59.18301517819063,0.0715267080013291 +15,254.9943518084654,0.0,0.0,63.86617428035477,0.0771866249997401 +16,257.59167485304476,0.0,0.0,64.5167027530485,0.0779728330016951 +17,255.1975237091272,0.0,0.0,63.917060944802486,0.0772481250023702 +18,254.1328005774134,0.0,0.0,63.65038918282778,0.0769258340005762 +19,254.61044282269503,0.0,0.0,63.770020000783035,0.0770704159986053 +20,252.7502373251944,0.0,0.0,63.30411082413631,0.076507333000336 +21,256.13602257519875,0.0,0.0,64.1521184341835,0.0775322080007754 +22,233.69544263395284,0.0,0.0,58.53162535535499,0.0707394589990144 +23,257.93167227093824,0.0,0.0,64.6018588915749,0.078075749999698 +24,256.7664632982533,0.0,0.0,64.31001933201313,0.0777230419989791 +25,256.145381695335,0.0,0.0,64.15446253001737,0.0775350410003739 +26,255.20371797321877,0.0,0.0,63.918612367205384,0.0772500000020954 +27,253.60793655700468,0.0,0.0,63.51893114556863,0.0767669580018264 +28,254.7793397817627,0.0,0.0,63.81232212452318,0.0771215409986325 +29,254.67445023433228,0.0,0.0,63.78605136962657,0.0770897910006169 +0,256.736730168257,0.0,0.0,62.78061796370678,0.0759414589992957 +1,246.83770108103627,0.0,0.0,60.35997810072678,0.0730133750003005 +2,249.48762015903063,0.0,0.0,61.00797091874418,0.073797207998723 +3,261.96853136599685,0.0,0.0,64.05996631422177,0.077488999999332 +4,260.9436089466303,0.0,0.0,63.809338899864194,0.0771858330008399 +5,259.1546474245066,0.0,0.0,63.37187866657925,0.0766566670026804 +6,261.2578738137402,0.0,0.0,63.88618704912788,0.0772787909991166 +7,260.56553299065286,0.0,0.0,63.71688682984707,0.0770739999970828 +8,260.5077801721833,0.0,0.0,63.70276435648577,0.0770569169981172 +9,260.269297511551,0.0,0.0,63.64444746198333,0.0769863750028889 +10,259.6297770363277,0.0,0.0,63.48806356393864,0.0767972079993342 +11,268.07593877521344,0.0,0.0,65.55342933003354,0.0792955409997375 +12,261.1346195586505,0.0,0.0,63.85604730910659,0.0772423329981393 +13,259.16746372829186,0.0,0.0,63.375012676547826,0.0766604580021521 +14,260.80992855999216,0.0,0.0,63.776649626002715,0.0771462910015543 +15,259.6238641522187,0.0,0.0,63.48661766830046,0.0767954589973669 +16,250.8287784191757,0.0,0.0,61.33592845058567,0.0741939159997855 +17,259.64851297636415,0.0,0.0,63.49264512066738,0.0768027499980235 +18,261.11222229719306,0.0,0.0,63.85057043825109,0.077235707998625 +19,262.45295796425046,0.0,0.0,64.17842463211218,0.0776322909987357 +20,260.7072425967597,0.0,0.0,63.75153951330592,0.0771159169999009 +21,240.3277041436231,0.0,0.0,58.768068636098214,0.0710877500023343 +22,260.39015821218334,0.0,0.0,63.6740018988115,0.0770221250022586 +23,262.73187065656884,0.0,0.0,64.24662800593482,0.0777147919980052 +24,262.80286575413186,0.0,0.0,64.26398865430983,0.0777357919978385 +25,259.5470914101739,0.0,0.0,63.46784419484701,0.0767727499987813 +26,259.2690272739524,0.0,0.0,63.39984832104239,0.0766904999982216 +27,263.9649879020873,0.0,0.0,64.54816593798147,0.0780795419996138 +28,259.8130390424965,0.0,0.0,63.53287718288986,0.0768514159972255 +29,264.2326259067603,0.0,0.0,64.61361227794589,0.0781587080018653 +0,255.4535357322803,0.0,0.0,63.94788166253961,0.0773206670019135 +1,253.46435879218197,0.0,0.0,63.44992945684153,0.0767185829972731 +2,231.36937798580223,0.0,0.0,57.91887578051573,0.0700308750019758 +3,256.5681585689286,0.0,0.0,64.22690606144654,0.077658041001996 +4,259.27963304187745,0.0,0.0,64.90567156856736,0.0784787499978847 +5,257.07130386219023,0.0,0.0,64.35285881281608,0.0778103330012527 +6,257.34139440968914,0.0,0.0,64.42047078898278,0.0778920839984493 +7,254.14370670366736,0.0,0.0,63.61999114624751,0.0769242079986725 +8,256.468082553313,0.0,0.0,64.2018539548648,0.0776277499971911 +9,255.38512022018003,0.0,0.0,63.93075515435044,0.0772999589971732 +10,254.8657300539408,0.0,0.0,63.800735811333155,0.0771427500003483 +11,256.0687333702568,0.0,0.0,64.10188456423998,0.0775068750008358 +12,233.89707419467393,0.0,0.0,58.55163593229996,0.0707959579995076 +13,255.41444162612115,0.0,0.0,63.93809520463366,0.0773088339992682 +14,256.2091457030477,0.0,0.0,64.13703409237446,0.0775493750006717 +15,255.03298592111852,0.0,0.0,63.84260510224348,0.0771933750002062 +16,238.25646746995207,0.0,0.0,59.64292623090094,0.0721154589991783 +17,253.54145012996145,0.0,0.0,63.469227791199664,0.0767419170006178 +18,254.73825878542036,0.0,0.0,63.768825829851195,0.0771041670013801 +19,257.11687012908976,0.0,0.0,64.36426545173828,0.0778241249972779 +20,251.6776795914633,0.0,0.0,63.002668667246425,0.0761777910011005 +21,257.5273697281309,0.0,0.0,64.46702613464193,0.0779483750011422 +22,237.10632196795063,0.0,0.0,59.355009415634115,0.0717673330000252 +23,254.68594610308816,0.0,0.0,63.75573035552299,0.0770883330005745 +24,248.6637734548057,0.0,0.0,62.24819520726282,0.0752655420001247 +25,254.1629811907558,0.0,0.0,63.624816143544585,0.0769300419997307 +26,254.68470717332065,0.0,0.0,63.7554202132737,0.077087958001357 +27,254.7956626434966,0.0,0.0,63.78319578215078,0.0771215419990767 +28,255.26521799895795,0.0,0.0,63.90073993834724,0.0772636669971689 +29,237.74451089433737,0.0,0.0,59.51476774438824,0.0719605000012961 +0,406.90110086989495,1.1695525766824268,9.356420613459417,76.36490353632317,0.080162875001406 +1,397.34291245297,1.142079552236113,9.136636417888903,74.57107664600503,0.0782798330001242 +2,398.34942866393624,1.1449725737233776,9.15978058978702,74.75997393134995,0.0784781250004016 +3,401.51109823696424,1.1540601352656,9.2324810821248,75.35333824381271,0.0791009999993548 +4,373.9879264094034,1.074950502825236,8.599604022601888,70.18794459623601,0.0736787080022622 +5,396.4863493485231,1.13961753976243,9.11694031809944,74.41032171389985,0.0781110829993849 +6,396.616846417644,1.1399926264434777,9.11994101154782,74.43481266778001,0.0781367919989861 +7,404.7296639135876,1.1633112328228912,9.30648986258313,75.95738049608289,0.0797350840002764 +8,399.3405038898903,1.147821213311038,9.182569706488303,74.94597333972072,0.0786733749991981 +9,383.8921206281695,1.1034180489777463,8.827344391821972,72.0467079038411,0.0756299160020717 +10,396.6972136294903,1.1402236252770876,9.1217890022167,74.44989553279808,0.0781526250029855 +11,396.0940256882952,1.1384898870066815,9.107919096053454,74.33669262220099,0.0780337920004967 +12,396.50876973432435,1.1396819824978466,9.117455859982773,74.41452944544764,0.0781155000004218 +13,420.5595794358594,1.2088110322782333,9.670488258225866,78.92824975463758,0.0828537080014939 +14,396.0908481484921,1.138480753829464,9.107846030635711,74.33609627945324,0.0780331659989315 +15,382.94736832032027,1.100702554982745,8.80562043986196,71.86940211946158,0.075443792000442 +16,374.5642575893283,1.0766070469217317,8.612856375373852,70.29610718136011,0.0737922500011336 +17,383.6615922150536,1.10275544300548,8.82204354404384,72.00344363153428,0.0755845000021508 +18,381.37974870457487,1.0961967584711765,8.76957406776941,71.57520011194151,0.0751349579986708 +19,408.4651216412204,1.1740480290642907,9.392384232514326,76.65843013302134,0.0804710000011255 +20,394.79902917845,1.13476768890585,9.0781415112468,74.09365498149961,0.0777786670005298 +21,373.7848892166426,1.0743669146475483,8.594935317180386,70.14983972110463,0.0736387079996347 +22,400.4768776142425,1.1510874832094211,9.20869986567537,75.1592415507328,0.0788972500013187 +23,402.1493963735045,1.1558947904894032,9.247158323915226,75.47313043783751,0.0792267500000889 +24,394.9832448113632,1.1352971784247483,9.082377427397986,74.12822753243945,0.0778149590005341 +25,389.6991971410489,1.120109282508721,8.96087426006977,73.13654726968709,0.0767739580005582 +26,395.76683634965144,1.1375494493100136,9.100395594480108,74.27528757259499,0.0779693330005102 +27,377.7536315925778,1.085774239085945,8.68619391268756,70.89467090502347,0.0744205830014834 +28,405.3831898437398,1.165189657171963,9.321517257375705,76.08003055652229,0.0798638340020261 +29,398.0772319408369,1.1441902008613116,9.153521606890491,74.70888958565034,0.078424499999528 +0,260.73243357692206,0.0,0.0,71.86048541230059,0.0786047920009878 +1,249.8920455669615,0.0,0.0,68.87276526653044,0.0753366660028405 +2,255.3331764989173,0.0,0.0,70.37239576741659,0.0769770410006458 +3,259.2942335745159,0.0,0.0,71.46410300265921,0.078171207998821 +4,258.6612396991297,0.0,0.0,71.28964351357979,0.0779803750010614 +5,256.8523677851711,0.0,0.0,70.79110019082363,0.0774350419997063 +6,257.37410271121684,0.0,0.0,70.9348955925995,0.0775923330002115 +7,256.01136788270634,0.0,0.0,70.55931214514888,0.0771815000007336 +8,259.4605017448903,0.0,0.0,71.50992818546368,0.0782213340025919 +9,259.045318948124,0.0,0.0,71.39549962396424,0.0780961660020693 +10,238.6136802942901,0.0,0.0,65.7643341748063,0.0719365000004472 +11,258.8377308561513,0.0,0.0,71.33828625449453,0.0780335829986142 +12,256.8371626413573,0.0,0.0,70.78690950000609,0.0774304580008902 +13,257.99811414343014,0.0,0.0,71.1068794298479,0.0777804579993244 +14,258.1165610601165,0.0,0.0,71.13952459336632,0.0778161670023109 +15,256.135891547354,0.0,0.0,70.5936321216249,0.0772190410025359 +16,256.2543384519732,0.0,0.0,70.62627728181748,0.0772547500018845 +17,254.5050333079523,0.0,0.0,70.1441511609546,0.0767273750025197 +18,253.0893623898181,0.0,0.0,69.75397799390524,0.0763005829976464 +19,253.0000819108746,0.0,0.0,69.72937139446263,0.0762736670003505 +20,240.37099932043577,0.0,0.0,66.24866900231768,0.0724662909997277 +21,247.79459427718265,0.0,0.0,68.29468656053892,0.0747043330011365 +22,256.24618193564646,0.0,0.0,70.62402926374595,0.0772522910010593 +23,254.47628482944975,0.0,0.0,70.13622779065612,0.0767187080018629 +24,257.38833929398254,0.0,0.0,70.93881933823452,0.0775966250002966 +25,256.62086741918284,0.0,0.0,70.7272963577338,0.0773652499992749 +26,257.5863909862953,0.0,0.0,70.99340437988461,0.0776563330000499 +27,258.7303461630705,0.0,0.0,71.3086899512469,0.0780012089999218 +28,256.10728569098626,0.0,0.0,70.5857480594236,0.0772104169991507 +29,261.6339654918951,0.0,0.0,72.1089566904453,0.0788765830002375 +0,261.6846194438566,0.0,0.0,70.7870578236059,0.0761451660000602 +1,264.8513555634606,0.0,0.0,71.64367650179537,0.0770666249991336 +2,269.77737005954486,0.0,0.0,72.97618917951907,0.0784999999996216 +3,266.95043658088093,0.0,0.0,72.21148889242174,0.0776774170008138 +4,245.5969253936852,0.0,0.0,66.43525246569763,0.0714639580000948 +5,264.9049123942919,0.0,0.0,71.65816390456655,0.0770822090016736 +6,268.0374194355293,0.0,0.0,72.50552343808509,0.0779937080005765 +7,249.4505628149961,0.0,0.0,67.47768153758304,0.0725852920004399 +8,261.54973419510105,0.0,0.0,70.7505706585463,0.0761059169999498 +9,243.2800464083468,0.0,0.0,65.80852458595446,0.0707897909996972 +10,270.3172100512772,0.0,0.0,73.12221871993097,0.0786570830023265 +11,272.70482912023755,0.0,0.0,73.76808216217084,0.0793518339996808 +12,270.90029688215856,0.0,0.0,73.2799467564564,0.0788267499992798 +13,266.24634856319756,0.0,0.0,72.0210294021904,0.0774725409974053 +14,264.864243015556,0.0,0.0,71.64716262497149,0.0770703749985841 +15,267.43801192267176,0.0,0.0,72.34338057174956,0.0778192920006404 +16,268.4402228149727,0.0,0.0,72.61448385835281,0.0781109159979678 +17,245.10605773741895,0.0,0.0,66.30247019808976,0.0713211250003951 +18,270.45009515394486,0.0,0.0,73.15816483501571,0.0786957499985874 +19,269.58577658088814,0.0,0.0,72.92436214176223,0.0784442500007571 +20,264.0393016153403,0.0,0.0,71.42401166286199,0.0768303329969057 +21,264.65732548978616,0.0,0.0,71.59119035234609,0.0770101659982174 +22,268.9903762115632,0.0,0.0,72.76330322870432,0.0782710000021325 +23,267.9255872644627,0.0,0.0,72.47527225107741,0.0779611670004669 +24,268.883125097681,0.0,0.0,72.73429124161788,0.0782397920011135 +25,266.39670220014995,0.0,0.0,72.06170084713644,0.0775162909994833 +26,270.10857762340623,0.0,0.0,73.06578255732055,0.0785963749985967 +27,269.86486039771097,0.0,0.0,72.99985577345161,0.078525457996875 +28,266.2155630292543,0.0,0.0,72.01270175429117,0.0774635830020997 +29,267.78210693862854,0.0,0.0,72.43646007272716,0.077919416999066 +0,252.9904391009336,0.5936420158801727,0.0,67.64220969834635,0.0770869580010185 +1,253.3424211328988,0.5944679416493519,0.0,67.73631935126782,0.0771942079991276 +2,255.45376857654293,0.5994222180130064,0.0,68.30083161914868,0.0778375420013617 +3,252.75687727616872,0.5930939631040331,0.0,67.57976212924287,0.0770157910010311 +4,254.62522746695757,0.5974780464613787,0.0,68.07930407179377,0.0775850829995761 +5,243.2634835700608,0.5708177166290046,0.0,65.04150760033825,0.0741231249994598 +6,258.43672855313076,0.6064217330147769,0.0,69.09838746740597,0.078746458999376 +7,245.0966913565499,0.5751193383415328,0.0,65.53165349658244,0.0746817090002878 +8,257.05491764007854,0.6031793139775016,0.0,68.72893183154754,0.0783254170019063 +9,257.5012538335539,0.6042266417682141,0.0,68.8482690148115,0.0784614170006534 +10,253.98785938339117,0.5959824623779222,0.0,67.90889057428436,0.0773908750015834 +11,265.2123122288461,0.6223206387849342,0.0,70.9099794526611,0.0808109999998123 +12,256.5540201188157,0.6020039580418045,0.0,68.59500655243006,0.0781727920002595 +13,255.42149780662115,0.5993464946576953,0.0,68.29220336349628,0.0778277089993935 +14,260.4946042488577,0.6112505379323998,0.0,69.6486029610751,0.0793734999970183 +15,257.2586668312375,0.6036574114147145,0.0,68.78340837842107,0.0783875000015541 +16,259.2875536419595,0.6084181939193418,0.0,69.32587309603167,0.0790057079975667 +17,257.74917061850346,0.6048083784556202,0.0,68.91455467847094,0.0785369580007682 +18,256.79646599714357,0.6025728572478927,0.0,68.65982945641265,0.0782466659984493 +19,259.0814808837297,0.6079346442324514,0.0,69.27077529559764,0.0789429169999493 +20,260.65992915080005,0.6116384727824796,0.0,69.6928059820481,0.0794238749986107 +21,261.46754825896494,0.6135335508618653,0.0,69.90873960098254,0.0796699590027856 +22,255.1032896344497,0.5985998192439179,0.0,68.2071238482931,0.0777307499993185 +23,245.81077018984175,0.57679492418422,0.0,65.72257719454639,0.0748992909975641 +24,262.43323927212475,0.6157995446354121,0.0,70.1669370026239,0.0799642079982732 +25,257.6282889916458,0.6045247297418359,0.0,68.88223448336142,0.0785001250005734 +26,255.0249346708637,0.598415959337185,0.0,68.18617403336481,0.0777068750030594 +27,256.13229805027714,0.6010143872904431,0.0,68.48225046292771,0.0780442920004134 +28,255.42040166006765,0.5993439225500219,0.0,68.29191028611638,0.0778273750001972 +29,248.95385985498368,0.5841701834688705,0.0,66.56294701636963,0.0758569999998144 +0,405.8431369282208,0.3014184050465412,12.492118342484432,76.292347410669,0.0778078330004063 +1,406.0654675328361,0.3015835292783896,12.498961824537702,76.3341421884635,0.077850457997556 +2,374.8841940857946,0.2784252968123578,11.539181745667715,70.47253623761678,0.0718724159996782 +3,395.92910555470706,0.2940552855250341,12.186957944537523,74.42866004733642,0.0759071249995031 +4,396.96491328086944,0.2948245766238508,12.21884078674404,74.6233761721258,0.0761057090021495 +5,403.6617775393808,0.2997983163768301,12.424974667617516,75.88228496737989,0.0773896249993413 +6,410.7431055614168,0.3050575961423297,12.642942595676551,77.21346711246967,0.0787472499978321 +7,408.4530767282583,0.3033567990224727,12.57245400393137,76.7829764636881,0.0783082080015447 +8,412.0644822883901,0.3060389784284131,12.6836154393109,77.46186587332501,0.0790005829985602 +9,414.61052649200695,0.3079299173484124,12.76198435232865,77.94048352440929,0.0794887080010084 +10,401.4493414263137,0.2981551471230255,12.356874430765387,75.46638057180579,0.0769654590003483 +11,418.55140908310005,0.3108567982957502,12.883287307146093,78.68130961307988,0.080244249998941 +12,371.5974824961197,0.2759842665840136,11.438014603981898,69.85468436426478,0.0712422910000896 +13,412.4000411444283,0.3062881969219223,12.69394416131967,77.52494584312656,0.0790649160007888 +14,398.60489693493815,0.2960425872598154,12.269320560879017,74.93166819753995,0.076420124998549 +15,411.7995528547654,0.3058422161819515,12.67546073731866,77.4120631624984,0.0789497909972851 +16,409.77163159678435,0.304336085523276,12.613039988909108,77.03084475800254,0.0785609999984444 +17,420.8577378253096,0.3125697013061385,12.954277620798852,79.11486439726484,0.0806864169971959 +18,412.37874955735026,0.3062723837280205,12.693288792283516,77.52094334804787,0.0790608339993923 +19,397.22635843753744,0.2950187511089154,12.226888240402827,74.67252389178992,0.076155833001394 +20,410.6066193405251,0.304956228260829,12.638741460143248,77.18780977535206,0.0787210829985269 +21,425.12004923989656,0.3157353064168236,13.08547436594169,79.91611422416936,0.0815035830019041 +22,410.9195773893686,0.305188661206826,12.64837451446068,77.24664113657218,0.0787810829970112 +23,408.3198556922807,0.303257856183407,12.568353372934537,76.7579329317557,0.0782826670001668 +24,402.4147283665603,0.2988721369284571,12.386589674923831,75.64785865811392,0.0771505420016183 +25,413.1863534713429,0.3068721885824464,12.71814737125028,77.67276062120145,0.0792156669995165 +26,382.7631322481759,0.2842769590884291,11.781700637776003,71.95365697816015,0.0733829580021847 +27,386.7318315968666,0.2872244994530284,11.903859810664404,72.69971219488876,0.0741438330005621 +28,399.2001692552227,0.2964846941159436,12.28764343391633,75.0435703551244,0.0765342500017141 +29,394.88069605123275,0.2932766351263488,12.154687211347566,74.23157497975807,0.075706124996941 +0,243.61769021404157,0.0,0.0,60.71178863926628,0.0740814170021622 +1,251.461612143386,0.0,0.0,62.666566758453214,0.0764666659997601 +2,254.063240155725,0.0,0.0,63.31491659653083,0.0772577920033654 +3,232.2594398453139,0.0,0.0,57.881207267723845,0.0706275000011373 +4,252.81360526435807,0.0,0.0,63.00349598773077,0.0768777919984131 +5,252.19796606709363,0.0,0.0,62.850072987990785,0.0766905829987081 +6,255.2020225366119,0.0,0.0,63.598711731251065,0.0776040829987323 +7,255.2195634669661,0.0,0.0,63.60308309383669,0.0776094169996213 +8,255.85493045791168,0.0,0.0,63.76142244279269,0.0778026250009134 +9,251.7152386884793,0.0,0.0,62.72977284658861,0.0765437909976753 +10,252.90102379610673,0.0,0.0,63.02528149689481,0.0769043749969569 +11,246.51459376621943,0.0,0.0,61.433723881381255,0.0749623329975293 +12,256.09101607265075,0.0,0.0,63.82025716834245,0.0778744159979396 +13,258.54822246754117,0.0,0.0,64.43261579943601,0.0786216250016877 +14,251.91734740702609,0.0,0.0,62.78014021437615,0.0766052500002842 +15,256.0914304298579,0.0,0.0,63.82036043000281,0.0778745419993356 +16,256.1073238132674,0.0,0.0,63.82432120860419,0.0778793749996111 +17,255.20229877475003,0.0,0.0,63.598780572357974,0.077604166999663 +18,252.78893813177984,0.0,0.0,62.99734870943538,0.0768702909990679 +19,254.18874952204928,0.0,0.0,63.34619469507053,0.0772959579990129 +20,254.19532983990769,0.0,0.0,63.34783457133176,0.0772979590001341 +21,254.78890311316445,0.0,0.0,63.49575853808566,0.07747845799895 +22,254.8345312291614,0.0,0.0,63.50712948792096,0.0774923329990997 +23,256.2513343634823,0.0,0.0,63.86020997381984,0.0779231669985165 +24,256.51962110224747,0.0,0.0,63.927069518232734,0.0780047499974898 +25,254.42100073848025,0.0,0.0,63.404073852987096,0.0773665829983656 +26,252.18371695261897,0.0,0.0,62.84652197646316,0.0766862500022398 +27,253.7606969687288,0.0,0.0,63.23952002739407,0.077165792001324 +28,252.71604495264393,0.0,0.0,62.97918305290586,0.0768481249979231 +29,253.57256771842907,0.0,0.0,63.192636472792486,0.077108583998779 +0,388.73038558373344,0.3723471126280971,12.795200779401885,75.75571255106195,0.0790761250027571 +1,402.3718037995577,0.3854136051719902,13.24421297772839,78.41414985226491,0.081851082999492 +2,386.16305637510675,0.3698879850336271,12.710696212973732,75.25539186411433,0.0785538749987608 +3,388.4954448338896,0.3721220735956797,12.787467619924266,75.70992733701192,0.0790283329988597 +4,393.9176834196838,0.3773157887161722,12.96594255770119,76.76661228607212,0.0801313330011908 +5,374.82924555374433,0.3590318444001382,12.337639743932025,73.04666070613722,0.0762483340004109 +6,356.617671661771,0.3415878081051446,11.738199223976787,69.4975922308467,0.0725437080000119 +7,391.64449222473655,0.3751384025141154,12.891119650030513,76.32361316605368,0.0796689169983437 +8,394.2085425197358,0.3775943893867201,12.975516289834564,76.82329485886179,0.0801905000007536 +9,394.23025605863455,0.3776151877956269,12.976230998795184,76.82752638969211,0.0801949170017906 +10,378.5704476057187,0.3626153712698455,12.460782758181963,73.77574553653766,0.0770093749997613 +11,390.7969073771063,0.3743265396332436,12.8632210892151,76.15843597265447,0.0794965000022784 +12,390.2745929109586,0.3738262384204584,12.846028920266662,76.0566474168169,0.0793902500008698 +13,378.6380412376751,0.3626801161280413,12.46300762694542,73.7889181722324,0.0770231249989592 +14,361.2965867125136,0.3460695275024076,11.89220739962819,70.40941841367166,0.0734955000007175 +15,395.7865466718811,0.3791058876167443,13.027456865375395,77.13081604420672,0.0805115000002842 +16,391.401769634818,0.3749059096118946,12.883130348481467,76.27631142831092,0.0796195420007279 +17,381.2733721004155,0.3652043794065282,12.549750492333423,74.30249101016456,0.0775592080026399 +18,379.5206519126656,0.3635255286519786,12.492059075495265,73.96092119301164,0.077202667001984 +19,359.4369407550679,0.344288257428226,11.830996482533584,70.04701092039726,0.0731172079977113 +20,373.5629881600666,0.357818954176309,12.295960425331344,72.79989267696178,0.0759907499996188 +21,386.0360639093943,0.3697663447407991,12.706516210183825,75.23064359362803,0.078528041998652 +22,386.9403832051992,0.3706325509628345,12.736282205813769,75.40687718680215,0.0787120000022696 +23,390.2086362678317,0.3737630615592258,12.843857933580669,76.04379379723157,0.079376833000424 +24,376.20897175435175,0.3603534212206434,12.383053929218477,73.31554151743637,0.0765289999981178 +25,358.97075114501723,0.3438417156561468,11.81565168345668,69.95615996713241,0.0730223749997094 +26,382.8300756539037,0.3666954747642755,12.60098995099056,74.60586113840442,0.0778758750020642 +27,379.2515063336283,0.3632677263732072,12.48320005173385,73.90847014756707,0.0771479169998201 +28,386.50532596295153,0.3702158294664286,12.721962139846369,75.32209330416975,0.078623499997775 +29,385.28085865824175,0.3690429680634499,12.681658357089464,75.08346932054555,0.0783744170003046 +0,254.7701558196424,0.0,0.0,63.11246118665094,0.0760953749995678 +1,253.09222999705185,0.0,0.0,62.69680014498916,0.0755942079995293 +2,263.90234613131526,0.0,0.0,65.374715981528,0.0788229999998293 +3,259.7544057697603,0.0,0.0,64.3471751997949,0.0775840829992375 +4,258.13381843399344,0.0,0.0,63.9457182277288,0.0771000419990741 +5,258.38938416388623,0.0,0.0,64.00902777101736,0.0771763749980891 +6,257.3555370297845,0.0,0.0,63.75291991994662,0.0768675830004212 +7,259.0546659632019,0.0,0.0,64.1738334626511,0.0773750829976052 +8,245.76644644425735,0.0,0.0,60.88203409183789,0.0734061250004742 +9,256.3932541903437,0.0,0.0,63.51454020015801,0.0765801660018041 +10,256.7573565822389,0.0,0.0,63.6047367853998,0.0766889169972273 +11,256.6365493698801,0.0,0.0,63.57481004426902,0.0766528340027434 +12,254.0235434990149,0.0,0.0,62.92750804347181,0.0758723750004719 +13,259.3886326959798,0.0,0.0,64.25656474800229,0.0774748330004513 +14,257.7577233561085,0.0,0.0,63.8525507767409,0.0769877089987858 +15,248.0276271482725,0.0,0.0,61.442180860045646,0.0740814999990107 +16,258.37473651085224,0.0,0.0,64.00539920851713,0.0771720000011555 +17,257.275184131123,0.0,0.0,63.733014648147055,0.0768435829995723 +18,251.4304885893039,0.0,0.0,62.28514835727747,0.0750978750002104 +19,260.1250602942841,0.0,0.0,64.43899489985908,0.0776947910017042 +20,258.7400910767803,0.0,0.0,64.09590598623336,0.0772811249989899 +21,257.76525643655174,0.0,0.0,63.8544168950292,0.0769899589977285 +22,234.9518673671031,0.0,0.0,58.203012681103864,0.0701759999974456 +23,258.05583596332093,0.0,0.0,63.92640016577714,0.0770767500034708 +24,254.9226321277627,0.0,0.0,63.150233095402065,0.0761409169972466 +25,261.7944753894208,0.0,0.0,64.85254763745215,0.0781934159967931 +26,259.7657053965152,0.0,0.0,64.34997437873601,0.0775874579994706 +27,255.6566859729138,0.0,0.0,63.33207521369086,0.0763601660000858 +28,259.06303605935,0.0,0.0,64.17590692909216,0.0773775829984515 +29,258.87526808998655,0.0,0.0,64.12939245945022,0.0773215000008349 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/mac_report.md new file mode 100644 index 000000000..9ad8b0ac5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 891 samples (with smell) vs 890 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 500.03 ms | 61.56 ms | +| **Average Power** | 5.624 W | 6.458 W | +| **Total Energy** | 2505.74 J | 353.85 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.38% | 0.00e+00 | +7.249 | large | βœ… | +| `gpu_mj` | +87.81% | 0.00e+00 | +3.995 | large | βœ… | +| `ane_mj` | +87.93% | 1.45e-279 | +2.494 | large | βœ… | +| `dram_mj` | +87.72% | 0.00e+00 | +31.230 | large | βœ… | +| `time_s` | +87.70% | 0.00e+00 | +115.051 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.249, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.995, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.494, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.230, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +115.051, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..9f8557a3c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/with_smell.csv @@ -0,0 +1,892 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081 +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.6595778983575,0.5096410420010216 +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707 +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663 +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053 +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341 +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594 +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114 +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416 +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249 +10,2437.183217540223,4.046977031692036,79.90271180753945,501.5575832004443,0.5075140840017411 +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847 +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441 +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.5243528486659,0.5064685830002418 +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114 +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727 +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319 +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087 +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663 +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326 +20,2401.802815837927,3.988227376749909,78.74277027318622,494.2765102623276,0.5001465409986849 +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738 +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097 +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266 +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476 +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851 +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238 +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105 +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783 +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012 +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876 +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299 +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715 +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753 +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591 +5,2569.226557781062,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354 +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132 +7,2536.397739459655,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457 +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515 +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187 +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992 +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.0401821950901,0.5058779999999388 +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219 +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024 +14,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052 +15,2522.4157528639216,4.245050776489145,80.09653945716727,504.2067286617571,0.5030510409997078 +16,2532.4287624670173,4.2619019772249285,80.414491570275,506.2082332948864,0.5050479580022511 +17,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621 +18,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573 +19,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543 +20,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337 +21,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537 +22,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612 +23,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669 +24,2557.594577302347,4.304254298283186,81.21360435675406,511.2386384363951,0.5100668329978362 +25,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346 +26,2521.414791373941,4.243366227720586,80.06475502536362,504.0066460553087,0.5028514170007838 +27,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381 +28,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018 +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.0407597657533,0.5058008339983644 +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779 +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403 +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998 +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058 +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037 +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125 +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338 +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.4043978970143,0.5051622499995574 +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222 +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.4935359189019,0.5092656669985445 +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208 +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372 +13,2398.9191436633346,3.949302447235029,88.77633652398067,502.2915339403542,0.5040455000016664 +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032 +15,2410.4932406132943,3.968356699034115,89.20465689005259,504.7149465536247,0.5064773749982123 +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413 +17,2373.612793217755,3.907641004826973,87.83982931018615,496.99282863912794,0.4987282920010329 +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098 +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619 +20,2393.140126541887,3.93978854322512,88.56247355569073,501.0815092580857,0.5028312499998719 +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148 +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179,0.5074979160017392 +23,2411.814549757005,3.970531949270705,89.25355432184146,504.991605480774,0.5067549999985204 +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327 +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187 +26,2412.5966695833,3.97181954070628,89.28249807890167,505.15536763520623,0.5069193339986668 +27,2417.6673365095417,3.980167299051456,89.47014726859365,506.2170762280991,0.5079847500019241 +28,2397.318028700774,3.946666557127332,88.71708437240011,501.95628858926193,0.5037090839978191 +29,2408.678545967045,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665 +0,1521.3288350694506,1.7571209502823384,0.0,461.5145757491573,0.503729125000973 +1,1495.508336847177,1.7272985099740834,0.0,453.6815971005006,0.495179667002958 +2,1500.021420887732,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655 +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.4942111669988662 +4,1500.8048946803583,1.7334159860374627,0.0,455.2883757173012,0.4969334170018555 +5,1504.431192242494,1.737604326698274,0.0,456.3884595008659,0.4981341249986144 +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176 +7,1501.5407983498535,1.7342659480741058,0.0,455.5116215153104,0.4971770830015884 +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.4967821669997647 +9,1494.8181096605138,1.7265013038591517,0.0,453.47220784823634,0.4949511250015348 +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753 +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.4975821669977449 +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215 +13,1495.377338579858,1.727147208168287,0.0,453.6418570992782,0.4951362920000974 +14,1493.8437393132476,1.7253759149813177,0.0,453.1766201310545,0.4946284999969066 +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.4986748330011323 +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988 +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807 +18,1510.2273283587142,1.7442988111290731,0.0,458.1467915846323,0.5000532909980393 +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.498009249997267 +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538 +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508 +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381 +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588 +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561 +25,1492.5965513345484,1.723935424223635,0.0,452.79826969320027,0.4942155419994378 +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.4946941249982046 +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.493535375000647 +28,1487.032962421571,1.7175095296948537,0.0,451.1104837802367,0.4923733750001702 +29,1498.2415539693543,1.730455350859723,0.0,454.5107535008094,0.4960846659996605 +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713 +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006 +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059 +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968 +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581 +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476 +6,2441.8114041555423,3.618640059947563,85.3731006735777,503.0244742591923,0.5088992080018215 +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948 +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731 +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782 +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501 +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053 +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794 +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086 +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143 +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084 +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.4943381562488,0.5113979170018865 +17,2419.5950410391,3.585716542012196,84.59634952821366,498.4478004187879,0.5042690839982242 +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158 +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739 +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313 +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094 +22,2415.987574562841,3.580370460540182,84.47022160607762,497.7046455934235,0.5035172499992768 +23,2406.058253789995,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208 +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778 +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196 +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.2896519401702,0.5071441250001953 +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398 +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694 +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691 +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184 +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056 +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889 +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905 +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046 +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422 +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449 +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683 +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593 +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301 +10,2398.899124274176,3.010699789112236,85.65606323089648,496.23611139444426,0.5013167500001146 +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011 +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.1014435686768,0.4971397500012244 +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381 +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393 +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535 +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158 +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682 +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018 +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.3395799506389,0.5074827079988609 +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256 +21,2413.457682465012,3.028971273574173,86.17589700311575,499.2476937619672,0.5043591659996309 +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458 +23,2440.0641737605915,3.062363322836291,87.12591915190285,504.75151076067624,0.5099193329988339 +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291 +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119 +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032 +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706 +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758 +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817 +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767 +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903 +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114 +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558 +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153 +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502 +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542 +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336 +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.8935984536096,0.5130170830016141 +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846 +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546 +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943 +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843 +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183 +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798 +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369 +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819 +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662 +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346 +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835 +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325 +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111 +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748 +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375 +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.9742481356192,0.5100448750017677 +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458 +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488 +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479 +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.6574274029951,0.5066679999981716 +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148 +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552 +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887 +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551 +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776 +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338 +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639 +6,2337.365944846139,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552 +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931 +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839 +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006 +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587 +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081 +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149 +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471 +14,2353.790095061217,3.1273854940882333,76.58767454671397,495.2913601116121,0.5069090830002096 +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043 +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.8088451449525,0.5064152499980992 +17,2369.900043850338,3.148790130066317,77.11186041928363,498.6812624074177,0.5103784999992058 +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193 +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772 +20,2361.406654310874,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665 +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113 +22,2365.186005455824,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555 +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592 +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598 +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374 +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287 +27,2323.0195285501377,3.08650188957586,75.58646116812372,488.8165279799557,0.5002823750000971 +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055 +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038 +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472 +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257 +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665 +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586 +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182 +5,2469.989166352668,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784 +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424 +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046 +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.4442793542444,0.5079350840023835 +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228 +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109 +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367 +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832 +13,2470.881336761855,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803 +14,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149 +15,2459.7036085349296,4.698005439592715,79.17131702074202,497.8231538700816,0.5032634579984006 +16,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562 +17,2454.901026991713,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756 +18,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631 +19,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852 +20,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367 +21,2476.252506411417,4.729613643106841,79.70398202784979,501.1725104776664,0.5066494169986981 +22,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254 +23,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172 +24,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842 +25,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839 +26,2498.7167098677137,4.772520011852896,80.42704498847873,505.7190747771163,0.5112456669994572 +27,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802 +28,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411 +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.3002329485451,0.5093542920003529 +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653 +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335 +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.9709386136346,0.5059579579974525 +4,2399.17808339922,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849 +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149 +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775 +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634 +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.3990756228805,0.509455125000386 +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049 +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456 +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895 +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751 +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829 +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234 +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.7341684884317,0.5016358749999199 +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729 +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007 +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672 +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455 +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208 +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947 +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.4623838303456,0.5095197080008802 +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746 +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.8791917610883,0.506884500002343 +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028 +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497 +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293 +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212 +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411 +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542 +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952 +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867 +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424 +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363 +5,2400.453980450238,4.138080849367165,83.32893452314363,495.8688979092475,0.5058198340011586 +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694 +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958 +8,2403.58097828726,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683 +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267 +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853 +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238 +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056 +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391 +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556 +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674 +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163 +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075 +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524 +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076 +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709 +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594 +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088 +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206 +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243 +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182 +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494 +27,2425.97045586115,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935 +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056 +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254 +0,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337 +1,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345 +2,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745 +3,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228 +4,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257,0.501494084001024 +5,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946 +6,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837 +7,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348 +8,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026 +9,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378 +10,2378.356060681969,3.970157709764441,81.78524882114748,500.90156438194686,0.5014024589982 +11,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271 +12,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075 +13,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049 +14,2390.123657190451,3.989801199978495,82.189904719557,503.37991806395354,0.5038832909995108 +15,2371.816282415134,3.959240946065576,81.56036348895087,499.5242326952735,0.5000237499989453 +16,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303 +17,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822 +18,2397.1812542605517,4.0015823516249975,82.43259644347495,504.8663066966872,0.5053711660002591 +19,2413.429795818861,4.028705823003649,82.99133995387517,508.2883846689603,0.5087966660030361 +20,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703 +21,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542 +22,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094 +23,2386.9390568875947,3.984485189624151,82.08039490625751,502.7092147575803,0.5032119169991347 +24,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828 +25,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.4999481250015378 +26,2394.9224057847664,3.997811686315634,82.35492073810207,504.3905744234892,0.5048949580013868 +27,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275 +28,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585 +0,1531.1537366320806,2.87076721424838,0.0,463.19495191756414,0.4997307500016177 +1,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.4992337080002471 +2,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331 +3,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553 +4,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.4967933749976509 +5,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.4938749159991857 +6,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974 +7,1529.549117610166,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789 +8,1534.5397925705695,2.87711574616994,0.0,464.2192801610941,0.5008358750019397 +9,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685 +10,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412 +11,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775 +12,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.4971924999990733 +13,1530.105222825464,2.868801350868558,0.0,462.8777621471175,0.4993885410003713 +14,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475 +15,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071 +16,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474 +17,1523.8910085724551,2.8571502918579252,0.0,460.997877323495,0.4973603750004258 +18,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.4989415420022851 +19,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.4979109579981013 +20,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227 +21,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.4972158750024391 +22,1523.679466818539,2.856753671246252,0.0,460.93388304898826,0.4972913329984294 +23,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626 +24,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481 +25,1518.296859631195,2.84666179616479,0.0,459.30557073933295,0.4955345829985162 +26,1517.123367010836,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685 +27,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821 +28,1513.0786858616543,2.8368782180579974,0.0,457.7270017880555,0.49383150000358 +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618 +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904 +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659 +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492 +4,2340.690922537716,4.507878606273955,80.50737273871486,493.7629700072072,0.5085929999986547 +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951 +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227 +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618 +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373 +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693 +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235 +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706 +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046 +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578 +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701 +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975 +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283 +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956 +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957 +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134 +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105 +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781 +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063 +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187 +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935 +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673 +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902 +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685 +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548 +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566 +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292 +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295 +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367 +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.9658028211997,0.5026861250007642 +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364 +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283 +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152 +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727 +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829 +9,2374.217426084276,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384 +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447 +11,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732 +12,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935 +13,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878 +14,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826 +15,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144 +16,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896 +17,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942 +18,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896 +19,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372 +20,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246 +21,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155 +22,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018 +23,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907 +24,2359.7523495532514,3.489381431713207,86.53665950648752,499.6461888172197,0.5033715839999786 +25,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014 +26,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501 +27,2369.1011810593163,3.503205610793547,86.87949914767998,501.625679602676,0.5053658340002585 +28,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.498477000001003 +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566 +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745 +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915 +3,2787.134152130027,3.892829766007092,84.81750278308672,513.8535291129361,0.5036684170008812 +4,2786.490857621769,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919 +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812 +6,2781.0252087558233,3.884297318228151,84.6315966539371,512.7272460061159,0.5025644579982327 +7,2806.3717189238073,3.91969914815834,85.40293652470417,517.4002875569009,0.5071448749986303 +8,2787.611657926017,3.8934967051189577,84.83203414288847,513.9415650757024,0.5037547079991782 +9,2778.4739606086464,3.880733953787939,84.5539575863457,512.256881900008,0.5021034169985796 +10,2803.5843657274604,3.915806012450171,85.3181123560118,516.8863936434227,0.5066411669977242 +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174 +12,2812.886462833527,3.9287983832957263,85.60119189367214,518.6013865950359,0.5083221670029161 +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987 +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392 +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828 +16,2785.3977311460985,3.890404482212485,84.7646603709178,513.5333916520481,0.5033546249978826 +17,2790.556261375991,3.8976094744847183,84.92164371949332,514.4844506319829,0.5042868329983321 +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193 +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849 +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448 +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673 +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759 +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572 +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778 +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124 +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425 +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436 +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288 +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019 +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533 +1,2427.481988160699,4.084415548016843,85.00271374110463,501.1109173993124,0.5075136669984204 +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661 +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051 +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116 +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043 +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739 +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679 +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423 +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579 +10,2395.320511638591,4.030301517348542,83.87652092252418,494.4717468169917,0.5007896669994807 +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515 +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875 +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489 +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053 +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869 +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392 +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.4682684869635,0.5078755840004305 +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414 +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279 +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696 +21,2427.790497267815,4.08493463709761,85.01351675074451,501.1746036727624,0.5075781669984281 +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145 +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996 +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155 +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793 +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597 +27,2413.707893578892,4.061239628959905,84.5203886715508,498.2674980841955,0.5046339170003193 +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983 +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103 +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763 +1,2430.8668931937323,3.146003063189218,86.86280036574021,500.4462977991102,0.5033938749984372 +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439 +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242 +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859 +5,2473.312006736001,3.200935094883456,88.37950267241374,509.184538461882,0.5121835829995689 +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638 +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033 +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118 +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504 +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.286500197256,0.5052449159993557 +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.0612560700477,0.50703012500162 +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356 +13,2442.717957764811,3.161340589709926,87.28627754535931,502.88609464943573,0.505848042001162 +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.0360862137909,0.5059989170003973 +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502 +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592 +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984 +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331 +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831 +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758 +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022 +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.3419776453141,0.5073124999980791 +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608 +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987 +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.0199192304263,0.5039708750009595 +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441 +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.7483898208496,0.5067154160024074 +28,2460.460343865354,3.18430260428048,87.92027085292314,506.5387469040696,0.5095222080017265 +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324 +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667 +1,1498.841889417395,1.2033252607887024,0.0,459.93765523479294,0.499227249998512 +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.4965378329980012 +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442 +4,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427 +5,1489.3145129999891,1.1956763334448297,0.0,457.0140652278015,0.4960539159983455 +6,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085 +7,1491.8328382512898,1.1976981373530124,0.0,457.7868436104848,0.4968927080008143 +8,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469 +9,1511.818683773937,1.213743507412005,0.0,463.91974061081095,0.5035495000010997 +10,1488.9657450555078,1.195396329742831,0.0,456.9070415905932,0.4959377500017581 +11,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.4984247499996854 +12,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.4980667499985429 +13,1496.3713521590184,1.2013418228345636,0.0,459.1795411723221,0.4984043749973352 +14,1507.25952887442,1.210083250584936,0.0,462.5207091124644,0.5020309579995228 +15,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.4936328750009124 +16,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439 +17,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.4978450419985165 +18,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462 +19,1489.0232905879304,1.1954425294075846,0.0,456.9247001291211,0.4959569169986935 +20,1493.38228955567,1.1989420937089743,0.0,458.262311373208,0.4974087919981684 +21,1495.050954155259,1.2002817588722223,0.0,458.7743611689384,0.4979645830026129 +22,1482.5875601832554,1.1902756889141006,0.0,454.949818873834,0.4938133340001513 +23,1491.5192214979224,1.1974463543169245,0.0,457.6906065389133,0.4967882499986444 +24,1491.476438384669,1.197412006463908,0.0,457.6774780262048,0.4967739999992773 +25,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.4969653329972061 +26,1493.5562982454917,1.1990817942694787,0.0,458.3157080318896,0.4974667499991483 +27,1494.5570718752197,1.1998852520574457,0.0,458.622807453068,0.4978000830014935 +28,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.4966979169985279 +0,2451.1992010427684,3.900210881276232,77.23750950356437,510.1942524609636,0.5080816660010896 +1,2446.842754857934,3.893279148103931,77.10023748851974,509.2874988182109,0.5071786669977882 +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055 +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268 +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444 +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424 +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.5791434498134,0.5034856669990404 +7,2429.938186012844,3.866381544953255,76.56757298851875,505.7689704744408,0.5036747079975612 +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405 +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.430282300252,0.5063249999984691 +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838 +11,2416.368502129658,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795 +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131 +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048 +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614 +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951 +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134 +17,2475.655192815794,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459 +18,2453.373007356547,3.9036697201315897,77.30600633799054,510.6467099710596,0.5085322499980975 +19,2459.984671943299,3.914189830514144,77.51434048975445,512.0228662907604,0.5099027079995722 +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151 +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142 +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269 +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548 +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.057604634152,0.5079455839986622 +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254 +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.1553403373048,0.500076040996646 +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147 +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387 +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264 +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896 +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294 +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021 +3,2357.806900571939,4.149006707691834,79.90183885458144,503.6024190118531,0.5101947919974918 +4,2346.305810578593,4.128768366919913,79.51208758229639,501.1459087944486,0.5077061250012775 +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982 +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412 +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624 +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255 +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223 +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191 +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826 +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185 +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488 +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016 +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732 +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316 +17,2343.330793546818,4.123533262375373,79.41126960122897,500.5104768710625,0.5070623749998049 +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544 +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428 +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128 +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923 +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731 +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271 +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.9930627480395,0.509577458997228 +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235 +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313 +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421 +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664 +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945 +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798 +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374 +2,2403.6605833088347,2.971356629736184,84.43326872587426,501.95895424812943,0.5054153749988473 +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712 +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205 +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399 +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625 +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132 +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868 +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569 +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995 +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116 +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444 +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508 +14,2396.948743680305,2.963059589248669,84.19750226078521,500.5573137567836,0.5040040830026555 +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352 +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.4983195829991018 +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919 +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.0250495374422,0.5085025830012455 +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087 +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.0684085629751,0.5055255830011447 +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335 +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108 +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.2673499536931,0.5077396660017257 +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774 +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248 +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372 +27,2387.906760572858,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619 +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972 +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049 +0,1540.449502109736,0.941163587664418,0.0,464.2625526007479,0.5018101659989043 +1,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.499439874998643 +2,1530.7264696366958,0.935223137092834,0.0,461.33221319736504,0.4986428330012131 +3,1527.4287557774685,0.9332083432274132,0.0,460.3383441663225,0.4975685839999642 +4,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.4973773329984396 +5,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467 +6,1528.059338805915,0.93359360855715,0.0,460.52839004969127,0.497773999999481 +7,1545.3676850578215,0.944168434432761,0.0,465.744800585189,0.5034122920005757 +8,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942 +9,1528.570586995457,0.9339059642556632,0.0,460.6824706535437,0.4979405419981049 +10,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875 +11,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752 +12,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.4964012499985983 +13,1528.2171779672317,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772 +14,1519.295356383413,0.9282391057787768,0.0,457.88709032201666,0.4949190829975123 +15,1522.767283641807,0.9303603382567937,0.0,458.9334640001012,0.4960500830020464 +16,1521.815908034937,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944 +17,1523.6480572437645,0.9308984617343912,0.0,459.19891262412176,0.4963370000004943 +18,1522.5087831425035,0.930202403019706,0.0,458.8555568038635,0.495965874997637 +19,1523.130669481421,0.9305823549603914,0.0,459.0429816683188,0.4961684580011933 +20,1519.5053818912152,0.9283674244027588,0.0,457.9503880661037,0.4949874999983876 +21,1526.9093204634178,0.9328909854671869,0.0,460.1817961168851,0.4973993749990768 +22,1529.5480557755704,0.9345031652821568,0.0,460.97706138846974,0.4982589579994965 +23,1524.9894245219973,0.9317179926818372,0.0,459.6031755329121,0.4967739580024499 +24,1540.853307819904,0.9414102995692096,0.0,464.38425205892594,0.5019417080002313 +25,1520.174211377246,0.9287760570504024,0.0,458.151960713577,0.495205374998477 +26,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.4972079580002173 +27,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.4952220829982252 +28,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.495454833999247 +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731 +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064 +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738 +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141 +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031 +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806 +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741 +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907 +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344 +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595 +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087 +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484 +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554 +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421 +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195 +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687 +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761 +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689 +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782 +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762 +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611 +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179 +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539 +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082 +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504 +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451 +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206 +27,2420.701363746525,3.272075332025206,80.19923415841373,498.3237176579205,0.5071317910005746 +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987 +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072 +0,2413.455554111883,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306 +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237 +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544 +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555 +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645 +5,2400.607102267664,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602 +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546 +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905 +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967 +9,2419.322533895495,4.473549974361046,80.79097714890844,502.7068321934972,0.5066046669999196 +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114 +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656 +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344 +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755 +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583 +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172 +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128 +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602 +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134 +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.9287563027167,0.5128748340030143 +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.2933673761707,0.5071957499967539 +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831 +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194 +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012 +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208 +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382 +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622 +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875 +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928 +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759 +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887 +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971 +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208 +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851 +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478 +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485 +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799 +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703 +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879 +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654 +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245 +11,2434.911182100675,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574 +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438 +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585 +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624 +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299 +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.5810589754782,0.5055243339993467 +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575 +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045 +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954 +20,2450.440055490727,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001 +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975 +22,2443.288889685493,5.003412429886074,75.68075489973373,505.7754127800068,0.505718665997847 +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681 +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135 +25,2480.855628025912,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902 +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095 +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126 +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983 +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049 +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734 +1,1498.847619915133,2.2333049533939846,0.0,456.1275370484073,0.4971277910008211 +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.4964403749982011 +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377 +4,1497.800909311091,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296 +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.4962088749998656 +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006 +7,1487.434284612173,2.216298916270418,0.0,452.654244332006,0.4933422920003067 +8,1508.8235499563525,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729 +9,1496.828313791734,2.230296157631237,0.0,455.5130241944155,0.4964580410014605 +10,1497.546140555687,2.231365730045613,0.0,455.73147238722646,0.4966961249992891 +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964 +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341 +13,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.4960290000017266 +14,1494.2857789928514,2.2265077434621947,0.0,454.73928300801,0.4956147500015504 +15,1492.916332152243,2.224467247569281,0.0,454.3225345632543,0.4951605409987678 +16,1501.7675380811677,2.2376556743192237,0.0,457.0161230952874,0.4980962500012538 +17,1493.492579873052,2.22532586513131,0.0,454.4978975889082,0.4953516670029785 +18,1494.308895111859,2.226542186818809,0.0,454.74631767803857,0.4956224170018686 +19,1491.9323097299357,2.223001039716801,0.0,454.0230780221598,0.4948341669987712 +20,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469 +21,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.4962799999993876 +22,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.4968130000015662 +23,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199 +24,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731 +25,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.495579041999008 +26,1494.5827579360664,2.22695024644657,0.0,454.82965928917696,0.4957132499985164 +27,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.4949876249993394 +28,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.4940982500011159 +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109 +1,2362.707427351115,3.053665668998252,75.27949714443517,505.7135884006235,0.5069546670019918 +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826 +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.8357095856616,0.5080795419999049 +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101 +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.7861271535494,0.5090322920004837 +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142 +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332 +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337 +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512 +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.7341297606933,0.508980167000118 +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.0986054113508,0.5083430830018187 +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818 +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084 +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371 +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821 +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582 +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027 +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168 +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.1857207289548,0.5074279579966969 +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884 +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119 +22,2355.571678502875,3.044443117349149,75.05214119725946,504.1862536514308,0.5054235839998 +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808 +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835 +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.6577049757748,0.5119109170009324 +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616 +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251 +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333 +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061 +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.4955833330022869 +1,1562.7387326973612,1.926641438972196,2.092731218193937,449.07354505974337,0.4933393750034156 +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927 +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056 +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994 +5,1567.5576911020446,1.932582550407452,2.099184494408094,450.458336188937,0.4948606670004665 +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495 +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.4934135000003152 +8,1572.8194619481285,1.9390695885427025,2.1062307599687973,451.9703753018757,0.4965217499993741 +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045 +10,1561.3753115790362,1.9249605286764608,2.0909054018382247,448.68174805477713,0.4929089580000436 +11,1564.2604044990444,1.9285174505461704,2.0947689549035986,449.5108174816151,0.4938197500014212 +12,1566.0254582717266,1.9306935185409744,2.0971326149669207,450.018028916473,0.494376958002249 +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921 +14,1568.229238167961,1.933410475369152,2.10008379221132,450.6513140778545,0.4950726669994765 +15,1568.8164427249465,1.9341344176436792,2.1008701433026173,450.82005503663623,0.4952580409990332 +16,1563.710683035462,1.927839719758886,2.0940327990484455,449.35284778311006,0.4936462090008717 +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454 +18,1560.7671180085997,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284 +19,1563.612085984862,1.9277181631867784,2.093900763461501,449.32451462279414,0.4936150829998951 +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719 +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155 +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.4957214999994903 +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.4943114170018816 +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.4936536669993074 +25,1556.033423900803,1.9183747175310144,2.083751848352654,447.146686315548,0.4912225830012175 +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.493544416000077 +27,1574.1810331293302,1.9407482181209723,2.1080540989934704,452.3616407030591,0.4969515829980082 +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807 +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664 +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817 +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246 +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286 +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.1346176915523,0.5108064580017526 +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325 +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404 +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.9411894195198,0.509611458001018 +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942 +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001 +10,2442.064002544568,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774 +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285 +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915 +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681 +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428 +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787236,0.5053130829983274 +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368 +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215 +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688 +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261 +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151 +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867 +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316 +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.4320289082005,0.5040950420006993 +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234 +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785 +26,2406.404834514243,3.097979270904169,78.14158352461473,500.9168823241752,0.5015765830030432 +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403 +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163 +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..abcbda028 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/cleaned/mac/without_smell.csv @@ -0,0 +1,891 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.0633631250020698 +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774 +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.0619897500000661 +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.0622673330035468 +4,344.6413629741717,1.1293182672630917,9.864927216974651,62.4778723741728,0.0624052500024845 +5,350.37501142418506,1.148106244065371,10.029045720218097,63.51728956138127,0.0634434590028831 +6,331.7819094104552,1.0871805050072745,9.496841470210605,60.146662644667146,0.0600767500000074 +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.0627374579999013 +8,344.36385060606943,1.1284089167893565,9.856983773130557,62.42756389649351,0.062355000001844 +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.0639817500014032 +10,333.26358795573077,1.0920356582974986,9.539252662186971,60.4152668605175,0.0603450419985165 +11,344.4812065706353,1.1287934679454126,9.860342940581988,62.44883862368592,0.0623762499999429 +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.059838374996616 +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.0641008340026019 +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.0602028339999378 +15,332.94188901480146,1.0909815175889794,9.530044433056672,60.3569480760256,0.0602867910019995 +16,331.5582427131216,1.0864475956289643,9.490439291229483,60.106115511120066,0.0600362499972106 +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.0640001250030763 +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.0596638749993871 +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.0622371659992495 +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.062508709001122 +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.0640984580022632 +22,353.40509298276,1.1580351928887662,10.115778008469515,64.06659405364027,0.0639921250003681 +23,374.3218432757152,1.2265750454292903,10.714493779191155,67.85846060154398,0.0677795839983446 +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.0640302499996323 +25,352.0352477660601,1.1535464942218625,10.07656790540862,63.81826340092126,0.0637440829996194 +26,353.2720858728606,1.1575993561755262,10.111970846592095,64.04248202841661,0.0639680410022265 +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.0626107079988287 +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.0622674580008606 +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.0635365420021116 +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.0593550839985255 +1,359.1743921729426,0.2932833904515045,9.450242581215146,59.406180088121424,0.0579962080009863 +2,369.50288557151976,0.3017171085232877,9.721995719083717,61.1144765375504,0.0596639590003178 +3,367.9933193312075,0.3004844741408879,9.68227750009528,60.86479959542653,0.0594202079992101 +4,368.5615394097468,0.3009484535191182,9.697227946727144,60.95878119615029,0.0595119589997921 +5,348.39381726937063,0.2844805258051475,9.166594720388083,57.62311094919821,0.056255458999658 +6,365.2779196413032,0.2982672179977979,9.610832579929044,60.41568204555396,0.0589817500003846 +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.0610690840003371 +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.0594197909995273 +9,361.874829413902,0.2954884290260495,9.521293824172709,59.85282290160982,0.0584322499998961 +10,366.4269936562932,0.2992054929147739,9.641065882809384,60.605734842625886,0.0591672920018027 +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.0612499999988358 +12,372.0247519362511,0.3037763352772872,9.788348581157033,61.53158435672162,0.060071167001297 +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.0578553330014983 +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.0580023749971587 +15,374.3120558659924,0.3056440303750618,9.848529867640885,61.90989637485975,0.0604404999976395 +16,367.8761650716482,0.3003888119801155,9.679195052692611,60.84542269330562,0.0594012909969023 +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.0573772919997281 +18,350.9303921671755,0.2865517627930121,9.233334578885946,58.04265150796235,0.0566650420005316 +19,373.7742933228857,0.3052049210584259,9.834380789660392,61.82095234327895,0.0603536670023459 +20,375.95244447471293,0.3069834875950296,9.891690155839845,62.18121087619322,0.0607053750027262 +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.0602809169977263 +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292 +23,366.183655668,0.2990067955917256,9.63466341351116,60.56548759596843,0.0591280000007827 +24,382.3439433397997,0.3122024578169295,10.059856974101065,63.238342288918055,0.0617374159992323 +25,366.5838826179828,0.2993336003957399,9.645193790529396,60.63168372460376,0.0591926250017422 +26,361.2944833317239,0.2950145481750603,9.506024330085278,59.756835702570555,0.0583385410027403 +27,363.4254185231531,0.2967545605796025,9.562091396453855,60.10928488184614,0.058682625000074 +28,370.6326000446566,0.3026395754311295,9.75171965278084,61.30132733454991,0.0598463749993243 +29,390.4818932754045,0.3188474904262965,10.273974691513995,64.58433056079316,0.0630514580007002 +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.0633080840016191 +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.0627279159998579 +2,365.8669906637541,0.2818969397389996,11.45206317689686,66.06959525132802,0.0661166249992675 +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.0625610419992881 +4,345.2937631135986,0.2660454690271394,10.80809717922754,62.35440680323581,0.0623987920007493 +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.0622929999990446 +6,352.2442682349835,0.2714007652778453,11.025656089412466,63.609554361995,0.0636548330003279 +7,336.95937238273893,0.2596239024426381,10.547221036732171,60.84935213499331,0.0608926660024735 +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.0629278330015949 +9,337.41659112344763,0.259976185012769,10.561532516143744,60.93191836236774,0.0609752910022507 +10,334.9993053726752,0.2581136899722047,10.485868655120818,60.49539608723549,0.0605384580012469 +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.0598098330010543 +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.061172333000286 +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.0605532500012486 +14,352.943817073241,0.2719397608192168,11.047552783280684,63.73588144200393,0.0637812500026484 +15,345.08740182486946,0.2658864696714779,10.801637830403791,62.31714132925264,0.0623615000004065 +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.0611053329994319 +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.0642670829984126 +18,352.07434056761844,0.2712698376712845,11.020337155395934,63.57886820420732,0.0636241249994782 +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.0631787919992348 +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.0635585829986666 +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.0643522919999668 +22,345.28015583657924,0.2660349847532152,10.807671255599368,62.35194955153482,0.0623963329999242 +23,344.455645883133,0.26539970789416,10.781863133200252,62.20305653769376,0.0622473340008582 +24,346.3271743070028,0.2668417022494483,10.84044415388384,62.54102396471446,0.0625855420003063 +25,339.3314757733539,0.2614515849163855,10.621470637228162,61.277715214777864,0.0613213340002403 +26,351.40222764763104,0.2707519812367377,10.999299237742472,63.45749560236042,0.063502666002023 +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.0622202090016799 +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.0623814999999012 +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.0635208330022578 +0,240.42885516643568,0.0,0.0,53.41728600341795,0.0619687500002328 +1,228.54878409089892,0.0,0.0,50.77783095987262,0.0589067500004603 +2,213.1201140526296,0.0,0.0,47.34996586640836,0.0549301249993732 +3,237.0842698478049,0.0,0.0,52.67420268921069,0.0611067079989879 +4,238.04340130189988,0.0,0.0,52.88729774039662,0.0613539170008152 +5,237.9774440222685,0.0,0.0,52.872643680393544,0.0613369170023361 +6,233.25082854773103,0.0,0.0,51.82250778694279,0.0601186670028255 +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123 +8,239.07317300806952,0.0,0.0,53.11608729108766,0.0616193330024543 +9,234.15515335358452,0.0,0.0,52.02342616989155,0.0603517499985173 +10,235.7027246756318,0.0,0.0,52.3672578612385,0.060750625001674 +11,231.79378555125,0.0,0.0,51.49878922825138,0.0597431250025692 +12,238.1722430460066,0.0,0.0,52.91592315763018,0.0613871250025113 +13,238.895348273858,0.0,0.0,53.076579076987144,0.0615734999992128 +14,245.18230748969597,0.0,0.0,54.473384374303734,0.0631939169979887 +15,239.73953556253844,0.0,0.0,53.26413640578063,0.0617910829969332 +16,237.05193913270705,0.0,0.0,52.6670196118971,0.0610983749975275 +17,238.06603239878575,0.0,0.0,52.89232580482793,0.0613597499977913 +18,238.4611281800858,0.0,0.0,52.98010621843028,0.061461582998163 +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632 +20,236.73621713579013,0.0,0.0,52.59687407052601,0.0610169999999925 +21,239.5788481011822,0.0,0.0,53.22843566564073,0.0617496669983665 +22,240.51291579071105,0.0,0.0,53.43596217440181,0.0619904160012083 +23,237.5108932275132,0.0,0.0,52.76898774765905,0.0612166670034639 +24,237.61047320422924,0.0,0.0,52.79111193110106,0.0612423330021556 +25,235.96202604191544,0.0,0.0,52.42486814780024,0.0608174580011109 +26,250.0384126471728,0.0,0.0,55.55228964081196,0.0644455420006124 +27,216.35622292125151,0.0,0.0,48.068948423030825,0.0557642080020741 +28,237.4518847231131,0.0,0.0,52.75587753194059,0.0612014580001414 +29,235.66344128962425,0.0,0.0,52.35853007411787,0.0607405000009748 +0,393.6707450554323,0.3406635038555142,11.684758182244138,66.53158230298193,0.0646891249998589 +1,373.5110006248911,0.3232182421468424,11.086385705636696,63.12452269127834,0.0613764169975183 +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.0637857080000685 +3,390.9730568158952,0.3383290557423807,11.60468661196366,66.07566458648697,0.0642458330003137 +4,408.3709649248352,0.3533843587096185,12.121083503739916,69.0159652559885,0.0671047080031712 +5,401.99100267653665,0.3478634498758537,11.931716330741784,67.93773176075425,0.0660563339988584 +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.0639412919990718 +7,383.0780350607198,0.3314970881453096,11.37035012338412,64.74138131477898,0.0629484999990381 +8,386.1588591424435,0.3341630833700618,11.46179375959312,65.26205018217308,0.0634547499976179 +9,361.0748654835688,0.3124566160293949,10.717261929808243,61.02277711054082,0.0593328750001092 +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331 +11,384.8334749313357,0.3330161603767183,11.422454300921435,65.03805612157308,0.0632369589984591 +12,403.7246257549707,0.349363642917074,11.98317295205564,68.23071946170457,0.0663412079993577 +13,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.0640180000009422 +14,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.0618219169991789 +15,374.7899823012124,0.3243250106448705,11.12434786511906,63.34067457894322,0.0615865829968242 +16,399.8438036989407,0.3460053683791456,11.867984135404695,67.57484844444714,0.0657035000003816 +17,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.0624640830028511 +18,390.02142447908176,0.3375055594315349,11.576440688501648,65.91483575697877,0.0640894579992163 +19,398.35714556030706,0.3447188867776973,11.82385781647502,67.32359858768429,0.0654592079990834 +20,394.6685243299055,0.3415269334803613,11.714373818376393,66.70021010871457,0.0648530830003437 +21,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.0662763340005767 +22,374.6576210026007,0.3242104716187268,11.120419176522333,63.31830510713735,0.061564833002194 +23,387.9335659886732,0.3356988283044939,11.514469810844142,65.56198116786766,0.0637463750026654 +24,384.9361629864913,0.3331050216220935,11.425502241637808,65.05541072279487,0.0632538329991803 +25,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.0623021250030433 +26,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.0612962499981222 +27,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.0624532500005443 +28,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.0630722080022678 +0,355.6184613008034,1.350364386940586,9.688864476298706,63.33208974751349,0.0633423750005022 +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.0620757910000975 +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.0616344580012082 +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.0619627089981804 +4,346.1149788313074,1.314277496986168,9.429941040875756,61.639614608651286,0.0616496250004274 +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.0632156659994507 +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.059909499999776 +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.0650283340000896 +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.0629628749993571 +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.062907957999414 +10,355.0965683959524,1.3483826405769976,9.67464544613996,63.239145843061195,0.0632494160017813 +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.8239970686508,0.0608338750025723 +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.0635719999991124 +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.0622212499984016 +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.0643149170027754 +15,362.2671094199502,1.3756108198972858,9.870007632763024,64.5161474531827,0.0645266249994165 +16,347.40601521064906,1.3191798565052175,9.465115470424935,61.86953527009471,0.0618795830014278 +17,352.59402676578674,1.3388799193688503,9.6064634214715,62.79346821839908,0.0628036659982171 +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.0598259170001256 +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.0626170420000562 +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.0627399590011918 +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.0636519170002429 +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.0601820419979048 +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.0630970829988655 +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284 +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.0654218749987194 +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.0600325829982466 +27,355.2156405220305,1.3488347845909645,9.677889579440173,63.260351397316235,0.0632706249998591 +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.0624030420003691 +29,347.1143112188389,1.3180721899329368,9.45716796276882,61.81758570785473,0.0618276250024791 +0,336.97433817066894,0.3673290773835455,10.452181929186342,62.212188287776854,0.0631597079991479 +1,330.7703056824168,0.3605661839764725,10.259746871330536,61.066800068015304,0.0619968749997497 +2,334.2737986243397,0.3643852725069603,10.368417299516231,61.713614789133366,0.0626535410010546 +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.0619690830026229 +4,339.2787336454407,0.3698410534238279,10.523659065605283,62.6376256844174,0.0635916249993897 +5,326.52765323109134,0.3559413522487369,10.12814938671406,60.28352174903609,0.0612016669983859 +6,347.80605915722936,0.3791365227162345,10.7881574191074,64.21194016548591,0.06518991700068 +7,312.5587912483423,0.3407141714133153,9.694866877487971,57.70459103118241,0.0585834580015216 +8,375.7459972937605,0.4095932980112343,11.65479111613785,69.37021038135724,0.0704267500004789 +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.0596813330012082 +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925 +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.0633084999972197 +12,337.0256901842581,0.3673850552003606,10.453774752519353,62.22166889438835,0.0631693329996778 +13,317.6766526799566,0.3462930511821943,9.853611365456985,58.64945039567527,0.0595427080006629 +14,328.40589370391314,0.3579887851296248,10.186408158688415,60.630282426953734,0.0615537089979625 +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.0640058329991006 +16,331.6672985956367,0.3615439782530971,10.287569563019948,61.23240286232,0.0621649999993678 +17,337.1901926729352,0.3675643761175589,10.458877247708722,62.252039337001115,0.0632001659978414 +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.0598262499988777 +19,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.0641347500022675 +20,337.3818197078384,0.3677732649674187,10.464821084982006,62.28741751220919,0.0632360829986282 +21,338.1547675106831,0.3686158401166896,10.488796177865805,62.43011910339933,0.0633809579994704 +22,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.0613165419999859 +23,335.28106096612464,0.3654832693119979,10.399660299514125,61.8995755207502,0.0628423339985602 +24,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.0611921659983636 +25,330.93325561554514,0.3607438124834998,10.264801209757769,61.09688387788729,0.0620274169996264 +26,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.0632555420015705 +27,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.0624289170009433 +28,344.64868676424874,0.3756947333670336,10.690222867625591,63.6290262057076,0.0645981249981559 +0,353.39992586587454,1.1889836975204853,9.545840542950184,63.42378752202132,0.0643312920001335 +1,352.47862696982486,1.1858840665138777,9.52095493401142,63.25844434804028,0.064163582999754 +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.0613242500003252 +3,347.78700620443374,1.170099511405862,9.39422750585849,62.41645107984983,0.0633095420016616 +4,349.67239785603925,1.1764427496838772,9.445154647461983,62.75481753313711,0.0636527499991643 +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.058231708000676 +6,343.4510799857494,1.155511660050104,9.277107899259406,61.6382934089584,0.0625202499977604 +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.0598008329980075 +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774 +9,350.0937884628729,1.1778604821878835,9.456537014137009,62.8304434355651,0.0637294580010348 +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.0639502499980153 +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.0675257500006409 +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.0621744999989459 +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.0641838340015965 +14,350.38540207791414,1.1788415911493797,9.464413917513587,62.882778590739754,0.0637825419980799 +15,348.5869825268699,1.1727909630337834,9.415836017499805,62.56002079954495,0.0634551660004945 +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.062153541999578 +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.0602440830007253 +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.0638145829980203 +19,346.13004814041824,1.1645248183134325,9.34947068417356,62.1190810226051,0.0630079170005046 +20,348.3924269467375,1.172136397494551,9.410580791313391,62.525104403495035,0.063419750000321 +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.064945041998726 +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.0636446669996075 +23,350.6754061403116,1.179817284909248,9.472247344557106,62.934824883587595,0.0638353329995879 +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047 +25,354.05204084193906,1.191177682348156,9.563455106852338,63.54082094125735,0.0644500000016705 +26,348.6677854950157,1.173062817680049,9.418018621945537,62.57452230310432,0.0634698750000097 +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.0643432079996273 +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307 +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.0573486249995767 +0,361.4635469396571,0.1704534315475134,7.124953438686063,62.82913486841347,0.0632451250021404 +1,355.6449183357349,0.1677095719776171,7.010260108664397,61.81774823094969,0.0622270419989945 +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846 +3,359.06288961197356,0.1693213664113805,7.077633115995706,62.41185565923486,0.0628250829977332 +4,356.22239586901475,0.1679818899693552,7.02164300071905,61.91812464270435,0.0623280830004659 +5,358.4918360781341,0.1690520777506998,7.066376849979254,62.31259585890797,0.0627251660007459 +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.0637023749986838 +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.0603141669998876 +8,331.99176104587264,0.1565555791030239,6.5440232065064015,57.706386457374634,0.0580884590017376 +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839 +10,355.5541882946238,0.1676667868973987,7.008471692311268,61.80197765038118,0.0622111670018057 +11,353.1251946264822,0.1665213593447525,6.960592820610656,61.379773054475784,0.0617861669998092 +12,349.0251905083527,0.1645879423315819,6.879775989460126,60.66711554342111,0.061068791001162 +13,360.0216334165911,0.1697734760994959,7.09653130095893,62.578503290274206,0.0629928339985781 +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.0626576660033606 +15,358.13035037901693,0.1688816138729684,7.059251459890081,62.249762873576174,0.0626619169997866 +16,362.65327374016647,0.1710144646515922,7.148404622436555,63.03593167057689,0.0634532910007692 +17,356.01021613514007,0.1678818335070923,7.017460640596461,61.88124383071425,0.0622909580015402 +18,356.18572663045944,0.1679645980526546,7.020920198600964,61.911750842208505,0.0623216669991961 +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.0622395829996094 +20,344.49440292303365,0.1624513830628282,6.790467812026222,59.8795797969585,0.0602760410001792 +21,361.4361650173394,0.1704405192008579,7.124413702595863,62.82437537743625,0.0632403339986922 +22,356.7505848359848,0.1682309652154978,7.032054346007811,62.00993377843252,0.0624205000021902 +23,339.33422020631144,0.16001802329827,6.688753373867688,58.98264338774234,0.0593731659973855 +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.0574885409987473 +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.0593831249971117 +26,340.30344013425093,0.1604750731558289,6.7078580579136515,59.15111196523856,0.0595427500011283 +27,342.4523851103312,0.1614884396445964,6.750216777144131,59.52463885299824,0.0599187500010884 +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.0670434999992721 +29,331.530252230005,0.1563379478590988,6.5349262205103305,57.62616758086382,0.0580077089980477 +0,353.42379519516624,0.3071766447857553,10.170960016239452,63.756219162198995,0.0638574579970736 +1,344.73567152495644,0.2996254025808409,9.920929996565622,62.188916891223435,0.0622876669985998 +2,351.2821477228619,0.3053152418643898,10.109326897287575,63.369874644742254,0.0634705000011308 +3,345.7318892341187,0.3004912605607984,9.949599516346437,62.36863052528573,0.0624676660008844 +4,351.83422142570913,0.3057950741507853,10.125214677437114,63.46946650151855,0.063570250000339 +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.0641249580003204 +6,366.573482495449,0.3186056342307138,10.54938655563919,66.12836941588593,0.0662333750005927 +7,348.3338361205126,0.3027527305731157,10.024479301198722,62.83801119006447,0.0629377919976832 +8,338.34369848808836,0.2940698489997871,9.736979444659616,61.035830881289144,0.0611327499973413 +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.0620771249996323 +10,351.68294492465503,0.3056635928847798,10.120861186629378,63.442176834307645,0.0635429169997223 +11,347.70289474870646,0.3022043508197352,10.006321838253456,62.724191925696154,0.0628237919991079 +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049 +13,345.35761370997443,0.300165960732957,9.938828477602357,62.301112738795965,0.0624000410025473 +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.0660244169994257 +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.0636525410009198 +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.0592579170006501 +17,347.8889892534473,0.3023660939914075,10.011677334382162,62.75776261954993,0.0628574160000425 +18,342.946615110539,0.29807045253451,9.869443872809333,61.86617837049608,0.0619644159996823 +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.0605625409989443 +20,326.0613287092618,0.2833946845372627,9.38351288801159,58.820141190622984,0.0589135420013917 +21,345.1205513106695,0.2999599190532134,9.932006208650844,62.258347643489195,0.0623572080003214 +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113 +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.0601117920014075 +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.0609711670003889 +25,345.27367635482636,0.3000930069718432,9.936412897512144,62.28597078037814,0.0623848750001343 +26,358.1507803712324,0.3112850819257451,10.306994934874671,64.60894811525466,0.0647115410029073 +27,318.84747151039136,0.2771247941664435,9.175909851288909,57.51879061143516,0.0576101250007923 +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.0628379999980097 +29,346.3464648714801,0.3010254161123439,9.967286000164275,62.47949747753983,0.0625787089993537 +0,377.1528286364101,0.2364171040077792,5.944201472195592,62.00882899404038,0.0626814159986679 +1,380.0216765811429,0.2382154326200412,5.989416591589608,62.48050489862795,0.0631582079986401 +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744 +3,384.3681985530305,0.2409400367037891,6.057920922838127,63.19512962687955,0.06388058399898 +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.0627903750028053 +5,381.03628983828423,0.2388514398556451,6.005407630656221,62.64732051070922,0.0633268329984275 +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.0620384590001776 +7,375.29157816409594,0.2352503848077972,5.914866818024616,61.702815215302245,0.0623720830008096 +8,373.864807786008,0.2343560181339712,5.892379884511276,61.46823561342445,0.0621349590001045 +9,366.9212068192651,0.2300034429779578,5.782943709160084,60.32661732964724,0.0609809580018918 +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666 +11,376.9342197202937,0.2362800696733281,5.940756037500822,61.97288684574722,0.0626450839990866 +12,379.717825115604,0.2380249642526397,5.984627672637799,62.430547766835225,0.0631077090001781 +13,366.6025595729651,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667 +14,363.89742763866343,0.2281079961915146,5.7352867613866545,59.82946871537442,0.0604784169991035 +15,369.6993006425364,0.2317448826450931,5.82672847793377,60.78337207662728,0.0614426669999375 +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.0611225419997936 +17,350.4494712628639,0.2196781856219259,5.523337238494139,57.61844982883658,0.0582434160023694 +18,349.70537539320884,0.2192117513882387,5.5116097491900025,57.49611079268662,0.0581197499996051 +19,355.4250143168058,0.2227970896586048,5.601755397130637,58.436493801885504,0.0590703329980897 +20,355.92618062609483,0.2231112442359329,5.609654140789172,58.51889205959614,0.0591536249994533 +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.0605397500003164 +22,374.2340939261083,0.2345875040281864,5.898200101280116,61.52895105653575,0.0621963330013386 +23,349.4985417056227,0.2190820983199927,5.50834990061696,57.46210464507238,0.0580853749997913 +24,363.71014915375633,0.2279906012426161,5.732335116957206,59.79867769734903,0.060447292002209 +25,352.26058825141075,0.2208134788000246,5.551881752686334,57.9162210109779,0.0585444169992115 +26,380.4172990516413,0.2384634273628986,5.995651887981451,62.5455503768974,0.0632239590013341 +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.0632881659985287 +28,366.6672421192952,0.2298442459778871,5.778941041729735,60.28486223077155,0.0609387500007869 +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893 +1,348.55779789257946,0.2332158846538,10.361448589618831,61.6356266585043,0.0617304580009658 +2,358.33485910912873,0.2397576002450679,10.652087668030877,63.36450863619653,0.0634620000018912 +3,346.03077541432424,0.2315250839132354,10.286328728145175,61.188772177069374,0.0612829159981629 +4,319.4310664622174,0.2137275344327587,9.49560902979828,56.485134100086235,0.0565720409977075 +5,354.87217509222506,0.2374407594767325,10.549153742466258,62.75220071885074,0.06284874999983 +6,354.41904767108167,0.2371375772985635,10.535683791407608,62.672074000334646,0.0627684999999473 +7,358.9152630876629,0.2401459416568189,10.669341122181528,63.46714172358787,0.0635647909984982 +8,339.35785444139424,0.2270603117080634,10.087965277315387,60.00879666570248,0.0601011250000738 +9,340.8776918175967,0.2280772168536777,10.1331449202134,60.27755016847198,0.0603702920016075 +10,354.0640272849366,0.2369000373728308,10.525130231850056,62.60929559139101,0.0627056250013993 +11,354.00708848272853,0.2368619402962244,10.523437633160828,62.59922707828788,0.0626955409970833 +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.0627899579994846 +13,343.10921309321594,0.2295703012476115,10.199480526858167,60.67215104401161,0.0607655000021623 +14,340.4605604865636,0.2277981192320727,10.120745011596377,60.20378865419067,0.0602964169993356 +15,356.3056669698578,0.2383998918743074,10.591766624701371,63.00568570963839,0.0631026249975548 +16,320.99748703681513,0.2147756078434052,9.542173434185576,56.762124930042816,0.0568494580002152 +17,354.8119444278913,0.2374004598542572,10.547363287810573,62.74155010433942,0.0628380829984962 +18,351.575824142101,0.2352352101887504,10.451164338385912,62.16930554988405,0.0622649580000143 +19,343.1440347346409,0.2295935999945026,10.200515656898617,60.6783085699757,0.0607716670019726 +20,356.72044373402287,0.2386774140831734,10.60409653998099,63.079030864838685,0.0631760830001439 +21,350.96718789534884,0.2348279789014951,10.43307163405214,62.061680138252285,0.0621571669980767 +22,352.7963997956422,0.2360518828684281,10.487447938868735,62.3851404723703,0.0624811250017955 +23,353.666658527277,0.2366341626544579,10.513317797933777,62.539028701535315,0.0626352500003122 +24,364.4598431575399,0.2438557543588969,10.83416280080242,64.44759222342276,0.0645467499998631 +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554 +26,338.0789340735709,0.2262046012727008,10.04994728511571,59.78264462207094,0.0598746250034309 +27,355.0131047850516,0.2375350538611509,10.553343107259709,62.77712137758989,0.0628737090009963 +28,329.98898622367545,0.2207917132064354,9.809460401028776,58.35209563312938,0.058441875000426 +29,353.84475877944084,0.2367533274188573,10.518612118180664,62.5705222464123,0.0626667920005275 +0,246.26397969829708,0.0,0.0,54.43476538811038,0.0630743330002587 +1,242.4809969916464,0.0,0.0,53.59856605292504,0.0621054169969284 +2,239.1234239616921,0.0,0.0,52.85640026650788,0.0612454589972912 +3,235.2940732640157,0.0,0.0,52.009951642262514,0.060264666997682 +4,238.8820026774676,0.0,0.0,52.80303594184067,0.0611836249991029 +5,234.2631621094942,0.0,0.0,51.782076632278866,0.0600006249987927 +6,239.56428704081335,0.0,0.0,52.95384967144987,0.0613583750018733 +7,240.1634400598459,0.0,0.0,53.08628785450275,0.0615118329988035 +8,240.7378668708275,0.0,0.0,53.213260498763326,0.0616589579985884 +9,239.34922398149791,0.0,0.0,52.906311630393986,0.0613032920009573 +10,242.8128624545116,0.0,0.0,53.67192237013237,0.0621904159997939 +11,232.12976143215943,0.0,0.0,51.31050476256479,0.0594542079998063 +12,245.03915532867256,0.0,0.0,54.164027348045266,0.0627606250018288 +13,236.2355085499188,0.0,0.0,52.218048697215536,0.0605057920001854 +14,239.34987210662737,0.0,0.0,52.906454893486725,0.0613034580019302 +15,238.92934287039128,0.0,0.0,52.81350012867948,0.0611957500004791 +16,238.7121636534104,0.0,0.0,52.7654943271895,0.0611401249989285 +17,240.5050741873832,0.0,0.0,53.161803460170496,0.0615993339997658 +18,239.09170116971927,0.0,0.0,52.84938818646023,0.0612373340009071 +19,242.39574953227935,0.0,0.0,53.57972275535363,0.0620835830013675 +20,239.42991118529753,0.0,0.0,52.92414691842122,0.0613239580015942 +21,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058 +22,241.4102263831343,0.0,0.0,53.36188041611268,0.0618311660000472 +23,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936 +24,226.55614444164797,0.0,0.0,50.07849944204095,0.0580266659999324 +25,244.4723732267422,0.0,0.0,54.038744508132766,0.0626154580022557 +26,238.2831737209998,0.0,0.0,52.670669390334176,0.0610302500026591 +27,242.49953873943076,0.0,0.0,53.602664564172066,0.0621101659999112 +28,238.44536412992605,0.0,0.0,52.70652033722831,0.0610717910021776 +0,330.77706061011514,0.2608137674828426,10.33474553650764,61.4542439631448,0.0611662920018716 +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.0624705829977756 +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886 +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.0622007080019102 +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.0638947090010333 +5,339.8455414183246,0.2679641564504826,10.618079699350377,63.13905436364497,0.0628432080011407 +6,345.3511691216465,0.2723052782350849,10.79009665006524,64.16193118414189,0.0638612919974548 +7,342.53413726212943,0.2700840822094456,10.702081757549283,63.638561870600626,0.0633403749998251 +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.0631592919999093 +9,311.5008417190181,0.2456146987731268,9.732482438885151,57.872963398418015,0.0576017919993319 +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.0591447920014616 +11,313.26424396705994,0.2470051204155804,9.787577896467376,58.20058149792115,0.0579278750010416 +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.0641434579993074 +13,340.49019830223455,0.2684724607153436,10.638221255845492,63.258823556052846,0.062962415999209 +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.0633342080000147 +15,339.41178997419223,0.2676221486096528,10.604527638657494,63.058468766149446,0.0627629999980854 +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.063857832999929 +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.0636132500003441 +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.0645286670005589 +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.0640427080033987 +20,341.9755514445675,0.2696436439539266,10.684629391674344,63.53478360664397,0.0632370830026047 +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.0615041249984642 +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.0586524169993936 +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.0636538750004547 +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.0640091250024852 +25,343.06680876474195,0.2705040873366781,10.718724460715867,63.73752557870477,0.0634388750004291 +26,345.3649158389056,0.272316117357702,10.79052615029894,64.16448515240853,0.0638638339987665 +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.0640631250025762 +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.0625225420008064 +29,339.69705314558837,0.2678470752182837,10.613440355524494,63.11146709830811,0.0628157499995722 +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452 +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.0633994999989226 +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.0633070830008364 +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.0625170000021171 +4,341.2276327610607,1.1792449629834103,10.514934253268745,61.61554931588319,0.0613077500020153 +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.0623294999968493 +6,346.9583356729764,1.1990496384973743,10.691525943268257,62.65034361148781,0.0623373750022437 +7,349.52325272198976,1.2079137081685354,10.770563897836109,63.11349125180597,0.0627982089972647 +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.0630362500014598 +9,349.6454613517626,1.208336047678166,10.774329758463644,63.13555849118416,0.062820166000165 +10,380.9826285174108,1.3166338318735518,11.739985000872505,68.79411771539309,0.0684504579985514 +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.0568042079976294 +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.0622269169980427 +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.0617767499970796 +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.0641705000016372 +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.0611342090014659 +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687 +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.0623579169987351 +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578 +19,357.74395683758917,1.2363235524770289,11.02388500958684,64.59790561692476,0.0642752079984347 +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.0639412499986065 +21,350.5608098293886,1.2114993907898617,10.802536234542933,63.300843168770264,0.0629846250012633 +22,352.93602165071184,1.2197078601733349,10.8757284198789,63.729735694056735,0.0634113750020333 +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.0570584579982096 +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.0630519169972103 +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.0629439170006662 +26,347.9465017031017,1.202464631017727,10.7219762932414,62.82877697067623,0.0625149170009535 +27,352.52809188308873,1.2182981000087545,10.863158058411392,63.65607572545742,0.0633380830004171 +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023 +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.0611057499991147 +0,377.80027211049406,0.3116878218896733,10.909073766138569,64.90033091347199,0.0646291250013746 +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.062719665998884 +2,365.138799454798,0.3012420199003742,10.543470696513095,62.72528281036681,0.062463166002999 +3,372.9749204140684,0.3077068735655527,10.769740574794348,64.07140900687176,0.063803666998865 +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.0574257089974707 +5,353.0611685087077,0.2912778913354449,10.194726196740575,60.65052981806932,0.0603970830015896 +6,358.20146127741265,0.2955186682094338,10.343153387330185,61.533553802719894,0.0612764170000446 +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.0627197499998146 +8,370.3431490069413,0.3055356440610937,10.69374754213828,63.61931077449885,0.0633534579974366 +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.96508971696144,0.0636977919966739 +10,376.0095517358092,0.3102104652692531,10.85736628442386,64.59271243495337,0.0643227920008939 +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.0631544160023622 +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.0602364999976998 +13,356.8106779834024,0.2943712624301605,10.30299418505562,61.29463842156898,0.0610384999999951 +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.0637497499992605 +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.0652685829991241 +16,368.50737025878874,0.3040211139727838,10.640738989047431,63.30395195388854,0.0630394170002546 +17,375.27104536938856,0.3096011924396825,10.83604173538889,64.46584829244057,0.0641964579990599 +18,361.6927852373143,0.2983990344794049,10.443966206779171,62.133310068267214,0.0618736670003272 +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.0602696669993747 +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.0596034159971168 +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.0610374579991912 +22,365.3711704842491,0.3014337275972355,10.550180465903242,62.76520061302437,0.0625029169968911 +23,360.55117343559215,0.2974571968943376,10.411001891301815,61.93719855333208,0.0616783749974274 +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.0590651249985967 +25,363.9940309949737,0.3002975780506703,10.510415231773464,62.52862902966181,0.062267334000353 +26,358.9745505884595,0.2961564722060808,10.365476527212827,61.66635876824394,0.0614086669993412 +27,374.9619557919834,0.3093461914133147,10.827116699466018,64.41275141206133,0.0641435830002592 +28,361.3880799001845,0.2981476504814062,10.435167766849217,62.0809663335728,0.0618215419999614 +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.063004916999489 +0,350.0910376507284,0.236639364962833,11.25727264751763,63.11509919794418,0.0630889589992875 +1,356.37546692202835,0.2408872410635572,11.459350182023508,64.24806843795162,0.0642214590006915 +2,332.9498947627177,0.2250530381748767,10.706094530319138,60.024860324642134,0.0600000000013096 +3,344.6223300836617,0.2329428650623437,11.08142486653721,62.12918986734226,0.0621034579999104 +4,354.8452791425179,0.2398529310542318,11.410146577294173,63.97220318260727,0.0639457079996645 +5,360.7172223274056,0.2438219926894398,11.598960509369068,65.03080862159774,0.0650038749990926 +6,345.0863790001193,0.2332565327347271,11.096346485809166,62.212849516533666,0.0621870830000261 +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.0630313330002536 +8,348.98767498943727,0.2358935616962206,11.22179372069164,62.91618281240628,0.0628901249983755 +9,350.3400508932428,0.2368076821410486,11.265279736138456,63.1599917939054,0.0631338330022117 +10,345.9441911217454,0.2338363593909055,11.123929668167364,62.36749756897438,0.0623416670023289 +11,351.08109746493335,0.237308582681975,11.289108290442528,63.29358912389249,0.0632673750005778 +12,329.7454850782693,0.2228870602112674,10.603055864336008,59.447163059205174,0.0594225419990834 +13,345.43644252185425,0.2334931535006739,11.10760287367492,62.27595965510834,0.0622501670004567 +14,335.9221662007163,0.2270621053886649,10.80166872777506,60.56070725151963,0.0605356249980104 +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.0625607500005571 +16,343.85677837624013,0.232425400601939,11.056808342920815,61.99117470340289,0.0619654999973136 +17,355.4441283707007,0.2402577151984264,11.429402737296574,64.08016489649461,0.0640536249993601 +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.23394875574533,0.0592094160019769 +19,343.34116662973724,0.2320768797226883,11.04022870680789,61.89821920603703,0.061872582999058 +20,348.2829310492102,0.2354171994345762,11.199132487387695,62.78913019205054,0.0627631249990372 +21,343.4116854085347,0.2321245459501489,11.0424962573428,61.91093246984688,0.0618852909974521 +22,353.14099187217386,0.2387009408174215,11.355344756028764,63.664950929446555,0.0636385830002836 +23,348.2216627188161,0.2353757859242673,11.197162387540146,62.77808461722959,0.0627520839989301 +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.0587976249989878 +25,328.22177318395427,0.2218571274901197,10.554060493458554,59.17246528915051,0.0591479579998122 +26,344.13585700434845,0.2326140400763266,11.065782192202397,62.0414875460717,0.0620157920020574 +27,347.5217742944843,0.2349027056837959,11.174657284672003,62.6519073588067,0.0626259589989786 +28,341.68127822516465,0.2309549003066968,10.986854543161437,61.59897126751471,0.0615734589991916 +29,354.82354305874037,0.2398382388384687,11.409447647601445,63.968284558774464,0.0639417909987969 +0,341.6843896416646,0.2265596975932227,10.162820720610275,60.03831986220403,0.0603289999999105 +1,355.1767007392971,0.2355060059841886,10.56412655414789,62.40909158580999,0.0627112499969371 +2,361.3328929961324,0.2395879748956073,10.747232016745816,63.490813347335944,0.0637982089974684 +3,325.33522572126685,0.2157191039167252,9.676542661407389,57.165562537932175,0.0574423340003704 +4,359.5754915168495,0.2384226996891111,10.69496110034013,63.18201541761446,0.0634879159988486 +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.0637705829976766 +6,362.5121173216168,0.2403698798192021,10.782306037604211,63.69801815208857,0.0640064170002006 +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.0625325840010191 +8,366.4686706564167,0.2429933403992532,10.899986983623648,64.39323520580211,0.0647050000006856 +9,326.0245413625624,0.2161761664808124,9.6970451821393,57.28668411741529,0.0575640419992851 +10,353.9262046474312,0.2346768430929258,10.526932675882676,62.18936341962535,0.0624904579999565 +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.0648867500021879 +12,362.23199716425125,0.2401841413422145,10.773974340207907,63.64879745568685,0.0639569579980161 +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.0621640839999599 +14,349.1769734349746,0.2315277838443518,10.385674875303785,61.35486271875324,0.0616519169998355 +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.0615940830030012 +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.0619958749994111 +17,355.15546194816227,0.2354919232392854,10.563494842447945,62.40535965841063,0.0627075000011245 +18,351.3492284590744,0.2329681348123066,10.450284904437757,61.736555725261255,0.0620354580023558 +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.0613407090022519 +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604 +21,323.2755250958313,0.2143533840741516,9.61528037132623,56.80364677965019,0.0570786659991426 +22,346.4812920955575,0.2297403660764329,10.305496421142848,60.88119701025472,0.0611759580024227 +23,362.6600753923095,0.2404679859568216,10.786706798634572,63.72401627855775,0.0640325409985962 +24,355.4261350672641,0.2356713976954484,10.571545553767258,62.45292038929383,0.0627552910009399 +25,358.8557392353121,0.2379454555884422,10.673553293538694,63.05554573093719,0.063360833999468 +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057 +27,349.93779309502264,0.2320322583750268,10.408304161394062,61.48854846938211,0.0617862500002956 +28,343.8514567140059,0.2279966086007427,10.227276442947606,60.41910127919684,0.060711624999385 +29,341.386570501989,0.2263622235023134,10.153962597103774,59.98598922811306,0.0602764160030346 +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.0610715000002528 +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.0585037499986356 +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.0611541670004953 +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.0613001669989898 +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.0593751670021447 +5,234.91751197548183,0.5667089121020564,0.0,53.77067501297747,0.0606549160002032 +6,236.52417105423336,0.5705847747867131,0.0,54.13842598417459,0.0610697500014794 +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.060860749999847 +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.0579030840017367 +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.061600166001881 +10,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.0624751249997643 +11,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.0611307920007675 +12,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.0609432919991377 +13,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.0610500000002502 +14,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.0608165829980862 +15,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.0616963329994177 +16,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.0619737499982875 +17,236.8819409910412,0.5714478497016745,0.0,54.22031656287064,0.0611621250027383 +18,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.0610076659977494 +19,235.3475795194772,0.5677463958891886,0.0,53.8691139158389,0.0607659580018662 +20,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.061068625000189 +21,238.7517986631784,0.5759586458456127,0.0,54.64831151464549,0.0616449160006595 +22,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.0616773340007057 +23,237.2802187825453,0.5724086447145267,0.0,54.31147905438421,0.0612649589966167 +24,236.2441867895784,0.5699093480094838,0.0,54.074339902311614,0.0609974590006459 +25,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.0610905829998955 +26,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.0587892079965968 +27,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.0620941250017494 +28,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.0597400420010671 +0,344.373267273601,0.2352735575751715,10.587310090882715,63.08692393837098,0.0634621249992051 +1,342.4823762323536,0.233981713217497,10.529177094787368,62.74052510132029,0.0631136660012998 +2,345.31927445296463,0.235919863475576,10.616393856400922,63.260226249093755,0.0636364580022927 +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.0636334160008118 +4,328.0017047540005,0.2240886134372441,10.083987604675986,60.08776106024389,0.0604451250001147 +5,318.0521033356242,0.2172911110042328,9.77809999519048,58.26505933642072,0.0586115830010385 +6,346.70889830534406,0.2368692453774554,10.659116041985495,63.51479622478341,0.0638925419989391 +7,314.29836506293805,0.2147265816358156,9.6626961736117,57.57739910434655,0.057919833001506 +8,346.87417673892634,0.2369821625192743,10.664197313367344,63.54507414981113,0.0639229999978852 +9,339.65000365733727,0.2320466548508062,10.44209946828628,62.221653022137616,0.0625917079996725 +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.0635079589992528 +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.0616562089999206 +12,348.17607141497996,0.2378716084232734,10.704222379047303,63.783572715783464,0.0641629170022497 +13,341.54157300846134,0.2333389626253396,10.50025331814028,62.56817612110891,0.0629402919985295 +14,339.28033302634714,0.2317940983002566,10.43073442351155,62.15393178708312,0.0625235840016102 +15,319.2664966692951,0.2181207765650074,9.815434945425334,58.48752823035984,0.0588353749990346 +16,353.3388710465269,0.2413987992705141,10.862945967173138,64.72936374725073,0.0651143329996557 +17,341.457685719264,0.2332816513795479,10.497674312079658,62.55280851991593,0.0629248330005793 +18,314.12879430577607,0.2146107320066789,9.657482940300552,57.54633485379091,0.0578885840004659 +19,342.5287288615394,0.2340133810297458,10.530602146338564,62.74901659897613,0.0631222080010047 +20,341.5811371692552,0.2333659926005062,10.50146966702278,62.57542401587859,0.0629475829991861 +21,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.0638293329975567 +22,338.38881272636,0.2311850174784813,10.403325786531662,61.99061111530136,0.0623592920019291 +23,344.76916932805335,0.2355440352621875,10.599481586798438,63.15945059816086,0.063535083001625 +24,344.2170292735118,0.235166816798222,10.58250675591999,63.0583021614661,0.0634333329981018 +25,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.063504041001579 +26,334.4460499034867,0.2284913477771234,10.282110649970557,61.2683228253801,0.0616327079987968 +27,341.1402445342186,0.2330647776439127,10.487914993976077,62.494655376803465,0.0628663339994091 +28,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462 +0,329.80854336715817,0.2333393777612803,10.666942983372811,62.50161904320008,0.0632824170024832 +1,335.5288092279848,0.2373864629670399,10.851952592778972,63.58565972331428,0.0643799999998009 +2,321.7799299616298,0.2276591378341832,10.407274872419803,60.9801262055848,0.0617419170011999 +3,329.7051746137013,0.2332662444204476,10.663599744934748,62.48202975547704,0.0632625829966855 +4,331.94620271569426,0.2348517706700889,10.736080944918353,62.90672428663097,0.0636925830003747 +5,333.0858280497938,0.2356580550180469,10.77293965796786,63.12269330840544,0.0639112500030023 +6,312.36717422581074,0.2209996179078911,10.10283967578931,59.19632622532799,0.0599358330000541 +7,327.8797790820893,0.2319747780043082,10.604561280196949,62.13610125115399,0.0629123329999856 +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.063090290997934 +9,331.0710760494818,0.2342326189959948,10.707776868388336,62.7408800882129,0.063524667002639 +10,310.75220077947944,0.2198570250107495,10.050606857634266,58.89027455645078,0.0596259579979232 +11,341.9923928625649,0.2419594451220895,11.061003205581237,64.81056565770255,0.065620208002656 +12,327.95947629563574,0.2320311637426167,10.607138913948194,62.15120457391521,0.0629276250001567 +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519 +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.0625667500025883 +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.0641760830003477 +16,327.93276637308287,0.2320122664859086,10.606275039355824,62.14614280872553,0.0629225000011501 +17,324.008361361325,0.2292357519233146,10.479348659351526,61.40243355088785,0.0621694999972533 +18,324.96622889461435,0.2299134427190519,10.510328810013805,61.58395787117464,0.0623532919998979 +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.063567208002496 +20,327.4695771381485,0.2316845603362684,10.59129418680084,62.058364375786184,0.0628336250010761 +21,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.0607522499994956 +22,329.8941037233372,0.2333999116700384,10.669710247773184,62.517833483046005,0.0632988340003066 +23,323.0526671214134,0.2285595987315437,10.448438799156284,61.22132108880636,0.0619861249979294 +24,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.0633283329989353 +25,315.26661635015887,0.2230509717456147,10.1966158512281,59.745796003289655,0.0604921669983014 +26,333.9946170348847,0.236301022765736,10.802332469290793,63.29491681225073,0.0640856249992793 +27,316.09592705316356,0.2236377086488927,10.22343810966367,59.90295767381056,0.0606512920021486 +28,325.3592739458097,0.2301915218941447,10.523041000875187,61.65844336450306,0.0624287079990608 +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.0634840419988904 +1,347.5338735270447,0.2657494731615711,9.998823927704114,61.52100303690372,0.0620952919998671 +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.0612300419998064 +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.0624869169987505 +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.0628582499994081 +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.0631118750025052 +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.0606008330032636 +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822 +8,349.36704941119723,0.2671512517003993,10.051565845227524,61.845514768642445,0.0624228329979814 +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.0633064590001595 +10,347.2269851313199,0.2655148041531791,9.989994506263365,61.46667716146096,0.0620404590008547 +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.0602130829975067 +12,350.48943947996935,0.2680095121238534,10.083857893659983,62.04420205667207,0.0626233750008395 +13,360.8859284017174,0.2759594176270062,10.382973088216112,63.88460518065195,0.0644809580007859 +14,353.76099420840256,0.2705111789014739,10.177983106167956,62.62333791569122,0.0632079170027282 +15,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.0618185419989458 +16,355.1032874398208,0.2715375931484005,10.21660194220857,62.86095281385472,0.0634477499988861 +17,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587 +18,344.7340828392565,0.2636085512057017,9.918271739114529,61.025379604119955,0.0615950419996806 +19,349.0872158684356,0.2669372707845043,10.043514813266976,61.79597818661276,0.0623728339996887 +20,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.0648655000004509 +21,351.9040263790746,0.2690912073248515,10.12455667559754,62.29461449570313,0.062876125000912 +22,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.0622356249987205 +23,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.0632546249980805 +24,326.03476636272546,0.2493097047315813,9.380277640525748,57.715196645361075,0.0582539589995576 +25,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.062940374999016 +26,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.063144416999421 +27,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.0632301670011656 +28,353.3169846035595,0.2701716571237312,10.165208599280389,62.544738624143775,0.0631285839990596 +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057 +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.0611507499997969 +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.0614833750005345 +3,232.13575724922015,0.7657034323778565,0.0,52.259259259788706,0.0585086249993764 +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.0618704159969638 +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.0566604589985217 +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.0621952089968544 +7,244.0876652220984,0.8051269880882851,0.0,54.949916937025456,0.0615210420000948 +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702 +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.059902625001996 +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.0606438329996308 +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.0611773339987848 +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.0575685409967263 +13,243.28010263868015,0.8024632302540302,0.0,54.76811546483757,0.0613174999998591 +14,241.72548654155145,0.7973353047000047,0.0,54.41813454577533,0.0609256669995375 +15,242.0336340586369,0.7983517341131507,0.0,54.48750585322254,0.0610033339980873 +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.0621428749982442 +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.0613224580010864 +18,250.56832102039976,0.8265035327775692,0.0,56.4088661120691,0.0631544579991896 +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.0616879589979362 +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.0614238340021984 +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.0608379170007538 +22,249.0137049377049,0.821375607271154,0.0,56.05888519625626,0.0627626250025059 +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.061630124997464 +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.0607461250001506 +25,242.13265613002585,0.7986783599671,0.0,54.50979806775457,0.0610282920024474 +26,233.01622352722865,0.7686076641909685,0.0,52.4574730810336,0.0587305420012853 +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.0629959580001013 +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.0622290829996927 +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.0632171249999373 +0,378.2830151197381,0.2429563359792794,9.718253439171178,64.97346585045874,0.0655562920001102 +1,353.2040927683805,0.2268491283033914,9.073965132135658,60.66593831199269,0.0612101250007981 +2,357.24886858454886,0.2294469290844887,9.177877163379549,61.36066446373754,0.0619110829975397 +3,348.1538269708763,0.2236055407648531,8.944221630594125,59.79851033025787,0.0603349160010111 +4,358.26397198427844,0.230098890163313,9.203955606532524,61.53501748367458,0.0620870000020659 +5,356.8740379487522,0.2292061900762698,9.168247603050794,61.29628397468245,0.0618461250014661 +6,349.28482212183866,0.2243319345676548,8.973277382706195,59.99276878723571,0.0605309169986867 +7,362.52080833113473,0.2328328891015637,9.313315564062547,62.266166914018186,0.0628247080021537 +8,368.1793617620893,0.2364671559165634,9.45868623666254,63.23807369654383,0.0638053330003458 +9,372.0570396746568,0.2389576362714559,9.558305450858237,63.90409930002364,0.0644773329986492 +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.0619698750015231 +11,363.9811926115906,0.2337708366163073,9.350833464652291,62.517000877961046,0.0630777920014225 +12,354.28483392042943,0.2275432459347652,9.101729837390607,60.851565198554354,0.0613974170009896 +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.0630681250004272 +14,356.9596353834419,0.2292611659495451,9.170446637981808,61.31098609393551,0.0618609590019332 +15,378.40779325868374,0.2430364760813639,9.72145904325456,64.99489760347333,0.0655779160006204 +16,387.2890894266006,0.2487405840890177,9.94962336356071,66.52033905923446,0.0671170409987098 +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.0630379169997468 +18,365.2316744876873,0.234573972053749,9.382958882149962,62.731782240659754,0.0632944999997562 +19,373.77107717779,0.2400584952972319,9.602339811889276,64.19850045663115,0.0647743749977962 +20,344.6805585467942,0.2213747967545242,8.85499187018097,59.20194564635276,0.05973300000187 +21,362.17699331162976,0.2326120702065701,9.304482808262808,62.20711363238563,0.0627651249997143 +22,356.0515201334432,0.2286779191608498,9.147116766433992,61.155009238444414,0.0617035830000531 +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.0631745829996361 +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986 +25,373.78310260490974,0.2400662187571674,9.6026487502867,64.20056593048821,0.0647764589994039 +26,367.3291981816165,0.2359211292110574,9.436845168442298,63.0920505547285,0.0636579999991227 +27,372.0101555478638,0.2389275244366498,9.557100977465993,63.89604653505835,0.0644692079986271 +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603 +29,358.8888493859939,0.2305002243969132,9.22000897587653,61.64234572443166,0.0621952910005347 +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.0610695840005064 +1,348.61418586415783,0.328045719266169,8.988452707893032,60.78687178002113,0.0609865000005811 +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.0629059159982716 +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471 +4,358.8403201050791,0.337668504850926,9.252117032915374,62.5699739488766,0.0627754579982138 +5,342.5880675551526,0.3223751459067964,8.833078997846224,59.736114536529385,0.059932291998848 +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.0610672920010983 +7,345.5035960299564,0.3251186562811295,8.908251182102951,60.24448700889331,0.0604423340009816 +8,376.33157594924216,0.3541277650788013,9.703100763159156,65.61987486910189,0.0658353750004607 +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.0568824580004729 +10,374.6764809907141,0.3525703218130366,9.660426817677203,65.33128063195569,0.0655458330002147 +11,345.8784849508381,0.32547142650874,8.917917086339479,60.30985533206954,0.0605079169981763 +12,362.25983335779995,0.3408862645693045,9.340283649198945,63.16622482469214,0.0633736670024518 +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.061856042000727 +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.064390874998935 +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.062227124999481 +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.0621582500025397 +17,360.4265799552419,0.3391611743250606,9.29301617650666,62.846565602433735,0.06305295799757 +18,349.90653892523665,0.3292618226453718,9.021773940483188,61.0122157361874,0.0612125840016233 +19,360.72001805303375,0.3394372993817952,9.300582003061187,62.89773157544665,0.0631042920031177 +20,358.5747544990663,0.3374186077905959,9.245269853462329,62.52366802359742,0.0627290000011271 +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.0568161250012053 +22,362.4810980291357,0.3410944744792845,9.345988600732396,63.20480612101142,0.0634123750023718 +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079 +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.0637672089978877 +25,332.0330087474858,0.3124428425213943,8.560933885086206,57.895658719214374,0.0580857919994741 +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.0603039170018746 +27,366.3288499695804,0.3447152065207306,9.44519665866802,63.875727768291384,0.0640855000019655 +28,354.5207373187578,0.3336037802943049,9.140743580063956,61.8167804885347,0.0620197909993294 +29,361.6341438543446,0.3402974911586943,9.324151257748223,63.057125111706064,0.0632642089985893 +0,352.49020382752724,0.3393570846515136,10.68974816652268,63.3579677044376,0.0637874170024588 +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375 +2,345.6512964466877,0.3327729820416748,10.48234893431276,62.12871574718069,0.0625498330009577 +3,348.5358761098863,0.335550087715304,10.569827763032078,62.64720137644727,0.0630718329994124 +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.0638328329987416 +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.0629714159986178 +6,333.6775775330467,0.3212453812776034,10.119229510244509,59.976512684528565,0.0603830420004669 +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.0620619170003919 +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463 +9,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.0615481249988079 +10,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.0638772080019407 +11,347.3698925446688,0.3344275464953006,10.534467714601972,62.43762293067263,0.0628608340011851 +12,348.5754810580413,0.3355882170579005,10.571028837323867,62.65432012471003,0.0630789999995613 +13,346.10834760015814,0.3332130043324907,10.496209636473456,62.21086790887602,0.0626325420016655 +14,353.50238182134535,0.3403315508051847,10.720443850363315,63.53990053532798,0.0639705829999002 +15,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.0620592500017664 +16,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.0616400409999187 +17,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.0625483750009152 +18,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.0630281250014377 +19,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407 +20,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.0618219999996654 +21,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.0640606250017299 +22,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.061287207998248 +23,345.3885786449535,0.3325200526089857,10.47438165718305,62.08149382209764,0.0625022909989638 +24,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502 +25,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.0597877090003748 +26,347.5174813223003,0.334569636393858,10.538943546406529,62.46415111473329,0.0628875419970427 +27,346.21679562001196,0.3333174117839722,10.499498471195126,62.23036078006762,0.0626521669983048 +28,349.8149219362817,0.336781478710197,10.608616579371208,62.87710207519379,0.0633032919977267 +0,250.10934507332675,0.0,0.0,55.11416653061159,0.0635523749988351 +1,239.838881397826,0.0,0.0,52.85096422926539,0.0609426669980166 +2,241.89828862855623,0.0,0.0,53.304775793305645,0.0614659590028168 +3,226.9506637505054,0.0,0.0,50.01091291695259,0.0576677919998473 +4,240.77109914478743,0.0,0.0,53.05638799755266,0.0611795420009002 +5,241.309764565714,0.0,0.0,53.17508846316111,0.0613164160022279 +6,232.6059540307432,0.0,0.0,51.257114294164616,0.0591047919988341 +7,229.17355489939848,0.0,0.0,50.50074984377193,0.058232625000528 +8,237.4643088347507,0.0,0.0,52.32770274280641,0.0603392919983889 +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362 +10,246.9017604503701,0.0,0.0,54.40734226933166,0.0627373329989495 +11,227.72021219973772,0.0,0.0,50.18049083245163,0.0578633330005686 +12,241.19055480567744,0.0,0.0,53.1488193664794,0.061286124997423 +13,239.55814760206837,0.0,0.0,52.789101650057795,0.0608713330002501 +14,237.7916072840164,0.0,0.0,52.3998263223262,0.0604224579983565 +15,240.87981688341813,0.0,0.0,53.08034506940843,0.0612071670002478 +16,240.89932900283105,0.0,0.0,53.084644765600814,0.0612121249978372 +17,240.4998774005804,0.0,0.0,52.99662149673451,0.0611106249998556 +18,241.5399942998725,0.0,0.0,53.225821952967294,0.0613749170006485 +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666 +20,241.08921611249076,0.0,0.0,53.12648834317978,0.0612603750014386 +21,240.12551449843392,0.0,0.0,52.91412678097035,0.0610154999994847 +22,242.95922422123857,0.0,0.0,53.538563862744645,0.061735540999507 +23,240.68271211186973,0.0,0.0,53.03691100579953,0.0611570830005803 +24,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842 +25,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115 +26,241.06396210591663,0.0,0.0,53.12092336309683,0.0612539579997246 +27,240.81127256853603,0.0,0.0,53.06524062465436,0.0611897500020859 +28,238.5282000000232,0.0,0.0,52.562142103063344,0.0606096250012342 +0,356.01103457289975,0.2302788063214099,9.967782616483888,63.58984751704077,0.0625623749983788 +1,351.19450650439023,0.2271633289161644,9.832926951656832,62.72953068499227,0.0617159590001392 +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.070130166997842 +3,372.26214494736774,0.2407905206645328,10.422789680193349,66.49258234922029,0.0654182079997554 +4,374.1580309147266,0.2420168375903794,10.475871684269285,66.83122100888622,0.0657513750011276 +5,405.53899035120986,0.2623150002271732,11.3544921526905,72.43641363416084,0.0712660000026517 +6,333.0413416768214,0.2154213076822906,9.324665175390583,59.48705539283827,0.0585258749997592 +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.0645243750004738 +8,366.1896728586104,0.2368626603225164,10.25276943967464,65.40793177191775,0.0643510829977458 +9,352.4134565857517,0.2279517830438238,9.867055751754089,62.947256660530215,0.0619301670012646 +10,360.33604592969425,0.2330763557113158,10.088876540075528,64.36237079856764,0.0633224159973906 +11,359.41703628607354,0.2324819122160889,10.063145628782136,64.1982194733857,0.0631609169977309 +12,358.8771446574472,0.2321326938275855,10.04802946139406,64.10178530981754,0.0630660409988195 +13,358.17342362709223,0.2316775055802666,10.028326312974398,63.976088326665064,0.0629423750033311 +14,354.21164807047495,0.22911490819565,9.917402454754566,63.268445363170216,0.0622461659986584 +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.0628698330001498 +16,345.8859837170851,0.2237296143060058,9.684296162102823,61.781334921929904,0.0607830840017413 +17,349.5224448786402,0.2260817884079173,9.78611169822842,62.43087099892917,0.0614221249998081 +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.0565261669980827 +19,360.3958018453322,0.2331150076619224,10.090549617366072,64.3730442586423,0.0633329169977514 +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.0621866250003222 +21,366.208166991892,0.2368746228925562,10.253287248063508,65.41123515018734,0.064354333000665 +22,359.1301384857916,0.2322963379597616,10.05511291454397,64.14697446803133,0.0631104999993112 +23,365.57154258781645,0.2364628347916018,10.235462705979335,65.29752280745234,0.0642424580000806 +24,349.0676830815694,0.2257876345935119,9.773379040262016,62.349642524179785,0.0613422089991217 +25,357.242315974124,0.2310752367232367,10.00225667530582,63.809776083716656,0.0627787500015983 +26,354.99835934867855,0.2296237770690029,9.939429207415412,63.40896586776896,0.0623844159999862 +27,365.0418539985884,0.236120216040484,10.220632208609526,65.20291108660797,0.0641493749972141 +28,374.2950808651228,0.2421054856824856,10.479708880256164,66.85570054632068,0.0657754590029071 +29,373.26936300344295,0.2414420200539734,10.450990296621994,66.67248925204723,0.0655952080014685 +0,245.1615255437683,0.0,0.0,54.62988385920401,0.0630969579979137 +1,241.02349681651853,0.0,0.0,53.7077977844241,0.062031957997533 +2,241.0796768893551,0.0,0.0,53.72031651405535,0.0620464170024206 +3,239.89379555329384,0.0,0.0,53.456063958454976,0.0617412079991481 +4,238.74985015186837,0.0,0.0,53.20115607973081,0.0614467920022434 +5,242.9289988271171,0.0,0.0,54.132405003283566,0.0625223749993892 +6,222.20890597794013,0.0,0.0,49.51530098016318,0.0571896670007845 +7,239.96163203488717,0.0,0.0,53.471180111377585,0.0617586670014134 +8,237.5137840474237,0.0,0.0,52.92572074142338,0.0611286669991386 +9,240.0446801289891,0.0,0.0,53.48968590149068,0.0617800410000199 +10,239.2075238922962,0.0,0.0,53.30314052949111,0.0615645830002904 +11,241.35311704054809,0.0,0.0,53.781247786484734,0.0621167919998697 +12,237.1938775091375,0.0,0.0,52.85443526139705,0.0610463329976482 +13,236.38327460023032,0.0,0.0,52.67380682603668,0.0608377089993155 +14,236.86118776917695,0.0,0.0,52.78030127232645,0.0609607089972996 +15,228.8396288104752,0.0,0.0,50.9928395843162,0.0588962090005225 +16,234.1374673466227,0.0,0.0,52.173368638753345,0.0602597080032865 +17,238.49162938758172,0.0,0.0,53.14361617687808,0.061380334002024 +18,221.11886761338675,0.0,0.0,49.27240532544921,0.0569091249999473 +19,238.6339309293796,0.0,0.0,53.17532554352589,0.0614169579966983 +20,240.64174911522755,0.0,0.0,53.622732101549154,0.0619337080024706 +21,238.3167792135448,0.0,0.0,53.10465392666686,0.0613353330008976 +22,237.09123886601097,0.0,0.0,52.83156406600441,0.0610199170005216 +23,236.7632388971176,0.0,0.0,52.758475108972014,0.0609355000015057 +24,235.63175807428223,0.0,0.0,52.50634473980698,0.0606442919997789 +25,226.50542703780656,0.0,0.0,50.47270425124547,0.0582954580022487 +26,236.4643838585177,0.0,0.0,52.6918805810858,0.0608585840018349 +27,237.71679612865097,0.0,0.0,52.97095837157298,0.061180916000012 +28,237.03425063747616,0.0,0.0,52.818865253255176,0.0610052500014717 +29,237.04752730136903,0.0,0.0,52.82182372157477,0.0610086670021701 +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.0626812500013329 +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.0595197920010832 +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.0632364579978457 +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282 +4,360.278246721321,1.1641760490899935,10.648786801970235,64.88569450075113,0.0639529170002788 +5,351.330385453154,1.1352626026807866,10.384313806874252,63.274195061179135,0.0623645839987148 +6,354.42246275922594,1.1452541088969477,10.475706701969138,63.83107459881516,0.062913458001276 +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553 +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.0629884580012003 +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.10978890296269,0.0612169169980916 +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.0612827920012932 +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.55417587441491,0.0596836670010816 +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.0632213749995571 +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.0578171670022129 +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.0632325830010813 +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.0619718330017349 +16,356.72656097066806,1.1526993986887202,10.543809205652703,64.24604001515073,0.0633224579978559 +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.0598752080004487 +18,351.34986607256644,1.1353255508902549,10.384889597849094,63.277703498148014,0.0623680419994343 +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.063180832999933 +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.0622285000026749 +21,351.2292135769868,1.1349356834838955,10.381323457749753,63.25597412358772,0.0623466249999182 +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.0580599590030033 +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.0631387080029526 +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.0646871669996471 +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.0642974580005102 +26,347.6089907752034,1.1232375676066255,10.2743201036959,62.60397619454575,0.0617039999997359 +27,359.7827304146522,1.1625748749380511,10.634140767815705,64.79645258845903,0.0638649580032506 +28,357.17747694959303,1.1541564546936098,10.557136982638609,64.32724946012914,0.0634024999999383 +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.063656832997367 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/mac_report.md new file mode 100644 index 000000000..73643e782 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 499.59 ms | 61.33 ms | +| **Average Power** | 5.623 W | 6.479 W | +| **Total Energy** | 2528.48 J | 357.61 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +85.36% | 0.00e+00 | +7.194 | large | βœ… | +| `gpu_mj` | +87.85% | 0.00e+00 | +3.974 | large | βœ… | +| `ane_mj` | +87.88% | 7.64e-279 | +2.465 | large | βœ… | +| `dram_mj` | +87.74% | 0.00e+00 | +31.039 | large | βœ… | +| `time_s` | +87.71% | 0.00e+00 | +113.485 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 85.4% lower energy (Cohen’s d = +7.194, large) +- **`gpu_mj`**: 87.8% lower energy (Cohen’s d = +3.974, large) +- **`ane_mj`**: 87.9% lower energy (Cohen’s d = +2.465, large) +- **`dram_mj`**: 87.7% lower energy (Cohen’s d = +31.039, large) +- **`time_s`**: 87.7% lower time (Cohen’s d = +113.485, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/with_smell.csv new file mode 100644 index 000000000..e21f0f73b --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,2434.6814691630375,4.042822843304115,79.82069233597959,501.04273849742566,0.5069931250000081 +1,2447.3972914027354,4.06393764508544,80.23757879429023,503.6595778983575,0.5096410420010216 +2,2449.666330031311,4.067705415660825,80.31196890920423,504.1265323409069,0.5101135419972707 +3,2430.7570695872123,4.036306322579597,79.69203144332776,500.235120771931,0.5061759160016663 +4,2423.186010359365,4.023734472182728,79.44381532268211,498.6770425194395,0.5045993340027053 +5,2444.4045182599684,4.058968103163982,80.13946114428721,503.04368326485184,0.5090178329992341 +6,2415.585926629379,4.011114426191589,79.1946476377827,497.1129911997444,0.5030167080003594 +7,2422.096905409533,4.021925998086339,79.40810916882864,498.4529113000227,0.5043725409996114 +8,2429.5114994152004,4.034238035779814,79.65119559899154,499.97878995499246,0.5059165409984416 +9,2428.7741651147257,4.033013681797223,79.62702219680632,499.8270510101748,0.5057630000010249 +10,2437.183217540223,4.046977031692036,79.90271180753945,501.5575832004443,0.5075140840017411 +11,2418.3840090373064,4.015760681407925,79.28638237920275,497.6888196561425,0.5035993749988847 +12,2430.858919399475,4.036475445626213,79.69537057521505,500.2560808480221,0.5061971249997441 +13,2432.1625145191674,4.038640083668216,79.7381087593667,500.5243528486659,0.5064685830002418 +14,2414.9578423136536,4.01007148334617,79.17405598110744,496.9837352418113,0.5028859169979114 +15,2454.727443557384,4.0761094658969315,80.47789681014685,505.168078930499,0.5111674580002727 +16,2452.140460963938,4.071813744893391,80.39308294669678,504.6356935406718,0.5106287499984319 +17,2417.0309897011102,4.01351397375886,79.24202382900756,497.4103764503129,0.5033176249999087 +18,2420.139212494834,4.018675221450478,79.34392647971234,498.0500299245568,0.5039648750025663 +19,2417.1410416772333,4.013696716613995,79.24563186769285,497.4330244821775,0.5033405419999326 +20,2401.802815837927,3.988227376749909,78.74277027318622,494.2765102623276,0.5001465409986849 +21,2408.8086275411515,3.999860625677302,78.97245483258739,495.71826398889937,0.5016054170009738 +22,2434.0589842341737,4.041789198319382,79.80028425442151,500.9146348594831,0.5068635000025097 +23,2448.5124002231864,4.065789298974949,80.27413748141448,503.889060557259,0.5098732499973266 +24,2431.000987630858,4.0367113519237785,79.70002826236288,500.2853176318098,0.5062267089997476 +25,2409.9473487759133,4.001751488313076,79.00978764942097,495.95260594002383,0.5018425419984851 +26,2445.016803349119,4.0599848111713275,80.15953482552314,503.1696878373985,0.5091453340028238 +27,2430.424320455568,4.035753787963657,79.68112230946426,500.16664301076855,0.5061066249982105 +28,2427.8773545866843,4.031524515294416,79.59762038874678,499.6424928211162,0.50557624999783 +29,2410.763520788624,4.0031067534263345,79.03654573500424,496.1205692097629,0.5020125000010012 +0,2551.3447555260636,4.293736281673827,81.01514813638835,509.9893589752433,0.5088204169987876 +1,2526.1762229543538,4.251379386853724,80.21594905117801,504.95841058428493,0.5038009999989299 +2,2532.8025335166353,4.262531007979517,80.4263602590864,506.2829465446679,0.5051225000024715 +3,2552.5387700612687,4.295745725328807,81.0530627554288,510.2280310347905,0.5090585420002753 +4,2530.4836607631373,4.258628505954766,80.35272700382868,505.81942611037925,0.5046600419991591 +5,2569.226557781062,4.323830114723126,81.58296511035728,513.563759827812,0.5123866249996354 +6,2543.1209952001773,4.279896263382859,80.75401166723935,508.3455081205593,0.5071803339997132 +7,2536.397739459655,4.2685814902454675,80.5405220717633,507.00159374838023,0.505839500001457 +8,2526.9321187752544,4.252651507097111,80.23995169204937,505.10950691272825,0.5039517500008515 +9,2560.900838022759,4.30981850577853,81.31859103151119,511.8995282599895,0.51072620800187 +10,2555.9064551445185,4.30141330576688,81.15999989330687,510.90119899969096,0.5097301670029992 +11,2536.590787470176,4.2689063766588315,80.54665209912865,507.0401821950901,0.5058779999999388 +12,2546.963357764606,4.286362693101735,80.87602166674125,509.1135595636029,0.5079466249990219 +13,2551.5031200871645,4.294002798247198,81.02017682894325,510.02101453289583,0.508851999999024 +14,2717.7183010787217,4.573731420434627,86.29815718866575,543.2458358441811,0.542000666999229 +15,2534.117722009069,4.264744379000808,80.46812262393772,506.5458401166696,0.5053847909985052 +16,2522.4157528639216,4.245050776489145,80.09653945716727,504.2067286617571,0.5030510409997078 +17,2532.4287624670173,4.2619019772249285,80.414491570275,506.2082332948864,0.5050479580022511 +18,2527.0484891149613,4.252847350308277,80.24364690426624,505.1327682280885,0.5039749579991621 +19,2524.1600845996472,4.247986365826782,80.15192879397199,504.5554038542477,0.5033989169969573 +20,2535.541142772662,4.267139897428292,80.51332178558498,506.83036828214176,0.5056686669995543 +21,2562.35559271712,4.3122667570384134,81.36478516768604,512.1903197778494,0.5110163329991337 +22,2606.3320967133727,4.386276163388106,82.76121071074922,520.9808013599423,0.5197866659982537 +23,2623.2486638957444,4.4147455727515394,83.29837770602518,524.3622609744116,0.5231603749998612 +24,2676.180800843505,4.503826688264001,84.97917952895021,534.9428877331861,0.5337167500001669 +25,2557.594577302347,4.304254298283186,81.21360435675406,511.2386384363951,0.5100668329978362 +26,2514.8969136500673,4.232397091541756,79.85778698304367,502.7037847798665,0.5015515420018346 +27,2521.414791373941,4.243366227720586,80.06475502536362,504.0066460553087,0.5028514170007838 +28,2535.1138848979895,4.266420852056576,80.49975468143957,506.7449635287663,0.5055834580016381 +29,2540.5445111730805,4.2755602194505995,80.67219824916867,507.8304936621867,0.5066665000013018 +0,2407.2733583685304,3.9630558580855393,89.08549933091443,504.0407597657533,0.5058008339983644 +1,2399.448024262939,3.9501731349578018,88.7959087059842,502.4022722486246,0.5041566250001779 +2,2405.2466736165397,3.9597193591993833,89.01049820049033,503.6164075754846,0.5053750000006403 +3,2416.216930511424,3.977779518715891,89.41647237449587,505.9133866871009,0.5076799999987998 +4,2421.3812039391364,3.986281379956245,89.60758564187358,506.9946948372922,0.5087650839996058 +5,2393.8002837678787,3.9408753495708257,88.586903866403,501.2197345861718,0.5029699580009037 +6,2402.5638009172117,3.9553025885278648,88.911213649681,503.0546611543633,0.50481129200125 +7,2425.10042086029,3.992404267643939,89.74522198275241,507.773433536059,0.5095465419981338 +8,2404.2341260381754,3.9580524182190095,88.97302704820042,503.4043978970143,0.5051622499995574 +9,2402.4497721127714,3.9551148647199903,88.90699380778129,503.0307855255214,0.5047873330004222 +10,2423.7636438957325,3.990203552979804,89.69575213631072,507.4935359189019,0.5092656669985445 +11,2407.039551514525,3.9626709455789455,89.07684688591327,503.9918047171205,0.505751708002208 +12,2406.970541215591,3.9625573350209633,89.0742930351351,503.9773551726242,0.5057372080009372 +13,2398.9191436633346,3.949302447235029,88.77633652398067,502.2915339403542,0.5040455000016664 +14,2399.3768341920245,3.950055935875864,88.79327418880618,502.3873662981613,0.5041416669992032 +15,2410.4932406132943,3.968356699034115,89.20465689005259,504.7149465536247,0.5064773749982123 +16,2441.092166508732,4.0187312242617885,90.33702541933012,511.1218241949762,0.512906624997413 +17,2373.612793217755,3.907641004826973,87.83982931018615,496.99282863912794,0.4987282920010329 +18,2425.6209726545944,3.9932612437869617,89.76448594226993,507.8824279387871,0.5096559170015098 +19,2406.4846944648507,3.961757493239406,89.05631339844884,503.8756273964572,0.5056351249986619 +20,2393.140126541887,3.93978854322512,88.56247355569073,501.0815092580857,0.5028312499998719 +21,2407.5343267528574,3.963485486187677,89.09515693741207,504.09540196176886,0.5058556670010148 +22,2415.350332582662,3.9763528523232914,89.38440235264541,505.73193630179,0.5074979160017392 +23,2411.814549757005,3.970531949270705,89.25355432184146,504.991605480774,0.5067549999985204 +24,2450.570968213276,4.034336024810191,90.68780559972488,513.1065187857331,0.5148982499995327 +25,2398.240939056321,3.948185929772871,88.75123833733136,502.1495298076673,0.5039030000007187 +26,2412.5966695833,3.97181954070628,89.28249807890167,505.15536763520623,0.5069193339986668 +27,2417.6673365095417,3.980167299051456,89.47014726859365,506.2170762280991,0.5079847500019241 +28,2397.318028700774,3.946666557127332,88.71708437240011,501.95628858926193,0.5037090839978191 +29,2408.678545967045,3.9653691960887376,89.13750083644851,504.3349813680928,0.5060960830014665 +0,1521.3288350694506,1.7571209502823384,0.0,461.5145757491573,0.503729125000973 +1,1495.508336847177,1.7272985099740834,0.0,453.6815971005006,0.495179667002958 +2,1500.021420887732,1.7325110809418078,0.0,455.0506989135233,0.4966739999981655 +3,1492.5833382519756,1.723920163233591,0.0,452.79426133546895,0.4942111669988662 +4,1500.8048946803583,1.7334159860374627,0.0,455.2883757173012,0.4969334170018555 +5,1504.431192242494,1.737604326698274,0.0,456.3884595008659,0.4981341249986144 +6,1503.8408831428028,1.7369225250638742,0.0,456.2093816792768,0.4979386670020176 +7,1501.5407983498535,1.7342659480741058,0.0,455.5116215153104,0.4971770830015884 +8,1500.3480995933471,1.7328883918718416,0.0,455.1498010804926,0.4967821669997647 +9,1494.8181096605138,1.7265013038591517,0.0,453.47220784823634,0.4949511250015348 +10,1500.521630384203,1.7330888183549944,0.0,455.20244386716377,0.4968396250005753 +11,1502.7642057991982,1.7356789725369444,0.0,455.88275782518434,0.4975821669977449 +12,1498.8619405814122,1.731171891747,0.0,454.6989557207794,0.4962900829996215 +13,1495.377338579858,1.727147208168287,0.0,453.6418570992782,0.4951362920000974 +14,1493.8437393132476,1.7253759149813177,0.0,453.1766201310545,0.4946284999969066 +15,1506.0642021971632,1.739490438324652,0.0,456.8838539738096,0.4986748330011323 +16,1502.528632430207,1.7354068874410458,0.0,455.81129362826545,0.4975041659999988 +17,1522.6004378124114,1.7585896398704055,0.0,461.9003327182692,0.5041501670020807 +18,1510.2273283587142,1.7442988111290731,0.0,458.1467915846323,0.5000532909980393 +19,1504.054053159403,1.7371687344917808,0.0,456.27404953247583,0.498009249997267 +20,1494.9123619669192,1.726610164414726,0.0,453.5008004918525,0.4949823330025538 +21,1517.1572766875097,1.752302838340156,0.0,460.2490801163433,0.5023478750008508 +22,1512.3410467977046,1.7467401366771944,0.0,458.78801512956,0.5007531669980381 +23,1492.8395451805393,1.724216079902893,0.0,452.87198498680215,0.4942960000007588 +24,1490.224992074593,1.7211962948753683,0.0,452.078826834765,0.4934302919973561 +25,1492.5965513345484,1.723935424223635,0.0,452.79826969320027,0.4942155419994378 +26,1494.0419355298666,1.7256048298066071,0.0,453.2367454903585,0.4946941249982046 +27,1490.54235669587,1.721562848122812,0.0,452.17510345502626,0.493535375000647 +28,1487.032962421571,1.7175095296948537,0.0,451.1104837802367,0.4923733750001702 +29,1498.2415539693543,1.730455350859723,0.0,454.5107535008094,0.4960846659996605 +0,2433.6952115231725,3.606612276088514,85.08933406919938,501.3525009344154,0.507207707996713 +1,2400.298986253758,3.55712077219707,83.92170118109384,494.472723638839,0.5002475830006006 +2,2430.495996992678,3.6018712031945506,84.97747986796033,500.69344790333133,0.5065409580020059 +3,2414.797817036588,3.5786073005193892,84.42862409003152,497.45955002497766,0.5032692920030968 +4,2464.6523422162973,3.652489166120451,86.17168884513805,507.72981343487345,0.5136595000003581 +5,2447.3415565895893,3.626835464023981,85.56645150308428,504.1637113091854,0.5100517499995476 +6,2441.8114041555423,3.618640059947563,85.3731006735777,503.0244742591923,0.5088992080018215 +7,2442.8140358284336,3.620125908990091,85.40815570469215,503.23102103396513,0.5091081669997948 +8,2411.8213167473823,3.574196278780922,84.3245566512388,496.8463771605369,0.5026489580013731 +9,2423.5551720507847,3.591585254353016,84.73480766751375,499.263605774091,0.505094416999782 +10,2425.8341260033817,3.59496254796939,84.81448677987042,499.7330808580042,0.5055693750000501 +11,2422.6387116420237,3.59022710673242,84.70276544402043,499.0748106793872,0.5049034170006053 +12,2453.004058394701,3.635227003123451,85.7644296662829,505.33021294344786,0.511231874999794 +13,2400.159041292407,3.5569133808963045,83.91680828262763,494.4438943277427,0.500218416997086 +14,2419.815356203459,3.586043037857947,84.60405241168563,498.493186364457,0.5043149999983143 +15,2423.2978673888356,3.591203941956917,84.72581151950209,499.2105998203629,0.5050407919989084 +16,2453.8007647913773,3.636407681401111,85.79228492787065,505.4943381562488,0.5113979170018865 +17,2419.5950410391,3.585716542012196,84.59634952821366,498.4478004187879,0.5042690839982242 +18,2424.8438929273543,3.59349507301555,84.77986524114465,499.5290882516894,0.5053630000002158 +19,2448.4081629722837,3.62841612032612,85.60374328324956,504.3834371708892,0.5102740420006739 +20,2413.2275988521083,3.576280317192361,84.37372452042719,497.13607779637886,0.5029420419996313 +21,2425.3441075627547,3.594236365612985,84.79735425538783,499.6321347865532,0.5054672499973094 +22,2415.987574562841,3.580370460540182,84.47022160607762,497.7046455934235,0.5035172499992768 +23,2406.058253789995,3.5656557131786366,84.12306256647375,495.65915946250806,0.5014478749981208 +24,2432.5310429172796,3.604887037543617,85.0486312190846,501.11267680224375,0.5069650830009778 +25,2454.3399601981923,3.6372067415152216,85.81113682759985,505.605414910815,0.511510291002196 +26,2433.39012618689,3.6061601551680793,85.07866736452098,501.2896519401702,0.5071441250001953 +27,2452.2957208638927,3.6341772830015016,85.7396640471095,505.1842921268661,0.5110842499998398 +28,2422.354018730199,3.5898052063457815,84.69281172008381,499.0161626191594,0.5048440840000694 +29,2418.7907342866965,3.584524600394682,84.5682285352375,498.28210949745704,0.5041014580019691 +0,2403.852003569021,3.0169158206650426,85.83291274397577,497.26066367203265,0.5023517920017184 +1,2421.641167503481,3.0392418249409276,86.46809983266002,500.94052892625245,0.5060693330015056 +2,2445.067096637115,3.068642160781948,87.30455554136772,505.78641505020255,0.510964832999889 +3,2430.923453266397,3.0508914084961947,86.79953688567745,502.86066193444424,0.5080091250019905 +4,2412.095298761022,3.0272614358036773,86.12725117907385,498.9658711606522,0.5040744580001046 +5,2416.77044046264,3.0331288972540995,86.29418368121829,499.93297065839823,0.5050514590002422 +6,2421.516953369379,3.0390859319883803,86.46366459250457,500.914833998832,0.5060433750004449 +7,2411.09300108001,3.0260035182087615,86.09146273233497,498.75853592981554,0.5038649999987683 +8,2439.0038555836427,3.0610325875504976,87.08805900184876,504.53217341395504,0.5096977499997593 +9,2407.7904164199203,3.0218586624125994,85.97353930754088,498.075363489303,0.5031748330002301 +10,2398.899124274176,3.010699789112236,85.65606323089648,496.23611139444426,0.5013167500001146 +11,2383.5390456878804,2.991422369360582,85.10761004697305,493.05872657186126,0.4981068340021011 +12,2378.9113587757593,2.985614465280991,84.94237198475258,492.1014435686768,0.4971397500012244 +13,2405.491330518975,3.0189732316051567,85.8914472156676,497.59977473456865,0.5026943750017381 +14,2414.4079459088653,3.0301638864360725,86.20982749431859,499.44426519400713,0.5045577499986393 +15,2436.5568257514815,3.0579614820900427,87.00068436407824,504.02598098756647,0.509186374998535 +16,2392.147212100913,3.0022259102607034,85.41497672159298,494.8394112967065,0.4999057499990158 +17,2433.0297388134554,3.053534868318316,86.87474477006725,503.29636802094967,0.5084492919995682 +18,2408.256977843393,3.0224442128282227,85.99019853859636,498.1718763539617,0.5032723339973018 +19,2428.4044445003615,3.0477299670316778,86.7095921389562,502.3395799506389,0.5074827079988609 +20,2429.8549571773046,3.049550409653207,86.7613847317819,502.6396329053676,0.5077858330005256 +21,2413.457682465012,3.028971273574173,86.17589700311575,499.2476937619672,0.5043591659996309 +22,2415.752787089812,3.0318517077449783,86.2578469379313,499.722458950186,0.5048387919996458 +23,2440.0641737605915,3.062363322836291,87.12591915190285,504.75151076067624,0.5099193329988339 +24,2404.759994595063,3.0180553802084007,85.86533383911592,497.4484906345692,0.502541542002291 +25,2418.339582941046,3.0350982243012523,86.35021211775761,500.2575633658734,0.5053793750012119 +26,2420.4426767544924,3.0377376783894023,86.42530603681497,500.69260921057855,0.5058188749972032 +27,2405.090570312541,3.018470263949374,85.87713750950472,497.5168735052381,0.5026106250006706 +28,2419.4264206703588,3.0364622425249994,86.38901918568376,500.4823865454117,0.5056064999989758 +29,2451.413463405891,3.076607066391792,87.53116148228956,507.09922405286255,0.5122910829995817 +0,2303.789344377049,3.0978642210348704,79.9512617045808,492.5933671468958,0.5015122499971767 +1,2330.4409497977927,3.1337021569414567,80.87618545468057,498.2919802106803,0.5073140420026903 +2,2329.4630644795634,3.132387212088963,80.8422486864662,498.0828899903588,0.5071011660002114 +3,2337.9336314510224,3.1437774316056952,81.13621328803634,499.89405606606726,0.5089451250023558 +4,2340.347420026321,3.147023209820101,81.21998198961239,500.4101693317133,0.50947058300153 +5,2337.1791186621713,3.142762851788057,81.11002849401943,499.73272708166047,0.508780874999502 +6,2350.7289553772225,3.1609830742501814,81.58026529926532,502.6299362852921,0.511730540998542 +7,2314.301606843663,3.1119998718733184,80.31608179962416,494.8410860094733,0.5038006659997336 +8,2356.6389241921174,3.1689301033410917,81.78536628410095,503.8935984536096,0.5130170830016141 +9,2324.2762243946613,3.1254125612345067,80.66224333569056,496.9738463060869,0.5059720419994846 +10,2318.738725358993,3.1179663855767883,80.4700686320137,495.78982516187506,0.5047665829988546 +11,2341.2596477856014,3.1482498661304135,81.25164016204663,500.60522073458816,0.5096691660000943 +12,2328.179134076264,3.130660733898416,80.7976908557187,497.8083615912726,0.5068216669969843 +13,2333.2136200125874,3.1374305168612144,80.97240887133304,498.8848291013253,0.5079176250001183 +14,2336.562035177812,3.141933070691858,81.08861307977071,499.60078305990635,0.5086465420026798 +15,2327.92380328973,3.1303173951682233,80.78882979444798,497.75376708063226,0.5067660839995369 +16,2333.0685376553597,3.137235427216992,80.9673738981747,498.8538077724721,0.5078860419998819 +17,2329.196630737807,3.1320289434139736,80.83300230555639,498.0259214596667,0.5070431659987662 +18,2318.9339615702147,3.118228916209144,80.47684415663173,495.8315703252986,0.5048090839991346 +19,2295.9224657539767,3.0872857704151895,79.67824764922605,490.9112809616578,0.4997997080026835 +20,2314.479230864505,3.1122387197090835,80.32224610653444,494.8790653562944,0.5038393329996325 +21,2338.40888489787,3.144416496393674,81.15270659841545,499.9956741659175,0.5090485829969111 +22,2319.565395733787,3.1190779944063514,80.4987576003171,495.96658279140144,0.50494654099748 +23,2335.526159190681,3.1405401468267504,81.05266378937975,499.37929334701533,0.5084210420027375 +24,2342.9855366241027,3.150570637903807,81.31153582504933,500.9742481356192,0.5100448750017677 +25,2359.1807663240115,3.1723480728768623,81.87357898722625,504.4370919711751,0.5135704169988458 +26,2332.6026598895614,3.1366089697392,80.95120596369466,498.7541943690619,0.5077846249987488 +27,2319.9813171782284,3.119637276514605,80.51319183855779,496.0555145964234,0.505037082999479 +28,2327.4732362752643,3.1297115257832036,80.77319320797928,497.6574274029951,0.5066679999981716 +29,2326.699012002061,3.1286704402860126,80.74632434184964,497.4918837335641,0.5064994589993148 +0,2357.505023427519,3.1323213688328546,76.7085509686514,496.07306614696495,0.5077091249986552 +1,2349.1486146760312,3.1212185472316807,76.43664995454604,494.31468630465986,0.5059094999996887 +2,2361.24220304777,3.1372868079166953,76.83015140238545,496.8594543559133,0.5085139589973551 +3,2347.0625597240014,3.1184468905701377,76.36877385204743,493.87573255231536,0.5054602499985776 +4,2359.8236392593835,3.1354020197091375,76.78399414223865,496.5609560362758,0.5082084589994338 +5,2372.321390636152,3.1520072753971604,77.19064625493897,499.1907692429524,0.5108999580006639 +6,2337.365944846139,3.105563391410882,76.05326518114735,491.83534263759367,0.5033720000028552 +7,2362.5961397915667,3.139085728789609,76.87420582631574,497.1443536647969,0.5088055410014931 +8,2352.927970449568,3.1262400240608836,76.55962271689526,495.1099493424934,0.5067234169982839 +9,2365.435208333997,3.142857884087122,76.96658350179314,497.74175872771264,0.5094169590011006 +10,2372.9854038562407,3.152889522848514,77.21225193188594,499.3304928366577,0.511042958998587 +11,2357.859469365847,3.132792306784497,76.72008393848843,496.1476496925618,0.5077854580013081 +12,2370.557087314451,3.1496631170854075,77.1332393141554,498.8195194047922,0.5105199999998149 +13,2347.015935195009,3.1183849424482792,76.36725678208445,493.8659216832716,0.5054502090024471 +14,2353.790095061217,3.1273854940882333,76.58767454671397,495.2913601116121,0.5069090830002096 +15,2379.2812964561267,3.16125462015712,77.41710782554989,500.655292875309,0.5123988339983043 +16,2351.497022658366,3.1243387817307404,76.51306250578898,494.8088451449525,0.5064152499980992 +17,2369.900043850338,3.148790130066317,77.11186041928363,498.6812624074177,0.5103784999992058 +18,2371.4679677840386,3.1508733670449995,77.16287756316584,499.0111895233926,0.5107161659980193 +19,2352.1674159457516,3.1252295061189104,76.53487577750778,494.949911250981,0.506559624998772 +20,2361.406654310874,3.137505307644344,76.83550232124767,496.89405866916337,0.5085493750011665 +21,2370.0385755526495,3.148974191524129,77.1163679668994,498.71041265127343,0.510408334001113 +22,2365.186005455824,3.1425267783237327,76.95847493299183,497.68932073303625,0.5093632910029555 +23,2368.4754854173916,3.14689737701751,77.0655081052586,498.38150267723057,0.5100717090026592 +24,2321.8758921750546,3.0849823862788366,75.54924950227534,488.5758806865217,0.5000360830017598 +25,2366.5714895472606,3.14436761487876,77.0035558452224,497.9808583265968,0.5096616670016374 +26,2365.701039290964,3.143211082904826,76.97523311539265,497.7976956511079,0.5094742080000287 +27,2323.0195285501377,3.08650188957586,75.58646116812372,488.8165279799557,0.5002823750000971 +28,2359.9194050859437,3.1355292598812508,76.78711017283659,496.5811073601296,0.5082290829996055 +29,2353.8554929343873,3.12747238559157,76.58980246416802,495.3051213223585,0.5069231669986038 +0,2470.385660472052,4.718408035227604,79.51514386126519,499.98511060612503,0.5054490410002472 +1,2471.7883798282965,4.721087212972024,79.56029366649332,500.269009109789,0.5057360419996257 +2,2477.4206156857945,4.731844718308756,79.74158035854123,501.40892589008354,0.5068884160027665 +3,2495.3850577253897,4.766156594800061,80.31980796729962,505.0447766334966,0.5105640000001586 +4,2473.774335165206,4.724880364692913,79.62421628669112,500.67094963052295,0.5061423750012182 +5,2469.989166352668,4.71765073604604,79.50238177012798,499.90486355834344,0.505367916997784 +6,2485.258143493483,4.7468143057605605,79.99384953299311,502.995175061825,0.5084920000008424 +7,2490.5625107032693,4.756945585772795,80.16458300531197,504.06873400791017,0.5095772909990046 +8,2482.536212724839,4.7416154494784815,79.90623782114089,502.4442793542444,0.5079350840023835 +9,2464.391338570832,4.706958949735805,79.32220258251958,498.7719106808074,0.504222583000228 +10,2482.698106488371,4.741924664694115,79.9114487507959,502.4770452792419,0.5079682079995109 +11,2484.6221566556046,4.745599578257012,79.97337880823262,502.86645671854416,0.5083618749995367 +12,2478.967721767743,4.734799673029074,79.79137758844067,501.72204704273577,0.5072049590016832 +13,2470.881336761855,4.7193547712073745,79.53109836267075,500.0854312842068,0.5055504580013803 +14,2547.5194825611934,4.865732743169632,81.99787643947133,515.5963421582637,0.5212308749978547 +15,2495.2522788279857,4.765902988641945,80.3155341677477,505.0179033105305,0.5105368330005149 +16,2459.7036085349296,4.698005439592715,79.17131702074202,497.8231538700816,0.5032634579984006 +17,2481.245705623441,4.739150595842798,79.86469982994235,502.18309165948295,0.5076710419998562 +18,2454.901026991713,4.6888325643992035,79.01673469441756,496.8511520881325,0.5022808339999756 +19,2457.547201413782,4.69388672693564,79.10190801096468,497.3867153535251,0.5028222500004631 +20,2479.041034360055,4.734939699232344,79.79373732579576,501.73688488978223,0.5072199589994852 +21,2474.374276632159,4.726026245954948,79.64352680683233,500.79237269636695,0.5062651250009367 +22,2476.252506411417,4.729613643106841,79.70398202784979,501.1725104776664,0.5066494169986981 +23,2455.362896387289,4.689714729602064,79.03160104181505,496.94463053748063,0.5023753339992254 +24,2479.40820342829,4.735640987905431,79.80555552153308,501.8111967958664,0.5072950829999172 +25,2461.954105058189,4.702303861919441,79.24375451812129,498.2786352838158,0.503723916997842 +26,2465.185152773969,4.708475125681322,79.34775335039018,498.9325719445554,0.5043850000001839 +27,2498.7167098677137,4.772520011852896,80.42704498847873,505.7190747771163,0.5112456669994572 +28,2478.126049087816,4.733192087946492,79.76428638349265,501.5516996290906,0.5070327499997802 +29,2482.7490196446533,4.742021908233675,79.91308750988158,502.48734967036694,0.5079786249989411 +0,2433.9793317202725,4.2376282737112145,83.74360636143591,499.3002329485451,0.5093542920003529 +1,2422.13945885332,4.217014713290107,83.3362431435902,496.8714320119438,0.5068765840005653 +2,2389.463871072283,4.160125571777475,82.21200534703105,490.16844633816186,0.5000386249994335 +3,2417.7497506673412,4.209372104628718,83.18521063909134,495.9709386136346,0.5059579579974525 +4,2399.17808339922,4.177038295840899,82.54623298923681,492.16119476233325,0.5020715000027849 +5,2406.6613061423154,4.190066802640999,82.80370109981021,493.6962837460974,0.503637499998149 +6,2399.339359745672,4.177319082615338,82.55178187073169,492.19427857545486,0.5021052500014775 +7,2412.8664604005694,4.200870155317347,83.01719592650947,494.9691930622328,0.5049360409975634 +8,2434.461168119593,4.2384671647907135,83.76018444705458,499.3990756228805,0.509455125000386 +9,2404.361027504876,4.186061951135322,82.72455760576946,493.2244105282142,0.5031561249998049 +10,2433.8395588774088,4.237384925157225,83.73879733048801,499.2715603086045,0.5093250419995456 +11,2419.2426536254584,4.211971291771673,83.23657552786878,496.27718887017664,0.506270375000895 +12,2421.833033779415,4.216481218391432,83.32570026821163,496.8085727638031,0.5068124589997751 +13,2408.744361095907,4.193693461442902,82.87537078565737,494.123596258582,0.5040734170033829 +14,2403.5514632123623,4.1846524763338575,82.69670369897862,493.0583386004163,0.5029867089979234 +15,2397.0964237960584,4.173414066384372,82.47461131188163,491.7341684884317,0.5016358749999199 +16,2411.32378399832,4.19818431117144,82.96411853029275,494.6527324099302,0.5046132079987729 +17,2386.2946927796997,4.154607940891271,82.10296645094654,489.5183292894588,0.4993754169991007 +18,2398.0511415619376,4.175076257572842,82.50745937584426,491.9300168248128,0.5018356669970672 +19,2429.7485153987027,4.230262300372201,83.59804069783159,498.4323342168706,0.5084689169998455 +20,2416.260431655462,4.206779157239616,83.13396905973526,495.66542355856615,0.5056462909997208 +21,2409.962692814749,4.195814612132738,82.91728876357554,494.37352168033834,0.5043283749982947 +22,2434.7697817719213,4.239004470067598,83.77080262276442,499.4623838303456,0.5095197080008802 +23,2422.350910064658,4.217382855952618,83.34351834382554,496.9148085672426,0.5069208339991746 +24,2422.17728593168,4.2170805713254165,83.33754462381181,496.8791917610883,0.506884500002343 +25,2405.444169054835,4.187947731838848,82.76182422443436,493.4466033879328,0.5033827920015028 +26,2404.3060740797737,4.1859662756359794,82.7226668756634,493.2131375245377,0.5031446249995497 +27,2398.9284036887675,4.176603596257959,82.5376424974787,492.10997611147343,0.5020192499978293 +28,2437.568425848435,4.243876990188097,83.8670929013362,500.0364904470833,0.5101053750004212 +29,2389.3063793389856,4.1598513741237815,82.20658667911283,490.1361388908069,0.5000056669996411 +0,2389.323604818514,4.118893481218053,82.94255663388289,493.5696632049923,0.5034744590011542 +1,2381.5246894718775,4.105449131730587,82.67182646718769,491.9586181321353,0.5018310839986952 +2,2421.17179101848,4.173795749903261,84.04812893151971,500.1486374823594,0.5101854579988867 +3,2382.1135464464533,4.106464247116823,82.69226794395732,492.0802600637812,0.5019551670011424 +4,2413.7999907205494,4.161087693057905,83.7922255610128,498.6258228318339,0.5086320839982363 +5,2400.453980450238,4.138080849367165,83.32893452314363,495.8688979092475,0.5058198340011586 +6,2400.9467375846616,4.138930300711766,83.34604000707483,495.97068821190425,0.5059236669985694 +7,2411.1313391773692,4.1564872733313,83.69958646377627,498.0745515679822,0.5080697500015958 +8,2403.58097828726,4.143471400475737,83.43748457248317,496.51485112636266,0.5064787499977683 +9,2395.8127152503616,4.130079891716296,83.16781846464185,494.9101379920358,0.5048418340011267 +10,2373.0216353730443,4.090790935566829,82.37665295250298,490.20211702893147,0.5000393340014853 +11,2390.5537204232123,4.121014045856144,82.98525864921608,493.82377183368106,0.5037336669993238 +12,2393.3562378412944,4.125845233519908,83.08254474273556,494.4026961683251,0.5043242089996056 +13,2402.9681936691422,4.142415036840495,83.41621247573158,496.38826639042674,0.5063496250004391 +14,2391.674486313825,4.122946105335869,83.02416471793276,494.05529176762633,0.5039698330001556 +15,2379.8016126473676,4.102478763930344,82.61201188333928,491.602677042266,0.5014679999985674 +16,2426.259941721805,4.182567081974445,84.22475809427571,501.1997118633732,0.5112576249994163 +17,2398.114365172752,4.134047646792361,83.24771753258487,495.3855966426426,0.5053268340016075 +18,2399.7490491471726,4.136865636432823,83.30446366268355,495.7232781593171,0.5056712920013524 +19,2381.345735021315,4.105140636758046,82.6656142740713,491.9216509805468,0.5017933750023076 +20,2380.261544008419,4.10327162776889,82.62797785918481,491.6976864275639,0.5015649160013709 +21,2390.04672625689,4.120140051658595,82.96765894347992,493.7190405451214,0.5036268339972594 +22,2381.681291833289,4.105719094511794,82.67726273383829,491.99096794637694,0.5018640829985088 +23,2380.749360915994,4.104112562783547,82.64491184895577,491.79845621290906,0.50166770800206 +24,2401.75903492844,4.140330599200992,83.37423795326514,496.1384868832866,0.5060948329992243 +25,2428.4846738278325,4.1864022404061005,84.30198705075834,501.6592813725343,0.5117264170003182 +26,2404.057918122145,4.144293584784668,83.45404097747836,496.6133740025434,0.5065792499990494 +27,2425.97045586115,4.182068044748198,84.21470893335687,501.1399119105926,0.5111966250005935 +28,2402.239733328698,4.141159262804056,83.39092483243329,496.2377861774635,0.5061961249994056 +29,2399.0449103604474,4.1356517896970075,83.28002031349538,495.5778221218374,0.5055229169993254 +0,2466.661303363247,4.117564460939943,84.82182789536282,519.4993828219228,0.520018874998641 +1,2411.095446506444,4.024809125165514,82.91106797840959,507.7967512917157,0.5083045409992337 +2,2422.6871527248377,4.044159004089481,83.3096754842433,510.2380610159562,0.5107482919993345 +3,2399.7897392932236,4.005936660525364,82.5222952068225,505.4156753362834,0.5059210840008745 +4,2401.477600121765,4.0087541838525995,82.58033618736354,505.77115286273624,0.5062769169999228 +5,2378.7906753849206,3.9708832062290886,81.80019404831923,500.99309785257,0.501494084001024 +6,2387.572496242966,3.985542581400753,82.1021771768555,502.842622353395,0.5033454580006946 +7,2391.954811614032,3.992857921372207,82.25287318026747,503.7655744131268,0.5042693329996837 +8,2413.503517829715,4.02882888616253,82.99387505494812,508.30391113750585,0.5088122079978348 +9,2390.174852780625,3.989886660087011,82.19166519779243,503.3907002809779,0.5038940839986026 +10,2393.416174747219,3.995297355149975,82.3031255160895,504.0733496414219,0.5045774159989378 +11,2378.356060681969,3.970157709764441,81.78524882114748,500.90156438194686,0.5014024589982 +12,2393.987361619775,3.996250829696232,82.32276709174238,504.1936463466746,0.5046978329992271 +13,2406.451655549519,4.017057307523506,82.75138053498421,506.8187302992156,0.5073255419993075 +14,2399.6377510361995,4.005682948576849,82.51706874068309,505.38366534544576,0.50588904200049 +15,2390.123657190451,3.989801199978495,82.189904719557,503.37991806395354,0.5038832909995108 +16,2371.816282415134,3.959240946065576,81.56036348895087,499.5242326952735,0.5000237499989453 +17,2377.0401588774266,3.967961092621631,81.7399985080056,500.6244245190958,0.5011250419993303 +18,2402.4588877517303,4.01039223406468,82.6140800217324,505.9778201978271,0.5064837909994822 +19,2397.1812542605517,4.0015823516249975,82.43259644347495,504.8663066966872,0.5053711660002591 +20,2413.429795818861,4.028705823003649,82.99133995387517,508.2883846689603,0.5087966660030361 +21,2367.3817895638776,3.9518385069298385,81.40787324275468,498.59029162431466,0.4990888749998703 +22,2396.981044521976,4.001248144207397,82.42571177067238,504.82414086083327,0.5053289579991542 +23,2417.9370240626968,4.036229678349683,83.14633137400347,509.2376444184516,0.5097468749991094 +24,2386.9390568875947,3.984485189624151,82.08039490625751,502.7092147575803,0.5032119169991347 +25,2396.5788415253037,4.000576752167102,82.4118810946423,504.73943356508266,0.5052441659972828 +26,2371.4575622539237,3.958642139336331,81.54802807032843,499.44868324626714,0.4999481250015378 +27,2394.9224057847664,3.997811686315634,82.35492073810207,504.3905744234892,0.5048949580013868 +28,2378.6256427621624,3.9706077194967033,81.79451902163208,500.95834060983407,0.5014592920015275 +29,2388.569996827086,3.987207695678639,82.13647853097996,503.0527042714549,0.5035557499977585 +0,1562.658112747968,2.9298349145681235,0.0,472.7254566807824,0.5100129999991623 +1,1531.1537366320806,2.87076721424838,0.0,463.19495191756414,0.4997307500016177 +2,1529.6308211067517,2.8679118928945613,0.0,462.7342491372667,0.4992337080002471 +3,1540.736134746952,2.888733296741544,0.0,466.0937584370426,0.5028582079976331 +4,1532.964918461494,2.874163007427424,0.0,463.74285919840617,0.5003218750025553 +5,1522.153744710033,2.8538930878166697,0.0,460.472331238885,0.4967933749976509 +6,1513.2117106232909,2.837127626798121,0.0,457.76724359826426,0.4938749159991857 +7,1539.131007127419,2.885723835552509,0.0,465.60818537356533,0.5023343339998974 +8,1529.549117610166,2.8677587066313697,0.0,462.70953271182424,0.4992070419975789 +9,1534.5397925705695,2.87711574616994,0.0,464.2192801610941,0.5008358750019397 +10,1536.7999728335778,2.881353368586359,0.0,464.9030156105153,0.5015735419983685 +11,1531.5026447753546,2.8714213837380473,0.0,463.30050140405984,0.4998446249992412 +12,1540.5563815703308,2.888396276680295,0.0,466.03938064204385,0.5027995410018775 +13,1523.376646717382,2.856185912439662,0.0,460.8422758257297,0.4971924999990733 +14,1530.105222825464,2.868801350868558,0.0,462.8777621471175,0.4993885410003713 +15,1544.8257549789116,2.8964009446071723,0.0,467.3309245042921,0.5041929590006475 +16,1532.3645084279422,2.8730372958818164,0.0,463.56122694948937,0.5001259160017071 +17,1535.265567469629,2.878476504881033,0.0,464.4388369968513,0.5010727499975474 +18,1523.8910085724551,2.8571502918579252,0.0,460.997877323495,0.4973603750004258 +19,1528.735636931083,2.866233507948138,0.0,462.4634436777717,0.4989415420022851 +20,1525.5779714303828,2.8603131863134776,0.0,461.5082066661142,0.4979109579981013 +21,1527.4667755581067,2.863854513898214,0.0,462.0795957540886,0.4985274169994227 +22,1523.4482667322543,2.8563201931364075,0.0,460.8639418600092,0.4972158750024391 +23,1523.679466818539,2.856753671246252,0.0,460.93388304898826,0.4972913329984294 +24,1527.156546805459,2.8632728645767176,0.0,461.9857473124016,0.4984261659992626 +25,1515.3109075121522,2.8410634207426604,0.0,458.4022793747111,0.4945600419996481 +26,1518.296859631195,2.84666179616479,0.0,459.30557073933295,0.4955345829985162 +27,1517.123367010836,2.8444616094297213,0.0,458.9505731679862,0.4951515840002685 +28,1514.7087112005652,2.839934360096113,0.0,458.2201067522519,0.4943635000017821 +29,1513.0786858616543,2.8368782180579974,0.0,457.7270017880555,0.49383150000358 +0,2334.054806756702,4.49509827544516,80.27912549702428,492.36309777042646,0.5071510829984618 +1,2344.239092484073,4.514711938790691,80.62941099573597,494.5114476955403,0.509363958000904 +2,2345.508941682629,4.517157509874104,80.67308708375158,494.7793192482102,0.5096398749992659 +3,2354.075712231978,4.533656040847342,80.96773862579957,496.5864583408122,0.5115012909991492 +4,2340.690922537716,4.507878606273955,80.50737273871486,493.7629700072072,0.5085929999986547 +5,2359.112344601245,4.543355966235386,81.14097210810012,497.6489235016493,0.5125956669980951 +6,2322.6773781627194,4.4731867678388415,79.88780220192183,489.9630573039477,0.5046789580010227 +7,2320.758417792753,4.469491089646233,79.82180012694124,489.55825735258406,0.5042619999985618 +8,2332.680260140965,4.49245107020215,80.23184837227691,492.0731405561421,0.5068524170019373 +9,2328.773300502691,4.484926753514555,80.0974696498044,491.2489770682943,0.5060034999987693 +10,2301.463136505895,4.432330785875429,79.15814462774561,485.4879654128886,0.500069458001235 +11,2329.2385134825336,4.485822695656681,80.11347051280191,491.3471125975951,0.506104583000706 +12,2334.3813758415326,4.4957272067477945,80.29035774421432,492.4319867124418,0.5072220410002046 +13,2372.1433335052184,4.5684520246398534,81.58916912153101,500.3977784322186,0.515427083002578 +14,2330.5225515386446,4.488295592709021,80.15763462238112,491.6179772547282,0.5063835830005701 +15,2355.4261014625367,4.536256721981261,81.0141848644209,496.8713196143475,0.5117947079997975 +16,2323.4887245327327,4.474749319694126,79.9157082206114,490.13420881716337,0.5048552500011283 +17,2363.9784944772123,4.552727563616988,81.30834189541154,498.6754258015141,0.5136530000017956 +18,2312.399514126288,4.453392884348324,79.53429810491711,487.79496726561985,0.5024457499966957 +19,2305.7405802177113,4.4405686086534715,79.30526604047051,486.3902816011769,0.5009988749989134 +20,2334.0841463417023,4.495154779824386,80.28013462338218,492.3692868834311,0.5071574579997105 +21,2336.6913418894283,4.500175913079871,80.36980834396718,492.9192683460152,0.5077239579986781 +22,2340.687852821768,4.507872694384129,80.50726715674175,493.76232245820825,0.5085923330007063 +23,2332.4252151882565,4.491959885452005,80.22307617647988,492.0193394531762,0.506796999998187 +24,2340.1156366761643,4.50677067749839,80.48758595147125,493.6416148753237,0.5084679999999935 +25,2342.9778725722676,4.512282986636653,80.58603170948868,494.2453964696014,0.5090899160022673 +26,2345.2705800466606,4.516698455109978,80.66488870570485,494.7290374497129,0.5095880830012902 +27,2350.366655553295,4.526512860562282,80.84016671715305,495.8040419935886,0.5106953750000685 +28,2339.739975007131,4.506047200005174,80.47466517935166,493.5623699739,0.5083863750005548 +29,2324.28722131955,4.476287124855763,79.94317228168329,490.3026497425346,0.5050287500016566 +0,2358.423331771851,3.4874162043156307,86.48792186702765,499.3647869703382,0.5030880840022292 +1,2349.882960302434,3.4747875004472117,86.17473001109084,497.5564768497507,0.5012662910012295 +2,2374.069171450755,3.510551811096345,87.06168491518936,502.6775855222243,0.5064255830002367 +3,2356.5389908033085,3.484629816842432,86.41881945769231,498.9658028211997,0.5026861250007642 +4,2343.4253917502947,3.4652386510503175,85.93791854604788,496.1891725575383,0.499888791997364 +5,2362.3433857607606,3.493212814117844,86.63167779012252,500.1948062882075,0.503924291999283 +6,2371.720536840755,3.50707886953976,86.97555596458605,502.18029336695514,0.5059245830016152 +7,2371.9273901280794,3.5073847448660485,86.983141672678,502.2240918005813,0.5059687079992727 +8,2346.2906697319654,3.4694755565831508,86.04299380326214,496.7958570783588,0.5004999999982829 +9,2374.217426084276,3.510771036205061,87.0671216978855,502.70897646993416,0.5064572080009384 +10,2356.441131015812,3.484485110926378,86.41523075097417,498.9450823121723,0.5026652499982447 +11,2408.4701102273693,3.561420707157979,88.32323353751788,509.96152697257344,0.5137638340020203 +12,2367.760049752921,3.5012224710463147,86.83031728194861,501.34171287791753,0.505079750000732 +13,2370.8523014609864,3.505795004131979,86.94371610247309,501.99645606785054,0.5057393749993935 +14,2373.664062454244,3.509952773739517,87.04682878874002,502.5918090778442,0.5063391670009878 +15,2373.6761712722086,3.5099706791288576,87.04727284239567,502.59437295907026,0.5063417499986826 +16,2377.344447890598,3.515394984065356,87.18179560482082,503.3710817659298,0.5071242499980144 +17,2368.210087522604,3.501887944877668,86.84682103296616,501.4370023927213,0.5051757500004896 +18,2357.847499048203,3.4865647166525084,86.4668049729822,499.24286204638537,0.502965249997942 +19,2363.3628056956545,3.494720237128827,86.6690618807949,500.4106549069706,0.5041417499996896 +20,2370.3063587709407,3.5049877150595536,86.92369533347693,501.88085996114654,0.5056229170004372 +21,2368.6732138888074,3.502572772903402,86.86380476800436,501.5350632438347,0.5052745419998246 +22,2373.688280107228,3.5099885845434167,87.04771689667673,502.5969368439073,0.5063443330000155 +23,2369.136724662471,3.5032581693549942,86.88080260000386,501.63320548811754,0.5053734159992018 +24,2384.672211345507,3.526230596429673,87.45051879145589,504.9226382601918,0.5086873750005907 +25,2359.7523495532514,3.489381431713207,86.53665950648752,499.6461888172197,0.5033715839999786 +26,2378.1275183090315,3.516552915480626,87.21051230391953,503.53688651667824,0.5072912910000014 +27,2371.267180034976,3.506408487827744,86.95893049812805,502.0843010903822,0.5058278750002501 +28,2369.1011810593163,3.503205610793547,86.87949914767998,501.625679602676,0.5053658340002585 +29,2336.8070613033906,3.455452081974651,85.69521163297135,494.7878290713226,0.498477000001003 +0,2797.7749321973097,3.907691894314693,85.14132084985657,515.8153300495395,0.5055913329997566 +1,2793.4284678516383,3.901621125970519,85.00905012601868,515.0139886281085,0.5048058749998745 +2,2802.3607332607553,3.914096947644159,85.28087502028079,516.660797089029,0.5064200420019915 +3,2787.134152130027,3.892829766007092,84.81750278308672,513.8535291129361,0.5036684170008812 +4,2786.490857621769,3.891931267451455,84.79792617472619,513.734927303592,0.503552166002919 +5,2770.598393519308,3.8697340376317215,84.31428992161997,510.8048929673872,0.500680207998812 +6,2781.0252087558233,3.884297318228151,84.6315966539371,512.7272460061159,0.5025644579982327 +7,2806.3717189238073,3.91969914815834,85.40293652470417,517.4002875569009,0.5071448749986303 +8,2787.611657926017,3.8934967051189577,84.83203414288847,513.9415650757024,0.5037547079991782 +9,2778.4739606086464,3.880733953787939,84.5539575863457,512.256881900008,0.5021034169985796 +10,2803.5843657274604,3.915806012450171,85.3181123560118,516.8863936434227,0.5066411669977242 +11,2781.0881542535126,3.884385235096758,84.63351219859123,512.7388510327721,0.502575833001174 +12,2812.886462833527,3.9287983832957263,85.60119189367214,518.6013865950359,0.5083221670029161 +13,2794.378410626501,3.902947924505553,85.03795859240489,515.189126034733,0.5049775410006987 +14,2769.927436214463,3.868796902056089,84.29387148462885,510.68119107140376,0.5005589580032392 +15,2777.2367263620476,3.8790058911832017,84.5163063240001,512.0287776361827,0.501879833998828 +16,2785.3977311460985,3.890404482212485,84.7646603709178,513.5333916520481,0.5033546249978826 +17,2790.556261375991,3.8976094744847183,84.92164371949332,514.4844506319829,0.5042868329983321 +18,2877.06064556046,4.018431373705487,87.5541276423458,530.4329413291242,0.5199192079999193 +19,2830.084645826577,3.9528193291929368,86.12456351995796,521.7721514534676,0.5114300839995849 +20,2894.240844154358,4.042427200537548,88.0769519710342,533.6003904709564,0.5230238750009448 +21,2904.7495134182286,4.057104807813918,88.39674966855577,535.5378346314371,0.5249229170003673 +22,2892.370237245587,4.039814497360202,88.02002603994134,533.2555136515466,0.5226858339992759 +23,2909.1042782697536,4.063187169592242,88.52927299170892,536.3407063861758,0.5257098750007572 +24,2867.1113416761923,4.004535039981425,87.25135243891732,528.5986252775481,0.5181212500028778 +25,2898.2668205410064,4.048050338807807,88.19946967012602,534.3426447226304,0.5237514170003124 +26,2791.2260677100508,3.8985450024831447,84.94202713037429,514.6079403277752,0.5044078749997425 +27,2801.820044014289,3.913341759311658,85.26442087449384,516.5611122291389,0.5063223329998436 +28,2798.09173472666,3.90813437689676,85.15096172035229,515.8737377503724,0.5056485829991288 +29,2813.5481955221353,3.9297226347191416,85.62132960900774,518.7233877829267,0.5084417500002019 +0,2438.3778601902586,4.102748647641799,85.38425259313547,503.3601783434627,0.5097916669983533 +1,2427.481988160699,4.084415548016843,85.00271374110463,501.1109173993124,0.5075136669984204 +2,2447.708065255968,4.118447398372981,85.71096675794261,505.2862349085802,0.5117423330011661 +3,2420.462009314138,4.072603921447631,84.7568963652093,499.6617663625257,0.5060459999986051 +4,2396.1699065590715,4.031730686271953,83.90626403643022,494.64708944359495,0.5009672499982116 +5,2419.1934963942576,4.070469555912442,84.71247706935813,499.3999042040774,0.5057807919984043 +6,2413.5877137416956,4.061037417615806,84.5161803551355,498.2426890727326,0.5046087910013739 +7,2413.6512905307686,4.0611443902018225,84.51840661247891,498.25581338148265,0.5046220830008679 +8,2384.2984857050587,4.011756154576283,83.49056456122283,492.19644362047393,0.4984852920024423 +9,2418.7389022640705,4.069704668122367,84.6965586259237,499.306061249636,0.5056857500021579 +10,2395.320511638591,4.030301517348542,83.87652092252418,494.4717468169917,0.5007896669994807 +11,2420.4739670355148,4.072624041186252,84.75731508665487,499.6642348235723,0.5060484999994515 +12,2403.8635019001777,4.04467572173859,84.1756693237236,496.23529674576406,0.5025757500006875 +13,2411.877162268622,4.058159289964858,84.45628227230142,497.8895758376557,0.5042511659994489 +14,2399.4728289815657,4.037288094220652,84.02192189529701,495.32891962536655,0.5016577919996053 +15,2404.844230829124,4.046325869713041,84.21001133771648,496.4377509661049,0.5027807910009869 +16,2417.8231419942995,4.068163834656928,84.66449160814705,499.1170186651221,0.5054942919996392 +17,2429.2130686432893,4.087328217224048,85.06333068468737,501.4682684869635,0.5078755840004305 +18,2418.4415520786347,4.069204354741455,84.68614636629962,499.24467853909914,0.5056235829979414 +19,2411.9612680672117,4.058300804107131,84.4592273903935,497.9069379989798,0.5042687499990279 +20,2408.9373574730353,4.053212853915571,84.35333964009538,497.2827048967892,0.5036365410014696 +21,2427.790497267815,4.08493463709761,85.01351675074451,501.1746036727624,0.5075781669984281 +22,2408.6380175270774,4.052709192617414,84.34285770537389,497.22091143522505,0.5035739579980145 +23,2407.9715756827586,4.051587855592439,84.31952102745248,497.0833362500625,0.5034346249994996 +24,2435.409155988891,4.0977535862338605,85.28029799547353,502.7473416290854,0.5091710000015155 +25,2421.6846859290463,4.074661164055603,84.79971061915718,499.91416642282184,0.5063016250023793 +26,2456.942211569522,4.1339845232454575,86.03431725016571,507.1924618355575,0.5136729160003597 +27,2413.707893578892,4.061239628959905,84.5203886715508,498.2674980841955,0.5046339170003193 +28,2419.1195594483997,4.0703451516067854,84.70988803221006,499.3846412233636,0.5057653340008983 +29,2414.838093981546,4.06314127359393,84.55996470209006,498.5008080586388,0.504870208002103 +0,2450.851933404219,3.1718674977644685,87.57693101722316,504.5606486970173,0.5075324589997763 +1,2430.8668931937323,3.146003063189218,86.86280036574021,500.4462977991102,0.5033938749984372 +2,2439.0240092092804,3.1565599192818152,87.15428071869685,502.1256157914399,0.5050830840009439 +3,2437.360226202969,3.154406668337062,87.09482832682225,501.7830902306282,0.5047385409998242 +4,2471.039181311575,3.1979936274722376,88.29828720904926,508.7166284037943,0.5117129169993859 +5,2473.312006736001,3.200935094883456,88.37950267241374,509.184538461882,0.5121835829995689 +6,2458.6796663112814,3.1819980696079524,87.85664143770168,506.17215608331975,0.5091534579987638 +7,2465.4383987485953,3.190745151980336,88.09815298573075,507.5635867023878,0.5105530840010033 +8,2445.752150202008,3.165267410519594,87.39469913466205,503.5107485028642,0.5064763750015118 +9,2445.371469111173,3.164774736946549,87.3810961580084,503.4323771024869,0.5063975420016504 +10,2439.805488815483,3.1575713021929146,87.1822055331791,502.286500197256,0.5052449159993557 +11,2448.4261846097043,3.1687281184922265,87.49025110321169,504.0612560700477,0.50703012500162 +12,2435.1507808348492,3.15154722674628,87.0158776395315,501.3282283219977,0.504281000001356 +13,2442.717957764811,3.161340589709926,87.28627754535931,502.88609464943573,0.505848042001162 +14,2443.4465265036606,3.1622834959178223,87.31231168202576,503.0360862137909,0.5059989170003973 +15,2490.1676806088644,3.2227495355608213,88.98181086080037,512.6546419094225,0.5156741249993502 +16,2438.781349334074,3.156245871353955,87.14560969012025,502.0756590305365,0.5050328329998592 +17,2458.462165316453,3.181716582045679,87.84886941795595,506.1273788197295,0.5091084170016984 +18,2437.7958414964965,3.1549704371932044,87.11039428166079,501.8727710196179,0.5048287499994331 +19,2452.5994118611015,3.17412906650507,87.63937412045051,504.92040476868016,0.5078943339976831 +20,2464.6329675102174,3.1897027711119224,88.06937230133234,507.39777133729865,0.5103862920004758 +21,2426.255640983504,3.14003522775605,86.69802528846441,499.496972229994,0.5024389579994022 +22,2449.7897610544123,3.170492845176339,87.53897613576355,504.3419776453141,0.5073124999980791 +23,2433.8558141746876,3.149871294143387,86.96960425829583,501.061631548367,0.5040128330001608 +24,2447.2523426619778,3.1672089442529514,87.44830590289992,503.8195954268485,0.5067870410020987 +25,2433.6532008410168,3.1496090740398692,86.96236422322713,501.0199192304263,0.5039708750009595 +26,2429.2854100998275,3.143956323949099,86.80628881808933,500.1207154475661,0.5030663750003441 +27,2446.9064686871006,3.166761317693271,87.43594669799421,503.7483898208496,0.5067154160024074 +28,2460.460343865354,3.18430260428048,87.92027085292314,506.5387469040696,0.5095222080017265 +29,2407.85872854557,3.1162261318960445,86.04064362066659,495.7095716338213,0.4986292500034324 +0,1498.339375466959,1.2029218241522384,0.0,459.7834527870778,0.4990598750009667 +1,1498.841889417395,1.2033252607887024,0.0,459.93765523479294,0.499227249998512 +2,1490.767388559341,1.196842755249354,0.0,457.45989756197525,0.4965378329980012 +3,1491.5673817805307,1.1974850191587856,0.0,457.7053851006914,0.4968042910004442 +4,1524.1527316288148,1.2236457335616362,0.0,467.70459149466984,0.5076576670035138 +5,1500.3420515773296,1.204529646011103,0.0,460.39799803091046,0.4997269169980427 +6,1489.3145129999891,1.1956763334448297,0.0,457.0140652278015,0.4960539159983455 +7,1494.5988552183703,1.1999187972583425,0.0,458.63562917429977,0.4978140000021085 +8,1491.8328382512898,1.1976981373530124,0.0,457.7868436104848,0.4968927080008143 +9,1490.3217926609095,1.1964850145133414,0.0,457.3231611028772,0.4963894159991469 +10,1511.818683773937,1.213743507412005,0.0,463.91974061081095,0.5035495000010997 +11,1488.9657450555078,1.195396329742831,0.0,456.9070415905932,0.4959377500017581 +12,1496.4325245149334,1.2013909342462836,0.0,459.19831264524623,0.4984247499996854 +13,1495.3576925659052,1.20052801972241,0.0,458.8684875383434,0.4980667499985429 +14,1496.3713521590184,1.2013418228345636,0.0,459.1795411723221,0.4984043749973352 +15,1507.25952887442,1.210083250584936,0.0,462.5207091124644,0.5020309579995228 +16,1482.0457638222142,1.1898407149171453,0.0,454.78356214610886,0.4936328750009124 +17,1487.2550449366136,1.1940229169224166,0.0,456.3820926903459,0.4953679580030439 +18,1494.6920533451705,1.199993620133943,0.0,458.6642281400849,0.4978450419985165 +19,1496.2707743190008,1.201261075254433,0.0,459.1486776528055,0.4983708750005462 +20,1489.0232905879304,1.1954425294075846,0.0,456.9247001291211,0.4959569169986935 +21,1493.38228955567,1.1989420937089743,0.0,458.262311373208,0.4974087919981684 +22,1495.050954155259,1.2002817588722223,0.0,458.7743611689384,0.4979645830026129 +23,1482.5875601832554,1.1902756889141006,0.0,454.949818873834,0.4938133340001513 +24,1491.5192214979224,1.1974463543169245,0.0,457.6906065389133,0.4967882499986444 +25,1491.476438384669,1.197412006463908,0.0,457.6774780262048,0.4967739999992773 +26,1492.0508820115435,1.1978731908836906,0.0,457.8537529599884,0.4969653329972061 +27,1493.5562982454917,1.1990817942694787,0.0,458.3157080318896,0.4974667499991483 +28,1494.5570718752197,1.1998852520574457,0.0,458.622807453068,0.4978000830014935 +29,1491.2480125753889,1.1972286178433578,0.0,457.60738282012784,0.4966979169985279 +0,2451.1992010427684,3.900210881276232,77.23750950356437,510.1942524609636,0.5080816660010896 +1,2446.842754857934,3.893279148103931,77.10023748851974,509.2874988182109,0.5071786669977882 +2,2451.0550763213505,3.899981558091688,77.23296812049949,510.16425424438705,0.5080517919996055 +3,2432.0778210007293,3.869786012308727,76.63499308136171,506.2143155417527,0.5041182090026268 +4,2456.995345711932,3.9094333820417777,77.42014654863931,511.4006659158069,0.5092830840003444 +5,2452.070414034087,3.901597106592888,77.264961504066,510.3755873196936,0.5082622499976424 +6,2429.0261728945884,3.864930400759762,76.53883537231084,505.5791434498134,0.5034856669990404 +7,2429.938186012844,3.866381544953255,76.56757298851875,505.7689704744408,0.5036747079975612 +8,2403.192003618539,3.8238245175348022,75.72479835152254,500.2020020587192,0.4981307910020405 +9,2442.724306965183,3.8867261044841217,76.97046482127958,508.430282300252,0.5063249999984691 +10,2438.877232676159,3.880604855343396,76.84924316094572,507.6295496669289,0.5055275829981838 +11,2416.368502129658,3.844790223972827,76.13999101662428,502.9445673325138,0.5008620000007795 +12,2444.6576931581867,3.889802400308816,77.0313859958592,508.8326986044994,0.5067257499977131 +13,2466.027460260984,3.9238047768391326,77.7047492986006,513.2806163207088,0.511155250002048 +14,2491.54783480094,3.9644113674551216,78.508898618748,518.5924442641079,0.5164450829979614 +15,2478.046295838437,3.9429284748558056,78.08346389949489,515.7822248518642,0.5136464999995951 +16,2484.8465180253565,3.953748607530962,78.29773951836957,517.1976276774477,0.5150560419970134 +17,2475.655192815794,3.9391238856477178,78.00812002603216,515.2845390584472,0.5131508749982459 +18,2453.373007356547,3.9036697201315897,77.30600633799054,510.6467099710596,0.5085322499980975 +19,2459.984671943299,3.914189830514144,77.51434048975445,512.0228662907604,0.5099027079995722 +20,2466.234910290759,3.924134859707594,77.71128606788457,513.3237951096131,0.5111982499984151 +21,2461.126250243096,3.916006245966956,77.5503117256875,512.260475166874,0.5101393329969142 +22,2467.491469000187,3.9261342255483584,77.75088034697048,513.5853360856207,0.5114587079988269 +23,2492.1376249342256,3.965349808482081,78.52748295942719,518.7152035796431,0.5165673339979548 +24,2450.542684348805,3.8991662686831607,77.21682260289644,510.057604634152,0.5079455839986622 +25,2445.8644011460456,3.891722446473472,77.06940947417978,509.08386361774774,0.5069758749996254 +26,2412.5767060230446,3.8387569303799194,76.02051117683995,502.1553403373048,0.500076040996646 +27,2439.7605019293624,3.882010263908712,76.87707505535458,507.8133939241268,0.5057106660024147 +28,2428.734898566006,3.8644669413618926,76.52965729175645,505.518517414904,0.5034252920013387 +29,2463.02486205315,3.919027210741154,77.61013715630132,512.6556535076356,0.510532875003264 +0,2353.3280060938264,4.141125246649276,79.7500571693425,502.6457748977278,0.5092256249990896 +1,2399.7740874178508,4.222855901908886,81.3240314012776,512.5661627389569,0.5192758749981294 +2,2378.5130190814857,4.185443035266212,80.60353200173965,508.02502519186913,0.5146752920009021 +3,2357.806900571939,4.149006707691834,79.90183885458144,503.6024190118531,0.5101947919974918 +4,2346.305810578593,4.128768366919913,79.51208758229639,501.1459087944486,0.5077061250012775 +5,2371.8740149949444,4.173760453252915,80.37854808361259,506.6070046928195,0.5132387090015982 +6,2354.0664619376444,4.142424699224714,79.77508211087594,502.8035011937998,0.5093854160004412 +7,2314.7534893888537,4.073246096530545,78.44283611705596,494.40666934581634,0.5008786660000624 +8,2322.5736503344087,4.087007147196087,78.70784731858272,496.07697235845416,0.5025708339999255 +9,2348.2466030676137,4.132183557982944,79.57785755212313,501.5604413806555,0.5081260839979223 +10,2352.678701405962,4.13998267237628,79.72805340027867,502.50709033818856,0.5090851249988191 +11,2343.1313021850347,4.123182219633932,79.40450919746638,500.4678676428251,0.5070192079983826 +12,2393.612241403539,4.2120129696743,81.1152175127599,511.25005811748287,0.5179425419992185 +13,2376.589367292465,4.182058006503266,80.53834289943386,507.6141536764569,0.5142590420000488 +14,2358.6780271563653,4.150539619501174,79.93135976910327,503.7884823638079,0.510383290999016 +15,2320.3871526112607,4.0831595913519285,78.6337508399065,495.60995975353126,0.5020977079984732 +16,2346.5210885781867,4.12914718923319,79.51938296684561,501.19188988023177,0.507752707999316 +17,2343.330793546818,4.123533262375373,79.41126960122897,500.5104768710625,0.5070623749998049 +18,2324.41334540888,4.09024443825764,78.77019127870359,496.4699116146431,0.502968917000544 +19,2328.937298404121,4.0982051882741,78.92349991611735,497.4361797476894,0.503947834000428 +20,2340.867978551976,4.119199474086382,79.32780922676031,499.98444584253326,0.5065294579981128 +21,2342.25169999747,4.121634393399553,79.37470105998494,500.2799939923925,0.5068288750007923 +22,2316.5344605250925,4.076380051727922,78.50319002843773,494.78706579481417,0.501264042002731 +23,2345.388659615546,4.127154466520893,79.48100698428945,500.95001512585446,0.5075076670000271 +24,2354.953966690991,4.1439864315166375,79.80515805211073,502.9930627480395,0.509577458997228 +25,2346.527059420985,4.1291576960591785,79.51958530797837,501.1931651886024,0.5077540000020235 +26,2343.69164521067,4.124168249054494,79.42349821566235,500.5875509396709,0.5071404580012313 +27,2351.7923566144564,4.138422981256369,79.69801676806621,502.3177765394324,0.5088933330007421 +28,2338.3370027608967,4.114745743998626,79.2420390053929,499.44385639454293,0.5059817920009664 +29,2351.1338091521225,4.137264142575435,79.67569977798499,502.1771178217973,0.5087508329997945 +0,2399.903691461792,2.9667124359700465,84.30130056818255,501.1743985933668,0.5046254170010798 +1,2396.2859023488704,2.9622401981922533,84.17421866548548,500.4188919080958,0.5038647080000374 +2,2403.6605833088347,2.971356629736184,84.43326872587426,501.95895424812943,0.5054153749988473 +3,2405.076226888672,2.9731066197162592,84.48299596924066,502.2545845779096,0.5057130409986712 +4,2407.193162526025,2.9757235327631566,84.55735746469689,502.696666461731,0.5061581669979205 +5,2396.8310420562175,2.9629140888799843,84.19336776154472,500.5327340034895,0.5039793339965399 +6,2393.452627259112,2.958737760793113,84.07469434882903,499.82721610701634,0.5032689580002625 +7,2390.495306328668,2.955081980432961,83.97081267994335,499.2096356832535,0.5026471250021132 +8,2396.871066980566,2.962963566882471,84.194773715121,500.54109245031407,0.5039877499984868 +9,2405.4309343856366,2.9735451019545764,84.49545576228229,502.3286585155849,0.5057876249993569 +10,2412.434462264086,2.982202721560971,84.7414683463786,503.7912125693168,0.5072602500003995 +11,2389.882401024455,2.954324319284078,83.94928318504982,499.0816420273721,0.5025182499994116 +12,2407.1654218881113,2.975689240347268,84.5563830206544,502.69087335529406,0.5061523340009444 +13,2413.167252058965,2.9831085814940814,84.76720901796104,503.9442418288035,0.5074143329984508 +14,2396.948743680305,2.963059589248669,84.19750226078521,500.5573137567836,0.5040040830026555 +15,2397.117180265004,2.963267807150194,84.2034189245263,500.5924885449794,0.5040394999996352 +16,2369.914329473195,2.9296401928317453,83.24786570417398,494.9116887553403,0.4983195829991018 +17,2402.702287181389,2.970172003432741,84.3996067042854,501.75883226529504,0.5052138750033919 +18,2418.3427646489986,2.9895064455492095,84.94900899768484,505.0250495374422,0.5085025830012455 +19,2393.0810794428744,2.9582784608924917,84.06164300670912,499.7496253878496,0.5031908330020087 +20,2404.184711865644,2.9720045468643024,84.45167976426765,502.0684085629751,0.5055255830011447 +21,2410.4871521735236,2.9797954961865045,84.6730652792772,503.3845537658887,0.5068507910000335 +22,2377.9970319780514,2.939631866298775,83.53178640302923,496.59960797530425,0.500019125000108 +23,2414.7144747100824,2.9850212268625667,84.82155823298237,504.2673499536931,0.5077396660017257 +24,2415.7003165043448,2.9862399045625687,84.85618784987344,504.47322432694625,0.507946957997774 +25,2402.5516848723532,2.96998583190232,84.39431650428052,501.7273818275436,0.5051822080022248 +26,2394.675864954955,2.9602499025083477,84.11766296004058,500.0826661147529,0.5035261670018372 +27,2387.906760572858,2.95188207248992,83.87988495873043,498.66906696501064,0.5021028340015619 +28,2380.1153467906697,2.942250484254259,83.6061963447081,497.04197787373914,0.5004645409972 +29,2411.7101901057413,2.9813073909579835,84.71602687340157,503.6399620567784,0.5071079579975049 +0,1554.8732723619028,0.9499760332133208,0.0,468.60960609794233,0.5065087910006696 +1,1540.449502109736,0.941163587664418,0.0,464.2625526007479,0.5018101659989043 +2,1533.173217493343,0.9367180189359052,0.0,462.0696170550973,0.499439874998643 +3,1530.7264696366958,0.935223137092834,0.0,461.33221319736504,0.4986428330012131 +4,1527.4287557774685,0.9332083432274132,0.0,460.3383441663225,0.4975685839999642 +5,1526.8416562525117,0.93284964487705,0.0,460.16140339435054,0.4973773329984396 +6,1516.4213987748133,0.926483212937109,0.0,457.0209334674053,0.4939828749993467 +7,1528.059338805915,0.93359360855715,0.0,460.52839004969127,0.497773999999481 +8,1545.3676850578215,0.944168434432761,0.0,465.744800585189,0.5034122920005757 +9,1534.4879789398265,0.9375212946020018,0.0,462.4658614658161,0.499868165999942 +10,1528.570586995457,0.9339059642556632,0.0,460.6824706535437,0.4979405419981049 +11,1529.3095088878754,0.9343574210404004,0.0,460.90516783607177,0.4981812499972875 +12,1518.595190535935,0.9278113276529312,0.0,457.67607348365306,0.4946909999998752 +13,1523.845290947456,0.931018964990045,0.0,459.2583551586608,0.4964012499985983 +14,1528.2171779672317,0.9336900430531428,0.0,460.57595980892887,0.4978254170018772 +15,1519.295356383413,0.9282391057787768,0.0,457.88709032201666,0.4949190829975123 +16,1522.767283641807,0.9303603382567937,0.0,458.9334640001012,0.4960500830020464 +17,1521.815908034937,0.9297790792942946,0.0,458.6467372575999,0.4957401669998944 +18,1523.6480572437645,0.9308984617343912,0.0,459.19891262412176,0.4963370000004943 +19,1522.5087831425035,0.930202403019706,0.0,458.8555568038635,0.495965874997637 +20,1523.130669481421,0.9305823549603914,0.0,459.0429816683188,0.4961684580011933 +21,1519.5053818912152,0.9283674244027588,0.0,457.9503880661037,0.4949874999983876 +22,1526.9093204634178,0.9328909854671869,0.0,460.1817961168851,0.4973993749990768 +23,1529.5480557755704,0.9345031652821568,0.0,460.97706138846974,0.4982589579994965 +24,1524.9894245219973,0.9317179926818372,0.0,459.6031755329121,0.4967739580024499 +25,1540.853307819904,0.9414102995692096,0.0,464.38425205892594,0.5019417080002313 +26,1520.174211377246,0.9287760570504024,0.0,458.151960713577,0.495205374998477 +27,1526.321711362272,0.932531975782662,0.0,460.00470176821887,0.4972079580002173 +28,1520.225501350302,0.9288073935239358,0.0,458.1674185483072,0.4952220829982252 +29,1520.9399969662404,0.9292439266633514,0.0,458.3827541097932,0.495454833999247 +0,2412.7724909384365,3.2613578310915265,79.93654602328415,496.6914860106228,0.5054707089984731 +1,2423.0418838994005,3.275239025974004,80.27677694275059,498.80553533328583,0.5076221249983064 +2,2429.363547075372,3.2837840528183952,80.48621729458965,500.106908044026,0.5089464999982738 +3,2419.5911711038175,3.2705746785309735,80.16245283501426,498.09517425586506,0.5068992080014141 +4,2410.4281903055,3.2581890270470613,79.8588779894596,496.2088900885448,0.5049795829982031 +5,2412.4685833308667,3.2609470375087923,79.92647738873592,496.6289238246809,0.5054070410005806 +6,2419.218852286504,3.2700714131401964,80.15011769757909,498.0185289909942,0.5068212080004741 +7,2433.7478397705127,3.2897103253404816,80.63147144354934,501.0094551602723,0.5098649999999907 +8,2411.9357664782196,3.260226826041924,79.90882485870104,496.5192385579155,0.505295417002344 +9,2389.274639203932,3.229595655811442,79.15804862509269,491.85423635699766,0.5005479589999595 +10,2432.0475456629706,3.2874120284543813,80.57513971783085,500.6594339253229,0.509508791998087 +11,2428.969748336643,3.283251752899836,80.47317051495313,500.0258409390822,0.5088639999994484 +12,2411.5330177519745,3.259682428376071,79.8954815608094,496.4363290154373,0.5052110420001554 +13,2406.681932736702,3.253125190110437,79.73476231270683,495.4376883918191,0.5041947499994421 +14,2399.2321722022825,3.243055307869184,79.4879474438957,493.9040864280364,0.5026340410004195 +15,2406.6735794358583,3.253113898907796,79.73448556302577,495.43596878774343,0.5041930000006687 +16,2412.5185074645137,3.261014520234512,79.92813140411529,496.6392011683683,0.5054175000004761 +17,2397.652404374487,3.2409199270175546,79.43560882343026,493.57887664017346,0.5023030829979689 +18,2425.695051632268,3.2788253273742747,80.36467792196946,499.35171439858215,0.5081779579995782 +19,2422.6604194057927,3.274723398322336,80.26413880377807,498.72700734653944,0.50754220899762 +20,2432.880088732057,3.288537381494622,80.60272235051104,500.83082060007376,0.5096832080016611 +21,2435.5982929158445,3.292211593022893,80.69277802490805,501.3903880190477,0.510252666001179 +22,2430.2931507887247,3.2850406032647137,80.51701560246778,500.298275548223,0.509141250000539 +23,2411.2621271774183,3.259316264098247,79.88650679963254,496.3805636904728,0.5051542910005082 +24,2409.3251576423854,3.25669805173658,79.82233388031904,495.981820634372,0.5047484999995504 +25,2416.961273282923,3.267019831198555,80.07532280141764,497.55378551671873,0.5063482499972451 +26,2405.825122140536,3.2519670345205243,79.70637568283979,495.26130602264107,0.5040152500005206 +27,2420.701363746525,3.272075332025206,80.19923415841373,498.3237176579205,0.5071317910005746 +28,2410.338093934685,3.2580672432876665,79.855893044663,496.19034291906553,0.5049607079999987 +29,2422.3079862428463,3.274247012479813,80.25246248955624,498.6544557271552,0.5074683749990072 +0,2413.455554111883,4.462701388902583,80.59505493391232,501.4877426425007,0.5053761250019306 +1,2392.1933528867876,4.423385622437897,79.88502392760978,497.0697067363422,0.5009238329985237 +2,2405.9613011944766,4.448843825689406,80.34479147886837,499.9305248300827,0.503806832999544 +3,2407.589171260827,4.451853907227338,80.39915265291164,500.2687771270841,0.5041477080012555 +4,2410.01794143921,4.456344926765664,80.48025912517095,500.7734470689356,0.5046562909992645 +5,2400.607102267664,4.438943419217683,80.16599309333427,498.8179851237303,0.5026856670010602 +6,2442.7785046149993,4.516922222476264,81.57426700292955,507.5807076570715,0.5115163330010546 +7,2408.2060164041027,4.452994510655045,80.41975161033737,500.39695030928107,0.50427687499905 +8,2413.625086588423,4.463014870050901,80.60071630987449,501.52296950169006,0.5054116249993967 +9,2419.322533895495,4.473549974361046,80.79097714890844,502.7068321934972,0.5066046669999196 +10,2418.926558540349,4.472817779494491,80.7777539281841,502.62455316140336,0.5065217500014114 +11,2422.1005171409856,4.478686720992605,80.88374525971719,503.28406451273617,0.5071863750017656 +12,2424.4576538665874,4.483045283685526,80.96245960088785,503.77384986370635,0.5076799579983344 +13,2413.3174591450547,4.462446038602381,80.59044338371464,501.4590481289153,0.5053472079998755 +14,2420.7263488655767,4.476145757409992,80.8378562159118,502.99852847074374,0.5068986250007583 +15,2421.772994690795,4.47808110184587,80.872807958709,503.2160091910083,0.5071177919999172 +16,2422.19861196293,4.478868107344382,80.8870210430851,503.3044474656097,0.5072069159978128 +17,2420.4961285239633,4.475720058815078,80.83016822636186,502.9506913853541,0.5068504170012602 +18,2431.1756772087138,4.495467526990777,81.18680160684836,505.16977627930686,0.5090867079998134 +19,2449.2661118173246,4.528918405137737,81.7909144808457,508.9287563027167,0.5128748340030143 +20,2422.1452880207426,4.47876950646878,80.88524034070483,503.2933673761707,0.5071957499967539 +21,2405.147664644953,4.447339336844175,80.31762085942465,499.76146070298194,0.5036364580009831 +22,2405.5189646682875,4.44802590475176,80.33002007089,499.8386124906866,0.5037142080000194 +23,2403.0133843207045,4.443392856143048,80.24634859601625,499.31798229703,0.5031895409993012 +24,2409.0415393687313,4.454539469495639,80.44765310581677,500.570562176607,0.5044518329996208 +25,2408.029320563174,4.452667783786849,80.41385102062816,500.3602349870326,0.5042398749974382 +26,2405.446533689708,4.447891973207772,80.32760130718515,499.8235621833033,0.5036990409971622 +27,2423.424140835544,4.4811342229944655,80.92794641527318,503.5590979839602,0.5074635409982875 +28,2427.202212954397,4.488120225974074,81.05411154371089,504.344137035206,0.5082546670018928 +29,2400.8363245076084,4.439367272230771,80.17364775222737,498.8656148153056,0.5027336659986759 +0,2470.878144633284,5.059910219287819,76.53533073412834,511.4865535576773,0.5114291659992887 +1,2471.2825696171453,5.060738408291481,76.54785777839565,511.5702719480872,0.5115128749966971 +2,2472.2526601011805,5.062724977626948,76.57790628410562,511.77108648011745,0.5117136669978208 +3,2486.86861203385,5.092655795829927,77.03063468659306,514.7966759440264,0.5147389169978851 +4,2438.579159172317,4.993767756147116,75.53487122543054,504.8004703962223,0.5047438330002478 +5,2483.3550342957747,5.085460625990506,76.92180178650541,514.069344338537,0.5140116669972485 +6,2529.011615665531,5.17895702246491,78.33601218085998,523.5205297410887,0.5234617919995799 +7,2485.2785037386584,5.089399542489352,76.98138115924293,514.4675140169369,0.5144097920019703 +8,2452.5283888974823,5.0223332482135135,75.96694793986532,507.6880443757024,0.5076310830008879 +9,2453.483579580111,5.024289305458545,75.99653492494912,507.88577455973,0.5078287910000654 +10,2421.95981811879,4.959734360442346,75.0200879420551,501.3601674025959,0.5013039160003245 +11,2434.911182100675,4.986256404480817,75.42125581347142,504.04117720526614,0.5039846250001574 +12,2436.3835269792403,4.989271499706597,75.4668616247011,504.3459614008045,0.5042893749996438 +13,2437.361062512936,4.991273315153225,75.49714074046335,504.5483171026412,0.5044917079976585 +14,2465.617039685807,5.049136430727543,76.37236826345503,510.39747336837894,0.5103402080021624 +15,2513.0932170578712,5.14635902973729,77.8429405557614,520.2253260258941,0.520166957998299 +16,2442.3500095436866,5.00148977366989,75.65167313286112,505.5810589754782,0.5055243339993467 +17,2446.6220997562223,5.01023823946173,75.78400092007014,506.4654071996281,0.5064085830017575 +18,2453.3543417605524,5.02402464984802,75.99253178975415,507.8590215581468,0.5078020410001045 +19,2424.807480486709,4.965565856401712,75.10829414583782,501.9496505438128,0.501893333002954 +20,2450.440055490727,5.018056720223224,75.90226191384002,507.2557468707767,0.5071988339987001 +21,2464.459740369257,5.046766491663043,76.33652097323437,510.1579054883754,0.5101006670010975 +22,2443.288889685493,5.003412429886074,75.68075489973373,505.7754127800068,0.505718665997847 +23,2443.3827042784415,5.003604545154328,75.68366080220189,505.7948329618256,0.5057380840007681 +24,2427.1200740925306,4.970301628598562,75.17992662065639,502.4283712511817,0.5023719999990135 +25,2480.855628025912,5.080342295345792,76.84438279847542,513.5519522924383,0.5134943330012902 +26,2425.9502906531498,4.967906124315142,75.14369263533632,502.1862190830883,0.5021298749998095 +27,2476.2954703401924,5.071003919624735,76.70313213525095,512.6079723784898,0.5125504589996126 +28,2440.322666748109,4.9973381433875055,75.58887628806,505.1613868918336,0.5051047090018983 +29,2464.9064345783636,5.047681240372309,76.35035730470432,510.25037386121136,0.5101931249992049 +0,1498.0751520313647,2.2321539649090747,0.0,455.8924605345638,0.4968715840004734 +1,1498.847619915133,2.2333049533939846,0.0,456.1275370484073,0.4971277910008211 +2,1496.7750505314252,2.230216794591591,0.0,455.49681518196024,0.4964403749982011 +3,1500.872832454395,2.236322549803061,0.0,456.7438473358969,0.4977995000008377 +4,1497.800909311091,2.2317453392305984,0.0,455.8090033139031,0.4967806250024296 +5,1496.0770746230237,2.2291768002433523,0.0,455.2844079780602,0.4962088749998656 +6,1499.5432109515264,2.234341394247927,0.0,456.33921849087506,0.4973585000007006 +7,1487.434284612173,2.216298916270418,0.0,452.654244332006,0.4933422920003067 +8,1508.8235499563525,2.2481692355796734,0.0,459.1634002936157,0.5004365410022729 +9,1496.828313791734,2.230296157631237,0.0,455.5130241944155,0.4964580410014605 +10,1497.546140555687,2.231365730045613,0.0,455.73147238722646,0.4966961249992891 +11,1521.290635923741,2.2667453766599355,0.0,462.95736916738144,0.5045715410014964 +12,1498.7081784907232,2.2330971836249267,0.0,456.08510239885817,0.497081541998341 +13,1547.3486576230418,2.3055722114651913,0.0,470.8873155476072,0.5132142920010665 +14,1495.5347488514144,2.228368726883529,0.0,455.1193680399136,0.4960290000017266 +15,1494.2857789928514,2.2265077434621947,0.0,454.73928300801,0.4956147500015504 +16,1492.916332152243,2.224467247569281,0.0,454.3225345632543,0.4951605409987678 +17,1501.7675380811677,2.2376556743192237,0.0,457.0161230952874,0.4980962500012538 +18,1493.492579873052,2.22532586513131,0.0,454.4978975889082,0.4953516670029785 +19,1494.308895111859,2.226542186818809,0.0,454.74631767803857,0.4956224170018686 +20,1491.9323097299357,2.223001039716801,0.0,454.0230780221598,0.4948341669987712 +21,1493.7994812276888,2.2257831526543423,0.0,454.59129344659726,0.4954534579992469 +22,1496.291517545306,2.2294963233450944,0.0,455.3496669948399,0.4962799999993876 +23,1497.8985204108506,2.2318907812019524,0.0,455.8387082084704,0.4968130000015662 +24,1494.7227058775966,2.2271587709335714,0.0,454.87224808141775,0.4957596669992199 +25,1502.2086076044627,2.238312874382845,0.0,457.1503488515649,0.4982425410016731 +26,1494.178118838679,2.226347328252268,0.0,454.7065199970752,0.495579041999008 +27,1494.5827579360664,2.22695024644657,0.0,454.82965928917696,0.4957132499985164 +28,1492.3949878643557,2.2236904369281643,0.0,454.16387968544774,0.4949876249993394 +29,1489.713509131059,2.2196949942574604,0.0,453.347855245061,0.4940982500011159 +0,2395.8655757689444,3.096520699756162,76.33596681572799,512.8107541465748,0.5140692499990109 +1,2362.707427351115,3.053665668998252,75.27949714443517,505.7135884006235,0.5069546670019918 +2,2353.1576843970593,3.0413231665500113,74.97522762755898,503.6695626690867,0.5049056249990826 +3,2367.9500075765386,3.0604414073169375,75.44653382385668,506.8357095856616,0.5080795419999049 +4,2359.501911398626,3.0495227209962152,75.17736446977626,505.0274801858515,0.5062668749997101 +5,2372.3903839046407,3.066180342486646,75.58801105173602,507.7861271535494,0.5090322920004837 +6,2390.2113070609053,3.089212877366833,76.15581310726063,511.6005152126203,0.5128560410012142 +7,2366.0490651138666,3.0579845467383464,75.38596686959315,506.42883210984184,0.5076716660005332 +8,2374.94671706145,3.0694842584557183,75.66945976279966,508.3332843677318,0.5095807920006337 +9,2369.4573166788196,3.0623895190488097,75.49455901307283,507.1583338285615,0.5084029579993512 +10,2372.1474506927952,3.0658663650553803,75.58027082549569,507.7341297606933,0.508980167000118 +11,2369.178263914163,3.0620288591391622,75.48566796225674,507.0986054113508,0.5083430830018187 +12,2361.703261469754,3.052367841411817,75.24750287306523,505.4986568668527,0.506739208001818 +13,2380.717300094534,3.076942410529159,75.85331942478405,509.5684192045899,0.5108189579987084 +14,2410.73848519753,3.115743093690526,76.80984061402297,515.9941497333572,0.5172604580002371 +15,2364.8777052574305,3.0564706303988816,75.34864554070286,506.1781143995365,0.5074203330004821 +16,2399.6860937488896,3.101458503082166,76.45769440206905,513.6284973147814,0.5148890000018582 +17,2393.820159706821,3.0938771152245272,76.2707967101003,512.3729535604446,0.5136303750005027 +18,2355.617892899504,3.044502846842004,75.05361365910507,504.19614537483454,0.5054334999986168 +19,2364.9132422321604,3.0565165599280553,75.34977780344379,506.1857207289548,0.5074279579966969 +20,2372.0480216881065,3.0657378586924655,75.57710286428818,507.7128479895479,0.5089588330010884 +21,2359.649302534189,3.0497132156996103,75.18206057833387,505.05902776520935,0.5062985000004119 +22,2355.571678502875,3.044443117349149,75.05214119725946,504.1862536514308,0.5054235839998 +23,2370.839959683822,3.0641765069034967,75.53861214844707,507.4542745563226,0.5086996249992808 +24,2350.0315942171287,3.037282871865134,74.87562558032744,503.00045473627375,0.5042348749993835 +25,2385.8064723871476,3.0835198777744344,76.01546829122194,510.6577049757748,0.5119109170009324 +26,2359.7695084333436,3.0498685750230763,75.18589052339496,505.084756620126,0.5063242919968616 +27,2407.1669219062924,3.1111270502139403,76.696045107448,515.229692794126,0.5164941249968251 +28,2355.0786254631134,3.0438058741919622,75.03643176812359,504.08072064335585,0.5053177920017333 +29,2381.4006636584368,3.077825619271121,75.8750924402924,509.71468625233473,0.5109655840024061 +0,1569.846862023868,1.935404782599306,2.1022500224785565,451.1161595855175,0.4955833330022869 +1,1562.7387326973612,1.926641438972196,2.092731218193937,449.07354505974337,0.4933393750034156 +2,1564.8221409429648,1.929209994147985,2.0955212005400528,449.67223984287256,0.4939970839986927 +3,1566.70743332246,1.9315342997704896,2.098045877336911,450.2140034240905,0.4945922500010056 +4,1572.006557387211,1.938067389275337,2.105142164212866,451.73677647609105,0.4962651249988994 +5,1567.5576911020446,1.932582550407452,2.099184494408094,450.458336188937,0.4948606670004665 +6,1567.7214852355596,1.9327844859955885,2.0994038382365874,450.50540458921313,0.4949123750011495 +7,1562.9735365860945,1.9269309198000528,2.0930456542655747,449.1410190478778,0.4934135000003152 +8,1572.8194619481285,1.9390695885427025,2.1062307599687973,451.9703753018757,0.4965217499993741 +9,1561.6044389968424,1.9252430111981476,2.0912122363014363,448.7475908342717,0.4929812909977045 +10,1561.3753115790362,1.9249605286764608,2.0909054018382247,448.68174805477713,0.4929089580000436 +11,1564.2604044990444,1.9285174505461704,2.0947689549035986,449.5108174816151,0.4938197500014212 +12,1566.0254582717266,1.9306935185409744,2.0971326149669207,450.018028916473,0.494376958002249 +13,1574.8272419684413,1.9415449045418132,2.108919465278176,452.54733731897886,0.4971555839983921 +14,1568.229238167961,1.933410475369152,2.10008379221132,450.6513140778545,0.4950726669994765 +15,1568.8164427249465,1.9341344176436792,2.1008701433026173,450.82005503663623,0.4952580409990332 +16,1563.710683035462,1.927839719758886,2.0940327990484455,449.35284778311006,0.4936462090008717 +17,1568.0795623747388,1.933225945748429,2.099883354864673,450.6083027685002,0.4950254160030454 +18,1560.7671180085997,1.9242107098416148,2.0900909434486503,448.50697562670325,0.4927169580005284 +19,1563.612085984862,1.9277181631867784,2.093900763461501,449.32451462279414,0.4936150829998951 +20,1564.0175483651533,1.9282180424100093,2.094443735721217,449.44102957484336,0.4937430829995719 +21,1564.1054545123825,1.928326418571967,2.094561454655757,449.4662905633521,0.4937708340003155 +22,1570.2845301465647,1.935944367063466,2.102836122844799,451.2419292815689,0.4957214999994903 +23,1565.8178456929554,1.9304375608500672,2.0968545919578316,449.9583687091734,0.4943114170018816 +24,1563.734307549568,1.9278688455282165,2.094064435659959,449.3596365982062,0.4936536669993074 +25,1556.033423900803,1.9183747175310144,2.083751848352654,447.146686315548,0.4912225830012175 +26,1563.3882359065292,1.9274421868971985,2.093600996112474,449.2601883562625,0.493544416000077 +27,1574.1810331293302,1.9407482181209723,2.1080540989934704,452.3616407030591,0.4969515829980082 +28,1587.1576792588178,1.9567466340102333,2.125431688666288,456.0906507790404,0.5010481669996807 +29,1607.7780546805436,1.9821687144536408,2.1530453277686097,462.0161870810133,0.5075577919997158 +0,2465.383134850831,3.173907289853979,80.05674664089132,513.1937967924534,0.513869665999664 +1,2464.067773614059,3.172213908180694,80.0140337903875,512.9199913876422,0.5135954999968817 +2,2412.3763506907044,3.1056669355336664,78.33549259734386,502.1599122678319,0.5028212500001246 +3,2431.3447868159506,3.130086692789243,78.95144200641803,506.10837918833727,0.5067749169975286 +4,2450.686837645002,3.1549874375291744,79.57952355725183,510.1346176915523,0.5108064580017526 +5,2443.362178479309,3.145557751411404,79.34167477230254,508.6099176989567,0.5092797500001325 +6,2393.263984098182,3.08106188376834,77.71486942994397,498.1814848020744,0.4988375829998404 +7,2444.9536079120767,3.1476065402615205,79.39335220170283,508.9411894195198,0.509611458001018 +8,2448.3219835209475,3.151942950188576,79.5027312223097,509.6423499991081,0.5103135419994942 +9,2433.153311361756,3.132414967514039,79.010169021019,506.4848413962327,0.507151875001 +10,2442.064002544568,3.143886493908039,79.29951996868043,508.33968958413067,0.5090091659985774 +11,2458.541842139946,3.165099884424714,79.83459389330848,511.7697142911833,0.5124437080012285 +12,2425.5891663054945,3.1226769698794303,78.76454357004393,504.91029005529214,0.5055752499974915 +13,2433.5599148820666,3.132938424440044,79.02337238667387,506.56947992621514,0.5072366249987681 +14,2461.111202218639,3.1684076504951255,79.91802701408449,512.3045519135682,0.5129792499974428 +15,2424.331372469783,3.121057699848795,78.72370006746269,504.64846787236,0.5053130829983274 +16,2451.115433732921,3.1555392074462385,79.59344107292587,510.22383419122747,0.5108957919983368 +17,2424.6440230061144,3.121460202730562,78.73385256036343,504.7135491627853,0.5053782499999215 +18,2419.4251431478147,3.1147414738672974,78.56438334616342,503.62718788626654,0.5042904580004688 +19,2413.0518258993543,3.1065365349312386,78.357426854489,502.30051908957336,0.5029620419991261 +20,2419.2756185947433,3.114548977592663,78.55952793481067,503.5960628769243,0.5042592919999151 +21,2429.436907105611,3.127630509312034,78.88948869764714,505.71123522376166,0.5063772499997867 +22,2428.00359968547,3.1257852850119727,78.84294585918497,505.4128781584784,0.5060785000023316 +23,2418.4875993658243,3.1135344902540196,78.53393911055618,503.4320289082005,0.5040950420006993 +24,2403.823283504525,3.0946558103624597,78.0577545358446,500.3795070393514,0.5010385000023234 +25,2477.9042878971054,3.1900268853720815,80.46333771507665,515.8001981996837,0.5164795000018785 +26,2406.404834514243,3.097979270904169,78.14158352461473,500.9168823241752,0.5015765830030432 +27,2436.1798521588453,3.13631130304223,79.10844786716093,507.1148456908389,0.5077827090026403 +28,2436.510090972033,3.136736448879302,79.11917149247687,507.183588154431,0.5078515419991163 +29,2419.62605086608,3.115000120266948,78.57090728886101,503.66900880784414,0.5043323339996277 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/without_smell.csv new file mode 100644 index 000000000..d81eda01e --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n50/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,349.9313561302415,1.1466524776819789,10.016346643280814,63.43686207411183,0.0633631250020698 +1,356.5976338815478,1.1684964872756962,10.207160491790642,64.64534978134073,0.0645702080000774 +2,342.34670848366727,1.121799160412942,9.799245607136582,62.061888845198354,0.0619897500000661 +3,343.87969785001445,1.126822448621867,9.843125507079248,62.339794878168576,0.0622673330035468 +4,344.6413629741717,1.1293182672630917,9.864927216974651,62.4778723741728,0.0624052500024845 +5,350.37501142418506,1.148106244065371,10.029045720218097,63.51728956138127,0.0634434590028831 +6,331.7819094104552,1.0871805050072745,9.496841470210605,60.146662644667146,0.0600767500000074 +7,346.47602619587343,1.135330078128344,9.917442153062298,62.810466969394554,0.0627374579999013 +8,344.36385060606943,1.1284089167893565,9.856983773130557,62.42756389649351,0.062355000001844 +9,353.3477956594746,1.1578474414439224,10.114137944377791,64.05620698105935,0.0639817500014032 +10,333.26358795573077,1.0920356582974986,9.539252662186971,60.4152668605175,0.0603450419985165 +11,344.4812065706353,1.1287934679454126,9.860342940581988,62.44883862368592,0.0623762499999429 +12,330.46545148320524,1.0828667454152832,9.459159511421738,59.90801023900435,0.059838374996616 +13,354.0054530277231,1.1600024482404188,10.132962562570716,64.17542956294787,0.0641008340026019 +14,332.47822521054457,1.0894621874670891,9.51677263758016,60.27289337134101,0.0602028339999378 +15,332.94188901480146,1.0909815175889794,9.530044433056672,60.3569480760256,0.0602867910019995 +16,331.5582427131216,1.0864475956289643,9.490439291229483,60.106115511120066,0.0600362499972106 +17,353.44927407068246,1.1581799651506557,10.117042636757198,64.07460336612893,0.0640001250030763 +18,329.50175184444817,1.079708901572016,9.431574816673198,59.73330717226359,0.0596638749993871 +19,343.71309652276335,1.1262765306258629,9.838356752820038,62.309592767860245,0.0622371659992495 +20,345.21272917014005,1.1311905157849615,9.881281858474518,62.58145177033861,0.062508709001122 +21,353.99233124718177,1.1599594508870643,10.132586968042885,64.17305079760494,0.0640984580022632 +22,353.40509298276,1.1580351928887662,10.115778008469515,64.06659405364027,0.0639921250003681 +23,374.3218432757152,1.2265750454292903,10.714493779191155,67.85846060154398,0.0677795839983446 +24,353.6156434045482,1.1587251229524518,10.121804750496418,64.10476341981064,0.0640302499996323 +25,352.0352477660601,1.1535464942218625,10.07656790540862,63.81826340092126,0.0637440829996194 +26,353.2720858728606,1.1575993561755262,10.111970846592095,64.04248202841661,0.0639680410022265 +27,345.7760323151516,1.1330363433611366,9.897405705242871,62.68356946653818,0.0626107079988287 +28,343.8803881644448,1.126824710639083,9.84314526646493,62.339920020944554,0.0622674580008606 +29,350.8890747717809,1.1497907230378324,10.043760139477536,63.61048088335773,0.0635365420021116 +0,367.59000204257785,0.300155145924805,9.671665813132606,60.79809233565772,0.0593550839985255 +1,359.1743921729426,0.2932833904515045,9.450242581215146,59.406180088121424,0.0579962080009863 +2,369.50288557151976,0.3017171085232877,9.721995719083717,61.1144765375504,0.0596639590003178 +3,367.9933193312075,0.3004844741408879,9.68227750009528,60.86479959542653,0.0594202079992101 +4,368.5615394097468,0.3009484535191182,9.697227946727144,60.95878119615029,0.0595119589997921 +5,348.39381726937063,0.2844805258051475,9.166594720388083,57.62311094919821,0.056255458999658 +6,365.2779196413032,0.2982672179977979,9.610832579929044,60.41568204555396,0.0589817500003846 +7,378.20491860444434,0.3088227424641625,9.950955034956348,62.5537621680187,0.0610690840003371 +8,367.9907368243029,0.3004823653981788,9.682209551719094,60.86437245787555,0.0594197909995273 +9,361.874829413902,0.2954884290260495,9.521293824172709,59.85282290160982,0.0584322499998961 +10,366.4269936562932,0.2992054929147739,9.641065882809384,60.605734842625886,0.0591672920018027 +11,379.3253434741879,0.3097376239582373,9.980434549765423,62.73907649731851,0.0612499999988358 +12,372.0247519362511,0.3037763352772872,9.788348581157033,61.53158435672162,0.060071167001297 +13,358.30194388610613,0.2925709939189762,9.427287581833676,59.26188021269928,0.0578553330014983 +14,359.21258479239305,0.2933145765860586,9.451247467772998,59.41249701293164,0.0580023749971587 +15,374.3120558659924,0.3056440303750618,9.848529867640885,61.90989637485975,0.0604404999976395 +16,367.8761650716482,0.3003888119801155,9.679195052692611,60.84542269330562,0.0594012909969023 +17,355.3414040135402,0.2901535688733317,9.349392774807356,58.772217339564854,0.0573772919997281 +18,350.9303921671755,0.2865517627930121,9.233334578885946,58.04265150796235,0.0566650420005316 +19,373.7742933228857,0.3052049210584259,9.834380789660392,61.82095234327895,0.0603536670023459 +20,375.95244447471293,0.3069834875950296,9.891690155839845,62.18121087619322,0.0607053750027262 +21,373.3237476822228,0.3048370285919076,9.822526476850356,61.74643368033861,0.0602809169977263 +22,359.6876425745526,0.2937024844103587,9.463746719889336,59.4910698977871,0.0580790829990292 +23,366.183655668,0.2990067955917256,9.63466341351116,60.56548759596843,0.0591280000007827 +24,382.3439433397997,0.3122024578169295,10.059856974101065,63.238342288918055,0.0617374159992323 +25,366.5838826179828,0.2993336003957399,9.645193790529396,60.63168372460376,0.0591926250017422 +26,361.2944833317239,0.2950145481750603,9.506024330085278,59.756835702570555,0.0583385410027403 +27,363.4254185231531,0.2967545605796025,9.562091396453855,60.10928488184614,0.058682625000074 +28,370.6326000446566,0.3026395754311295,9.75171965278084,61.30132733454991,0.0598463749993243 +29,390.4818932754045,0.3188474904262965,10.273974691513995,64.58433056079316,0.0630514580007002 +0,350.3254768164158,0.2699223552471662,10.965595681916126,63.263052011054576,0.0633080840016191 +1,347.115023758866,0.267448732550412,10.865104759860488,62.68329669150282,0.0627279159998579 +2,365.8669906637541,0.2818969397389996,11.45206317689686,66.06959525132802,0.0661166249992675 +3,346.1915996063299,0.2667372432679032,10.836200507758567,62.51654139091482,0.0625610419992881 +4,345.2937631135986,0.2660454690271394,10.80809717922754,62.35440680323581,0.0623987920007493 +5,344.70834603732743,0.2655944108926726,10.789772942514825,62.24869005297014,0.0622929999990446 +6,352.2442682349835,0.2714007652778453,11.025656089412466,63.609554361995,0.0636548330003279 +7,336.95937238273893,0.2596239024426381,10.547221036732171,60.84935213499331,0.0608926660024735 +8,348.2212966790107,0.2683011050209078,10.89973239147438,62.88307148927527,0.0629278330015949 +9,337.41659112344763,0.259976185012769,10.561532516143744,60.93191836236774,0.0609752910022507 +10,334.9993053726752,0.2581136899722047,10.485868655120818,60.49539608723549,0.0605384580012469 +11,330.9673416094647,0.2550071013074947,10.359663490616972,59.76728936894407,0.0598098330010543 +12,338.5069547476698,0.2608162995262793,10.595662168255098,61.12882020147172,0.061172333000286 +13,335.0811592865223,0.2581767576126532,10.488430778014036,60.51017756546559,0.0605532500012486 +14,352.943817073241,0.2719397608192168,11.047552783280684,63.73588144200393,0.0637812500026484 +15,345.08740182486946,0.2658864696714779,10.801637830403791,62.31714132925264,0.0623615000004065 +16,338.1361994544708,0.260530636197223,10.584057095512184,61.06186785872414,0.0611053329994319 +17,355.63225218509643,0.2740111737918493,11.131703935293878,64.22136885746468,0.0642670829984126 +18,352.07434056761844,0.2712698376712845,11.020337155395934,63.57886820420732,0.0636241249994782 +19,349.6100187023671,0.2693711017643202,10.943201009175509,63.13385197601255,0.0631787919992348 +20,351.71165335242455,0.2709903907174609,11.008984622896849,63.5133728244049,0.0635585829986666 +21,356.10376991571917,0.2743744735939279,11.14646298975332,64.30651724857685,0.0643522919999668 +22,345.28015583657924,0.2660349847532152,10.807671255599368,62.35194955153482,0.0623963329999242 +23,344.455645883133,0.26539970789416,10.781863133200252,62.20305653769376,0.0622473340008582 +24,346.3271743070028,0.2668417022494483,10.84044415388384,62.54102396471446,0.0625855420003063 +25,339.3314757733539,0.2614515849163855,10.621470637228162,61.277715214777864,0.0613213340002403 +26,351.40222764763104,0.2707519812367377,10.999299237742472,63.45749560236042,0.063502666002023 +27,344.3055453324584,0.2652840568871874,10.77716481104199,62.175950832934554,0.0622202090016799 +28,345.1980750425133,0.265971742303776,10.8051020310909,62.3371271024475,0.0623814999999012 +29,351.5027576687169,0.2708294386352437,11.002445944556776,63.47564968013525,0.0635208330022578 +0,240.42885516643568,0.0,0.0,53.41728600341795,0.0619687500002328 +1,228.54878409089892,0.0,0.0,50.77783095987262,0.0589067500004603 +2,213.1201140526296,0.0,0.0,47.34996586640836,0.0549301249993732 +3,237.0842698478049,0.0,0.0,52.67420268921069,0.0611067079989879 +4,238.04340130189988,0.0,0.0,52.88729774039662,0.0613539170008152 +5,237.9774440222685,0.0,0.0,52.872643680393544,0.0613369170023361 +6,233.25082854773103,0.0,0.0,51.82250778694279,0.0601186670028255 +7,237.04628233946255,0.0,0.0,52.66576281373786,0.061096917001123 +8,239.07317300806952,0.0,0.0,53.11608729108766,0.0616193330024543 +9,234.15515335358452,0.0,0.0,52.02342616989155,0.0603517499985173 +10,235.7027246756318,0.0,0.0,52.3672578612385,0.060750625001674 +11,231.79378555125,0.0,0.0,51.49878922825138,0.0597431250025692 +12,238.1722430460066,0.0,0.0,52.91592315763018,0.0613871250025113 +13,238.895348273858,0.0,0.0,53.076579076987144,0.0615734999992128 +14,245.18230748969597,0.0,0.0,54.473384374303734,0.0631939169979887 +15,239.73953556253844,0.0,0.0,53.26413640578063,0.0617910829969332 +16,237.05193913270705,0.0,0.0,52.6670196118971,0.0610983749975275 +17,238.06603239878575,0.0,0.0,52.89232580482793,0.0613597499977913 +18,238.4611281800858,0.0,0.0,52.98010621843028,0.061461582998163 +19,212.7853148761528,0.0,0.0,47.27558185226334,0.054843833000632 +20,236.73621713579013,0.0,0.0,52.59687407052601,0.0610169999999925 +21,239.5788481011822,0.0,0.0,53.22843566564073,0.0617496669983665 +22,240.51291579071105,0.0,0.0,53.43596217440181,0.0619904160012083 +23,237.5108932275132,0.0,0.0,52.76898774765905,0.0612166670034639 +24,237.61047320422924,0.0,0.0,52.79111193110106,0.0612423330021556 +25,235.96202604191544,0.0,0.0,52.42486814780024,0.0608174580011109 +26,250.0384126471728,0.0,0.0,55.55228964081196,0.0644455420006124 +27,216.35622292125151,0.0,0.0,48.068948423030825,0.0557642080020741 +28,237.4518847231131,0.0,0.0,52.75587753194059,0.0612014580001414 +29,235.66344128962425,0.0,0.0,52.35853007411787,0.0607405000009748 +0,393.6707450554323,0.3406635038555142,11.684758182244138,66.53158230298193,0.0646891249998589 +1,373.5110006248911,0.3232182421468424,11.086385705636696,63.12452269127834,0.0613764169975183 +2,388.17293003004767,0.3359059622966837,11.52157450677625,65.60243443654232,0.0637857080000685 +3,390.9730568158952,0.3383290557423807,11.60468661196366,66.07566458648697,0.0642458330003137 +4,408.3709649248352,0.3533843587096185,12.121083503739916,69.0159652559885,0.0671047080031712 +5,401.99100267653665,0.3478634498758537,11.931716330741784,67.93773176075425,0.0660563339988584 +6,389.1197486615635,0.3367252930612353,11.54967755200037,65.76244973485925,0.0639412919990718 +7,383.0780350607198,0.3314970881453096,11.37035012338412,64.74138131477898,0.0629484999990381 +8,386.1588591424435,0.3341630833700618,11.46179375959312,65.26205018217308,0.0634547499976179 +9,361.0748654835688,0.3124566160293949,10.717261929808243,61.02277711054082,0.0593328750001092 +10,380.8633957019595,0.3295806470248871,11.304616192953628,64.36710036396045,0.0625845840004331 +11,339.917840818384,0.2941483565406576,10.089288629344557,57.44717403239043,0.0558562910009641 +12,384.8334749313357,0.3330161603767183,11.422454300921435,65.03805612157308,0.0632369589984591 +13,403.7246257549707,0.349363642917074,11.98317295205564,68.23071946170457,0.0663412079993577 +14,389.58656122469694,0.3371292499348364,11.56353327276489,65.84134251227356,0.0640180000009422 +15,376.2221258345194,0.325564317959951,11.16685610602632,63.58271129757843,0.0618219169991789 +16,374.7899823012124,0.3243250106448705,11.12434786511906,63.34067457894322,0.0615865829968242 +17,399.8438036989407,0.3460053683791456,11.867984135404695,67.57484844444714,0.0657035000003816 +18,380.1300774278582,0.3289460690791435,11.28285016941462,64.24316729115672,0.0624640830028511 +19,390.02142447908176,0.3375055594315349,11.576440688501648,65.91483575697877,0.0640894579992163 +20,398.35714556030706,0.3447188867776973,11.82385781647502,67.32359858768429,0.0654592079990834 +21,394.6685243299055,0.3415269334803613,11.714373818376393,66.70021010871457,0.0648530830003437 +22,403.329829946017,0.3490220058376748,11.971454800232246,68.16399774009788,0.0662763340005767 +23,374.6576210026007,0.3242104716187268,11.120419176522333,63.31830510713735,0.061564833002194 +24,387.9335659886732,0.3356988283044939,11.514469810844142,65.56198116786766,0.0637463750026654 +25,384.9361629864913,0.3331050216220935,11.425502241637808,65.05541072279487,0.0632538329991803 +26,379.1444693144055,0.3280931717847053,11.253595792215393,64.07659644955295,0.0623021250030433 +27,373.0231380609561,0.3227960696269956,11.07190518820595,63.04207239815224,0.0612962499981222 +28,380.0641523424702,0.3288890207186485,11.280893410649645,64.23202574635205,0.0624532500005443 +29,383.8308698192803,0.3321485547068884,11.392695426446274,64.86861273425531,0.0630722080022678 +0,355.6184613008034,1.350364386940586,9.688864476298706,63.33208974751349,0.0633423750005022 +1,348.50757142134177,1.3233627166179676,9.495127491733918,62.06571140938268,0.0620757910000975 +2,346.029827857337,1.3139541593215758,9.427621093132307,61.62445007218191,0.0616344580012082 +3,347.87270341201554,1.3209519780217032,9.477830442305722,61.95264776921788,0.0619627089981804 +4,346.1149788313074,1.314277496986168,9.429941040875756,61.639614608651286,0.0616496250004274 +5,354.9070882273034,1.3476631411706983,9.66948303789976,63.20540132090575,0.0632156659994507 +6,336.34552236242973,1.2771806431077644,9.163771114298209,59.89977216175414,0.059909499999776 +7,365.08381755315065,1.3863065029548154,9.9467491587008,65.01777498858085,0.0650283340000896 +8,353.4878622118082,1.3422740163729188,9.630816067475692,62.95265136788989,0.0629628749993571 +9,353.1795457172205,1.3411032683395498,9.62241595033627,62.89774328512489,0.062907957999414 +10,355.0965683959524,1.3483826405769976,9.67464544613996,63.239145843061195,0.0632494160017813 +11,341.5351733055264,1.2968869311012965,9.305163730651802,60.8239970686508,0.0608338750025723 +12,356.90762812919155,1.3552596473483636,9.723987969724508,63.56167746063825,0.0635719999991124 +13,349.3242112325084,1.3264636841940702,9.517376934092454,62.211146788701896,0.0622212499984016 +14,361.07853270475806,1.3710975230862277,9.837624728143684,64.30447383274408,0.0643149170027754 +15,362.2671094199502,1.3756108198972858,9.870007632763024,64.5161474531827,0.0645266249994165 +16,347.40601521064906,1.3191798565052175,9.465115470424935,61.86953527009471,0.0618795830014278 +17,352.59402676578674,1.3388799193688503,9.6064634214715,62.79346821839908,0.0628036659982171 +18,335.8762684431325,1.2753987789752517,9.15098623914743,59.8162027339393,0.0598259170001256 +19,351.5462773079037,1.334901375765725,9.577917371119078,62.606874523412515,0.0626170420000562 +20,352.236361233731,1.337521781787473,9.596718784325118,62.72977156583248,0.0627399590011918 +21,357.35630030123406,1.3569633578934273,9.73621209288534,63.64158148520174,0.0636519170002429 +22,337.8756349610443,1.2829908295463994,9.205459201995415,60.172269905726125,0.0601820419979048 +23,354.24133636365434,1.3451351295373244,9.651344554430302,63.08683757530051,0.0630970829988655 +24,354.50660859976284,1.3461424287061432,9.658571925966578,63.13407990631812,0.0631443330021284 +25,367.2932459869659,1.394696206519711,10.006945281778927,65.41125208577445,0.0654218749987194 +26,337.036538234949,1.2798045879436073,9.182597918495382,60.02283517455518,0.0600325829982466 +27,355.2156405220305,1.3488347845909645,9.677889579440173,63.260351397316235,0.0632706249998591 +28,350.34483276771266,1.3303392168889792,9.545183881178424,62.39290927209312,0.0624030420003691 +29,347.1143112188389,1.3180721899329368,9.45716796276882,61.81758570785473,0.0618276250024791 +0,336.97433817066894,0.3673290773835455,10.452181929186342,62.212188287776854,0.0631597079991479 +1,330.7703056824168,0.3605661839764725,10.259746871330536,61.066800068015304,0.0619968749997497 +2,334.2737986243397,0.3643852725069603,10.368417299516231,61.713614789133366,0.0626535410010546 +3,330.62202776703504,0.3604045491465053,10.255147625714198,61.03942500544904,0.0619690830026229 +4,339.2787336454407,0.3698410534238279,10.523659065605283,62.6376256844174,0.0635916249993897 +5,326.52765323109134,0.3559413522487369,10.12814938671406,60.28352174903609,0.0612016669983859 +6,347.80605915722936,0.3791365227162345,10.7881574191074,64.21194016548591,0.06518991700068 +7,312.5587912483423,0.3407141714133153,9.694866877487971,57.70459103118241,0.0585834580015216 +8,375.7459972937605,0.4095932980112343,11.65479111613785,69.37021038135724,0.0704267500004789 +9,318.4162550196838,0.3470992771000418,9.876552157483008,58.785995748852535,0.0596813330012082 +10,332.9373125200409,0.3629283953741403,10.32696252291872,61.46687278018394,0.062403040999925 +11,337.7681842263857,0.3681944333059402,10.47680523861448,62.35874811354242,0.0633084999972197 +12,337.0256901842581,0.3673850552003606,10.453774752519353,62.22166889438835,0.0631693329996778 +13,317.6766526799566,0.3462930511821943,9.853611365456985,58.64945039567527,0.0595427080006629 +14,328.40589370391314,0.3579887851296248,10.186408158688415,60.630282426953734,0.0615537089979625 +15,341.488646752852,0.3722500360996306,10.592205572653125,63.04561975032834,0.0640058329991006 +16,331.6672985956367,0.3615439782530971,10.287569563019948,61.23240286232,0.0621649999993678 +17,337.1901926729352,0.3675643761175589,10.458877247708722,62.252039337001115,0.0632001659978414 +18,319.18942688710314,0.3479420964976845,9.900534200343206,58.92873870683511,0.0598262499988777 +19,401.922184598819,0.4381274433244484,12.466717250959304,74.20285699213157,0.0753330000006826 +20,342.1764542680749,0.3729998015012213,10.613539806352934,63.17260274516139,0.0641347500022675 +21,337.3818197078384,0.3677732649674187,10.464821084982006,62.28741751220919,0.0632360829986282 +22,338.1547675106831,0.3686158401166896,10.488796177865805,62.43011910339933,0.0633809579994704 +23,327.14054282261765,0.3566094510998706,10.147159835841771,60.39667339991444,0.0613165419999859 +24,335.28106096612464,0.3654832693119979,10.399660299514125,61.8995755207502,0.0628423339985602 +25,326.4769627941673,0.3558860956035914,10.126577083993102,60.27416328268098,0.0611921659983636 +26,330.93325561554514,0.3607438124834998,10.264801209757769,61.09688387788729,0.0620274169996264 +27,337.48563881729393,0.3678864361302382,10.468041318978596,62.30658459187579,0.0632555420015705 +28,333.07536807149745,0.3630788870068845,10.33124469392317,61.49236059034781,0.0624289170009433 +29,344.64868676424874,0.3756947333670336,10.690222867625591,63.6290262057076,0.0645981249981559 +0,353.39992586587454,1.1889836975204853,9.545840542950184,63.42378752202132,0.0643312920001335 +1,352.47862696982486,1.1858840665138777,9.52095493401142,63.25844434804028,0.064163582999754 +2,336.8809288619653,1.1334069508957785,9.099638662906107,60.459165066354814,0.0613242500003252 +3,347.78700620443374,1.170099511405862,9.39422750585849,62.41645107984983,0.0633095420016616 +4,349.67239785603925,1.1764427496838772,9.445154647461983,62.75481753313711,0.0636527499991643 +5,319.8922429606953,1.076249976316864,8.640749809858251,57.41024873667386,0.058231708000676 +6,343.4510799857494,1.155511660050104,9.277107899259406,61.6382934089584,0.0625202499977604 +7,328.512132916117,1.105250855720859,8.873585441644611,58.95723850373839,0.0598008329980075 +8,349.0321816744611,1.174288797328284,9.427861487121366,62.63991956034018,0.0635362079992774 +9,350.0937884628729,1.1778604821878835,9.456537014137009,62.8304434355651,0.0637294580010348 +10,351.3066954780864,1.1819412036655796,9.489299378000796,63.04812077838963,0.0639502499980153 +11,370.9484809385542,1.2480243038401804,10.01985226797402,66.57318215056048,0.0675257500006409 +12,341.55172400905167,1.1491214399996932,9.225803561140394,61.297420813697926,0.0621744999989459 +13,352.58987458086074,1.1862583495462968,9.523959892071698,63.27840967436961,0.0641838340015965 +14,350.38540207791414,1.1788415911493797,9.464413917513587,62.882778590739754,0.0637825419980799 +15,348.5869825268699,1.1727909630337834,9.415836017499805,62.56002079954495,0.0634551660004945 +16,341.4365925513635,1.148734090098791,9.22269369479315,61.27675846326979,0.062153541999578 +17,330.9470990613672,1.1134430901805108,8.939357381163529,59.39423569620039,0.0602440830007253 +18,350.56141730552014,1.1794337792649434,9.469168342098545,62.91436759678998,0.0638145829980203 +19,346.13004814041824,1.1645248183134325,9.34947068417356,62.1190810226051,0.0630079170005046 +20,348.3924269467375,1.172136397494551,9.410580791313391,62.525104403495035,0.063419750000321 +21,356.77152306622816,1.200327146719022,9.636912235087005,64.02887951212612,0.064945041998726 +22,349.6279944039193,1.1762933580829738,9.443955246323304,62.74684855831177,0.0636446669996075 +23,350.6754061403116,1.179817284909248,9.472247344557106,62.934824883587595,0.0638353329995879 +24,362.090538350972,1.2182225168013092,9.780586492033368,64.98346968194413,0.06591329100047 +25,354.05204084193906,1.191177682348156,9.563455106852338,63.54082094125735,0.0644500000016705 +26,348.6677854950157,1.173062817680049,9.418018621945537,62.57452230310432,0.0634698750000097 +27,353.46538566322664,1.1892039313864204,9.547608706273833,63.43553542566991,0.0643432079996273 +28,348.5711888939765,1.1727378267124078,9.41540940874819,62.55718635634473,0.0634522910004307 +29,315.04108176963365,1.059928661149397,8.509712965228015,56.53962315331212,0.0573486249995767 +0,361.4635469396571,0.1704534315475134,7.124953438686063,62.82913486841347,0.0632451250021404 +1,355.6449183357349,0.1677095719776171,7.010260108664397,61.81774823094969,0.0622270419989945 +2,378.2302728888048,0.1783600268267494,7.455449121358125,65.74350588833983,0.066178791999846 +3,359.06288961197356,0.1693213664113805,7.077633115995706,62.41185565923486,0.0628250829977332 +4,356.22239586901475,0.1679818899693552,7.02164300071905,61.91812464270435,0.0623280830004659 +5,358.4918360781341,0.1690520777506998,7.066376849979254,62.31259585890797,0.0627251660007459 +6,364.0768583305845,0.171685776822873,7.176465471196091,63.28337733691099,0.0637023749986838 +7,344.7123036558532,0.1625541373459649,6.794762941061333,59.91745502572267,0.0603141669998876 +8,331.99176104587264,0.1565555791030239,6.5440232065064015,57.706386457374634,0.0580884590017376 +9,361.14682329122274,0.1703040758706134,7.118710371391639,62.77408236590809,0.06318970799839 +10,355.5541882946238,0.1676667868973987,7.008471692311268,61.80197765038118,0.0622111670018057 +11,353.1251946264822,0.1665213593447525,6.960592820610656,61.379773054475784,0.0617861669998092 +12,349.0251905083527,0.1645879423315819,6.879775989460126,60.66711554342111,0.061068791001162 +13,360.0216334165911,0.1697734760994959,7.09653130095893,62.578503290274206,0.0629928339985781 +14,358.10605474759694,0.1688701569120046,7.058772558921792,62.245539837764895,0.0626576660033606 +15,358.13035037901693,0.1688816138729684,7.059251459890081,62.249762873576174,0.0626619169997866 +16,362.65327374016647,0.1710144646515922,7.148404622436555,63.03593167057689,0.0634532910007692 +17,356.01021613514007,0.1678818335070923,7.017460640596461,61.88124383071425,0.0622909580015402 +18,356.18572663045944,0.1679645980526546,7.020920198600964,61.911750842208505,0.0623216669991961 +19,355.71659365559987,0.1677433715248514,7.011672929738788,61.83020674406023,0.0622395829996094 +20,344.49440292303365,0.1624513830628282,6.790467812026222,59.8795797969585,0.0602760410001792 +21,361.4361650173394,0.1704405192008579,7.124413702595863,62.82437537743625,0.0632403339986922 +22,356.7505848359848,0.1682309652154978,7.032054346007811,62.00993377843252,0.0624205000021902 +23,339.33422020631144,0.16001802329827,6.688753373867688,58.98264338774234,0.0593731659973855 +24,328.5630621662911,0.1549387259107286,6.4764387430684565,57.11041437069456,0.0574885409987473 +25,339.39113867022303,0.1600448640338692,6.6898753166157325,58.99253688288419,0.0593831249971117 +26,340.30344013425093,0.1604750731558289,6.7078580579136515,59.15111196523856,0.0595427500011283 +27,342.4523851103312,0.1614884396445964,6.750216777144131,59.52463885299824,0.0599187500010884 +28,383.1723205253476,0.1806905217982399,7.552863811166429,66.60252633483123,0.0670434999992721 +29,331.530252230005,0.1563379478590988,6.5349262205103305,57.62616758086382,0.0580077089980477 +0,353.42379519516624,0.3071766447857553,10.170960016239452,63.756219162198995,0.0638574579970736 +1,344.73567152495644,0.2996254025808409,9.920929996565622,62.188916891223435,0.0622876669985998 +2,351.2821477228619,0.3053152418643898,10.109326897287575,63.369874644742254,0.0634705000011308 +3,345.7318892341187,0.3004912605607984,9.949599516346437,62.36863052528573,0.0624676660008844 +4,351.83422142570913,0.3057950741507853,10.125214677437114,63.46946650151855,0.063570250000339 +5,354.90429362600804,0.3084634130984135,10.213566344814138,64.02329507420406,0.0641249580003204 +6,366.573482495449,0.3186056342307138,10.54938655563919,66.12836941588593,0.0662333750005927 +7,348.3338361205126,0.3027527305731157,10.024479301198722,62.83801119006447,0.0629377919976832 +8,338.34369848808836,0.2940698489997871,9.736979444659616,61.035830881289144,0.0611327499973413 +9,343.5704113555571,0.298612622134236,9.887395710666926,61.97870868297254,0.0620771249996323 +10,351.68294492465503,0.3056635928847798,10.120861186629378,63.442176834307645,0.0635429169997223 +11,347.70289474870646,0.3022043508197352,10.006321838253456,62.724191925696154,0.0628237919991079 +12,330.85634481792073,0.2875622504453198,9.521505625856143,59.68514264798415,0.0597799169991049 +13,345.35761370997443,0.300165960732957,9.938828477602357,62.301112738795965,0.0624000410025473 +14,365.41698907830994,0.3176004733659864,10.516104562562662,65.91974269418473,0.0660244169994257 +15,352.2896670173115,0.3061909225645392,10.138321658248076,63.551627038951025,0.0636525410009198 +16,327.96729745630813,0.2850512483927352,9.438363557892789,59.16397022195882,0.0592579170006501 +17,347.8889892534473,0.3023660939914075,10.011677334382162,62.75776261954993,0.0628574160000425 +18,342.946615110539,0.29807045253451,9.869443872809333,61.86617837049608,0.0619644159996823 +19,335.18783487264136,0.2913269448434353,9.646158840371523,60.466525885281904,0.0605625409989443 +20,326.0613287092618,0.2833946845372627,9.38351288801159,58.820141190622984,0.0589135420013917 +21,345.1205513106695,0.2999599190532134,9.932006208650844,62.258347643489195,0.0623572080003214 +22,351.24502180377874,0.3052829740448101,10.108258473928156,63.36317727952281,0.06346379200113 +23,332.69313141298994,0.2891586849557614,9.57436534631299,60.01649149970692,0.0601117920014075 +24,337.44940551412554,0.2932925784285012,9.711243152410374,60.87450405604892,0.0609711670003889 +25,345.27367635482636,0.3000930069718432,9.936412897512144,62.28597078037814,0.0623848750001343 +26,358.1507803712324,0.3112850819257451,10.306994934874671,64.60894811525466,0.0647115410029073 +27,318.84747151039136,0.2771247941664435,9.175909851288909,57.51879061143516,0.0576101250007923 +28,347.78152996300275,0.3022726962498334,10.008584831383372,62.73837739940986,0.0628379999980097 +29,346.3464648714801,0.3010254161123439,9.967286000164275,62.47949747753983,0.0625787089993537 +0,377.1528286364101,0.2364171040077792,5.944201472195592,62.00882899404038,0.0626814159986679 +1,380.0216765811429,0.2382154326200412,5.989416591589608,62.48050489862795,0.0631582079986401 +2,380.1249700986712,0.2382801818474701,5.991044572164963,62.497487695993584,0.0631753750021744 +3,384.3681985530305,0.2409400367037891,6.057920922838127,63.19512962687955,0.06388058399898 +4,377.8084327889504,0.2368280674776263,5.95453426800889,62.11661884127456,0.0627903750028053 +5,381.03628983828423,0.2388514398556451,6.005407630656221,62.64732051070922,0.0633268329984275 +6,373.2841692130599,0.2339920466097805,5.883228600474482,61.372771082222435,0.0620384590001776 +7,375.29157816409594,0.2352503848077972,5.914866818024616,61.702815215302245,0.0623720830008096 +8,373.864807786008,0.2343560181339712,5.892379884511276,61.46823561342445,0.0621349590001045 +9,366.9212068192651,0.2300034429779578,5.782943709160084,60.32661732964724,0.0609809580018918 +10,376.5822203807627,0.2360594199574943,5.9352082732169995,61.91501357742279,0.062586583000666 +11,376.9342197202937,0.2362800696733281,5.940756037500822,61.97288684574722,0.0626450839990866 +12,379.717825115604,0.2380249642526397,5.984627672637799,62.430547766835225,0.0631077090001781 +13,366.6025595729651,0.2298036999203686,5.777921597997839,60.27422757911382,0.0609279999989667 +14,363.89742763866343,0.2281079961915146,5.7352867613866545,59.82946871537442,0.0604784169991035 +15,369.6993006425364,0.2317448826450931,5.82672847793377,60.78337207662728,0.0614426669999375 +16,367.7731149079311,0.2305374589733606,5.796370397044495,60.46668209644143,0.0611225419997936 +17,350.4494712628639,0.2196781856219259,5.523337238494139,57.61844982883658,0.0582434160023694 +18,349.70537539320884,0.2192117513882387,5.5116097491900025,57.49611079268662,0.0581197499996051 +19,355.4250143168058,0.2227970896586048,5.601755397130637,58.436493801885504,0.0590703329980897 +20,355.92618062609483,0.2231112442359329,5.609654140789172,58.51889205959614,0.0591536249994533 +21,364.266467082455,0.2283393274448988,5.74110309004317,59.89014359840488,0.0605397500003164 +22,374.2340939261083,0.2345875040281864,5.898200101280116,61.52895105653575,0.0621963330013386 +23,349.4985417056227,0.2190820983199927,5.50834990061696,57.46210464507238,0.0580853749997913 +24,363.71014915375633,0.2279906012426161,5.732335116957206,59.79867769734903,0.060447292002209 +25,352.26058825141075,0.2208134788000246,5.551881752686334,57.9162210109779,0.0585444169992115 +26,380.4172990516413,0.2384634273628986,5.995651887981451,62.5455503768974,0.0632239590013341 +27,380.8036312718753,0.2387055985406221,6.00174076330707,62.60906841722603,0.0632881659985287 +28,452.555119381187,0.2836828007225136,7.132596132451771,74.40594601807642,0.0752130000000761 +29,366.6672421192952,0.2298442459778871,5.778941041729735,60.28486223077155,0.0609387500007869 +0,357.3130892253381,0.2390739461458007,10.621713893049144,63.183828624247326,0.0632810419992893 +1,348.55779789257946,0.2332158846538,10.361448589618831,61.6356266585043,0.0617304580009658 +2,358.33485910912873,0.2397576002450679,10.652087668030877,63.36450863619653,0.0634620000018912 +3,346.03077541432424,0.2315250839132354,10.286328728145175,61.188772177069374,0.0612829159981629 +4,319.4310664622174,0.2137275344327587,9.49560902979828,56.485134100086235,0.0565720409977075 +5,354.87217509222506,0.2374407594767325,10.549153742466258,62.75220071885074,0.06284874999983 +6,354.41904767108167,0.2371375772985635,10.535683791407608,62.672074000334646,0.0627684999999473 +7,358.9152630876629,0.2401459416568189,10.669341122181528,63.46714172358787,0.0635647909984982 +8,339.35785444139424,0.2270603117080634,10.087965277315387,60.00879666570248,0.0601011250000738 +9,340.8776918175967,0.2280772168536777,10.1331449202134,60.27755016847198,0.0603702920016075 +10,354.0640272849366,0.2369000373728308,10.525130231850056,62.60929559139101,0.0627056250013993 +11,354.00708848272853,0.2368619402962244,10.523437633160828,62.59922707828788,0.0626955409970833 +12,354.5402091415791,0.2372186450001007,10.539285513575903,62.693499035740906,0.0627899579994846 +13,343.10921309321594,0.2295703012476115,10.199480526858167,60.67215104401161,0.0607655000021623 +14,340.4605604865636,0.2277981192320727,10.120745011596377,60.20378865419067,0.0602964169993356 +15,356.3056669698578,0.2383998918743074,10.591766624701371,63.00568570963839,0.0631026249975548 +16,320.99748703681513,0.2147756078434052,9.542173434185576,56.762124930042816,0.0568494580002152 +17,354.8119444278913,0.2374004598542572,10.547363287810573,62.74155010433942,0.0628380829984962 +18,351.575824142101,0.2352352101887504,10.451164338385912,62.16930554988405,0.0622649580000143 +19,343.1440347346409,0.2295935999945026,10.200515656898617,60.6783085699757,0.0607716670019726 +20,356.72044373402287,0.2386774140831734,10.60409653998099,63.079030864838685,0.0631760830001439 +21,350.96718789534884,0.2348279789014951,10.43307163405214,62.061680138252285,0.0621571669980767 +22,352.7963997956422,0.2360518828684281,10.487447938868735,62.3851404723703,0.0624811250017955 +23,353.666658527277,0.2366341626544579,10.513317797933777,62.539028701535315,0.0626352500003122 +24,364.4598431575399,0.2438557543588969,10.83416280080242,64.44759222342276,0.0645467499998631 +25,355.3380070145519,0.2377524420858214,10.563001355527208,62.83457397982423,0.0629312499986554 +26,338.0789340735709,0.2262046012727008,10.04994728511571,59.78264462207094,0.0598746250034309 +27,355.0131047850516,0.2375350538611509,10.553343107259709,62.77712137758989,0.0628737090009963 +28,329.98898622367545,0.2207917132064354,9.809460401028776,58.35209563312938,0.058441875000426 +29,353.84475877944084,0.2367533274188573,10.518612118180664,62.5705222464123,0.0626667920005275 +0,246.26397969829708,0.0,0.0,54.43476538811038,0.0630743330002587 +1,242.4809969916464,0.0,0.0,53.59856605292504,0.0621054169969284 +2,239.1234239616921,0.0,0.0,52.85640026650788,0.0612454589972912 +3,235.2940732640157,0.0,0.0,52.009951642262514,0.060264666997682 +4,238.8820026774676,0.0,0.0,52.80303594184067,0.0611836249991029 +5,234.2631621094942,0.0,0.0,51.782076632278866,0.0600006249987927 +6,239.56428704081335,0.0,0.0,52.95384967144987,0.0613583750018733 +7,240.1634400598459,0.0,0.0,53.08628785450275,0.0615118329988035 +8,240.7378668708275,0.0,0.0,53.213260498763326,0.0616589579985884 +9,239.34922398149791,0.0,0.0,52.906311630393986,0.0613032920009573 +10,242.8128624545116,0.0,0.0,53.67192237013237,0.0621904159997939 +11,232.12976143215943,0.0,0.0,51.31050476256479,0.0594542079998063 +12,245.03915532867256,0.0,0.0,54.164027348045266,0.0627606250018288 +13,216.43592117453937,0.0,0.0,47.841501648473,0.0554346249991795 +14,236.2355085499188,0.0,0.0,52.218048697215536,0.0605057920001854 +15,239.34987210662737,0.0,0.0,52.906454893486725,0.0613034580019302 +16,238.92934287039128,0.0,0.0,52.81350012867948,0.0611957500004791 +17,238.7121636534104,0.0,0.0,52.7654943271895,0.0611401249989285 +18,240.5050741873832,0.0,0.0,53.161803460170496,0.0615993339997658 +19,239.09170116971927,0.0,0.0,52.84938818646023,0.0612373340009071 +20,242.39574953227935,0.0,0.0,53.57972275535363,0.0620835830013675 +21,239.42991118529753,0.0,0.0,52.92414691842122,0.0613239580015942 +22,240.9387766840564,0.0,0.0,53.257670073239794,0.0617104160010058 +23,241.4102263831343,0.0,0.0,53.36188041611268,0.0618311660000472 +24,237.20492237355455,0.0,0.0,52.43233019351171,0.0607540830023936 +25,226.55614444164797,0.0,0.0,50.07849944204095,0.0580266659999324 +26,244.4723732267422,0.0,0.0,54.038744508132766,0.0626154580022557 +27,238.2831737209998,0.0,0.0,52.670669390334176,0.0610302500026591 +28,242.49953873943076,0.0,0.0,53.602664564172066,0.0621101659999112 +29,238.44536412992605,0.0,0.0,52.70652033722831,0.0610717910021776 +0,330.77706061011514,0.2608137674828426,10.33474553650764,61.4542439631448,0.0611662920018716 +1,337.83044782201557,0.2663752791815617,10.555120437569382,62.76467515715547,0.0624705829977756 +2,332.85411713017777,0.2624515017781808,10.399640757960412,61.84013510648384,0.0615503750013886 +3,336.3710090536529,0.2652245291178024,10.50952196629292,62.4935296733822,0.0622007080019102 +4,345.5318826790051,0.2724477687198936,10.795742835525784,64.19550550462493,0.0638947090010333 +5,339.8455414183246,0.2679641564504826,10.618079699350377,63.13905436364497,0.0628432080011407 +6,345.3511691216465,0.2723052782350849,10.79009665006524,64.16193118414189,0.0638612919974548 +7,342.53413726212943,0.2700840822094456,10.702081757549283,63.638561870600626,0.0633403749998251 +8,341.5548707334868,0.2693119422302281,10.671485710872789,63.456626387997495,0.0631592919999093 +9,311.5008417190181,0.2456146987731268,9.732482438885151,57.872963398418015,0.0576017919993319 +10,319.84512724821525,0.2521940683999332,9.993189960347353,59.42322736673426,0.0591447920014616 +11,313.26424396705994,0.2470051204155804,9.787577896467376,58.20058149792115,0.0579278750010416 +12,346.8770755914069,0.2735084372887103,10.837771827565147,64.44542553615237,0.0641434579993074 +13,340.49019830223455,0.2684724607153436,10.638221255845492,63.258823556052846,0.062962415999209 +14,342.50078716024655,0.2700577860518404,10.701039772304176,63.63236583846489,0.0633342080000147 +15,339.41178997419223,0.2676221486096528,10.604527638657494,63.058468766149446,0.0627629999980854 +16,345.3324634424762,0.2722905290301409,10.789512212819332,64.15845590272694,0.063857832999929 +17,344.0097995530999,0.2712476243273013,10.748187113969315,63.912721482120375,0.0636132500003441 +18,348.96022134022274,0.275150972868301,10.902857299906426,64.83244798209341,0.0645286670005589 +19,346.332236491104,0.2730788381558084,10.820748961923908,64.34420124046235,0.0640427080033987 +20,341.9755514445675,0.2696436439539266,10.684629391674344,63.53478360664397,0.0632370830026047 +21,332.60400486213223,0.2622542912376363,10.391826290291338,61.79366737286804,0.0615041249984642 +22,317.18244571936,0.2500945757692568,9.909997564856802,58.928534415631134,0.0586524169993936 +23,344.22949274822537,0.2714208497916226,10.755051172993046,63.95353773215108,0.0636538750004547 +24,346.15062524796554,0.272935639856468,10.815074729312546,64.31046014118027,0.0640091250024852 +25,343.06680876474195,0.2705040873366781,10.718724460715867,63.73752557870477,0.0634388750004291 +26,345.3649158389056,0.272316117357702,10.79052615029894,64.16448515240853,0.0638638339987665 +27,346.44264820241426,0.2731658964734195,10.824198647759248,64.36471435654947,0.0640631250025762 +28,338.11143340626893,0.2665968329637445,10.563899506188376,62.816878767082294,0.0625225420008064 +29,339.69705314558837,0.2678470752182837,10.613440355524494,63.11146709830811,0.0628157499995722 +0,341.31413665876937,1.1795439108875587,10.517599872080732,61.63116934387494,0.061323292000452 +1,352.8699275728777,1.2194794463495822,10.87369172995044,63.71780107176567,0.0633994999989226 +2,352.3555516011153,1.2177018198752183,10.857841227220696,63.62492008848016,0.0633070830008364 +3,347.95809530352017,1.2025046972186546,10.722333550199671,62.830870429674704,0.0625170000021171 +4,341.2276327610607,1.1792449629834103,10.514934253268745,61.61554931588319,0.0613077500020153 +5,346.91450484492213,1.1988981640028027,10.690175295691658,62.642429069146445,0.0623294999968493 +6,346.9583356729764,1.1990496384973743,10.691525943268257,62.65034361148781,0.0623373750022437 +7,349.52325272198976,1.2079137081685354,10.770563897836109,63.11349125180597,0.0627982089972647 +8,350.84814506201036,1.2124923895778412,10.81139047373575,63.352727355442205,0.0630362500014598 +9,349.6454613517626,1.208336047678166,10.774329758463644,63.13555849118416,0.062820166000165 +10,380.9826285174108,1.3166338318735518,11.739985000872505,68.79411771539309,0.0684504579985514 +11,316.16174831503054,1.092620038335519,9.742528675158376,57.08939700303086,0.0568042079976294 +12,346.34354678752874,1.1969249960978243,10.6725812152056,62.539331046111315,0.0622269169980427 +13,343.83800026069093,1.1882661043856075,10.595372764105,62.08690395414799,0.0617767499970796 +14,357.1611714331795,1.23430951056873,11.005926469237844,64.49267192721615,0.0641705000016372 +15,340.26173554900305,1.1759069290356254,10.485170117234327,61.44113704211143,0.0611342090014659 +16,352.9763738175137,1.219847312799318,10.876971872460585,63.73702209376436,0.0634186250026687 +17,347.0726686379719,1.1994447605804923,10.695049115176056,62.67098874033073,0.0623579169987351 +18,335.8911732715589,1.160802749138535,10.350491179818604,60.651943642488455,0.060348958002578 +19,357.74395683758917,1.2363235524770289,11.02388500958684,64.59790561692476,0.0642752079984347 +20,355.8852081847798,1.2298999226890728,10.966607643977566,64.26227096050405,0.0639412499986065 +21,350.5608098293886,1.2114993907898617,10.802536234542933,63.300843168770264,0.0629846250012633 +22,352.93602165071184,1.2197078601733349,10.8757284198789,63.729735694056735,0.0634113750020333 +23,317.5768569403615,1.0975104972499774,9.786135267145632,57.34492348131131,0.0570584579982096 +24,350.9353446717211,1.212793741785731,10.814077530922768,63.36847300830445,0.0630519169972103 +25,350.3342366036917,1.2107163787782376,10.795554377439284,63.259930791162915,0.0629439170006662 +26,347.9465017031017,1.202464631017727,10.7219762932414,62.82877697067623,0.0625149170009535 +27,352.52809188308873,1.2182981000087545,10.863158058411392,63.65607572545742,0.0633380830004171 +28,340.14554356556613,1.17550538239036,10.481589659647376,61.420156229896314,0.0611133329985023 +29,340.10333798910716,1.1753595245855677,10.48028909422131,61.412535159595905,0.0611057499991147 +0,377.80027211049406,0.3116878218896733,10.909073766138569,64.90033091347199,0.0646291250013746 +1,366.6382127338671,0.3024790461641584,10.586766615745544,62.9828591679592,0.062719665998884 +2,365.138799454798,0.3012420199003742,10.543470696513095,62.72528281036681,0.062463166002999 +3,372.9749204140684,0.3077068735655527,10.769740574794348,64.07140900687176,0.063803666998865 +4,335.69150881929875,0.2769478026742771,9.693173093599698,57.66668691239948,0.0574257089974707 +5,353.0611685087077,0.2912778913354449,10.194726196740575,60.65052981806932,0.0603970830015896 +6,358.20146127741265,0.2955186682094338,10.343153387330185,61.533553802719894,0.0612764170000446 +7,366.63870377524296,0.3024794512766694,10.58678079468343,62.9829435213865,0.0627197499998146 +8,370.3431490069413,0.3055356440610937,10.69374754213828,63.61931077449885,0.0633534579974366 +9,372.3560105241902,0.3071962686513623,10.75186940279768,63.96508971696144,0.0636977919966739 +10,376.0095517358092,0.3102104652692531,10.85736628442386,64.59271243495337,0.0643227920008939 +11,369.1796160038422,0.3045757213341809,10.660150246696332,63.419433531139454,0.0631544160023622 +12,352.122453918891,0.2905034453451296,10.167620587079536,60.48927295297476,0.0602364999976998 +13,356.8106779834024,0.2943712624301605,10.30299418505562,61.29463842156898,0.0610384999999951 +14,372.6597396480971,0.3074468472667407,10.760639654335924,64.0172657530969,0.0637497499992605 +15,381.5383299218582,0.3147717452834104,11.017011084919362,65.542472295679,0.0652685829991241 +16,368.50737025878874,0.3040211139727838,10.640738989047431,63.30395195388854,0.0630394170002546 +17,375.27104536938856,0.3096011924396825,10.83604173538889,64.46584829244057,0.0641964579990599 +18,361.6927852373143,0.2983990344794049,10.443966206779171,62.133310068267214,0.0618736670003272 +19,352.3163371295579,0.290663400326888,10.17321901144108,60.52257913473201,0.0602696669993747 +20,348.4216563654043,0.2874502619203079,10.060759167210776,59.85353231540633,0.0596034159971168 +21,356.8045867948364,0.2943662371577163,10.302818300520071,61.29359204817337,0.0610374579991912 +22,365.3711704842491,0.3014337275972355,10.550180465903242,62.76520061302437,0.0625029169968911 +23,360.55117343559215,0.2974571968943376,10.411001891301815,61.93719855333208,0.0616783749974274 +24,345.27498703155214,0.2848542380863479,9.969898333022176,59.31298246375733,0.0590651249985967 +25,363.9940309949737,0.3002975780506703,10.510415231773464,62.52862902966181,0.062267334000353 +26,358.9745505884595,0.2961564722060808,10.365476527212827,61.66635876824394,0.0614086669993412 +27,374.9619557919834,0.3093461914133147,10.827116699466018,64.41275141206133,0.0641435830002592 +28,361.3880799001845,0.2981476504814062,10.435167766849217,62.0809663335728,0.0618215419999614 +29,368.30569478079394,0.3038547303169077,10.634915561091768,63.26930717932055,0.063004916999489 +0,350.0910376507284,0.236639364962833,11.25727264751763,63.11509919794418,0.0630889589992875 +1,356.37546692202835,0.2408872410635572,11.459350182023508,64.24806843795162,0.0642214590006915 +2,332.9498947627177,0.2250530381748767,10.706094530319138,60.024860324642134,0.0600000000013096 +3,344.6223300836617,0.2329428650623437,11.08142486653721,62.12918986734226,0.0621034579999104 +4,354.8452791425179,0.2398529310542318,11.410146577294173,63.97220318260727,0.0639457079996645 +5,360.7172223274056,0.2438219926894398,11.598960509369068,65.03080862159774,0.0650038749990926 +6,345.0863790001193,0.2332565327347271,11.096346485809166,62.212849516533666,0.0621870830000261 +7,349.7712614788364,0.2364232165268303,11.2469901576335,63.057449322227455,0.0630313330002536 +8,348.98767498943727,0.2358935616962206,11.22179372069164,62.91618281240628,0.0628901249983755 +9,350.3400508932428,0.2368076821410486,11.265279736138456,63.1599917939054,0.0631338330022117 +10,345.9441911217454,0.2338363593909055,11.123929668167364,62.36749756897438,0.0623416670023289 +11,351.08109746493335,0.237308582681975,11.289108290442528,63.29358912389249,0.0632673750005778 +12,329.7454850782693,0.2228870602112674,10.603055864336008,59.447163059205174,0.0594225419990834 +13,345.43644252185425,0.2334931535006739,11.10760287367492,62.27595965510834,0.0622501670004567 +14,335.9221662007163,0.2270621053886649,10.80166872777506,60.56070725151963,0.0605356249980104 +15,347.1599188084589,0.2346581142969498,11.16302172298347,62.58667134177218,0.0625607500005571 +16,343.85677837624013,0.232425400601939,11.056808342920815,61.99117470340289,0.0619654999973136 +17,355.4441283707007,0.2402577151984264,11.429402737296574,64.08016489649461,0.0640536249993601 +18,328.56281377316475,0.2220876493252369,10.565026746471984,59.23394875574533,0.0592094160019769 +19,343.34116662973724,0.2320768797226883,11.04022870680789,61.89821920603703,0.061872582999058 +20,348.2829310492102,0.2354171994345762,11.199132487387695,62.78913019205054,0.0627631249990372 +21,343.4116854085347,0.2321245459501489,11.0424962573428,61.91093246984688,0.0618852909974521 +22,353.14099187217386,0.2387009408174215,11.355344756028764,63.664950929446555,0.0636385830002836 +23,348.2216627188161,0.2353757859242673,11.197162387540146,62.77808461722959,0.0627520839989301 +24,326.2777175880573,0.2205430690533412,10.49154885639466,58.82198713179829,0.0587976249989878 +25,328.22177318395427,0.2218571274901197,10.554060493458554,59.17246528915051,0.0591479579998122 +26,344.13585700434845,0.2326140400763266,11.065782192202397,62.0414875460717,0.0620157920020574 +27,347.5217742944843,0.2349027056837959,11.174657284672003,62.6519073588067,0.0626259589989786 +28,341.68127822516465,0.2309549003066968,10.986854543161437,61.59897126751471,0.0615734589991916 +29,354.82354305874037,0.2398382388384687,11.409447647601445,63.968284558774464,0.0639417909987969 +0,341.6843896416646,0.2265596975932227,10.162820720610275,60.03831986220403,0.0603289999999105 +1,355.1767007392971,0.2355060059841886,10.56412655414789,62.40909158580999,0.0627112499969371 +2,361.3328929961324,0.2395879748956073,10.747232016745816,63.490813347335944,0.0637982089974684 +3,325.33522572126685,0.2157191039167252,9.676542661407389,57.165562537932175,0.0574423340003704 +4,359.5754915168495,0.2384226996891111,10.69496110034013,63.18201541761446,0.0634879159988486 +5,361.17642806422384,0.2394842281376875,10.74257823360484,63.46332045648719,0.0637705829976766 +6,362.5121173216168,0.2403698798192021,10.782306037604211,63.69801815208857,0.0640064170002006 +7,354.16479300396173,0.2348350431967161,10.534029080538408,62.23128644712977,0.0625325840010191 +8,366.4686706564167,0.2429933403992532,10.899986983623648,64.39323520580211,0.0647050000006856 +9,326.0245413625624,0.2161761664808124,9.6970451821393,57.28668411741529,0.0575640419992851 +10,353.9262046474312,0.2346768430929258,10.526932675882676,62.18936341962535,0.0624904579999565 +11,367.498045224713,0.243675884870038,10.93060397845599,64.57410949056006,0.0648867500021879 +12,362.23199716425125,0.2401841413422145,10.773974340207907,63.64879745568685,0.0639569579980161 +13,352.077725458585,0.2334511772482803,10.471952807994288,61.86456197079428,0.0621640839999599 +14,349.1769734349746,0.2315277838443518,10.385674875303785,61.35486271875324,0.0616519169998355 +15,348.8494199547433,0.2313105938887187,10.37593235443681,61.29730738051045,0.0615940830030012 +16,351.12504284019514,0.2328194846908559,10.443616884704108,61.69716344307682,0.0619958749994111 +17,355.15546194816227,0.2354919232392854,10.563494842447945,62.40535965841063,0.0627075000011245 +18,351.3492284590744,0.2329681348123066,10.450284904437757,61.736555725261255,0.0620354580023558 +19,347.41438969073727,0.2303590724481539,10.333249821245762,61.045154198760784,0.0613407090022519 +20,368.0849444522907,0.2440650384736227,10.94806029724536,64.67723519551002,0.0649903749981604 +21,323.2755250958313,0.2143533840741516,9.61528037132623,56.80364677965019,0.0570786659991426 +22,346.4812920955575,0.2297403660764329,10.305496421142848,60.88119701025472,0.0611759580024227 +23,362.6600753923095,0.2404679859568216,10.786706798634572,63.72401627855775,0.0640325409985962 +24,355.4261350672641,0.2356713976954484,10.571545553767258,62.45292038929383,0.0627552910009399 +25,358.8557392353121,0.2379454555884422,10.673553293538694,63.05554573093719,0.063360833999468 +26,354.7847285035579,0.2352461020673397,10.552468007020668,62.34021704784502,0.0626420419976057 +27,349.93779309502264,0.2320322583750268,10.408304161394062,61.48854846938211,0.0617862500002956 +28,343.8514567140059,0.2279966086007427,10.227276442947606,60.41910127919684,0.060711624999385 +29,341.386570501989,0.2263622235023134,10.153962597103774,59.98598922811306,0.0602764160030346 +0,236.5309488289782,0.5706011253146913,0.0,54.13997736074101,0.0610715000002528 +1,226.58600979463944,0.5466102123611282,0.0,51.86366309049998,0.0585037499986356 +2,236.85111951422624,0.5713734967705189,0.0,54.21326178181452,0.0611541670004953 +3,237.41657996914864,0.5727375989038636,0.0,54.34269100187835,0.0613001669989898 +4,229.9610225365053,0.5547520055513822,0.0,52.63617558555173,0.0593751670021447 +5,234.91751197548183,0.5667089121020564,0.0,53.77067501297747,0.0606549160002032 +6,236.52417105423336,0.5705847747867131,0.0,54.13842598417459,0.0610697500014794 +7,235.71471052532607,0.5686320532042775,0.0,53.953147165794086,0.060860749999847 +8,224.25962026474065,0.5409980906060154,0.0,51.33117177338253,0.0579030840017367 +9,238.5784811636713,0.5755405392056779,0.0,54.60864057286815,0.061600166001881 +10,211.58113691439135,0.5104128462529662,0.0,48.42917182388438,0.0546295419990201 +11,241.9672121094472,0.5837154258351925,0.0,55.384293051303864,0.0624751249997643 +12,236.76058774630707,0.5711551002819952,0.0,54.19253980910931,0.0611307920007675 +13,236.03439707978092,0.5694032567555379,0.0,54.02632077333428,0.0609432919991377 +14,236.4476789665971,0.570400247258713,0.0,54.12091757813553,0.0610500000002502 +15,235.54365098309495,0.5682193936019035,0.0,53.91399305175708,0.0608165829980862 +16,238.95093756597544,0.576439043369034,0.0,54.69389276201481,0.0616963329994177 +17,240.0253782783155,0.579030996272366,0.0,54.93982335219567,0.0619737499982875 +18,236.8819409910412,0.5714478497016745,0.0,54.22031656287064,0.0611621250027383 +19,236.28371866139392,0.5700047136715902,0.0,54.083388420722066,0.0610076659977494 +20,235.3475795194772,0.5677463958891886,0.0,53.8691139158389,0.0607659580018662 +21,236.5198139052745,0.5705742637135898,0.0,54.13742866882472,0.061068625000189 +22,238.7517986631784,0.5759586458456127,0.0,54.64831151464549,0.0616449160006595 +23,238.87735412374556,0.5762615325817617,0.0,54.677050120845976,0.0616773340007057 +24,237.2802187825453,0.5724086447145267,0.0,54.31147905438421,0.0612649589966167 +25,236.2441867895784,0.5699093480094838,0.0,54.074339902311614,0.0609974590006459 +26,236.60485760822831,0.5707794209365519,0.0,54.15689446886225,0.0610905829998955 +27,227.69159343198749,0.5492772936488984,0.0,52.11672203856901,0.0587892079965968 +28,240.491592695581,0.5801556798389211,0.0,55.04653597530469,0.0620941250017494 +29,231.3741895571081,0.5581610930141675,0.0,52.959637825403064,0.0597400420010671 +0,344.373267273601,0.2352735575751715,10.587310090882715,63.08692393837098,0.0634621249992051 +1,342.4823762323536,0.233981713217497,10.529177094787368,62.74052510132029,0.0631136660012998 +2,345.31927445296463,0.235919863475576,10.616393856400922,63.260226249093755,0.0636364580022927 +3,345.3027672214615,0.2359085858432784,10.615886362947528,63.257202232547655,0.0636334160008118 +4,328.0017047540005,0.2240886134372441,10.083987604675986,60.08776106024389,0.0604451250001147 +5,318.0521033356242,0.2172911110042328,9.77809999519048,58.26505933642072,0.0586115830010385 +6,346.70889830534406,0.2368692453774554,10.659116041985495,63.51479622478341,0.0638925419989391 +7,314.29836506293805,0.2147265816358156,9.6626961736117,57.57739910434655,0.057919833001506 +8,346.87417673892634,0.2369821625192743,10.664197313367344,63.54507414981113,0.0639229999978852 +9,339.65000365733727,0.2320466548508062,10.44209946828628,62.221653022137616,0.0625917079996725 +10,344.62198261915336,0.2354434782680142,10.594956522060638,63.132486958437525,0.0635079589992528 +11,334.57357662184523,0.228578473194702,10.28603129376159,61.29168488377938,0.0616562089999206 +12,348.17607141497996,0.2378716084232734,10.704222379047303,63.783572715783464,0.0641629170022497 +13,341.54157300846134,0.2333389626253396,10.50025331814028,62.56817612110891,0.0629402919985295 +14,339.28033302634714,0.2317940983002566,10.43073442351155,62.15393178708312,0.0625235840016102 +15,319.2664966692951,0.2181207765650074,9.815434945425334,58.48752823035984,0.0588353749990346 +16,353.3388710465269,0.2413987992705141,10.862945967173138,64.72936374725073,0.0651143329996557 +17,341.457685719264,0.2332816513795479,10.497674312079658,62.55280851991593,0.0629248330005793 +18,422.2055693438154,0.2884480758741662,12.980163414337484,77.3452912022586,0.0778052919995389 +19,314.12879430577607,0.2146107320066789,9.657482940300552,57.54633485379091,0.0578885840004659 +20,342.5287288615394,0.2340133810297458,10.530602146338564,62.74901659897613,0.0631222080010047 +21,341.5811371692552,0.2333659926005062,10.50146966702278,62.57542401587859,0.0629475829991861 +22,346.36589859760636,0.2366349102267465,10.64857096020359,63.451960927943304,0.0638293329975567 +23,338.38881272636,0.2311850174784813,10.403325786531662,61.99061111530136,0.0623592920019291 +24,344.76916932805335,0.2355440352621875,10.599481586798438,63.15945059816086,0.063535083001625 +25,344.2170292735118,0.235166816798222,10.58250675591999,63.0583021614661,0.0634333329981018 +26,344.6007218488887,0.2354289530492115,10.594302887214518,63.12859212476714,0.063504041001579 +27,334.4460499034867,0.2284913477771234,10.282110649970557,61.2683228253801,0.0616327079987968 +28,341.1402445342186,0.2330647776439127,10.487914993976077,62.494655376803465,0.0628663339994091 +29,338.30831694706404,0.2311300232900106,10.400851048050477,61.97586481647855,0.062344458001462 +0,329.80854336715817,0.2333393777612803,10.666942983372811,62.50161904320008,0.0632824170024832 +1,335.5288092279848,0.2373864629670399,10.851952592778972,63.58565972331428,0.0643799999998009 +2,321.7799299616298,0.2276591378341832,10.407274872419803,60.9801262055848,0.0617419170011999 +3,329.7051746137013,0.2332662444204476,10.663599744934748,62.48202975547704,0.0632625829966855 +4,331.94620271569426,0.2348517706700889,10.736080944918353,62.90672428663097,0.0636925830003747 +5,333.0858280497938,0.2356580550180469,10.77293965796786,63.12269330840544,0.0639112500030023 +6,312.36717422581074,0.2209996179078911,10.10283967578931,59.19632622532799,0.0599358330000541 +7,327.8797790820893,0.2319747780043082,10.604561280196949,62.13610125115399,0.0629123329999856 +8,328.8072415726828,0.2326309572477036,10.634558045609309,62.31186354849204,0.063090290997934 +9,331.0710760494818,0.2342326189959948,10.707776868388336,62.7408800882129,0.063524667002639 +10,310.75220077947944,0.2198570250107495,10.050606857634266,58.89027455645078,0.0596259579979232 +11,341.9923928625649,0.2419594451220895,11.061003205581237,64.81056565770255,0.065620208002656 +12,327.95947629563574,0.2320311637426167,10.607138913948194,62.15120457391521,0.0629276250001567 +13,328.3351507745536,0.2322969532466015,10.61928929127321,62.22239819105397,0.0629997079995519 +14,326.0787065190805,0.2307005200761637,10.546309489196055,61.794782163258134,0.0625667500025883 +15,334.4660563853614,0.2366345658679533,10.81758015396358,63.38425871463035,0.0641760830003477 +16,327.93276637308287,0.2320122664859086,10.606275039355824,62.14614280872553,0.0629225000011501 +17,324.008361361325,0.2292357519233146,10.479348659351526,61.40243355088785,0.0621694999972533 +18,324.96622889461435,0.2299134427190519,10.510328810013805,61.58395787117464,0.0623532919998979 +19,331.2927866898272,0.2343894791619962,10.714947618834112,62.78289620410612,0.063567208002496 +20,327.4695771381485,0.2316845603362684,10.59129418680084,62.058364375786184,0.0628336250010761 +21,416.4333992141598,0.2946264194965756,13.468636319843457,78.91779093658275,0.0799036669995985 +22,316.62208916301114,0.2240099680757103,10.240455683461043,60.002670020279545,0.0607522499994956 +23,329.8941037233372,0.2333999116700384,10.669710247773184,62.517833483046005,0.0632988340003066 +24,323.0526671214134,0.2285595987315437,10.448438799156284,61.22132108880636,0.0619861249979294 +25,330.0478434543613,0.2335086824520446,10.674682626379182,62.54696851394052,0.0633283329989353 +26,315.26661635015887,0.2230509717456147,10.1966158512281,59.745796003289655,0.0604921669983014 +27,333.9946170348847,0.236301022765736,10.802332469290793,63.29491681225073,0.0640856249992793 +28,316.09592705316356,0.2236377086488927,10.22343810966367,59.90295767381056,0.0606512920021486 +29,325.3592739458097,0.2301915218941447,10.523041000875187,61.65844336450306,0.0624287079990608 +0,355.3064058878277,0.2716929121680961,10.222445820324616,62.89690916691425,0.0634840419988904 +1,347.5338735270447,0.2657494731615711,9.998823927704114,61.52100303690372,0.0620952919998671 +2,342.6912570515309,0.2620464592250284,9.859498028341694,60.66375531059408,0.0612300419998064 +3,349.7257136561199,0.2674255122585509,10.061884898727977,61.90900608785453,0.0624869169987505 +4,351.8039838748546,0.2690147076083767,10.121678373765173,62.27690481133921,0.0628582499994081 +5,353.2234679759977,0.2701001475633705,10.162518052071814,62.52818416092026,0.0631118750025052 +6,339.1697108475606,0.259353630929123,9.758180363708252,60.04036556009198,0.0606008330032636 +7,353.6187407501177,0.2704024016441351,10.173890361860582,62.59815598061727,0.06318249999822 +8,349.36704941119723,0.2671512517003993,10.051565845227524,61.845514768642445,0.0624228329979814 +9,354.31251238263815,0.2709329094877753,10.193850719477547,62.72096854641999,0.0633064590001595 +10,347.2269851313199,0.2655148041531791,9.989994506263365,61.46667716146096,0.0620404590008547 +11,336.9995582140704,0.2576941756559514,9.69574335905517,59.65620166435274,0.0602130829975067 +12,350.48943947996935,0.2680095121238534,10.083857893659983,62.04420205667207,0.0626233750008395 +13,317.649151194063,0.2428974583781785,9.139016871478969,56.230761614548335,0.0567556669993791 +14,360.8859284017174,0.2759594176270062,10.382973088216112,63.88460518065195,0.0644809580007859 +15,353.76099420840256,0.2705111789014739,10.177983106167956,62.62333791569122,0.0632079170027282 +16,345.98496383162035,0.2645650650595453,9.954260572865392,61.246812561284734,0.0618185419989458 +17,355.1032874398208,0.2715375931484005,10.21660194220857,62.86095281385472,0.0634477499988861 +18,347.1353378044151,0.2654447239949647,9.987357740310548,61.45045360483433,0.0620240839998587 +19,344.7340828392565,0.2636085512057017,9.918271739114529,61.025379604119955,0.0615950419996806 +20,349.0872158684356,0.2669372707845043,10.043514813266976,61.79597818661276,0.0623728339996887 +21,363.0381265213064,0.277605143583488,10.444893527328736,64.26559073957746,0.0648655000004509 +22,351.9040263790746,0.2690912073248515,10.12455667559754,62.29461449570313,0.062876125000912 +23,348.3192868668401,0.2663500568662513,10.021420889592704,61.66003816453718,0.0622356249987205 +24,354.02240872191373,0.2707110752987297,10.185504208114704,62.66961393165592,0.0632546249980805 +25,326.03476636272546,0.2493097047315813,9.380277640525748,57.715196645361075,0.0582539589995576 +26,352.26361967505676,0.2693661783024712,10.13490245863048,62.358270277022086,0.062940374999016 +27,353.4055984705364,0.2702394176796302,10.167758090196088,62.560425192834394,0.063144416999421 +28,353.8855226210069,0.2706064023100798,10.181565886916752,62.645382134783475,0.0632301670011656 +29,353.3169846035595,0.2701716571237312,10.165208599280389,62.544738624143775,0.0631285839990596 +0,249.12462962718652,0.8217414940973717,0.0,56.08385697214562,0.0627905830006057 +1,242.61851406885563,0.8002809699907277,0.0,54.61917620186717,0.0611507499997969 +2,243.93821960674973,0.804634039384551,0.0,54.91627318799561,0.0614833750005345 +3,232.13575724922015,0.7657034323778565,0.0,52.259259259788706,0.0585086249993764 +4,245.47382320012693,0.8096992518970652,0.0,55.261973941974695,0.0618704159969638 +5,224.8030705874632,0.7415164505358874,0.0,50.60849774907432,0.0566604589985217 +6,246.7624549015156,0.8139498237543121,0.0,55.5520754712318,0.0621952089968544 +7,244.0876652220984,0.8051269880882851,0.0,54.949916937025456,0.0615210420000948 +8,243.01130128864432,0.801576584789371,0.0,54.707601911874576,0.0612497500005702 +9,237.6665186748554,0.7839467355960046,0.0,53.50436470442732,0.059902625001996 +10,240.60729671932253,0.7936469380516411,0.0,54.16640352202451,0.0606438329996308 +11,242.7239873513988,0.8006288752657464,0.0,54.64292073688719,0.0611773339987848 +12,228.4059291796768,0.7534005360517102,0.0,51.41958658552922,0.0575685409967263 +13,243.28010263868015,0.8024632302540302,0.0,54.76811546483757,0.0613174999998591 +14,241.72548654155145,0.7973353047000047,0.0,54.41813454577533,0.0609256669995375 +15,242.0336340586369,0.7983517341131507,0.0,54.48750585322254,0.0610033339980873 +16,246.5548172686469,0.8132649277690387,0.0,55.50533132023689,0.0621428749982442 +17,243.29977374476695,0.8025281157056634,0.0,54.77254389691152,0.0613224580010864 +18,250.56832102039976,0.8265035327775692,0.0,56.4088661120691,0.0631544579991896 +19,244.7499163635682,0.8073114338545405,0.0,55.09900536057239,0.0616879589979362 +20,243.70198785910077,0.8038548252636639,0.0,54.86309182424506,0.0614238340021984 +21,241.37733424064731,0.7961869188806399,0.0,54.33975721360367,0.0608379170007538 +22,249.0137049377049,0.821375607271154,0.0,56.05888519625626,0.0627626250025059 +23,244.5204572112721,0.8065545592455374,0.0,55.04734866850792,0.061630124997464 +24,241.0131451049487,0.794985635310441,0.0,54.2577696099376,0.0607461250001506 +25,242.13265613002585,0.7986783599671,0.0,54.50979806775457,0.0610282920024474 +26,233.01622352722865,0.7686076641909685,0.0,52.4574730810336,0.0587305420012853 +27,249.9394647224994,0.8244292404260563,0.0,56.26729565907834,0.0629959580001013 +28,246.89685162165748,0.814393133441421,0.0,55.58233135737699,0.0622290829996927 +29,250.8169553315508,0.8273236569484907,0.0,56.4648395867345,0.0632171249999373 +0,378.2830151197381,0.2429563359792794,9.718253439171178,64.97346585045874,0.0655562920001102 +1,353.2040927683805,0.2268491283033914,9.073965132135658,60.66593831199269,0.0612101250007981 +2,357.24886858454886,0.2294469290844887,9.177877163379549,61.36066446373754,0.0619110829975397 +3,348.1538269708763,0.2236055407648531,8.944221630594125,59.79851033025787,0.0603349160010111 +4,358.26397198427844,0.230098890163313,9.203955606532524,61.53501748367458,0.0620870000020659 +5,356.8740379487522,0.2292061900762698,9.168247603050794,61.29628397468245,0.0618461250014661 +6,349.28482212183866,0.2243319345676548,8.973277382706195,59.99276878723571,0.0605309169986867 +7,362.52080833113473,0.2328328891015637,9.313315564062547,62.266166914018186,0.0628247080021537 +8,368.1793617620893,0.2364671559165634,9.45868623666254,63.23807369654383,0.0638053330003458 +9,372.0570396746568,0.2389576362714559,9.558305450858237,63.90409930002364,0.0644773329986492 +10,357.5881192629084,0.229664816482279,9.18659265929116,61.4189337792609,0.0619698750015231 +11,363.9811926115906,0.2337708366163073,9.350833464652291,62.517000877961046,0.0630777920014225 +12,354.28483392042943,0.2275432459347652,9.101729837390607,60.851565198554354,0.0613974170009896 +13,363.92541059323526,0.2337350100149231,9.349400400596924,62.50741982113372,0.0630681250004272 +14,356.9596353834419,0.2292611659495451,9.170446637981808,61.31098609393551,0.0618609590019332 +15,378.40779325868374,0.2430364760813639,9.72145904325456,64.99489760347333,0.0655779160006204 +16,387.2890894266006,0.2487405840890177,9.94962336356071,66.52033905923446,0.0671170409987098 +17,363.75109973413254,0.2336230569904512,9.344922279618048,62.47748038373209,0.0630379169997468 +18,365.2316744876873,0.234573972053749,9.382958882149962,62.731782240659754,0.0632944999997562 +19,373.77107717779,0.2400584952972319,9.602339811889276,64.19850045663115,0.0647743749977962 +20,344.6805585467942,0.2213747967545242,8.85499187018097,59.20194564635276,0.05973300000187 +21,362.17699331162976,0.2326120702065701,9.304482808262808,62.20711363238563,0.0627651249997143 +22,356.0515201334432,0.2286779191608498,9.147116766433992,61.155009238444414,0.0617035830000531 +23,364.5397109402455,0.2341295510213523,9.365182040854092,62.612931358853075,0.0631745829996361 +24,368.4897606394334,0.2366665129347678,9.46666051739071,63.29138745912647,0.0638591249989986 +25,373.78310260490974,0.2400662187571674,9.6026487502867,64.20056593048821,0.0647764589994039 +26,367.3291981816165,0.2359211292110574,9.436845168442298,63.0920505547285,0.0636579999991227 +27,372.0101555478638,0.2389275244366498,9.557100977465993,63.89604653505835,0.0644692079986271 +28,361.79037958527624,0.2323637633816803,9.294550535267213,62.14070929292936,0.0626981249988603 +29,358.8888493859939,0.2305002243969132,9.22000897587653,61.64234572443166,0.0621952910005347 +0,349.08911492209717,0.3284926271968544,9.00069798519381,60.86968381957712,0.0610695840005064 +1,348.61418586415783,0.328045719266169,8.988452707893032,60.78687178002113,0.0609865000005811 +2,359.5860508730228,0.3383702370123486,9.27134449413835,62.70000491838819,0.0629059159982716 +3,354.494065294732,0.3335786819372655,9.140055885081074,61.812129762975296,0.062015125000471 +4,358.8403201050791,0.337668504850926,9.252117032915374,62.5699739488766,0.0627754579982138 +5,342.5880675551526,0.3223751459067964,8.833078997846224,59.736114536529385,0.059932291998848 +6,349.076013276526,0.328480298557002,9.000360180461854,60.86739932261247,0.0610672920010983 +7,345.5035960299564,0.3251186562811295,8.908251182102951,60.24448700889331,0.0604423340009816 +8,376.33157594924216,0.3541277650788013,9.703100763159156,65.61987486910189,0.0658353750004607 +9,325.1544486992708,0.3059701220469284,8.383581344085838,56.696263615295834,0.0568824580004729 +10,374.6764809907141,0.3525703218130366,9.660426817677203,65.33128063195569,0.0655458330002147 +11,345.8784849508381,0.32547142650874,8.917917086339479,60.30985533206954,0.0605079169981763 +12,362.25983335779995,0.3408862645693045,9.340283649198945,63.16622482469214,0.0633736670024518 +13,353.5847068229383,0.3327229762143016,9.116609548271862,61.65356749251008,0.061856042000727 +14,368.07445032294993,0.3463578153034252,9.49020413931385,64.18010317572468,0.064390874998935 +15,355.7059106548915,0.3347190276229336,9.17130135686838,62.02343581852959,0.062227124999481 +16,355.3122038347779,0.3343485497645412,9.161150263548429,61.954786271369485,0.0621582500025397 +17,360.4265799552419,0.3391611743250606,9.29301617650666,62.846565602433735,0.06305295799757 +18,349.90653892523665,0.3292618226453718,9.021773940483188,61.0122157361874,0.0612125840016233 +19,360.72001805303375,0.3394372993817952,9.300582003061187,62.89773157544665,0.0631042920031177 +20,358.5747544990663,0.3374186077905959,9.245269853462329,62.52366802359742,0.0627290000011271 +21,324.77527257774574,0.3056133175663365,8.37380490131762,56.630147745042144,0.0568161250012053 +22,362.4810980291357,0.3410944744792845,9.345988600732396,63.20480612101142,0.0634123750023718 +23,361.6077004779697,0.3402726079589439,9.323469458075062,63.0525142547923,0.0632595829993079 +24,364.5094184682909,0.3430031226764758,9.398285561335438,63.558478631950976,0.0637672089978877 +25,332.0330087474858,0.3124428425213943,8.560933885086206,57.895658719214374,0.0580857919994741 +26,344.71236961996425,0.3243741127505074,8.887850689363905,60.10652309266903,0.0603039170018746 +27,366.3288499695804,0.3447152065207306,9.44519665866802,63.875727768291384,0.0640855000019655 +28,354.5207373187578,0.3336037802943049,9.140743580063956,61.8167804885347,0.0620197909993294 +29,361.6341438543446,0.3402974911586943,9.324151257748223,63.057125111706064,0.0632642089985893 +0,352.49020382752724,0.3393570846515136,10.68974816652268,63.3579677044376,0.0637874170024588 +1,347.4691287074894,0.3345230853061417,10.537477187143464,62.45546002665666,0.0628787919995375 +2,345.6512964466877,0.3327729820416748,10.48234893431276,62.12871574718069,0.0625498330009577 +3,348.5358761098863,0.335550087715304,10.569827763032078,62.64720137644727,0.0630718329994124 +4,352.7411732904567,0.3395987034663105,10.69735915918878,63.40307793716016,0.0638328329987416 +5,347.9809702876855,0.3350158566358771,10.552999484030128,62.547460433918246,0.0629714159986178 +6,333.6775775330467,0.3212453812776034,10.119229510244509,59.976512684528565,0.0603830420004669 +7,342.95506545674965,0.3301772075255123,10.400582037053637,61.644084645013145,0.0620619170003919 +8,355.7339689185276,0.3424799931823699,10.788119785244652,63.941014727148456,0.0643744160006463 +9,317.4674720822513,0.3056392337366432,9.62763586270426,57.06284493863128,0.057449625001027 +10,340.1158433048894,0.3274437694280248,10.314478736982782,61.133751752212234,0.0615481249988079 +11,352.98639021030607,0.3398347840669164,10.704795698107867,63.4471541852933,0.0638772080019407 +12,347.3698925446688,0.3344275464953006,10.534467714601972,62.43762293067263,0.0628608340011851 +13,348.5754810580413,0.3355882170579005,10.571028837323867,62.65432012471003,0.0630789999995613 +14,346.10834760015814,0.3332130043324907,10.496209636473456,62.21086790887602,0.0626325420016655 +15,353.50238182134535,0.3403315508051847,10.720443850363315,63.53990053532798,0.0639705829999002 +16,342.9403275831487,0.3301630187572434,10.400135090853167,61.64143560197734,0.0620592500017664 +17,340.6237724779003,0.3279327741194765,10.329882384763511,61.22504892810627,0.0616400409999187 +18,345.643239517025,0.3327652252979927,10.48210459688677,62.127267563135234,0.0625483750009152 +19,348.29434507070977,0.3353175556664193,10.562503003492209,62.60378764292049,0.0630281250014377 +20,361.9680042328695,0.3484817601163661,10.977175443665532,65.06154461372554,0.0655025409978407 +21,341.6292805847186,0.3289008188935386,10.360375795146467,61.40578288742366,0.0618219999996654 +22,353.99995524678707,0.3408105855846607,10.735533445916811,63.62933632865615,0.0640606250017299 +23,338.6740121251464,0.3260556581545648,10.27075323186879,60.87459137745724,0.061287207998248 +24,345.3885786449535,0.3325200526089857,10.47438165718305,62.08149382209764,0.0625022909989638 +25,360.540457813392,0.3471074013799865,10.933883143469576,64.80495183764349,0.065244208999502 +26,330.38775862503826,0.3180781348079698,10.01946124645105,59.38518776864797,0.0597877090003748 +27,347.5174813223003,0.334569636393858,10.538943546406529,62.46415111473329,0.0628875419970427 +28,346.21679562001196,0.3333174117839722,10.499498471195126,62.23036078006762,0.0626521669983048 +29,349.8149219362817,0.336781478710197,10.608616579371208,62.87710207519379,0.0633032919977267 +0,250.10934507332675,0.0,0.0,55.11416653061159,0.0635523749988351 +1,239.838881397826,0.0,0.0,52.85096422926539,0.0609426669980166 +2,241.89828862855623,0.0,0.0,53.304775793305645,0.0614659590028168 +3,226.9506637505054,0.0,0.0,50.01091291695259,0.0576677919998473 +4,240.77109914478743,0.0,0.0,53.05638799755266,0.0611795420009002 +5,241.309764565714,0.0,0.0,53.17508846316111,0.0613164160022279 +6,232.6059540307432,0.0,0.0,51.257114294164616,0.0591047919988341 +7,229.17355489939848,0.0,0.0,50.50074984377193,0.058232625000528 +8,237.4643088347507,0.0,0.0,52.32770274280641,0.0603392919983889 +9,244.93910317645435,0.0,0.0,53.97485055333682,0.0622386249997362 +10,246.9017604503701,0.0,0.0,54.40734226933166,0.0627373329989495 +11,227.72021219973772,0.0,0.0,50.18049083245163,0.0578633330005686 +12,241.19055480567744,0.0,0.0,53.1488193664794,0.061286124997423 +13,239.55814760206837,0.0,0.0,52.789101650057795,0.0608713330002501 +14,237.7916072840164,0.0,0.0,52.3998263223262,0.0604224579983565 +15,240.87981688341813,0.0,0.0,53.08034506940843,0.0612071670002478 +16,240.89932900283105,0.0,0.0,53.084644765600814,0.0612121249978372 +17,240.4998774005804,0.0,0.0,52.99662149673451,0.0611106249998556 +18,241.5399942998725,0.0,0.0,53.225821952967294,0.0613749170006485 +19,240.93327256605832,0.0,0.0,53.09212457886329,0.0612207500016666 +20,241.08921611249076,0.0,0.0,53.12648834317978,0.0612603750014386 +21,240.12551449843392,0.0,0.0,52.91412678097035,0.0610154999994847 +22,242.95922422123857,0.0,0.0,53.538563862744645,0.061735540999507 +23,218.386555036205,0.0,0.0,48.123723480956784,0.0554916660003073 +24,240.68271211186973,0.0,0.0,53.03691100579953,0.0611570830005803 +25,239.6622726241433,0.0,0.0,52.812046669584994,0.060897790997842 +26,234.71553472444992,0.0,0.0,51.72198209679961,0.0596408329984115 +27,241.06396210591663,0.0,0.0,53.12092336309683,0.0612539579997246 +28,240.81127256853603,0.0,0.0,53.06524062465436,0.0611897500020859 +29,238.5282000000232,0.0,0.0,52.562142103063344,0.0606096250012342 +0,356.01103457289975,0.2302788063214099,9.967782616483888,63.58984751704077,0.0625623749983788 +1,351.19450650439023,0.2271633289161644,9.832926951656832,62.72953068499227,0.0617159590001392 +2,399.07553554862574,0.2581342403289946,11.173524974240769,71.28192665084953,0.070130166997842 +3,372.26214494736774,0.2407905206645328,10.422789680193349,66.49258234922029,0.0654182079997554 +4,374.1580309147266,0.2420168375903794,10.475871684269285,66.83122100888622,0.0657513750011276 +5,405.53899035120986,0.2623150002271732,11.3544921526905,72.43641363416084,0.0712660000026517 +6,333.0413416768214,0.2154213076822906,9.324665175390583,59.48705539283827,0.0585258749997592 +7,367.1757905559643,0.2375005113557337,10.28037927725533,65.58406977866188,0.0645243750004738 +8,366.1896728586104,0.2368626603225164,10.25276943967464,65.40793177191775,0.0643510829977458 +9,352.4134565857517,0.2279517830438238,9.867055751754089,62.947256660530215,0.0619301670012646 +10,360.33604592969425,0.2330763557113158,10.088876540075528,64.36237079856764,0.0633224159973906 +11,359.41703628607354,0.2324819122160889,10.063145628782136,64.1982194733857,0.0631609169977309 +12,358.8771446574472,0.2321326938275855,10.04802946139406,64.10178530981754,0.0630660409988195 +13,358.17342362709223,0.2316775055802666,10.028326312974398,63.976088326665064,0.0629423750033311 +14,354.21164807047495,0.22911490819565,9.917402454754566,63.268445363170216,0.0622461659986584 +15,357.7606235439235,0.231410493883521,10.016768520958124,63.90235495383516,0.0628698330001498 +16,345.8859837170851,0.2237296143060058,9.684296162102823,61.781334921929904,0.0607830840017413 +17,349.5224448786402,0.2260817884079173,9.78611169822842,62.43087099892917,0.0614221249998081 +18,321.6620084187889,0.2080608075153874,9.006060668166054,57.45450584674912,0.0565261669980827 +19,360.3958018453322,0.2331150076619224,10.090549617366072,64.3730442586423,0.0633329169977514 +20,353.87283017205425,0.2288957504347052,9.90791605453081,63.20792651289788,0.0621866250003222 +21,366.208166991892,0.2368746228925562,10.253287248063508,65.41123515018734,0.064354333000665 +22,359.1301384857916,0.2322963379597616,10.05511291454397,64.14697446803133,0.0631104999993112 +23,365.57154258781645,0.2364628347916018,10.235462705979335,65.29752280745234,0.0642424580000806 +24,349.0676830815694,0.2257876345935119,9.773379040262016,62.349642524179785,0.0613422089991217 +25,357.242315974124,0.2310752367232367,10.00225667530582,63.809776083716656,0.0627787500015983 +26,354.99835934867855,0.2296237770690029,9.939429207415412,63.40896586776896,0.0623844159999862 +27,365.0418539985884,0.236120216040484,10.220632208609526,65.20291108660797,0.0641493749972141 +28,374.2950808651228,0.2421054856824856,10.479708880256164,66.85570054632068,0.0657754590029071 +29,373.26936300344295,0.2414420200539734,10.450990296621994,66.67248925204723,0.0655952080014685 +0,245.1615255437683,0.0,0.0,54.62988385920401,0.0630969579979137 +1,241.02349681651853,0.0,0.0,53.7077977844241,0.062031957997533 +2,241.0796768893551,0.0,0.0,53.72031651405535,0.0620464170024206 +3,239.89379555329384,0.0,0.0,53.456063958454976,0.0617412079991481 +4,238.74985015186837,0.0,0.0,53.20115607973081,0.0614467920022434 +5,242.9289988271171,0.0,0.0,54.132405003283566,0.0625223749993892 +6,222.20890597794013,0.0,0.0,49.51530098016318,0.0571896670007845 +7,239.96163203488717,0.0,0.0,53.471180111377585,0.0617586670014134 +8,237.5137840474237,0.0,0.0,52.92572074142338,0.0611286669991386 +9,240.0446801289891,0.0,0.0,53.48968590149068,0.0617800410000199 +10,239.2075238922962,0.0,0.0,53.30314052949111,0.0615645830002904 +11,241.35311704054809,0.0,0.0,53.781247786484734,0.0621167919998697 +12,237.1938775091375,0.0,0.0,52.85443526139705,0.0610463329976482 +13,236.38327460023032,0.0,0.0,52.67380682603668,0.0608377089993155 +14,236.86118776917695,0.0,0.0,52.78030127232645,0.0609607089972996 +15,228.8396288104752,0.0,0.0,50.9928395843162,0.0588962090005225 +16,234.1374673466227,0.0,0.0,52.173368638753345,0.0602597080032865 +17,238.49162938758172,0.0,0.0,53.14361617687808,0.061380334002024 +18,221.11886761338675,0.0,0.0,49.27240532544921,0.0569091249999473 +19,238.6339309293796,0.0,0.0,53.17532554352589,0.0614169579966983 +20,240.64174911522755,0.0,0.0,53.622732101549154,0.0619337080024706 +21,238.3167792135448,0.0,0.0,53.10465392666686,0.0613353330008976 +22,237.09123886601097,0.0,0.0,52.83156406600441,0.0610199170005216 +23,236.7632388971176,0.0,0.0,52.758475108972014,0.0609355000015057 +24,235.63175807428223,0.0,0.0,52.50634473980698,0.0606442919997789 +25,226.50542703780656,0.0,0.0,50.47270425124547,0.0582954580022487 +26,236.4643838585177,0.0,0.0,52.6918805810858,0.0608585840018349 +27,237.71679612865097,0.0,0.0,52.97095837157298,0.061180916000012 +28,237.03425063747616,0.0,0.0,52.818865253255176,0.0610052500014717 +29,237.04752730136903,0.0,0.0,52.82182372157477,0.0610086670021701 +0,353.1143208476727,1.141027077439733,10.437041796581088,63.59547975730277,0.0626812500013329 +1,335.3042724739904,1.0834770256715145,9.91062808776003,60.38791069551529,0.0595197920010832 +2,356.2420806580408,1.1511338854184934,10.529489363680923,64.15878567258954,0.0632364579978457 +3,353.16877982050744,1.1412030520715883,10.438651446890116,63.605287755166465,0.0626909170023282 +4,360.278246721321,1.1641760490899935,10.648786801970235,64.88569450075113,0.0639529170002788 +5,351.330385453154,1.1352626026807866,10.384313806874252,63.274195061179135,0.0623645839987148 +6,354.42246275922594,1.1452541088969477,10.475706701969138,63.83107459881516,0.062913458001276 +7,354.0684935462801,1.1441103193854327,10.465244392025577,63.767325153982206,0.0628506249995553 +8,354.8449746592964,1.1466193820961867,10.488194936232768,63.9071685021257,0.0629884580012003 +9,344.8650125788778,1.1143708826916787,10.19321601520918,62.10978890296269,0.0612169169980916 +10,345.2361188828506,1.115570047711169,10.204184848181574,62.17662471801956,0.0612827920012932 +11,336.22746097656665,1.0864601476148323,9.937914879653318,60.55417587441491,0.0596836670010816 +12,356.1571107077462,1.1508593199071822,10.526977896798048,64.14348268306206,0.0632213749995571 +13,325.7125481525773,1.0524830485827437,9.62712435615392,58.66045226659704,0.0578171670022129 +14,356.2202508947431,1.1510633463620286,10.528844138782086,64.15485415753072,0.0632325830010813 +15,349.1178258510744,1.1281131038715575,10.318916920707483,62.87571564225299,0.0619718330017349 +16,356.72656097066806,1.1526993986887202,10.543809205652703,64.24604001515073,0.0633224579978559 +17,337.3065056654421,1.089946891524903,9.96980833130132,60.74851057175563,0.0598752080004487 +18,351.34986607256644,1.1353255508902549,10.384889597849094,63.277703498148014,0.0623680419994343 +19,355.9287176769313,1.1501213078326995,10.52022725694028,64.1023493630284,0.063180832999933 +20,350.56375734923427,1.1327853782431063,10.361654489223708,63.1361262285496,0.0622285000026749 +21,351.2292135769868,1.1349356834838955,10.381323457749753,63.25597412358772,0.0623466249999182 +22,327.080314948302,1.0569027474094532,9.667551601304115,58.90678548061511,0.0580599590030033 +23,355.691406843163,1.149354479439987,10.513213032524586,64.0596099570228,0.0631387080029526 +24,364.4146382236258,1.1775420737125335,10.77104661542935,65.63065381427208,0.0646871669996471 +25,362.2192156920787,1.1704479503450556,10.706156251685655,65.23526076187883,0.0642974580005102 +26,347.6089907752034,1.1232375676066255,10.2743201036959,62.60397619454575,0.0617039999997359 +27,359.7827304146522,1.1625748749380511,10.634140767815705,64.79645258845903,0.0638649580032506 +28,357.17747694959303,1.1541564546936098,10.557136982638609,64.32724946012914,0.0634024999999383 +29,358.61025985762825,1.158786241699236,10.599485916719482,64.58529200058977,0.063656832997367 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/mac_report.md new file mode 100644 index 000000000..20c6d52c2 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (cleaned) + +> 875 samples (with smell) vs 877 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 613.25 ms | 108.37 ms | +| **Average Power** | 6.227 W | 4.551 W | +| **Total Energy** | 3341.35 J | 432.52 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.24% | 0.00e+00 | +8.245 | large | βœ… | +| `gpu_mj` | +84.73% | 1.53e-265 | +2.269 | large | βœ… | +| `ane_mj` | +81.57% | 7.15e-43 | +0.691 | medium | βœ… | +| `dram_mj` | +86.54% | 0.00e+00 | +19.272 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.465 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.245, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.691, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.272, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.465, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/with_smell.csv new file mode 100644 index 000000000..db0193cda --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/with_smell.csv @@ -0,0 +1,876 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3901.919386580033,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836 +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607 +2,3910.238854451517,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785 +3,3911.202429509975,5.193629375243073,102.64076515304096,659.6575156478605,0.6256015840008331 +4,3896.403904938974,5.173978627600272,102.25241095443356,657.1616187645627,0.623234542003047 +5,3930.108712793952,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417 +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612 +7,3946.2917657672665,5.240223999486666,103.56160634882944,665.5756302937743,0.6312141659982444 +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819 +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852 +10,3942.866246351669,5.235675301590572,103.47171124874188,664.9978873443307,0.6306662500028324 +11,3920.5909670871097,5.206096279073792,102.88714633579808,661.2409722664623,0.6271032920012658 +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156 +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094 +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447 +15,3919.679751755219,5.20488628935831,102.86323352622864,661.0872880599075,0.6269575420010369 +16,3939.657718042438,5.231414743059418,103.38751059520632,664.4567417883288,0.6301530419987103 +17,3906.386898745852,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914 +18,3907.238977299649,5.188366364136408,102.536753209183,658.9890457628128,0.6249676250008633 +19,3910.2154035747167,5.192318717719235,102.6148628636436,659.4910453390316,0.6254437080024218 +20,3923.541347906347,5.210014047270941,102.96457248548916,661.7385790552976,0.6275752090004971 +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085 +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521 +23,3944.379726555403,5.237685030155285,103.5114291536458,665.2531486378001,0.630908333001571 +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105 +25,3947.333495911774,5.241607297942091,103.58894422791964,665.7513269322089,0.6313807920014369 +26,3899.151355134042,5.177626927144285,102.32451164349892,657.6249995797234,0.623674000002211 +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154 +28,3905.69892649689,5.1863213528559315,102.49633801830024,658.7293031120989,0.6247212920025049 +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838 +0,3910.189399402901,5.064969011966773,108.26371263078975,658.2793607329183,0.6260335840015614 +1,3891.337220217528,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194 +2,3907.058080336083,5.060912933751627,108.17701395894105,657.752203988575,0.6255322500001057 +3,3951.59134928142,5.118598023697437,109.41003275653271,665.2493681456768,0.632662166000955 +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164 +5,3922.660266933899,5.081122847790299,108.60900087151764,660.3788280137984,0.6280302089980978 +6,3930.0888097662346,5.090745230597534,108.81467930402228,661.6294212529888,0.6292195419991913 +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145 +8,3942.416276003112,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765 +9,3854.415707263761,4.992723912429943,106.71947362819004,648.8898742766679,0.6171040410008573 +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072 +11,3887.387947176371,5.035433703786343,107.63239541843308,654.4407422256527,0.6223830000017188 +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194 +13,3942.922980650436,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838 +14,3923.878487924429,5.082700840807135,108.64273047225252,660.5839151983221,0.6282252499986498 +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408 +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367 +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995 +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112 +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427 +20,3869.410472914197,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875 +21,3881.1130856960726,5.027305714140381,107.45865963975064,653.3843709397581,0.6213783750026778 +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678 +23,3928.4846375733423,5.088667305050476,108.77026364545392,661.3593592846852,0.6289627090009162 +24,3922.13378131762,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337 +25,3911.223882566581,5.066309004645449,108.29235497429649,658.4535157024397,0.626199207999889 +26,3896.116177201257,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608 +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889 +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519 +29,3903.2857744554663,5.056026568811887,108.07256790835407,657.1171372820976,0.6249282919998222 +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121 +1,3980.12865087621,4.269844255224866,105.04484031018048,671.0660693934268,0.6250826669966045 +2,3971.13262941209,4.260193408747831,104.8074144073978,669.5493031545323,0.6236698339998838 +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611 +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523 +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475 +6,3990.206595708371,4.280655778826397,105.31082068378376,672.765252364458,0.6266654169994581 +7,4021.568777932776,4.314300830368314,106.13854152210796,678.0530453478076,0.6315908750002563 +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759 +9,3997.3794308539345,4.288350728318347,105.50012846464432,673.9746218873453,0.6277919169988309 +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202 +11,3968.9393336960334,4.25784046191252,104.74952823876971,669.1795044710481,0.6233253749996948 +12,3979.600159699821,4.269277294904891,105.0308922004336,670.9769636062633,0.6249996669976099 +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161 +14,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824 +15,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711 +16,3976.313797783479,4.265751717020369,104.94415747575891,670.4228694632716,0.6244835409997904 +17,3991.684352559485,4.282241102356066,105.34982211968163,673.0144082507576,0.6268974999984493 +18,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932 +19,3945.661844046774,4.23286859186177,104.13518121697432,665.2548239256503,0.6196696250008245 +20,3953.734597793666,4.2415289654912565,104.34823994009348,666.6159234280282,0.6209374579993892 +21,3949.024607959405,4.236476133083047,104.22393236780093,665.8217997596224,0.6201977499986242 +22,3953.6438628657106,4.241431625921392,104.34584523458176,666.6006251457864,0.620923208000022 +23,3980.280939138054,4.270007628627338,105.04885955115223,671.0917458210638,0.6251065840006049 +24,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405 +25,3931.6565666482784,4.217843863143608,103.76554941436892,662.8934765223435,0.6174700840019796 +26,3941.93640780823,4.228871979210103,104.03685830103603,664.6267000450754,0.6190845419987454 +27,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492 +28,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411 +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153 +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463 +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461 +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329 +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703 +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084 +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313 +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481 +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714 +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226 +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025 +11,2887.674248714824,2.131296944146192,0.0,576.88214005382,0.6101675410027383 +12,2878.129996539094,2.12425264699067,0.0,574.975446934678,0.6081508339993889 +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829 +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129 +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895 +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531 +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873 +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236 +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326 +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912 +21,2877.9582412967975,2.124125880121724,0.0,574.9411347085722,0.6081145419993845 +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427 +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106 +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583 +25,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333 +26,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665 +27,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394 +28,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021 +0,2951.495904520558,2.2148803831535737,0.033558793684145,582.077276451496,0.6138243749992398 +1,2934.3258093471427,2.201995490811955,0.0333635680426053,578.6910876989903,0.6102534999990894 +2,2958.2731076379414,2.219966175146153,0.033635851138578,583.4138379986367,0.6152338339998096 +3,2935.405490800975,2.202805712255422,0.0333758441250821,578.9040163495498,0.6104780419991584 +4,2932.144611632538,2.2003586625099203,0.0333387676137866,578.2609242611298,0.6097998750010447 +5,2944.56143397673,2.2096765735356927,0.0334799480838741,580.7096995147969,0.6123822089975874 +6,2943.7381974341965,2.2090587951183283,0.0334705878048231,580.5473454746576,0.612210999999661 +7,2933.019134274525,2.201014927369172,0.033348711020745,578.4333926548225,0.6099817499998608 +8,2934.32941563607,2.2019981970662945,0.033363609046459,578.6917989108315,0.6102542500011623 +9,2925.5930077164485,2.195442166108989,0.0332642752440755,576.9688541084912,0.6084373340017919 +10,2917.215217792331,2.189155251555359,0.0331690189629599,575.316633912541,0.6066950000022189 +11,2923.9008598754463,2.194172333732569,0.0332450353595843,576.6351383119911,0.6080854169995291 +12,2924.1478899759636,2.1943577116363113,0.0332478441157016,576.6838561868458,0.608136791997822 +13,2930.0543738836395,2.198790092965551,0.0333150014085689,577.8486994316285,0.6093651670016698 +14,2933.8690140150657,2.201652699545132,0.0333583742355323,578.6010011153077,0.6101584999996703 +15,2921.9182046353953,2.1926844969407173,0.0332224923778896,576.2441302944961,0.6076730829990993 +16,2933.0884565591487,2.2010669486401797,0.0333494992218209,578.4470640024837,0.6099961669970071 +17,2923.955156023265,2.19421307899415,0.0332456527120325,576.645846290205,0.608096709001984 +18,2920.4111839350135,2.1915535888540183,0.033205357406879,575.9469242223173,0.6073596669994004 +19,2923.425629243495,2.193815708130423,0.03323963194137,576.5414160230634,0.6079865829997289 +20,2927.2629120147917,2.1966953063442443,0.033283262217337,577.2981831597108,0.6087846250011353 +21,2927.0900125724725,2.196565558041878,0.0332812963339678,577.2640849126723,0.6087486670003273 +22,2935.697195491655,2.2030246151500767,0.0333791608356072,578.9615446936073,0.610538707998785 +23,2924.6337375033436,2.194722304436847,0.0332533682490431,576.7796722796531,0.6082378339997376 +24,2924.4710510312407,2.1946002202167354,0.0332515184881323,576.7475881766557,0.6082039999964763 +25,2911.763322173297,2.1850640052693304,0.0331070303828686,574.2414419908566,0.6055611659976421 +26,2927.3087935001095,2.1967297370211165,0.0332837838942593,577.3072316459284,0.6087941670011787 +27,2926.9894358421257,2.19649008261035,0.0332801527668234,577.2442497405534,0.6087277499973425 +28,2917.142890252357,2.1891009750614616,0.0331681965918403,575.3023698854705,0.6066799580003135 +0,3932.41265398972,4.478944969047389,106.51806719621725,662.7828265851253,0.6318551250005839 +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532 +2,3908.699448921323,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069 +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925 +4,3869.162738242476,4.406904489866914,104.8048037702936,652.1224606396295,0.6216922079984215 +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051 +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978 +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778 +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074 +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706 +10,3894.38802258755,4.435635620180903,105.48808621527964,656.3740198554913,0.6257453749967681 +11,3910.956019959519,4.4545062614400495,105.93686695439756,659.1664491082828,0.6284075000003213 +12,3903.508961494342,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862 +13,3851.845836610113,4.3871808605659375,104.33573730804557,649.2038083969791,0.6189097499991476 +14,3886.53331843636,4.426689258052392,105.27532423473473,655.0501600581138,0.6244832910015248 +15,3901.3203334792697,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713 +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272 +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295 +18,3870.832218570019,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032 +19,3910.039595065132,4.453462470507768,105.91204356553436,659.0119915944615,0.6282602499995846 +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754 +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134 +22,3893.81000588388,4.434977269891977,105.47242935840843,656.2765988627368,0.6256524999989779 +23,3910.340138863701,4.453804784311792,105.92018445697892,659.062646316093,0.6283085409995692 +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367 +25,3905.901941366857,4.448749759801594,105.79996609212364,658.314616711693,0.6275954170014302 +26,3892.3977655668273,4.43336875440296,105.43417571561324,656.0385748526666,0.6254255829990143 +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478 +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464 +29,3882.8875904046654,4.422536841543025,105.176571652636,654.4356960782576,0.6238975000014761 +0,2919.8438339372997,1.8030529009870455,0.0,578.746591348305,0.6114040419997764 +1,2940.8832996175584,1.816045126526332,0.0,582.9168551496465,0.6158096250001108 +2,2918.2461827418515,1.802066324380024,0.0,578.4299185273882,0.6110694999988482 +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858 +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065 +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882 +6,2918.686534688,1.8023382491469344,0.0,578.5172013419226,0.61116170799869 +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931 +8,2928.492909138035,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707 +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285 +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552 +11,2901.6572096881105,1.7918223532329065,0.0,575.1417934923327,0.6075958329965943 +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582 +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802 +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459 +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779 +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259 +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319 +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815 +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445 +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325 +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322 +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245 +23,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916 +24,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485 +25,2885.41686295252,1.781793664727619,0.0,571.9227701985892,0.6041951670013077 +26,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423 +27,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737 +28,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253 +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118 +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383 +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707 +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253 +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816 +5,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121 +6,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468 +7,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847 +8,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303 +9,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009 +10,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886 +11,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326 +12,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613 +13,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585 +14,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853 +15,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831 +16,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403 +17,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213 +18,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625 +19,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838 +20,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121 +21,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417 +22,2895.520515500325,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469 +23,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353 +24,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964 +25,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662 +26,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742 +27,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383 +28,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062 +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959 +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716 +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105 +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413 +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463 +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355 +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888 +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446 +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244 +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718 +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669 +11,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169 +12,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923 +13,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987 +14,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699 +15,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191 +16,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126 +17,2890.736802936653,2.130044618540409,0.0,576.0772234736866,0.6092155839978659 +18,2899.8549367525866,2.136763331861536,0.0,577.8943204873644,0.6111372079976718 +19,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774 +20,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751 +21,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521 +22,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356 +23,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575 +24,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191 +25,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396 +26,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963 +27,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486 +28,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595 +0,2880.5533097361076,1.825887494790604,0.0,573.3286733642497,0.6070650420006132 +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006 +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765 +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952 +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557 +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265 +6,2887.4259199457047,1.830243815153036,0.0,574.6965579580532,0.6085134170025412 +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313 +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573 +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542 +10,2889.5760202011456,1.8316066926098376,0.0,575.124501479489,0.6089665419967787 +11,2886.0018121415305,1.8293411203054568,0.0,574.4131117759134,0.6082132920018921 +12,2885.7890726205305,1.8292062717575304,0.0,574.3707693318646,0.6081684580021829 +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014 +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828 +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965 +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266 +17,2884.020161092751,1.8280850172308232,0.0,574.0186954104786,0.6077956670014828 +18,2897.609582545234,1.8366989021423303,0.0,576.7234552726918,0.6106595829987782 +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742 +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978 +21,2887.338331075706,1.830188295464553,0.0,574.6791247758696,0.6084949579999375 +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784 +23,2886.9599134100326,1.829948429019025,0.0,574.6038067119739,0.6084152079965861 +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548 +25,2884.892258368299,1.8286378108570625,0.0,574.1922726091175,0.6079794580000453 +26,2884.9082776565983,1.8286479649542224,0.0,574.1954609956258,0.6079828340007225 +27,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738 +28,2886.107584019245,1.8294081656012915,0.0,574.4341639988056,0.6082355830003507 +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732 +1,2896.197005839203,2.303364416405272,0.0,578.6118178196027,0.6105097500003467 +2,2891.913463676345,2.299957687313914,0.0,577.7560375972763,0.6096067920007044 +3,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047 +4,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838 +5,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925 +6,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505 +7,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595 +8,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481 +9,2883.2526825801706,2.293069711476986,0.0,576.0257581018926,0.6077811249997467 +10,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576 +11,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386 +12,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493 +13,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134 +14,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784 +15,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753 +16,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699 +17,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159 +18,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282 +19,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848 +20,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501 +21,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107 +22,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373 +23,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919 +24,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884 +25,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782 +26,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034 +27,2898.382757621868,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129 +28,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197 +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472 +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569 +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239 +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394 +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282 +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405 +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909 +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421 +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795 +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559 +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654 +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195 +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255 +13,2895.9775494362375,1.2657535699498177,0.0,576.1177301540012,0.6104503339993244 +14,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398 +15,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095 +16,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925 +17,2892.9834865033354,1.264444945907924,0.0,575.522099590091,0.609819208002591 +18,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311 +19,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305 +20,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842 +21,2887.0621846104905,1.2618569047778825,0.0,574.3441322378487,0.608571042001131 +22,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829 +23,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487 +24,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155 +25,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769 +26,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812 +27,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479 +28,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126 +0,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265 +1,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777 +2,2883.2836595675476,1.724392449394602,0.0,574.8527521202967,0.6075725420014351 +3,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583 +4,2895.5215166664366,1.7317114893746155,0.0,577.2926666982493,0.6101513329995214 +5,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914 +6,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713 +7,2892.0002968654867,1.729605569335403,0.0,576.590625854408,0.6094093330029864 +8,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046 +9,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127 +10,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929 +11,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064 +12,2929.81050511024,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686 +13,2896.032852824472,1.7320173018835905,0.0,577.3946140029238,0.6102590829977999 +14,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724 +15,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483 +16,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001 +17,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563 +18,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858 +19,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492 +20,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169 +21,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306 +22,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008 +23,2892.911846698592,1.7301507358313315,0.0,576.7723654930026,0.6096014169997943 +24,2888.988239731408,1.727804161915112,0.0,575.9900989768936,0.6087746250013879 +25,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271 +26,2895.1272397065154,1.731475685932106,0.0,577.2140579929434,0.6100682500000403 +27,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418 +28,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198 +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527 +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564 +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987 +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384 +4,2893.026344318771,1.8327376373551,0.0,574.8798130845488,0.6091410410008393 +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858 +6,2890.589531602901,1.8311939119105216,0.0,574.3955885141876,0.608627958001307 +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217 +8,2885.062076872394,1.827692258929286,0.0,573.2972154736007,0.6074641250015702 +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232 +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973 +11,2877.88322905155,1.823144445315372,0.0,571.8706903741963,0.6059525829987251 +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582 +13,2899.5976737820447,1.8369005869453976,0.0,576.1856168360363,0.6105246670013003 +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935 +15,2893.7573506004273,1.8332007312111809,0.0,575.0250729973689,0.6092949579979177 +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482 +17,2903.462655182409,1.8393490599411704,0.0,576.9536360382741,0.6113384579984995 +18,2896.517124134783,1.834949052942479,0.0,575.5734738429754,0.6098760419990867 +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857 +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489 +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384 +22,2893.456165583078,1.8330099299354896,0.0,574.9652238408559,0.6092315419991792 +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818 +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026 +25,2893.683735625488,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463 +26,2885.7042275061403,1.8280990625650808,0.0,573.4248186795049,0.6075993330014171 +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378 +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905 +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568 +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368 +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331 +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703 +3,3935.267962817907,4.790650299087921,105.05929606950852,659.6356950282599,0.6278394580003805 +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595 +5,3923.989045361744,4.776919760330386,104.75818439437823,657.7451054608762,0.6260399999991932 +6,3898.694465671203,4.7461270705047545,104.0828985531672,653.5051889387316,0.6220044590008911 +7,3894.514781749232,4.741038877217773,103.971314118566,652.8045838630626,0.6213376249979774 +8,3918.225926213384,4.769903951309849,104.60432721194184,656.7790825265099,0.6251205420012411 +9,3904.976514887927,4.753774605880575,104.25060953875165,654.5581957327869,0.6230067079995933 +10,3900.61585011822,4.748466093174299,104.13419348387832,653.8272543678459,0.622310999999172 +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011 +12,3890.512694027786,4.736166883005214,103.86447094478568,652.1337477368717,0.620699125000101 +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967 +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517 +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265 +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703 +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107 +18,3901.9553617383385,4.750096765292231,104.1699542374576,654.0517853748532,0.6225247080001282 +19,3916.8843211021353,4.76827073065291,104.56851056872397,656.5542006052852,0.6249065000010887 +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055 +21,3945.550802306459,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603 +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766 +23,3902.181791517138,4.750372412566515,104.17599920145868,654.0897398841586,0.6225608329987153 +24,3924.885099333542,4.778010583437871,104.78210622140676,657.89530341183,0.6261829579998448 +25,3922.3157590073897,4.774882763142472,104.71351290359992,657.4646266173096,0.6257730409997748 +26,3926.91669945643,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049 +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414 +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465 +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341 +0,3918.98590650998,5.811744006176802,104.04357804161344,658.8981264933894,0.6259630829990783 +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426 +2,3895.8175551975046,5.777386003855434,103.42849081614756,655.0028373451503,0.622262500000943 +3,3895.0135710260497,5.776193718325202,103.40714616427016,654.8676636862141,0.6221340830015833 +4,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738 +5,3919.633892088269,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375 +6,3916.25597151212,5.807695590658208,103.97110209712828,658.4391432006579,0.6255270420006127 +7,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078 +8,3902.03785350188,5.786610528324133,103.59363100994068,656.0486545531619,0.6232560420030495 +9,3910.647659587238,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752 +10,3934.942942332293,5.835407833888616,104.46721495725885,661.5809789604639,0.6285118330015393 +11,3885.9065565334263,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964 +12,3895.060006851172,5.776262581325674,103.40837897028432,654.8754709299515,0.6221414999999979 +13,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226 +14,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504 +15,3888.3659841602007,5.766335537141401,103.23066205859465,653.7500065585541,0.6210722920004628 +16,3914.404354325165,5.804949695331016,103.92194425836848,658.1278312631894,0.625231291000091 +17,3953.712874083537,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388 +18,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325 +19,3938.661296366054,5.840922046566098,104.56593204053677,662.2061449000541,0.6291057500020543 +20,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758 +21,3916.1808364849194,5.807584167561926,103.96910736755976,658.4265107672076,0.6255150409997441 +22,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244 +23,3892.105981516816,5.771881846247623,103.32995374173188,654.3788113846371,0.6216696659976151 +24,3870.0916956217825,5.7392352899310515,102.74550533411048,650.6775549682176,0.618153416999121 +25,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036 +26,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518 +27,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333 +28,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414 +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901 +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142 +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616 +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762 +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902 +5,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627 +6,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874 +7,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908 +8,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865 +9,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068 +10,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236 +11,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381 +12,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771 +13,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913 +14,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114 +15,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037 +16,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645 +17,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216 +18,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751 +19,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859 +20,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738 +21,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113 +22,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915 +23,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869 +24,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682 +25,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566 +26,2920.540539483107,2.261690221786506,0.0,576.6644862549181,0.6069196249991364 +27,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783 +0,4178.899201105131,5.488284972494792,106.22806997967332,659.321559768019,0.6223265419976087 +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206 +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914 +3,4220.901846967973,5.543448420809863,107.29578178350656,665.9484843842789,0.6285816249983327 +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172 +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912 +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368 +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697 +8,4225.91204815074,5.550028481858783,107.42314163983296,666.7389637664328,0.6293277500008116 +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834 +10,4255.092473689515,5.5883520889305,108.16491121526325,671.3428756473014,0.6336733329990238 +11,4192.928435888898,5.506710025297929,106.5846946462786,661.5350079788633,0.6244157920009457 +12,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666 +13,4163.911680836073,5.468601372027502,105.84708559231544,656.9569190420027,0.6200945830023556 +14,4176.033033663473,5.484520741068836,106.1552116930974,658.8693531228598,0.6218997089999903 +15,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769 +16,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779 +17,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807 +18,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965 +19,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122 +20,4177.193318685504,5.486044581330055,106.18470626393656,659.0524159089396,0.6220724999984668 +21,4240.824025130627,5.56961286885411,107.80220570860396,669.0916857270402,0.6315484590013511 +22,4186.504453143061,5.498273198691004,106.4213963096036,660.5214706523857,0.6234591249994992 +23,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181 +24,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926 +25,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411 +26,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244 +27,4209.1590568276115,5.528026230524569,106.99727878720144,664.095777645307,0.6268328749974899 +28,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153 +0,2961.1375400963516,2.533336932338099,0.0,582.5008275343196,0.6103282920012134 +1,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373 +2,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715 +3,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253 +4,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257 +5,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351 +6,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131 +7,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213 +8,2955.905773306222,2.528861007849166,0.0,581.4716593705813,0.6092499580008734 +9,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297 +10,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951 +11,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527 +12,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587 +13,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875 +14,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105 +15,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127 +16,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394 +17,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971 +18,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966 +19,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951 +20,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086 +21,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334 +22,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168 +23,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722 +24,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954 +25,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092 +26,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243 +27,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267 +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217 +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801 +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909 +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121 +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203 +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098 +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605 +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971 +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547 +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134 +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695 +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172 +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701 +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134 +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964 +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188 +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913 +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462 +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725 +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809 +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217 +21,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129 +22,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713 +23,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781 +24,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903 +25,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854 +26,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921 +27,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723 +28,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385 +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527 +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256 +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887 +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624 +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048 +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276 +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462 +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564 +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943 +9,2911.6807159487107,2.395513992598981,0.0,578.1173768805539,0.6088341670001682 +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115 +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415 +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134 +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991 +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045 +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869 +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593 +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571 +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506 +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875 +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202 +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929 +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303 +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345 +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896 +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476 +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539 +27,2900.4514699927317,2.386275405529134,0.0,575.8877978676978,0.6064861250015383 +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997 +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562 +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794 +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635 +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166 +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775 +5,2933.95348805359,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838 +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928 +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211 +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087 +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981 +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659 +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679 +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196 +13,2934.7404678341923,2.498502015864287,0.0,583.0171170618786,0.6106430830004683 +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203 +15,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892 +16,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375 +17,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906 +18,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768 +19,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191 +20,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664 +21,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131 +22,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699 +23,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191 +24,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552 +25,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684 +26,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217 +27,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517 +28,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705 +0,2916.2755902573767,2.778202283975463,0.0,582.3513655012664,0.6122291249994305 +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344 +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462 +3,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494 +4,2910.084396408831,2.772304216951885,0.0,581.1150453798662,0.6109293750014331 +5,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939 +6,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087 +7,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651 +8,2915.6827503916365,2.777637512568216,0.0,582.2329812489377,0.6121046669977659 +9,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618 +10,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109 +11,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725 +12,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288 +13,2910.23364716231,2.772446401313879,0.0,581.1448492778177,0.6109607079997659 +14,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568 +15,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962 +16,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443 +17,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258 +18,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842 +19,2907.473272598668,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353 +20,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615 +21,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745 +22,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742 +23,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454 +24,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221 +25,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285 +26,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206 +27,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614 +28,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375 +0,2916.763315644649,1.67067423255281,0.0,579.3229968800124,0.6117394579996471 +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503 +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236 +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066 +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468 +5,2911.317883364726,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165 +6,2904.907730762028,1.6638835477999545,0.0,576.9682590351122,0.6092529589986952 +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608 +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151 +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957 +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525 +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145 +12,2910.385942948952,1.6670213779735783,0.0,578.0563330261181,0.6104019170015818 +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145 +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146 +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738 +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285 +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401 +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839 +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941 +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607 +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747 +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453 +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695 +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931 +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845 +26,2919.6262939438634,1.6723140996092831,0.0,579.8916371805151,0.6123399170028279 +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624 +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778 +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547 +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467 +1,3903.728343298676,4.398604694153814,104.4335387233186,657.7913383530023,0.6261754590013879 +2,3896.366740257168,4.390309859358135,104.23659923657875,656.550883513103,0.6249946249990899 +3,3867.204522235971,4.357450741663593,103.45644412404316,651.63695182151,0.620316874999844 +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219 +5,3883.288345022032,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649 +6,3913.1526881477103,4.40922376491048,104.68566120628368,659.3793721161582,0.6276871660011238 +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447 +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342 +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838 +10,3932.1188059921474,4.430594220957613,105.1930476400088,662.5752266795704,0.6307294159996673 +11,3893.858755217265,4.387483936599365,104.16950497956373,656.1282796096323,0.6245923329988727 +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107 +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145 +14,3880.918548161949,4.372903297146174,103.82332525194025,653.9478112550415,0.6225166660005925 +15,3906.1908620137183,4.401379386813467,104.4994166535864,658.2062810280139,0.6265704580000602 +16,3930.222044592053,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943 +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557 +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798 +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723 +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463 +21,3891.139591523075,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553 +22,3941.683689330291,4.4413716462931685,105.4489298445666,664.1869416502057,0.6322636660006538 +23,3892.6048936178126,4.386071122737294,104.13596135347484,655.9169997184408,0.6243912079989968 +24,3895.8038444594863,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387 +25,3904.985839441688,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816 +26,3869.997206323634,4.360597454820098,103.53115472277416,652.1075284708238,0.6207648339986918 +27,3899.157859558534,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278 +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943 +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187 +0,2884.6844519453502,1.803721085721138,0.0,577.4579653693895,0.6114691249968018 +1,2878.9248167003684,1.800119729763321,0.0,576.304997928672,0.6102482499991311 +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427 +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472 +4,2882.651347302002,1.8024498362046744,0.0,577.0509771908595,0.6110381660000712 +5,2883.2398715165705,1.8028178256860057,0.0,577.1687883418456,0.6111629160004668 +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607 +7,2872.177626013424,1.7959008800713845,0.0,574.9543410124832,0.6088180419974378 +8,2883.9494831095662,1.8032615280785136,0.0,577.3108388411359,0.6113133329999982 +9,2895.4779954549176,1.810470018695324,0.0,579.6186237630511,0.6137570419996337 +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427 +11,2881.051089801741,1.8014492351878608,0.0,576.7306366282913,0.6106989579966466 +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899 +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684 +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046 +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056 +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859 +17,2876.165985025137,1.798394701273215,0.0,575.752733252062,0.6096634579989768 +18,2874.9411706166497,1.797628855437566,0.0,575.5075491260119,0.6094038330011244 +19,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265 +20,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629 +21,2881.6203519457463,1.80180518057792,0.0,576.8445918857607,0.6108196249988396 +22,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016 +23,2881.1031818804754,1.8014818070626624,0.0,576.7410644536909,0.6107100000008359 +24,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997 +25,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505 +26,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135 +27,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412 +28,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503 +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902 +1,2891.2179356716797,1.8025049474262345,0.0,577.6694559288594,0.610794749998604 +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615 +3,2890.2822721394496,1.8019216160470384,0.0,577.4825090242601,0.6105970829994476 +4,2888.0888706578953,1.8005541587642735,0.0,577.044264288417,0.6101337079999212 +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195 +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254 +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625 +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879 +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803 +10,2881.393286312906,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755 +11,2888.1411383469012,1.8005867446053,0.0,577.0547074470245,0.6101447500004724 +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915 +13,2877.2999624761123,1.7938279067806189,0.0,574.8886250878775,0.607854458001384 +14,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717 +15,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456 +16,2905.045772924987,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403 +17,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848 +18,2891.0660697041267,1.8024102678953409,0.0,577.6391128925327,0.6107626670018362 +19,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701 +20,2882.54195887732,1.797095984337481,0.0,575.9359834248971,0.6089618749974761 +21,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447 +22,2878.608193025542,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499 +23,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453 +24,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866 +25,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225 +26,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195 +27,2882.0064778239716,1.7967621432817775,0.0,575.828993548786,0.6088487500019255 +28,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754 +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346 +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122 +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938 +3,2875.852308278687,1.3273726080466577,0.0,572.9272019481385,0.6067970830008562 +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447 +5,2887.2685299862255,1.332641856379874,0.0,575.201541259963,0.6092058750000433 +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371 +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983 +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988 +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336 +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573 +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017 +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408 +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017 +14,2885.526801565024,1.3318379477124145,0.0,574.8545541813708,0.6088383749993227 +15,2889.1212408691845,1.3334969898891955,0.0,575.570638260924,0.6095967920009571 +16,2872.3532493423795,1.3257575894406517,0.0,572.2301195423212,0.6060587909996684 +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522 +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246 +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503 +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753 +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069 +22,2881.77754512887,1.3301074484515285,0.0,574.1076274378909,0.6080472920002649 +23,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095 +24,2893.6888300427822,1.3356051971627023,0.0,576.4805932253515,0.6105605410011776 +25,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662 +26,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984 +27,2892.5888965608005,1.3350975140767345,0.0,576.2614645133705,0.6103284580021864 +28,2898.673296586618,1.3379058175168723,0.0,577.4735984857201,0.6116122500025085 +0,2896.950584654971,1.635243455574937,0.0,578.7093216964283,0.6113373329972092 +1,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016 +2,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356 +3,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268 +4,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356 +5,2884.313628671702,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567 +6,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811 +7,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459 +8,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387 +9,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671 +10,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383 +11,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422 +12,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622 +13,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879 +14,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377 +15,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079 +16,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865 +17,2895.925838535033,1.6346650165103809,0.0,578.5046132919696,0.6111210829985794 +18,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398 +19,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964 +20,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497 +21,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405 +22,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144 +23,2894.0532612962406,1.6336080016993535,0.0,578.1305379075203,0.61072591699849 +24,2894.1069651130647,1.6336383159254455,0.0,578.1412660502684,0.610737250000966 +25,2887.702792283546,1.630023348599695,0.0,576.8619364911697,0.6093857910018414 +26,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123 +27,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185 +28,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258 +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375 +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712 +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556 +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808 +4,2897.009265067062,2.535967566748408,0.0,577.366405361154,0.6108203750009125 +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125 +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013 +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129 +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921 +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624 +10,2892.0727798560765,2.531646294276225,0.0,576.3825767087042,0.6097795409987157 +11,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565 +12,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538 +13,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249 +14,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274 +15,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156 +16,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747 +17,2904.8236489370047,2.542808077853171,0.0,578.9237917249135,0.6124679999993532 +18,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813 +19,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951 +20,2887.1623848924046,2.527347860537005,0.0,575.4039477746288,0.608744207998825 +21,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676 +22,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325 +23,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941 +24,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643 +25,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333 +26,2890.892017617972,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591 +27,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687 +28,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/without_smell.csv new file mode 100644 index 000000000..43a7d11a1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/cleaned/mac/without_smell.csv @@ -0,0 +1,878 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857528,0.1129105830004846 +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.1122849579987814 +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641608,0.1091614580000168 +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344536,0.1082465830004366 +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.1150248750018363 +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.1116048340009001 +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.0514827035298,0.1169229170009202 +7,582.6423693083759,0.5656378805250903,20.6457826391658,101.92087559711472,0.1191075409988116 +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.1106570830015698 +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.1162444999972649 +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.1113215000004856 +11,538.6854559697524,0.5229638550765147,19.088180710292782,94.23154963659948,0.1101215830021828 +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.111878332998458 +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187356,0.1090952919985284 +14,539.7671454695724,0.5240139753360329,19.1265100997652,94.42076818086144,0.1103427090019977 +15,553.593014338471,0.5374363345316143,19.61642621040392,96.83930952841526,0.1131690830006846 +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.1101606249976612 +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968148,0.1123614160023862 +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534612,0.1132802920001267 +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355836,0.1092215419994317 +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538245,0.1131127090011432 +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992972,0.1152214579997235 +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937 +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.1151998329987691 +24,536.9986247763089,0.5213262542576872,19.028408280405586,93.936474439057,0.1097767500032205 +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.1118286669989174 +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.1110817080007109 +27,544.085117892408,0.5282059272057841,19.279516343011117,95.1761055083922,0.1112254169966036 +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257103,0.1116604999988339 +29,566.5485704249801,0.5500137811297665,20.07550301123648,99.1056081873198,0.1158175420023326 +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951331,0.1165232500025013 +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.109883916000399 +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729285,0.1088155409997853 +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658149,0.1146176250003918 +4,553.11275808707,0.4312899385275857,15.327380892288048,94.31979194107126,0.110460084000806 +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839276,0.1107872500033408 +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067 +7,547.9159557125065,0.4272377293823527,15.183371613434383,93.43360497184838,0.1094222499996249 +8,557.4791708931641,0.4346946510083453,15.448379135835042,95.06437637051738,0.1113320840013329 +9,533.7877060177743,0.4162212199034948,14.791861815031895,91.02437909120276,0.1066007499975967 +10,552.6339298454541,0.4309165719764217,15.314112019469755,94.23813954838208,0.1103644590002659 +11,536.8584659497922,0.418615646433979,14.876956050192176,91.54802175475405,0.1072139999996579 +12,537.1480562614719,0.4188414546184701,14.884980925671789,91.5974042677162,0.107271832999686 +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.1069220419994962 +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073804,0.112219291000656 +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.111232209001173 +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326 +17,561.6544679972243,0.4379503409287378,15.564081346852063,95.77637071233858,0.1121659169984923 +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.1104156669971416 +19,562.1610470070955,0.4383453461547649,15.578119224884723,95.86275531676898,0.1122670840013597 +20,529.2493757437318,0.4126824546946085,14.66609954376224,90.25047836129016,0.1056944170013594 +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.1101329169978271 +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.1124342920011258 +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.1112789590006286 +24,556.7222241829976,0.4341044214478748,15.427403285301398,94.93529770586986,0.1111809169997286 +25,558.98491731835,0.4358687575059111,15.49010507444084,95.32114442994656,0.1116327909985557 +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225053,0.1109062089999497 +27,561.1524807485683,0.4375589161307214,15.550170711722563,95.6907691199724,0.1120656669991149 +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.1134994999993068 +29,557.0070174500534,0.4343264891345185,15.43529522924212,94.98386220072588,0.1112377919998834 +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.1125216660002479 +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568808,0.1101577499975974 +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097 +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.112258417000703 +4,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070756,0.1136530000003404 +5,581.2750486108054,1.8699591852123023,19.899188310561104,101.4717474843506,0.1187752500009082 +6,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.1096269589979783 +7,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.1114606659975834 +8,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713872,0.1128588749998016 +9,530.8233484268193,1.70765629539432,18.172040577403703,92.66451897271818,0.1084661660024721 +10,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788 +11,561.3068844925039,1.8057216921458392,19.215604422080258,97.98595446436669,0.1146950410002318 +12,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393 +13,552.9138385846918,1.7787213016685075,18.928279512095063,96.52080119997412,0.1129800420021638 +14,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.1120357909967424 +15,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.1092452910015708 +16,560.2365478283398,1.802278423969773,19.178962851300977,97.79910844032202,0.114476332997583 +17,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733424,0.1063855409993266 +18,545.8038038438997,1.7558483522747603,18.684876805338963,95.27962002155115,0.1115272080023714 +19,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.1126457079990359 +20,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697 +21,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.1090439170002355 +22,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.112828207998973 +23,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.1119214999998803 +24,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654147,0.1058321659984358 +25,548.6950850466077,1.7651495907417427,18.78385602223288,95.784343829684,0.1121180000009189 +26,546.7342628234665,1.75884163457625,18.716729847188773,95.4420479441754,0.1117173339989676 +27,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.1114615829974354 +28,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651888,0.1148124999999709 +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.1091742919998068 +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111 +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464 +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.1080349999974714 +4,352.95630957691594,0.902188806075616,0.0,74.88167090427612,0.1085900830003083 +5,355.88853599161115,0.9096838466130364,0.0,75.503759268882,0.1094922079973912 +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448 +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.1080987919995095 +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.1078200419979111 +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.1075920420007605 +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.1079821250023087 +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.1082636669998464 +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.106822749999992 +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.1075403750000987 +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614 +15,356.18445481047524,0.9104402423442992,0.0,75.56654011457682,0.1095832499995594 +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.1081861250022484 +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.1078271250007674 +18,353.32834195736103,0.9031397550741976,0.0,74.96059967115839,0.1087045420026697 +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.107993666002585 +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.1081487080009537 +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.1078684999993129 +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.1099669169998378 +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.1078520410010241 +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.1094752499993774 +25,352.68558102305303,0.9014967989796868,0.0,74.82423431531402,0.1085067910025827 +26,353.91150762756075,0.904630380189732,0.0,75.08432155574776,0.1088839580006606 +27,358.5786109780503,0.916559925817226,0.0,76.07447384282976,0.110319832998357 +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.108140459000424 +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.1086507079999137 +0,350.06159203288655,0.0,0.0,73.32729560385845,0.1087225420014874 +1,348.15467995134566,0.0,0.0,72.9278553079902,0.1081302909988153 +2,349.6879634578959,0.0,0.0,73.24903173947592,0.1086064999981317 +3,345.65050696371725,0.0,0.0,72.40330695111199,0.1073525419997167 +4,340.1390654644476,0.0,0.0,71.24882697039375,0.1056407920004858 +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063 +6,350.6147227766598,0.0,0.0,73.44315973314124,0.1088943340000696 +7,344.5928124845704,0.0,0.0,72.18175200907858,0.1070240420012851 +8,347.23235425746674,0.0,0.0,72.73465602438603,0.1078438339973217 +9,350.3030715703917,0.0,0.0,73.37787824940402,0.1087975410009676 +10,348.65723454798535,0.0,0.0,73.03312526705905,0.1082863749979878 +11,348.17815851859984,0.0,0.0,72.93277335635823,0.108137582999916 +12,352.10694777546087,0.0,0.0,73.7557356514507,0.1093577909996383 +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034 +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177 +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136 +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447 +17,349.51704839988264,0.0,0.0,73.21323021406631,0.1085534169978927 +18,339.98330586077833,0.0,0.0,71.21620005341305,0.1055924159991263 +19,350.75907473976633,0.0,0.0,73.47339709511014,0.1089391670029726 +20,347.3249194409645,0.0,0.0,72.75404562532324,0.1078725830011535 +21,353.67980870531187,0.0,0.0,74.08520235380207,0.1098462920017482 +22,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113 +23,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702 +24,349.00389754202627,0.0,0.0,73.1057406593714,0.1083940419994178 +25,349.8933590281963,0.0,0.0,73.29205588734567,0.1086702919965318 +26,348.0918976573909,0.0,0.0,72.91470431990045,0.108110791999934 +27,348.4616335231562,0.0,0.0,72.99215277966113,0.1082256250010686 +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.112606250000681 +1,532.8827144907617,0.4343244694909029,20.07915432031021,96.28639392867557,0.111914875000366 +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782764,0.1119704580014513 +3,541.410961550333,0.4412753918592055,20.40050080826019,97.82735994909464,0.1137059590000717 +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.1066040840014466 +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.1111882910008716 +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.1162620830000378 +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032647,0.1119292080002196 +8,530.81126187005,0.4326361382012946,20.001101466075237,95.91210386893316,0.1114798330017947 +9,539.3258148522472,0.4395758992526152,20.32193195775552,97.45059551123364,0.1132680410009925 +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.4540377854172,0.1132720419991528 +11,530.2759930276953,0.4321998689253943,19.980932401858617,95.81538632638356,0.1113674169973819 +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647 +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.1108480830007465 +14,530.8965736635557,0.4327056713245281,20.00431603584934,95.92751882748384,0.1114977500001259 +15,538.9450995668178,0.4392655983930176,20.30758651032335,97.38180419759053,0.113188084000285 +16,533.1491585277918,0.4345416339097989,20.08919399844532,96.33453760984928,0.1119708330006687 +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.1070651660011208 +18,514.0279683439179,0.4189569647944158,19.368702757034143,92.87953634903896,0.1079550419999577 +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129492,0.1120103749999543 +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.112965249998524 +21,531.0947711170215,0.4328672115687322,20.011784165600623,95.96333105700664,0.111539375000575 +22,541.2827962393301,0.4411709311041561,20.395671507199836,97.80420180324448,0.1136790419986937 +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547 +24,500.526534169196,0.4079526610783415,18.85996533139102,90.4399668636754,0.1051195000000007 +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.4115216807082,0.1132226250010717 +26,531.2782888578109,0.4330167871568365,20.018699160096823,95.9964908143079,0.1115779169995221 +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.114608040999883 +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.1120559580012923 +29,534.66053966854,0.4357734806075874,20.146143218858462,96.60762854700516,0.112288249998528 +0,340.64918730588545,0.0,0.0,71.49545654085841,0.1037612910004099 +1,359.87735697665374,0.0,0.0,75.53106507974576,0.1096181659995636 +2,357.04781740694864,0.0,0.0,74.93720127241826,0.1087562919965421 +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077 +4,361.7094135366254,0.0,0.0,75.91557713803003,0.110176207999757 +5,353.73252394336674,0.0,0.0,74.2413874305585,0.1077464580012019 +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035 +7,338.8384735800955,0.0,0.0,71.1154239169323,0.1032097499992232 +8,355.53448516285744,0.0,0.0,74.61958307833125,0.1082953330005693 +9,355.65390787855864,0.0,0.0,74.64464751969373,0.1083317090015043 +10,356.53813036938084,0.0,0.0,74.83022814932919,0.1086010420003731 +11,354.8124958061129,0.0,0.0,74.46805194130923,0.1080754159993375 +12,356.29587060954617,0.0,0.0,74.77938266730163,0.1085272499985876 +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865 +14,336.2974250979103,0.0,0.0,70.58210862338031,0.102435749999131 +15,357.04535515580596,0.0,0.0,74.9366844951115,0.1087555419981072 +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161 +17,356.4013372564373,0.0,0.0,74.80151800873296,0.1085593749994586 +18,358.36306935886296,0.0,0.0,75.21324637181236,0.1091569159980281 +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413 +20,358.2503538344796,0.0,0.0,75.18958963586425,0.1091225829986797 +21,336.7975356102561,0.0,0.0,70.68707182521217,0.1025880829984089 +22,351.84930825701434,0.0,0.0,73.84613809406216,0.1071728329989127 +23,355.9800156634005,0.0,0.0,74.71309102646735,0.1084310410005855 +24,353.9434572371491,0.0,0.0,74.28565811342115,0.107810708002944 +25,356.2458047328008,0.0,0.0,74.76887484033942,0.1085119999988819 +26,361.9292404971096,0.0,0.0,75.96171442379344,0.1102431670005898 +27,349.61795580865146,0.0,0.0,73.37782180873364,0.1064931660002912 +28,356.15757387973906,0.0,0.0,74.75035694757553,0.1084851249979692 +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219 +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.1019022909968043 +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134 +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.1075519169971812 +4,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.1092284160004055 +5,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.1055996670002059 +6,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.1072167499987699 +7,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.1087792079997598 +8,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.1089186249992053 +9,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.1087490000027173 +10,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.1089228750024631 +11,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.1083967079975991 +12,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.1076077499965322 +13,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.1083305419997486 +14,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.1090984170004958 +15,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.108379416000389 +16,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.1077096250010072 +17,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.108017208000092 +18,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.1086980000000039 +19,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.1092419999986304 +20,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.110597749997396 +21,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.1104769160010619 +22,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.1082216249997145 +23,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.1076850419995025 +24,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.1083025000007182 +25,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.1082828329999756 +26,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.1102724999982456 +27,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.1092242089980572 +0,351.73175655141023,0.0,0.0,74.21831970730892,0.1092706669987819 +1,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061 +2,328.1519445206855,0.0,0.0,69.24278367640527,0.1019452500004263 +3,349.2189998358078,0.0,0.0,73.68810718656938,0.1084900419991754 +4,347.0344361100074,0.0,0.0,73.22714611040125,0.1078113750008924 +5,348.8421177226201,0.0,0.0,73.60858193288522,0.1083729580022918 +6,349.7607123637488,0.0,0.0,73.802413025719,0.1086583329997665 +7,348.86438286229674,0.0,0.0,73.61328006213873,0.1083798749968991 +8,349.5485351074402,0.0,0.0,73.7576418637468,0.1085924170001817 +9,349.2062562033976,0.0,0.0,73.6854181743695,0.1084860830014804 +10,348.9237973941225,0.0,0.0,73.62581702144415,0.1083983329990587 +11,348.52452136305044,0.0,0.0,73.54156646523587,0.1082742920007149 +12,349.0319010610443,0.0,0.0,73.6486277923333,0.1084319170004164 +13,353.06652971176385,0.0,0.0,74.49996792162754,0.1096853340022789 +14,345.82868949784233,0.0,0.0,72.97272356856122,0.1074367920009535 +15,338.35479420348673,0.0,0.0,71.39566963446653,0.1051149160011846 +16,337.7432057089416,0.0,0.0,71.26661938645225,0.1049249169991526 +17,351.2683696181278,0.0,0.0,74.1205412186682,0.1091267090014298 +18,349.83072674614044,0.0,0.0,73.81718664146358,0.1086800840021169 +19,351.41952290191574,0.0,0.0,74.15243581599138,0.1091736670023237 +20,347.59841378933527,0.0,0.0,73.34615008127537,0.1079865829997288 +21,349.5599332493968,0.0,0.0,73.76004696629455,0.1085959580013877 +22,340.3002223481199,0.0,0.0,71.80617111838608,0.105719291997957 +23,350.65422853504253,0.0,0.0,73.99095235328762,0.1089359170000534 +24,349.36518956692623,0.0,0.0,73.71895443308603,0.1085354579990962 +25,347.2503698208989,0.0,0.0,73.27270991546585,0.1078784579985949 +26,348.0902365247607,0.0,0.0,73.44992876016128,0.1081393749991548 +27,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439 +28,348.35848065329765,0.0,0.0,73.50653049748111,0.1082227090009837 +0,350.2437335737623,0.0,0.0,73.26884233321877,0.1097303749993443 +1,348.89690052127264,0.0,0.0,72.9870931137106,0.1093084159983845 +2,344.6200794331875,0.0,0.0,72.09240835577674,0.1079685000004246 +3,348.24483274191084,0.0,0.0,72.8506845309527,0.109104125000158 +4,345.50688280525327,0.0,0.0,72.27792218577584,0.108246332998533 +5,349.28976713270595,0.0,0.0,73.06927840084587,0.1094315000009373 +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958 +7,346.57482729959054,0.0,0.0,72.50132962829542,0.1085809169999265 +8,346.00907053653475,0.0,0.0,72.3829767811272,0.1084036669999477 +9,345.64931945621555,0.0,0.0,72.30771906012771,0.1082909579999977 +10,346.6860092861362,0.0,0.0,72.5245882184189,0.1086157500030822 +11,356.34736331255743,0.0,0.0,74.54568426391941,0.1116426250009681 +12,349.03401953271384,0.0,0.0,73.01577757046779,0.1093513749983685 +13,344.75839219546305,0.0,0.0,72.12134253789166,0.1080118329991819 +14,344.37390740929675,0.0,0.0,72.04091067722797,0.1078913749988714 +15,338.3729501588257,0.0,0.0,70.78554720177965,0.106011291998584 +16,343.2693938159089,0.0,0.0,71.80985320332805,0.1075453340017702 +17,393.3508368048623,0.0,0.0,82.28658411507446,0.1232357089975266 +18,340.6583170286766,0.0,0.0,71.26363194337405,0.1067272910004248 +19,394.2611769502774,0.0,0.0,82.47702169379554,0.123520916000416 +20,350.23469104240684,0.0,0.0,73.26695069108311,0.1097275419997458 +21,348.4636090527246,0.0,0.0,72.89645119424085,0.1091726670019852 +22,344.2709700068494,0.0,0.0,72.01937680356475,0.1078591250006866 +23,346.28117640365764,0.0,0.0,72.43989966072517,0.108488917001523 +24,348.48262613381,0.0,0.0,72.90042945104354,0.1091786249999131 +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156 +26,338.7078270988537,0.0,0.0,70.85560140508998,0.1061162080004578 +27,391.2020495267679,0.0,0.0,81.83707098694545,0.1225624999970023 +28,348.54553126622045,0.0,0.0,72.91358881918269,0.1091983330006769 +29,344.56861072035196,0.0,0.0,72.08164141651599,0.1079523749976942 +0,349.5570979228151,0.0,0.0,73.44896139887625,0.1089127500017639 +1,347.24183407513084,0.0,0.0,72.96247800034911,0.1081913749985687 +2,344.7376100562334,0.0,0.0,72.43629027768198,0.1074111250018177 +3,351.6277678281301,0.0,0.0,73.88405070145102,0.1095579159991757 +4,349.9146892287216,0.0,0.0,73.52409850860788,0.1090241659985622 +5,346.9369301696893,0.0,0.0,72.89841157081808,0.1080963750027876 +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817 +7,349.49852426123,0.0,0.0,73.4366538970852,0.1088944999974046 +8,346.91740668224895,0.0,0.0,72.8943092942976,0.1080902920002699 +9,346.9200802047294,0.0,0.0,72.89487105502462,0.1080911249991913 +10,345.9247293954029,0.0,0.0,72.68572787467728,0.1077810000024328 +11,348.7487013459444,0.0,0.0,73.27910105467957,0.1086608750010782 +12,346.2514323292838,0.0,0.0,72.75437471755963,0.1078827919991454 +13,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314 +14,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937 +15,347.9824296464449,0.0,0.0,73.11809199260635,0.1084221249984693 +16,357.2821339838763,0.0,0.0,75.07214650604604,0.1113196670012257 +17,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021 +18,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659 +19,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366 +20,337.4620408760736,0.0,0.0,70.90754718236538,0.1051442499992845 +21,344.88858884112295,0.0,0.0,72.46801395032172,0.1074581659995601 +22,347.06143366416603,0.0,0.0,72.92457225361979,0.1081351670000003 +23,350.9464166897125,0.0,0.0,73.74088515349878,0.1093456249982409 +24,349.12528336836505,0.0,0.0,73.35822849506813,0.1087782080030592 +25,349.5365024599655,0.0,0.0,73.44463387880921,0.1089063330000499 +26,347.7287463838418,0.0,0.0,73.06478804806281,0.1083430840008077 +27,347.93963719702685,0.0,0.0,73.1091004401986,0.1084087920025922 +28,349.69617582957653,0.0,0.0,73.47818445818719,0.1089560830005211 +0,352.72069606426135,0.9034682471999864,0.0,74.95440273066554,0.1094220830018457 +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334 +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.1084641250017739 +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.1104006250025122 +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.1071309159997326 +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.1081715000000258 +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.1083696669993514 +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.108185165998293 +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.1072509999976318 +9,355.586244105474,0.9108081387769468,0.0,75.56334188371707,0.1103110419971926 +10,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.1079684579999593 +11,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.1077727500014589 +12,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.1088582079974003 +13,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852 +14,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.1082003749979776 +15,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.1086762089980766 +16,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.104039959001966 +17,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.1092145830007211 +18,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.1081076670016045 +19,360.0307626207023,0.9221924476576192,0.0,76.50781787974321,0.1116898339969338 +20,351.99272624691093,0.9016036057932448,0.0,74.79970655469884,0.1091962499995133 +21,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802 +22,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.1087829999996756 +23,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903 +24,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807 +25,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.108505915999558 +26,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257 +27,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.1078266250005981 +28,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.1082103750013629 +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.1093228749996342 +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.1089070000016363 +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.1054213329989579 +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395 +4,354.3888189098163,0.9011582323003428,0.0,81.1376171378568,0.1093122500024037 +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214 +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.1027426660002674 +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695 +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098 +9,369.5021486200632,0.9395891893710402,0.0,84.59782664299996,0.113973999999871 +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.1095547080003598 +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.1115347920022031 +12,362.8293302804259,0.9226212015041912,0.0,83.07007929098847,0.1119157499997527 +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.1091690419998485 +14,356.00332808847406,0.905263689808702,0.0,81.50726036759092,0.1098102500000095 +15,355.7832782663517,0.9047041357309752,0.0,81.4568797763704,0.1097423749997688 +16,359.8954688249249,0.91516082673507,0.0,82.39836925159092,0.1110107919994334 +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.1094131669997295 +18,355.96537090717135,0.905167170323378,0.0,81.49857003911599,0.109798541998316 +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.1092755830031819 +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574 +21,354.52849339615904,0.9015134038139284,0.0,81.16959572858,0.1093553329992573 +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.1082306659991445 +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.1068390000000363 +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.1068899999991117 +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.1085886250002658 +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.1092238750024989 +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.1091210000013234 +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.1081110839986649 +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092 +0,350.4356841019941,0.0,0.0,74.02446695872452,0.1093239590009034 +1,346.4714390348405,0.0,0.0,73.18707755660988,0.108087249998789 +2,345.72749858615435,0.0,0.0,73.02993090271205,0.1078551659993536 +3,349.2921261580012,0.0,0.0,73.78290689198242,0.1089672079979209 +4,346.26975989888166,0.0,0.0,73.14447575772542,0.1080243329997756 +5,350.39080418180447,0.0,0.0,74.01498672506138,0.1093099579993577 +6,349.6472676163195,0.0,0.0,73.85792538564502,0.1090779999976803 +7,361.78815498173515,0.0,0.0,76.42251214550602,0.1128655419997812 +8,353.5460632089863,0.0,0.0,74.68148953342224,0.1102942910001729 +9,342.0485443957291,0.0,0.0,72.25280506973742,0.1067074580023472 +10,350.28796278914035,0.0,0.0,73.99326296912378,0.109277874998952 +11,345.76957050704704,0.0,0.0,73.03881798715949,0.1078682910010684 +12,356.1562593262886,0.0,0.0,75.23285568991444,0.1111085829979856 +13,352.1317801069439,0.0,0.0,74.38274269482416,0.1098530829985975 +14,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226 +15,345.3318911540231,0.0,0.0,72.94636455768223,0.1077317499984928 +16,349.3621113945349,0.0,0.0,73.79769026041323,0.1089890410003135 +17,349.9381648592711,0.0,0.0,73.9193732185175,0.1091687499974796 +18,332.77482680217906,0.0,0.0,70.29386643211716,0.1038143749974551 +19,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219 +20,347.0243842208858,0.0,0.0,73.3038792252507,0.1082597500026167 +21,348.0907413848161,0.0,0.0,73.52913174441076,0.1085924170001817 +22,346.1256479612438,0.0,0.0,73.11403419640622,0.1079793749995587 +23,348.0938122335487,0.0,0.0,73.52978041676593,0.1085933750000549 +24,349.7563885449727,0.0,0.0,73.88097560268639,0.1091120419987419 +25,330.1607584718866,0.0,0.0,69.74168232666726,0.1029988750015036 +26,351.14262369975336,0.0,0.0,74.1737977183195,0.1095444999991741 +27,346.8602380368698,0.0,0.0,73.26920571930842,0.108208542002103 +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.1099223329983942 +1,564.308332268748,0.4792136753465044,19.990056171597043,98.44418073546764,0.1151113749983778 +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578128,0.1094470829993952 +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924892,0.1137343750015134 +4,551.1749149853679,0.4680607066477709,19.524818048735582,96.1530423084992,0.1124323330004699 +5,548.5636364583718,0.4658431948572852,19.43231612833247,95.69750202925374,0.1118996670011256 +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083 +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377804,0.1143951250014652 +8,533.602080044307,0.4531377605617067,18.902318012002624,93.08744281253348,0.1088477089979278 +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393835,0.115234083001269 +10,542.0632066445227,0.4603229948455245,19.20204492784188,94.56349522683776,0.1105736659992544 +11,542.1635024143241,0.4604081665534718,19.205597804801968,94.5809919291275,0.1105941249988973 +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865 +13,545.9905515906022,0.4636581173279407,19.341167179965527,95.24862467393984,0.1113747919989691 +14,541.7711140282568,0.4600749482224672,19.19169784013721,94.5125393634154,0.1105140830004529 +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213731,0.1131512499996461 +16,548.961128120956,0.4661807469181963,19.44639687144476,95.76684486690948,0.1119807499999296 +17,550.204670187255,0.467236769539098,19.490448100773804,95.98378208531756,0.1122344159994099 +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602 +19,536.4276274869267,0.4555372306694755,19.00241019364098,93.58036252895798,0.1094240829988848 +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.1141973749981843 +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.1122670840013597 +22,543.2377147988591,0.4613203934965441,19.24365070014155,94.7683894068615,0.1108132500012288 +23,545.5227906275,0.463260892198532,19.32459721742448,95.16702328306988,0.1112793749998672 +24,546.4460568464966,0.4640449348447745,19.357302996382025,95.32808804382654,0.1114677089972246 +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472688,0.1121792079975421 +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.1124135829995793 +27,544.6440567149677,0.4625146666268074,19.293468950718253,95.01372722990702,0.1111001249992114 +28,547.1235913519002,0.4646203007962273,19.38130397607119,95.44628464928212,0.1116059170017251 +29,561.8191989819761,0.4770998899519389,19.901881123709455,98.00994882155548,0.1146036249992903 +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.1125474159998702 +1,531.6083156995155,0.4598403719365596,20.10159340179818,95.84387180792008,0.1101422920000914 +2,539.1055697078513,0.4663254850732108,20.38508549034322,97.19555467454497,0.1116956250007206 +3,559.2132189145998,0.4837185705779671,21.145411799551137,100.82077063903628,0.1158616669999901 +4,539.8532858167908,0.4669722583524913,20.41335872226605,97.33036070518357,0.1118505420017754 +5,543.1984920844951,0.4698658566069157,20.53985030310232,97.93346925564144,0.1125436250003986 +6,539.2855617453997,0.4664811779076673,20.391891491392315,97.22800550961236,0.1117329169974254 +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.1105710419979004 +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358164,0.1126799999983632 +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.1101741250022314 +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.4618670014884,0.1120016669992765 +11,540.2482576395201,0.4673139083690628,20.428293708704743,97.4015703300661,0.1119323749990144 +12,536.8670548817402,0.4643891732063245,20.300441000162188,96.79197195828964,0.1112318339983176 +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.1116492920009477 +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.1090459580009337 +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541893,0.1114379159989766 +16,548.9821147845478,0.4748686813088457,20.75854521150097,98.97620086137228,0.1137419160004356 +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697708,0.1134956250025425 +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.1120829160026914 +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.1114866669995535 +20,532.0847357354425,0.4602524745317389,20.119608172387444,95.9297657631153,0.1102410000021336 +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.1081512079981621 +22,554.8095819519035,0.479909431407269,20.978898001517763,100.02683720331508,0.114949291000812 +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018736,0.1116149580011551 +24,545.6371112170256,0.4719752583897657,20.632061295324043,98.37312885580974,0.1130488749986398 +25,531.4940855078803,0.4597415629972396,20.097274039593614,95.82327720185324,0.1101186249979946 +26,539.73040643437,0.4668659678765017,20.408712310029937,97.30820673311658,0.1118250830004399 +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.1107058749985299 +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.1125420829994254 +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.1122179589983716 +0,411.9106270133148,0.0669283657508026,0.0,79.67821942633053,0.1092553339985897 +1,409.7639893685133,0.0665795741926254,0.0,79.2629830763206,0.1086859589995583 +2,408.6489630946226,0.0663984016726984,0.0,79.0472971913475,0.1083902089994808 +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.1070329169997421 +4,406.4680772704537,0.0660440453766274,0.0,78.62543602087497,0.1078117500001099 +5,409.1637451782701,0.066482044874201,0.0,79.1468744227363,0.1085267499984183 +6,411.117003532524,0.0667994156361238,0.0,79.52470431480539,0.1090448329996434 +7,408.04856056941446,0.0663008466275756,0.0,78.93115791012883,0.1082309580015135 +8,406.718009040155,0.0660846549744341,0.0,78.67378174706386,0.1078780419993563 +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.1085171250015264 +10,434.73755799887095,0.0706373479565961,0.0,84.0937627423277,0.11530995800058 +11,412.8927512188439,0.0670879439790143,0.0,79.8681973070166,0.1095158330026606 +12,411.1630334709524,0.0668068947064672,0.0,79.5336081480492,0.1090570419983123 +13,405.92375972203575,0.0659556031719937,0.0,78.5201455762586,0.107667375003075 +14,411.4063674703926,0.0668464322805089,0.0,79.58067762994595,0.1091215840024233 +15,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.1056415409984765 +16,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794 +17,416.45131938035576,0.067666149870884,0.0,80.55655142128744,0.1104597089979506 +18,390.2780465829524,0.06341344489121,0.0,75.4937061429856,0.1035174999997252 +19,411.7770990939091,0.0669066697690972,0.0,79.6523903601103,0.1092199170016101 +20,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.1082832499996584 +21,407.79329023407206,0.0662593696050161,0.0,78.88177951477175,0.1081632499990519 +22,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.1083763749993522 +23,407.6768863974922,0.0662404559911434,0.0,78.85926285745624,0.108132375000423 +24,408.8302439287478,0.0664278566786494,0.0,79.08236337593212,0.1084382919980271 +25,400.83356580406127,0.0651285345363654,0.0,77.53552036554309,0.1063172499998472 +26,407.19320440622545,0.0661618660177472,0.0,78.7657014941281,0.1080040830020152 +27,408.4123814834321,0.0663599612451754,0.0,79.00153386238134,0.1083274580014403 +28,404.7000282651971,0.0657567679365012,0.0,78.28343222840476,0.107342791998235 +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.1093273749975196 +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297068,0.1149548330031393 +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279236,0.1123761250019015 +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.1126610829996934 +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958 +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126876,0.1119830829993588 +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.1098542079998878 +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.6683569356906,0.1112435000031837 +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419237,0.1138349580032809 +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.1120877499997732 +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875492,0.1131611669989069 +11,513.552572917201,0.5900642354468032,20.980061704775224,94.9019978676942,0.1103523749989108 +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.551863476102,0.111108041000989 +13,520.6179409055757,0.598182237731416,21.268701786005906,96.20764323513608,0.1118705839980975 +14,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.1148837079999793 +15,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496596,0.1101848340003925 +16,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.1123124999976425 +17,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739272,0.1124144159985007 +18,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.1129014580001239 +19,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.1130966669988993 +20,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.1092158749997906 +21,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128129,0.1146049589988251 +22,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.1106439169998338 +23,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798 +24,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312756,0.1119207500014454 +25,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.104731792001985 +26,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.1137661669999943 +27,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617624,0.1135343749992898 +28,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.111408125001617 +0,372.783325595462,0.9128559578339812,0.0,76.71370993797419,0.1098833750002086 +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.1083453339997504 +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.1077917500006151 +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.1125241670015384 +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.106433916997048 +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.1089840000022377 +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.1079727910000656 +7,368.7968106124073,0.9030939494408668,0.0,75.89333967708617,0.1087082910016761 +8,370.3373070063856,0.9068662515120998,0.0,76.21035276596128,0.1091623749998689 +9,368.9456615170731,0.9034584492074164,0.0,75.9239711574677,0.1087521669978741 +10,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.1080825829994864 +11,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496 +12,368.16721356507986,0.9015522189603804,0.0,75.76377721559642,0.1085227080002368 +13,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.1060791250019974 +14,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.1052611670020269 +15,368.1332915981502,0.9014691522900468,0.0,75.75679653874505,0.1085127090009336 +16,369.6513056658199,0.9051864005965116,0.0,76.0691830723513,0.1089601660023618 +17,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.1087312500021653 +18,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.1087735000000975 +19,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.1081318750002537 +20,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.1091148750019783 +21,370.9635115163816,0.9083996744914116,0.0,76.33921708966713,0.1093469580009696 +22,367.1765929975245,0.8991264294334446,0.0,75.55992105127724,0.1082307079996098 +23,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.1100110000006679 +24,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.1075496660014323 +25,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.1073167909999028 +26,371.7753182833393,0.9103875923861928,0.0,76.50627581941745,0.109586250000575 +27,369.53200373193727,0.904894259093262,0.0,76.04463236602264,0.108925000000454 +28,367.425238752588,0.8997353025866021,0.0,75.611088947,0.1083039999975881 +0,356.466325968142,0.0,0.0,73.92875082637863,0.1092395420018874 +1,351.7245436332654,0.0,0.0,72.94533663218813,0.1077864170001703 +2,353.4256006327688,0.0,0.0,73.29812456725101,0.1083077080002112 +3,353.35122991135097,0.0,0.0,73.28270057308399,0.1082849170015833 +4,354.96295784666904,0.0,0.0,73.61696225293952,0.1087788330005423 +5,350.3303576515806,0.0,0.0,72.6561917101098,0.107359166999231 +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967 +7,355.0087791611787,0.0,0.0,73.62646528954114,0.1087928749984712 +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658 +9,356.2385833502526,0.0,0.0,73.88151851851684,0.1091697499978181 +10,353.36836150001716,0.0,0.0,73.28625355090404,0.1082901669979037 +11,344.9872006619987,0.0,0.0,71.54805640269699,0.105721749998338 +12,335.41512274852306,0.0,0.0,69.56287095485956,0.1027883750030014 +13,354.6641076704996,0.0,0.0,73.55498270929414,0.1086872499981836 +14,355.37234762367643,0.0,0.0,73.70186697636058,0.1089042909989075 +15,352.9861603805139,0.0,0.0,73.20698757465065,0.1081730409969168 +16,354.41080472393486,0.0,0.0,73.50244935885966,0.1086096250000991 +17,354.4234494781258,0.0,0.0,73.50507179698002,0.1086135000005015 +18,350.7823055918313,0.0,0.0,72.74992271421108,0.1074976669988245 +19,338.18622604515986,0.0,0.0,70.13757939211467,0.1036375830008182 +20,349.4839750006073,0.0,0.0,72.48065756410699,0.1070997919996443 +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016 +22,350.7968527716273,0.0,0.0,72.7529397027792,0.1075021249998826 +23,354.93835033342356,0.0,0.0,73.611858817965,0.1087712919979821 +24,351.8900120547612,0.0,0.0,72.97965368491161,0.1078371250005147 +25,353.8877459607927,0.0,0.0,73.39397044191605,0.1084493330017721 +26,338.342449918055,0.0,0.0,70.16997918679662,0.1036854579979262 +27,357.2478532784631,0.0,0.0,74.09083440504997,0.1094790420029312 +28,354.8509236948433,0.0,0.0,73.59372711320542,0.1087444999975559 +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413 +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539 +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583 +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.1141362080015824 +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.1098308750006253 +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.1079319579985167 +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.1088161250008852 +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.1078220839990535 +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.1108167080019484 +8,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.1067202500016719 +9,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.1076291249992209 +10,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.1080912920006085 +11,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.108578249997663 +12,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.1104635410010814 +13,365.2556929987476,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758 +14,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786 +15,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.1080684169974119 +16,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803 +17,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.1084587080003984 +18,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.1087163339980179 +19,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.1086105000031238 +20,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.1072365830004855 +21,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.1085144579992629 +22,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.1087537499988684 +23,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.1100431670020043 +24,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223 +25,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241 +26,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.1068625410007371 +27,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.1084712920019228 +0,355.31751000520677,0.0,0.0,73.78324951983832,0.1092719590014894 +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213 +2,351.03910799377473,0.0,0.0,72.89482045494073,0.1079562080012692 +3,352.04523324830114,0.0,0.0,73.10374680563434,0.1082656250000582 +4,347.36078088160747,0.0,0.0,72.13099959193667,0.1068250000025727 +5,353.3662284867774,0.0,0.0,73.37805729850474,0.1086718749975261 +6,350.7655636148851,0.0,0.0,72.83801775708868,0.1078720840014284 +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843 +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115 +9,354.39078102596784,0.0,0.0,73.59081015620703,0.1089869589995942 +10,354.1366069121032,0.0,0.0,73.53802977939847,0.1089087920008751 +11,336.51778199022067,0.0,0.0,69.87940300516897,0.1034904169973742 +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387 +13,354.1658720356466,0.0,0.0,73.54410681149463,0.1089177920002839 +14,348.69315700606205,0.0,0.0,72.40767337602198,0.1072347500012256 +15,355.05290449197474,0.0,0.0,73.72830301690117,0.1091905840003164 +16,353.3356074134523,0.0,0.0,73.3716986974505,0.1086624579984345 +17,330.53766821951785,0.0,0.0,68.63760598116552,0.1016513329996087 +18,346.2550728954724,0.0,0.0,71.90139444741146,0.1064849579997826 +19,349.15137082892227,0.0,0.0,72.50282349914717,0.1073756660007347 +20,341.4818789010037,0.0,0.0,70.91021964295189,0.1050170419985079 +21,354.0638505605011,0.0,0.0,73.52292160180167,0.1088864170014858 +22,352.4121301159214,0.0,0.0,73.1799345598806,0.1083784579968778 +23,354.6372291574377,0.0,0.0,73.64198619866458,0.1090627500016125 +24,333.33858460150753,0.0,0.0,69.21922863267379,0.1025127079992671 +25,353.2686780710232,0.0,0.0,73.3578005240321,0.108641874998284 +26,355.6745152674338,0.0,0.0,73.85738323855767,0.1093817500004661 +27,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042 +28,351.7074649321256,0.0,0.0,73.03360772368504,0.108161750002182 +0,357.96048293355267,0.0,0.0,74.32044363142623,0.1103388750016165 +1,336.02149904696915,0.0,0.0,69.76542962007161,0.1035763330000918 +2,351.0183178122401,0.0,0.0,72.87909796290356,0.1081989999984216 +3,347.93106372332824,0.0,0.0,72.23811633384071,0.1072473750027711 +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292 +5,350.19713174353114,0.0,0.0,72.70860173262069,0.1079458749991317 +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659 +7,355.219004525288,0.0,0.0,73.75125261391933,0.1094938329988508 +8,332.0804839475747,0.0,0.0,68.94718848869086,0.1023615420017449 +9,347.71262254057837,0.0,0.0,72.19276315553373,0.107180041999527 +10,347.69072425564144,0.0,0.0,72.18821659151654,0.1071732920026988 +11,349.79985125658436,0.0,0.0,72.6261175941649,0.107823416001338 +12,352.3465418754639,0.0,0.0,73.1548663963679,0.1086084159978781 +13,350.4592364960211,0.0,0.0,72.76302042521861,0.108026666999649 +14,352.43184142678575,0.0,0.0,73.17257645319833,0.1086347090022172 +15,333.343418635852,0.0,0.0,69.20940141661261,0.1027508329971169 +16,352.97632387457793,0.0,0.0,73.28562294575474,0.1088025419994664 +17,350.7025476533563,0.0,0.0,72.81353715546054,0.1081016660027671 +18,350.1848297681744,0.0,0.0,72.70604757284707,0.1079420829992159 +19,350.68254396824653,0.0,0.0,72.80938395190176,0.1080955000034009 +20,353.57487727944215,0.0,0.0,73.40989575436771,0.1089870420000806 +21,350.58089369750513,0.0,0.0,72.78827912727185,0.1080641670014301 +22,354.39984608014447,0.0,0.0,73.58117736273917,0.109241333000682 +23,350.82717976651696,0.0,0.0,72.83941351439523,0.1081400830007623 +24,349.56127013115605,0.0,0.0,72.57658292224077,0.1077498749982623 +25,357.78056653953445,0.0,0.0,74.28308904381807,0.110283417001483 +26,363.9649435656808,0.0,0.0,75.56710129120493,0.1121897089979029 +27,352.905762706687,0.0,0.0,73.27097290042619,0.1087807920011982 +0,369.6457899010592,0.9711657824905524,0.0,82.75002236324673,0.1110664580010052 +1,359.12051672685783,0.9435128632975972,0.0,80.3938029382194,0.1079039579999516 +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.105773584000417 +3,374.8716803818042,0.9848956994992136,0.0,83.9199059814675,0.1126366669996059 +4,376.96633455222275,0.9903989583270936,0.0,84.38882158711202,0.1132660420007596 +5,368.643464389488,0.9685323851508564,0.0,82.52563874854367,0.1107652919999964 +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.1074476249996223 +7,361.0118775242784,0.9484820119771764,0.0,80.81720867571043,0.108472249998158 +8,364.70279545437313,0.9581791147107104,0.0,81.64346870517811,0.1095812499988824 +9,363.31662114091176,0.9545372361919228,0.0,81.33315553897383,0.1091647499997634 +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.1110747499988065 +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.1074340419982036 +12,372.4174462680742,0.9784477207622896,0.0,83.37049372426266,0.1118992499978048 +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.1098165830007928 +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.1094639580005605 +15,364.7247080018868,0.9582366852740276,0.0,81.64837411421111,0.1095878340020135 +16,363.90181967276175,0.9560747210101548,0.0,81.46415984883079,0.1093405829997209 +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.1090366669996001 +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.1087789999983215 +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.1085855829987849 +20,360.06169081323577,0.94598559825909,0.0,80.60449701028317,0.1081867499997315 +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.1089155000008759 +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.1085442080002394 +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745 +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.1076402500002586 +25,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.1124117920007847 +26,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958 +27,385.6766545760032,1.0132834737003162,0.0,86.33874012115454,0.1158832080000138 +28,374.6998646691671,0.9844442902161484,0.0,83.88144279738285,0.1125850420030474 +0,537.586585590763,1.4050178341513406,20.03823053944412,97.1469473898927,0.112041666998266 +1,551.1176123306176,1.440382060851645,20.542591772622274,99.59213106459949,0.1148617500002728 +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217444,0.1084056660001806 +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.1091209999976854 +4,539.1167749298061,1.4090170844462884,20.09526746626968,97.4234669817148,0.1123605829998268 +5,550.2607540984404,1.4381426056088673,20.510652875231223,99.43728873067025,0.1146831670012034 +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.1111136250001436 +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.1117185420007444 +8,537.9854272547229,1.406060233024167,20.053097132892287,97.2190218262424,0.1121247919982124 +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031 +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.1059001670000725 +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823145,0.1097277499975462 +12,533.816683809472,1.395164948350829,19.897709620527294,96.46569071454304,0.1112559590001183 +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914947,0.1127309580006112 +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.1122200829995563 +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.1117655419984657 +16,541.3640875617663,1.41489058354662,20.17903475105775,97.82957749093774,0.1128289589978521 +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913888,0.1121329170018725 +18,543.8858800536349,1.421481453780502,20.27303311463145,98.28528908996614,0.113354541001172 +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446 +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748584,0.11043866700129 +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454 +22,549.6611889257908,1.436575602668526,20.488304428534455,99.3289416702238,0.1145582080025633 +23,535.2031318006688,1.3987885211965203,19.949388671350377,96.71623489415944,0.1115449169992643 +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321024,0.1154080420019454 +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.1097549170008278 +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.1108595000005152 +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.1113768329996673 +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221069,0.1109710000018822 +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.1128227090011932 +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.1093853339989436 +1,362.3638254849227,0.4978892903062966,0.0,76.17706141686338,0.1088726670022879 +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.1107375419996969 +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139 +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.1103431670017016 +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.1093056250028894 +6,360.5148000962549,0.4953487223086766,0.0,75.78835451322753,0.1083171249993029 +7,358.84675249219504,0.4930568184833677,0.0,75.43769322795526,0.1078159579992643 +8,361.4683657469591,0.4966589251813122,0.0,75.98881555274077,0.1086036249980679 +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.1112682079983642 +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.1089509580015146 +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.1114148329979798 +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.1090389169985428 +13,360.0388493468535,0.4946947641479163,0.0,75.6882989146312,0.108174124998186 +14,357.3634303624893,0.4910187281704991,0.0,75.12586541008638,0.1073702920002688 +15,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.1093028750001394 +16,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.1070279170016874 +17,346.93966636378417,0.4766964363338611,0.0,72.93455475908077,0.1042384590000438 +18,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.109053791999031 +19,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.108166958001675 +20,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.1082546659999934 +21,359.93511539136995,0.4945522332939955,0.0,75.66649169398131,0.1081429580008261 +22,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.1078082080020976 +23,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.1084412910022365 +24,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169 +25,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.1088503329992818 +26,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.1085732499996083 +27,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.1122939589986344 +28,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.110120666999137 +0,363.8555760220334,0.0,0.0,75.37472069721154,0.1118581669979903 +1,356.073044172833,0.0,0.0,73.76252563107049,0.1094656249988474 +2,354.0995230742944,0.0,0.0,73.353699680899,0.1088589159990078 +3,352.099036026975,0.0,0.0,72.93928758338875,0.1082439170022553 +4,352.917119453682,0.0,0.0,73.10875814769673,0.1084954159996414 +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692 +6,352.16463583615,0.0,0.0,72.9528769513144,0.1082640839995292 +7,337.48447844835925,0.0,0.0,69.91180011804681,0.1037510419992031 +8,355.01452131885316,0.0,0.0,73.54324669258992,0.1091402089987241 +9,352.03099657689336,0.0,0.0,72.92519283018375,0.1082229999992705 +10,352.0968663843558,0.0,0.0,72.938838129767,0.1082432500006689 +11,352.44085313693654,0.0,0.0,73.01009691239383,0.1083490000019082 +12,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927 +13,333.25363011232423,0.0,0.0,69.0353561862886,0.1024503750013536 +14,352.36373178750216,0.0,0.0,72.99412079286597,0.1083252909993461 +15,352.425535562288,0.0,0.0,73.00692379100454,0.1083442910021403 +16,351.4065898823191,0.0,0.0,72.7958434858105,0.1080310420002206 +17,352.9674049543168,0.0,0.0,73.1191750708257,0.1085108750012295 +18,352.3824388133895,0.0,0.0,72.99799605806528,0.1083310419999179 +19,359.6312333359141,0.0,0.0,74.49962444727453,0.1105594999971799 +20,334.32625072049933,0.0,0.0,69.25755555351878,0.1027801249983895 +21,349.209436738063,0.0,0.0,72.34069090470156,0.1073555830007535 +22,356.1634468203862,0.0,0.0,73.7812530458984,0.1094934169996122 +23,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359 +24,354.11606046939625,0.0,0.0,73.35712549492798,0.1088640000016312 +25,351.1624910291874,0.0,0.0,72.7452770410731,0.1079559999998309 +26,354.5463838131862,0.0,0.0,73.44626938603518,0.1089962919977551 +27,397.0313202491415,0.0,0.0,82.24726194662468,0.1220572079982957 +28,355.7000551949418,0.0,0.0,73.68525887501565,0.1093509589991299 +0,371.4568880575053,0.0,0.0,76.70321474475051,0.1102369580003141 +1,369.29752302591254,0.0,0.0,76.25732116986836,0.1095961249993706 +2,361.783124260732,0.0,0.0,74.7056510819143,0.1073660830006701 +3,357.0969638630331,0.0,0.0,73.73799217217456,0.1059753749977971 +4,366.1550707681201,0.0,0.0,75.60842705024373,0.1086635420033417 +5,364.0291189051167,0.0,0.0,75.16943305786498,0.1080326250012149 +6,349.3712628459299,0.0,0.0,72.14268966676815,0.1036826250019657 +7,361.1163602890243,0.0,0.0,74.5679690473358,0.1071682080000755 +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093 +9,365.2454143175718,0.0,0.0,75.42058944024481,0.1083935839997138 +10,378.791854453436,0.0,0.0,78.21783332015166,0.1124137500009965 +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268 +12,369.4220575227252,0.0,0.0,76.28303666084257,0.1096330830005172 +13,345.8947934099548,0.0,0.0,71.42482336714019,0.1026509160001296 +14,353.18188420676984,0.0,0.0,72.92955597063431,0.1048134999982721 +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518 +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049 +17,364.24294838058665,0.0,0.0,75.21358732906856,0.1080960830004187 +18,368.872529440838,0.0,0.0,76.16956300662206,0.109469999999419 +19,371.3581850954161,0.0,0.0,76.68283328262,0.1102076660026796 +20,357.45863551761073,0.0,0.0,73.81267480555692,0.1060827080000308 +21,361.21646839471185,0.0,0.0,74.58864066166066,0.1071979170010308 +22,365.8029418804323,0.0,0.0,75.53571493059131,0.1085590410002623 +23,363.99401755379665,0.0,0.0,75.1621848775924,0.1080222080017847 +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562 +25,362.63591832244185,0.0,0.0,74.88174701162083,0.1076191659994947 +26,366.9264345364295,0.0,0.0,75.76770820148677,0.1088924590003443 +27,371.6140000532096,0.0,0.0,76.73565725835823,0.1102835839992621 +28,365.9034711798288,0.0,0.0,75.55647351843196,0.1085888749985315 +29,368.29253324875754,0.0,0.0,76.04979790358432,0.1092978750020847 +0,351.7954310298514,0.0,0.0,73.25457676290097,0.1086488340006326 +1,355.551001689785,0.0,0.0,74.0366015276662,0.1098087079990364 +2,353.76569761686557,0.0,0.0,73.6648465737376,0.1092573329988226 +3,351.52425260491015,0.0,0.0,73.19810911439244,0.1085650829991209 +4,352.8167204788052,0.0,0.0,73.46724048657845,0.1089642500010086 +5,351.8967485585963,0.0,0.0,73.27567417358975,0.108680125002138 +6,333.8565823831006,0.0,0.0,69.51915938870556,0.1031085829999938 +7,354.3529740261682,0.0,0.0,73.78713549795803,0.1094387080011074 +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363 +9,354.08719643537285,0.0,0.0,73.73179246843152,0.1093566249983268 +10,352.01722479777135,0.0,0.0,73.30076101421447,0.1087173329979123 +11,352.19504125685603,0.0,0.0,73.33778784373752,0.1087722500014933 +12,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644 +13,353.63739856928817,0.0,0.0,73.63813078495703,0.1092177089994947 +14,349.80761818700586,0.0,0.0,72.84065328453109,0.1080349160001787 +15,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222 +16,343.3340886156128,0.0,0.0,71.49266628104358,0.106035624998185 +17,352.7287560959643,0.0,0.0,73.44892360959012,0.1089370829977269 +18,352.0274792749238,0.0,0.0,73.30289631023446,0.108720500000345 +19,330.632971611579,0.0,0.0,68.84790495534112,0.102112999997189 +20,344.06923077621286,0.0,0.0,71.64574538067167,0.1062626669991004 +21,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678 +22,353.40008547212716,0.0,0.0,73.58871493426808,0.1091444169978785 +23,352.96917436413725,0.0,0.0,73.49898605192921,0.1090113340032985 +24,351.45126682709304,0.0,0.0,73.18291124144665,0.1085425420023966 +25,352.4323511146662,0.0,0.0,73.38720301989446,0.1088455410026654 +26,336.2224182777831,0.0,0.0,70.01179883728538,0.1038392499976907 +27,350.4310523596511,0.0,0.0,72.97047136182381,0.1082274580003286 +28,349.8513332379995,0.0,0.0,72.84975609621154,0.1080484169979172 +0,355.0041249267728,0.0,0.0,73.82307578403244,0.1089681670018762 +1,353.4402104749345,0.0,0.0,73.49785991471933,0.1084881249989848 +2,350.8823752799278,0.0,0.0,72.96595831644073,0.1077030000014929 +3,350.97739756413245,0.0,0.0,72.98571819187727,0.1077321669981756 +4,352.6420323212576,0.0,0.0,73.33187883959745,0.1082431249997171 +5,354.0361270375474,0.0,0.0,73.62178071020813,0.1086710410017985 +6,334.5734779261205,0.0,0.0,69.57452458154408,0.102696999998443 +7,353.746994323176,0.0,0.0,73.56165558831248,0.1085822919994825 +8,351.5615043409446,0.0,0.0,73.10718314347316,0.1079114579988527 +9,344.2555939822133,0.0,0.0,71.58791974281488,0.1056689159995585 +10,353.00555848573197,0.0,0.0,73.40747407273736,0.1083547089983767 +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889 +12,354.5682479676913,0.0,0.0,73.73243520967453,0.1088343749979685 +13,340.24380070376134,0.0,0.0,70.75366769212076,0.1044374999983119 +14,357.4707397539094,0.0,0.0,74.33600811503362,0.1097252919971651 +15,353.83101804782274,0.0,0.0,73.57912831428018,0.108608082999126 +16,353.14374430898687,0.0,0.0,73.43620980222931,0.1083971250009199 +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538 +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631 +19,356.9293892674415,0.0,0.0,74.22343433016144,0.1095591249977587 +20,337.23407287000106,0.0,0.0,70.12779506033984,0.1035136669997882 +21,353.29401357030446,0.0,0.0,73.46745828157741,0.1084432500028924 +22,353.32387845566024,0.0,0.0,73.47366868179559,0.1084524170000804 +23,354.1508333805749,0.0,0.0,73.64563388390287,0.1087062500009778 +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099 +25,352.473707948533,0.0,0.0,73.29687580145946,0.1081914579990552 +26,360.93358193698526,0.0,0.0,75.0561058349181,0.1107882079995761 +27,338.47464045384555,0.0,0.0,70.38577097759506,0.1038944579995586 +28,355.80325111504544,0.0,0.0,73.98925400286308,0.1092134579994308 +29,354.60680161162924,0.0,0.0,73.7404524364568,0.108846209001058 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/mac_report.md b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/mac_report.md new file mode 100644 index 000000000..f567e5107 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/mac_report.md @@ -0,0 +1,43 @@ +## Energy Report β€” `mac` (raw) + +> 900 samples (with smell) vs 900 samples (without smell) β€” α = 0.05 + +### Instance Info + +* **hostname**: `M-NGY9VPYVMH` +* **model**: `MacBookPro18,1` +* **os**: `Darwin 25.5.0` +* **machine**: `arm64` +* **chip**: `Apple M1 Pro` + +### Global Consumption + +| | With smell | Without smell | +|---|---:|---:| +| **Execution Time** | 611.35 ms | 106.11 ms | +| **Average Power** | 6.242 W | 4.652 W | +| **Total Energy** | 3434.22 J | 444.25 J | + +> The total energy is the sum of measurements across all iterations, converted to joules (J). If you ran the `./run_experiment.sh` script, this reflects the cumulative energy of all 30 iterations of the process. + +### Statistical Analysis + +| Metric | Ξ” mean | p-value | Cohen’s d | Effect | Sig. | +|---|---|---|---|---|---| +| `cpu_mj` | +87.22% | 0.00e+00 | +8.263 | large | βœ… | +| `gpu_mj` | +84.75% | 3.81e-273 | +2.269 | large | βœ… | +| `ane_mj` | +81.59% | 2.97e-43 | +0.684 | medium | βœ… | +| `dram_mj` | +86.52% | 0.00e+00 | +19.310 | large | βœ… | +| `time_s` | +82.21% | 0.00e+00 | +92.123 | large | βœ… | + +### Verdict + +Removing the code smell leads to measurable energy differences: + +- **`cpu_mj`**: 87.2% lower energy (Cohen’s d = +8.263, large) +- **`gpu_mj`**: 84.7% lower energy (Cohen’s d = +2.269, large) +- **`ane_mj`**: 81.6% lower energy (Cohen’s d = +0.684, medium) +- **`dram_mj`**: 86.5% lower energy (Cohen’s d = +19.310, large) +- **`time_s`**: 82.2% lower time (Cohen’s d = +92.123, large) + +> Ξ” mean = (mean\_with βˆ’ mean\_without) / mean\_with Γ— 100. Positive β†’ the smell consumes more energy. diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/with_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/with_smell.csv new file mode 100644 index 000000000..164636486 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/with_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,3901.919386580033,5.181302556234977,102.39715244148996,658.0918515976913,0.6241167499974836 +1,3905.882313647163,5.186564870011554,102.5011506041386,658.7602329128778,0.6247506250001607 +2,3910.238854451517,5.192349857800788,102.61547827948608,659.4950005286206,0.6254474589986785 +3,3911.202429509975,5.193629375243073,102.64076515304096,659.6575156478605,0.6256015840008331 +4,3896.403904938974,5.173978627600272,102.25241095443356,657.1616187645627,0.623234542003047 +5,3930.108712793952,5.218734756519037,103.1369182971038,662.8462209337706,0.6286256669991417 +6,3938.210920675928,5.229493561673857,103.34954263231091,664.2127271218321,0.6299216250008612 +7,3946.2917657672665,5.240223999486666,103.56160634882944,665.5756302937743,0.6312141659982444 +8,3924.167576357053,5.210845607011408,102.98100645138572,661.8441978033593,0.6276753750025819 +9,3920.3935068770415,5.205834074504754,102.88196443396254,661.2076689245974,0.6270717080005852 +10,3942.866246351669,5.235675301590572,103.47171124874188,664.9978873443307,0.6306662500028324 +11,3920.5909670871097,5.206096279073792,102.88714633579808,661.2409722664623,0.6271032920012658 +12,3924.50908671874,5.211299093702107,102.98996862745894,661.9017964270098,0.627730000000156 +13,3898.450879045677,5.176696775035118,102.30612921431582,657.5068583368322,0.6235619580002094 +14,3907.100128724479,5.1881819891131995,102.53310943869228,658.965627771083,0.624945416002447 +15,3919.679751755219,5.20488628935831,102.86323352622864,661.0872880599075,0.6269575420010369 +16,3939.657718042438,5.231414743059418,103.38751059520632,664.4567417883288,0.6301530419987103 +17,3906.386898745852,5.187234901296842,102.51439231216771,658.8453354762539,0.6248313340001914 +18,3907.238977299649,5.188366364136408,102.536753209183,658.9890457628128,0.6249676250008633 +19,3910.2154035747167,5.192318717719235,102.6148628636436,659.4910453390316,0.6254437080024218 +20,3923.541347906347,5.210014047270941,102.96457248548916,661.7385790552976,0.6275752090004971 +21,3888.1029364414458,5.162955891086701,102.03457059115576,655.7615899102044,0.6219067919992085 +22,3882.0187876299537,5.154876837506578,101.87490570533834,654.7354465279188,0.6209336249994521 +23,3944.379726555403,5.237685030155285,103.5114291536458,665.2531486378001,0.630908333001571 +24,3918.5786347590138,5.203424131957832,102.83433717196152,660.901575324439,0.6267814169987105 +25,3947.333495911774,5.241607297942091,103.58894422791964,665.7513269322089,0.6313807920014369 +26,3899.151355134042,5.177626927144285,102.32451164349892,657.6249995797234,0.623674000002211 +27,3907.9347644226505,5.189290289836002,102.55501258695124,659.1063961718625,0.625078916997154 +28,3905.69892649689,5.1863213528559315,102.49633801830024,658.7293031120989,0.6247212920025049 +29,3901.7445957980262,5.181070454072966,102.3925654481215,658.0623716474471,0.6240887919993838 +0,3910.189399402901,5.064969011966773,108.26371263078975,658.2793607329183,0.6260335840015614 +1,3891.337220217528,5.040549298845833,107.74174126282968,655.1056013072331,0.6230152909993194 +2,3907.058080336083,5.060912933751627,108.17701395894105,657.752203988575,0.6255322500001057 +3,3951.59134928142,5.118598023697437,109.41003275653271,665.2493681456768,0.632662166000955 +4,3959.049304403198,5.128258505000521,109.61652554438614,666.5049129360874,0.6338562080018164 +5,3922.660266933899,5.081122847790299,108.60900087151764,660.3788280137984,0.6280302089980978 +6,3930.0888097662346,5.090745230597534,108.81467930402228,661.6294212529888,0.6292195419991913 +7,3910.557387204,5.065445676040802,108.27390132537217,658.341311382803,0.6260925000024145 +8,3942.416276003112,5.106713315032366,109.15599710881682,663.7047469635816,0.6311932079988765 +9,3854.415707263761,4.992723912429943,106.71947362819004,648.8898742766679,0.6171040410008573 +10,3893.9011924677193,5.043870478120868,107.81273146983357,655.5372453636695,0.6234257909964072 +11,3887.387947176371,5.035433703786343,107.63239541843308,654.4407422256527,0.6223830000017188 +12,3915.7355555972154,5.072153090892469,108.41727231782652,659.2130546748731,0.6269215409993194 +13,3942.922980650436,5.107369662609113,109.1700265382698,663.7900505581778,0.6312743330017838 +14,3923.878487924429,5.082700840807135,108.64273047225252,660.5839151983221,0.6282252499986498 +15,3926.7310803987207,5.086395877290089,108.72171187707566,661.0641483938534,0.6286819589986408 +16,3917.854764563652,5.0748981568339095,108.47594810232482,659.5698229490388,0.6272608330000367 +17,3901.1813996762817,5.053300717975157,108.01430284671898,656.7628663394686,0.6245913749989995 +18,3923.9810280863703,5.08283366371919,108.64556956199768,660.6011778077144,0.6282416670001112 +19,3900.7288226624537,5.052714483315803,108.0017720808753,656.6866751177874,0.6245189159999427 +20,3869.410472914197,5.012147018475076,107.13464251990476,651.4142391445732,0.6195047500004875 +21,3881.1130856960726,5.027305714140381,107.45865963975064,653.3843709397581,0.6213783750026778 +22,3908.850674849167,5.063234927581689,108.22664657705862,658.0539868051071,0.625819250002678 +23,3928.4846375733423,5.088667305050476,108.77026364545392,661.3593592846852,0.6289627090009162 +24,3922.13378131762,5.080440877415128,108.59442375474836,660.2901942982622,0.6279459170000337 +25,3911.223882566581,5.066309004645449,108.29235497429649,658.4535157024397,0.626199207999889 +26,3896.116177201257,5.046739604879551,107.87405905430042,655.9101374631285,0.6237804169977608 +27,3902.437102748667,5.05492726249774,108.0490702358892,656.9742636226504,0.6247924169983889 +28,3908.277350661847,5.06249228599941,108.21077261323738,657.9574678284101,0.625727459002519 +29,3903.2857744554663,5.056026568811887,108.07256790835407,657.1171372820976,0.6249282919998222 +0,4008.8459894622865,4.300651943604515,105.80275758133294,675.9079308554064,0.6295927500032121 +1,3980.12865087621,4.269844255224866,105.04484031018048,671.0660693934268,0.6250826669966045 +2,3971.13262941209,4.260193408747831,104.8074144073978,669.5493031545323,0.6236698339998838 +3,3995.6130159399727,4.286455735157495,105.45350867196056,673.676797063776,0.6275144999999611 +4,4000.144719578061,4.291317303825938,105.5731108574053,674.4408609458312,0.628226207998523 +5,3979.889078847878,4.269587244625809,105.03851744786463,671.0256765635735,0.6250450420011475 +6,3990.206595708371,4.280655778826397,105.31082068378376,672.765252364458,0.6266654169994581 +7,4021.568777932776,4.314300830368314,106.13854152210796,678.0530453478076,0.6315908750002563 +8,3981.690246818359,4.271519520535976,105.08605445443584,671.3293608954862,0.6253279169977759 +9,3997.3794308539345,4.288350728318347,105.50012846464432,673.9746218873453,0.6277919169988309 +10,3970.0889102620354,4.259073716745929,104.77986823463227,669.3733278107645,0.6235059169994202 +11,3968.9393336960334,4.25784046191252,104.74952823876971,669.1795044710481,0.6233253749996948 +12,3979.600159699821,4.269277294904891,105.0308922004336,670.9769636062633,0.6249996669976099 +13,3978.0168065179687,4.267578688633449,104.98910383208384,670.7100037440555,0.6247510000030161 +14,4107.520756463168,4.406509297467087,108.40701388846765,692.5449026339484,0.645089707999432 +15,3993.976074990097,4.284699640436931,105.41030599793667,673.4008020833573,0.6272574169997824 +16,3993.046700945944,4.283702616779792,105.3857776581216,673.2441057949927,0.6271114579976711 +17,3976.313797783479,4.265751717020369,104.94415747575891,670.4228694632716,0.6244835409997904 +18,3991.684352559485,4.282241102356066,105.34982211968163,673.0144082507576,0.6268974999984493 +19,3960.953328897487,4.2492731517317885,104.53875902190158,667.8330311983468,0.622071165998932 +20,3945.661844046774,4.23286859186177,104.13518121697432,665.2548239256503,0.6196696250008245 +21,3953.734597793666,4.2415289654912565,104.34823994009348,666.6159234280282,0.6209374579993892 +22,3949.024607959405,4.236476133083047,104.22393236780093,665.8217997596224,0.6201977499986242 +23,3953.6438628657106,4.241431625921392,104.34584523458176,666.6006251457864,0.620923208000022 +24,3980.280939138054,4.270007628627338,105.04885955115223,671.0917458210638,0.6251065840006049 +25,3924.949077538512,4.210648132463894,103.58852319631876,661.7625662560637,0.6164166670023405 +26,3931.6565666482784,4.217843863143608,103.76554941436892,662.8934765223435,0.6174700840019796 +27,3941.93640780823,4.228871979210103,104.03685830103603,664.6267000450754,0.6190845419987454 +28,3921.6022320172265,4.207057668341826,103.5001921688157,661.1982743283791,0.6158910420017492 +29,3965.7705069386857,4.254440974631453,104.6658955399566,668.6452272395385,0.6228277080008411 +0,2897.06588423018,2.138228599987678,0.0,578.7583443372898,0.6121520000015153 +1,2886.4617206852504,2.1304020172737195,0.0,576.6399085192601,0.6099113330019463 +2,2891.2718092605605,2.13395218470905,0.0,577.6008389955449,0.6109277080031461 +3,2902.806717543443,2.142465719359039,0.0,579.9052133821349,0.6133650420015329 +4,2886.951742760236,2.1307636863752273,0.0,576.7378021730947,0.6100148750010703 +5,2891.139495434868,2.1338545282464167,0.0,577.5744061376981,0.6108997500014084 +6,2885.692873176965,2.1298345563332575,0.0,576.486312802516,0.6097488749983313 +7,2892.864326581102,2.1351275691210145,0.0,577.9189824981771,0.6112642080006481 +8,2891.8779738725893,2.1343995747793953,0.0,577.7219349047416,0.6110557909996714 +9,2897.121884990991,2.138269932298772,0.0,578.7695318314317,0.6121638330005226 +10,2887.3110222394043,2.1310288586869546,0.0,576.809576859908,0.6100907910004025 +11,2887.674248714824,2.131296944146192,0.0,576.88214005382,0.6101675410027383 +12,2878.129996539094,2.12425264699067,0.0,574.975446934678,0.6081508339993889 +13,2885.4507253555544,2.129655835027683,0.0,576.4379379716337,0.6096977089982829 +14,2885.9575055458276,2.1300298727403386,0.0,576.5391794606388,0.6098047919986129 +15,2882.9690675048737,2.127824205370728,0.0,575.94216733808,0.6091733329994895 +16,2886.194333946628,2.1302046679573325,0.0,576.5864916097636,0.6098548340014531 +17,2881.8135293568257,2.126971340846665,0.0,575.7113208982308,0.6089291669995873 +18,2877.911308181766,2.124091240340353,0.0,574.931758693999,0.6081046250001236 +19,2884.452342408247,2.128918961564331,0.0,576.2384870496704,0.6094867499996326 +20,2879.610701656923,2.125345506510478,0.0,575.2712532700158,0.6084637080020912 +21,2877.9582412967975,2.124125880121724,0.0,574.9411347085722,0.6081145419993845 +22,2885.157498668996,2.129439414099567,0.0,576.3793589132313,0.6096357499991427 +23,2872.80997114411,2.1203261120388297,0.0,573.9126443570101,0.6070267089999106 +24,2884.0279850530987,2.128605757422743,0.0,576.1537114974091,0.6093970830006583 +25,3027.270938994274,2.234328648479853,0.0,604.7699246502577,0.639664417001768 +26,2877.769921992816,2.123986887866182,0.0,574.9035134141542,0.6080747500018333 +27,2891.0146733076017,2.1337624011588403,0.0,577.5494699261654,0.610873375000665 +28,2881.974432765519,2.1270900983358114,0.0,575.7434652104885,0.6089631659997394 +29,2874.2871267906344,2.121416351811154,0.0,574.2077416003847,0.6073388329969021 +0,2951.495904520558,2.2148803831535737,0.033558793684145,582.077276451496,0.6138243749992398 +1,2934.3258093471427,2.201995490811955,0.0333635680426053,578.6910876989903,0.6102534999990894 +2,2958.2731076379414,2.219966175146153,0.033635851138578,583.4138379986367,0.6152338339998096 +3,2935.405490800975,2.202805712255422,0.0333758441250821,578.9040163495498,0.6104780419991584 +4,2932.144611632538,2.2003586625099203,0.0333387676137866,578.2609242611298,0.6097998750010447 +5,2944.56143397673,2.2096765735356927,0.0334799480838741,580.7096995147969,0.6123822089975874 +6,2943.7381974341965,2.2090587951183283,0.0334705878048231,580.5473454746576,0.612210999999661 +7,2933.019134274525,2.201014927369172,0.033348711020745,578.4333926548225,0.6099817499998608 +8,2934.32941563607,2.2019981970662945,0.033363609046459,578.6917989108315,0.6102542500011623 +9,2925.5930077164485,2.195442166108989,0.0332642752440755,576.9688541084912,0.6084373340017919 +10,2917.215217792331,2.189155251555359,0.0331690189629599,575.316633912541,0.6066950000022189 +11,2923.9008598754463,2.194172333732569,0.0332450353595843,576.6351383119911,0.6080854169995291 +12,2924.1478899759636,2.1943577116363113,0.0332478441157016,576.6838561868458,0.608136791997822 +13,2930.0543738836395,2.198790092965551,0.0333150014085689,577.8486994316285,0.6093651670016698 +14,2933.8690140150657,2.201652699545132,0.0333583742355323,578.6010011153077,0.6101584999996703 +15,2982.76855070272,2.23834820177805,0.0339143666936068,588.2446903006103,0.6203281659982167 +16,2921.9182046353953,2.1926844969407173,0.0332224923778896,576.2441302944961,0.6076730829990993 +17,2933.0884565591487,2.2010669486401797,0.0333494992218209,578.4470640024837,0.6099961669970071 +18,2923.955156023265,2.19421307899415,0.0332456527120325,576.645846290205,0.608096709001984 +19,2920.4111839350135,2.1915535888540183,0.033205357406879,575.9469242223173,0.6073596669994004 +20,2923.425629243495,2.193815708130423,0.03323963194137,576.5414160230634,0.6079865829997289 +21,2927.2629120147917,2.1966953063442443,0.033283262217337,577.2981831597108,0.6087846250011353 +22,2927.0900125724725,2.196565558041878,0.0332812963339678,577.2640849126723,0.6087486670003273 +23,2935.697195491655,2.2030246151500767,0.0333791608356072,578.9615446936073,0.610538707998785 +24,2924.6337375033436,2.194722304436847,0.0332533682490431,576.7796722796531,0.6082378339997376 +25,2924.4710510312407,2.1946002202167354,0.0332515184881323,576.7475881766557,0.6082039999964763 +26,2911.763322173297,2.1850640052693304,0.0331070303828686,574.2414419908566,0.6055611659976421 +27,2927.3087935001095,2.1967297370211165,0.0332837838942593,577.3072316459284,0.6087941670011787 +28,2926.9894358421257,2.19649008261035,0.0332801527668234,577.2442497405534,0.6087277499973425 +29,2917.142890252357,2.1891009750614616,0.0331681965918403,575.3023698854705,0.6066799580003135 +0,3932.41265398972,4.478944969047389,106.51806719621725,662.7828265851253,0.6318551250005839 +1,3918.830428036166,4.463475065973658,106.15016265920812,660.4936298753952,0.6296727499975532 +2,3908.699448921323,4.45193606894294,105.87574275237984,658.7861185929775,0.6280449170008069 +3,3907.333107630979,4.450379831592778,105.83873238592447,658.5558305682515,0.6278253749987925 +4,3869.162738242476,4.406904489866914,104.8048037702936,652.1224606396295,0.6216922079984215 +5,3864.811926300176,4.40194899588017,104.686952435857,651.3891593076514,0.6209931250014051 +6,3866.242320857558,4.403578188711711,104.72569782627926,651.6302430980089,0.6212229590018978 +7,3860.669604890071,4.397230968736924,104.57474852717964,650.6909977121159,0.6203275420011778 +8,3887.032762221074,4.427258115246104,105.28885277085284,655.1343380914179,0.6245635410014074 +9,3905.787066170965,4.448618919087259,105.7968544441579,658.2952552372658,0.6275769589992706 +10,3894.38802258755,4.435635620180903,105.48808621527964,656.3740198554913,0.6257453749967681 +11,3910.956019959519,4.4545062614400495,105.93686695439756,659.1664491082828,0.6284075000003213 +12,3903.508961494342,4.446024200175965,105.73514695606448,657.9112953658885,0.6272109160017862 +13,3851.845836610113,4.3871808605659375,104.33573730804557,649.2038083969791,0.6189097499991476 +14,3886.53331843636,4.426689258052392,105.27532423473473,655.0501600581138,0.6244832910015248 +15,3901.3203334792697,4.443531393520162,105.67586314063362,657.5424162095512,0.6268592500018713 +16,3880.519249744554,4.419839345522653,105.11241992397106,654.0365275130175,0.6235169579995272 +17,3886.8774398697697,4.427081205973053,105.284645522502,655.108159509441,0.6245385840011295 +18,3870.832218570019,4.408805996949693,104.85002532595398,652.4038407967437,0.6219604580001032 +19,3910.039595065132,4.453462470507768,105.91204356553436,659.0119915944615,0.6282602499995846 +20,3901.611803248215,4.443863372172993,105.68375824197878,657.59154156193,0.6269060829981754 +21,3859.3203785129167,4.39569422495498,104.53820175588422,650.4635942957816,0.6201107500019134 +22,3893.81000588388,4.434977269891977,105.47242935840843,656.2765988627368,0.6256524999989779 +23,3910.340138863701,4.453804784311792,105.92018445697892,659.062646316093,0.6283085409995692 +24,3906.112765743647,4.448989884850734,105.80567673520956,658.3501498026112,0.6276292919974367 +25,3905.901941366857,4.448749759801594,105.79996609212364,658.314616711693,0.6275954170014302 +26,3892.3977655668273,4.43336875440296,105.43417571561324,656.0385748526666,0.6254255829990143 +27,3908.115980323715,4.4512715090480865,105.85993821894058,658.687778718612,0.6279511659995478 +28,3892.6985770084375,4.433711373047436,105.44232385675971,656.089274683809,0.6254739170035464 +29,3882.8875904046654,4.422536841543025,105.176571652636,654.4356960782576,0.6238975000014761 +0,2919.8438339372997,1.8030529009870455,0.0,578.746591348305,0.6114040419997764 +1,2940.8832996175584,1.816045126526332,0.0,582.9168551496465,0.6158096250001108 +2,2918.2461827418515,1.802066324380024,0.0,578.4299185273882,0.6110694999988482 +3,2917.9142759717597,1.8018613663416128,0.0,578.3641307925773,0.6110000000007858 +4,2908.2579377267552,1.79589841432233,0.0,576.450133619425,0.6089780000002065 +5,2925.474305310638,1.806529812192236,0.0,579.8626154579265,0.6125830409982882 +6,2918.686534688,1.8023382491469344,0.0,578.5172013419226,0.61116170799869 +7,2906.0370659029513,1.794526988447395,0.0,576.0099313103464,0.6085129580023931 +8,2928.492909138035,1.8083938510578283,0.0,580.4609374145433,0.6132151250021707 +9,2917.7642445444867,1.8017687194003484,0.0,578.3343928401156,0.6109685839983285 +10,2905.6586014243176,1.7942932802373226,0.0,575.9349153028428,0.6084337089996552 +11,2901.6572096881105,1.7918223532329065,0.0,575.1417934923327,0.6075958329965943 +12,2904.387680219642,1.7935084649200164,0.0,575.6830041196044,0.6081675829991582 +13,2914.4425883583563,1.7997175405828814,0.0,577.6760024245016,0.6102730419988802 +14,2913.1523688149136,1.7989208082153227,0.0,577.4202660888184,0.6100028750006459 +15,2912.319020134577,1.7984062013249986,0.0,577.2550868067815,0.609828374999779 +16,2916.119629739522,1.8007531419709562,0.0,578.00841129227,0.6106242079986259 +17,2915.5907279326425,1.8004265361689102,0.0,577.9035768780689,0.6105134579993319 +18,2903.782969947405,1.7931350461097564,0.0,575.5631435966742,0.6080409589994815 +19,2906.422698600064,1.7947651231534925,0.0,576.0863681411016,0.608593708002445 +20,2913.3770243273175,1.7990595367900002,0.0,577.4647953922421,0.6100499169988325 +21,2915.236733846457,1.8002079388396248,0.0,577.833411183467,0.6104393330024322 +22,2905.796497953544,1.7943784336740125,0.0,575.9622479791049,0.608462584001245 +23,2956.03202168321,1.8253997183538984,0.0,585.9195058931133,0.6189817089980352 +24,2913.5718273459634,1.7991798309453957,0.0,577.5034075884546,0.610090707999916 +25,2922.967496986869,1.8049818156974045,0.0,579.3657372496872,0.6120581249997485 +26,2885.41686295252,1.781793664727619,0.0,571.9227701985892,0.6041951670013077 +27,2905.066217073592,1.793927472891854,0.0,575.8174979191575,0.608309666000423 +28,2920.0420228750836,1.8031752860047172,0.0,578.7858746725882,0.6114455419992737 +29,2914.3592105165585,1.7996660533568236,0.0,577.6594759784041,0.610255583000253 +0,2912.6967160552563,0.7692716824857426,0.0,577.8568199263555,0.6126057500005118 +1,2909.76411538492,0.7684971539743143,0.0,577.275014313662,0.6119889580004383 +2,2897.5441978641356,0.7652697542731254,0.0,574.8506758511646,0.6094188339993707 +3,2904.0928685284907,0.766999322227195,0.0,576.1498821790977,0.6107961669986253 +4,2910.1090237437556,0.7685882476443289,0.0,577.3434415022205,0.6120614999999816 +5,2959.9483484575985,0.7817513006203682,0.0,587.2311835138305,0.6225438329965982 +6,2897.266048864421,0.7651962924026146,0.0,574.7954932104335,0.6093603329973121 +7,2902.897680386842,0.7666836613526711,0.0,575.9127659647869,0.6105447920017468 +8,2913.849312491703,0.7695760944744694,0.0,578.0854862711047,0.6128481670020847 +9,2902.215984504581,0.7665036188046778,0.0,575.7775226994964,0.6104014159973303 +10,2931.675305508553,0.7742841135292726,0.0,581.6220273671845,0.6165973749994009 +11,2899.8656276857287,0.7658828665874922,0.0,575.3112298274827,0.6099070829986886 +12,2897.264265909572,0.7651958215068054,0.0,574.795139485786,0.6093599580017326 +13,2900.088699366609,0.7659417819995638,0.0,575.355485548107,0.6099539999995613 +14,2896.2182581492034,0.7649195606296341,0.0,574.5876195216604,0.6091399590004585 +15,2888.7798777760972,0.7629550116420766,0.0,573.1119015713111,0.6075755000019853 +16,2887.5296122983173,0.7626248043045449,0.0,572.8638584334618,0.6073125410002831 +17,2892.4946105149866,0.7639361088803432,0.0,573.8488762228561,0.6083567919995403 +18,2896.1934914260523,0.7649130194958857,0.0,574.5827059926269,0.6091347500005213 +19,2891.68751676719,0.7637229475299463,0.0,573.6887549771687,0.6081870419984625 +20,2891.2514769603877,0.7636077851534584,0.0,573.602248004187,0.6080953330019838 +21,2901.419393685464,0.7662932313804407,0.0,575.6194851547771,0.6102338749988121 +22,2892.474598395758,0.7639308234839804,0.0,573.8449059709883,0.6083525829999417 +23,2895.520515500325,0.7647352799736746,0.0,574.4491927002251,0.6089932079994469 +24,2944.0214244336244,0.7775448442553065,0.0,584.0714032260404,0.6191940419994353 +25,2896.3549529687425,0.7649556630680494,0.0,574.6147387315951,0.6091687090010964 +26,2892.9149934327615,0.764047136119349,0.0,573.9322769884345,0.6084452079994662 +27,2900.303055864967,0.7659983956467158,0.0,575.3980122429699,0.6099990840011742 +28,2886.581273579283,0.7623743387761784,0.0,572.6757152624364,0.6071130839991383 +29,2891.976753494673,0.7637993377777744,0.0,573.7461373385482,0.6082478749995062 +0,2903.510775920611,2.139457143535497,0.0,578.6228702727487,0.6119076670001959 +1,2897.318133355128,2.134894083710143,0.0,577.3887764834197,0.6106025829976716 +2,2894.358235999138,2.1327130780135493,0.0,576.7989166771332,0.6099787919993105 +3,2901.4164451318984,2.137913932122611,0.0,578.205503923598,0.6114662920008413 +4,2900.909122398312,2.137540110452841,0.0,578.104402684816,0.6113593749978463 +5,2896.816547371919,2.134524489175219,0.0,577.2888184864667,0.6104968750005355 +6,2906.912552771276,2.141963748933426,0.0,579.3007895357605,0.6126245830018888 +7,2892.9669597822926,2.131687913627921,0.0,576.5216577654014,0.6096855840005446 +8,2896.536392230148,2.1343180563545348,0.0,577.23298808501,0.6104378330019244 +9,2900.240274639164,2.137047268777131,0.0,577.97111211349,0.6112184169978718 +10,2888.558836521479,2.1284397800655643,0.0,575.6431898930446,0.6087565829984669 +11,2923.2033739341073,2.15396766984184,0.0,582.5472874576939,0.6160578330018325 +12,2886.663796359049,2.1270434163095135,0.0,575.265538951584,0.6083572080024169 +13,2887.9726326890836,2.1280078347160973,0.0,575.526368923452,0.6086330420002923 +14,2888.4463417240213,2.1283568880714903,0.0,575.6207714942097,0.608732874999987 +15,2895.4290292013693,2.133502093912771,0.0,577.0123084927524,0.6102044590006699 +16,2886.9012463727813,2.1272183817797043,0.0,575.3128589097641,0.6084072500016191 +17,2898.6542535366248,2.135878606271806,0.0,577.6550436868546,0.6108841669993126 +18,2890.736802936653,2.130044618540409,0.0,576.0772234736866,0.6092155839978659 +19,2899.8549367525866,2.136763331861536,0.0,577.8943204873644,0.6111372079976718 +20,2885.3142335532707,2.1260489885259433,0.0,574.9965928499305,0.6080727910011774 +21,2888.8158597311235,2.128629168080408,0.0,575.6944104734965,0.6088107499999751 +22,2893.3463569130763,2.1319674730869127,0.0,576.597265494709,0.6097655410012521 +23,2898.04036253727,2.135426259583509,0.0,577.5327051114213,0.6107547909996356 +24,2894.620991177513,2.1329066896398734,0.0,576.8512795465089,0.6100341669989575 +25,2907.424421210926,2.1423409201148944,0.0,579.4027966604485,0.6127324580011191 +26,2882.186087451494,2.123744008438054,0.0,574.3732037820981,0.6074135419985396 +27,2877.4778420317452,2.1202747293224613,0.0,573.4349264037888,0.6064212909986963 +28,2901.5552368109697,2.1380162010212542,0.0,578.2331628668264,0.6114955420016486 +29,2889.8119189549716,2.129363116113086,0.0,575.892909012522,0.6090206670014595 +0,2880.5533097361076,1.825887494790604,0.0,573.3286733642497,0.6070650420006132 +1,2895.1939588247515,1.835167718140826,0.0,576.2426634962193,0.6101505000006 +2,2894.7900365341857,1.8349116851569132,0.0,576.1622691392707,0.6100653749999765 +3,2897.8294396419938,1.8368382622861812,0.0,576.7672143578609,0.6107059169989952 +4,2902.0938530661283,1.8395413329488304,0.0,577.6159785459328,0.6116046250026557 +5,2897.310051331282,1.8365090392100925,0.0,576.663838311969,0.6105964579983265 +6,2887.4259199457047,1.830243815153036,0.0,574.6965579580532,0.6085134170025412 +7,2890.31327744768,1.8320740156002997,0.0,575.271240898494,0.6091219160007313 +8,2904.916170190954,1.8413303064516413,0.0,578.1777162258154,0.6121994170025573 +9,2882.650820646399,1.8272170376004329,0.0,573.7461498065359,0.6075070840015542 +10,2889.5760202011456,1.8316066926098376,0.0,575.124501479489,0.6089665419967787 +11,2886.0018121415305,1.8293411203054568,0.0,574.4131117759134,0.6082132920018921 +12,2885.7890726205305,1.8292062717575304,0.0,574.3707693318646,0.6081684580021829 +13,2882.333495484417,1.8270158956729123,0.0,573.6829912412945,0.607440208998014 +14,2889.6879227121485,1.8316776239113988,0.0,575.1467739081792,0.6089901250015828 +15,2920.077787685672,1.8509407544481549,0.0,581.1953968967207,0.615394667001965 +16,2895.1030104697656,1.8351100689858948,0.0,576.224561661571,0.6101313330000266 +17,2884.020161092751,1.8280850172308232,0.0,574.0186954104786,0.6077956670014828 +18,2897.609582545234,1.8366989021423303,0.0,576.7234552726918,0.6106595829987782 +19,2899.1139623321237,1.8376524787454829,0.0,577.0228783260816,0.61097662499742 +20,2884.222618082848,1.8282133480224116,0.0,574.0589912790373,0.6078383339990978 +21,2887.338331075706,1.830188295464553,0.0,574.6791247758696,0.6084949579999375 +22,2890.02343561174,1.8318902944443949,0.0,575.21355245554,0.609060832997784 +23,2886.9599134100326,1.829948429019025,0.0,574.6038067119739,0.6084152079965861 +24,2889.330857773754,1.8314512922536443,0.0,575.0757057676443,0.6089148749997548 +25,2884.892258368299,1.8286378108570625,0.0,574.1922726091175,0.6079794580000453 +26,2922.417689909578,1.852423941096783,0.0,581.66111750439,0.6158877919988299 +27,2884.9082776565983,1.8286479649542224,0.0,574.1954609956258,0.6079828340007225 +28,2890.4093694416956,1.8321349251379324,0.0,575.2903664933108,0.6091421670025738 +29,2886.107584019245,1.8294081656012915,0.0,574.4341639988056,0.6082355830003507 +0,2891.419898852244,2.2995651519819824,0.0,577.6574315841116,0.6095027499977732 +1,2896.197005839203,2.303364416405272,0.0,578.6118178196027,0.6105097500003467 +2,2891.913463676345,2.299957687313914,0.0,577.7560375972763,0.6096067920007044 +3,2930.8278672154415,2.330906566902171,0.0,585.5304858567439,0.6178098329983186 +4,2895.675969108625,2.302950032486487,0.0,578.507723378091,0.6103999170009047 +5,2889.704979125221,2.2982012651095594,0.0,577.3148192484637,0.6091412499990838 +6,2881.9536463153127,2.292036579441402,0.0,575.7662323399684,0.6075072920029925 +7,2889.6053572327955,2.298122035167105,0.0,577.2949164572672,0.6091202499992505 +8,2895.9457784034894,2.3031646135829225,0.0,578.5616267714897,0.6104567920010595 +9,2883.458254724986,2.2932332043479526,0.0,576.066827984972,0.6078244589989481 +10,2883.2526825801706,2.293069711476986,0.0,576.0257581018926,0.6077811249997467 +11,2885.7228738362783,2.2950342707350613,0.0,576.5192610818959,0.608301833999576 +12,2900.626223677374,2.306887002313752,0.0,579.4967016102067,0.6114434160008386 +13,2889.326458627352,2.2979002252825333,0.0,577.2391971713355,0.6090614589993493 +14,2888.138107024153,2.2969551214821124,0.0,577.0017843572384,0.6088109580014134 +15,2885.8183400733897,2.295110195657671,0.0,576.5383336425277,0.6083219579995784 +16,2894.35222185339,2.301897247638676,0.0,578.2432607727706,0.6101208750005753 +17,2896.816084749535,2.3038567739106943,0.0,578.7354994520879,0.6106402500008699 +18,2886.4688473167776,2.295627548321876,0.0,576.668294131349,0.6084590829996159 +19,2897.362624673943,2.304291440686293,0.0,578.8446890060219,0.6107554589980282 +20,2892.3556330782953,2.300309347530543,0.0,577.8443756629986,0.6097000000008848 +21,2887.4506400544637,2.296408374505907,0.0,576.8644399320419,0.6086660420005501 +22,2890.082911377123,2.298501837100721,0.0,577.3903238038666,0.6092209169983107 +23,2886.1794741880713,2.295397407980462,0.0,576.6104822105123,0.6083980840012373 +24,2892.7904873823272,2.300655190001966,0.0,577.931252294262,0.6097916660000919 +25,2887.8809497032066,2.2967506025832622,0.0,576.9504086170389,0.608756749999884 +26,2895.385405249962,2.3027189451497523,0.0,578.4496735692849,0.6103386670001782 +27,2885.281292680296,2.2946830783542964,0.0,576.4310405378989,0.6082087499999034 +28,2898.382757621868,2.3051027590902256,0.0,579.0484945407374,0.6109705000017129 +29,2888.623763758361,2.2973413674584413,0.0,577.0988104660458,0.6089133330024197 +0,2874.5451355834916,1.256386040718786,0.0,571.854025270319,0.6059325420028472 +1,2890.5357807513724,1.2633751198333618,0.0,575.0351598062585,0.6093032499993569 +2,2902.238047459548,1.2684898645472018,0.0,577.3631762423264,0.6117699999995239 +3,2898.79232231774,1.266983831152655,0.0,576.677693253061,0.6110436669987394 +4,2903.1714298317124,1.2688978207725274,0.0,577.5488607389904,0.6119667499988282 +5,2928.801886913396,1.2801002013147738,0.0,582.6477126826401,0.6173694580029405 +6,2897.482977796503,1.2664115520262602,0.0,576.4172158906894,0.6107676669998909 +7,2889.1673354364934,1.2627770093463084,0.0,574.7629250961513,0.6090147919967421 +8,2893.1942008189644,1.2645370434441427,0.0,575.5640185107866,0.6098636249989795 +9,2903.4448029522487,1.2690173047800308,0.0,577.6032448283004,0.6120243750010559 +10,2896.9253583231234,1.2661678316150846,0.0,576.3062846214343,0.6106501249996654 +11,2899.5361438686523,1.2673089354628235,0.0,576.8256670464472,0.6112004589995195 +12,2892.876352687055,1.264398120610385,0.0,575.5007866862426,0.6097966249981255 +13,2895.9775494362375,1.2657535699498177,0.0,576.1177301540012,0.6104503339993244 +14,2957.7576947981343,1.2927560028792655,0.0,588.4081006789415,0.6234731250006007 +15,2900.265728662913,1.2676278172711772,0.0,576.9708086190074,0.6113542499988398 +16,2903.4329429434633,1.2690121210905154,0.0,577.6008854310936,0.6120218750002095 +17,2899.374449300365,1.267238263134203,0.0,576.7934999781362,0.6111663749979925 +18,2892.9834865033354,1.264444945907924,0.0,575.522099590091,0.609819208002591 +19,2902.4566653066404,1.268585416503558,0.0,577.4066674696195,0.6118160830010311 +20,2886.815102759571,1.2617489119742322,0.0,574.2949784606926,0.6085189590012305 +21,2893.8498598388032,1.264823614293144,0.0,575.694453495111,0.610001832999842 +22,2887.0621846104905,1.2618569047778825,0.0,574.3441322378487,0.608571042001131 +23,2896.109390012052,1.2658111939046486,0.0,576.1439581519685,0.6104781250032829 +24,2892.731461381355,1.2643347925340054,0.0,575.47196241232,0.6097660829982487 +25,2892.255879939107,1.264126928730488,0.0,575.3773515611189,0.6096658339993155 +26,2891.3442345911144,1.2637284731713367,0.0,575.1959913676694,0.6094736660015769 +27,2897.70733113518,1.2665096108110792,0.0,576.4618481207481,0.6108149589999812 +28,2888.5555536944235,1.2625096160703468,0.0,574.6412189355979,0.6088858329967479 +29,2892.6087103465115,1.2642811413720347,0.0,575.4475426623871,0.6097402080013126 +0,2966.6029811713843,1.7742228601436734,0.0,591.4644861652034,0.6251297919989156 +1,2893.953695907014,1.730773829886767,0.0,576.9800834824443,0.6098209579977265 +2,2890.950930635413,1.728977979608744,0.0,576.3814091637996,0.6091882079999777 +3,2883.2836595675476,1.724392449394602,0.0,574.8527521202967,0.6075725420014351 +4,2903.5844551622986,1.7365336546222356,0.0,578.9002096707011,0.6118503750003583 +5,2895.5215166664366,1.7317114893746155,0.0,577.2926666982493,0.6101513329995214 +6,2899.295244002454,1.733968425456055,0.0,578.0450510630907,0.6109465419976914 +7,2884.576630607913,1.7251657307510493,0.0,575.1105373571046,0.6078450000022713 +8,2892.0002968654867,1.729605569335403,0.0,576.590625854408,0.6094093330029864 +9,2896.3984617648193,1.732235959972979,0.0,577.4675070409921,0.6103361250025046 +10,2898.3947656030737,1.7334298804025423,0.0,577.8655187841937,0.6107567910003127 +11,2894.3982000992005,1.731039672503461,0.0,577.0687062086057,0.6099146250016929 +12,2888.640227411438,1.7275960277570794,0.0,575.9207142532495,0.6087012909993064 +13,2929.81050511024,1.7522185499871472,0.0,584.1290108466768,0.6173767920008686 +14,2896.032852824472,1.7320173018835905,0.0,577.3946140029238,0.6102590829977999 +15,2898.545442483126,1.7335199950443665,0.0,577.8955598864248,0.6107885419987724 +16,2894.287466736672,1.7309734467009434,0.0,577.046628818478,0.6098912909983483 +17,2879.6084077219534,1.7221944081054157,0.0,574.1200012405266,0.606798083998001 +18,2897.219845595823,1.7327272012948438,0.0,577.6312698931946,0.6105092090001563 +19,2911.872808663414,1.7414906328050137,0.0,580.5526946091329,0.6135969169990858 +20,2887.5105849740876,1.7269204276013268,0.0,575.6954925474807,0.6084632499987492 +21,2904.238158712063,1.7369246121548447,0.0,579.0305413789275,0.6119881250015169 +22,2898.267626788971,1.7333538430656203,0.0,577.8401705681255,0.6107300000003306 +23,2897.585644340069,1.732945972899394,0.0,577.7042007732883,0.6105862910008 +24,2892.911846698592,1.7301507358313315,0.0,576.7723654930026,0.6096014169997943 +25,2888.988239731408,1.727804161915112,0.0,575.9900989768936,0.6087746250013879 +26,2883.871712755834,1.7247441437117252,0.0,574.9699948315915,0.6076964579988271 +27,2895.1272397065154,1.731475685932106,0.0,577.2140579929434,0.6100682500000403 +28,2901.247456691923,1.7351359764911958,0.0,578.4342721629785,0.6113579170014418 +29,2902.2730950003565,1.7357493753668158,0.0,578.6387581150722,0.6115740419991198 +0,2914.3327388000757,1.846235278383812,0.0,579.1136549577732,0.6136272080002527 +1,2900.5327028212023,1.837492929602577,0.0,576.3714185727938,0.6107215420015564 +2,2905.500522178591,1.840640052521021,0.0,577.3585852016846,0.6117675409986987 +3,2903.7774993611024,1.8395485143212964,0.0,577.0161994376546,0.611404750001384 +4,2893.026344318771,1.8327376373551,0.0,574.8798130845488,0.6091410410008393 +5,2881.1222931323105,1.8251963985104305,0.0,572.5143321291263,0.606634584000858 +6,2890.589531602901,1.8311939119105216,0.0,574.3955885141876,0.608627958001307 +7,2905.8201157127355,1.8408425156267691,0.0,577.4220923562367,0.6118348330019217 +8,2885.062076872394,1.827692258929286,0.0,573.2972154736007,0.6074641250015702 +9,2883.105737281688,1.8264529141143395,0.0,572.9084668054652,0.6070522080008232 +10,2887.9795669399623,1.8295404943813904,0.0,573.8769565285045,0.6080784170007973 +11,2877.88322905155,1.823144445315372,0.0,571.8706903741963,0.6059525829987251 +12,2921.7443049343665,1.8509305194875565,0.0,580.5864240399877,0.6151877499978582 +13,2899.5976737820447,1.8369005869453976,0.0,576.1856168360363,0.6105246670013003 +14,2890.9756160788083,1.831438497153094,0.0,574.4723082342759,0.6087092500019935 +15,2893.7573506004273,1.8332007312111809,0.0,575.0250729973689,0.6092949579979177 +16,2895.3646126864064,1.83421893476949,0.0,575.3444556844225,0.6096333749992482 +17,2903.462655182409,1.8393490599411704,0.0,576.9536360382741,0.6113384579984995 +18,2896.517124134783,1.834949052942479,0.0,575.5734738429754,0.6098760419990867 +19,2902.773604685178,1.8389125451535353,0.0,576.8167132543416,0.611193374999857 +20,2880.9958415909327,1.8251162912208307,0.0,572.4892046571231,0.6066079590018489 +21,2896.3285320396735,1.8348295794950649,0.0,575.5359982808884,0.609836332998384 +22,2893.456165583078,1.8330099299354896,0.0,574.9652238408559,0.6092315419991792 +23,2886.5982933674895,1.8286654549719752,0.0,573.6024805304821,0.6077875830014818 +24,2895.4087436907635,1.8342468918438588,0.0,575.3532250561864,0.609642667001026 +25,2893.683735625488,1.8331540959859227,0.0,575.0104447990752,0.6092794579999463 +26,2885.7042275061403,1.8280990625650808,0.0,573.4248186795049,0.6075993330014171 +27,2882.296171911477,1.8259400529277143,0.0,572.7475962383442,0.6068817499981378 +28,2883.862076620967,1.8269320565101324,0.0,573.0587607075055,0.6072114589987905 +29,2887.740911906284,1.8293893059681132,0.0,573.8295328465798,0.6080281670001568 +0,3893.4087513854774,4.739692436583239,103.94178658129395,652.6191893449228,0.6211611670005368 +1,3910.090907221386,4.760000678766446,104.3871477525285,655.4154780763031,0.623822666999331 +2,3901.3178607961854,4.749320695121647,104.15293496434604,653.9449264821345,0.6224229999970703 +3,3935.267962817907,4.790650299087921,105.05929606950852,659.6356950282599,0.6278394580003805 +4,3947.5061402613287,4.80554860562856,105.38601697378436,661.6870772365478,0.6297919579992595 +5,3923.989045361744,4.776919760330386,104.75818439437823,657.7451054608762,0.6260399999991932 +6,3898.694465671203,4.7461270705047545,104.0828985531672,653.5051889387316,0.6220044590008911 +7,3894.514781749232,4.741038877217773,103.971314118566,652.8045838630626,0.6213376249979774 +8,3918.225926213384,4.769903951309849,104.60432721194184,656.7790825265099,0.6251205420012411 +9,3904.976514887927,4.753774605880575,104.25060953875165,654.5581957327869,0.6230067079995933 +10,3900.61585011822,4.748466093174299,104.13419348387832,653.8272543678459,0.622310999999172 +11,3921.266929961301,4.773605957285587,104.68551246187133,657.2888202724,0.6256057089995011 +12,3890.512694027786,4.736166883005214,103.86447094478568,652.1337477368717,0.620699125000101 +13,3947.249417465889,4.805236080751378,105.37916328137288,661.6440449649974,0.6297510000003967 +14,3944.6905258287857,4.802120980305246,105.31084891075002,661.2151195958762,0.6293427500022517 +15,3909.432772180864,4.759199489404374,104.36957761379102,655.3051604641407,0.6237176669965265 +16,3943.6249738681895,4.800823816588072,105.28240201972164,661.0365101302039,0.6291727499992703 +17,3898.925590156709,4.746408432942098,104.08906885109384,653.5439303820273,0.622041333001107 +18,3901.9553617383385,4.750096765292231,104.1699542374576,654.0517853748532,0.6225247080001282 +19,3916.8843211021353,4.76827073065291,104.56851056872397,656.5542006052852,0.6249065000010887 +20,3898.5996566024073,4.74601165343581,104.08036744877413,653.4892968961615,0.621989332998055 +21,3945.550802306459,4.803168249208916,105.33381559104308,661.3593204679969,0.629479999999603 +22,3932.48995609089,4.787268456000385,104.98513201410634,659.1700412492838,0.627396250001766 +23,3902.181791517138,4.750372412566515,104.17599920145868,654.0897398841586,0.6225608329987153 +24,3924.885099333542,4.778010583437871,104.78210622140676,657.89530341183,0.6261829579998448 +25,3922.3157590073897,4.774882763142472,104.71351290359992,657.4646266173096,0.6257730409997748 +26,3926.91669945643,4.780483778612456,104.8363435645361,658.235843362792,0.6265070829977049 +27,3915.7067295022007,4.766837174004739,104.53707257118086,656.356810882191,0.6247186250002414 +28,3909.8153743138473,4.759665255151491,104.37979188919633,655.3692928247053,0.6237787080026465 +29,3885.3873390557023,4.729927464606787,103.7276400629852,651.2746278189345,0.6198814170020341 +0,3918.98590650998,5.811744006176802,104.04357804161344,658.8981264933894,0.6259630829990783 +1,3960.478375528452,5.8732761509387945,105.14514488605946,665.8742449975265,0.6325905000012426 +2,3895.8175551975046,5.777386003855434,103.42849081614756,655.0028373451503,0.622262500000943 +3,3895.0135710260497,5.776193718325202,103.40714616427016,654.8676636862141,0.6221340830015833 +4,3989.9385038992486,5.916964678676485,105.9272699659612,670.8273690589139,0.6372960420012532 +5,3911.170167590615,5.80015348890982,103.83608113766718,657.5840682512875,0.6247147079993738 +6,3919.633892088269,5.812704950255332,104.06078114968598,659.0070721476261,0.626066583001375 +7,3916.25597151212,5.807695590658208,103.97110209712828,658.4391432006579,0.6255270420006127 +8,3909.4542078920576,5.7976087697577645,103.7905248149163,657.2955643736288,0.624440624997078 +9,3902.03785350188,5.786610528324133,103.59363100994068,656.0486545531619,0.6232560420030495 +10,3910.647659587238,5.799378624485899,103.82220928318148,657.4962191105365,0.6246312500006752 +11,3934.942942332293,5.835407833888616,104.46721495725885,661.5809789604639,0.6285118330015393 +12,3885.9065565334263,5.762688276316915,103.16536770532868,653.3365036028953,0.6206794580029964 +13,3895.060006851172,5.776262581325674,103.40837897028432,654.8754709299515,0.6221414999999979 +14,3919.986840724004,5.813228362986881,104.07015144082835,659.0664133140357,0.6261229579977226 +15,3908.413624469494,5.796065614305491,103.76289878483682,657.1206113414048,0.6242744169976504 +16,3888.3659841602007,5.766335537141401,103.23066205859465,653.7500065585541,0.6210722920004628 +17,3914.404354325165,5.804949695331016,103.92194425836848,658.1278312631894,0.625231291000091 +18,3953.712874083537,5.863243105806902,104.965530313727,664.7367629209928,0.6315098750019388 +19,3869.3797942626184,5.738179560577639,102.72660535172038,650.5578631696269,0.6180397079988325 +20,3938.661296366054,5.840922046566098,104.56593204053677,662.2061449000541,0.6291057500020543 +21,3894.50071078827,5.77543316126171,103.3935304444266,654.7814366218952,0.6220521659997758 +22,3916.1808364849194,5.807584167561926,103.96910736755976,658.4265107672076,0.6255150409997441 +23,3888.6808425411023,5.7668024631145105,103.23902110690634,653.8029436198848,0.6211225830011244 +24,3892.105981516816,5.771881846247623,103.32995374173188,654.3788113846371,0.6216696659976151 +25,3870.0916956217825,5.7392352899310515,102.74550533411048,650.6775549682176,0.618153416999121 +26,3901.914460742275,5.786427540390991,103.5903551052755,656.0279085591557,0.6232363329982036 +27,3926.983469548554,5.823604163411928,104.25590212085147,660.2427547794662,0.6272404999981518 +28,3886.324979903744,5.7633087862071,103.1764762588225,653.4068530201579,0.6207462910024333 +29,3916.949084411158,5.808723457262651,103.98950327225954,658.5556761001168,0.6256377499994414 +0,2916.0482687880485,2.2582113710164937,0.0,575.7774816277055,0.6059860830027901 +1,2932.965505009728,2.2713122156118564,0.0,579.1178116805643,0.609501666000142 +2,2919.8612386295576,2.2611641657097783,0.0,576.5303574275903,0.6067784590013616 +3,2933.8804048884303,2.272020721479726,0.0,579.2984598384631,0.6096917920003762 +4,2918.380718259096,2.260017638757058,0.0,576.2380267760275,0.606470791000902 +5,2966.9573755043743,2.297635795126894,0.0,585.8295502339719,0.6165655409968167 +6,2934.962721536926,2.272858876248573,0.0,579.5121646529083,0.6099167089996627 +7,2922.4439158080077,2.263164211811369,0.0,577.0403103586106,0.6073151669988874 +8,2922.1078696130057,2.2629039749192494,0.0,576.9739576051463,0.6072453329979908 +9,2921.0800929777424,2.262108056377894,0.0,576.7710217864695,0.6070317499979865 +10,2918.254006797095,2.2599195123757525,0.0,576.2130074348646,0.606444459001068 +11,2967.8171338738516,2.298301598963909,0.0,585.999310629945,0.6167442080004548 +12,2916.291480477712,2.258399716116622,0.0,575.8255040886762,0.6060366249985236 +13,2918.3696938086173,2.2600091013334165,0.0,576.2358499840997,0.6064685000019381 +14,2915.2031535609544,2.257556906947407,0.0,575.6106125390315,0.6058104590010771 +15,2926.952826666765,2.266655948858773,0.0,577.9306006075501,0.6082521669995913 +16,2923.575955600053,2.264040872584856,0.0,577.2638330717093,0.6075504170003114 +17,2932.0540217136954,2.2706063555732476,0.0,578.9378381313084,0.6093122500024037 +18,2922.534541554377,2.263234393122546,0.0,577.0582045288045,0.6073340000002645 +19,2916.138297817622,2.258281090225356,0.0,575.7952579754003,0.6060047920000216 +20,2920.713976167086,2.2618245325577315,0.0,576.698731551264,0.6069556670008751 +21,2918.0346533280804,2.259749643274715,0.0,576.1696958102501,0.6063988749992859 +22,2932.9991895030785,2.271338301156024,0.0,579.1244627271051,0.6095086659988738 +23,2927.830226065184,2.2673354140513218,0.0,578.1038442473796,0.6084344999981113 +24,2929.053695208828,2.2682828784543756,0.0,578.3454198035583,0.6086887499986915 +25,2931.8950260453576,2.270483228041366,0.0,578.9064442320765,0.6092792089984869 +26,2921.046009080129,2.2620816615318335,0.0,576.7642918770431,0.6070246669987682 +27,2935.4316915889335,2.27322205045095,0.0,579.6047633929202,0.6100141660026566 +28,2920.540539483107,2.261690221786506,0.0,576.6644862549181,0.6069196249991364 +29,2925.575770644559,2.2655895455343984,0.0,577.6586991246382,0.6079659999995783 +0,4178.899201105131,5.488284972494792,106.22806997967332,659.321559768019,0.6223265419976087 +1,4202.903787545664,5.519810980826769,106.8382691650386,663.1088589135387,0.6259013330018206 +2,4187.811077355068,5.499989230995769,106.4546108384904,660.7276219549254,0.6236537090007914 +3,4220.901846967973,5.543448420809863,107.29578178350656,665.9484843842789,0.6285816249983327 +4,4221.230040752429,5.543879448439059,107.30412450502828,666.0002648239259,0.6286304999994172 +5,4194.942085168047,5.5093546167433765,106.63588182889438,661.8527094403398,0.6247156669996912 +6,4180.1719617697545,5.489956530695427,106.26042369352054,659.5223682839049,0.6225160829999368 +7,4178.881849655322,5.488262184268359,106.2276289039412,659.3188221607206,0.6223239579994697 +8,4225.91204815074,5.550028481858783,107.42314163983296,666.7389637664328,0.6293277500008116 +9,4383.864746329249,5.757472925493333,111.43831632295228,691.659789639687,0.6528502500004834 +10,4439.673079154838,5.830767833948093,112.85697018358567,700.4648924373064,0.6611612920023617 +11,4255.092473689515,5.5883520889305,108.16491121526325,671.3428756473014,0.6336733329990238 +12,4192.928435888898,5.506710025297929,106.5846946462786,661.5350079788633,0.6244157920009457 +13,4209.357430262039,5.528286760842894,107.00232146137482,664.1270758116204,0.626862417000666 +14,4163.911680836073,5.468601372027502,105.84708559231544,656.9569190420027,0.6200945830023556 +15,4176.033033663473,5.484520741068836,106.1552116930974,658.8693531228598,0.6218997089999903 +16,4195.2266249899585,5.509728312196059,106.64311486196348,661.8976024205651,0.624758041001769 +17,4212.532203964313,5.532456294962468,107.08302455249644,664.6279724948284,0.6273352080024779 +18,4202.266987525019,5.518974650536039,106.82208163959214,663.008388439697,0.6258065000001807 +19,4213.784826429054,5.534101405006669,107.11486635112306,664.825603726765,0.6275217500005965 +20,4172.1875964176015,5.4794704025864895,106.05746026211078,658.2626431830106,0.6213270420012122 +21,4177.193318685504,5.486044581330055,106.18470626393656,659.0524159089396,0.6220724999984668 +22,4240.824025130627,5.56961286885411,107.80220570860396,669.0916857270402,0.6315484590013511 +23,4186.504453143061,5.498273198691004,106.4213963096036,660.5214706523857,0.6234591249994992 +24,4166.655582244405,5.472205027473744,105.9168358630912,657.3898352884422,0.6205032079997181 +25,4192.100534767849,5.505622715682956,106.56364931017674,661.4043867237923,0.6242925000005926 +26,4215.631158990538,5.536526253935483,107.1618003246669,665.1169069637434,0.6277967079986411 +27,4190.863302968051,5.503997818702304,106.5321987439187,661.2091837383214,0.624108249998244 +28,4209.1590568276115,5.528026230524569,106.99727878720144,664.095777645307,0.6268328749974899 +29,4208.55554962219,5.527233624776761,106.98193756872128,664.0005599114347,0.6267430000007153 +0,3011.160313901874,2.5761328304088797,0.0,592.341068570989,0.6206386250014475 +1,2961.1375400963516,2.533336932338099,0.0,582.5008275343196,0.6103282920012134 +2,2951.2970537597243,2.5249181179023688,0.0,580.5650540834723,0.6083000420003373 +3,2958.7874868772706,2.531326395329182,0.0,582.0385362944402,0.6098439159977715 +4,2954.5705431511365,2.5277186806795413,0.0,581.2089992746708,0.6089747500009253 +5,2954.347563281206,2.527527915093001,0.0,581.1651357401341,0.6089287909999257 +6,2980.651934048297,2.5500320484011816,0.0,586.3396058659296,0.6143504579995351 +7,2947.5590080138873,2.5217201140222825,0.0,579.8297235860445,0.6075295829978131 +8,2974.3804888966656,2.544666649662816,0.0,585.1059171428645,0.6130578330012213 +9,2955.905773306222,2.528861007849166,0.0,581.4716593705813,0.6092499580008734 +10,2951.4569565066736,2.525054919225828,0.0,580.5965093877809,0.6083330000001297 +11,2950.4546751484963,2.524197439170652,0.0,580.399345388252,0.6081264170024951 +12,2949.928463218915,2.5237472499790345,0.0,580.2958314918899,0.608017957998527 +13,2950.046927491076,2.5238485995150706,0.0,580.3191352174455,0.6080423749990587 +14,3009.9004890583597,2.575055014616423,0.0,592.0932418476579,0.620378958999936 +15,2981.214732720649,2.550513538586232,0.0,586.4503169315053,0.6144664579987875 +16,2950.6048744667123,2.5243259389363324,0.0,580.4288918804264,0.6081573750016105 +17,2971.274990049003,2.5420098075480584,0.0,584.4950182487148,0.6124177499987127 +18,2959.670498591905,2.5320818368303217,0.0,582.2122381396035,0.6100259159975394 +19,2954.5956119482184,2.527740127744609,0.0,581.2139306886453,0.6089799170003971 +20,2952.694749715214,2.5261138863313177,0.0,580.840002153155,0.6085881250000966 +21,2960.1518321724216,2.5324936313247637,0.0,582.3069237815822,0.6101251250001951 +22,2960.790438868512,2.5330399774186336,0.0,582.4325474393503,0.6102567500020086 +23,2954.972832607831,2.528062850689997,0.0,581.2881357343118,0.6090576669994334 +24,2953.19205026127,2.5265393410164636,0.0,580.9378287402986,0.6086906249984168 +25,2954.448037407509,2.527613873550338,0.0,581.1849005301599,0.6089495000014722 +26,2950.6218554669945,2.5243404666624443,0.0,580.4322323016607,0.6081608750027954 +27,2951.2634944713263,2.5248894069817953,0.0,580.5584524606168,0.608293125002092 +28,2960.638822838687,2.532910265616095,0.0,582.4027222584376,0.6102255000005243 +29,2956.279961657592,2.529181136569073,0.0,581.5452679150599,0.6093270830024267 +0,2907.372123848847,2.7694024935956194,0.0,580.3733370313519,0.6102495829982217 +1,2907.5668667104446,2.7695879949155553,0.0,580.4122118501346,0.6102904590006801 +2,2898.3695072087858,2.7608270970141646,0.0,578.576223198366,0.6083599579978909 +3,2914.686614988755,2.7763698748386605,0.0,581.8334650957067,0.6117848750000121 +4,2910.7027239732033,2.7725750397633084,0.0,581.0381956824457,0.6109486669993203 +5,2906.9814613916706,2.7690303700637937,0.0,580.2953524926461,0.6101675840000098 +6,2915.317280533377,2.776970612087798,0.0,581.9593593572911,0.6119172500002605 +7,2898.0955685019885,2.760566158095657,0.0,578.5215392038054,0.6083024590006971 +8,2905.2252406689972,2.7673574909683456,0.0,579.9447734687157,0.6097989579975547 +9,2901.66953524945,2.7639705218994015,0.0,579.2349790110625,0.6090526250009134 +10,2895.298362550154,2.757901693827541,0.0,577.96315737875,0.6077153330006695 +11,2889.052251005787,2.751951992121195,0.0,576.7163006139285,0.6064042910002172 +12,2889.1781125609828,2.752071880903903,0.0,576.7414252583433,0.6064307090018701 +13,2889.4341853909805,2.7523158017725526,0.0,576.7925428437565,0.6064844579996134 +14,2894.993651642264,2.757611443005772,0.0,577.9023305981011,0.6076513750012964 +15,2904.3412798462223,2.766515478593406,0.0,579.7683160801652,0.6096134170002188 +16,2896.157315908294,2.7587198854695405,0.0,578.1346227452673,0.6078956249984913 +17,2894.473754561532,2.757116217692169,0.0,577.7985480787662,0.607542250003462 +18,2911.0316514954957,2.7728883579976604,0.0,581.1038566145941,0.6110177080008725 +19,2906.914562020529,2.7689666454088933,0.0,580.2819979547264,0.6101535420020809 +20,2907.2812079807013,2.769315892148944,0.0,580.3551882896232,0.610230500002217 +21,2959.5925028935953,2.819144749413765,0.0,590.7976357988317,0.6212104999976873 +22,2895.6411873297047,2.7582282498234405,0.0,578.0315924991437,0.6077872909991129 +23,2899.479378510701,2.7618842992642243,0.0,578.7977771253243,0.608592916996713 +24,2909.7058031358415,2.771625427902391,0.0,580.8391890714963,0.6107394159989781 +25,2903.555972013276,2.765767437620955,0.0,579.6115519274565,0.609448582999903 +26,2900.7097420998016,2.7630562758281236,0.0,579.0433838765588,0.6088511670022854 +27,2937.1045203796166,2.797723936323041,0.0,586.3085560048551,0.6164903329990921 +28,2890.398152009255,2.753234023260093,0.0,576.9849710913983,0.6066867919980723 +29,2894.669483589745,2.7573026583800866,0.0,577.8376197573883,0.6075833329996385 +0,2898.9456158280555,2.3850365008983703,0.0,575.5888088834733,0.6061712500013527 +1,2904.3301820656925,2.3894665208849997,0.0,576.6579203735799,0.6072971659996256 +2,2910.7981646482913,2.394787895133087,0.0,577.942145358785,0.6086496249990887 +3,2908.062840056365,2.392537473821997,0.0,577.3990436823753,0.6080776670023624 +4,2913.1550876631195,2.396726995814894,0.0,578.4101149899943,0.6091424590013048 +5,2906.109832678022,2.3909306848369125,0.0,577.0112719406416,0.6076692919996276 +6,2948.840462135658,2.4260862636123064,0.0,585.4954849517699,0.6166042919976462 +7,2913.1317735220664,2.3967078146763807,0.0,578.4054859418999,0.609137584000564 +8,2941.7471824348645,2.420250441475767,0.0,584.0871065428183,0.6151210829993943 +9,2911.6807159487107,2.395513992598981,0.0,578.1173768805539,0.6088341670001682 +10,2914.11176117064,2.3975140755111877,0.0,578.6000635567,0.6093424999999115 +11,2917.1047368852537,2.3999764729727615,0.0,579.1943221440931,0.609968332999415 +12,2915.358964719502,2.398540181682978,0.0,578.847697179492,0.6096032910027134 +13,2923.4081240468904,2.4051624303697245,0.0,580.4458665292269,0.6112863749985991 +14,2910.2099310346016,2.394303940335161,0.0,577.8253509342189,0.6085266250011045 +15,2905.095564875295,2.3900962208449075,0.0,576.8098879639044,0.6074572079996869 +16,2912.9753464103196,2.396579118101595,0.0,578.3744271685183,0.609104874998593 +17,2924.7489858675403,2.406265591590636,0.0,580.7120961038735,0.6115667500016571 +18,2916.456326488493,2.3994430092004877,0.0,579.0655795537177,0.6098327500003506 +19,2924.273932219395,2.40587475283722,0.0,580.6177736847156,0.6114674160016875 +20,2908.7903606960253,2.3931360236089523,0.0,577.5434936976271,0.608229792000202 +21,2919.3773703105207,2.4018462264592806,0.0,579.6455559855065,0.6104435419983929 +22,2909.838100418447,2.3939980258030507,0.0,577.7515235604695,0.6084488749984303 +23,2919.9849343592978,2.40234608489921,0.0,579.7661884890093,0.6105705840018345 +24,2912.9209467594605,2.396534362121274,0.0,578.3636260586007,0.6090934999992896 +25,2919.1262950028813,2.401639660399564,0.0,579.5957047097614,0.6103910420024476 +26,2921.2881300705835,2.4034182572512055,0.0,580.0249394166243,0.6108430829990539 +27,2900.4514699927317,2.386275405529134,0.0,575.8877978676978,0.6064861250015383 +28,2908.165460518293,2.3926219022935427,0.0,577.4194190868417,0.6080991250018997 +29,2973.5114011729834,2.4463836744344314,0.0,590.3939267635094,0.6217630000028294 +0,2943.7028289093982,2.50613215469896,0.0,584.7975845251533,0.6125079169978562 +1,2937.589815190212,2.500927818142527,0.0,583.5831699374982,0.6112359580001794 +2,2933.0733923715743,2.497082745080516,0.0,582.6859349553881,0.6102962080003635 +3,2938.7734904246427,2.501935544376505,0.0,583.8183194951094,0.6114822499985166 +4,2936.279185096879,2.499812008425744,0.0,583.3227994594527,0.6109632500010775 +5,2933.95348805359,2.4978320177537796,0.0,582.8607752361186,0.6104793329977838 +6,2932.703735360561,2.496768036234089,0.0,582.6124986951039,0.6102192920006928 +7,2939.2781186861125,2.5023651614899647,0.0,583.9185692164783,0.6115872500013211 +8,2939.540246614039,2.5025883250587766,0.0,583.970643691382,0.6116417919984087 +9,2937.412397506911,2.5007767729498647,0.0,583.5479240452744,0.6111990419994981 +10,2934.724651346458,2.498488550439688,0.0,583.0139749499331,0.6106397920011659 +11,2931.3961042040687,2.495654779673139,0.0,582.3527239874613,0.6099472080022679 +12,2925.797138443967,2.4908880797241335,0.0,581.2404304433608,0.6087822090012196 +13,2934.7404678341923,2.498502015864287,0.0,583.0171170618786,0.6106430830004683 +14,2943.74127198081,2.506164883348212,0.0,584.8052216463608,0.6125159160001203 +15,2960.0932313018448,2.5200861836385533,0.0,588.0537106647776,0.6159183329982625 +16,2935.8202136923505,2.499421261444194,0.0,583.2316199537979,0.6108677500014892 +17,2955.5898278876352,2.5162521946940535,0.0,587.1590621245417,0.6149812919975375 +18,2933.786480155561,2.4976898349698287,0.0,582.8275973574264,0.6104445830023906 +19,2937.581404707823,2.5009206578476273,0.0,583.581499106551,0.611234207997768 +20,2937.08519173686,2.500498205122476,0.0,583.4829211713127,0.6111309589978191 +21,2937.8499438502236,2.501149279627297,0.0,583.6348472367644,0.6112900840016664 +22,2932.1196065289946,2.496270736019917,0.0,582.4964553477943,0.6100977499991131 +23,2933.2654346713525,2.49724624099383,0.0,582.7240861817735,0.6103361670029699 +24,2932.829690568022,2.496875268659988,0.0,582.6375210242461,0.6102455000000191 +25,2933.751636773479,2.4976601709292345,0.0,582.8206753524338,0.6104373330017552 +26,2928.835317675668,2.493474644709406,0.0,581.8439967607908,0.6094143749978684 +27,2926.0282197245597,2.491084811616346,0.0,581.2863371746356,0.6088302909993217 +28,2926.2456952900725,2.491269960233333,0.0,581.3295409872475,0.6088755420023517 +29,2941.411773412139,2.50418165623373,0.0,584.3424422099534,0.6120312079983705 +0,2916.2755902573767,2.778202283975463,0.0,582.3513655012664,0.6122291249994305 +1,2900.820431693914,2.7634788617571866,0.0,579.2651233355606,0.6089845419992344 +2,2911.0644603660025,2.773237879028731,0.0,581.310754449902,0.6111351250001462 +3,2936.678307023689,2.7976390184558526,0.0,586.4255860613846,0.6165123750033672 +4,2915.8798349535887,2.7778252660103053,0.0,582.2723370849071,0.6121460419999494 +5,2910.084396408831,2.772304216951885,0.0,581.1150453798662,0.6109293750014331 +6,2915.2740911151363,2.7772482015788387,0.0,582.1513760369714,0.6120188749991939 +7,2892.5686789569486,2.755617794587394,0.0,577.617330002789,0.6072522079994087 +8,2906.507698811423,2.768896860847611,0.0,580.4008142774305,0.6101784999991651 +9,2915.6827503916365,2.777637512568216,0.0,582.2329812489377,0.6121046669977659 +10,2904.9220910796753,2.7673863249309965,0.0,580.0841841102347,0.6098456250001618 +11,2894.3509758883833,2.7573157073025634,0.0,577.9732370560241,0.607626375000109 +12,2900.9871449825287,2.7636376818771864,0.0,579.2984143289071,0.609019540999725 +13,2892.295385203787,2.75535744013675,0.0,577.5627559457732,0.6071948339995288 +14,2910.23364716231,2.772446401313879,0.0,581.1448492778177,0.6109607079997659 +15,2891.41971532232,2.754523229517963,0.0,577.3878933391991,0.6070110000000568 +16,2895.9437286818206,2.7588330499924374,0.0,578.2912940213064,0.60796074999962 +17,2906.9187397924825,2.7692884407779172,0.0,580.4828950922193,0.6102647920015443 +18,2900.094412693677,2.76278721668379,0.0,579.1201445284888,0.6088321249990258 +19,2896.362705431768,2.7592321899665624,0.0,578.3749595305814,0.608048707999842 +20,2907.473272598668,2.7698167188027485,0.0,580.5936298039785,0.6103812080000353 +21,2890.8292571438096,2.753960727035136,0.0,577.2699846862324,0.6068870419985615 +22,2905.7342461477933,2.768160027894024,0.0,580.2463634373522,0.6100161249996745 +23,2903.270591612837,2.765813016974066,0.0,579.7543960158409,0.6094989170014742 +24,2895.652567517612,2.7585556740770367,0.0,578.2331520191841,0.6078996249998454 +25,2906.4130267830265,2.768806671139067,0.0,580.3819092105721,0.6101586250006221 +26,2896.5895658235877,2.7594483094789988,0.0,578.4202613050076,0.6080963339991285 +27,2892.58456004303,2.755632923771265,0.0,577.6205012984635,0.6072555419996206 +28,2916.6096217743934,2.778520500513913,0.0,582.4180682884464,0.612299249998614 +29,2895.4785043379434,2.7583898520522157,0.0,578.1983933253548,0.6078630829979375 +0,2916.763315644649,1.67067423255281,0.0,579.3229968800124,0.6117394579996471 +1,2907.72799268742,1.6654989476174604,0.0,577.5284150758306,0.6098444589988503 +2,2907.1252338209315,1.6651536972156595,0.0,577.4086960465021,0.6097180409997236 +3,2928.083899467836,1.677158477465453,0.0,581.5714736459205,0.6141137500017066 +4,2921.6121588451874,1.673451570483995,0.0,580.28606658103,0.6127564170019468 +5,2911.317883364726,1.6675551781727784,0.0,578.2414335831926,0.6105973750018165 +6,2904.907730762028,1.6638835477999545,0.0,576.9682590351122,0.6092529589986952 +7,2908.4628533022956,1.6659198637360932,0.0,577.6743719491277,0.6099985830005608 +8,2908.3609376709132,1.6658614881324467,0.0,577.6541296248072,0.60997720800151 +9,2908.596361588615,1.6659963350948042,0.0,577.7008891574743,0.61002658399957 +10,2905.8225827341103,1.6644075600186214,0.0,577.1499655120572,0.6094448330004525 +11,2903.827782618789,1.6632649711997465,0.0,576.7537614132241,0.6090264589984145 +12,2910.385942948952,1.6670213779735783,0.0,578.0563330261181,0.6104019170015818 +13,2912.4526632959505,1.6682051615226596,0.0,578.4668218095974,0.6108353749987145 +14,2910.3982586553093,1.6670284322083724,0.0,578.0587791525752,0.6104045000029146 +15,2906.5141405129557,1.6648036729823443,0.0,577.2873216433577,0.6095898749990738 +16,2912.7005984074112,1.6683471746917915,0.0,578.5160662961256,0.6108873749981285 +17,2918.020670895301,1.6713944250371169,0.0,579.5727308258707,0.6120031659993401 +18,2917.087543262154,1.6708599448192605,0.0,579.3873944655268,0.6118074590012839 +19,2910.9477686787436,1.667343182545418,0.0,578.1679219794491,0.6105197500000941 +20,2901.847477191858,1.6621306847008683,0.0,576.3604362268732,0.608611125000607 +21,2912.9560812579944,1.668493511082214,0.0,578.5668099028686,0.6109409580021747 +22,2892.3754832866116,1.6567052818018693,0.0,574.4791235176162,0.6066245420006453 +23,2902.3459316645735,1.6624161912550683,0.0,576.4594384796075,0.6087156670000695 +24,2902.6687622496565,1.6626011033242394,0.0,576.5235585887133,0.6087833749988931 +25,2898.327513763435,1.66011450732787,0.0,575.6613065610122,0.6078728749998845 +26,2919.6262939438634,1.6723140996092831,0.0,579.8916371805151,0.6123399170028279 +27,2918.693953013082,1.6717800700016507,0.0,579.7064570737724,0.6121443750016624 +28,2906.2962007838532,1.664678840676717,0.0,577.2440347930584,0.6095441659999778 +29,2906.7459836807934,1.664936468949855,0.0,577.3333699730516,0.6096384999982547 +0,3900.862668713866,4.395375737481586,104.35687546414614,657.3084625597462,0.6257157920008467 +1,3903.728343298676,4.398604694153814,104.4335387233186,657.7913383530023,0.6261754590013879 +2,3896.366740257168,4.390309859358135,104.23659923657875,656.550883513103,0.6249946249990899 +3,3867.204522235971,4.357450741663593,103.45644412404316,651.63695182151,0.620316874999844 +4,3913.4568692089815,4.409566507060116,104.6937987358061,659.4306276467174,0.6277359580017219 +5,3883.288345022032,4.37557351358448,103.88672266343758,654.3471299860428,0.6228967919996649 +6,3913.1526881477103,4.40922376491048,104.68566120628368,659.3793721161582,0.6276871660011238 +7,3916.955319181695,4.413508456171062,104.78739016394022,660.0201282183089,0.6282971250002447 +8,3938.5439700067855,4.437833904180963,105.36493527047833,663.6578883979713,0.6317600410002342 +9,3900.6730418076754,4.395162071538068,104.35180251666898,657.276509789102,0.6256853749982838 +10,3932.1188059921474,4.430594220957613,105.1930476400088,662.5752266795704,0.6307294159996673 +11,3893.858755217265,4.387483936599365,104.16950497956373,656.1282796096323,0.6245923329988727 +12,3865.462052044275,4.355487378209325,103.4098291159699,651.3433397413037,0.6200373749998107 +13,3907.906581059422,4.403312607874106,104.5453160081625,658.4953854502642,0.6268456669968145 +14,3880.918548161949,4.372903297146174,103.82332525194025,653.9478112550415,0.6225166660005925 +15,3906.1908620137183,4.401379386813467,104.4994166535864,658.2062810280139,0.6265704580000602 +16,3930.222044592053,4.428457006770445,105.14230499408012,662.2556160124893,0.6304251670007943 +17,3896.586759067243,4.390557769992711,104.24248523603904,656.5879574216372,0.6250299169987557 +18,3915.668204138413,4.41205817332005,104.75295693321996,659.8032450101347,0.6280906659994798 +19,3906.8155827688274,4.402083303532128,104.51612934295218,658.3115485736682,0.6266706659989723 +20,3919.336019717822,4.4161909585464025,104.85107927336686,660.4212842553484,0.6286789999976463 +21,3891.139591523075,4.384420064029962,104.09676121719622,655.6700913935715,0.6241561669994553 +22,3941.683689330291,4.4413716462931685,105.4489298445666,664.1869416502057,0.6322636660006538 +23,3892.6048936178126,4.386071122737294,104.13596135347484,655.9169997184408,0.6243912079989968 +24,3895.8038444594863,4.38967560515798,104.22154050428114,656.4560336804434,0.6249043339994387 +25,3904.985839441688,4.400021603311193,104.46717958164604,658.003230676992,0.6263771669982816 +26,3869.997206323634,4.360597454820098,103.53115472277416,652.1075284708238,0.6207648339986918 +27,3899.157859558534,4.393454809360101,104.31126797374662,657.0211964906696,0.6254423329992278 +28,3935.1309914448975,4.433988261707112,105.27363039537946,663.0827900461999,0.6312125839976943 +29,3929.1793616468863,4.427282142719007,105.1144108733437,662.0799204338879,0.6302579160001187 +0,2884.6844519453502,1.803721085721138,0.0,577.4579653693895,0.6114691249968018 +1,2878.9248167003684,1.800119729763321,0.0,576.304997928672,0.6102482499991311 +2,2879.310676292539,1.8003609981218258,0.0,576.3822395468542,0.6103300409995427 +3,2875.8271035787584,1.7981828071750647,0.0,575.6848957489356,0.6095916249978472 +4,2882.651347302002,1.8024498362046744,0.0,577.0509771908595,0.6110381660000712 +5,2883.2398715165705,1.8028178256860057,0.0,577.1687883418456,0.6111629160004668 +6,2881.543888617557,1.8017573699699876,0.0,576.8292854081693,0.6108034169992607 +7,2872.177626013424,1.7959008800713845,0.0,574.9543410124832,0.6088180419974378 +8,2883.9494831095662,1.8032615280785136,0.0,577.3108388411359,0.6113133329999982 +9,2895.4779954549176,1.810470018695324,0.0,579.6186237630511,0.6137570419996337 +10,2874.6801300572924,1.797465633300454,0.0,575.4552938610786,0.6093485000019427 +11,2881.051089801741,1.8014492351878608,0.0,576.7306366282913,0.6106989579966466 +12,2875.9965419420855,1.7982887527485771,0.0,575.7188140281,0.6096275409981899 +13,2871.278917718478,1.7953389402375792,0.0,574.7744370153198,0.6086275420020684 +14,2863.270742560313,1.79033162847383,0.0,573.1713554269551,0.6069300420022046 +15,2870.8382109642343,1.795063377319523,0.0,574.6862160574059,0.6085341250000056 +16,2871.3646181651693,1.7953925265848307,0.0,574.7915925851584,0.608645708001859 +17,2876.165985025137,1.798394701273215,0.0,575.752733252062,0.6096634579989768 +18,2874.9411706166497,1.797628855437566,0.0,575.5075491260119,0.6094038330011244 +19,2924.685426053381,1.8287326950149667,0.0,585.4653857670138,0.6199481670009845 +20,2871.220537061793,1.7953024362721663,0.0,574.7627503383928,0.6086151670024265 +21,2874.621749383445,1.7974291293243096,0.0,575.4436071807161,0.6093361249986629 +22,2881.6203519457463,1.80180518057792,0.0,576.8445918857607,0.6108196249988396 +23,2886.2833366065033,1.8047208283359717,0.0,577.7780311161533,0.6118080419983016 +24,2881.1031818804754,1.8014818070626624,0.0,576.7410644536909,0.6107100000008359 +25,2878.037119333654,1.7995646747877228,0.0,576.1272981061139,0.610060083999997 +26,2874.468822727066,1.7973335081084454,0.0,575.4129942255333,0.609303708999505 +27,2871.225646240686,1.7953056309140252,0.0,574.7637730970679,0.6086162499996135 +28,2876.9736855690508,1.7988997362350192,0.0,575.9144192598336,0.6098346670005412 +29,2864.3854758160423,1.7910286433161144,0.0,573.3945034379442,0.6071663330003503 +0,2903.2117271703382,1.8099823735475924,0.0,580.0658325299006,0.6133285420000902 +1,2891.2179356716797,1.8025049474262345,0.0,577.6694559288594,0.610794749998604 +2,2882.045529469826,1.7967864896944052,0.0,575.8367961231736,0.6088569999992615 +3,2890.2822721394496,1.8019216160470384,0.0,577.4825090242601,0.6105970829994476 +4,2888.0888706578953,1.8005541587642735,0.0,577.044264288417,0.6101337079999212 +5,2892.591844011055,1.8033614987600093,0.0,577.9439647692726,0.6110849999968195 +6,2897.2602922777937,1.8062720026669536,0.0,578.8767273732277,0.6120712499978254 +7,2880.393327159537,1.7957564383787636,0.0,575.5066837515349,0.6085079579970625 +8,2885.2467808984193,1.798782282355623,0.0,576.4764107119706,0.6095332920012879 +9,2886.24200176297,1.7994027442412532,0.0,576.6752572562801,0.6097435410010803 +10,2881.393286312906,1.7963798543097922,0.0,575.7064770126901,0.6087192080012755 +11,2888.1411383469012,1.8005867446053,0.0,577.0547074470245,0.6101447500004724 +12,2884.7606090353547,1.798479182690371,0.0,576.3792728822141,0.6094305839978915 +13,2877.2999624761123,1.7938279067806189,0.0,574.8886250878775,0.607854458001384 +14,2922.8568793298064,1.822229974644518,0.0,583.9909618740375,0.6174787499985541 +15,2883.1324672905293,1.7974641317272628,0.0,576.053967845778,0.6090866249978717 +16,2883.6356041335316,1.797777808063299,0.0,576.1544953026565,0.6091929169997456 +17,2905.045772924987,1.8111257935941316,0.0,580.4322774803712,0.6137159999998403 +18,2881.764868765372,1.7966115141928751,0.0,575.7807197152202,0.6087977080023848 +19,2891.0660697041267,1.8024102678953409,0.0,577.6391128925327,0.6107626670018362 +20,2884.9724346921575,1.7986112435736643,0.0,576.4215959497377,0.6094753339966701 +21,2882.54195887732,1.797095984337481,0.0,575.9359834248971,0.6089618749974761 +22,2876.5603524501803,1.7933668032731798,0.0,574.7408499526972,0.6076982089980447 +23,2878.608193025542,1.7946435118613102,0.0,575.1500114124414,0.6081308329994499 +24,2879.1152728975594,1.7949596464448625,0.0,575.2513266921258,0.6082379580002453 +25,2898.859834013423,1.8072692232003884,0.0,579.1963180871467,0.6124091669989866 +26,2873.1725193228494,1.791254687857138,0.0,574.0639560751043,0.6069825000013225 +27,2880.2452101459908,1.7956640961009918,0.0,575.4770897615512,0.608476666999195 +28,2882.0064778239716,1.7967621432817775,0.0,575.828993548786,0.6088487500019255 +29,2884.240507212415,1.7981549296835506,0.0,576.2753557982135,0.60932070799754 +0,2892.5883041316583,1.3350972406363306,0.0,576.2613464896563,0.6103283330012346 +1,2885.9569018468324,1.3320364639335505,0.0,574.9402387453188,0.608929124999122 +2,2893.5482310722837,1.3355403025846249,0.0,576.4525831030887,0.6105308749974938 +3,2875.852308278687,1.3273726080466577,0.0,572.9272019481385,0.6067970830008562 +4,2883.413622898875,1.330862593216886,0.0,574.4335667972384,0.6083924999984447 +5,2887.2685299862255,1.332641856379874,0.0,575.201541259963,0.6092058750000433 +6,2885.339396330053,1.3317514493290348,0.0,574.8172193166446,0.6087988330000371 +7,2885.240660461467,1.3317058770000887,0.0,574.7975491601633,0.608777999997983 +8,2875.401079759792,1.3271643399189006,0.0,572.8373082174955,0.6067018749999988 +9,2886.729423569729,1.3323930275064233,0.0,575.09414049746,0.6090921249997336 +10,2893.5608710549573,1.3355461366696086,0.0,576.4551012400199,0.6105335419997573 +11,2886.450391564161,1.3322642380550689,0.0,575.0385517505191,0.6090332499989017 +12,2890.762257094731,1.334254414038162,0.0,575.8975614592217,0.6099430419999408 +13,2886.532937651202,1.3323023378610026,0.0,575.0549965792553,0.6090506670007017 +14,2885.526801565024,1.3318379477124145,0.0,574.8545541813708,0.6088383749993227 +15,2889.1212408691845,1.3334969898891955,0.0,575.570638260924,0.6095967920009571 +16,2872.3532493423795,1.3257575894406517,0.0,572.2301195423212,0.6060587909996684 +17,2882.114833799037,1.3302631267318406,0.0,574.1748220756307,0.6081184590002522 +18,2883.0076129826266,1.3306751960964316,0.0,574.3526815151223,0.6083068330008246 +19,2889.566943244897,1.3337027073814187,0.0,575.6594310735048,0.609690834000503 +20,2889.4176522388434,1.3336338009248898,0.0,575.6296893242056,0.609659334000753 +21,2892.6435986850265,1.3351227622791857,0.0,576.2723622687535,0.6103400000029069 +22,2881.77754512887,1.3301074484515285,0.0,574.1076274378909,0.6080472920002649 +23,2921.4931000362635,1.34843848010628,0.0,582.0197589758731,0.6164271670022572 +24,2882.782098242999,1.3305711079667213,0.0,574.3077544761361,0.6082592499988095 +25,2893.6888300427822,1.3356051971627023,0.0,576.4805932253515,0.6105605410011776 +26,2896.595464336293,1.33694677744195,0.0,577.0596528133816,0.6111738330000662 +27,2903.003920637703,1.3399046516449709,0.0,578.3363452662605,0.6125260000007984 +28,2892.5888965608005,1.3350975140767345,0.0,576.2614645133705,0.6103284580021864 +29,2898.673296586618,1.3379058175168723,0.0,577.4735984857201,0.6116122500025085 +0,2862.093422249503,1.6155676119463367,0.0,571.7460807910495,0.6039815000003728 +1,2896.950584654971,1.635243455574937,0.0,578.7093216964283,0.6113373329972092 +2,2904.8413288599795,1.63969754874767,0.0,580.2856161802723,0.6130024999984016 +3,2903.1523766686873,1.6387441848787043,0.0,579.948222652686,0.6126460840023356 +4,2898.8079648571907,1.6362918921055023,0.0,579.0803612449289,0.6117292919989268 +5,2884.0148956309367,1.6279416393368726,0.0,576.125223831443,0.6086075419989356 +6,2884.313628671702,1.6281102653577872,0.0,576.1849002361099,0.6086705829984567 +7,2897.8450162634413,1.6357483359280776,0.0,578.8879978230366,0.6115260830010811 +8,2889.4020180110374,1.6309825115778775,0.0,577.201382311673,0.6097443750004459 +9,2896.5333838655374,1.6350079579919976,0.0,578.6259795824333,0.6112492920001387 +10,2898.9647356172527,1.6363803845916272,0.0,579.1116785551716,0.611762374999671 +11,2889.262425086342,1.6309037154749126,0.0,577.1734965316421,0.6097149170018383 +12,2895.554442105806,1.6344553741424597,0.0,578.430421285804,0.611042707998422 +13,2900.6116365190105,1.6373100117436556,0.0,579.4406717070763,0.6121099170013622 +14,2883.1171043015415,1.627434862520022,0.0,575.9458765501979,0.6084180830002879 +15,2916.7749796828107,1.646433743873855,0.0,582.6695418880922,0.6155208330019377 +16,2894.9259706445564,1.6341006204751145,0.0,578.3048746869175,0.6109100829999079 +17,2893.312240726907,1.6331897173686274,0.0,577.9825079365178,0.6105695410005865 +18,2895.925838535033,1.6346650165103809,0.0,578.5046132919696,0.6111210829985794 +19,2893.820472150368,1.6334765990688314,0.0,578.084034784747,0.6106767919991398 +20,2888.035298098883,1.6302110383591792,0.0,576.9283595140107,0.6094559589982964 +21,2886.1550109843643,1.6291496715499192,0.0,576.5527439662684,0.609059165999497 +22,2897.8256681001103,1.6357374144585737,0.0,578.8841327372679,0.6115219999992405 +23,2894.7342519049303,1.6339924008817444,0.0,578.2665759936801,0.6108696250012144 +24,2894.0532612962406,1.6336080016993535,0.0,578.1305379075203,0.61072591699849 +25,2894.1069651130647,1.6336383159254455,0.0,578.1412660502684,0.610737250000966 +26,2887.702792283546,1.630023348599695,0.0,576.8619364911697,0.6093857910018414 +27,2890.446709378434,1.6315722091483782,0.0,577.4100750784087,0.6099648340023123 +28,2898.0894578848865,1.635886316038562,0.0,578.936828702545,0.6115776669976185 +29,2895.6261198529255,1.6344958341238998,0.0,578.4447399906642,0.611057834001258 +0,2874.048695070283,2.5158684729940277,0.0,572.7904235291535,0.6059792500018375 +1,2893.5260643676775,2.5329184622430714,0.0,576.6722125288403,0.6100859590005712 +2,2894.0538972131753,2.533380513570621,0.0,576.7774082409534,0.6101972500000556 +3,2891.773195091788,2.5313840454615972,0.0,576.3228702450265,0.6097163750018808 +4,2897.009265067062,2.535967566748408,0.0,577.366405361154,0.6108203750009125 +5,2894.4746230181945,2.5337488061435476,0.0,576.8612577987079,0.6102859579987125 +6,2907.052374543719,2.544759047055087,0.0,579.3679709367653,0.6129379160011013 +7,2882.407710851401,2.5231857408973335,0.0,574.4563536150863,0.6077417080014129 +8,2901.014967681613,2.539474056021684,0.0,578.1647314650421,0.6116649579998921 +9,2894.161796293562,2.533474965656654,0.0,576.7989122468038,0.6102199999986624 +10,2892.0727798560765,2.531646294276225,0.0,576.3825767087042,0.6097795409987157 +11,2929.9184866037235,2.5647754547556207,0.0,583.9251275478487,0.6177591250016121 +12,2889.1018033947157,2.529045577724008,0.0,575.7904688336646,0.6091531249985565 +13,2885.9492149984017,2.526285882744512,0.0,575.1621661727406,0.6084884170013538 +14,2889.232031671636,2.5291595762156684,0.0,575.8164229902593,0.6091805830001249 +15,2892.005000261077,2.5315869617581415,0.0,576.3690684118569,0.6097652499993274 +16,2905.1765904193553,2.5431170337695344,0.0,578.9941320436086,0.6125424160018156 +17,2888.839369104941,2.528815849481404,0.0,575.7381663628518,0.6090977919993747 +18,2904.8236489370047,2.542808077853171,0.0,578.9237917249135,0.6124679999993532 +19,2894.970446608838,2.534182837390828,0.0,576.9600741496513,0.610390500001813 +20,2892.485803338709,2.532007844433793,0.0,576.4648912136568,0.6098666249999951 +21,2887.1623848924046,2.527347860537005,0.0,575.4039477746288,0.608744207998825 +22,2893.3857528692147,2.532795637158032,0.0,576.6442488124397,0.6100563750005676 +23,2883.490458030141,2.5241335499918303,0.0,574.6721423093243,0.6079700000009325 +24,2887.546159423431,2.527683806912932,0.0,575.480433039664,0.6088251250002941 +25,2894.936260383018,2.534152911646042,0.0,576.953260923835,0.610383292001643 +26,2887.1204915992735,2.5273111882232757,0.0,575.3955985503598,0.6087353750008333 +27,2890.892017617972,2.5306126853140505,0.0,576.1472538682765,0.6095305829985591 +28,2884.70284062916,2.5251948386064984,0.0,574.9137670053716,0.6082256250010687 +29,2916.6658701624324,2.553174454415398,0.0,581.2839155888109,0.6149648749997141 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/without_smell.csv b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/without_smell.csv new file mode 100644 index 000000000..d933244f5 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/campaign2/results/n500/raw/mac/without_smell.csv @@ -0,0 +1,901 @@ +i,cpu_mj,gpu_mj,ane_mj,dram_mj,time_s +0,552.3285011823791,0.5362087263465849,19.57161851165035,96.61810987857528,0.1129105830004846 +1,549.268110293321,0.5332376533397934,19.46317434690246,96.08275966116403,0.1122849579987814 +2,533.9887801639795,0.5184042523283583,18.92175520998508,93.40996621641608,0.1091614580000168 +3,529.5134553196716,0.5140595403867936,18.763173224117967,92.62710343344536,0.1082465830004366 +4,562.6710545652048,0.5462494310444316,19.938104233121752,98.42731935631852,0.1150248750018363 +5,545.9411248293779,0.5300077663533794,19.345283471898348,95.50077439979955,0.1116048340009001 +6,571.9557705296131,0.5552631714382507,20.26710575749615,100.0514827035298,0.1169229170009202 +7,582.6423693083759,0.5656378805250903,20.6457826391658,101.92087559711472,0.1191075409988116 +8,541.3049793499771,0.5255069273466193,19.181002848151604,94.68977947126896,0.1106570830015698 +9,568.637135226809,0.5520413909125019,20.14951076830632,99.47095812504644,0.1162444999972649 +10,544.5551303581399,0.528662222300239,19.29617111395872,95.2583241807243,0.1113215000004856 +11,538.6854559697524,0.5229638550765147,19.088180710292782,94.23154963659948,0.1101215830021828 +12,547.2790090859439,0.5313066042943452,19.392691056743597,95.73480876128733,0.111878332998458 +13,533.6651137063261,0.5180900321158436,18.91028617222829,93.35334766187356,0.1090952919985284 +14,539.7671454695724,0.5240139753360329,19.1265100997652,94.42076818086144,0.1103427090019977 +15,553.593014338471,0.5374363345316143,19.61642621040392,96.83930952841526,0.1131690830006846 +16,538.8764390137919,0.523149264257064,19.094948145382837,94.26495805331972,0.1101606249976612 +17,549.6421224843151,0.5336007499392659,19.476427372783203,96.14818512968148,0.1123614160023862 +18,554.1370191460595,0.5379644624923823,19.63570288097195,96.93447158534612,0.1132802920001267 +19,534.2826950872756,0.5186895893086833,18.93217000976694,93.46138037355836,0.1092215419994317 +20,553.3172477464925,0.5371686162213385,19.606654492078857,96.79107003538245,0.1131127090011432 +21,563.6326862359978,0.5471829973773414,19.972179404272964,98.59553633992972,0.1152214579997235 +22,543.5248089376151,0.5276619709363414,19.25966193917646,95.078091388092,0.1111108749973937 +23,563.5269024905969,0.5470803009434834,19.96843098443714,98.5770317262539,0.1151998329987691 +24,536.9986247763089,0.5213262542576872,19.028408280405586,93.936474439057,0.1097767500032205 +25,547.0360562434645,0.5310707420602774,19.384082085200124,95.69230933498623,0.1118286669989174 +26,543.3821317577293,0.5275234578073945,19.2546062099699,95.0531330536699,0.1110817080007109 +27,544.085117892408,0.5282059272057841,19.279516343011117,95.1761055083922,0.1112254169966036 +28,546.2134280660504,0.5302721223867973,19.354932467118104,95.54840805257103,0.1116604999988339 +29,566.5485704249801,0.5500137811297665,20.07550301123648,99.1056081873198,0.1158175420023326 +0,583.4731774211067,0.4549634900716403,16.168702493315216,99.49701555951331,0.1165232500025013 +1,550.2276808692731,0.4290402981826146,15.247432135412918,93.82781290255178,0.109883916000399 +2,544.8779488949933,0.42486884210862,15.09918500416788,92.91554754729285,0.1088155409997853 +3,573.9310381919825,0.4475230024289691,15.904279009398747,97.86983814658149,0.1146176250003918 +4,553.11275808707,0.4312899385275857,15.327380892288048,94.31979194107126,0.110460084000806 +5,554.7509941218444,0.4325673538618029,15.372778268011764,94.59915284839276,0.1107872500033408 +6,578.7401812024598,0.4512729339990389,16.03754580827354,98.68991933532828,0.1155780409972067 +7,547.9159557125065,0.4272377293823527,15.183371613434383,93.43360497184838,0.1094222499996249 +8,557.4791708931641,0.4346946510083453,15.448379135835042,95.06437637051738,0.1113320840013329 +9,533.7877060177743,0.4162212199034948,14.791861815031895,91.02437909120276,0.1066007499975967 +10,552.6339298454541,0.4309165719764217,15.314112019469755,94.23813954838208,0.1103644590002659 +11,536.8584659497922,0.418615646433979,14.876956050192176,91.54802175475405,0.1072139999996579 +12,537.1480562614719,0.4188414546184701,14.884980925671789,91.5974042677162,0.107271832999686 +13,535.3965288511943,0.417475700279842,14.83644411763746,91.29872429966083,0.1069220419994962 +14,561.921730527522,0.4381587390149823,15.571487494224757,95.82194577073804,0.112219291000656 +15,556.9790613983895,0.434304690389819,15.43452053539203,94.97909498294273,0.111232209001173 +16,577.5788956736366,0.4503674210507003,16.005365271186427,98.49189061901085,0.1153461249996326 +17,561.6544679972243,0.4379503409287378,15.564081346852063,95.77637071233858,0.1121659169984923 +18,552.8903464202219,0.4311165129236375,15.32121761313235,94.28186509553088,0.1104156669971416 +19,562.1610470070955,0.4383453461547649,15.578119224884723,95.86275531676898,0.1122670840013597 +20,529.2493757437318,0.4126824546946085,14.66609954376224,90.25047836129016,0.1056944170013594 +21,551.4745170427173,0.4300125192871475,15.281983377743243,94.04043017948926,0.1101329169978271 +22,562.9983166756952,0.4389982075806165,15.601320915557292,96.00553108859174,0.1124342920011258 +23,557.2131552013535,0.4344872251450093,15.441007539768792,95.01901392978934,0.1112789590006286 +24,556.7222241829976,0.4341044214478748,15.427403285301398,94.93529770586986,0.1111809169997286 +25,558.98491731835,0.4358687575059111,15.49010507444084,95.32114442994656,0.1116327909985557 +26,555.3466639451004,0.4330318276923168,15.389284953373105,94.70072970225053,0.1109062089999497 +27,561.1524807485683,0.4375589161307214,15.550170711722563,95.6907691199724,0.1120656669991149 +28,568.332190347256,0.4431572981354563,15.749128595275447,96.91509219993094,0.1134994999993068 +29,557.0070174500534,0.4343264891345185,15.43529522924212,94.98386220072588,0.1112377919998834 +0,550.6705889784511,1.7715047778972932,18.851484806303272,96.12920266476632,0.1125216660002479 +1,539.1018034836444,1.7342880476256846,18.45544262001672,94.10966839568808,0.1101577499975974 +2,544.518546354956,1.7517136847837735,18.640877702227325,95.05525580071948,0.1112645840003097 +3,549.3822728098382,1.7673602706477345,18.80738099330797,95.90430449779028,0.112258417000703 +4,625.393215626768,2.0118871276612262,21.409515849074182,109.17334677648466,0.1277901670000574 +5,556.2072325628154,1.7893161351034426,19.041024532044183,97.09572084070756,0.1136530000003404 +6,581.2750486108054,1.8699591852123023,19.899188310561104,101.4717474843506,0.1187752500009082 +7,536.504161600311,1.7259314455123815,18.366515759792136,93.6562044772379,0.1096269589979783 +8,545.4781534489938,1.7548007364368237,18.673728591516387,95.22277203759066,0.1114606659975834 +9,552.3208585220308,1.7768136875063814,18.907979617992435,96.41728613713872,0.1128588749998016 +10,530.8233484268193,1.70765629539432,18.172040577403703,92.66451897271818,0.1084661660024721 +11,542.0246895474031,1.74369095878679,18.55550378784433,94.61990938624166,0.11075499999788 +12,561.3068844925039,1.8057216921458392,19.215604422080258,97.98595446436669,0.1146950410002318 +13,542.2424684193578,1.744391552426462,18.562959161670275,94.6579265052548,0.110799499998393 +14,552.9138385846918,1.7787213016685075,18.928279512095063,96.52080119997412,0.1129800420021638 +15,548.2927618109285,1.7638553187240795,18.77008301434681,95.71411125755571,0.1120357909967424 +16,534.6363138528784,1.719922587811991,18.302572443886095,93.33013891598654,0.1092452910015708 +17,560.2365478283398,1.802278423969773,19.178962851300977,97.79910844032202,0.114476332997583 +18,520.6409627881021,1.674899607148371,17.823459970409083,90.88700509733424,0.1063855409993266 +19,545.8038038438997,1.7558483522747603,18.684876805338963,95.27962002155115,0.1115272080023714 +20,551.2776390067585,1.7734576550748529,18.87226636721164,96.23517388670334,0.1126457079990359 +21,549.6673380054913,1.7682773240844334,18.817139826106047,95.95406762390246,0.1123166659999697 +22,533.6508081821746,1.716752220555706,18.268834950819212,93.15810162864548,0.1090439170002355 +23,552.1707770665322,1.7763308761472658,18.902841776359583,96.3910867886705,0.112828207998973 +24,547.733432280944,1.7620559581723847,18.750935102060847,95.61647048497694,0.1119214999998803 +25,517.9327968988251,1.6661874498110916,17.730749465914258,90.41424727654147,0.1058321659984358 +26,548.6950850466077,1.7651495907417427,18.78385602223288,95.784343829684,0.1121180000009189 +27,546.7342628234665,1.75884163457625,18.716729847188773,95.4420479441754,0.1117173339989676 +28,545.4826411611525,1.7548151733864086,18.673882222451596,95.2235554464021,0.1114615829974354 +29,561.8817179345093,1.8075709287119268,19.2352830904439,98.08630171651888,0.1148124999999709 +0,354.85519616754533,0.9070425349355036,0.0,75.2845303996468,0.1091742919998068 +1,355.2082659739994,0.907945013850041,0.0,75.3594361495534,0.10928291700111 +2,347.1116286291589,0.8872492637496251,0.0,73.64168889121888,0.1067919159977464 +3,351.15209281257626,0.897577062003177,0.0,74.49889614626369,0.1080349999974714 +4,352.95630957691594,0.902188806075616,0.0,74.88167090427612,0.1085900830003083 +5,355.88853599161115,0.9096838466130364,0.0,75.503759268882,0.1094922079973912 +6,353.89918228201134,0.904598875472338,0.0,75.08170666420405,0.1088801660007448 +7,351.3594394596898,0.8981070591130952,0.0,74.5428859063869,0.1080987919995095 +8,350.4534030230251,0.8957911466081301,0.0,74.35066516847479,0.1078200419979111 +9,349.71232211255557,0.8938968756072139,0.0,74.19344067539875,0.1075920420007605 +10,350.9802303123747,0.8971377656379927,0.0,74.46243454795339,0.1079821250023087 +11,351.89534172675263,0.8994768746210661,0.0,74.65658059354848,0.1082636669998464 +12,347.2118500797871,0.8875054389997398,0.0,73.6629514369784,0.106822749999992 +13,349.54438602321255,0.8934676155094896,0.0,74.15781208728764,0.1075403750000987 +14,342.34268516545745,0.8750594054215045,0.0,72.62993064998487,0.1053247090021614 +15,356.18445481047524,0.9104402423442992,0.0,75.56654011457682,0.1095832499995594 +16,351.64330271404333,0.8988326397121243,0.0,74.60310909610632,0.1081861250022484 +17,350.47642529614416,0.8958499936567161,0.0,74.35554947350744,0.1078271250007674 +18,353.32834195736103,0.9031397550741976,0.0,74.96059967115839,0.1087045420026697 +19,351.0177426593019,0.8972336506485991,0.0,74.47039300383372,0.107993666002585 +20,351.5216841801265,0.898521771548179,0.0,74.57730703849886,0.1081487080009537 +21,350.6109087258634,0.8961937456781512,0.0,74.38408089128654,0.1078684999993129 +22,357.43150872905744,0.9136278269132396,0.0,75.83110963379889,0.1099669169998378 +23,350.5574111399438,0.8960570009257297,0.0,74.37273107683556,0.1078520410010241 +24,355.83341647948447,0.9095429560679807,0.0,75.4920653536424,0.1094752499993774 +25,352.68558102305303,0.9014967989796868,0.0,74.82423431531402,0.1085067910025827 +26,353.91150762756075,0.904630380189732,0.0,75.08432155574776,0.1088839580006606 +27,358.5786109780503,0.916559925817226,0.0,76.07447384282976,0.110319832998357 +28,351.49487200074293,0.8984532371504365,0.0,74.57161868348622,0.108140459000424 +29,353.15336234211867,0.902692491076134,0.0,74.92347675931913,0.1086507079999137 +0,350.06159203288655,0.0,0.0,73.32729560385845,0.1087225420014874 +1,348.15467995134566,0.0,0.0,72.9278553079902,0.1081302909988153 +2,349.6879634578959,0.0,0.0,73.24903173947592,0.1086064999981317 +3,345.65050696371725,0.0,0.0,72.40330695111199,0.1073525419997167 +4,340.1390654644476,0.0,0.0,71.24882697039375,0.1056407920004858 +5,353.2700929536298,0.0,0.0,73.99937931945351,0.1097190420005063 +6,350.6147227766598,0.0,0.0,73.44315973314124,0.1088943340000696 +7,344.5928124845704,0.0,0.0,72.18175200907858,0.1070240420012851 +8,347.23235425746674,0.0,0.0,72.73465602438603,0.1078438339973217 +9,350.3030715703917,0.0,0.0,73.37787824940402,0.1087975410009676 +10,348.65723454798535,0.0,0.0,73.03312526705905,0.1082863749979878 +11,348.17815851859984,0.0,0.0,72.93277335635823,0.108137582999916 +12,352.10694777546087,0.0,0.0,73.7557356514507,0.1093577909996383 +13,349.81071720303953,0.0,0.0,73.27474492927306,0.108644625001034 +14,349.6850109408863,0.0,0.0,73.24841327663262,0.1086055830019177 +15,346.24146679214306,0.0,0.0,72.5270951272936,0.1075360830000136 +16,349.01476105744257,0.0,0.0,73.1080162366537,0.1083974160028447 +17,349.51704839988264,0.0,0.0,73.21323021406631,0.1085534169978927 +18,339.98330586077833,0.0,0.0,71.21620005341305,0.1055924159991263 +19,350.75907473976633,0.0,0.0,73.47339709511014,0.1089391670029726 +20,347.3249194409645,0.0,0.0,72.75404562532324,0.1078725830011535 +21,398.16710519859527,0.0,0.0,83.40394286925121,0.1236632090003695 +22,353.67980870531187,0.0,0.0,74.08520235380207,0.1098462920017482 +23,397.841502728058,0.0,0.0,83.33573901841518,0.1235620830011612 +24,354.0738280635635,0.0,0.0,74.16773746937523,0.1099686669986113 +25,349.80146036374106,0.0,0.0,73.2728059019503,0.1086417500009702 +26,349.00389754202627,0.0,0.0,73.1057406593714,0.1083940419994178 +27,349.8933590281963,0.0,0.0,73.29205588734567,0.1086702919965318 +28,348.0918976573909,0.0,0.0,72.91470431990045,0.108110791999934 +29,348.4616335231562,0.0,0.0,72.99215277966113,0.1082256250010686 +0,536.1746967844265,0.4370075898556454,20.203197038710993,96.88122107415154,0.112606250000681 +1,532.8827144907617,0.4343244694909029,20.07915432031021,96.28639392867557,0.111914875000366 +2,533.1473729688934,0.4345401785953363,20.08912671813824,96.33421497782764,0.1119704580014513 +3,541.410961550333,0.4412753918592055,20.40050080826019,97.82735994909464,0.1137059590000717 +4,507.5953813852382,0.4137141039503509,19.126321267243146,91.71723442960857,0.1066040840014466 +5,529.4230845358086,0.4315047083990916,19.948794595988776,95.66127458509092,0.1111882910008716 +6,553.5819468252793,0.4511953171616696,20.85910658570488,100.02653108153322,0.1162620830000378 +7,532.950961074326,0.4343800936655948,20.081725868694036,96.29872538032647,0.1119292080002196 +8,530.81126187005,0.4326361382012946,20.001101466075237,95.91210386893316,0.1114798330017947 +9,539.3258148522472,0.4395758992526152,20.32193195775552,97.45059551123364,0.1132680410009925 +10,539.3448656063167,0.4395914265129854,20.32264979494648,97.4540377854172,0.1132720419991528 +11,530.2759930276953,0.4321998689253943,19.980932401858617,95.81538632638356,0.1113674169973819 +12,534.8948435761084,0.4359644493096808,20.154971848855244,96.64996483926924,0.1123374579983647 +13,527.8031840302006,0.4301844133161509,19.887756338692824,95.368575321319,0.1108480830007465 +14,530.8965736635557,0.4327056713245281,20.00431603584934,95.92751882748384,0.1114977500001259 +15,538.9450995668178,0.4392655983930176,20.30758651032335,97.38180419759053,0.113188084000285 +16,533.1491585277918,0.4345416339097989,20.08919399844532,96.33453760984928,0.1119708330006687 +17,509.7908234798517,0.4155034924914152,19.20904607594927,92.11392810463528,0.1070651660011208 +18,514.0279683439179,0.4189569647944158,19.368702757034143,92.87953634903896,0.1079550419999577 +19,533.3374377705254,0.4346950903458828,20.09628840752889,96.36855772129492,0.1120103749999543 +20,537.8840753934109,0.4384008138002721,20.26760685338181,97.19008810556802,0.112965249998524 +21,531.0947711170215,0.4328672115687322,20.011784165600623,95.96333105700664,0.111539375000575 +22,541.2827962393301,0.4411709311041561,20.395671507199836,97.80420180324448,0.1136790419986937 +23,525.132577532377,0.4280077434433167,19.787127216110257,94.88602435412606,0.1102872080009547 +24,500.526534169196,0.4079526610783415,18.85996533139102,90.4399668636754,0.1051195000000007 +25,539.1095665535377,0.4393996467207517,20.3137836676286,97.4115216807082,0.1132226250010717 +26,531.2782888578109,0.4330167871568365,20.018699160096823,95.9964908143079,0.1115779169995221 +27,545.7062252920934,0.4447762337803896,20.56234742323186,98.60346967346791,0.114608040999883 +28,533.554481246538,0.4348719909846391,20.10446666013601,96.40777523213306,0.1120559580012923 +29,534.66053966854,0.4357734806075874,20.146143218858462,96.60762854700516,0.112288249998528 +0,340.64918730588545,0.0,0.0,71.49545654085841,0.1037612910004099 +1,359.87735697665374,0.0,0.0,75.53106507974576,0.1096181659995636 +2,357.04781740694864,0.0,0.0,74.93720127241826,0.1087562919965421 +3,355.2365521535281,0.0,0.0,74.55705289386478,0.10820458300077 +4,361.7094135366254,0.0,0.0,75.91557713803003,0.110176207999757 +5,353.73252394336674,0.0,0.0,74.2413874305585,0.1077464580012019 +6,357.17311672611186,0.0,0.0,74.96349909540349,0.1087944580031035 +7,338.8384735800955,0.0,0.0,71.1154239169323,0.1032097499992232 +8,355.53448516285744,0.0,0.0,74.61958307833125,0.1082953330005693 +9,355.65390787855864,0.0,0.0,74.64464751969373,0.1083317090015043 +10,356.53813036938084,0.0,0.0,74.83022814932919,0.1086010420003731 +11,354.8124958061129,0.0,0.0,74.46805194130923,0.1080754159993375 +12,356.29587060954617,0.0,0.0,74.77938266730163,0.1085272499985876 +13,358.59849060843356,0.0,0.0,75.26265658720311,0.10922862499865 +14,336.2974250979103,0.0,0.0,70.58210862338031,0.102435749999131 +15,357.04535515580596,0.0,0.0,74.9366844951115,0.1087555419981072 +16,355.6050731273847,0.0,0.0,74.63439808138492,0.1083168340010161 +17,356.4013372564373,0.0,0.0,74.80151800873296,0.1085593749994586 +18,358.36306935886296,0.0,0.0,75.21324637181236,0.1091569159980281 +19,357.62398210811193,0.0,0.0,75.0581267285398,0.1089317910009413 +20,358.2503538344796,0.0,0.0,75.18958963586425,0.1091225829986797 +21,336.7975356102561,0.0,0.0,70.68707182521217,0.1025880829984089 +22,351.84930825701434,0.0,0.0,73.84613809406216,0.1071728329989127 +23,355.9800156634005,0.0,0.0,74.71309102646735,0.1084310410005855 +24,353.9434572371491,0.0,0.0,74.28565811342115,0.107810708002944 +25,356.2458047328008,0.0,0.0,74.76887484033942,0.1085119999988819 +26,404.1946903107813,0.0,0.0,84.83238766458936,0.1231171670006006 +27,361.9292404971096,0.0,0.0,75.96171442379344,0.1102431670005898 +28,349.61795580865146,0.0,0.0,73.37782180873364,0.1064931660002912 +29,356.15757387973906,0.0,0.0,74.75035694757553,0.1084851249979692 +0,364.2550459129972,0.7753693712169307,0.0,77.43580198631695,0.1106580000014219 +1,335.43371184373143,0.7140190071638892,0.0,71.30876780241103,0.1019022909968043 +2,359.3487386823519,0.7649255890508184,0.0,76.39278600216217,0.1091675000025134 +3,354.0306933374517,0.7536053629580184,0.0,75.26223994411167,0.1075519169971812 +4,407.89391497730094,0.868260994398697,0.0,86.71284800581769,0.1239151669979037 +5,359.54925703266326,0.7653524212634202,0.0,76.4354135496555,0.1092284160004055 +6,347.6044348448642,0.7399261454356202,0.0,73.89610243763563,0.1055996670002059 +7,352.92741774605065,0.7512568818287056,0.0,75.02769815480596,0.1072167499987699 +8,358.0705905024748,0.7622048664097103,0.0,76.12106861491759,0.1087792079997598 +9,358.52951209452806,0.7631817471702124,0.0,76.21862927173817,0.1089186249992053 +10,357.9711542633461,0.7619932020413661,0.0,76.09992978647904,0.1087490000027173 +11,358.5435019111863,0.7632115265115488,0.0,76.22160332160989,0.1089228750024631 +12,356.81150796124894,0.7595247277287113,0.0,75.85340433012391,0.1083967079975991 +13,354.2144798846673,0.7539965791159046,0.0,75.30131053170577,0.1076077499965322 +14,356.59370808609674,0.7590611092994192,0.0,75.80710295916374,0.1083305419997486 +15,359.121336849033,0.7644415314694826,0.0,76.34444338197397,0.1090984170004958 +16,356.7545875647334,0.7594035644598676,0.0,75.84130380714416,0.108379416000389 +17,354.5498237769477,0.7547104069291806,0.0,75.37260020505774,0.1077096250010072 +18,355.56230059247173,0.756865609775738,0.0,75.58783937629872,0.108017208000092 +19,357.80327658319925,0.7616358502002389,0.0,76.06424121347604,0.1086980000000039 +20,359.5939717383062,0.7654476029598374,0.0,76.44491930429332,0.1092419999986304 +21,364.0567198273783,0.7749472055557336,0.0,77.39364048528347,0.110597749997396 +22,405.9576962196502,0.8641394736744057,0.0,86.30123352304825,0.123326958000689 +23,363.6589682605511,0.7741005340113536,0.0,77.30908376626431,0.1104769160010619 +24,356.2351839229307,0.7582979389382143,0.0,75.7308854670034,0.1082216249997145 +25,354.46890344275005,0.7545381563334799,0.0,75.35539761295666,0.1076850419995025 +26,356.5014017038725,0.7588646218592381,0.0,75.78747984394217,0.1083025000007182 +27,356.4366634630007,0.7587268171817692,0.0,75.77371735071841,0.1082828329999756 +28,362.98608821129807,0.7726682118333972,0.0,77.16603837310058,0.1102724999982456 +29,359.5354087629177,0.7653229432250909,0.0,76.43246959078408,0.1092242089980572 +0,403.80530111655503,0.0,0.0,85.20626977676426,0.1254480830029933 +1,351.73175655141023,0.0,0.0,74.21831970730892,0.1092706669987819 +2,350.28673595400073,0.0,0.0,73.91340836881137,0.108821750000061 +3,328.1519445206855,0.0,0.0,69.24278367640527,0.1019452500004263 +4,349.2189998358078,0.0,0.0,73.68810718656938,0.1084900419991754 +5,347.0344361100074,0.0,0.0,73.22714611040125,0.1078113750008924 +6,348.8421177226201,0.0,0.0,73.60858193288522,0.1083729580022918 +7,349.7607123637488,0.0,0.0,73.802413025719,0.1086583329997665 +8,348.86438286229674,0.0,0.0,73.61328006213873,0.1083798749968991 +9,349.5485351074402,0.0,0.0,73.7576418637468,0.1085924170001817 +10,349.2062562033976,0.0,0.0,73.6854181743695,0.1084860830014804 +11,348.9237973941225,0.0,0.0,73.62581702144415,0.1083983329990587 +12,348.52452136305044,0.0,0.0,73.54156646523587,0.1082742920007149 +13,349.0319010610443,0.0,0.0,73.6486277923333,0.1084319170004164 +14,353.06652971176385,0.0,0.0,74.49996792162754,0.1096853340022789 +15,345.82868949784233,0.0,0.0,72.97272356856122,0.1074367920009535 +16,338.35479420348673,0.0,0.0,71.39566963446653,0.1051149160011846 +17,337.7432057089416,0.0,0.0,71.26661938645225,0.1049249169991526 +18,351.2683696181278,0.0,0.0,74.1205412186682,0.1091267090014298 +19,349.83072674614044,0.0,0.0,73.81718664146358,0.1086800840021169 +20,351.41952290191574,0.0,0.0,74.15243581599138,0.1091736670023237 +21,347.59841378933527,0.0,0.0,73.34615008127537,0.1079865829997288 +22,349.5599332493968,0.0,0.0,73.76004696629455,0.1085959580013877 +23,340.3002223481199,0.0,0.0,71.80617111838608,0.105719291997957 +24,350.65422853504253,0.0,0.0,73.99095235328762,0.1089359170000534 +25,349.36518956692623,0.0,0.0,73.71895443308603,0.1085354579990962 +26,347.2503698208989,0.0,0.0,73.27270991546585,0.1078784579985949 +27,348.0902365247607,0.0,0.0,73.44992876016128,0.1081393749991548 +28,351.3796889578161,0.0,0.0,74.14403052319844,0.1091612919990439 +29,348.35848065329765,0.0,0.0,73.50653049748111,0.1082227090009837 +0,350.2437335737623,0.0,0.0,73.26884233321877,0.1097303749993443 +1,348.89690052127264,0.0,0.0,72.9870931137106,0.1093084159983845 +2,344.6200794331875,0.0,0.0,72.09240835577674,0.1079685000004246 +3,348.24483274191084,0.0,0.0,72.8506845309527,0.109104125000158 +4,345.50688280525327,0.0,0.0,72.27792218577584,0.108246332998533 +5,349.28976713270595,0.0,0.0,73.06927840084587,0.1094315000009373 +6,345.0336899212863,0.0,0.0,72.17893313476608,0.1080980830010958 +7,346.57482729959054,0.0,0.0,72.50132962829542,0.1085809169999265 +8,346.00907053653475,0.0,0.0,72.3829767811272,0.1084036669999477 +9,345.64931945621555,0.0,0.0,72.30771906012771,0.1082909579999977 +10,346.6860092861362,0.0,0.0,72.5245882184189,0.1086157500030822 +11,356.34736331255743,0.0,0.0,74.54568426391941,0.1116426250009681 +12,349.03401953271384,0.0,0.0,73.01577757046779,0.1093513749983685 +13,344.75839219546305,0.0,0.0,72.12134253789166,0.1080118329991819 +14,344.37390740929675,0.0,0.0,72.04091067722797,0.1078913749988714 +15,338.3729501588257,0.0,0.0,70.78554720177965,0.106011291998584 +16,343.2693938159089,0.0,0.0,71.80985320332805,0.1075453340017702 +17,393.3508368048623,0.0,0.0,82.28658411507446,0.1232357089975266 +18,340.6583170286766,0.0,0.0,71.26363194337405,0.1067272910004248 +19,394.2611769502774,0.0,0.0,82.47702169379554,0.123520916000416 +20,350.23469104240684,0.0,0.0,73.26695069108311,0.1097275419997458 +21,348.4636090527246,0.0,0.0,72.89645119424085,0.1091726670019852 +22,344.2709700068494,0.0,0.0,72.01937680356475,0.1078591250006866 +23,346.28117640365764,0.0,0.0,72.43989966072517,0.108488917001523 +24,348.48262613381,0.0,0.0,72.90042945104354,0.1091786249999131 +25,325.06143883191936,0.0,0.0,68.00086062173396,0.1018408330019156 +26,338.7078270988537,0.0,0.0,70.85560140508998,0.1061162080004578 +27,391.2020495267679,0.0,0.0,81.83707098694545,0.1225624999970023 +28,348.54553126622045,0.0,0.0,72.91358881918269,0.1091983330006769 +29,344.56861072035196,0.0,0.0,72.08164141651599,0.1079523749976942 +0,349.5570979228151,0.0,0.0,73.44896139887625,0.1089127500017639 +1,347.24183407513084,0.0,0.0,72.96247800034911,0.1081913749985687 +2,344.7376100562334,0.0,0.0,72.43629027768198,0.1074111250018177 +3,351.6277678281301,0.0,0.0,73.88405070145102,0.1095579159991757 +4,349.9146892287216,0.0,0.0,73.52409850860788,0.1090241659985622 +5,346.9369301696893,0.0,0.0,72.89841157081808,0.1080963750027876 +6,346.6630494140417,0.0,0.0,72.84086372765029,0.1080110410002817 +7,349.49852426123,0.0,0.0,73.4366538970852,0.1088944999974046 +8,346.91740668224895,0.0,0.0,72.8943092942976,0.1080902920002699 +9,346.9200802047294,0.0,0.0,72.89487105502462,0.1080911249991913 +10,345.9247293954029,0.0,0.0,72.68572787467728,0.1077810000024328 +11,348.7487013459444,0.0,0.0,73.27910105467957,0.1086608750010782 +12,396.09105260708606,0.0,0.0,83.22667914985942,0.1234115000006568 +13,346.2514323292838,0.0,0.0,72.75437471755963,0.1078827919991454 +14,347.99820762431926,0.0,0.0,73.12140726239984,0.1084270409992314 +15,348.64586206711,0.0,0.0,73.257492458355,0.1086288330006937 +16,347.9824296464449,0.0,0.0,73.11809199260635,0.1084221249984693 +17,357.2821339838763,0.0,0.0,75.07214650604604,0.1113196670012257 +18,352.7099103595275,0.0,0.0,74.11143056439471,0.1098950830019021 +19,350.1761331126982,0.0,0.0,73.57903311544688,0.1091056250006659 +20,347.78959237548537,0.0,0.0,73.07757301200165,0.1083620420031366 +21,337.4620408760736,0.0,0.0,70.90754718236538,0.1051442499992845 +22,344.88858884112295,0.0,0.0,72.46801395032172,0.1074581659995601 +23,347.06143366416603,0.0,0.0,72.92457225361979,0.1081351670000003 +24,350.9464166897125,0.0,0.0,73.74088515349878,0.1093456249982409 +25,349.12528336836505,0.0,0.0,73.35822849506813,0.1087782080030592 +26,349.5365024599655,0.0,0.0,73.44463387880921,0.1089063330000499 +27,347.7287463838418,0.0,0.0,73.06478804806281,0.1083430840008077 +28,347.93963719702685,0.0,0.0,73.1091004401986,0.1084087920025922 +29,349.69617582957653,0.0,0.0,73.47818445818719,0.1089560830005211 +0,352.72069606426135,0.9034682471999864,0.0,74.95440273066554,0.1094220830018457 +1,349.5792722957564,0.8954217201390213,0.0,74.28683900412622,0.1084475410025334 +2,349.6327306068686,0.8955586496903,0.0,74.29819908541748,0.1084641250017739 +3,355.8750137863739,0.9115478011794038,0.0,75.6247064682172,0.1104006250025122 +4,345.33514830630867,0.8845507071691807,0.0,73.38494755773944,0.1071309159997326 +5,348.6894576269468,0.8931425249907565,0.0,74.09775022145536,0.1081715000000258 +6,349.3282464346679,0.8947787357685262,0.0,74.23349511561106,0.1083696669993514 +7,348.73350979894906,0.8932553614051442,0.0,74.10711146472308,0.108185165998293 +8,345.7222375497521,0.8855422079350447,0.0,73.46720539905556,0.1072509999976318 +9,397.1924653152403,1.017379429229816,0.0,84.40481190647361,0.1232182499988994 +10,355.586244105474,0.9108081387769468,0.0,75.56334188371707,0.1103110419971926 +11,348.03495431619814,0.8914660626636325,0.0,73.95866593950136,0.1079684579999593 +12,347.40409206643403,0.8898501551839217,0.0,73.82460546711054,0.1077727500014589 +13,350.90305214262366,0.8988124853287961,0.0,74.5681469309816,0.1088582079974003 +14,350.0268019174188,0.8965680345100379,0.0,74.38194064083277,0.1085863749976852 +15,348.78253581644026,0.8933809379607142,0.0,74.11752966785184,0.1082003749979776 +16,350.3163806777479,0.8973097693102355,0.0,74.44347715758991,0.1086762089980766 +17,335.37148764616063,0.8590295196325146,0.0,71.26763422136418,0.104039959001966 +18,352.05182244367086,0.9017549763759712,0.0,74.81226470674724,0.1092145830007211 +19,348.48369276653347,0.89261547336082,0.0,74.05402445660137,0.1081076670016045 +20,360.0307626207023,0.9221924476576192,0.0,76.50781787974321,0.1116898339969338 +21,351.99272624691093,0.9016036057932448,0.0,74.79970655469884,0.1091962499995133 +22,350.51838373453734,0.8978271853555173,0.0,74.48640352579106,0.1087388749983802 +23,350.66062011629685,0.8981915134370567,0.0,74.51662926292619,0.1087829999996756 +24,348.6397611194587,0.8930152310241329,0.0,74.08718953681695,0.108156082998903 +25,351.7429059895762,0.9009637094885264,0.0,74.74661886127035,0.1091187500023807 +26,349.7674433579262,0.895903706542454,0.0,74.32682602426286,0.108505915999558 +27,351.4850269877827,0.9003031712996995,0.0,74.69181865597507,0.1090387499971257 +28,347.577757442522,0.8902949863341328,0.0,73.86150997735028,0.1078266250005981 +29,348.8147707004597,0.8934635052568458,0.0,74.12437969538277,0.1082103750013629 +0,354.42326500546744,0.9012458236153345,0.0,81.14550360032882,0.1093228749996342 +1,353.0750039519135,0.897817395620801,0.0,80.83681810200619,0.1089070000016363 +2,341.7745192197362,0.8690819381176189,0.0,78.24956265051598,0.1054213329989579 +3,346.1859191820848,0.8802994742810595,0.0,79.25955636952798,0.106782041999395 +4,354.3888189098163,0.9011582323003428,0.0,81.1376171378568,0.1093122500024037 +5,353.75690065071075,0.8995513578422669,0.0,80.99293892276114,0.1091173329987214 +6,333.09031745920396,0.8469993003765782,0.0,76.26130737835042,0.1027426660002674 +7,347.9079520947533,0.8846783487058146,0.0,79.6538172482902,0.1073132080018695 +8,372.39454183219857,0.946944116544487,0.0,85.26004249332028,0.1148661670013098 +9,369.5021486200632,0.9395891893710402,0.0,84.59782664299996,0.113973999999871 +10,355.1748644219067,0.903157029515114,0.0,81.31758291671267,0.1095547080003598 +11,361.594269664595,0.9194806254420856,0.0,82.78731112776704,0.1115347920022031 +12,362.8293302804259,0.9226212015041912,0.0,83.07007929098847,0.1119157499997527 +13,353.9245405248882,0.8999776411915598,0.0,81.0313202124697,0.1091690419998485 +14,356.00332808847406,0.905263689808702,0.0,81.50726036759092,0.1098102500000095 +15,355.7832782663517,0.9047041357309752,0.0,81.4568797763704,0.1097423749997688 +16,359.8954688249249,0.91516082673507,0.0,82.39836925159092,0.1110107919994334 +17,354.7159904344116,0.9019901809878614,0.0,81.21252333264782,0.1094131669997295 +18,355.96537090717135,0.905167170323378,0.0,81.49857003911599,0.109798541998316 +19,354.269945000013,0.9008559535694436,0.0,81.11040085656731,0.1092755830031819 +20,360.28572292739693,0.916153185066841,0.0,82.48771825546261,0.1111311669992574 +21,354.52849339615904,0.9015134038139284,0.0,81.16959572858,0.1093553329992573 +22,350.8823383693613,0.8922417720825725,0.0,80.33480547899015,0.1082306659991445 +23,346.3705762408709,0.8807690298082045,0.0,79.30183375791648,0.1068390000000363 +24,346.5359175400972,0.8811894682221345,0.0,79.3396887869633,0.1068899999991117 +25,352.0428365534417,0.8951927469337846,0.0,80.60050251096409,0.1085886250002658 +26,354.10230836926183,0.9004296784677029,0.0,81.07202030944391,0.1092238750024989 +27,353.76878902297494,0.8995815882106163,0.0,80.99566077555586,0.1091210000013234 +28,350.4946551599141,0.8912559511506575,0.0,80.24604508323142,0.1081110839986649 +29,352.3325890814117,0.8959295446598339,0.0,80.6668415951132,0.1086780000005092 +0,350.4356841019941,0.0,0.0,74.02446695872452,0.1093239590009034 +1,346.4714390348405,0.0,0.0,73.18707755660988,0.108087249998789 +2,345.72749858615435,0.0,0.0,73.02993090271205,0.1078551659993536 +3,397.1397798880135,0.0,0.0,83.89003131815507,0.1238940410003124 +4,349.2921261580012,0.0,0.0,73.78290689198242,0.1089672079979209 +5,346.26975989888166,0.0,0.0,73.14447575772542,0.1080243329997756 +6,350.39080418180447,0.0,0.0,74.01498672506138,0.1093099579993577 +7,349.6472676163195,0.0,0.0,73.85792538564502,0.1090779999976803 +8,361.78815498173515,0.0,0.0,76.42251214550602,0.1128655419997812 +9,353.5460632089863,0.0,0.0,74.68148953342224,0.1102942910001729 +10,342.0485443957291,0.0,0.0,72.25280506973742,0.1067074580023472 +11,350.28796278914035,0.0,0.0,73.99326296912378,0.109277874998952 +12,345.76957050704704,0.0,0.0,73.03881798715949,0.1078682910010684 +13,356.1562593262886,0.0,0.0,75.23285568991444,0.1111085829979856 +14,399.69388332935665,0.0,0.0,84.4295487085925,0.1246908339999208 +15,352.1317801069439,0.0,0.0,74.38274269482416,0.1098530829985975 +16,346.02694804481155,0.0,0.0,73.0931852673895,0.1079485839982226 +17,345.3318911540231,0.0,0.0,72.94636455768223,0.1077317499984928 +18,349.3621113945349,0.0,0.0,73.79769026041323,0.1089890410003135 +19,349.9381648592711,0.0,0.0,73.9193732185175,0.1091687499974796 +20,332.77482680217906,0.0,0.0,70.29386643211716,0.1038143749974551 +21,350.51488507996714,0.0,0.0,74.04119701916937,0.1093486669997219 +22,347.0243842208858,0.0,0.0,73.3038792252507,0.1082597500026167 +23,348.0907413848161,0.0,0.0,73.52913174441076,0.1085924170001817 +24,346.1256479612438,0.0,0.0,73.11403419640622,0.1079793749995587 +25,348.0938122335487,0.0,0.0,73.52978041676593,0.1085933750000549 +26,349.7563885449727,0.0,0.0,73.88097560268639,0.1091120419987419 +27,330.1607584718866,0.0,0.0,69.74168232666726,0.1029988750015036 +28,351.14262369975336,0.0,0.0,74.1737977183195,0.1095444999991741 +29,346.8602380368698,0.0,0.0,73.26920571930842,0.108208542002103 +0,538.8701891041434,0.4576114671514016,19.08893548688704,94.00646996624508,0.1099223329983942 +1,564.308332268748,0.4792136753465044,19.990056171597043,98.44418073546764,0.1151113749983778 +2,536.5403799575697,0.4556329806748742,19.00640433672332,93.60003231578128,0.1094470829993952 +3,557.5578910393248,0.4734811642939795,19.750928567691716,97.26655917924892,0.1137343750015134 +4,551.1749149853679,0.4680607066477709,19.524818048735582,96.1530423084992,0.1124323330004699 +5,548.5636364583718,0.4658431948572852,19.43231612833247,95.69750202925374,0.1118996670011256 +6,564.8680110269917,0.4796889575626522,20.009882229756347,98.54181728215626,0.1152255420020083 +7,560.7970733575329,0.4762318953660961,19.865673349557152,97.83163793377804,0.1143951250014652 +8,533.602080044307,0.4531377605617067,18.902318012002624,93.08744281253348,0.1088477089979278 +9,564.9098814072976,0.4797245141151381,20.01136544594576,98.54912161393835,0.115234083001269 +10,542.0632066445227,0.4603229948455245,19.20204492784188,94.56349522683776,0.1105736659992544 +11,542.1635024143241,0.4604081665534718,19.205597804801968,94.5809919291275,0.1105941249988973 +12,559.8415403125282,0.475420451557406,19.831824550680363,97.66494419136426,0.114200209001865 +13,545.9905515906022,0.4636581173279407,19.341167179965527,95.24862467393984,0.1113747919989691 +14,541.7711140282568,0.4600749482224672,19.19169784013721,94.5125393634154,0.1105140830004529 +15,554.6992482917024,0.4710535894749383,19.649664018097425,96.76786595213731,0.1131512499996461 +16,548.961128120956,0.4661807469181963,19.44639687144476,95.76684486690948,0.1119807499999296 +17,550.204670187255,0.467236769539098,19.490448100773804,95.98378208531756,0.1122344159994099 +18,542.6821245578801,0.4608485832712799,19.22396947360196,94.67146610630007,0.110699917000602 +19,536.4276274869267,0.4555372306694755,19.00241019364098,93.58036252895798,0.1094240829988848 +20,559.8276472294972,0.4754086534764625,19.831332402161006,97.66252052845044,0.1141973749981843 +21,550.3648179198236,0.4673727678562132,19.49612117343061,96.01172002531922,0.1122670840013597 +22,543.2377147988591,0.4613203934965441,19.24365070014155,94.7683894068615,0.1108132500012288 +23,545.5227906275,0.463260892198532,19.32459721742448,95.16702328306988,0.1112793749998672 +24,546.4460568464966,0.4640449348447745,19.357302996382025,95.32808804382654,0.1114677089972246 +25,549.9340250363099,0.4670069362191155,19.480860767997388,95.93656775472688,0.1121792079975421 +26,551.0829972080609,0.4679826495761769,19.521561953749092,96.13700715579176,0.1124135829995793 +27,544.6440567149677,0.4625146666268074,19.293468950718253,95.01372722990702,0.1111001249992114 +28,547.1235913519002,0.4646203007962273,19.38130397607119,95.44628464928212,0.1116059170017251 +29,561.8191989819761,0.4770998899519389,19.901881123709455,98.00994882155548,0.1146036249992903 +0,543.2167895686617,0.4698816839024569,20.54054218202169,97.93676811624066,0.1125474159998702 +1,531.6083156995155,0.4598403719365596,20.10159340179818,95.84387180792008,0.1101422920000914 +2,539.1055697078513,0.4663254850732108,20.38508549034322,97.19555467454497,0.1116956250007206 +3,559.2132189145998,0.4837185705779671,21.145411799551137,100.82077063903628,0.1158616669999901 +4,539.8532858167908,0.4669722583524913,20.41335872226605,97.33036070518357,0.1118505420017754 +5,543.1984920844951,0.4698658566069157,20.53985030310232,97.93346925564144,0.1125436250003986 +6,539.2855617453997,0.4664811779076673,20.391891491392315,97.22800550961236,0.1117329169974254 +7,533.677703035229,0.4616303887854931,20.179842709765843,96.21696246257636,0.1105710419979004 +8,543.8567141139714,0.4704352176456966,20.56473951422617,98.05214036358164,0.1126799999983632 +9,531.7619595754875,0.4599732736519509,20.10740310535671,95.87157232259948,0.1101741250022314 +10,540.5826995953015,0.4676032001442213,20.440939892018815,97.4618670014884,0.1120016669992765 +11,540.2482576395201,0.4673139083690628,20.428293708704743,97.4015703300661,0.1119323749990144 +12,536.8670548817402,0.4643891732063245,20.300441000162188,96.79197195828964,0.1112318339983176 +13,538.881940731885,0.4661320463544264,20.376629454922067,97.15523651872972,0.1116492920009477 +14,526.3167945212944,0.4552632142908941,19.90150622471623,94.88986137863064,0.1090459580009337 +15,537.8617219008928,0.465249558641489,20.338052134899375,96.97130086541893,0.1114379159989766 +16,548.9821147845478,0.4748686813088457,20.75854521150097,98.97620086137228,0.1137419160004356 +17,547.793376651499,0.4738404246599312,20.713595706562707,98.76188279697708,0.1134956250025425 +18,540.9748527371453,0.4679424120061807,20.455768296270183,97.53256844528823,0.1120829160026914 +19,538.0970215013889,0.4654530924324649,20.34694946919061,97.01372312270946,0.1114866669995535 +20,532.0847357354425,0.4602524745317389,20.119608172387444,95.9297657631153,0.1102410000021336 +21,521.9982304773832,0.4515276630635382,19.73820927106324,94.1112657728146,0.1081512079981621 +22,554.8095819519035,0.479909431407269,20.978898001517763,100.02683720331508,0.114949291000812 +23,538.7162256421633,0.4659887030577872,20.370363305097555,97.12535968018736,0.1116149580011551 +24,545.6371112170256,0.4719752583897657,20.632061295324043,98.37312885580974,0.1130488749986398 +25,531.4940855078803,0.4597415629972396,20.097274039593614,95.82327720185324,0.1101186249979946 +26,539.73040643437,0.4668659678765017,20.408712310029937,97.30820673311658,0.1118250830004399 +27,534.32848252296,0.4621933120371604,20.20445049762444,96.33429175174528,0.1107058749985299 +28,543.1910495251907,0.4698594188046135,20.539568879173103,97.93212743370444,0.1125420829994254 +29,541.6266457784637,0.4685062119801355,20.48041440941735,97.6500804684311,0.1122179589983716 +0,411.9106270133148,0.0669283657508026,0.0,79.67821942633053,0.1092553339985897 +1,409.7639893685133,0.0665795741926254,0.0,79.2629830763206,0.1086859589995583 +2,408.6489630946226,0.0663984016726984,0.0,79.0472971913475,0.1083902089994808 +3,403.53174841785705,0.0655669426302473,0.0,78.0574452013094,0.1070329169997421 +4,406.4680772704537,0.0660440453766274,0.0,78.62543602087497,0.1078117500001099 +5,409.1637451782701,0.066482044874201,0.0,79.1468744227363,0.1085267499984183 +6,411.117003532524,0.0667994156361238,0.0,79.52470431480539,0.1090448329996434 +7,408.04856056941446,0.0663008466275756,0.0,78.93115791012883,0.1082309580015135 +8,406.718009040155,0.0660846549744341,0.0,78.67378174706386,0.1078780419993563 +9,409.1274573526816,0.0664761487290083,0.0,79.13985506188438,0.1085171250015264 +10,434.73755799887095,0.0706373479565961,0.0,84.0937627423277,0.11530995800058 +11,465.2579892959261,0.0755963911440289,0.0,89.99750365696646,0.1234052090003388 +12,412.8927512188439,0.0670879439790143,0.0,79.8681973070166,0.1095158330026606 +13,411.1630334709524,0.0668068947064672,0.0,79.5336081480492,0.1090570419983123 +14,405.92375972203575,0.0659556031719937,0.0,78.5201455762586,0.107667375003075 +15,411.4063674703926,0.0668464322805089,0.0,79.58067762994595,0.1091215840024233 +16,398.28603143437334,0.0647146041813914,0.0,77.04273627794646,0.1056415409984765 +17,404.04574631549536,0.0656504584150614,0.0,78.1568707431306,0.1071692500008794 +18,416.45131938035576,0.067666149870884,0.0,80.55655142128744,0.1104597089979506 +19,390.2780465829524,0.06341344489121,0.0,75.4937061429856,0.1035174999997252 +20,411.7770990939091,0.0669066697690972,0.0,79.6523903601103,0.1092199170016101 +21,408.2457100261535,0.0663328800107488,0.0,78.96929365279645,0.1082832499996584 +22,407.79329023407206,0.0662593696050161,0.0,78.88177951477175,0.1081632499990519 +23,408.5968066327045,0.066389927148055,0.0,79.03720826975947,0.1083763749993522 +24,407.6768863974922,0.0662404559911434,0.0,78.85926285745624,0.108132375000423 +25,408.8302439287478,0.0664278566786494,0.0,79.08236337593212,0.1084382919980271 +26,400.83356580406127,0.0651285345363654,0.0,77.53552036554309,0.1063172499998472 +27,407.19320440622545,0.0661618660177472,0.0,78.7657014941281,0.1080040830020152 +28,408.4123814834321,0.0663599612451754,0.0,79.00153386238134,0.1083274580014403 +29,404.7000282651971,0.0657567679365012,0.0,78.28343222840476,0.107342791998235 +0,508.78247723090743,0.5845834667532449,20.78518992900426,94.02050756948022,0.1093273749975196 +1,534.9712705196611,0.6146739990651028,21.855075522314763,98.86006818297068,0.1149548330031393 +2,522.970603303836,0.6008854116857556,21.364814637715757,96.64240371279236,0.1123761250019015 +3,524.2967271225651,0.6024091081454215,21.418990511837208,96.88746489338862,0.1126610829996934 +4,515.1470646582857,0.5918962826406959,21.045201160558076,95.19665212471192,0.1106949999993958 +5,521.1414833445031,0.5987837801736918,21.290089961731265,96.30439131126876,0.1119830829993588 +6,511.23422730757375,0.5874004909700197,20.885350790045145,94.47357896434482,0.1098542079998878 +7,517.6996475836024,0.5948291622944494,21.14948132602487,95.6683569356906,0.1112435000031837 +8,529.7596501306243,0.6086859250830612,21.642166225175508,97.89698628419237,0.1138349580032809 +9,521.6285775947431,0.5993434441915854,21.309989126811924,96.3944039408133,0.1120877499997732 +10,526.6239939754387,0.6050831029974401,21.514065884353425,97.31753239875492,0.1131611669989069 +11,513.552572917201,0.5900642354468032,20.980061704775224,94.9019978676942,0.1103523749989108 +12,517.0692549971034,0.5941048506286136,21.123728022350704,95.551863476102,0.111108041000989 +13,571.0766273014697,0.6561585147086973,23.330080522975905,105.53216111564883,0.1227131659979932 +14,520.6179409055757,0.598182237731416,21.268701786005906,96.20764323513608,0.1118705839980975 +15,534.6402724022946,0.6142936871723033,21.841553321681893,98.79890135354545,0.1148837079999793 +16,512.772878679909,0.589168378414296,20.94820901028608,94.75791419496596,0.1101848340003925 +17,522.674508320476,0.6005452029725883,21.35271832791425,96.58768681142462,0.1123124999976425 +18,523.1488001013522,0.6010901571444107,21.372094476245714,96.67533360739272,0.1124144159985007 +19,525.4153727333847,0.603694415243261,21.46469031976039,97.09418511829114,0.1129014580001239 +20,526.3238269789654,0.6047382156020285,21.501803221405456,97.26206300932624,0.1130966669988993 +21,508.2635839065495,0.5839872660741664,20.763991682637027,93.92461862692844,0.1092158749997906 +22,533.3430437133583,0.6128031907851685,21.788557894583768,98.55917985128129,0.1146049589988251 +23,514.9093370528977,0.5916231371729963,21.035489321706535,95.1527212286569,0.1106439169998338 +24,523.4229852070652,0.6014051917354254,21.38329570614846,96.72600167078092,0.112473332999798 +25,520.8514010381058,0.5984504799365443,21.278239286632687,96.25078552312756,0.1119207500014454 +26,487.39577421310065,0.560010464434815,19.911483179904533,90.06834969659941,0.104731792001985 +27,529.4395138695629,0.6083180933009149,21.629087761810307,97.83782667256382,0.1137661669999943 +28,528.3608114098781,0.6070786802871062,21.585019743541555,97.63848774617624,0.1135343749992898 +29,518.4657714800092,0.5957094272079768,21.1807796340614,95.8099328759496,0.111408125001617 +0,372.783325595462,0.9128559578339812,0.0,76.71370993797419,0.1098833750002086 +1,367.5654658505108,0.9000786847418639,0.0,75.6399457658996,0.1083453339997504 +2,365.6874121031291,0.8954797865757741,0.0,75.25346799038634,0.1077917500006151 +3,381.74230801168073,0.9347943330596208,0.0,78.55734598934369,0.1125241670015384 +4,361.0809145080922,0.8841995911226636,0.0,74.30551378730829,0.106433916997048 +5,369.7321633727841,0.905384401511443,0.0,76.08582248257274,0.1089840000022377 +6,366.30160024436657,0.8969837843821783,0.0,75.37985950974675,0.1079727910000656 +7,349.09480260671245,0.8548485099203007,0.0,71.83893588922824,0.1029008340010477 +8,368.7968106124073,0.9030939494408668,0.0,75.89333967708617,0.1087082910016761 +9,370.3373070063856,0.9068662515120998,0.0,76.21035276596128,0.1091623749998689 +10,368.9456615170731,0.9034584492074164,0.0,75.9239711574677,0.1087521669978741 +11,366.67407357500286,0.8978958812375364,0.0,75.45650942696186,0.1080825829994864 +12,370.3853690626926,0.9069839438320968,0.0,76.22024327981583,0.1091765419987496 +13,368.16721356507986,0.9015522189603804,0.0,75.76377721559642,0.1085227080002368 +14,359.8772698274535,0.8812521572049017,0.0,74.0578201739971,0.1060791250019974 +15,357.1023177164008,0.8744569724598967,0.0,73.48677298190762,0.1052611670020269 +16,368.1332915981502,0.9014691522900468,0.0,75.75679653874505,0.1085127090009336 +17,369.6513056658199,0.9051864005965116,0.0,76.0691830723513,0.1089601660023618 +18,368.8746998522918,0.9032846812998258,0.0,75.90936821738165,0.1087312500021653 +19,369.01803449900746,0.9036356730884456,0.0,75.9388645273216,0.1087735000000975 +20,366.8412984711371,0.8983053744531745,0.0,75.49092202349085,0.1081318750002537 +21,370.17616154485074,0.9064716453574252,0.0,76.17719123392584,0.1091148750019783 +22,370.9635115163816,0.9083996744914116,0.0,76.33921708966713,0.1093469580009696 +23,367.1765929975245,0.8991264294334446,0.0,75.55992105127724,0.1082307079996098 +24,373.21629802737255,0.9139162023162578,0.0,76.80280974279958,0.1100110000006679 +25,364.8661333765825,0.8934686741490775,0.0,75.08446006089841,0.1075496660014323 +26,364.0760965077838,0.8915340654553022,0.0,74.92188127844743,0.1073167909999028 +27,371.7753182833393,0.9103875923861928,0.0,76.50627581941745,0.109586250000575 +28,369.53200373193727,0.904894259093262,0.0,76.04463236602264,0.108925000000454 +29,367.425238752588,0.8997353025866021,0.0,75.611088947,0.1083039999975881 +0,356.466325968142,0.0,0.0,73.92875082637863,0.1092395420018874 +1,351.7245436332654,0.0,0.0,72.94533663218813,0.1077864170001703 +2,353.4256006327688,0.0,0.0,73.29812456725101,0.1083077080002112 +3,353.35122991135097,0.0,0.0,73.28270057308399,0.1082849170015833 +4,354.96295784666904,0.0,0.0,73.61696225293952,0.1087788330005423 +5,350.3303576515806,0.0,0.0,72.6561917101098,0.107359166999231 +6,353.9089564974454,0.0,0.0,73.39836936648442,0.1084558329966967 +7,355.0087791611787,0.0,0.0,73.62646528954114,0.1087928749984712 +8,354.86778446321597,0.0,0.0,73.59722392469351,0.1087496670006658 +9,356.2385833502526,0.0,0.0,73.88151851851684,0.1091697499978181 +10,353.36836150001716,0.0,0.0,73.28625355090404,0.1082901669979037 +11,344.9872006619987,0.0,0.0,71.54805640269699,0.105721749998338 +12,335.41512274852306,0.0,0.0,69.56287095485956,0.1027883750030014 +13,354.6641076704996,0.0,0.0,73.55498270929414,0.1086872499981836 +14,355.37234762367643,0.0,0.0,73.70186697636058,0.1089042909989075 +15,352.9861603805139,0.0,0.0,73.20698757465065,0.1081730409969168 +16,354.41080472393486,0.0,0.0,73.50244935885966,0.1086096250000991 +17,354.4234494781258,0.0,0.0,73.50507179698002,0.1086135000005015 +18,350.7823055918313,0.0,0.0,72.74992271421108,0.1074976669988245 +19,338.18622604515986,0.0,0.0,70.13757939211467,0.1036375830008182 +20,349.4839750006073,0.0,0.0,72.48065756410699,0.1070997919996443 +21,352.02244095839086,0.0,0.0,73.00711856084921,0.10787770800016 +22,350.7968527716273,0.0,0.0,72.7529397027792,0.1075021249998826 +23,354.93835033342356,0.0,0.0,73.611858817965,0.1087712919979821 +24,351.8900120547612,0.0,0.0,72.97965368491161,0.1078371250005147 +25,353.8877459607927,0.0,0.0,73.39397044191605,0.1084493330017721 +26,338.342449918055,0.0,0.0,70.16997918679662,0.1036854579979262 +27,357.2478532784631,0.0,0.0,74.09083440504997,0.1094790420029312 +28,354.8509236948433,0.0,0.0,73.59372711320542,0.1087444999975559 +29,351.6581904888854,0.0,0.0,72.93157543030154,0.1077660829978413 +0,375.8387041682209,0.8532480570473594,0.0,80.30770712929747,0.1121187499993539 +1,352.36933340744486,0.7999667031589285,0.0,75.29286610131835,0.1051174579988583 +2,382.60152306582495,0.8686013509485674,0.0,81.75275915127916,0.1141362080015824 +3,368.16940733048455,0.8358368310263452,0.0,78.66896253619961,0.1098308750006253 +4,361.8039554734167,0.8213856599015089,0.0,77.30881830993002,0.1079319579985167 +5,364.7678145999267,0.8281143629675051,0.0,77.94212384250159,0.1088161250008852 +6,361.435641506482,0.8205494948839493,0.0,77.23011845847732,0.1078220839990535 +7,371.47406598700417,0.8433392344419819,0.0,79.37508874567934,0.1108167080019484 +8,415.29796425727784,0.942830467347616,0.0,88.73920358675761,0.1238900839998677 +9,357.74213028033313,0.8121642986749299,0.0,76.4409037912844,0.1067202500016719 +10,360.788814276825,0.8190810349546518,0.0,77.09190700993183,0.1076291249992209 +11,362.33806671597387,0.822598226289443,0.0,77.42294505836237,0.1080912920006085 +12,363.97042225506425,0.8263040824897027,0.0,77.77174024393082,0.108578249997663 +13,415.5291183662658,0.9433552451104836,0.0,88.78859566979871,0.1239590410004893 +14,370.29019774051034,0.8406515568028294,0.0,79.1221245262823,0.1104635410010814 +15,365.2556929987476,0.8292219692125582,0.0,78.04637174228598,0.1089616669996758 +16,354.4670811573343,0.8047291163215907,0.0,75.74110442818812,0.1057432500019786 +17,362.2613863073957,0.8224241425431249,0.0,77.40656029615891,0.1080684169974119 +18,363.4875720807561,0.8252078915745462,0.0,77.66856675499629,0.1084342079993803 +19,363.5696997234104,0.8253943419074882,0.0,77.68611546033279,0.1084587080003984 +20,364.4333003353143,0.8273549317456281,0.0,77.87064617589853,0.1087163339980179 +21,364.07852906379946,0.8265495120409541,0.0,77.79484007329461,0.1086105000031238 +22,359.47295518869606,0.8160937050233746,0.0,76.81073951680001,0.1072365830004855 +23,363.7565820007344,0.8258186115163786,0.0,77.72604771592155,0.1085144579992629 +24,364.5587243279551,0.8276396756446492,0.0,77.89744627167438,0.1087537499988684 +25,368.8810416530577,0.8374524192995317,0.0,78.82102170447193,0.1100431670020043 +26,347.2952967798542,0.7884473682797272,0.0,74.20866630248791,0.1036037909980223 +27,364.2339849409666,0.8269024358449114,0.0,77.82805726172306,0.1086568749997241 +28,358.2191108451696,0.8132471641054523,0.0,76.54282308560516,0.1068625410007371 +29,363.61188316575345,0.8254901088942822,0.0,77.69512904912985,0.1084712920019228 +0,355.31751000520677,0.0,0.0,73.78324951983832,0.1092719590014894 +1,350.2562658887155,0.0,0.0,72.7322598359288,0.1077154580016213 +2,351.03910799377473,0.0,0.0,72.89482045494073,0.1079562080012692 +3,352.04523324830114,0.0,0.0,73.10374680563434,0.1082656250000582 +4,347.36078088160747,0.0,0.0,72.13099959193667,0.1068250000025727 +5,353.3662284867774,0.0,0.0,73.37805729850474,0.1086718749975261 +6,350.7655636148851,0.0,0.0,72.83801775708868,0.1078720840014284 +7,353.17776759078373,0.0,0.0,73.33892256148143,0.1086139170001843 +8,355.86893975652856,0.0,0.0,73.89775634201503,0.10944154200115 +9,354.39078102596784,0.0,0.0,73.59081015620703,0.1089869589995942 +10,354.1366069121032,0.0,0.0,73.53802977939847,0.1089087920008751 +11,336.51778199022067,0.0,0.0,69.87940300516897,0.1034904169973742 +12,355.2480053353128,0.0,0.0,73.76881656830292,0.1092505840024387 +13,354.1658720356466,0.0,0.0,73.54410681149463,0.1089177920002839 +14,348.69315700606205,0.0,0.0,72.40767337602198,0.1072347500012256 +15,355.05290449197474,0.0,0.0,73.72830301690117,0.1091905840003164 +16,398.8938216060945,0.0,0.0,82.83206299361113,0.1226731250026205 +17,353.3356074134523,0.0,0.0,73.3716986974505,0.1086624579984345 +18,330.53766821951785,0.0,0.0,68.63760598116552,0.1016513329996087 +19,346.2550728954724,0.0,0.0,71.90139444741146,0.1064849579997826 +20,349.15137082892227,0.0,0.0,72.50282349914717,0.1073756660007347 +21,341.4818789010037,0.0,0.0,70.91021964295189,0.1050170419985079 +22,354.0638505605011,0.0,0.0,73.52292160180167,0.1088864170014858 +23,352.4121301159214,0.0,0.0,73.1799345598806,0.1083784579968778 +24,354.6372291574377,0.0,0.0,73.64198619866458,0.1090627500016125 +25,333.33858460150753,0.0,0.0,69.21922863267379,0.1025127079992671 +26,353.2686780710232,0.0,0.0,73.3578005240321,0.108641874998284 +27,355.6745152674338,0.0,0.0,73.85738323855767,0.1093817500004661 +28,353.8396211657184,0.0,0.0,73.47635937810296,0.10881745900042 +29,351.7074649321256,0.0,0.0,73.03360772368504,0.108161750002182 +0,357.96048293355267,0.0,0.0,74.32044363142623,0.1103388750016165 +1,336.02149904696915,0.0,0.0,69.76542962007161,0.1035763330000918 +2,351.0183178122401,0.0,0.0,72.87909796290356,0.1081989999984216 +3,347.93106372332824,0.0,0.0,72.23811633384071,0.1072473750027711 +4,350.5933286729955,0.0,0.0,72.7908609007889,0.1080679999977292 +5,350.19713174353114,0.0,0.0,72.70860173262069,0.1079458749991317 +6,351.7221711961008,0.0,0.0,73.02523335559079,0.108415957998659 +7,355.219004525288,0.0,0.0,73.75125261391933,0.1094938329988508 +8,332.0804839475747,0.0,0.0,68.94718848869086,0.1023615420017449 +9,347.71262254057837,0.0,0.0,72.19276315553373,0.107180041999527 +10,347.69072425564144,0.0,0.0,72.18821659151654,0.1071732920026988 +11,349.79985125658436,0.0,0.0,72.6261175941649,0.107823416001338 +12,352.3465418754639,0.0,0.0,73.1548663963679,0.1086084159978781 +13,350.4592364960211,0.0,0.0,72.76302042521861,0.108026666999649 +14,352.43184142678575,0.0,0.0,73.17257645319833,0.1086347090022172 +15,333.343418635852,0.0,0.0,69.20940141661261,0.1027508329971169 +16,396.5160813956773,0.0,0.0,82.32543110573395,0.1222233750013401 +17,352.97632387457793,0.0,0.0,73.28562294575474,0.1088025419994664 +18,350.7025476533563,0.0,0.0,72.81353715546054,0.1081016660027671 +19,350.1848297681744,0.0,0.0,72.70604757284707,0.1079420829992159 +20,350.68254396824653,0.0,0.0,72.80938395190176,0.1080955000034009 +21,353.57487727944215,0.0,0.0,73.40989575436771,0.1089870420000806 +22,350.58089369750513,0.0,0.0,72.78827912727185,0.1080641670014301 +23,354.39984608014447,0.0,0.0,73.58117736273917,0.109241333000682 +24,350.82717976651696,0.0,0.0,72.83941351439523,0.1081400830007623 +25,349.56127013115605,0.0,0.0,72.57658292224077,0.1077498749982623 +26,399.81461348479326,0.0,0.0,83.01027867937269,0.1232401249981194 +27,357.78056653953445,0.0,0.0,74.28308904381807,0.110283417001483 +28,363.9649435656808,0.0,0.0,75.56710129120493,0.1121897089979029 +29,352.905762706687,0.0,0.0,73.27097290042619,0.1087807920011982 +0,369.6457899010592,0.9711657824905524,0.0,82.75002236324673,0.1110664580010052 +1,359.12051672685783,0.9435128632975972,0.0,80.3938029382194,0.1079039579999516 +2,352.0303133115699,0.9248848601228056,0.0,78.80656859873974,0.105773584000417 +3,374.8716803818042,0.9848956994992136,0.0,83.9199059814675,0.1126366669996059 +4,376.96633455222275,0.9903989583270936,0.0,84.38882158711202,0.1132660420007596 +5,368.643464389488,0.9685323851508564,0.0,82.52563874854367,0.1107652919999964 +6,357.601772225587,0.939522684774599,0.0,80.05381220958739,0.1074476249996223 +7,361.0118775242784,0.9484820119771764,0.0,80.81720867571043,0.108472249998158 +8,364.70279545437313,0.9581791147107104,0.0,81.64346870517811,0.1095812499988824 +9,363.31662114091176,0.9545372361919228,0.0,81.33315553897383,0.1091647499997634 +10,369.67338691038384,0.971238287769626,0.0,82.7562003130602,0.1110747499988065 +11,357.5565659645877,0.939403914927799,0.0,80.04369219953763,0.1074340419982036 +12,372.4174462680742,0.9784477207622896,0.0,83.37049372426266,0.1118992499978048 +13,365.4860188950647,0.9602368679069466,0.0,81.8188034688988,0.1098165830007928 +14,364.31243013482384,0.9571535127658898,0.0,81.55608034636253,0.1094639580005605 +15,364.7247080018868,0.9582366852740276,0.0,81.64837411421111,0.1095878340020135 +16,363.90181967276175,0.9560747210101548,0.0,81.46415984883079,0.1093405829997209 +17,362.8903417526933,0.9534172776615424,0.0,81.2377273483335,0.1090366669996001 +18,362.0327874205095,0.9511642358393528,0.0,81.04575264686348,0.1087789999983215 +19,361.38906670715664,0.9494729964221365,0.0,80.90164738479653,0.1085855829987849 +20,360.06169081323577,0.94598559825909,0.0,80.60449701028317,0.1081867499997315 +21,362.4870798520306,0.952357792689698,0.0,81.14745192193944,0.1089155000008759 +22,361.2513645215034,0.9491112131838736,0.0,80.87082095783971,0.1085442080002394 +23,359.64983229767086,0.9449035275079232,0.0,80.51229711972682,0.1080629999996745 +24,358.24285704810165,0.9412069989486274,0.0,80.19732739317442,0.1076402500002586 +25,415.10096515168647,1.0905895986047207,0.0,92.9257551086988,0.1247242500030552 +26,374.1232627401116,0.9829293911454282,0.0,83.75236294897769,0.1124117920007847 +27,394.4106909943951,1.0362302988618823,0.0,88.2939678788866,0.1185074999993958 +28,385.6766545760032,1.0132834737003162,0.0,86.33874012115454,0.1158832080000138 +29,374.6998646691671,0.9844442902161484,0.0,83.88144279738285,0.1125850420030474 +0,537.586585590763,1.4050178341513406,20.03823053944412,97.1469473898927,0.112041666998266 +1,551.1176123306176,1.440382060851645,20.542591772622274,99.59213106459949,0.1148617500002728 +2,520.1407066232931,1.3594218841430186,19.38794544289686,93.99431313217444,0.1084056660001806 +3,523.5729472492875,1.3683922703466131,19.51588023661003,94.61455126396582,0.1091209999976854 +4,539.1167749298061,1.4090170844462884,20.09526746626968,97.4234669817148,0.1123605829998268 +5,550.2607540984404,1.4381426056088673,20.510652875231223,99.43728873067025,0.1146831670012034 +6,533.1337517261692,1.3933800605164346,19.872253720222485,96.34227846999347,0.1111136250001436 +7,536.0362010883679,1.4009658024711544,19.98044084952908,96.86677834229124,0.1117185420007444 +8,537.9854272547229,1.406060233024167,20.053097132892287,97.2190218262424,0.1121247919982124 +9,519.3886099980571,1.35745623023761,19.359911474103058,93.85840220500047,0.10824891700031 +10,508.1190838756591,1.3280025838691776,18.93984637470565,91.8218929418117,0.1059001670000725 +11,526.4841915164528,1.3760009983628512,19.624395190936855,95.14064045823145,0.1097277499975462 +12,533.816683809472,1.395164948350829,19.897709620527294,96.46569071454304,0.1112559590001183 +13,540.8938694464644,1.4136616376323274,20.161507641470575,97.74460465914947,0.1127309580006112 +14,538.442642551696,1.4072551952191186,20.07013956991076,97.30164492657904,0.1122200829995563 +15,536.2617115522398,1.4015551888733089,19.98884662226457,96.90753020209736,0.1117655419984657 +16,541.3640875617663,1.41489058354662,20.17903475105775,97.82957749093774,0.1128289589978521 +17,538.0244117958546,1.4061621216817606,20.054550259223205,97.22606669913888,0.1121329170018725 +18,543.8858800536349,1.421481453780502,20.27303311463145,98.28528908996614,0.113354541001172 +19,533.9424322854671,1.395493600248265,19.90239682258835,96.48841464573718,0.1112821669994446 +20,529.8952389858462,1.3849159948603322,19.75154002193664,95.75704878748584,0.11043866700129 +21,545.218152759639,1.4249634359617198,20.32269281288262,98.52604328649606,0.1136322080019454 +22,549.6611889257908,1.436575602668526,20.488304428534455,99.3289416702238,0.1145582080025633 +23,535.2031318006688,1.3987885211965203,19.949388671350377,96.71623489415944,0.1115449169992643 +24,553.7387733663529,1.4472326372984954,20.6402940414714,100.06579949321024,0.1154080420019454 +25,526.6145413847311,1.3763416763011018,19.629253907246667,95.16419590424762,0.1097549170008278 +26,531.9144357830602,1.3901932982506862,19.826804420289548,96.12193662190458,0.1108595000005152 +27,534.3966487675558,1.396680724843643,19.919327480508144,96.57049583204616,0.1113768329996673 +28,532.4494234053807,1.391591523523708,19.846745775969072,96.21861391221069,0.1109710000018822 +29,541.3340994827435,1.414812207733368,20.17791696267351,97.82415836327858,0.1128227090011932 +0,364.07014883699185,0.5002337851566252,0.0,76.53576912896365,0.1093853339989436 +1,362.3638254849227,0.4978892903062966,0.0,76.17706141686338,0.1088726670022879 +2,368.5707390906869,0.5064176134799215,0.0,77.48189486242799,0.1107375419996969 +3,369.37300566831703,0.507519930844074,0.0,77.65054941914332,0.1109785840017139 +4,367.2581301789736,0.5046140837853443,0.0,77.20595481915768,0.1103431670017016 +5,363.8048512418187,0.4998692652402016,0.0,76.47999758175085,0.1093056250028894 +6,360.5148000962549,0.4953487223086766,0.0,75.78835451322753,0.1083171249993029 +7,358.84675249219504,0.4930568184833677,0.0,75.43769322795526,0.1078159579992643 +8,361.4683657469591,0.4966589251813122,0.0,75.98881555274077,0.1086036249980679 +9,370.3369690051961,0.508844420177516,0.0,77.85319628715993,0.1112682079983642 +10,362.6244035231207,0.4982473255332793,0.0,76.23184080659173,0.1089509580015146 +11,370.8249849345874,0.5095149559419997,0.0,77.95578825912595,0.1114148329979798 +12,362.9171598184016,0.4986495738092905,0.0,76.29338479282144,0.1090389169985428 +13,360.0388493468535,0.4946947641479163,0.0,75.6882989146312,0.108174124998186 +14,357.3634303624893,0.4910187281704991,0.0,75.12586541008638,0.1073702920002688 +15,410.0131251531342,0.5633596113673182,0.0,86.19402053919968,0.123188959001709 +16,363.79569833371056,0.4998566891092478,0.0,76.47807343371491,0.1093028750001394 +17,356.223894447256,0.4894530014389337,0.0,74.88630922015686,0.1070279170016874 +18,346.93966636378417,0.4766964363338611,0.0,72.93455475908077,0.1042384590000438 +19,362.9666686825585,0.4987175991791131,0.0,76.3037926744043,0.109053791999031 +20,360.01499523962485,0.4946619885128124,0.0,75.6832842424603,0.108166958001675 +21,360.3069161291499,0.495063088938101,0.0,75.74465260752946,0.1082546659999934 +22,359.93511539136995,0.4945522332939955,0.0,75.66649169398131,0.1081429580008261 +23,358.8209579682053,0.4930213767081688,0.0,75.43227063634983,0.1078082080020976 +24,360.9280651430022,0.4959165500728252,0.0,75.87523216114225,0.1084412910022365 +25,352.75314179405217,0.4846841739407147,0.0,74.15667861292935,0.1059851250029169 +26,362.2894906220914,0.4977871539187846,0.0,76.16143454957404,0.1088503329992818 +27,361.3672678227143,0.496520016244455,0.0,75.96756248540161,0.1085732499996083 +28,373.75100364480954,0.5135353169068556,0.0,78.5709034867489,0.1122939589986344 +29,366.51757743676853,0.5035965614684921,0.0,77.05027390467929,0.110120666999137 +0,363.8555760220334,0.0,0.0,75.37472069721154,0.1118581669979903 +1,356.073044172833,0.0,0.0,73.76252563107049,0.1094656249988474 +2,354.0995230742944,0.0,0.0,73.353699680899,0.1088589159990078 +3,352.099036026975,0.0,0.0,72.93928758338875,0.1082439170022553 +4,352.917119453682,0.0,0.0,73.10875814769673,0.1084954159996414 +5,351.11031239276986,0.0,0.0,72.7344679442624,0.1079399590016692 +6,352.16463583615,0.0,0.0,72.9528769513144,0.1082640839995292 +7,337.48447844835925,0.0,0.0,69.91180011804681,0.1037510419992031 +8,405.16068508681326,0.0,0.0,83.93130540910039,0.1245563750017026 +9,355.01452131885316,0.0,0.0,73.54324669258992,0.1091402089987241 +10,352.03099657689336,0.0,0.0,72.92519283018375,0.1082229999992705 +11,352.0968663843558,0.0,0.0,72.938838129767,0.1082432500006689 +12,352.44085313693654,0.0,0.0,73.01009691239383,0.1083490000019082 +13,355.6850108610215,0.0,0.0,73.68214235697376,0.1093463340002927 +14,333.25363011232423,0.0,0.0,69.0353561862886,0.1024503750013536 +15,352.36373178750216,0.0,0.0,72.99412079286597,0.1083252909993461 +16,352.425535562288,0.0,0.0,73.00692379100454,0.1083442910021403 +17,351.4065898823191,0.0,0.0,72.7958434858105,0.1080310420002206 +18,352.9674049543168,0.0,0.0,73.1191750708257,0.1085108750012295 +19,352.3824388133895,0.0,0.0,72.99799605806528,0.1083310419999179 +20,359.6312333359141,0.0,0.0,74.49962444727453,0.1105594999971799 +21,334.32625072049933,0.0,0.0,69.25755555351878,0.1027801249983895 +22,349.209436738063,0.0,0.0,72.34069090470156,0.1073555830007535 +23,356.1634468203862,0.0,0.0,73.7812530458984,0.1094934169996122 +24,350.08133172517404,0.0,0.0,72.5213088351708,0.107623624997359 +25,354.11606046939625,0.0,0.0,73.35712549492798,0.1088640000016312 +26,351.1624910291874,0.0,0.0,72.7452770410731,0.1079559999998309 +27,354.5463838131862,0.0,0.0,73.44626938603518,0.1089962919977551 +28,397.0313202491415,0.0,0.0,82.24726194662468,0.1220572079982957 +29,355.7000551949418,0.0,0.0,73.68525887501565,0.1093509589991299 +0,371.4568880575053,0.0,0.0,76.70321474475051,0.1102369580003141 +1,369.29752302591254,0.0,0.0,76.25732116986836,0.1095961249993706 +2,361.783124260732,0.0,0.0,74.7056510819143,0.1073660830006701 +3,357.0969638630331,0.0,0.0,73.73799217217456,0.1059753749977971 +4,366.1550707681201,0.0,0.0,75.60842705024373,0.1086635420033417 +5,364.0291189051167,0.0,0.0,75.16943305786498,0.1080326250012149 +6,349.3712628459299,0.0,0.0,72.14268966676815,0.1036826250019657 +7,361.1163602890243,0.0,0.0,74.5679690473358,0.1071682080000755 +8,369.57256842655835,0.0,0.0,76.31411609576303,0.1096777499988093 +9,365.2454143175718,0.0,0.0,75.42058944024481,0.1083935839997138 +10,378.791854453436,0.0,0.0,78.21783332015166,0.1124137500009965 +11,366.7503717781449,0.0,0.0,75.73135248971661,0.1088402089990268 +12,369.4220575227252,0.0,0.0,76.28303666084257,0.1096330830005172 +13,345.8947934099548,0.0,0.0,71.42482336714019,0.1026509160001296 +14,353.18188420676984,0.0,0.0,72.92955597063431,0.1048134999982721 +15,363.3265526958491,0.0,0.0,75.02435811497277,0.1078241249997518 +16,366.3952978443196,0.0,0.0,75.65803223890934,0.1087348339970049 +17,364.24294838058665,0.0,0.0,75.21358732906856,0.1080960830004187 +18,368.872529440838,0.0,0.0,76.16956300662206,0.109469999999419 +19,371.3581850954161,0.0,0.0,76.68283328262,0.1102076660026796 +20,357.45863551761073,0.0,0.0,73.81267480555692,0.1060827080000308 +21,361.21646839471185,0.0,0.0,74.58864066166066,0.1071979170010308 +22,365.8029418804323,0.0,0.0,75.53571493059131,0.1085590410002623 +23,363.99401755379665,0.0,0.0,75.1621848775924,0.1080222080017847 +24,367.7948097252371,0.0,0.0,75.94702152351032,0.109150165997562 +25,362.63591832244185,0.0,0.0,74.88174701162083,0.1076191659994947 +26,366.9264345364295,0.0,0.0,75.76770820148677,0.1088924590003443 +27,371.6140000532096,0.0,0.0,76.73565725835823,0.1102835839992621 +28,365.9034711798288,0.0,0.0,75.55647351843196,0.1085888749985315 +29,368.29253324875754,0.0,0.0,76.04979790358432,0.1092978750020847 +0,351.7954310298514,0.0,0.0,73.25457676290097,0.1086488340006326 +1,355.551001689785,0.0,0.0,74.0366015276662,0.1098087079990364 +2,353.76569761686557,0.0,0.0,73.6648465737376,0.1092573329988226 +3,351.52425260491015,0.0,0.0,73.19810911439244,0.1085650829991209 +4,352.8167204788052,0.0,0.0,73.46724048657845,0.1089642500010086 +5,351.8967485585963,0.0,0.0,73.27567417358975,0.108680125002138 +6,333.8565823831006,0.0,0.0,69.51915938870556,0.1031085829999938 +7,354.3529740261682,0.0,0.0,73.78713549795803,0.1094387080011074 +8,352.3524847436932,0.0,0.0,73.37057239684717,0.1088208749970363 +9,354.08719643537285,0.0,0.0,73.73179246843152,0.1093566249983268 +10,352.01722479777135,0.0,0.0,73.30076101421447,0.1087173329979123 +11,352.19504125685603,0.0,0.0,73.33778784373752,0.1087722500014933 +12,404.253122170483,0.0,0.0,84.17787372334351,0.1248499169996648 +13,357.7861068799194,0.0,0.0,74.50201884205414,0.1104990000021644 +14,353.63739856928817,0.0,0.0,73.63813078495703,0.1092177089994947 +15,349.80761818700586,0.0,0.0,72.84065328453109,0.1080349160001787 +16,350.1534013584029,0.0,0.0,72.91265592481062,0.108141708002222 +17,343.3340886156128,0.0,0.0,71.49266628104358,0.106035624998185 +18,352.7287560959643,0.0,0.0,73.44892360959012,0.1089370829977269 +19,352.0274792749238,0.0,0.0,73.30289631023446,0.108720500000345 +20,330.632971611579,0.0,0.0,68.84790495534112,0.102112999997189 +21,344.06923077621286,0.0,0.0,71.64574538067167,0.1062626669991004 +22,344.60078918537494,0.0,0.0,71.75643211180385,0.1064268340014678 +23,353.40008547212716,0.0,0.0,73.58871493426808,0.1091444169978785 +24,352.96917436413725,0.0,0.0,73.49898605192921,0.1090113340032985 +25,351.45126682709304,0.0,0.0,73.18291124144665,0.1085425420023966 +26,352.4323511146662,0.0,0.0,73.38720301989446,0.1088455410026654 +27,336.2224182777831,0.0,0.0,70.01179883728538,0.1038392499976907 +28,350.4310523596511,0.0,0.0,72.97047136182381,0.1082274580003286 +29,349.8513332379995,0.0,0.0,72.84975609621154,0.1080484169979172 +0,355.0041249267728,0.0,0.0,73.82307578403244,0.1089681670018762 +1,353.4402104749345,0.0,0.0,73.49785991471933,0.1084881249989848 +2,350.8823752799278,0.0,0.0,72.96595831644073,0.1077030000014929 +3,350.97739756413245,0.0,0.0,72.98571819187727,0.1077321669981756 +4,352.6420323212576,0.0,0.0,73.33187883959745,0.1082431249997171 +5,354.0361270375474,0.0,0.0,73.62178071020813,0.1086710410017985 +6,334.5734779261205,0.0,0.0,69.57452458154408,0.102696999998443 +7,353.746994323176,0.0,0.0,73.56165558831248,0.1085822919994825 +8,351.5615043409446,0.0,0.0,73.10718314347316,0.1079114579988527 +9,344.2555939822133,0.0,0.0,71.58791974281488,0.1056689159995585 +10,353.00555848573197,0.0,0.0,73.40747407273736,0.1083547089983767 +11,352.91704867261353,0.0,0.0,73.38906846507626,0.1083275409982889 +12,354.5682479676913,0.0,0.0,73.73243520967453,0.1088343749979685 +13,340.24380070376134,0.0,0.0,70.75366769212076,0.1044374999983119 +14,357.4707397539094,0.0,0.0,74.33600811503362,0.1097252919971651 +15,353.83101804782274,0.0,0.0,73.57912831428018,0.108608082999126 +16,353.14374430898687,0.0,0.0,73.43620980222931,0.1083971250009199 +17,350.9146835745553,0.0,0.0,72.97267682339675,0.1077129170007538 +18,352.7980028511226,0.0,0.0,73.36431289722614,0.1082910000004631 +19,356.9293892674415,0.0,0.0,74.22343433016144,0.1095591249977587 +20,337.23407287000106,0.0,0.0,70.12779506033984,0.1035136669997882 +21,353.29401357030446,0.0,0.0,73.46745828157741,0.1084432500028924 +22,353.32387845566024,0.0,0.0,73.47366868179559,0.1084524170000804 +23,354.1508333805749,0.0,0.0,73.64563388390287,0.1087062500009778 +24,353.76314684675725,0.0,0.0,73.56501450413546,0.1085872500007099 +25,352.473707948533,0.0,0.0,73.29687580145946,0.1081914579990552 +26,360.93358193698526,0.0,0.0,75.0561058349181,0.1107882079995761 +27,338.47464045384555,0.0,0.0,70.38577097759506,0.1038944579995586 +28,355.80325111504544,0.0,0.0,73.98925400286308,0.1092134579994308 +29,354.60680161162924,0.0,0.0,73.7404524364568,0.108846209001058 diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/template/Eager.java.tpl b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/template/Eager.java.tpl new file mode 100644 index 000000000..352ef2480 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/template/Eager.java.tpl @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class __CLASS__ { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = __CHILD_COUNT__; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = __PARENT_READS__; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/template/Lazy.java.tpl b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/template/Lazy.java.tpl new file mode 100644 index 000000000..bac8e7f7d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/template/Lazy.java.tpl @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class __CLASS__ { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = __CHILD_COUNT__; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = __PARENT_READS__; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN10.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN10.java new file mode 100644 index 000000000..f602a9b8a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN10.java @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class FetchTypeEagerN10 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 10; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = 500000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN100.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN100.java new file mode 100644 index 000000000..6e8d80015 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN100.java @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class FetchTypeEagerN100 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 100; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = 50000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN1000.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN1000.java new file mode 100644 index 000000000..377392cf1 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN1000.java @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class FetchTypeEagerN1000 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 1000; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = 5000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN30.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN30.java new file mode 100644 index 000000000..c208892ce --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN30.java @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class FetchTypeEagerN30 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 30; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = 166667; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN50.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN50.java new file mode 100644 index 000000000..ded6f7bf4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN50.java @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class FetchTypeEagerN50 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 50; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = 100000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN500.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN500.java new file mode 100644 index 000000000..1d41d0a23 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeEagerN500.java @@ -0,0 +1,121 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITH the code smell: the child collection is fetched eagerly. + * + *

Models the client side of a JPA read where a parent entity is loaded together with a + * collection association mapped with {@code FetchType.EAGER}, while the application never + * accesses that collection. + * + *

This file is measured by EnergyTracer, whose Java runner compiles with a bare + * {@code javac } and runs with {@code java -cp }: no third-party + * library is reachable, hence the hand-rolled row source instead of JDBC/Hibernate. + * See README.md for what this does and does not measure. + * + *

The only difference with the compliant variant is the body of {@code loadOrder}. + */ +public class FetchTypeEagerN500 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 500; + + /** Parent reads performed by one JVM run. Calibrated so a run lasts ~300-500 ms, + * so that JVM startup (~100-400 ms, once per iteration) does not drown the signal. */ + private static final int PARENT_READS = 10000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // EAGER: the provider hydrates the whole collection now, used or not. + Set items = hydrateItems(p); + return new Order(id, reference, items); + } + + private static Set hydrateItems(int p) { + Set items = new HashSet<>(Math.max(16, CHILD_COUNT * 2)); + int base = p * CHILD_COUNT * CHILD_FIELDS; + for (int i = 0; i < CHILD_COUNT; i++) { + int o = base + i * CHILD_FIELDS; + items.add(new OrderItem( + CHILD_WIRE[o], + CHILD_WIRE[o + 1], + CHILD_WIRE[o + 2], + "ITEM-" + CHILD_WIRE[o])); + } + return items; + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN10.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN10.java new file mode 100644 index 000000000..58e61ce2a --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN10.java @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class FetchTypeLazyN10 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 10; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = 500000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN100.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN100.java new file mode 100644 index 000000000..3c1919900 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN100.java @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class FetchTypeLazyN100 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 100; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = 50000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN1000.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN1000.java new file mode 100644 index 000000000..b13200bfd --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN1000.java @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class FetchTypeLazyN1000 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 1000; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = 5000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN30.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN30.java new file mode 100644 index 000000000..8aa558dc4 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN30.java @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class FetchTypeLazyN30 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 30; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = 166667; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN50.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN50.java new file mode 100644 index 000000000..562be4705 --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN50.java @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class FetchTypeLazyN50 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 50; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = 100000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN500.java b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN500.java new file mode 100644 index 000000000..4125b758d --- /dev/null +++ b/src/main/rules/S6904/java/analysis/level2-energytracer/generate/variants/FetchTypeLazyN500.java @@ -0,0 +1,104 @@ +import java.util.HashSet; +import java.util.Set; + +/** + * FetchType LAZY - variant WITHOUT the code smell: the child collection is fetched lazily. + * + *

Strictly identical to the noncompliant variant except for the body of + * {@code loadOrder}: no call to {@code hydrateItems}. The empty {@code HashSet} + * stands for the lazy collection wrapper a real provider allocates, so the + * comparison stays conservative (the compliant variant is not free). + * + *

See README.md for what this does and does not measure. + */ +public class FetchTypeLazyN500 { + + /** Number of child rows per parent: the collection size under test. */ + private static final int CHILD_COUNT = 500; + + /** Parent reads performed by one JVM run. Must be identical to the eager variant. */ + private static final int PARENT_READS = 10000; + + /** Distinct parent rows in the simulated table. */ + private static final int PARENT_ROWS = 200; + + private static final int CHILD_FIELDS = 3; + + /** Simulated persistence context. Keeps hydrated entities reachable, as a real + * provider does - and, incidentally, prevents the JIT from eliding the work. */ + private static final int CONTEXT_SIZE = 1024; + + /** Simulated wire buffer for parent rows: id, code. */ + private static final long[] PARENT_WIRE = new long[PARENT_ROWS * 2]; + + /** Simulated wire buffer for child rows: id, parentId, quantity. + * Allocated in both variants so the two share the same memory footprint. */ + private static final long[] CHILD_WIRE = new long[PARENT_ROWS * CHILD_COUNT * CHILD_FIELDS]; + + private static final Object[] CONTEXT = new Object[CONTEXT_SIZE]; + + /** Consumes the computed value so it cannot be optimised away. */ + static volatile long sink; + + static { + for (int i = 0; i < PARENT_ROWS; i++) { + PARENT_WIRE[i * 2] = i; + PARENT_WIRE[i * 2 + 1] = 1000L + i; + } + for (int i = 0; i < PARENT_ROWS * CHILD_COUNT; i++) { + int o = i * CHILD_FIELDS; + CHILD_WIRE[o] = i; + CHILD_WIRE[o + 1] = i / CHILD_COUNT; + CHILD_WIRE[o + 2] = 1 + (i % 7); + } + } + + static final class OrderItem { + final long id; + final long orderId; + final long quantity; + final String label; + + OrderItem(long id, long orderId, long quantity, String label) { + this.id = id; + this.orderId = orderId; + this.quantity = quantity; + this.label = label; + } + } + + static final class Order { + final long id; + final String reference; + final Set items; + + Order(long id, String reference, Set items) { + this.id = id; + this.reference = reference; + this.items = items; + } + } + + public static void main(String[] args) { + long acc = 0; + for (int r = 0; r < PARENT_READS; r++) { + Order order = loadOrder(r % PARENT_ROWS); + CONTEXT[r & (CONTEXT_SIZE - 1)] = order; + // The application only needs the parent. The collection is never accessed. + acc += order.id + order.reference.length(); + } + sink = acc; + if (sink == Long.MIN_VALUE) { + throw new IllegalStateException(); + } + } + + private static Order loadOrder(int p) { + long id = PARENT_WIRE[p * 2]; + String reference = "ORD-" + PARENT_WIRE[p * 2 + 1]; + // LAZY: only the collection wrapper is allocated. Rows are never fetched + // because the application never touches the collection. + Set items = new HashSet<>(); + return new Order(id, reference, items); + } +} diff --git a/src/main/rules/S6904/java/analysis/s6904-analysis-summary.md b/src/main/rules/S6904/java/analysis/s6904-analysis-summary.md new file mode 100644 index 000000000..c5b0b6a7c --- /dev/null +++ b/src/main/rules/S6904/java/analysis/s6904-analysis-summary.md @@ -0,0 +1,161 @@ +# PR #487 description β€” corrected against the actual current file changes + +*Reworked 6 August 2026. The previous version of this file corrected the "closing as +duplicate" framing but still reused the **Context**/**What this PR contains** text as +published at the top of [PR #487](https://github.com/green-code-initiative/creedengo-rules-specifications/pull/487)'s +conversation. That text describes the PR's *first* commit (`d111698`, "GCI116 - first init +from other PRs") β€” it was written before three more commits pivoted the approach. Checked +against the actual current file contents at the latest commit (`d92dbf7`) rather than the +stale top-of-page description:* + +- `CHANGELOG.md` (raw, current): adds β€” under `[Unreleased]` / `Added` β€” *"[#487] Add + complete analysis for FetchType issue for Java (sonarqube built-in rule S6904)"*. +- `RULES.md` (raw, current): the row for this rule still uses the **legacy key `CRJVM205`** + and now reads *"The rule already exists inside SonarQube : built-in rule 'java:S6904'"*, + with its Reference/Validation link pointing at PR #487. +- `src/main/rules/S6904/java/S6904.asciidoc` (new file, 106 lines, fully present in this + PR): opens with *"== Why is this rule isn't a 'GCIxxx' rule ? Because the rule already + exists as built-in rule inside SonarQube with number S6904. Some works were done by + different people. To not loose this work, we created this documentation to keep it."* + +**No `GCI116.json` or `GCI116.asciidoc` file exists in the current changeset.** That plan +was abandoned after the first commit. **"contenu" (What this PR contains) in the previous +draft was wrong** β€” it listed the GCI116 files from the abandoned plan. Fixed below. + +Two blocks: + +- **A** β€” internal record of everything changed in this pass (What this PR contains, + Context, and the removal of Implementation and Open question) +- **B** β€” the full corrected PR description, paste as is over the current one on #487 + +--- +--- + +# A β€” Internal record + +## What is fixed here + +- **"What this PR contains"** β€” rewritten to match the real current file list (`RULES.md`, + `CHANGELOG.md`, `S6904.asciidoc`, and the analysis harness/campaigns), dropping the + `GCI116.json` / `GCI116.asciidoc` bullets that no longer correspond to anything in the PR. +- **"Context"** β€” last sentence rewritten: no longer claims the PR "consolidates them into + a single specification... under the key `GCI116`." Now states the rule already exists as + the built-in `java:S6904`, that no new specification is added, and that `RULES.md`'s + `CRJVM205` entry is updated to point at the built-in rule instead β€” matching what + `RULES.md` and `CHANGELOG.md` actually say. +- **"Implementation"** β€” removed. It assumed a new rule was being implemented in + `creedengo-java`; that doesn't apply once the rule is recognised as already built into + SonarQube's engine. +- **"Open question"** β€” removed. It framed the 2024-01-01 core-team question as resolved by + *narrowing the scope*; the real resolution is that the rule already exists as a built-in, + which made the scope question moot rather than answered. +- The **"Measured impact"** section's forward reference to "see Open question below" was + removed along with that section, and reworded to stand on its own. + +--- +--- + +# B β€” Corrected PR description, paste as is + +```markdown +Supersedes PRs #122, #125, #155, #325 and resolves #98, #116, #118 + +### Context + +Four PRs have proposed this rule since April 2023 (#122, #125, #155, #325). None could be merged: +three of them target the old `java-plugin/` layout that no longer exists in this repository, and +they use four different rule keys (`EC80`, `CRJVM205`, `EC_CRJVM205`, `EC205`). On review, the rule +already exists inside SonarQube as the built-in rule `java:S6904`. This PR does not add a new +specification: it keeps the `CRJVM205` entry in `RULES.md`, updates it to point at the built-in +rule, and preserves the work already done as supporting analysis rather than letting it go to +waste β€” see **Measured impact** below. + +### What this PR contains + +- `RULES.md` β€” updates the `CRJVM205` row: instead of a new rule entry, it now states the rule + already exists inside SonarQube as the built-in rule `java:S6904`, with the Reference/Validation + link pointing at this PR. +- `CHANGELOG.md` β€” entry under `[Unreleased]` / `Added`: "Add complete analysis for FetchType issue + for Java (sonarqube built-in rule S6904)". +- `src/main/rules/S6904/java/S6904.asciidoc` β€” documentation explaining why this isn't a new + `GCIxxx` rule, plus the standard "why is this an issue," compliant/noncompliant examples, + exceptions and resources sections, and a pointer to the full measurement analysis. +- `src/main/rules/S6904/java/analysis/` β€” the two-level measurement harness (JPA/Hibernate + functional cost, then EnergyTracer hardware energy measurement) and two independent measurement + campaigns, added to answer the impact question the four superseded PRs left open. See + **Measured impact** below. + +### Scope decision + +The rule targets **collection associations only** (`@OneToMany`, `@ManyToMany`) and **only when +`fetch = FetchType.EAGER` is set explicitly**. Omitting `fetch` on those annotations is compliant, +since `LAZY` is already the JPA default β€” PR #155 reported those cases, which would have produced +false positives on the most common mapping in the domain. + +Single-valued associations (`@ManyToOne`, `@OneToOne`) are explicitly out of scope: their cost +profile is different and their real impact belongs to the N+1 selects problem (`CRJVM206`). + +### Measured impact + +None of the four superseded PRs provided any measurement of the actual cost β€” that gap is what +stalled the core-team discussion since April 2023. Two independent campaigns close +it, using a real Hibernate stack for functional cost and EnergyTracer's hardware counters +(Apple Silicon CPU/GPU/DRAM) for energy, 900 runs per variant per size across 30 measurement +phases. + +**Functional cost** (Hibernate 6.4.4 + H2, single run per size): + +| Children collection size | Extra rows hydrated | Time | Heap allocation | SQL statements | +|---:|---:|---:|---:|---:| +| 10 | +10 | x1.81 | x1.38 | unchanged | +| 100 | +100 | x3.73 | x4.37 | unchanged | +| 1000 | +1000 | x12.65 | x32.09 | unchanged | + +The statement count never changes β€” Hibernate resolves the eager collection with a join, so this +is a payload/hydration cost, confirming the N+1 exclusion in the scope decision above rather than +overlapping with it. + +**Energy cost** (two campaigns, six distinct collection sizes from 10 to 1000; three of them, +10/100/1000, measured independently in both): + +| Children collection size | Relative energy overhead (with smell) | Measured in | Sign test across 30 phases | +|---:|---:|---|:---:| +| 10 | 81.0–81.3% | campaigns 1 and 2 | p β‰ˆ 1.9Γ—10⁻⁹ | +| 30 | 83.9% | campaign 2 | p β‰ˆ 1.9Γ—10⁻⁹ | +| 50 | 85.8% | campaign 2 | p β‰ˆ 1.9Γ—10⁻⁹ | +| 100 | 86.3–86.7% | campaigns 1 and 2 | p β‰ˆ 1.9Γ—10⁻⁹ | +| 500 | 87.1% | campaign 2 | p β‰ˆ 1.9Γ—10⁻⁹ | +| 1000 | 90.1–90.7% | campaigns 1 and 2 | p β‰ˆ 1.9Γ—10⁻⁹ | + +Every one of the 30 measurement phases at every size points the same way, at both hardware +components (CPU, DRAM) and wall time, with strictly disjoint EAGER/LAZY distributions. The +relative overhead is already large at the smallest size tested (10 elements) and climbs to 90%+ +at 1000. The second campaign also located a genuine, honestly-disclosed anomaly in the +fine-grained scaling curve around 50–100 elements, which does not change this conclusion (see +campaign 2's document, Β§4–§5). + +Reproducibility across the two independent measurement sessions (different days) is strong: the +relative overhead never moved by more than 0.6 percentage points at the three sizes tested in +both campaigns, even though absolute joule readings drifted by up to 16% between sessions β€” +which is why every figure above is a relative, paired comparison rather than a raw energy total. + +Full detail, including the honest caveats (bimodal phases, the `CONTEXT_SIZE` confound, why the +tool's own p-values are not cited, the modest absolute yearly saving): `campaign1-interpretation.md` +and `campaign2-interpretation.md` under `src/main/rules/S6904/java/analysis/level2-energytracer/`. + +### Credits + +- [@AntoineMeheut](https://github.com/AntoineMeheut) and [@dirdr](https://github.com/dirdr) (Crjvm205 #122): ecological rationale, JPA default fetch types, test matrix +- [@kerimboukadida](https://github.com/kerimboukadida) (CRJVM205 - Forcer l'utilisation du FetchType LAZY sur les collections… #155): `@ManyToMany(EAGER)` example, real-project validation +- [@AndreBraga1](https://github.com/AndreBraga1) ([205][Java] Force usage of FetchType LAZY for collections on JPA entities #325): repository structure, CHANGELOG and RULES.md entries +- [@misterdz-mh](https://github.com/misterdz-mh) (CRJVM 205 : Forcer l'utilisation du FetchType LAZY sur les collections dans les Entity JPA #125): `orm` tag +- [@dedece35](https://github.com/dedece35) : complete Analysis (JPA impact / EnergyTracer measurements) +``` + +--- + +## Before posting + +- [ ] Confirm the analysis-harness bullet under **What this PR contains** matches how you + want `S6904/java/analysis/` described +- [ ] **Review and validate before posting** β€” this replaces the live description on #487